diff --git a/.gitignore b/.gitignore index 6c7b69a0..e37b9784 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .gitignore +.vscode + diff --git a/gers/examples/python/MATCH_TRACES.md b/gers/examples/python/MATCH_TRACES.md new file mode 100644 index 00000000..5e26495a --- /dev/null +++ b/gers/examples/python/MATCH_TRACES.md @@ -0,0 +1,218 @@ +# Match Example: GPS Traces to Overture Road Segments + +This page describes an example of how one could match a data set with GPS traces to the corresponding overture road segments. + +Alternative approaches include converting the Overture data set to OSM format, loading it in one of the routing engines available and use the map matching services available, like [OSRM](http://project-osrm.org/docs/v5.5.1/api/#match-service), [GraphHopper](https://github.com/graphhopper/map-matching), [Valhalla](https://valhalla.github.io/valhalla/api/map-matching/api-reference/). + +We are providing for demo purposes a basic implementation in python based on an approach commonly used, described in this paper: [Hidden Markov Map Matching](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/12/map-matching-ACM-GIS-camera-ready.pdf), that takes overture road segments as input. It is not intended to be a solution for all types of GPS trace data, but it can be a starting place in understanding how this can be achieved. + +The match process is exemplified below using a few mock traces as well as a few GPS traces from [OpenStreetMap.org](https://www.openstreetmap.org/traces) in the city of Macon Georgia, USA. This data is used only for purposes of illustrating the match process, and the results will be different for different quality of traces data. + +## Inputs +We will use two inputs for the example: + +1. Overture road segments: [data\overture-transportation-macon.geojson](data\overture-transportation-macon.geojson) - Please note that this data set is included for demonstrative purposes, it is a sample that doesn't contain the latest properties defined in the Overture schema and its GERS IDs are provisional. +2. GPS traces to be matched: + [data\macon-osm-traces-combined.geojson](data\macon-osm-traces-combined.geojson) - sampled from OSM, see below for details. + + [data\macon-manual-traces.geojson](data\macon-manual-traces.geojson) - mock traces simulating some noise edge cases with labeled expected prediction. + +Below we describe how we prepared the two data sets for matching for reference, but we also include them so you can experiment with matching directly. + +## Overture Data Set + +Please see instructions on how to use Athena to select the subset of the overture data set within a city for example. + +## GPS Traces to be matched + +GPS traces can be stored in many formats, some of the most common including GPX, KML, CSV, GeoJSON. + +In the case of OpenStreetMaps GPS traces we have GPX input traces, but we convert to GeoJSON for convenience, since having both data sets as GeoJSONs makes it very easy to initialize them both in the common class `MatchableFeature`. + +Since conversion between these formats is trivial, we consider it outside the scope for this exercise. + +In our example we downloaded public traces from openstreetmap.org. + +A sample sub-set of the raw GPX OpenStreetMaps traces were converted to geojson format, with the times for each point stored as `properties.times`. + +Points that are too close to each other, either distance-wise (<50 meters) or time-wise (<1sec), were filtered out. +We also split traces that have big gaps between points (>100 meters) into separate traces. This was done to avoid processing a lot of data that doesn't add much useful information to the trace. Parameters are chosen arbitrarily, and appropriate values depend on the traces data and what type of sidecar feed we're trying to produce with what type of quality and performance constraints. There are more elaborate approaches for picking which points to drop, when to split traces and other preprocessing, but that is outside the scope of this exercise. + +Result is a demo-size set of traces that can be used to obtain for example the average travel speeds per overture road segment or other traffic relevant information. + +An `id` is generated to uniquely identify each such trace and source properties are added to help identify each processed trace and its original source of data. + +An example trace to match as geojson: +```json +{ + "type": "Feature", + "id": "trace#0", + "geometry": { + "type": "LineString", + "coordinates": [[-83.630794, 32.850851], ] + }, + "properties": { + "filename": "osm-traces-page-0.gpx", + "track.number": 0, + "track.link": "/user/sunnypilot/traces/7824504", + "track.name": "2023_06_05T12_07_14.093431Z.gpx", + "track.segment.number": 0, + "track.segment.split.number": 0, + "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI SONATA 2020).", + "times": ["2023-06-05 12:07:14+00:00", ] + } +} +``` + +### Dependencies + +``` +pip install shapely h3 geopandas geojson haversine gpxpy +``` +Or: +``` +pip install -r gers/examples/python/requirements.txt +``` + +## Run with script + +Example parameters for running traces matching with the sidecar_match.py script: +``` +cd gers/examples/python/data +python match_traces.py --input-to-match data/macon-manual-traces.geojson --input-overture data/overture-transportation-macon.geojson --output data/match-result.json +``` + +See all (optional) parameters by running it with `-h`. + +The script uses [H3 tiles](https://h3geo.org/) to first filter road segment candidates spatially. + +## Run with notebook +Alternative is to perform the traces match via notebook available here: [match_traces.ipynb](match_traces.ipynb) + +This approach uses geopandas for spatial join step of finding road candidates, then constructs both data sets into the same python object `MatchableFeature` and calls same trace match code. + +## Output + +The output file will contain per each point in each trace the prediction of the most likely traveled road. The original point from the trace as well as the predicted point on the road segment are provided, along with useful information that can be used to infer the actual route traveled and the speed like the timestamp for the point, distance traveled on the road network since last point. + +Additional metrics are provided for the whole trace in the match result object. + +Below is an example of the output for a trace: +```json + { + "id": "trace#1", + "elapsed": 0.6450104000105057, + "source_length": 5165.4, + "route_length": 5167.13, + "points": [ + + + { + "original_point": "POINT (-83.586113 32.818006)", + "time": "2023-06-04 21:01:52+00:00", + "seconds_since_prev_point": 2.0, + "snap_prediction": { + "id": "8544c0bbfffffff-17976b4158ac1b2f", + "snapped_point": "POINT (-83.58613449627562 32.81796863910759)", + "distance_to_snapped_road": 4.61, + "route_distance_to_prev_point": 50.35 + } + }, + + + ], + "points_with_matches": 101, + "avg_dist_to_road": 3.12, + "sequence_breaks": 0, + "revisited_via_points": 0, + "revisited_segments": 0, + "target_candidates_count": 34, + "target_ids": [ + "8744c0a36ffffff-13d7eb54760e4d65", + "8744c0a36ffffff-13979f2200827e1f", + "8544c0bbfffffff-17976b4158ac1b2f", + "8744c0a36ffffff-17d7b86aff4e68cd" + ] + }, +``` + +## Metrics +### Match Quality +The match quality between your feed and overture roads is influenced by multiple factors: +1. Noise level of the traces data. +2. Disagreement between traces data and overture data. +3. Match quality of the algorithm. + +We propose two types for metrics, error rate via manually labeled set, which allows you to decouple the data disagreements problems to be able to focus on the algorithm itself, and automatic quality proxy metrics, like indicators associated with match problems, which are provided automatically for your whole feed when you run the match algorithm, but are only indirect approximations of how good the match is. + +**Error Rate via Manually Labeled Set** + +This approach provides highest level of insight into how well the algorithm performs, but because it requires human labeling which is costly to obtain, we only recommend it if planning to debug or develop the algorithm. +Below are instructions on how to obtain the metric for your feed, and we exemplify it with a few manually labeled traces. + +1. Select the traces that will make up the truth set. +2. Run the match algorithm as described above, with -j parameter. This will create as one of the outputs a file ending in `for_judgment.txt` which is a tab separated text file with a row for each point in each trace and the GERS ID that the algorithm found: + + |trace_id|point_index|trace_point_wkt|gers_id| + |-|-|-|-| + |manual_trace#1|0|POINT (-83.6455155 32.8246168)|`8844c0b1a7fffff-17fff78c078ff50b`| + |manual_trace#1|1|POINT (-83.64514 32.8251578)|`8844c0b1a7fffff-13def9663b8c091b`| + |...|||| + + This will serve as a starting point for our "truth set", by using the results of the match to "pre-label" the data. +3. Review the matches in QGIS. Load the overture features, the "pre-labeled" for_judgment.txt points, and the `snapped_points.txt` file. This should make it easy to observe which of the matches are incorrect. Optionally you could add an OSM tiles layer for example to add more context. +4. Save the corrected labels file as `.labeled.txt`. In our example this file can be found here: [data\macon-manual-traces.labeled.txt](data\macon-manual-traces.labeled.txt) +5. Compute **Error Rate** metric. This is done automatically by the script if a .labeled.txt file exists corresponding to the input traces file. +Error Rate is defined as the ratio between the length of the traces for which the prediction is matching the labeled set and the total length of the traces. + +**Automatic Quality Proxy Metrics** + +Because obtaining labeled data for a representative set can be difficult, we provide as alternative the metrics below that are calculated automatically when running the script. + +**Note**: all the metrics are averaged for the whole set and per each trace in the output. For most of them (all except first two) they are also provided per-km of length of trace, which are independent of trace lengths to facilitate cross-set comparisons. Length of trace in this context is calculated as sum of distances between each point of the input GPS trace. While a more "correct" length of trace would be the route distance, and you can still compute that yourself from the match result, we are using this definition because for some traces we won't be able to find a full or even partial route. Side effect is that the per-km metrics give more importance to points with noise, which artificially adds length to the truly traveled length. + +1. **Average distance to snapped road** - per trace. How far away are the GPS points from the snapped road in meters. Not counting points without matches. +2. **Snapped route length to GPS length ratio** - per trace. The ratio between the sum of route distances between points that we were able to match and the sum if distances between trace points. In ideal case with no GPS noise, agreement with the map and perfect match result this metric would get close to 1. Lower number can mean higher disagreement, missing roads in overture data set, or incorrect matches. 0 means nothing got matched. Values greater than 1 are also possible and valid, but could indicate incorrect route matches. +3. **Number of candidate segments** - per trace, per km. This counts how many roads are considered by the algorithm, as having common H3 tiles with the k-ringed H3 tiles of the trace. +4. **Number of matched segments** - per trace, per km. This will naturally vary from one type of road to another, but correlated with other dimensions it can be useful to detect outliers or problems. Zero means no match was found for any point of the trace. Also, a high discrepancy between number of candidate segments and number of matched segments could mean the algo is spending too much time considering too many candidates, see how to tweak performance in the section below. +5. **Number of sequence breaks** - per trace, per km. A sequence break can happen when there is missing or bad data in overture roads or in the trace or simply they disagree enough that a gap of no possible route is detected. +6. **Via-point revisits** - per trace, per km. A high number can be an indicator a lot of U-turns are predicted, which although can occur naturally, past some threshold can be a sign that the matches are incorrect. +7. **Segment revisits** - per trace, per km. Depending on your data, some traces will validly pass through same road segment again after having left it, but in many cases this is probably rare. An unusually high number can indicate wrong matches. + +For example, when matching the sample OSM traces with these options: +```json +{ + "sigma": 4.1, + "beta": 0.9, + "allow_loops": "True", + "max_point_to_road_distance": 30.0, + "max_route_to_trace_distance_difference": 300, + "revisit_segment_penalty_weight": 100, + "revisit_via_point_penalty_weight": 100, + "broken_time_gap_reset_sequence": 60, + "broken_distance_gap_reset_sequence": 300 +} +``` +The script will output these metrics (runtimes will vary depending on machine): +``` +Traces.............................157 +Target features....................22324 +Elapsed:...........................1min 50.846s +Avg runtime/trace..................0.706s +Avg runtime/km.....................0.178s +Avg distance to snapped road.......2.92m +Snapped route length...............574.95km +GPS traces length..................622.47km +Snapped route len/gps len..........0.92 +Avg number of candidate segments...58.69/trace, 14.80/km +Avg number of matched segments.....8.43/trace, 2.13/km +Avg number of sequence breaks......0.26/trace, 0.07/km +Avg number of revisited via points.0.31/trace, 0.08/km +Avg number of revisited segments...0.18/trace, 0.05/km +``` + +### Performance notes +While this demo match algorithm is not designed for performance, various parameters of the allow controlling the tradeoff between match quality and runtime. For example increasing `max_point_to_road_distance` will allow matching traces that are further away from the roads, thus increasing match recall for noisy GPS traces. However, this can increase significantly the runtime needed, since it increases the number of candidate roads to consider. + +For each each trace to be matched we provide the time elapsed in the output property `TraceMatchResult.elapsed` in seconds. This can be used to analyze how runtime correlates with various properties of the data, like trace length, number of points, number of sequence breaks or the various match parameters, or for identifying bottlenecks. + diff --git a/gers/examples/python/README.md b/gers/examples/python/README.md new file mode 100644 index 00000000..91626732 --- /dev/null +++ b/gers/examples/python/README.md @@ -0,0 +1,20 @@ +# GERS Sidecar Match Example + +## Context + +Consumers of geospatial data sets usually need to solve a complex and costly process of matching them. +A data set that also has GERS IDs can be easily used to augment the Overture data set itself, or other data sets that also have GERS IDs via simple join by id. + +Because Overture data sets are modeled and produced with prioritizing for stability of its identifiers (GERS IDs) over time, and the cost of matching being offset to the owner of the data sets, the consumers of data sets with GERS IDs can conflate, evaluate and onboard such feeds much cheaper and faster. + +## Purpose + +Matching a geospatial data set with overture (or any other) data set is a common problem and many solutions exist for this, from generic to highly specialized for particular data types. + +Depending on the match requirements, this can be achieved with a open source or commercial tools or services, with a few click or couple of lines of code or with large scale distributed system with complex match logic. + +Main purpose is to provide an example of how to start exploring a data set's compatibility with overture data set and to find GERS IDs that correspond to its features. + +## Example +[Snap GPS traces to overture roads](MATCH_TRACES.md) + diff --git a/gers/examples/python/__init__.py b/gers/examples/python/__init__.py new file mode 100644 index 00000000..d3f5a12f --- /dev/null +++ b/gers/examples/python/__init__.py @@ -0,0 +1 @@ + diff --git a/gers/examples/python/constants.py b/gers/examples/python/constants.py new file mode 100644 index 00000000..f15adb2d --- /dev/null +++ b/gers/examples/python/constants.py @@ -0,0 +1,27 @@ +from enum import Enum +import os + +DEFAULT_H3_RESOLUTION = 12 + +# default params for nearest match +DEFAULT_NEAREST_MAX_DISTANCE = 100 # meters + +# default params for trace snapping +DEFAULT_SIGMA = 4.1 # 4.10351310622546; +DEFAULT_BETA = 0.9 # 0.905918746744877 -> this default beta was found to apply to a 5 second sample rate. +# also was found to have good noise rejection characteristics and performed just as well or better than 1 second data, so it +# is now our default sampling period - even if the raw data was sampled at a higher rate +DEFAULT_MAX_POINT_TO_ROAD_DISTANCE = 10 # 200m in original paper +DEFAULT_MAX_ROUTE_TO_TRACE_DISTANCE_DIFFERENCE = 300 # what's a good value for this? 2km in original paper but too slow +DEFAULT_ALLOW_LOOPS = False +DEFAULT_SEGMENT_REVISIT_PENALTY = 100 # set to 0 if no penalty is desired +DEFAULT_VIA_POINT_PENALTY_WEIGHT = 100 # set to 0 if no penalty is desired +DEFAULT_BROKEN_TIME_GAP_RESET_SEQUENCE = 60 # seconds +DEFAULT_BROKEN_DISTANCE_GAP_RESET_SEQUENCE = 300 # meters + +"""default column separator of text files""" +COLUMN_SEPARATOR = "\t" + +DATA_DIR = "gers/examples/python/data" + + diff --git a/gers/examples/python/data/macon-manual-traces.geojson b/gers/examples/python/data/macon-manual-traces.geojson new file mode 100644 index 00000000..c4542092 --- /dev/null +++ b/gers/examples/python/data/macon-manual-traces.geojson @@ -0,0 +1,45 @@ +{ + "type": "FeatureCollection", + "features": [{ + "id": "manual_trace#1", + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [[-83.6455155, 32.8246168], [-83.64514, 32.8251578], [-83.6457408, 32.8257077], [-83.6464918, 32.8262487], [-83.6475432, 32.8266724], [-83.6492491, 32.8265552], [-83.6498639, 32.8263967], [-83.6516632, 32.8257648], [-83.653543, 32.8259091], [-83.6547482, 32.8257618], [-83.6559713, 32.8259091], [-83.6568689, 32.8258542], [-83.6577862, 32.8258445], [-83.6584711, 32.8263253], [-83.6584032, 32.8269549], [-83.657645, 32.8268467], [-83.6571014, 32.8265792], [-83.6574245, 32.8253471], [-83.6571563, 32.8239587], [-83.6565984, 32.8226063], [-83.656255, 32.8215514], [-83.6560047, 32.8201779], [-83.655994, 32.8188976], [-83.6560047, 32.8177796], [-83.6562264, 32.816388], [-83.6564517, 32.8147109], [-83.656677, 32.8144133], [-83.6582649, 32.8143773], [-83.6588657, 32.8145035], [-83.6605936, 32.8143638], [-83.6623263, 32.8145336], [-83.6657166, 32.8144374], [-83.6693894, 32.8146298], [-83.6730623, 32.8148221], [-83.6748505, 32.8148387], [-83.6766386, 32.8148552], [-83.6784053, 32.8149589], [-83.680172, 32.8150626], [-83.6823965, 32.8151783], [-83.6846209, 32.815294], [-83.6852279, 32.8156306], [-83.6853433, 32.8160612], [-83.6855999, 32.8160544], [-83.6857572, 32.8160529]] + }, + "properties": { + "description": "manually drawn" + } + }, { + "id": "manual_trace#2", + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [[-83.6365676, 32.8409159], [-83.6360097, 32.8409429], [-83.6349583, 32.8409249], [-83.6336279, 32.8408077], [-83.633188, 32.8407086], [-83.6323405, 32.8411412], [-83.6316967, 32.8417362], [-83.6315036, 32.8419345], [-83.631568, 32.8421238], [-83.6320186, 32.8424032], [-83.6325872, 32.8427367], [-83.6328769, 32.8430522], [-83.6325658, 32.8434488], [-83.6325121, 32.8436652], [-83.6329949, 32.8439266], [-83.6335636, 32.844242]] + }, + "properties": { + "payload": "dummy payload value" + } + }, { + "id": "manual_trace#3", + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [[-83.6654067, 32.8388832], [-83.6654845, 32.8381057], [-83.6653987, 32.8379051], [-83.66413, 32.8379862], [-83.6638403, 32.8382161], [-83.6638805, 32.8389981], [-83.6652619, 32.8389711], [-83.6654335, 32.8387367], [-83.6654013, 32.8383333], [-83.6653262, 32.8379231], [-83.6642534, 32.8379096]] + }, + "properties": { + "payload": "dummy payload value - looped trace" + } + }, { + "id": "manual_trace#4", + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [[-83.6319977, 32.8344893], [-83.6320424, 32.8346065], [-83.6320987, 32.834584], [-83.6319736, 32.8342617], [-83.6318958, 32.8346719], [-83.6321676, 32.8344367], [-83.6322194, 32.8345254], [-83.6321148, 32.8345194], [-83.6319932, 32.8343932], [-83.6320513, 32.8346734], [-83.6317733, 32.8344848], [-83.6321235, 32.8346614], [-83.632263, 32.8345532], [-83.6321774, 32.834575], [-83.6323542, 32.8346974], [-83.6324668, 32.8347019], [-83.6325365, 32.8348687], [-83.6328155, 32.8349859], [-83.6327082, 32.8347335], [-83.6325902, 32.83504], [-83.6323703, 32.8351617], [-83.6322469, 32.8353465], [-83.6322952, 32.8354547], [-83.6320269, 32.8356034], [-83.6317802, 32.8359144], [-83.6317212, 32.835991], [-83.6317335, 32.8361251], [-83.6315495, 32.8357702], [-83.6319465, 32.8361082], [-83.6314744, 32.8360406], [-83.6317963, 32.8357341], [-83.6315549, 32.8362299], [-83.6312276, 32.8366356], [-83.631056, 32.8369105], [-83.6306, 32.8368159], [-83.6307985, 32.8369871], [-83.6304766, 32.8369421], [-83.6301547, 32.8370232], [-83.6300075, 32.8371749], [-83.6298323, 32.83719], [-83.6299932, 32.8369436], [-83.6298448, 32.8370502], [-83.6296552, 32.8369631], [-83.6293876, 32.8366356], [-83.6285562, 32.8362524], [-83.6280573, 32.8359505], [-83.62773, 32.8358243], [-83.6276275, 32.8358197], [-83.6280358, 32.8355493], [-83.6276764, 32.8357206], [-83.6274898, 32.8359279], [-83.6276096, 32.8356259], [-83.6270392, 32.8353532], [-83.6267084, 32.8351459], [-83.62629, 32.8350212], [-83.6262459, 32.8347966], [-83.6256933, 32.8345442], [-83.6259833, 32.8350678], [-83.6260933, 32.8346073], [-83.6258242, 32.8345795], [-83.626104, 32.8344796], [-83.6259323, 32.8347132], [-83.6259127, 32.834611], [-83.6255914, 32.8349679], [-83.6249262, 32.8351482], [-83.6245519, 32.8349093], [-83.6250436, 32.8346358], [-83.6244053, 32.8348627], [-83.6245841, 32.8346704], [-83.6246288, 32.8352729], [-83.6249828, 32.8349453], [-83.6245523, 32.8348187]] + }, + "properties": { + "payload": "dummy payload value - lot of fake gps noise, emphasis on stops" + } + } + ] +} diff --git a/gers/examples/python/data/macon-manual-traces.labeled.txt b/gers/examples/python/data/macon-manual-traces.labeled.txt new file mode 100644 index 00000000..23f91681 --- /dev/null +++ b/gers/examples/python/data/macon-manual-traces.labeled.txt @@ -0,0 +1,144 @@ +trace_id point_index trace_point_wkt gers_id +manual_trace#1 0 POINT (-83.6455155 32.8246168) 8844c0b1a7fffff-17fff78c078ff50b +manual_trace#1 1 POINT (-83.64514 32.8251578) 8844c0b1a7fffff-13def9663b8c091b +manual_trace#1 2 POINT (-83.6457408 32.8257077) 8744c0b1affffff-13f6e321a3f59680 +manual_trace#1 3 POINT (-83.6464918 32.8262487) 8744c0b1affffff-13f6e321a3f59680 +manual_trace#1 4 POINT (-83.6475432 32.8266724) 8744c0b1affffff-13f6e321a3f59680 +manual_trace#1 5 POINT (-83.6492491 32.8265552) 8744c0b1affffff-13f6e321a3f59680 +manual_trace#1 6 POINT (-83.6498639 32.8263967) 8744c0b1affffff-13f6e321a3f59680 +manual_trace#1 7 POINT (-83.6516632 32.8257648) 8844c0b1a3fffff-13bfd7be7081086a +manual_trace#1 8 POINT (-83.653543 32.8259091) 8844c0b1a3fffff-13bfd7be7081086a +manual_trace#1 9 POINT (-83.6547482 32.8257618) 8644c0b1fffffff-13d7f21727a15751 +manual_trace#1 10 POINT (-83.6559713 32.8259091) 8944c0b1bcbffff-13dfed34386b62a7 +manual_trace#1 11 POINT (-83.6568689 32.8258542) 8944c0b1bcbffff-13dfed34386b62a7 +manual_trace#1 12 POINT (-83.6577862 32.8258445) 8844c0b1bdfffff-13b7caafc625e931 +manual_trace#1 13 POINT (-83.6584711 32.8263253) 8844c0b1bdfffff-13b7caafc625e931 +manual_trace#1 14 POINT (-83.6584032 32.8269549) 8844c0b1bdfffff-13b7caafc625e931 +manual_trace#1 15 POINT (-83.657645 32.8268467) 8844c0b1bdfffff-13b7caafc625e931 +manual_trace#1 16 POINT (-83.6571014 32.8265792) 8844c0b1bdfffff-13b7caafc625e931 +manual_trace#1 17 POINT (-83.6574245 32.8253471) 8844c0b1bdfffff-13b7caafc625e931 +manual_trace#1 18 POINT (-83.6571563 32.8239587) 8644c0b1fffffff-13bfccf89c40cc9b +manual_trace#1 19 POINT (-83.6565984 32.8226063) 8644c0b1fffffff-13bfccf89c40cc9b +manual_trace#1 20 POINT (-83.656255 32.8215514) 8644c0b1fffffff-13bfccf89c40cc9b +manual_trace#1 21 POINT (-83.6560047 32.8201779) 8844c0b1abfffff-139eeee9b0769d3f +manual_trace#1 22 POINT (-83.655994 32.8188976) 8844c0b1abfffff-139eeee9b0769d3f +manual_trace#1 23 POINT (-83.6560047 32.8177796) 8844c0b1abfffff-139eeee9b0769d3f +manual_trace#1 24 POINT (-83.6562264 32.816388) 8844c0b1abfffff-13f6ee43c5c34501 +manual_trace#1 25 POINT (-83.6564517 32.8147109) 8844c0b1abfffff-13f6ee43c5c34501 +manual_trace#1 26 POINT (-83.656677 32.8144133) 8944c0b1ab3ffff-17d6dd04c9d9fe37 +manual_trace#1 27 POINT (-83.6582649 32.8143773) 8644c0b1fffffff-17b6ea3019511365 +manual_trace#1 28 POINT (-83.6588657 32.8145035) 8944c0b184fffff-17fff568e3277cc7 +manual_trace#1 29 POINT (-83.6605936 32.8143638) 8944c0b184fffff-17fff568e3277cc7 +manual_trace#1 30 POINT (-83.6623263 32.8145336) 8844c0b185fffff-179fff76af06ff52 +manual_trace#1 31 POINT (-83.6657166 32.8144374) 8944c0b1873ffff-17def69e75c4d993 +manual_trace#1 32 POINT (-83.6693894 32.8146298) 8944c0b180fffff-17f7ff4f5e68699d +manual_trace#1 33 POINT (-83.6730623 32.8148221) 8844c0b181fffff-17bef7b786635634 +manual_trace#1 34 POINT (-83.6748505 32.8148387) 8744c0b18ffffff-17def263180cd55a +manual_trace#1 35 POINT (-83.6766386 32.8148552) 8844c0b18bfffff-179fba8bb56a33df +manual_trace#1 36 POINT (-83.6784053 32.8149589) 8844c0b18bfffff-179fba8bb56a33df +manual_trace#1 37 POINT (-83.680172 32.8150626) 8644c0b1fffffff-13d6ae686b1691be +manual_trace#1 38 POINT (-83.6823965 32.8151783) 8644c0b1fffffff-13d6ae686b1691be +manual_trace#1 39 POINT (-83.6846209 32.815294) 8644c0b1fffffff-13d6ae686b1691be +manual_trace#1 40 POINT (-83.6852279 32.8156306) 8844c0b1d7fffff-1397b77f2800dad9 +manual_trace#1 41 POINT (-83.6853433 32.8160612) 8a44c0b19d27fff-13ffd73dffb29413 +manual_trace#1 42 POINT (-83.6855999 32.8160544) 8b44c0b19d24fff-13f786b371099a3e +manual_trace#1 43 POINT (-83.6857572 32.8160529) 8a44c0b19d27fff-13f7a637ec0bbb91 +manual_trace#2 0 POINT (-83.6365676 32.8409159) 8944c0a3473ffff-17b6fef6fbc01867 +manual_trace#2 1 POINT (-83.6360097 32.8409429) 8944c0a3473ffff-17b6fef6fbc01867 +manual_trace#2 2 POINT (-83.6349583 32.8409249) 8744c0a34ffffff-17bf61ef6e72d694 +manual_trace#2 3 POINT (-83.6336279 32.8408077) 8a44c0a3445ffff-17f7e549d611eefc +manual_trace#2 4 POINT (-83.633188 32.8407086) 8844c0a345fffff-17f7d72ab260a3dd +manual_trace#2 5 POINT (-83.6323405 32.8411412) 8a44c0a344effff-17bfb87ce0053820 +manual_trace#2 6 POINT (-83.6316967 32.8417362) 8a44c0a344cffff-139f8a24c552b9af +manual_trace#2 7 POINT (-83.6315036 32.8419345) 8a44c0a344cffff-139f8a24c552b9af +manual_trace#2 8 POINT (-83.631568 32.8421238) 8744c0a34ffffff-13b7aa5d81846400 +manual_trace#2 9 POINT (-83.6320186 32.8424032) 8a44c0a34797fff-13bf6960eb0bafd8 +manual_trace#2 10 POINT (-83.6325872 32.8427367) 8944c0a347bffff-139fa8001833ecb5 +manual_trace#2 11 POINT (-83.6328769 32.8430522) 8944c0a347bffff-17d747bc6580e5c0 +manual_trace#2 12 POINT (-83.6325658 32.8434488) 8944c0a347bffff-17d747bc6580e5c0 +manual_trace#2 13 POINT (-83.6325121 32.8436652) 8a44c0a3479ffff-17b7f827619e9b9d +manual_trace#2 14 POINT (-83.6329949 32.8439266) 8a44c0a3479ffff-17df870c68a42743 +manual_trace#2 15 POINT (-83.6335636 32.844242) 8944c0a347bffff-17b7c5b69c0435d4 +manual_trace#3 0 POINT (-83.6654067 32.8388832) 8944c0b1b3bffff-13b6b7dab40bd1d8 +manual_trace#3 1 POINT (-83.6654845 32.8381057) 8944c0b1b3bffff-13b6b7dab40bd1d8 +manual_trace#3 2 POINT (-83.6653987 32.8379051) 8744c0b1bffffff-17f6f9b747d8ffb0 +manual_trace#3 3 POINT (-83.66413 32.8379862) 8744c0b1bffffff-17f6f9b747d8ffb0 +manual_trace#3 4 POINT (-83.6638403 32.8382161) 8944c0b1b77ffff-139efba7387f4b0b +manual_trace#3 5 POINT (-83.6638805 32.8389981) 8744c0b1bffffff-13dff9caac62e36e +manual_trace#3 6 POINT (-83.6652619 32.8389711) 8744c0b1bffffff-13dff9caac62e36e +manual_trace#3 7 POINT (-83.6654335 32.8387367) 8944c0b1b3bffff-13b6b7dab40bd1d8 +manual_trace#3 8 POINT (-83.6654013 32.8383333) 8944c0b1b3bffff-13b6b7dab40bd1d8 +manual_trace#3 9 POINT (-83.6653262 32.8379231) 8744c0b1bffffff-17f6f9b747d8ffb0 +manual_trace#3 10 POINT (-83.6642534 32.8379096) 8744c0b1bffffff-17f6f9b747d8ffb0 +manual_trace#4 0 POINT (-83.6319977 32.8344893) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 1 POINT (-83.6320424 32.8346065) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 2 POINT (-83.6320987 32.834584) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 3 POINT (-83.6319736 32.8342617) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 4 POINT (-83.6318958 32.8346719) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 5 POINT (-83.6321676 32.8344367) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 6 POINT (-83.6322194 32.8345254) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 7 POINT (-83.6321148 32.8345194) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 8 POINT (-83.6319932 32.8343932) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 9 POINT (-83.6320513 32.8346734) 8b44c0a34502fff-17f7292f7353ccf6 +manual_trace#4 10 POINT (-83.6317733 32.8344848) 8944c0a3453ffff-17b72a745b2abd1f +manual_trace#4 11 POINT (-83.6321235 32.8346614) 8a44c0a34507fff-17bf88b892b53205 +manual_trace#4 12 POINT (-83.632263 32.8345532) 8a44c0a34507fff-17bf88b892b53205 +manual_trace#4 13 POINT (-83.6321774 32.834575) 8a44c0a34507fff-17bf88b892b53205 +manual_trace#4 14 POINT (-83.6323542 32.8346974) 8a44c0a34507fff-17bf88b892b53205 +manual_trace#4 15 POINT (-83.6324668 32.8347019) 8a44c0a34507fff-13bf2804a78d88dd +manual_trace#4 16 POINT (-83.6325365 32.8348687) 8a44c0a34507fff-13bf2804a78d88dd +manual_trace#4 17 POINT (-83.6328155 32.8349859) 8a44c0a34507fff-13bf2804a78d88dd +manual_trace#4 18 POINT (-83.6327082 32.8347335) 8a44c0a34507fff-13bf2804a78d88dd +manual_trace#4 19 POINT (-83.6325902 32.83504) 8944c0a3453ffff-13bf483a78255541 +manual_trace#4 20 POINT (-83.6323703 32.8351617) 8944c0a3453ffff-13bf483a78255541 +manual_trace#4 21 POINT (-83.6322469 32.8353465) 8944c0a3453ffff-13bf483a78255541 +manual_trace#4 22 POINT (-83.6322952 32.8354547) 8944c0a3453ffff-13bf483a78255541 +manual_trace#4 23 POINT (-83.6320269 32.8356034) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 24 POINT (-83.6317802 32.8359144) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 25 POINT (-83.6317212 32.835991) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 26 POINT (-83.6317335 32.8361251) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 27 POINT (-83.6315495 32.8357702) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 28 POINT (-83.6319465 32.8361082) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 29 POINT (-83.6314744 32.8360406) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 30 POINT (-83.6317963 32.8357341) 8844c0a345fffff-13bfd9913aa2946b +manual_trace#4 31 POINT (-83.6315549 32.8362299) 8a44c0a34437fff-17bfdade6becc8f0 +manual_trace#4 32 POINT (-83.6312276 32.8366356) 8a44c0a34437fff-17bfdade6becc8f0 +manual_trace#4 33 POINT (-83.631056 32.8369105) 8a44c0a34437fff-17ff1bbdc1ce0b00 +manual_trace#4 34 POINT (-83.6306 32.8368159) 8944c0a3443ffff-17f78d5e6c1492c0 +manual_trace#4 35 POINT (-83.6307985 32.8369871) 8944c0a3443ffff-17f78d5e6c1492c0 +manual_trace#4 36 POINT (-83.6304766 32.8369421) 8944c0a3443ffff-17f78d5e6c1492c0 +manual_trace#4 37 POINT (-83.6301547 32.8370232) 8944c0a3443ffff-17f78d5e6c1492c0 +manual_trace#4 38 POINT (-83.6300075 32.8371749) 8944c0a3443ffff-17f78d5e6c1492c0 +manual_trace#4 39 POINT (-83.6298323 32.83719) 8844c0a345fffff-17b75fa69295981d +manual_trace#4 40 POINT (-83.6299932 32.8369436) 8844c0a345fffff-17b75fa69295981d +manual_trace#4 41 POINT (-83.6298448 32.8370502) 8844c0a345fffff-17b75fa69295981d +manual_trace#4 42 POINT (-83.6296552 32.8369631) 8844c0a345fffff-17b75fa69295981d +manual_trace#4 43 POINT (-83.6293876 32.8366356) 8844c0a345fffff-17b75fa69295981d +manual_trace#4 44 POINT (-83.6285562 32.8362524) 8a44c0a3459ffff-17975196d36e7af4 +manual_trace#4 45 POINT (-83.6280573 32.8359505) 8944c0a345bffff-13ffb349568bd6db +manual_trace#4 46 POINT (-83.62773 32.8358243) 8944c0a345bffff-13ffb349568bd6db +manual_trace#4 47 POINT (-83.6276275 32.8358197) 8944c0a345bffff-13ffb349568bd6db +manual_trace#4 48 POINT (-83.6280358 32.8355493) 8944c0a345bffff-13ffb349568bd6db +manual_trace#4 49 POINT (-83.6276764 32.8357206) 8944c0a345bffff-13ffb349568bd6db +manual_trace#4 50 POINT (-83.6274898 32.8359279) 8a44c0a3696ffff-13dfd46e42e40591 +manual_trace#4 51 POINT (-83.6276096 32.8356259) 8a44c0a3696ffff-13dfd46e42e40591 +manual_trace#4 52 POINT (-83.6270392 32.8353532) 8944c0a3697ffff-13b7f59331136d28 +manual_trace#4 53 POINT (-83.6267084 32.8351459) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 54 POINT (-83.62629 32.8350212) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 55 POINT (-83.6262459 32.8347966) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 56 POINT (-83.6256933 32.8345442) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 57 POINT (-83.6259833 32.8350678) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 58 POINT (-83.6260933 32.8346073) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 59 POINT (-83.6258242 32.8345795) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 60 POINT (-83.626104 32.8344796) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 61 POINT (-83.6259323 32.8347132) 8a44c0a36967fff-13bfd730c33afdf4 +manual_trace#4 62 POINT (-83.6259127 32.834611) 8944c0a3697ffff-1397b8273ad17188 +manual_trace#4 63 POINT (-83.6255914 32.8349679) 8a44c0a36977fff-13b7b9a0ca847516 +manual_trace#4 64 POINT (-83.6249262 32.8351482) 8a44c0a36977fff-13b7b9a0ca847516 +manual_trace#4 65 POINT (-83.6245519 32.8349093) 8844c0a369fffff-13bf1c0586d59237 +manual_trace#4 66 POINT (-83.6250436 32.8346358) 8844c0a369fffff-13bf1c0586d59237 +manual_trace#4 67 POINT (-83.6244053 32.8348627) 8844c0a369fffff-13bf1c0586d59237 +manual_trace#4 68 POINT (-83.6245841 32.8346704) 8844c0a369fffff-13bf1c0586d59237 +manual_trace#4 69 POINT (-83.6246288 32.8352729) 8844c0a369fffff-13bf1c0586d59237 +manual_trace#4 70 POINT (-83.6249828 32.8349453) 8844c0a369fffff-13bf1c0586d59237 +manual_trace#4 71 POINT (-83.6245523 32.8348187) 8844c0a369fffff-13bf1c0586d59237 diff --git a/gers/examples/python/data/macon-osm-traces-combined.geojson b/gers/examples/python/data/macon-osm-traces-combined.geojson new file mode 100644 index 00000000..96f7b58e --- /dev/null +++ b/gers/examples/python/data/macon-osm-traces-combined.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "id": "trace#0", "geometry": {"type": "LineString", "coordinates": [[-83.630794, 32.850851], [-83.630408, 32.850513], [-83.630037, 32.850183], [-83.629659, 32.849854], [-83.629267, 32.849512], [-83.628893, 32.849184], [-83.628507, 32.848841], [-83.628142, 32.848501], [-83.627782, 32.848148], [-83.627425, 32.847783], [-83.627101, 32.847423], [-83.626817, 32.847032], [-83.626549, 32.846621], [-83.626285, 32.846204], [-83.62602, 32.845794], [-83.625747, 32.845394], [-83.625455, 32.845007], [-83.62513, 32.844644], [-83.624782, 32.844297], [-83.624454, 32.843939], [-83.624143, 32.843573], [-83.62381, 32.843192], [-83.623464, 32.842834], [-83.623082, 32.84249], [-83.622687, 32.842156], [-83.622302, 32.841819], [-83.621905, 32.841489], [-83.621498, 32.841169], [-83.621091, 32.840856], [-83.620688, 32.840542], [-83.620285, 32.840238], [-83.61987, 32.839945], [-83.61943, 32.83967], [-83.618975, 32.839416], [-83.618508, 32.839177], [-83.618017, 32.838947], [-83.617538, 32.838741], [-83.617028, 32.838537], [-83.616533, 32.838351], [-83.61605, 32.838156], [-83.615568, 32.837938], [-83.615098, 32.837698], [-83.614636, 32.83744], [-83.614184, 32.837169], [-83.613752, 32.836879], [-83.613336, 32.836575], [-83.612937, 32.836254], [-83.612543, 32.835926], [-83.61215, 32.835598], [-83.611756, 32.83527], [-83.611362, 32.834941], [-83.610969, 32.834612], [-83.610576, 32.834284], [-83.610185, 32.833956], [-83.609795, 32.833631], [-83.609404, 32.833304], [-83.609011, 32.832976], [-83.608619, 32.832648], [-83.608227, 32.83232], [-83.607835, 32.831992], [-83.607444, 32.831664], [-83.607055, 32.831331], [-83.60668, 32.830987], [-83.606325, 32.830626], [-83.605971, 32.830261], [-83.605597, 32.829915], [-83.605204, 32.829585], [-83.604809, 32.829256], [-83.604416, 32.828925], [-83.604024, 32.828595], [-83.60363, 32.828265], [-83.603237, 32.827934], [-83.602841, 32.827605], [-83.602442, 32.82728], [-83.602035, 32.826961], [-83.601617, 32.826654], [-83.60119, 32.826358], [-83.600755, 32.826073], [-83.600309, 32.825798], [-83.599854, 32.825532], [-83.599396, 32.825269], [-83.598938, 32.825006], [-83.598481, 32.824744], [-83.598022, 32.824481], [-83.597561, 32.824219], [-83.597102, 32.823957], [-83.59664, 32.823694], [-83.596178, 32.823431], [-83.595718, 32.823169], [-83.595259, 32.822906], [-83.594797, 32.822642], [-83.594337, 32.822378], [-83.59388, 32.822115], [-83.593423, 32.821852], [-83.592964, 32.821588], [-83.592506, 32.821325], [-83.592049, 32.821062], [-83.59159, 32.820799], [-83.591131, 32.820536], [-83.590672, 32.820272], [-83.590214, 32.820009]]}, "properties": {"filename": "osm-traces-page-0.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7824504", "track.name": "2023_06_05T12_07_14.093431Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI SONATA 2020).", "times": ["2023-06-05 12:07:14+00:00", "2023-06-05 12:07:16+00:00", "2023-06-05 12:07:18+00:00", "2023-06-05 12:07:20+00:00", "2023-06-05 12:07:22+00:00", "2023-06-05 12:07:23+00:00", "2023-06-05 12:07:25+00:00", "2023-06-05 12:07:27+00:00", "2023-06-05 12:07:29+00:00", "2023-06-05 12:07:31+00:00", "2023-06-05 12:07:33+00:00", "2023-06-05 12:07:35+00:00", "2023-06-05 12:07:36+00:00", "2023-06-05 12:07:38+00:00", "2023-06-05 12:07:40+00:00", "2023-06-05 12:07:42+00:00", "2023-06-05 12:07:44+00:00", "2023-06-05 12:07:45+00:00", "2023-06-05 12:07:47+00:00", "2023-06-05 12:07:49+00:00", "2023-06-05 12:07:51+00:00", "2023-06-05 12:07:53+00:00", "2023-06-05 12:07:55+00:00", "2023-06-05 12:07:56+00:00", "2023-06-05 12:07:58+00:00", "2023-06-05 12:08:00+00:00", "2023-06-05 12:08:02+00:00", "2023-06-05 12:08:04+00:00", "2023-06-05 12:08:06+00:00", "2023-06-05 12:08:08+00:00", "2023-06-05 12:08:10+00:00", "2023-06-05 12:08:12+00:00", "2023-06-05 12:08:14+00:00", "2023-06-05 12:08:15+00:00", "2023-06-05 12:08:17+00:00", "2023-06-05 12:08:19+00:00", "2023-06-05 12:08:21+00:00", "2023-06-05 12:08:23+00:00", "2023-06-05 12:08:25+00:00", "2023-06-05 12:08:26+00:00", "2023-06-05 12:08:28+00:00", "2023-06-05 12:08:30+00:00", "2023-06-05 12:08:32+00:00", "2023-06-05 12:08:33+00:00", "2023-06-05 12:08:35+00:00", "2023-06-05 12:08:37+00:00", "2023-06-05 12:08:38+00:00", "2023-06-05 12:08:40+00:00", "2023-06-05 12:08:42+00:00", "2023-06-05 12:08:43+00:00", "2023-06-05 12:08:45+00:00", "2023-06-05 12:08:47+00:00", "2023-06-05 12:08:49+00:00", "2023-06-05 12:08:50+00:00", "2023-06-05 12:08:52+00:00", "2023-06-05 12:08:54+00:00", "2023-06-05 12:08:55+00:00", "2023-06-05 12:08:57+00:00", "2023-06-05 12:08:59+00:00", "2023-06-05 12:09:00+00:00", "2023-06-05 12:09:02+00:00", "2023-06-05 12:09:04+00:00", "2023-06-05 12:09:06+00:00", "2023-06-05 12:09:07+00:00", "2023-06-05 12:09:09+00:00", "2023-06-05 12:09:11+00:00", "2023-06-05 12:09:12+00:00", "2023-06-05 12:09:14+00:00", "2023-06-05 12:09:16+00:00", "2023-06-05 12:09:17+00:00", "2023-06-05 12:09:19+00:00", "2023-06-05 12:09:21+00:00", "2023-06-05 12:09:23+00:00", "2023-06-05 12:09:24+00:00", "2023-06-05 12:09:26+00:00", "2023-06-05 12:09:28+00:00", "2023-06-05 12:09:29+00:00", "2023-06-05 12:09:31+00:00", "2023-06-05 12:09:33+00:00", "2023-06-05 12:09:34+00:00", "2023-06-05 12:09:36+00:00", "2023-06-05 12:09:38+00:00", "2023-06-05 12:09:40+00:00", "2023-06-05 12:09:41+00:00", "2023-06-05 12:09:43+00:00", "2023-06-05 12:09:45+00:00", "2023-06-05 12:09:46+00:00", "2023-06-05 12:09:48+00:00", "2023-06-05 12:09:50+00:00", "2023-06-05 12:09:51+00:00", "2023-06-05 12:09:53+00:00", "2023-06-05 12:09:55+00:00", "2023-06-05 12:09:57+00:00", "2023-06-05 12:09:58+00:00", "2023-06-05 12:10:00+00:00", "2023-06-05 12:10:02+00:00", "2023-06-05 12:10:03+00:00", "2023-06-05 12:10:05+00:00", "2023-06-05 12:10:07+00:00", "2023-06-05 12:10:08+00:00", "2023-06-05 12:10:10+00:00"]}}, {"type": "Feature", "id": "trace#1", "geometry": {"type": "LineString", "coordinates": [[-83.585668, 32.817751], [-83.586113, 32.818006], [-83.586567, 32.818267], [-83.587016, 32.818525], [-83.58746, 32.818779], [-83.58791, 32.819038], [-83.58838, 32.819306], [-83.588847, 32.819572], [-83.589304, 32.819833], [-83.589763, 32.820096], [-83.590231, 32.820363], [-83.590673, 32.820616], [-83.591143, 32.820887], [-83.591592, 32.821144], [-83.592039, 32.8214], [-83.592491, 32.821659], [-83.592942, 32.821917], [-83.593391, 32.822174], [-83.593846, 32.822435], [-83.594296, 32.822695], [-83.594741, 32.822951], [-83.595189, 32.823209], [-83.595663, 32.823481], [-83.596129, 32.823748], [-83.596602, 32.824019], [-83.597064, 32.824283], [-83.597532, 32.824549], [-83.597991, 32.824811], [-83.598442, 32.82507], [-83.5989, 32.825331], [-83.599351, 32.825588], [-83.599801, 32.825844], [-83.600257, 32.826111], [-83.600709, 32.826391], [-83.601134, 32.826673], [-83.601544, 32.826963], [-83.601946, 32.827263], [-83.60234, 32.827576], [-83.602723, 32.827894], [-83.603126, 32.828232], [-83.603527, 32.828568], [-83.603924, 32.8289], [-83.604327, 32.829239], [-83.60473, 32.82958], [-83.605132, 32.829918], [-83.605525, 32.830247], [-83.605918, 32.830575], [-83.606309, 32.830902], [-83.606703, 32.831232], [-83.607094, 32.831561], [-83.607494, 32.831897], [-83.60789, 32.83223], [-83.608269, 32.832548], [-83.608649, 32.832868], [-83.609031, 32.833189], [-83.60941, 32.833508], [-83.609792, 32.833828], [-83.610197, 32.834168], [-83.610584, 32.834493], [-83.610969, 32.834815], [-83.611354, 32.835139], [-83.611738, 32.835462], [-83.61212, 32.835783], [-83.612505, 32.836105], [-83.612886, 32.836424], [-83.613294, 32.836754], [-83.613725, 32.837072], [-83.614171, 32.837368], [-83.614606, 32.837632], [-83.615055, 32.837882], [-83.615516, 32.838114], [-83.615997, 32.838331], [-83.616484, 32.838538], [-83.616967, 32.838744], [-83.617458, 32.838955], [-83.61794, 32.83917], [-83.618412, 32.839396], [-83.618873, 32.839633], [-83.619322, 32.83988], [-83.619768, 32.840137], [-83.620224, 32.840418], [-83.620672, 32.840713], [-83.621104, 32.841019], [-83.621522, 32.84133], [-83.621929, 32.841655], [-83.62232, 32.841986], [-83.622705, 32.842333], [-83.623078, 32.842688], [-83.623442, 32.843056], [-83.62379, 32.843433], [-83.624119, 32.843812], [-83.624444, 32.844211], [-83.62475, 32.844611], [-83.625042, 32.845023], [-83.625317, 32.845439], [-83.625579, 32.845857], [-83.625829, 32.846256], [-83.626088, 32.846673], [-83.626346, 32.847085], [-83.62661, 32.847481], [-83.626913, 32.847878]]}, "properties": {"filename": "osm-traces-page-1.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7805545", "track.name": "2023_06_04T21_01_48.584136Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-06-04 21:01:50+00:00", "2023-06-04 21:01:52+00:00", "2023-06-04 21:01:53+00:00", "2023-06-04 21:01:55+00:00", "2023-06-04 21:01:56+00:00", "2023-06-04 21:01:57+00:00", "2023-06-04 21:01:59+00:00", "2023-06-04 21:02:00+00:00", "2023-06-04 21:02:02+00:00", "2023-06-04 21:02:03+00:00", "2023-06-04 21:02:05+00:00", "2023-06-04 21:02:06+00:00", "2023-06-04 21:02:08+00:00", "2023-06-04 21:02:09+00:00", "2023-06-04 21:02:11+00:00", "2023-06-04 21:02:12+00:00", "2023-06-04 21:02:13+00:00", "2023-06-04 21:02:15+00:00", "2023-06-04 21:02:16+00:00", "2023-06-04 21:02:18+00:00", "2023-06-04 21:02:19+00:00", "2023-06-04 21:02:20+00:00", "2023-06-04 21:02:22+00:00", "2023-06-04 21:02:23+00:00", "2023-06-04 21:02:25+00:00", "2023-06-04 21:02:26+00:00", "2023-06-04 21:02:28+00:00", "2023-06-04 21:02:29+00:00", "2023-06-04 21:02:31+00:00", "2023-06-04 21:02:32+00:00", "2023-06-04 21:02:34+00:00", "2023-06-04 21:02:35+00:00", "2023-06-04 21:02:37+00:00", "2023-06-04 21:02:38+00:00", "2023-06-04 21:02:40+00:00", "2023-06-04 21:02:41+00:00", "2023-06-04 21:02:43+00:00", "2023-06-04 21:02:44+00:00", "2023-06-04 21:02:45+00:00", "2023-06-04 21:02:47+00:00", "2023-06-04 21:02:48+00:00", "2023-06-04 21:02:50+00:00", "2023-06-04 21:02:51+00:00", "2023-06-04 21:02:53+00:00", "2023-06-04 21:02:54+00:00", "2023-06-04 21:02:56+00:00", "2023-06-04 21:02:57+00:00", "2023-06-04 21:02:59+00:00", "2023-06-04 21:03:00+00:00", "2023-06-04 21:03:02+00:00", "2023-06-04 21:03:03+00:00", "2023-06-04 21:03:05+00:00", "2023-06-04 21:03:06+00:00", "2023-06-04 21:03:08+00:00", "2023-06-04 21:03:09+00:00", "2023-06-04 21:03:10+00:00", "2023-06-04 21:03:12+00:00", "2023-06-04 21:03:13+00:00", "2023-06-04 21:03:15+00:00", "2023-06-04 21:03:16+00:00", "2023-06-04 21:03:18+00:00", "2023-06-04 21:03:19+00:00", "2023-06-04 21:03:20+00:00", "2023-06-04 21:03:22+00:00", "2023-06-04 21:03:23+00:00", "2023-06-04 21:03:25+00:00", "2023-06-04 21:03:26+00:00", "2023-06-04 21:03:28+00:00", "2023-06-04 21:03:29+00:00", "2023-06-04 21:03:30+00:00", "2023-06-04 21:03:32+00:00", "2023-06-04 21:03:33+00:00", "2023-06-04 21:03:35+00:00", "2023-06-04 21:03:36+00:00", "2023-06-04 21:03:37+00:00", "2023-06-04 21:03:39+00:00", "2023-06-04 21:03:40+00:00", "2023-06-04 21:03:42+00:00", "2023-06-04 21:03:43+00:00", "2023-06-04 21:03:44+00:00", "2023-06-04 21:03:46+00:00", "2023-06-04 21:03:47+00:00", "2023-06-04 21:03:49+00:00", "2023-06-04 21:03:50+00:00", "2023-06-04 21:03:52+00:00", "2023-06-04 21:03:53+00:00", "2023-06-04 21:03:55+00:00", "2023-06-04 21:03:56+00:00", "2023-06-04 21:03:58+00:00", "2023-06-04 21:03:59+00:00", "2023-06-04 21:04:01+00:00", "2023-06-04 21:04:02+00:00", "2023-06-04 21:04:04+00:00", "2023-06-04 21:04:05+00:00", "2023-06-04 21:04:07+00:00", "2023-06-04 21:04:08+00:00", "2023-06-04 21:04:10+00:00", "2023-06-04 21:04:11+00:00", "2023-06-04 21:04:13+00:00", "2023-06-04 21:04:14+00:00", "2023-06-04 21:04:16+00:00"]}}, {"type": "Feature", "id": "trace#2", "geometry": {"type": "LineString", "coordinates": [[-83.648413, 32.861888], [-83.647952, 32.861659], [-83.647481, 32.861438], [-83.647008, 32.861218], [-83.646539, 32.860979], [-83.646094, 32.860727], [-83.645652, 32.860453], [-83.645218, 32.860179], [-83.644772, 32.859895], [-83.644335, 32.859617], [-83.643899, 32.85934], [-83.643465, 32.859063], [-83.643026, 32.858785], [-83.642599, 32.858506], [-83.642186, 32.858207], [-83.641765, 32.857899], [-83.641339, 32.857595], [-83.640909, 32.857299], [-83.640485, 32.857009], [-83.640065, 32.856721], [-83.639631, 32.856439], [-83.639182, 32.856175], [-83.638725, 32.855895], [-83.638296, 32.855611], [-83.637885, 32.855304], [-83.637476, 32.854982], [-83.637071, 32.854683], [-83.636643, 32.85441], [-83.636187, 32.854164], [-83.635712, 32.853923], [-83.635238, 32.853671], [-83.634782, 32.853428], [-83.63431, 32.853176], [-83.633839, 32.852925], [-83.633361, 32.85267], [-83.632894, 32.85241], [-83.632458, 32.852141], [-83.632027, 32.851843], [-83.631625, 32.851535], [-83.631231, 32.851205], [-83.630855, 32.850874], [-83.63047, 32.850537], [-83.630095, 32.850208], [-83.629697, 32.849859], [-83.629309, 32.84952], [-83.628929, 32.849185], [-83.628552, 32.84885], [-83.628188, 32.848514], [-83.627801, 32.848135], [-83.627454, 32.847788], [-83.627123, 32.847424], [-83.626832, 32.84703], [-83.626546, 32.846595], [-83.626269, 32.846157], [-83.625985, 32.845723], [-83.625696, 32.845306], [-83.6254, 32.844922], [-83.625065, 32.84456], [-83.624709, 32.844203], [-83.624382, 32.843833], [-83.624069, 32.843468], [-83.623747, 32.843104], [-83.623401, 32.842754], [-83.623033, 32.842425], [-83.62265, 32.842101], [-83.622279, 32.841773], [-83.621876, 32.841436], [-83.621478, 32.841119], [-83.621083, 32.840814], [-83.62066, 32.840485], [-83.620257, 32.840186], [-83.619833, 32.8399], [-83.619378, 32.839635], [-83.618913, 32.839386], [-83.618442, 32.839152], [-83.617964, 32.838931], [-83.617455, 32.838712], [-83.61697, 32.838521], [-83.616462, 32.838329], [-83.615968, 32.838125], [-83.615472, 32.837897], [-83.614985, 32.837641], [-83.614522, 32.837382], [-83.614088, 32.837114], [-83.613668, 32.836831], [-83.613238, 32.836515], [-83.612827, 32.836182], [-83.612448, 32.835864], [-83.61206, 32.835538], [-83.611679, 32.835221], [-83.611289, 32.834896], [-83.610883, 32.834556], [-83.610488, 32.834226], [-83.610095, 32.833899], [-83.609714, 32.833581], [-83.609319, 32.83325], [-83.608912, 32.83291], [-83.608519, 32.832579], [-83.608123, 32.83225], [-83.607731, 32.831924], [-83.60733, 32.831585]]}, "properties": {"filename": "osm-traces-page-10.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7579456", "track.name": "2023_05_20T01_24_29.316387Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2023.03.29 (KIA EV6 2022).", "times": ["2023-05-20 01:25:05+00:00", "2023-05-20 01:25:54+00:00", "2023-05-20 01:26:09+00:00", "2023-05-20 01:26:16+00:00", "2023-05-20 01:26:23+00:00", "2023-05-20 01:26:28+00:00", "2023-05-20 01:26:32+00:00", "2023-05-20 01:26:36+00:00", "2023-05-20 01:26:39+00:00", "2023-05-20 01:26:42+00:00", "2023-05-20 01:26:46+00:00", "2023-05-20 01:26:50+00:00", "2023-05-20 01:26:54+00:00", "2023-05-20 01:26:58+00:00", "2023-05-20 01:27:01+00:00", "2023-05-20 01:27:04+00:00", "2023-05-20 01:27:07+00:00", "2023-05-20 01:27:10+00:00", "2023-05-20 01:27:13+00:00", "2023-05-20 01:27:16+00:00", "2023-05-20 01:27:18+00:00", "2023-05-20 01:27:21+00:00", "2023-05-20 01:27:23+00:00", "2023-05-20 01:27:26+00:00", "2023-05-20 01:27:28+00:00", "2023-05-20 01:27:31+00:00", "2023-05-20 01:27:33+00:00", "2023-05-20 01:27:36+00:00", "2023-05-20 01:27:38+00:00", "2023-05-20 01:27:41+00:00", "2023-05-20 01:27:43+00:00", "2023-05-20 01:27:46+00:00", "2023-05-20 01:27:48+00:00", "2023-05-20 01:27:50+00:00", "2023-05-20 01:27:53+00:00", "2023-05-20 01:27:55+00:00", "2023-05-20 01:27:57+00:00", "2023-05-20 01:27:59+00:00", "2023-05-20 01:28:01+00:00", "2023-05-20 01:28:03+00:00", "2023-05-20 01:28:05+00:00", "2023-05-20 01:28:07+00:00", "2023-05-20 01:28:09+00:00", "2023-05-20 01:28:11+00:00", "2023-05-20 01:28:13+00:00", "2023-05-20 01:28:14+00:00", "2023-05-20 01:28:16+00:00", "2023-05-20 01:28:18+00:00", "2023-05-20 01:28:20+00:00", "2023-05-20 01:28:21+00:00", "2023-05-20 01:28:23+00:00", "2023-05-20 01:28:25+00:00", "2023-05-20 01:28:27+00:00", "2023-05-20 01:28:29+00:00", "2023-05-20 01:28:31+00:00", "2023-05-20 01:28:33+00:00", "2023-05-20 01:28:35+00:00", "2023-05-20 01:28:37+00:00", "2023-05-20 01:28:39+00:00", "2023-05-20 01:28:42+00:00", "2023-05-20 01:28:44+00:00", "2023-05-20 01:28:46+00:00", "2023-05-20 01:28:48+00:00", "2023-05-20 01:28:50+00:00", "2023-05-20 01:28:52+00:00", "2023-05-20 01:28:54+00:00", "2023-05-20 01:28:56+00:00", "2023-05-20 01:28:58+00:00", "2023-05-20 01:29:00+00:00", "2023-05-20 01:29:02+00:00", "2023-05-20 01:29:04+00:00", "2023-05-20 01:29:07+00:00", "2023-05-20 01:29:09+00:00", "2023-05-20 01:29:11+00:00", "2023-05-20 01:29:13+00:00", "2023-05-20 01:29:15+00:00", "2023-05-20 01:29:17+00:00", "2023-05-20 01:29:19+00:00", "2023-05-20 01:29:21+00:00", "2023-05-20 01:29:23+00:00", "2023-05-20 01:29:25+00:00", "2023-05-20 01:29:27+00:00", "2023-05-20 01:29:29+00:00", "2023-05-20 01:29:31+00:00", "2023-05-20 01:29:32+00:00", "2023-05-20 01:29:34+00:00", "2023-05-20 01:29:36+00:00", "2023-05-20 01:29:38+00:00", "2023-05-20 01:29:40+00:00", "2023-05-20 01:29:42+00:00", "2023-05-20 01:29:44+00:00", "2023-05-20 01:29:46+00:00", "2023-05-20 01:29:48+00:00", "2023-05-20 01:29:50+00:00", "2023-05-20 01:29:52+00:00", "2023-05-20 01:29:54+00:00", "2023-05-20 01:29:56+00:00", "2023-05-20 01:29:58+00:00", "2023-05-20 01:30:00+00:00", "2023-05-20 01:30:02+00:00", "2023-05-20 01:30:03+00:00"]}}, {"type": "Feature", "id": "trace#3", "geometry": {"type": "LineString", "coordinates": [[-83.660577, 32.77453], [-83.66161, 32.776355], [-83.661873, 32.776798], [-83.66213, 32.777257], [-83.662658, 32.77817], [-83.663177, 32.7791], [-83.663623, 32.779865], [-83.66387, 32.780268], [-83.664425, 32.781233], [-83.66409, 32.780662], [-83.6647, 32.781705], [-83.665132, 32.78246], [-83.665575, 32.783243], [-83.665978, 32.783942], [-83.666387, 32.784667], [-83.666645, 32.785112], [-83.66715, 32.786002], [-83.667457, 32.786568], [-83.66789, 32.78757], [-83.668095, 32.78812], [-83.668267, 32.788668], [-83.668357, 32.789147], [-83.668488, 32.789948], [-83.668515, 32.790402], [-83.668508, 32.79105], [-83.668468, 32.791673], [-83.66841, 32.792152], [-83.668287, 32.792787], [-83.668162, 32.793338], [-83.668, 32.793802], [-83.667713, 32.79451], [-83.667497, 32.794965], [-83.667253, 32.79542], [-83.666643, 32.796512], [-83.666362, 32.796987], [-83.665898, 32.797783], [-83.66515, 32.799095], [-83.664785, 32.799703], [-83.663992, 32.801095], [-83.663703, 32.801653], [-83.663473, 32.802202], [-83.66332, 32.802638], [-83.663167, 32.803235], [-83.663077, 32.803867], [-83.663037, 32.804495], [-83.663022, 32.805302], [-83.662987, 32.806445], [-83.662975, 32.807595], [-83.662962, 32.808508], [-83.662938, 32.809255], [-83.6629, 32.81041], [-83.662898, 32.811032], [-83.662897, 32.811523], [-83.662868, 32.812218], [-83.662825, 32.813245], [-83.662795, 32.813808], [-83.662752, 32.81468], [-83.662735, 32.815207], [-83.66274, 32.816138], [-83.662778, 32.81689], [-83.662815, 32.817498], [-83.663285, 32.817785], [-83.663017, 32.818198], [-83.66291, 32.817073], [-83.663025, 32.816618], [-83.663797, 32.81661], [-83.664395, 32.816583], [-83.664952, 32.816615], [-83.665137, 32.816097], [-83.665182, 32.815518], [-83.665275, 32.815067], [-83.665258, 32.814615], [-83.666693, 32.814615], [-83.668893, 32.81468], [-83.66966, 32.81469], [-83.670657, 32.814718], [-83.672383, 32.814758], [-83.673173, 32.81475], [-83.674065, 32.814742], [-83.674705, 32.814758], [-83.675305, 32.814783], [-83.675977, 32.81482], [-83.676623, 32.81485], [-83.678085, 32.814922], [-83.67863, 32.814952], [-83.680647, 32.815065], [-83.681525, 32.815108], [-83.682203, 32.81517], [-83.682912, 32.815213], [-83.685088, 32.815328], [-83.686973, 32.815425], [-83.688308, 32.8155], [-83.690598, 32.815617], [-83.692237, 32.815708], [-83.693385, 32.815763], [-83.694333, 32.815807], [-83.695352, 32.815843], [-83.696215, 32.815895], [-83.698252, 32.816], [-83.699227, 32.81605], [-83.700222, 32.816097]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 1, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 0, "track.description": null, "times": ["2014-07-10 19:47:53+00:00", "2014-07-10 19:48:05+00:00", "2014-07-10 19:48:08+00:00", "2014-07-10 19:48:11+00:00", "2014-07-10 19:48:17+00:00", "2014-07-10 19:48:24+00:00", "2014-07-10 19:48:34+00:00", "2014-07-10 19:48:52+00:00", "2014-07-10 19:48:55+00:00", "2014-07-10 19:48:56+00:00", "2014-07-10 19:49:05+00:00", "2014-07-10 19:49:11+00:00", "2014-07-10 19:49:17+00:00", "2014-07-10 19:49:22+00:00", "2014-07-10 19:49:27+00:00", "2014-07-10 19:49:30+00:00", "2014-07-10 19:49:36+00:00", "2014-07-10 19:49:40+00:00", "2014-07-10 19:49:46+00:00", "2014-07-10 19:49:49+00:00", "2014-07-10 19:49:52+00:00", "2014-07-10 19:49:55+00:00", "2014-07-10 19:50:02+00:00", "2014-07-10 19:50:35+00:00", "2014-07-10 19:50:41+00:00", "2014-07-10 19:50:45+00:00", "2014-07-10 19:50:48+00:00", "2014-07-10 19:50:52+00:00", "2014-07-10 19:50:59+00:00", "2014-07-10 19:51:04+00:00", "2014-07-10 19:51:09+00:00", "2014-07-10 19:51:12+00:00", "2014-07-10 19:51:15+00:00", "2014-07-10 19:51:22+00:00", "2014-07-10 19:51:25+00:00", "2014-07-10 19:51:30+00:00", "2014-07-10 19:51:39+00:00", "2014-07-10 19:51:43+00:00", "2014-07-10 19:51:52+00:00", "2014-07-10 19:51:56+00:00", "2014-07-10 19:52:00+00:00", "2014-07-10 19:52:03+00:00", "2014-07-10 19:52:07+00:00", "2014-07-10 19:52:11+00:00", "2014-07-10 19:52:15+00:00", "2014-07-10 19:52:21+00:00", "2014-07-10 19:52:44+00:00", "2014-07-10 19:52:52+00:00", "2014-07-10 19:52:58+00:00", "2014-07-10 19:53:04+00:00", "2014-07-10 19:53:15+00:00", "2014-07-10 19:53:30+00:00", "2014-07-10 19:53:58+00:00", "2014-07-10 19:54:04+00:00", "2014-07-10 19:54:11+00:00", "2014-07-10 19:54:16+00:00", "2014-07-10 19:56:11+00:00", "2014-07-10 19:56:15+00:00", "2014-07-10 19:56:22+00:00", "2014-07-10 19:56:28+00:00", "2014-07-10 19:56:33+00:00", "2014-07-10 19:57:11+00:00", "2014-07-10 19:57:28+00:00", "2014-07-10 19:57:56+00:00", "2014-07-10 19:58:02+00:00", "2014-07-10 19:58:11+00:00", "2014-07-10 19:58:22+00:00", "2014-07-10 20:05:53+00:00", "2014-07-10 20:06:07+00:00", "2014-07-10 20:06:17+00:00", "2014-07-10 20:06:25+00:00", "2014-07-10 20:06:35+00:00", "2014-07-10 20:06:48+00:00", "2014-07-10 20:07:01+00:00", "2014-07-10 20:07:05+00:00", "2014-07-10 20:07:10+00:00", "2014-07-10 20:07:18+00:00", "2014-07-10 20:07:22+00:00", "2014-07-10 20:07:28+00:00", "2014-07-10 20:07:36+00:00", "2014-07-10 20:07:50+00:00", "2014-07-10 20:07:55+00:00", "2014-07-10 20:07:59+00:00", "2014-07-10 20:08:07+00:00", "2014-07-10 20:08:10+00:00", "2014-07-10 20:08:20+00:00", "2014-07-10 20:08:24+00:00", "2014-07-10 20:08:27+00:00", "2014-07-10 20:08:30+00:00", "2014-07-10 20:08:39+00:00", "2014-07-10 20:08:47+00:00", "2014-07-10 20:08:53+00:00", "2014-07-10 20:09:04+00:00", "2014-07-10 20:09:12+00:00", "2014-07-10 20:09:18+00:00", "2014-07-10 20:09:23+00:00", "2014-07-10 20:09:28+00:00", "2014-07-10 20:09:32+00:00", "2014-07-10 20:09:41+00:00", "2014-07-10 20:09:45+00:00", "2014-07-10 20:09:49+00:00"]}}, {"type": "Feature", "id": "trace#4", "geometry": {"type": "LineString", "coordinates": [[-83.722318, 32.822477], [-83.721813, 32.82279], [-83.721283, 32.823068], [-83.72073, 32.823323], [-83.720182, 32.823588], [-83.719608, 32.823827], [-83.718977, 32.823963], [-83.717273, 32.824215], [-83.71628, 32.824352], [-83.715525, 32.82452], [-83.714445, 32.824885], [-83.71382, 32.825047], [-83.713312, 32.825325], [-83.712578, 32.82559], [-83.712, 32.825602], [-83.711397, 32.825672], [-83.710787, 32.82566], [-83.710102, 32.82555], [-83.708572, 32.825292], [-83.707162, 32.825085], [-83.706612, 32.824997], [-83.705877, 32.824877], [-83.705148, 32.824723], [-83.70458, 32.824553], [-83.703428, 32.82409], [-83.702855, 32.823858], [-83.7023, 32.823627], [-83.70154, 32.823322], [-83.700778, 32.823023], [-83.700045, 32.822723], [-83.699512, 32.822513], [-83.697723, 32.821797], [-83.696842, 32.82144], [-83.696103, 32.821155], [-83.695272, 32.82082], [-83.69465, 32.820598], [-83.694132, 32.820482], [-83.69357, 32.82043], [-83.692522, 32.820442], [-83.690925, 32.82048], [-83.690042, 32.820565], [-83.689342, 32.820707], [-83.68863, 32.820857], [-83.687718, 32.82106], [-83.68689, 32.82128], [-83.686328, 32.82146], [-83.685615, 32.821732], [-83.685087, 32.821965], [-83.684137, 32.82245], [-83.683347, 32.822868], [-83.682722, 32.823212], [-83.682002, 32.823587], [-83.68132, 32.82395], [-83.680795, 32.824225], [-83.678898, 32.825162], [-83.677757, 32.82573], [-83.677127, 32.825967], [-83.676602, 32.826087], [-83.676018, 32.826135], [-83.674788, 32.82612], [-83.673953, 32.826092], [-83.67129, 32.826018], [-83.66925, 32.825968], [-83.667577, 32.825953], [-83.668632, 32.825963], [-83.667577, 32.825953], [-83.666935, 32.82594], [-83.66611, 32.825928], [-83.664798, 32.825922], [-83.663867, 32.825908], [-83.663157, 32.825843], [-83.662605, 32.82579], [-83.661588, 32.825772], [-83.66085, 32.825767], [-83.659463, 32.82575], [-83.658378, 32.825765], [-83.65742, 32.825735], [-83.656738, 32.825705], [-83.656155, 32.825615], [-83.655755, 32.825267], [-83.655783, 32.824742], [-83.656332, 32.824648], [-83.656828, 32.825007], [-83.65693, 32.82564], [-83.656858, 32.826175], [-83.656645, 32.82699], [-83.656395, 32.827613], [-83.656065, 32.828223], [-83.655657, 32.828792], [-83.655197, 32.829345], [-83.654583, 32.830097], [-83.654132, 32.830637], [-83.653702, 32.831175], [-83.653275, 32.83173], [-83.652817, 32.832275], [-83.65253, 32.832655], [-83.652207, 32.833023], [-83.651755, 32.833573], [-83.651265, 32.834148], [-83.650643, 32.83493], [-83.650183, 32.8355]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 2, "track.link": null, "track.name": null, "track.segment.number": 1, "track.segment.split.number": 1, "track.description": null, "times": ["2014-07-01 15:00:16+00:00", "2014-07-01 15:00:19+00:00", "2014-07-01 15:00:22+00:00", "2014-07-01 15:00:25+00:00", "2014-07-01 15:00:28+00:00", "2014-07-01 15:00:31+00:00", "2014-07-01 15:00:34+00:00", "2014-07-01 15:00:42+00:00", "2014-07-01 15:00:47+00:00", "2014-07-01 15:00:51+00:00", "2014-07-01 15:00:57+00:00", "2014-07-01 15:01:01+00:00", "2014-07-01 15:01:07+00:00", "2014-07-01 15:02:25+00:00", "2014-07-01 15:02:29+00:00", "2014-07-01 15:02:33+00:00", "2014-07-01 15:02:38+00:00", "2014-07-01 15:03:15+00:00", "2014-07-01 15:03:26+00:00", "2014-07-01 15:03:34+00:00", "2014-07-01 15:03:37+00:00", "2014-07-01 15:03:40+00:00", "2014-07-01 15:03:44+00:00", "2014-07-01 15:03:47+00:00", "2014-07-01 15:03:53+00:00", "2014-07-01 15:03:56+00:00", "2014-07-01 15:03:59+00:00", "2014-07-01 15:04:03+00:00", "2014-07-01 15:04:07+00:00", "2014-07-01 15:04:11+00:00", "2014-07-01 15:04:14+00:00", "2014-07-01 15:04:25+00:00", "2014-07-01 15:04:31+00:00", "2014-07-01 15:04:39+00:00", "2014-07-01 15:05:32+00:00", "2014-07-01 15:05:36+00:00", "2014-07-01 15:05:39+00:00", "2014-07-01 15:05:42+00:00", "2014-07-01 15:05:47+00:00", "2014-07-01 15:05:55+00:00", "2014-07-01 15:06:00+00:00", "2014-07-01 15:06:04+00:00", "2014-07-01 15:06:08+00:00", "2014-07-01 15:06:13+00:00", "2014-07-01 15:06:18+00:00", "2014-07-01 15:06:23+00:00", "2014-07-01 15:06:30+00:00", "2014-07-01 15:06:34+00:00", "2014-07-01 15:06:41+00:00", "2014-07-01 15:06:48+00:00", "2014-07-01 15:06:54+00:00", "2014-07-01 15:07:00+00:00", "2014-07-01 15:07:06+00:00", "2014-07-01 15:07:10+00:00", "2014-07-01 15:07:23+00:00", "2014-07-01 15:07:31+00:00", "2014-07-01 15:07:35+00:00", "2014-07-01 15:07:38+00:00", "2014-07-01 15:07:41+00:00", "2014-07-01 15:07:47+00:00", "2014-07-01 15:07:51+00:00", "2014-07-01 15:08:04+00:00", "2014-07-01 15:08:14+00:00", "2014-07-01 15:08:16+00:00", "2014-07-01 15:08:17+00:00", "2014-07-01 15:08:22+00:00", "2014-07-01 15:08:25+00:00", "2014-07-01 15:08:29+00:00", "2014-07-01 15:08:36+00:00", "2014-07-01 15:08:42+00:00", "2014-07-01 15:09:16+00:00", "2014-07-01 15:09:21+00:00", "2014-07-01 15:09:28+00:00", "2014-07-01 15:09:32+00:00", "2014-07-01 15:09:39+00:00", "2014-07-01 15:09:45+00:00", "2014-07-01 15:09:51+00:00", "2014-07-01 15:09:55+00:00", "2014-07-01 15:09:59+00:00", "2014-07-01 15:10:03+00:00", "2014-07-01 15:10:08+00:00", "2014-07-01 15:10:12+00:00", "2014-07-01 15:10:16+00:00", "2014-07-01 15:10:20+00:00", "2014-07-01 15:10:23+00:00", "2014-07-01 15:10:27+00:00", "2014-07-01 15:10:30+00:00", "2014-07-01 15:10:33+00:00", "2014-07-01 15:10:36+00:00", "2014-07-01 15:10:39+00:00", "2014-07-01 15:10:43+00:00", "2014-07-01 15:10:46+00:00", "2014-07-01 15:10:49+00:00", "2014-07-01 15:10:52+00:00", "2014-07-01 15:10:55+00:00", "2014-07-01 15:10:57+00:00", "2014-07-01 15:10:59+00:00", "2014-07-01 15:11:02+00:00", "2014-07-01 15:11:05+00:00", "2014-07-01 15:11:09+00:00", "2014-07-01 15:11:12+00:00"]}}, {"type": "Feature", "id": "trace#5", "geometry": {"type": "LineString", "coordinates": [[-83.602553, 32.836932], [-83.602073, 32.836669], [-83.601471, 32.836613], [-83.601704, 32.837023], [-83.602084, 32.837395], [-83.602681, 32.837467], [-83.603274, 32.837614], [-83.603715, 32.837243], [-83.603316, 32.837581], [-83.603625, 32.837969], [-83.603756, 32.838416], [-83.60404, 32.838874], [-83.604392, 32.839242], [-83.605023, 32.839226], [-83.60555, 32.839082], [-83.606115, 32.839033], [-83.606605, 32.8388], [-83.607168, 32.838677], [-83.607012, 32.838177], [-83.606791, 32.837711], [-83.607024, 32.837178], [-83.607255, 32.836771], [-83.607553, 32.836397], [-83.607503, 32.835936], [-83.607529, 32.836526], [-83.60717, 32.836957], [-83.606898, 32.837503], [-83.606866, 32.837957], [-83.607089, 32.838414], [-83.606685, 32.838795], [-83.60618, 32.838992], [-83.605588, 32.839034], [-83.605098, 32.839222], [-83.604513, 32.839246], [-83.603971, 32.839124], [-83.603503, 32.839391], [-83.603033, 32.839746], [-83.602449, 32.839457], [-83.602079, 32.839906], [-83.601412, 32.839986], [-83.600854, 32.840189], [-83.600311, 32.840323], [-83.600013, 32.840723], [-83.599654, 32.841215], [-83.599913, 32.841614], [-83.600564, 32.8418], [-83.601135, 32.841738], [-83.601553, 32.841415], [-83.601921, 32.841071], [-83.602422, 32.840748], [-83.602518, 32.841217], [-83.602423, 32.841757], [-83.602689, 32.842152], [-83.603129, 32.842455]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 3, "track.link": "/user/maven149/traces/1732492", "track.name": "2014_06_22_16.17.45.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Ocmulgee National Monument trails", "times": ["2014-06-22 19:10:38+00:00", "2014-06-22 19:11:10+00:00", "2014-06-22 19:11:45+00:00", "2014-06-22 19:12:25+00:00", "2014-06-22 19:13:01+00:00", "2014-06-22 19:13:40+00:00", "2014-06-22 19:14:19+00:00", "2014-06-22 19:15:20+00:00", "2014-06-22 19:16:26+00:00", "2014-06-22 19:17:05+00:00", "2014-06-22 19:17:40+00:00", "2014-06-22 19:18:28+00:00", "2014-06-22 19:19:58+00:00", "2014-06-22 19:20:36+00:00", "2014-06-22 19:21:06+00:00", "2014-06-22 19:21:34+00:00", "2014-06-22 19:22:02+00:00", "2014-06-22 19:22:35+00:00", "2014-06-22 19:31:11+00:00", "2014-06-22 19:32:23+00:00", "2014-06-22 19:33:02+00:00", "2014-06-22 19:33:32+00:00", "2014-06-22 19:34:05+00:00", "2014-06-22 19:34:37+00:00", "2014-06-22 19:43:40+00:00", "2014-06-22 19:44:18+00:00", "2014-06-22 19:44:59+00:00", "2014-06-22 19:46:44+00:00", "2014-06-22 19:48:17+00:00", "2014-06-22 19:54:26+00:00", "2014-06-22 19:54:58+00:00", "2014-06-22 19:55:34+00:00", "2014-06-22 19:56:04+00:00", "2014-06-22 19:56:39+00:00", "2014-06-22 19:57:13+00:00", "2014-06-22 19:57:48+00:00", "2014-06-22 19:58:30+00:00", "2014-06-22 19:59:14+00:00", "2014-06-22 20:00:06+00:00", "2014-06-22 20:00:51+00:00", "2014-06-22 20:01:30+00:00", "2014-06-22 20:02:33+00:00", "2014-06-22 20:03:08+00:00", "2014-06-22 20:03:49+00:00", "2014-06-22 20:06:57+00:00", "2014-06-22 20:08:44+00:00", "2014-06-22 20:09:20+00:00", "2014-06-22 20:10:00+00:00", "2014-06-22 20:10:41+00:00", "2014-06-22 20:11:26+00:00", "2014-06-22 20:12:09+00:00", "2014-06-22 20:12:52+00:00", "2014-06-22 20:13:53+00:00", "2014-06-22 20:15:15+00:00"]}}, {"type": "Feature", "id": "trace#6", "geometry": {"type": "LineString", "coordinates": [[-83.690424, 32.891006], [-83.690748, 32.88923], [-83.691072, 32.887454], [-83.691396, 32.885678], [-83.69172, 32.883902], [-83.692206, 32.881238], [-83.69253, 32.879462], [-83.693016, 32.876798], [-83.693178, 32.87591], [-83.693502, 32.874134], [-83.693826, 32.872358], [-83.69415, 32.870582], [-83.694474, 32.868806], [-83.69496, 32.866143], [-83.695446, 32.863478], [-83.69577, 32.861702], [-83.695932, 32.860814], [-83.696418, 32.858151], [-83.69658, 32.857262]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 8, "track.link": null, "track.name": null, "track.segment.number": 1, "track.segment.split.number": 0, "track.description": null, "times": ["2014-05-18 17:40:07+00:00", "2014-05-18 17:40:08+00:00", "2014-05-18 17:40:09+00:00", "2014-05-18 17:40:10+00:00", "2014-05-18 17:40:11+00:00", "2014-05-18 17:40:12+00:00", "2014-05-18 17:40:13+00:00", "2014-05-18 17:40:14+00:00", "2014-05-18 17:40:15+00:00", "2014-05-18 17:40:16+00:00", "2014-05-18 17:40:17+00:00", "2014-05-18 17:40:18+00:00", "2014-05-18 17:40:19+00:00", "2014-05-18 17:40:20+00:00", "2014-05-18 17:40:21+00:00", "2014-05-18 17:40:22+00:00", "2014-05-18 17:40:23+00:00", "2014-05-18 17:40:24+00:00", "2014-05-18 17:40:25+00:00"]}}, {"type": "Feature", "id": "trace#7", "geometry": {"type": "LineString", "coordinates": [[-83.698684, 32.845718], [-83.699008, 32.843942], [-83.699332, 32.842166], [-83.699656, 32.84039], [-83.699979, 32.838614], [-83.700465, 32.835951], [-83.700789, 32.834175], [-83.700951, 32.833286], [-83.701274, 32.831511], [-83.70176, 32.828846], [-83.701922, 32.827958], [-83.702407, 32.825294], [-83.702731, 32.823518], [-83.703054, 32.821742], [-83.703378, 32.819966], [-83.703701, 32.81819], [-83.704187, 32.815526], [-83.70451, 32.81375], [-83.704834, 32.811974], [-83.705319, 32.80931], [-83.705481, 32.808422], [-83.705966, 32.805758], [-83.70629, 32.803982], [-83.706613, 32.802206], [-83.706936, 32.80043], [-83.70726, 32.798654], [-83.707583, 32.796878]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 8, "track.link": null, "track.name": null, "track.segment.number": 1, "track.segment.split.number": 2, "track.description": null, "times": ["2014-05-18 17:40:30+00:00", "2014-05-18 17:40:31+00:00", "2014-05-18 17:40:32+00:00", "2014-05-18 17:40:33+00:00", "2014-05-18 17:40:34+00:00", "2014-05-18 17:40:35+00:00", "2014-05-18 17:40:36+00:00", "2014-05-18 17:40:37+00:00", "2014-05-18 17:40:38+00:00", "2014-05-18 17:40:39+00:00", "2014-05-18 17:40:40+00:00", "2014-05-18 17:40:41+00:00", "2014-05-18 17:40:42+00:00", "2014-05-18 17:40:43+00:00", "2014-05-18 17:40:44+00:00", "2014-05-18 17:40:45+00:00", "2014-05-18 17:40:46+00:00", "2014-05-18 17:40:47+00:00", "2014-05-18 17:40:48+00:00", "2014-05-18 17:40:49+00:00", "2014-05-18 17:40:50+00:00", "2014-05-18 17:40:51+00:00", "2014-05-18 17:40:52+00:00", "2014-05-18 17:40:53+00:00", "2014-05-18 17:40:54+00:00", "2014-05-18 17:40:55+00:00", "2014-05-18 17:40:56+00:00"]}}, {"type": "Feature", "id": "trace#8", "geometry": {"type": "LineString", "coordinates": [[-83.645688, 32.841232], [-83.645091, 32.841977], [-83.644494, 32.842722], [-83.64414, 32.843165], [-83.643555, 32.843883], [-83.6432, 32.844368], [-83.642913, 32.844888], [-83.64267, 32.845427], [-83.642472, 32.845972], [-83.642322, 32.846533], [-83.642185, 32.847398], [-83.642132, 32.847978], [-83.642081, 32.848876], [-83.642037, 32.849663], [-83.641985, 32.850207], [-83.641747, 32.851355], [-83.641907, 32.85074], [-83.641802, 32.851267], [-83.641588, 32.852043], [-83.641387, 32.852532], [-83.641127, 32.852988], [-83.64061, 32.853775], [-83.640282, 32.854342], [-83.640045, 32.855102], [-83.639937, 32.85592], [-83.639978, 32.856778], [-83.640137, 32.857423], [-83.640525, 32.858227], [-83.640925, 32.858752], [-83.64143, 32.859235], [-83.642243, 32.859798], [-83.642942, 32.860128], [-83.643692, 32.860417], [-83.644676, 32.860768], [-83.645704, 32.861158], [-83.646472, 32.861452], [-83.64711, 32.861703], [-83.648242, 32.86219], [-83.649205, 32.86258], [-83.649997, 32.8629], [-83.650748, 32.863195], [-83.651215, 32.863423], [-83.651872, 32.863838], [-83.652308, 32.864158], [-83.652732, 32.864523], [-83.653382, 32.865115], [-83.654094, 32.865785], [-83.654667, 32.866325], [-83.655108, 32.866718], [-83.655833, 32.867379], [-83.656558, 32.86804], [-83.657283, 32.8687], [-83.658038, 32.869414], [-83.658747, 32.870086], [-83.659123, 32.870443], [-83.659788, 32.871127], [-83.660212, 32.871597], [-83.660622, 32.872077], [-83.661229, 32.872816], [-83.661613, 32.873285], [-83.662407, 32.87427], [-83.663209, 32.87523], [-83.663827, 32.875963], [-83.66421, 32.876418], [-83.664819, 32.877156], [-83.665429, 32.877895], [-83.66579, 32.878332], [-83.666427, 32.879053], [-83.667045, 32.879752], [-83.667677, 32.880476], [-83.668278, 32.881178], [-83.668888, 32.881882], [-83.669488, 32.882626], [-83.67005, 32.883323], [-83.670662, 32.88406], [-83.671454, 32.885026], [-83.672033, 32.885735], [-83.672615, 32.886465], [-83.673222, 32.887205], [-83.674006, 32.888145], [-83.67449, 32.888692], [-83.675103, 32.889428], [-83.675503, 32.889908], [-83.675828, 32.890313]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 9, "track.link": null, "track.name": null, "track.segment.number": 2, "track.segment.split.number": 1, "track.description": null, "times": ["2014-05-10 18:59:33+00:00", "2014-05-10 18:59:36+00:00", "2014-05-10 18:59:39+00:00", "2014-05-10 18:59:41+00:00", "2014-05-10 18:59:44+00:00", "2014-05-10 18:59:46+00:00", "2014-05-10 18:59:48+00:00", "2014-05-10 18:59:50+00:00", "2014-05-10 18:59:52+00:00", "2014-05-10 18:59:54+00:00", "2014-05-10 18:59:57+00:00", "2014-05-10 18:59:59+00:00", "2014-05-10 19:00:02+00:00", "2014-05-10 19:00:05+00:00", "2014-05-10 19:00:07+00:00", "2014-05-10 19:00:08+00:00", "2014-05-10 19:00:09+00:00", "2014-05-10 19:00:11+00:00", "2014-05-10 19:00:14+00:00", "2014-05-10 19:00:16+00:00", "2014-05-10 19:00:18+00:00", "2014-05-10 19:00:21+00:00", "2014-05-10 19:00:25+00:00", "2014-05-10 19:00:29+00:00", "2014-05-10 19:00:33+00:00", "2014-05-10 19:00:37+00:00", "2014-05-10 19:00:40+00:00", "2014-05-10 19:00:44+00:00", "2014-05-10 19:00:47+00:00", "2014-05-10 19:00:50+00:00", "2014-05-10 19:00:54+00:00", "2014-05-10 19:00:57+00:00", "2014-05-10 19:01:00+00:00", "2014-05-10 19:01:03+00:00", "2014-05-10 19:01:08+00:00", "2014-05-10 19:01:12+00:00", "2014-05-10 19:01:15+00:00", "2014-05-10 19:01:20+00:00", "2014-05-10 19:01:23+00:00", "2014-05-10 19:01:27+00:00", "2014-05-10 19:01:30+00:00", "2014-05-10 19:01:32+00:00", "2014-05-10 19:01:35+00:00", "2014-05-10 19:01:37+00:00", "2014-05-10 19:01:39+00:00", "2014-05-10 19:01:42+00:00", "2014-05-10 19:01:45+00:00", "2014-05-10 19:01:48+00:00", "2014-05-10 19:01:50+00:00", "2014-05-10 19:01:53+00:00", "2014-05-10 19:01:56+00:00", "2014-05-10 19:01:59+00:00", "2014-05-10 19:02:03+00:00", "2014-05-10 19:02:06+00:00", "2014-05-10 19:02:08+00:00", "2014-05-10 19:02:11+00:00", "2014-05-10 19:02:13+00:00", "2014-05-10 19:02:15+00:00", "2014-05-10 19:02:18+00:00", "2014-05-10 19:02:20+00:00", "2014-05-10 19:02:24+00:00", "2014-05-10 19:02:28+00:00", "2014-05-10 19:02:31+00:00", "2014-05-10 19:02:33+00:00", "2014-05-10 19:02:36+00:00", "2014-05-10 19:02:39+00:00", "2014-05-10 19:02:41+00:00", "2014-05-10 19:02:44+00:00", "2014-05-10 19:02:47+00:00", "2014-05-10 19:02:50+00:00", "2014-05-10 19:02:53+00:00", "2014-05-10 19:02:56+00:00", "2014-05-10 19:02:59+00:00", "2014-05-10 19:03:02+00:00", "2014-05-10 19:03:05+00:00", "2014-05-10 19:03:09+00:00", "2014-05-10 19:03:12+00:00", "2014-05-10 19:03:15+00:00", "2014-05-10 19:03:18+00:00", "2014-05-10 19:03:22+00:00", "2014-05-10 19:03:25+00:00", "2014-05-10 19:03:28+00:00", "2014-05-10 19:03:31+00:00", "2014-05-10 19:03:33+00:00"]}}, {"type": "Feature", "id": "trace#9", "geometry": {"type": "LineString", "coordinates": [[-83.65719, 32.82605], [-83.657288, 32.825507], [-83.657312, 32.824945], [-83.65727, 32.82439], [-83.657173, 32.823837], [-83.657022, 32.823288], [-83.656598, 32.822162], [-83.656312, 32.821417], [-83.656142, 32.820875], [-83.656022, 32.820325], [-83.655938, 32.819488], [-83.655934, 32.818308], [-83.655935, 32.817797], [-83.655947, 32.816952], [-83.655986, 32.816054], [-83.656008, 32.815557], [-83.656023, 32.814658], [-83.656032, 32.814163], [-83.656059, 32.812982], [-83.656068, 32.812482], [-83.656102, 32.811925], [-83.656163, 32.811367], [-83.656245, 32.810815], [-83.656355, 32.810267], [-83.656487, 32.809723], [-83.656637, 32.809183], [-83.656808, 32.80865], [-83.657123, 32.807792], [-83.657438, 32.806933], [-83.657753, 32.806075], [-83.658068, 32.805216], [-83.658383, 32.804358], [-83.658698, 32.803499], [-83.659013, 32.802641], [-83.659328, 32.801782], [-83.659658, 32.800905], [-83.660027, 32.80013], [-83.660467, 32.799383], [-83.660797, 32.798902], [-83.661165, 32.798443], [-83.661558, 32.797998], [-83.662212, 32.797363], [-83.662682, 32.796965], [-83.663455, 32.796345], [-83.663895, 32.795992], [-83.66435, 32.795585], [-83.664967, 32.794935], [-83.665328, 32.794475], [-83.665648, 32.793993], [-83.665925, 32.793493], [-83.666398, 32.79239], [-83.666749, 32.791541], [-83.6671, 32.790693], [-83.667368, 32.790075], [-83.667622, 32.789577], [-83.66789, 32.789122], [-83.668168, 32.788713], [-83.668675, 32.7881], [-83.66921, 32.787797], [-83.669738, 32.787967], [-83.669795, 32.788522], [-83.669443, 32.78901], [-83.668875, 32.789137], [-83.668488, 32.78881], [-83.668262, 32.788077], [-83.66795, 32.787217], [-83.667608, 32.786433], [-83.667317, 32.785897], [-83.666838, 32.785094], [-83.666202, 32.783998], [-83.665802, 32.783302], [-83.665348, 32.782488], [-83.664806, 32.781539], [-83.664255, 32.780595], [-83.663963, 32.780097], [-83.663472, 32.779299], [-83.662784, 32.778142], [-83.66245, 32.777572], [-83.661984, 32.776763], [-83.661519, 32.775954], [-83.661053, 32.775146], [-83.660588, 32.774337]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 9, "track.link": null, "track.name": null, "track.segment.number": 3, "track.segment.split.number": 1, "track.description": null, "times": ["2014-05-10 23:47:50+00:00", "2014-05-10 23:47:52+00:00", "2014-05-10 23:47:54+00:00", "2014-05-10 23:47:56+00:00", "2014-05-10 23:47:58+00:00", "2014-05-10 23:48:00+00:00", "2014-05-10 23:48:04+00:00", "2014-05-10 23:48:07+00:00", "2014-05-10 23:48:09+00:00", "2014-05-10 23:48:11+00:00", "2014-05-10 23:48:14+00:00", "2014-05-10 23:48:18+00:00", "2014-05-10 23:48:20+00:00", "2014-05-10 23:48:23+00:00", "2014-05-10 23:48:26+00:00", "2014-05-10 23:48:28+00:00", "2014-05-10 23:48:31+00:00", "2014-05-10 23:48:33+00:00", "2014-05-10 23:48:37+00:00", "2014-05-10 23:48:39+00:00", "2014-05-10 23:48:41+00:00", "2014-05-10 23:48:43+00:00", "2014-05-10 23:48:45+00:00", "2014-05-10 23:48:47+00:00", "2014-05-10 23:48:49+00:00", "2014-05-10 23:48:51+00:00", "2014-05-10 23:48:53+00:00", "2014-05-10 23:48:56+00:00", "2014-05-10 23:48:59+00:00", "2014-05-10 23:49:02+00:00", "2014-05-10 23:49:05+00:00", "2014-05-10 23:49:09+00:00", "2014-05-10 23:49:12+00:00", "2014-05-10 23:49:15+00:00", "2014-05-10 23:49:18+00:00", "2014-05-10 23:49:22+00:00", "2014-05-10 23:49:25+00:00", "2014-05-10 23:49:28+00:00", "2014-05-10 23:49:30+00:00", "2014-05-10 23:49:32+00:00", "2014-05-10 23:49:34+00:00", "2014-05-10 23:49:37+00:00", "2014-05-10 23:49:39+00:00", "2014-05-10 23:49:42+00:00", "2014-05-10 23:49:44+00:00", "2014-05-10 23:49:46+00:00", "2014-05-10 23:49:49+00:00", "2014-05-10 23:49:51+00:00", "2014-05-10 23:49:53+00:00", "2014-05-10 23:49:55+00:00", "2014-05-10 23:49:59+00:00", "2014-05-10 23:50:02+00:00", "2014-05-10 23:50:05+00:00", "2014-05-10 23:50:08+00:00", "2014-05-10 23:50:10+00:00", "2014-05-10 23:50:12+00:00", "2014-05-10 23:50:14+00:00", "2014-05-10 23:50:18+00:00", "2014-05-10 23:50:22+00:00", "2014-05-10 23:50:26+00:00", "2014-05-10 23:50:30+00:00", "2014-05-10 23:50:34+00:00", "2014-05-10 23:50:38+00:00", "2014-05-10 23:50:42+00:00", "2014-05-10 23:50:47+00:00", "2014-05-10 23:50:51+00:00", "2014-05-10 23:50:56+00:00", "2014-05-10 23:50:59+00:00", "2014-05-10 23:51:03+00:00", "2014-05-10 23:51:08+00:00", "2014-05-10 23:51:12+00:00", "2014-05-10 23:51:16+00:00", "2014-05-10 23:51:21+00:00", "2014-05-10 23:51:26+00:00", "2014-05-10 23:51:29+00:00", "2014-05-10 23:51:33+00:00", "2014-05-10 23:51:39+00:00", "2014-05-10 23:51:42+00:00", "2014-05-10 23:51:46+00:00", "2014-05-10 23:51:50+00:00", "2014-05-10 23:51:54+00:00", "2014-05-10 23:51:59+00:00"]}}, {"type": "Feature", "id": "trace#10", "geometry": {"type": "LineString", "coordinates": [[-83.711252, 32.774227], [-83.71159, 32.774773], [-83.712122, 32.775552], [-83.712677, 32.776402], [-83.7132, 32.777185], [-83.713557, 32.777768], [-83.714257, 32.778819], [-83.71477, 32.779619], [-83.715277, 32.78041], [-83.71577, 32.781178], [-83.71626, 32.781976], [-83.716751, 32.782775], [-83.717401, 32.783804], [-83.717905, 32.784596], [-83.718197, 32.785055], [-83.718688, 32.78583], [-83.718985, 32.78636], [-83.719238, 32.786908], [-83.719443, 32.787475], [-83.719643, 32.788355], [-83.719765, 32.789547], [-83.719845, 32.790443], [-83.719963, 32.79167], [-83.720052, 32.792566], [-83.72014, 32.793461], [-83.720211, 32.79442], [-83.720257, 32.795063], [-83.720341, 32.795959], [-83.720437, 32.79688], [-83.720553, 32.798089], [-83.720623, 32.79867], [-83.720743, 32.799263], [-83.720903, 32.799855], [-83.721198, 32.800738], [-83.72143, 32.801315], [-83.72168, 32.801883], [-83.722082, 32.802716]]}, "properties": {"filename": "osm-traces-page-100.gpx", "track.number": 9, "track.link": null, "track.name": null, "track.segment.number": 3, "track.segment.split.number": 2, "track.description": null, "times": ["2014-05-14 18:52:57+00:00", "2014-05-14 18:52:59+00:00", "2014-05-14 18:53:01+00:00", "2014-05-14 18:53:05+00:00", "2014-05-14 18:53:07+00:00", "2014-05-14 18:53:10+00:00", "2014-05-14 18:53:13+00:00", "2014-05-14 18:53:17+00:00", "2014-05-14 18:53:20+00:00", "2014-05-14 18:53:23+00:00", "2014-05-14 18:53:26+00:00", "2014-05-14 18:53:29+00:00", "2014-05-14 18:53:33+00:00", "2014-05-14 18:53:36+00:00", "2014-05-14 18:53:38+00:00", "2014-05-14 18:53:41+00:00", "2014-05-14 18:53:43+00:00", "2014-05-14 18:53:45+00:00", "2014-05-14 18:53:47+00:00", "2014-05-14 18:53:50+00:00", "2014-05-14 18:53:53+00:00", "2014-05-14 18:53:56+00:00", "2014-05-14 18:54:00+00:00", "2014-05-14 18:54:03+00:00", "2014-05-14 18:54:06+00:00", "2014-05-14 18:54:09+00:00", "2014-05-14 18:54:12+00:00", "2014-05-14 18:54:14+00:00", "2014-05-14 18:54:17+00:00", "2014-05-14 18:54:22+00:00", "2014-05-14 18:54:24+00:00", "2014-05-14 18:54:26+00:00", "2014-05-14 18:54:28+00:00", "2014-05-14 18:54:31+00:00", "2014-05-14 18:54:33+00:00", "2014-05-14 18:54:35+00:00", "2014-05-14 18:54:37+00:00"]}}, {"type": "Feature", "id": "trace#11", "geometry": {"type": "LineString", "coordinates": [[-83.676666, 32.891001], [-83.676365, 32.890622], [-83.676064, 32.890244], [-83.675762, 32.889866], [-83.675447, 32.889476], [-83.67513, 32.889091], [-83.67482, 32.888717], [-83.67451, 32.888343], [-83.674201, 32.887969], [-83.673891, 32.887594], [-83.673581, 32.88722], [-83.67327, 32.886845], [-83.672957, 32.88647], [-83.672645, 32.886102], [-83.672317, 32.885718], [-83.671995, 32.885334], [-83.671684, 32.88496], [-83.671371, 32.884583], [-83.671049, 32.884194], [-83.670737, 32.883818], [-83.670415, 32.883431], [-83.670094, 32.883046], [-83.66977, 32.882655], [-83.669444, 32.88226], [-83.669112, 32.881861], [-83.668784, 32.881468], [-83.668468, 32.881089], [-83.668141, 32.880702], [-83.667823, 32.880332], [-83.667474, 32.879929], [-83.667153, 32.879558], [-83.666823, 32.879175], [-83.666504, 32.878804], [-83.666172, 32.878419], [-83.665853, 32.878047], [-83.665524, 32.877663], [-83.665206, 32.877288], [-83.664896, 32.876916], [-83.664578, 32.876532], [-83.664265, 32.876154], [-83.663939, 32.875763]]}, "properties": {"filename": "osm-traces-page-11.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/7579318", "track.name": "2023_05_20T01_07_47.008293Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2023.03.29 (KIA EV6 2022).", "times": ["2023-05-20 01:12:16+00:00", "2023-05-20 01:12:17+00:00", "2023-05-20 01:12:19+00:00", "2023-05-20 01:12:21+00:00", "2023-05-20 01:12:22+00:00", "2023-05-20 01:12:24+00:00", "2023-05-20 01:12:26+00:00", "2023-05-20 01:12:27+00:00", "2023-05-20 01:12:29+00:00", "2023-05-20 01:12:30+00:00", "2023-05-20 01:12:32+00:00", "2023-05-20 01:12:34+00:00", "2023-05-20 01:12:35+00:00", "2023-05-20 01:12:37+00:00", "2023-05-20 01:12:38+00:00", "2023-05-20 01:12:40+00:00", "2023-05-20 01:12:42+00:00", "2023-05-20 01:12:43+00:00", "2023-05-20 01:12:45+00:00", "2023-05-20 01:12:46+00:00", "2023-05-20 01:12:48+00:00", "2023-05-20 01:12:50+00:00", "2023-05-20 01:12:51+00:00", "2023-05-20 01:12:53+00:00", "2023-05-20 01:12:55+00:00", "2023-05-20 01:12:56+00:00", "2023-05-20 01:12:58+00:00", "2023-05-20 01:13:00+00:00", "2023-05-20 01:13:01+00:00", "2023-05-20 01:13:03+00:00", "2023-05-20 01:13:05+00:00", "2023-05-20 01:13:06+00:00", "2023-05-20 01:13:08+00:00", "2023-05-20 01:13:10+00:00", "2023-05-20 01:13:11+00:00", "2023-05-20 01:13:13+00:00", "2023-05-20 01:13:14+00:00", "2023-05-20 01:13:16+00:00", "2023-05-20 01:13:18+00:00", "2023-05-20 01:13:19+00:00", "2023-05-20 01:13:21+00:00"]}}, {"type": "Feature", "id": "trace#12", "geometry": {"type": "LineString", "coordinates": [[-83.676585, 32.891003], [-83.676284, 32.890624], [-83.675981, 32.890244], [-83.675678, 32.889866], [-83.675364, 32.889478], [-83.67504, 32.889083], [-83.674742, 32.888705], [-83.674432, 32.888307], [-83.674126, 32.887926], [-83.673809, 32.887542], [-83.673487, 32.88715], [-83.673182, 32.886758], [-83.672868, 32.886363], [-83.672547, 32.885981], [-83.672228, 32.885605], [-83.671908, 32.885224], [-83.671596, 32.884847], [-83.671272, 32.884454], [-83.670961, 32.884078], [-83.670652, 32.883704], [-83.670332, 32.883318], [-83.670006, 32.882924], [-83.6697, 32.882542], [-83.6694, 32.882158], [-83.669094, 32.881779], [-83.668784, 32.881405], [-83.668462, 32.881013], [-83.66817, 32.880632], [-83.667914, 32.880228], [-83.66764, 32.879816], [-83.667314, 32.879439], [-83.666971, 32.879067], [-83.66664, 32.87869], [-83.666326, 32.878311], [-83.666003, 32.877938], [-83.665674, 32.87757], [-83.665351, 32.877211]]}, "properties": {"filename": "osm-traces-page-14.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7530219", "track.name": "2023_05_16T22_33_00.801757Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-05-16 22:33:01+00:00", "2023-05-16 22:33:03+00:00", "2023-05-16 22:33:04+00:00", "2023-05-16 22:33:05+00:00", "2023-05-16 22:33:07+00:00", "2023-05-16 22:33:08+00:00", "2023-05-16 22:33:10+00:00", "2023-05-16 22:33:11+00:00", "2023-05-16 22:33:13+00:00", "2023-05-16 22:33:14+00:00", "2023-05-16 22:33:16+00:00", "2023-05-16 22:33:18+00:00", "2023-05-16 22:33:19+00:00", "2023-05-16 22:33:21+00:00", "2023-05-16 22:33:23+00:00", "2023-05-16 22:33:24+00:00", "2023-05-16 22:33:26+00:00", "2023-05-16 22:33:27+00:00", "2023-05-16 22:33:28+00:00", "2023-05-16 22:33:30+00:00", "2023-05-16 22:33:31+00:00", "2023-05-16 22:33:33+00:00", "2023-05-16 22:33:34+00:00", "2023-05-16 22:33:36+00:00", "2023-05-16 22:33:37+00:00", "2023-05-16 22:33:38+00:00", "2023-05-16 22:33:40+00:00", "2023-05-16 22:33:41+00:00", "2023-05-16 22:33:43+00:00", "2023-05-16 22:33:45+00:00", "2023-05-16 22:33:47+00:00", "2023-05-16 22:33:49+00:00", "2023-05-16 22:33:51+00:00", "2023-05-16 22:33:53+00:00", "2023-05-16 22:33:56+00:00", "2023-05-16 22:33:59+00:00", "2023-05-16 22:34:06+00:00"]}}, {"type": "Feature", "id": "trace#13", "geometry": {"type": "LineString", "coordinates": [[-83.722398, 32.802694], [-83.722196, 32.802268], [-83.722004, 32.801842], [-83.721827, 32.801416], [-83.721659, 32.800961], [-83.721507, 32.800502], [-83.721371, 32.800043], [-83.721256, 32.799587], [-83.721156, 32.799136], [-83.721069, 32.798683], [-83.721, 32.79823], [-83.720945, 32.797772], [-83.720895, 32.79731], [-83.720845, 32.796842], [-83.720799, 32.796393], [-83.720753, 32.795938], [-83.720705, 32.795487], [-83.720658, 32.795017], [-83.72061, 32.79455], [-83.720562, 32.794084], [-83.720515, 32.793619], [-83.720467, 32.793155], [-83.720419, 32.792689], [-83.720371, 32.792223], [-83.720323, 32.791755], [-83.720275, 32.791287], [-83.720227, 32.790817], [-83.720177, 32.790341], [-83.720129, 32.789889], [-83.720083, 32.789427], [-83.720035, 32.788955], [-83.719981, 32.788479], [-83.71991, 32.788006], [-83.719809, 32.787541], [-83.719678, 32.787089], [-83.719521, 32.78665], [-83.719328, 32.786222], [-83.719107, 32.785804], [-83.718858, 32.785391], [-83.718595, 32.784976], [-83.718327, 32.784557], [-83.71806, 32.784135], [-83.717792, 32.783714], [-83.717523, 32.783293], [-83.717271, 32.782896], [-83.717019, 32.782498], [-83.716765, 32.782101], [-83.716514, 32.781701], [-83.716262, 32.781304], [-83.715995, 32.780882], [-83.715728, 32.780459], [-83.715461, 32.780038], [-83.715194, 32.779617], [-83.714929, 32.779197], [-83.714667, 32.778783], [-83.714408, 32.778374], [-83.714152, 32.777966], [-83.713895, 32.77756], [-83.713639, 32.777156], [-83.713388, 32.776756], [-83.713123, 32.776336], [-83.712857, 32.775917], [-83.712593, 32.775497], [-83.712328, 32.775078], [-83.712064, 32.774662], [-83.711805, 32.774244]]}, "properties": {"filename": "osm-traces-page-14.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/7518626", "track.name": "2023_05_13T19_49_10.967368Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2023.03.29 (TOYOTA COROLLA TSS2 2019).", "times": ["2023-05-13 19:48:40+00:00", "2023-05-13 19:48:42+00:00", "2023-05-13 19:48:43+00:00", "2023-05-13 19:48:45+00:00", "2023-05-13 19:48:47+00:00", "2023-05-13 19:48:48+00:00", "2023-05-13 19:48:50+00:00", "2023-05-13 19:48:52+00:00", "2023-05-13 19:48:54+00:00", "2023-05-13 19:48:55+00:00", "2023-05-13 19:48:57+00:00", "2023-05-13 19:48:59+00:00", "2023-05-13 19:49:00+00:00", "2023-05-13 19:49:02+00:00", "2023-05-13 19:49:04+00:00", "2023-05-13 19:49:05+00:00", "2023-05-13 19:49:07+00:00", "2023-05-13 19:49:09+00:00", "2023-05-13 19:49:10+00:00", "2023-05-13 19:49:12+00:00", "2023-05-13 19:49:14+00:00", "2023-05-13 19:49:15+00:00", "2023-05-13 19:49:17+00:00", "2023-05-13 19:49:19+00:00", "2023-05-13 19:49:20+00:00", "2023-05-13 19:49:22+00:00", "2023-05-13 19:49:24+00:00", "2023-05-13 19:49:26+00:00", "2023-05-13 19:49:27+00:00", "2023-05-13 19:49:29+00:00", "2023-05-13 19:49:30+00:00", "2023-05-13 19:49:32+00:00", "2023-05-13 19:49:34+00:00", "2023-05-13 19:49:35+00:00", "2023-05-13 19:49:37+00:00", "2023-05-13 19:49:38+00:00", "2023-05-13 19:49:40+00:00", "2023-05-13 19:49:42+00:00", "2023-05-13 19:49:43+00:00", "2023-05-13 19:49:45+00:00", "2023-05-13 19:49:46+00:00", "2023-05-13 19:49:48+00:00", "2023-05-13 19:49:49+00:00", "2023-05-13 19:49:51+00:00", "2023-05-13 19:49:53+00:00", "2023-05-13 19:49:54+00:00", "2023-05-13 19:49:56+00:00", "2023-05-13 19:49:57+00:00", "2023-05-13 19:49:59+00:00", "2023-05-13 19:50:00+00:00", "2023-05-13 19:50:02+00:00", "2023-05-13 19:50:03+00:00", "2023-05-13 19:50:05+00:00", "2023-05-13 19:50:07+00:00", "2023-05-13 19:50:08+00:00", "2023-05-13 19:50:10+00:00", "2023-05-13 19:50:11+00:00", "2023-05-13 19:50:13+00:00", "2023-05-13 19:50:15+00:00", "2023-05-13 19:50:16+00:00", "2023-05-13 19:50:18+00:00", "2023-05-13 19:50:20+00:00", "2023-05-13 19:50:21+00:00", "2023-05-13 19:50:23+00:00", "2023-05-13 19:50:25+00:00", "2023-05-13 19:50:26+00:00"]}}, {"type": "Feature", "id": "trace#14", "geometry": {"type": "LineString", "coordinates": [[-83.585684, 32.817739], [-83.586151, 32.818005], [-83.586613, 32.818269], [-83.587089, 32.81854], [-83.587561, 32.81881], [-83.588031, 32.819079], [-83.588501, 32.819347], [-83.588966, 32.819611], [-83.589424, 32.819872], [-83.589888, 32.820138], [-83.590356, 32.820405], [-83.590827, 32.820675], [-83.591292, 32.820941], [-83.591756, 32.821207], [-83.592231, 32.821479], [-83.592702, 32.821748], [-83.593174, 32.822018], [-83.593649, 32.82229], [-83.59412, 32.82256], [-83.59459, 32.822831], [-83.595062, 32.823103], [-83.595535, 32.823376], [-83.596003, 32.823644], [-83.596474, 32.823914], [-83.59694, 32.824181], [-83.597415, 32.824453], [-83.597892, 32.824725], [-83.598361, 32.824995], [-83.598836, 32.825266]]}, "properties": {"filename": "osm-traces-page-16.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7495305", "track.name": "2023_05_14T21_38_39.604797Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-05-14 21:48:00+00:00", "2023-05-14 21:48:01+00:00", "2023-05-14 21:48:03+00:00", "2023-05-14 21:48:04+00:00", "2023-05-14 21:48:05+00:00", "2023-05-14 21:48:07+00:00", "2023-05-14 21:48:08+00:00", "2023-05-14 21:48:10+00:00", "2023-05-14 21:48:11+00:00", "2023-05-14 21:48:12+00:00", "2023-05-14 21:48:14+00:00", "2023-05-14 21:48:15+00:00", "2023-05-14 21:48:17+00:00", "2023-05-14 21:48:18+00:00", "2023-05-14 21:48:19+00:00", "2023-05-14 21:48:21+00:00", "2023-05-14 21:48:22+00:00", "2023-05-14 21:48:24+00:00", "2023-05-14 21:48:25+00:00", "2023-05-14 21:48:26+00:00", "2023-05-14 21:48:28+00:00", "2023-05-14 21:48:29+00:00", "2023-05-14 21:48:31+00:00", "2023-05-14 21:48:32+00:00", "2023-05-14 21:48:33+00:00", "2023-05-14 21:48:35+00:00", "2023-05-14 21:48:36+00:00", "2023-05-14 21:48:38+00:00", "2023-05-14 21:48:39+00:00"]}}, {"type": "Feature", "id": "trace#15", "geometry": {"type": "LineString", "coordinates": [[-83.641791, 32.851109], [-83.641646, 32.851564], [-83.641506, 32.852021], [-83.641362, 32.852472], [-83.641213, 32.852916], [-83.641062, 32.853359], [-83.640915, 32.853799], [-83.640781, 32.854238], [-83.640674, 32.854691], [-83.640614, 32.855149], [-83.640603, 32.855601], [-83.640636, 32.85607], [-83.640713, 32.856528], [-83.640838, 32.856981], [-83.640998, 32.85741], [-83.641209, 32.857837], [-83.641453, 32.858238], [-83.641741, 32.858632], [-83.64206, 32.858994], [-83.642415, 32.859333], [-83.642807, 32.859642], [-83.64323, 32.859924], [-83.64368, 32.860184], [-83.64417, 32.860421], [-83.644653, 32.860624], [-83.645139, 32.860824], [-83.645626, 32.861029], [-83.646109, 32.861234], [-83.646594, 32.861436], [-83.647074, 32.861639]]}, "properties": {"filename": "osm-traces-page-17.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7492022", "track.name": "2023_05_14T16_26_44.281438Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2023.04.25 (TOYOTA RAV4 2019).", "times": ["2023-05-14 16:35:48+00:00", "2023-05-14 16:35:50+00:00", "2023-05-14 16:35:52+00:00", "2023-05-14 16:35:54+00:00", "2023-05-14 16:35:55+00:00", "2023-05-14 16:35:57+00:00", "2023-05-14 16:35:59+00:00", "2023-05-14 16:36:01+00:00", "2023-05-14 16:36:03+00:00", "2023-05-14 16:36:05+00:00", "2023-05-14 16:36:07+00:00", "2023-05-14 16:36:09+00:00", "2023-05-14 16:36:11+00:00", "2023-05-14 16:36:13+00:00", "2023-05-14 16:36:15+00:00", "2023-05-14 16:36:17+00:00", "2023-05-14 16:36:19+00:00", "2023-05-14 16:36:21+00:00", "2023-05-14 16:36:23+00:00", "2023-05-14 16:36:24+00:00", "2023-05-14 16:36:26+00:00", "2023-05-14 16:36:28+00:00", "2023-05-14 16:36:30+00:00", "2023-05-14 16:36:32+00:00", "2023-05-14 16:36:34+00:00", "2023-05-14 16:36:36+00:00", "2023-05-14 16:36:37+00:00", "2023-05-14 16:36:39+00:00", "2023-05-14 16:36:41+00:00", "2023-05-14 16:36:43+00:00"]}}, {"type": "Feature", "id": "trace#16", "geometry": {"type": "LineString", "coordinates": [[-83.668417, 32.881423], [-83.668735, 32.881802], [-83.669052, 32.882186], [-83.669369, 32.882565], [-83.669685, 32.882948], [-83.669994, 32.883322], [-83.670303, 32.883696], [-83.670626, 32.884084], [-83.670941, 32.884461], [-83.671261, 32.884849], [-83.671576, 32.885229], [-83.671896, 32.885618], [-83.672212, 32.886007], [-83.672514, 32.886381], [-83.672821, 32.886762], [-83.673136, 32.887146], [-83.673452, 32.887528], [-83.673764, 32.887906], [-83.67407, 32.888278], [-83.674388, 32.888662], [-83.674712, 32.889054], [-83.675038, 32.889435], [-83.675392, 32.889842], [-83.675712, 32.890228], [-83.676014, 32.890602], [-83.676338, 32.891008]]}, "properties": {"filename": "osm-traces-page-19.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7382649", "track.name": "2023_05_07T23_00_44.514285Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-05-07 23:04:59+00:00", "2023-05-07 23:05:01+00:00", "2023-05-07 23:05:02+00:00", "2023-05-07 23:05:04+00:00", "2023-05-07 23:05:06+00:00", "2023-05-07 23:05:07+00:00", "2023-05-07 23:05:09+00:00", "2023-05-07 23:05:10+00:00", "2023-05-07 23:05:12+00:00", "2023-05-07 23:05:14+00:00", "2023-05-07 23:05:16+00:00", "2023-05-07 23:05:18+00:00", "2023-05-07 23:05:20+00:00", "2023-05-07 23:05:21+00:00", "2023-05-07 23:05:23+00:00", "2023-05-07 23:05:25+00:00", "2023-05-07 23:05:27+00:00", "2023-05-07 23:05:29+00:00", "2023-05-07 23:05:31+00:00", "2023-05-07 23:05:32+00:00", "2023-05-07 23:05:34+00:00", "2023-05-07 23:05:36+00:00", "2023-05-07 23:05:38+00:00", "2023-05-07 23:05:39+00:00", "2023-05-07 23:05:41+00:00", "2023-05-07 23:05:42+00:00"]}}, {"type": "Feature", "id": "trace#17", "geometry": {"type": "LineString", "coordinates": [[-83.72241, 32.802818], [-83.722202, 32.802382], [-83.722003, 32.801944], [-83.721816, 32.801501], [-83.721641, 32.801052], [-83.721488, 32.800598], [-83.72135, 32.800143], [-83.721227, 32.799682], [-83.721123, 32.799222], [-83.721032, 32.798757], [-83.72096, 32.798289], [-83.720902, 32.797821], [-83.720851, 32.797351], [-83.720801, 32.79688], [-83.720753, 32.796411], [-83.720706, 32.795943], [-83.720658, 32.795475], [-83.720609, 32.795008], [-83.72056, 32.79454], [-83.720511, 32.794071], [-83.720462, 32.793602], [-83.720414, 32.793134], [-83.720364, 32.792665], [-83.720315, 32.792194], [-83.720266, 32.791724], [-83.720218, 32.791254], [-83.720168, 32.790782], [-83.720119, 32.790309], [-83.72007, 32.789838], [-83.720021, 32.789368], [-83.719971, 32.788897], [-83.719913, 32.788426], [-83.71984, 32.787956], [-83.719739, 32.787495], [-83.719604, 32.787044], [-83.719441, 32.786597], [-83.719244, 32.786163], [-83.719017, 32.78574], [-83.718767, 32.785324], [-83.718506, 32.784911], [-83.718243, 32.784497], [-83.717981, 32.784082], [-83.717719, 32.783665], [-83.717454, 32.783248], [-83.717189, 32.782832], [-83.716928, 32.782418], [-83.716667, 32.782002], [-83.716404, 32.781587], [-83.716141, 32.781171], [-83.71588, 32.780757], [-83.715618, 32.780342], [-83.715354, 32.779927], [-83.715092, 32.779511], [-83.714829, 32.779095], [-83.714566, 32.778679], [-83.714304, 32.778264], [-83.714043, 32.77785], [-83.713781, 32.777435], [-83.713519, 32.777021], [-83.713256, 32.776607], [-83.712994, 32.776192], [-83.712733, 32.775779], [-83.71247, 32.775364], [-83.712208, 32.774948], [-83.711948, 32.774534], [-83.711696, 32.774118]]}, "properties": {"filename": "osm-traces-page-2.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7696912", "track.name": "2023_05_29T14_37_56.700856Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2023.05.28 (HYUNDAI PALISADE 2020).", "times": ["2023-05-29 14:42:27+00:00", "2023-05-29 14:42:29+00:00", "2023-05-29 14:42:30+00:00", "2023-05-29 14:42:32+00:00", "2023-05-29 14:42:33+00:00", "2023-05-29 14:42:35+00:00", "2023-05-29 14:42:36+00:00", "2023-05-29 14:42:38+00:00", "2023-05-29 14:42:39+00:00", "2023-05-29 14:42:41+00:00", "2023-05-29 14:42:42+00:00", "2023-05-29 14:42:44+00:00", "2023-05-29 14:42:45+00:00", "2023-05-29 14:42:47+00:00", "2023-05-29 14:42:48+00:00", "2023-05-29 14:42:50+00:00", "2023-05-29 14:42:51+00:00", "2023-05-29 14:42:53+00:00", "2023-05-29 14:42:54+00:00", "2023-05-29 14:42:56+00:00", "2023-05-29 14:42:57+00:00", "2023-05-29 14:42:59+00:00", "2023-05-29 14:43:00+00:00", "2023-05-29 14:43:02+00:00", "2023-05-29 14:43:03+00:00", "2023-05-29 14:43:05+00:00", "2023-05-29 14:43:06+00:00", "2023-05-29 14:43:08+00:00", "2023-05-29 14:43:09+00:00", "2023-05-29 14:43:11+00:00", "2023-05-29 14:43:12+00:00", "2023-05-29 14:43:14+00:00", "2023-05-29 14:43:15+00:00", "2023-05-29 14:43:17+00:00", "2023-05-29 14:43:18+00:00", "2023-05-29 14:43:20+00:00", "2023-05-29 14:43:21+00:00", "2023-05-29 14:43:23+00:00", "2023-05-29 14:43:24+00:00", "2023-05-29 14:43:26+00:00", "2023-05-29 14:43:27+00:00", "2023-05-29 14:43:29+00:00", "2023-05-29 14:43:30+00:00", "2023-05-29 14:43:32+00:00", "2023-05-29 14:43:33+00:00", "2023-05-29 14:43:35+00:00", "2023-05-29 14:43:36+00:00", "2023-05-29 14:43:38+00:00", "2023-05-29 14:43:39+00:00", "2023-05-29 14:43:41+00:00", "2023-05-29 14:43:42+00:00", "2023-05-29 14:43:44+00:00", "2023-05-29 14:43:45+00:00", "2023-05-29 14:43:47+00:00", "2023-05-29 14:43:48+00:00", "2023-05-29 14:43:50+00:00", "2023-05-29 14:43:51+00:00", "2023-05-29 14:43:53+00:00", "2023-05-29 14:43:54+00:00", "2023-05-29 14:43:56+00:00", "2023-05-29 14:43:57+00:00", "2023-05-29 14:43:59+00:00", "2023-05-29 14:44:00+00:00", "2023-05-29 14:44:02+00:00", "2023-05-29 14:44:03+00:00", "2023-05-29 14:44:05+00:00"]}}, {"type": "Feature", "id": "trace#18", "geometry": {"type": "LineString", "coordinates": [[-83.676608, 32.890997], [-83.676284, 32.89059], [-83.675982, 32.89021], [-83.675676, 32.889829], [-83.675369, 32.889448], [-83.67506, 32.889073], [-83.67475, 32.888698], [-83.674437, 32.888322], [-83.674128, 32.887948], [-83.673795, 32.887545], [-83.673486, 32.887171], [-83.673176, 32.886798], [-83.67284, 32.886399], [-83.672523, 32.886029], [-83.67221, 32.885664], [-83.671896, 32.885293], [-83.671569, 32.884902], [-83.671241, 32.884507], [-83.670894, 32.884089], [-83.670571, 32.8837], [-83.670252, 32.883316], [-83.669933, 32.882934], [-83.669624, 32.882563], [-83.669296, 32.882168], [-83.668972, 32.881778], [-83.668642, 32.88138], [-83.668322, 32.880998], [-83.667993, 32.88061], [-83.66766, 32.88022], [-83.667342, 32.879849], [-83.667024, 32.879481], [-83.666708, 32.879112], [-83.666388, 32.87874], [-83.666047, 32.878345], [-83.665727, 32.877973], [-83.665406, 32.877597], [-83.665091, 32.877225], [-83.664774, 32.876845], [-83.664462, 32.876469], [-83.664149, 32.876094], [-83.663839, 32.875721], [-83.66353, 32.875348], [-83.663218, 32.874971], [-83.662908, 32.874599], [-83.662575, 32.874196], [-83.662262, 32.87382], [-83.661947, 32.873442], [-83.661633, 32.873067], [-83.661318, 32.872689], [-83.661009, 32.872316], [-83.660697, 32.87194], [-83.660386, 32.871571], [-83.660068, 32.8712], [-83.659742, 32.87084], [-83.659402, 32.870486], [-83.65905, 32.870137], [-83.658659, 32.86977], [-83.658288, 32.869428], [-83.657894, 32.869067], [-83.65752, 32.868725], [-83.657149, 32.868385], [-83.656779, 32.868047], [-83.656413, 32.867711], [-83.656048, 32.867375], [-83.655661, 32.86702], [-83.655279, 32.866669], [-83.654874, 32.8663], [-83.654498, 32.865953], [-83.654129, 32.865604], [-83.653765, 32.865254], [-83.653412, 32.864917], [-83.653037, 32.864569], [-83.652674, 32.864235], [-83.652298, 32.863897], [-83.651891, 32.863574], [-83.65146, 32.863291], [-83.650987, 32.863037], [-83.65048, 32.862812], [-83.649996, 32.862617], [-83.649513, 32.862424], [-83.649035, 32.862212], [-83.648559, 32.861978], [-83.648071, 32.861751], [-83.647582, 32.86153], [-83.647109, 32.86131], [-83.646621, 32.861067], [-83.646174, 32.860818], [-83.645733, 32.86055], [-83.645299, 32.860275], [-83.644848, 32.859989], [-83.644419, 32.859716], [-83.643982, 32.859438], [-83.643551, 32.85916], [-83.643108, 32.858877], [-83.642667, 32.858596], [-83.642253, 32.858309], [-83.64185, 32.858013], [-83.64143, 32.857712], [-83.640994, 32.857414], [-83.640563, 32.857119], [-83.640129, 32.85682]]}, "properties": {"filename": "osm-traces-page-2.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/7648521", "track.name": "2023_05_24T22_51_06.899843Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-05-24 22:55:27+00:00", "2023-05-24 22:55:28+00:00", "2023-05-24 22:55:30+00:00", "2023-05-24 22:55:31+00:00", "2023-05-24 22:55:32+00:00", "2023-05-24 22:55:34+00:00", "2023-05-24 22:55:35+00:00", "2023-05-24 22:55:37+00:00", "2023-05-24 22:55:38+00:00", "2023-05-24 22:55:39+00:00", "2023-05-24 22:55:41+00:00", "2023-05-24 22:55:42+00:00", "2023-05-24 22:55:44+00:00", "2023-05-24 22:55:45+00:00", "2023-05-24 22:55:47+00:00", "2023-05-24 22:55:48+00:00", "2023-05-24 22:55:49+00:00", "2023-05-24 22:55:51+00:00", "2023-05-24 22:55:53+00:00", "2023-05-24 22:55:54+00:00", "2023-05-24 22:55:56+00:00", "2023-05-24 22:55:57+00:00", "2023-05-24 22:55:59+00:00", "2023-05-24 22:56:00+00:00", "2023-05-24 22:56:02+00:00", "2023-05-24 22:56:03+00:00", "2023-05-24 22:56:05+00:00", "2023-05-24 22:56:06+00:00", "2023-05-24 22:56:08+00:00", "2023-05-24 22:56:09+00:00", "2023-05-24 22:56:11+00:00", "2023-05-24 22:56:12+00:00", "2023-05-24 22:56:13+00:00", "2023-05-24 22:56:15+00:00", "2023-05-24 22:56:16+00:00", "2023-05-24 22:56:18+00:00", "2023-05-24 22:56:19+00:00", "2023-05-24 22:56:21+00:00", "2023-05-24 22:56:22+00:00", "2023-05-24 22:56:23+00:00", "2023-05-24 22:56:25+00:00", "2023-05-24 22:56:26+00:00", "2023-05-24 22:56:28+00:00", "2023-05-24 22:56:29+00:00", "2023-05-24 22:56:30+00:00", "2023-05-24 22:56:32+00:00", "2023-05-24 22:56:33+00:00", "2023-05-24 22:56:35+00:00", "2023-05-24 22:56:36+00:00", "2023-05-24 22:56:37+00:00", "2023-05-24 22:56:39+00:00", "2023-05-24 22:56:40+00:00", "2023-05-24 22:56:42+00:00", "2023-05-24 22:56:43+00:00", "2023-05-24 22:56:44+00:00", "2023-05-24 22:56:46+00:00", "2023-05-24 22:56:47+00:00", "2023-05-24 22:56:49+00:00", "2023-05-24 22:56:50+00:00", "2023-05-24 22:56:52+00:00", "2023-05-24 22:56:53+00:00", "2023-05-24 22:56:54+00:00", "2023-05-24 22:56:56+00:00", "2023-05-24 22:56:57+00:00", "2023-05-24 22:56:59+00:00", "2023-05-24 22:57:00+00:00", "2023-05-24 22:57:02+00:00", "2023-05-24 22:57:03+00:00", "2023-05-24 22:57:05+00:00", "2023-05-24 22:57:06+00:00", "2023-05-24 22:57:08+00:00", "2023-05-24 22:57:09+00:00", "2023-05-24 22:57:11+00:00", "2023-05-24 22:57:13+00:00", "2023-05-24 22:57:15+00:00", "2023-05-24 22:57:16+00:00", "2023-05-24 22:57:18+00:00", "2023-05-24 22:57:20+00:00", "2023-05-24 22:57:22+00:00", "2023-05-24 22:57:24+00:00", "2023-05-24 22:57:26+00:00", "2023-05-24 22:57:28+00:00", "2023-05-24 22:57:30+00:00", "2023-05-24 22:57:32+00:00", "2023-05-24 22:57:33+00:00", "2023-05-24 22:57:35+00:00", "2023-05-24 22:57:37+00:00", "2023-05-24 22:57:38+00:00", "2023-05-24 22:57:40+00:00", "2023-05-24 22:57:41+00:00", "2023-05-24 22:57:43+00:00", "2023-05-24 22:57:44+00:00", "2023-05-24 22:57:46+00:00", "2023-05-24 22:57:48+00:00", "2023-05-24 22:57:50+00:00", "2023-05-24 22:57:52+00:00", "2023-05-24 22:57:54+00:00", "2023-05-24 22:57:55+00:00", "2023-05-24 22:57:57+00:00", "2023-05-24 22:57:59+00:00", "2023-05-24 22:58:02+00:00"]}}, {"type": "Feature", "id": "trace#19", "geometry": {"type": "LineString", "coordinates": [[-83.585685, 32.81775], [-83.586151, 32.818029], [-83.586622, 32.818302], [-83.587067, 32.818556], [-83.587515, 32.818812], [-83.587965, 32.819068], [-83.588412, 32.819323], [-83.588859, 32.819578], [-83.589311, 32.819837], [-83.589765, 32.820097], [-83.590221, 32.820357], [-83.590677, 32.820616], [-83.591131, 32.820876], [-83.591586, 32.821139], [-83.592043, 32.821401], [-83.5925, 32.821663], [-83.592959, 32.821926], [-83.593416, 32.822187], [-83.593874, 32.822449], [-83.594327, 32.82271], [-83.594781, 32.822972], [-83.595232, 32.823231], [-83.59568, 32.823488], [-83.596128, 32.823745], [-83.59657, 32.823999], [-83.597041, 32.824269], [-83.597514, 32.824539], [-83.597986, 32.82481], [-83.598432, 32.825067], [-83.598879, 32.825324], [-83.599324, 32.825576], [-83.599789, 32.825844], [-83.60024, 32.826109], [-83.600692, 32.826392], [-83.601122, 32.826679], [-83.601535, 32.826973], [-83.601957, 32.82729], [-83.602367, 32.827619], [-83.602751, 32.827935], [-83.603135, 32.828256], [-83.603524, 32.828579], [-83.603916, 32.828906], [-83.604312, 32.829235], [-83.604711, 32.829568], [-83.605091, 32.829887], [-83.605474, 32.830207], [-83.605859, 32.830527], [-83.606244, 32.830847], [-83.606627, 32.831165], [-83.607007, 32.831482], [-83.60741, 32.831815], [-83.607809, 32.832146], [-83.608207, 32.832478], [-83.608604, 32.83281], [-83.609003, 32.833142], [-83.609398, 32.833469], [-83.609796, 32.833801], [-83.610193, 32.834134], [-83.610591, 32.834468], [-83.610993, 32.834803], [-83.611396, 32.835141], [-83.611777, 32.83546], [-83.612159, 32.835779], [-83.612542, 32.836099], [-83.612929, 32.836418], [-83.613321, 32.83673], [-83.613727, 32.837031], [-83.614148, 32.837314], [-83.614584, 32.837582], [-83.615031, 32.837831], [-83.615518, 32.838078], [-83.616017, 32.838308], [-83.616491, 32.838517], [-83.616992, 32.838734], [-83.617489, 32.838948], [-83.617975, 32.839168], [-83.618451, 32.839397], [-83.618913, 32.839635], [-83.619364, 32.839881], [-83.619827, 32.840151], [-83.620275, 32.84043], [-83.620707, 32.840716], [-83.621124, 32.841014], [-83.621531, 32.841322], [-83.621927, 32.841637], [-83.622305, 32.841958], [-83.622689, 32.842306], [-83.623047, 32.842648], [-83.623396, 32.843001], [-83.623737, 32.84337], [-83.624072, 32.843752], [-83.624375, 32.844124], [-83.624669, 32.844508], [-83.624953, 32.844905], [-83.625229, 32.845316], [-83.625499, 32.845739], [-83.625749, 32.846142], [-83.626002, 32.84655], [-83.626259, 32.84696], [-83.626527, 32.847369], [-83.626823, 32.847767]]}, "properties": {"filename": "osm-traces-page-20.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/7336963", "track.name": "2023_04_21T19_08_30.323117Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI SANTA FE 2019).", "times": ["2023-04-21 19:13:32+00:00", "2023-04-21 19:13:34+00:00", "2023-04-21 19:13:35+00:00", "2023-04-21 19:13:37+00:00", "2023-04-21 19:13:38+00:00", "2023-04-21 19:13:39+00:00", "2023-04-21 19:13:41+00:00", "2023-04-21 19:13:42+00:00", "2023-04-21 19:13:44+00:00", "2023-04-21 19:13:45+00:00", "2023-04-21 19:13:46+00:00", "2023-04-21 19:13:48+00:00", "2023-04-21 19:13:49+00:00", "2023-04-21 19:13:51+00:00", "2023-04-21 19:13:52+00:00", "2023-04-21 19:13:53+00:00", "2023-04-21 19:13:55+00:00", "2023-04-21 19:13:56+00:00", "2023-04-21 19:13:58+00:00", "2023-04-21 19:13:59+00:00", "2023-04-21 19:14:00+00:00", "2023-04-21 19:14:02+00:00", "2023-04-21 19:14:03+00:00", "2023-04-21 19:14:05+00:00", "2023-04-21 19:14:06+00:00", "2023-04-21 19:14:07+00:00", "2023-04-21 19:14:09+00:00", "2023-04-21 19:14:10+00:00", "2023-04-21 19:14:12+00:00", "2023-04-21 19:14:13+00:00", "2023-04-21 19:14:15+00:00", "2023-04-21 19:14:16+00:00", "2023-04-21 19:14:18+00:00", "2023-04-21 19:14:19+00:00", "2023-04-21 19:14:21+00:00", "2023-04-21 19:14:22+00:00", "2023-04-21 19:14:24+00:00", "2023-04-21 19:14:26+00:00", "2023-04-21 19:14:27+00:00", "2023-04-21 19:14:29+00:00", "2023-04-21 19:14:31+00:00", "2023-04-21 19:14:32+00:00", "2023-04-21 19:14:34+00:00", "2023-04-21 19:14:35+00:00", "2023-04-21 19:14:37+00:00", "2023-04-21 19:14:38+00:00", "2023-04-21 19:14:40+00:00", "2023-04-21 19:14:41+00:00", "2023-04-21 19:14:43+00:00", "2023-04-21 19:14:44+00:00", "2023-04-21 19:14:46+00:00", "2023-04-21 19:14:48+00:00", "2023-04-21 19:14:49+00:00", "2023-04-21 19:14:51+00:00", "2023-04-21 19:14:52+00:00", "2023-04-21 19:14:54+00:00", "2023-04-21 19:14:56+00:00", "2023-04-21 19:14:57+00:00", "2023-04-21 19:14:59+00:00", "2023-04-21 19:15:00+00:00", "2023-04-21 19:15:02+00:00", "2023-04-21 19:15:04+00:00", "2023-04-21 19:15:05+00:00", "2023-04-21 19:15:07+00:00", "2023-04-21 19:15:08+00:00", "2023-04-21 19:15:10+00:00", "2023-04-21 19:15:11+00:00", "2023-04-21 19:15:13+00:00", "2023-04-21 19:15:14+00:00", "2023-04-21 19:15:16+00:00", "2023-04-21 19:15:17+00:00", "2023-04-21 19:15:19+00:00", "2023-04-21 19:15:20+00:00", "2023-04-21 19:15:22+00:00", "2023-04-21 19:15:23+00:00", "2023-04-21 19:15:25+00:00", "2023-04-21 19:15:27+00:00", "2023-04-21 19:15:28+00:00", "2023-04-21 19:15:30+00:00", "2023-04-21 19:15:32+00:00", "2023-04-21 19:15:33+00:00", "2023-04-21 19:15:35+00:00", "2023-04-21 19:15:37+00:00", "2023-04-21 19:15:38+00:00", "2023-04-21 19:15:40+00:00", "2023-04-21 19:15:42+00:00", "2023-04-21 19:15:44+00:00", "2023-04-21 19:15:45+00:00", "2023-04-21 19:15:47+00:00", "2023-04-21 19:15:49+00:00", "2023-04-21 19:15:50+00:00", "2023-04-21 19:15:52+00:00", "2023-04-21 19:15:54+00:00", "2023-04-21 19:15:55+00:00", "2023-04-21 19:15:57+00:00", "2023-04-21 19:15:58+00:00", "2023-04-21 19:16:00+00:00", "2023-04-21 19:16:01+00:00", "2023-04-21 19:16:03+00:00", "2023-04-21 19:16:04+00:00", "2023-04-21 19:16:06+00:00"]}}, {"type": "Feature", "id": "trace#20", "geometry": {"type": "LineString", "coordinates": [[-83.627144, 32.84815], [-83.627487, 32.848511], [-83.627842, 32.848849], [-83.628219, 32.849202], [-83.628587, 32.849555], [-83.628957, 32.849907], [-83.629318, 32.85025], [-83.629687, 32.850598], [-83.630061, 32.850951], [-83.630436, 32.851302], [-83.6308, 32.851637], [-83.631173, 32.851972], [-83.631551, 32.85231], [-83.631921, 32.852651], [-83.632288, 32.852989], [-83.632661, 32.853323], [-83.633046, 32.853654], [-83.633447, 32.853968], [-83.63387, 32.854263], [-83.634308, 32.854557], [-83.63473, 32.854838], [-83.63516, 32.855125], [-83.635591, 32.855413], [-83.636025, 32.8557], [-83.636464, 32.855979], [-83.6369, 32.856251], [-83.637332, 32.856517], [-83.637771, 32.856791], [-83.638219, 32.857073], [-83.63865, 32.857342], [-83.639086, 32.857615], [-83.639521, 32.857887], [-83.639971, 32.858172], [-83.640404, 32.858454], [-83.640821, 32.858752], [-83.641229, 32.859058], [-83.64164, 32.859364], [-83.642064, 32.85965], [-83.642521, 32.859899], [-83.64301, 32.860107], [-83.643494, 32.86031], [-83.643975, 32.860513]]}, "properties": {"filename": "osm-traces-page-20.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/7336963", "track.name": "2023_04_21T19_08_30.323117Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI SANTA FE 2019).", "times": ["2023-04-21 19:16:07+00:00", "2023-04-21 19:16:09+00:00", "2023-04-21 19:16:10+00:00", "2023-04-21 19:16:12+00:00", "2023-04-21 19:16:14+00:00", "2023-04-21 19:16:15+00:00", "2023-04-21 19:16:17+00:00", "2023-04-21 19:16:19+00:00", "2023-04-21 19:16:20+00:00", "2023-04-21 19:16:22+00:00", "2023-04-21 19:16:24+00:00", "2023-04-21 19:16:26+00:00", "2023-04-21 19:16:28+00:00", "2023-04-21 19:16:30+00:00", "2023-04-21 19:16:31+00:00", "2023-04-21 19:16:33+00:00", "2023-04-21 19:16:35+00:00", "2023-04-21 19:16:37+00:00", "2023-04-21 19:16:39+00:00", "2023-04-21 19:16:40+00:00", "2023-04-21 19:16:42+00:00", "2023-04-21 19:16:44+00:00", "2023-04-21 19:16:45+00:00", "2023-04-21 19:16:47+00:00", "2023-04-21 19:16:49+00:00", "2023-04-21 19:16:51+00:00", "2023-04-21 19:16:52+00:00", "2023-04-21 19:16:54+00:00", "2023-04-21 19:16:56+00:00", "2023-04-21 19:16:57+00:00", "2023-04-21 19:16:59+00:00", "2023-04-21 19:17:00+00:00", "2023-04-21 19:17:02+00:00", "2023-04-21 19:17:04+00:00", "2023-04-21 19:17:06+00:00", "2023-04-21 19:17:07+00:00", "2023-04-21 19:17:09+00:00", "2023-04-21 19:17:12+00:00", "2023-04-21 19:17:15+00:00", "2023-04-21 19:17:19+00:00", "2023-04-21 19:17:23+00:00", "2023-04-21 19:17:27+00:00"]}}, {"type": "Feature", "id": "trace#21", "geometry": {"type": "LineString", "coordinates": [[-83.62731, 32.848282], [-83.627661, 32.848636], [-83.628034, 32.848981], [-83.628404, 32.849333], [-83.628761, 32.849674], [-83.629128, 32.850023], [-83.629501, 32.850376], [-83.629875, 32.85073], [-83.63024, 32.851076], [-83.6306, 32.851413], [-83.630975, 32.851756], [-83.631341, 32.852084], [-83.631707, 32.852429], [-83.632069, 32.852775], [-83.632439, 32.853123], [-83.63282, 32.853463], [-83.633214, 32.853792], [-83.633626, 32.854107], [-83.63406, 32.854406], [-83.634496, 32.854696], [-83.634935, 32.854989], [-83.635357, 32.855269], [-83.635788, 32.855555], [-83.636213, 32.855834], [-83.636659, 32.856115], [-83.637098, 32.856386], [-83.637528, 32.856655], [-83.637962, 32.856928], [-83.638394, 32.857198], [-83.638827, 32.857472], [-83.639261, 32.857744]]}, "properties": {"filename": "osm-traces-page-22.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7336591", "track.name": "2023_03_31T19_55_56.456553Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI SANTA FE 2019).", "times": ["2023-03-31 20:04:40+00:00", "2023-03-31 20:04:42+00:00", "2023-03-31 20:04:44+00:00", "2023-03-31 20:04:45+00:00", "2023-03-31 20:04:47+00:00", "2023-03-31 20:04:49+00:00", "2023-03-31 20:04:51+00:00", "2023-03-31 20:04:53+00:00", "2023-03-31 20:04:54+00:00", "2023-03-31 20:04:56+00:00", "2023-03-31 20:04:58+00:00", "2023-03-31 20:05:00+00:00", "2023-03-31 20:05:02+00:00", "2023-03-31 20:05:04+00:00", "2023-03-31 20:05:06+00:00", "2023-03-31 20:05:08+00:00", "2023-03-31 20:05:10+00:00", "2023-03-31 20:05:12+00:00", "2023-03-31 20:05:14+00:00", "2023-03-31 20:05:16+00:00", "2023-03-31 20:05:18+00:00", "2023-03-31 20:05:20+00:00", "2023-03-31 20:05:22+00:00", "2023-03-31 20:05:25+00:00", "2023-03-31 20:05:27+00:00", "2023-03-31 20:05:29+00:00", "2023-03-31 20:05:32+00:00", "2023-03-31 20:05:35+00:00", "2023-03-31 20:05:40+00:00", "2023-03-31 20:05:47+00:00", "2023-03-31 20:05:52+00:00"]}}, {"type": "Feature", "id": "trace#22", "geometry": {"type": "LineString", "coordinates": [[-83.650782, 32.862939], [-83.650295, 32.862731], [-83.649809, 32.862535], [-83.649325, 32.862341], [-83.648832, 32.862122], [-83.648361, 32.861886], [-83.64787, 32.861661], [-83.647395, 32.861442], [-83.646918, 32.861218], [-83.646445, 32.860976], [-83.646, 32.860721], [-83.645558, 32.86045], [-83.645117, 32.860172], [-83.644673, 32.859891], [-83.644239, 32.859611], [-83.64381, 32.859334], [-83.643375, 32.859057], [-83.642938, 32.858781], [-83.642518, 32.858502], [-83.642105, 32.858213], [-83.641683, 32.857908], [-83.64126, 32.857609], [-83.640842, 32.85732], [-83.640422, 32.857033], [-83.640003, 32.856737], [-83.639581, 32.856454], [-83.639139, 32.85619], [-83.638701, 32.855925], [-83.63827, 32.855643], [-83.63786, 32.855348], [-83.637459, 32.855035], [-83.637045, 32.854723], [-83.636617, 32.854439], [-83.636164, 32.854185], [-83.635689, 32.853937], [-83.635227, 32.853696], [-83.634769, 32.853449], [-83.634314, 32.853207], [-83.63384, 32.852957], [-83.633384, 32.852713], [-83.632934, 32.852465], [-83.632489, 32.852193], [-83.632056, 32.851904], [-83.631647, 32.851599], [-83.631256, 32.851281], [-83.630865, 32.850939], [-83.630489, 32.850607], [-83.630113, 32.850267], [-83.629739, 32.849913], [-83.629371, 32.849581], [-83.628992, 32.849246], [-83.628606, 32.848905], [-83.628224, 32.848556], [-83.627857, 32.848199], [-83.627508, 32.847845], [-83.627158, 32.847472], [-83.626852, 32.84708], [-83.626583, 32.846676], [-83.62632, 32.846258], [-83.626066, 32.845856], [-83.625802, 32.845462], [-83.625511, 32.845062], [-83.625191, 32.844684], [-83.624835, 32.844327], [-83.624502, 32.843967], [-83.62418, 32.8436], [-83.623859, 32.843233], [-83.623526, 32.842871], [-83.623168, 32.842537], [-83.62277, 32.842206], [-83.622396, 32.841881], [-83.622022, 32.841558], [-83.621623, 32.841239], [-83.62121, 32.84092], [-83.620813, 32.840615], [-83.620406, 32.840304], [-83.619992, 32.84001], [-83.619562, 32.839738], [-83.619101, 32.839482], [-83.618632, 32.839239], [-83.618165, 32.839018], [-83.61768, 32.838803], [-83.617187, 32.838602], [-83.61669, 32.838411], [-83.616191, 32.838221], [-83.615707, 32.838014], [-83.615236, 32.837789], [-83.614772, 32.837537], [-83.614312, 32.837273], [-83.613884, 32.837001], [-83.613463, 32.836708], [-83.613053, 32.836398], [-83.612654, 32.836069], [-83.612255, 32.835736], [-83.611855, 32.8354], [-83.611476, 32.835082], [-83.61109, 32.834757], [-83.610699, 32.834426], [-83.610305, 32.834094], [-83.609909, 32.833759], [-83.60951, 32.833423]]}, "properties": {"filename": "osm-traces-page-23.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7336244", "track.name": "2023_03_18T20_55_06.048888Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI SANTA FE 2019).", "times": ["2023-03-18 20:58:49+00:00", "2023-03-18 20:58:51+00:00", "2023-03-18 20:58:53+00:00", "2023-03-18 20:58:55+00:00", "2023-03-18 20:58:57+00:00", "2023-03-18 20:58:59+00:00", "2023-03-18 20:59:02+00:00", "2023-03-18 20:59:04+00:00", "2023-03-18 20:59:06+00:00", "2023-03-18 20:59:08+00:00", "2023-03-18 20:59:10+00:00", "2023-03-18 20:59:12+00:00", "2023-03-18 20:59:14+00:00", "2023-03-18 20:59:16+00:00", "2023-03-18 20:59:18+00:00", "2023-03-18 20:59:20+00:00", "2023-03-18 20:59:22+00:00", "2023-03-18 20:59:24+00:00", "2023-03-18 20:59:26+00:00", "2023-03-18 20:59:28+00:00", "2023-03-18 20:59:30+00:00", "2023-03-18 20:59:32+00:00", "2023-03-18 20:59:34+00:00", "2023-03-18 20:59:36+00:00", "2023-03-18 20:59:38+00:00", "2023-03-18 20:59:41+00:00", "2023-03-18 20:59:43+00:00", "2023-03-18 20:59:45+00:00", "2023-03-18 20:59:47+00:00", "2023-03-18 20:59:49+00:00", "2023-03-18 20:59:51+00:00", "2023-03-18 20:59:53+00:00", "2023-03-18 20:59:56+00:00", "2023-03-18 20:59:58+00:00", "2023-03-18 21:00:00+00:00", "2023-03-18 21:00:02+00:00", "2023-03-18 21:00:04+00:00", "2023-03-18 21:00:06+00:00", "2023-03-18 21:00:08+00:00", "2023-03-18 21:00:10+00:00", "2023-03-18 21:00:12+00:00", "2023-03-18 21:00:14+00:00", "2023-03-18 21:00:16+00:00", "2023-03-18 21:00:18+00:00", "2023-03-18 21:00:19+00:00", "2023-03-18 21:00:21+00:00", "2023-03-18 21:00:23+00:00", "2023-03-18 21:00:25+00:00", "2023-03-18 21:00:27+00:00", "2023-03-18 21:00:28+00:00", "2023-03-18 21:00:30+00:00", "2023-03-18 21:00:32+00:00", "2023-03-18 21:00:34+00:00", "2023-03-18 21:00:35+00:00", "2023-03-18 21:00:37+00:00", "2023-03-18 21:00:39+00:00", "2023-03-18 21:00:41+00:00", "2023-03-18 21:00:42+00:00", "2023-03-18 21:00:44+00:00", "2023-03-18 21:00:46+00:00", "2023-03-18 21:00:48+00:00", "2023-03-18 21:00:49+00:00", "2023-03-18 21:00:51+00:00", "2023-03-18 21:00:53+00:00", "2023-03-18 21:00:55+00:00", "2023-03-18 21:00:57+00:00", "2023-03-18 21:00:58+00:00", "2023-03-18 21:01:01+00:00", "2023-03-18 21:01:03+00:00", "2023-03-18 21:01:05+00:00", "2023-03-18 21:01:07+00:00", "2023-03-18 21:01:10+00:00", "2023-03-18 21:01:12+00:00", "2023-03-18 21:01:14+00:00", "2023-03-18 21:01:16+00:00", "2023-03-18 21:01:18+00:00", "2023-03-18 21:01:20+00:00", "2023-03-18 21:01:22+00:00", "2023-03-18 21:01:24+00:00", "2023-03-18 21:01:26+00:00", "2023-03-18 21:01:28+00:00", "2023-03-18 21:01:30+00:00", "2023-03-18 21:01:32+00:00", "2023-03-18 21:01:34+00:00", "2023-03-18 21:01:36+00:00", "2023-03-18 21:01:38+00:00", "2023-03-18 21:01:39+00:00", "2023-03-18 21:01:41+00:00", "2023-03-18 21:01:43+00:00", "2023-03-18 21:01:45+00:00", "2023-03-18 21:01:47+00:00", "2023-03-18 21:01:49+00:00", "2023-03-18 21:01:50+00:00", "2023-03-18 21:01:52+00:00", "2023-03-18 21:01:54+00:00", "2023-03-18 21:01:56+00:00", "2023-03-18 21:01:57+00:00", "2023-03-18 21:01:59+00:00", "2023-03-18 21:02:01+00:00", "2023-03-18 21:02:03+00:00", "2023-03-18 21:02:04+00:00"]}}, {"type": "Feature", "id": "trace#23", "geometry": {"type": "LineString", "coordinates": [[-83.585667, 32.817693], [-83.586115, 32.817949], [-83.586562, 32.818205], [-83.587007, 32.81846], [-83.587475, 32.818729], [-83.587938, 32.818994], [-83.588392, 32.819253], [-83.588838, 32.819508], [-83.589306, 32.819775], [-83.589769, 32.820041], [-83.590236, 32.820309], [-83.590698, 32.820576], [-83.591167, 32.820845], [-83.591609, 32.8211], [-83.592055, 32.821357], [-83.592501, 32.821614], [-83.592947, 32.82187], [-83.593402, 32.82213], [-83.593851, 32.822389], [-83.594295, 32.822645], [-83.594742, 32.822899], [-83.595187, 32.823155], [-83.59563, 32.82341], [-83.596097, 32.823678], [-83.596566, 32.823947], [-83.597031, 32.824214], [-83.597497, 32.824481], [-83.597956, 32.824744], [-83.598413, 32.825008], [-83.598868, 32.825268], [-83.599322, 32.825528], [-83.599779, 32.82579], [-83.600243, 32.826058], [-83.600675, 32.826325], [-83.6011, 32.826605], [-83.601515, 32.826895], [-83.601926, 32.827196], [-83.60232, 32.827507], [-83.602707, 32.827826], [-83.603091, 32.828148], [-83.60348, 32.828474], [-83.603873, 32.828803], [-83.604267, 32.829136], [-83.604663, 32.82947], [-83.605056, 32.8298], [-83.605446, 32.830127], [-83.605836, 32.830452], [-83.606221, 32.830773], [-83.606608, 32.831096], [-83.606988, 32.831414], [-83.607392, 32.831752], [-83.607773, 32.83207], [-83.608156, 32.832391], [-83.608546, 32.832723], [-83.608932, 32.833063], [-83.609321, 32.833405], [-83.609719, 32.833746], [-83.610102, 32.834068], [-83.610488, 32.834389], [-83.610871, 32.834711], [-83.611258, 32.835034], [-83.611646, 32.835359], [-83.612032, 32.835682], [-83.612418, 32.836005], [-83.612805, 32.836327], [-83.613197, 32.836647], [-83.6136, 32.836952], [-83.614016, 32.83724], [-83.614446, 32.837512], [-83.614893, 32.837769], [-83.615351, 32.838009], [-83.61582, 32.83823], [-83.616321, 32.838447], [-83.616813, 32.838657], [-83.617323, 32.838874], [-83.617807, 32.839088], [-83.618299, 32.839318], [-83.618762, 32.839551], [-83.619226, 32.8398], [-83.619685, 32.840062], [-83.620127, 32.840332], [-83.620564, 32.840614], [-83.620979, 32.840902], [-83.621399, 32.841211], [-83.62181, 32.841532], [-83.622192, 32.841848], [-83.622572, 32.842184], [-83.622944, 32.842532], [-83.623306, 32.84289], [-83.623649, 32.843248], [-83.623977, 32.843614], [-83.624302, 32.844001], [-83.624612, 32.844394], [-83.624898, 32.844784], [-83.625178, 32.845191], [-83.625445, 32.845605], [-83.625705, 32.846023], [-83.625957, 32.846428], [-83.626209, 32.846835], [-83.626465, 32.847239], [-83.626751, 32.847645]]}, "properties": {"filename": "osm-traces-page-25.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/7277998", "track.name": "2023_04_30T20_40_06.269049Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-04-30 20:41:28+00:00", "2023-04-30 20:41:29+00:00", "2023-04-30 20:41:30+00:00", "2023-04-30 20:41:32+00:00", "2023-04-30 20:41:33+00:00", "2023-04-30 20:41:35+00:00", "2023-04-30 20:41:36+00:00", "2023-04-30 20:41:38+00:00", "2023-04-30 20:41:39+00:00", "2023-04-30 20:41:41+00:00", "2023-04-30 20:41:43+00:00", "2023-04-30 20:41:44+00:00", "2023-04-30 20:41:46+00:00", "2023-04-30 20:41:47+00:00", "2023-04-30 20:41:49+00:00", "2023-04-30 20:41:50+00:00", "2023-04-30 20:41:52+00:00", "2023-04-30 20:41:53+00:00", "2023-04-30 20:41:55+00:00", "2023-04-30 20:41:56+00:00", "2023-04-30 20:41:58+00:00", "2023-04-30 20:41:59+00:00", "2023-04-30 20:42:01+00:00", "2023-04-30 20:42:02+00:00", "2023-04-30 20:42:04+00:00", "2023-04-30 20:42:06+00:00", "2023-04-30 20:42:07+00:00", "2023-04-30 20:42:09+00:00", "2023-04-30 20:42:10+00:00", "2023-04-30 20:42:12+00:00", "2023-04-30 20:42:14+00:00", "2023-04-30 20:42:15+00:00", "2023-04-30 20:42:17+00:00", "2023-04-30 20:42:18+00:00", "2023-04-30 20:42:20+00:00", "2023-04-30 20:42:21+00:00", "2023-04-30 20:42:23+00:00", "2023-04-30 20:42:24+00:00", "2023-04-30 20:42:26+00:00", "2023-04-30 20:42:27+00:00", "2023-04-30 20:42:29+00:00", "2023-04-30 20:42:30+00:00", "2023-04-30 20:42:32+00:00", "2023-04-30 20:42:33+00:00", "2023-04-30 20:42:35+00:00", "2023-04-30 20:42:36+00:00", "2023-04-30 20:42:38+00:00", "2023-04-30 20:42:39+00:00", "2023-04-30 20:42:41+00:00", "2023-04-30 20:42:42+00:00", "2023-04-30 20:42:44+00:00", "2023-04-30 20:42:45+00:00", "2023-04-30 20:42:47+00:00", "2023-04-30 20:42:48+00:00", "2023-04-30 20:42:50+00:00", "2023-04-30 20:42:51+00:00", "2023-04-30 20:42:53+00:00", "2023-04-30 20:42:54+00:00", "2023-04-30 20:42:56+00:00", "2023-04-30 20:42:57+00:00", "2023-04-30 20:42:58+00:00", "2023-04-30 20:43:00+00:00", "2023-04-30 20:43:01+00:00", "2023-04-30 20:43:03+00:00", "2023-04-30 20:43:04+00:00", "2023-04-30 20:43:05+00:00", "2023-04-30 20:43:07+00:00", "2023-04-30 20:43:08+00:00", "2023-04-30 20:43:10+00:00", "2023-04-30 20:43:11+00:00", "2023-04-30 20:43:12+00:00", "2023-04-30 20:43:14+00:00", "2023-04-30 20:43:15+00:00", "2023-04-30 20:43:17+00:00", "2023-04-30 20:43:18+00:00", "2023-04-30 20:43:20+00:00", "2023-04-30 20:43:22+00:00", "2023-04-30 20:43:23+00:00", "2023-04-30 20:43:25+00:00", "2023-04-30 20:43:27+00:00", "2023-04-30 20:43:29+00:00", "2023-04-30 20:43:31+00:00", "2023-04-30 20:43:33+00:00", "2023-04-30 20:43:35+00:00", "2023-04-30 20:43:36+00:00", "2023-04-30 20:43:38+00:00", "2023-04-30 20:43:40+00:00", "2023-04-30 20:43:41+00:00", "2023-04-30 20:43:43+00:00", "2023-04-30 20:43:45+00:00", "2023-04-30 20:43:47+00:00", "2023-04-30 20:43:48+00:00", "2023-04-30 20:43:50+00:00", "2023-04-30 20:43:52+00:00", "2023-04-30 20:43:54+00:00", "2023-04-30 20:43:56+00:00", "2023-04-30 20:43:58+00:00", "2023-04-30 20:43:59+00:00", "2023-04-30 20:44:01+00:00", "2023-04-30 20:44:03+00:00", "2023-04-30 20:44:05+00:00"]}}, {"type": "Feature", "id": "trace#24", "geometry": {"type": "LineString", "coordinates": [[-83.627066, 32.848033], [-83.627407, 32.848401], [-83.62777, 32.848754], [-83.628149, 32.849104], [-83.628508, 32.84945], [-83.628876, 32.849802], [-83.629244, 32.850153], [-83.629616, 32.850503], [-83.629985, 32.850853], [-83.630353, 32.8512], [-83.630726, 32.851548], [-83.631107, 32.851892], [-83.63148, 32.85222], [-83.631869, 32.852563], [-83.63226, 32.852907], [-83.632646, 32.853246], [-83.63303, 32.853579], [-83.633429, 32.853901]]}, "properties": {"filename": "osm-traces-page-25.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/7277998", "track.name": "2023_04_30T20_40_06.269049Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.11.13 (HYUNDAI ELANTRA 2021).", "times": ["2023-04-30 20:44:07+00:00", "2023-04-30 20:44:09+00:00", "2023-04-30 20:44:11+00:00", "2023-04-30 20:44:13+00:00", "2023-04-30 20:44:14+00:00", "2023-04-30 20:44:16+00:00", "2023-04-30 20:44:18+00:00", "2023-04-30 20:44:20+00:00", "2023-04-30 20:44:22+00:00", "2023-04-30 20:44:23+00:00", "2023-04-30 20:44:25+00:00", "2023-04-30 20:44:27+00:00", "2023-04-30 20:44:29+00:00", "2023-04-30 20:44:30+00:00", "2023-04-30 20:44:32+00:00", "2023-04-30 20:44:34+00:00", "2023-04-30 20:44:36+00:00", "2023-04-30 20:44:38+00:00"]}}, {"type": "Feature", "id": "trace#25", "geometry": {"type": "LineString", "coordinates": [[-83.711407, 32.774099], [-83.711652, 32.77451], [-83.711898, 32.774913], [-83.712143, 32.775314], [-83.712394, 32.775718], [-83.712646, 32.776122], [-83.712897, 32.776525], [-83.713151, 32.776932], [-83.713406, 32.77734], [-83.713655, 32.777741], [-83.713904, 32.778142], [-83.714156, 32.778546], [-83.71441, 32.778952], [-83.714665, 32.779358], [-83.714922, 32.779766], [-83.715178, 32.780173], [-83.715435, 32.780581], [-83.715689, 32.780987], [-83.715944, 32.781392], [-83.716198, 32.781796], [-83.716446, 32.782202], [-83.716693, 32.78262], [-83.716938, 32.783035], [-83.717188, 32.783442], [-83.717443, 32.783849], [-83.7177, 32.784257], [-83.717959, 32.784667], [-83.718216, 32.785078], [-83.71847, 32.785493], [-83.71871, 32.785914], [-83.718923, 32.786335], [-83.719105, 32.786771], [-83.719257, 32.787218], [-83.719378, 32.787665], [-83.719467, 32.788111], [-83.719537, 32.788585], [-83.719597, 32.789062], [-83.719649, 32.789512], [-83.719701, 32.789967], [-83.719753, 32.790424], [-83.719806, 32.790885], [-83.719858, 32.791349], [-83.719911, 32.791812], [-83.719963, 32.792277], [-83.720016, 32.792739], [-83.720067, 32.7932], [-83.720119, 32.793657], [-83.720169, 32.794111], [-83.72022, 32.794569], [-83.720269, 32.795023], [-83.720318, 32.795478], [-83.720367, 32.795933], [-83.720416, 32.796387], [-83.720466, 32.796842], [-83.720518, 32.797297], [-83.720579, 32.797753], [-83.720656, 32.798205], [-83.720749, 32.798658], [-83.720859, 32.799108], [-83.720981, 32.799556], [-83.721117, 32.800002], [-83.721268, 32.800442], [-83.721436, 32.800879], [-83.721617, 32.801309], [-83.721811, 32.801738], [-83.722012, 32.802172], [-83.722214, 32.802606], [-83.72242, 32.803042]]}, "properties": {"filename": "osm-traces-page-26.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/7230733", "track.name": "2023_04_27T18_20_52.656864Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (RAM 1500 5TH GEN).", "times": ["2023-04-27 18:25:19+00:00", "2023-04-27 18:25:20+00:00", "2023-04-27 18:25:22+00:00", "2023-04-27 18:25:23+00:00", "2023-04-27 18:25:25+00:00", "2023-04-27 18:25:26+00:00", "2023-04-27 18:25:28+00:00", "2023-04-27 18:25:29+00:00", "2023-04-27 18:25:31+00:00", "2023-04-27 18:25:32+00:00", "2023-04-27 18:25:34+00:00", "2023-04-27 18:25:35+00:00", "2023-04-27 18:25:37+00:00", "2023-04-27 18:25:38+00:00", "2023-04-27 18:25:40+00:00", "2023-04-27 18:25:41+00:00", "2023-04-27 18:25:43+00:00", "2023-04-27 18:25:44+00:00", "2023-04-27 18:25:46+00:00", "2023-04-27 18:25:47+00:00", "2023-04-27 18:25:49+00:00", "2023-04-27 18:25:50+00:00", "2023-04-27 18:25:52+00:00", "2023-04-27 18:25:53+00:00", "2023-04-27 18:25:55+00:00", "2023-04-27 18:25:56+00:00", "2023-04-27 18:25:58+00:00", "2023-04-27 18:25:59+00:00", "2023-04-27 18:26:01+00:00", "2023-04-27 18:26:02+00:00", "2023-04-27 18:26:04+00:00", "2023-04-27 18:26:05+00:00", "2023-04-27 18:26:07+00:00", "2023-04-27 18:26:08+00:00", "2023-04-27 18:26:10+00:00", "2023-04-27 18:26:11+00:00", "2023-04-27 18:26:13+00:00", "2023-04-27 18:26:14+00:00", "2023-04-27 18:26:16+00:00", "2023-04-27 18:26:17+00:00", "2023-04-27 18:26:19+00:00", "2023-04-27 18:26:20+00:00", "2023-04-27 18:26:22+00:00", "2023-04-27 18:26:23+00:00", "2023-04-27 18:26:25+00:00", "2023-04-27 18:26:26+00:00", "2023-04-27 18:26:28+00:00", "2023-04-27 18:26:29+00:00", "2023-04-27 18:26:31+00:00", "2023-04-27 18:26:32+00:00", "2023-04-27 18:26:34+00:00", "2023-04-27 18:26:35+00:00", "2023-04-27 18:26:37+00:00", "2023-04-27 18:26:38+00:00", "2023-04-27 18:26:40+00:00", "2023-04-27 18:26:41+00:00", "2023-04-27 18:26:43+00:00", "2023-04-27 18:26:44+00:00", "2023-04-27 18:26:46+00:00", "2023-04-27 18:26:47+00:00", "2023-04-27 18:26:49+00:00", "2023-04-27 18:26:50+00:00", "2023-04-27 18:26:52+00:00", "2023-04-27 18:26:53+00:00", "2023-04-27 18:26:55+00:00", "2023-04-27 18:26:56+00:00", "2023-04-27 18:26:58+00:00", "2023-04-27 18:26:59+00:00"]}}, {"type": "Feature", "id": "trace#26", "geometry": {"type": "LineString", "coordinates": [[-83.711343, 32.774121], [-83.711603, 32.774543], [-83.711866, 32.774963], [-83.712131, 32.775382], [-83.712395, 32.775802], [-83.71266, 32.776222], [-83.712924, 32.776643], [-83.713189, 32.777062], [-83.713454, 32.777482], [-83.713718, 32.777901], [-83.713982, 32.778322], [-83.714246, 32.778742], [-83.71451, 32.779162], [-83.714775, 32.779582], [-83.715041, 32.780002], [-83.715306, 32.780423], [-83.715571, 32.780844], [-83.715835, 32.781264], [-83.716099, 32.781685], [-83.716354, 32.78211], [-83.716606, 32.782537], [-83.716863, 32.782961], [-83.717125, 32.783384], [-83.71739, 32.783806], [-83.717657, 32.784228], [-83.717925, 32.78465], [-83.71819, 32.785074], [-83.718454, 32.7855], [-83.71871, 32.785928], [-83.718943, 32.786364], [-83.719138, 32.786811], [-83.719301, 32.787266], [-83.71943, 32.787726], [-83.719526, 32.788189], [-83.719589, 32.788655], [-83.719641, 32.789123], [-83.719687, 32.789593], [-83.719734, 32.790066], [-83.719785, 32.790543], [-83.719833, 32.791021], [-83.719884, 32.791499], [-83.719935, 32.791978], [-83.719984, 32.792458], [-83.720035, 32.792937], [-83.720085, 32.793416], [-83.720134, 32.793893], [-83.720183, 32.794369], [-83.720234, 32.794845], [-83.720284, 32.79532], [-83.720332, 32.795796], [-83.720382, 32.79627], [-83.720429, 32.796744], [-83.720478, 32.797219], [-83.720532, 32.797694], [-83.720598, 32.798167], [-83.720683, 32.798638], [-83.720787, 32.799105]]}, "properties": {"filename": "osm-traces-page-26.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/7103399", "track.name": "2023_02_17T18_06_19.266018Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (TOYOTA RAV4 2017-18).", "times": ["2023-02-17 18:06:35+00:00", "2023-02-17 18:06:36+00:00", "2023-02-17 18:06:38+00:00", "2023-02-17 18:06:39+00:00", "2023-02-17 18:06:41+00:00", "2023-02-17 18:06:42+00:00", "2023-02-17 18:06:44+00:00", "2023-02-17 18:06:45+00:00", "2023-02-17 18:06:47+00:00", "2023-02-17 18:06:48+00:00", "2023-02-17 18:06:50+00:00", "2023-02-17 18:06:51+00:00", "2023-02-17 18:06:53+00:00", "2023-02-17 18:06:54+00:00", "2023-02-17 18:06:56+00:00", "2023-02-17 18:06:57+00:00", "2023-02-17 18:06:59+00:00", "2023-02-17 18:07:00+00:00", "2023-02-17 18:07:02+00:00", "2023-02-17 18:07:03+00:00", "2023-02-17 18:07:05+00:00", "2023-02-17 18:07:06+00:00", "2023-02-17 18:07:08+00:00", "2023-02-17 18:07:09+00:00", "2023-02-17 18:07:11+00:00", "2023-02-17 18:07:12+00:00", "2023-02-17 18:07:14+00:00", "2023-02-17 18:07:15+00:00", "2023-02-17 18:07:17+00:00", "2023-02-17 18:07:18+00:00", "2023-02-17 18:07:20+00:00", "2023-02-17 18:07:21+00:00", "2023-02-17 18:07:23+00:00", "2023-02-17 18:07:24+00:00", "2023-02-17 18:07:26+00:00", "2023-02-17 18:07:27+00:00", "2023-02-17 18:07:29+00:00", "2023-02-17 18:07:30+00:00", "2023-02-17 18:07:32+00:00", "2023-02-17 18:07:33+00:00", "2023-02-17 18:07:35+00:00", "2023-02-17 18:07:36+00:00", "2023-02-17 18:07:38+00:00", "2023-02-17 18:07:39+00:00", "2023-02-17 18:07:41+00:00", "2023-02-17 18:07:42+00:00", "2023-02-17 18:07:44+00:00", "2023-02-17 18:07:45+00:00", "2023-02-17 18:07:47+00:00", "2023-02-17 18:07:48+00:00", "2023-02-17 18:07:50+00:00", "2023-02-17 18:07:51+00:00", "2023-02-17 18:07:53+00:00", "2023-02-17 18:07:54+00:00", "2023-02-17 18:07:56+00:00", "2023-02-17 18:07:57+00:00", "2023-02-17 18:07:59+00:00"]}}, {"type": "Feature", "id": "trace#27", "geometry": {"type": "LineString", "coordinates": [[-83.62743, 32.848411], [-83.627785, 32.848755], [-83.628148, 32.849089], [-83.628509, 32.849433], [-83.628868, 32.849775], [-83.629224, 32.850112], [-83.629592, 32.850463], [-83.629959, 32.85081], [-83.630333, 32.851164], [-83.630692, 32.851498], [-83.631066, 32.851837], [-83.631443, 32.852175], [-83.631822, 32.852506], [-83.632212, 32.852847], [-83.632595, 32.853181], [-83.632991, 32.853522], [-83.633398, 32.85385], [-83.633828, 32.854162], [-83.634264, 32.854469], [-83.634677, 32.854756], [-83.635093, 32.85504], [-83.635536, 32.855338], [-83.635975, 32.85563], [-83.636414, 32.855913], [-83.636858, 32.856191], [-83.637297, 32.856463], [-83.637728, 32.856733], [-83.638156, 32.857012], [-83.63859, 32.857298], [-83.639027, 32.857582], [-83.639458, 32.857858], [-83.639891, 32.858126], [-83.640323, 32.858399], [-83.640747, 32.858693], [-83.641148, 32.858992], [-83.641555, 32.8593], [-83.641976, 32.859595], [-83.642422, 32.859848], [-83.642907, 32.860063], [-83.6434, 32.86026], [-83.643883, 32.860466], [-83.644368, 32.860669], [-83.644856, 32.860855], [-83.645355, 32.861029], [-83.645862, 32.861208], [-83.646371, 32.861401], [-83.64687, 32.861603], [-83.647356, 32.861803], [-83.647862, 32.861994], [-83.648374, 32.86219], [-83.648883, 32.862392], [-83.649375, 32.862589], [-83.64986, 32.862782], [-83.650366, 32.862984], [-83.650857, 32.8632], [-83.651309, 32.863442], [-83.651741, 32.863722], [-83.652145, 32.864038], [-83.652516, 32.864366], [-83.652887, 32.864709], [-83.65325, 32.865043], [-83.653617, 32.865381], [-83.653982, 32.865719], [-83.654347, 32.866056], [-83.654713, 32.866392], [-83.655085, 32.866734], [-83.655462, 32.86708], [-83.655839, 32.867426], [-83.656218, 32.867773], [-83.656597, 32.868121], [-83.656976, 32.868471], [-83.657358, 32.868822], [-83.657721, 32.869155], [-83.658087, 32.86949], [-83.658459, 32.86983], [-83.658829, 32.870175], [-83.659195, 32.870534], [-83.659537, 32.870886], [-83.659877, 32.871252], [-83.660207, 32.871626], [-83.660533, 32.872009], [-83.660856, 32.872399], [-83.661182, 32.87279], [-83.661507, 32.873181], [-83.661831, 32.87357], [-83.662153, 32.873959], [-83.662475, 32.874346], [-83.662801, 32.874733], [-83.663128, 32.875124], [-83.663454, 32.875517], [-83.663761, 32.875887], [-83.664069, 32.876256], [-83.664398, 32.876649], [-83.664724, 32.877043], [-83.66505, 32.877435], [-83.665377, 32.877826], [-83.66571, 32.878215], [-83.666044, 32.878602], [-83.666359, 32.878966], [-83.666675, 32.879333], [-83.66699, 32.879699]]}, "properties": {"filename": "osm-traces-page-27.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7073725", "track.name": "2023_04_15T16_44_55.634318Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.11.13 (HONDA ACCORD 2018).", "times": ["2023-04-15 16:47:47+00:00", "2023-04-15 16:47:49+00:00", "2023-04-15 16:47:51+00:00", "2023-04-15 16:47:53+00:00", "2023-04-15 16:47:54+00:00", "2023-04-15 16:47:56+00:00", "2023-04-15 16:47:58+00:00", "2023-04-15 16:48:00+00:00", "2023-04-15 16:48:02+00:00", "2023-04-15 16:48:04+00:00", "2023-04-15 16:48:06+00:00", "2023-04-15 16:48:07+00:00", "2023-04-15 16:48:09+00:00", "2023-04-15 16:48:11+00:00", "2023-04-15 16:48:13+00:00", "2023-04-15 16:48:15+00:00", "2023-04-15 16:48:16+00:00", "2023-04-15 16:48:18+00:00", "2023-04-15 16:48:19+00:00", "2023-04-15 16:48:21+00:00", "2023-04-15 16:48:22+00:00", "2023-04-15 16:48:24+00:00", "2023-04-15 16:48:26+00:00", "2023-04-15 16:48:27+00:00", "2023-04-15 16:48:29+00:00", "2023-04-15 16:48:30+00:00", "2023-04-15 16:48:32+00:00", "2023-04-15 16:48:34+00:00", "2023-04-15 16:48:35+00:00", "2023-04-15 16:48:37+00:00", "2023-04-15 16:48:39+00:00", "2023-04-15 16:48:41+00:00", "2023-04-15 16:48:44+00:00", "2023-04-15 16:48:47+00:00", "2023-04-15 16:48:49+00:00", "2023-04-15 16:48:52+00:00", "2023-04-15 16:48:56+00:00", "2023-04-15 16:49:00+00:00", "2023-04-15 16:49:04+00:00", "2023-04-15 16:49:07+00:00", "2023-04-15 16:49:10+00:00", "2023-04-15 16:49:13+00:00", "2023-04-15 16:49:16+00:00", "2023-04-15 16:49:18+00:00", "2023-04-15 16:49:20+00:00", "2023-04-15 16:49:22+00:00", "2023-04-15 16:49:24+00:00", "2023-04-15 16:49:26+00:00", "2023-04-15 16:49:28+00:00", "2023-04-15 16:49:30+00:00", "2023-04-15 16:49:32+00:00", "2023-04-15 16:49:34+00:00", "2023-04-15 16:49:36+00:00", "2023-04-15 16:49:38+00:00", "2023-04-15 16:49:40+00:00", "2023-04-15 16:49:42+00:00", "2023-04-15 16:49:44+00:00", "2023-04-15 16:49:46+00:00", "2023-04-15 16:49:47+00:00", "2023-04-15 16:49:49+00:00", "2023-04-15 16:49:51+00:00", "2023-04-15 16:49:53+00:00", "2023-04-15 16:49:54+00:00", "2023-04-15 16:49:56+00:00", "2023-04-15 16:49:58+00:00", "2023-04-15 16:49:59+00:00", "2023-04-15 16:50:01+00:00", "2023-04-15 16:50:03+00:00", "2023-04-15 16:50:04+00:00", "2023-04-15 16:50:06+00:00", "2023-04-15 16:50:08+00:00", "2023-04-15 16:50:10+00:00", "2023-04-15 16:50:11+00:00", "2023-04-15 16:50:13+00:00", "2023-04-15 16:50:14+00:00", "2023-04-15 16:50:16+00:00", "2023-04-15 16:50:18+00:00", "2023-04-15 16:50:19+00:00", "2023-04-15 16:50:21+00:00", "2023-04-15 16:50:22+00:00", "2023-04-15 16:50:24+00:00", "2023-04-15 16:50:25+00:00", "2023-04-15 16:50:27+00:00", "2023-04-15 16:50:28+00:00", "2023-04-15 16:50:30+00:00", "2023-04-15 16:50:31+00:00", "2023-04-15 16:50:33+00:00", "2023-04-15 16:50:34+00:00", "2023-04-15 16:50:36+00:00", "2023-04-15 16:50:37+00:00", "2023-04-15 16:50:38+00:00", "2023-04-15 16:50:40+00:00", "2023-04-15 16:50:41+00:00", "2023-04-15 16:50:43+00:00", "2023-04-15 16:50:44+00:00", "2023-04-15 16:50:46+00:00", "2023-04-15 16:50:47+00:00", "2023-04-15 16:50:49+00:00", "2023-04-15 16:50:50+00:00", "2023-04-15 16:50:52+00:00", "2023-04-15 16:50:53+00:00"]}}, {"type": "Feature", "id": "trace#28", "geometry": {"type": "LineString", "coordinates": [[-83.639564, 32.856431], [-83.639108, 32.856167], [-83.638658, 32.855895], [-83.638223, 32.855607], [-83.637809, 32.855298], [-83.637417, 32.854985], [-83.637014, 32.854682], [-83.636587, 32.854406], [-83.63613, 32.854155], [-83.635661, 32.853917], [-83.635203, 32.853675], [-83.634735, 32.853422], [-83.634282, 32.853179], [-83.633819, 32.852931], [-83.633353, 32.852682], [-83.632891, 32.852428], [-83.632458, 32.852161], [-83.632028, 32.851867], [-83.631619, 32.851556], [-83.631236, 32.851235], [-83.630849, 32.850894], [-83.630472, 32.850561], [-83.630092, 32.850228], [-83.629721, 32.849903], [-83.629339, 32.849569], [-83.628959, 32.849234], [-83.628589, 32.848908], [-83.62822, 32.848571], [-83.627852, 32.848215], [-83.627499, 32.84786], [-83.627155, 32.847498], [-83.626859, 32.847112], [-83.626591, 32.846702], [-83.62633, 32.846286], [-83.626072, 32.845882], [-83.625797, 32.845475], [-83.625502, 32.845074], [-83.625184, 32.844707], [-83.624825, 32.844345], [-83.624479, 32.843978], [-83.624162, 32.843604], [-83.623845, 32.843241], [-83.623501, 32.842877], [-83.623137, 32.842539], [-83.622745, 32.842211], [-83.622353, 32.841873], [-83.621972, 32.841547], [-83.621575, 32.841229], [-83.621167, 32.840915], [-83.620757, 32.840597], [-83.620339, 32.840281], [-83.619922, 32.839989], [-83.619473, 32.839721], [-83.619001, 32.839465], [-83.618541, 32.839234], [-83.618072, 32.839014], [-83.617573, 32.838796], [-83.617072, 32.838594], [-83.616577, 32.838407], [-83.616074, 32.838206], [-83.615587, 32.837987], [-83.615113, 32.837746], [-83.614649, 32.837487], [-83.614212, 32.837226], [-83.613789, 32.836946], [-83.613375, 32.836651], [-83.612979, 32.836337], [-83.612584, 32.836006], [-83.612195, 32.83568], [-83.611799, 32.835347], [-83.6114, 32.835012], [-83.611003, 32.834681], [-83.610609, 32.834351], [-83.610216, 32.834021], [-83.609821, 32.83369], [-83.609422, 32.833357], [-83.609043, 32.833039], [-83.60866, 32.832719], [-83.608278, 32.832398], [-83.607895, 32.832077], [-83.607505, 32.831754], [-83.607113, 32.83142], [-83.606744, 32.831091], [-83.606388, 32.830737], [-83.606036, 32.830371], [-83.605666, 32.830018], [-83.605271, 32.829682], [-83.604865, 32.829345], [-83.604481, 32.829025], [-83.604094, 32.828701], [-83.603703, 32.828373], [-83.603307, 32.82804], [-83.602907, 32.827706], [-83.602503, 32.827374], [-83.60209, 32.827044], [-83.601662, 32.826726], [-83.601223, 32.826419], [-83.600774, 32.826124], [-83.600316, 32.82584], [-83.599848, 32.825566], [-83.599407, 32.825312]]}, "properties": {"filename": "osm-traces-page-28.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7048337", "track.name": "2023_04_14T15_51_00.501944Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (TOYOTA RAV4 2019-22).", "times": ["2023-04-14 15:51:06+00:00", "2023-04-14 15:51:08+00:00", "2023-04-14 15:51:11+00:00", "2023-04-14 15:51:13+00:00", "2023-04-14 15:51:16+00:00", "2023-04-14 15:51:18+00:00", "2023-04-14 15:51:21+00:00", "2023-04-14 15:51:23+00:00", "2023-04-14 15:51:25+00:00", "2023-04-14 15:51:28+00:00", "2023-04-14 15:51:30+00:00", "2023-04-14 15:51:32+00:00", "2023-04-14 15:51:34+00:00", "2023-04-14 15:51:36+00:00", "2023-04-14 15:51:38+00:00", "2023-04-14 15:51:41+00:00", "2023-04-14 15:51:43+00:00", "2023-04-14 15:51:45+00:00", "2023-04-14 15:51:47+00:00", "2023-04-14 15:51:49+00:00", "2023-04-14 15:51:51+00:00", "2023-04-14 15:51:53+00:00", "2023-04-14 15:51:55+00:00", "2023-04-14 15:51:57+00:00", "2023-04-14 15:51:59+00:00", "2023-04-14 15:52:01+00:00", "2023-04-14 15:52:03+00:00", "2023-04-14 15:52:05+00:00", "2023-04-14 15:52:07+00:00", "2023-04-14 15:52:09+00:00", "2023-04-14 15:52:11+00:00", "2023-04-14 15:52:14+00:00", "2023-04-14 15:52:16+00:00", "2023-04-14 15:52:18+00:00", "2023-04-14 15:52:20+00:00", "2023-04-14 15:52:21+00:00", "2023-04-14 15:52:23+00:00", "2023-04-14 15:52:25+00:00", "2023-04-14 15:52:27+00:00", "2023-04-14 15:52:30+00:00", "2023-04-14 15:52:32+00:00", "2023-04-14 15:52:34+00:00", "2023-04-14 15:52:36+00:00", "2023-04-14 15:52:38+00:00", "2023-04-14 15:52:40+00:00", "2023-04-14 15:52:42+00:00", "2023-04-14 15:52:44+00:00", "2023-04-14 15:52:46+00:00", "2023-04-14 15:52:48+00:00", "2023-04-14 15:52:50+00:00", "2023-04-14 15:52:52+00:00", "2023-04-14 15:52:54+00:00", "2023-04-14 15:52:56+00:00", "2023-04-14 15:52:58+00:00", "2023-04-14 15:53:00+00:00", "2023-04-14 15:53:02+00:00", "2023-04-14 15:53:03+00:00", "2023-04-14 15:53:05+00:00", "2023-04-14 15:53:07+00:00", "2023-04-14 15:53:09+00:00", "2023-04-14 15:53:11+00:00", "2023-04-14 15:53:13+00:00", "2023-04-14 15:53:15+00:00", "2023-04-14 15:53:17+00:00", "2023-04-14 15:53:19+00:00", "2023-04-14 15:53:21+00:00", "2023-04-14 15:53:23+00:00", "2023-04-14 15:53:25+00:00", "2023-04-14 15:53:27+00:00", "2023-04-14 15:53:28+00:00", "2023-04-14 15:53:30+00:00", "2023-04-14 15:53:32+00:00", "2023-04-14 15:53:34+00:00", "2023-04-14 15:53:36+00:00", "2023-04-14 15:53:37+00:00", "2023-04-14 15:53:39+00:00", "2023-04-14 15:53:41+00:00", "2023-04-14 15:53:43+00:00", "2023-04-14 15:53:44+00:00", "2023-04-14 15:53:46+00:00", "2023-04-14 15:53:48+00:00", "2023-04-14 15:53:49+00:00", "2023-04-14 15:53:51+00:00", "2023-04-14 15:53:53+00:00", "2023-04-14 15:53:54+00:00", "2023-04-14 15:53:56+00:00", "2023-04-14 15:53:57+00:00", "2023-04-14 15:53:59+00:00", "2023-04-14 15:54:00+00:00", "2023-04-14 15:54:02+00:00", "2023-04-14 15:54:03+00:00", "2023-04-14 15:54:05+00:00", "2023-04-14 15:54:06+00:00", "2023-04-14 15:54:08+00:00", "2023-04-14 15:54:09+00:00", "2023-04-14 15:54:11+00:00", "2023-04-14 15:54:12+00:00", "2023-04-14 15:54:14+00:00", "2023-04-14 15:54:15+00:00", "2023-04-14 15:54:17+00:00", "2023-04-14 15:54:18+00:00"]}}, {"type": "Feature", "id": "trace#29", "geometry": {"type": "LineString", "coordinates": [[-83.676607, 32.891017], [-83.676309, 32.890642], [-83.676011, 32.890268], [-83.675712, 32.889894], [-83.67541, 32.889522], [-83.675106, 32.88915], [-83.674799, 32.888781], [-83.674491, 32.888411], [-83.674182, 32.888041], [-83.673875, 32.887671], [-83.673569, 32.887301], [-83.673263, 32.886931], [-83.672955, 32.886561], [-83.672624, 32.88617], [-83.672292, 32.885782], [-83.671961, 32.885391], [-83.671654, 32.885021], [-83.671348, 32.884651], [-83.671023, 32.884258], [-83.670702, 32.883869], [-83.670384, 32.883487], [-83.670071, 32.883108], [-83.66976, 32.882732], [-83.669448, 32.882356], [-83.669134, 32.881977], [-83.668818, 32.881596], [-83.668499, 32.881212], [-83.668178, 32.880832], [-83.667859, 32.880458], [-83.667545, 32.880094], [-83.667218, 32.879714], [-83.6669, 32.879347], [-83.666571, 32.878965], [-83.666245, 32.878586], [-83.665918, 32.878205], [-83.665589, 32.87782], [-83.665261, 32.877434], [-83.664937, 32.877047], [-83.664619, 32.876664], [-83.664311, 32.876292], [-83.663997, 32.875916], [-83.663679, 32.875535], [-83.663372, 32.875166], [-83.663058, 32.874788], [-83.662752, 32.874419], [-83.662438, 32.87404], [-83.662127, 32.873667], [-83.661811, 32.873289], [-83.661499, 32.872916], [-83.661189, 32.872543], [-83.660878, 32.87217], [-83.660564, 32.871794], [-83.660254, 32.871426], [-83.659936, 32.871062], [-83.659604, 32.870705], [-83.659264, 32.870356], [-83.65891, 32.870015], [-83.658541, 32.869672], [-83.658176, 32.869336], [-83.657804, 32.868995], [-83.65744, 32.868661], [-83.657077, 32.868328], [-83.65671, 32.867992], [-83.656342, 32.867653], [-83.655974, 32.867315], [-83.655605, 32.866976], [-83.655236, 32.866638], [-83.654874, 32.866305], [-83.654512, 32.865973], [-83.65414, 32.865633], [-83.653772, 32.865294], [-83.653408, 32.864959], [-83.653044, 32.864623], [-83.652677, 32.864289], [-83.652305, 32.863955], [-83.651929, 32.863628], [-83.651522, 32.863335], [-83.651071, 32.86309], [-83.6506, 32.862869], [-83.650114, 32.862672], [-83.649624, 32.862469], [-83.649137, 32.862265], [-83.648674, 32.862039], [-83.648206, 32.861814], [-83.647733, 32.861594], [-83.647261, 32.861376], [-83.646791, 32.861148], [-83.646332, 32.860903], [-83.64589, 32.860642], [-83.64546, 32.860369]]}, "properties": {"filename": "osm-traces-page-28.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7048336", "track.name": "2023_04_14T15_41_00.460786Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (TOYOTA RAV4 2019-22).", "times": ["2023-04-14 15:45:53+00:00", "2023-04-14 15:45:55+00:00", "2023-04-14 15:45:56+00:00", "2023-04-14 15:45:57+00:00", "2023-04-14 15:45:59+00:00", "2023-04-14 15:46:00+00:00", "2023-04-14 15:46:02+00:00", "2023-04-14 15:46:03+00:00", "2023-04-14 15:46:04+00:00", "2023-04-14 15:46:06+00:00", "2023-04-14 15:46:07+00:00", "2023-04-14 15:46:09+00:00", "2023-04-14 15:46:10+00:00", "2023-04-14 15:46:12+00:00", "2023-04-14 15:46:13+00:00", "2023-04-14 15:46:15+00:00", "2023-04-14 15:46:16+00:00", "2023-04-14 15:46:17+00:00", "2023-04-14 15:46:19+00:00", "2023-04-14 15:46:20+00:00", "2023-04-14 15:46:22+00:00", "2023-04-14 15:46:23+00:00", "2023-04-14 15:46:25+00:00", "2023-04-14 15:46:26+00:00", "2023-04-14 15:46:28+00:00", "2023-04-14 15:46:29+00:00", "2023-04-14 15:46:31+00:00", "2023-04-14 15:46:32+00:00", "2023-04-14 15:46:34+00:00", "2023-04-14 15:46:35+00:00", "2023-04-14 15:46:37+00:00", "2023-04-14 15:46:39+00:00", "2023-04-14 15:46:40+00:00", "2023-04-14 15:46:42+00:00", "2023-04-14 15:46:44+00:00", "2023-04-14 15:46:45+00:00", "2023-04-14 15:46:47+00:00", "2023-04-14 15:46:49+00:00", "2023-04-14 15:46:50+00:00", "2023-04-14 15:46:52+00:00", "2023-04-14 15:46:54+00:00", "2023-04-14 15:46:56+00:00", "2023-04-14 15:46:58+00:00", "2023-04-14 15:47:00+00:00", "2023-04-14 15:47:02+00:00", "2023-04-14 15:47:04+00:00", "2023-04-14 15:47:06+00:00", "2023-04-14 15:47:09+00:00", "2023-04-14 15:47:12+00:00", "2023-04-14 15:47:15+00:00", "2023-04-14 15:47:19+00:00", "2023-04-14 15:47:22+00:00", "2023-04-14 15:47:25+00:00", "2023-04-14 15:47:29+00:00", "2023-04-14 15:47:32+00:00", "2023-04-14 15:47:34+00:00", "2023-04-14 15:47:37+00:00", "2023-04-14 15:47:40+00:00", "2023-04-14 15:47:42+00:00", "2023-04-14 15:47:45+00:00", "2023-04-14 15:47:48+00:00", "2023-04-14 15:47:51+00:00", "2023-04-14 15:47:55+00:00", "2023-04-14 15:47:59+00:00", "2023-04-14 15:48:02+00:00", "2023-04-14 15:48:05+00:00", "2023-04-14 15:48:09+00:00", "2023-04-14 15:48:14+00:00", "2023-04-14 15:48:18+00:00", "2023-04-14 15:48:21+00:00", "2023-04-14 15:48:25+00:00", "2023-04-14 15:48:28+00:00", "2023-04-14 15:48:32+00:00", "2023-04-14 15:48:37+00:00", "2023-04-14 15:48:41+00:00", "2023-04-14 15:48:45+00:00", "2023-04-14 15:48:51+00:00", "2023-04-14 15:48:56+00:00", "2023-04-14 15:49:01+00:00", "2023-04-14 15:49:06+00:00", "2023-04-14 15:49:11+00:00", "2023-04-14 15:49:20+00:00", "2023-04-14 15:49:36+00:00", "2023-04-14 15:49:43+00:00", "2023-04-14 15:49:48+00:00", "2023-04-14 15:49:53+00:00", "2023-04-14 15:49:59+00:00", "2023-04-14 15:50:05+00:00", "2023-04-14 15:50:11+00:00", "2023-04-14 15:50:17+00:00"]}}, {"type": "Feature", "id": "trace#30", "geometry": {"type": "LineString", "coordinates": [[-83.585672, 32.817708], [-83.586123, 32.817966], [-83.586572, 32.818224], [-83.587047, 32.818497], [-83.587493, 32.818753], [-83.587935, 32.819008], [-83.588399, 32.819274], [-83.58886, 32.819538], [-83.589319, 32.819802], [-83.589778, 32.820064], [-83.590238, 32.820327], [-83.590702, 32.820593], [-83.591167, 32.820861], [-83.591609, 32.821115], [-83.592054, 32.821369], [-83.592497, 32.821626], [-83.592944, 32.821876], [-83.593392, 32.822128], [-83.593837, 32.822381], [-83.59428, 32.822636], [-83.594743, 32.822904], [-83.595201, 32.823167], [-83.595654, 32.823425], [-83.596111, 32.823675], [-83.59657, 32.823924], [-83.597039, 32.824187], [-83.597494, 32.824446], [-83.597959, 32.824713], [-83.598402, 32.824968], [-83.598853, 32.825225], [-83.599309, 32.825484], [-83.599767, 32.825746], [-83.600226, 32.826014], [-83.600682, 32.826295], [-83.601129, 32.826591], [-83.601566, 32.826898], [-83.601968, 32.827197], [-83.602384, 32.827525], [-83.602766, 32.827842], [-83.603145, 32.828163], [-83.603528, 32.828484], [-83.603911, 32.828805], [-83.604294, 32.829124], [-83.604673, 32.829443], [-83.605076, 32.82978], [-83.605476, 32.830117], [-83.605878, 32.830451], [-83.60628, 32.830786], [-83.606682, 32.831122], [-83.607061, 32.83144], [-83.607444, 32.831761], [-83.60783, 32.832084], [-83.608218, 32.832409], [-83.608608, 32.832735], [-83.608998, 32.833063], [-83.609391, 32.83339], [-83.609782, 32.833718], [-83.610172, 32.834043], [-83.610559, 32.834366], [-83.610941, 32.834685], [-83.611343, 32.835022], [-83.611743, 32.835356], [-83.612142, 32.835689], [-83.61254, 32.836022], [-83.61294, 32.836355], [-83.613347, 32.836682], [-83.61377, 32.836993], [-83.614211, 32.837286], [-83.614669, 32.837563], [-83.615142, 32.837823], [-83.61563, 32.838064], [-83.616132, 32.838288], [-83.616611, 32.838493], [-83.617094, 32.838698], [-83.617579, 32.838907], [-83.618057, 32.839122], [-83.618549, 32.83936], [-83.619016, 32.839604], [-83.619486, 32.839868], [-83.619939, 32.840137], [-83.62038, 32.840418], [-83.620813, 32.840711], [-83.621245, 32.841022], [-83.621647, 32.84133], [-83.622047, 32.841654], [-83.622436, 32.841988], [-83.62281, 32.842331], [-83.623173, 32.842683], [-83.623524, 32.843045], [-83.623857, 32.843412], [-83.624171, 32.843797], [-83.624471, 32.844189], [-83.62476, 32.844586], [-83.625039, 32.844984], [-83.625301, 32.845381], [-83.625563, 32.845797], [-83.625817, 32.846206], [-83.626068, 32.846608], [-83.626332, 32.847025], [-83.626606, 32.847433], [-83.626909, 32.847828]]}, "properties": {"filename": "osm-traces-page-29.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/7035886", "track.name": "2023_04_13T18_21_41.316921Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (TOYOTA RAV4 2019-22).", "times": ["2023-04-13 18:22:52+00:00", "2023-04-13 18:22:54+00:00", "2023-04-13 18:22:56+00:00", "2023-04-13 18:22:57+00:00", "2023-04-13 18:22:59+00:00", "2023-04-13 18:23:01+00:00", "2023-04-13 18:23:03+00:00", "2023-04-13 18:23:04+00:00", "2023-04-13 18:23:06+00:00", "2023-04-13 18:23:08+00:00", "2023-04-13 18:23:10+00:00", "2023-04-13 18:23:12+00:00", "2023-04-13 18:23:13+00:00", "2023-04-13 18:23:15+00:00", "2023-04-13 18:23:17+00:00", "2023-04-13 18:23:19+00:00", "2023-04-13 18:23:20+00:00", "2023-04-13 18:23:22+00:00", "2023-04-13 18:23:24+00:00", "2023-04-13 18:23:25+00:00", "2023-04-13 18:23:27+00:00", "2023-04-13 18:23:29+00:00", "2023-04-13 18:23:31+00:00", "2023-04-13 18:23:33+00:00", "2023-04-13 18:23:34+00:00", "2023-04-13 18:23:36+00:00", "2023-04-13 18:23:38+00:00", "2023-04-13 18:23:40+00:00", "2023-04-13 18:23:41+00:00", "2023-04-13 18:23:43+00:00", "2023-04-13 18:23:44+00:00", "2023-04-13 18:23:46+00:00", "2023-04-13 18:23:48+00:00", "2023-04-13 18:23:49+00:00", "2023-04-13 18:23:51+00:00", "2023-04-13 18:23:52+00:00", "2023-04-13 18:23:54+00:00", "2023-04-13 18:23:55+00:00", "2023-04-13 18:23:57+00:00", "2023-04-13 18:23:58+00:00", "2023-04-13 18:24:00+00:00", "2023-04-13 18:24:01+00:00", "2023-04-13 18:24:03+00:00", "2023-04-13 18:24:04+00:00", "2023-04-13 18:24:06+00:00", "2023-04-13 18:24:08+00:00", "2023-04-13 18:24:09+00:00", "2023-04-13 18:24:11+00:00", "2023-04-13 18:24:12+00:00", "2023-04-13 18:24:14+00:00", "2023-04-13 18:24:15+00:00", "2023-04-13 18:24:17+00:00", "2023-04-13 18:24:18+00:00", "2023-04-13 18:24:20+00:00", "2023-04-13 18:24:21+00:00", "2023-04-13 18:24:23+00:00", "2023-04-13 18:24:24+00:00", "2023-04-13 18:24:26+00:00", "2023-04-13 18:24:27+00:00", "2023-04-13 18:24:29+00:00", "2023-04-13 18:24:31+00:00", "2023-04-13 18:24:32+00:00", "2023-04-13 18:24:34+00:00", "2023-04-13 18:24:35+00:00", "2023-04-13 18:24:37+00:00", "2023-04-13 18:24:39+00:00", "2023-04-13 18:24:40+00:00", "2023-04-13 18:24:42+00:00", "2023-04-13 18:24:43+00:00", "2023-04-13 18:24:45+00:00", "2023-04-13 18:24:47+00:00", "2023-04-13 18:24:48+00:00", "2023-04-13 18:24:50+00:00", "2023-04-13 18:24:51+00:00", "2023-04-13 18:24:53+00:00", "2023-04-13 18:24:54+00:00", "2023-04-13 18:24:56+00:00", "2023-04-13 18:24:57+00:00", "2023-04-13 18:24:59+00:00", "2023-04-13 18:25:01+00:00", "2023-04-13 18:25:02+00:00", "2023-04-13 18:25:04+00:00", "2023-04-13 18:25:06+00:00", "2023-04-13 18:25:07+00:00", "2023-04-13 18:25:09+00:00", "2023-04-13 18:25:11+00:00", "2023-04-13 18:25:12+00:00", "2023-04-13 18:25:14+00:00", "2023-04-13 18:25:15+00:00", "2023-04-13 18:25:17+00:00", "2023-04-13 18:25:19+00:00", "2023-04-13 18:25:20+00:00", "2023-04-13 18:25:22+00:00", "2023-04-13 18:25:23+00:00", "2023-04-13 18:25:25+00:00", "2023-04-13 18:25:27+00:00", "2023-04-13 18:25:28+00:00", "2023-04-13 18:25:30+00:00", "2023-04-13 18:25:32+00:00", "2023-04-13 18:25:34+00:00", "2023-04-13 18:25:36+00:00"]}}, {"type": "Feature", "id": "trace#31", "geometry": {"type": "LineString", "coordinates": [[-83.722412, 32.802702], [-83.722201, 32.802255], [-83.722, 32.801805], [-83.721813, 32.801349], [-83.721655, 32.800919], [-83.721504, 32.800454], [-83.721377, 32.800017], [-83.721259, 32.799546], [-83.721156, 32.799073], [-83.721071, 32.798597], [-83.721003, 32.798119], [-83.72095, 32.797669], [-83.720903, 32.797218], [-83.720857, 32.796768], [-83.72081, 32.796317], [-83.720763, 32.795869], [-83.720713, 32.79539], [-83.720664, 32.794912], [-83.720614, 32.794432], [-83.720565, 32.793954], [-83.720515, 32.793474], [-83.720469, 32.793026], [-83.720419, 32.792547], [-83.720372, 32.792099], [-83.720325, 32.79165], [-83.720274, 32.791169], [-83.720226, 32.790721], [-83.72018, 32.790271], [-83.720133, 32.789822], [-83.720087, 32.789373], [-83.720038, 32.788923], [-83.719982, 32.788476], [-83.71991, 32.78803], [-83.719807, 32.787557], [-83.719672, 32.787092], [-83.719506, 32.786637]]}, "properties": {"filename": "osm-traces-page-29.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/7003968", "track.name": "2023_04_11T14_39_53.748031Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2023.03.29 (KIA EV6 2022).", "times": ["2023-04-11 14:40:53+00:00", "2023-04-11 14:40:55+00:00", "2023-04-11 14:40:56+00:00", "2023-04-11 14:40:58+00:00", "2023-04-11 14:40:59+00:00", "2023-04-11 14:41:01+00:00", "2023-04-11 14:41:02+00:00", "2023-04-11 14:41:04+00:00", "2023-04-11 14:41:05+00:00", "2023-04-11 14:41:07+00:00", "2023-04-11 14:41:08+00:00", "2023-04-11 14:41:10+00:00", "2023-04-11 14:41:11+00:00", "2023-04-11 14:41:12+00:00", "2023-04-11 14:41:14+00:00", "2023-04-11 14:41:15+00:00", "2023-04-11 14:41:17+00:00", "2023-04-11 14:41:18+00:00", "2023-04-11 14:41:20+00:00", "2023-04-11 14:41:21+00:00", "2023-04-11 14:41:23+00:00", "2023-04-11 14:41:24+00:00", "2023-04-11 14:41:26+00:00", "2023-04-11 14:41:27+00:00", "2023-04-11 14:41:28+00:00", "2023-04-11 14:41:30+00:00", "2023-04-11 14:41:31+00:00", "2023-04-11 14:41:33+00:00", "2023-04-11 14:41:34+00:00", "2023-04-11 14:41:35+00:00", "2023-04-11 14:41:37+00:00", "2023-04-11 14:41:38+00:00", "2023-04-11 14:41:40+00:00", "2023-04-11 14:41:41+00:00", "2023-04-11 14:41:43+00:00", "2023-04-11 14:41:44+00:00"]}}, {"type": "Feature", "id": "trace#32", "geometry": {"type": "LineString", "coordinates": [[-83.711356, 32.774098], [-83.711595, 32.774512], [-83.711838, 32.774922], [-83.712089, 32.775334], [-83.712344, 32.77575], [-83.712589, 32.77615], [-83.712843, 32.776556], [-83.713103, 32.776973], [-83.713353, 32.777375], [-83.713606, 32.777783], [-83.713863, 32.778198], [-83.714124, 32.778621], [-83.714388, 32.779042], [-83.714649, 32.779455], [-83.714907, 32.779863], [-83.715163, 32.780269], [-83.71542, 32.780675], [-83.715677, 32.781081], [-83.71593, 32.781487], [-83.716183, 32.781887], [-83.716449, 32.782307], [-83.716711, 32.782721], [-83.716975, 32.783139], [-83.71724, 32.783555], [-83.717507, 32.783964], [-83.717766, 32.784363], [-83.718028, 32.784767], [-83.718284, 32.785164], [-83.718543, 32.785565], [-83.718783, 32.785969], [-83.719005, 32.786397], [-83.719193, 32.786835], [-83.719351, 32.78728], [-83.719472, 32.787743], [-83.719556, 32.788193], [-83.71962, 32.788655], [-83.719675, 32.789116], [-83.719728, 32.789575], [-83.719781, 32.79003], [-83.719834, 32.790484], [-83.719887, 32.790936], [-83.719938, 32.791409], [-83.719989, 32.79187], [-83.720041, 32.792329], [-83.720094, 32.792796], [-83.720145, 32.79325], [-83.720198, 32.793713], [-83.720252, 32.794186], [-83.720303, 32.794643], [-83.720355, 32.795109], [-83.720408, 32.795581], [-83.720459, 32.796032], [-83.720507, 32.796489], [-83.720557, 32.796949], [-83.720609, 32.797402], [-83.720675, 32.797878], [-83.720755, 32.798342], [-83.720848, 32.798789], [-83.720956, 32.799246], [-83.72108, 32.799693], [-83.721221, 32.800134], [-83.721373, 32.800573], [-83.72154, 32.801012], [-83.721721, 32.801448], [-83.721915, 32.801883], [-83.722118, 32.802325], [-83.722312, 32.802751]]}, "properties": {"filename": "osm-traces-page-30.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/6891982", "track.name": "2023_04_02T01_04_03.028806Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.12.16 (RAM 1500 5TH GEN).", "times": ["2023-04-02 01:12:32+00:00", "2023-04-02 01:12:34+00:00", "2023-04-02 01:12:35+00:00", "2023-04-02 01:12:37+00:00", "2023-04-02 01:12:39+00:00", "2023-04-02 01:12:40+00:00", "2023-04-02 01:12:42+00:00", "2023-04-02 01:12:44+00:00", "2023-04-02 01:12:45+00:00", "2023-04-02 01:12:47+00:00", "2023-04-02 01:12:48+00:00", "2023-04-02 01:12:50+00:00", "2023-04-02 01:12:51+00:00", "2023-04-02 01:12:53+00:00", "2023-04-02 01:12:54+00:00", "2023-04-02 01:12:56+00:00", "2023-04-02 01:12:57+00:00", "2023-04-02 01:12:59+00:00", "2023-04-02 01:13:00+00:00", "2023-04-02 01:13:02+00:00", "2023-04-02 01:13:03+00:00", "2023-04-02 01:13:05+00:00", "2023-04-02 01:13:06+00:00", "2023-04-02 01:13:08+00:00", "2023-04-02 01:13:10+00:00", "2023-04-02 01:13:11+00:00", "2023-04-02 01:13:13+00:00", "2023-04-02 01:13:15+00:00", "2023-04-02 01:13:16+00:00", "2023-04-02 01:13:18+00:00", "2023-04-02 01:13:20+00:00", "2023-04-02 01:13:22+00:00", "2023-04-02 01:13:23+00:00", "2023-04-02 01:13:25+00:00", "2023-04-02 01:13:27+00:00", "2023-04-02 01:13:29+00:00", "2023-04-02 01:13:30+00:00", "2023-04-02 01:13:32+00:00", "2023-04-02 01:13:34+00:00", "2023-04-02 01:13:35+00:00", "2023-04-02 01:13:37+00:00", "2023-04-02 01:13:39+00:00", "2023-04-02 01:13:41+00:00", "2023-04-02 01:13:43+00:00", "2023-04-02 01:13:44+00:00", "2023-04-02 01:13:46+00:00", "2023-04-02 01:13:48+00:00", "2023-04-02 01:13:49+00:00", "2023-04-02 01:13:51+00:00", "2023-04-02 01:13:53+00:00", "2023-04-02 01:13:54+00:00", "2023-04-02 01:13:56+00:00", "2023-04-02 01:13:57+00:00", "2023-04-02 01:13:59+00:00", "2023-04-02 01:14:00+00:00", "2023-04-02 01:14:02+00:00", "2023-04-02 01:14:03+00:00", "2023-04-02 01:14:05+00:00", "2023-04-02 01:14:07+00:00", "2023-04-02 01:14:08+00:00", "2023-04-02 01:14:10+00:00", "2023-04-02 01:14:12+00:00", "2023-04-02 01:14:14+00:00", "2023-04-02 01:14:15+00:00", "2023-04-02 01:14:17+00:00", "2023-04-02 01:14:19+00:00", "2023-04-02 01:14:20+00:00"]}}, {"type": "Feature", "id": "trace#33", "geometry": {"type": "LineString", "coordinates": [[-83.711328, 32.774109], [-83.711578, 32.774514], [-83.711832, 32.774918], [-83.712089, 32.775321], [-83.712346, 32.775724], [-83.7126, 32.776127], [-83.712865, 32.776548], [-83.713128, 32.776966], [-83.713392, 32.777383], [-83.713656, 32.777801], [-83.713917, 32.778214], [-83.714175, 32.778625], [-83.714433, 32.779033], [-83.71469, 32.779441], [-83.714948, 32.779848], [-83.715205, 32.780255], [-83.715461, 32.780662], [-83.715718, 32.781069], [-83.715976, 32.781479], [-83.716234, 32.781891], [-83.716495, 32.782306], [-83.71676, 32.782725], [-83.717024, 32.783145], [-83.71729, 32.783567], [-83.717541, 32.783966], [-83.717795, 32.784368], [-83.71805, 32.784771], [-83.718304, 32.785177], [-83.718555, 32.785583], [-83.718804, 32.786013], [-83.719015, 32.786454], [-83.719185, 32.786881], [-83.719342, 32.787342], [-83.719467, 32.787803], [-83.719559, 32.788266], [-83.719618, 32.788723], [-83.719667, 32.78918], [-83.719712, 32.789636], [-83.719757, 32.790096], [-83.719804, 32.790561], [-83.719853, 32.79103], [-83.719902, 32.791502], [-83.719951, 32.791979], [-83.719997, 32.792429], [-83.720041, 32.792879], [-83.72009, 32.793355], [-83.720139, 32.79383], [-83.720188, 32.794302], [-83.720237, 32.794771], [-83.720285, 32.795238], [-83.720332, 32.795702], [-83.72038, 32.796162], [-83.720428, 32.796622], [-83.720475, 32.797078], [-83.720524, 32.797531], [-83.720581, 32.797982], [-83.720655, 32.798436], [-83.720746, 32.798893], [-83.720855, 32.799348], [-83.720979, 32.799801], [-83.721115, 32.800248], [-83.721267, 32.800687], [-83.721433, 32.801119], [-83.721613, 32.801543], [-83.721817, 32.801983], [-83.722029, 32.802424], [-83.722229, 32.802841]]}, "properties": {"filename": "osm-traces-page-31.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/6800357", "track.name": "2023_03_23T19_25_30.845430Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (LEXUS RX 2016).", "times": ["2023-03-23 19:28:59+00:00", "2023-03-23 19:29:00+00:00", "2023-03-23 19:29:02+00:00", "2023-03-23 19:29:03+00:00", "2023-03-23 19:29:05+00:00", "2023-03-23 19:29:06+00:00", "2023-03-23 19:29:08+00:00", "2023-03-23 19:29:09+00:00", "2023-03-23 19:29:11+00:00", "2023-03-23 19:29:13+00:00", "2023-03-23 19:29:14+00:00", "2023-03-23 19:29:16+00:00", "2023-03-23 19:29:17+00:00", "2023-03-23 19:29:19+00:00", "2023-03-23 19:29:21+00:00", "2023-03-23 19:29:22+00:00", "2023-03-23 19:29:24+00:00", "2023-03-23 19:29:25+00:00", "2023-03-23 19:29:27+00:00", "2023-03-23 19:29:29+00:00", "2023-03-23 19:29:30+00:00", "2023-03-23 19:29:32+00:00", "2023-03-23 19:29:33+00:00", "2023-03-23 19:29:35+00:00", "2023-03-23 19:29:37+00:00", "2023-03-23 19:29:38+00:00", "2023-03-23 19:29:40+00:00", "2023-03-23 19:29:41+00:00", "2023-03-23 19:29:43+00:00", "2023-03-23 19:29:44+00:00", "2023-03-23 19:29:46+00:00", "2023-03-23 19:29:47+00:00", "2023-03-23 19:29:49+00:00", "2023-03-23 19:29:50+00:00", "2023-03-23 19:29:52+00:00", "2023-03-23 19:29:54+00:00", "2023-03-23 19:29:55+00:00", "2023-03-23 19:29:57+00:00", "2023-03-23 19:29:58+00:00", "2023-03-23 19:30:00+00:00", "2023-03-23 19:30:02+00:00", "2023-03-23 19:30:03+00:00", "2023-03-23 19:30:05+00:00", "2023-03-23 19:30:06+00:00", "2023-03-23 19:30:08+00:00", "2023-03-23 19:30:09+00:00", "2023-03-23 19:30:11+00:00", "2023-03-23 19:30:13+00:00", "2023-03-23 19:30:14+00:00", "2023-03-23 19:30:16+00:00", "2023-03-23 19:30:17+00:00", "2023-03-23 19:30:19+00:00", "2023-03-23 19:30:21+00:00", "2023-03-23 19:30:22+00:00", "2023-03-23 19:30:24+00:00", "2023-03-23 19:30:25+00:00", "2023-03-23 19:30:27+00:00", "2023-03-23 19:30:29+00:00", "2023-03-23 19:30:30+00:00", "2023-03-23 19:30:32+00:00", "2023-03-23 19:30:33+00:00", "2023-03-23 19:30:35+00:00", "2023-03-23 19:30:37+00:00", "2023-03-23 19:30:38+00:00", "2023-03-23 19:30:40+00:00", "2023-03-23 19:30:42+00:00", "2023-03-23 19:30:43+00:00"]}}, {"type": "Feature", "id": "trace#34", "geometry": {"type": "LineString", "coordinates": [[-83.712946, 32.776707], [-83.713199, 32.777106], [-83.713452, 32.777505], [-83.713705, 32.777905], [-83.713957, 32.778304], [-83.714209, 32.778706], [-83.714463, 32.779109], [-83.714716, 32.77951], [-83.714969, 32.779912], [-83.715221, 32.780313], [-83.715473, 32.780715], [-83.715725, 32.781116], [-83.715977, 32.781518], [-83.716229, 32.781919], [-83.716483, 32.782322], [-83.716736, 32.782726], [-83.716989, 32.783128], [-83.717242, 32.783529], [-83.717495, 32.783933], [-83.717751, 32.784338], [-83.718007, 32.784745], [-83.718263, 32.785154], [-83.718521, 32.785566], [-83.718785, 32.785983], [-83.719028, 32.786414], [-83.719225, 32.78686], [-83.719386, 32.787313], [-83.719513, 32.787771], [-83.719606, 32.788233], [-83.719667, 32.788697], [-83.719719, 32.789165], [-83.719768, 32.789615], [-83.719815, 32.790078], [-83.719865, 32.790547], [-83.719915, 32.791019], [-83.719963, 32.791491], [-83.720013, 32.791964], [-83.720062, 32.792433], [-83.720112, 32.792902], [-83.720162, 32.793369], [-83.720211, 32.793837], [-83.72026, 32.794305], [-83.72031, 32.794775], [-83.72036, 32.795245], [-83.720409, 32.795714], [-83.720459, 32.796184], [-83.720505, 32.796655], [-83.72054, 32.797124], [-83.720577, 32.797593], [-83.720638, 32.798063], [-83.720718, 32.798534], [-83.720815, 32.799005], [-83.720931, 32.79947], [-83.721062, 32.799932], [-83.721209, 32.800392], [-83.721374, 32.800847], [-83.721556, 32.801298], [-83.721754, 32.801744], [-83.721964, 32.802187], [-83.722175, 32.802629], [-83.722387, 32.803067]]}, "properties": {"filename": "osm-traces-page-31.gpx", "track.number": 4, "track.link": "/user/sunnypilot/traces/6729040", "track.name": "2023_03_20T02_26_27.597848Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (TOYOTA COROLLA TSS2 2019).", "times": ["2023-03-20 02:26:20+00:00", "2023-03-20 02:26:22+00:00", "2023-03-20 02:26:23+00:00", "2023-03-20 02:26:25+00:00", "2023-03-20 02:26:27+00:00", "2023-03-20 02:26:28+00:00", "2023-03-20 02:26:30+00:00", "2023-03-20 02:26:31+00:00", "2023-03-20 02:26:33+00:00", "2023-03-20 02:26:35+00:00", "2023-03-20 02:26:36+00:00", "2023-03-20 02:26:38+00:00", "2023-03-20 02:26:39+00:00", "2023-03-20 02:26:41+00:00", "2023-03-20 02:26:43+00:00", "2023-03-20 02:26:44+00:00", "2023-03-20 02:26:46+00:00", "2023-03-20 02:26:47+00:00", "2023-03-20 02:26:49+00:00", "2023-03-20 02:26:51+00:00", "2023-03-20 02:26:52+00:00", "2023-03-20 02:26:54+00:00", "2023-03-20 02:26:55+00:00", "2023-03-20 02:26:57+00:00", "2023-03-20 02:26:59+00:00", "2023-03-20 02:27:00+00:00", "2023-03-20 02:27:02+00:00", "2023-03-20 02:27:03+00:00", "2023-03-20 02:27:05+00:00", "2023-03-20 02:27:07+00:00", "2023-03-20 02:27:08+00:00", "2023-03-20 02:27:10+00:00", "2023-03-20 02:27:11+00:00", "2023-03-20 02:27:13+00:00", "2023-03-20 02:27:14+00:00", "2023-03-20 02:27:16+00:00", "2023-03-20 02:27:17+00:00", "2023-03-20 02:27:19+00:00", "2023-03-20 02:27:20+00:00", "2023-03-20 02:27:22+00:00", "2023-03-20 02:27:23+00:00", "2023-03-20 02:27:25+00:00", "2023-03-20 02:27:26+00:00", "2023-03-20 02:27:28+00:00", "2023-03-20 02:27:29+00:00", "2023-03-20 02:27:31+00:00", "2023-03-20 02:27:32+00:00", "2023-03-20 02:27:34+00:00", "2023-03-20 02:27:35+00:00", "2023-03-20 02:27:37+00:00", "2023-03-20 02:27:38+00:00", "2023-03-20 02:27:40+00:00", "2023-03-20 02:27:41+00:00", "2023-03-20 02:27:43+00:00", "2023-03-20 02:27:44+00:00", "2023-03-20 02:27:46+00:00", "2023-03-20 02:27:47+00:00", "2023-03-20 02:27:49+00:00", "2023-03-20 02:27:50+00:00", "2023-03-20 02:27:52+00:00", "2023-03-20 02:27:53+00:00"]}}, {"type": "Feature", "id": "trace#35", "geometry": {"type": "LineString", "coordinates": [[-83.711309, 32.774121], [-83.711551, 32.774525], [-83.711803, 32.774931], [-83.712058, 32.775339], [-83.712317, 32.775748], [-83.712575, 32.77616], [-83.712832, 32.776572], [-83.713092, 32.776983], [-83.713348, 32.777392], [-83.713605, 32.777797], [-83.713861, 32.778199], [-83.714116, 32.778602], [-83.71437, 32.779006], [-83.714624, 32.77941], [-83.71488, 32.779815]]}, "properties": {"filename": "osm-traces-page-31.gpx", "track.number": 7, "track.link": "/user/sunnypilot/traces/6708102", "track.name": "2023_03_18T20_08_22.524042Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ODYSSEY 2018-21).", "times": ["2023-03-18 20:08:59+00:00", "2023-03-18 20:09:00+00:00", "2023-03-18 20:09:02+00:00", "2023-03-18 20:09:03+00:00", "2023-03-18 20:09:04+00:00", "2023-03-18 20:09:06+00:00", "2023-03-18 20:09:07+00:00", "2023-03-18 20:09:09+00:00", "2023-03-18 20:09:10+00:00", "2023-03-18 20:09:11+00:00", "2023-03-18 20:09:13+00:00", "2023-03-18 20:09:14+00:00", "2023-03-18 20:09:16+00:00", "2023-03-18 20:09:17+00:00", "2023-03-18 20:09:18+00:00"]}}, {"type": "Feature", "id": "trace#36", "geometry": {"type": "LineString", "coordinates": [[-83.670959, 32.884507], [-83.671277, 32.884887], [-83.671589, 32.885266], [-83.671893, 32.885642], [-83.672211, 32.886032], [-83.672516, 32.886403], [-83.672822, 32.886779], [-83.67313, 32.887162], [-83.673448, 32.887545], [-83.67377, 32.88793], [-83.674094, 32.888312], [-83.674415, 32.888703], [-83.67472, 32.88908], [-83.675031, 32.889457], [-83.675346, 32.889834], [-83.675653, 32.890209], [-83.675957, 32.890585], [-83.676258, 32.890967]]}, "properties": {"filename": "osm-traces-page-33.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/6451979", "track.name": "2023_02_24T21_59_41.119077Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI SANTA FE 2019).", "times": ["2023-02-24 21:58:01+00:00", "2023-02-24 21:58:03+00:00", "2023-02-24 21:58:05+00:00", "2023-02-24 21:58:07+00:00", "2023-02-24 21:58:09+00:00", "2023-02-24 21:58:11+00:00", "2023-02-24 21:58:13+00:00", "2023-02-24 21:58:15+00:00", "2023-02-24 21:58:17+00:00", "2023-02-24 21:58:19+00:00", "2023-02-24 21:58:21+00:00", "2023-02-24 21:58:22+00:00", "2023-02-24 21:58:24+00:00", "2023-02-24 21:58:26+00:00", "2023-02-24 21:58:28+00:00", "2023-02-24 21:58:30+00:00", "2023-02-24 21:58:31+00:00", "2023-02-24 21:58:33+00:00"]}}, {"type": "Feature", "id": "trace#37", "geometry": {"type": "LineString", "coordinates": [[-83.638452, 32.857209], [-83.638877, 32.857483], [-83.639305, 32.857759], [-83.639731, 32.858035], [-83.640169, 32.858309], [-83.640587, 32.858595], [-83.64099, 32.858893], [-83.641391, 32.859195], [-83.641816, 32.859509], [-83.642254, 32.859774], [-83.642725, 32.860001], [-83.643218, 32.860201], [-83.643706, 32.860408], [-83.644195, 32.860613], [-83.644688, 32.860808], [-83.64519, 32.860989], [-83.64569, 32.861166], [-83.646188, 32.861356], [-83.646674, 32.861546], [-83.647176, 32.861749], [-83.647663, 32.861945], [-83.648157, 32.862142], [-83.648656, 32.86234], [-83.64915, 32.862535], [-83.649654, 32.862733], [-83.650145, 32.862922], [-83.650634, 32.863121], [-83.651112, 32.863352], [-83.651562, 32.863619], [-83.651974, 32.863918], [-83.652365, 32.864253], [-83.652735, 32.864591], [-83.653096, 32.864925], [-83.653467, 32.865269], [-83.653844, 32.865618], [-83.654221, 32.865964], [-83.654593, 32.866309], [-83.654966, 32.866654], [-83.65536, 32.867019], [-83.655739, 32.867368], [-83.656119, 32.867718], [-83.656492, 32.868062], [-83.656853, 32.868395], [-83.657222, 32.868739], [-83.657585, 32.869075], [-83.657962, 32.869421], [-83.658336, 32.869762], [-83.658705, 32.870104], [-83.65906, 32.870452], [-83.65941, 32.870808], [-83.659754, 32.87118], [-83.660081, 32.871545], [-83.660403, 32.871923], [-83.660713, 32.872297], [-83.661033, 32.872686], [-83.661347, 32.873064], [-83.661659, 32.873445], [-83.661972, 32.873827], [-83.662288, 32.874209], [-83.662602, 32.874584], [-83.662926, 32.874971], [-83.66323, 32.875344], [-83.663539, 32.875722], [-83.663857, 32.876101], [-83.664179, 32.876479], [-83.6645, 32.876857], [-83.664807, 32.877228], [-83.665121, 32.877607], [-83.665446, 32.877989], [-83.665774, 32.878371], [-83.666101, 32.878747], [-83.666429, 32.879126], [-83.666754, 32.879509], [-83.667082, 32.879892], [-83.667412, 32.880276], [-83.667746, 32.88066], [-83.668074, 32.881044], [-83.668389, 32.881417], [-83.668714, 32.881802], [-83.66903, 32.882185], [-83.669336, 32.882564], [-83.669656, 32.88295], [-83.669974, 32.883331], [-83.670286, 32.88371], [-83.670605, 32.88409], [-83.670926, 32.884468]]}, "properties": {"filename": "osm-traces-page-34.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/6451978", "track.name": "2023_02_24T21_49_41.119706Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI SANTA FE 2019).", "times": ["2023-02-24 21:54:12+00:00", "2023-02-24 21:54:21+00:00", "2023-02-24 21:54:39+00:00", "2023-02-24 21:54:49+00:00", "2023-02-24 21:55:01+00:00", "2023-02-24 21:55:07+00:00", "2023-02-24 21:55:12+00:00", "2023-02-24 21:55:16+00:00", "2023-02-24 21:55:20+00:00", "2023-02-24 21:55:23+00:00", "2023-02-24 21:55:27+00:00", "2023-02-24 21:55:30+00:00", "2023-02-24 21:55:34+00:00", "2023-02-24 21:55:38+00:00", "2023-02-24 21:55:41+00:00", "2023-02-24 21:55:44+00:00", "2023-02-24 21:55:47+00:00", "2023-02-24 21:55:50+00:00", "2023-02-24 21:55:52+00:00", "2023-02-24 21:55:54+00:00", "2023-02-24 21:55:57+00:00", "2023-02-24 21:55:59+00:00", "2023-02-24 21:56:01+00:00", "2023-02-24 21:56:04+00:00", "2023-02-24 21:56:06+00:00", "2023-02-24 21:56:08+00:00", "2023-02-24 21:56:11+00:00", "2023-02-24 21:56:13+00:00", "2023-02-24 21:56:15+00:00", "2023-02-24 21:56:17+00:00", "2023-02-24 21:56:19+00:00", "2023-02-24 21:56:21+00:00", "2023-02-24 21:56:23+00:00", "2023-02-24 21:56:25+00:00", "2023-02-24 21:56:27+00:00", "2023-02-24 21:56:29+00:00", "2023-02-24 21:56:31+00:00", "2023-02-24 21:56:33+00:00", "2023-02-24 21:56:35+00:00", "2023-02-24 21:56:37+00:00", "2023-02-24 21:56:39+00:00", "2023-02-24 21:56:40+00:00", "2023-02-24 21:56:42+00:00", "2023-02-24 21:56:44+00:00", "2023-02-24 21:56:46+00:00", "2023-02-24 21:56:48+00:00", "2023-02-24 21:56:51+00:00", "2023-02-24 21:56:53+00:00", "2023-02-24 21:56:55+00:00", "2023-02-24 21:56:57+00:00", "2023-02-24 21:56:59+00:00", "2023-02-24 21:57:01+00:00", "2023-02-24 21:57:03+00:00", "2023-02-24 21:57:05+00:00", "2023-02-24 21:57:07+00:00", "2023-02-24 21:57:09+00:00", "2023-02-24 21:57:10+00:00", "2023-02-24 21:57:12+00:00", "2023-02-24 21:57:14+00:00", "2023-02-24 21:57:16+00:00", "2023-02-24 21:57:18+00:00", "2023-02-24 21:57:19+00:00", "2023-02-24 21:57:21+00:00", "2023-02-24 21:57:23+00:00", "2023-02-24 21:57:24+00:00", "2023-02-24 21:57:26+00:00", "2023-02-24 21:57:28+00:00", "2023-02-24 21:57:29+00:00", "2023-02-24 21:57:31+00:00", "2023-02-24 21:57:33+00:00", "2023-02-24 21:57:34+00:00", "2023-02-24 21:57:36+00:00", "2023-02-24 21:57:38+00:00", "2023-02-24 21:57:40+00:00", "2023-02-24 21:57:41+00:00", "2023-02-24 21:57:43+00:00", "2023-02-24 21:57:45+00:00", "2023-02-24 21:57:46+00:00", "2023-02-24 21:57:48+00:00", "2023-02-24 21:57:50+00:00", "2023-02-24 21:57:52+00:00", "2023-02-24 21:57:54+00:00", "2023-02-24 21:57:56+00:00", "2023-02-24 21:57:58+00:00", "2023-02-24 21:57:59+00:00", "2023-02-24 21:58:01+00:00"]}}, {"type": "Feature", "id": "trace#38", "geometry": {"type": "LineString", "coordinates": [[-83.585689, 32.81778], [-83.586157, 32.818049], [-83.586628, 32.818317], [-83.587096, 32.818584], [-83.587567, 32.818852], [-83.588067, 32.819136], [-83.588537, 32.819403], [-83.589004, 32.81967], [-83.589469, 32.819934], [-83.589938, 32.820203], [-83.590405, 32.820469], [-83.590902, 32.820757], [-83.591369, 32.821025], [-83.591835, 32.821292], [-83.592303, 32.821559], [-83.592771, 32.821826], [-83.593237, 32.822094], [-83.593703, 32.822364], [-83.594169, 32.822632], [-83.594665, 32.822916]]}, "properties": {"filename": "osm-traces-page-34.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/6451976", "track.name": "2023_02_24T21_39_41.127717Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI SANTA FE 2019).", "times": ["2023-02-24 21:47:31+00:00", "2023-02-24 21:47:33+00:00", "2023-02-24 21:47:34+00:00", "2023-02-24 21:47:36+00:00", "2023-02-24 21:47:37+00:00", "2023-02-24 21:47:39+00:00", "2023-02-24 21:47:40+00:00", "2023-02-24 21:47:42+00:00", "2023-02-24 21:47:44+00:00", "2023-02-24 21:47:45+00:00", "2023-02-24 21:47:47+00:00", "2023-02-24 21:47:48+00:00", "2023-02-24 21:47:50+00:00", "2023-02-24 21:47:51+00:00", "2023-02-24 21:47:53+00:00", "2023-02-24 21:47:54+00:00", "2023-02-24 21:47:56+00:00", "2023-02-24 21:47:57+00:00", "2023-02-24 21:47:59+00:00", "2023-02-24 21:48:00+00:00"]}}, {"type": "Feature", "id": "trace#39", "geometry": {"type": "LineString", "coordinates": [[-83.676632, 32.891005], [-83.676324, 32.89062], [-83.676012, 32.890231], [-83.675694, 32.889838], [-83.675372, 32.889443], [-83.675052, 32.88905], [-83.67473, 32.888658], [-83.674405, 32.888266], [-83.67408, 32.887877], [-83.673754, 32.887486], [-83.673431, 32.887092], [-83.673108, 32.886696], [-83.672802, 32.886326], [-83.672489, 32.885961], [-83.672173, 32.885593], [-83.671858, 32.885226], [-83.671552, 32.884857], [-83.671233, 32.884462], [-83.670911, 32.884068], [-83.670585, 32.883679], [-83.670257, 32.883289], [-83.669952, 32.882919], [-83.669648, 32.882547], [-83.66934, 32.882176], [-83.669029, 32.881805], [-83.668718, 32.881435], [-83.668408, 32.881064], [-83.668099, 32.880691], [-83.667768, 32.880305], [-83.667432, 32.879921], [-83.667098, 32.879542], [-83.666774, 32.879165], [-83.666452, 32.878789], [-83.666129, 32.878415], [-83.665811, 32.878046], [-83.665495, 32.877676], [-83.665181, 32.877305], [-83.664871, 32.876933], [-83.664563, 32.876557], [-83.664254, 32.87618], [-83.663939, 32.875806], [-83.663628, 32.875435], [-83.663321, 32.875064], [-83.662994, 32.874676], [-83.662671, 32.874291], [-83.662353, 32.873906], [-83.662032, 32.873518], [-83.661723, 32.873149], [-83.661411, 32.872775], [-83.661096, 32.872396], [-83.660782, 32.872013], [-83.660465, 32.871631], [-83.660139, 32.871251], [-83.659804, 32.870872], [-83.659465, 32.87052], [-83.659104, 32.870169], [-83.658725, 32.869815], [-83.658349, 32.869464], [-83.657974, 32.869119], [-83.657597, 32.868777], [-83.657223, 32.868435], [-83.656848, 32.868092], [-83.656475, 32.867751], [-83.656104, 32.867412], [-83.655721, 32.86706], [-83.655343, 32.866711], [-83.654969, 32.866369], [-83.654599, 32.86603], [-83.65423, 32.865691], [-83.653861, 32.86535], [-83.65349, 32.86501], [-83.653121, 32.864672], [-83.652756, 32.864337], [-83.652375, 32.863991], [-83.651992, 32.863674], [-83.651572, 32.863379], [-83.651119, 32.863117], [-83.650631, 32.862886], [-83.650131, 32.86268], [-83.649641, 32.862486], [-83.649141, 32.862277], [-83.648674, 32.86205], [-83.648205, 32.86182], [-83.647726, 32.861603], [-83.647252, 32.861383], [-83.646777, 32.861155], [-83.646309, 32.860905], [-83.645851, 32.860632], [-83.64542, 32.860362], [-83.644988, 32.860085], [-83.644553, 32.85981], [-83.644103, 32.859524], [-83.64366, 32.859238], [-83.643218, 32.858955], [-83.642777, 32.858672], [-83.642348, 32.858381], [-83.641933, 32.858081], [-83.641518, 32.857782], [-83.641102, 32.857493], [-83.640672, 32.857209], [-83.640258, 32.856923]]}, "properties": {"filename": "osm-traces-page-34.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/6451264", "track.name": "2023_01_29T20_47_38.473074Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI SANTA FE 2019).", "times": ["2023-01-29 20:48:53+00:00", "2023-01-29 20:48:54+00:00", "2023-01-29 20:48:56+00:00", "2023-01-29 20:48:58+00:00", "2023-01-29 20:48:59+00:00", "2023-01-29 20:49:01+00:00", "2023-01-29 20:49:02+00:00", "2023-01-29 20:49:04+00:00", "2023-01-29 20:49:06+00:00", "2023-01-29 20:49:07+00:00", "2023-01-29 20:49:09+00:00", "2023-01-29 20:49:10+00:00", "2023-01-29 20:49:12+00:00", "2023-01-29 20:49:13+00:00", "2023-01-29 20:49:15+00:00", "2023-01-29 20:49:16+00:00", "2023-01-29 20:49:18+00:00", "2023-01-29 20:49:20+00:00", "2023-01-29 20:49:21+00:00", "2023-01-29 20:49:23+00:00", "2023-01-29 20:49:24+00:00", "2023-01-29 20:49:26+00:00", "2023-01-29 20:49:27+00:00", "2023-01-29 20:49:29+00:00", "2023-01-29 20:49:30+00:00", "2023-01-29 20:49:32+00:00", "2023-01-29 20:49:33+00:00", "2023-01-29 20:49:35+00:00", "2023-01-29 20:49:36+00:00", "2023-01-29 20:49:38+00:00", "2023-01-29 20:49:40+00:00", "2023-01-29 20:49:41+00:00", "2023-01-29 20:49:43+00:00", "2023-01-29 20:49:44+00:00", "2023-01-29 20:49:46+00:00", "2023-01-29 20:49:48+00:00", "2023-01-29 20:49:49+00:00", "2023-01-29 20:49:51+00:00", "2023-01-29 20:49:52+00:00", "2023-01-29 20:49:54+00:00", "2023-01-29 20:49:56+00:00", "2023-01-29 20:49:57+00:00", "2023-01-29 20:49:59+00:00", "2023-01-29 20:50:01+00:00", "2023-01-29 20:50:02+00:00", "2023-01-29 20:50:04+00:00", "2023-01-29 20:50:06+00:00", "2023-01-29 20:50:07+00:00", "2023-01-29 20:50:09+00:00", "2023-01-29 20:50:10+00:00", "2023-01-29 20:50:12+00:00", "2023-01-29 20:50:14+00:00", "2023-01-29 20:50:15+00:00", "2023-01-29 20:50:17+00:00", "2023-01-29 20:50:18+00:00", "2023-01-29 20:50:20+00:00", "2023-01-29 20:50:22+00:00", "2023-01-29 20:50:23+00:00", "2023-01-29 20:50:25+00:00", "2023-01-29 20:50:26+00:00", "2023-01-29 20:50:28+00:00", "2023-01-29 20:50:30+00:00", "2023-01-29 20:50:31+00:00", "2023-01-29 20:50:33+00:00", "2023-01-29 20:50:35+00:00", "2023-01-29 20:50:36+00:00", "2023-01-29 20:50:38+00:00", "2023-01-29 20:50:40+00:00", "2023-01-29 20:50:41+00:00", "2023-01-29 20:50:43+00:00", "2023-01-29 20:50:45+00:00", "2023-01-29 20:50:46+00:00", "2023-01-29 20:50:48+00:00", "2023-01-29 20:50:50+00:00", "2023-01-29 20:50:52+00:00", "2023-01-29 20:50:54+00:00", "2023-01-29 20:50:56+00:00", "2023-01-29 20:50:58+00:00", "2023-01-29 20:51:00+00:00", "2023-01-29 20:51:02+00:00", "2023-01-29 20:51:04+00:00", "2023-01-29 20:51:06+00:00", "2023-01-29 20:51:08+00:00", "2023-01-29 20:51:10+00:00", "2023-01-29 20:51:11+00:00", "2023-01-29 20:51:13+00:00", "2023-01-29 20:51:15+00:00", "2023-01-29 20:51:17+00:00", "2023-01-29 20:51:19+00:00", "2023-01-29 20:51:21+00:00", "2023-01-29 20:51:23+00:00", "2023-01-29 20:51:24+00:00", "2023-01-29 20:51:26+00:00", "2023-01-29 20:51:28+00:00", "2023-01-29 20:51:30+00:00", "2023-01-29 20:51:32+00:00", "2023-01-29 20:51:34+00:00", "2023-01-29 20:51:36+00:00", "2023-01-29 20:51:38+00:00", "2023-01-29 20:51:40+00:00", "2023-01-29 20:51:42+00:00"]}}, {"type": "Feature", "id": "trace#40", "geometry": {"type": "LineString", "coordinates": [[-83.631479, 32.852259], [-83.631848, 32.852588], [-83.632225, 32.852922], [-83.632602, 32.853252], [-83.632994, 32.853584], [-83.633392, 32.853895], [-83.633816, 32.85419], [-83.634242, 32.854478], [-83.634667, 32.854764], [-83.635094, 32.855052], [-83.635526, 32.855342], [-83.635954, 32.855625], [-83.636387, 32.855902], [-83.636819, 32.856172], [-83.637254, 32.856443], [-83.637693, 32.856719], [-83.638126, 32.856991], [-83.638568, 32.857268], [-83.63901, 32.857547], [-83.639443, 32.857818], [-83.639882, 32.858096], [-83.64031, 32.858375], [-83.640725, 32.858674], [-83.641142, 32.858984], [-83.641553, 32.859287], [-83.641979, 32.859566], [-83.642435, 32.85981], [-83.642928, 32.860026], [-83.643409, 32.860233], [-83.643897, 32.860441], [-83.644395, 32.860645], [-83.6449, 32.860838], [-83.6454, 32.861021], [-83.645904, 32.861209], [-83.646391, 32.8614], [-83.646884, 32.861596], [-83.647379, 32.861797], [-83.647882, 32.862001], [-83.648384, 32.862202], [-83.648876, 32.862384], [-83.649366, 32.862566], [-83.649853, 32.862759], [-83.650343, 32.862958], [-83.650824, 32.863175], [-83.651281, 32.863424], [-83.651717, 32.863713], [-83.652114, 32.864028], [-83.652505, 32.864373], [-83.652886, 32.86472], [-83.653265, 32.865063], [-83.653634, 32.865398], [-83.653997, 32.86573], [-83.654376, 32.866078], [-83.654738, 32.866411], [-83.655103, 32.866746], [-83.65547, 32.867083], [-83.655837, 32.86742], [-83.6562, 32.867752], [-83.656581, 32.8681], [-83.656953, 32.868441], [-83.657321, 32.868778], [-83.657691, 32.869116], [-83.658066, 32.869459], [-83.658447, 32.869807], [-83.65882, 32.870157], [-83.659166, 32.8705], [-83.659504, 32.870855], [-83.659836, 32.871219], [-83.660166, 32.871598], [-83.660476, 32.871965], [-83.660783, 32.872334], [-83.661107, 32.872725], [-83.661432, 32.873115], [-83.661754, 32.873501], [-83.662078, 32.873888], [-83.662402, 32.874276], [-83.662728, 32.874665], [-83.663035, 32.875034], [-83.663345, 32.875406], [-83.663657, 32.875779], [-83.663971, 32.876153], [-83.664285, 32.876529], [-83.664594, 32.8769], [-83.664919, 32.87729], [-83.665241, 32.877672], [-83.66556, 32.878048], [-83.665878, 32.878419], [-83.666197, 32.87879], [-83.666524, 32.879171], [-83.666856, 32.879557], [-83.667185, 32.879939], [-83.667513, 32.880321], [-83.667844, 32.880705], [-83.668173, 32.881092], [-83.668495, 32.881478], [-83.668818, 32.881867], [-83.66914, 32.882253], [-83.669459, 32.882635], [-83.669776, 32.883016], [-83.670084, 32.88339], [-83.670391, 32.88376]]}, "properties": {"filename": "osm-traces-page-36.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/6450595", "track.name": "2023_01_14T16_46_04.850118Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI SANTA FE 2019).", "times": ["2023-01-14 16:45:48+00:00", "2023-01-14 16:45:51+00:00", "2023-01-14 16:45:53+00:00", "2023-01-14 16:45:55+00:00", "2023-01-14 16:45:58+00:00", "2023-01-14 16:46:00+00:00", "2023-01-14 16:46:02+00:00", "2023-01-14 16:46:05+00:00", "2023-01-14 16:46:07+00:00", "2023-01-14 16:46:10+00:00", "2023-01-14 16:46:13+00:00", "2023-01-14 16:46:15+00:00", "2023-01-14 16:46:18+00:00", "2023-01-14 16:46:21+00:00", "2023-01-14 16:46:23+00:00", "2023-01-14 16:46:26+00:00", "2023-01-14 16:46:29+00:00", "2023-01-14 16:46:32+00:00", "2023-01-14 16:46:34+00:00", "2023-01-14 16:46:36+00:00", "2023-01-14 16:46:39+00:00", "2023-01-14 16:46:41+00:00", "2023-01-14 16:46:43+00:00", "2023-01-14 16:46:45+00:00", "2023-01-14 16:46:47+00:00", "2023-01-14 16:46:50+00:00", "2023-01-14 16:46:52+00:00", "2023-01-14 16:46:54+00:00", "2023-01-14 16:46:56+00:00", "2023-01-14 16:46:58+00:00", "2023-01-14 16:47:00+00:00", "2023-01-14 16:47:02+00:00", "2023-01-14 16:47:05+00:00", "2023-01-14 16:47:07+00:00", "2023-01-14 16:47:09+00:00", "2023-01-14 16:47:11+00:00", "2023-01-14 16:47:13+00:00", "2023-01-14 16:47:15+00:00", "2023-01-14 16:47:17+00:00", "2023-01-14 16:47:19+00:00", "2023-01-14 16:47:20+00:00", "2023-01-14 16:47:22+00:00", "2023-01-14 16:47:24+00:00", "2023-01-14 16:47:26+00:00", "2023-01-14 16:47:28+00:00", "2023-01-14 16:47:30+00:00", "2023-01-14 16:47:32+00:00", "2023-01-14 16:47:34+00:00", "2023-01-14 16:47:35+00:00", "2023-01-14 16:47:37+00:00", "2023-01-14 16:47:39+00:00", "2023-01-14 16:47:40+00:00", "2023-01-14 16:47:42+00:00", "2023-01-14 16:47:44+00:00", "2023-01-14 16:47:46+00:00", "2023-01-14 16:47:47+00:00", "2023-01-14 16:47:49+00:00", "2023-01-14 16:47:51+00:00", "2023-01-14 16:47:52+00:00", "2023-01-14 16:47:54+00:00", "2023-01-14 16:47:56+00:00", "2023-01-14 16:47:58+00:00", "2023-01-14 16:48:00+00:00", "2023-01-14 16:48:01+00:00", "2023-01-14 16:48:03+00:00", "2023-01-14 16:48:05+00:00", "2023-01-14 16:48:07+00:00", "2023-01-14 16:48:08+00:00", "2023-01-14 16:48:10+00:00", "2023-01-14 16:48:12+00:00", "2023-01-14 16:48:13+00:00", "2023-01-14 16:48:15+00:00", "2023-01-14 16:48:17+00:00", "2023-01-14 16:48:18+00:00", "2023-01-14 16:48:20+00:00", "2023-01-14 16:48:22+00:00", "2023-01-14 16:48:23+00:00", "2023-01-14 16:48:25+00:00", "2023-01-14 16:48:27+00:00", "2023-01-14 16:48:28+00:00", "2023-01-14 16:48:30+00:00", "2023-01-14 16:48:31+00:00", "2023-01-14 16:48:33+00:00", "2023-01-14 16:48:35+00:00", "2023-01-14 16:48:36+00:00", "2023-01-14 16:48:38+00:00", "2023-01-14 16:48:40+00:00", "2023-01-14 16:48:42+00:00", "2023-01-14 16:48:43+00:00", "2023-01-14 16:48:45+00:00", "2023-01-14 16:48:47+00:00", "2023-01-14 16:48:48+00:00", "2023-01-14 16:48:50+00:00", "2023-01-14 16:48:52+00:00", "2023-01-14 16:48:53+00:00", "2023-01-14 16:48:55+00:00", "2023-01-14 16:48:57+00:00", "2023-01-14 16:48:59+00:00", "2023-01-14 16:49:00+00:00", "2023-01-14 16:49:02+00:00", "2023-01-14 16:49:04+00:00"]}}, {"type": "Feature", "id": "trace#41", "geometry": {"type": "LineString", "coordinates": [[-83.67071, 32.884146], [-83.671026, 32.884526], [-83.671337, 32.884903], [-83.671662, 32.885274], [-83.671992, 32.885648], [-83.672307, 32.886029], [-83.672629, 32.886422], [-83.672947, 32.886811], [-83.673267, 32.887195], [-83.67358, 32.887575], [-83.673893, 32.88796], [-83.674197, 32.888348], [-83.674495, 32.888729], [-83.674799, 32.889106], [-83.675102, 32.889477], [-83.675408, 32.889849], [-83.67571, 32.890223], [-83.676014, 32.890604], [-83.676317, 32.890985]]}, "properties": {"filename": "osm-traces-page-36.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/6450595", "track.name": "2023_01_14T16_46_04.850118Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI SANTA FE 2019).", "times": ["2023-01-14 16:49:05+00:00", "2023-01-14 16:49:07+00:00", "2023-01-14 16:49:09+00:00", "2023-01-14 16:49:11+00:00", "2023-01-14 16:49:13+00:00", "2023-01-14 16:49:14+00:00", "2023-01-14 16:49:16+00:00", "2023-01-14 16:49:18+00:00", "2023-01-14 16:49:19+00:00", "2023-01-14 16:49:21+00:00", "2023-01-14 16:49:23+00:00", "2023-01-14 16:49:25+00:00", "2023-01-14 16:49:26+00:00", "2023-01-14 16:49:28+00:00", "2023-01-14 16:49:30+00:00", "2023-01-14 16:49:31+00:00", "2023-01-14 16:49:33+00:00", "2023-01-14 16:49:35+00:00", "2023-01-14 16:49:36+00:00"]}}, {"type": "Feature", "id": "trace#42", "geometry": {"type": "LineString", "coordinates": [[-83.644849, 32.842143], [-83.644521, 32.842512], [-83.644187, 32.842874], [-83.643851, 32.843229], [-83.643507, 32.843584], [-83.643174, 32.843951], [-83.642876, 32.844345], [-83.64263, 32.844745], [-83.642426, 32.845168], [-83.642267, 32.845604], [-83.642156, 32.846054], [-83.642092, 32.84651], [-83.642065, 32.846969], [-83.642048, 32.847439], [-83.642029, 32.847901], [-83.641998, 32.848371], [-83.641969, 32.84882], [-83.641943, 32.84927], [-83.641908, 32.849721], [-83.641844, 32.850173], [-83.641746, 32.850616], [-83.641606, 32.851073], [-83.64144, 32.851517], [-83.641264, 32.851962], [-83.641078, 32.852406], [-83.640852, 32.852825], [-83.640563, 32.853212], [-83.640209, 32.853559], [-83.639788, 32.853869], [-83.639326, 32.854109], [-83.638805, 32.854275], [-83.638265, 32.854367], [-83.637709, 32.854388], [-83.637154, 32.854355], [-83.636632, 32.854249], [-83.636118, 32.854084], [-83.635643, 32.853871], [-83.635172, 32.853618], [-83.634705, 32.853364], [-83.634252, 32.853118], [-83.633794, 32.852871], [-83.633335, 32.852624], [-83.632889, 32.852373], [-83.632445, 32.852097], [-83.632028, 32.851807], [-83.631619, 32.851488], [-83.631248, 32.851153], [-83.630879, 32.850813], [-83.630519, 32.850472], [-83.630172, 32.850124], [-83.629826, 32.849779], [-83.629452, 32.849447], [-83.629106, 32.849103], [-83.628764, 32.848756], [-83.628421, 32.848409], [-83.628081, 32.848062]]}, "properties": {"filename": "osm-traces-page-38.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/6245717", "track.name": "2023_02_10T18_10_34.376525Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.12.16 (TOYOTA RAV4 2019).", "times": ["2023-02-10 18:10:34+00:00", "2023-02-10 18:10:36+00:00", "2023-02-10 18:10:38+00:00", "2023-02-10 18:10:40+00:00", "2023-02-10 18:10:42+00:00", "2023-02-10 18:10:44+00:00", "2023-02-10 18:10:46+00:00", "2023-02-10 18:10:48+00:00", "2023-02-10 18:10:50+00:00", "2023-02-10 18:10:52+00:00", "2023-02-10 18:10:54+00:00", "2023-02-10 18:10:56+00:00", "2023-02-10 18:10:58+00:00", "2023-02-10 18:11:00+00:00", "2023-02-10 18:11:02+00:00", "2023-02-10 18:11:04+00:00", "2023-02-10 18:11:06+00:00", "2023-02-10 18:11:08+00:00", "2023-02-10 18:11:10+00:00", "2023-02-10 18:11:11+00:00", "2023-02-10 18:11:13+00:00", "2023-02-10 18:11:15+00:00", "2023-02-10 18:11:17+00:00", "2023-02-10 18:11:19+00:00", "2023-02-10 18:11:21+00:00", "2023-02-10 18:11:23+00:00", "2023-02-10 18:11:25+00:00", "2023-02-10 18:11:27+00:00", "2023-02-10 18:11:30+00:00", "2023-02-10 18:11:32+00:00", "2023-02-10 18:11:34+00:00", "2023-02-10 18:11:36+00:00", "2023-02-10 18:11:39+00:00", "2023-02-10 18:11:41+00:00", "2023-02-10 18:11:43+00:00", "2023-02-10 18:11:45+00:00", "2023-02-10 18:11:47+00:00", "2023-02-10 18:11:50+00:00", "2023-02-10 18:11:52+00:00", "2023-02-10 18:11:53+00:00", "2023-02-10 18:11:55+00:00", "2023-02-10 18:11:57+00:00", "2023-02-10 18:11:59+00:00", "2023-02-10 18:12:01+00:00", "2023-02-10 18:12:03+00:00", "2023-02-10 18:12:05+00:00", "2023-02-10 18:12:08+00:00", "2023-02-10 18:12:11+00:00", "2023-02-10 18:12:14+00:00", "2023-02-10 18:12:20+00:00", "2023-02-10 18:12:46+00:00", "2023-02-10 18:12:51+00:00", "2023-02-10 18:12:54+00:00", "2023-02-10 18:12:58+00:00", "2023-02-10 18:13:03+00:00", "2023-02-10 18:13:17+00:00"]}}, {"type": "Feature", "id": "trace#43", "geometry": {"type": "LineString", "coordinates": [[-83.711283, 32.774098], [-83.71153, 32.774503], [-83.711782, 32.774906], [-83.712036, 32.775308], [-83.712291, 32.775709], [-83.712547, 32.776112], [-83.712802, 32.776516], [-83.713058, 32.776919], [-83.713314, 32.777321], [-83.713568, 32.777722], [-83.713836, 32.778143], [-83.714099, 32.778559], [-83.714358, 32.778969], [-83.714617, 32.779377], [-83.714878, 32.779787], [-83.715141, 32.7802], [-83.715404, 32.780615], [-83.715667, 32.781032], [-83.715932, 32.781451], [-83.716198, 32.78187], [-83.716462, 32.782288], [-83.716728, 32.782707], [-83.716992, 32.783127], [-83.717252, 32.783551], [-83.717504, 32.783979], [-83.717751, 32.784385], [-83.718008, 32.784797], [-83.718272, 32.785218], [-83.718537, 32.785643], [-83.718776, 32.786049], [-83.718993, 32.786463], [-83.719178, 32.786887], [-83.719329, 32.787322], [-83.719459, 32.78779], [-83.719555, 32.788261], [-83.719622, 32.788731], [-83.71969, 32.789199], [-83.719757, 32.789666], [-83.71981, 32.790136], [-83.719858, 32.79061], [-83.719908, 32.791088], [-83.719955, 32.79154], [-83.720001, 32.791993], [-83.720048, 32.792447], [-83.720093, 32.792901], [-83.720141, 32.793357], [-83.720188, 32.793811], [-83.720235, 32.794264], [-83.720281, 32.794716], [-83.720326, 32.795165], [-83.720372, 32.795616], [-83.720419, 32.796064], [-83.720468, 32.796542], [-83.720515, 32.797019]]}, "properties": {"filename": "osm-traces-page-39.gpx", "track.number": 5, "track.link": "/user/sunnypilot/traces/6208065", "track.name": "2023_02_06T17_20_18.727051Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (HONDA INSIGHT 2019).", "times": ["2023-02-06 17:28:43+00:00", "2023-02-06 17:28:44+00:00", "2023-02-06 17:28:46+00:00", "2023-02-06 17:28:47+00:00", "2023-02-06 17:28:49+00:00", "2023-02-06 17:28:50+00:00", "2023-02-06 17:28:52+00:00", "2023-02-06 17:28:53+00:00", "2023-02-06 17:28:55+00:00", "2023-02-06 17:28:56+00:00", "2023-02-06 17:28:58+00:00", "2023-02-06 17:28:59+00:00", "2023-02-06 17:29:01+00:00", "2023-02-06 17:29:02+00:00", "2023-02-06 17:29:04+00:00", "2023-02-06 17:29:06+00:00", "2023-02-06 17:29:07+00:00", "2023-02-06 17:29:09+00:00", "2023-02-06 17:29:10+00:00", "2023-02-06 17:29:12+00:00", "2023-02-06 17:29:14+00:00", "2023-02-06 17:29:15+00:00", "2023-02-06 17:29:17+00:00", "2023-02-06 17:29:18+00:00", "2023-02-06 17:29:20+00:00", "2023-02-06 17:29:22+00:00", "2023-02-06 17:29:23+00:00", "2023-02-06 17:29:25+00:00", "2023-02-06 17:29:26+00:00", "2023-02-06 17:29:27+00:00", "2023-02-06 17:29:29+00:00", "2023-02-06 17:29:30+00:00", "2023-02-06 17:29:32+00:00", "2023-02-06 17:29:33+00:00", "2023-02-06 17:29:35+00:00", "2023-02-06 17:29:36+00:00", "2023-02-06 17:29:38+00:00", "2023-02-06 17:29:39+00:00", "2023-02-06 17:29:41+00:00", "2023-02-06 17:29:42+00:00", "2023-02-06 17:29:44+00:00", "2023-02-06 17:29:45+00:00", "2023-02-06 17:29:46+00:00", "2023-02-06 17:29:48+00:00", "2023-02-06 17:29:49+00:00", "2023-02-06 17:29:51+00:00", "2023-02-06 17:29:52+00:00", "2023-02-06 17:29:53+00:00", "2023-02-06 17:29:55+00:00", "2023-02-06 17:29:56+00:00", "2023-02-06 17:29:58+00:00", "2023-02-06 17:29:59+00:00", "2023-02-06 17:30:01+00:00", "2023-02-06 17:30:02+00:00"]}}, {"type": "Feature", "id": "trace#44", "geometry": {"type": "LineString", "coordinates": [[-83.722408, 32.802762], [-83.72221, 32.802344], [-83.722018, 32.801924], [-83.721838, 32.8015], [-83.721664, 32.801042], [-83.721508, 32.80058], [-83.721369, 32.800115], [-83.721248, 32.799648], [-83.721143, 32.799178], [-83.721054, 32.798704], [-83.720983, 32.798228], [-83.720926, 32.797749], [-83.720879, 32.797301], [-83.720833, 32.796851], [-83.720786, 32.796401], [-83.720739, 32.795952], [-83.720692, 32.795504], [-83.720642, 32.795027], [-83.720594, 32.794556], [-83.720548, 32.794098], [-83.720497, 32.793625], [-83.720448, 32.793163], [-83.720394, 32.792703], [-83.720338, 32.792239], [-83.720282, 32.791776], [-83.720225, 32.791305], [-83.720177, 32.790856], [-83.72013, 32.790397], [-83.720082, 32.789929], [-83.720031, 32.789455], [-83.719981, 32.788976], [-83.719928, 32.788528], [-83.719863, 32.788079], [-83.71977, 32.787634], [-83.719648, 32.787196], [-83.719488, 32.786735], [-83.719292, 32.786287], [-83.719064, 32.785849], [-83.718807, 32.78542], [-83.718537, 32.784997], [-83.718267, 32.784572], [-83.718015, 32.784174], [-83.717763, 32.783775], [-83.71751, 32.783375], [-83.717257, 32.782974], [-83.717002, 32.782571], [-83.716749, 32.782168], [-83.716496, 32.781766], [-83.716243, 32.781365], [-83.71599, 32.780965], [-83.715738, 32.780566], [-83.715486, 32.780167], [-83.715234, 32.77977], [-83.714983, 32.779372], [-83.714731, 32.778974], [-83.71448, 32.778576], [-83.714229, 32.778179], [-83.713961, 32.777754], [-83.713693, 32.77733], [-83.713425, 32.776906], [-83.713158, 32.776484], [-83.712891, 32.776061], [-83.712623, 32.775636], [-83.712371, 32.775238], [-83.71212, 32.77484], [-83.711871, 32.774441]]}, "properties": {"filename": "osm-traces-page-40.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/6198734", "track.name": "2023_02_03T23_08_57.785828Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ACCORD 2018-22).", "times": ["2023-02-03 23:11:08+00:00", "2023-02-03 23:11:09+00:00", "2023-02-03 23:11:11+00:00", "2023-02-03 23:11:12+00:00", "2023-02-03 23:11:14+00:00", "2023-02-03 23:11:15+00:00", "2023-02-03 23:11:17+00:00", "2023-02-03 23:11:18+00:00", "2023-02-03 23:11:20+00:00", "2023-02-03 23:11:21+00:00", "2023-02-03 23:11:23+00:00", "2023-02-03 23:11:24+00:00", "2023-02-03 23:11:26+00:00", "2023-02-03 23:11:27+00:00", "2023-02-03 23:11:28+00:00", "2023-02-03 23:11:30+00:00", "2023-02-03 23:11:31+00:00", "2023-02-03 23:11:33+00:00", "2023-02-03 23:11:34+00:00", "2023-02-03 23:11:36+00:00", "2023-02-03 23:11:37+00:00", "2023-02-03 23:11:39+00:00", "2023-02-03 23:11:40+00:00", "2023-02-03 23:11:42+00:00", "2023-02-03 23:11:44+00:00", "2023-02-03 23:11:45+00:00", "2023-02-03 23:11:47+00:00", "2023-02-03 23:11:48+00:00", "2023-02-03 23:11:50+00:00", "2023-02-03 23:11:51+00:00", "2023-02-03 23:11:53+00:00", "2023-02-03 23:11:54+00:00", "2023-02-03 23:11:56+00:00", "2023-02-03 23:11:57+00:00", "2023-02-03 23:11:58+00:00", "2023-02-03 23:12:00+00:00", "2023-02-03 23:12:01+00:00", "2023-02-03 23:12:03+00:00", "2023-02-03 23:12:04+00:00", "2023-02-03 23:12:06+00:00", "2023-02-03 23:12:07+00:00", "2023-02-03 23:12:09+00:00", "2023-02-03 23:12:10+00:00", "2023-02-03 23:12:12+00:00", "2023-02-03 23:12:13+00:00", "2023-02-03 23:12:14+00:00", "2023-02-03 23:12:16+00:00", "2023-02-03 23:12:17+00:00", "2023-02-03 23:12:19+00:00", "2023-02-03 23:12:20+00:00", "2023-02-03 23:12:21+00:00", "2023-02-03 23:12:23+00:00", "2023-02-03 23:12:24+00:00", "2023-02-03 23:12:26+00:00", "2023-02-03 23:12:27+00:00", "2023-02-03 23:12:28+00:00", "2023-02-03 23:12:30+00:00", "2023-02-03 23:12:31+00:00", "2023-02-03 23:12:33+00:00", "2023-02-03 23:12:34+00:00", "2023-02-03 23:12:36+00:00", "2023-02-03 23:12:37+00:00", "2023-02-03 23:12:39+00:00", "2023-02-03 23:12:40+00:00", "2023-02-03 23:12:42+00:00", "2023-02-03 23:12:43+00:00"]}}, {"type": "Feature", "id": "trace#45", "geometry": {"type": "LineString", "coordinates": [[-83.711259, 32.774118], [-83.711511, 32.774537], [-83.711762, 32.774948], [-83.712017, 32.775359], [-83.712274, 32.77577], [-83.712527, 32.776176], [-83.71278, 32.776579], [-83.713045, 32.776999], [-83.713302, 32.777408], [-83.713566, 32.777827], [-83.71383, 32.778242], [-83.714084, 32.778639], [-83.714346, 32.779047], [-83.714614, 32.779466], [-83.71487, 32.779865], [-83.715136, 32.780277], [-83.715401, 32.78069], [-83.715667, 32.781106], [-83.71592, 32.781502], [-83.71619, 32.781922], [-83.716459, 32.782341], [-83.716725, 32.782752], [-83.716989, 32.783165], [-83.717252, 32.783578], [-83.717507, 32.783979], [-83.717765, 32.784383], [-83.71803, 32.784802], [-83.718294, 32.785221], [-83.718554, 32.785642], [-83.718802, 32.786072], [-83.71902, 32.786506], [-83.719204, 32.786949], [-83.719359, 32.787404], [-83.719478, 32.787857], [-83.719563, 32.788311], [-83.719621, 32.788769], [-83.719673, 32.789231], [-83.719725, 32.789696], [-83.719776, 32.790165], [-83.719825, 32.790639], [-83.719872, 32.791088], [-83.719919, 32.791539], [-83.719966, 32.791989], [-83.720016, 32.792466], [-83.720066, 32.79294], [-83.720114, 32.793412], [-83.720163, 32.793882], [-83.720209, 32.794351], [-83.720256, 32.794821], [-83.720303, 32.79529], [-83.720349, 32.795757], [-83.720396, 32.796224], [-83.720444, 32.79669], [-83.720492, 32.797155], [-83.720542, 32.797619], [-83.720607, 32.798081], [-83.720685, 32.798539], [-83.720782, 32.798994], [-83.720895, 32.799445], [-83.72102, 32.799888], [-83.72116, 32.800323], [-83.721319, 32.80076], [-83.721497, 32.801202], [-83.72169, 32.801638], [-83.721894, 32.802073], [-83.722102, 32.802507], [-83.722309, 32.802942]]}, "properties": {"filename": "osm-traces-page-40.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/5975773", "track.name": "2023_01_18T04_45_38.810622Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.12.16 (RAM 1500 5TH GEN).", "times": ["2023-01-18 04:50:16+00:00", "2023-01-18 04:50:18+00:00", "2023-01-18 04:50:19+00:00", "2023-01-18 04:50:21+00:00", "2023-01-18 04:50:23+00:00", "2023-01-18 04:50:24+00:00", "2023-01-18 04:50:26+00:00", "2023-01-18 04:50:27+00:00", "2023-01-18 04:50:29+00:00", "2023-01-18 04:50:31+00:00", "2023-01-18 04:50:33+00:00", "2023-01-18 04:50:34+00:00", "2023-01-18 04:50:36+00:00", "2023-01-18 04:50:38+00:00", "2023-01-18 04:50:39+00:00", "2023-01-18 04:50:41+00:00", "2023-01-18 04:50:43+00:00", "2023-01-18 04:50:44+00:00", "2023-01-18 04:50:46+00:00", "2023-01-18 04:50:47+00:00", "2023-01-18 04:50:49+00:00", "2023-01-18 04:50:51+00:00", "2023-01-18 04:50:52+00:00", "2023-01-18 04:50:54+00:00", "2023-01-18 04:50:55+00:00", "2023-01-18 04:50:57+00:00", "2023-01-18 04:50:58+00:00", "2023-01-18 04:51:00+00:00", "2023-01-18 04:51:02+00:00", "2023-01-18 04:51:03+00:00", "2023-01-18 04:51:05+00:00", "2023-01-18 04:51:06+00:00", "2023-01-18 04:51:08+00:00", "2023-01-18 04:51:10+00:00", "2023-01-18 04:51:11+00:00", "2023-01-18 04:51:13+00:00", "2023-01-18 04:51:14+00:00", "2023-01-18 04:51:16+00:00", "2023-01-18 04:51:18+00:00", "2023-01-18 04:51:19+00:00", "2023-01-18 04:51:21+00:00", "2023-01-18 04:51:22+00:00", "2023-01-18 04:51:24+00:00", "2023-01-18 04:51:25+00:00", "2023-01-18 04:51:27+00:00", "2023-01-18 04:51:29+00:00", "2023-01-18 04:51:30+00:00", "2023-01-18 04:51:32+00:00", "2023-01-18 04:51:33+00:00", "2023-01-18 04:51:35+00:00", "2023-01-18 04:51:37+00:00", "2023-01-18 04:51:38+00:00", "2023-01-18 04:51:40+00:00", "2023-01-18 04:51:41+00:00", "2023-01-18 04:51:43+00:00", "2023-01-18 04:51:45+00:00", "2023-01-18 04:51:46+00:00", "2023-01-18 04:51:48+00:00", "2023-01-18 04:51:49+00:00", "2023-01-18 04:51:51+00:00", "2023-01-18 04:51:53+00:00", "2023-01-18 04:51:54+00:00", "2023-01-18 04:51:56+00:00", "2023-01-18 04:51:57+00:00", "2023-01-18 04:51:59+00:00", "2023-01-18 04:52:01+00:00", "2023-01-18 04:52:02+00:00"]}}, {"type": "Feature", "id": "trace#46", "geometry": {"type": "LineString", "coordinates": [[-83.639977, 32.856696], [-83.639542, 32.856412], [-83.6391, 32.856154], [-83.638659, 32.855884], [-83.638229, 32.855596], [-83.637828, 32.855293], [-83.637433, 32.854977], [-83.637032, 32.854679], [-83.636594, 32.854406], [-83.636136, 32.854151], [-83.635667, 32.853916], [-83.63521, 32.853675], [-83.634745, 32.853428], [-83.634275, 32.853173], [-83.633812, 32.852923], [-83.633361, 32.852677], [-83.632908, 32.852422], [-83.632472, 32.852145], [-83.63206, 32.851845], [-83.631671, 32.851519], [-83.631298, 32.851192], [-83.630898, 32.850833], [-83.630523, 32.850485], [-83.630167, 32.850131], [-83.629828, 32.849782], [-83.629482, 32.849431], [-83.629124, 32.849072], [-83.628778, 32.848725], [-83.628421, 32.848368], [-83.628075, 32.848015], [-83.627731, 32.847658], [-83.627391, 32.847303], [-83.626862, 32.847376], [-83.626547, 32.847748]]}, "properties": {"filename": "osm-traces-page-42.gpx", "track.number": 1, "track.link": "/user/dragonpilot/traces/5878572", "track.name": "2022_12_04T02_10_39.678377Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from dragonpilot 2022.09.07 (HONDA PILOT 2017).", "times": ["2022-12-04 02:17:19+00:00", "2022-12-04 02:17:22+00:00", "2022-12-04 02:17:25+00:00", "2022-12-04 02:17:28+00:00", "2022-12-04 02:17:31+00:00", "2022-12-04 02:17:34+00:00", "2022-12-04 02:17:37+00:00", "2022-12-04 02:17:41+00:00", "2022-12-04 02:17:44+00:00", "2022-12-04 02:17:47+00:00", "2022-12-04 02:17:51+00:00", "2022-12-04 02:17:54+00:00", "2022-12-04 02:17:57+00:00", "2022-12-04 02:18:00+00:00", "2022-12-04 02:18:02+00:00", "2022-12-04 02:18:04+00:00", "2022-12-04 02:18:06+00:00", "2022-12-04 02:18:08+00:00", "2022-12-04 02:18:10+00:00", "2022-12-04 02:18:12+00:00", "2022-12-04 02:18:13+00:00", "2022-12-04 02:18:16+00:00", "2022-12-04 02:18:18+00:00", "2022-12-04 02:18:20+00:00", "2022-12-04 02:18:23+00:00", "2022-12-04 02:18:25+00:00", "2022-12-04 02:18:28+00:00", "2022-12-04 02:18:30+00:00", "2022-12-04 02:18:33+00:00", "2022-12-04 02:18:36+00:00", "2022-12-04 02:18:40+00:00", "2022-12-04 02:18:51+00:00", "2022-12-04 02:19:00+00:00", "2022-12-04 02:19:04+00:00"]}}, {"type": "Feature", "id": "trace#47", "geometry": {"type": "LineString", "coordinates": [[-83.72242, 32.802682], [-83.722217, 32.802253], [-83.722023, 32.801822], [-83.721844, 32.80139], [-83.721681, 32.800953], [-83.721535, 32.80051], [-83.721404, 32.800064], [-83.721288, 32.799614], [-83.721188, 32.799158], [-83.721104, 32.798699], [-83.721035, 32.798238], [-83.720981, 32.797779], [-83.720932, 32.797319], [-83.720884, 32.796861], [-83.720837, 32.796404], [-83.720789, 32.795946], [-83.720741, 32.79549], [-83.720693, 32.795036], [-83.720646, 32.794581], [-83.720599, 32.794122], [-83.720553, 32.793658], [-83.720505, 32.793193], [-83.720457, 32.792736], [-83.720412, 32.792288], [-83.720363, 32.791812], [-83.720315, 32.791336], [-83.720262, 32.79086], [-83.720214, 32.79041], [-83.720168, 32.789955], [-83.72012, 32.789491], [-83.720073, 32.789021], [-83.720012, 32.788518], [-83.71994, 32.788052], [-83.719842, 32.787596], [-83.719712, 32.787151], [-83.719548, 32.786695], [-83.719352, 32.786261], [-83.719134, 32.785847], [-83.718879, 32.785423], [-83.718626, 32.785022], [-83.718364, 32.784611], [-83.718112, 32.784213], [-83.717851, 32.7838], [-83.717585, 32.783378], [-83.717321, 32.782958], [-83.717058, 32.782539], [-83.716795, 32.782121], [-83.716534, 32.781704], [-83.716272, 32.781288], [-83.71601, 32.780872], [-83.715747, 32.780456], [-83.715483, 32.780039], [-83.71522, 32.779622], [-83.714956, 32.779204], [-83.714691, 32.778785], [-83.714426, 32.778366], [-83.714163, 32.777951], [-83.713906, 32.777542], [-83.713654, 32.777144], [-83.71339, 32.776727], [-83.713132, 32.776318], [-83.712878, 32.775916], [-83.712611, 32.775495], [-83.712347, 32.775077], [-83.712081, 32.774656], [-83.711833, 32.774256]]}, "properties": {"filename": "osm-traces-page-44.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/5839255", "track.name": "2023_01_05T16_20_36.929317Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (HONDA ACCORD 2016-17 SERIAL STEERING).", "times": ["2023-01-05 16:22:54+00:00", "2023-01-05 16:22:56+00:00", "2023-01-05 16:22:57+00:00", "2023-01-05 16:22:59+00:00", "2023-01-05 16:23:00+00:00", "2023-01-05 16:23:02+00:00", "2023-01-05 16:23:03+00:00", "2023-01-05 16:23:05+00:00", "2023-01-05 16:23:06+00:00", "2023-01-05 16:23:08+00:00", "2023-01-05 16:23:09+00:00", "2023-01-05 16:23:11+00:00", "2023-01-05 16:23:12+00:00", "2023-01-05 16:23:14+00:00", "2023-01-05 16:23:15+00:00", "2023-01-05 16:23:17+00:00", "2023-01-05 16:23:18+00:00", "2023-01-05 16:23:20+00:00", "2023-01-05 16:23:21+00:00", "2023-01-05 16:23:23+00:00", "2023-01-05 16:23:24+00:00", "2023-01-05 16:23:26+00:00", "2023-01-05 16:23:27+00:00", "2023-01-05 16:23:29+00:00", "2023-01-05 16:23:30+00:00", "2023-01-05 16:23:32+00:00", "2023-01-05 16:23:34+00:00", "2023-01-05 16:23:35+00:00", "2023-01-05 16:23:37+00:00", "2023-01-05 16:23:38+00:00", "2023-01-05 16:23:40+00:00", "2023-01-05 16:23:41+00:00", "2023-01-05 16:23:43+00:00", "2023-01-05 16:23:44+00:00", "2023-01-05 16:23:46+00:00", "2023-01-05 16:23:47+00:00", "2023-01-05 16:23:49+00:00", "2023-01-05 16:23:50+00:00", "2023-01-05 16:23:52+00:00", "2023-01-05 16:23:54+00:00", "2023-01-05 16:23:55+00:00", "2023-01-05 16:23:57+00:00", "2023-01-05 16:23:58+00:00", "2023-01-05 16:24:00+00:00", "2023-01-05 16:24:01+00:00", "2023-01-05 16:24:03+00:00", "2023-01-05 16:24:04+00:00", "2023-01-05 16:24:06+00:00", "2023-01-05 16:24:07+00:00", "2023-01-05 16:24:09+00:00", "2023-01-05 16:24:10+00:00", "2023-01-05 16:24:12+00:00", "2023-01-05 16:24:13+00:00", "2023-01-05 16:24:15+00:00", "2023-01-05 16:24:16+00:00", "2023-01-05 16:24:18+00:00", "2023-01-05 16:24:19+00:00", "2023-01-05 16:24:21+00:00", "2023-01-05 16:24:22+00:00", "2023-01-05 16:24:24+00:00", "2023-01-05 16:24:26+00:00", "2023-01-05 16:24:27+00:00", "2023-01-05 16:24:29+00:00", "2023-01-05 16:24:31+00:00", "2023-01-05 16:24:32+00:00", "2023-01-05 16:24:34+00:00"]}}, {"type": "Feature", "id": "trace#48", "geometry": {"type": "LineString", "coordinates": [[-83.722418, 32.802727], [-83.722223, 32.802299], [-83.722027, 32.801865], [-83.721845, 32.801425], [-83.721678, 32.800979], [-83.721527, 32.800531], [-83.721395, 32.80008], [-83.721279, 32.799628], [-83.721176, 32.799173], [-83.721089, 32.798711], [-83.721016, 32.798242], [-83.720958, 32.797766], [-83.720906, 32.797286], [-83.720854, 32.796807], [-83.720804, 32.79633], [-83.720752, 32.795856], [-83.720692, 32.795381], [-83.720629, 32.794907], [-83.720571, 32.794431], [-83.720518, 32.793957], [-83.720468, 32.793482], [-83.720418, 32.793005], [-83.720368, 32.792527], [-83.720319, 32.792046], [-83.720271, 32.791596], [-83.720224, 32.791145], [-83.720175, 32.790692], [-83.720127, 32.790239], [-83.720081, 32.789789], [-83.720033, 32.789311], [-83.71998, 32.788836], [-83.71992, 32.788365], [-83.719839, 32.787899], [-83.719726, 32.787443], [-83.719588, 32.786997], [-83.719421, 32.786562], [-83.719224, 32.786135], [-83.719007, 32.785712], [-83.718769, 32.785293], [-83.718519, 32.784882], [-83.718267, 32.784477], [-83.718012, 32.784071], [-83.717753, 32.783661], [-83.717493, 32.783247], [-83.717212, 32.782802], [-83.716954, 32.78239], [-83.716699, 32.781983], [-83.716446, 32.78158], [-83.716197, 32.781182], [-83.715937, 32.780764], [-83.715679, 32.780357], [-83.715411, 32.779934], [-83.715151, 32.779522], [-83.714897, 32.77912], [-83.714629, 32.778699], [-83.714363, 32.778278], [-83.714108, 32.777873], [-83.71385, 32.777463], [-83.71359, 32.777051], [-83.713328, 32.776636], [-83.713062, 32.776213], [-83.712796, 32.775791], [-83.712532, 32.775374], [-83.712268, 32.774954], [-83.712, 32.77453], [-83.711754, 32.774126]]}, "properties": {"filename": "osm-traces-page-44.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/5798174", "track.name": "2022_12_26T21_29_40.517195Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ODYSSEY 2018-21).", "times": ["2022-12-26 21:31:56+00:00", "2022-12-26 21:31:57+00:00", "2022-12-26 21:31:58+00:00", "2022-12-26 21:32:00+00:00", "2022-12-26 21:32:01+00:00", "2022-12-26 21:32:03+00:00", "2022-12-26 21:32:04+00:00", "2022-12-26 21:32:05+00:00", "2022-12-26 21:32:07+00:00", "2022-12-26 21:32:08+00:00", "2022-12-26 21:32:10+00:00", "2022-12-26 21:32:11+00:00", "2022-12-26 21:32:12+00:00", "2022-12-26 21:32:14+00:00", "2022-12-26 21:32:15+00:00", "2022-12-26 21:32:17+00:00", "2022-12-26 21:32:18+00:00", "2022-12-26 21:32:19+00:00", "2022-12-26 21:32:21+00:00", "2022-12-26 21:32:22+00:00", "2022-12-26 21:32:24+00:00", "2022-12-26 21:32:25+00:00", "2022-12-26 21:32:26+00:00", "2022-12-26 21:32:28+00:00", "2022-12-26 21:32:29+00:00", "2022-12-26 21:32:30+00:00", "2022-12-26 21:32:32+00:00", "2022-12-26 21:32:33+00:00", "2022-12-26 21:32:34+00:00", "2022-12-26 21:32:36+00:00", "2022-12-26 21:32:37+00:00", "2022-12-26 21:32:38+00:00", "2022-12-26 21:32:40+00:00", "2022-12-26 21:32:41+00:00", "2022-12-26 21:32:43+00:00", "2022-12-26 21:32:44+00:00", "2022-12-26 21:32:45+00:00", "2022-12-26 21:32:47+00:00", "2022-12-26 21:32:48+00:00", "2022-12-26 21:32:50+00:00", "2022-12-26 21:32:51+00:00", "2022-12-26 21:32:52+00:00", "2022-12-26 21:32:54+00:00", "2022-12-26 21:32:55+00:00", "2022-12-26 21:32:57+00:00", "2022-12-26 21:32:58+00:00", "2022-12-26 21:33:00+00:00", "2022-12-26 21:33:01+00:00", "2022-12-26 21:33:02+00:00", "2022-12-26 21:33:04+00:00", "2022-12-26 21:33:05+00:00", "2022-12-26 21:33:07+00:00", "2022-12-26 21:33:09+00:00", "2022-12-26 21:33:10+00:00", "2022-12-26 21:33:12+00:00", "2022-12-26 21:33:14+00:00", "2022-12-26 21:33:15+00:00", "2022-12-26 21:33:17+00:00", "2022-12-26 21:33:18+00:00", "2022-12-26 21:33:20+00:00", "2022-12-26 21:33:22+00:00", "2022-12-26 21:33:23+00:00", "2022-12-26 21:33:25+00:00", "2022-12-26 21:33:26+00:00", "2022-12-26 21:33:28+00:00", "2022-12-26 21:33:29+00:00"]}}, {"type": "Feature", "id": "trace#49", "geometry": {"type": "LineString", "coordinates": [[-83.711284, 32.774111], [-83.711533, 32.774518], [-83.711796, 32.774939], [-83.71206, 32.775351], [-83.712322, 32.775764], [-83.712584, 32.776178], [-83.712846, 32.776591], [-83.713107, 32.777004], [-83.713368, 32.777416], [-83.713629, 32.777828], [-83.713889, 32.778242], [-83.714149, 32.778655], [-83.714407, 32.779064], [-83.714665, 32.779469], [-83.71492, 32.779874], [-83.715175, 32.780277], [-83.71543, 32.780683], [-83.715685, 32.781089], [-83.715939, 32.781493], [-83.716195, 32.781897], [-83.716451, 32.782303], [-83.716706, 32.782709], [-83.716959, 32.783115], [-83.717213, 32.783519], [-83.717468, 32.783922], [-83.717726, 32.784331], [-83.717988, 32.784745], [-83.718249, 32.78516], [-83.718503, 32.785572], [-83.718748, 32.785983], [-83.718966, 32.786397], [-83.719159, 32.786841], [-83.719319, 32.78729], [-83.719446, 32.787739], [-83.71954, 32.788189], [-83.7196, 32.788638], [-83.719647, 32.789086], [-83.719694, 32.789555], [-83.719738, 32.790018], [-83.719785, 32.790471], [-83.719833, 32.790942], [-83.719881, 32.791411], [-83.719929, 32.79188], [-83.719977, 32.792329], [-83.720024, 32.792781], [-83.72007, 32.793233], [-83.720118, 32.793688], [-83.720168, 32.79415], [-83.720215, 32.794614], [-83.720265, 32.795081], [-83.720313, 32.795553], [-83.720361, 32.796007], [-83.720409, 32.796464], [-83.720456, 32.796924], [-83.720505, 32.797386], [-83.720558, 32.79785], [-83.720628, 32.798313], [-83.720715, 32.798776], [-83.720816, 32.799231], [-83.720935, 32.79968], [-83.721067, 32.800126], [-83.721212, 32.800562], [-83.721379, 32.801005], [-83.721555, 32.801437], [-83.721752, 32.801869], [-83.721953, 32.802288], [-83.722159, 32.802712], [-83.722365, 32.803138]]}, "properties": {"filename": "osm-traces-page-44.gpx", "track.number": 4, "track.link": "/user/sunnypilot/traces/5763740", "track.name": "2022_12_28T22_54_43.653367Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (TOYOTA COROLLA TSS2 2019).", "times": ["2022-12-28 22:56:02+00:00", "2022-12-28 22:56:04+00:00", "2022-12-28 22:56:06+00:00", "2022-12-28 22:56:07+00:00", "2022-12-28 22:56:09+00:00", "2022-12-28 22:56:11+00:00", "2022-12-28 22:56:12+00:00", "2022-12-28 22:56:14+00:00", "2022-12-28 22:56:16+00:00", "2022-12-28 22:56:18+00:00", "2022-12-28 22:56:19+00:00", "2022-12-28 22:56:21+00:00", "2022-12-28 22:56:23+00:00", "2022-12-28 22:56:24+00:00", "2022-12-28 22:56:26+00:00", "2022-12-28 22:56:28+00:00", "2022-12-28 22:56:29+00:00", "2022-12-28 22:56:31+00:00", "2022-12-28 22:56:33+00:00", "2022-12-28 22:56:35+00:00", "2022-12-28 22:56:36+00:00", "2022-12-28 22:56:38+00:00", "2022-12-28 22:56:40+00:00", "2022-12-28 22:56:41+00:00", "2022-12-28 22:56:43+00:00", "2022-12-28 22:56:45+00:00", "2022-12-28 22:56:46+00:00", "2022-12-28 22:56:48+00:00", "2022-12-28 22:56:50+00:00", "2022-12-28 22:56:52+00:00", "2022-12-28 22:56:53+00:00", "2022-12-28 22:56:55+00:00", "2022-12-28 22:56:57+00:00", "2022-12-28 22:56:59+00:00", "2022-12-28 22:57:00+00:00", "2022-12-28 22:57:02+00:00", "2022-12-28 22:57:04+00:00", "2022-12-28 22:57:06+00:00", "2022-12-28 22:57:08+00:00", "2022-12-28 22:57:10+00:00", "2022-12-28 22:57:12+00:00", "2022-12-28 22:57:14+00:00", "2022-12-28 22:57:16+00:00", "2022-12-28 22:57:18+00:00", "2022-12-28 22:57:20+00:00", "2022-12-28 22:57:21+00:00", "2022-12-28 22:57:23+00:00", "2022-12-28 22:57:25+00:00", "2022-12-28 22:57:27+00:00", "2022-12-28 22:57:29+00:00", "2022-12-28 22:57:31+00:00", "2022-12-28 22:57:33+00:00", "2022-12-28 22:57:35+00:00", "2022-12-28 22:57:36+00:00", "2022-12-28 22:57:38+00:00", "2022-12-28 22:57:40+00:00", "2022-12-28 22:57:42+00:00", "2022-12-28 22:57:44+00:00", "2022-12-28 22:57:45+00:00", "2022-12-28 22:57:47+00:00", "2022-12-28 22:57:49+00:00", "2022-12-28 22:57:51+00:00", "2022-12-28 22:57:53+00:00", "2022-12-28 22:57:55+00:00", "2022-12-28 22:57:56+00:00", "2022-12-28 22:57:58+00:00", "2022-12-28 22:58:00+00:00", "2022-12-28 22:58:02+00:00"]}}, {"type": "Feature", "id": "trace#50", "geometry": {"type": "LineString", "coordinates": [[-83.722083, 32.801954], [-83.721894, 32.801514], [-83.721725, 32.801073], [-83.721577, 32.800636], [-83.72144, 32.800195], [-83.721319, 32.799743], [-83.721211, 32.799286], [-83.72112, 32.798839], [-83.721046, 32.798378], [-83.720985, 32.797907], [-83.720935, 32.797452], [-83.720886, 32.796994], [-83.720838, 32.796537], [-83.720792, 32.796085], [-83.720744, 32.795636], [-83.720694, 32.795184], [-83.720646, 32.794724], [-83.720599, 32.79426], [-83.72055, 32.793808], [-83.720501, 32.793351], [-83.720452, 32.792885], [-83.720402, 32.792425], [-83.720354, 32.791957], [-83.720303, 32.791493], [-83.720257, 32.791039], [-83.720209, 32.790585], [-83.720159, 32.790131], [-83.720112, 32.78968], [-83.720066, 32.789223], [-83.720017, 32.788775], [-83.719958, 32.788318], [-83.719883, 32.787853], [-83.719775, 32.787407], [-83.719642, 32.786969], [-83.719472, 32.786519], [-83.71927, 32.786086], [-83.719043, 32.785671], [-83.71879, 32.785258], [-83.718534, 32.784852], [-83.718271, 32.784435], [-83.718006, 32.784018], [-83.717751, 32.783615], [-83.717491, 32.783205], [-83.717229, 32.782794], [-83.716966, 32.782379], [-83.716712, 32.781977], [-83.716454, 32.781565], [-83.716194, 32.781149], [-83.715929, 32.78073], [-83.715673, 32.780327], [-83.715413, 32.779917], [-83.71515, 32.779501], [-83.714886, 32.779081], [-83.714635, 32.778683], [-83.714376, 32.778269], [-83.714118, 32.777856], [-83.713866, 32.777457], [-83.713611, 32.777049], [-83.713352, 32.776637], [-83.7131, 32.776238], [-83.712846, 32.775833], [-83.712588, 32.775423], [-83.712328, 32.775012], [-83.712074, 32.774608], [-83.71182, 32.774195]]}, "properties": {"filename": "osm-traces-page-45.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/5763713", "track.name": "2022_12_26T23_02_06.901011Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (TOYOTA COROLLA TSS2 2019).", "times": ["2022-12-26 23:08:51+00:00", "2022-12-26 23:08:52+00:00", "2022-12-26 23:08:54+00:00", "2022-12-26 23:08:56+00:00", "2022-12-26 23:08:58+00:00", "2022-12-26 23:09:00+00:00", "2022-12-26 23:09:02+00:00", "2022-12-26 23:09:04+00:00", "2022-12-26 23:09:06+00:00", "2022-12-26 23:09:08+00:00", "2022-12-26 23:09:09+00:00", "2022-12-26 23:09:11+00:00", "2022-12-26 23:09:13+00:00", "2022-12-26 23:09:15+00:00", "2022-12-26 23:09:17+00:00", "2022-12-26 23:09:18+00:00", "2022-12-26 23:09:20+00:00", "2022-12-26 23:09:22+00:00", "2022-12-26 23:09:24+00:00", "2022-12-26 23:09:26+00:00", "2022-12-26 23:09:28+00:00", "2022-12-26 23:09:30+00:00", "2022-12-26 23:09:32+00:00", "2022-12-26 23:09:34+00:00", "2022-12-26 23:09:36+00:00", "2022-12-26 23:09:39+00:00", "2022-12-26 23:09:41+00:00", "2022-12-26 23:09:43+00:00", "2022-12-26 23:09:45+00:00", "2022-12-26 23:09:47+00:00", "2022-12-26 23:09:49+00:00", "2022-12-26 23:09:52+00:00", "2022-12-26 23:09:54+00:00", "2022-12-26 23:09:56+00:00", "2022-12-26 23:09:58+00:00", "2022-12-26 23:10:00+00:00", "2022-12-26 23:10:02+00:00", "2022-12-26 23:10:04+00:00", "2022-12-26 23:10:06+00:00", "2022-12-26 23:10:08+00:00", "2022-12-26 23:10:10+00:00", "2022-12-26 23:10:12+00:00", "2022-12-26 23:10:13+00:00", "2022-12-26 23:10:15+00:00", "2022-12-26 23:10:17+00:00", "2022-12-26 23:10:19+00:00", "2022-12-26 23:10:21+00:00", "2022-12-26 23:10:23+00:00", "2022-12-26 23:10:24+00:00", "2022-12-26 23:10:26+00:00", "2022-12-26 23:10:28+00:00", "2022-12-26 23:10:30+00:00", "2022-12-26 23:10:31+00:00", "2022-12-26 23:10:33+00:00", "2022-12-26 23:10:35+00:00", "2022-12-26 23:10:36+00:00", "2022-12-26 23:10:38+00:00", "2022-12-26 23:10:40+00:00", "2022-12-26 23:10:42+00:00", "2022-12-26 23:10:44+00:00", "2022-12-26 23:10:46+00:00", "2022-12-26 23:10:48+00:00", "2022-12-26 23:10:50+00:00", "2022-12-26 23:10:52+00:00", "2022-12-26 23:10:54+00:00"]}}, {"type": "Feature", "id": "trace#51", "geometry": {"type": "LineString", "coordinates": [[-83.637674, 32.854356], [-83.63713, 32.854321], [-83.636595, 32.854206], [-83.636088, 32.854037], [-83.6356, 32.853811], [-83.635129, 32.853561], [-83.634667, 32.853313], [-83.634215, 32.853071], [-83.633744, 32.852818], [-83.633279, 32.852568], [-83.632832, 32.852312], [-83.632391, 32.85203], [-83.631973, 32.851733], [-83.631572, 32.851406], [-83.631196, 32.851079], [-83.630817, 32.850753], [-83.630444, 32.850413], [-83.630094, 32.850067], [-83.629745, 32.849716], [-83.629413, 32.849361], [-83.629069, 32.849009], [-83.628721, 32.848657], [-83.628375, 32.84831], [-83.628028, 32.847966], [-83.627681, 32.847622], [-83.627341, 32.847271]]}, "properties": {"filename": "osm-traces-page-48.gpx", "track.number": 0, "track.link": "/user/dragonpilot/traces/5666387", "track.name": "1970_01_01T00_33_04.694541Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-12-18 18:54:25+00:00", "2022-12-18 18:54:28+00:00", "2022-12-18 18:54:31+00:00", "2022-12-18 18:54:34+00:00", "2022-12-18 18:54:36+00:00", "2022-12-18 18:54:38+00:00", "2022-12-18 18:54:40+00:00", "2022-12-18 18:54:42+00:00", "2022-12-18 18:54:45+00:00", "2022-12-18 18:54:47+00:00", "2022-12-18 18:54:49+00:00", "2022-12-18 18:54:51+00:00", "2022-12-18 18:54:54+00:00", "2022-12-18 18:54:56+00:00", "2022-12-18 18:54:58+00:00", "2022-12-18 18:55:01+00:00", "2022-12-18 18:55:03+00:00", "2022-12-18 18:55:06+00:00", "2022-12-18 18:55:09+00:00", "2022-12-18 18:55:45+00:00", "2022-12-18 18:55:54+00:00", "2022-12-18 18:55:59+00:00", "2022-12-18 18:56:04+00:00", "2022-12-18 18:56:23+00:00", "2022-12-18 18:57:40+00:00", "2022-12-18 18:57:54+00:00"]}}, {"type": "Feature", "id": "trace#52", "geometry": {"type": "LineString", "coordinates": [[-83.722411, 32.802804], [-83.722212, 32.802386], [-83.722007, 32.801937], [-83.721817, 32.801485], [-83.721646, 32.801028], [-83.721492, 32.800567], [-83.721356, 32.800104], [-83.721236, 32.799637], [-83.721128, 32.799167], [-83.721039, 32.798693], [-83.720967, 32.798217], [-83.720911, 32.797739], [-83.720861, 32.797261], [-83.720812, 32.796786], [-83.720763, 32.796312], [-83.720714, 32.795841], [-83.720665, 32.795369], [-83.720616, 32.794898], [-83.720567, 32.794426], [-83.720518, 32.793954], [-83.720468, 32.793481], [-83.720418, 32.793007], [-83.720369, 32.792531], [-83.720319, 32.792055], [-83.720269, 32.791576], [-83.720223, 32.791126], [-83.720175, 32.790675], [-83.720128, 32.790222], [-83.72008, 32.789768], [-83.720033, 32.789312], [-83.719984, 32.788857], [-83.719929, 32.788402], [-83.719849, 32.787918], [-83.719744, 32.787474], [-83.719603, 32.787008], [-83.719416, 32.786524], [-83.719205, 32.78608], [-83.718963, 32.785647], [-83.718698, 32.785222], [-83.718429, 32.784797], [-83.71816, 32.784371], [-83.717909, 32.783971], [-83.717638, 32.783543], [-83.717386, 32.783141], [-83.717132, 32.782738], [-83.716878, 32.782335], [-83.716626, 32.781932], [-83.716355, 32.781502], [-83.716103, 32.781101], [-83.715852, 32.780701], [-83.715601, 32.780303], [-83.715349, 32.779904], [-83.715099, 32.779505], [-83.714849, 32.779107], [-83.714598, 32.778708], [-83.714348, 32.77831], [-83.714097, 32.777912], [-83.713829, 32.777486], [-83.713561, 32.777061], [-83.713293, 32.776636], [-83.713026, 32.776212], [-83.712759, 32.775788], [-83.712492, 32.775365], [-83.712226, 32.774942], [-83.711961, 32.774519], [-83.711701, 32.774093]]}, "properties": {"filename": "osm-traces-page-49.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/5533514", "track.name": "2022_11_24T12_38_17.463081Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ACCORD 2018-22).", "times": ["2022-11-24 12:46:25+00:00", "2022-11-24 12:46:26+00:00", "2022-11-24 12:46:27+00:00", "2022-11-24 12:46:29+00:00", "2022-11-24 12:46:30+00:00", "2022-11-24 12:46:32+00:00", "2022-11-24 12:46:33+00:00", "2022-11-24 12:46:35+00:00", "2022-11-24 12:46:36+00:00", "2022-11-24 12:46:38+00:00", "2022-11-24 12:46:39+00:00", "2022-11-24 12:46:41+00:00", "2022-11-24 12:46:42+00:00", "2022-11-24 12:46:44+00:00", "2022-11-24 12:46:45+00:00", "2022-11-24 12:46:47+00:00", "2022-11-24 12:46:48+00:00", "2022-11-24 12:46:50+00:00", "2022-11-24 12:46:51+00:00", "2022-11-24 12:46:53+00:00", "2022-11-24 12:46:54+00:00", "2022-11-24 12:46:56+00:00", "2022-11-24 12:46:57+00:00", "2022-11-24 12:46:59+00:00", "2022-11-24 12:47:00+00:00", "2022-11-24 12:47:02+00:00", "2022-11-24 12:47:03+00:00", "2022-11-24 12:47:05+00:00", "2022-11-24 12:47:06+00:00", "2022-11-24 12:47:07+00:00", "2022-11-24 12:47:09+00:00", "2022-11-24 12:47:10+00:00", "2022-11-24 12:47:12+00:00", "2022-11-24 12:47:13+00:00", "2022-11-24 12:47:15+00:00", "2022-11-24 12:47:16+00:00", "2022-11-24 12:47:18+00:00", "2022-11-24 12:47:19+00:00", "2022-11-24 12:47:21+00:00", "2022-11-24 12:47:22+00:00", "2022-11-24 12:47:24+00:00", "2022-11-24 12:47:25+00:00", "2022-11-24 12:47:27+00:00", "2022-11-24 12:47:28+00:00", "2022-11-24 12:47:29+00:00", "2022-11-24 12:47:31+00:00", "2022-11-24 12:47:32+00:00", "2022-11-24 12:47:34+00:00", "2022-11-24 12:47:35+00:00", "2022-11-24 12:47:37+00:00", "2022-11-24 12:47:38+00:00", "2022-11-24 12:47:39+00:00", "2022-11-24 12:47:41+00:00", "2022-11-24 12:47:42+00:00", "2022-11-24 12:47:44+00:00", "2022-11-24 12:47:45+00:00", "2022-11-24 12:47:46+00:00", "2022-11-24 12:47:48+00:00", "2022-11-24 12:47:49+00:00", "2022-11-24 12:47:51+00:00", "2022-11-24 12:47:52+00:00", "2022-11-24 12:47:54+00:00", "2022-11-24 12:47:55+00:00", "2022-11-24 12:47:57+00:00", "2022-11-24 12:47:58+00:00", "2022-11-24 12:48:00+00:00"]}}, {"type": "Feature", "id": "trace#53", "geometry": {"type": "LineString", "coordinates": [[-83.71131, 32.774104], [-83.711557, 32.774507], [-83.711821, 32.774929], [-83.712088, 32.775347], [-83.712353, 32.775763], [-83.712615, 32.77618], [-83.712878, 32.776597], [-83.713142, 32.777014], [-83.713404, 32.77743], [-83.713663, 32.777844], [-83.713923, 32.778258], [-83.714182, 32.77867], [-83.71444, 32.779081], [-83.714698, 32.779492], [-83.714957, 32.779903], [-83.715214, 32.780313], [-83.715471, 32.780724], [-83.715729, 32.781135], [-83.715986, 32.781547], [-83.716245, 32.781959], [-83.716503, 32.782371], [-83.716759, 32.782783], [-83.717017, 32.783193], [-83.717276, 32.783603], [-83.717534, 32.784017], [-83.717794, 32.784431], [-83.718056, 32.784847], [-83.718317, 32.785264], [-83.718574, 32.785683], [-83.718819, 32.786104], [-83.719049, 32.786527], [-83.719247, 32.78696], [-83.719396, 32.787405], [-83.719515, 32.787855], [-83.719604, 32.788312], [-83.719662, 32.788775], [-83.719712, 32.78925], [-83.71976, 32.789713], [-83.719808, 32.790165], [-83.719858, 32.790625], [-83.719907, 32.791089], [-83.719955, 32.791553], [-83.720005, 32.792016], [-83.720053, 32.792477], [-83.720101, 32.792938], [-83.720152, 32.793397], [-83.720201, 32.793855], [-83.720249, 32.794313], [-83.720298, 32.794771], [-83.720345, 32.795229], [-83.720392, 32.795689], [-83.720442, 32.796149], [-83.720489, 32.796607], [-83.720537, 32.797065], [-83.720587, 32.797522], [-83.720646, 32.797979], [-83.720721, 32.798434], [-83.720811, 32.798887], [-83.720919, 32.799337], [-83.721043, 32.799783], [-83.721179, 32.800227], [-83.721331, 32.800667], [-83.7215, 32.801102], [-83.721684, 32.801533], [-83.721881, 32.80196], [-83.722085, 32.802384], [-83.72229, 32.802809]]}, "properties": {"filename": "osm-traces-page-51.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/5404434", "track.name": "2022_11_21T02_00_26.180730Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (TOYOTA COROLLA TSS2 2019).", "times": ["2022-11-21 02:00:48+00:00", "2022-11-21 02:00:49+00:00", "2022-11-21 02:00:51+00:00", "2022-11-21 02:00:53+00:00", "2022-11-21 02:00:54+00:00", "2022-11-21 02:00:56+00:00", "2022-11-21 02:00:58+00:00", "2022-11-21 02:01:00+00:00", "2022-11-21 02:01:01+00:00", "2022-11-21 02:01:03+00:00", "2022-11-21 02:01:05+00:00", "2022-11-21 02:01:06+00:00", "2022-11-21 02:01:08+00:00", "2022-11-21 02:01:10+00:00", "2022-11-21 02:01:11+00:00", "2022-11-21 02:01:13+00:00", "2022-11-21 02:01:15+00:00", "2022-11-21 02:01:17+00:00", "2022-11-21 02:01:18+00:00", "2022-11-21 02:01:20+00:00", "2022-11-21 02:01:22+00:00", "2022-11-21 02:01:23+00:00", "2022-11-21 02:01:25+00:00", "2022-11-21 02:01:27+00:00", "2022-11-21 02:01:28+00:00", "2022-11-21 02:01:30+00:00", "2022-11-21 02:01:32+00:00", "2022-11-21 02:01:34+00:00", "2022-11-21 02:01:35+00:00", "2022-11-21 02:01:37+00:00", "2022-11-21 02:01:39+00:00", "2022-11-21 02:01:40+00:00", "2022-11-21 02:01:42+00:00", "2022-11-21 02:01:44+00:00", "2022-11-21 02:01:45+00:00", "2022-11-21 02:01:47+00:00", "2022-11-21 02:01:49+00:00", "2022-11-21 02:01:50+00:00", "2022-11-21 02:01:52+00:00", "2022-11-21 02:01:53+00:00", "2022-11-21 02:01:55+00:00", "2022-11-21 02:01:56+00:00", "2022-11-21 02:01:58+00:00", "2022-11-21 02:01:59+00:00", "2022-11-21 02:02:01+00:00", "2022-11-21 02:02:02+00:00", "2022-11-21 02:02:04+00:00", "2022-11-21 02:02:05+00:00", "2022-11-21 02:02:07+00:00", "2022-11-21 02:02:08+00:00", "2022-11-21 02:02:10+00:00", "2022-11-21 02:02:11+00:00", "2022-11-21 02:02:13+00:00", "2022-11-21 02:02:14+00:00", "2022-11-21 02:02:16+00:00", "2022-11-21 02:02:17+00:00", "2022-11-21 02:02:19+00:00", "2022-11-21 02:02:20+00:00", "2022-11-21 02:02:22+00:00", "2022-11-21 02:02:23+00:00", "2022-11-21 02:02:25+00:00", "2022-11-21 02:02:26+00:00", "2022-11-21 02:02:28+00:00", "2022-11-21 02:02:29+00:00", "2022-11-21 02:02:31+00:00", "2022-11-21 02:02:32+00:00", "2022-11-21 02:02:34+00:00"]}}, {"type": "Feature", "id": "trace#54", "geometry": {"type": "LineString", "coordinates": [[-83.722418, 32.802873], [-83.722205, 32.802428], [-83.722001, 32.801979], [-83.721809, 32.801527], [-83.721632, 32.801069], [-83.721475, 32.800608], [-83.721337, 32.800143], [-83.721214, 32.799675], [-83.721107, 32.799205], [-83.721015, 32.798731], [-83.720942, 32.798254], [-83.720885, 32.797776], [-83.720838, 32.797328], [-83.720786, 32.796848], [-83.720736, 32.796371], [-83.720685, 32.795893], [-83.720636, 32.795416], [-83.720585, 32.794938], [-83.720534, 32.79446], [-83.720484, 32.793981], [-83.720433, 32.793502], [-83.720383, 32.793023], [-83.720333, 32.792545], [-83.720284, 32.792065], [-83.720235, 32.791587], [-83.720187, 32.791115], [-83.720139, 32.790647], [-83.720092, 32.79018], [-83.720043, 32.789708], [-83.719997, 32.78923], [-83.719947, 32.788751], [-83.719883, 32.788274], [-83.719807, 32.787828], [-83.719692, 32.78736], [-83.719548, 32.786918], [-83.719375, 32.786483], [-83.71917, 32.786058], [-83.718928, 32.785628], [-83.718659, 32.78519], [-83.718391, 32.784767], [-83.718114, 32.784328], [-83.717855, 32.783915], [-83.717604, 32.783517], [-83.717354, 32.783119], [-83.717084, 32.782694], [-83.716834, 32.782296], [-83.716583, 32.781899], [-83.716315, 32.781475], [-83.716045, 32.78105], [-83.715777, 32.780626], [-83.715518, 32.780216], [-83.715259, 32.779807], [-83.71499, 32.779384], [-83.714723, 32.778961], [-83.714456, 32.778537], [-83.71419, 32.778114], [-83.713924, 32.777691], [-83.713656, 32.777267], [-83.713387, 32.776844], [-83.71312, 32.776421], [-83.712853, 32.775998], [-83.712601, 32.7756], [-83.71235, 32.775201], [-83.712082, 32.774775], [-83.711817, 32.77435]]}, "properties": {"filename": "osm-traces-page-51.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/5386639", "track.name": "2022_11_18T22_18_49.561686Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.12 (HYUNDAI PALISADE 2020).", "times": ["2022-11-18 22:19:16+00:00", "2022-11-18 22:19:17+00:00", "2022-11-18 22:19:19+00:00", "2022-11-18 22:19:20+00:00", "2022-11-18 22:19:22+00:00", "2022-11-18 22:19:23+00:00", "2022-11-18 22:19:25+00:00", "2022-11-18 22:19:26+00:00", "2022-11-18 22:19:28+00:00", "2022-11-18 22:19:29+00:00", "2022-11-18 22:19:31+00:00", "2022-11-18 22:19:32+00:00", "2022-11-18 22:19:33+00:00", "2022-11-18 22:19:35+00:00", "2022-11-18 22:19:36+00:00", "2022-11-18 22:19:38+00:00", "2022-11-18 22:19:39+00:00", "2022-11-18 22:19:41+00:00", "2022-11-18 22:19:42+00:00", "2022-11-18 22:19:44+00:00", "2022-11-18 22:19:45+00:00", "2022-11-18 22:19:47+00:00", "2022-11-18 22:19:48+00:00", "2022-11-18 22:19:50+00:00", "2022-11-18 22:19:51+00:00", "2022-11-18 22:19:53+00:00", "2022-11-18 22:19:54+00:00", "2022-11-18 22:19:56+00:00", "2022-11-18 22:19:57+00:00", "2022-11-18 22:19:59+00:00", "2022-11-18 22:20:00+00:00", "2022-11-18 22:20:02+00:00", "2022-11-18 22:20:03+00:00", "2022-11-18 22:20:05+00:00", "2022-11-18 22:20:06+00:00", "2022-11-18 22:20:08+00:00", "2022-11-18 22:20:09+00:00", "2022-11-18 22:20:11+00:00", "2022-11-18 22:20:12+00:00", "2022-11-18 22:20:14+00:00", "2022-11-18 22:20:15+00:00", "2022-11-18 22:20:17+00:00", "2022-11-18 22:20:18+00:00", "2022-11-18 22:20:20+00:00", "2022-11-18 22:20:21+00:00", "2022-11-18 22:20:22+00:00", "2022-11-18 22:20:24+00:00", "2022-11-18 22:20:25+00:00", "2022-11-18 22:20:27+00:00", "2022-11-18 22:20:28+00:00", "2022-11-18 22:20:30+00:00", "2022-11-18 22:20:31+00:00", "2022-11-18 22:20:33+00:00", "2022-11-18 22:20:34+00:00", "2022-11-18 22:20:36+00:00", "2022-11-18 22:20:37+00:00", "2022-11-18 22:20:39+00:00", "2022-11-18 22:20:40+00:00", "2022-11-18 22:20:42+00:00", "2022-11-18 22:20:43+00:00", "2022-11-18 22:20:45+00:00", "2022-11-18 22:20:46+00:00", "2022-11-18 22:20:48+00:00", "2022-11-18 22:20:49+00:00", "2022-11-18 22:20:51+00:00"]}}, {"type": "Feature", "id": "trace#55", "geometry": {"type": "LineString", "coordinates": [[-83.676619, 32.891001], [-83.676315, 32.890618], [-83.676009, 32.890236], [-83.675703, 32.889854], [-83.675396, 32.889474], [-83.675085, 32.889097], [-83.674775, 32.888721], [-83.674463, 32.888344], [-83.674151, 32.887968], [-83.673842, 32.887596], [-83.673519, 32.887207], [-83.673199, 32.88682], [-83.672873, 32.886433], [-83.672542, 32.886045], [-83.672208, 32.885654], [-83.671882, 32.885265], [-83.671565, 32.884883], [-83.671252, 32.884504], [-83.670938, 32.884126], [-83.670625, 32.883749], [-83.670316, 32.883378], [-83.669993, 32.882989], [-83.669671, 32.882601], [-83.669345, 32.882209], [-83.669035, 32.881837], [-83.668721, 32.881461], [-83.668406, 32.881083], [-83.668091, 32.880709], [-83.667778, 32.880344], [-83.66745, 32.87996], [-83.667127, 32.879584], [-83.666808, 32.879213], [-83.666491, 32.878847], [-83.666158, 32.878462], [-83.665829, 32.878079], [-83.665503, 32.877698], [-83.66518, 32.877317], [-83.664859, 32.876934], [-83.664541, 32.876551], [-83.664222, 32.876169], [-83.663902, 32.875786], [-83.663583, 32.875402], [-83.663263, 32.875017], [-83.662942, 32.87463], [-83.662621, 32.874246], [-83.6623, 32.873863], [-83.661979, 32.873479], [-83.661657, 32.873095], [-83.661337, 32.872712], [-83.66102, 32.87233], [-83.660705, 32.87195], [-83.660391, 32.871578], [-83.660072, 32.87121], [-83.659744, 32.870846], [-83.659391, 32.870478], [-83.659022, 32.870118], [-83.658664, 32.869782], [-83.658283, 32.86943], [-83.657901, 32.869083], [-83.657523, 32.868735], [-83.657143, 32.868385], [-83.656776, 32.868048], [-83.656403, 32.867706], [-83.656027, 32.86736], [-83.655649, 32.867013], [-83.655268, 32.866664], [-83.654906, 32.866332], [-83.654538, 32.865994], [-83.654161, 32.865649], [-83.653798, 32.865317], [-83.653427, 32.864976], [-83.653047, 32.864627], [-83.652662, 32.864273], [-83.652293, 32.863942], [-83.6519, 32.863625], [-83.651472, 32.863337], [-83.651013, 32.863083], [-83.650536, 32.862866], [-83.650029, 32.862658], [-83.649535, 32.862458], [-83.649045, 32.862246], [-83.648573, 32.862012], [-83.648086, 32.861779], [-83.647597, 32.861553], [-83.647124, 32.861331], [-83.646652, 32.861097], [-83.646184, 32.860837], [-83.64574, 32.860569], [-83.645292, 32.860286], [-83.644857, 32.86001], [-83.644424, 32.859735], [-83.643983, 32.859455], [-83.643556, 32.859184], [-83.643115, 32.858905], [-83.642675, 32.858623], [-83.642246, 32.858324], [-83.641825, 32.858016], [-83.6414, 32.857711], [-83.640945, 32.857403], [-83.640518, 32.857118], [-83.640091, 32.856828]]}, "properties": {"filename": "osm-traces-page-52.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/5358567", "track.name": "2022_11_12T23_18_31.425070Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.09.30 (HYUNDAI SANTA FE 2019).", "times": ["2022-11-12 23:25:19+00:00", "2022-11-12 23:25:21+00:00", "2022-11-12 23:25:22+00:00", "2022-11-12 23:25:24+00:00", "2022-11-12 23:25:25+00:00", "2022-11-12 23:25:26+00:00", "2022-11-12 23:25:28+00:00", "2022-11-12 23:25:29+00:00", "2022-11-12 23:25:31+00:00", "2022-11-12 23:25:32+00:00", "2022-11-12 23:25:33+00:00", "2022-11-12 23:25:35+00:00", "2022-11-12 23:25:36+00:00", "2022-11-12 23:25:38+00:00", "2022-11-12 23:25:39+00:00", "2022-11-12 23:25:41+00:00", "2022-11-12 23:25:42+00:00", "2022-11-12 23:25:44+00:00", "2022-11-12 23:25:45+00:00", "2022-11-12 23:25:47+00:00", "2022-11-12 23:25:48+00:00", "2022-11-12 23:25:50+00:00", "2022-11-12 23:25:52+00:00", "2022-11-12 23:25:53+00:00", "2022-11-12 23:25:55+00:00", "2022-11-12 23:25:56+00:00", "2022-11-12 23:25:58+00:00", "2022-11-12 23:25:59+00:00", "2022-11-12 23:26:01+00:00", "2022-11-12 23:26:02+00:00", "2022-11-12 23:26:04+00:00", "2022-11-12 23:26:06+00:00", "2022-11-12 23:26:07+00:00", "2022-11-12 23:26:09+00:00", "2022-11-12 23:26:11+00:00", "2022-11-12 23:26:12+00:00", "2022-11-12 23:26:14+00:00", "2022-11-12 23:26:16+00:00", "2022-11-12 23:26:17+00:00", "2022-11-12 23:26:19+00:00", "2022-11-12 23:26:21+00:00", "2022-11-12 23:26:22+00:00", "2022-11-12 23:26:24+00:00", "2022-11-12 23:26:26+00:00", "2022-11-12 23:26:28+00:00", "2022-11-12 23:26:29+00:00", "2022-11-12 23:26:31+00:00", "2022-11-12 23:26:33+00:00", "2022-11-12 23:26:34+00:00", "2022-11-12 23:26:36+00:00", "2022-11-12 23:26:38+00:00", "2022-11-12 23:26:39+00:00", "2022-11-12 23:26:41+00:00", "2022-11-12 23:26:43+00:00", "2022-11-12 23:26:45+00:00", "2022-11-12 23:26:46+00:00", "2022-11-12 23:26:48+00:00", "2022-11-12 23:26:50+00:00", "2022-11-12 23:26:52+00:00", "2022-11-12 23:26:54+00:00", "2022-11-12 23:26:55+00:00", "2022-11-12 23:26:57+00:00", "2022-11-12 23:26:59+00:00", "2022-11-12 23:27:00+00:00", "2022-11-12 23:27:02+00:00", "2022-11-12 23:27:04+00:00", "2022-11-12 23:27:05+00:00", "2022-11-12 23:27:07+00:00", "2022-11-12 23:27:09+00:00", "2022-11-12 23:27:10+00:00", "2022-11-12 23:27:12+00:00", "2022-11-12 23:27:13+00:00", "2022-11-12 23:27:15+00:00", "2022-11-12 23:27:16+00:00", "2022-11-12 23:27:17+00:00", "2022-11-12 23:27:19+00:00", "2022-11-12 23:27:20+00:00", "2022-11-12 23:27:22+00:00", "2022-11-12 23:27:23+00:00", "2022-11-12 23:27:25+00:00", "2022-11-12 23:27:26+00:00", "2022-11-12 23:27:28+00:00", "2022-11-12 23:27:31+00:00", "2022-11-12 23:27:33+00:00", "2022-11-12 23:27:35+00:00", "2022-11-12 23:27:37+00:00", "2022-11-12 23:27:39+00:00", "2022-11-12 23:27:41+00:00", "2022-11-12 23:27:43+00:00", "2022-11-12 23:27:45+00:00", "2022-11-12 23:27:47+00:00", "2022-11-12 23:27:49+00:00", "2022-11-12 23:27:51+00:00", "2022-11-12 23:27:53+00:00", "2022-11-12 23:27:55+00:00", "2022-11-12 23:27:57+00:00", "2022-11-12 23:27:59+00:00", "2022-11-12 23:28:01+00:00", "2022-11-12 23:28:04+00:00", "2022-11-12 23:28:06+00:00", "2022-11-12 23:28:08+00:00"]}}, {"type": "Feature", "id": "trace#56", "geometry": {"type": "LineString", "coordinates": [[-83.711272, 32.774116], [-83.711523, 32.774521], [-83.711775, 32.774924], [-83.712027, 32.775326], [-83.712282, 32.775729], [-83.712537, 32.776131], [-83.712791, 32.776533], [-83.713044, 32.776934], [-83.7133, 32.777334], [-83.713554, 32.777735], [-83.713808, 32.778136], [-83.714062, 32.778537], [-83.714315, 32.778938], [-83.714568, 32.779339], [-83.714822, 32.779738], [-83.715075, 32.780139], [-83.715329, 32.78054], [-83.715583, 32.780943], [-83.715837, 32.781345], [-83.716091, 32.781749], [-83.716346, 32.782153], [-83.716601, 32.782557], [-83.716854, 32.78296], [-83.717108, 32.783363], [-83.717364, 32.783768], [-83.717619, 32.784172], [-83.717874, 32.784576], [-83.718128, 32.78498], [-83.71838, 32.785385], [-83.718628, 32.785792], [-83.718861, 32.786206], [-83.719065, 32.786628], [-83.719235, 32.787058], [-83.719382, 32.787523], [-83.719496, 32.787992], [-83.719573, 32.788463], [-83.719627, 32.788936], [-83.719676, 32.789407], [-83.719724, 32.789879], [-83.719774, 32.790353], [-83.719823, 32.790828], [-83.719872, 32.791306], [-83.719918, 32.791758], [-83.719965, 32.792212], [-83.720012, 32.792668], [-83.720058, 32.793124], [-83.720105, 32.793577], [-83.720152, 32.794033], [-83.720198, 32.794487], [-83.720245, 32.794943], [-83.720291, 32.795397], [-83.720339, 32.795851], [-83.720386, 32.796304], [-83.720432, 32.796758], [-83.720479, 32.797211], [-83.72053, 32.797663], [-83.72059, 32.798116], [-83.720667, 32.798569], [-83.72076, 32.799017], [-83.720869, 32.799461], [-83.721, 32.799928], [-83.721146, 32.800388], [-83.721308, 32.800839], [-83.721486, 32.801283], [-83.721676, 32.801716], [-83.721876, 32.802143], [-83.722077, 32.802565], [-83.722279, 32.802983]]}, "properties": {"filename": "osm-traces-page-52.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/5337783", "track.name": "2022_11_12T12_08_28.386156Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.09.30 (HYUNDAI SANTA FE 2019).", "times": ["2022-11-12 12:16:37+00:00", "2022-11-12 12:16:39+00:00", "2022-11-12 12:16:40+00:00", "2022-11-12 12:16:41+00:00", "2022-11-12 12:16:43+00:00", "2022-11-12 12:16:44+00:00", "2022-11-12 12:16:46+00:00", "2022-11-12 12:16:47+00:00", "2022-11-12 12:16:48+00:00", "2022-11-12 12:16:50+00:00", "2022-11-12 12:16:51+00:00", "2022-11-12 12:16:53+00:00", "2022-11-12 12:16:54+00:00", "2022-11-12 12:16:55+00:00", "2022-11-12 12:16:57+00:00", "2022-11-12 12:16:58+00:00", "2022-11-12 12:17:00+00:00", "2022-11-12 12:17:01+00:00", "2022-11-12 12:17:02+00:00", "2022-11-12 12:17:04+00:00", "2022-11-12 12:17:05+00:00", "2022-11-12 12:17:07+00:00", "2022-11-12 12:17:08+00:00", "2022-11-12 12:17:09+00:00", "2022-11-12 12:17:11+00:00", "2022-11-12 12:17:12+00:00", "2022-11-12 12:17:14+00:00", "2022-11-12 12:17:15+00:00", "2022-11-12 12:17:16+00:00", "2022-11-12 12:17:18+00:00", "2022-11-12 12:17:19+00:00", "2022-11-12 12:17:21+00:00", "2022-11-12 12:17:22+00:00", "2022-11-12 12:17:23+00:00", "2022-11-12 12:17:25+00:00", "2022-11-12 12:17:26+00:00", "2022-11-12 12:17:28+00:00", "2022-11-12 12:17:29+00:00", "2022-11-12 12:17:31+00:00", "2022-11-12 12:17:32+00:00", "2022-11-12 12:17:34+00:00", "2022-11-12 12:17:35+00:00", "2022-11-12 12:17:37+00:00", "2022-11-12 12:17:38+00:00", "2022-11-12 12:17:40+00:00", "2022-11-12 12:17:41+00:00", "2022-11-12 12:17:42+00:00", "2022-11-12 12:17:44+00:00", "2022-11-12 12:17:45+00:00", "2022-11-12 12:17:47+00:00", "2022-11-12 12:17:48+00:00", "2022-11-12 12:17:49+00:00", "2022-11-12 12:17:51+00:00", "2022-11-12 12:17:52+00:00", "2022-11-12 12:17:54+00:00", "2022-11-12 12:17:55+00:00", "2022-11-12 12:17:56+00:00", "2022-11-12 12:17:58+00:00", "2022-11-12 12:17:59+00:00", "2022-11-12 12:18:01+00:00", "2022-11-12 12:18:02+00:00", "2022-11-12 12:18:04+00:00", "2022-11-12 12:18:05+00:00", "2022-11-12 12:18:07+00:00", "2022-11-12 12:18:08+00:00", "2022-11-12 12:18:10+00:00", "2022-11-12 12:18:11+00:00", "2022-11-12 12:18:13+00:00"]}}, {"type": "Feature", "id": "trace#57", "geometry": {"type": "LineString", "coordinates": [[-83.631219, 32.851966], [-83.631609, 32.852311], [-83.631996, 32.852649], [-83.632369, 32.852975], [-83.632754, 32.853314], [-83.633149, 32.853649], [-83.633563, 32.853968], [-83.633987, 32.854269], [-83.634407, 32.854565], [-83.634828, 32.854857], [-83.635253, 32.855147], [-83.635678, 32.855433], [-83.636107, 32.855716], [-83.636538, 32.855991], [-83.636995, 32.856275], [-83.637443, 32.856555], [-83.637882, 32.85683], [-83.638313, 32.8571], [-83.638763, 32.857382], [-83.639208, 32.857658], [-83.639652, 32.857935], [-83.640095, 32.85822], [-83.640511, 32.858517], [-83.640913, 32.858821], [-83.641311, 32.859122], [-83.641731, 32.859432], [-83.64216, 32.859702], [-83.642627, 32.859941], [-83.643118, 32.860159], [-83.643611, 32.860365], [-83.644101, 32.860565], [-83.644605, 32.860773], [-83.645092, 32.860967], [-83.645591, 32.861147], [-83.646106, 32.861326], [-83.646614, 32.861515], [-83.647107, 32.861709], [-83.647615, 32.861911], [-83.648118, 32.862114]]}, "properties": {"filename": "osm-traces-page-53.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/5189433", "track.name": "2022_10_23T22_36_34.927790Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.09.30 (HONDA CIVIC 2022).", "times": ["2022-10-23 22:36:34+00:00", "2022-10-23 22:36:36+00:00", "2022-10-23 22:36:38+00:00", "2022-10-23 22:36:39+00:00", "2022-10-23 22:36:41+00:00", "2022-10-23 22:36:43+00:00", "2022-10-23 22:36:44+00:00", "2022-10-23 22:36:46+00:00", "2022-10-23 22:36:47+00:00", "2022-10-23 22:36:49+00:00", "2022-10-23 22:36:51+00:00", "2022-10-23 22:36:52+00:00", "2022-10-23 22:36:54+00:00", "2022-10-23 22:36:55+00:00", "2022-10-23 22:36:57+00:00", "2022-10-23 22:36:59+00:00", "2022-10-23 22:37:00+00:00", "2022-10-23 22:37:02+00:00", "2022-10-23 22:37:04+00:00", "2022-10-23 22:37:06+00:00", "2022-10-23 22:37:08+00:00", "2022-10-23 22:37:10+00:00", "2022-10-23 22:37:12+00:00", "2022-10-23 22:37:15+00:00", "2022-10-23 22:37:17+00:00", "2022-10-23 22:37:20+00:00", "2022-10-23 22:37:22+00:00", "2022-10-23 22:37:24+00:00", "2022-10-23 22:37:26+00:00", "2022-10-23 22:37:29+00:00", "2022-10-23 22:37:31+00:00", "2022-10-23 22:37:33+00:00", "2022-10-23 22:37:34+00:00", "2022-10-23 22:37:36+00:00", "2022-10-23 22:37:38+00:00", "2022-10-23 22:37:40+00:00", "2022-10-23 22:37:42+00:00", "2022-10-23 22:37:44+00:00", "2022-10-23 22:37:46+00:00"]}}, {"type": "Feature", "id": "trace#58", "geometry": {"type": "LineString", "coordinates": [[-83.585694, 32.817722], [-83.586143, 32.817979], [-83.586592, 32.818236], [-83.587041, 32.818492], [-83.587489, 32.818748], [-83.587938, 32.819005], [-83.588386, 32.81926], [-83.588833, 32.819514], [-83.589281, 32.81977], [-83.589732, 32.820028], [-83.590186, 32.820288], [-83.59064, 32.820547], [-83.591093, 32.820807], [-83.591547, 32.821068], [-83.592003, 32.821328], [-83.592462, 32.821591], [-83.59292, 32.821852], [-83.593379, 32.822115], [-83.593839, 32.822378], [-83.594299, 32.822642], [-83.594756, 32.822904], [-83.595206, 32.823162], [-83.595649, 32.823418], [-83.596094, 32.823674], [-83.596537, 32.82393], [-83.596981, 32.824185], [-83.597423, 32.824439], [-83.597865, 32.824694], [-83.59834, 32.824966], [-83.598812, 32.825237], [-83.599289, 32.82551], [-83.599764, 32.825783], [-83.600203, 32.826042], [-83.600636, 32.82631], [-83.601061, 32.826589], [-83.601475, 32.826878], [-83.601881, 32.827179], [-83.602276, 32.827489], [-83.602667, 32.827808], [-83.603053, 32.828131], [-83.603439, 32.828454], [-83.603826, 32.828778], [-83.604213, 32.829102], [-83.604599, 32.829426], [-83.604982, 32.829746], [-83.605388, 32.830085], [-83.605792, 32.830422], [-83.60619, 32.830754], [-83.606589, 32.831086], [-83.606988, 32.831421], [-83.607386, 32.831754], [-83.607782, 32.832085], [-83.608172, 32.832414], [-83.608565, 32.832746], [-83.608958, 32.833076], [-83.609356, 32.83341], [-83.609757, 32.833747], [-83.610159, 32.834084], [-83.610562, 32.834422], [-83.610964, 32.834759], [-83.611369, 32.835098], [-83.611772, 32.835437], [-83.612176, 32.835776], [-83.61258, 32.836114], [-83.612984, 32.836448], [-83.613401, 32.836777], [-83.613831, 32.837088], [-83.614278, 32.837382], [-83.614742, 32.837655], [-83.615215, 32.83791], [-83.6157, 32.838146], [-83.616194, 32.838364], [-83.616692, 32.838577], [-83.617189, 32.838789], [-83.617687, 32.839006], [-83.618177, 32.83923], [-83.618662, 32.839468], [-83.619127, 32.839714], [-83.619573, 32.839967], [-83.620026, 32.84024], [-83.620461, 32.840517], [-83.620881, 32.840802], [-83.621311, 32.841115], [-83.621729, 32.841439], [-83.622133, 32.841771], [-83.62252, 32.842108], [-83.62289, 32.84245], [-83.623242, 32.842797], [-83.623597, 32.843168], [-83.623935, 32.843544], [-83.624257, 32.843923], [-83.62456, 32.844306], [-83.624845, 32.844689], [-83.625129, 32.845098], [-83.625399, 32.845511], [-83.625662, 32.845933], [-83.625911, 32.846337], [-83.626162, 32.846742], [-83.626417, 32.847146], [-83.626692, 32.847544], [-83.626996, 32.847931]]}, "properties": {"filename": "osm-traces-page-54.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/5189381", "track.name": "2022_10_23T22_26_34.923953Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.09.30 (HONDA CIVIC 2022).", "times": ["2022-10-23 22:33:53+00:00", "2022-10-23 22:33:54+00:00", "2022-10-23 22:33:56+00:00", "2022-10-23 22:33:57+00:00", "2022-10-23 22:33:58+00:00", "2022-10-23 22:33:59+00:00", "2022-10-23 22:34:01+00:00", "2022-10-23 22:34:02+00:00", "2022-10-23 22:34:03+00:00", "2022-10-23 22:34:05+00:00", "2022-10-23 22:34:06+00:00", "2022-10-23 22:34:07+00:00", "2022-10-23 22:34:09+00:00", "2022-10-23 22:34:10+00:00", "2022-10-23 22:34:11+00:00", "2022-10-23 22:34:12+00:00", "2022-10-23 22:34:14+00:00", "2022-10-23 22:34:15+00:00", "2022-10-23 22:34:16+00:00", "2022-10-23 22:34:18+00:00", "2022-10-23 22:34:19+00:00", "2022-10-23 22:34:20+00:00", "2022-10-23 22:34:22+00:00", "2022-10-23 22:34:23+00:00", "2022-10-23 22:34:24+00:00", "2022-10-23 22:34:25+00:00", "2022-10-23 22:34:27+00:00", "2022-10-23 22:34:28+00:00", "2022-10-23 22:34:29+00:00", "2022-10-23 22:34:31+00:00", "2022-10-23 22:34:32+00:00", "2022-10-23 22:34:34+00:00", "2022-10-23 22:34:35+00:00", "2022-10-23 22:34:36+00:00", "2022-10-23 22:34:38+00:00", "2022-10-23 22:34:39+00:00", "2022-10-23 22:34:40+00:00", "2022-10-23 22:34:41+00:00", "2022-10-23 22:34:43+00:00", "2022-10-23 22:34:44+00:00", "2022-10-23 22:34:45+00:00", "2022-10-23 22:34:47+00:00", "2022-10-23 22:34:48+00:00", "2022-10-23 22:34:49+00:00", "2022-10-23 22:34:51+00:00", "2022-10-23 22:34:52+00:00", "2022-10-23 22:34:53+00:00", "2022-10-23 22:34:55+00:00", "2022-10-23 22:34:56+00:00", "2022-10-23 22:34:58+00:00", "2022-10-23 22:34:59+00:00", "2022-10-23 22:35:00+00:00", "2022-10-23 22:35:02+00:00", "2022-10-23 22:35:03+00:00", "2022-10-23 22:35:05+00:00", "2022-10-23 22:35:06+00:00", "2022-10-23 22:35:07+00:00", "2022-10-23 22:35:09+00:00", "2022-10-23 22:35:10+00:00", "2022-10-23 22:35:12+00:00", "2022-10-23 22:35:13+00:00", "2022-10-23 22:35:14+00:00", "2022-10-23 22:35:16+00:00", "2022-10-23 22:35:17+00:00", "2022-10-23 22:35:19+00:00", "2022-10-23 22:35:20+00:00", "2022-10-23 22:35:21+00:00", "2022-10-23 22:35:23+00:00", "2022-10-23 22:35:24+00:00", "2022-10-23 22:35:26+00:00", "2022-10-23 22:35:27+00:00", "2022-10-23 22:35:28+00:00", "2022-10-23 22:35:30+00:00", "2022-10-23 22:35:31+00:00", "2022-10-23 22:35:33+00:00", "2022-10-23 22:35:34+00:00", "2022-10-23 22:35:35+00:00", "2022-10-23 22:35:37+00:00", "2022-10-23 22:35:38+00:00", "2022-10-23 22:35:40+00:00", "2022-10-23 22:35:41+00:00", "2022-10-23 22:35:43+00:00", "2022-10-23 22:35:44+00:00", "2022-10-23 22:35:46+00:00", "2022-10-23 22:35:48+00:00", "2022-10-23 22:35:49+00:00", "2022-10-23 22:35:51+00:00", "2022-10-23 22:35:52+00:00", "2022-10-23 22:35:54+00:00", "2022-10-23 22:35:56+00:00", "2022-10-23 22:35:57+00:00", "2022-10-23 22:35:59+00:00", "2022-10-23 22:36:01+00:00", "2022-10-23 22:36:03+00:00", "2022-10-23 22:36:04+00:00", "2022-10-23 22:36:06+00:00", "2022-10-23 22:36:08+00:00", "2022-10-23 22:36:10+00:00", "2022-10-23 22:36:11+00:00", "2022-10-23 22:36:13+00:00", "2022-10-23 22:36:15+00:00"]}}, {"type": "Feature", "id": "trace#59", "geometry": {"type": "LineString", "coordinates": [[-83.627325, 32.848304], [-83.627682, 32.848661], [-83.628059, 32.849011], [-83.628431, 32.849367], [-83.628802, 32.849718], [-83.629174, 32.850068], [-83.62954, 32.850415], [-83.629907, 32.85076], [-83.630272, 32.851102], [-83.630636, 32.85144], [-83.631013, 32.851783]]}, "properties": {"filename": "osm-traces-page-54.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/5189381", "track.name": "2022_10_23T22_26_34.923953Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.09.30 (HONDA CIVIC 2022).", "times": ["2022-10-23 22:36:16+00:00", "2022-10-23 22:36:18+00:00", "2022-10-23 22:36:20+00:00", "2022-10-23 22:36:22+00:00", "2022-10-23 22:36:23+00:00", "2022-10-23 22:36:25+00:00", "2022-10-23 22:36:27+00:00", "2022-10-23 22:36:28+00:00", "2022-10-23 22:36:30+00:00", "2022-10-23 22:36:32+00:00", "2022-10-23 22:36:33+00:00"]}}, {"type": "Feature", "id": "trace#60", "geometry": {"type": "LineString", "coordinates": [[-83.6642, 32.842171], [-83.664749, 32.842377], [-83.66526, 32.842598], [-83.665741, 32.842834], [-83.666229, 32.843098], [-83.666702, 32.843407], [-83.667175, 32.843761], [-83.667618, 32.844097], [-83.668068, 32.844433], [-83.668533, 32.844769], [-83.669029, 32.845093], [-83.669571, 32.845341], [-83.670082, 32.845501], [-83.670662, 32.845657], [-83.671219, 32.845821], [-83.671761, 32.845947], [-83.672348, 32.846031], [-83.672928, 32.84602], [-83.67347, 32.846012], [-83.673973, 32.84623], [-83.674377, 32.846539], [-83.674843, 32.846867], [-83.675262, 32.847153], [-83.675774, 32.847469], [-83.676216, 32.847733], [-83.67672, 32.848015], [-83.677231, 32.848297], [-83.677742, 32.848587], [-83.678192, 32.84885], [-83.678673, 32.849125], [-83.6791, 32.849438], [-83.679596, 32.849247], [-83.679764, 32.848808], [-83.679565, 32.849232], [-83.679314, 32.849651], [-83.679688, 32.850037], [-83.680069, 32.850418], [-83.68045, 32.8508], [-83.68084, 32.851196], [-83.681198, 32.851585], [-83.681389, 32.852051], [-83.681442, 32.852501], [-83.681808, 32.852837], [-83.682426, 32.85284], [-83.683022, 32.852833], [-83.683594, 32.852852], [-83.684135, 32.852856], [-83.684685, 32.852856], [-83.68528, 32.852863], [-83.685852, 32.852859], [-83.686394, 32.852875], [-83.686996, 32.852882], [-83.687576, 32.852882], [-83.688148, 32.852894], [-83.688713, 32.852905], [-83.689293, 32.852913], [-83.689857, 32.852921], [-83.689987, 32.853401], [-83.689926, 32.853851], [-83.689911, 32.854328], [-83.689888, 32.85479], [-83.68988, 32.855293], [-83.689873, 32.855774], [-83.689873, 32.856224], [-83.690376, 32.856411], [-83.690926, 32.856411], [-83.691498, 32.856426], [-83.692039, 32.85643], [-83.692581, 32.85643], [-83.693192, 32.856434], [-83.693741, 32.856438], [-83.694283, 32.856441], [-83.694885, 32.856453], [-83.69545, 32.856464], [-83.695724, 32.856903], [-83.695717, 32.857357], [-83.69574, 32.857853], [-83.695747, 32.858368], [-83.695732, 32.858849], [-83.696213, 32.859138], [-83.696785, 32.859146], [-83.696945, 32.859581], [-83.696907, 32.860069], [-83.696861, 32.860596], [-83.696846, 32.861065], [-83.697098, 32.861546], [-83.697235, 32.862072], [-83.697205, 32.862583], [-83.696953, 32.862999], [-83.696381, 32.862968], [-83.696442, 32.863438], [-83.696869, 32.863804], [-83.697319, 32.864162], [-83.697685, 32.864567], [-83.697975, 32.864994], [-83.698196, 32.865463], [-83.698647, 32.865726], [-83.699142, 32.865475], [-83.699135, 32.864971], [-83.699142, 32.86451], [-83.69915, 32.864006]]}, "properties": {"filename": "osm-traces-page-54.gpx", "track.number": 2, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2022-10-16 14:49:25+00:00", "2022-10-16 14:49:32+00:00", "2022-10-16 14:49:38+00:00", "2022-10-16 14:49:44+00:00", "2022-10-16 14:49:50+00:00", "2022-10-16 14:49:56+00:00", "2022-10-16 14:50:02+00:00", "2022-10-16 14:50:08+00:00", "2022-10-16 14:50:14+00:00", "2022-10-16 14:50:20+00:00", "2022-10-16 14:50:26+00:00", "2022-10-16 14:50:32+00:00", "2022-10-16 14:50:38+00:00", "2022-10-16 14:50:45+00:00", "2022-10-16 14:50:52+00:00", "2022-10-16 14:50:59+00:00", "2022-10-16 14:51:08+00:00", "2022-10-16 14:51:18+00:00", "2022-10-16 14:51:28+00:00", "2022-10-16 14:51:39+00:00", "2022-10-16 14:51:47+00:00", "2022-10-16 14:51:55+00:00", "2022-10-16 14:52:02+00:00", "2022-10-16 14:52:09+00:00", "2022-10-16 14:52:15+00:00", "2022-10-16 14:52:22+00:00", "2022-10-16 14:52:29+00:00", "2022-10-16 14:52:37+00:00", "2022-10-16 14:52:45+00:00", "2022-10-16 14:52:54+00:00", "2022-10-16 14:53:04+00:00", "2022-10-16 14:53:13+00:00", "2022-10-16 14:53:41+00:00", "2022-10-16 14:54:37+00:00", "2022-10-16 14:54:50+00:00", "2022-10-16 14:54:59+00:00", "2022-10-16 14:55:07+00:00", "2022-10-16 14:55:14+00:00", "2022-10-16 14:55:21+00:00", "2022-10-16 14:55:28+00:00", "2022-10-16 14:55:35+00:00", "2022-10-16 14:55:42+00:00", "2022-10-16 14:55:55+00:00", "2022-10-16 14:56:03+00:00", "2022-10-16 14:56:11+00:00", "2022-10-16 14:56:20+00:00", "2022-10-16 14:56:29+00:00", "2022-10-16 14:56:38+00:00", "2022-10-16 14:56:46+00:00", "2022-10-16 14:56:53+00:00", "2022-10-16 14:56:59+00:00", "2022-10-16 14:57:06+00:00", "2022-10-16 14:57:15+00:00", "2022-10-16 14:57:31+00:00", "2022-10-16 14:57:40+00:00", "2022-10-16 14:57:48+00:00", "2022-10-16 14:57:56+00:00", "2022-10-16 14:58:07+00:00", "2022-10-16 14:58:14+00:00", "2022-10-16 14:58:21+00:00", "2022-10-16 14:58:28+00:00", "2022-10-16 14:58:36+00:00", "2022-10-16 14:58:43+00:00", "2022-10-16 14:58:50+00:00", "2022-10-16 14:58:59+00:00", "2022-10-16 14:59:04+00:00", "2022-10-16 14:59:09+00:00", "2022-10-16 14:59:16+00:00", "2022-10-16 14:59:25+00:00", "2022-10-16 14:59:33+00:00", "2022-10-16 14:59:40+00:00", "2022-10-16 14:59:46+00:00", "2022-10-16 14:59:53+00:00", "2022-10-16 15:00:04+00:00", "2022-10-16 15:00:17+00:00", "2022-10-16 15:00:25+00:00", "2022-10-16 15:00:33+00:00", "2022-10-16 15:00:40+00:00", "2022-10-16 15:00:48+00:00", "2022-10-16 15:01:09+00:00", "2022-10-16 15:01:16+00:00", "2022-10-16 15:01:24+00:00", "2022-10-16 15:01:30+00:00", "2022-10-16 15:01:35+00:00", "2022-10-16 15:01:39+00:00", "2022-10-16 15:01:44+00:00", "2022-10-16 15:01:49+00:00", "2022-10-16 15:01:55+00:00", "2022-10-16 15:02:08+00:00", "2022-10-16 15:02:18+00:00", "2022-10-16 15:02:39+00:00", "2022-10-16 15:02:46+00:00", "2022-10-16 15:02:53+00:00", "2022-10-16 15:03:00+00:00", "2022-10-16 15:03:07+00:00", "2022-10-16 15:03:14+00:00", "2022-10-16 15:03:28+00:00", "2022-10-16 15:03:37+00:00", "2022-10-16 15:03:43+00:00", "2022-10-16 15:03:48+00:00", "2022-10-16 15:03:54+00:00"]}}, {"type": "Feature", "id": "trace#61", "geometry": {"type": "LineString", "coordinates": [[-83.638145, 32.838951], [-83.638664, 32.839146], [-83.638687, 32.839603], [-83.638115, 32.839573], [-83.637604, 32.839436], [-83.637276, 32.839832], [-83.637115, 32.840267], [-83.636917, 32.840698], [-83.636795, 32.841137], [-83.636589, 32.841553], [-83.636421, 32.841984], [-83.636238, 32.842434], [-83.63604, 32.842869], [-83.635849, 32.843338], [-83.635284, 32.8433], [-83.634834, 32.843029], [-83.634415, 32.84272], [-83.634026, 32.842361], [-83.633682, 32.841988], [-83.634064, 32.841663], [-83.634163, 32.841209], [-83.633743, 32.84087], [-83.633163, 32.840702], [-83.632584, 32.840538], [-83.632034, 32.84024], [-83.631546, 32.839947], [-83.631081, 32.839657], [-83.630585, 32.839386], [-83.630089, 32.839096], [-83.629639, 32.838814], [-83.62915, 32.838501], [-83.62867, 32.838215], [-83.62822, 32.837933], [-83.627731, 32.837643], [-83.627228, 32.837341], [-83.626778, 32.837082], [-83.626862, 32.836617], [-83.62722, 32.836205], [-83.627579, 32.835815], [-83.627899, 32.835423], [-83.628242, 32.835026], [-83.628609, 32.834621], [-83.628639, 32.834164], [-83.628181, 32.833908], [-83.627724, 32.833641], [-83.627213, 32.833401], [-83.626671, 32.833138], [-83.626205, 32.832867], [-83.625748, 32.832615], [-83.625305, 32.832329], [-83.624832, 32.83202], [-83.624336, 32.831745], [-83.624123, 32.832207], [-83.623817, 32.832615], [-83.623489, 32.833004], [-83.623833, 32.832642], [-83.624168, 32.832226], [-83.624229, 32.83176], [-83.623695, 32.831852], [-83.623375, 32.832218], [-83.623055, 32.832607], [-83.622749, 32.832985], [-83.622437, 32.833359], [-83.622086, 32.833744], [-83.621704, 32.834137], [-83.621376, 32.834553], [-83.621025, 32.834957], [-83.620689, 32.835327], [-83.620132, 32.835136], [-83.619667, 32.834866], [-83.619118, 32.834763], [-83.618698, 32.835072], [-83.618172, 32.835159], [-83.617714, 32.834885], [-83.61805, 32.835239], [-83.617592, 32.835545], [-83.61705, 32.835522], [-83.616524, 32.835258], [-83.616066, 32.834991], [-83.616173, 32.835445], [-83.616417, 32.835854], [-83.616829, 32.836151], [-83.61731, 32.836452], [-83.617775, 32.836731], [-83.618217, 32.836987], [-83.618668, 32.837246], [-83.619171, 32.837479], [-83.619621, 32.837727], [-83.620079, 32.838036], [-83.620537, 32.83831], [-83.621078, 32.838394], [-83.620651, 32.838696], [-83.620338, 32.839115], [-83.620155, 32.839539], [-83.620567, 32.839844], [-83.620384, 32.839405], [-83.619934, 32.839108], [-83.619461, 32.83886], [-83.619003, 32.838615], [-83.618492, 32.838379], [-83.617989, 32.838108]]}, "properties": {"filename": "osm-traces-page-56.gpx", "track.number": 0, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 0, "track.description": null, "times": ["2022-10-14 14:48:14+00:00", "2022-10-14 14:48:23+00:00", "2022-10-14 14:48:34+00:00", "2022-10-14 14:48:42+00:00", "2022-10-14 14:48:47+00:00", "2022-10-14 14:48:55+00:00", "2022-10-14 14:49:08+00:00", "2022-10-14 14:49:27+00:00", "2022-10-14 14:50:34+00:00", "2022-10-14 14:51:06+00:00", "2022-10-14 14:51:17+00:00", "2022-10-14 14:51:27+00:00", "2022-10-14 14:51:35+00:00", "2022-10-14 14:51:42+00:00", "2022-10-14 14:51:55+00:00", "2022-10-14 14:52:04+00:00", "2022-10-14 14:52:13+00:00", "2022-10-14 14:52:22+00:00", "2022-10-14 14:52:49+00:00", "2022-10-14 14:53:52+00:00", "2022-10-14 14:54:00+00:00", "2022-10-14 14:55:30+00:00", "2022-10-14 14:55:36+00:00", "2022-10-14 14:55:41+00:00", "2022-10-14 14:55:46+00:00", "2022-10-14 14:55:51+00:00", "2022-10-14 14:56:07+00:00", "2022-10-14 14:56:15+00:00", "2022-10-14 14:56:21+00:00", "2022-10-14 14:56:26+00:00", "2022-10-14 14:56:31+00:00", "2022-10-14 14:56:36+00:00", "2022-10-14 14:56:42+00:00", "2022-10-14 14:56:49+00:00", "2022-10-14 14:56:56+00:00", "2022-10-14 14:57:02+00:00", "2022-10-14 14:57:10+00:00", "2022-10-14 14:57:17+00:00", "2022-10-14 14:57:58+00:00", "2022-10-14 14:58:05+00:00", "2022-10-14 14:58:12+00:00", "2022-10-14 14:58:19+00:00", "2022-10-14 14:58:31+00:00", "2022-10-14 14:58:40+00:00", "2022-10-14 14:58:48+00:00", "2022-10-14 15:00:11+00:00", "2022-10-14 15:00:18+00:00", "2022-10-14 15:00:24+00:00", "2022-10-14 15:00:33+00:00", "2022-10-14 15:00:55+00:00", "2022-10-14 15:01:01+00:00", "2022-10-14 15:01:07+00:00", "2022-10-14 15:01:22+00:00", "2022-10-14 15:01:32+00:00", "2022-10-14 15:01:43+00:00", "2022-10-14 15:02:00+00:00", "2022-10-14 15:02:08+00:00", "2022-10-14 15:02:19+00:00", "2022-10-14 15:02:31+00:00", "2022-10-14 15:02:38+00:00", "2022-10-14 15:02:45+00:00", "2022-10-14 15:02:52+00:00", "2022-10-14 15:03:02+00:00", "2022-10-14 15:03:11+00:00", "2022-10-14 15:03:19+00:00", "2022-10-14 15:03:27+00:00", "2022-10-14 15:03:35+00:00", "2022-10-14 15:03:43+00:00", "2022-10-14 15:04:01+00:00", "2022-10-14 15:04:08+00:00", "2022-10-14 15:04:21+00:00", "2022-10-14 15:04:29+00:00", "2022-10-14 15:04:36+00:00", "2022-10-14 15:04:44+00:00", "2022-10-14 15:05:14+00:00", "2022-10-14 15:05:24+00:00", "2022-10-14 15:05:31+00:00", "2022-10-14 15:05:39+00:00", "2022-10-14 15:05:46+00:00", "2022-10-14 15:06:05+00:00", "2022-10-14 15:06:18+00:00", "2022-10-14 15:06:25+00:00", "2022-10-14 15:06:33+00:00", "2022-10-14 15:06:42+00:00", "2022-10-14 15:06:51+00:00", "2022-10-14 15:07:01+00:00", "2022-10-14 15:07:10+00:00", "2022-10-14 15:08:25+00:00", "2022-10-14 15:08:35+00:00", "2022-10-14 15:08:44+00:00", "2022-10-14 15:08:55+00:00", "2022-10-14 15:09:25+00:00", "2022-10-14 15:09:35+00:00", "2022-10-14 15:09:45+00:00", "2022-10-14 15:09:56+00:00", "2022-10-14 15:10:16+00:00", "2022-10-14 15:10:26+00:00", "2022-10-14 15:10:36+00:00", "2022-10-14 15:10:45+00:00", "2022-10-14 15:10:52+00:00", "2022-10-14 15:11:00+00:00"]}}, {"type": "Feature", "id": "trace#62", "geometry": {"type": "LineString", "coordinates": [[-83.646246, 32.840765], [-83.646557, 32.840371], [-83.646856, 32.839995], [-83.64716, 32.839617], [-83.647478, 32.839223], [-83.647787, 32.83884], [-83.648089, 32.838462], [-83.648391, 32.838082], [-83.648696, 32.837704], [-83.648999, 32.837325], [-83.649304, 32.836947], [-83.649609, 32.836565], [-83.649921, 32.836178], [-83.650233, 32.835786], [-83.650544, 32.835397], [-83.650852, 32.835012], [-83.651162, 32.834629], [-83.651475, 32.834242], [-83.651783, 32.833852], [-83.652097, 32.833458], [-83.652412, 32.833067], [-83.652726, 32.832681], [-83.653038, 32.832294], [-83.653352, 32.831901], [-83.653668, 32.831506], [-83.653983, 32.831117], [-83.654296, 32.830732], [-83.654608, 32.830342], [-83.654921, 32.829948], [-83.655223, 32.829573], [-83.655531, 32.829188], [-83.655843, 32.828794], [-83.656143, 32.828399], [-83.656418, 32.82799], [-83.656654, 32.827557], [-83.656844, 32.827131], [-83.656999, 32.826689], [-83.657114, 32.826235], [-83.657191, 32.825773], [-83.657232, 32.825314], [-83.657232, 32.824852], [-83.657191, 32.824389], [-83.65711, 32.823928], [-83.656986, 32.823467], [-83.65683, 32.823014], [-83.656667, 32.822567], [-83.656508, 32.822123], [-83.656349, 32.821686], [-83.656204, 32.821249], [-83.656082, 32.820782], [-83.655995, 32.820315], [-83.655943, 32.819843], [-83.655925, 32.819368], [-83.655926, 32.818891], [-83.655932, 32.818439], [-83.655936, 32.817987], [-83.655941, 32.817534], [-83.655946, 32.817081], [-83.655951, 32.816627], [-83.655955, 32.81617], [-83.655961, 32.815714], [-83.655966, 32.815257], [-83.65597, 32.814799], [-83.655977, 32.814337], [-83.655985, 32.813873], [-83.65599, 32.813406], [-83.655997, 32.812935], [-83.656014, 32.812462], [-83.656048, 32.811987], [-83.6561, 32.81151], [-83.65617, 32.811033], [-83.656253, 32.810561], [-83.656356, 32.810092], [-83.656473, 32.809627], [-83.656608, 32.809164], [-83.65676, 32.808705], [-83.656924, 32.808248], [-83.657092, 32.807792], [-83.657257, 32.807333], [-83.657424, 32.806876], [-83.657591, 32.806417], [-83.657757, 32.805959], [-83.657923, 32.8055], [-83.658091, 32.805042], [-83.658258, 32.804583], [-83.658426, 32.804124], [-83.658593, 32.803664], [-83.658752, 32.803234], [-83.658909, 32.802804], [-83.659066, 32.802373], [-83.659222, 32.801942], [-83.659382, 32.801512], [-83.659549, 32.801085], [-83.659749, 32.800634], [-83.659975, 32.800194], [-83.660223, 32.799763], [-83.660492, 32.799342], [-83.660787, 32.798934], [-83.661102, 32.798538], [-83.661436, 32.798156], [-83.661792, 32.797787]]}, "properties": {"filename": "osm-traces-page-57.gpx", "track.number": 0, "track.link": "/user/dragonpilot/traces/5163573", "track.name": "1970_01_01T01_45_30.209710Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-10-15 10:19:14+00:00", "2022-10-15 10:19:15+00:00", "2022-10-15 10:19:17+00:00", "2022-10-15 10:19:18+00:00", "2022-10-15 10:19:20+00:00", "2022-10-15 10:19:22+00:00", "2022-10-15 10:19:24+00:00", "2022-10-15 10:19:25+00:00", "2022-10-15 10:19:27+00:00", "2022-10-15 10:19:29+00:00", "2022-10-15 10:19:30+00:00", "2022-10-15 10:19:32+00:00", "2022-10-15 10:19:34+00:00", "2022-10-15 10:19:35+00:00", "2022-10-15 10:19:37+00:00", "2022-10-15 10:19:39+00:00", "2022-10-15 10:19:41+00:00", "2022-10-15 10:19:42+00:00", "2022-10-15 10:19:44+00:00", "2022-10-15 10:19:46+00:00", "2022-10-15 10:19:47+00:00", "2022-10-15 10:19:49+00:00", "2022-10-15 10:19:51+00:00", "2022-10-15 10:19:53+00:00", "2022-10-15 10:19:54+00:00", "2022-10-15 10:19:56+00:00", "2022-10-15 10:19:58+00:00", "2022-10-15 10:19:59+00:00", "2022-10-15 10:20:01+00:00", "2022-10-15 10:20:03+00:00", "2022-10-15 10:20:04+00:00", "2022-10-15 10:20:06+00:00", "2022-10-15 10:20:07+00:00", "2022-10-15 10:20:09+00:00", "2022-10-15 10:20:11+00:00", "2022-10-15 10:20:12+00:00", "2022-10-15 10:20:14+00:00", "2022-10-15 10:20:15+00:00", "2022-10-15 10:20:17+00:00", "2022-10-15 10:20:18+00:00", "2022-10-15 10:20:20+00:00", "2022-10-15 10:20:21+00:00", "2022-10-15 10:20:23+00:00", "2022-10-15 10:20:24+00:00", "2022-10-15 10:20:26+00:00", "2022-10-15 10:20:27+00:00", "2022-10-15 10:20:29+00:00", "2022-10-15 10:20:30+00:00", "2022-10-15 10:20:32+00:00", "2022-10-15 10:20:33+00:00", "2022-10-15 10:20:35+00:00", "2022-10-15 10:20:36+00:00", "2022-10-15 10:20:38+00:00", "2022-10-15 10:20:40+00:00", "2022-10-15 10:20:41+00:00", "2022-10-15 10:20:43+00:00", "2022-10-15 10:20:44+00:00", "2022-10-15 10:20:46+00:00", "2022-10-15 10:20:47+00:00", "2022-10-15 10:20:49+00:00", "2022-10-15 10:20:50+00:00", "2022-10-15 10:20:52+00:00", "2022-10-15 10:20:53+00:00", "2022-10-15 10:20:55+00:00", "2022-10-15 10:20:56+00:00", "2022-10-15 10:20:58+00:00", "2022-10-15 10:20:59+00:00", "2022-10-15 10:21:01+00:00", "2022-10-15 10:21:02+00:00", "2022-10-15 10:21:04+00:00", "2022-10-15 10:21:05+00:00", "2022-10-15 10:21:07+00:00", "2022-10-15 10:21:08+00:00", "2022-10-15 10:21:10+00:00", "2022-10-15 10:21:11+00:00", "2022-10-15 10:21:13+00:00", "2022-10-15 10:21:14+00:00", "2022-10-15 10:21:16+00:00", "2022-10-15 10:21:17+00:00", "2022-10-15 10:21:19+00:00", "2022-10-15 10:21:20+00:00", "2022-10-15 10:21:22+00:00", "2022-10-15 10:21:23+00:00", "2022-10-15 10:21:25+00:00", "2022-10-15 10:21:26+00:00", "2022-10-15 10:21:28+00:00", "2022-10-15 10:21:29+00:00", "2022-10-15 10:21:31+00:00", "2022-10-15 10:21:32+00:00", "2022-10-15 10:21:33+00:00", "2022-10-15 10:21:35+00:00", "2022-10-15 10:21:36+00:00", "2022-10-15 10:21:38+00:00", "2022-10-15 10:21:39+00:00", "2022-10-15 10:21:41+00:00", "2022-10-15 10:21:42+00:00", "2022-10-15 10:21:44+00:00", "2022-10-15 10:21:45+00:00", "2022-10-15 10:21:47+00:00", "2022-10-15 10:21:48+00:00", "2022-10-15 10:21:50+00:00"]}}, {"type": "Feature", "id": "trace#63", "geometry": {"type": "LineString", "coordinates": [[-83.662167, 32.797434], [-83.662561, 32.797095], [-83.662972, 32.796767], [-83.663384, 32.79644], [-83.663791, 32.796109], [-83.664178, 32.795763], [-83.664539, 32.795397], [-83.664874, 32.795015], [-83.665178, 32.794616], [-83.665454, 32.794207], [-83.6657, 32.793786], [-83.665914, 32.793354], [-83.666104, 32.792912], [-83.666291, 32.792469], [-83.666478, 32.792024], [-83.666664, 32.791578], [-83.666852, 32.791131], [-83.667041, 32.79068], [-83.66722, 32.790256], [-83.667413, 32.789833], [-83.667633, 32.789419], [-83.667883, 32.789015], [-83.668159, 32.788626], [-83.668461, 32.788254], [-83.668787, 32.787897], [-83.669161, 32.787536], [-83.669565, 32.787203], [-83.669996, 32.786897], [-83.670441, 32.786608], [-83.670886, 32.786323], [-83.67133, 32.786039], [-83.671773, 32.785756], [-83.672214, 32.785474], [-83.672654, 32.785193], [-83.673093, 32.784911], [-83.67353, 32.78463], [-83.673967, 32.784349], [-83.674404, 32.784069], [-83.674842, 32.783788], [-83.67528, 32.783507], [-83.675721, 32.783225], [-83.676163, 32.782941], [-83.676607, 32.782656], [-83.677054, 32.782369], [-83.6775, 32.782082], [-83.677949, 32.781794], [-83.678399, 32.781505], [-83.678849, 32.781216], [-83.679299, 32.780926], [-83.679749, 32.780637], [-83.680201, 32.780346], [-83.680654, 32.780055], [-83.681109, 32.779762], [-83.681537, 32.779488], [-83.681965, 32.779212], [-83.682392, 32.778937], [-83.682817, 32.778663], [-83.683271, 32.778372], [-83.683723, 32.778082], [-83.684173, 32.777794], [-83.684622, 32.777505], [-83.685071, 32.777217], [-83.685518, 32.77693], [-83.685965, 32.776642], [-83.686412, 32.776355], [-83.686859, 32.776068], [-83.687306, 32.775781], [-83.687753, 32.775493], [-83.688198, 32.775205], [-83.688645, 32.774918], [-83.689091, 32.77463], [-83.689537, 32.774343]]}, "properties": {"filename": "osm-traces-page-57.gpx", "track.number": 0, "track.link": "/user/dragonpilot/traces/5163573", "track.name": "1970_01_01T01_45_30.209710Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-10-15 10:21:51+00:00", "2022-10-15 10:21:53+00:00", "2022-10-15 10:21:54+00:00", "2022-10-15 10:21:56+00:00", "2022-10-15 10:21:57+00:00", "2022-10-15 10:21:59+00:00", "2022-10-15 10:22:00+00:00", "2022-10-15 10:22:02+00:00", "2022-10-15 10:22:03+00:00", "2022-10-15 10:22:05+00:00", "2022-10-15 10:22:06+00:00", "2022-10-15 10:22:08+00:00", "2022-10-15 10:22:09+00:00", "2022-10-15 10:22:11+00:00", "2022-10-15 10:22:12+00:00", "2022-10-15 10:22:13+00:00", "2022-10-15 10:22:15+00:00", "2022-10-15 10:22:16+00:00", "2022-10-15 10:22:18+00:00", "2022-10-15 10:22:19+00:00", "2022-10-15 10:22:21+00:00", "2022-10-15 10:22:22+00:00", "2022-10-15 10:22:23+00:00", "2022-10-15 10:22:25+00:00", "2022-10-15 10:22:26+00:00", "2022-10-15 10:22:28+00:00", "2022-10-15 10:22:29+00:00", "2022-10-15 10:22:31+00:00", "2022-10-15 10:22:32+00:00", "2022-10-15 10:22:34+00:00", "2022-10-15 10:22:35+00:00", "2022-10-15 10:22:37+00:00", "2022-10-15 10:22:38+00:00", "2022-10-15 10:22:40+00:00", "2022-10-15 10:22:41+00:00", "2022-10-15 10:22:43+00:00", "2022-10-15 10:22:44+00:00", "2022-10-15 10:22:46+00:00", "2022-10-15 10:22:47+00:00", "2022-10-15 10:22:49+00:00", "2022-10-15 10:22:50+00:00", "2022-10-15 10:22:52+00:00", "2022-10-15 10:22:53+00:00", "2022-10-15 10:22:55+00:00", "2022-10-15 10:22:56+00:00", "2022-10-15 10:22:58+00:00", "2022-10-15 10:22:59+00:00", "2022-10-15 10:23:01+00:00", "2022-10-15 10:23:02+00:00", "2022-10-15 10:23:04+00:00", "2022-10-15 10:23:05+00:00", "2022-10-15 10:23:07+00:00", "2022-10-15 10:23:08+00:00", "2022-10-15 10:23:10+00:00", "2022-10-15 10:23:11+00:00", "2022-10-15 10:23:13+00:00", "2022-10-15 10:23:14+00:00", "2022-10-15 10:23:15+00:00", "2022-10-15 10:23:17+00:00", "2022-10-15 10:23:18+00:00", "2022-10-15 10:23:20+00:00", "2022-10-15 10:23:21+00:00", "2022-10-15 10:23:23+00:00", "2022-10-15 10:23:24+00:00", "2022-10-15 10:23:26+00:00", "2022-10-15 10:23:27+00:00", "2022-10-15 10:23:29+00:00", "2022-10-15 10:23:30+00:00", "2022-10-15 10:23:32+00:00", "2022-10-15 10:23:33+00:00", "2022-10-15 10:23:35+00:00", "2022-10-15 10:23:36+00:00"]}}, {"type": "Feature", "id": "trace#64", "geometry": {"type": "LineString", "coordinates": [[-83.648638, 32.862314], [-83.649141, 32.862515], [-83.649634, 32.862713], [-83.650133, 32.86291], [-83.650634, 32.863116], [-83.651111, 32.863347], [-83.651562, 32.863619], [-83.651972, 32.863917], [-83.652353, 32.864244], [-83.652725, 32.864588], [-83.653089, 32.864924], [-83.653461, 32.865267], [-83.653831, 32.865612], [-83.654201, 32.865954], [-83.654568, 32.866294], [-83.654939, 32.866636], [-83.655316, 32.866983], [-83.655679, 32.867318], [-83.656043, 32.867653], [-83.656407, 32.86799], [-83.656764, 32.868325], [-83.657139, 32.868669], [-83.657507, 32.869008], [-83.657873, 32.869344], [-83.658242, 32.869681], [-83.658611, 32.87002], [-83.658971, 32.870366], [-83.659326, 32.870723], [-83.659664, 32.871081], [-83.659998, 32.87145], [-83.660327, 32.871829], [-83.660649, 32.87219], [-83.660972, 32.872558], [-83.661292, 32.872935], [-83.661609, 32.873321], [-83.661919, 32.873696], [-83.662241, 32.87408], [-83.662556, 32.874455], [-83.66288, 32.874839], [-83.663193, 32.875214], [-83.663512, 32.875599], [-83.663839, 32.87599], [-83.664165, 32.87638], [-83.664493, 32.87677], [-83.664799, 32.877139], [-83.665123, 32.877528], [-83.665449, 32.877917], [-83.665762, 32.878282], [-83.666079, 32.878646], [-83.666394, 32.879013], [-83.666713, 32.879384], [-83.667034, 32.879754], [-83.667357, 32.880128], [-83.667678, 32.880501], [-83.667997, 32.880875], [-83.668313, 32.881249], [-83.668624, 32.881623], [-83.66893, 32.881996], [-83.66924, 32.882369], [-83.66955, 32.882739], [-83.669857, 32.88311], [-83.670164, 32.883483], [-83.670472, 32.883855], [-83.670783, 32.884228], [-83.671097, 32.884605], [-83.671409, 32.884981], [-83.67172, 32.885357], [-83.67203, 32.885734], [-83.672337, 32.886113], [-83.672646, 32.886496], [-83.672959, 32.886882], [-83.673276, 32.887265], [-83.673596, 32.88765], [-83.673914, 32.888035], [-83.674232, 32.888419], [-83.674549, 32.888802], [-83.674864, 32.889184], [-83.675176, 32.889565], [-83.675488, 32.889947], [-83.675797, 32.890331], [-83.676104, 32.890716]]}, "properties": {"filename": "osm-traces-page-58.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/5162861", "track.name": "2022_10_20T08_08_23.108247Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.10.19 (TOYOTA RAV4 HYBRID 2017).", "times": ["2022-10-20 08:08:25+00:00", "2022-10-20 08:08:27+00:00", "2022-10-20 08:08:29+00:00", "2022-10-20 08:08:32+00:00", "2022-10-20 08:08:34+00:00", "2022-10-20 08:08:36+00:00", "2022-10-20 08:08:39+00:00", "2022-10-20 08:08:41+00:00", "2022-10-20 08:08:43+00:00", "2022-10-20 08:08:46+00:00", "2022-10-20 08:08:48+00:00", "2022-10-20 08:08:50+00:00", "2022-10-20 08:08:52+00:00", "2022-10-20 08:08:54+00:00", "2022-10-20 08:08:57+00:00", "2022-10-20 08:08:59+00:00", "2022-10-20 08:09:01+00:00", "2022-10-20 08:09:03+00:00", "2022-10-20 08:09:05+00:00", "2022-10-20 08:09:07+00:00", "2022-10-20 08:09:09+00:00", "2022-10-20 08:09:12+00:00", "2022-10-20 08:09:14+00:00", "2022-10-20 08:09:16+00:00", "2022-10-20 08:09:18+00:00", "2022-10-20 08:09:20+00:00", "2022-10-20 08:09:23+00:00", "2022-10-20 08:09:25+00:00", "2022-10-20 08:09:27+00:00", "2022-10-20 08:09:29+00:00", "2022-10-20 08:09:31+00:00", "2022-10-20 08:09:33+00:00", "2022-10-20 08:09:35+00:00", "2022-10-20 08:09:37+00:00", "2022-10-20 08:09:39+00:00", "2022-10-20 08:09:41+00:00", "2022-10-20 08:09:43+00:00", "2022-10-20 08:09:45+00:00", "2022-10-20 08:09:47+00:00", "2022-10-20 08:09:48+00:00", "2022-10-20 08:09:50+00:00", "2022-10-20 08:09:52+00:00", "2022-10-20 08:09:53+00:00", "2022-10-20 08:09:55+00:00", "2022-10-20 08:09:57+00:00", "2022-10-20 08:09:58+00:00", "2022-10-20 08:10:00+00:00", "2022-10-20 08:10:02+00:00", "2022-10-20 08:10:03+00:00", "2022-10-20 08:10:05+00:00", "2022-10-20 08:10:06+00:00", "2022-10-20 08:10:08+00:00", "2022-10-20 08:10:10+00:00", "2022-10-20 08:10:11+00:00", "2022-10-20 08:10:13+00:00", "2022-10-20 08:10:14+00:00", "2022-10-20 08:10:16+00:00", "2022-10-20 08:10:18+00:00", "2022-10-20 08:10:19+00:00", "2022-10-20 08:10:21+00:00", "2022-10-20 08:10:22+00:00", "2022-10-20 08:10:24+00:00", "2022-10-20 08:10:26+00:00", "2022-10-20 08:10:27+00:00", "2022-10-20 08:10:29+00:00", "2022-10-20 08:10:30+00:00", "2022-10-20 08:10:32+00:00", "2022-10-20 08:10:34+00:00", "2022-10-20 08:10:35+00:00", "2022-10-20 08:10:37+00:00", "2022-10-20 08:10:38+00:00", "2022-10-20 08:10:40+00:00", "2022-10-20 08:10:42+00:00", "2022-10-20 08:10:43+00:00", "2022-10-20 08:10:45+00:00", "2022-10-20 08:10:46+00:00", "2022-10-20 08:10:48+00:00", "2022-10-20 08:10:50+00:00", "2022-10-20 08:10:51+00:00", "2022-10-20 08:10:53+00:00", "2022-10-20 08:10:54+00:00"]}}, {"type": "Feature", "id": "trace#65", "geometry": {"type": "LineString", "coordinates": [[-83.711303, 32.774116], [-83.711567, 32.774543], [-83.71182, 32.774948], [-83.712079, 32.775357], [-83.71234, 32.77577], [-83.712598, 32.776179], [-83.712854, 32.776588], [-83.713109, 32.776995], [-83.713363, 32.777396], [-83.713619, 32.777802], [-83.713879, 32.778215], [-83.714142, 32.778633], [-83.714404, 32.77905], [-83.714669, 32.779468], [-83.714941, 32.779882], [-83.715219, 32.780296], [-83.715493, 32.780713], [-83.71576, 32.781132], [-83.716024, 32.781553], [-83.716289, 32.781973], [-83.716555, 32.782395], [-83.716821, 32.782816], [-83.717086, 32.783239], [-83.71735, 32.783662], [-83.717617, 32.784084], [-83.717881, 32.784502], [-83.718145, 32.784922], [-83.718408, 32.785344], [-83.718665, 32.785766], [-83.718904, 32.786189], [-83.719112, 32.786617], [-83.719283, 32.78705], [-83.719422, 32.787489], [-83.719532, 32.787937], [-83.719614, 32.78839], [-83.71967, 32.788851], [-83.719721, 32.789316], [-83.719769, 32.789782], [-83.719819, 32.790245], [-83.719868, 32.790703], [-83.719915, 32.79116], [-83.719967, 32.791622], [-83.720015, 32.792089], [-83.720063, 32.792562], [-83.720113, 32.793035], [-83.72016, 32.793509], [-83.720209, 32.793985], [-83.720259, 32.79446], [-83.720312, 32.794937], [-83.720362, 32.795414], [-83.72041, 32.795889], [-83.72046, 32.79636], [-83.720509, 32.796821], [-83.720555, 32.797278], [-83.720607, 32.797733], [-83.720671, 32.798184], [-83.720749, 32.798635], [-83.720845, 32.799082], [-83.72096, 32.799528], [-83.721088, 32.799971], [-83.721232, 32.80041], [-83.721392, 32.800849], [-83.721567, 32.801286], [-83.72176, 32.801721], [-83.721964, 32.802154], [-83.722172, 32.802584], [-83.722382, 32.803016]]}, "properties": {"filename": "osm-traces-page-59.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/5091144", "track.name": "2022_10_06T22_26_08.159239Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ODYSSEY 2018-21).", "times": ["2022-10-06 22:29:06+00:00", "2022-10-06 22:29:07+00:00", "2022-10-06 22:29:08+00:00", "2022-10-06 22:29:10+00:00", "2022-10-06 22:29:11+00:00", "2022-10-06 22:29:13+00:00", "2022-10-06 22:29:14+00:00", "2022-10-06 22:29:15+00:00", "2022-10-06 22:29:17+00:00", "2022-10-06 22:29:18+00:00", "2022-10-06 22:29:20+00:00", "2022-10-06 22:29:21+00:00", "2022-10-06 22:29:22+00:00", "2022-10-06 22:29:24+00:00", "2022-10-06 22:29:25+00:00", "2022-10-06 22:29:27+00:00", "2022-10-06 22:29:28+00:00", "2022-10-06 22:29:29+00:00", "2022-10-06 22:29:31+00:00", "2022-10-06 22:29:32+00:00", "2022-10-06 22:29:34+00:00", "2022-10-06 22:29:35+00:00", "2022-10-06 22:29:36+00:00", "2022-10-06 22:29:38+00:00", "2022-10-06 22:29:39+00:00", "2022-10-06 22:29:41+00:00", "2022-10-06 22:29:42+00:00", "2022-10-06 22:29:43+00:00", "2022-10-06 22:29:45+00:00", "2022-10-06 22:29:46+00:00", "2022-10-06 22:29:48+00:00", "2022-10-06 22:29:49+00:00", "2022-10-06 22:29:50+00:00", "2022-10-06 22:29:52+00:00", "2022-10-06 22:29:53+00:00", "2022-10-06 22:29:55+00:00", "2022-10-06 22:29:56+00:00", "2022-10-06 22:29:57+00:00", "2022-10-06 22:29:59+00:00", "2022-10-06 22:30:00+00:00", "2022-10-06 22:30:02+00:00", "2022-10-06 22:30:03+00:00", "2022-10-06 22:30:04+00:00", "2022-10-06 22:30:06+00:00", "2022-10-06 22:30:07+00:00", "2022-10-06 22:30:09+00:00", "2022-10-06 22:30:10+00:00", "2022-10-06 22:30:11+00:00", "2022-10-06 22:30:13+00:00", "2022-10-06 22:30:14+00:00", "2022-10-06 22:30:16+00:00", "2022-10-06 22:30:17+00:00", "2022-10-06 22:30:18+00:00", "2022-10-06 22:30:20+00:00", "2022-10-06 22:30:21+00:00", "2022-10-06 22:30:23+00:00", "2022-10-06 22:30:24+00:00", "2022-10-06 22:30:25+00:00", "2022-10-06 22:30:27+00:00", "2022-10-06 22:30:28+00:00", "2022-10-06 22:30:30+00:00", "2022-10-06 22:30:31+00:00", "2022-10-06 22:30:32+00:00", "2022-10-06 22:30:34+00:00", "2022-10-06 22:30:35+00:00", "2022-10-06 22:30:37+00:00", "2022-10-06 22:30:38+00:00"]}}, {"type": "Feature", "id": "trace#66", "geometry": {"type": "LineString", "coordinates": [[-83.669225, 32.882026], [-83.668902, 32.881636], [-83.668579, 32.88125], [-83.668256, 32.880865], [-83.667925, 32.880479], [-83.66759, 32.880091], [-83.667251, 32.879703], [-83.666915, 32.879315], [-83.666578, 32.878926], [-83.66624, 32.878535], [-83.665926, 32.87817], [-83.665611, 32.877801], [-83.665296, 32.877429], [-83.664982, 32.877051], [-83.664667, 32.876667], [-83.664348, 32.87628], [-83.664024, 32.875893], [-83.663701, 32.875506], [-83.663379, 32.87512], [-83.663058, 32.874735], [-83.662742, 32.874355], [-83.66242, 32.873968], [-83.662099, 32.873578], [-83.661783, 32.873199], [-83.661471, 32.872822], [-83.661164, 32.872451], [-83.660841, 32.872059], [-83.660522, 32.871679], [-83.660206, 32.871308], [-83.659871, 32.870928], [-83.659525, 32.870559], [-83.659167, 32.870205], [-83.658795, 32.869857], [-83.658426, 32.869515], [-83.658061, 32.869178], [-83.657687, 32.868835], [-83.657324, 32.868503], [-83.65696, 32.868172], [-83.656571, 32.867843], [-83.65619, 32.867512], [-83.655807, 32.867165], [-83.655441, 32.866832], [-83.655074, 32.866497], [-83.654701, 32.866159], [-83.654322, 32.865812], [-83.653945, 32.865469], [-83.653573, 32.865128], [-83.653207, 32.864793], [-83.652833, 32.864453], [-83.652454, 32.864111], [-83.652077, 32.863779], [-83.651673, 32.863463], [-83.651233, 32.863185], [-83.650769, 32.86296], [-83.650287, 32.862757], [-83.649788, 32.862553], [-83.649292, 32.862345], [-83.648812, 32.862124], [-83.648341, 32.861899], [-83.647852, 32.86167], [-83.647364, 32.861444], [-83.646891, 32.861217], [-83.64642, 32.860968], [-83.645977, 32.860708], [-83.645535, 32.860434], [-83.645104, 32.86016], [-83.644668, 32.859884], [-83.644232, 32.859607], [-83.643801, 32.859333], [-83.643373, 32.859061], [-83.642943, 32.858786], [-83.642517, 32.858507], [-83.642111, 32.858211], [-83.641706, 32.857909], [-83.641294, 32.857617], [-83.640866, 32.857322], [-83.640444, 32.857035], [-83.64003, 32.856749], [-83.639596, 32.856464], [-83.639146, 32.856201], [-83.638705, 32.855932], [-83.638276, 32.85565], [-83.637873, 32.855352], [-83.637473, 32.855041], [-83.637067, 32.854738], [-83.636643, 32.854462], [-83.636191, 32.854211], [-83.635734, 32.853976], [-83.635268, 32.853733], [-83.634813, 32.853489], [-83.634352, 32.853241], [-83.633898, 32.852998], [-83.63343, 32.852745], [-83.63298, 32.852497], [-83.632535, 32.852227], [-83.632111, 32.851941], [-83.631694, 32.851628], [-83.631297, 32.851301], [-83.630913, 32.85097], [-83.630533, 32.850637], [-83.630151, 32.850301]]}, "properties": {"filename": "osm-traces-page-59.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/5083649", "track.name": "2022_10_08T02_39_05.612244Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.10.07 (HYUNDAI PALISADE 2020).", "times": ["2022-10-08 02:39:05+00:00", "2022-10-08 02:39:06+00:00", "2022-10-08 02:39:08+00:00", "2022-10-08 02:39:09+00:00", "2022-10-08 02:39:11+00:00", "2022-10-08 02:39:12+00:00", "2022-10-08 02:39:13+00:00", "2022-10-08 02:39:15+00:00", "2022-10-08 02:39:16+00:00", "2022-10-08 02:39:18+00:00", "2022-10-08 02:39:19+00:00", "2022-10-08 02:39:20+00:00", "2022-10-08 02:39:21+00:00", "2022-10-08 02:39:23+00:00", "2022-10-08 02:39:24+00:00", "2022-10-08 02:39:25+00:00", "2022-10-08 02:39:27+00:00", "2022-10-08 02:39:28+00:00", "2022-10-08 02:39:29+00:00", "2022-10-08 02:39:31+00:00", "2022-10-08 02:39:32+00:00", "2022-10-08 02:39:33+00:00", "2022-10-08 02:39:35+00:00", "2022-10-08 02:39:36+00:00", "2022-10-08 02:39:38+00:00", "2022-10-08 02:39:39+00:00", "2022-10-08 02:39:41+00:00", "2022-10-08 02:39:42+00:00", "2022-10-08 02:39:44+00:00", "2022-10-08 02:39:46+00:00", "2022-10-08 02:39:48+00:00", "2022-10-08 02:39:50+00:00", "2022-10-08 02:39:52+00:00", "2022-10-08 02:39:54+00:00", "2022-10-08 02:39:56+00:00", "2022-10-08 02:39:59+00:00", "2022-10-08 02:40:01+00:00", "2022-10-08 02:40:03+00:00", "2022-10-08 02:40:05+00:00", "2022-10-08 02:40:07+00:00", "2022-10-08 02:40:09+00:00", "2022-10-08 02:40:11+00:00", "2022-10-08 02:40:13+00:00", "2022-10-08 02:40:15+00:00", "2022-10-08 02:40:16+00:00", "2022-10-08 02:40:18+00:00", "2022-10-08 02:40:20+00:00", "2022-10-08 02:40:22+00:00", "2022-10-08 02:40:24+00:00", "2022-10-08 02:40:27+00:00", "2022-10-08 02:40:29+00:00", "2022-10-08 02:40:32+00:00", "2022-10-08 02:40:34+00:00", "2022-10-08 02:40:36+00:00", "2022-10-08 02:40:39+00:00", "2022-10-08 02:40:41+00:00", "2022-10-08 02:40:44+00:00", "2022-10-08 02:40:46+00:00", "2022-10-08 02:40:49+00:00", "2022-10-08 02:40:51+00:00", "2022-10-08 02:40:53+00:00", "2022-10-08 02:40:55+00:00", "2022-10-08 02:40:57+00:00", "2022-10-08 02:41:00+00:00", "2022-10-08 02:41:03+00:00", "2022-10-08 02:41:06+00:00", "2022-10-08 02:41:09+00:00", "2022-10-08 02:41:12+00:00", "2022-10-08 02:41:15+00:00", "2022-10-08 02:41:19+00:00", "2022-10-08 02:41:22+00:00", "2022-10-08 02:41:26+00:00", "2022-10-08 02:41:29+00:00", "2022-10-08 02:41:31+00:00", "2022-10-08 02:41:34+00:00", "2022-10-08 02:41:37+00:00", "2022-10-08 02:41:40+00:00", "2022-10-08 02:41:43+00:00", "2022-10-08 02:41:46+00:00", "2022-10-08 02:41:50+00:00", "2022-10-08 02:41:53+00:00", "2022-10-08 02:41:55+00:00", "2022-10-08 02:41:58+00:00", "2022-10-08 02:42:01+00:00", "2022-10-08 02:42:04+00:00", "2022-10-08 02:42:07+00:00", "2022-10-08 02:42:09+00:00", "2022-10-08 02:42:12+00:00", "2022-10-08 02:42:15+00:00", "2022-10-08 02:42:17+00:00", "2022-10-08 02:42:19+00:00", "2022-10-08 02:42:22+00:00", "2022-10-08 02:42:24+00:00", "2022-10-08 02:42:26+00:00", "2022-10-08 02:42:28+00:00", "2022-10-08 02:42:30+00:00", "2022-10-08 02:42:32+00:00", "2022-10-08 02:42:35+00:00", "2022-10-08 02:42:37+00:00", "2022-10-08 02:42:39+00:00", "2022-10-08 02:42:41+00:00"]}}, {"type": "Feature", "id": "trace#67", "geometry": {"type": "LineString", "coordinates": [[-83.670648, 32.814546], [-83.670112, 32.814534], [-83.66957, 32.814522], [-83.669019, 32.814509], [-83.668473, 32.814498], [-83.667938, 32.814486], [-83.667402, 32.814474], [-83.666855, 32.814462], [-83.666307, 32.814448], [-83.665768, 32.814437], [-83.665231, 32.814425], [-83.664691, 32.814402], [-83.66415, 32.814378], [-83.663615, 32.814364], [-83.663071, 32.814351], [-83.66253, 32.814341], [-83.66199, 32.814331], [-83.661453, 32.814331], [-83.660905, 32.814329], [-83.660364, 32.814318], [-83.659822, 32.814301], [-83.659274, 32.81428], [-83.658722, 32.81425], [-83.658175, 32.814214], [-83.657639, 32.814178], [-83.657091, 32.814142], [-83.656551, 32.814106], [-83.656009, 32.814072], [-83.65547, 32.814036], [-83.654958, 32.813884], [-83.654601, 32.813544], [-83.654717, 32.813105], [-83.655252, 32.81303], [-83.65563, 32.813363], [-83.655736, 32.813814], [-83.65575, 32.814272], [-83.655752, 32.814724], [-83.655753, 32.815179], [-83.655755, 32.815642], [-83.655761, 32.816101], [-83.655759, 32.816558], [-83.655753, 32.817031], [-83.655749, 32.817491], [-83.655749, 32.817959], [-83.655755, 32.818412], [-83.65576, 32.81887], [-83.655765, 32.819333], [-83.655788, 32.819795], [-83.655837, 32.82025], [-83.655916, 32.820697], [-83.656027, 32.821145], [-83.656165, 32.821587], [-83.656318, 32.822027], [-83.656477, 32.822471], [-83.656637, 32.822922], [-83.656791, 32.823373], [-83.656916, 32.82383], [-83.657002, 32.824293], [-83.657047, 32.824762], [-83.657051, 32.82523], [-83.657016, 32.825697], [-83.656943, 32.826154], [-83.656829, 32.82661], [-83.656673, 32.827056], [-83.656481, 32.827492], [-83.656252, 32.827915], [-83.655981, 32.828323], [-83.65568, 32.828721], [-83.655376, 32.82911], [-83.655079, 32.829495], [-83.654781, 32.829875], [-83.65448, 32.830257], [-83.654178, 32.83064], [-83.653874, 32.831023], [-83.653569, 32.831406], [-83.653262, 32.831793], [-83.652954, 32.832179], [-83.652645, 32.832568], [-83.65234, 32.832952], [-83.652029, 32.83334], [-83.651717, 32.83373], [-83.651406, 32.834119], [-83.651099, 32.834496], [-83.650785, 32.834867], [-83.650463, 32.835248], [-83.650145, 32.835637], [-83.649848, 32.83602], [-83.649544, 32.836418], [-83.649237, 32.836812], [-83.648931, 32.837197], [-83.648617, 32.837591], [-83.648311, 32.837973], [-83.648002, 32.838358], [-83.647697, 32.838739], [-83.647392, 32.839119], [-83.647086, 32.839499], [-83.646784, 32.839873], [-83.64648, 32.840252], [-83.646176, 32.840629], [-83.645859, 32.841022], [-83.645542, 32.841412]]}, "properties": {"filename": "osm-traces-page-6.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/7585140", "track.name": "2023_05_18T22_25_10.919266Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.11.13 (RAM 1500 5TH GEN).", "times": ["2023-05-18 22:25:07+00:00", "2023-05-18 22:25:10+00:00", "2023-05-18 22:25:13+00:00", "2023-05-18 22:25:16+00:00", "2023-05-18 22:25:20+00:00", "2023-05-18 22:25:23+00:00", "2023-05-18 22:25:26+00:00", "2023-05-18 22:25:28+00:00", "2023-05-18 22:25:31+00:00", "2023-05-18 22:25:34+00:00", "2023-05-18 22:25:37+00:00", "2023-05-18 22:25:42+00:00", "2023-05-18 22:25:47+00:00", "2023-05-18 22:26:01+00:00", "2023-05-18 22:26:09+00:00", "2023-05-18 22:26:13+00:00", "2023-05-18 22:26:17+00:00", "2023-05-18 22:26:20+00:00", "2023-05-18 22:26:23+00:00", "2023-05-18 22:26:25+00:00", "2023-05-18 22:26:28+00:00", "2023-05-18 22:26:31+00:00", "2023-05-18 22:26:33+00:00", "2023-05-18 22:26:36+00:00", "2023-05-18 22:26:39+00:00", "2023-05-18 22:26:41+00:00", "2023-05-18 22:26:44+00:00", "2023-05-18 22:26:46+00:00", "2023-05-18 22:26:49+00:00", "2023-05-18 22:26:54+00:00", "2023-05-18 22:26:58+00:00", "2023-05-18 22:27:03+00:00", "2023-05-18 22:27:08+00:00", "2023-05-18 22:27:12+00:00", "2023-05-18 22:27:16+00:00", "2023-05-18 22:27:19+00:00", "2023-05-18 22:27:22+00:00", "2023-05-18 22:27:24+00:00", "2023-05-18 22:27:26+00:00", "2023-05-18 22:27:28+00:00", "2023-05-18 22:27:30+00:00", "2023-05-18 22:27:32+00:00", "2023-05-18 22:27:34+00:00", "2023-05-18 22:27:36+00:00", "2023-05-18 22:27:37+00:00", "2023-05-18 22:27:39+00:00", "2023-05-18 22:27:41+00:00", "2023-05-18 22:27:43+00:00", "2023-05-18 22:27:44+00:00", "2023-05-18 22:27:46+00:00", "2023-05-18 22:27:48+00:00", "2023-05-18 22:27:49+00:00", "2023-05-18 22:27:51+00:00", "2023-05-18 22:27:53+00:00", "2023-05-18 22:27:54+00:00", "2023-05-18 22:27:56+00:00", "2023-05-18 22:27:58+00:00", "2023-05-18 22:28:00+00:00", "2023-05-18 22:28:01+00:00", "2023-05-18 22:28:03+00:00", "2023-05-18 22:28:05+00:00", "2023-05-18 22:28:06+00:00", "2023-05-18 22:28:08+00:00", "2023-05-18 22:28:10+00:00", "2023-05-18 22:28:11+00:00", "2023-05-18 22:28:13+00:00", "2023-05-18 22:28:15+00:00", "2023-05-18 22:28:17+00:00", "2023-05-18 22:28:18+00:00", "2023-05-18 22:28:20+00:00", "2023-05-18 22:28:22+00:00", "2023-05-18 22:28:23+00:00", "2023-05-18 22:28:25+00:00", "2023-05-18 22:28:27+00:00", "2023-05-18 22:28:28+00:00", "2023-05-18 22:28:30+00:00", "2023-05-18 22:28:32+00:00", "2023-05-18 22:28:34+00:00", "2023-05-18 22:28:35+00:00", "2023-05-18 22:28:37+00:00", "2023-05-18 22:28:39+00:00", "2023-05-18 22:28:40+00:00", "2023-05-18 22:28:42+00:00", "2023-05-18 22:28:44+00:00", "2023-05-18 22:28:46+00:00", "2023-05-18 22:28:47+00:00", "2023-05-18 22:28:49+00:00", "2023-05-18 22:28:51+00:00", "2023-05-18 22:28:52+00:00", "2023-05-18 22:28:54+00:00", "2023-05-18 22:28:56+00:00", "2023-05-18 22:28:58+00:00", "2023-05-18 22:29:00+00:00", "2023-05-18 22:29:01+00:00", "2023-05-18 22:29:03+00:00", "2023-05-18 22:29:05+00:00", "2023-05-18 22:29:07+00:00", "2023-05-18 22:29:09+00:00", "2023-05-18 22:29:10+00:00", "2023-05-18 22:29:12+00:00", "2023-05-18 22:29:14+00:00"]}}, {"type": "Feature", "id": "trace#68", "geometry": {"type": "LineString", "coordinates": [[-83.67665, 32.891014], [-83.676333, 32.890615], [-83.676017, 32.890217], [-83.675697, 32.889818], [-83.675375, 32.88942], [-83.675048, 32.889024], [-83.674741, 32.888654], [-83.674434, 32.888283], [-83.674108, 32.887891], [-83.673791, 32.887507], [-83.673474, 32.887125], [-83.673156, 32.886741], [-83.672833, 32.886354], [-83.672502, 32.885966], [-83.672169, 32.885574], [-83.671862, 32.885205], [-83.671555, 32.884834], [-83.671247, 32.884463], [-83.670939, 32.884091], [-83.670629, 32.883718], [-83.670321, 32.883347], [-83.669993, 32.882952], [-83.669667, 32.882559], [-83.669342, 32.882166]]}, "properties": {"filename": "osm-traces-page-60.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/5083647", "track.name": "2022_10_08T02_29_05.609088Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.10.07 (HYUNDAI PALISADE 2020).", "times": ["2022-10-08 02:38:33+00:00", "2022-10-08 02:38:34+00:00", "2022-10-08 02:38:36+00:00", "2022-10-08 02:38:37+00:00", "2022-10-08 02:38:39+00:00", "2022-10-08 02:38:40+00:00", "2022-10-08 02:38:41+00:00", "2022-10-08 02:38:43+00:00", "2022-10-08 02:38:44+00:00", "2022-10-08 02:38:45+00:00", "2022-10-08 02:38:47+00:00", "2022-10-08 02:38:48+00:00", "2022-10-08 02:38:50+00:00", "2022-10-08 02:38:51+00:00", "2022-10-08 02:38:52+00:00", "2022-10-08 02:38:54+00:00", "2022-10-08 02:38:55+00:00", "2022-10-08 02:38:56+00:00", "2022-10-08 02:38:58+00:00", "2022-10-08 02:38:59+00:00", "2022-10-08 02:39:00+00:00", "2022-10-08 02:39:02+00:00", "2022-10-08 02:39:03+00:00", "2022-10-08 02:39:04+00:00"]}}, {"type": "Feature", "id": "trace#69", "geometry": {"type": "LineString", "coordinates": [[-83.72242, 32.802749], [-83.722211, 32.802306], [-83.72201, 32.801866], [-83.721826, 32.801428], [-83.72166, 32.800986], [-83.72151, 32.800536], [-83.721372, 32.800074], [-83.721253, 32.799611], [-83.72115, 32.799151], [-83.721064, 32.79869], [-83.720995, 32.798229], [-83.720939, 32.797764], [-83.720889, 32.797297], [-83.720839, 32.796828], [-83.720792, 32.796366], [-83.720746, 32.795906], [-83.720698, 32.795449]]}, "properties": {"filename": "osm-traces-page-60.gpx", "track.number": 6, "track.link": "/user/sunnypilot/traces/4984766", "track.name": "2022_09_24T20_07_25.002504Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.09.23 (HYUNDAI PALISADE 2020).", "times": ["2022-09-24 20:16:37+00:00", "2022-09-24 20:16:39+00:00", "2022-09-24 20:16:41+00:00", "2022-09-24 20:16:42+00:00", "2022-09-24 20:16:44+00:00", "2022-09-24 20:16:45+00:00", "2022-09-24 20:16:47+00:00", "2022-09-24 20:16:49+00:00", "2022-09-24 20:16:50+00:00", "2022-09-24 20:16:52+00:00", "2022-09-24 20:16:53+00:00", "2022-09-24 20:16:55+00:00", "2022-09-24 20:16:57+00:00", "2022-09-24 20:16:58+00:00", "2022-09-24 20:17:00+00:00", "2022-09-24 20:17:01+00:00", "2022-09-24 20:17:03+00:00"]}}, {"type": "Feature", "id": "trace#70", "geometry": {"type": "LineString", "coordinates": [[-83.720695, 32.795421], [-83.720647, 32.794963], [-83.720601, 32.794504], [-83.720553, 32.79405], [-83.720506, 32.793601], [-83.720457, 32.793128], [-83.720408, 32.792656], [-83.720358, 32.792181], [-83.720308, 32.791707], [-83.720262, 32.791259], [-83.720214, 32.790808], [-83.720166, 32.790349], [-83.720117, 32.789885], [-83.720069, 32.789414], [-83.720022, 32.788965], [-83.719968, 32.788509], [-83.719899, 32.788045]]}, "properties": {"filename": "osm-traces-page-61.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/4984766", "track.name": "2022_09_24T20_07_25.002504Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 2022.09.23 (HYUNDAI PALISADE 2020).", "times": ["2022-09-24 20:17:03+00:00", "2022-09-24 20:17:05+00:00", "2022-09-24 20:17:06+00:00", "2022-09-24 20:17:08+00:00", "2022-09-24 20:17:10+00:00", "2022-09-24 20:17:11+00:00", "2022-09-24 20:17:13+00:00", "2022-09-24 20:17:15+00:00", "2022-09-24 20:17:16+00:00", "2022-09-24 20:17:18+00:00", "2022-09-24 20:17:20+00:00", "2022-09-24 20:17:21+00:00", "2022-09-24 20:17:23+00:00", "2022-09-24 20:17:24+00:00", "2022-09-24 20:17:26+00:00", "2022-09-24 20:17:27+00:00", "2022-09-24 20:17:29+00:00"]}}, {"type": "Feature", "id": "trace#71", "geometry": {"type": "LineString", "coordinates": [[-83.645968, 32.826023], [-83.646446, 32.826253], [-83.646939, 32.826451], [-83.647465, 32.826578], [-83.64801, 32.826646], [-83.648554, 32.826653], [-83.649085, 32.826585], [-83.64961, 32.826454], [-83.65011, 32.826278], [-83.650602, 32.826096], [-83.651109, 32.825931], [-83.651639, 32.825835], [-83.652176, 32.825798], [-83.652714, 32.825801], [-83.653255, 32.825811], [-83.653646, 32.826124], [-83.653674, 32.826574], [-83.6542, 32.82668], [-83.654671, 32.826463], [-83.654734, 32.826016]]}, "properties": {"filename": "osm-traces-page-63.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/4905005", "track.name": "2022_09_11T00_09_27.061994Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (KIA NIRO EV 2020-22).", "times": ["2022-09-11 00:14:29+00:00", "2022-09-11 00:14:32+00:00", "2022-09-11 00:14:36+00:00", "2022-09-11 00:14:39+00:00", "2022-09-11 00:14:42+00:00", "2022-09-11 00:14:45+00:00", "2022-09-11 00:14:48+00:00", "2022-09-11 00:14:51+00:00", "2022-09-11 00:14:54+00:00", "2022-09-11 00:14:57+00:00", "2022-09-11 00:15:01+00:00", "2022-09-11 00:15:04+00:00", "2022-09-11 00:15:07+00:00", "2022-09-11 00:15:10+00:00", "2022-09-11 00:15:14+00:00", "2022-09-11 00:15:24+00:00", "2022-09-11 00:15:31+00:00", "2022-09-11 00:15:40+00:00", "2022-09-11 00:15:52+00:00", "2022-09-11 00:16:04+00:00"]}}, {"type": "Feature", "id": "trace#72", "geometry": {"type": "LineString", "coordinates": [[-83.6271, 32.848045], [-83.627437, 32.848403], [-83.627803, 32.848756], [-83.628162, 32.84909], [-83.62852, 32.849435], [-83.628885, 32.849783], [-83.629252, 32.850133], [-83.629622, 32.850482], [-83.629992, 32.850832], [-83.630363, 32.851182], [-83.630738, 32.851532], [-83.631122, 32.851877], [-83.631512, 32.852218], [-83.631904, 32.852562], [-83.632296, 32.852907], [-83.632688, 32.853251], [-83.633082, 32.853588], [-83.633492, 32.85391], [-83.633928, 32.854217], [-83.63435, 32.854501], [-83.634773, 32.854783], [-83.635216, 32.855082], [-83.635657, 32.855375], [-83.636103, 32.85567], [-83.636554, 32.855958], [-83.637002, 32.856235], [-83.63745, 32.856514], [-83.637899, 32.856797], [-83.638354, 32.857082], [-83.638787, 32.857352], [-83.63922, 32.857625], [-83.639649, 32.857897], [-83.640089, 32.858192], [-83.640516, 32.858492], [-83.640931, 32.858794], [-83.641334, 32.859099], [-83.641759, 32.859407], [-83.642199, 32.859688], [-83.642673, 32.859931], [-83.643172, 32.860151], [-83.643679, 32.860362], [-83.644182, 32.860569], [-83.644672, 32.860771], [-83.645157, 32.860965], [-83.645655, 32.861143], [-83.646163, 32.861325], [-83.646672, 32.86152], [-83.647185, 32.861719], [-83.647671, 32.861914], [-83.648159, 32.862114], [-83.648668, 32.862322], [-83.64917, 32.862527], [-83.649658, 32.862726], [-83.650163, 32.862928], [-83.650649, 32.863134], [-83.651116, 32.863367], [-83.651561, 32.863632], [-83.651982, 32.863937], [-83.652376, 32.864272], [-83.652746, 32.86461], [-83.653119, 32.86495], [-83.653493, 32.865291], [-83.653865, 32.865631], [-83.654239, 32.865973], [-83.654617, 32.86632], [-83.654979, 32.866652], [-83.655342, 32.866985], [-83.655705, 32.867316], [-83.656073, 32.867653], [-83.656439, 32.867989], [-83.656803, 32.868322], [-83.657167, 32.868655], [-83.657534, 32.868993], [-83.6579, 32.869331], [-83.658272, 32.869666], [-83.658641, 32.870006], [-83.659006, 32.870356], [-83.659365, 32.870717], [-83.659716, 32.871089], [-83.660058, 32.87147], [-83.660373, 32.871837], [-83.660698, 32.872226], [-83.66102, 32.872609], [-83.661336, 32.872988], [-83.661653, 32.873369], [-83.661969, 32.87375], [-83.662286, 32.874133], [-83.662612, 32.874523], [-83.662925, 32.874896], [-83.663243, 32.875279], [-83.663566, 32.875668], [-83.663889, 32.876056], [-83.664216, 32.876446], [-83.664526, 32.876819], [-83.664842, 32.8772], [-83.665165, 32.877586], [-83.665495, 32.877976], [-83.665837, 32.878363], [-83.666165, 32.878721], [-83.666492, 32.879083], [-83.666815, 32.879449]]}, "properties": {"filename": "osm-traces-page-65.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/4877532", "track.name": "2022_09_06T04_31_24.475032Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ACCORD 2018-22).", "times": ["2022-09-06 04:35:42+00:00", "2022-09-06 04:35:44+00:00", "2022-09-06 04:35:45+00:00", "2022-09-06 04:35:47+00:00", "2022-09-06 04:35:49+00:00", "2022-09-06 04:35:51+00:00", "2022-09-06 04:35:52+00:00", "2022-09-06 04:35:54+00:00", "2022-09-06 04:35:56+00:00", "2022-09-06 04:35:57+00:00", "2022-09-06 04:35:59+00:00", "2022-09-06 04:36:01+00:00", "2022-09-06 04:36:02+00:00", "2022-09-06 04:36:04+00:00", "2022-09-06 04:36:06+00:00", "2022-09-06 04:36:08+00:00", "2022-09-06 04:36:09+00:00", "2022-09-06 04:36:11+00:00", "2022-09-06 04:36:13+00:00", "2022-09-06 04:36:14+00:00", "2022-09-06 04:36:16+00:00", "2022-09-06 04:36:18+00:00", "2022-09-06 04:36:19+00:00", "2022-09-06 04:36:21+00:00", "2022-09-06 04:36:23+00:00", "2022-09-06 04:36:24+00:00", "2022-09-06 04:36:26+00:00", "2022-09-06 04:36:28+00:00", "2022-09-06 04:36:29+00:00", "2022-09-06 04:36:31+00:00", "2022-09-06 04:36:33+00:00", "2022-09-06 04:36:34+00:00", "2022-09-06 04:36:36+00:00", "2022-09-06 04:36:38+00:00", "2022-09-06 04:36:39+00:00", "2022-09-06 04:36:41+00:00", "2022-09-06 04:36:43+00:00", "2022-09-06 04:36:45+00:00", "2022-09-06 04:36:46+00:00", "2022-09-06 04:36:48+00:00", "2022-09-06 04:36:50+00:00", "2022-09-06 04:36:52+00:00", "2022-09-06 04:36:54+00:00", "2022-09-06 04:36:55+00:00", "2022-09-06 04:36:57+00:00", "2022-09-06 04:36:59+00:00", "2022-09-06 04:37:01+00:00", "2022-09-06 04:37:03+00:00", "2022-09-06 04:37:04+00:00", "2022-09-06 04:37:06+00:00", "2022-09-06 04:37:08+00:00", "2022-09-06 04:37:10+00:00", "2022-09-06 04:37:11+00:00", "2022-09-06 04:37:13+00:00", "2022-09-06 04:37:15+00:00", "2022-09-06 04:37:17+00:00", "2022-09-06 04:37:19+00:00", "2022-09-06 04:37:21+00:00", "2022-09-06 04:37:23+00:00", "2022-09-06 04:37:25+00:00", "2022-09-06 04:37:26+00:00", "2022-09-06 04:37:28+00:00", "2022-09-06 04:37:30+00:00", "2022-09-06 04:37:32+00:00", "2022-09-06 04:37:34+00:00", "2022-09-06 04:37:35+00:00", "2022-09-06 04:37:37+00:00", "2022-09-06 04:37:39+00:00", "2022-09-06 04:37:40+00:00", "2022-09-06 04:37:42+00:00", "2022-09-06 04:37:44+00:00", "2022-09-06 04:37:46+00:00", "2022-09-06 04:37:47+00:00", "2022-09-06 04:37:49+00:00", "2022-09-06 04:37:51+00:00", "2022-09-06 04:37:52+00:00", "2022-09-06 04:37:54+00:00", "2022-09-06 04:37:56+00:00", "2022-09-06 04:37:57+00:00", "2022-09-06 04:37:59+00:00", "2022-09-06 04:38:01+00:00", "2022-09-06 04:38:02+00:00", "2022-09-06 04:38:04+00:00", "2022-09-06 04:38:06+00:00", "2022-09-06 04:38:08+00:00", "2022-09-06 04:38:09+00:00", "2022-09-06 04:38:11+00:00", "2022-09-06 04:38:13+00:00", "2022-09-06 04:38:14+00:00", "2022-09-06 04:38:16+00:00", "2022-09-06 04:38:17+00:00", "2022-09-06 04:38:19+00:00", "2022-09-06 04:38:21+00:00", "2022-09-06 04:38:22+00:00", "2022-09-06 04:38:24+00:00", "2022-09-06 04:38:25+00:00", "2022-09-06 04:38:27+00:00", "2022-09-06 04:38:28+00:00", "2022-09-06 04:38:30+00:00", "2022-09-06 04:38:31+00:00", "2022-09-06 04:38:32+00:00"]}}, {"type": "Feature", "id": "trace#73", "geometry": {"type": "LineString", "coordinates": [[-83.711324, 32.774101], [-83.711587, 32.774522], [-83.711836, 32.774922], [-83.712096, 32.77533], [-83.712361, 32.775746], [-83.712623, 32.776169], [-83.71289, 32.776591], [-83.71316, 32.777015], [-83.713427, 32.77744], [-83.713678, 32.777838], [-83.713931, 32.778237], [-83.714184, 32.778638], [-83.714438, 32.779041], [-83.714693, 32.779443], [-83.714949, 32.779848], [-83.715203, 32.780251], [-83.715458, 32.780654], [-83.71571, 32.781057], [-83.715961, 32.781457], [-83.716212, 32.781855], [-83.716463, 32.782252], [-83.716712, 32.782652], [-83.716963, 32.783051], [-83.717232, 32.783474], [-83.717496, 32.783893], [-83.717759, 32.78431], [-83.718022, 32.784728], [-83.718281, 32.785144], [-83.718536, 32.785558], [-83.718781, 32.785969], [-83.719003, 32.786385], [-83.719186, 32.786808], [-83.719349, 32.787266], [-83.719479, 32.787728], [-83.719574, 32.788193], [-83.719638, 32.78866], [-83.71969, 32.78913], [-83.71974, 32.789606], [-83.719785, 32.790059], [-83.719834, 32.790518], [-83.719883, 32.79098], [-83.719931, 32.791446], [-83.71998, 32.791915], [-83.72003, 32.792384], [-83.720079, 32.79285], [-83.720127, 32.79331], [-83.720177, 32.793769], [-83.720227, 32.79423], [-83.720273, 32.794696], [-83.720323, 32.795168], [-83.720373, 32.795647], [-83.720421, 32.796098], [-83.720469, 32.796548], [-83.72052, 32.797027], [-83.720572, 32.797498], [-83.720631, 32.797961], [-83.720707, 32.798414], [-83.720795, 32.798861], [-83.720898, 32.799305], [-83.721016, 32.799744], [-83.721157, 32.800206], [-83.721316, 32.800662], [-83.72149, 32.801113], [-83.721679, 32.801558], [-83.721885, 32.801999], [-83.722098, 32.802442], [-83.722298, 32.802862]]}, "properties": {"filename": "osm-traces-page-66.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4864519", "track.name": "2022_09_03T19_10_25.560893Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (TOYOTA HIGHLANDER 2020).", "times": ["2022-09-03 19:18:08+00:00", "2022-09-03 19:18:09+00:00", "2022-09-03 19:18:11+00:00", "2022-09-03 19:18:12+00:00", "2022-09-03 19:18:14+00:00", "2022-09-03 19:18:15+00:00", "2022-09-03 19:18:17+00:00", "2022-09-03 19:18:18+00:00", "2022-09-03 19:18:20+00:00", "2022-09-03 19:18:21+00:00", "2022-09-03 19:18:23+00:00", "2022-09-03 19:18:24+00:00", "2022-09-03 19:18:26+00:00", "2022-09-03 19:18:27+00:00", "2022-09-03 19:18:28+00:00", "2022-09-03 19:18:30+00:00", "2022-09-03 19:18:31+00:00", "2022-09-03 19:18:33+00:00", "2022-09-03 19:18:34+00:00", "2022-09-03 19:18:35+00:00", "2022-09-03 19:18:37+00:00", "2022-09-03 19:18:38+00:00", "2022-09-03 19:18:40+00:00", "2022-09-03 19:18:41+00:00", "2022-09-03 19:18:43+00:00", "2022-09-03 19:18:44+00:00", "2022-09-03 19:18:46+00:00", "2022-09-03 19:18:47+00:00", "2022-09-03 19:18:49+00:00", "2022-09-03 19:18:50+00:00", "2022-09-03 19:18:52+00:00", "2022-09-03 19:18:53+00:00", "2022-09-03 19:18:55+00:00", "2022-09-03 19:18:56+00:00", "2022-09-03 19:18:58+00:00", "2022-09-03 19:18:59+00:00", "2022-09-03 19:19:01+00:00", "2022-09-03 19:19:03+00:00", "2022-09-03 19:19:04+00:00", "2022-09-03 19:19:06+00:00", "2022-09-03 19:19:07+00:00", "2022-09-03 19:19:09+00:00", "2022-09-03 19:19:10+00:00", "2022-09-03 19:19:12+00:00", "2022-09-03 19:19:13+00:00", "2022-09-03 19:19:15+00:00", "2022-09-03 19:19:16+00:00", "2022-09-03 19:19:18+00:00", "2022-09-03 19:19:19+00:00", "2022-09-03 19:19:21+00:00", "2022-09-03 19:19:22+00:00", "2022-09-03 19:19:24+00:00", "2022-09-03 19:19:25+00:00", "2022-09-03 19:19:26+00:00", "2022-09-03 19:19:28+00:00", "2022-09-03 19:19:29+00:00", "2022-09-03 19:19:31+00:00", "2022-09-03 19:19:32+00:00", "2022-09-03 19:19:34+00:00", "2022-09-03 19:19:35+00:00", "2022-09-03 19:19:37+00:00", "2022-09-03 19:19:39+00:00", "2022-09-03 19:19:40+00:00", "2022-09-03 19:19:42+00:00", "2022-09-03 19:19:43+00:00", "2022-09-03 19:19:45+00:00", "2022-09-03 19:19:47+00:00"]}}, {"type": "Feature", "id": "trace#74", "geometry": {"type": "LineString", "coordinates": [[-83.722411, 32.802751], [-83.722207, 32.802322], [-83.721986, 32.801883], [-83.721781, 32.801439], [-83.721615, 32.801001], [-83.721465, 32.800548], [-83.721335, 32.80011], [-83.721218, 32.799661], [-83.721114, 32.799203], [-83.721025, 32.798739], [-83.720952, 32.798269], [-83.720893, 32.797796], [-83.720844, 32.797321], [-83.720795, 32.796844], [-83.720746, 32.796366], [-83.720695, 32.795888], [-83.720644, 32.795413], [-83.720594, 32.794942], [-83.720546, 32.794474], [-83.720496, 32.794005], [-83.720445, 32.793536], [-83.720394, 32.793066], [-83.720343, 32.792597], [-83.720295, 32.792128], [-83.720247, 32.79166], [-83.720198, 32.791191], [-83.72015, 32.79072], [-83.720103, 32.790247], [-83.720052, 32.789772], [-83.720003, 32.789297], [-83.719952, 32.788821], [-83.71989, 32.788346], [-83.719809, 32.787875], [-83.719695, 32.787413], [-83.719553, 32.78696], [-83.71938, 32.786518], [-83.719174, 32.786086], [-83.718939, 32.785664], [-83.718683, 32.785252], [-83.718424, 32.784841], [-83.718166, 32.784432], [-83.717912, 32.784024], [-83.71766, 32.783621], [-83.71741, 32.783223], [-83.717144, 32.782799], [-83.716879, 32.782375], [-83.716615, 32.781951], [-83.71635, 32.781527], [-83.716085, 32.781104], [-83.715817, 32.780682], [-83.715568, 32.780284], [-83.715302, 32.779862], [-83.715038, 32.779442], [-83.714776, 32.779024], [-83.714511, 32.778605], [-83.714245, 32.778181], [-83.713993, 32.777779], [-83.713737, 32.777372], [-83.713479, 32.776963], [-83.713219, 32.77655], [-83.712958, 32.776136], [-83.712697, 32.775721], [-83.712434, 32.775304], [-83.712171, 32.774886], [-83.71191, 32.774468]]}, "properties": {"filename": "osm-traces-page-66.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/4859118", "track.name": "2022_09_02T17_15_37.516369Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ACCORD 2018-22).", "times": ["2022-09-02 17:21:54+00:00", "2022-09-02 17:21:55+00:00", "2022-09-02 17:21:57+00:00", "2022-09-02 17:21:59+00:00", "2022-09-02 17:22:00+00:00", "2022-09-02 17:22:02+00:00", "2022-09-02 17:22:03+00:00", "2022-09-02 17:22:05+00:00", "2022-09-02 17:22:06+00:00", "2022-09-02 17:22:08+00:00", "2022-09-02 17:22:09+00:00", "2022-09-02 17:22:11+00:00", "2022-09-02 17:22:12+00:00", "2022-09-02 17:22:14+00:00", "2022-09-02 17:22:15+00:00", "2022-09-02 17:22:17+00:00", "2022-09-02 17:22:18+00:00", "2022-09-02 17:22:20+00:00", "2022-09-02 17:22:21+00:00", "2022-09-02 17:22:23+00:00", "2022-09-02 17:22:24+00:00", "2022-09-02 17:22:26+00:00", "2022-09-02 17:22:27+00:00", "2022-09-02 17:22:29+00:00", "2022-09-02 17:22:30+00:00", "2022-09-02 17:22:32+00:00", "2022-09-02 17:22:33+00:00", "2022-09-02 17:22:35+00:00", "2022-09-02 17:22:36+00:00", "2022-09-02 17:22:38+00:00", "2022-09-02 17:22:39+00:00", "2022-09-02 17:22:41+00:00", "2022-09-02 17:22:42+00:00", "2022-09-02 17:22:44+00:00", "2022-09-02 17:22:45+00:00", "2022-09-02 17:22:47+00:00", "2022-09-02 17:22:48+00:00", "2022-09-02 17:22:50+00:00", "2022-09-02 17:22:51+00:00", "2022-09-02 17:22:53+00:00", "2022-09-02 17:22:54+00:00", "2022-09-02 17:22:56+00:00", "2022-09-02 17:22:57+00:00", "2022-09-02 17:22:59+00:00", "2022-09-02 17:23:01+00:00", "2022-09-02 17:23:02+00:00", "2022-09-02 17:23:04+00:00", "2022-09-02 17:23:05+00:00", "2022-09-02 17:23:07+00:00", "2022-09-02 17:23:09+00:00", "2022-09-02 17:23:10+00:00", "2022-09-02 17:23:12+00:00", "2022-09-02 17:23:13+00:00", "2022-09-02 17:23:15+00:00", "2022-09-02 17:23:16+00:00", "2022-09-02 17:23:18+00:00", "2022-09-02 17:23:20+00:00", "2022-09-02 17:23:21+00:00", "2022-09-02 17:23:23+00:00", "2022-09-02 17:23:24+00:00", "2022-09-02 17:23:26+00:00", "2022-09-02 17:23:27+00:00", "2022-09-02 17:23:29+00:00", "2022-09-02 17:23:30+00:00", "2022-09-02 17:23:32+00:00"]}}, {"type": "Feature", "id": "trace#75", "geometry": {"type": "LineString", "coordinates": [[-83.711335, 32.774101], [-83.711583, 32.774503], [-83.711841, 32.774917], [-83.712097, 32.77532], [-83.712358, 32.775736], [-83.712618, 32.776155], [-83.712862, 32.776568], [-83.713106, 32.776978], [-83.713361, 32.777399], [-83.713607, 32.777814], [-83.713859, 32.77824], [-83.714111, 32.778649], [-83.714374, 32.779066], [-83.714625, 32.779463], [-83.714889, 32.779885], [-83.715149, 32.7803], [-83.715407, 32.780709], [-83.715668, 32.781118], [-83.715927, 32.781527], [-83.716188, 32.781936], [-83.716459, 32.782344], [-83.716734, 32.782756]]}, "properties": {"filename": "osm-traces-page-66.gpx", "track.number": 4, "track.link": "/user/sunnypilot/traces/4850419", "track.name": "2022_08_31T18_15_30.145167Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (LEXUS RX HYBRID 2020).", "times": ["2022-08-31 18:24:53+00:00", "2022-08-31 18:24:55+00:00", "2022-08-31 18:24:57+00:00", "2022-08-31 18:24:59+00:00", "2022-08-31 18:25:01+00:00", "2022-08-31 18:25:03+00:00", "2022-08-31 18:25:04+00:00", "2022-08-31 18:25:06+00:00", "2022-08-31 18:25:08+00:00", "2022-08-31 18:25:10+00:00", "2022-08-31 18:25:11+00:00", "2022-08-31 18:25:13+00:00", "2022-08-31 18:25:15+00:00", "2022-08-31 18:25:16+00:00", "2022-08-31 18:25:18+00:00", "2022-08-31 18:25:19+00:00", "2022-08-31 18:25:21+00:00", "2022-08-31 18:25:23+00:00", "2022-08-31 18:25:24+00:00", "2022-08-31 18:25:26+00:00", "2022-08-31 18:25:27+00:00", "2022-08-31 18:25:29+00:00"]}}, {"type": "Feature", "id": "trace#76", "geometry": {"type": "LineString", "coordinates": [[-83.72241, 32.802801], [-83.722205, 32.802373], [-83.722011, 32.801949], [-83.721831, 32.801524], [-83.721658, 32.801071], [-83.721503, 32.800616], [-83.721363, 32.800156], [-83.721239, 32.799688], [-83.721137, 32.799245], [-83.721048, 32.798795], [-83.720975, 32.79834], [-83.720918, 32.797882], [-83.72087, 32.797423], [-83.720821, 32.796967], [-83.720774, 32.796519], [-83.720724, 32.796043], [-83.720674, 32.795567], [-83.720625, 32.795093], [-83.720575, 32.794618], [-83.720526, 32.794143], [-83.720475, 32.793666], [-83.720428, 32.793216], [-83.720381, 32.792762], [-83.720334, 32.792306], [-83.720285, 32.791849], [-83.720236, 32.791374], [-83.720187, 32.790905], [-83.720138, 32.790436], [-83.720091, 32.789975], [-83.720042, 32.789518], [-83.719995, 32.789064], [-83.719942, 32.788597], [-83.719875, 32.788134], [-83.719777, 32.787666], [-83.719651, 32.787219], [-83.719501, 32.786775], [-83.719318, 32.786337], [-83.7191, 32.785904], [-83.718851, 32.785482], [-83.718586, 32.785061], [-83.718327, 32.784656], [-83.718068, 32.784251], [-83.717809, 32.783837], [-83.717551, 32.783419], [-83.71729, 32.783001], [-83.717029, 32.782585], [-83.716772, 32.782177], [-83.716515, 32.781769], [-83.716257, 32.781358], [-83.715997, 32.780944], [-83.715738, 32.780533], [-83.715482, 32.780128], [-83.715229, 32.779727], [-83.714964, 32.779304], [-83.7147, 32.778885], [-83.714439, 32.778469], [-83.714179, 32.778056], [-83.713921, 32.777636], [-83.713676, 32.777224], [-83.713419, 32.776794], [-83.713165, 32.776381], [-83.712907, 32.775965], [-83.712651, 32.775556], [-83.712398, 32.775151], [-83.712143, 32.774749], [-83.71189, 32.774348]]}, "properties": {"filename": "osm-traces-page-66.gpx", "track.number": 5, "track.link": "/user/sunnypilot/traces/4839938", "track.name": "2022_08_28T18_20_11.350548Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ACCORD 2018-22).", "times": ["2022-08-28 18:20:15+00:00", "2022-08-28 18:20:17+00:00", "2022-08-28 18:20:18+00:00", "2022-08-28 18:20:20+00:00", "2022-08-28 18:20:21+00:00", "2022-08-28 18:20:23+00:00", "2022-08-28 18:20:25+00:00", "2022-08-28 18:20:26+00:00", "2022-08-28 18:20:28+00:00", "2022-08-28 18:20:29+00:00", "2022-08-28 18:20:31+00:00", "2022-08-28 18:20:32+00:00", "2022-08-28 18:20:34+00:00", "2022-08-28 18:20:35+00:00", "2022-08-28 18:20:37+00:00", "2022-08-28 18:20:38+00:00", "2022-08-28 18:20:40+00:00", "2022-08-28 18:20:42+00:00", "2022-08-28 18:20:43+00:00", "2022-08-28 18:20:45+00:00", "2022-08-28 18:20:46+00:00", "2022-08-28 18:20:48+00:00", "2022-08-28 18:20:49+00:00", "2022-08-28 18:20:51+00:00", "2022-08-28 18:20:52+00:00", "2022-08-28 18:20:54+00:00", "2022-08-28 18:20:56+00:00", "2022-08-28 18:20:57+00:00", "2022-08-28 18:20:59+00:00", "2022-08-28 18:21:00+00:00", "2022-08-28 18:21:02+00:00", "2022-08-28 18:21:04+00:00", "2022-08-28 18:21:05+00:00", "2022-08-28 18:21:07+00:00", "2022-08-28 18:21:09+00:00", "2022-08-28 18:21:10+00:00", "2022-08-28 18:21:12+00:00", "2022-08-28 18:21:13+00:00", "2022-08-28 18:21:15+00:00", "2022-08-28 18:21:17+00:00", "2022-08-28 18:21:18+00:00", "2022-08-28 18:21:20+00:00", "2022-08-28 18:21:21+00:00", "2022-08-28 18:21:23+00:00", "2022-08-28 18:21:24+00:00", "2022-08-28 18:21:26+00:00", "2022-08-28 18:21:27+00:00", "2022-08-28 18:21:29+00:00", "2022-08-28 18:21:30+00:00", "2022-08-28 18:21:32+00:00", "2022-08-28 18:21:33+00:00", "2022-08-28 18:21:35+00:00", "2022-08-28 18:21:36+00:00", "2022-08-28 18:21:38+00:00", "2022-08-28 18:21:39+00:00", "2022-08-28 18:21:41+00:00", "2022-08-28 18:21:43+00:00", "2022-08-28 18:21:44+00:00", "2022-08-28 18:21:46+00:00", "2022-08-28 18:21:47+00:00", "2022-08-28 18:21:49+00:00", "2022-08-28 18:21:50+00:00", "2022-08-28 18:21:51+00:00", "2022-08-28 18:21:53+00:00", "2022-08-28 18:21:54+00:00", "2022-08-28 18:21:56+00:00"]}}, {"type": "Feature", "id": "trace#77", "geometry": {"type": "LineString", "coordinates": [[-83.667959, 32.788957], [-83.668243, 32.788569], [-83.66855, 32.788196], [-83.668881, 32.78784], [-83.669237, 32.787503], [-83.669646, 32.787171], [-83.670079, 32.786865], [-83.670526, 32.786574], [-83.670979, 32.786284], [-83.671433, 32.785991], [-83.671858, 32.785718], [-83.672283, 32.785444], [-83.672709, 32.785169], [-83.673135, 32.784896], [-83.673586, 32.784606], [-83.674031, 32.78432], [-83.674475, 32.784036], [-83.67492, 32.78375], [-83.675361, 32.783458], [-83.6758, 32.783159], [-83.676246, 32.782861], [-83.676671, 32.782584], [-83.677099, 32.782306], [-83.677529, 32.782029], [-83.677962, 32.781751], [-83.678394, 32.781472], [-83.678826, 32.781193], [-83.679259, 32.780915], [-83.679697, 32.780641], [-83.68014, 32.780371], [-83.680584, 32.780099], [-83.681027, 32.779821], [-83.681469, 32.779538], [-83.68191, 32.779254], [-83.682351, 32.778969], [-83.682792, 32.778684], [-83.683234, 32.778398], [-83.683674, 32.778114], [-83.684115, 32.777831], [-83.684553, 32.777549], [-83.684991, 32.777266], [-83.68543, 32.776984], [-83.685868, 32.776703], [-83.686307, 32.77642], [-83.686747, 32.776137], [-83.687189, 32.775852], [-83.687633, 32.775567], [-83.688078, 32.775281], [-83.688523, 32.774994], [-83.68897, 32.774709], [-83.689416, 32.774421], [-83.689863, 32.774134]]}, "properties": {"filename": "osm-traces-page-68.gpx", "track.number": 0, "track.link": "/user/dragonpilot/traces/4810162", "track.name": "2022_08_04T22_19_35.979050Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-08-04 22:27:37+00:00", "2022-08-04 22:27:39+00:00", "2022-08-04 22:27:40+00:00", "2022-08-04 22:27:41+00:00", "2022-08-04 22:27:43+00:00", "2022-08-04 22:27:44+00:00", "2022-08-04 22:27:46+00:00", "2022-08-04 22:27:47+00:00", "2022-08-04 22:27:49+00:00", "2022-08-04 22:27:50+00:00", "2022-08-04 22:27:52+00:00", "2022-08-04 22:27:53+00:00", "2022-08-04 22:27:54+00:00", "2022-08-04 22:27:56+00:00", "2022-08-04 22:27:57+00:00", "2022-08-04 22:27:59+00:00", "2022-08-04 22:28:00+00:00", "2022-08-04 22:28:02+00:00", "2022-08-04 22:28:03+00:00", "2022-08-04 22:28:05+00:00", "2022-08-04 22:28:06+00:00", "2022-08-04 22:28:08+00:00", "2022-08-04 22:28:09+00:00", "2022-08-04 22:28:11+00:00", "2022-08-04 22:28:12+00:00", "2022-08-04 22:28:13+00:00", "2022-08-04 22:28:15+00:00", "2022-08-04 22:28:16+00:00", "2022-08-04 22:28:18+00:00", "2022-08-04 22:28:19+00:00", "2022-08-04 22:28:20+00:00", "2022-08-04 22:28:22+00:00", "2022-08-04 22:28:23+00:00", "2022-08-04 22:28:25+00:00", "2022-08-04 22:28:26+00:00", "2022-08-04 22:28:27+00:00", "2022-08-04 22:28:29+00:00", "2022-08-04 22:28:30+00:00", "2022-08-04 22:28:32+00:00", "2022-08-04 22:28:33+00:00", "2022-08-04 22:28:34+00:00", "2022-08-04 22:28:36+00:00", "2022-08-04 22:28:37+00:00", "2022-08-04 22:28:39+00:00", "2022-08-04 22:28:40+00:00", "2022-08-04 22:28:41+00:00", "2022-08-04 22:28:43+00:00", "2022-08-04 22:28:44+00:00", "2022-08-04 22:28:46+00:00", "2022-08-04 22:28:47+00:00", "2022-08-04 22:28:48+00:00", "2022-08-04 22:28:50+00:00"]}}, {"type": "Feature", "id": "trace#78", "geometry": {"type": "LineString", "coordinates": [[-83.596391, 32.891015], [-83.59671, 32.890623], [-83.597029, 32.89026], [-83.597371, 32.889908], [-83.597719, 32.889562], [-83.598086, 32.889204], [-83.598453, 32.888847], [-83.598827, 32.88849], [-83.599177, 32.888145], [-83.599532, 32.887801], [-83.599885, 32.887457], [-83.600235, 32.887111], [-83.600591, 32.886767], [-83.600947, 32.886427], [-83.601316, 32.886071], [-83.601682, 32.885715], [-83.602041, 32.885359], [-83.602406, 32.885007], [-83.602765, 32.884657], [-83.603125, 32.884307], [-83.603493, 32.883951], [-83.60385, 32.883603], [-83.604215, 32.883247], [-83.604585, 32.882887], [-83.604954, 32.882525], [-83.605325, 32.882165], [-83.605697, 32.881804], [-83.606064, 32.881442], [-83.606434, 32.881081], [-83.606803, 32.880721], [-83.60717, 32.880361], [-83.607532, 32.88], [-83.607874, 32.879629], [-83.6082, 32.879244], [-83.608506, 32.878847], [-83.608786, 32.878441], [-83.609042, 32.878032], [-83.609302, 32.877626], [-83.609557, 32.877219], [-83.6098, 32.87681], [-83.61005, 32.876405], [-83.610298, 32.876], [-83.610546, 32.875596], [-83.610797, 32.875193], [-83.611045, 32.874789], [-83.611296, 32.874383], [-83.611545, 32.873982], [-83.611804, 32.873566], [-83.612059, 32.873156], [-83.612307, 32.872733], [-83.612527, 32.872309], [-83.612717, 32.871882], [-83.612874, 32.871446], [-83.612994, 32.870993], [-83.613081, 32.870549], [-83.613141, 32.870092], [-83.613162, 32.869628], [-83.613157, 32.869166], [-83.613119, 32.868697], [-83.613068, 32.868245], [-83.613017, 32.867776], [-83.612969, 32.867326], [-83.612914, 32.866865], [-83.612862, 32.866412], [-83.612819, 32.86596], [-83.612783, 32.865501], [-83.612775, 32.865038], [-83.612796, 32.864573], [-83.61285, 32.864119], [-83.612935, 32.863664], [-83.613052, 32.863218], [-83.613206, 32.862773], [-83.613391, 32.862343], [-83.613608, 32.861915], [-83.613853, 32.861498], [-83.614109, 32.861092], [-83.614369, 32.860693], [-83.614636, 32.860287], [-83.614897, 32.859892], [-83.615154, 32.859494], [-83.615413, 32.859093], [-83.615668, 32.858697]]}, "properties": {"filename": "osm-traces-page-68.gpx", "track.number": 1, "track.link": "/user/dragonpilot/traces/4810161", "track.name": "2022_08_04T22_09_35.981783Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-08-04 22:16:54+00:00", "2022-08-04 22:16:56+00:00", "2022-08-04 22:16:57+00:00", "2022-08-04 22:16:59+00:00", "2022-08-04 22:17:01+00:00", "2022-08-04 22:17:03+00:00", "2022-08-04 22:17:04+00:00", "2022-08-04 22:17:06+00:00", "2022-08-04 22:17:08+00:00", "2022-08-04 22:17:10+00:00", "2022-08-04 22:17:11+00:00", "2022-08-04 22:17:13+00:00", "2022-08-04 22:17:15+00:00", "2022-08-04 22:17:16+00:00", "2022-08-04 22:17:18+00:00", "2022-08-04 22:17:20+00:00", "2022-08-04 22:17:22+00:00", "2022-08-04 22:17:24+00:00", "2022-08-04 22:17:25+00:00", "2022-08-04 22:17:27+00:00", "2022-08-04 22:17:29+00:00", "2022-08-04 22:17:31+00:00", "2022-08-04 22:17:32+00:00", "2022-08-04 22:17:34+00:00", "2022-08-04 22:17:36+00:00", "2022-08-04 22:17:37+00:00", "2022-08-04 22:17:39+00:00", "2022-08-04 22:17:41+00:00", "2022-08-04 22:17:43+00:00", "2022-08-04 22:17:44+00:00", "2022-08-04 22:17:46+00:00", "2022-08-04 22:17:48+00:00", "2022-08-04 22:17:49+00:00", "2022-08-04 22:17:51+00:00", "2022-08-04 22:17:53+00:00", "2022-08-04 22:17:54+00:00", "2022-08-04 22:17:56+00:00", "2022-08-04 22:17:58+00:00", "2022-08-04 22:18:00+00:00", "2022-08-04 22:18:01+00:00", "2022-08-04 22:18:03+00:00", "2022-08-04 22:18:05+00:00", "2022-08-04 22:18:06+00:00", "2022-08-04 22:18:08+00:00", "2022-08-04 22:18:10+00:00", "2022-08-04 22:18:12+00:00", "2022-08-04 22:18:13+00:00", "2022-08-04 22:18:15+00:00", "2022-08-04 22:18:17+00:00", "2022-08-04 22:18:19+00:00", "2022-08-04 22:18:21+00:00", "2022-08-04 22:18:23+00:00", "2022-08-04 22:18:24+00:00", "2022-08-04 22:18:26+00:00", "2022-08-04 22:18:28+00:00", "2022-08-04 22:18:30+00:00", "2022-08-04 22:18:32+00:00", "2022-08-04 22:18:34+00:00", "2022-08-04 22:18:35+00:00", "2022-08-04 22:18:37+00:00", "2022-08-04 22:18:39+00:00", "2022-08-04 22:18:42+00:00", "2022-08-04 22:18:45+00:00", "2022-08-04 22:18:48+00:00", "2022-08-04 22:18:52+00:00", "2022-08-04 22:18:57+00:00", "2022-08-04 22:19:00+00:00", "2022-08-04 22:19:03+00:00", "2022-08-04 22:19:05+00:00", "2022-08-04 22:19:08+00:00", "2022-08-04 22:19:10+00:00", "2022-08-04 22:19:12+00:00", "2022-08-04 22:19:14+00:00", "2022-08-04 22:19:17+00:00", "2022-08-04 22:19:19+00:00", "2022-08-04 22:19:21+00:00", "2022-08-04 22:19:23+00:00", "2022-08-04 22:19:25+00:00", "2022-08-04 22:19:28+00:00", "2022-08-04 22:19:30+00:00", "2022-08-04 22:19:32+00:00", "2022-08-04 22:19:35+00:00"]}}, {"type": "Feature", "id": "trace#79", "geometry": {"type": "LineString", "coordinates": [[-83.621269, 32.850822], [-83.620852, 32.851115], [-83.620455, 32.851432], [-83.620081, 32.851773], [-83.619746, 32.852136], [-83.61946, 32.852525], [-83.619199, 32.852924], [-83.618941, 32.853324], [-83.618681, 32.853729], [-83.618426, 32.854126], [-83.618165, 32.854533], [-83.61791, 32.854929], [-83.617645, 32.855338], [-83.617383, 32.85575], [-83.61712, 32.856159], [-83.616858, 32.856566], [-83.616594, 32.856977], [-83.616339, 32.857376], [-83.616087, 32.857776], [-83.615827, 32.858178], [-83.61557, 32.858582], [-83.615306, 32.858987], [-83.61504, 32.859394], [-83.614784, 32.859791], [-83.614521, 32.860199], [-83.614259, 32.860591], [-83.613996, 32.861], [-83.613737, 32.861394], [-83.613492, 32.861809], [-83.613271, 32.862232], [-83.613086, 32.862658], [-83.612938, 32.863091], [-83.61281, 32.86354], [-83.612709, 32.863994], [-83.612638, 32.864446], [-83.612602, 32.864897], [-83.612612, 32.865349], [-83.612633, 32.865806], [-83.612678, 32.866266], [-83.612728, 32.866729], [-83.612779, 32.867177], [-83.612836, 32.867626], [-83.612886, 32.868076], [-83.612938, 32.868523], [-83.612984, 32.868988], [-83.613005, 32.869449], [-83.612995, 32.869912], [-83.612953, 32.870373], [-83.612876, 32.870818], [-83.612758, 32.871279], [-83.61261, 32.871722], [-83.612425, 32.872162], [-83.612191, 32.872592], [-83.611938, 32.872996], [-83.61168, 32.873403], [-83.611426, 32.873812], [-83.61117, 32.874224], [-83.610921, 32.874633], [-83.610671, 32.875037], [-83.61042, 32.87544], [-83.610169, 32.875844], [-83.60992, 32.876251], [-83.609668, 32.876659], [-83.609413, 32.877069], [-83.60916, 32.877477], [-83.608897, 32.877895], [-83.608632, 32.8783], [-83.608353, 32.878708], [-83.608058, 32.879097], [-83.607746, 32.879469], [-83.60742, 32.879827], [-83.607075, 32.880177], [-83.606717, 32.880527], [-83.606352, 32.880885], [-83.605999, 32.881229], [-83.605645, 32.881574], [-83.60529, 32.88192], [-83.604934, 32.882265], [-83.604582, 32.882608], [-83.604233, 32.88295], [-83.603873, 32.883302], [-83.60352, 32.883644], [-83.603155, 32.883999], [-83.60279, 32.884353], [-83.602423, 32.88471], [-83.602069, 32.885051], [-83.601714, 32.8854], [-83.601354, 32.885757], [-83.600999, 32.886101], [-83.600633, 32.886451], [-83.600285, 32.886794], [-83.599933, 32.887141], [-83.59958, 32.887484], [-83.599227, 32.88783], [-83.598873, 32.888172], [-83.598501, 32.888523], [-83.598137, 32.888872], [-83.597785, 32.889215], [-83.597423, 32.889572], [-83.597065, 32.889925], [-83.596711, 32.890283]]}, "properties": {"filename": "osm-traces-page-69.gpx", "track.number": 0, "track.link": "/user/dragonpilot/traces/4810106", "track.name": "1970_01_01T00_53_22.241728Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-08-08 16:32:32+00:00", "2022-08-08 16:32:36+00:00", "2022-08-08 16:32:39+00:00", "2022-08-08 16:32:42+00:00", "2022-08-08 16:32:45+00:00", "2022-08-08 16:32:48+00:00", "2022-08-08 16:32:51+00:00", "2022-08-08 16:32:54+00:00", "2022-08-08 16:32:57+00:00", "2022-08-08 16:33:00+00:00", "2022-08-08 16:33:03+00:00", "2022-08-08 16:33:06+00:00", "2022-08-08 16:33:08+00:00", "2022-08-08 16:33:11+00:00", "2022-08-08 16:33:14+00:00", "2022-08-08 16:33:16+00:00", "2022-08-08 16:33:19+00:00", "2022-08-08 16:33:21+00:00", "2022-08-08 16:33:24+00:00", "2022-08-08 16:33:28+00:00", "2022-08-08 16:33:33+00:00", "2022-08-08 16:33:38+00:00", "2022-08-08 16:33:41+00:00", "2022-08-08 16:33:44+00:00", "2022-08-08 16:33:46+00:00", "2022-08-08 16:33:49+00:00", "2022-08-08 16:33:52+00:00", "2022-08-08 16:33:54+00:00", "2022-08-08 16:33:57+00:00", "2022-08-08 16:34:01+00:00", "2022-08-08 16:34:05+00:00", "2022-08-08 16:34:10+00:00", "2022-08-08 16:34:14+00:00", "2022-08-08 16:34:17+00:00", "2022-08-08 16:34:20+00:00", "2022-08-08 16:34:24+00:00", "2022-08-08 16:34:52+00:00", "2022-08-08 16:34:56+00:00", "2022-08-08 16:35:00+00:00", "2022-08-08 16:35:02+00:00", "2022-08-08 16:35:05+00:00", "2022-08-08 16:35:07+00:00", "2022-08-08 16:35:10+00:00", "2022-08-08 16:35:12+00:00", "2022-08-08 16:35:14+00:00", "2022-08-08 16:35:17+00:00", "2022-08-08 16:35:19+00:00", "2022-08-08 16:35:21+00:00", "2022-08-08 16:35:23+00:00", "2022-08-08 16:35:25+00:00", "2022-08-08 16:35:27+00:00", "2022-08-08 16:35:29+00:00", "2022-08-08 16:35:31+00:00", "2022-08-08 16:35:33+00:00", "2022-08-08 16:35:35+00:00", "2022-08-08 16:35:36+00:00", "2022-08-08 16:35:38+00:00", "2022-08-08 16:35:40+00:00", "2022-08-08 16:35:42+00:00", "2022-08-08 16:35:44+00:00", "2022-08-08 16:35:45+00:00", "2022-08-08 16:35:47+00:00", "2022-08-08 16:35:49+00:00", "2022-08-08 16:35:51+00:00", "2022-08-08 16:35:52+00:00", "2022-08-08 16:35:54+00:00", "2022-08-08 16:35:56+00:00", "2022-08-08 16:35:58+00:00", "2022-08-08 16:36:00+00:00", "2022-08-08 16:36:02+00:00", "2022-08-08 16:36:04+00:00", "2022-08-08 16:36:06+00:00", "2022-08-08 16:36:08+00:00", "2022-08-08 16:36:10+00:00", "2022-08-08 16:36:12+00:00", "2022-08-08 16:36:14+00:00", "2022-08-08 16:36:16+00:00", "2022-08-08 16:36:18+00:00", "2022-08-08 16:36:20+00:00", "2022-08-08 16:36:22+00:00", "2022-08-08 16:36:24+00:00", "2022-08-08 16:36:26+00:00", "2022-08-08 16:36:28+00:00", "2022-08-08 16:36:30+00:00", "2022-08-08 16:36:32+00:00", "2022-08-08 16:36:34+00:00", "2022-08-08 16:36:36+00:00", "2022-08-08 16:36:38+00:00", "2022-08-08 16:36:40+00:00", "2022-08-08 16:36:42+00:00", "2022-08-08 16:36:44+00:00", "2022-08-08 16:36:45+00:00", "2022-08-08 16:36:47+00:00", "2022-08-08 16:36:49+00:00", "2022-08-08 16:36:51+00:00", "2022-08-08 16:36:53+00:00", "2022-08-08 16:36:55+00:00", "2022-08-08 16:36:57+00:00", "2022-08-08 16:36:59+00:00", "2022-08-08 16:37:01+00:00", "2022-08-08 16:37:03+00:00"]}}, {"type": "Feature", "id": "trace#80", "geometry": {"type": "LineString", "coordinates": [[-83.689472, 32.774095], [-83.689023, 32.774385], [-83.688573, 32.774674], [-83.68812, 32.774963], [-83.68767, 32.775254], [-83.687219, 32.775543], [-83.686768, 32.775834], [-83.686317, 32.776124], [-83.685865, 32.776414], [-83.685416, 32.776706], [-83.684967, 32.776996], [-83.684517, 32.777287], [-83.684067, 32.777577], [-83.683614, 32.777867], [-83.683163, 32.778156], [-83.682712, 32.778446], [-83.68226, 32.778734], [-83.681809, 32.779023], [-83.681359, 32.779313], [-83.680908, 32.779603], [-83.680456, 32.779894], [-83.680002, 32.780186], [-83.679547, 32.780479], [-83.679093, 32.780772], [-83.678666, 32.781045], [-83.67821, 32.781337], [-83.677756, 32.781628], [-83.6773, 32.781918], [-83.676852, 32.782205], [-83.676404, 32.782491], [-83.675957, 32.782775], [-83.675516, 32.783059], [-83.675074, 32.783343], [-83.674634, 32.783627], [-83.674194, 32.783912], [-83.673752, 32.784195], [-83.673311, 32.784477], [-83.672869, 32.784759], [-83.672431, 32.785041], [-83.671991, 32.785322], [-83.671552, 32.785606], [-83.671113, 32.78589], [-83.670678, 32.786174], [-83.670249, 32.786467], [-83.669833, 32.786771], [-83.669428, 32.787087], [-83.66904, 32.787419], [-83.668679, 32.787767], [-83.668343, 32.788134], [-83.668032, 32.788515], [-83.667748, 32.788913], [-83.667491, 32.789325], [-83.667263, 32.789751], [-83.667061, 32.790185], [-83.666873, 32.790625], [-83.666686, 32.791068], [-83.666497, 32.791514], [-83.666308, 32.791961], [-83.66612, 32.792408], [-83.665934, 32.792854], [-83.665742, 32.793296], [-83.665527, 32.79373], [-83.665279, 32.794149], [-83.665002, 32.794556], [-83.664698, 32.794946], [-83.664369, 32.795321], [-83.664012, 32.795676], [-83.663632, 32.796011], [-83.663236, 32.796335], [-83.662833, 32.796654], [-83.662435, 32.796977], [-83.662048, 32.797309], [-83.661677, 32.797656], [-83.661326, 32.798017], [-83.660994, 32.798391], [-83.660682, 32.798775], [-83.660392, 32.799173], [-83.660125, 32.799581], [-83.65988, 32.799997], [-83.659655, 32.800421], [-83.65945, 32.800852], [-83.65927, 32.801289], [-83.659106, 32.80173], [-83.658944, 32.802172], [-83.658783, 32.802611], [-83.658624, 32.803046], [-83.658466, 32.80348], [-83.65831, 32.803912], [-83.658144, 32.804367], [-83.657979, 32.80482], [-83.657813, 32.805272], [-83.657652, 32.805722], [-83.657503, 32.806172], [-83.657351, 32.806626], [-83.6572, 32.807059], [-83.657044, 32.807497], [-83.656885, 32.807938], [-83.656724, 32.808379], [-83.656569, 32.808823], [-83.656426, 32.80927], [-83.656299, 32.80972]]}, "properties": {"filename": "osm-traces-page-69.gpx", "track.number": 1, "track.link": "/user/dragonpilot/traces/4810099", "track.name": "1970_01_01T00_43_22.245143Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-08-08 16:22:30+00:00", "2022-08-08 16:22:31+00:00", "2022-08-08 16:22:33+00:00", "2022-08-08 16:22:34+00:00", "2022-08-08 16:22:36+00:00", "2022-08-08 16:22:37+00:00", "2022-08-08 16:22:39+00:00", "2022-08-08 16:22:40+00:00", "2022-08-08 16:22:42+00:00", "2022-08-08 16:22:43+00:00", "2022-08-08 16:22:45+00:00", "2022-08-08 16:22:46+00:00", "2022-08-08 16:22:48+00:00", "2022-08-08 16:22:49+00:00", "2022-08-08 16:22:51+00:00", "2022-08-08 16:22:52+00:00", "2022-08-08 16:22:54+00:00", "2022-08-08 16:22:55+00:00", "2022-08-08 16:22:57+00:00", "2022-08-08 16:22:58+00:00", "2022-08-08 16:23:00+00:00", "2022-08-08 16:23:01+00:00", "2022-08-08 16:23:03+00:00", "2022-08-08 16:23:04+00:00", "2022-08-08 16:23:06+00:00", "2022-08-08 16:23:07+00:00", "2022-08-08 16:23:09+00:00", "2022-08-08 16:23:10+00:00", "2022-08-08 16:23:12+00:00", "2022-08-08 16:23:13+00:00", "2022-08-08 16:23:15+00:00", "2022-08-08 16:23:16+00:00", "2022-08-08 16:23:18+00:00", "2022-08-08 16:23:19+00:00", "2022-08-08 16:23:21+00:00", "2022-08-08 16:23:22+00:00", "2022-08-08 16:23:24+00:00", "2022-08-08 16:23:25+00:00", "2022-08-08 16:23:27+00:00", "2022-08-08 16:23:28+00:00", "2022-08-08 16:23:30+00:00", "2022-08-08 16:23:31+00:00", "2022-08-08 16:23:33+00:00", "2022-08-08 16:23:34+00:00", "2022-08-08 16:23:36+00:00", "2022-08-08 16:23:37+00:00", "2022-08-08 16:23:39+00:00", "2022-08-08 16:23:40+00:00", "2022-08-08 16:23:42+00:00", "2022-08-08 16:23:43+00:00", "2022-08-08 16:23:45+00:00", "2022-08-08 16:23:46+00:00", "2022-08-08 16:23:48+00:00", "2022-08-08 16:23:49+00:00", "2022-08-08 16:23:51+00:00", "2022-08-08 16:23:52+00:00", "2022-08-08 16:23:54+00:00", "2022-08-08 16:23:55+00:00", "2022-08-08 16:23:57+00:00", "2022-08-08 16:23:58+00:00", "2022-08-08 16:24:00+00:00", "2022-08-08 16:24:01+00:00", "2022-08-08 16:24:03+00:00", "2022-08-08 16:24:04+00:00", "2022-08-08 16:24:06+00:00", "2022-08-08 16:24:07+00:00", "2022-08-08 16:24:09+00:00", "2022-08-08 16:24:10+00:00", "2022-08-08 16:24:12+00:00", "2022-08-08 16:24:13+00:00", "2022-08-08 16:24:15+00:00", "2022-08-08 16:24:16+00:00", "2022-08-08 16:24:18+00:00", "2022-08-08 16:24:19+00:00", "2022-08-08 16:24:21+00:00", "2022-08-08 16:24:22+00:00", "2022-08-08 16:24:24+00:00", "2022-08-08 16:24:25+00:00", "2022-08-08 16:24:27+00:00", "2022-08-08 16:24:28+00:00", "2022-08-08 16:24:30+00:00", "2022-08-08 16:24:31+00:00", "2022-08-08 16:24:33+00:00", "2022-08-08 16:24:34+00:00", "2022-08-08 16:24:36+00:00", "2022-08-08 16:24:37+00:00", "2022-08-08 16:24:39+00:00", "2022-08-08 16:24:40+00:00", "2022-08-08 16:24:42+00:00", "2022-08-08 16:24:44+00:00", "2022-08-08 16:24:45+00:00", "2022-08-08 16:24:47+00:00", "2022-08-08 16:24:48+00:00", "2022-08-08 16:24:50+00:00", "2022-08-08 16:24:51+00:00", "2022-08-08 16:24:53+00:00", "2022-08-08 16:24:54+00:00", "2022-08-08 16:24:56+00:00", "2022-08-08 16:24:57+00:00", "2022-08-08 16:24:59+00:00", "2022-08-08 16:25:00+00:00"]}}, {"type": "Feature", "id": "trace#81", "geometry": {"type": "LineString", "coordinates": [[-83.655948, 32.817292], [-83.655955, 32.816817], [-83.655962, 32.81634], [-83.655968, 32.815865], [-83.655972, 32.815389], [-83.655978, 32.814915], [-83.655985, 32.814442], [-83.655991, 32.813969], [-83.655996, 32.813496], [-83.656003, 32.812996], [-83.656019, 32.8125], [-83.656049, 32.812037], [-83.656097, 32.811578], [-83.656161, 32.811121], [-83.656239, 32.810667], [-83.656335, 32.810215], [-83.656451, 32.809737], [-83.656578, 32.809292], [-83.656721, 32.808849], [-83.656877, 32.80841], [-83.657047, 32.807943], [-83.657208, 32.807503], [-83.657366, 32.807063], [-83.657525, 32.806625], [-83.657684, 32.806189], [-83.657839, 32.805755], [-83.657997, 32.805325], [-83.658172, 32.804845], [-83.658346, 32.804369], [-83.65851, 32.803918], [-83.658675, 32.803465], [-83.658834, 32.803032], [-83.658995, 32.802593], [-83.659167, 32.802118], [-83.659342, 32.801637], [-83.659513, 32.801184], [-83.659709, 32.800738], [-83.659929, 32.800304], [-83.660186, 32.799858]]}, "properties": {"filename": "osm-traces-page-70.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4782978", "track.name": "2022_08_17T16_07_29.422484Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 0.8.14-1.3 (LEXUS RX HYBRID 2020).", "times": ["2022-08-17 16:11:19+00:00", "2022-08-17 16:11:20+00:00", "2022-08-17 16:11:22+00:00", "2022-08-17 16:11:24+00:00", "2022-08-17 16:11:25+00:00", "2022-08-17 16:11:27+00:00", "2022-08-17 16:11:28+00:00", "2022-08-17 16:11:30+00:00", "2022-08-17 16:11:32+00:00", "2022-08-17 16:11:33+00:00", "2022-08-17 16:11:35+00:00", "2022-08-17 16:11:37+00:00", "2022-08-17 16:11:38+00:00", "2022-08-17 16:11:40+00:00", "2022-08-17 16:11:41+00:00", "2022-08-17 16:11:43+00:00", "2022-08-17 16:11:45+00:00", "2022-08-17 16:11:46+00:00", "2022-08-17 16:11:48+00:00", "2022-08-17 16:11:50+00:00", "2022-08-17 16:11:51+00:00", "2022-08-17 16:11:53+00:00", "2022-08-17 16:11:54+00:00", "2022-08-17 16:11:56+00:00", "2022-08-17 16:11:58+00:00", "2022-08-17 16:11:59+00:00", "2022-08-17 16:12:01+00:00", "2022-08-17 16:12:03+00:00", "2022-08-17 16:12:04+00:00", "2022-08-17 16:12:06+00:00", "2022-08-17 16:12:08+00:00", "2022-08-17 16:12:09+00:00", "2022-08-17 16:12:11+00:00", "2022-08-17 16:12:13+00:00", "2022-08-17 16:12:14+00:00", "2022-08-17 16:12:16+00:00", "2022-08-17 16:12:18+00:00", "2022-08-17 16:12:19+00:00", "2022-08-17 16:12:21+00:00"]}}, {"type": "Feature", "id": "trace#82", "geometry": {"type": "LineString", "coordinates": [[-83.662866, 32.821605], [-83.662665, 32.822029], [-83.662652, 32.822497], [-83.662644, 32.822947], [-83.662633, 32.823409], [-83.662621, 32.823866], [-83.662617, 32.824326], [-83.662618, 32.824776], [-83.662619, 32.825232], [-83.662608, 32.825683], [-83.66207, 32.825757], [-83.661524, 32.825748], [-83.660953, 32.82574], [-83.660402, 32.825735], [-83.659849, 32.82573], [-83.659291, 32.825726], [-83.658756, 32.825732], [-83.658195, 32.825725], [-83.657656, 32.825708], [-83.657113, 32.825687], [-83.656569, 32.825663], [-83.656065, 32.825498], [-83.655747, 32.825132], [-83.655918, 32.824697], [-83.656461, 32.824644], [-83.656834, 32.824982], [-83.65694, 32.825432], [-83.656895, 32.825896], [-83.656811, 32.826363], [-83.656684, 32.826828], [-83.656522, 32.827268], [-83.656328, 32.827696], [-83.656103, 32.828104], [-83.655825, 32.828508], [-83.655525, 32.828886], [-83.655212, 32.829272], [-83.654896, 32.829667], [-83.654589, 32.830056], [-83.654272, 32.830448], [-83.653971, 32.830823], [-83.65367, 32.8312], [-83.65337, 32.831579], [-83.653076, 32.831966], [-83.652757, 32.832386]]}, "properties": {"filename": "osm-traces-page-71.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/4782649", "track.name": "2022_08_17T13_49_14.969428Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (LEXUS RX HYBRID 2020).", "times": ["2022-08-17 13:49:23+00:00", "2022-08-17 13:50:35+00:00", "2022-08-17 13:50:40+00:00", "2022-08-17 13:50:44+00:00", "2022-08-17 13:50:47+00:00", "2022-08-17 13:50:51+00:00", "2022-08-17 13:50:54+00:00", "2022-08-17 13:50:58+00:00", "2022-08-17 13:51:03+00:00", "2022-08-17 13:51:17+00:00", "2022-08-17 13:51:26+00:00", "2022-08-17 13:51:29+00:00", "2022-08-17 13:51:32+00:00", "2022-08-17 13:51:35+00:00", "2022-08-17 13:51:37+00:00", "2022-08-17 13:51:39+00:00", "2022-08-17 13:51:41+00:00", "2022-08-17 13:51:44+00:00", "2022-08-17 13:51:46+00:00", "2022-08-17 13:51:49+00:00", "2022-08-17 13:51:52+00:00", "2022-08-17 13:51:57+00:00", "2022-08-17 13:52:02+00:00", "2022-08-17 13:52:06+00:00", "2022-08-17 13:52:10+00:00", "2022-08-17 13:52:14+00:00", "2022-08-17 13:52:17+00:00", "2022-08-17 13:52:20+00:00", "2022-08-17 13:52:22+00:00", "2022-08-17 13:52:24+00:00", "2022-08-17 13:52:26+00:00", "2022-08-17 13:52:28+00:00", "2022-08-17 13:52:30+00:00", "2022-08-17 13:52:32+00:00", "2022-08-17 13:52:34+00:00", "2022-08-17 13:52:35+00:00", "2022-08-17 13:52:37+00:00", "2022-08-17 13:52:39+00:00", "2022-08-17 13:52:40+00:00", "2022-08-17 13:52:42+00:00", "2022-08-17 13:52:43+00:00", "2022-08-17 13:52:45+00:00", "2022-08-17 13:52:46+00:00", "2022-08-17 13:52:48+00:00"]}}, {"type": "Feature", "id": "trace#83", "geometry": {"type": "LineString", "coordinates": [[-83.676639, 32.891006], [-83.676333, 32.890623], [-83.676034, 32.890247], [-83.67572, 32.889854], [-83.67541, 32.889472], [-83.675103, 32.889099], [-83.674778, 32.888707], [-83.674453, 32.88832], [-83.674129, 32.887932], [-83.673803, 32.887539], [-83.673495, 32.887168], [-83.673185, 32.886795], [-83.672869, 32.886417], [-83.672546, 32.886037], [-83.672215, 32.885652], [-83.671904, 32.885284], [-83.671594, 32.88491], [-83.671286, 32.884537], [-83.670959, 32.884142], [-83.670637, 32.883754], [-83.67032, 32.883373], [-83.670007, 32.882997], [-83.669699, 32.882623], [-83.669392, 32.882252], [-83.669086, 32.881883], [-83.668779, 32.881513], [-83.668472, 32.881142], [-83.66816, 32.880773], [-83.667843, 32.880403], [-83.667523, 32.880032], [-83.667202, 32.879659], [-83.666881, 32.879286], [-83.666561, 32.878914], [-83.666242, 32.878544], [-83.665908, 32.878156], [-83.665584, 32.877776], [-83.665264, 32.877398], [-83.664947, 32.87702], [-83.664632, 32.876639], [-83.664316, 32.876258], [-83.663997, 32.875878], [-83.663679, 32.875497], [-83.663362, 32.875116], [-83.663046, 32.874735], [-83.66273, 32.874355], [-83.662412, 32.873973], [-83.662091, 32.873589], [-83.661765, 32.8732], [-83.661455, 32.872829], [-83.661142, 32.872451], [-83.660827, 32.87207], [-83.660507, 32.87169], [-83.660183, 32.871311], [-83.659851, 32.870938], [-83.659507, 32.870573], [-83.659152, 32.870217], [-83.658788, 32.869876], [-83.658408, 32.869523], [-83.658034, 32.869185], [-83.657671, 32.868853], [-83.657293, 32.868506], [-83.656926, 32.868166], [-83.656543, 32.867815], [-83.65617, 32.867471], [-83.655804, 32.867135], [-83.655424, 32.866787], [-83.655047, 32.86644], [-83.654671, 32.866094], [-83.654302, 32.865755], [-83.653933, 32.865415], [-83.653574, 32.865082], [-83.653212, 32.864748], [-83.652851, 32.864415], [-83.652487, 32.864082], [-83.652107, 32.863763], [-83.651702, 32.863461], [-83.651267, 32.863191], [-83.650801, 32.862959], [-83.65032, 32.862763], [-83.649831, 32.862566], [-83.649342, 32.86237], [-83.648849, 32.86218], [-83.648365, 32.861987], [-83.647861, 32.861785], [-83.647381, 32.861587], [-83.646896, 32.861388], [-83.646398, 32.86118], [-83.645909, 32.860949], [-83.645441, 32.860723], [-83.644969, 32.860498], [-83.644497, 32.860271], [-83.644035, 32.860032], [-83.643602, 32.859765], [-83.643185, 32.859455], [-83.642809, 32.859125], [-83.642458, 32.858757], [-83.642156, 32.858376]]}, "properties": {"filename": "osm-traces-page-72.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4782415", "track.name": "2022_08_17T12_22_37.558277Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (LEXUS RX HYBRID 2020).", "times": ["2022-08-17 12:27:59+00:00", "2022-08-17 12:28:00+00:00", "2022-08-17 12:28:02+00:00", "2022-08-17 12:28:03+00:00", "2022-08-17 12:28:05+00:00", "2022-08-17 12:28:06+00:00", "2022-08-17 12:28:08+00:00", "2022-08-17 12:28:09+00:00", "2022-08-17 12:28:11+00:00", "2022-08-17 12:28:13+00:00", "2022-08-17 12:28:14+00:00", "2022-08-17 12:28:16+00:00", "2022-08-17 12:28:17+00:00", "2022-08-17 12:28:19+00:00", "2022-08-17 12:28:20+00:00", "2022-08-17 12:28:22+00:00", "2022-08-17 12:28:23+00:00", "2022-08-17 12:28:24+00:00", "2022-08-17 12:28:26+00:00", "2022-08-17 12:28:27+00:00", "2022-08-17 12:28:29+00:00", "2022-08-17 12:28:30+00:00", "2022-08-17 12:28:32+00:00", "2022-08-17 12:28:33+00:00", "2022-08-17 12:28:35+00:00", "2022-08-17 12:28:36+00:00", "2022-08-17 12:28:38+00:00", "2022-08-17 12:28:39+00:00", "2022-08-17 12:28:41+00:00", "2022-08-17 12:28:42+00:00", "2022-08-17 12:28:44+00:00", "2022-08-17 12:28:45+00:00", "2022-08-17 12:28:47+00:00", "2022-08-17 12:28:48+00:00", "2022-08-17 12:28:50+00:00", "2022-08-17 12:28:52+00:00", "2022-08-17 12:28:53+00:00", "2022-08-17 12:28:55+00:00", "2022-08-17 12:28:56+00:00", "2022-08-17 12:28:58+00:00", "2022-08-17 12:29:00+00:00", "2022-08-17 12:29:01+00:00", "2022-08-17 12:29:03+00:00", "2022-08-17 12:29:04+00:00", "2022-08-17 12:29:06+00:00", "2022-08-17 12:29:08+00:00", "2022-08-17 12:29:09+00:00", "2022-08-17 12:29:11+00:00", "2022-08-17 12:29:12+00:00", "2022-08-17 12:29:14+00:00", "2022-08-17 12:29:15+00:00", "2022-08-17 12:29:17+00:00", "2022-08-17 12:29:18+00:00", "2022-08-17 12:29:20+00:00", "2022-08-17 12:29:21+00:00", "2022-08-17 12:29:23+00:00", "2022-08-17 12:29:24+00:00", "2022-08-17 12:29:26+00:00", "2022-08-17 12:29:27+00:00", "2022-08-17 12:29:29+00:00", "2022-08-17 12:29:31+00:00", "2022-08-17 12:29:32+00:00", "2022-08-17 12:29:34+00:00", "2022-08-17 12:29:36+00:00", "2022-08-17 12:29:38+00:00", "2022-08-17 12:29:40+00:00", "2022-08-17 12:29:42+00:00", "2022-08-17 12:29:44+00:00", "2022-08-17 12:29:45+00:00", "2022-08-17 12:29:48+00:00", "2022-08-17 12:29:50+00:00", "2022-08-17 12:29:54+00:00", "2022-08-17 12:30:05+00:00", "2022-08-17 12:30:17+00:00", "2022-08-17 12:30:25+00:00", "2022-08-17 12:30:34+00:00", "2022-08-17 12:30:39+00:00", "2022-08-17 12:30:44+00:00", "2022-08-17 12:30:51+00:00", "2022-08-17 12:30:56+00:00", "2022-08-17 12:31:01+00:00", "2022-08-17 12:31:10+00:00", "2022-08-17 12:31:13+00:00", "2022-08-17 12:31:15+00:00", "2022-08-17 12:31:18+00:00", "2022-08-17 12:31:20+00:00", "2022-08-17 12:31:22+00:00", "2022-08-17 12:31:24+00:00", "2022-08-17 12:31:25+00:00", "2022-08-17 12:31:27+00:00", "2022-08-17 12:31:29+00:00", "2022-08-17 12:31:31+00:00", "2022-08-17 12:31:33+00:00", "2022-08-17 12:31:35+00:00", "2022-08-17 12:31:37+00:00", "2022-08-17 12:31:39+00:00", "2022-08-17 12:31:41+00:00"]}}, {"type": "Feature", "id": "trace#84", "geometry": {"type": "LineString", "coordinates": [[-83.722409, 32.802747], [-83.72221, 32.802324], [-83.722014, 32.801898], [-83.721831, 32.801468], [-83.721667, 32.801034], [-83.721521, 32.800596], [-83.721379, 32.800127], [-83.721261, 32.799685], [-83.721159, 32.799241], [-83.721073, 32.798795], [-83.721001, 32.798347], [-83.720945, 32.797897], [-83.720897, 32.797446], [-83.72085, 32.796994], [-83.720803, 32.796542], [-83.720756, 32.79609], [-83.720709, 32.795639], [-83.720662, 32.795191], [-83.720613, 32.794715], [-83.720564, 32.794238], [-83.720517, 32.793789], [-83.72047, 32.793338], [-83.720421, 32.792885], [-83.720374, 32.792429], [-83.720329, 32.791974], [-83.72028, 32.791518], [-83.72023, 32.79103], [-83.72018, 32.790541], [-83.720133, 32.790082], [-83.720085, 32.789623], [-83.720039, 32.789164], [-83.719989, 32.788705], [-83.719928, 32.78825], [-83.71985, 32.787803], [-83.71973, 32.787338], [-83.719584, 32.786885], [-83.719406, 32.786441], [-83.719193, 32.786011], [-83.718956, 32.785591], [-83.718696, 32.785175], [-83.718412, 32.784728], [-83.718126, 32.784275], [-83.717872, 32.783873], [-83.717617, 32.783469], [-83.717362, 32.783063], [-83.717104, 32.782656], [-83.716829, 32.782222], [-83.716573, 32.781815], [-83.716319, 32.781408], [-83.716065, 32.781003], [-83.71581, 32.780599], [-83.715553, 32.780196], [-83.715299, 32.779793], [-83.715027, 32.779364], [-83.714775, 32.778961], [-83.714521, 32.778559], [-83.714265, 32.778157], [-83.714013, 32.777755], [-83.713762, 32.777352], [-83.713509, 32.776952], [-83.713255, 32.776551], [-83.713002, 32.77615], [-83.71275, 32.775749], [-83.712497, 32.775348], [-83.712244, 32.774948], [-83.71199, 32.774547], [-83.711742, 32.774145]]}, "properties": {"filename": "osm-traces-page-73.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4762097", "track.name": "2022_08_13T16_27_48.522209Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (TOYOTA HIGHLANDER 2020).", "times": ["2022-08-13 16:29:39+00:00", "2022-08-13 16:29:40+00:00", "2022-08-13 16:29:42+00:00", "2022-08-13 16:29:43+00:00", "2022-08-13 16:29:45+00:00", "2022-08-13 16:29:46+00:00", "2022-08-13 16:29:48+00:00", "2022-08-13 16:29:49+00:00", "2022-08-13 16:29:51+00:00", "2022-08-13 16:29:52+00:00", "2022-08-13 16:29:54+00:00", "2022-08-13 16:29:55+00:00", "2022-08-13 16:29:57+00:00", "2022-08-13 16:29:58+00:00", "2022-08-13 16:30:00+00:00", "2022-08-13 16:30:01+00:00", "2022-08-13 16:30:03+00:00", "2022-08-13 16:30:04+00:00", "2022-08-13 16:30:06+00:00", "2022-08-13 16:30:08+00:00", "2022-08-13 16:30:09+00:00", "2022-08-13 16:30:11+00:00", "2022-08-13 16:30:12+00:00", "2022-08-13 16:30:14+00:00", "2022-08-13 16:30:15+00:00", "2022-08-13 16:30:17+00:00", "2022-08-13 16:30:18+00:00", "2022-08-13 16:30:20+00:00", "2022-08-13 16:30:21+00:00", "2022-08-13 16:30:23+00:00", "2022-08-13 16:30:24+00:00", "2022-08-13 16:30:26+00:00", "2022-08-13 16:30:27+00:00", "2022-08-13 16:30:29+00:00", "2022-08-13 16:30:30+00:00", "2022-08-13 16:30:32+00:00", "2022-08-13 16:30:34+00:00", "2022-08-13 16:30:35+00:00", "2022-08-13 16:30:37+00:00", "2022-08-13 16:30:38+00:00", "2022-08-13 16:30:40+00:00", "2022-08-13 16:30:42+00:00", "2022-08-13 16:30:43+00:00", "2022-08-13 16:30:45+00:00", "2022-08-13 16:30:46+00:00", "2022-08-13 16:30:48+00:00", "2022-08-13 16:30:49+00:00", "2022-08-13 16:30:51+00:00", "2022-08-13 16:30:52+00:00", "2022-08-13 16:30:54+00:00", "2022-08-13 16:30:55+00:00", "2022-08-13 16:30:57+00:00", "2022-08-13 16:30:58+00:00", "2022-08-13 16:31:00+00:00", "2022-08-13 16:31:02+00:00", "2022-08-13 16:31:03+00:00", "2022-08-13 16:31:05+00:00", "2022-08-13 16:31:06+00:00", "2022-08-13 16:31:08+00:00", "2022-08-13 16:31:09+00:00", "2022-08-13 16:31:11+00:00", "2022-08-13 16:31:12+00:00", "2022-08-13 16:31:14+00:00", "2022-08-13 16:31:15+00:00", "2022-08-13 16:31:17+00:00", "2022-08-13 16:31:18+00:00", "2022-08-13 16:31:20+00:00"]}}, {"type": "Feature", "id": "trace#85", "geometry": {"type": "LineString", "coordinates": [[-83.72242, 32.802758], [-83.722218, 32.80233], [-83.722023, 32.801901], [-83.72184, 32.801469], [-83.721674, 32.801033], [-83.721529, 32.800593], [-83.721394, 32.800151], [-83.721276, 32.799707], [-83.721174, 32.79926], [-83.721084, 32.79881], [-83.72101, 32.798358], [-83.720954, 32.797905], [-83.720905, 32.797449], [-83.720855, 32.796994], [-83.720808, 32.796538], [-83.720761, 32.796081], [-83.720713, 32.795627], [-83.720664, 32.795175], [-83.720617, 32.794725], [-83.720571, 32.794275], [-83.720522, 32.793823], [-83.720472, 32.793369], [-83.720427, 32.792912], [-83.720379, 32.792454], [-83.720331, 32.791997], [-83.720281, 32.791539], [-83.720232, 32.791079], [-83.720183, 32.790617], [-83.720134, 32.790155], [-83.720087, 32.789692], [-83.720039, 32.789229], [-83.71999, 32.788767], [-83.719931, 32.788308], [-83.719854, 32.787857], [-83.719737, 32.787388], [-83.719592, 32.78693], [-83.719415, 32.786479], [-83.719201, 32.786042], [-83.718962, 32.785618], [-83.7187, 32.785197], [-83.718446, 32.784798], [-83.718192, 32.784395], [-83.717937, 32.783989], [-83.717677, 32.783582], [-83.717418, 32.783174], [-83.717161, 32.782763], [-83.716905, 32.782351], [-83.716647, 32.781941], [-83.716392, 32.781532], [-83.716136, 32.781125], [-83.715881, 32.780718], [-83.715626, 32.780312], [-83.715371, 32.779908], [-83.715116, 32.779503], [-83.714863, 32.779098], [-83.714608, 32.778693], [-83.714351, 32.778289], [-83.714098, 32.777881], [-83.713844, 32.777476], [-83.713586, 32.777072], [-83.713331, 32.776668], [-83.713077, 32.776265], [-83.712824, 32.775861], [-83.712568, 32.775457], [-83.712312, 32.775054], [-83.71206, 32.774649], [-83.71181, 32.774244]]}, "properties": {"filename": "osm-traces-page-73.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/4726917", "track.name": "2022_08_06T18_09_21.557549Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (TOYOTA HIGHLANDER 2020).", "times": ["2022-08-06 18:16:01+00:00", "2022-08-06 18:16:03+00:00", "2022-08-06 18:16:04+00:00", "2022-08-06 18:16:06+00:00", "2022-08-06 18:16:07+00:00", "2022-08-06 18:16:09+00:00", "2022-08-06 18:16:10+00:00", "2022-08-06 18:16:12+00:00", "2022-08-06 18:16:13+00:00", "2022-08-06 18:16:15+00:00", "2022-08-06 18:16:16+00:00", "2022-08-06 18:16:18+00:00", "2022-08-06 18:16:19+00:00", "2022-08-06 18:16:21+00:00", "2022-08-06 18:16:22+00:00", "2022-08-06 18:16:24+00:00", "2022-08-06 18:16:25+00:00", "2022-08-06 18:16:27+00:00", "2022-08-06 18:16:28+00:00", "2022-08-06 18:16:30+00:00", "2022-08-06 18:16:31+00:00", "2022-08-06 18:16:33+00:00", "2022-08-06 18:16:34+00:00", "2022-08-06 18:16:36+00:00", "2022-08-06 18:16:37+00:00", "2022-08-06 18:16:39+00:00", "2022-08-06 18:16:40+00:00", "2022-08-06 18:16:42+00:00", "2022-08-06 18:16:43+00:00", "2022-08-06 18:16:45+00:00", "2022-08-06 18:16:46+00:00", "2022-08-06 18:16:48+00:00", "2022-08-06 18:16:49+00:00", "2022-08-06 18:16:51+00:00", "2022-08-06 18:16:52+00:00", "2022-08-06 18:16:54+00:00", "2022-08-06 18:16:56+00:00", "2022-08-06 18:16:57+00:00", "2022-08-06 18:16:59+00:00", "2022-08-06 18:17:00+00:00", "2022-08-06 18:17:02+00:00", "2022-08-06 18:17:03+00:00", "2022-08-06 18:17:05+00:00", "2022-08-06 18:17:06+00:00", "2022-08-06 18:17:08+00:00", "2022-08-06 18:17:09+00:00", "2022-08-06 18:17:11+00:00", "2022-08-06 18:17:12+00:00", "2022-08-06 18:17:14+00:00", "2022-08-06 18:17:15+00:00", "2022-08-06 18:17:17+00:00", "2022-08-06 18:17:18+00:00", "2022-08-06 18:17:20+00:00", "2022-08-06 18:17:21+00:00", "2022-08-06 18:17:23+00:00", "2022-08-06 18:17:24+00:00", "2022-08-06 18:17:26+00:00", "2022-08-06 18:17:27+00:00", "2022-08-06 18:17:29+00:00", "2022-08-06 18:17:30+00:00", "2022-08-06 18:17:32+00:00", "2022-08-06 18:17:33+00:00", "2022-08-06 18:17:35+00:00", "2022-08-06 18:17:36+00:00", "2022-08-06 18:17:38+00:00", "2022-08-06 18:17:39+00:00", "2022-08-06 18:17:41+00:00"]}}, {"type": "Feature", "id": "trace#86", "geometry": {"type": "LineString", "coordinates": [[-83.585681, 32.8177], [-83.586152, 32.81797], [-83.586622, 32.81824], [-83.587093, 32.818509], [-83.587563, 32.818779], [-83.588035, 32.819048], [-83.588507, 32.819317], [-83.58895, 32.819569], [-83.589423, 32.819839], [-83.589892, 32.820108], [-83.590364, 32.820377], [-83.590835, 32.820647], [-83.591307, 32.820917], [-83.591779, 32.821187], [-83.59225, 32.821456], [-83.592722, 32.821726], [-83.593195, 32.821996], [-83.593667, 32.822266]]}, "properties": {"filename": "osm-traces-page-73.gpx", "track.number": 4, "track.link": "/user/sunnypilot/traces/4692753", "track.name": "2022_07_31T02_32_17.684119Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HYUNDAI SANTA FE 2019-21).", "times": ["2022-07-31 02:34:28+00:00", "2022-07-31 02:34:30+00:00", "2022-07-31 02:34:31+00:00", "2022-07-31 02:34:33+00:00", "2022-07-31 02:34:34+00:00", "2022-07-31 02:34:36+00:00", "2022-07-31 02:34:37+00:00", "2022-07-31 02:34:39+00:00", "2022-07-31 02:34:40+00:00", "2022-07-31 02:34:42+00:00", "2022-07-31 02:34:43+00:00", "2022-07-31 02:34:45+00:00", "2022-07-31 02:34:46+00:00", "2022-07-31 02:34:48+00:00", "2022-07-31 02:34:49+00:00", "2022-07-31 02:34:51+00:00", "2022-07-31 02:34:52+00:00", "2022-07-31 02:34:54+00:00"]}}, {"type": "Feature", "id": "trace#87", "geometry": {"type": "LineString", "coordinates": [[-83.676606, 32.891002], [-83.676306, 32.890625], [-83.676003, 32.890245], [-83.675698, 32.889865], [-83.675389, 32.889482], [-83.675074, 32.889099], [-83.674757, 32.888715], [-83.674434, 32.888331], [-83.674113, 32.887945], [-83.673794, 32.887558], [-83.673472, 32.88717], [-83.673151, 32.886781], [-83.672825, 32.886394], [-83.672497, 32.886009], [-83.67217, 32.885624], [-83.671845, 32.885235], [-83.671521, 32.884847], [-83.671198, 32.884457], [-83.670876, 32.884068], [-83.670553, 32.883678], [-83.670228, 32.883288], [-83.669904, 32.882896], [-83.66958, 32.882505], [-83.669258, 32.882115], [-83.668935, 32.881726], [-83.668611, 32.881337], [-83.668287, 32.880951], [-83.667959, 32.880567], [-83.66763, 32.880185], [-83.667298, 32.879802], [-83.666966, 32.87942], [-83.666635, 32.879035], [-83.666304, 32.87865], [-83.665973, 32.878265], [-83.665642, 32.877879], [-83.665315, 32.877496], [-83.664991, 32.877111], [-83.664669, 32.876723], [-83.664347, 32.876336], [-83.664025, 32.87595], [-83.663679, 32.875535], [-83.663356, 32.875148], [-83.663034, 32.874759], [-83.662713, 32.874372], [-83.662396, 32.873989], [-83.662081, 32.87361], [-83.661765, 32.873234], [-83.661452, 32.872859], [-83.661144, 32.872487], [-83.660817, 32.872094], [-83.660494, 32.871707], [-83.66017, 32.871325], [-83.659835, 32.870948], [-83.659492, 32.870584], [-83.659141, 32.870233], [-83.658783, 32.869893], [-83.65842, 32.869559], [-83.658035, 32.869208], [-83.657652, 32.868856], [-83.657274, 32.868506], [-83.656899, 32.868161], [-83.656527, 32.867822], [-83.656156, 32.867484], [-83.655786, 32.867143], [-83.655415, 32.866803], [-83.655043, 32.866462], [-83.654668, 32.866118], [-83.654291, 32.865771], [-83.653911, 32.865424], [-83.653536, 32.865081], [-83.653166, 32.864743], [-83.652804, 32.86441], [-83.652423, 32.864065], [-83.652033, 32.863735], [-83.651619, 32.863439], [-83.651155, 32.863166], [-83.650669, 32.862933], [-83.650167, 32.862727], [-83.649663, 32.862525], [-83.649156, 32.862321]]}, "properties": {"filename": "osm-traces-page-75.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4687744", "track.name": "2022_07_30T12_04_26.120006Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HYUNDAI SANTA FE 2019-21).", "times": ["2022-07-30 12:11:58+00:00", "2022-07-30 12:11:59+00:00", "2022-07-30 12:12:00+00:00", "2022-07-30 12:12:02+00:00", "2022-07-30 12:12:03+00:00", "2022-07-30 12:12:05+00:00", "2022-07-30 12:12:06+00:00", "2022-07-30 12:12:07+00:00", "2022-07-30 12:12:09+00:00", "2022-07-30 12:12:10+00:00", "2022-07-30 12:12:12+00:00", "2022-07-30 12:12:13+00:00", "2022-07-30 12:12:14+00:00", "2022-07-30 12:12:16+00:00", "2022-07-30 12:12:17+00:00", "2022-07-30 12:12:19+00:00", "2022-07-30 12:12:20+00:00", "2022-07-30 12:12:21+00:00", "2022-07-30 12:12:23+00:00", "2022-07-30 12:12:24+00:00", "2022-07-30 12:12:26+00:00", "2022-07-30 12:12:27+00:00", "2022-07-30 12:12:28+00:00", "2022-07-30 12:12:30+00:00", "2022-07-30 12:12:31+00:00", "2022-07-30 12:12:33+00:00", "2022-07-30 12:12:34+00:00", "2022-07-30 12:12:35+00:00", "2022-07-30 12:12:37+00:00", "2022-07-30 12:12:38+00:00", "2022-07-30 12:12:40+00:00", "2022-07-30 12:12:41+00:00", "2022-07-30 12:12:42+00:00", "2022-07-30 12:12:44+00:00", "2022-07-30 12:12:45+00:00", "2022-07-30 12:12:47+00:00", "2022-07-30 12:12:48+00:00", "2022-07-30 12:12:49+00:00", "2022-07-30 12:12:51+00:00", "2022-07-30 12:12:52+00:00", "2022-07-30 12:12:54+00:00", "2022-07-30 12:12:55+00:00", "2022-07-30 12:12:56+00:00", "2022-07-30 12:12:58+00:00", "2022-07-30 12:12:59+00:00", "2022-07-30 12:13:01+00:00", "2022-07-30 12:13:02+00:00", "2022-07-30 12:13:03+00:00", "2022-07-30 12:13:05+00:00", "2022-07-30 12:13:06+00:00", "2022-07-30 12:13:08+00:00", "2022-07-30 12:13:09+00:00", "2022-07-30 12:13:11+00:00", "2022-07-30 12:13:12+00:00", "2022-07-30 12:13:14+00:00", "2022-07-30 12:13:15+00:00", "2022-07-30 12:13:17+00:00", "2022-07-30 12:13:18+00:00", "2022-07-30 12:13:20+00:00", "2022-07-30 12:13:22+00:00", "2022-07-30 12:13:23+00:00", "2022-07-30 12:13:25+00:00", "2022-07-30 12:13:26+00:00", "2022-07-30 12:13:28+00:00", "2022-07-30 12:13:30+00:00", "2022-07-30 12:13:31+00:00", "2022-07-30 12:13:33+00:00", "2022-07-30 12:13:34+00:00", "2022-07-30 12:13:36+00:00", "2022-07-30 12:13:38+00:00", "2022-07-30 12:13:39+00:00", "2022-07-30 12:13:41+00:00", "2022-07-30 12:13:43+00:00", "2022-07-30 12:13:44+00:00", "2022-07-30 12:13:46+00:00", "2022-07-30 12:13:48+00:00", "2022-07-30 12:13:50+00:00", "2022-07-30 12:13:51+00:00", "2022-07-30 12:13:53+00:00", "2022-07-30 12:13:55+00:00"]}}, {"type": "Feature", "id": "trace#88", "geometry": {"type": "LineString", "coordinates": [[-83.718063, 32.784215], [-83.717801, 32.7838], [-83.717538, 32.783382], [-83.717255, 32.782934], [-83.716988, 32.782513], [-83.716724, 32.782091], [-83.716442, 32.781641], [-83.716178, 32.781221], [-83.715913, 32.7808], [-83.715647, 32.780378], [-83.71538, 32.779956], [-83.715096, 32.779506], [-83.71483, 32.779084], [-83.714563, 32.778662], [-83.714279, 32.778213], [-83.713995, 32.777763], [-83.713711, 32.777313], [-83.713444, 32.776892], [-83.713177, 32.77647], [-83.71291, 32.776049], [-83.712644, 32.775629], [-83.712379, 32.775208], [-83.712114, 32.774786], [-83.711851, 32.774364]]}, "properties": {"filename": "osm-traces-page-76.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/4657920", "track.name": "2022_07_24T16_58_57.693964Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (HYUNDAI PALISADE 2020).", "times": ["2022-07-24 16:58:57+00:00", "2022-07-24 16:58:59+00:00", "2022-07-24 16:59:00+00:00", "2022-07-24 16:59:02+00:00", "2022-07-24 16:59:03+00:00", "2022-07-24 16:59:05+00:00", "2022-07-24 16:59:06+00:00", "2022-07-24 16:59:08+00:00", "2022-07-24 16:59:09+00:00", "2022-07-24 16:59:11+00:00", "2022-07-24 16:59:12+00:00", "2022-07-24 16:59:14+00:00", "2022-07-24 16:59:15+00:00", "2022-07-24 16:59:17+00:00", "2022-07-24 16:59:19+00:00", "2022-07-24 16:59:20+00:00", "2022-07-24 16:59:22+00:00", "2022-07-24 16:59:23+00:00", "2022-07-24 16:59:25+00:00", "2022-07-24 16:59:26+00:00", "2022-07-24 16:59:28+00:00", "2022-07-24 16:59:29+00:00", "2022-07-24 16:59:31+00:00", "2022-07-24 16:59:32+00:00"]}}, {"type": "Feature", "id": "trace#89", "geometry": {"type": "LineString", "coordinates": [[-83.711256, 32.774115], [-83.711516, 32.774532], [-83.711778, 32.774948], [-83.712042, 32.775362], [-83.712303, 32.775776], [-83.712566, 32.77619], [-83.712825, 32.776607], [-83.713087, 32.777026], [-83.713352, 32.777445], [-83.713619, 32.777866], [-83.713885, 32.778289], [-83.714152, 32.778711], [-83.714419, 32.779135], [-83.714685, 32.77956], [-83.714952, 32.779985], [-83.715205, 32.780381], [-83.715456, 32.780779], [-83.715707, 32.781176], [-83.715975, 32.781602], [-83.716243, 32.782027], [-83.716494, 32.782425], [-83.716743, 32.782824], [-83.716994, 32.783222], [-83.717245, 32.78362], [-83.717497, 32.78402], [-83.71775, 32.78442], [-83.718003, 32.784822], [-83.718255, 32.785224], [-83.718506, 32.785626], [-83.718746, 32.786031], [-83.718962, 32.786445], [-83.719143, 32.786868], [-83.719301, 32.78733], [-83.719425, 32.787798], [-83.719516, 32.788271], [-83.719575, 32.788749], [-83.719623, 32.789229], [-83.719669, 32.78968], [-83.719717, 32.790132], [-83.719764, 32.790584], [-83.719812, 32.791036], [-83.719859, 32.791488], [-83.719905, 32.79194], [-83.719952, 32.792392], [-83.719999, 32.792844], [-83.720045, 32.793296], [-83.720093, 32.793747], [-83.720139, 32.794197], [-83.720184, 32.794647], [-83.72023, 32.795097], [-83.720277, 32.795547], [-83.720323, 32.795997], [-83.720371, 32.796445], [-83.720417, 32.796894], [-83.720464, 32.797343], [-83.720517, 32.797791], [-83.720583, 32.798238], [-83.720665, 32.798684], [-83.720763, 32.799127], [-83.720887, 32.799597], [-83.721024, 32.800064], [-83.721177, 32.800528], [-83.721349, 32.800987], [-83.721538, 32.80144], [-83.721743, 32.801888], [-83.721943, 32.802306], [-83.722144, 32.802723], [-83.722347, 32.80314]]}, "properties": {"filename": "osm-traces-page-76.gpx", "track.number": 5, "track.link": "/user/sunnypilot/traces/4652706", "track.name": "2022_07_19T05_50_25.134572Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (VOLKSWAGEN GOLF 7TH GEN).", "times": ["2022-07-19 05:54:59+00:00", "2022-07-19 05:55:01+00:00", "2022-07-19 05:55:02+00:00", "2022-07-19 05:55:04+00:00", "2022-07-19 05:55:05+00:00", "2022-07-19 05:55:07+00:00", "2022-07-19 05:55:08+00:00", "2022-07-19 05:55:10+00:00", "2022-07-19 05:55:11+00:00", "2022-07-19 05:55:13+00:00", "2022-07-19 05:55:14+00:00", "2022-07-19 05:55:16+00:00", "2022-07-19 05:55:17+00:00", "2022-07-19 05:55:19+00:00", "2022-07-19 05:55:20+00:00", "2022-07-19 05:55:22+00:00", "2022-07-19 05:55:23+00:00", "2022-07-19 05:55:24+00:00", "2022-07-19 05:55:26+00:00", "2022-07-19 05:55:27+00:00", "2022-07-19 05:55:29+00:00", "2022-07-19 05:55:30+00:00", "2022-07-19 05:55:32+00:00", "2022-07-19 05:55:33+00:00", "2022-07-19 05:55:34+00:00", "2022-07-19 05:55:36+00:00", "2022-07-19 05:55:37+00:00", "2022-07-19 05:55:39+00:00", "2022-07-19 05:55:40+00:00", "2022-07-19 05:55:41+00:00", "2022-07-19 05:55:43+00:00", "2022-07-19 05:55:44+00:00", "2022-07-19 05:55:46+00:00", "2022-07-19 05:55:47+00:00", "2022-07-19 05:55:49+00:00", "2022-07-19 05:55:50+00:00", "2022-07-19 05:55:52+00:00", "2022-07-19 05:55:53+00:00", "2022-07-19 05:55:55+00:00", "2022-07-19 05:55:56+00:00", "2022-07-19 05:55:57+00:00", "2022-07-19 05:55:59+00:00", "2022-07-19 05:56:00+00:00", "2022-07-19 05:56:02+00:00", "2022-07-19 05:56:03+00:00", "2022-07-19 05:56:04+00:00", "2022-07-19 05:56:06+00:00", "2022-07-19 05:56:07+00:00", "2022-07-19 05:56:09+00:00", "2022-07-19 05:56:10+00:00", "2022-07-19 05:56:11+00:00", "2022-07-19 05:56:13+00:00", "2022-07-19 05:56:14+00:00", "2022-07-19 05:56:16+00:00", "2022-07-19 05:56:17+00:00", "2022-07-19 05:56:18+00:00", "2022-07-19 05:56:20+00:00", "2022-07-19 05:56:21+00:00", "2022-07-19 05:56:23+00:00", "2022-07-19 05:56:24+00:00", "2022-07-19 05:56:26+00:00", "2022-07-19 05:56:27+00:00", "2022-07-19 05:56:29+00:00", "2022-07-19 05:56:30+00:00", "2022-07-19 05:56:32+00:00", "2022-07-19 05:56:33+00:00", "2022-07-19 05:56:34+00:00", "2022-07-19 05:56:36+00:00"]}}, {"type": "Feature", "id": "trace#90", "geometry": {"type": "LineString", "coordinates": [[-83.711264, 32.774101], [-83.711521, 32.774523], [-83.711805, 32.774978], [-83.712065, 32.775388], [-83.712328, 32.775802], [-83.71259, 32.776218], [-83.712849, 32.776633], [-83.713106, 32.777042], [-83.713363, 32.777447], [-83.713617, 32.777849], [-83.713868, 32.778247], [-83.714135, 32.778669], [-83.714402, 32.779088], [-83.714679, 32.779505], [-83.71496, 32.779922], [-83.715219, 32.780316], [-83.715472, 32.780714], [-83.715724, 32.781115], [-83.715976, 32.781515], [-83.716229, 32.781917], [-83.716481, 32.782318], [-83.716734, 32.78272], [-83.716987, 32.783121], [-83.717241, 32.783523], [-83.717496, 32.783926], [-83.717752, 32.784331], [-83.718007, 32.784735], [-83.718262, 32.785141], [-83.718514, 32.785548], [-83.718757, 32.785957], [-83.718978, 32.786375], [-83.719166, 32.786803], [-83.719324, 32.787237], [-83.719452, 32.787677], [-83.719547, 32.78812], [-83.719618, 32.788597], [-83.719671, 32.789076], [-83.719718, 32.789524], [-83.719768, 32.790004], [-83.719817, 32.790452], [-83.719864, 32.7909], [-83.719915, 32.791379], [-83.719964, 32.791858], [-83.720015, 32.792333], [-83.720065, 32.792806], [-83.720115, 32.793278], [-83.720166, 32.793749], [-83.720217, 32.794219], [-83.720264, 32.794689], [-83.720312, 32.795158], [-83.72036, 32.795629], [-83.72041, 32.7961], [-83.720459, 32.796573], [-83.720509, 32.797048], [-83.72056, 32.797524], [-83.720614, 32.798002], [-83.720677, 32.79848], [-83.720754, 32.798925], [-83.720861, 32.799397], [-83.720979, 32.799836], [-83.721114, 32.800273], [-83.721265, 32.800705], [-83.721432, 32.801134], [-83.721612, 32.801559], [-83.721807, 32.801979], [-83.722009, 32.802399], [-83.722209, 32.802818], [-83.722413, 32.803238]]}, "properties": {"filename": "osm-traces-page-77.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/4606747", "track.name": "2022_07_15T21_11_11.397759Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.14-1.3 (LEXUS ES HYBRID 2019).", "times": ["2022-07-15 21:11:54+00:00", "2022-07-15 21:11:55+00:00", "2022-07-15 21:11:57+00:00", "2022-07-15 21:11:58+00:00", "2022-07-15 21:11:59+00:00", "2022-07-15 21:12:01+00:00", "2022-07-15 21:12:02+00:00", "2022-07-15 21:12:04+00:00", "2022-07-15 21:12:05+00:00", "2022-07-15 21:12:06+00:00", "2022-07-15 21:12:08+00:00", "2022-07-15 21:12:09+00:00", "2022-07-15 21:12:11+00:00", "2022-07-15 21:12:12+00:00", "2022-07-15 21:12:14+00:00", "2022-07-15 21:12:15+00:00", "2022-07-15 21:12:17+00:00", "2022-07-15 21:12:18+00:00", "2022-07-15 21:12:19+00:00", "2022-07-15 21:12:21+00:00", "2022-07-15 21:12:22+00:00", "2022-07-15 21:12:24+00:00", "2022-07-15 21:12:25+00:00", "2022-07-15 21:12:26+00:00", "2022-07-15 21:12:28+00:00", "2022-07-15 21:12:29+00:00", "2022-07-15 21:12:31+00:00", "2022-07-15 21:12:32+00:00", "2022-07-15 21:12:33+00:00", "2022-07-15 21:12:35+00:00", "2022-07-15 21:12:36+00:00", "2022-07-15 21:12:38+00:00", "2022-07-15 21:12:39+00:00", "2022-07-15 21:12:40+00:00", "2022-07-15 21:12:42+00:00", "2022-07-15 21:12:43+00:00", "2022-07-15 21:12:45+00:00", "2022-07-15 21:12:46+00:00", "2022-07-15 21:12:48+00:00", "2022-07-15 21:12:49+00:00", "2022-07-15 21:12:51+00:00", "2022-07-15 21:12:52+00:00", "2022-07-15 21:12:54+00:00", "2022-07-15 21:12:55+00:00", "2022-07-15 21:12:57+00:00", "2022-07-15 21:12:58+00:00", "2022-07-15 21:13:00+00:00", "2022-07-15 21:13:01+00:00", "2022-07-15 21:13:03+00:00", "2022-07-15 21:13:04+00:00", "2022-07-15 21:13:06+00:00", "2022-07-15 21:13:07+00:00", "2022-07-15 21:13:09+00:00", "2022-07-15 21:13:10+00:00", "2022-07-15 21:13:12+00:00", "2022-07-15 21:13:13+00:00", "2022-07-15 21:13:15+00:00", "2022-07-15 21:13:16+00:00", "2022-07-15 21:13:17+00:00", "2022-07-15 21:13:19+00:00", "2022-07-15 21:13:20+00:00", "2022-07-15 21:13:22+00:00", "2022-07-15 21:13:23+00:00", "2022-07-15 21:13:24+00:00", "2022-07-15 21:13:26+00:00", "2022-07-15 21:13:27+00:00", "2022-07-15 21:13:29+00:00", "2022-07-15 21:13:30+00:00"]}}, {"type": "Feature", "id": "trace#91", "geometry": {"type": "LineString", "coordinates": [[-83.720192, 32.79207], [-83.72013, 32.79145], [-83.720067, 32.790832], [-83.720002, 32.790208], [-83.719935, 32.789585], [-83.719868, 32.788962], [-83.7198, 32.788338], [-83.719687, 32.787722], [-83.719522, 32.787115], [-83.719302, 32.786522], [-83.719023, 32.785943], [-83.718698, 32.785385], [-83.718353, 32.784833], [-83.71801, 32.784283], [-83.717667, 32.783732], [-83.717318, 32.78318], [-83.716972, 32.782627], [-83.716627, 32.782073], [-83.716283, 32.781518], [-83.715937, 32.780967], [-83.715588, 32.780417], [-83.715245, 32.779863], [-83.714898, 32.779313], [-83.71455, 32.778762], [-83.714203, 32.77821], [-83.713858, 32.777658], [-83.713512, 32.777107], [-83.713163, 32.776557], [-83.712818, 32.776007], [-83.712472, 32.775455], [-83.712123, 32.774905], [-83.711775, 32.774357]]}, "properties": {"filename": "osm-traces-page-77.gpx", "track.number": 4, "track.link": "/user/Chris%20Lawrence/traces/4485105", "track.name": "redacted.gpx.gz", "track.segment.number": 2, "track.segment.split.number": 0, "track.description": "Home to McDonough and back", "times": ["2022-06-07 22:30:49+00:00", "2022-06-07 22:30:51+00:00", "2022-06-07 22:30:53+00:00", "2022-06-07 22:30:55+00:00", "2022-06-07 22:30:57+00:00", "2022-06-07 22:30:59+00:00", "2022-06-07 22:31:01+00:00", "2022-06-07 22:31:03+00:00", "2022-06-07 22:31:05+00:00", "2022-06-07 22:31:07+00:00", "2022-06-07 22:31:09+00:00", "2022-06-07 22:31:11+00:00", "2022-06-07 22:31:13+00:00", "2022-06-07 22:31:15+00:00", "2022-06-07 22:31:17+00:00", "2022-06-07 22:31:19+00:00", "2022-06-07 22:31:21+00:00", "2022-06-07 22:31:23+00:00", "2022-06-07 22:31:25+00:00", "2022-06-07 22:31:27+00:00", "2022-06-07 22:31:29+00:00", "2022-06-07 22:31:31+00:00", "2022-06-07 22:31:33+00:00", "2022-06-07 22:31:35+00:00", "2022-06-07 22:31:37+00:00", "2022-06-07 22:31:39+00:00", "2022-06-07 22:31:41+00:00", "2022-06-07 22:31:43+00:00", "2022-06-07 22:31:45+00:00", "2022-06-07 22:31:47+00:00", "2022-06-07 22:31:49+00:00", "2022-06-07 22:31:51+00:00"]}}, {"type": "Feature", "id": "trace#92", "geometry": {"type": "LineString", "coordinates": [[-83.655587, 32.8133], [-83.655733, 32.813892], [-83.655732, 32.814432], [-83.655737, 32.815042], [-83.655753, 32.815702], [-83.655762, 32.816165], [-83.655765, 32.816647], [-83.655758, 32.817133], [-83.65575, 32.817625], [-83.655743, 32.81812], [-83.655742, 32.81862], [-83.655743, 32.819125], [-83.655763, 32.819632], [-83.655813, 32.820142], [-83.655895, 32.820653], [-83.656015, 32.82116], [-83.656172, 32.821655], [-83.656353, 32.822145], [-83.65653, 32.822632], [-83.656707, 32.823122], [-83.65687, 32.823617], [-83.656993, 32.824118], [-83.657067, 32.824628], [-83.657087, 32.825142], [-83.657058, 32.825652], [-83.656977, 32.826162], [-83.656852, 32.826663], [-83.656675, 32.82716], [-83.656447, 32.827648], [-83.65617, 32.828122], [-83.65585, 32.828572], [-83.6555, 32.829008], [-83.65515, 32.829443], [-83.654798, 32.829878], [-83.654448, 32.830315], [-83.654097, 32.830752], [-83.653747, 32.831185], [-83.653398, 32.831622], [-83.653045, 32.832057], [-83.652697, 32.832495], [-83.652348, 32.832932], [-83.651997, 32.833368], [-83.651645, 32.833805], [-83.651292, 32.834242], [-83.650942, 32.83468], [-83.65059, 32.835117], [-83.65024, 32.835553], [-83.649888, 32.835992], [-83.649538, 32.836427], [-83.649187, 32.836862], [-83.648837, 32.837297], [-83.648485, 32.837735], [-83.648135, 32.838173], [-83.647785, 32.83861], [-83.647433, 32.839048], [-83.647083, 32.839485], [-83.646727, 32.839923], [-83.646365, 32.840352], [-83.645992, 32.840775], [-83.645613, 32.841193], [-83.645247, 32.841622], [-83.644887, 32.842052], [-83.644527, 32.842482], [-83.644148, 32.842907], [-83.643765, 32.843325], [-83.643382, 32.84375], [-83.643017, 32.844188], [-83.642708, 32.84465], [-83.642472, 32.845138], [-83.642305, 32.845645], [-83.642193, 32.846157], [-83.642135, 32.846672], [-83.64211, 32.847195], [-83.642088, 32.847728], [-83.642067, 32.848263], [-83.642045, 32.848795], [-83.642013, 32.849328], [-83.641967, 32.849862], [-83.64187, 32.85039], [-83.641732, 32.850903], [-83.641562, 32.851387], [-83.64139, 32.851843], [-83.641233, 32.852275], [-83.640973, 32.85289], [-83.640688, 32.853487], [-83.640385, 32.854038], [-83.640167, 32.854613], [-83.640047, 32.855233], [-83.639997, 32.855875], [-83.64002, 32.856517], [-83.640138, 32.857148], [-83.640372, 32.857753], [-83.640722, 32.858333], [-83.641197, 32.858877], [-83.641577, 32.859215], [-83.642, 32.859525], [-83.64247, 32.859792], [-83.642977, 32.860018], [-83.643505, 32.860225], [-83.644037, 32.860427], [-83.644567, 32.860628]]}, "properties": {"filename": "osm-traces-page-77.gpx", "track.number": 4, "track.link": "/user/Chris%20Lawrence/traces/4485105", "track.name": "redacted.gpx.gz", "track.segment.number": 5, "track.segment.split.number": 1, "track.description": "Home to McDonough and back", "times": ["2022-06-09 22:45:28+00:00", "2022-06-09 22:45:32+00:00", "2022-06-09 22:45:35+00:00", "2022-06-09 22:45:38+00:00", "2022-06-09 22:45:41+00:00", "2022-06-09 22:45:43+00:00", "2022-06-09 22:45:45+00:00", "2022-06-09 22:45:47+00:00", "2022-06-09 22:45:49+00:00", "2022-06-09 22:45:51+00:00", "2022-06-09 22:45:53+00:00", "2022-06-09 22:45:55+00:00", "2022-06-09 22:45:57+00:00", "2022-06-09 22:45:59+00:00", "2022-06-09 22:46:01+00:00", "2022-06-09 22:46:03+00:00", "2022-06-09 22:46:05+00:00", "2022-06-09 22:46:07+00:00", "2022-06-09 22:46:09+00:00", "2022-06-09 22:46:11+00:00", "2022-06-09 22:46:13+00:00", "2022-06-09 22:46:15+00:00", "2022-06-09 22:46:17+00:00", "2022-06-09 22:46:19+00:00", "2022-06-09 22:46:21+00:00", "2022-06-09 22:46:23+00:00", "2022-06-09 22:46:25+00:00", "2022-06-09 22:46:27+00:00", "2022-06-09 22:46:29+00:00", "2022-06-09 22:46:31+00:00", "2022-06-09 22:46:33+00:00", "2022-06-09 22:46:35+00:00", "2022-06-09 22:46:37+00:00", "2022-06-09 22:46:39+00:00", "2022-06-09 22:46:41+00:00", "2022-06-09 22:46:43+00:00", "2022-06-09 22:46:45+00:00", "2022-06-09 22:46:47+00:00", "2022-06-09 22:46:49+00:00", "2022-06-09 22:46:51+00:00", "2022-06-09 22:46:53+00:00", "2022-06-09 22:46:55+00:00", "2022-06-09 22:46:57+00:00", "2022-06-09 22:46:59+00:00", "2022-06-09 22:47:01+00:00", "2022-06-09 22:47:03+00:00", "2022-06-09 22:47:05+00:00", "2022-06-09 22:47:07+00:00", "2022-06-09 22:47:09+00:00", "2022-06-09 22:47:11+00:00", "2022-06-09 22:47:13+00:00", "2022-06-09 22:47:15+00:00", "2022-06-09 22:47:17+00:00", "2022-06-09 22:47:19+00:00", "2022-06-09 22:47:21+00:00", "2022-06-09 22:47:23+00:00", "2022-06-09 22:47:25+00:00", "2022-06-09 22:47:27+00:00", "2022-06-09 22:47:29+00:00", "2022-06-09 22:47:31+00:00", "2022-06-09 22:47:33+00:00", "2022-06-09 22:47:35+00:00", "2022-06-09 22:47:37+00:00", "2022-06-09 22:47:39+00:00", "2022-06-09 22:47:41+00:00", "2022-06-09 22:47:43+00:00", "2022-06-09 22:47:45+00:00", "2022-06-09 22:47:47+00:00", "2022-06-09 22:47:49+00:00", "2022-06-09 22:47:51+00:00", "2022-06-09 22:47:53+00:00", "2022-06-09 22:47:55+00:00", "2022-06-09 22:47:57+00:00", "2022-06-09 22:47:59+00:00", "2022-06-09 22:48:01+00:00", "2022-06-09 22:48:03+00:00", "2022-06-09 22:48:05+00:00", "2022-06-09 22:48:07+00:00", "2022-06-09 22:48:09+00:00", "2022-06-09 22:48:11+00:00", "2022-06-09 22:48:13+00:00", "2022-06-09 22:48:15+00:00", "2022-06-09 22:48:17+00:00", "2022-06-09 22:48:20+00:00", "2022-06-09 22:48:23+00:00", "2022-06-09 22:48:26+00:00", "2022-06-09 22:48:29+00:00", "2022-06-09 22:48:32+00:00", "2022-06-09 22:48:35+00:00", "2022-06-09 22:48:38+00:00", "2022-06-09 22:48:41+00:00", "2022-06-09 22:48:44+00:00", "2022-06-09 22:48:47+00:00", "2022-06-09 22:48:50+00:00", "2022-06-09 22:48:52+00:00", "2022-06-09 22:48:54+00:00", "2022-06-09 22:48:56+00:00", "2022-06-09 22:48:58+00:00", "2022-06-09 22:49:00+00:00", "2022-06-09 22:49:02+00:00", "2022-06-09 22:49:04+00:00"]}}, {"type": "Feature", "id": "trace#93", "geometry": {"type": "LineString", "coordinates": [[-83.645097, 32.860837], [-83.645622, 32.861053], [-83.646143, 32.861275], [-83.646673, 32.861495], [-83.647213, 32.86172], [-83.647765, 32.861952], [-83.648317, 32.86219], [-83.648862, 32.862418], [-83.649395, 32.86263], [-83.649922, 32.86284], [-83.650445, 32.86305], [-83.650955, 32.863283], [-83.651438, 32.863558], [-83.651893, 32.863875], [-83.652317, 32.864233], [-83.65273, 32.864608], [-83.653138, 32.864987], [-83.653545, 32.86536], [-83.653945, 32.865728], [-83.65434, 32.866088], [-83.654738, 32.86645], [-83.655147, 32.866822], [-83.65556, 32.867205], [-83.65598, 32.867593], [-83.656405, 32.867983], [-83.656832, 32.868375], [-83.657263, 32.86877], [-83.657693, 32.869165], [-83.658127, 32.869562], [-83.658557, 32.869958], [-83.658973, 32.870368], [-83.659373, 32.870793], [-83.659763, 32.871222], [-83.66014, 32.871652], [-83.660505, 32.87208], [-83.660863, 32.872507], [-83.661213, 32.872932], [-83.661547, 32.87336], [-83.661862, 32.873782], [-83.662162, 32.874183], [-83.662552, 32.874705], [-83.662855, 32.875113], [-83.662943, 32.87559], [-83.662512, 32.875872], [-83.662038, 32.875625], [-83.662002, 32.87509], [-83.662088, 32.874645], [-83.662315, 32.874092], [-83.662647, 32.8737], [-83.663158, 32.874087], [-83.6635, 32.874502], [-83.663882, 32.874983], [-83.664285, 32.875498], [-83.664715, 32.876025], [-83.665152, 32.876562], [-83.665587, 32.877085], [-83.666022, 32.877608], [-83.666468, 32.878127], [-83.66692, 32.878645], [-83.667362, 32.87917], [-83.667797, 32.879695], [-83.668227, 32.880215], [-83.668657, 32.880732], [-83.669083, 32.88125], [-83.669507, 32.881758], [-83.669917, 32.882247], [-83.670312, 32.882722], [-83.670732, 32.883185], [-83.671158, 32.88368], [-83.67159, 32.884192], [-83.672015, 32.884703], [-83.672385, 32.885155], [-83.672743, 32.8856], [-83.673082, 32.885988], [-83.673408, 32.886385], [-83.673762, 32.886812], [-83.674082, 32.887198], [-83.674417, 32.887608], [-83.674757, 32.888017], [-83.675098, 32.888422], [-83.675452, 32.888842], [-83.675818, 32.88928], [-83.676172, 32.889707], [-83.676573, 32.890153], [-83.676953, 32.89051]]}, "properties": {"filename": "osm-traces-page-77.gpx", "track.number": 4, "track.link": "/user/Chris%20Lawrence/traces/4485105", "track.name": "redacted.gpx.gz", "track.segment.number": 5, "track.segment.split.number": 2, "track.description": "Home to McDonough and back", "times": ["2022-06-09 22:49:06+00:00", "2022-06-09 22:49:08+00:00", "2022-06-09 22:49:10+00:00", "2022-06-09 22:49:12+00:00", "2022-06-09 22:49:14+00:00", "2022-06-09 22:49:16+00:00", "2022-06-09 22:49:18+00:00", "2022-06-09 22:49:20+00:00", "2022-06-09 22:49:22+00:00", "2022-06-09 22:49:24+00:00", "2022-06-09 22:49:26+00:00", "2022-06-09 22:49:28+00:00", "2022-06-09 22:49:30+00:00", "2022-06-09 22:49:32+00:00", "2022-06-09 22:49:34+00:00", "2022-06-09 22:49:36+00:00", "2022-06-09 22:49:38+00:00", "2022-06-09 22:49:40+00:00", "2022-06-09 22:49:42+00:00", "2022-06-09 22:49:44+00:00", "2022-06-09 22:49:46+00:00", "2022-06-09 22:49:48+00:00", "2022-06-09 22:49:50+00:00", "2022-06-09 22:49:52+00:00", "2022-06-09 22:49:54+00:00", "2022-06-09 22:49:56+00:00", "2022-06-09 22:49:58+00:00", "2022-06-09 22:50:00+00:00", "2022-06-09 22:50:02+00:00", "2022-06-09 22:50:04+00:00", "2022-06-09 22:50:06+00:00", "2022-06-09 22:50:08+00:00", "2022-06-09 22:50:10+00:00", "2022-06-09 22:50:12+00:00", "2022-06-09 22:50:14+00:00", "2022-06-09 22:50:16+00:00", "2022-06-09 22:50:18+00:00", "2022-06-09 22:50:20+00:00", "2022-06-09 22:50:22+00:00", "2022-06-09 22:50:24+00:00", "2022-06-09 22:50:27+00:00", "2022-06-09 22:50:30+00:00", "2022-06-09 22:50:34+00:00", "2022-06-09 22:50:38+00:00", "2022-06-09 22:50:42+00:00", "2022-06-09 22:50:46+00:00", "2022-06-09 22:50:49+00:00", "2022-06-09 22:50:53+00:00", "2022-06-09 22:50:59+00:00", "2022-06-09 22:51:11+00:00", "2022-06-09 22:51:14+00:00", "2022-06-09 22:51:17+00:00", "2022-06-09 22:51:20+00:00", "2022-06-09 22:51:23+00:00", "2022-06-09 22:51:26+00:00", "2022-06-09 22:51:29+00:00", "2022-06-09 22:51:32+00:00", "2022-06-09 22:51:35+00:00", "2022-06-09 22:51:38+00:00", "2022-06-09 22:51:41+00:00", "2022-06-09 22:51:44+00:00", "2022-06-09 22:51:47+00:00", "2022-06-09 22:51:50+00:00", "2022-06-09 22:51:53+00:00", "2022-06-09 22:51:56+00:00", "2022-06-09 22:51:59+00:00", "2022-06-09 22:52:02+00:00", "2022-06-09 22:52:05+00:00", "2022-06-09 22:52:08+00:00", "2022-06-09 22:52:11+00:00", "2022-06-09 22:52:14+00:00", "2022-06-09 22:52:17+00:00", "2022-06-09 22:52:21+00:00", "2022-06-09 22:52:42+00:00", "2022-06-09 22:52:48+00:00", "2022-06-09 22:52:52+00:00", "2022-06-09 22:52:55+00:00", "2022-06-09 22:52:58+00:00", "2022-06-09 22:53:01+00:00", "2022-06-09 22:53:04+00:00", "2022-06-09 22:53:07+00:00", "2022-06-09 22:53:10+00:00", "2022-06-09 22:53:13+00:00", "2022-06-09 22:53:17+00:00", "2022-06-09 22:53:39+00:00"]}}, {"type": "Feature", "id": "trace#94", "geometry": {"type": "LineString", "coordinates": [[-83.711565, 32.774325], [-83.711913, 32.774882], [-83.712265, 32.775435], [-83.712615, 32.775988], [-83.712967, 32.776543], [-83.713315, 32.777097], [-83.713665, 32.777652], [-83.714015, 32.778205], [-83.714363, 32.77876], [-83.714712, 32.779315], [-83.715062, 32.77987], [-83.715412, 32.780423], [-83.71576, 32.780978], [-83.716107, 32.781535], [-83.716457, 32.78209], [-83.716805, 32.782645], [-83.717157, 32.7832], [-83.717507, 32.783755], [-83.717857, 32.784312], [-83.71821, 32.78487], [-83.718558, 32.785428], [-83.718893, 32.785992], [-83.719182, 32.786573], [-83.719412, 32.78717], [-83.719583, 32.787778], [-83.719697, 32.788398], [-83.719765, 32.789022], [-83.719827, 32.789647], [-83.71989, 32.790277], [-83.719953, 32.790905], [-83.72002, 32.791535], [-83.720087, 32.792165], [-83.720152, 32.792795], [-83.720217, 32.793425], [-83.720283, 32.794053], [-83.720348, 32.794682], [-83.720412, 32.79531], [-83.720478, 32.795938], [-83.720542, 32.796567], [-83.720605, 32.797193], [-83.720675, 32.79782], [-83.720772, 32.798443], [-83.7209, 32.799063], [-83.721062, 32.799677], [-83.721247, 32.800285], [-83.721462, 32.800883], [-83.721708, 32.801475], [-83.72198, 32.802057], [-83.72226, 32.802638]]}, "properties": {"filename": "osm-traces-page-78.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/4485105", "track.name": "redacted.gpx.gz", "track.segment.number": 2, "track.segment.split.number": 0, "track.description": "Home to McDonough and back", "times": ["2022-06-12 19:51:30+00:00", "2022-06-12 19:51:32+00:00", "2022-06-12 19:51:34+00:00", "2022-06-12 19:51:36+00:00", "2022-06-12 19:51:38+00:00", "2022-06-12 19:51:40+00:00", "2022-06-12 19:51:42+00:00", "2022-06-12 19:51:44+00:00", "2022-06-12 19:51:46+00:00", "2022-06-12 19:51:48+00:00", "2022-06-12 19:51:50+00:00", "2022-06-12 19:51:52+00:00", "2022-06-12 19:51:54+00:00", "2022-06-12 19:51:56+00:00", "2022-06-12 19:51:58+00:00", "2022-06-12 19:52:00+00:00", "2022-06-12 19:52:02+00:00", "2022-06-12 19:52:04+00:00", "2022-06-12 19:52:06+00:00", "2022-06-12 19:52:08+00:00", "2022-06-12 19:52:10+00:00", "2022-06-12 19:52:12+00:00", "2022-06-12 19:52:14+00:00", "2022-06-12 19:52:16+00:00", "2022-06-12 19:52:18+00:00", "2022-06-12 19:52:20+00:00", "2022-06-12 19:52:22+00:00", "2022-06-12 19:52:24+00:00", "2022-06-12 19:52:26+00:00", "2022-06-12 19:52:28+00:00", "2022-06-12 19:52:30+00:00", "2022-06-12 19:52:32+00:00", "2022-06-12 19:52:34+00:00", "2022-06-12 19:52:36+00:00", "2022-06-12 19:52:38+00:00", "2022-06-12 19:52:40+00:00", "2022-06-12 19:52:42+00:00", "2022-06-12 19:52:44+00:00", "2022-06-12 19:52:46+00:00", "2022-06-12 19:52:48+00:00", "2022-06-12 19:52:50+00:00", "2022-06-12 19:52:52+00:00", "2022-06-12 19:52:54+00:00", "2022-06-12 19:52:56+00:00", "2022-06-12 19:52:58+00:00", "2022-06-12 19:53:00+00:00", "2022-06-12 19:53:02+00:00", "2022-06-12 19:53:04+00:00", "2022-06-12 19:53:06+00:00"]}}, {"type": "Feature", "id": "trace#95", "geometry": {"type": "LineString", "coordinates": [[-83.646765, 32.861154], [-83.646307, 32.860908], [-83.645866, 32.860646], [-83.64543, 32.860371], [-83.645001, 32.860097], [-83.644571, 32.859824], [-83.644143, 32.859552], [-83.643709, 32.859277], [-83.643282, 32.859004], [-83.642849, 32.858728], [-83.642425, 32.858446], [-83.642023, 32.858147], [-83.641622, 32.857848], [-83.64121, 32.857557], [-83.640782, 32.85728], [-83.64036, 32.856988], [-83.639936, 32.856696], [-83.639508, 32.85642], [-83.639067, 32.856164], [-83.63862, 32.855889], [-83.638186, 32.855609], [-83.637757, 32.855337], [-83.637323, 32.85507], [-83.636869, 32.854814], [-83.636397, 32.854581], [-83.635911, 32.854362], [-83.635435, 32.854154], [-83.634949, 32.853942], [-83.634462, 32.85373], [-83.633978, 32.853507], [-83.633517, 32.853266], [-83.633069, 32.853], [-83.632649, 32.85272], [-83.632245, 32.852407], [-83.631857, 32.852073], [-83.631482, 32.851745], [-83.63111, 32.851419], [-83.63073, 32.851084], [-83.630349, 32.850741], [-83.629968, 32.850398], [-83.62959, 32.850064], [-83.629179, 32.849699], [-83.628807, 32.849351], [-83.628455, 32.848989], [-83.62813, 32.848623], [-83.627805, 32.848248], [-83.627481, 32.847885], [-83.627154, 32.847503], [-83.626859, 32.847118], [-83.626586, 32.846711], [-83.626336, 32.84631], [-83.626079, 32.845904], [-83.625804, 32.845497]]}, "properties": {"filename": "osm-traces-page-80.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/4460048", "track.name": "2022_06_15T16_55_26.151672Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HYUNDAI SANTA FE 2019-21).", "times": ["2022-06-15 17:02:51+00:00", "2022-06-15 17:02:58+00:00", "2022-06-15 17:03:03+00:00", "2022-06-15 17:03:08+00:00", "2022-06-15 17:03:12+00:00", "2022-06-15 17:03:17+00:00", "2022-06-15 17:03:22+00:00", "2022-06-15 17:03:26+00:00", "2022-06-15 17:03:30+00:00", "2022-06-15 17:03:35+00:00", "2022-06-15 17:03:39+00:00", "2022-06-15 17:03:42+00:00", "2022-06-15 17:03:46+00:00", "2022-06-15 17:03:50+00:00", "2022-06-15 17:03:54+00:00", "2022-06-15 17:03:58+00:00", "2022-06-15 17:04:02+00:00", "2022-06-15 17:04:05+00:00", "2022-06-15 17:04:08+00:00", "2022-06-15 17:04:11+00:00", "2022-06-15 17:04:14+00:00", "2022-06-15 17:04:16+00:00", "2022-06-15 17:04:18+00:00", "2022-06-15 17:04:21+00:00", "2022-06-15 17:04:23+00:00", "2022-06-15 17:04:26+00:00", "2022-06-15 17:04:28+00:00", "2022-06-15 17:04:31+00:00", "2022-06-15 17:04:33+00:00", "2022-06-15 17:04:36+00:00", "2022-06-15 17:04:38+00:00", "2022-06-15 17:04:41+00:00", "2022-06-15 17:04:43+00:00", "2022-06-15 17:04:46+00:00", "2022-06-15 17:04:48+00:00", "2022-06-15 17:04:51+00:00", "2022-06-15 17:04:53+00:00", "2022-06-15 17:04:55+00:00", "2022-06-15 17:04:57+00:00", "2022-06-15 17:04:59+00:00", "2022-06-15 17:05:01+00:00", "2022-06-15 17:05:03+00:00", "2022-06-15 17:05:06+00:00", "2022-06-15 17:05:08+00:00", "2022-06-15 17:05:10+00:00", "2022-06-15 17:05:12+00:00", "2022-06-15 17:05:14+00:00", "2022-06-15 17:05:16+00:00", "2022-06-15 17:05:18+00:00", "2022-06-15 17:05:20+00:00", "2022-06-15 17:05:22+00:00", "2022-06-15 17:05:23+00:00", "2022-06-15 17:05:25+00:00"]}}, {"type": "Feature", "id": "trace#96", "geometry": {"type": "LineString", "coordinates": [[-83.711363, 32.774113], [-83.711708, 32.774663], [-83.712055, 32.775213], [-83.712403, 32.775762], [-83.712748, 32.77631], [-83.713092, 32.776862], [-83.713438, 32.77741], [-83.713785, 32.77796], [-83.714132, 32.778508], [-83.714478, 32.779058], [-83.714827, 32.779607], [-83.715175, 32.780157], [-83.715522, 32.780707], [-83.715867, 32.781257], [-83.716212, 32.781808], [-83.716558, 32.782358], [-83.716905, 32.782908], [-83.717252, 32.783458], [-83.717598, 32.78401], [-83.717948, 32.784562], [-83.718295, 32.785115], [-83.718637, 32.78567], [-83.718955, 32.786232], [-83.719217, 32.786815], [-83.719418, 32.787412], [-83.719568, 32.788018], [-83.719663, 32.788632], [-83.719728, 32.789252], [-83.719792, 32.789872], [-83.719843, 32.790493], [-83.719888, 32.791117], [-83.719945, 32.791738], [-83.720008, 32.792352], [-83.720063, 32.79296], [-83.720103, 32.793565], [-83.720155, 32.79417], [-83.720218, 32.794783], [-83.720283, 32.7954], [-83.720348, 32.796018], [-83.720413, 32.796633], [-83.720477, 32.79724], [-83.720543, 32.797835], [-83.720633, 32.798415], [-83.720748, 32.79898], [-83.720888, 32.799537], [-83.721048, 32.800083], [-83.72123, 32.80062], [-83.721435, 32.801147], [-83.721658, 32.801663], [-83.7219, 32.802172], [-83.722143, 32.802678], [-83.722387, 32.803182]]}, "properties": {"filename": "osm-traces-page-80.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/4429842", "track.name": "redacted.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Orlando to Macon traces", "times": ["2022-06-06 14:44:15+00:00", "2022-06-06 14:44:17+00:00", "2022-06-06 14:44:19+00:00", "2022-06-06 14:44:21+00:00", "2022-06-06 14:44:23+00:00", "2022-06-06 14:44:25+00:00", "2022-06-06 14:44:27+00:00", "2022-06-06 14:44:29+00:00", "2022-06-06 14:44:31+00:00", "2022-06-06 14:44:33+00:00", "2022-06-06 14:44:35+00:00", "2022-06-06 14:44:37+00:00", "2022-06-06 14:44:39+00:00", "2022-06-06 14:44:41+00:00", "2022-06-06 14:44:43+00:00", "2022-06-06 14:44:45+00:00", "2022-06-06 14:44:47+00:00", "2022-06-06 14:44:49+00:00", "2022-06-06 14:44:51+00:00", "2022-06-06 14:44:53+00:00", "2022-06-06 14:44:55+00:00", "2022-06-06 14:44:57+00:00", "2022-06-06 14:44:59+00:00", "2022-06-06 14:45:01+00:00", "2022-06-06 14:45:03+00:00", "2022-06-06 14:45:05+00:00", "2022-06-06 14:45:07+00:00", "2022-06-06 14:45:09+00:00", "2022-06-06 14:45:11+00:00", "2022-06-06 14:45:13+00:00", "2022-06-06 14:45:15+00:00", "2022-06-06 14:45:17+00:00", "2022-06-06 14:45:19+00:00", "2022-06-06 14:45:21+00:00", "2022-06-06 14:45:23+00:00", "2022-06-06 14:45:25+00:00", "2022-06-06 14:45:27+00:00", "2022-06-06 14:45:29+00:00", "2022-06-06 14:45:31+00:00", "2022-06-06 14:45:33+00:00", "2022-06-06 14:45:35+00:00", "2022-06-06 14:45:37+00:00", "2022-06-06 14:45:39+00:00", "2022-06-06 14:45:41+00:00", "2022-06-06 14:45:43+00:00", "2022-06-06 14:45:45+00:00", "2022-06-06 14:45:47+00:00", "2022-06-06 14:45:49+00:00", "2022-06-06 14:45:51+00:00", "2022-06-06 14:45:53+00:00", "2022-06-06 14:45:55+00:00", "2022-06-06 14:45:57+00:00"]}}, {"type": "Feature", "id": "trace#97", "geometry": {"type": "LineString", "coordinates": [[-83.63411, 32.853054], [-83.633657, 32.852798], [-83.633198, 32.852541], [-83.632743, 32.852283], [-83.632304, 32.852025], [-83.631895, 32.851721], [-83.631527, 32.851388], [-83.63115, 32.851043], [-83.630782, 32.850702], [-83.630429, 32.850362], [-83.630068, 32.850013], [-83.629711, 32.849668], [-83.629349, 32.849317], [-83.628996, 32.848973], [-83.628644, 32.848621], [-83.628301, 32.848275], [-83.627957, 32.847929], [-83.627616, 32.84758], [-83.627278, 32.84723], [-83.626838, 32.847499], [-83.62652, 32.847867], [-83.626191, 32.84823], [-83.625849, 32.848585], [-83.625453, 32.848891], [-83.625005, 32.849162], [-83.624523, 32.849379], [-83.624021, 32.84954], [-83.623506, 32.849679], [-83.622991, 32.849828], [-83.622509, 32.850032], [-83.622057, 32.850285], [-83.621625, 32.850571], [-83.621211, 32.850856], [-83.620792, 32.851159], [-83.620402, 32.851483], [-83.620039, 32.851824], [-83.619716, 32.852186], [-83.619435, 32.85257], [-83.619172, 32.852964], [-83.618904, 32.853372], [-83.618648, 32.853771], [-83.618392, 32.854168], [-83.618126, 32.854578], [-83.617865, 32.854982], [-83.617602, 32.855386], [-83.617339, 32.855796], [-83.61708, 32.856195], [-83.616817, 32.856598], [-83.616556, 32.857003], [-83.616298, 32.857408], [-83.616041, 32.857807], [-83.615783, 32.858205], [-83.615524, 32.8586], [-83.615264, 32.858995], [-83.615007, 32.859394], [-83.61475, 32.859796], [-83.614489, 32.860197], [-83.614222, 32.860602], [-83.613961, 32.861002], [-83.613696, 32.86141], [-83.613456, 32.861816], [-83.613245, 32.86223], [-83.613056, 32.862665], [-83.612902, 32.863107], [-83.61278, 32.863552], [-83.612674, 32.864013], [-83.612608, 32.864467], [-83.612576, 32.864932], [-83.612572, 32.865384], [-83.612602, 32.865848], [-83.612664, 32.866301], [-83.612728, 32.866761], [-83.612784, 32.867222], [-83.612838, 32.867679], [-83.612889, 32.868131], [-83.612944, 32.868597], [-83.612991, 32.869052], [-83.613009, 32.869512], [-83.612994, 32.869962], [-83.612949, 32.870416], [-83.612867, 32.870861], [-83.612745, 32.871316], [-83.6126, 32.871749], [-83.61242, 32.872184], [-83.612201, 32.872614], [-83.611953, 32.873039], [-83.611692, 32.873463], [-83.611434, 32.873885], [-83.61118, 32.874302], [-83.61093, 32.874716], [-83.610684, 32.875121], [-83.610439, 32.875527], [-83.610204, 32.875938], [-83.609961, 32.876348], [-83.609704, 32.876756], [-83.609444, 32.877166], [-83.609184, 32.877575], [-83.608927, 32.877983], [-83.608662, 32.878387], [-83.608388, 32.878783], [-83.608095, 32.879167]]}, "properties": {"filename": "osm-traces-page-82.gpx", "track.number": 0, "track.link": "/user/dragonpilot/traces/4405017", "track.name": "1970_01_01T07_37_08.181498Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from dragonpilot 0.8.13 (TOYOTA HIGHLANDER 2017).", "times": ["2022-05-30 18:22:56+00:00", "2022-05-30 18:22:58+00:00", "2022-05-30 18:23:00+00:00", "2022-05-30 18:23:02+00:00", "2022-05-30 18:23:05+00:00", "2022-05-30 18:23:07+00:00", "2022-05-30 18:23:09+00:00", "2022-05-30 18:23:11+00:00", "2022-05-30 18:23:14+00:00", "2022-05-30 18:23:16+00:00", "2022-05-30 18:23:18+00:00", "2022-05-30 18:23:20+00:00", "2022-05-30 18:23:23+00:00", "2022-05-30 18:23:25+00:00", "2022-05-30 18:23:28+00:00", "2022-05-30 18:23:57+00:00", "2022-05-30 18:24:32+00:00", "2022-05-30 18:24:43+00:00", "2022-05-30 18:24:59+00:00", "2022-05-30 18:25:12+00:00", "2022-05-30 18:25:16+00:00", "2022-05-30 18:25:19+00:00", "2022-05-30 18:25:23+00:00", "2022-05-30 18:25:25+00:00", "2022-05-30 18:25:28+00:00", "2022-05-30 18:25:30+00:00", "2022-05-30 18:25:33+00:00", "2022-05-30 18:25:35+00:00", "2022-05-30 18:25:38+00:00", "2022-05-30 18:25:40+00:00", "2022-05-30 18:25:43+00:00", "2022-05-30 18:25:46+00:00", "2022-05-30 18:25:48+00:00", "2022-05-30 18:25:51+00:00", "2022-05-30 18:25:54+00:00", "2022-05-30 18:25:57+00:00", "2022-05-30 18:25:59+00:00", "2022-05-30 18:26:03+00:00", "2022-05-30 18:26:06+00:00", "2022-05-30 18:26:08+00:00", "2022-05-30 18:26:11+00:00", "2022-05-30 18:26:14+00:00", "2022-05-30 18:26:16+00:00", "2022-05-30 18:26:19+00:00", "2022-05-30 18:26:21+00:00", "2022-05-30 18:26:24+00:00", "2022-05-30 18:26:26+00:00", "2022-05-30 18:26:29+00:00", "2022-05-30 18:26:31+00:00", "2022-05-30 18:26:34+00:00", "2022-05-30 18:26:37+00:00", "2022-05-30 18:26:40+00:00", "2022-05-30 18:26:44+00:00", "2022-05-30 18:26:52+00:00", "2022-05-30 18:27:51+00:00", "2022-05-30 18:27:55+00:00", "2022-05-30 18:27:59+00:00", "2022-05-30 18:28:01+00:00", "2022-05-30 18:28:04+00:00", "2022-05-30 18:28:07+00:00", "2022-05-30 18:28:09+00:00", "2022-05-30 18:28:12+00:00", "2022-05-30 18:28:14+00:00", "2022-05-30 18:28:16+00:00", "2022-05-30 18:28:18+00:00", "2022-05-30 18:28:21+00:00", "2022-05-30 18:28:23+00:00", "2022-05-30 18:28:25+00:00", "2022-05-30 18:28:27+00:00", "2022-05-30 18:28:29+00:00", "2022-05-30 18:28:31+00:00", "2022-05-30 18:28:33+00:00", "2022-05-30 18:28:35+00:00", "2022-05-30 18:28:36+00:00", "2022-05-30 18:28:38+00:00", "2022-05-30 18:28:40+00:00", "2022-05-30 18:28:42+00:00", "2022-05-30 18:28:44+00:00", "2022-05-30 18:28:46+00:00", "2022-05-30 18:28:48+00:00", "2022-05-30 18:28:50+00:00", "2022-05-30 18:28:52+00:00", "2022-05-30 18:28:54+00:00", "2022-05-30 18:28:55+00:00", "2022-05-30 18:28:57+00:00", "2022-05-30 18:28:59+00:00", "2022-05-30 18:29:00+00:00", "2022-05-30 18:29:02+00:00", "2022-05-30 18:29:04+00:00", "2022-05-30 18:29:05+00:00", "2022-05-30 18:29:07+00:00", "2022-05-30 18:29:09+00:00", "2022-05-30 18:29:11+00:00", "2022-05-30 18:29:12+00:00", "2022-05-30 18:29:14+00:00", "2022-05-30 18:29:16+00:00", "2022-05-30 18:29:17+00:00", "2022-05-30 18:29:19+00:00", "2022-05-30 18:29:21+00:00", "2022-05-30 18:29:22+00:00", "2022-05-30 18:29:24+00:00"]}}, {"type": "Feature", "id": "trace#98", "geometry": {"type": "LineString", "coordinates": [[-83.65801, 32.774165], [-83.657735, 32.77472], [-83.657465, 32.775285], [-83.657192, 32.775853], [-83.656915, 32.776418], [-83.65664, 32.776987], [-83.656367, 32.777557], [-83.65609, 32.778125], [-83.655817, 32.778688], [-83.655558, 32.779208], [-83.655345, 32.779638], [-83.655143, 32.780057], [-83.654907, 32.780528], [-83.654638, 32.781078], [-83.654417, 32.78157], [-83.654173, 32.782093], [-83.65391, 32.782638], [-83.65364, 32.783195], [-83.653378, 32.783763], [-83.653162, 32.784352], [-83.652985, 32.784945], [-83.652848, 32.78554], [-83.652723, 32.786142], [-83.652593, 32.786745], [-83.652428, 32.787347], [-83.652187, 32.787935], [-83.651872, 32.7885], [-83.651517, 32.789037], [-83.65116, 32.789567], [-83.650803, 32.79009], [-83.65045, 32.790607], [-83.650048, 32.791098], [-83.649567, 32.791527], [-83.649003, 32.791903], [-83.648388, 32.792225], [-83.647767, 32.792547], [-83.647155, 32.792865], [-83.646558, 32.793172], [-83.645972, 32.793475], [-83.645385, 32.79377], [-83.644798, 32.794068], [-83.644227, 32.794368], [-83.643703, 32.79467], [-83.643272, 32.79495], [-83.642852, 32.79528], [-83.642393, 32.79569], [-83.642043, 32.79606], [-83.641707, 32.7965], [-83.641403, 32.796973], [-83.641147, 32.797468], [-83.640945, 32.797982], [-83.640797, 32.798517], [-83.640698, 32.799082], [-83.640658, 32.79966], [-83.640637, 32.800233], [-83.640613, 32.800818], [-83.640593, 32.801423], [-83.640567, 32.802052], [-83.640542, 32.802688], [-83.640517, 32.803313], [-83.64049, 32.803935], [-83.640463, 32.80456], [-83.640437, 32.805193], [-83.640408, 32.80583], [-83.640382, 32.806468], [-83.640352, 32.8071], [-83.640322, 32.807732], [-83.640295, 32.808363], [-83.640267, 32.808995], [-83.640243, 32.809623], [-83.640222, 32.810253], [-83.6402, 32.810885], [-83.640177, 32.811522], [-83.64015, 32.812138], [-83.640125, 32.812703], [-83.640105, 32.813187], [-83.63991, 32.813638], [-83.639277, 32.813662], [-83.638605, 32.813643], [-83.637867, 32.813632], [-83.637122, 32.813627], [-83.636357, 32.813662], [-83.63558, 32.81379], [-83.634827, 32.814008], [-83.634335, 32.814197], [-83.63386, 32.814423], [-83.633407, 32.814678], [-83.632978, 32.814967], [-83.632567, 32.815262], [-83.632015, 32.815673], [-83.631557, 32.816065], [-83.631162, 32.81637], [-83.63073, 32.816682], [-83.630553, 32.817135], [-83.630738, 32.817628], [-83.63097, 32.818172], [-83.631332, 32.818657], [-83.631742, 32.81902], [-83.631415, 32.819527], [-83.631002, 32.820018], [-83.630677, 32.820402]]}, "properties": {"filename": "osm-traces-page-83.gpx", "track.number": 3, "track.link": "/user/Chris%20Lawrence/traces/4354222", "track.name": "redacted.gpx.gz", "track.segment.number": 5, "track.segment.split.number": 0, "track.description": "WR to Athens and Buford", "times": ["2022-05-07 16:38:26+00:00", "2022-05-07 16:38:29+00:00", "2022-05-07 16:38:32+00:00", "2022-05-07 16:38:35+00:00", "2022-05-07 16:38:38+00:00", "2022-05-07 16:38:41+00:00", "2022-05-07 16:38:44+00:00", "2022-05-07 16:38:47+00:00", "2022-05-07 16:38:50+00:00", "2022-05-07 16:38:53+00:00", "2022-05-07 16:38:56+00:00", "2022-05-07 16:39:01+00:00", "2022-05-07 16:39:18+00:00", "2022-05-07 16:39:22+00:00", "2022-05-07 16:39:25+00:00", "2022-05-07 16:39:28+00:00", "2022-05-07 16:39:31+00:00", "2022-05-07 16:39:34+00:00", "2022-05-07 16:39:37+00:00", "2022-05-07 16:39:40+00:00", "2022-05-07 16:39:43+00:00", "2022-05-07 16:39:46+00:00", "2022-05-07 16:39:49+00:00", "2022-05-07 16:39:52+00:00", "2022-05-07 16:39:55+00:00", "2022-05-07 16:39:58+00:00", "2022-05-07 16:40:01+00:00", "2022-05-07 16:40:04+00:00", "2022-05-07 16:40:07+00:00", "2022-05-07 16:40:10+00:00", "2022-05-07 16:40:13+00:00", "2022-05-07 16:40:16+00:00", "2022-05-07 16:40:19+00:00", "2022-05-07 16:40:22+00:00", "2022-05-07 16:40:25+00:00", "2022-05-07 16:40:28+00:00", "2022-05-07 16:40:31+00:00", "2022-05-07 16:40:34+00:00", "2022-05-07 16:40:37+00:00", "2022-05-07 16:40:40+00:00", "2022-05-07 16:40:43+00:00", "2022-05-07 16:40:46+00:00", "2022-05-07 16:40:49+00:00", "2022-05-07 16:40:52+00:00", "2022-05-07 16:40:58+00:00", "2022-05-07 16:41:03+00:00", "2022-05-07 16:41:06+00:00", "2022-05-07 16:41:09+00:00", "2022-05-07 16:41:12+00:00", "2022-05-07 16:41:15+00:00", "2022-05-07 16:41:18+00:00", "2022-05-07 16:41:21+00:00", "2022-05-07 16:41:24+00:00", "2022-05-07 16:41:27+00:00", "2022-05-07 16:41:30+00:00", "2022-05-07 16:41:33+00:00", "2022-05-07 16:41:36+00:00", "2022-05-07 16:41:39+00:00", "2022-05-07 16:41:42+00:00", "2022-05-07 16:41:45+00:00", "2022-05-07 16:41:48+00:00", "2022-05-07 16:41:51+00:00", "2022-05-07 16:41:54+00:00", "2022-05-07 16:41:57+00:00", "2022-05-07 16:42:00+00:00", "2022-05-07 16:42:03+00:00", "2022-05-07 16:42:06+00:00", "2022-05-07 16:42:09+00:00", "2022-05-07 16:42:12+00:00", "2022-05-07 16:42:15+00:00", "2022-05-07 16:42:18+00:00", "2022-05-07 16:42:21+00:00", "2022-05-07 16:42:24+00:00", "2022-05-07 16:42:27+00:00", "2022-05-07 16:42:30+00:00", "2022-05-07 16:42:33+00:00", "2022-05-07 16:42:38+00:00", "2022-05-07 16:42:42+00:00", "2022-05-07 16:42:45+00:00", "2022-05-07 16:42:48+00:00", "2022-05-07 16:42:51+00:00", "2022-05-07 16:42:54+00:00", "2022-05-07 16:42:57+00:00", "2022-05-07 16:43:00+00:00", "2022-05-07 16:43:02+00:00", "2022-05-07 16:43:04+00:00", "2022-05-07 16:43:06+00:00", "2022-05-07 16:43:08+00:00", "2022-05-07 16:43:10+00:00", "2022-05-07 16:43:13+00:00", "2022-05-07 16:43:16+00:00", "2022-05-07 16:43:19+00:00", "2022-05-07 16:43:23+00:00", "2022-05-07 16:43:28+00:00", "2022-05-07 16:43:32+00:00", "2022-05-07 16:43:36+00:00", "2022-05-07 16:43:40+00:00", "2022-05-07 16:43:46+00:00", "2022-05-07 16:43:52+00:00", "2022-05-07 16:43:56+00:00", "2022-05-07 16:43:59+00:00"]}}, {"type": "Feature", "id": "trace#99", "geometry": {"type": "LineString", "coordinates": [[-83.711277, 32.77414], [-83.711627, 32.774688], [-83.711977, 32.775235], [-83.712325, 32.775782], [-83.712675, 32.776332], [-83.713023, 32.776882], [-83.713375, 32.777432], [-83.713728, 32.77798], [-83.71408, 32.77853], [-83.714432, 32.779078], [-83.714783, 32.779627], [-83.715133, 32.780175], [-83.715485, 32.780722], [-83.715835, 32.78127], [-83.716187, 32.781818], [-83.716535, 32.782363], [-83.716882, 32.782905], [-83.717222, 32.783445], [-83.71757, 32.783993], [-83.717915, 32.78454], [-83.71826, 32.78509], [-83.718605, 32.78564], [-83.71893, 32.786197], [-83.719205, 32.786772], [-83.719422, 32.787362], [-83.719582, 32.78796], [-83.719677, 32.788563], [-83.719743, 32.789172], [-83.7198, 32.789782], [-83.719862, 32.790393], [-83.719922, 32.791008], [-83.719985, 32.791623], [-83.720045, 32.792237], [-83.720107, 32.792852], [-83.720168, 32.793465], [-83.720232, 32.79408], [-83.720293, 32.794693], [-83.720353, 32.795307], [-83.720417, 32.795922], [-83.72048, 32.796537], [-83.720543, 32.79715], [-83.72061, 32.797763], [-83.720703, 32.798375], [-83.720823, 32.798983], [-83.720978, 32.799587], [-83.721157, 32.800185], [-83.721362, 32.800777], [-83.721595, 32.801358], [-83.721857, 32.801932], [-83.722133, 32.802502], [-83.722407, 32.803073]]}, "properties": {"filename": "osm-traces-page-84.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/4354212", "track.name": "redacted.gpx.gz", "track.segment.number": 9, "track.segment.split.number": 0, "track.description": "Various Macon traces + WR to Memphis", "times": ["2022-05-14 17:19:27+00:00", "2022-05-14 17:19:29+00:00", "2022-05-14 17:19:31+00:00", "2022-05-14 17:19:33+00:00", "2022-05-14 17:19:35+00:00", "2022-05-14 17:19:37+00:00", "2022-05-14 17:19:39+00:00", "2022-05-14 17:19:41+00:00", "2022-05-14 17:19:43+00:00", "2022-05-14 17:19:45+00:00", "2022-05-14 17:19:47+00:00", "2022-05-14 17:19:49+00:00", "2022-05-14 17:19:51+00:00", "2022-05-14 17:19:53+00:00", "2022-05-14 17:19:55+00:00", "2022-05-14 17:19:57+00:00", "2022-05-14 17:19:59+00:00", "2022-05-14 17:20:01+00:00", "2022-05-14 17:20:03+00:00", "2022-05-14 17:20:05+00:00", "2022-05-14 17:20:07+00:00", "2022-05-14 17:20:09+00:00", "2022-05-14 17:20:11+00:00", "2022-05-14 17:20:13+00:00", "2022-05-14 17:20:15+00:00", "2022-05-14 17:20:17+00:00", "2022-05-14 17:20:19+00:00", "2022-05-14 17:20:21+00:00", "2022-05-14 17:20:23+00:00", "2022-05-14 17:20:25+00:00", "2022-05-14 17:20:27+00:00", "2022-05-14 17:20:29+00:00", "2022-05-14 17:20:31+00:00", "2022-05-14 17:20:33+00:00", "2022-05-14 17:20:35+00:00", "2022-05-14 17:20:37+00:00", "2022-05-14 17:20:39+00:00", "2022-05-14 17:20:41+00:00", "2022-05-14 17:20:43+00:00", "2022-05-14 17:20:45+00:00", "2022-05-14 17:20:47+00:00", "2022-05-14 17:20:49+00:00", "2022-05-14 17:20:51+00:00", "2022-05-14 17:20:53+00:00", "2022-05-14 17:20:55+00:00", "2022-05-14 17:20:57+00:00", "2022-05-14 17:20:59+00:00", "2022-05-14 17:21:01+00:00", "2022-05-14 17:21:03+00:00", "2022-05-14 17:21:05+00:00", "2022-05-14 17:21:07+00:00"]}}, {"type": "Feature", "id": "trace#100", "geometry": {"type": "LineString", "coordinates": [[-83.71133, 32.774112], [-83.711579, 32.774516], [-83.711833, 32.774918], [-83.712087, 32.775319], [-83.712342, 32.77572], [-83.712595, 32.776123], [-83.712848, 32.776525], [-83.713105, 32.776926], [-83.713368, 32.777325], [-83.713634, 32.777723], [-83.713896, 32.778123], [-83.714154, 32.778524], [-83.714408, 32.778926], [-83.71466, 32.779327], [-83.714913, 32.779727], [-83.715166, 32.780127], [-83.715417, 32.780527], [-83.715668, 32.780926], [-83.715919, 32.781325], [-83.71617, 32.781724], [-83.716422, 32.782124], [-83.716675, 32.782525], [-83.716928, 32.782928], [-83.717185, 32.78333], [-83.717443, 32.783735], [-83.717703, 32.784144], [-83.717962, 32.784555], [-83.718221, 32.784968], [-83.718478, 32.785384], [-83.718729, 32.785799], [-83.718961, 32.786221], [-83.719163, 32.786654], [-83.719335, 32.787098], [-83.719475, 32.787547], [-83.719581, 32.787999], [-83.719655, 32.788452], [-83.719708, 32.788905], [-83.719754, 32.789358], [-83.719799, 32.789811], [-83.719846, 32.790266], [-83.719893, 32.790724], [-83.71994, 32.791183], [-83.719988, 32.791644], [-83.720037, 32.792104], [-83.720084, 32.792564], [-83.720132, 32.793024], [-83.720181, 32.793483], [-83.72023, 32.793944], [-83.720278, 32.794404], [-83.720325, 32.794865], [-83.720372, 32.795328], [-83.720421, 32.795791], [-83.72047, 32.796254], [-83.720517, 32.796713], [-83.720566, 32.797169], [-83.720617, 32.797627], [-83.720679, 32.798086], [-83.720758, 32.798539], [-83.720851, 32.798992], [-83.720962, 32.799445], [-83.721089, 32.799901], [-83.721232, 32.800356], [-83.721394, 32.800808], [-83.721575, 32.801255], [-83.721771, 32.801695], [-83.721975, 32.802129], [-83.72218, 32.80256], [-83.722385, 32.802989]]}, "properties": {"filename": "osm-traces-page-84.gpx", "track.number": 2, "track.link": "/user/sunnypilot/traces/4316247", "track.name": "2022_05_01T23_09_34.088631Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HONDA ODYSSEY 2018-21).", "times": ["2022-05-01 23:16:04+00:00", "2022-05-01 23:16:06+00:00", "2022-05-01 23:16:07+00:00", "2022-05-01 23:16:08+00:00", "2022-05-01 23:16:10+00:00", "2022-05-01 23:16:11+00:00", "2022-05-01 23:16:13+00:00", "2022-05-01 23:16:14+00:00", "2022-05-01 23:16:15+00:00", "2022-05-01 23:16:17+00:00", "2022-05-01 23:16:18+00:00", "2022-05-01 23:16:20+00:00", "2022-05-01 23:16:21+00:00", "2022-05-01 23:16:22+00:00", "2022-05-01 23:16:24+00:00", "2022-05-01 23:16:25+00:00", "2022-05-01 23:16:27+00:00", "2022-05-01 23:16:28+00:00", "2022-05-01 23:16:29+00:00", "2022-05-01 23:16:31+00:00", "2022-05-01 23:16:32+00:00", "2022-05-01 23:16:34+00:00", "2022-05-01 23:16:35+00:00", "2022-05-01 23:16:36+00:00", "2022-05-01 23:16:38+00:00", "2022-05-01 23:16:39+00:00", "2022-05-01 23:16:41+00:00", "2022-05-01 23:16:42+00:00", "2022-05-01 23:16:43+00:00", "2022-05-01 23:16:45+00:00", "2022-05-01 23:16:46+00:00", "2022-05-01 23:16:48+00:00", "2022-05-01 23:16:49+00:00", "2022-05-01 23:16:50+00:00", "2022-05-01 23:16:52+00:00", "2022-05-01 23:16:53+00:00", "2022-05-01 23:16:55+00:00", "2022-05-01 23:16:56+00:00", "2022-05-01 23:16:57+00:00", "2022-05-01 23:16:59+00:00", "2022-05-01 23:17:00+00:00", "2022-05-01 23:17:02+00:00", "2022-05-01 23:17:03+00:00", "2022-05-01 23:17:04+00:00", "2022-05-01 23:17:06+00:00", "2022-05-01 23:17:07+00:00", "2022-05-01 23:17:09+00:00", "2022-05-01 23:17:10+00:00", "2022-05-01 23:17:11+00:00", "2022-05-01 23:17:13+00:00", "2022-05-01 23:17:14+00:00", "2022-05-01 23:17:16+00:00", "2022-05-01 23:17:17+00:00", "2022-05-01 23:17:18+00:00", "2022-05-01 23:17:20+00:00", "2022-05-01 23:17:21+00:00", "2022-05-01 23:17:23+00:00", "2022-05-01 23:17:24+00:00", "2022-05-01 23:17:25+00:00", "2022-05-01 23:17:27+00:00", "2022-05-01 23:17:28+00:00", "2022-05-01 23:17:30+00:00", "2022-05-01 23:17:31+00:00", "2022-05-01 23:17:32+00:00", "2022-05-01 23:17:34+00:00", "2022-05-01 23:17:35+00:00", "2022-05-01 23:17:37+00:00", "2022-05-01 23:17:38+00:00"]}}, {"type": "Feature", "id": "trace#101", "geometry": {"type": "LineString", "coordinates": [[-83.627305, 32.848332], [-83.627668, 32.848684], [-83.628047, 32.849027], [-83.628415, 32.849382], [-83.628782, 32.849743], [-83.629156, 32.850093], [-83.629532, 32.850448], [-83.629891, 32.850789], [-83.630257, 32.851136], [-83.630628, 32.851484], [-83.631011, 32.851827], [-83.631399, 32.852168], [-83.63179, 32.852512], [-83.632162, 32.852838], [-83.632534, 32.853167], [-83.632907, 32.85349], [-83.633304, 32.85382], [-83.633717, 32.854121], [-83.634145, 32.854404], [-83.634569, 32.854685], [-83.635001, 32.854973], [-83.635435, 32.855263], [-83.635871, 32.855552], [-83.636308, 32.855838], [-83.63675, 32.856114], [-83.63719, 32.856386], [-83.63763, 32.856664], [-83.638076, 32.856945], [-83.638529, 32.857228], [-83.638981, 32.85751], [-83.639432, 32.857792], [-83.639875, 32.858076], [-83.640301, 32.858355], [-83.640718, 32.85865], [-83.641127, 32.858949], [-83.64154, 32.859248], [-83.641965, 32.859544], [-83.642421, 32.859803], [-83.642902, 32.860019], [-83.643402, 32.860213], [-83.643897, 32.860402], [-83.644396, 32.860592], [-83.644906, 32.860789], [-83.645389, 32.860984], [-83.645879, 32.861188], [-83.646381, 32.861398], [-83.646865, 32.861598], [-83.647353, 32.861801], [-83.647835, 32.861998], [-83.648338, 32.862204], [-83.648828, 32.862405], [-83.649322, 32.862609], [-83.649822, 32.862809], [-83.650313, 32.863003], [-83.650802, 32.863215], [-83.651268, 32.863461], [-83.651698, 32.86375], [-83.652107, 32.864075], [-83.652479, 32.864408], [-83.652846, 32.864746], [-83.653217, 32.865086], [-83.653587, 32.865427], [-83.653962, 32.865771], [-83.654341, 32.866122], [-83.654718, 32.866474], [-83.655096, 32.866823], [-83.655473, 32.867169], [-83.655846, 32.867511], [-83.656215, 32.867843], [-83.656578, 32.868176], [-83.656957, 32.868526], [-83.65732, 32.868858]]}, "properties": {"filename": "osm-traces-page-85.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4305806", "track.name": "2022_05_01T17_51_44.840974Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 0.8.12-4 (HYUNDAI GENESIS 2015-2016).", "times": ["2022-05-01 17:59:33+00:00", "2022-05-01 17:59:34+00:00", "2022-05-01 17:59:36+00:00", "2022-05-01 17:59:38+00:00", "2022-05-01 17:59:40+00:00", "2022-05-01 17:59:42+00:00", "2022-05-01 17:59:43+00:00", "2022-05-01 17:59:45+00:00", "2022-05-01 17:59:47+00:00", "2022-05-01 17:59:49+00:00", "2022-05-01 17:59:50+00:00", "2022-05-01 17:59:52+00:00", "2022-05-01 17:59:54+00:00", "2022-05-01 17:59:55+00:00", "2022-05-01 17:59:57+00:00", "2022-05-01 17:59:58+00:00", "2022-05-01 18:00:00+00:00", "2022-05-01 18:00:02+00:00", "2022-05-01 18:00:04+00:00", "2022-05-01 18:00:05+00:00", "2022-05-01 18:00:07+00:00", "2022-05-01 18:00:09+00:00", "2022-05-01 18:00:10+00:00", "2022-05-01 18:00:12+00:00", "2022-05-01 18:00:14+00:00", "2022-05-01 18:00:15+00:00", "2022-05-01 18:00:17+00:00", "2022-05-01 18:00:19+00:00", "2022-05-01 18:00:21+00:00", "2022-05-01 18:00:22+00:00", "2022-05-01 18:00:24+00:00", "2022-05-01 18:00:26+00:00", "2022-05-01 18:00:27+00:00", "2022-05-01 18:00:29+00:00", "2022-05-01 18:00:31+00:00", "2022-05-01 18:00:33+00:00", "2022-05-01 18:00:35+00:00", "2022-05-01 18:00:38+00:00", "2022-05-01 18:00:40+00:00", "2022-05-01 18:00:43+00:00", "2022-05-01 18:00:45+00:00", "2022-05-01 18:00:47+00:00", "2022-05-01 18:00:49+00:00", "2022-05-01 18:00:51+00:00", "2022-05-01 18:00:52+00:00", "2022-05-01 18:00:54+00:00", "2022-05-01 18:00:56+00:00", "2022-05-01 18:00:58+00:00", "2022-05-01 18:01:00+00:00", "2022-05-01 18:01:02+00:00", "2022-05-01 18:01:04+00:00", "2022-05-01 18:01:06+00:00", "2022-05-01 18:01:08+00:00", "2022-05-01 18:01:10+00:00", "2022-05-01 18:01:12+00:00", "2022-05-01 18:01:14+00:00", "2022-05-01 18:01:16+00:00", "2022-05-01 18:01:18+00:00", "2022-05-01 18:01:19+00:00", "2022-05-01 18:01:21+00:00", "2022-05-01 18:01:23+00:00", "2022-05-01 18:01:25+00:00", "2022-05-01 18:01:27+00:00", "2022-05-01 18:01:29+00:00", "2022-05-01 18:01:31+00:00", "2022-05-01 18:01:33+00:00", "2022-05-01 18:01:35+00:00", "2022-05-01 18:01:37+00:00", "2022-05-01 18:01:38+00:00", "2022-05-01 18:01:40+00:00", "2022-05-01 18:01:42+00:00", "2022-05-01 18:01:44+00:00"]}}, {"type": "Feature", "id": "trace#102", "geometry": {"type": "LineString", "coordinates": [[-83.608878, 32.83268], [-83.608488, 32.832352], [-83.608096, 32.832023], [-83.607703, 32.831693], [-83.607304, 32.831359], [-83.606925, 32.83104], [-83.606545, 32.830722], [-83.606148, 32.830389], [-83.60575, 32.830055], [-83.605354, 32.829721], [-83.604954, 32.829389], [-83.604556, 32.829056], [-83.604157, 32.828723], [-83.603758, 32.828389], [-83.60336, 32.828054], [-83.602964, 32.82772], [-83.60256, 32.827396], [-83.602151, 32.827071], [-83.60173, 32.826757], [-83.6013, 32.826454], [-83.600862, 32.826164], [-83.600415, 32.825885], [-83.599958, 32.825615], [-83.599494, 32.825347], [-83.599028, 32.825079], [-83.598587, 32.824824], [-83.598143, 32.82457], [-83.597676, 32.824304], [-83.597215, 32.824039], [-83.596758, 32.823777], [-83.596299, 32.823513], [-83.595839, 32.823247], [-83.595375, 32.822981], [-83.59491, 32.822715], [-83.594447, 32.82245], [-83.593985, 32.822185], [-83.59352, 32.821919], [-83.59307, 32.821661], [-83.59261, 32.821398], [-83.592151, 32.821136], [-83.591699, 32.820877], [-83.591254, 32.820622], [-83.590792, 32.820357], [-83.590338, 32.820096], [-83.58989, 32.81984], [-83.589426, 32.819573]]}, "properties": {"filename": "osm-traces-page-85.gpx", "track.number": 3, "track.link": "/user/sunnypilot/traces/4291814", "track.name": "2022_04_28T12_39_32.413817Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HYUNDAI GENESIS 2015-2016).", "times": ["2022-04-28 12:39:32+00:00", "2022-04-28 12:39:34+00:00", "2022-04-28 12:39:36+00:00", "2022-04-28 12:39:37+00:00", "2022-04-28 12:39:39+00:00", "2022-04-28 12:39:41+00:00", "2022-04-28 12:39:43+00:00", "2022-04-28 12:39:45+00:00", "2022-04-28 12:39:47+00:00", "2022-04-28 12:39:49+00:00", "2022-04-28 12:39:51+00:00", "2022-04-28 12:39:52+00:00", "2022-04-28 12:39:54+00:00", "2022-04-28 12:39:56+00:00", "2022-04-28 12:39:58+00:00", "2022-04-28 12:40:00+00:00", "2022-04-28 12:40:02+00:00", "2022-04-28 12:40:04+00:00", "2022-04-28 12:40:06+00:00", "2022-04-28 12:40:08+00:00", "2022-04-28 12:40:10+00:00", "2022-04-28 12:40:11+00:00", "2022-04-28 12:40:13+00:00", "2022-04-28 12:40:15+00:00", "2022-04-28 12:40:17+00:00", "2022-04-28 12:40:19+00:00", "2022-04-28 12:40:21+00:00", "2022-04-28 12:40:23+00:00", "2022-04-28 12:40:25+00:00", "2022-04-28 12:40:26+00:00", "2022-04-28 12:40:28+00:00", "2022-04-28 12:40:30+00:00", "2022-04-28 12:40:32+00:00", "2022-04-28 12:40:34+00:00", "2022-04-28 12:40:36+00:00", "2022-04-28 12:40:38+00:00", "2022-04-28 12:40:40+00:00", "2022-04-28 12:40:42+00:00", "2022-04-28 12:40:43+00:00", "2022-04-28 12:40:45+00:00", "2022-04-28 12:40:47+00:00", "2022-04-28 12:40:49+00:00", "2022-04-28 12:40:51+00:00", "2022-04-28 12:40:53+00:00", "2022-04-28 12:40:54+00:00", "2022-04-28 12:40:56+00:00"]}}, {"type": "Feature", "id": "trace#103", "geometry": {"type": "LineString", "coordinates": [[-83.72241, 32.802765], [-83.722137, 32.802187], [-83.72188, 32.801603], [-83.721652, 32.801012], [-83.721455, 32.800413], [-83.721287, 32.799808], [-83.721143, 32.799198], [-83.721028, 32.798585], [-83.720942, 32.797967], [-83.720875, 32.797348], [-83.720807, 32.796728], [-83.720742, 32.79611], [-83.720677, 32.795493], [-83.72061, 32.794878], [-83.720547, 32.794262], [-83.720482, 32.793645], [-83.720417, 32.793028], [-83.720353, 32.792412], [-83.72029, 32.791795], [-83.720225, 32.791177], [-83.720162, 32.790557], [-83.720097, 32.789935], [-83.720035, 32.789315], [-83.719967, 32.788693], [-83.719878, 32.788075], [-83.719738, 32.787465], [-83.71955, 32.786867], [-83.719303, 32.786287], [-83.719003, 32.785722], [-83.718667, 32.785172], [-83.718323, 32.784623], [-83.717978, 32.784075], [-83.717635, 32.783527], [-83.717288, 32.782975], [-83.716942, 32.782425], [-83.716598, 32.781873], [-83.716253, 32.781323], [-83.715907, 32.780775], [-83.715562, 32.780227], [-83.715217, 32.779677], [-83.714872, 32.779128], [-83.714527, 32.77858], [-83.71418, 32.778032], [-83.713837, 32.777483], [-83.71349, 32.776935], [-83.713145, 32.776387], [-83.7128, 32.775838], [-83.712455, 32.77529], [-83.71211, 32.774742], [-83.71177, 32.774192]]}, "properties": {"filename": "osm-traces-page-87.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/4290232", "track.name": "redacted.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Home to Dublin, Milledgeville, Covington, McDonough, etc.", "times": ["2022-04-24 01:13:48+00:00", "2022-04-24 01:13:50+00:00", "2022-04-24 01:13:52+00:00", "2022-04-24 01:13:54+00:00", "2022-04-24 01:13:56+00:00", "2022-04-24 01:13:58+00:00", "2022-04-24 01:14:00+00:00", "2022-04-24 01:14:02+00:00", "2022-04-24 01:14:04+00:00", "2022-04-24 01:14:06+00:00", "2022-04-24 01:14:08+00:00", "2022-04-24 01:14:10+00:00", "2022-04-24 01:14:12+00:00", "2022-04-24 01:14:14+00:00", "2022-04-24 01:14:16+00:00", "2022-04-24 01:14:18+00:00", "2022-04-24 01:14:20+00:00", "2022-04-24 01:14:22+00:00", "2022-04-24 01:14:24+00:00", "2022-04-24 01:14:26+00:00", "2022-04-24 01:14:28+00:00", "2022-04-24 01:14:30+00:00", "2022-04-24 01:14:32+00:00", "2022-04-24 01:14:34+00:00", "2022-04-24 01:14:36+00:00", "2022-04-24 01:14:38+00:00", "2022-04-24 01:14:40+00:00", "2022-04-24 01:14:42+00:00", "2022-04-24 01:14:44+00:00", "2022-04-24 01:14:46+00:00", "2022-04-24 01:14:48+00:00", "2022-04-24 01:14:50+00:00", "2022-04-24 01:14:52+00:00", "2022-04-24 01:14:54+00:00", "2022-04-24 01:14:56+00:00", "2022-04-24 01:14:58+00:00", "2022-04-24 01:15:00+00:00", "2022-04-24 01:15:02+00:00", "2022-04-24 01:15:04+00:00", "2022-04-24 01:15:06+00:00", "2022-04-24 01:15:08+00:00", "2022-04-24 01:15:10+00:00", "2022-04-24 01:15:12+00:00", "2022-04-24 01:15:14+00:00", "2022-04-24 01:15:16+00:00", "2022-04-24 01:15:18+00:00", "2022-04-24 01:15:20+00:00", "2022-04-24 01:15:22+00:00", "2022-04-24 01:15:24+00:00", "2022-04-24 01:15:26+00:00"]}}, {"type": "Feature", "id": "trace#104", "geometry": {"type": "LineString", "coordinates": [[-83.630197, 32.882437], [-83.630608, 32.88284], [-83.631008, 32.883248], [-83.63134, 32.883693], [-83.631557, 32.884192], [-83.631585, 32.884718], [-83.63148, 32.885235], [-83.631375, 32.885735], [-83.631283, 32.886218], [-83.631188, 32.886692], [-83.631112, 32.88716], [-83.631137, 32.887625], [-83.631245, 32.888078], [-83.631447, 32.888507], [-83.631763, 32.888878], [-83.632173, 32.889178], [-83.632652, 32.889395], [-83.633145, 32.889575], [-83.633653, 32.889903], [-83.633987, 32.89026], [-83.634285, 32.890642]]}, "properties": {"filename": "osm-traces-page-88.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/4196044", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "WR to Douglasville", "times": ["2022-03-19 19:32:20+00:00", "2022-03-19 19:32:23+00:00", "2022-03-19 19:32:25+00:00", "2022-03-19 19:32:28+00:00", "2022-03-19 19:32:30+00:00", "2022-03-19 19:32:33+00:00", "2022-03-19 19:32:35+00:00", "2022-03-19 19:32:38+00:00", "2022-03-19 19:32:40+00:00", "2022-03-19 19:32:43+00:00", "2022-03-19 19:32:45+00:00", "2022-03-19 19:32:48+00:00", "2022-03-19 19:32:50+00:00", "2022-03-19 19:32:53+00:00", "2022-03-19 19:32:55+00:00", "2022-03-19 19:32:58+00:00", "2022-03-19 19:33:00+00:00", "2022-03-19 19:33:03+00:00", "2022-03-19 19:33:06+00:00", "2022-03-19 19:33:08+00:00", "2022-03-19 19:33:11+00:00"]}}, {"type": "Feature", "id": "trace#105", "geometry": {"type": "LineString", "coordinates": [[-83.711354, 32.774112], [-83.711618, 32.774534], [-83.711882, 32.774954], [-83.712145, 32.77537], [-83.712408, 32.77579], [-83.712661, 32.77619], [-83.712919, 32.776599], [-83.71318, 32.777014], [-83.713442, 32.777433], [-83.713705, 32.777852], [-83.713971, 32.778271], [-83.714234, 32.77869], [-83.714495, 32.779111], [-83.714759, 32.77953], [-83.715026, 32.77995], [-83.715292, 32.780371], [-83.715555, 32.780793], [-83.71582, 32.781214], [-83.716086, 32.781638], [-83.716354, 32.782063], [-83.716605, 32.782462], [-83.716858, 32.782862], [-83.717109, 32.783261], [-83.71736, 32.783661], [-83.717613, 32.78406], [-83.717866, 32.78446], [-83.718119, 32.784864], [-83.718373, 32.78527], [-83.718625, 32.785679], [-83.718866, 32.786092], [-83.71908, 32.786517], [-83.719256, 32.786954], [-83.719398, 32.787401], [-83.719515, 32.787853], [-83.719603, 32.788308], [-83.719658, 32.788763], [-83.719703, 32.789217], [-83.719749, 32.789668], [-83.719797, 32.790117], [-83.719845, 32.790566], [-83.719892, 32.791016], [-83.71994, 32.791469], [-83.719988, 32.791926], [-83.720035, 32.792388], [-83.720083, 32.792852], [-83.720134, 32.793319], [-83.720184, 32.793787], [-83.720231, 32.794255], [-83.72028, 32.794724], [-83.720331, 32.795192], [-83.72038, 32.795657], [-83.720426, 32.796117], [-83.720472, 32.796575], [-83.720522, 32.797033], [-83.720576, 32.797492], [-83.72063, 32.797952], [-83.7207, 32.79841], [-83.720793, 32.798864], [-83.720901, 32.799312], [-83.721024, 32.799754], [-83.721169, 32.80022], [-83.72133, 32.800677], [-83.721505, 32.801124], [-83.72169, 32.80156], [-83.721884, 32.801983], [-83.722096, 32.802426], [-83.722305, 32.802865]]}, "properties": {"filename": "osm-traces-page-88.gpx", "track.number": 1, "track.link": "/user/sunnypilot/traces/4191004", "track.name": "2022_03_17T19_33_21.676036Z.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Routes from sunnypilot 0.8.12-4 (HYUNDAI GENESIS 2015-2016).", "times": ["2022-03-17 19:36:02+00:00", "2022-03-17 19:36:03+00:00", "2022-03-17 19:36:05+00:00", "2022-03-17 19:36:06+00:00", "2022-03-17 19:36:08+00:00", "2022-03-17 19:36:09+00:00", "2022-03-17 19:36:11+00:00", "2022-03-17 19:36:12+00:00", "2022-03-17 19:36:14+00:00", "2022-03-17 19:36:15+00:00", "2022-03-17 19:36:17+00:00", "2022-03-17 19:36:18+00:00", "2022-03-17 19:36:20+00:00", "2022-03-17 19:36:21+00:00", "2022-03-17 19:36:23+00:00", "2022-03-17 19:36:24+00:00", "2022-03-17 19:36:26+00:00", "2022-03-17 19:36:27+00:00", "2022-03-17 19:36:29+00:00", "2022-03-17 19:36:30+00:00", "2022-03-17 19:36:32+00:00", "2022-03-17 19:36:33+00:00", "2022-03-17 19:36:35+00:00", "2022-03-17 19:36:36+00:00", "2022-03-17 19:36:37+00:00", "2022-03-17 19:36:39+00:00", "2022-03-17 19:36:40+00:00", "2022-03-17 19:36:42+00:00", "2022-03-17 19:36:43+00:00", "2022-03-17 19:36:44+00:00", "2022-03-17 19:36:46+00:00", "2022-03-17 19:36:47+00:00", "2022-03-17 19:36:49+00:00", "2022-03-17 19:36:50+00:00", "2022-03-17 19:36:51+00:00", "2022-03-17 19:36:53+00:00", "2022-03-17 19:36:54+00:00", "2022-03-17 19:36:56+00:00", "2022-03-17 19:36:57+00:00", "2022-03-17 19:36:58+00:00", "2022-03-17 19:37:00+00:00", "2022-03-17 19:37:01+00:00", "2022-03-17 19:37:03+00:00", "2022-03-17 19:37:04+00:00", "2022-03-17 19:37:05+00:00", "2022-03-17 19:37:07+00:00", "2022-03-17 19:37:08+00:00", "2022-03-17 19:37:10+00:00", "2022-03-17 19:37:11+00:00", "2022-03-17 19:37:12+00:00", "2022-03-17 19:37:14+00:00", "2022-03-17 19:37:15+00:00", "2022-03-17 19:37:17+00:00", "2022-03-17 19:37:18+00:00", "2022-03-17 19:37:19+00:00", "2022-03-17 19:37:21+00:00", "2022-03-17 19:37:22+00:00", "2022-03-17 19:37:24+00:00", "2022-03-17 19:37:25+00:00", "2022-03-17 19:37:26+00:00", "2022-03-17 19:37:28+00:00", "2022-03-17 19:37:29+00:00", "2022-03-17 19:37:31+00:00", "2022-03-17 19:37:32+00:00", "2022-03-17 19:37:34+00:00", "2022-03-17 19:37:36+00:00", "2022-03-17 19:37:37+00:00"]}}, {"type": "Feature", "id": "trace#106", "geometry": {"type": "LineString", "coordinates": [[-83.585925, 32.817847], [-83.586532, 32.818195], [-83.587138, 32.818543], [-83.587745, 32.818892], [-83.588353, 32.819238], [-83.58896, 32.819587], [-83.589567, 32.819933], [-83.590173, 32.820282], [-83.59078, 32.82063], [-83.591388, 32.82098], [-83.591997, 32.821328], [-83.592605, 32.821678], [-83.593213, 32.822027], [-83.593822, 32.822375], [-83.594428, 32.822722], [-83.595032, 32.823068], [-83.595635, 32.823415], [-83.59624, 32.823762], [-83.596845, 32.824108], [-83.597452, 32.824458], [-83.59806, 32.824807], [-83.59867, 32.825155], [-83.59928, 32.825503], [-83.599892, 32.825855], [-83.60049, 32.826213], [-83.601075, 32.826593], [-83.601638, 32.826993], [-83.602178, 32.827405], [-83.602697, 32.827832], [-83.603193, 32.828253], [-83.60368, 32.82866], [-83.60416, 32.829063], [-83.604635, 32.829467], [-83.60511, 32.829867], [-83.605587, 32.830265], [-83.606063, 32.830662], [-83.606542, 32.831058], [-83.607015, 32.831457], [-83.607488, 32.831853], [-83.607963, 32.832252], [-83.608438, 32.832647], [-83.608912, 32.833045], [-83.609385, 32.833442], [-83.609857, 32.83384], [-83.61033, 32.834237], [-83.610803, 32.834633], [-83.611265, 32.835022], [-83.611712, 32.835395], [-83.612142, 32.835755], [-83.61256, 32.836107], [-83.612975, 32.836452], [-83.6134, 32.836783], [-83.613842, 32.837097], [-83.614298, 32.837392], [-83.61477, 32.83767], [-83.615255, 32.837928], [-83.615757, 32.83817], [-83.616267, 32.838393], [-83.61678, 32.838612], [-83.61729, 32.83883], [-83.617793, 32.839052], [-83.618288, 32.839285], [-83.618773, 32.839532], [-83.619253, 32.83979], [-83.619723, 32.840062], [-83.620185, 32.840347], [-83.62064, 32.840647], [-83.621083, 32.840965], [-83.621515, 32.841287], [-83.621933, 32.841618], [-83.622337, 32.84196], [-83.622725, 32.842313], [-83.623102, 32.842678], [-83.623467, 32.84305], [-83.623815, 32.84343], [-83.624152, 32.84382], [-83.624473, 32.844215], [-83.624782, 32.844622], [-83.625072, 32.845037], [-83.625347, 32.845458], [-83.625613, 32.845882], [-83.62588, 32.846307], [-83.626147, 32.846735], [-83.626418, 32.84716], [-83.626715, 32.847573], [-83.627038, 32.847977], [-83.627392, 32.848362], [-83.627772, 32.848727], [-83.628157, 32.849085], [-83.628537, 32.84945], [-83.628913, 32.849812], [-83.629295, 32.850172], [-83.629677, 32.850532], [-83.630057, 32.850892], [-83.630438, 32.851252], [-83.630825, 32.851608], [-83.631218, 32.851958], [-83.631615, 32.852305], [-83.63201, 32.852653], [-83.632407, 32.853002], [-83.632803, 32.853348]]}, "properties": {"filename": "osm-traces-page-88.gpx", "track.number": 2, "track.link": "/user/Chris%20Lawrence/traces/4168204", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Hawkinsville-Eastman-McRae-Scotland-Vidalia-Claxton-Pembroke-Pooler-Savannah and back", "times": ["2022-03-08 03:09:46+00:00", "2022-03-08 03:09:48+00:00", "2022-03-08 03:09:50+00:00", "2022-03-08 03:09:52+00:00", "2022-03-08 03:09:54+00:00", "2022-03-08 03:09:56+00:00", "2022-03-08 03:09:58+00:00", "2022-03-08 03:10:00+00:00", "2022-03-08 03:10:02+00:00", "2022-03-08 03:10:04+00:00", "2022-03-08 03:10:06+00:00", "2022-03-08 03:10:08+00:00", "2022-03-08 03:10:10+00:00", "2022-03-08 03:10:12+00:00", "2022-03-08 03:10:14+00:00", "2022-03-08 03:10:16+00:00", "2022-03-08 03:10:18+00:00", "2022-03-08 03:10:20+00:00", "2022-03-08 03:10:22+00:00", "2022-03-08 03:10:24+00:00", "2022-03-08 03:10:26+00:00", "2022-03-08 03:10:28+00:00", "2022-03-08 03:10:30+00:00", "2022-03-08 03:10:32+00:00", "2022-03-08 03:10:34+00:00", "2022-03-08 03:10:36+00:00", "2022-03-08 03:10:38+00:00", "2022-03-08 03:10:40+00:00", "2022-03-08 03:10:42+00:00", "2022-03-08 03:10:44+00:00", "2022-03-08 03:10:46+00:00", "2022-03-08 03:10:48+00:00", "2022-03-08 03:10:50+00:00", "2022-03-08 03:10:52+00:00", "2022-03-08 03:10:54+00:00", "2022-03-08 03:10:56+00:00", "2022-03-08 03:10:58+00:00", "2022-03-08 03:11:00+00:00", "2022-03-08 03:11:02+00:00", "2022-03-08 03:11:04+00:00", "2022-03-08 03:11:06+00:00", "2022-03-08 03:11:08+00:00", "2022-03-08 03:11:10+00:00", "2022-03-08 03:11:12+00:00", "2022-03-08 03:11:14+00:00", "2022-03-08 03:11:16+00:00", "2022-03-08 03:11:18+00:00", "2022-03-08 03:11:20+00:00", "2022-03-08 03:11:22+00:00", "2022-03-08 03:11:24+00:00", "2022-03-08 03:11:26+00:00", "2022-03-08 03:11:28+00:00", "2022-03-08 03:11:30+00:00", "2022-03-08 03:11:32+00:00", "2022-03-08 03:11:34+00:00", "2022-03-08 03:11:36+00:00", "2022-03-08 03:11:38+00:00", "2022-03-08 03:11:40+00:00", "2022-03-08 03:11:42+00:00", "2022-03-08 03:11:44+00:00", "2022-03-08 03:11:46+00:00", "2022-03-08 03:11:48+00:00", "2022-03-08 03:11:50+00:00", "2022-03-08 03:11:52+00:00", "2022-03-08 03:11:54+00:00", "2022-03-08 03:11:56+00:00", "2022-03-08 03:11:58+00:00", "2022-03-08 03:12:00+00:00", "2022-03-08 03:12:02+00:00", "2022-03-08 03:12:04+00:00", "2022-03-08 03:12:06+00:00", "2022-03-08 03:12:08+00:00", "2022-03-08 03:12:10+00:00", "2022-03-08 03:12:12+00:00", "2022-03-08 03:12:14+00:00", "2022-03-08 03:12:16+00:00", "2022-03-08 03:12:18+00:00", "2022-03-08 03:12:20+00:00", "2022-03-08 03:12:22+00:00", "2022-03-08 03:12:24+00:00", "2022-03-08 03:12:26+00:00", "2022-03-08 03:12:28+00:00", "2022-03-08 03:12:30+00:00", "2022-03-08 03:12:32+00:00", "2022-03-08 03:12:34+00:00", "2022-03-08 03:12:36+00:00", "2022-03-08 03:12:38+00:00", "2022-03-08 03:12:40+00:00", "2022-03-08 03:12:42+00:00", "2022-03-08 03:12:44+00:00", "2022-03-08 03:12:46+00:00", "2022-03-08 03:12:48+00:00", "2022-03-08 03:12:50+00:00", "2022-03-08 03:12:52+00:00", "2022-03-08 03:12:54+00:00", "2022-03-08 03:12:56+00:00", "2022-03-08 03:12:58+00:00", "2022-03-08 03:13:00+00:00", "2022-03-08 03:13:02+00:00", "2022-03-08 03:13:04+00:00", "2022-03-08 03:13:06+00:00"]}}, {"type": "Feature", "id": "trace#107", "geometry": {"type": "LineString", "coordinates": [[-83.72231, 32.802467], [-83.722043, 32.801888], [-83.7218, 32.801303], [-83.721588, 32.800712], [-83.721402, 32.800112], [-83.721248, 32.799507], [-83.721123, 32.798895], [-83.721022, 32.798282], [-83.720948, 32.797665], [-83.720883, 32.797048], [-83.720817, 32.796428], [-83.720753, 32.795812], [-83.720688, 32.795195], [-83.720625, 32.79458], [-83.72056, 32.793965], [-83.720497, 32.793348], [-83.720433, 32.792732], [-83.720368, 32.792115], [-83.720305, 32.791497], [-83.72024, 32.790877], [-83.720168, 32.790258], [-83.720095, 32.789638], [-83.720017, 32.789018], [-83.719933, 32.7884], [-83.719827, 32.787785], [-83.719672, 32.78718], [-83.71946, 32.786588], [-83.719187, 32.786015], [-83.718865, 32.785458], [-83.718522, 32.784912], [-83.718177, 32.784365], [-83.717835, 32.783818], [-83.717492, 32.78327], [-83.717147, 32.782722], [-83.716802, 32.782172], [-83.716457, 32.781623], [-83.716108, 32.781077], [-83.715765, 32.780528], [-83.71542, 32.77998], [-83.715077, 32.779432], [-83.71474, 32.778882], [-83.714407, 32.778328], [-83.714077, 32.777775], [-83.713733, 32.777225], [-83.713387, 32.776678], [-83.713043, 32.77613], [-83.712698, 32.77558], [-83.712353, 32.775032], [-83.71201, 32.774483]]}, "properties": {"filename": "osm-traces-page-88.gpx", "track.number": 3, "track.link": "/user/Chris%20Lawrence/traces/4162824", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Trace from 2022-02-21", "times": ["2022-02-21 03:50:13+00:00", "2022-02-21 03:50:15+00:00", "2022-02-21 03:50:17+00:00", "2022-02-21 03:50:19+00:00", "2022-02-21 03:50:21+00:00", "2022-02-21 03:50:23+00:00", "2022-02-21 03:50:25+00:00", "2022-02-21 03:50:27+00:00", "2022-02-21 03:50:29+00:00", "2022-02-21 03:50:31+00:00", "2022-02-21 03:50:33+00:00", "2022-02-21 03:50:35+00:00", "2022-02-21 03:50:37+00:00", "2022-02-21 03:50:39+00:00", "2022-02-21 03:50:41+00:00", "2022-02-21 03:50:43+00:00", "2022-02-21 03:50:45+00:00", "2022-02-21 03:50:47+00:00", "2022-02-21 03:50:49+00:00", "2022-02-21 03:50:51+00:00", "2022-02-21 03:50:53+00:00", "2022-02-21 03:50:55+00:00", "2022-02-21 03:50:57+00:00", "2022-02-21 03:50:59+00:00", "2022-02-21 03:51:01+00:00", "2022-02-21 03:51:03+00:00", "2022-02-21 03:51:05+00:00", "2022-02-21 03:51:07+00:00", "2022-02-21 03:51:09+00:00", "2022-02-21 03:51:11+00:00", "2022-02-21 03:51:13+00:00", "2022-02-21 03:51:15+00:00", "2022-02-21 03:51:17+00:00", "2022-02-21 03:51:19+00:00", "2022-02-21 03:51:21+00:00", "2022-02-21 03:51:23+00:00", "2022-02-21 03:51:25+00:00", "2022-02-21 03:51:27+00:00", "2022-02-21 03:51:29+00:00", "2022-02-21 03:51:31+00:00", "2022-02-21 03:51:33+00:00", "2022-02-21 03:51:35+00:00", "2022-02-21 03:51:37+00:00", "2022-02-21 03:51:39+00:00", "2022-02-21 03:51:41+00:00", "2022-02-21 03:51:43+00:00", "2022-02-21 03:51:45+00:00", "2022-02-21 03:51:47+00:00", "2022-02-21 03:51:49+00:00"]}}, {"type": "Feature", "id": "trace#108", "geometry": {"type": "LineString", "coordinates": [[-83.627178, 32.851743], [-83.626722, 32.852065], [-83.626923, 32.852542], [-83.627293, 32.8529], [-83.627663, 32.853265], [-83.628013, 32.85361], [-83.628407, 32.85395], [-83.628808, 32.854388], [-83.629215, 32.854783], [-83.629623, 32.855203], [-83.630058, 32.85563], [-83.630487, 32.85606], [-83.63088, 32.856453], [-83.631267, 32.856788], [-83.63173, 32.857165], [-83.63216, 32.857505], [-83.632543, 32.857848], [-83.632595, 32.8584], [-83.632607, 32.858917], [-83.632627, 32.859498], [-83.63265, 32.86008], [-83.632655, 32.860658], [-83.632603, 32.861227], [-83.632527, 32.861798], [-83.632453, 32.86235], [-83.632407, 32.862903], [-83.6325, 32.863462], [-83.632672, 32.864015], [-83.632837, 32.864535], [-83.632918, 32.865038], [-83.632868, 32.865545], [-83.632618, 32.866087], [-83.632298, 32.866463], [-83.631875, 32.866783], [-83.631347, 32.867163], [-83.630987, 32.867503], [-83.63067, 32.867897], [-83.630392, 32.868302], [-83.63005, 32.8688], [-83.629727, 32.869297], [-83.62951, 32.869708], [-83.629338, 32.870153], [-83.629167, 32.870603], [-83.628992, 32.871045], [-83.628818, 32.871495], [-83.628612, 32.872052], [-83.628417, 32.872572], [-83.628235, 32.873087], [-83.628128, 32.873565], [-83.627957, 32.874027], [-83.628137, 32.87446], [-83.628303, 32.875003], [-83.628455, 32.875487], [-83.628628, 32.876033], [-83.628812, 32.876577], [-83.628952, 32.877095], [-83.629115, 32.87761], [-83.629277, 32.87815], [-83.629378, 32.878693], [-83.629417, 32.879272], [-83.629438, 32.879853], [-83.629477, 32.88043], [-83.629558, 32.880983], [-83.629705, 32.881547], [-83.630002, 32.882103], [-83.630458, 32.882605], [-83.630952, 32.8831], [-83.631365, 32.883643], [-83.631593, 32.884263], [-83.631555, 32.884905], [-83.631418, 32.885538], [-83.631288, 32.886178], [-83.631168, 32.88682], [-83.631135, 32.887458], [-83.631267, 32.888052], [-83.63156, 32.888592], [-83.632033, 32.889045], [-83.63264, 32.889352], [-83.633248, 32.889592], [-83.633742, 32.889942], [-83.634118, 32.890385], [-83.634457, 32.890823]]}, "properties": {"filename": "osm-traces-page-88.gpx", "track.number": 5, "track.link": "/user/Chris%20Lawrence/traces/4162818", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "WR-Macon-Gray-Gordon-Dublin-Eastman-Hawkinsville-Kathleen-WR", "times": ["2022-03-05 18:40:26+00:00", "2022-03-05 18:40:32+00:00", "2022-03-05 18:40:44+00:00", "2022-03-05 18:40:48+00:00", "2022-03-05 18:40:52+00:00", "2022-03-05 18:40:56+00:00", "2022-03-05 18:41:01+00:00", "2022-03-05 18:41:06+00:00", "2022-03-05 18:41:10+00:00", "2022-03-05 18:41:14+00:00", "2022-03-05 18:41:18+00:00", "2022-03-05 18:41:22+00:00", "2022-03-05 18:41:26+00:00", "2022-03-05 18:41:30+00:00", "2022-03-05 18:41:35+00:00", "2022-03-05 18:41:40+00:00", "2022-03-05 18:41:51+00:00", "2022-03-05 18:41:57+00:00", "2022-03-05 18:42:01+00:00", "2022-03-05 18:42:05+00:00", "2022-03-05 18:42:09+00:00", "2022-03-05 18:42:13+00:00", "2022-03-05 18:42:17+00:00", "2022-03-05 18:42:21+00:00", "2022-03-05 18:42:25+00:00", "2022-03-05 18:42:29+00:00", "2022-03-05 18:42:33+00:00", "2022-03-05 18:42:37+00:00", "2022-03-05 18:42:41+00:00", "2022-03-05 18:42:45+00:00", "2022-03-05 18:42:49+00:00", "2022-03-05 18:42:53+00:00", "2022-03-05 18:42:56+00:00", "2022-03-05 18:42:59+00:00", "2022-03-05 18:43:03+00:00", "2022-03-05 18:43:06+00:00", "2022-03-05 18:43:09+00:00", "2022-03-05 18:43:12+00:00", "2022-03-05 18:43:16+00:00", "2022-03-05 18:43:20+00:00", "2022-03-05 18:43:23+00:00", "2022-03-05 18:43:26+00:00", "2022-03-05 18:43:29+00:00", "2022-03-05 18:43:32+00:00", "2022-03-05 18:43:35+00:00", "2022-03-05 18:43:39+00:00", "2022-03-05 18:43:43+00:00", "2022-03-05 18:43:47+00:00", "2022-03-05 18:43:51+00:00", "2022-03-05 18:44:05+00:00", "2022-03-05 18:44:10+00:00", "2022-03-05 18:44:14+00:00", "2022-03-05 18:44:17+00:00", "2022-03-05 18:44:20+00:00", "2022-03-05 18:44:23+00:00", "2022-03-05 18:44:26+00:00", "2022-03-05 18:44:29+00:00", "2022-03-05 18:44:32+00:00", "2022-03-05 18:44:35+00:00", "2022-03-05 18:44:38+00:00", "2022-03-05 18:44:41+00:00", "2022-03-05 18:44:44+00:00", "2022-03-05 18:44:47+00:00", "2022-03-05 18:44:50+00:00", "2022-03-05 18:44:53+00:00", "2022-03-05 18:44:56+00:00", "2022-03-05 18:44:59+00:00", "2022-03-05 18:45:02+00:00", "2022-03-05 18:45:05+00:00", "2022-03-05 18:45:08+00:00", "2022-03-05 18:45:11+00:00", "2022-03-05 18:45:14+00:00", "2022-03-05 18:45:17+00:00", "2022-03-05 18:45:20+00:00", "2022-03-05 18:45:23+00:00", "2022-03-05 18:45:26+00:00", "2022-03-05 18:45:29+00:00", "2022-03-05 18:45:32+00:00", "2022-03-05 18:45:35+00:00", "2022-03-05 18:45:38+00:00", "2022-03-05 18:45:41+00:00", "2022-03-05 18:45:44+00:00"]}}, {"type": "Feature", "id": "trace#109", "geometry": {"type": "LineString", "coordinates": [[-83.628743, 32.831357], [-83.628413, 32.83175], [-83.628093, 32.832122], [-83.627718, 32.83257], [-83.627392, 32.832962], [-83.627068, 32.83334], [-83.626745, 32.833723], [-83.626343, 32.834225], [-83.626017, 32.83463], [-83.625588, 32.83496], [-83.625017, 32.835158], [-83.6244, 32.835268], [-83.623857, 32.835432], [-83.624218, 32.83584], [-83.624668, 32.836108], [-83.62519, 32.836393], [-83.624842, 32.83602], [-83.624353, 32.835803], [-83.624623, 32.835367], [-83.625232, 32.835265], [-83.625605, 32.835605], [-83.625388, 32.836073], [-83.624848, 32.836003], [-83.624323, 32.835818], [-83.623858, 32.835497], [-83.62325, 32.835523], [-83.622757, 32.83585], [-83.622392, 32.836268], [-83.622027, 32.836685], [-83.621662, 32.837088], [-83.62133, 32.837477], [-83.621077, 32.837925], [-83.62077, 32.838393], [-83.620462, 32.838805], [-83.62017, 32.839197], [-83.619757, 32.839612], [-83.619377, 32.839997], [-83.619558, 32.840422], [-83.620142, 32.840688], [-83.620667, 32.840943], [-83.621215, 32.841252], [-83.621803, 32.841623], [-83.622207, 32.841928], [-83.622608, 32.842277], [-83.62301, 32.842653], [-83.623415, 32.84304], [-83.623807, 32.843445], [-83.624172, 32.843867], [-83.624513, 32.844298], [-83.62484, 32.844732], [-83.625143, 32.845168], [-83.625427, 32.845608], [-83.625697, 32.846045], [-83.625965, 32.846473], [-83.62623, 32.846898], [-83.626502, 32.847313], [-83.626803, 32.847718], [-83.627135, 32.848113], [-83.6275, 32.848495], [-83.627877, 32.848848], [-83.628407, 32.84935], [-83.62877, 32.8497], [-83.62915, 32.85006], [-83.629538, 32.850427], [-83.629933, 32.8508], [-83.63033, 32.851177], [-83.630735, 32.85155], [-83.63115, 32.851923], [-83.631575, 32.852298], [-83.632003, 32.852673], [-83.632432, 32.85305], [-83.632863, 32.853427], [-83.633307, 32.853793], [-83.633775, 32.854138], [-83.634263, 32.854468], [-83.63476, 32.854798], [-83.635262, 32.855132], [-83.635755, 32.85547], [-83.636228, 32.855803], [-83.636697, 32.856108], [-83.637165, 32.8564], [-83.637635, 32.856692], [-83.638112, 32.856992], [-83.638595, 32.857295], [-83.63908, 32.857598], [-83.639562, 32.857902], [-83.64004, 32.858198], [-83.640503, 32.858497], [-83.640948, 32.858813], [-83.641388, 32.85913], [-83.641832, 32.859445], [-83.642293, 32.859728], [-83.642787, 32.859967], [-83.6433, 32.860172], [-83.64382, 32.860368], [-83.64434, 32.860568], [-83.644853, 32.86077], [-83.645343, 32.860967], [-83.64583, 32.861168], [-83.646547, 32.861465], [-83.647268, 32.861765]]}, "properties": {"filename": "osm-traces-page-89.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3608650", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Macon and Atlanta traces (NEO-M8U)", "times": ["2021-03-20 23:50:05+00:00", "2021-03-20 23:50:09+00:00", "2021-03-20 23:50:13+00:00", "2021-03-20 23:50:18+00:00", "2021-03-20 23:50:22+00:00", "2021-03-20 23:50:26+00:00", "2021-03-20 23:50:31+00:00", "2021-03-20 23:50:37+00:00", "2021-03-20 23:50:41+00:00", "2021-03-20 23:50:45+00:00", "2021-03-20 23:50:49+00:00", "2021-03-20 23:50:53+00:00", "2021-03-20 23:51:01+00:00", "2021-03-20 23:51:08+00:00", "2021-03-20 23:51:15+00:00", "2021-03-20 23:51:25+00:00", "2021-03-20 23:51:49+00:00", "2021-03-20 23:51:54+00:00", "2021-03-20 23:52:12+00:00", "2021-03-20 23:52:17+00:00", "2021-03-20 23:52:32+00:00", "2021-03-20 23:54:01+00:00", "2021-03-20 23:54:17+00:00", "2021-03-20 23:54:22+00:00", "2021-03-20 23:54:28+00:00", "2021-03-20 23:54:35+00:00", "2021-03-20 23:54:40+00:00", "2021-03-20 23:54:46+00:00", "2021-03-20 23:54:52+00:00", "2021-03-20 23:54:57+00:00", "2021-03-20 23:55:04+00:00", "2021-03-20 23:55:10+00:00", "2021-03-20 23:55:16+00:00", "2021-03-20 23:55:21+00:00", "2021-03-20 23:55:33+00:00", "2021-03-20 23:55:40+00:00", "2021-03-20 23:55:45+00:00", "2021-03-20 23:56:04+00:00", "2021-03-20 23:56:08+00:00", "2021-03-20 23:56:11+00:00", "2021-03-20 23:56:14+00:00", "2021-03-20 23:56:17+00:00", "2021-03-20 23:56:19+00:00", "2021-03-20 23:56:21+00:00", "2021-03-20 23:56:23+00:00", "2021-03-20 23:56:25+00:00", "2021-03-20 23:56:27+00:00", "2021-03-20 23:56:29+00:00", "2021-03-20 23:56:31+00:00", "2021-03-20 23:56:33+00:00", "2021-03-20 23:56:35+00:00", "2021-03-20 23:56:37+00:00", "2021-03-20 23:56:39+00:00", "2021-03-20 23:56:41+00:00", "2021-03-20 23:56:43+00:00", "2021-03-20 23:56:45+00:00", "2021-03-20 23:56:47+00:00", "2021-03-20 23:56:49+00:00", "2021-03-20 23:56:51+00:00", "2021-03-20 23:56:53+00:00", "2021-03-20 23:56:56+00:00", "2021-03-20 23:56:58+00:00", "2021-03-20 23:57:00+00:00", "2021-03-20 23:57:02+00:00", "2021-03-20 23:57:04+00:00", "2021-03-20 23:57:06+00:00", "2021-03-20 23:57:08+00:00", "2021-03-20 23:57:10+00:00", "2021-03-20 23:57:12+00:00", "2021-03-20 23:57:14+00:00", "2021-03-20 23:57:16+00:00", "2021-03-20 23:57:18+00:00", "2021-03-20 23:57:20+00:00", "2021-03-20 23:57:22+00:00", "2021-03-20 23:57:24+00:00", "2021-03-20 23:57:26+00:00", "2021-03-20 23:57:28+00:00", "2021-03-20 23:57:30+00:00", "2021-03-20 23:57:32+00:00", "2021-03-20 23:57:34+00:00", "2021-03-20 23:57:36+00:00", "2021-03-20 23:57:38+00:00", "2021-03-20 23:57:40+00:00", "2021-03-20 23:57:42+00:00", "2021-03-20 23:57:44+00:00", "2021-03-20 23:57:46+00:00", "2021-03-20 23:57:48+00:00", "2021-03-20 23:57:50+00:00", "2021-03-20 23:57:52+00:00", "2021-03-20 23:57:54+00:00", "2021-03-20 23:57:56+00:00", "2021-03-20 23:57:58+00:00", "2021-03-20 23:58:00+00:00", "2021-03-20 23:58:02+00:00", "2021-03-20 23:58:04+00:00", "2021-03-20 23:58:06+00:00", "2021-03-20 23:58:08+00:00", "2021-03-20 23:58:10+00:00", "2021-03-20 23:58:12+00:00", "2021-03-20 23:58:15+00:00", "2021-03-20 23:58:18+00:00"]}}, {"type": "Feature", "id": "trace#110", "geometry": {"type": "LineString", "coordinates": [[-83.64776, 32.861967], [-83.648257, 32.862167], [-83.648755, 32.862368], [-83.649247, 32.862565], [-83.649732, 32.862758], [-83.650452, 32.863052], [-83.650927, 32.863268], [-83.651385, 32.863527], [-83.651817, 32.86382], [-83.65222, 32.864152], [-83.652613, 32.864507], [-83.653003, 32.864865], [-83.653388, 32.86522], [-83.65377, 32.865572], [-83.654147, 32.865917], [-83.654518, 32.866257], [-83.65489, 32.866602], [-83.655272, 32.866953], [-83.65566, 32.867308], [-83.656053, 32.86767], [-83.656447, 32.868032], [-83.656842, 32.868397], [-83.657237, 32.86876], [-83.657637, 32.869127], [-83.65804, 32.869495], [-83.658447, 32.869865], [-83.658845, 32.870247], [-83.65922, 32.870647], [-83.659583, 32.871042], [-83.65994, 32.871433], [-83.660283, 32.87183], [-83.660625, 32.87223], [-83.66096, 32.87263], [-83.661283, 32.873032], [-83.66159, 32.873435], [-83.662008, 32.873995], [-83.662397, 32.874515], [-83.662725, 32.874947], [-83.662968, 32.875397], [-83.662668, 32.875843], [-83.662105, 32.875702], [-83.662013, 32.875235], [-83.662093, 32.874673], [-83.662302, 32.874147], [-83.662583, 32.873722], [-83.663073, 32.873983], [-83.663463, 32.874372], [-83.66383, 32.874777], [-83.664367, 32.874695], [-83.664275, 32.874198], [-83.663877, 32.873892], [-83.664253, 32.874217], [-83.664472, 32.87466], [-83.66508, 32.874735], [-83.665707, 32.874777], [-83.666345, 32.874825], [-83.666938, 32.87475], [-83.667388, 32.874463], [-83.667767, 32.87486], [-83.668147, 32.875302], [-83.668562, 32.875798], [-83.668855, 32.876197], [-83.66835, 32.87651], [-83.667818, 32.876748], [-83.667293, 32.876977], [-83.666812, 32.877213], [-83.666362, 32.877498], [-83.665782, 32.877152], [-83.665385, 32.876815], [-83.664843, 32.876587], [-83.664422, 32.876083], [-83.66403, 32.875617], [-83.66359, 32.875105], [-83.66312, 32.87457], [-83.662632, 32.874033], [-83.662302, 32.87366], [-83.661963, 32.873272], [-83.661618, 32.872875], [-83.661272, 32.872478], [-83.660928, 32.872082], [-83.660588, 32.871695], [-83.660235, 32.871308], [-83.659862, 32.870915], [-83.659473, 32.870517], [-83.659078, 32.870128], [-83.658673, 32.869755], [-83.658267, 32.86938], [-83.657883, 32.86903], [-83.657347, 32.868535], [-83.656808, 32.86804], [-83.656437, 32.8677], [-83.65607, 32.867362], [-83.655702, 32.867022], [-83.65534, 32.86669], [-83.654807, 32.866202], [-83.65444, 32.86587], [-83.654043, 32.865532], [-83.653637, 32.865172], [-83.653235, 32.864803], [-83.652838, 32.86444], [-83.652455, 32.86409]]}, "properties": {"filename": "osm-traces-page-89.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3608650", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Macon and Atlanta traces (NEO-M8U)", "times": ["2021-03-20 23:58:20+00:00", "2021-03-20 23:58:22+00:00", "2021-03-20 23:58:24+00:00", "2021-03-20 23:58:26+00:00", "2021-03-20 23:58:28+00:00", "2021-03-20 23:58:31+00:00", "2021-03-20 23:58:33+00:00", "2021-03-20 23:58:35+00:00", "2021-03-20 23:58:37+00:00", "2021-03-20 23:58:39+00:00", "2021-03-20 23:58:41+00:00", "2021-03-20 23:58:43+00:00", "2021-03-20 23:58:45+00:00", "2021-03-20 23:58:47+00:00", "2021-03-20 23:58:49+00:00", "2021-03-20 23:58:51+00:00", "2021-03-20 23:58:53+00:00", "2021-03-20 23:58:55+00:00", "2021-03-20 23:58:57+00:00", "2021-03-20 23:58:59+00:00", "2021-03-20 23:59:01+00:00", "2021-03-20 23:59:03+00:00", "2021-03-20 23:59:05+00:00", "2021-03-20 23:59:07+00:00", "2021-03-20 23:59:09+00:00", "2021-03-20 23:59:11+00:00", "2021-03-20 23:59:13+00:00", "2021-03-20 23:59:15+00:00", "2021-03-20 23:59:17+00:00", "2021-03-20 23:59:19+00:00", "2021-03-20 23:59:21+00:00", "2021-03-20 23:59:23+00:00", "2021-03-20 23:59:25+00:00", "2021-03-20 23:59:27+00:00", "2021-03-20 23:59:29+00:00", "2021-03-20 23:59:32+00:00", "2021-03-20 23:59:35+00:00", "2021-03-20 23:59:38+00:00", "2021-03-20 23:59:42+00:00", "2021-03-20 23:59:47+00:00", "2021-03-20 23:59:52+00:00", "2021-03-20 23:59:56+00:00", "2021-03-21 00:00:00+00:00", "2021-03-21 00:00:04+00:00", "2021-03-21 00:00:10+00:00", "2021-03-21 00:00:21+00:00", "2021-03-21 00:00:25+00:00", "2021-03-21 00:00:30+00:00", "2021-03-21 00:00:37+00:00", "2021-03-21 00:00:48+00:00", "2021-03-21 00:00:56+00:00", "2021-03-21 00:03:29+00:00", "2021-03-21 00:03:43+00:00", "2021-03-21 00:03:49+00:00", "2021-03-21 00:03:54+00:00", "2021-03-21 00:03:57+00:00", "2021-03-21 00:04:02+00:00", "2021-03-21 00:04:09+00:00", "2021-03-21 00:04:16+00:00", "2021-03-21 00:04:21+00:00", "2021-03-21 00:04:28+00:00", "2021-03-21 00:04:38+00:00", "2021-03-21 00:04:45+00:00", "2021-03-21 00:04:49+00:00", "2021-03-21 00:04:54+00:00", "2021-03-21 00:04:58+00:00", "2021-03-21 00:05:03+00:00", "2021-03-21 00:05:42+00:00", "2021-03-21 00:07:09+00:00", "2021-03-21 00:07:16+00:00", "2021-03-21 00:07:20+00:00", "2021-03-21 00:07:23+00:00", "2021-03-21 00:07:26+00:00", "2021-03-21 00:07:29+00:00", "2021-03-21 00:07:32+00:00", "2021-03-21 00:07:34+00:00", "2021-03-21 00:07:36+00:00", "2021-03-21 00:07:38+00:00", "2021-03-21 00:07:40+00:00", "2021-03-21 00:07:42+00:00", "2021-03-21 00:07:44+00:00", "2021-03-21 00:07:46+00:00", "2021-03-21 00:07:48+00:00", "2021-03-21 00:07:50+00:00", "2021-03-21 00:07:52+00:00", "2021-03-21 00:07:54+00:00", "2021-03-21 00:07:56+00:00", "2021-03-21 00:07:58+00:00", "2021-03-21 00:08:01+00:00", "2021-03-21 00:08:04+00:00", "2021-03-21 00:08:06+00:00", "2021-03-21 00:08:08+00:00", "2021-03-21 00:08:10+00:00", "2021-03-21 00:08:12+00:00", "2021-03-21 00:08:15+00:00", "2021-03-21 00:08:17+00:00", "2021-03-21 00:08:19+00:00", "2021-03-21 00:08:21+00:00", "2021-03-21 00:08:23+00:00", "2021-03-21 00:08:25+00:00", "2021-03-21 00:08:27+00:00"]}}, {"type": "Feature", "id": "trace#111", "geometry": {"type": "LineString", "coordinates": [[-83.660127, 32.84628], [-83.66067, 32.84625], [-83.66137, 32.846207], [-83.66201, 32.846167], [-83.662412, 32.846577], [-83.662423, 32.847138], [-83.662442, 32.8476], [-83.66244, 32.848072], [-83.662438, 32.848557], [-83.662437, 32.849043], [-83.66242, 32.849532], [-83.66241, 32.850045], [-83.662412, 32.850563], [-83.662417, 32.85108], [-83.662417, 32.851577], [-83.662415, 32.852053], [-83.662417, 32.85263], [-83.662415, 32.853135], [-83.6624, 32.853608], [-83.6624, 32.854153], [-83.662427, 32.854627], [-83.662437, 32.855165], [-83.66244, 32.85574], [-83.662445, 32.856322], [-83.662448, 32.856915], [-83.662448, 32.857503], [-83.662417, 32.858073], [-83.662352, 32.85867], [-83.662282, 32.859283], [-83.66221, 32.85991], [-83.662135, 32.860525], [-83.662037, 32.861097], [-83.661808, 32.861633], [-83.66155, 32.862143], [-83.661412, 32.862662], [-83.661383, 32.863198], [-83.661363, 32.86376], [-83.66137, 32.86431], [-83.66148, 32.864833], [-83.661718, 32.865348], [-83.66195, 32.865833], [-83.662122, 32.866325], [-83.662202, 32.866843], [-83.662213, 32.86736], [-83.662237, 32.86788], [-83.66228, 32.868413], [-83.662325, 32.868968], [-83.662347, 32.869538], [-83.662365, 32.870103], [-83.66239, 32.87065], [-83.662417, 32.87116], [-83.662443, 32.871738], [-83.662465, 32.87222], [-83.662488, 32.872675], [-83.662537, 32.873192], [-83.662808, 32.87362], [-83.663195, 32.874125], [-83.663512, 32.874525], [-83.66384, 32.874935], [-83.664167, 32.875355], [-83.664483, 32.87576], [-83.664772, 32.87616], [-83.665095, 32.876553], [-83.664592, 32.87629], [-83.664198, 32.87583], [-83.663742, 32.875297], [-83.663413, 32.874913], [-83.663068, 32.874518], [-83.662708, 32.874117], [-83.662345, 32.87371], [-83.661983, 32.873293], [-83.661613, 32.872867], [-83.661233, 32.872435], [-83.660852, 32.871998], [-83.66046, 32.871565], [-83.660062, 32.871132], [-83.659652, 32.870697], [-83.659227, 32.870263], [-83.65878, 32.869842], [-83.658328, 32.86943], [-83.65788, 32.869022], [-83.657432, 32.868613], [-83.656983, 32.868202], [-83.656533, 32.867787], [-83.656085, 32.867375], [-83.65564, 32.866965], [-83.655193, 32.866557], [-83.654747, 32.866143], [-83.654292, 32.865728], [-83.653835, 32.865305], [-83.653375, 32.864883], [-83.652918, 32.864463], [-83.652472, 32.864055], [-83.652017, 32.863678], [-83.651535, 32.863345], [-83.651022, 32.863063], [-83.650483, 32.862818], [-83.649922, 32.86259], [-83.649348, 32.862358], [-83.648773, 32.862128], [-83.648212, 32.861902]]}, "properties": {"filename": "osm-traces-page-89.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3608650", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 5, "track.description": "Macon and Atlanta traces (NEO-M8U)", "times": ["2021-03-21 00:25:41+00:00", "2021-03-21 00:25:44+00:00", "2021-03-21 00:25:48+00:00", "2021-03-21 00:25:52+00:00", "2021-03-21 00:26:01+00:00", "2021-03-21 00:26:05+00:00", "2021-03-21 00:26:08+00:00", "2021-03-21 00:26:11+00:00", "2021-03-21 00:26:14+00:00", "2021-03-21 00:26:17+00:00", "2021-03-21 00:26:20+00:00", "2021-03-21 00:26:23+00:00", "2021-03-21 00:26:26+00:00", "2021-03-21 00:26:29+00:00", "2021-03-21 00:26:32+00:00", "2021-03-21 00:26:35+00:00", "2021-03-21 00:26:39+00:00", "2021-03-21 00:26:43+00:00", "2021-03-21 00:26:47+00:00", "2021-03-21 00:26:51+00:00", "2021-03-21 00:26:54+00:00", "2021-03-21 00:26:57+00:00", "2021-03-21 00:27:00+00:00", "2021-03-21 00:27:03+00:00", "2021-03-21 00:27:06+00:00", "2021-03-21 00:27:09+00:00", "2021-03-21 00:27:12+00:00", "2021-03-21 00:27:15+00:00", "2021-03-21 00:27:18+00:00", "2021-03-21 00:27:21+00:00", "2021-03-21 00:27:24+00:00", "2021-03-21 00:27:27+00:00", "2021-03-21 00:27:30+00:00", "2021-03-21 00:27:33+00:00", "2021-03-21 00:27:36+00:00", "2021-03-21 00:27:39+00:00", "2021-03-21 00:27:42+00:00", "2021-03-21 00:27:45+00:00", "2021-03-21 00:27:48+00:00", "2021-03-21 00:27:51+00:00", "2021-03-21 00:27:54+00:00", "2021-03-21 00:27:57+00:00", "2021-03-21 00:28:00+00:00", "2021-03-21 00:28:03+00:00", "2021-03-21 00:28:06+00:00", "2021-03-21 00:28:09+00:00", "2021-03-21 00:28:12+00:00", "2021-03-21 00:28:15+00:00", "2021-03-21 00:28:18+00:00", "2021-03-21 00:28:21+00:00", "2021-03-21 00:28:24+00:00", "2021-03-21 00:28:28+00:00", "2021-03-21 00:28:32+00:00", "2021-03-21 00:28:37+00:00", "2021-03-21 00:29:52+00:00", "2021-03-21 00:29:56+00:00", "2021-03-21 00:30:00+00:00", "2021-03-21 00:30:03+00:00", "2021-03-21 00:30:06+00:00", "2021-03-21 00:30:09+00:00", "2021-03-21 00:30:12+00:00", "2021-03-21 00:30:15+00:00", "2021-03-21 00:30:19+00:00", "2021-03-21 00:30:33+00:00", "2021-03-21 00:30:36+00:00", "2021-03-21 00:30:39+00:00", "2021-03-21 00:30:41+00:00", "2021-03-21 00:30:43+00:00", "2021-03-21 00:30:45+00:00", "2021-03-21 00:30:47+00:00", "2021-03-21 00:30:49+00:00", "2021-03-21 00:30:51+00:00", "2021-03-21 00:30:53+00:00", "2021-03-21 00:30:55+00:00", "2021-03-21 00:30:57+00:00", "2021-03-21 00:30:59+00:00", "2021-03-21 00:31:01+00:00", "2021-03-21 00:31:03+00:00", "2021-03-21 00:31:05+00:00", "2021-03-21 00:31:07+00:00", "2021-03-21 00:31:09+00:00", "2021-03-21 00:31:11+00:00", "2021-03-21 00:31:13+00:00", "2021-03-21 00:31:15+00:00", "2021-03-21 00:31:17+00:00", "2021-03-21 00:31:19+00:00", "2021-03-21 00:31:21+00:00", "2021-03-21 00:31:23+00:00", "2021-03-21 00:31:25+00:00", "2021-03-21 00:31:27+00:00", "2021-03-21 00:31:29+00:00", "2021-03-21 00:31:31+00:00", "2021-03-21 00:31:33+00:00", "2021-03-21 00:31:35+00:00", "2021-03-21 00:31:37+00:00", "2021-03-21 00:31:39+00:00", "2021-03-21 00:31:41+00:00", "2021-03-21 00:31:43+00:00", "2021-03-21 00:31:45+00:00", "2021-03-21 00:31:47+00:00", "2021-03-21 00:31:49+00:00"]}}, {"type": "Feature", "id": "trace#112", "geometry": {"type": "LineString", "coordinates": [[-83.64766, 32.861682], [-83.647115, 32.861463], [-83.646572, 32.86124], [-83.646042, 32.860993], [-83.645527, 32.860747], [-83.645013, 32.860503], [-83.644508, 32.86026], [-83.644015, 32.860002], [-83.643547, 32.859708], [-83.643125, 32.859387], [-83.642752, 32.859045], [-83.642418, 32.858688], [-83.641997, 32.858118], [-83.641655, 32.857507], [-83.641477, 32.857082], [-83.641293, 32.85643], [-83.641188, 32.855782], [-83.641163, 32.855137], [-83.64127, 32.854513], [-83.64149, 32.853922], [-83.641743, 32.853312], [-83.641947, 32.852667], [-83.642055, 32.852222], [-83.642167, 32.851777], [-83.642282, 32.851337], [-83.642442, 32.850678], [-83.642512, 32.850232], [-83.642548, 32.849775], [-83.642568, 32.84931], [-83.642582, 32.848842], [-83.642598, 32.848383], [-83.64265, 32.847722], [-83.642728, 32.847093], [-83.642845, 32.84649], [-83.64301, 32.845888], [-83.643237, 32.845292], [-83.64351, 32.844735], [-83.64381, 32.844235], [-83.644193, 32.84376], [-83.64463, 32.84329], [-83.645073, 32.842815], [-83.645497, 32.842365], [-83.645872, 32.841972], [-83.646265, 32.84156], [-83.646585, 32.841152], [-83.646912, 32.840758], [-83.647202, 32.840355], [-83.646977, 32.839895], [-83.646452, 32.839723], [-83.6461, 32.840123], [-83.645773, 32.84052], [-83.645403, 32.840965], [-83.64503, 32.841402], [-83.644707, 32.841798], [-83.644358, 32.842232], [-83.643985, 32.8427], [-83.643592, 32.843197], [-83.64319, 32.843695], [-83.642787, 32.844247], [-83.642552, 32.844657], [-83.642357, 32.845092], [-83.642212, 32.845545], [-83.642122, 32.846003], [-83.642075, 32.846463], [-83.642053, 32.846928], [-83.642032, 32.847405], [-83.64201, 32.84789], [-83.641988, 32.84838], [-83.641968, 32.848868], [-83.641945, 32.849367], [-83.641892, 32.849867], [-83.641802, 32.850365], [-83.641672, 32.850848], [-83.641505, 32.851322], [-83.641325, 32.851785], [-83.641143, 32.85223], [-83.640817, 32.852842], [-83.640523, 32.85322], [-83.640168, 32.853558], [-83.639552, 32.853975], [-83.63888, 32.854273], [-83.638172, 32.854432], [-83.637428, 32.85448], [-83.63667, 32.854415], [-83.635907, 32.854232], [-83.635405, 32.854038], [-83.634903, 32.853827], [-83.634403, 32.853617], [-83.633922, 32.853398], [-83.633462, 32.853155], [-83.633025, 32.852885], [-83.632608, 32.852592], [-83.632205, 32.852278], [-83.631807, 32.851952], [-83.631403, 32.851617], [-83.631, 32.851277], [-83.630592, 32.850935], [-83.630183, 32.850598], [-83.629785, 32.850265], [-83.629403, 32.849945], [-83.628893, 32.849482]]}, "properties": {"filename": "osm-traces-page-89.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3608650", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 6, "track.description": "Macon and Atlanta traces (NEO-M8U)", "times": ["2021-03-21 00:31:51+00:00", "2021-03-21 00:31:53+00:00", "2021-03-21 00:31:55+00:00", "2021-03-21 00:31:57+00:00", "2021-03-21 00:31:59+00:00", "2021-03-21 00:32:01+00:00", "2021-03-21 00:32:03+00:00", "2021-03-21 00:32:05+00:00", "2021-03-21 00:32:07+00:00", "2021-03-21 00:32:09+00:00", "2021-03-21 00:32:11+00:00", "2021-03-21 00:32:13+00:00", "2021-03-21 00:32:16+00:00", "2021-03-21 00:32:19+00:00", "2021-03-21 00:32:21+00:00", "2021-03-21 00:32:24+00:00", "2021-03-21 00:32:27+00:00", "2021-03-21 00:32:30+00:00", "2021-03-21 00:32:33+00:00", "2021-03-21 00:32:36+00:00", "2021-03-21 00:32:39+00:00", "2021-03-21 00:32:42+00:00", "2021-03-21 00:32:44+00:00", "2021-03-21 00:32:46+00:00", "2021-03-21 00:32:48+00:00", "2021-03-21 00:32:51+00:00", "2021-03-21 00:32:53+00:00", "2021-03-21 00:32:55+00:00", "2021-03-21 00:32:57+00:00", "2021-03-21 00:32:59+00:00", "2021-03-21 00:33:01+00:00", "2021-03-21 00:33:04+00:00", "2021-03-21 00:33:07+00:00", "2021-03-21 00:33:10+00:00", "2021-03-21 00:33:13+00:00", "2021-03-21 00:33:16+00:00", "2021-03-21 00:33:19+00:00", "2021-03-21 00:33:22+00:00", "2021-03-21 00:33:25+00:00", "2021-03-21 00:33:28+00:00", "2021-03-21 00:33:31+00:00", "2021-03-21 00:33:34+00:00", "2021-03-21 00:33:37+00:00", "2021-03-21 00:33:41+00:00", "2021-03-21 00:34:04+00:00", "2021-03-21 00:34:10+00:00", "2021-03-21 00:34:16+00:00", "2021-03-21 00:34:59+00:00", "2021-03-21 00:35:07+00:00", "2021-03-21 00:35:12+00:00", "2021-03-21 00:35:18+00:00", "2021-03-21 00:35:35+00:00", "2021-03-21 00:35:39+00:00", "2021-03-21 00:35:42+00:00", "2021-03-21 00:35:45+00:00", "2021-03-21 00:35:48+00:00", "2021-03-21 00:35:51+00:00", "2021-03-21 00:35:54+00:00", "2021-03-21 00:35:57+00:00", "2021-03-21 00:35:59+00:00", "2021-03-21 00:36:01+00:00", "2021-03-21 00:36:03+00:00", "2021-03-21 00:36:05+00:00", "2021-03-21 00:36:07+00:00", "2021-03-21 00:36:09+00:00", "2021-03-21 00:36:11+00:00", "2021-03-21 00:36:13+00:00", "2021-03-21 00:36:15+00:00", "2021-03-21 00:36:17+00:00", "2021-03-21 00:36:19+00:00", "2021-03-21 00:36:21+00:00", "2021-03-21 00:36:23+00:00", "2021-03-21 00:36:25+00:00", "2021-03-21 00:36:27+00:00", "2021-03-21 00:36:29+00:00", "2021-03-21 00:36:31+00:00", "2021-03-21 00:36:34+00:00", "2021-03-21 00:36:36+00:00", "2021-03-21 00:36:38+00:00", "2021-03-21 00:36:41+00:00", "2021-03-21 00:36:44+00:00", "2021-03-21 00:36:47+00:00", "2021-03-21 00:36:50+00:00", "2021-03-21 00:36:53+00:00", "2021-03-21 00:36:56+00:00", "2021-03-21 00:36:58+00:00", "2021-03-21 00:37:00+00:00", "2021-03-21 00:37:02+00:00", "2021-03-21 00:37:04+00:00", "2021-03-21 00:37:06+00:00", "2021-03-21 00:37:08+00:00", "2021-03-21 00:37:10+00:00", "2021-03-21 00:37:12+00:00", "2021-03-21 00:37:14+00:00", "2021-03-21 00:37:16+00:00", "2021-03-21 00:37:18+00:00", "2021-03-21 00:37:20+00:00", "2021-03-21 00:37:22+00:00", "2021-03-21 00:37:24+00:00", "2021-03-21 00:37:26+00:00", "2021-03-21 00:37:29+00:00"]}}, {"type": "Feature", "id": "trace#113", "geometry": {"type": "LineString", "coordinates": [[-83.656896, 32.827027], [-83.657041, 32.826572], [-83.657147, 32.826119], [-83.657216, 32.825661], [-83.657245, 32.825201], [-83.657232, 32.824729], [-83.657176, 32.824251], [-83.657079, 32.82378], [-83.656953, 32.823342], [-83.656798, 32.822885], [-83.656641, 32.822443], [-83.656477, 32.821979], [-83.656328, 32.821543], [-83.656192, 32.821084], [-83.656088, 32.820624], [-83.656018, 32.820168], [-83.65598, 32.819714], [-83.65597, 32.81925], [-83.655972, 32.818797], [-83.655976, 32.818341], [-83.655982, 32.81787], [-83.655987, 32.817419], [-83.655995, 32.816943], [-83.656001, 32.816488], [-83.656008, 32.816023], [-83.656015, 32.815565], [-83.656021, 32.815094], [-83.656027, 32.814636], [-83.656035, 32.81418], [-83.656045, 32.813694], [-83.656053, 32.813239], [-83.656064, 32.812777], [-83.656091, 32.812308], [-83.656134, 32.811836], [-83.656191, 32.811372], [-83.656265, 32.810923], [-83.656355, 32.810463], [-83.656463, 32.81], [-83.656587, 32.80954], [-83.65672, 32.809104], [-83.656864, 32.808671], [-83.657018, 32.808239], [-83.657181, 32.807781], [-83.657337, 32.807345], [-83.657494, 32.8069], [-83.657656, 32.806443], [-83.657813, 32.806003], [-83.657976, 32.805548], [-83.65814, 32.805091], [-83.658303, 32.804636], [-83.658458, 32.804203], [-83.658613, 32.803769], [-83.65877, 32.803333], [-83.658942, 32.802855], [-83.659104, 32.8024], [-83.659266, 32.801949], [-83.659432, 32.801495], [-83.659606, 32.801061], [-83.659802, 32.800638], [-83.660024, 32.800211], [-83.660269, 32.799793], [-83.660541, 32.799377], [-83.660833, 32.798971], [-83.661146, 32.798576], [-83.66148, 32.798198], [-83.661822, 32.797843], [-83.662193, 32.797492], [-83.662572, 32.797166], [-83.662971, 32.79684], [-83.663365, 32.796523], [-83.663749, 32.796203], [-83.664136, 32.795853], [-83.664482, 32.795503], [-83.664816, 32.795121], [-83.66511, 32.794744], [-83.665381, 32.794354], [-83.665635, 32.793933], [-83.665849, 32.79352], [-83.666038, 32.793099], [-83.666221, 32.792675], [-83.66641, 32.792236], [-83.666598, 32.791797], [-83.666781, 32.791371], [-83.666966, 32.790938], [-83.667154, 32.790502], [-83.667354, 32.790067], [-83.667569, 32.789641], [-83.667809, 32.789229], [-83.668074, 32.788835], [-83.668367, 32.788455], [-83.668687, 32.788089], [-83.669032, 32.787741], [-83.669403, 32.787413], [-83.66981, 32.787103], [-83.670237, 32.786814], [-83.67068, 32.786525], [-83.67112, 32.78624], [-83.671561, 32.785954], [-83.672003, 32.785667], [-83.672447, 32.785379], [-83.672895, 32.785091]]}, "properties": {"filename": "osm-traces-page-9.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7585099", "track.name": "2023_05_18T00_29_42.062450Z.gpx", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Routes from sunnypilot 2022.11.13 (RAM 1500 5TH GEN).", "times": ["2023-05-18 00:35:33+00:00", "2023-05-18 00:35:35+00:00", "2023-05-18 00:35:37+00:00", "2023-05-18 00:35:38+00:00", "2023-05-18 00:35:40+00:00", "2023-05-18 00:35:42+00:00", "2023-05-18 00:35:44+00:00", "2023-05-18 00:35:46+00:00", "2023-05-18 00:35:47+00:00", "2023-05-18 00:35:49+00:00", "2023-05-18 00:35:51+00:00", "2023-05-18 00:35:53+00:00", "2023-05-18 00:35:54+00:00", "2023-05-18 00:35:56+00:00", "2023-05-18 00:35:58+00:00", "2023-05-18 00:36:00+00:00", "2023-05-18 00:36:02+00:00", "2023-05-18 00:36:04+00:00", "2023-05-18 00:36:06+00:00", "2023-05-18 00:36:07+00:00", "2023-05-18 00:36:09+00:00", "2023-05-18 00:36:11+00:00", "2023-05-18 00:36:13+00:00", "2023-05-18 00:36:15+00:00", "2023-05-18 00:36:16+00:00", "2023-05-18 00:36:18+00:00", "2023-05-18 00:36:20+00:00", "2023-05-18 00:36:22+00:00", "2023-05-18 00:36:24+00:00", "2023-05-18 00:36:25+00:00", "2023-05-18 00:36:27+00:00", "2023-05-18 00:36:29+00:00", "2023-05-18 00:36:31+00:00", "2023-05-18 00:36:33+00:00", "2023-05-18 00:36:34+00:00", "2023-05-18 00:36:36+00:00", "2023-05-18 00:36:38+00:00", "2023-05-18 00:36:40+00:00", "2023-05-18 00:36:41+00:00", "2023-05-18 00:36:43+00:00", "2023-05-18 00:36:45+00:00", "2023-05-18 00:36:47+00:00", "2023-05-18 00:36:48+00:00", "2023-05-18 00:36:50+00:00", "2023-05-18 00:36:52+00:00", "2023-05-18 00:36:54+00:00", "2023-05-18 00:36:55+00:00", "2023-05-18 00:36:57+00:00", "2023-05-18 00:36:59+00:00", "2023-05-18 00:37:01+00:00", "2023-05-18 00:37:02+00:00", "2023-05-18 00:37:04+00:00", "2023-05-18 00:37:06+00:00", "2023-05-18 00:37:08+00:00", "2023-05-18 00:37:09+00:00", "2023-05-18 00:37:11+00:00", "2023-05-18 00:37:13+00:00", "2023-05-18 00:37:15+00:00", "2023-05-18 00:37:16+00:00", "2023-05-18 00:37:18+00:00", "2023-05-18 00:37:20+00:00", "2023-05-18 00:37:22+00:00", "2023-05-18 00:37:23+00:00", "2023-05-18 00:37:25+00:00", "2023-05-18 00:37:27+00:00", "2023-05-18 00:37:29+00:00", "2023-05-18 00:37:31+00:00", "2023-05-18 00:37:32+00:00", "2023-05-18 00:37:34+00:00", "2023-05-18 00:37:36+00:00", "2023-05-18 00:37:38+00:00", "2023-05-18 00:37:39+00:00", "2023-05-18 00:37:41+00:00", "2023-05-18 00:37:43+00:00", "2023-05-18 00:37:45+00:00", "2023-05-18 00:37:46+00:00", "2023-05-18 00:37:48+00:00", "2023-05-18 00:37:50+00:00", "2023-05-18 00:37:52+00:00", "2023-05-18 00:37:53+00:00", "2023-05-18 00:37:55+00:00", "2023-05-18 00:37:57+00:00", "2023-05-18 00:37:58+00:00", "2023-05-18 00:38:00+00:00", "2023-05-18 00:38:02+00:00", "2023-05-18 00:38:04+00:00", "2023-05-18 00:38:05+00:00", "2023-05-18 00:38:07+00:00", "2023-05-18 00:38:09+00:00", "2023-05-18 00:38:10+00:00", "2023-05-18 00:38:12+00:00", "2023-05-18 00:38:14+00:00", "2023-05-18 00:38:15+00:00", "2023-05-18 00:38:17+00:00", "2023-05-18 00:38:19+00:00", "2023-05-18 00:38:21+00:00", "2023-05-18 00:38:23+00:00", "2023-05-18 00:38:24+00:00", "2023-05-18 00:38:26+00:00", "2023-05-18 00:38:28+00:00", "2023-05-18 00:38:30+00:00"]}}, {"type": "Feature", "id": "trace#114", "geometry": {"type": "LineString", "coordinates": [[-83.673365, 32.784788], [-83.673832, 32.784489], [-83.674286, 32.784196], [-83.674716, 32.783918], [-83.675156, 32.783634], [-83.675615, 32.783339], [-83.676049, 32.78306], [-83.676495, 32.782772], [-83.676944, 32.782482], [-83.677377, 32.782204], [-83.677809, 32.781926], [-83.678249, 32.781643], [-83.67872, 32.78134], [-83.679154, 32.781061], [-83.679591, 32.780779], [-83.680016, 32.780505], [-83.680446, 32.780228], [-83.680883, 32.779945], [-83.68132, 32.779665], [-83.681769, 32.779376], [-83.682214, 32.779089], [-83.682645, 32.778811], [-83.683074, 32.778534], [-83.683503, 32.778258], [-83.68393, 32.777983], [-83.684379, 32.777694], [-83.684805, 32.77742], [-83.685254, 32.777131], [-83.685715, 32.776834], [-83.686176, 32.776538], [-83.686624, 32.77625], [-83.687057, 32.77597], [-83.687507, 32.77568], [-83.687943, 32.775399], [-83.688388, 32.775112], [-83.688825, 32.774831], [-83.689257, 32.774552], [-83.689689, 32.774273]]}, "properties": {"filename": "osm-traces-page-9.gpx", "track.number": 0, "track.link": "/user/sunnypilot/traces/7585099", "track.name": "2023_05_18T00_29_42.062450Z.gpx", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Routes from sunnypilot 2022.11.13 (RAM 1500 5TH GEN).", "times": ["2023-05-18 00:38:32+00:00", "2023-05-18 00:38:34+00:00", "2023-05-18 00:38:35+00:00", "2023-05-18 00:38:37+00:00", "2023-05-18 00:38:39+00:00", "2023-05-18 00:38:41+00:00", "2023-05-18 00:38:43+00:00", "2023-05-18 00:38:44+00:00", "2023-05-18 00:38:46+00:00", "2023-05-18 00:38:48+00:00", "2023-05-18 00:38:50+00:00", "2023-05-18 00:38:51+00:00", "2023-05-18 00:38:53+00:00", "2023-05-18 00:38:55+00:00", "2023-05-18 00:38:57+00:00", "2023-05-18 00:38:59+00:00", "2023-05-18 00:39:00+00:00", "2023-05-18 00:39:02+00:00", "2023-05-18 00:39:04+00:00", "2023-05-18 00:39:06+00:00", "2023-05-18 00:39:07+00:00", "2023-05-18 00:39:09+00:00", "2023-05-18 00:39:11+00:00", "2023-05-18 00:39:12+00:00", "2023-05-18 00:39:14+00:00", "2023-05-18 00:39:16+00:00", "2023-05-18 00:39:18+00:00", "2023-05-18 00:39:19+00:00", "2023-05-18 00:39:21+00:00", "2023-05-18 00:39:23+00:00", "2023-05-18 00:39:25+00:00", "2023-05-18 00:39:27+00:00", "2023-05-18 00:39:28+00:00", "2023-05-18 00:39:30+00:00", "2023-05-18 00:39:32+00:00", "2023-05-18 00:39:34+00:00", "2023-05-18 00:39:35+00:00", "2023-05-18 00:39:37+00:00"]}}, {"type": "Feature", "id": "trace#115", "geometry": {"type": "LineString", "coordinates": [[-83.669615, 32.787115], [-83.670127, 32.786757], [-83.670665, 32.786415], [-83.671215, 32.786072], [-83.671773, 32.78572], [-83.672333, 32.785367], [-83.672895, 32.785013], [-83.673455, 32.78466], [-83.67401, 32.78431], [-83.674557, 32.783965], [-83.675095, 32.783623], [-83.675625, 32.783282], [-83.67616, 32.782942], [-83.676698, 32.7826], [-83.67724, 32.782253], [-83.677785, 32.781907], [-83.678333, 32.78156], [-83.678882, 32.78121], [-83.679427, 32.780862], [-83.67997, 32.780515], [-83.680515, 32.780165], [-83.681063, 32.779813], [-83.681615, 32.77946], [-83.682172, 32.779102], [-83.682732, 32.778747], [-83.683287, 32.77839], [-83.683843, 32.77803], [-83.684402, 32.77767], [-83.684958, 32.777315], [-83.685507, 32.776958], [-83.68605, 32.776607], [-83.686593, 32.776257], [-83.68714, 32.775905], [-83.68767, 32.775562], [-83.688198, 32.775225], [-83.688723, 32.774885], [-83.68925, 32.774547], [-83.689783, 32.774205]]}, "properties": {"filename": "osm-traces-page-90.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3608645", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Macon and Milledgeville traces (Amod)", "times": ["2019-03-29 20:37:19+00:00", "2019-03-29 20:37:21+00:00", "2019-03-29 20:37:23+00:00", "2019-03-29 20:37:25+00:00", "2019-03-29 20:37:27+00:00", "2019-03-29 20:37:29+00:00", "2019-03-29 20:37:31+00:00", "2019-03-29 20:37:33+00:00", "2019-03-29 20:37:35+00:00", "2019-03-29 20:37:37+00:00", "2019-03-29 20:37:39+00:00", "2019-03-29 20:37:41+00:00", "2019-03-29 20:37:43+00:00", "2019-03-29 20:37:45+00:00", "2019-03-29 20:37:47+00:00", "2019-03-29 20:37:49+00:00", "2019-03-29 20:37:51+00:00", "2019-03-29 20:37:53+00:00", "2019-03-29 20:37:55+00:00", "2019-03-29 20:37:57+00:00", "2019-03-29 20:37:59+00:00", "2019-03-29 20:38:01+00:00", "2019-03-29 20:38:03+00:00", "2019-03-29 20:38:05+00:00", "2019-03-29 20:38:07+00:00", "2019-03-29 20:38:09+00:00", "2019-03-29 20:38:11+00:00", "2019-03-29 20:38:13+00:00", "2019-03-29 20:38:15+00:00", "2019-03-29 20:38:17+00:00", "2019-03-29 20:38:19+00:00", "2019-03-29 20:38:21+00:00", "2019-03-29 20:38:23+00:00", "2019-03-29 20:38:25+00:00", "2019-03-29 20:38:27+00:00", "2019-03-29 20:38:29+00:00", "2019-03-29 20:38:31+00:00", "2019-03-29 20:38:33+00:00"]}}, {"type": "Feature", "id": "trace#116", "geometry": {"type": "LineString", "coordinates": [[-83.653329, 32.864893], [-83.651741, 32.863513], [-83.650935, 32.86303], [-83.649889, 32.862587], [-83.647362, 32.861575], [-83.645508, 32.860763], [-83.643536, 32.859736], [-83.642729, 32.859071], [-83.642061, 32.858287], [-83.641627, 32.857526], [-83.64131, 32.856642], [-83.641142, 32.855568], [-83.641206, 32.854665], [-83.641467, 32.853924], [-83.641895, 32.852828], [-83.64226, 32.851345], [-83.642518, 32.850023], [-83.642598, 32.848408], [-83.642728, 32.847112], [-83.642995, 32.845893], [-83.643401, 32.844914], [-83.643906, 32.844074], [-83.644609, 32.843286], [-83.645616, 32.842236], [-83.646177, 32.841654], [-83.646522, 32.841227], [-83.647258, 32.840237], [-83.646651, 32.839677], [-83.645826, 32.840373], [-83.645299, 32.841027], [-83.64491, 32.841498], [-83.64422, 32.842364], [-83.643306, 32.843524], [-83.642648, 32.844449], [-83.642251, 32.845317], [-83.642047, 32.846279]]}, "properties": {"filename": "osm-traces-page-90.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/3608641", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 14, "track.description": "Macon trace (Garmin)", "times": ["2021-03-21 00:31:28+00:00", "2021-03-21 00:31:35+00:00", "2021-03-21 00:31:38+00:00", "2021-03-21 00:31:42+00:00", "2021-03-21 00:31:51+00:00", "2021-03-21 00:31:58+00:00", "2021-03-21 00:32:06+00:00", "2021-03-21 00:32:10+00:00", "2021-03-21 00:32:14+00:00", "2021-03-21 00:32:18+00:00", "2021-03-21 00:32:22+00:00", "2021-03-21 00:32:27+00:00", "2021-03-21 00:32:31+00:00", "2021-03-21 00:32:35+00:00", "2021-03-21 00:32:40+00:00", "2021-03-21 00:32:47+00:00", "2021-03-21 00:32:53+00:00", "2021-03-21 00:33:00+00:00", "2021-03-21 00:33:06+00:00", "2021-03-21 00:33:12+00:00", "2021-03-21 00:33:17+00:00", "2021-03-21 00:33:22+00:00", "2021-03-21 00:33:27+00:00", "2021-03-21 00:33:34+00:00", "2021-03-21 00:33:39+00:00", "2021-03-21 00:33:46+00:00", "2021-03-21 00:34:18+00:00", "2021-03-21 00:35:02+00:00", "2021-03-21 00:35:15+00:00", "2021-03-21 00:35:35+00:00", "2021-03-21 00:35:39+00:00", "2021-03-21 00:35:45+00:00", "2021-03-21 00:35:52+00:00", "2021-03-21 00:35:57+00:00", "2021-03-21 00:36:01+00:00", "2021-03-21 00:36:05+00:00"]}}, {"type": "Feature", "id": "trace#117", "geometry": {"type": "LineString", "coordinates": [[-83.626032, 32.848652], [-83.626454, 32.848367], [-83.627081, 32.848569], [-83.628177, 32.849304], [-83.62901, 32.850045], [-83.63009, 32.851066], [-83.631609, 32.852409], [-83.632716, 32.853332], [-83.633566, 32.853991], [-83.634966, 32.854923], [-83.636391, 32.85583], [-83.637145, 32.856058], [-83.638471, 32.855978], [-83.639081, 32.855721], [-83.640892, 32.854406], [-83.641494, 32.853664], [-83.641863, 32.852767], [-83.642278, 32.851076], [-83.642463, 32.849977], [-83.642543, 32.848084], [-83.642677, 32.846906], [-83.64302, 32.845644], [-83.643512, 32.84458], [-83.64426, 32.843399], [-83.645311, 32.842053], [-83.646518, 32.840433], [-83.647982, 32.838625], [-83.649441, 32.836789]]}, "properties": {"filename": "osm-traces-page-91.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3608641", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Macon trace (Garmin)", "times": ["2021-03-21 00:41:05+00:00", "2021-03-21 00:41:14+00:00", "2021-03-21 00:41:19+00:00", "2021-03-21 00:41:26+00:00", "2021-03-21 00:41:31+00:00", "2021-03-21 00:41:37+00:00", "2021-03-21 00:41:45+00:00", "2021-03-21 00:41:51+00:00", "2021-03-21 00:41:56+00:00", "2021-03-21 00:42:03+00:00", "2021-03-21 00:42:10+00:00", "2021-03-21 00:42:13+00:00", "2021-03-21 00:42:18+00:00", "2021-03-21 00:42:21+00:00", "2021-03-21 00:42:30+00:00", "2021-03-21 00:42:34+00:00", "2021-03-21 00:42:38+00:00", "2021-03-21 00:42:45+00:00", "2021-03-21 00:42:50+00:00", "2021-03-21 00:42:58+00:00", "2021-03-21 00:43:03+00:00", "2021-03-21 00:43:09+00:00", "2021-03-21 00:43:14+00:00", "2021-03-21 00:43:20+00:00", "2021-03-21 00:43:27+00:00", "2021-03-21 00:43:35+00:00", "2021-03-21 00:43:44+00:00", "2021-03-21 00:43:53+00:00"]}}, {"type": "Feature", "id": "trace#118", "geometry": {"type": "LineString", "coordinates": [[-83.711377, 32.774277], [-83.711715, 32.774808], [-83.712048, 32.775332], [-83.712383, 32.775853], [-83.712717, 32.776385], [-83.713048, 32.776913], [-83.713383, 32.777442], [-83.713722, 32.777977], [-83.714057, 32.778505], [-83.714395, 32.779037], [-83.714732, 32.77957], [-83.71507, 32.780103], [-83.715407, 32.78064], [-83.715743, 32.781175], [-83.716078, 32.781708], [-83.716417, 32.782242], [-83.716753, 32.782775], [-83.71709, 32.783308], [-83.717425, 32.783842], [-83.717763, 32.78438], [-83.718105, 32.784925], [-83.718443, 32.78547], [-83.718767, 32.786018], [-83.719047, 32.786577], [-83.719268, 32.787148], [-83.719433, 32.787728], [-83.719545, 32.788312], [-83.719613, 32.788902], [-83.71968, 32.789497], [-83.719742, 32.7901], [-83.719803, 32.790707], [-83.719867, 32.791315], [-83.719928, 32.791932], [-83.71999, 32.792543], [-83.720052, 32.793152], [-83.720113, 32.793762], [-83.720172, 32.794365], [-83.72022, 32.794967], [-83.720275, 32.795565], [-83.720332, 32.796163], [-83.7204, 32.796758], [-83.720467, 32.797352], [-83.72054, 32.79795], [-83.720638, 32.79855], [-83.720765, 32.799147], [-83.720918, 32.799735], [-83.721097, 32.800318], [-83.721302, 32.800895], [-83.721533, 32.801463], [-83.72179, 32.802022], [-83.722058, 32.80258], [-83.722325, 32.80314]]}, "properties": {"filename": "osm-traces-page-91.gpx", "track.number": 2, "track.link": "/user/Chris%20Lawrence/traces/3076691", "track.name": "nmea.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Various Macon area GPS traces, July-August 2019", "times": ["2019-07-29 14:11:15+00:00", "2019-07-29 14:11:17+00:00", "2019-07-29 14:11:19+00:00", "2019-07-29 14:11:21+00:00", "2019-07-29 14:11:23+00:00", "2019-07-29 14:11:25+00:00", "2019-07-29 14:11:27+00:00", "2019-07-29 14:11:29+00:00", "2019-07-29 14:11:31+00:00", "2019-07-29 14:11:33+00:00", "2019-07-29 14:11:35+00:00", "2019-07-29 14:11:37+00:00", "2019-07-29 14:11:39+00:00", "2019-07-29 14:11:41+00:00", "2019-07-29 14:11:43+00:00", "2019-07-29 14:11:45+00:00", "2019-07-29 14:11:47+00:00", "2019-07-29 14:11:49+00:00", "2019-07-29 14:11:51+00:00", "2019-07-29 14:11:53+00:00", "2019-07-29 14:11:55+00:00", "2019-07-29 14:11:57+00:00", "2019-07-29 14:11:59+00:00", "2019-07-29 14:12:01+00:00", "2019-07-29 14:12:03+00:00", "2019-07-29 14:12:05+00:00", "2019-07-29 14:12:07+00:00", "2019-07-29 14:12:09+00:00", "2019-07-29 14:12:11+00:00", "2019-07-29 14:12:13+00:00", "2019-07-29 14:12:15+00:00", "2019-07-29 14:12:17+00:00", "2019-07-29 14:12:19+00:00", "2019-07-29 14:12:21+00:00", "2019-07-29 14:12:23+00:00", "2019-07-29 14:12:25+00:00", "2019-07-29 14:12:27+00:00", "2019-07-29 14:12:29+00:00", "2019-07-29 14:12:31+00:00", "2019-07-29 14:12:33+00:00", "2019-07-29 14:12:35+00:00", "2019-07-29 14:12:37+00:00", "2019-07-29 14:12:39+00:00", "2019-07-29 14:12:41+00:00", "2019-07-29 14:12:43+00:00", "2019-07-29 14:12:45+00:00", "2019-07-29 14:12:47+00:00", "2019-07-29 14:12:49+00:00", "2019-07-29 14:12:51+00:00", "2019-07-29 14:12:53+00:00", "2019-07-29 14:12:55+00:00", "2019-07-29 14:12:57+00:00"]}}, {"type": "Feature", "id": "trace#119", "geometry": {"type": "LineString", "coordinates": [[-83.668128, 32.7887], [-83.668533, 32.7882], [-83.668982, 32.787728], [-83.669473, 32.787297], [-83.67001, 32.786908], [-83.67057, 32.786545], [-83.671132, 32.786182], [-83.671697, 32.785815], [-83.672262, 32.785452], [-83.672828, 32.785085], [-83.673395, 32.784718], [-83.67396, 32.784353], [-83.674527, 32.783988], [-83.675092, 32.783623], [-83.675653, 32.78326], [-83.676205, 32.782903], [-83.676752, 32.782552], [-83.677305, 32.782195], [-83.677862, 32.781838], [-83.678432, 32.781487], [-83.67901, 32.781133], [-83.67957, 32.780777], [-83.680117, 32.780425], [-83.680668, 32.780068], [-83.681228, 32.779705], [-83.681798, 32.779337], [-83.682373, 32.778965], [-83.682948, 32.778593], [-83.683522, 32.778225], [-83.684093, 32.777858], [-83.684662, 32.777492], [-83.685228, 32.777125], [-83.685795, 32.77676], [-83.686362, 32.776397], [-83.686928, 32.77603], [-83.687495, 32.775665], [-83.688065, 32.7753], [-83.688633, 32.774932], [-83.689205, 32.774567], [-83.689775, 32.774198]]}, "properties": {"filename": "osm-traces-page-92.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/3059716", "track.name": "nmea.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Various Macon area GPS traces", "times": ["2019-07-28 02:30:58+00:00", "2019-07-28 02:31:00+00:00", "2019-07-28 02:31:02+00:00", "2019-07-28 02:31:04+00:00", "2019-07-28 02:31:06+00:00", "2019-07-28 02:31:08+00:00", "2019-07-28 02:31:10+00:00", "2019-07-28 02:31:12+00:00", "2019-07-28 02:31:14+00:00", "2019-07-28 02:31:16+00:00", "2019-07-28 02:31:18+00:00", "2019-07-28 02:31:20+00:00", "2019-07-28 02:31:22+00:00", "2019-07-28 02:31:24+00:00", "2019-07-28 02:31:26+00:00", "2019-07-28 02:31:28+00:00", "2019-07-28 02:31:30+00:00", "2019-07-28 02:31:32+00:00", "2019-07-28 02:31:34+00:00", "2019-07-28 02:31:36+00:00", "2019-07-28 02:31:38+00:00", "2019-07-28 02:31:40+00:00", "2019-07-28 02:31:42+00:00", "2019-07-28 02:31:44+00:00", "2019-07-28 02:31:46+00:00", "2019-07-28 02:31:48+00:00", "2019-07-28 02:31:50+00:00", "2019-07-28 02:31:52+00:00", "2019-07-28 02:31:54+00:00", "2019-07-28 02:31:56+00:00", "2019-07-28 02:31:58+00:00", "2019-07-28 02:32:00+00:00", "2019-07-28 02:32:02+00:00", "2019-07-28 02:32:04+00:00", "2019-07-28 02:32:06+00:00", "2019-07-28 02:32:08+00:00", "2019-07-28 02:32:10+00:00", "2019-07-28 02:32:12+00:00", "2019-07-28 02:32:14+00:00", "2019-07-28 02:32:16+00:00"]}}, {"type": "Feature", "id": "trace#120", "geometry": {"type": "LineString", "coordinates": [[-83.631192, 32.839718], [-83.630382, 32.839245], [-83.629873, 32.838937], [-83.629827, 32.838407], [-83.630153, 32.837993], [-83.63055, 32.837637], [-83.630878, 32.837117], [-83.631338, 32.836588], [-83.631788, 32.836012], [-83.632148, 32.835593], [-83.632565, 32.835195], [-83.633138, 32.835128], [-83.63383, 32.835562], [-83.634365, 32.83587], [-83.634865, 32.836168], [-83.635413, 32.836507], [-83.635892, 32.836792], [-83.636385, 32.837092], [-83.636912, 32.837338], [-83.637543, 32.837447], [-83.638208, 32.837563], [-83.638497, 32.836978], [-83.638663, 32.836542], [-83.638878, 32.836077], [-83.639598, 32.836047], [-83.640148, 32.83619], [-83.640732, 32.836035], [-83.641257, 32.835733], [-83.641733, 32.835502], [-83.642332, 32.835223], [-83.643015, 32.834928], [-83.643698, 32.834755], [-83.644265, 32.834515], [-83.644643, 32.834093], [-83.645038, 32.833667], [-83.645308, 32.833278], [-83.645655, 32.832865], [-83.646163, 32.832262], [-83.64651, 32.831847], [-83.646998, 32.831625], [-83.647517, 32.831908], [-83.648305, 32.832377], [-83.648822, 32.832692], [-83.648735, 32.833235], [-83.647932, 32.834147], [-83.647552, 32.834597], [-83.647208, 32.83499], [-83.646828, 32.835445], [-83.646503, 32.835845], [-83.646145, 32.836272], [-83.645495, 32.836092], [-83.64496, 32.835853], [-83.64442, 32.835747], [-83.644185, 32.83621], [-83.643923, 32.836742], [-83.643745, 32.837203], [-83.643548, 32.837668], [-83.643362, 32.838138], [-83.643117, 32.838727], [-83.642925, 32.839158], [-83.642725, 32.83963], [-83.642548, 32.840055], [-83.642343, 32.840482], [-83.64199, 32.84129], [-83.64177, 32.841752], [-83.641563, 32.8422], [-83.64129, 32.842795], [-83.641085, 32.843267], [-83.640855, 32.84378], [-83.640552, 32.84439], [-83.640312, 32.84482], [-83.64, 32.84526], [-83.639392, 32.84522], [-83.638855, 32.845017], [-83.638265, 32.8452], [-83.638038, 32.845762], [-83.637803, 32.846353], [-83.637605, 32.846817], [-83.637407, 32.847253], [-83.637795, 32.847583], [-83.638212, 32.847975], [-83.638643, 32.848428], [-83.639307, 32.84912], [-83.639747, 32.84959], [-83.64022, 32.85006], [-83.640685, 32.850577], [-83.641843, 32.85197], [-83.642502, 32.852785], [-83.642828, 32.853188], [-83.643162, 32.853598], [-83.643465, 32.85399], [-83.643743, 32.854382], [-83.644143, 32.854892], [-83.644513, 32.855325], [-83.644862, 32.855712], [-83.645527, 32.85564], [-83.64637, 32.855282], [-83.646997, 32.855007], [-83.647642, 32.85477], [-83.648463, 32.854475], [-83.64907, 32.854267]]}, "properties": {"filename": "osm-traces-page-93.gpx", "track.number": 3, "track.link": "/user/Chris%20Lawrence/traces/2850653", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Various GPS traces", "times": ["2018-01-05 22:59:45+00:00", "2018-01-05 22:59:52+00:00", "2018-01-05 22:59:57+00:00", "2018-01-05 23:00:15+00:00", "2018-01-05 23:00:20+00:00", "2018-01-05 23:00:40+00:00", "2018-01-05 23:00:47+00:00", "2018-01-05 23:00:56+00:00", "2018-01-05 23:01:11+00:00", "2018-01-05 23:01:16+00:00", "2018-01-05 23:01:21+00:00", "2018-01-05 23:01:31+00:00", "2018-01-05 23:01:40+00:00", "2018-01-05 23:02:15+00:00", "2018-01-05 23:02:21+00:00", "2018-01-05 23:02:28+00:00", "2018-01-05 23:02:34+00:00", "2018-01-05 23:02:41+00:00", "2018-01-05 23:02:53+00:00", "2018-01-05 23:03:01+00:00", "2018-01-05 23:03:12+00:00", "2018-01-05 23:03:26+00:00", "2018-01-05 23:03:32+00:00", "2018-01-05 23:03:39+00:00", "2018-01-05 23:03:53+00:00", "2018-01-05 23:03:59+00:00", "2018-01-05 23:05:11+00:00", "2018-01-05 23:05:16+00:00", "2018-01-05 23:05:20+00:00", "2018-01-05 23:05:25+00:00", "2018-01-05 23:05:31+00:00", "2018-01-05 23:05:37+00:00", "2018-01-05 23:05:42+00:00", "2018-01-05 23:05:47+00:00", "2018-01-05 23:05:56+00:00", "2018-01-05 23:06:01+00:00", "2018-01-05 23:06:06+00:00", "2018-01-05 23:06:13+00:00", "2018-01-05 23:06:18+00:00", "2018-01-05 23:06:27+00:00", "2018-01-05 23:06:33+00:00", "2018-01-05 23:06:42+00:00", "2018-01-05 23:06:49+00:00", "2018-01-05 23:06:59+00:00", "2018-01-05 23:07:09+00:00", "2018-01-05 23:07:14+00:00", "2018-01-05 23:07:20+00:00", "2018-01-05 23:07:31+00:00", "2018-01-05 23:07:36+00:00", "2018-01-05 23:07:43+00:00", "2018-01-05 23:07:54+00:00", "2018-01-05 23:08:00+00:00", "2018-01-05 23:08:18+00:00", "2018-01-05 23:08:24+00:00", "2018-01-05 23:08:30+00:00", "2018-01-05 23:08:35+00:00", "2018-01-05 23:09:42+00:00", "2018-01-05 23:09:47+00:00", "2018-01-05 23:09:52+00:00", "2018-01-05 23:09:56+00:00", "2018-01-05 23:10:01+00:00", "2018-01-05 23:10:11+00:00", "2018-01-05 23:10:26+00:00", "2018-01-05 23:10:39+00:00", "2018-01-05 23:10:46+00:00", "2018-01-05 23:10:55+00:00", "2018-01-05 23:11:02+00:00", "2018-01-05 23:11:07+00:00", "2018-01-05 23:11:13+00:00", "2018-01-05 23:11:20+00:00", "2018-01-05 23:11:25+00:00", "2018-01-05 23:11:31+00:00", "2018-01-05 23:11:44+00:00", "2018-01-05 23:11:49+00:00", "2018-01-05 23:12:10+00:00", "2018-01-05 23:12:22+00:00", "2018-01-05 23:12:29+00:00", "2018-01-05 23:12:34+00:00", "2018-01-05 23:13:35+00:00", "2018-01-05 23:13:40+00:00", "2018-01-05 23:13:44+00:00", "2018-01-05 23:13:48+00:00", "2018-01-05 23:13:54+00:00", "2018-01-05 23:13:58+00:00", "2018-01-05 23:14:02+00:00", "2018-01-05 23:14:06+00:00", "2018-01-05 23:14:16+00:00", "2018-01-05 23:14:22+00:00", "2018-01-05 23:14:25+00:00", "2018-01-05 23:14:28+00:00", "2018-01-05 23:14:31+00:00", "2018-01-05 23:14:34+00:00", "2018-01-05 23:14:38+00:00", "2018-01-05 23:14:42+00:00", "2018-01-05 23:14:47+00:00", "2018-01-05 23:14:54+00:00", "2018-01-05 23:15:01+00:00", "2018-01-05 23:15:06+00:00", "2018-01-05 23:15:11+00:00", "2018-01-05 23:15:17+00:00", "2018-01-05 23:15:21+00:00"]}}, {"type": "Feature", "id": "trace#121", "geometry": {"type": "LineString", "coordinates": [[-83.649667, 32.85407], [-83.650255, 32.853915], [-83.650852, 32.853803], [-83.651498, 32.853758], [-83.652162, 32.853757], [-83.653, 32.853762], [-83.653608, 32.853777], [-83.654275, 32.853793], [-83.654917, 32.853797], [-83.655535, 32.853792], [-83.656092, 32.853787], [-83.656713, 32.853782], [-83.657333, 32.853775], [-83.657958, 32.853777], [-83.65865, 32.853773], [-83.659257, 32.853785], [-83.66022, 32.853797], [-83.660843, 32.853812], [-83.661563, 32.853823], [-83.662282, 32.853822], [-83.662527, 32.853407], [-83.662482, 32.852518], [-83.662483, 32.852], [-83.66248, 32.851492], [-83.662482, 32.850977], [-83.662475, 32.850175], [-83.662495, 32.849498], [-83.662522, 32.848585], [-83.662527, 32.847742], [-83.662575, 32.847065], [-83.662568, 32.846597], [-83.662605, 32.846103], [-83.663412, 32.84605], [-83.664493, 32.84608], [-83.665132, 32.846102], [-83.666063, 32.846202], [-83.666857, 32.846322], [-83.667493, 32.846485], [-83.66812, 32.846735], [-83.668913, 32.847062], [-83.66953, 32.847332], [-83.670588, 32.847818], [-83.671198, 32.848093], [-83.671912, 32.848418], [-83.672447, 32.84872], [-83.673117, 32.849302], [-83.672923, 32.849857], [-83.672367, 32.85031], [-83.671967, 32.850645], [-83.671457, 32.85107], [-83.670815, 32.851558], [-83.670293, 32.851935], [-83.669837, 32.852287], [-83.669538, 32.852693], [-83.669415, 32.853305], [-83.66936, 32.85382], [-83.669578, 32.854235], [-83.669977, 32.854615], [-83.670332, 32.855008], [-83.670448, 32.855465], [-83.66983, 32.855563], [-83.669292, 32.855545], [-83.66857, 32.855515], [-83.667965, 32.855488], [-83.66737, 32.855395], [-83.666782, 32.855212], [-83.666293, 32.854947], [-83.665595, 32.854418], [-83.665177, 32.854125], [-83.664687, 32.853903], [-83.664753, 32.853422], [-83.665237, 32.853172], [-83.665783, 32.852883], [-83.666207, 32.852557], [-83.666517, 32.852168], [-83.666795, 32.851615], [-83.666928, 32.851092], [-83.667005, 32.850565], [-83.6675, 32.85038], [-83.667968, 32.85074], [-83.668287, 32.851205], [-83.668427, 32.851738], [-83.668753, 32.85215], [-83.66949, 32.852185], [-83.670085, 32.85215], [-83.670705, 32.851658], [-83.671197, 32.851277], [-83.671587, 32.850947], [-83.67213, 32.850483], [-83.672713, 32.850885], [-83.673147, 32.851277], [-83.673528, 32.851615], [-83.674082, 32.852112], [-83.674523, 32.852492], [-83.674993, 32.852913], [-83.675397, 32.85327], [-83.675915, 32.853732], [-83.676445, 32.85419], [-83.676968, 32.854655], [-83.677442, 32.855073], [-83.67791, 32.855528]]}, "properties": {"filename": "osm-traces-page-93.gpx", "track.number": 3, "track.link": "/user/Chris%20Lawrence/traces/2850653", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Various GPS traces", "times": ["2018-01-05 23:15:25+00:00", "2018-01-05 23:15:29+00:00", "2018-01-05 23:15:33+00:00", "2018-01-05 23:15:37+00:00", "2018-01-05 23:15:41+00:00", "2018-01-05 23:15:46+00:00", "2018-01-05 23:15:50+00:00", "2018-01-05 23:15:55+00:00", "2018-01-05 23:16:00+00:00", "2018-01-05 23:16:05+00:00", "2018-01-05 23:16:12+00:00", "2018-01-05 23:16:29+00:00", "2018-01-05 23:16:41+00:00", "2018-01-05 23:16:59+00:00", "2018-01-05 23:17:04+00:00", "2018-01-05 23:17:08+00:00", "2018-01-05 23:17:14+00:00", "2018-01-05 23:17:18+00:00", "2018-01-05 23:17:25+00:00", "2018-01-05 23:17:32+00:00", "2018-01-05 23:17:39+00:00", "2018-01-05 23:17:46+00:00", "2018-01-05 23:17:50+00:00", "2018-01-05 23:17:54+00:00", "2018-01-05 23:17:58+00:00", "2018-01-05 23:18:04+00:00", "2018-01-05 23:18:09+00:00", "2018-01-05 23:18:16+00:00", "2018-01-05 23:18:23+00:00", "2018-01-05 23:18:29+00:00", "2018-01-05 23:18:35+00:00", "2018-01-05 23:19:43+00:00", "2018-01-05 23:19:50+00:00", "2018-01-05 23:19:57+00:00", "2018-01-05 23:20:01+00:00", "2018-01-05 23:20:07+00:00", "2018-01-05 23:20:12+00:00", "2018-01-05 23:20:16+00:00", "2018-01-05 23:20:20+00:00", "2018-01-05 23:20:25+00:00", "2018-01-05 23:20:29+00:00", "2018-01-05 23:20:36+00:00", "2018-01-05 23:20:40+00:00", "2018-01-05 23:20:45+00:00", "2018-01-05 23:20:49+00:00", "2018-01-05 23:20:55+00:00", "2018-01-05 23:21:05+00:00", "2018-01-05 23:21:12+00:00", "2018-01-05 23:21:26+00:00", "2018-01-05 23:21:33+00:00", "2018-01-05 23:21:40+00:00", "2018-01-05 23:21:45+00:00", "2018-01-05 23:21:50+00:00", "2018-01-05 23:21:55+00:00", "2018-01-05 23:22:01+00:00", "2018-01-05 23:22:06+00:00", "2018-01-05 23:22:11+00:00", "2018-01-05 23:22:16+00:00", "2018-01-05 23:22:21+00:00", "2018-01-05 23:22:28+00:00", "2018-01-05 23:22:40+00:00", "2018-01-05 23:22:44+00:00", "2018-01-05 23:22:49+00:00", "2018-01-05 23:22:53+00:00", "2018-01-05 23:22:57+00:00", "2018-01-05 23:23:02+00:00", "2018-01-05 23:23:07+00:00", "2018-01-05 23:23:14+00:00", "2018-01-05 23:23:18+00:00", "2018-01-05 23:23:22+00:00", "2018-01-05 23:23:33+00:00", "2018-01-05 23:23:38+00:00", "2018-01-05 23:23:44+00:00", "2018-01-05 23:23:49+00:00", "2018-01-05 23:23:54+00:00", "2018-01-05 23:24:00+00:00", "2018-01-05 23:24:05+00:00", "2018-01-05 23:24:11+00:00", "2018-01-05 23:24:17+00:00", "2018-01-05 23:24:23+00:00", "2018-01-05 23:24:28+00:00", "2018-01-05 23:24:33+00:00", "2018-01-05 23:24:44+00:00", "2018-01-05 23:24:50+00:00", "2018-01-05 23:25:02+00:00", "2018-01-05 23:25:10+00:00", "2018-01-05 23:25:16+00:00", "2018-01-05 23:25:21+00:00", "2018-01-05 23:25:29+00:00", "2018-01-05 23:25:42+00:00", "2018-01-05 23:25:47+00:00", "2018-01-05 23:25:51+00:00", "2018-01-05 23:25:57+00:00", "2018-01-05 23:26:02+00:00", "2018-01-05 23:26:08+00:00", "2018-01-05 23:26:13+00:00", "2018-01-05 23:26:19+00:00", "2018-01-05 23:26:25+00:00", "2018-01-05 23:26:31+00:00", "2018-01-05 23:26:36+00:00", "2018-01-05 23:26:41+00:00"]}}, {"type": "Feature", "id": "trace#122", "geometry": {"type": "LineString", "coordinates": [[-83.683797, 32.822772], [-83.684668, 32.822317], [-83.685175, 32.822062], [-83.685695, 32.821828], [-83.686353, 32.82156], [-83.687055, 32.82133], [-83.687627, 32.821172], [-83.688767, 32.82092], [-83.689453, 32.820778], [-83.690197, 32.820628], [-83.690875, 32.820553], [-83.691418, 32.820532], [-83.691987, 32.820525], [-83.692563, 32.820513], [-83.693327, 32.82051], [-83.693863, 32.820527], [-83.694502, 32.82062], [-83.695213, 32.820852], [-83.696018, 32.82118], [-83.696695, 32.82146], [-83.697558, 32.82181], [-83.698167, 32.822062], [-83.699225, 32.822497], [-83.70006, 32.822833], [-83.70073, 32.82311], [-83.70141, 32.823382], [-83.702218, 32.823712], [-83.70306, 32.824052], [-83.703603, 32.824265], [-83.704155, 32.824485], [-83.704715, 32.824713], [-83.705293, 32.824903], [-83.705907, 32.825013], [-83.706515, 32.825113], [-83.707247, 32.825252], [-83.707848, 32.825355], [-83.708418, 32.825435], [-83.709132, 32.825513], [-83.70966, 32.825407], [-83.709697, 32.824668], [-83.709683, 32.823917], [-83.709702, 32.823218], [-83.709713, 32.822682], [-83.709722, 32.822123], [-83.709758, 32.821575], [-83.709782, 32.820542], [-83.709792, 32.820057], [-83.709795, 32.819592], [-83.709755, 32.819125], [-83.709668, 32.81867], [-83.70948, 32.81811], [-83.709232, 32.817583], [-83.708935, 32.81701], [-83.709258, 32.816593], [-83.710157, 32.816587], [-83.710817, 32.816557], [-83.711763, 32.816455], [-83.712488, 32.816332], [-83.713458, 32.816103], [-83.71417, 32.81589], [-83.714862, 32.81564], [-83.715523, 32.815365], [-83.716158, 32.815063], [-83.716778, 32.814733], [-83.717398, 32.814393], [-83.718223, 32.813945], [-83.718945, 32.81353], [-83.719613, 32.813163], [-83.720615, 32.812617], [-83.721515, 32.812133], [-83.722398, 32.811645]]}, "properties": {"filename": "osm-traces-page-93.gpx", "track.number": 3, "track.link": "/user/Chris%20Lawrence/traces/2850653", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 5, "track.description": "Various GPS traces", "times": ["2018-01-05 23:50:06+00:00", "2018-01-05 23:50:11+00:00", "2018-01-05 23:50:14+00:00", "2018-01-05 23:50:17+00:00", "2018-01-05 23:50:21+00:00", "2018-01-05 23:50:27+00:00", "2018-01-05 23:50:32+00:00", "2018-01-05 23:50:42+00:00", "2018-01-05 23:50:48+00:00", "2018-01-05 23:50:53+00:00", "2018-01-05 23:50:57+00:00", "2018-01-05 23:51:00+00:00", "2018-01-05 23:51:03+00:00", "2018-01-05 23:51:06+00:00", "2018-01-05 23:51:10+00:00", "2018-01-05 23:51:13+00:00", "2018-01-05 23:51:17+00:00", "2018-01-05 23:51:22+00:00", "2018-01-05 23:51:27+00:00", "2018-01-05 23:51:31+00:00", "2018-01-05 23:51:36+00:00", "2018-01-05 23:51:40+00:00", "2018-01-05 23:51:47+00:00", "2018-01-05 23:51:52+00:00", "2018-01-05 23:51:56+00:00", "2018-01-05 23:52:00+00:00", "2018-01-05 23:52:05+00:00", "2018-01-05 23:52:10+00:00", "2018-01-05 23:52:13+00:00", "2018-01-05 23:52:16+00:00", "2018-01-05 23:52:19+00:00", "2018-01-05 23:52:22+00:00", "2018-01-05 23:52:25+00:00", "2018-01-05 23:52:28+00:00", "2018-01-05 23:52:32+00:00", "2018-01-05 23:52:36+00:00", "2018-01-05 23:52:40+00:00", "2018-01-05 23:52:45+00:00", "2018-01-05 23:54:26+00:00", "2018-01-05 23:54:33+00:00", "2018-01-05 23:54:38+00:00", "2018-01-05 23:54:42+00:00", "2018-01-05 23:54:45+00:00", "2018-01-05 23:54:48+00:00", "2018-01-05 23:54:51+00:00", "2018-01-05 23:54:57+00:00", "2018-01-05 23:55:00+00:00", "2018-01-05 23:55:03+00:00", "2018-01-05 23:55:06+00:00", "2018-01-05 23:55:09+00:00", "2018-01-05 23:55:13+00:00", "2018-01-05 23:55:17+00:00", "2018-01-05 23:55:22+00:00", "2018-01-05 23:55:32+00:00", "2018-01-05 23:55:37+00:00", "2018-01-05 23:55:40+00:00", "2018-01-05 23:55:44+00:00", "2018-01-05 23:55:47+00:00", "2018-01-05 23:55:51+00:00", "2018-01-05 23:55:54+00:00", "2018-01-05 23:55:57+00:00", "2018-01-05 23:56:00+00:00", "2018-01-05 23:56:03+00:00", "2018-01-05 23:56:06+00:00", "2018-01-05 23:56:09+00:00", "2018-01-05 23:56:13+00:00", "2018-01-05 23:56:17+00:00", "2018-01-05 23:56:21+00:00", "2018-01-05 23:56:27+00:00", "2018-01-05 23:56:32+00:00", "2018-01-05 23:56:37+00:00"]}}, {"type": "Feature", "id": "trace#123", "geometry": {"type": "LineString", "coordinates": [[-83.72222, 32.802402], [-83.72196, 32.80182], [-83.721722, 32.801233], [-83.721512, 32.80064], [-83.721335, 32.800038], [-83.721187, 32.799435], [-83.721062, 32.798827], [-83.720963, 32.798215], [-83.720797, 32.796677], [-83.720703, 32.795753], [-83.720637, 32.795143], [-83.720512, 32.793927], [-83.720443, 32.793315], [-83.720348, 32.792392], [-83.720213, 32.791153], [-83.720083, 32.789903], [-83.72002, 32.789275], [-83.719952, 32.788647], [-83.71986, 32.788022], [-83.719718, 32.787408], [-83.719522, 32.786817], [-83.719275, 32.786248], [-83.71898, 32.785698], [-83.718302, 32.784618], [-83.717957, 32.784072], [-83.716913, 32.782415], [-83.716565, 32.781858], [-83.716217, 32.781305], [-83.71553, 32.780208], [-83.715187, 32.779665], [-83.714847, 32.779122], [-83.714503, 32.77858], [-83.713815, 32.777485], [-83.712988, 32.776093], [-83.712642, 32.775547], [-83.712297, 32.775002], [-83.711787, 32.774183]]}, "properties": {"filename": "osm-traces-page-93.gpx", "track.number": 4, "track.link": "/user/Chris%20Lawrence/traces/2850533", "track.name": "ublox.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Memphis-Macon trace (ublox)", "times": ["2018-11-26 03:23:18+00:00", "2018-11-26 03:23:20+00:00", "2018-11-26 03:23:22+00:00", "2018-11-26 03:23:24+00:00", "2018-11-26 03:23:26+00:00", "2018-11-26 03:23:28+00:00", "2018-11-26 03:23:30+00:00", "2018-11-26 03:23:32+00:00", "2018-11-26 03:23:37+00:00", "2018-11-26 03:23:40+00:00", "2018-11-26 03:23:42+00:00", "2018-11-26 03:23:46+00:00", "2018-11-26 03:23:48+00:00", "2018-11-26 03:23:51+00:00", "2018-11-26 03:23:55+00:00", "2018-11-26 03:23:59+00:00", "2018-11-26 03:24:01+00:00", "2018-11-26 03:24:03+00:00", "2018-11-26 03:24:05+00:00", "2018-11-26 03:24:07+00:00", "2018-11-26 03:24:09+00:00", "2018-11-26 03:24:11+00:00", "2018-11-26 03:24:13+00:00", "2018-11-26 03:24:17+00:00", "2018-11-26 03:24:19+00:00", "2018-11-26 03:24:25+00:00", "2018-11-26 03:24:27+00:00", "2018-11-26 03:24:29+00:00", "2018-11-26 03:24:33+00:00", "2018-11-26 03:24:35+00:00", "2018-11-26 03:24:37+00:00", "2018-11-26 03:24:39+00:00", "2018-11-26 03:24:43+00:00", "2018-11-26 03:24:48+00:00", "2018-11-26 03:24:50+00:00", "2018-11-26 03:24:52+00:00", "2018-11-26 03:24:55+00:00"]}}, {"type": "Feature", "id": "trace#124", "geometry": {"type": "LineString", "coordinates": [[-83.713453, 32.776853], [-83.713098, 32.776297], [-83.712747, 32.77574], [-83.712402, 32.775183], [-83.712045, 32.774627], [-83.711372, 32.774142], [-83.711727, 32.774707], [-83.712442, 32.775835], [-83.712795, 32.7764], [-83.71333, 32.777247], [-83.713683, 32.777813], [-83.71404, 32.778377], [-83.71457, 32.779223], [-83.714927, 32.779788], [-83.715818, 32.7812], [-83.716347, 32.782048], [-83.716882, 32.782895], [-83.717408, 32.783747], [-83.717748, 32.78432], [-83.718268, 32.785178], [-83.71862, 32.785747], [-83.718942, 32.786327], [-83.719202, 32.786928], [-83.719402, 32.787545], [-83.719545, 32.788168], [-83.719633, 32.7888], [-83.719727, 32.789753], [-83.719893, 32.791348], [-83.719962, 32.79198], [-83.720068, 32.792937], [-83.720143, 32.7939], [-83.720232, 32.79486], [-83.720303, 32.7955], [-83.720398, 32.796458], [-83.720468, 32.797092], [-83.720537, 32.79771], [-83.720623, 32.798313], [-83.720737, 32.7989], [-83.720873, 32.799463], [-83.721032, 32.800002], [-83.721205, 32.800522], [-83.721397, 32.80103], [-83.721608, 32.801532], [-83.721838, 32.802025], [-83.72207, 32.802517], [-83.722295, 32.803007]]}, "properties": {"filename": "osm-traces-page-93.gpx", "track.number": 6, "track.link": "/user/Chris%20Lawrence/traces/2848606", "track.name": "ublox.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Various u-blox gps traces", "times": ["2018-01-26 03:46:33+00:00", "2018-01-26 03:46:35+00:00", "2018-01-26 03:46:37+00:00", "2018-01-26 03:46:39+00:00", "2018-01-26 03:46:41+00:00", "2018-01-26 14:45:56+00:00", "2018-01-26 14:45:58+00:00", "2018-01-26 14:46:02+00:00", "2018-01-26 14:46:04+00:00", "2018-01-26 14:46:07+00:00", "2018-01-26 14:46:09+00:00", "2018-01-26 14:46:11+00:00", "2018-01-26 14:46:14+00:00", "2018-01-26 14:46:16+00:00", "2018-01-26 14:46:21+00:00", "2018-01-26 14:46:24+00:00", "2018-01-26 14:46:27+00:00", "2018-01-26 14:46:30+00:00", "2018-01-26 14:46:32+00:00", "2018-01-26 14:46:35+00:00", "2018-01-26 14:46:37+00:00", "2018-01-26 14:46:39+00:00", "2018-01-26 14:46:41+00:00", "2018-01-26 14:46:43+00:00", "2018-01-26 14:46:45+00:00", "2018-01-26 14:46:47+00:00", "2018-01-26 14:46:50+00:00", "2018-01-26 14:46:55+00:00", "2018-01-26 14:46:57+00:00", "2018-01-26 14:47:00+00:00", "2018-01-26 14:47:03+00:00", "2018-01-26 14:47:06+00:00", "2018-01-26 14:47:08+00:00", "2018-01-26 14:47:11+00:00", "2018-01-26 14:47:13+00:00", "2018-01-26 14:47:15+00:00", "2018-01-26 14:47:17+00:00", "2018-01-26 14:47:19+00:00", "2018-01-26 14:47:21+00:00", "2018-01-26 14:47:23+00:00", "2018-01-26 14:47:25+00:00", "2018-01-26 14:47:27+00:00", "2018-01-26 14:47:29+00:00", "2018-01-26 14:47:31+00:00", "2018-01-26 14:47:33+00:00", "2018-01-26 14:47:35+00:00"]}}, {"type": "Feature", "id": "trace#125", "geometry": {"type": "LineString", "coordinates": [[-83.585702, 32.817723], [-83.58632, 32.818083], [-83.58787, 32.818972], [-83.58849, 32.819327], [-83.589422, 32.819858], [-83.59005, 32.820205], [-83.590988, 32.820725], [-83.592225, 32.82144], [-83.593155, 32.821975], [-83.593772, 32.822333], [-83.594698, 32.822868], [-83.595313, 32.82322], [-83.59685, 32.8241], [-83.597467, 32.82446], [-83.598712, 32.82518], [-83.599967, 32.825898], [-83.600583, 32.82627], [-83.601177, 32.826658], [-83.60175, 32.827063], [-83.6023, 32.827488], [-83.603368, 32.828372], [-83.604163, 32.829042], [-83.604697, 32.829487], [-83.605232, 32.829932], [-83.605768, 32.830375], [-83.606302, 32.830818], [-83.607102, 32.831482], [-83.607633, 32.831927], [-83.608432, 32.832597], [-83.60923, 32.833263], [-83.610297, 32.834155], [-83.611895, 32.835492], [-83.612423, 32.835937]]}, "properties": {"filename": "osm-traces-page-93.gpx", "track.number": 8, "track.link": "/user/Chris%20Lawrence/traces/2583340", "track.name": "dublin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Various central Georgia traces (uBlox)", "times": ["2018-01-23 18:30:55+00:00", "2018-01-23 18:30:57+00:00", "2018-01-23 18:31:02+00:00", "2018-01-23 18:31:04+00:00", "2018-01-23 18:31:07+00:00", "2018-01-23 18:31:09+00:00", "2018-01-23 18:31:12+00:00", "2018-01-23 18:31:16+00:00", "2018-01-23 18:31:19+00:00", "2018-01-23 18:31:21+00:00", "2018-01-23 18:31:24+00:00", "2018-01-23 18:31:26+00:00", "2018-01-23 18:31:31+00:00", "2018-01-23 18:31:33+00:00", "2018-01-23 18:31:37+00:00", "2018-01-23 18:31:41+00:00", "2018-01-23 18:31:43+00:00", "2018-01-23 18:31:45+00:00", "2018-01-23 18:31:47+00:00", "2018-01-23 18:31:49+00:00", "2018-01-23 18:31:53+00:00", "2018-01-23 18:31:56+00:00", "2018-01-23 18:31:58+00:00", "2018-01-23 18:32:00+00:00", "2018-01-23 18:32:02+00:00", "2018-01-23 18:32:04+00:00", "2018-01-23 18:32:07+00:00", "2018-01-23 18:32:09+00:00", "2018-01-23 18:32:12+00:00", "2018-01-23 18:32:15+00:00", "2018-01-23 18:32:19+00:00", "2018-01-23 18:32:25+00:00", "2018-01-23 18:32:27+00:00"]}}, {"type": "Feature", "id": "trace#126", "geometry": {"type": "LineString", "coordinates": [[-83.612955, 32.836377], [-83.613493, 32.8368], [-83.614062, 32.837192], [-83.614652, 32.837555], [-83.615262, 32.837887], [-83.615895, 32.838187], [-83.617172, 32.838725], [-83.61779, 32.838995], [-83.61838, 32.83927], [-83.61893, 32.839558], [-83.61946, 32.839853], [-83.619967, 32.840152], [-83.620688, 32.840622], [-83.6214, 32.841133], [-83.621863, 32.841502], [-83.622325, 32.841888], [-83.622767, 32.842285], [-83.623192, 32.842693], [-83.623607, 32.843123], [-83.624005, 32.84357], [-83.624382, 32.844032], [-83.62474, 32.844507], [-83.625083, 32.844993], [-83.625408, 32.845492], [-83.625723, 32.845993], [-83.626033, 32.8465], [-83.626668, 32.84747], [-83.627017, 32.847915], [-83.627402, 32.848338], [-83.627808, 32.848732], [-83.628437, 32.849288], [-83.629077, 32.849845], [-83.629933, 32.850595], [-83.630797, 32.85135], [-83.631225, 32.85173], [-83.631878, 32.8523], [-83.632322, 32.852682], [-83.632985, 32.853258], [-83.633437, 32.853632], [-83.633907, 32.853972], [-83.634395, 32.854278], [-83.634898, 32.854557], [-83.635403, 32.854812], [-83.63589, 32.85506], [-83.63638, 32.855277], [-83.636895, 32.855425], [-83.637677, 32.855492], [-83.63845, 32.855395], [-83.639177, 32.855145], [-83.639855, 32.854777], [-83.640285, 32.854497], [-83.640687, 32.854183], [-83.641032, 32.853828], [-83.641287, 32.85341], [-83.641453, 32.852943], [-83.641603, 32.852452], [-83.641762, 32.851958], [-83.641912, 32.851468], [-83.642048, 32.850977], [-83.642155, 32.850482], [-83.642232, 32.84998], [-83.642285, 32.849473], [-83.64235, 32.848698], [-83.642403, 32.848173], [-83.642468, 32.847392], [-83.64253, 32.846877], [-83.642617, 32.84636], [-83.642732, 32.845847], [-83.64291, 32.845345], [-83.643145, 32.844858], [-83.643427, 32.84439], [-83.643723, 32.843945], [-83.644045, 32.843515], [-83.644867, 32.842492], [-83.64533, 32.841905], [-83.645782, 32.841293], [-83.646788, 32.840018], [-83.647143, 32.839577], [-83.647488, 32.83914], [-83.64784, 32.838705], [-83.648723, 32.837603], [-83.64927, 32.836948], [-83.649647, 32.836512], [-83.650382, 32.83561], [-83.651113, 32.83468], [-83.652223, 32.833297], [-83.652605, 32.832838], [-83.65297, 32.832372], [-83.653352, 32.831922], [-83.653728, 32.831473], [-83.654095, 32.83102], [-83.654652, 32.830335], [-83.655022, 32.829888], [-83.655788, 32.829038], [-83.656142, 32.828663], [-83.656695, 32.828192], [-83.657272, 32.827815], [-83.657807, 32.827478], [-83.658273, 32.827172], [-83.658592, 32.826668], [-83.658637, 32.826203]]}, "properties": {"filename": "osm-traces-page-94.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/2583340", "track.name": "dublin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Various central Georgia traces (uBlox)", "times": ["2018-01-23 18:32:29+00:00", "2018-01-23 18:32:31+00:00", "2018-01-23 18:32:33+00:00", "2018-01-23 18:32:35+00:00", "2018-01-23 18:32:37+00:00", "2018-01-23 18:32:39+00:00", "2018-01-23 18:32:43+00:00", "2018-01-23 18:32:45+00:00", "2018-01-23 18:32:47+00:00", "2018-01-23 18:32:49+00:00", "2018-01-23 18:32:51+00:00", "2018-01-23 18:32:53+00:00", "2018-01-23 18:32:56+00:00", "2018-01-23 18:32:59+00:00", "2018-01-23 18:33:01+00:00", "2018-01-23 18:33:03+00:00", "2018-01-23 18:33:05+00:00", "2018-01-23 18:33:07+00:00", "2018-01-23 18:33:09+00:00", "2018-01-23 18:33:11+00:00", "2018-01-23 18:33:13+00:00", "2018-01-23 18:33:15+00:00", "2018-01-23 18:33:17+00:00", "2018-01-23 18:33:19+00:00", "2018-01-23 18:33:21+00:00", "2018-01-23 18:33:23+00:00", "2018-01-23 18:33:27+00:00", "2018-01-23 18:33:29+00:00", "2018-01-23 18:33:31+00:00", "2018-01-23 18:33:33+00:00", "2018-01-23 18:33:36+00:00", "2018-01-23 18:33:39+00:00", "2018-01-23 18:33:43+00:00", "2018-01-23 18:33:47+00:00", "2018-01-23 18:33:49+00:00", "2018-01-23 18:33:52+00:00", "2018-01-23 18:33:54+00:00", "2018-01-23 18:33:57+00:00", "2018-01-23 18:33:59+00:00", "2018-01-23 18:34:01+00:00", "2018-01-23 18:34:03+00:00", "2018-01-23 18:34:05+00:00", "2018-01-23 18:34:07+00:00", "2018-01-23 18:34:09+00:00", "2018-01-23 18:34:11+00:00", "2018-01-23 18:34:13+00:00", "2018-01-23 18:34:16+00:00", "2018-01-23 18:34:19+00:00", "2018-01-23 18:34:22+00:00", "2018-01-23 18:34:25+00:00", "2018-01-23 18:34:27+00:00", "2018-01-23 18:34:29+00:00", "2018-01-23 18:34:31+00:00", "2018-01-23 18:34:33+00:00", "2018-01-23 18:34:35+00:00", "2018-01-23 18:34:37+00:00", "2018-01-23 18:34:39+00:00", "2018-01-23 18:34:41+00:00", "2018-01-23 18:34:43+00:00", "2018-01-23 18:34:45+00:00", "2018-01-23 18:34:47+00:00", "2018-01-23 18:34:49+00:00", "2018-01-23 18:34:52+00:00", "2018-01-23 18:34:54+00:00", "2018-01-23 18:34:57+00:00", "2018-01-23 18:34:59+00:00", "2018-01-23 18:35:01+00:00", "2018-01-23 18:35:03+00:00", "2018-01-23 18:35:05+00:00", "2018-01-23 18:35:07+00:00", "2018-01-23 18:35:09+00:00", "2018-01-23 18:35:11+00:00", "2018-01-23 18:35:13+00:00", "2018-01-23 18:35:18+00:00", "2018-01-23 18:35:21+00:00", "2018-01-23 18:35:24+00:00", "2018-01-23 18:35:30+00:00", "2018-01-23 18:35:32+00:00", "2018-01-23 18:35:34+00:00", "2018-01-23 18:35:36+00:00", "2018-01-23 18:35:41+00:00", "2018-01-23 18:35:44+00:00", "2018-01-23 18:35:46+00:00", "2018-01-23 18:35:50+00:00", "2018-01-23 18:35:54+00:00", "2018-01-23 18:36:00+00:00", "2018-01-23 18:36:02+00:00", "2018-01-23 18:36:04+00:00", "2018-01-23 18:36:06+00:00", "2018-01-23 18:36:08+00:00", "2018-01-23 18:36:10+00:00", "2018-01-23 18:36:13+00:00", "2018-01-23 18:36:15+00:00", "2018-01-23 18:36:19+00:00", "2018-01-23 18:36:21+00:00", "2018-01-23 18:36:24+00:00", "2018-01-23 18:36:27+00:00", "2018-01-23 18:36:30+00:00", "2018-01-23 18:36:33+00:00", "2018-01-23 18:36:37+00:00", "2018-01-23 18:36:41+00:00"]}}, {"type": "Feature", "id": "trace#127", "geometry": {"type": "LineString", "coordinates": [[-83.659413, 32.825878], [-83.660282, 32.825878], [-83.660845, 32.825867], [-83.661445, 32.825863], [-83.6621, 32.825868], [-83.66271, 32.825887], [-83.663277, 32.825938], [-83.66398, 32.825993], [-83.664783, 32.826002], [-83.66566, 32.82601], [-83.666348, 32.826018], [-83.667515, 32.82603], [-83.668682, 32.826047], [-83.670028, 32.826068], [-83.671405, 32.826098], [-83.672753, 32.82613], [-83.673643, 32.826157], [-83.674332, 32.826168], [-83.675188, 32.826188], [-83.676067, 32.826212], [-83.676657, 32.826218], [-83.677263, 32.826165], [-83.677812, 32.825985], [-83.67842, 32.825605], [-83.678975, 32.825255], [-83.679902, 32.824787], [-83.680475, 32.824503], [-83.680932, 32.824268], [-83.681395, 32.824025], [-83.681945, 32.823747], [-83.682563, 32.823448], [-83.6835, 32.822967], [-83.684168, 32.822612], [-83.684667, 32.82235], [-83.68535, 32.82201], [-83.685895, 32.821757], [-83.686433, 32.821555], [-83.686947, 32.821385], [-83.687755, 32.82116], [-83.688312, 32.821035], [-83.688905, 32.820912], [-83.689553, 32.820775], [-83.690152, 32.820655], [-83.690748, 32.82059], [-83.691285, 32.820567], [-83.691875, 32.820555], [-83.692517, 32.82054], [-83.693398, 32.820532], [-83.69402, 32.820567], [-83.694607, 32.820682], [-83.695347, 32.820958], [-83.695932, 32.821187], [-83.696947, 32.821588], [-83.698878, 32.822357], [-83.699553, 32.822632], [-83.700492, 32.823007], [-83.70169, 32.82349], [-83.702373, 32.823767], [-83.703483, 32.824212], [-83.704127, 32.824462], [-83.704748, 32.824707], [-83.705397, 32.824888], [-83.706495, 32.825082], [-83.707343, 32.825233], [-83.708288, 32.825403], [-83.709015, 32.825528], [-83.709615, 32.825628], [-83.710435, 32.825767], [-83.710983, 32.825823], [-83.711653, 32.825767], [-83.712315, 32.825683], [-83.71286, 32.82573], [-83.713447, 32.82543], [-83.714018, 32.825135], [-83.71476, 32.82489], [-83.715698, 32.824547], [-83.716258, 32.82439], [-83.71756, 32.824195], [-83.718193, 32.824098], [-83.718923, 32.823982], [-83.719533, 32.823838], [-83.720137, 32.8236], [-83.720727, 32.823317], [-83.721532, 32.822932], [-83.722105, 32.822622]]}, "properties": {"filename": "osm-traces-page-94.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/2583340", "track.name": "dublin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Various central Georgia traces (uBlox)", "times": ["2018-01-23 18:36:50+00:00", "2018-01-23 18:36:55+00:00", "2018-01-23 18:36:58+00:00", "2018-01-23 18:37:02+00:00", "2018-01-23 18:37:11+00:00", "2018-01-23 18:37:16+00:00", "2018-01-23 18:37:20+00:00", "2018-01-23 18:37:24+00:00", "2018-01-23 18:37:28+00:00", "2018-01-23 18:37:32+00:00", "2018-01-23 18:37:35+00:00", "2018-01-23 18:37:40+00:00", "2018-01-23 18:37:45+00:00", "2018-01-23 18:37:51+00:00", "2018-01-23 18:37:57+00:00", "2018-01-23 18:38:03+00:00", "2018-01-23 18:38:07+00:00", "2018-01-23 18:38:10+00:00", "2018-01-23 18:38:14+00:00", "2018-01-23 18:38:19+00:00", "2018-01-23 18:38:25+00:00", "2018-01-23 18:38:39+00:00", "2018-01-23 18:38:44+00:00", "2018-01-23 18:38:49+00:00", "2018-01-23 18:38:53+00:00", "2018-01-23 18:39:00+00:00", "2018-01-23 18:39:06+00:00", "2018-01-23 18:39:14+00:00", "2018-01-23 18:39:34+00:00", "2018-01-23 18:39:40+00:00", "2018-01-23 18:39:45+00:00", "2018-01-23 18:39:51+00:00", "2018-01-23 18:39:55+00:00", "2018-01-23 18:39:58+00:00", "2018-01-23 18:40:02+00:00", "2018-01-23 18:40:05+00:00", "2018-01-23 18:40:08+00:00", "2018-01-23 18:40:11+00:00", "2018-01-23 18:40:16+00:00", "2018-01-23 18:40:21+00:00", "2018-01-23 18:40:28+00:00", "2018-01-23 18:40:38+00:00", "2018-01-23 18:40:45+00:00", "2018-01-23 18:40:49+00:00", "2018-01-23 18:40:52+00:00", "2018-01-23 18:40:55+00:00", "2018-01-23 18:40:58+00:00", "2018-01-23 18:41:02+00:00", "2018-01-23 18:41:05+00:00", "2018-01-23 18:41:08+00:00", "2018-01-23 18:41:12+00:00", "2018-01-23 18:41:15+00:00", "2018-01-23 18:41:20+00:00", "2018-01-23 18:41:29+00:00", "2018-01-23 18:41:32+00:00", "2018-01-23 18:41:36+00:00", "2018-01-23 18:41:41+00:00", "2018-01-23 18:41:44+00:00", "2018-01-23 18:41:49+00:00", "2018-01-23 18:41:52+00:00", "2018-01-23 18:41:55+00:00", "2018-01-23 18:41:58+00:00", "2018-01-23 18:42:03+00:00", "2018-01-23 18:42:07+00:00", "2018-01-23 18:42:12+00:00", "2018-01-23 18:42:23+00:00", "2018-01-23 18:43:02+00:00", "2018-01-23 18:43:10+00:00", "2018-01-23 18:43:14+00:00", "2018-01-23 18:43:18+00:00", "2018-01-23 18:43:22+00:00", "2018-01-23 18:43:28+00:00", "2018-01-23 18:43:46+00:00", "2018-01-23 18:43:50+00:00", "2018-01-23 18:43:54+00:00", "2018-01-23 18:43:59+00:00", "2018-01-23 18:44:02+00:00", "2018-01-23 18:44:09+00:00", "2018-01-23 18:44:13+00:00", "2018-01-23 18:44:17+00:00", "2018-01-23 18:44:20+00:00", "2018-01-23 18:44:23+00:00", "2018-01-23 18:44:26+00:00", "2018-01-23 18:44:30+00:00", "2018-01-23 18:44:33+00:00"]}}, {"type": "Feature", "id": "trace#128", "geometry": {"type": "LineString", "coordinates": [[-83.722193, 32.802372], [-83.72194, 32.801805], [-83.721717, 32.801238], [-83.721513, 32.80067], [-83.721338, 32.800095], [-83.721193, 32.799517], [-83.721077, 32.798947], [-83.720998, 32.798375], [-83.720927, 32.797518], [-83.72087, 32.796945], [-83.720815, 32.796367], [-83.720665, 32.794905], [-83.720553, 32.79375], [-83.720502, 32.793185], [-83.720417, 32.792335], [-83.72036, 32.79177], [-83.720295, 32.791203], [-83.720178, 32.790053], [-83.720115, 32.789472], [-83.720057, 32.788892], [-83.719985, 32.788307], [-83.719875, 32.787722], [-83.719713, 32.787135], [-83.719502, 32.786573], [-83.719243, 32.786027], [-83.71894, 32.785502], [-83.718452, 32.784745], [-83.718128, 32.784237], [-83.717807, 32.783727], [-83.717482, 32.783218], [-83.716677, 32.781945], [-83.716195, 32.781173], [-83.715868, 32.780655], [-83.715368, 32.779872], [-83.715038, 32.779347], [-83.714543, 32.778552], [-83.714038, 32.777762], [-83.713552, 32.776978], [-83.713222, 32.776457], [-83.712888, 32.775935], [-83.712557, 32.77541], [-83.712227, 32.774882], [-83.711758, 32.774127]]}, "properties": {"filename": "osm-traces-page-94.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/2567590", "track.name": "navilock.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "December traces 2 (Navilock GPS)", "times": ["2017-12-29 00:56:31+00:00", "2017-12-29 00:56:33+00:00", "2017-12-29 00:56:35+00:00", "2017-12-29 00:56:37+00:00", "2017-12-29 00:56:39+00:00", "2017-12-29 00:56:41+00:00", "2017-12-29 00:56:43+00:00", "2017-12-29 00:56:45+00:00", "2017-12-29 00:56:48+00:00", "2017-12-29 00:56:50+00:00", "2017-12-29 00:56:52+00:00", "2017-12-29 00:56:57+00:00", "2017-12-29 00:57:01+00:00", "2017-12-29 00:57:03+00:00", "2017-12-29 00:57:06+00:00", "2017-12-29 00:57:08+00:00", "2017-12-29 00:57:09+00:00", "2017-12-29 00:57:14+00:00", "2017-12-29 00:57:16+00:00", "2017-12-29 00:57:18+00:00", "2017-12-29 00:57:20+00:00", "2017-12-29 00:57:22+00:00", "2017-12-29 00:57:24+00:00", "2017-12-29 00:57:26+00:00", "2017-12-29 00:57:28+00:00", "2017-12-29 00:57:30+00:00", "2017-12-29 00:57:33+00:00", "2017-12-29 00:57:35+00:00", "2017-12-29 00:57:37+00:00", "2017-12-29 00:57:39+00:00", "2017-12-29 00:57:44+00:00", "2017-12-29 00:57:47+00:00", "2017-12-29 00:57:49+00:00", "2017-12-29 00:57:52+00:00", "2017-12-29 00:57:54+00:00", "2017-12-29 00:57:57+00:00", "2017-12-29 00:58:00+00:00", "2017-12-29 00:58:03+00:00", "2017-12-29 00:58:05+00:00", "2017-12-29 00:58:07+00:00", "2017-12-29 00:58:09+00:00", "2017-12-29 00:58:12+00:00", "2017-12-29 00:58:14+00:00"]}}, {"type": "Feature", "id": "trace#129", "geometry": {"type": "LineString", "coordinates": [[-83.701553, 32.816135], [-83.703148, 32.816225], [-83.703935, 32.816263], [-83.704697, 32.816303], [-83.705658, 32.816362], [-83.706658, 32.816408], [-83.70753, 32.816452], [-83.708273, 32.816492], [-83.70905, 32.816527], [-83.709855, 32.816538], [-83.710525, 32.816522], [-83.711235, 32.81647], [-83.711972, 32.816375], [-83.712712, 32.816243], [-83.713442, 32.816073], [-83.714148, 32.81587], [-83.714827, 32.815635], [-83.715482, 32.815365], [-83.716117, 32.815065], [-83.71727, 32.814443], [-83.717932, 32.814077], [-83.718657, 32.813677], [-83.719207, 32.813372], [-83.719917, 32.812983], [-83.720412, 32.812702], [-83.72108, 32.812335], [-83.721775, 32.811957]]}, "properties": {"filename": "osm-traces-page-94.gpx", "track.number": 3, "track.link": "/user/Chris%20Lawrence/traces/2560844", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "December traces (Amod)", "times": ["2017-12-11 21:18:10+00:00", "2017-12-11 21:18:16+00:00", "2017-12-11 21:18:19+00:00", "2017-12-11 21:18:22+00:00", "2017-12-11 21:18:26+00:00", "2017-12-11 21:18:31+00:00", "2017-12-11 21:18:37+00:00", "2017-12-11 21:18:55+00:00", "2017-12-11 21:19:00+00:00", "2017-12-11 21:19:04+00:00", "2017-12-11 21:19:07+00:00", "2017-12-11 21:19:10+00:00", "2017-12-11 21:19:13+00:00", "2017-12-11 21:19:16+00:00", "2017-12-11 21:19:19+00:00", "2017-12-11 21:19:22+00:00", "2017-12-11 21:19:25+00:00", "2017-12-11 21:19:28+00:00", "2017-12-11 21:19:31+00:00", "2017-12-11 21:19:37+00:00", "2017-12-11 21:19:41+00:00", "2017-12-11 21:19:46+00:00", "2017-12-11 21:19:50+00:00", "2017-12-11 21:19:59+00:00", "2017-12-11 21:20:20+00:00", "2017-12-11 21:20:26+00:00", "2017-12-11 21:20:31+00:00"]}}, {"type": "Feature", "id": "trace#130", "geometry": {"type": "LineString", "coordinates": [[-83.722293, 32.802465], [-83.722032, 32.801888], [-83.721795, 32.801305], [-83.72158, 32.800717], [-83.721398, 32.80012], [-83.721245, 32.799518], [-83.721115, 32.798913], [-83.721015, 32.798305], [-83.720943, 32.797692], [-83.72085, 32.79677], [-83.720687, 32.79524], [-83.720618, 32.79463], [-83.720557, 32.794018], [-83.720508, 32.793405], [-83.720468, 32.79279], [-83.72041, 32.792177], [-83.720247, 32.790643], [-83.72012, 32.789412], [-83.720058, 32.788795], [-83.719975, 32.788178], [-83.719847, 32.78757], [-83.719663, 32.786973], [-83.719432, 32.786392], [-83.719148, 32.785828], [-83.718303, 32.784468], [-83.71796, 32.783927], [-83.717618, 32.783378], [-83.716567, 32.781725], [-83.716045, 32.780893], [-83.715347, 32.779793], [-83.715002, 32.779242], [-83.714475, 32.778417], [-83.714125, 32.777865], [-83.713778, 32.777312], [-83.713255, 32.776485], [-83.712903, 32.775937], [-83.712208, 32.774832], [-83.711863, 32.77428]]}, "properties": {"filename": "osm-traces-page-94.gpx", "track.number": 4, "track.link": "/user/Chris%20Lawrence/traces/2560843", "track.name": "navilock.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "December traces (Navilock GPS)", "times": ["2017-12-09 23:00:58+00:00", "2017-12-09 23:01:00+00:00", "2017-12-09 23:01:02+00:00", "2017-12-09 23:01:04+00:00", "2017-12-09 23:01:06+00:00", "2017-12-09 23:01:08+00:00", "2017-12-09 23:01:10+00:00", "2017-12-09 23:01:12+00:00", "2017-12-09 23:01:14+00:00", "2017-12-09 23:01:17+00:00", "2017-12-09 23:01:22+00:00", "2017-12-09 23:01:24+00:00", "2017-12-09 23:01:26+00:00", "2017-12-09 23:01:28+00:00", "2017-12-09 23:01:30+00:00", "2017-12-09 23:01:32+00:00", "2017-12-09 23:01:37+00:00", "2017-12-09 23:01:41+00:00", "2017-12-09 23:01:43+00:00", "2017-12-09 23:01:45+00:00", "2017-12-09 23:01:47+00:00", "2017-12-09 23:01:49+00:00", "2017-12-09 23:01:51+00:00", "2017-12-09 23:01:53+00:00", "2017-12-09 23:01:58+00:00", "2017-12-09 23:02:00+00:00", "2017-12-09 23:02:02+00:00", "2017-12-09 23:02:08+00:00", "2017-12-09 23:02:11+00:00", "2017-12-09 23:02:15+00:00", "2017-12-09 23:02:17+00:00", "2017-12-09 23:02:20+00:00", "2017-12-09 23:02:22+00:00", "2017-12-09 23:02:24+00:00", "2017-12-09 23:02:27+00:00", "2017-12-09 23:02:29+00:00", "2017-12-09 23:02:33+00:00", "2017-12-09 23:02:35+00:00"]}}, {"type": "Feature", "id": "trace#131", "geometry": {"type": "LineString", "coordinates": [[-83.711358, 32.774327], [-83.712742, 32.776488], [-83.713777, 32.778112], [-83.71412, 32.778653], [-83.714463, 32.779195], [-83.71516, 32.780273], [-83.715675, 32.781087], [-83.71602, 32.781628], [-83.716712, 32.782708], [-83.717568, 32.784065], [-83.718255, 32.785157], [-83.718592, 32.785703], [-83.71891, 32.786257], [-83.719185, 32.786827], [-83.7194, 32.78741], [-83.719557, 32.788007], [-83.719653, 32.788612], [-83.719742, 32.789532], [-83.719865, 32.790755], [-83.719992, 32.791985], [-83.720145, 32.793525], [-83.720208, 32.794138], [-83.720275, 32.794747], [-83.720338, 32.795358], [-83.720405, 32.795972], [-83.720495, 32.796892], [-83.720562, 32.797503], [-83.720635, 32.798115], [-83.720737, 32.798725], [-83.720865, 32.799332], [-83.721023, 32.799932], [-83.721207, 32.800523], [-83.72142, 32.801107], [-83.721652, 32.801683], [-83.721898, 32.802255], [-83.722155, 32.802807]]}, "properties": {"filename": "osm-traces-page-94.gpx", "track.number": 6, "track.link": "/user/Chris%20Lawrence/traces/2555602", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "November-December traces (Amod)", "times": ["2017-11-28 21:03:34+00:00", "2017-11-28 21:03:42+00:00", "2017-11-28 21:03:48+00:00", "2017-11-28 21:03:50+00:00", "2017-11-28 21:03:52+00:00", "2017-11-28 21:03:56+00:00", "2017-11-28 21:03:59+00:00", "2017-11-28 21:04:01+00:00", "2017-11-28 21:04:05+00:00", "2017-11-28 21:04:10+00:00", "2017-11-28 21:04:14+00:00", "2017-11-28 21:04:16+00:00", "2017-11-28 21:04:18+00:00", "2017-11-28 21:04:20+00:00", "2017-11-28 21:04:22+00:00", "2017-11-28 21:04:24+00:00", "2017-11-28 21:04:26+00:00", "2017-11-28 21:04:29+00:00", "2017-11-28 21:04:33+00:00", "2017-11-28 21:04:37+00:00", "2017-11-28 21:04:42+00:00", "2017-11-28 21:04:44+00:00", "2017-11-28 21:04:46+00:00", "2017-11-28 21:04:48+00:00", "2017-11-28 21:04:50+00:00", "2017-11-28 21:04:53+00:00", "2017-11-28 21:04:55+00:00", "2017-11-28 21:04:57+00:00", "2017-11-28 21:04:59+00:00", "2017-11-28 21:05:01+00:00", "2017-11-28 21:05:03+00:00", "2017-11-28 21:05:05+00:00", "2017-11-28 21:05:07+00:00", "2017-11-28 21:05:09+00:00", "2017-11-28 21:05:11+00:00", "2017-11-28 21:05:13+00:00"]}}, {"type": "Feature", "id": "trace#132", "geometry": {"type": "LineString", "coordinates": [[-83.655743, 32.817745], [-83.655725, 32.818697], [-83.655722, 32.819147], [-83.655735, 32.81978], [-83.655798, 32.820413], [-83.655922, 32.821032], [-83.656223, 32.821892], [-83.6564, 32.822357], [-83.656667, 32.823093], [-83.656837, 32.823597], [-83.656973, 32.824108], [-83.657055, 32.824638], [-83.657083, 32.825175], [-83.657055, 32.825712], [-83.656967, 32.826243], [-83.656823, 32.82677], [-83.656632, 32.827288], [-83.656383, 32.82779], [-83.656082, 32.828275], [-83.655733, 32.828743], [-83.654973, 32.829672], [-83.654593, 32.830143], [-83.653848, 32.831075], [-83.652737, 32.832445], [-83.652377, 32.832898], [-83.651297, 32.834232], [-83.650925, 32.83468], [-83.650547, 32.835123], [-83.650165, 32.835565], [-83.649795, 32.836015], [-83.648498, 32.837615], [-83.647942, 32.838313], [-83.647382, 32.839005], [-83.64683, 32.83969], [-83.646468, 32.840145], [-83.645915, 32.840828], [-83.645547, 32.84128], [-83.644998, 32.84196], [-83.644288, 32.842847], [-83.643765, 32.843503], [-83.643427, 32.84395], [-83.643123, 32.84442], [-83.642862, 32.844902], [-83.642635, 32.84539], [-83.642433, 32.845887], [-83.642272, 32.846402], [-83.642168, 32.846933], [-83.642098, 32.84747], [-83.642058, 32.848268], [-83.64202, 32.84905], [-83.641988, 32.849562], [-83.641942, 32.85007], [-83.641862, 32.85057], [-83.641755, 32.851055], [-83.641625, 32.851532], [-83.641477, 32.851995], [-83.641278, 32.852435], [-83.641013, 32.852847], [-83.64069, 32.853222], [-83.640317, 32.853557], [-83.639903, 32.853843], [-83.639242, 32.854178], [-83.638542, 32.854405], [-83.637833, 32.854525], [-83.637098, 32.854533], [-83.636362, 32.854433], [-83.63563, 32.854207], [-83.634502, 32.853723], [-83.633862, 32.853435], [-83.633238, 32.853088], [-83.632617, 32.852672], [-83.6322, 32.852357], [-83.6318, 32.852017], [-83.631213, 32.8515], [-83.630635, 32.850993], [-83.63008, 32.850503], [-83.629592, 32.850075], [-83.629102, 32.84964], [-83.628605, 32.849185], [-83.628228, 32.848798], [-83.627673, 32.848038], [-83.627293, 32.847462], [-83.626638, 32.847577], [-83.626167, 32.848155], [-83.625775, 32.8486], [-83.625392, 32.84893], [-83.624947, 32.849217], [-83.624487, 32.84945], [-83.624197, 32.849838], [-83.62462, 32.85021], [-83.62517, 32.850045], [-83.625032, 32.849608], [-83.625012, 32.850068], [-83.624475, 32.850047], [-83.624107, 32.84967], [-83.623485, 32.84965], [-83.622922, 32.849842], [-83.622428, 32.850072], [-83.621977, 32.850352], [-83.621588, 32.850677], [-83.621062, 32.851038]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/2292854", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Fall Line Freeway, Gray Bypass (Amod)", "times": ["2016-10-21 19:17:55+00:00", "2016-10-21 19:17:59+00:00", "2016-10-21 19:18:01+00:00", "2016-10-21 19:18:04+00:00", "2016-10-21 19:18:07+00:00", "2016-10-21 19:18:10+00:00", "2016-10-21 19:18:14+00:00", "2016-10-21 19:18:16+00:00", "2016-10-21 19:18:19+00:00", "2016-10-21 19:18:21+00:00", "2016-10-21 19:18:23+00:00", "2016-10-21 19:18:25+00:00", "2016-10-21 19:18:27+00:00", "2016-10-21 19:18:29+00:00", "2016-10-21 19:18:31+00:00", "2016-10-21 19:18:33+00:00", "2016-10-21 19:18:35+00:00", "2016-10-21 19:18:37+00:00", "2016-10-21 19:18:39+00:00", "2016-10-21 19:18:41+00:00", "2016-10-21 19:18:45+00:00", "2016-10-21 19:18:47+00:00", "2016-10-21 19:18:51+00:00", "2016-10-21 19:18:57+00:00", "2016-10-21 19:18:59+00:00", "2016-10-21 19:19:05+00:00", "2016-10-21 19:19:07+00:00", "2016-10-21 19:19:09+00:00", "2016-10-21 19:19:11+00:00", "2016-10-21 19:19:13+00:00", "2016-10-21 19:19:20+00:00", "2016-10-21 19:19:23+00:00", "2016-10-21 19:19:26+00:00", "2016-10-21 19:19:29+00:00", "2016-10-21 19:19:31+00:00", "2016-10-21 19:19:34+00:00", "2016-10-21 19:19:36+00:00", "2016-10-21 19:19:39+00:00", "2016-10-21 19:19:43+00:00", "2016-10-21 19:19:46+00:00", "2016-10-21 19:19:48+00:00", "2016-10-21 19:19:50+00:00", "2016-10-21 19:19:52+00:00", "2016-10-21 19:19:54+00:00", "2016-10-21 19:19:56+00:00", "2016-10-21 19:19:58+00:00", "2016-10-21 19:20:00+00:00", "2016-10-21 19:20:02+00:00", "2016-10-21 19:20:05+00:00", "2016-10-21 19:20:08+00:00", "2016-10-21 19:20:10+00:00", "2016-10-21 19:20:12+00:00", "2016-10-21 19:20:14+00:00", "2016-10-21 19:20:16+00:00", "2016-10-21 19:20:18+00:00", "2016-10-21 19:20:20+00:00", "2016-10-21 19:20:22+00:00", "2016-10-21 19:20:24+00:00", "2016-10-21 19:20:26+00:00", "2016-10-21 19:20:28+00:00", "2016-10-21 19:20:30+00:00", "2016-10-21 19:20:33+00:00", "2016-10-21 19:20:36+00:00", "2016-10-21 19:20:39+00:00", "2016-10-21 19:20:42+00:00", "2016-10-21 19:20:45+00:00", "2016-10-21 19:20:48+00:00", "2016-10-21 19:20:53+00:00", "2016-10-21 19:20:56+00:00", "2016-10-21 19:20:59+00:00", "2016-10-21 19:21:02+00:00", "2016-10-21 19:21:04+00:00", "2016-10-21 19:21:06+00:00", "2016-10-21 19:21:09+00:00", "2016-10-21 19:21:12+00:00", "2016-10-21 19:21:15+00:00", "2016-10-21 19:21:18+00:00", "2016-10-21 19:21:22+00:00", "2016-10-21 19:21:39+00:00", "2016-10-21 19:21:44+00:00", "2016-10-21 19:21:51+00:00", "2016-10-21 19:21:59+00:00", "2016-10-21 19:22:11+00:00", "2016-10-21 19:22:16+00:00", "2016-10-21 19:22:20+00:00", "2016-10-21 19:22:23+00:00", "2016-10-21 19:22:26+00:00", "2016-10-21 19:22:29+00:00", "2016-10-21 19:22:36+00:00", "2016-10-21 19:22:42+00:00", "2016-10-21 19:22:54+00:00", "2016-10-21 19:23:09+00:00", "2016-10-21 20:38:25+00:00", "2016-10-21 20:38:40+00:00", "2016-10-21 20:40:31+00:00", "2016-10-21 20:40:37+00:00", "2016-10-21 20:40:41+00:00", "2016-10-21 20:40:45+00:00", "2016-10-21 20:40:57+00:00", "2016-10-21 20:41:40+00:00", "2016-10-21 20:41:46+00:00"]}}, {"type": "Feature", "id": "trace#133", "geometry": {"type": "LineString", "coordinates": [[-83.722162, 32.80218], [-83.721903, 32.801608], [-83.721665, 32.801032], [-83.721458, 32.800447], [-83.721285, 32.799853], [-83.721138, 32.799257], [-83.72102, 32.798657], [-83.720928, 32.798052], [-83.720858, 32.797443], [-83.720802, 32.796833], [-83.72074, 32.796225], [-83.720675, 32.795618], [-83.720582, 32.79471], [-83.720462, 32.793497], [-83.720337, 32.79228], [-83.720235, 32.791367], [-83.720115, 32.790143], [-83.72002, 32.789223], [-83.71996, 32.788608], [-83.719878, 32.787997], [-83.719762, 32.787392], [-83.719595, 32.786797], [-83.71937, 32.786218], [-83.719088, 32.78566], [-83.71876, 32.785118], [-83.718418, 32.784582], [-83.71791, 32.783773], [-83.716882, 32.782155], [-83.716522, 32.781628], [-83.716017, 32.780822], [-83.715677, 32.780283], [-83.715332, 32.779743], [-83.714657, 32.778667], [-83.71381, 32.777317], [-83.713127, 32.776238], [-83.712625, 32.775428], [-83.712113, 32.774618]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 0, "track.link": "/user/Chris%20Lawrence/traces/2292854", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 4, "track.description": "Fall Line Freeway, Gray Bypass (Amod)", "times": ["2016-10-21 22:23:42+00:00", "2016-10-21 22:23:44+00:00", "2016-10-21 22:23:46+00:00", "2016-10-21 22:23:48+00:00", "2016-10-21 22:23:50+00:00", "2016-10-21 22:23:52+00:00", "2016-10-21 22:23:54+00:00", "2016-10-21 22:23:56+00:00", "2016-10-21 22:23:58+00:00", "2016-10-21 22:24:00+00:00", "2016-10-21 22:24:02+00:00", "2016-10-21 22:24:04+00:00", "2016-10-21 22:24:07+00:00", "2016-10-21 22:24:11+00:00", "2016-10-21 22:24:15+00:00", "2016-10-21 22:24:18+00:00", "2016-10-21 22:24:22+00:00", "2016-10-21 22:24:25+00:00", "2016-10-21 22:24:27+00:00", "2016-10-21 22:24:29+00:00", "2016-10-21 22:24:31+00:00", "2016-10-21 22:24:33+00:00", "2016-10-21 22:24:35+00:00", "2016-10-21 22:24:37+00:00", "2016-10-21 22:24:39+00:00", "2016-10-21 22:24:41+00:00", "2016-10-21 22:24:44+00:00", "2016-10-21 22:24:50+00:00", "2016-10-21 22:24:52+00:00", "2016-10-21 22:24:55+00:00", "2016-10-21 22:24:57+00:00", "2016-10-21 22:24:59+00:00", "2016-10-21 22:25:03+00:00", "2016-10-21 22:25:08+00:00", "2016-10-21 22:25:12+00:00", "2016-10-21 22:25:15+00:00", "2016-10-21 22:25:18+00:00"]}}, {"type": "Feature", "id": "trace#134", "geometry": {"type": "LineString", "coordinates": [[-83.711457, 32.774268], [-83.711803, 32.774819], [-83.712675, 32.776192], [-83.713019, 32.776742], [-83.713712, 32.77784], [-83.714236, 32.778665], [-83.714579, 32.779212], [-83.714922, 32.779765], [-83.715444, 32.780586], [-83.716134, 32.781686], [-83.716827, 32.782784], [-83.717342, 32.78361], [-83.718214, 32.784987], [-83.718556, 32.785541], [-83.718884, 32.786103], [-83.719168, 32.786679], [-83.719387, 32.787273], [-83.71955, 32.787877], [-83.719658, 32.788486], [-83.719761, 32.789408], [-83.719824, 32.790027], [-83.719882, 32.790647], [-83.719948, 32.791268], [-83.720052, 32.7922], [-83.720278, 32.794378], [-83.720378, 32.795307], [-83.720537, 32.796854], [-83.720604, 32.797473], [-83.72068, 32.798091], [-83.720792, 32.798707], [-83.720932, 32.799316], [-83.721097, 32.799921], [-83.721289, 32.800517], [-83.721513, 32.801107], [-83.721769, 32.801688], [-83.721768, 32.801081], [-83.72157, 32.800494], [-83.7214, 32.799901], [-83.72125, 32.799305], [-83.721131, 32.798698], [-83.721043, 32.798092], [-83.720976, 32.797495], [-83.720761, 32.795377], [-83.720663, 32.794472], [-83.720601, 32.793861], [-83.72044, 32.792351], [-83.720337, 32.79144], [-83.720212, 32.790219], [-83.72008, 32.788989], [-83.719995, 32.788378], [-83.719879, 32.787778], [-83.719712, 32.787175], [-83.719502, 32.786594], [-83.719251, 32.786034], [-83.71896, 32.785476], [-83.718631, 32.784934], [-83.718282, 32.784399], [-83.717419, 32.783043], [-83.716907, 32.782232], [-83.71606, 32.780879], [-83.715036, 32.779263], [-83.714186, 32.777914], [-83.713682, 32.777103]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 7, "track.link": "/user/Chris%20Lawrence/traces/2090178", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "October 2015-January 2015 traces (Garmin)", "times": ["2015-12-18 20:53:16+00:00", "2015-12-18 20:53:18+00:00", "2015-12-18 20:53:23+00:00", "2015-12-18 20:53:25+00:00", "2015-12-18 20:53:29+00:00", "2015-12-18 20:53:32+00:00", "2015-12-18 20:53:34+00:00", "2015-12-18 20:53:36+00:00", "2015-12-18 20:53:39+00:00", "2015-12-18 20:53:43+00:00", "2015-12-18 20:53:47+00:00", "2015-12-18 20:53:50+00:00", "2015-12-18 20:53:55+00:00", "2015-12-18 20:53:57+00:00", "2015-12-18 20:53:59+00:00", "2015-12-18 20:54:01+00:00", "2015-12-18 20:54:03+00:00", "2015-12-18 20:54:05+00:00", "2015-12-18 20:54:07+00:00", "2015-12-18 20:54:10+00:00", "2015-12-18 20:54:12+00:00", "2015-12-18 20:54:14+00:00", "2015-12-18 20:54:16+00:00", "2015-12-18 20:54:19+00:00", "2015-12-18 20:54:26+00:00", "2015-12-18 20:54:29+00:00", "2015-12-18 20:54:34+00:00", "2015-12-18 20:54:36+00:00", "2015-12-18 20:54:38+00:00", "2015-12-18 20:54:40+00:00", "2015-12-18 20:54:42+00:00", "2015-12-18 20:54:44+00:00", "2015-12-18 20:54:46+00:00", "2015-12-18 20:54:48+00:00", "2015-12-18 20:54:50+00:00", "2016-01-04 02:33:29+00:00", "2016-01-04 02:33:31+00:00", "2016-01-04 02:33:33+00:00", "2016-01-04 02:33:35+00:00", "2016-01-04 02:33:37+00:00", "2016-01-04 02:33:39+00:00", "2016-01-04 02:33:41+00:00", "2016-01-04 02:33:48+00:00", "2016-01-04 02:33:51+00:00", "2016-01-04 02:33:53+00:00", "2016-01-04 02:33:58+00:00", "2016-01-04 02:34:01+00:00", "2016-01-04 02:34:05+00:00", "2016-01-04 02:34:09+00:00", "2016-01-04 02:34:11+00:00", "2016-01-04 02:34:13+00:00", "2016-01-04 02:34:15+00:00", "2016-01-04 02:34:17+00:00", "2016-01-04 02:34:19+00:00", "2016-01-04 02:34:21+00:00", "2016-01-04 02:34:23+00:00", "2016-01-04 02:34:25+00:00", "2016-01-04 02:34:30+00:00", "2016-01-04 02:34:33+00:00", "2016-01-04 02:34:38+00:00", "2016-01-04 02:34:44+00:00", "2016-01-04 02:34:49+00:00", "2016-01-04 02:34:52+00:00"]}}, {"type": "Feature", "id": "trace#135", "geometry": {"type": "LineString", "coordinates": [[-83.711337, 32.774248], [-83.712033, 32.77535], [-83.712387, 32.775898], [-83.713782, 32.778093], [-83.714483, 32.779192], [-83.715003, 32.780015], [-83.71553, 32.780837], [-83.716227, 32.781938], [-83.71675, 32.782762], [-83.717443, 32.783863], [-83.718145, 32.784967], [-83.71849, 32.785518], [-83.718822, 32.786078], [-83.719113, 32.786652], [-83.719343, 32.787243], [-83.719517, 32.787848], [-83.719638, 32.788455], [-83.71975, 32.789378], [-83.719813, 32.79], [-83.719903, 32.790935], [-83.720035, 32.792185], [-83.720158, 32.793435], [-83.720222, 32.794058], [-83.720447, 32.79623], [-83.720572, 32.797472], [-83.720645, 32.798092], [-83.720748, 32.79871], [-83.720882, 32.79932], [-83.721042, 32.799927], [-83.72123, 32.800527], [-83.721448, 32.801118], [-83.7217, 32.8017], [-83.722112, 32.802563]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 8, "track.link": "/user/Chris%20Lawrence/traces/2090177", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "October 2015-January 2015 traces (Amod)", "times": ["2015-12-18 20:53:16+00:00", "2015-12-18 20:53:20+00:00", "2015-12-18 20:53:22+00:00", "2015-12-18 20:53:30+00:00", "2015-12-18 20:53:34+00:00", "2015-12-18 20:53:37+00:00", "2015-12-18 20:53:40+00:00", "2015-12-18 20:53:44+00:00", "2015-12-18 20:53:47+00:00", "2015-12-18 20:53:51+00:00", "2015-12-18 20:53:55+00:00", "2015-12-18 20:53:57+00:00", "2015-12-18 20:53:59+00:00", "2015-12-18 20:54:01+00:00", "2015-12-18 20:54:03+00:00", "2015-12-18 20:54:05+00:00", "2015-12-18 20:54:07+00:00", "2015-12-18 20:54:10+00:00", "2015-12-18 20:54:12+00:00", "2015-12-18 20:54:15+00:00", "2015-12-18 20:54:19+00:00", "2015-12-18 20:54:23+00:00", "2015-12-18 20:54:25+00:00", "2015-12-18 20:54:32+00:00", "2015-12-18 20:54:36+00:00", "2015-12-18 20:54:38+00:00", "2015-12-18 20:54:40+00:00", "2015-12-18 20:54:42+00:00", "2015-12-18 20:54:44+00:00", "2015-12-18 20:54:46+00:00", "2015-12-18 20:54:48+00:00", "2015-12-18 20:54:50+00:00", "2015-12-18 20:54:53+00:00"]}}, {"type": "Feature", "id": "trace#136", "geometry": {"type": "LineString", "coordinates": [[-83.720845, 32.812935], [-83.720721, 32.813378], [-83.720273, 32.813679], [-83.720289, 32.81321], [-83.720232, 32.812733], [-83.719495, 32.812964], [-83.718899, 32.813289], [-83.718404, 32.813564], [-83.717887, 32.813854], [-83.716801, 32.814442], [-83.71623, 32.814753], [-83.715632, 32.815052], [-83.714789, 32.815416], [-83.714105, 32.815674], [-83.713395, 32.815891], [-83.712681, 32.816065], [-83.711952, 32.816207], [-83.711204, 32.81631], [-83.710498, 32.816377], [-83.709941, 32.816404], [-83.709402, 32.816408], [-83.70814, 32.816371], [-83.706245, 32.816273], [-83.705437, 32.816206], [-83.704011, 32.816127], [-83.703003, 32.816072], [-83.70174, 32.81601], [-83.70102, 32.81597], [-83.700162, 32.815918], [-83.699042, 32.815863], [-83.698476, 32.815824], [-83.697903, 32.815792], [-83.695927, 32.815691], [-83.695313, 32.815657], [-83.69447, 32.815616], [-83.693189, 32.815543], [-83.692116, 32.815494], [-83.69155, 32.815464], [-83.690587, 32.815409], [-83.689997, 32.815381], [-83.689084, 32.815331], [-83.688318, 32.815293], [-83.687469, 32.815248], [-83.686598, 32.815193], [-83.685501, 32.815135], [-83.684825, 32.815101], [-83.683898, 32.81505], [-83.683168, 32.815014], [-83.682202, 32.814954], [-83.680511, 32.814866], [-83.67932, 32.8148], [-83.678421, 32.814761], [-83.677766, 32.814728], [-83.676813, 32.814692], [-83.675941, 32.814662], [-83.675168, 32.814645], [-83.674609, 32.814641], [-83.673755, 32.814618], [-83.673137, 32.814608], [-83.672243, 32.814588], [-83.67155, 32.81457], [-83.670664, 32.814552], [-83.670094, 32.814533], [-83.668872, 32.814508], [-83.667657, 32.81448], [-83.666675, 32.814456], [-83.665711, 32.814432], [-83.665036, 32.814418], [-83.664448, 32.814392], [-83.663829, 32.81436], [-83.663027, 32.814345], [-83.662282, 32.814324], [-83.661513, 32.814309], [-83.660808, 32.814307], [-83.660242, 32.814292], [-83.659642, 32.814254], [-83.659077, 32.81423], [-83.658378, 32.81419], [-83.657668, 32.814162], [-83.656951, 32.814118], [-83.656096, 32.814037], [-83.655367, 32.813984], [-83.654779, 32.813836], [-83.654437, 32.813421], [-83.654748, 32.812985], [-83.65537, 32.813092], [-83.655685, 32.813546], [-83.655713, 32.814159], [-83.655718, 32.814869], [-83.655738, 32.816095], [-83.655753, 32.81677], [-83.65575, 32.818156], [-83.655741, 32.819071], [-83.655749, 32.819731], [-83.655812, 32.820393], [-83.655941, 32.821041], [-83.656074, 32.821485], [-83.656236, 32.821937], [-83.656401, 32.82238], [-83.656791, 32.823482], [-83.656917, 32.823927]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 9, "track.link": "/user/Chris%20Lawrence/traces/2039571", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Central Georgia drive (Garmin)", "times": ["2015-09-11 19:21:12+00:00", "2015-09-11 19:22:30+00:00", "2015-09-11 19:22:49+00:00", "2015-09-11 19:23:06+00:00", "2015-09-11 19:24:20+00:00", "2015-09-11 19:24:27+00:00", "2015-09-11 19:24:31+00:00", "2015-09-11 19:24:34+00:00", "2015-09-11 19:24:37+00:00", "2015-09-11 19:24:43+00:00", "2015-09-11 19:24:46+00:00", "2015-09-11 19:24:49+00:00", "2015-09-11 19:24:53+00:00", "2015-09-11 19:24:56+00:00", "2015-09-11 19:24:59+00:00", "2015-09-11 19:25:02+00:00", "2015-09-11 19:25:05+00:00", "2015-09-11 19:25:08+00:00", "2015-09-11 19:25:11+00:00", "2015-09-11 19:25:14+00:00", "2015-09-11 19:25:19+00:00", "2015-09-11 19:26:01+00:00", "2015-09-11 19:26:13+00:00", "2015-09-11 19:26:17+00:00", "2015-09-11 19:26:23+00:00", "2015-09-11 19:26:27+00:00", "2015-09-11 19:26:32+00:00", "2015-09-11 19:26:35+00:00", "2015-09-11 19:26:39+00:00", "2015-09-11 19:26:47+00:00", "2015-09-11 19:27:33+00:00", "2015-09-11 19:27:37+00:00", "2015-09-11 19:27:48+00:00", "2015-09-11 19:27:51+00:00", "2015-09-11 19:27:55+00:00", "2015-09-11 19:28:01+00:00", "2015-09-11 19:28:08+00:00", "2015-09-11 19:28:14+00:00", "2015-09-11 19:29:27+00:00", "2015-09-11 19:29:31+00:00", "2015-09-11 19:29:36+00:00", "2015-09-11 19:29:40+00:00", "2015-09-11 19:29:44+00:00", "2015-09-11 19:29:48+00:00", "2015-09-11 19:29:53+00:00", "2015-09-11 19:29:56+00:00", "2015-09-11 19:30:00+00:00", "2015-09-11 19:30:03+00:00", "2015-09-11 19:30:07+00:00", "2015-09-11 19:30:14+00:00", "2015-09-11 19:30:19+00:00", "2015-09-11 19:30:23+00:00", "2015-09-11 19:30:26+00:00", "2015-09-11 19:30:31+00:00", "2015-09-11 19:30:39+00:00", "2015-09-11 19:31:19+00:00", "2015-09-11 19:31:23+00:00", "2015-09-11 19:31:28+00:00", "2015-09-11 19:31:31+00:00", "2015-09-11 19:31:35+00:00", "2015-09-11 19:31:38+00:00", "2015-09-11 19:31:42+00:00", "2015-09-11 19:31:45+00:00", "2015-09-11 19:31:54+00:00", "2015-09-11 19:32:20+00:00", "2015-09-11 19:32:26+00:00", "2015-09-11 19:32:31+00:00", "2015-09-11 19:32:35+00:00", "2015-09-11 19:32:39+00:00", "2015-09-11 19:32:45+00:00", "2015-09-11 19:33:39+00:00", "2015-09-11 19:33:45+00:00", "2015-09-11 19:33:50+00:00", "2015-09-11 19:33:54+00:00", "2015-09-11 19:33:57+00:00", "2015-09-11 19:34:00+00:00", "2015-09-11 19:34:03+00:00", "2015-09-11 19:34:07+00:00", "2015-09-11 19:34:11+00:00", "2015-09-11 19:34:15+00:00", "2015-09-11 19:34:20+00:00", "2015-09-11 19:34:25+00:00", "2015-09-11 19:34:30+00:00", "2015-09-11 19:34:35+00:00", "2015-09-11 19:34:40+00:00", "2015-09-11 19:34:45+00:00", "2015-09-11 19:34:49+00:00", "2015-09-11 19:34:53+00:00", "2015-09-11 19:34:57+00:00", "2015-09-11 19:35:03+00:00", "2015-09-11 19:35:06+00:00", "2015-09-11 19:35:12+00:00", "2015-09-11 19:35:16+00:00", "2015-09-11 19:35:19+00:00", "2015-09-11 19:35:22+00:00", "2015-09-11 19:35:25+00:00", "2015-09-11 19:35:27+00:00", "2015-09-11 19:35:29+00:00", "2015-09-11 19:35:31+00:00", "2015-09-11 19:35:36+00:00", "2015-09-11 19:35:38+00:00"]}}, {"type": "Feature", "id": "trace#137", "geometry": {"type": "LineString", "coordinates": [[-83.615324, 32.848068], [-83.614468, 32.848064], [-83.61392, 32.848065], [-83.613346, 32.848062], [-83.612282, 32.848061], [-83.611003, 32.848089], [-83.610294, 32.848093], [-83.608437, 32.848092], [-83.60692, 32.848098], [-83.605902, 32.848095], [-83.605102, 32.848091], [-83.604468, 32.848122], [-83.603596, 32.848309], [-83.60286, 32.848485], [-83.602334, 32.848596], [-83.601701, 32.848652], [-83.600982, 32.84855], [-83.60041, 32.848343], [-83.599622, 32.84799], [-83.598705, 32.847572], [-83.598071, 32.847288], [-83.59737, 32.84697], [-83.596893, 32.846758], [-83.595938, 32.846329], [-83.595223, 32.846012], [-83.594237, 32.84557], [-83.593331, 32.845167], [-83.592577, 32.844824], [-83.591503, 32.844347], [-83.590598, 32.843933], [-83.589686, 32.84353], [-83.588972, 32.84323], [-83.588493, 32.843026], [-83.586606, 32.842181]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 9, "track.link": "/user/Chris%20Lawrence/traces/2039571", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Central Georgia drive (Garmin)", "times": ["2015-09-11 19:42:15+00:00", "2015-09-11 19:42:20+00:00", "2015-09-11 19:42:23+00:00", "2015-09-11 19:42:26+00:00", "2015-09-11 19:42:31+00:00", "2015-09-11 19:42:38+00:00", "2015-09-11 19:42:42+00:00", "2015-09-11 19:42:51+00:00", "2015-09-11 19:42:58+00:00", "2015-09-11 19:43:03+00:00", "2015-09-11 19:43:07+00:00", "2015-09-11 19:43:10+00:00", "2015-09-11 19:43:14+00:00", "2015-09-11 19:43:18+00:00", "2015-09-11 19:43:43+00:00", "2015-09-11 19:43:48+00:00", "2015-09-11 19:43:52+00:00", "2015-09-11 19:43:55+00:00", "2015-09-11 19:43:59+00:00", "2015-09-11 19:44:03+00:00", "2015-09-11 19:44:06+00:00", "2015-09-11 19:44:09+00:00", "2015-09-11 19:44:11+00:00", "2015-09-11 19:44:15+00:00", "2015-09-11 19:44:18+00:00", "2015-09-11 19:44:22+00:00", "2015-09-11 19:44:26+00:00", "2015-09-11 19:44:29+00:00", "2015-09-11 19:44:34+00:00", "2015-09-11 19:44:38+00:00", "2015-09-11 19:44:42+00:00", "2015-09-11 19:44:45+00:00", "2015-09-11 19:44:47+00:00", "2015-09-11 19:44:55+00:00"]}}, {"type": "Feature", "id": "trace#138", "geometry": {"type": "LineString", "coordinates": [[-83.72107, 32.81359], [-83.7208, 32.812975], [-83.720732, 32.813495], [-83.720235, 32.813687], [-83.720277, 32.813217], [-83.720265, 32.812728], [-83.719542, 32.81293], [-83.718622, 32.813433], [-83.717937, 32.813825], [-83.716483, 32.814643], [-83.715893, 32.814962], [-83.715273, 32.81525], [-83.714403, 32.815605], [-83.713698, 32.815842], [-83.712985, 32.816037], [-83.71226, 32.816192], [-83.71152, 32.816315], [-83.710778, 32.816395], [-83.710155, 32.816438], [-83.709302, 32.816448], [-83.70828, 32.816408], [-83.706733, 32.816323], [-83.706198, 32.816292], [-83.705583, 32.816237], [-83.704897, 32.816188], [-83.703662, 32.816125], [-83.702638, 32.816068], [-83.701878, 32.816032], [-83.700075, 32.81593], [-83.69931, 32.815895], [-83.698633, 32.815865], [-83.697653, 32.81581], [-83.697118, 32.815782], [-83.696195, 32.815732], [-83.695597, 32.815698], [-83.694337, 32.815635], [-83.693687, 32.815598], [-83.692685, 32.81554], [-83.692135, 32.815513], [-83.69155, 32.81548], [-83.690977, 32.815448], [-83.689713, 32.815383], [-83.689155, 32.815353], [-83.688187, 32.815305], [-83.6871, 32.815245], [-83.68578, 32.815172], [-83.685115, 32.815135], [-83.684425, 32.815102], [-83.68371, 32.815065], [-83.682982, 32.815027], [-83.682013, 32.814968], [-83.680788, 32.81491], [-83.680067, 32.814868], [-83.679362, 32.814828], [-83.678225, 32.814778], [-83.677377, 32.814737], [-83.676643, 32.814712], [-83.675822, 32.814688], [-83.675212, 32.814668], [-83.674647, 32.814665], [-83.67361, 32.814637], [-83.672978, 32.814623], [-83.672297, 32.814602], [-83.671597, 32.814577], [-83.670293, 32.814543], [-83.669592, 32.814522], [-83.668938, 32.814507], [-83.668395, 32.814488], [-83.66778, 32.814473], [-83.66704, 32.814457], [-83.666113, 32.814433], [-83.66536, 32.814413], [-83.664583, 32.814393], [-83.663955, 32.814357], [-83.663415, 32.814343], [-83.662533, 32.814318], [-83.661668, 32.814305], [-83.660988, 32.814303], [-83.660433, 32.814298], [-83.659838, 32.814267], [-83.65906, 32.814232], [-83.658177, 32.814183], [-83.657638, 32.814163], [-83.656932, 32.814122], [-83.656065, 32.81404], [-83.655315, 32.813987], [-83.654727, 32.813855], [-83.654373, 32.813457], [-83.654707, 32.813005], [-83.655248, 32.813003], [-83.655642, 32.813383], [-83.655745, 32.814288], [-83.65574, 32.814838], [-83.65574, 32.815642], [-83.655755, 32.816743], [-83.655752, 32.817205], [-83.655747, 32.817903], [-83.655742, 32.818372], [-83.655732, 32.819057], [-83.655733, 32.819727], [-83.65579, 32.820387]]}, "properties": {"filename": "osm-traces-page-95.gpx", "track.number": 10, "track.link": "/user/Chris%20Lawrence/traces/2039570", "track.name": "amod.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Central Georgia drive (Amod)", "times": ["2015-09-11 19:21:23+00:00", "2015-09-11 19:21:28+00:00", "2015-09-11 19:22:36+00:00", "2015-09-11 19:22:54+00:00", "2015-09-11 19:23:09+00:00", "2015-09-11 19:24:23+00:00", "2015-09-11 19:24:30+00:00", "2015-09-11 19:24:36+00:00", "2015-09-11 19:24:40+00:00", "2015-09-11 19:24:48+00:00", "2015-09-11 19:24:51+00:00", "2015-09-11 19:24:54+00:00", "2015-09-11 19:24:58+00:00", "2015-09-11 19:25:01+00:00", "2015-09-11 19:25:04+00:00", "2015-09-11 19:25:07+00:00", "2015-09-11 19:25:10+00:00", "2015-09-11 19:25:13+00:00", "2015-09-11 19:25:16+00:00", "2015-09-11 19:25:27+00:00", "2015-09-11 19:26:04+00:00", "2015-09-11 19:26:14+00:00", "2015-09-11 19:26:17+00:00", "2015-09-11 19:26:20+00:00", "2015-09-11 19:26:23+00:00", "2015-09-11 19:26:28+00:00", "2015-09-11 19:26:32+00:00", "2015-09-11 19:26:35+00:00", "2015-09-11 19:26:43+00:00", "2015-09-11 19:26:48+00:00", "2015-09-11 19:27:35+00:00", "2015-09-11 19:27:42+00:00", "2015-09-11 19:27:45+00:00", "2015-09-11 19:27:50+00:00", "2015-09-11 19:27:53+00:00", "2015-09-11 19:27:59+00:00", "2015-09-11 19:28:02+00:00", "2015-09-11 19:28:07+00:00", "2015-09-11 19:28:11+00:00", "2015-09-11 19:28:17+00:00", "2015-09-11 19:29:27+00:00", "2015-09-11 19:29:36+00:00", "2015-09-11 19:29:39+00:00", "2015-09-11 19:29:44+00:00", "2015-09-11 19:29:49+00:00", "2015-09-11 19:29:55+00:00", "2015-09-11 19:29:58+00:00", "2015-09-11 19:30:01+00:00", "2015-09-11 19:30:04+00:00", "2015-09-11 19:30:07+00:00", "2015-09-11 19:30:11+00:00", "2015-09-11 19:30:16+00:00", "2015-09-11 19:30:19+00:00", "2015-09-11 19:30:22+00:00", "2015-09-11 19:30:27+00:00", "2015-09-11 19:30:31+00:00", "2015-09-11 19:30:35+00:00", "2015-09-11 19:30:45+00:00", "2015-09-11 19:31:19+00:00", "2015-09-11 19:31:23+00:00", "2015-09-11 19:31:29+00:00", "2015-09-11 19:31:32+00:00", "2015-09-11 19:31:35+00:00", "2015-09-11 19:31:38+00:00", "2015-09-11 19:31:44+00:00", "2015-09-11 19:31:48+00:00", "2015-09-11 19:31:53+00:00", "2015-09-11 19:32:01+00:00", "2015-09-11 19:32:19+00:00", "2015-09-11 19:32:24+00:00", "2015-09-11 19:32:29+00:00", "2015-09-11 19:32:33+00:00", "2015-09-11 19:32:38+00:00", "2015-09-11 19:32:43+00:00", "2015-09-11 19:32:51+00:00", "2015-09-11 19:33:43+00:00", "2015-09-11 19:33:49+00:00", "2015-09-11 19:33:53+00:00", "2015-09-11 19:33:56+00:00", "2015-09-11 19:33:59+00:00", "2015-09-11 19:34:03+00:00", "2015-09-11 19:34:08+00:00", "2015-09-11 19:34:11+00:00", "2015-09-11 19:34:15+00:00", "2015-09-11 19:34:20+00:00", "2015-09-11 19:34:25+00:00", "2015-09-11 19:34:30+00:00", "2015-09-11 19:34:35+00:00", "2015-09-11 19:34:40+00:00", "2015-09-11 19:34:44+00:00", "2015-09-11 19:34:48+00:00", "2015-09-11 19:34:54+00:00", "2015-09-11 19:34:57+00:00", "2015-09-11 19:35:01+00:00", "2015-09-11 19:35:06+00:00", "2015-09-11 19:35:08+00:00", "2015-09-11 19:35:11+00:00", "2015-09-11 19:35:13+00:00", "2015-09-11 19:35:16+00:00", "2015-09-11 19:35:19+00:00", "2015-09-11 19:35:22+00:00"]}}, {"type": "Feature", "id": "trace#139", "geometry": {"type": "LineString", "coordinates": [[-83.633302, 32.834199], [-83.632895, 32.834683], [-83.632502, 32.835135], [-83.632097, 32.835532], [-83.63173, 32.835953], [-83.631207, 32.836638], [-83.630549, 32.836932], [-83.629974, 32.837071], [-83.629287, 32.83672], [-83.628694, 32.836374], [-83.628232, 32.836114], [-83.627772, 32.835833], [-83.62733, 32.835571], [-83.626829, 32.83528], [-83.626231, 32.834912], [-83.625781, 32.834663], [-83.625193, 32.834247], [-83.62461, 32.833893], [-83.624789, 32.8334], [-83.625268, 32.832844], [-83.625593, 32.832442], [-83.626105, 32.831823], [-83.626876, 32.830892], [-83.627542, 32.830099], [-83.628258, 32.82925], [-83.628668, 32.828778], [-83.629065, 32.828338], [-83.629445, 32.827983], [-83.629965, 32.828119], [-83.630625, 32.828271], [-83.631246, 32.828442], [-83.631964, 32.828605], [-83.633002, 32.828844], [-83.633599, 32.829002], [-83.63437, 32.829183], [-83.635295, 32.829412], [-83.636107, 32.829606], [-83.637253, 32.829891], [-83.638098, 32.829844], [-83.63868, 32.829586], [-83.639093, 32.829296], [-83.639646, 32.828698], [-83.640047, 32.828237], [-83.64036, 32.827858], [-83.640888, 32.827219], [-83.641205, 32.826848], [-83.641681, 32.82629], [-83.642138, 32.825832], [-83.642514, 32.825499], [-83.643136, 32.825536], [-83.643802, 32.825472], [-83.644439, 32.825452], [-83.645063, 32.825616], [-83.645943, 32.82604], [-83.646546, 32.826327], [-83.647071, 32.826513], [-83.647628, 32.826628], [-83.648206, 32.826671], [-83.648802, 32.826643], [-83.649354, 32.826541], [-83.649863, 32.826381], [-83.650362, 32.826191], [-83.650911, 32.826241], [-83.650604, 32.82669], [-83.650304, 32.827065], [-83.649635, 32.827907], [-83.648892, 32.827664], [-83.648268, 32.827306], [-83.647688, 32.82756], [-83.647327, 32.82803], [-83.64775, 32.828545], [-83.647891, 32.82903], [-83.64736, 32.828862], [-83.646936, 32.828581], [-83.647546, 32.82876], [-83.64808, 32.828852], [-83.647309, 32.828277], [-83.646854, 32.828024], [-83.64719, 32.827578], [-83.6475, 32.827185], [-83.648216, 32.827315], [-83.648829, 32.827654], [-83.649382, 32.827957], [-83.649929, 32.828279], [-83.650259, 32.828643], [-83.649946, 32.829042], [-83.65041, 32.829338], [-83.650837, 32.829017], [-83.650315, 32.828609], [-83.649887, 32.828252], [-83.649932, 32.827586], [-83.650321, 32.827118], [-83.650788, 32.826526], [-83.651033, 32.826094], [-83.651545, 32.825875], [-83.652196, 32.825821], [-83.653413, 32.825835], [-83.653632, 32.826245], [-83.65382, 32.826683], [-83.654507, 32.826698], [-83.655116, 32.826837]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/2028302", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 1, "track.description": "Macon area trace", "times": ["2015-08-28 20:28:24+00:00", "2015-08-28 20:28:30+00:00", "2015-08-28 20:28:36+00:00", "2015-08-28 20:28:41+00:00", "2015-08-28 20:28:49+00:00", "2015-08-28 20:29:00+00:00", "2015-08-28 20:29:10+00:00", "2015-08-28 20:29:18+00:00", "2015-08-28 20:29:28+00:00", "2015-08-28 20:30:10+00:00", "2015-08-28 20:30:25+00:00", "2015-08-28 20:31:19+00:00", "2015-08-28 20:31:29+00:00", "2015-08-28 20:31:39+00:00", "2015-08-28 20:31:52+00:00", "2015-08-28 20:32:50+00:00", "2015-08-28 20:33:01+00:00", "2015-08-28 20:33:12+00:00", "2015-08-28 20:33:26+00:00", "2015-08-28 20:33:34+00:00", "2015-08-28 20:34:01+00:00", "2015-08-28 20:34:08+00:00", "2015-08-28 20:34:18+00:00", "2015-08-28 20:34:25+00:00", "2015-08-28 20:34:32+00:00", "2015-08-28 20:34:36+00:00", "2015-08-28 20:34:40+00:00", "2015-08-28 20:34:46+00:00", "2015-08-28 20:34:52+00:00", "2015-08-28 20:34:58+00:00", "2015-08-28 20:35:30+00:00", "2015-08-28 20:35:37+00:00", "2015-08-28 20:35:49+00:00", "2015-08-28 20:36:26+00:00", "2015-08-28 20:36:32+00:00", "2015-08-28 20:36:39+00:00", "2015-08-28 20:36:45+00:00", "2015-08-28 20:36:56+00:00", "2015-08-28 20:37:50+00:00", "2015-08-28 20:37:55+00:00", "2015-08-28 20:37:59+00:00", "2015-08-28 20:38:06+00:00", "2015-08-28 20:38:11+00:00", "2015-08-28 20:38:15+00:00", "2015-08-28 20:38:22+00:00", "2015-08-28 20:38:26+00:00", "2015-08-28 20:38:32+00:00", "2015-08-28 20:38:39+00:00", "2015-08-28 20:38:55+00:00", "2015-08-28 20:39:03+00:00", "2015-08-28 20:39:08+00:00", "2015-08-28 20:39:13+00:00", "2015-08-28 20:39:17+00:00", "2015-08-28 20:39:23+00:00", "2015-08-28 20:39:27+00:00", "2015-08-28 20:39:30+00:00", "2015-08-28 20:39:33+00:00", "2015-08-28 20:39:36+00:00", "2015-08-28 20:39:39+00:00", "2015-08-28 20:39:42+00:00", "2015-08-28 20:39:45+00:00", "2015-08-28 20:39:49+00:00", "2015-08-28 20:39:59+00:00", "2015-08-28 20:40:06+00:00", "2015-08-28 20:40:11+00:00", "2015-08-28 20:40:23+00:00", "2015-08-28 20:40:39+00:00", "2015-08-28 20:40:47+00:00", "2015-08-28 20:41:04+00:00", "2015-08-28 20:41:16+00:00", "2015-08-28 20:41:46+00:00", "2015-08-28 20:42:04+00:00", "2015-08-28 20:42:16+00:00", "2015-08-28 20:42:25+00:00", "2015-08-28 20:42:38+00:00", "2015-08-28 20:43:00+00:00", "2015-08-28 20:43:16+00:00", "2015-08-28 20:43:24+00:00", "2015-08-28 20:43:38+00:00", "2015-08-28 20:43:50+00:00", "2015-08-28 20:44:07+00:00", "2015-08-28 20:44:15+00:00", "2015-08-28 20:44:25+00:00", "2015-08-28 20:44:39+00:00", "2015-08-28 20:44:49+00:00", "2015-08-28 20:44:59+00:00", "2015-08-28 20:45:10+00:00", "2015-08-28 20:45:21+00:00", "2015-08-28 20:45:33+00:00", "2015-08-28 20:45:41+00:00", "2015-08-28 20:45:59+00:00", "2015-08-28 20:46:05+00:00", "2015-08-28 20:46:12+00:00", "2015-08-28 20:46:18+00:00", "2015-08-28 20:46:31+00:00", "2015-08-28 20:46:36+00:00", "2015-08-28 20:46:52+00:00", "2015-08-28 20:47:05+00:00", "2015-08-28 20:47:17+00:00", "2015-08-28 20:47:24+00:00", "2015-08-28 20:47:30+00:00"]}}, {"type": "Feature", "id": "trace#140", "geometry": {"type": "LineString", "coordinates": [[-83.655501, 32.827176], [-83.655638, 32.827652], [-83.655401, 32.82823], [-83.654933, 32.829005], [-83.654597, 32.829359], [-83.653949, 32.829798], [-83.653374, 32.830191], [-83.652961, 32.830554], [-83.65252, 32.831052], [-83.652056, 32.831603], [-83.651855, 32.832032], [-83.651841, 32.832519], [-83.651286, 32.832758], [-83.650718, 32.832754], [-83.650142, 32.832889], [-83.649596, 32.833021], [-83.648893, 32.832738], [-83.647829, 32.832093], [-83.647241, 32.831741], [-83.646718, 32.831548], [-83.64617, 32.8322], [-83.645773, 32.832659], [-83.645442, 32.833055], [-83.645047, 32.833504], [-83.644668, 32.833828], [-83.644331, 32.834352], [-83.643871, 32.834675], [-83.643283, 32.83481], [-83.642375, 32.83518], [-83.64179, 32.835448], [-83.641143, 32.835767], [-83.640608, 32.836098], [-83.640221, 32.836448], [-83.639961, 32.837038], [-83.639766, 32.837478], [-83.639423, 32.838275], [-83.639235, 32.838704], [-83.638999, 32.839116], [-83.640102, 32.83952], [-83.640923, 32.839771], [-83.641878, 32.840053], [-83.642607, 32.84027], [-83.643241, 32.84043], [-83.64408, 32.840563], [-83.644775, 32.840646], [-83.646148, 32.840921], [-83.646778, 32.84092], [-83.647118, 32.840493], [-83.647417, 32.840024], [-83.647731, 32.839408], [-83.647992, 32.838909], [-83.648324, 32.838372], [-83.648729, 32.837829], [-83.64933, 32.837057], [-83.64993, 32.836276], [-83.650243, 32.835859], [-83.650565, 32.835437], [-83.65107, 32.834802], [-83.651588, 32.834167], [-83.652604, 32.832902], [-83.652953, 32.832477], [-83.653825, 32.83139], [-83.654529, 32.830516], [-83.655039, 32.829852], [-83.65538, 32.829409], [-83.655748, 32.828948], [-83.656069, 32.828536], [-83.656384, 32.828084], [-83.656653, 32.827611], [-83.656877, 32.827118], [-83.657046, 32.826617], [-83.657164, 32.826101], [-83.657238, 32.825578], [-83.657259, 32.82503], [-83.657227, 32.824533], [-83.657143, 32.824017], [-83.657008, 32.823507], [-83.656839, 32.823008], [-83.65665, 32.822508], [-83.656464, 32.822001], [-83.656291, 32.8215], [-83.656139, 32.820997], [-83.656029, 32.820479], [-83.655958, 32.819955], [-83.655929, 32.819424], [-83.655933, 32.818627], [-83.655971, 32.817802], [-83.656008, 32.815458], [-83.65601, 32.814932], [-83.656019, 32.814152], [-83.656023, 32.813627], [-83.656033, 32.81284], [-83.656052, 32.812315], [-83.656093, 32.811792], [-83.656158, 32.81127], [-83.656243, 32.81075], [-83.656351, 32.810236], [-83.656483, 32.809705], [-83.656624, 32.809221], [-83.656791, 32.808719], [-83.656974, 32.808221]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/2028302", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 2, "track.description": "Macon area trace", "times": ["2015-08-28 20:47:35+00:00", "2015-08-28 20:47:40+00:00", "2015-08-28 20:47:46+00:00", "2015-08-28 20:47:54+00:00", "2015-08-28 20:47:58+00:00", "2015-08-28 20:48:05+00:00", "2015-08-28 20:48:11+00:00", "2015-08-28 20:48:16+00:00", "2015-08-28 20:48:23+00:00", "2015-08-28 20:48:31+00:00", "2015-08-28 20:48:37+00:00", "2015-08-28 20:48:46+00:00", "2015-08-28 20:49:18+00:00", "2015-08-28 20:49:32+00:00", "2015-08-28 20:49:44+00:00", "2015-08-28 20:49:50+00:00", "2015-08-28 20:50:01+00:00", "2015-08-28 20:50:13+00:00", "2015-08-28 20:50:24+00:00", "2015-08-28 20:50:41+00:00", "2015-08-28 20:50:51+00:00", "2015-08-28 20:50:57+00:00", "2015-08-28 20:51:02+00:00", "2015-08-28 20:51:08+00:00", "2015-08-28 20:51:16+00:00", "2015-08-28 20:51:23+00:00", "2015-08-28 20:51:28+00:00", "2015-08-28 20:51:33+00:00", "2015-08-28 20:51:41+00:00", "2015-08-28 20:51:46+00:00", "2015-08-28 20:51:52+00:00", "2015-08-28 20:53:12+00:00", "2015-08-28 20:53:18+00:00", "2015-08-28 20:53:24+00:00", "2015-08-28 20:53:28+00:00", "2015-08-28 20:53:35+00:00", "2015-08-28 20:53:40+00:00", "2015-08-28 20:54:34+00:00", "2015-08-28 20:54:46+00:00", "2015-08-28 20:54:52+00:00", "2015-08-28 20:54:59+00:00", "2015-08-28 20:55:04+00:00", "2015-08-28 20:55:08+00:00", "2015-08-28 20:55:13+00:00", "2015-08-28 20:55:18+00:00", "2015-08-28 20:55:28+00:00", "2015-08-28 20:55:35+00:00", "2015-08-28 20:55:40+00:00", "2015-08-28 20:56:54+00:00", "2015-08-28 20:56:59+00:00", "2015-08-28 20:57:02+00:00", "2015-08-28 20:57:05+00:00", "2015-08-28 20:57:08+00:00", "2015-08-28 20:57:12+00:00", "2015-08-28 20:57:16+00:00", "2015-08-28 20:57:18+00:00", "2015-08-28 20:57:20+00:00", "2015-08-28 20:57:23+00:00", "2015-08-28 20:57:26+00:00", "2015-08-28 20:57:32+00:00", "2015-08-28 20:57:34+00:00", "2015-08-28 20:57:39+00:00", "2015-08-28 20:57:43+00:00", "2015-08-28 20:57:46+00:00", "2015-08-28 20:57:48+00:00", "2015-08-28 20:57:50+00:00", "2015-08-28 20:57:52+00:00", "2015-08-28 20:57:54+00:00", "2015-08-28 20:57:56+00:00", "2015-08-28 20:57:58+00:00", "2015-08-28 20:58:00+00:00", "2015-08-28 20:58:02+00:00", "2015-08-28 20:58:04+00:00", "2015-08-28 20:58:06+00:00", "2015-08-28 20:58:08+00:00", "2015-08-28 20:58:10+00:00", "2015-08-28 20:58:12+00:00", "2015-08-28 20:58:14+00:00", "2015-08-28 20:58:16+00:00", "2015-08-28 20:58:18+00:00", "2015-08-28 20:58:20+00:00", "2015-08-28 20:58:22+00:00", "2015-08-28 20:58:24+00:00", "2015-08-28 20:58:26+00:00", "2015-08-28 20:58:28+00:00", "2015-08-28 20:58:31+00:00", "2015-08-28 20:58:34+00:00", "2015-08-28 20:58:43+00:00", "2015-08-28 20:58:45+00:00", "2015-08-28 20:58:48+00:00", "2015-08-28 20:58:50+00:00", "2015-08-28 20:58:53+00:00", "2015-08-28 20:58:55+00:00", "2015-08-28 20:58:57+00:00", "2015-08-28 20:58:59+00:00", "2015-08-28 20:59:01+00:00", "2015-08-28 20:59:03+00:00", "2015-08-28 20:59:05+00:00", "2015-08-28 20:59:07+00:00", "2015-08-28 20:59:09+00:00", "2015-08-28 20:59:11+00:00"]}}, {"type": "Feature", "id": "trace#141", "geometry": {"type": "LineString", "coordinates": [[-83.657441, 32.806942], [-83.657727, 32.806151], [-83.657927, 32.805614], [-83.658224, 32.804806], [-83.658423, 32.804256], [-83.658922, 32.802892], [-83.65932, 32.801794], [-83.659525, 32.801254], [-83.659758, 32.800714], [-83.660029, 32.800189], [-83.66033, 32.799676], [-83.660664, 32.79918], [-83.661035, 32.798705], [-83.661433, 32.798246], [-83.661861, 32.797804], [-83.662317, 32.797383], [-83.662795, 32.796977], [-83.66353, 32.796387], [-83.664012, 32.795988], [-83.664463, 32.795564], [-83.664872, 32.795112], [-83.665245, 32.794638], [-83.665587, 32.794122], [-83.665868, 32.793608], [-83.666098, 32.793097], [-83.666426, 32.792289], [-83.666879, 32.791216], [-83.667104, 32.790676], [-83.667341, 32.790117], [-83.667591, 32.789601], [-83.6679, 32.78909], [-83.668251, 32.788598], [-83.668677, 32.788089], [-83.669074, 32.787686], [-83.669547, 32.787277], [-83.67006, 32.786906], [-83.671134, 32.786218], [-83.672011, 32.785654], [-83.673005, 32.78501], [-83.673547, 32.784664], [-83.674085, 32.784319], [-83.674613, 32.783974], [-83.675432, 32.78345], [-83.676785, 32.782575], [-83.67761, 32.782046], [-83.678213, 32.781664], [-83.678695, 32.781353], [-83.679513, 32.780821], [-83.680874, 32.779947], [-83.682242, 32.779062], [-83.683888, 32.777999], [-83.68552, 32.776953], [-83.687153, 32.775895], [-83.687699, 32.775546], [-83.688789, 32.774843], [-83.689332, 32.77449]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 1, "track.link": "/user/Chris%20Lawrence/traces/2028302", "track.name": "garmin.gpx.gz", "track.segment.number": 0, "track.segment.split.number": 3, "track.description": "Macon area trace", "times": ["2015-08-28 20:59:16+00:00", "2015-08-28 20:59:19+00:00", "2015-08-28 20:59:21+00:00", "2015-08-28 20:59:24+00:00", "2015-08-28 20:59:26+00:00", "2015-08-28 20:59:31+00:00", "2015-08-28 20:59:35+00:00", "2015-08-28 20:59:37+00:00", "2015-08-28 20:59:39+00:00", "2015-08-28 20:59:41+00:00", "2015-08-28 20:59:43+00:00", "2015-08-28 20:59:45+00:00", "2015-08-28 20:59:47+00:00", "2015-08-28 20:59:49+00:00", "2015-08-28 20:59:51+00:00", "2015-08-28 20:59:53+00:00", "2015-08-28 20:59:55+00:00", "2015-08-28 20:59:58+00:00", "2015-08-28 21:00:00+00:00", "2015-08-28 21:00:02+00:00", "2015-08-28 21:00:04+00:00", "2015-08-28 21:00:06+00:00", "2015-08-28 21:00:08+00:00", "2015-08-28 21:00:10+00:00", "2015-08-28 21:00:12+00:00", "2015-08-28 21:00:15+00:00", "2015-08-28 21:00:19+00:00", "2015-08-28 21:00:21+00:00", "2015-08-28 21:00:23+00:00", "2015-08-28 21:00:25+00:00", "2015-08-28 21:00:27+00:00", "2015-08-28 21:00:29+00:00", "2015-08-28 21:00:31+00:00", "2015-08-28 21:00:33+00:00", "2015-08-28 21:00:35+00:00", "2015-08-28 21:00:37+00:00", "2015-08-28 21:00:41+00:00", "2015-08-28 21:00:44+00:00", "2015-08-28 21:00:48+00:00", "2015-08-28 21:00:50+00:00", "2015-08-28 21:00:52+00:00", "2015-08-28 21:00:54+00:00", "2015-08-28 21:00:57+00:00", "2015-08-28 21:01:02+00:00", "2015-08-28 21:01:05+00:00", "2015-08-28 21:01:07+00:00", "2015-08-28 21:01:09+00:00", "2015-08-28 21:01:12+00:00", "2015-08-28 21:01:17+00:00", "2015-08-28 21:01:22+00:00", "2015-08-28 21:01:28+00:00", "2015-08-28 21:01:34+00:00", "2015-08-28 21:01:40+00:00", "2015-08-28 21:01:42+00:00", "2015-08-28 21:01:46+00:00", "2015-08-28 21:01:48+00:00"]}}, {"type": "Feature", "id": "trace#142", "geometry": {"type": "LineString", "coordinates": [[-83.722388, 32.802743], [-83.72212, 32.802175], [-83.721863, 32.801605], [-83.721633, 32.801027], [-83.721432, 32.800442], [-83.721257, 32.799848], [-83.721112, 32.799252], [-83.720992, 32.798652], [-83.720898, 32.79805], [-83.720832, 32.797442], [-83.720745, 32.796227], [-83.720692, 32.795618], [-83.720628, 32.795015], [-83.720538, 32.794112], [-83.720423, 32.792903], [-83.720335, 32.79169], [-83.720278, 32.791083], [-83.720213, 32.790475], [-83.720145, 32.789865], [-83.720087, 32.789253], [-83.720025, 32.788642], [-83.719947, 32.788032], [-83.719818, 32.787427], [-83.719645, 32.786835], [-83.71942, 32.78626], [-83.71914, 32.785703], [-83.718815, 32.785162], [-83.71847, 32.78463]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 9, "track.link": "/user/Chris%20Lawrence/traces/1860003", "track.name": "amod.gpx", "track.segment.number": 0, "track.segment.split.number": 0, "track.description": "Memphis-Macon (Amod)", "times": ["2015-01-04 01:02:37+00:00", "2015-01-04 01:02:39+00:00", "2015-01-04 01:02:41+00:00", "2015-01-04 01:02:43+00:00", "2015-01-04 01:02:45+00:00", "2015-01-04 01:02:47+00:00", "2015-01-04 01:02:49+00:00", "2015-01-04 01:02:51+00:00", "2015-01-04 01:02:53+00:00", "2015-01-04 01:02:55+00:00", "2015-01-04 01:02:59+00:00", "2015-01-04 01:03:01+00:00", "2015-01-04 01:03:03+00:00", "2015-01-04 01:03:06+00:00", "2015-01-04 01:03:10+00:00", "2015-01-04 01:03:14+00:00", "2015-01-04 01:03:16+00:00", "2015-01-04 01:03:18+00:00", "2015-01-04 01:03:20+00:00", "2015-01-04 01:03:22+00:00", "2015-01-04 01:03:24+00:00", "2015-01-04 01:03:26+00:00", "2015-01-04 01:03:28+00:00", "2015-01-04 01:03:30+00:00", "2015-01-04 01:03:32+00:00", "2015-01-04 01:03:34+00:00", "2015-01-04 01:03:36+00:00", "2015-01-04 01:03:38+00:00"]}}, {"type": "Feature", "id": "trace#143", "geometry": {"type": "LineString", "coordinates": [[-83.676444, 32.890797], [-83.676051, 32.890299], [-83.675653, 32.8898], [-83.675255, 32.88931], [-83.674853, 32.888819], [-83.674246, 32.888082], [-83.673635, 32.887348], [-83.673021, 32.886605], [-83.672617, 32.886125], [-83.672198, 32.885643], [-83.671785, 32.885156], [-83.671194, 32.884434], [-83.67041, 32.883484], [-83.67002, 32.883015], [-83.669634, 32.882546], [-83.669043, 32.881841], [-83.668261, 32.880893], [-83.667665, 32.880195], [-83.667065, 32.879507], [-83.665557, 32.877752], [-83.664667, 32.876687], [-83.664302, 32.876246], [-83.663936, 32.875811], [-83.663391, 32.87517], [-83.662866, 32.874536], [-83.662162, 32.873695], [-83.661806, 32.873265], [-83.661445, 32.872838], [-83.660731, 32.871986], [-83.660136, 32.871293], [-83.659796, 32.870918], [-83.659396, 32.870486], [-83.658999, 32.870071], [-83.65859, 32.869671], [-83.65779, 32.868922], [-83.65648, 32.867716], [-83.655882, 32.867161], [-83.655208, 32.866548], [-83.65461, 32.865992], [-83.65395, 32.865384], [-83.65336, 32.864838], [-83.652716, 32.86424], [-83.652123, 32.863712], [-83.65169, 32.863401], [-83.651239, 32.863129], [-83.65077, 32.862896], [-83.649813, 32.862508], [-83.648183, 32.861876], [-83.647136, 32.861462], [-83.646295, 32.861123], [-83.645757, 32.860908], [-83.644955, 32.860584], [-83.644428, 32.860346], [-83.643955, 32.860094], [-83.643471, 32.85978], [-83.643053, 32.859443], [-83.642688, 32.859104], [-83.642302, 32.858694], [-83.641979, 32.858289], [-83.641631, 32.857729], [-83.641353, 32.857108], [-83.641162, 32.85647], [-83.64108, 32.856023], [-83.641038, 32.855544], [-83.641055, 32.854891], [-83.641119, 32.854443], [-83.6415, 32.853048], [-83.641703, 32.852406], [-83.641919, 32.851701], [-83.64205, 32.851229], [-83.642162, 32.850759], [-83.642253, 32.850296], [-83.642315, 32.849834], [-83.642389, 32.848742], [-83.642456, 32.84765], [-83.642509, 32.846981], [-83.642587, 32.846529], [-83.642704, 32.84608], [-83.642846, 32.84564], [-83.643023, 32.845205], [-83.643225, 32.844783], [-83.64349, 32.844316], [-83.643763, 32.843907], [-83.644176, 32.843375], [-83.644497, 32.842983], [-83.644812, 32.842593], [-83.64526, 32.842043], [-83.645656, 32.841548], [-83.646042, 32.841076], [-83.646976, 32.83991], [-83.647564, 32.839173], [-83.648179, 32.838413], [-83.648488, 32.838026]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 10, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 0, "track.description": null, "times": ["2014-12-17 20:00:43+00:00", "2014-12-17 20:00:45+00:00", "2014-12-17 20:00:47+00:00", "2014-12-17 20:00:49+00:00", "2014-12-17 20:00:51+00:00", "2014-12-17 20:00:54+00:00", "2014-12-17 20:00:57+00:00", "2014-12-17 20:01:00+00:00", "2014-12-17 20:01:02+00:00", "2014-12-17 20:01:04+00:00", "2014-12-17 20:01:06+00:00", "2014-12-17 20:01:09+00:00", "2014-12-17 20:01:13+00:00", "2014-12-17 20:01:15+00:00", "2014-12-17 20:01:17+00:00", "2014-12-17 20:01:20+00:00", "2014-12-17 20:01:24+00:00", "2014-12-17 20:01:27+00:00", "2014-12-17 20:01:30+00:00", "2014-12-17 20:01:38+00:00", "2014-12-17 20:01:43+00:00", "2014-12-17 20:01:45+00:00", "2014-12-17 20:01:47+00:00", "2014-12-17 20:01:50+00:00", "2014-12-17 20:01:53+00:00", "2014-12-17 20:01:57+00:00", "2014-12-17 20:01:59+00:00", "2014-12-17 20:02:01+00:00", "2014-12-17 20:02:05+00:00", "2014-12-17 20:02:08+00:00", "2014-12-17 20:02:10+00:00", "2014-12-17 20:02:12+00:00", "2014-12-17 20:02:14+00:00", "2014-12-17 20:02:16+00:00", "2014-12-17 20:02:20+00:00", "2014-12-17 20:02:26+00:00", "2014-12-17 20:02:29+00:00", "2014-12-17 20:02:32+00:00", "2014-12-17 20:02:35+00:00", "2014-12-17 20:02:38+00:00", "2014-12-17 20:02:41+00:00", "2014-12-17 20:02:44+00:00", "2014-12-17 20:02:47+00:00", "2014-12-17 20:02:49+00:00", "2014-12-17 20:02:51+00:00", "2014-12-17 20:02:53+00:00", "2014-12-17 20:02:57+00:00", "2014-12-17 20:03:03+00:00", "2014-12-17 20:03:07+00:00", "2014-12-17 20:03:10+00:00", "2014-12-17 20:03:12+00:00", "2014-12-17 20:03:15+00:00", "2014-12-17 20:03:17+00:00", "2014-12-17 20:03:19+00:00", "2014-12-17 20:03:21+00:00", "2014-12-17 20:03:23+00:00", "2014-12-17 20:03:25+00:00", "2014-12-17 20:03:27+00:00", "2014-12-17 20:03:29+00:00", "2014-12-17 20:03:32+00:00", "2014-12-17 20:03:35+00:00", "2014-12-17 20:03:38+00:00", "2014-12-17 20:03:40+00:00", "2014-12-17 20:03:42+00:00", "2014-12-17 20:03:45+00:00", "2014-12-17 20:03:47+00:00", "2014-12-17 20:03:53+00:00", "2014-12-17 20:03:56+00:00", "2014-12-17 20:03:59+00:00", "2014-12-17 20:04:01+00:00", "2014-12-17 20:04:03+00:00", "2014-12-17 20:04:05+00:00", "2014-12-17 20:04:07+00:00", "2014-12-17 20:04:12+00:00", "2014-12-17 20:04:17+00:00", "2014-12-17 20:04:20+00:00", "2014-12-17 20:04:22+00:00", "2014-12-17 20:04:24+00:00", "2014-12-17 20:04:26+00:00", "2014-12-17 20:04:28+00:00", "2014-12-17 20:04:30+00:00", "2014-12-17 20:04:32+00:00", "2014-12-17 20:04:34+00:00", "2014-12-17 20:04:37+00:00", "2014-12-17 20:04:39+00:00", "2014-12-17 20:04:41+00:00", "2014-12-17 20:04:44+00:00", "2014-12-17 20:04:47+00:00", "2014-12-17 20:04:50+00:00", "2014-12-17 20:04:57+00:00", "2014-12-17 20:05:01+00:00", "2014-12-17 20:05:05+00:00", "2014-12-17 20:05:07+00:00"]}}, {"type": "Feature", "id": "trace#144", "geometry": {"type": "LineString", "coordinates": [[-83.650338, 32.835725], [-83.650825, 32.835125], [-83.651468, 32.834324], [-83.651776, 32.833929], [-83.652709, 32.832775], [-83.653009, 32.832401], [-83.653319, 32.831995], [-83.65363, 32.831571], [-83.653953, 32.831143], [-83.655157, 32.829643], [-83.655553, 32.829178], [-83.656063, 32.828527], [-83.656381, 32.828074], [-83.656653, 32.827596], [-83.656885, 32.827088], [-83.657063, 32.826571], [-83.657187, 32.82603], [-83.657259, 32.825473], [-83.657273, 32.824862], [-83.657229, 32.824375], [-83.657122, 32.823827], [-83.656966, 32.823297], [-83.656677, 32.822531], [-83.656467, 32.821965], [-83.656232, 32.821298], [-83.656092, 32.820814], [-83.655993, 32.82033], [-83.655939, 32.819846], [-83.655919, 32.81935], [-83.655927, 32.818585], [-83.655946, 32.817183], [-83.655982, 32.814867], [-83.655996, 32.813735], [-83.656001, 32.813163], [-83.656012, 32.812596], [-83.656046, 32.812036], [-83.656104, 32.811481], [-83.65619, 32.810928], [-83.656297, 32.810374], [-83.656445, 32.809752], [-83.656578, 32.809288], [-83.65675, 32.808751], [-83.656936, 32.808225], [-83.657227, 32.807441], [-83.657512, 32.806654], [-83.657899, 32.805596], [-83.658182, 32.804813], [-83.658367, 32.804308], [-83.658548, 32.803807], [-83.658908, 32.802831], [-83.659186, 32.802088], [-83.65937, 32.801584], [-83.659568, 32.80107], [-83.659803, 32.800552], [-83.660062, 32.800056], [-83.660353, 32.799569], [-83.660674, 32.799101], [-83.661023, 32.798653], [-83.661391, 32.79822], [-83.661776, 32.797816], [-83.662185, 32.797425], [-83.662624, 32.797054], [-83.663307, 32.79651], [-83.663748, 32.796155], [-83.66418, 32.79578], [-83.664585, 32.795382], [-83.664962, 32.794955], [-83.6653, 32.794505], [-83.66559, 32.794053], [-83.665848, 32.793574], [-83.666068, 32.793088], [-83.666479, 32.792076], [-83.666911, 32.791044], [-83.667234, 32.790258], [-83.667465, 32.789747], [-83.667734, 32.789253], [-83.668048, 32.788778], [-83.668458, 32.788249], [-83.668826, 32.787849], [-83.669187, 32.787512], [-83.669627, 32.787151], [-83.670106, 32.786817], [-83.671365, 32.786017], [-83.671874, 32.785697], [-83.672814, 32.785089], [-83.673543, 32.784622], [-83.674029, 32.784308], [-83.674516, 32.783996], [-83.675477, 32.783365], [-83.676456, 32.782738], [-83.677464, 32.782083], [-83.678505, 32.781414], [-83.679031, 32.781078], [-83.679816, 32.780574], [-83.68034, 32.780235], [-83.680874, 32.779895], [-83.681415, 32.779554], [-83.6825, 32.778862], [-83.683338, 32.778322], [-83.683899, 32.777957], [-83.685031, 32.777232]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 10, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2014-12-17 20:05:19+00:00", "2014-12-17 20:05:22+00:00", "2014-12-17 20:05:26+00:00", "2014-12-17 20:05:28+00:00", "2014-12-17 20:05:34+00:00", "2014-12-17 20:05:36+00:00", "2014-12-17 20:05:38+00:00", "2014-12-17 20:05:40+00:00", "2014-12-17 20:05:42+00:00", "2014-12-17 20:05:49+00:00", "2014-12-17 20:05:51+00:00", "2014-12-17 20:05:54+00:00", "2014-12-17 20:05:56+00:00", "2014-12-17 20:05:58+00:00", "2014-12-17 20:06:00+00:00", "2014-12-17 20:06:02+00:00", "2014-12-17 20:06:04+00:00", "2014-12-17 20:06:06+00:00", "2014-12-17 20:06:08+00:00", "2014-12-17 20:06:10+00:00", "2014-12-17 20:06:12+00:00", "2014-12-17 20:06:14+00:00", "2014-12-17 20:06:17+00:00", "2014-12-17 20:06:19+00:00", "2014-12-17 20:06:22+00:00", "2014-12-17 20:06:24+00:00", "2014-12-17 20:06:26+00:00", "2014-12-17 20:06:28+00:00", "2014-12-17 20:06:30+00:00", "2014-12-17 20:06:33+00:00", "2014-12-17 20:06:38+00:00", "2014-12-17 20:06:47+00:00", "2014-12-17 20:06:51+00:00", "2014-12-17 20:06:53+00:00", "2014-12-17 20:06:55+00:00", "2014-12-17 20:06:57+00:00", "2014-12-17 20:06:59+00:00", "2014-12-17 20:07:01+00:00", "2014-12-17 20:07:03+00:00", "2014-12-17 20:07:05+00:00", "2014-12-17 20:07:07+00:00", "2014-12-17 20:07:09+00:00", "2014-12-17 20:07:11+00:00", "2014-12-17 20:07:14+00:00", "2014-12-17 20:07:17+00:00", "2014-12-17 20:07:21+00:00", "2014-12-17 20:07:24+00:00", "2014-12-17 20:07:26+00:00", "2014-12-17 20:07:28+00:00", "2014-12-17 20:07:32+00:00", "2014-12-17 20:07:35+00:00", "2014-12-17 20:07:37+00:00", "2014-12-17 20:07:39+00:00", "2014-12-17 20:07:41+00:00", "2014-12-17 20:07:43+00:00", "2014-12-17 20:07:45+00:00", "2014-12-17 20:07:47+00:00", "2014-12-17 20:07:49+00:00", "2014-12-17 20:07:51+00:00", "2014-12-17 20:07:53+00:00", "2014-12-17 20:07:55+00:00", "2014-12-17 20:07:57+00:00", "2014-12-17 20:08:00+00:00", "2014-12-17 20:08:02+00:00", "2014-12-17 20:08:04+00:00", "2014-12-17 20:08:06+00:00", "2014-12-17 20:08:08+00:00", "2014-12-17 20:08:10+00:00", "2014-12-17 20:08:12+00:00", "2014-12-17 20:08:14+00:00", "2014-12-17 20:08:16+00:00", "2014-12-17 20:08:20+00:00", "2014-12-17 20:08:24+00:00", "2014-12-17 20:08:27+00:00", "2014-12-17 20:08:29+00:00", "2014-12-17 20:08:31+00:00", "2014-12-17 20:08:33+00:00", "2014-12-17 20:08:35+00:00", "2014-12-17 20:08:37+00:00", "2014-12-17 20:08:39+00:00", "2014-12-17 20:08:41+00:00", "2014-12-17 20:08:43+00:00", "2014-12-17 20:08:48+00:00", "2014-12-17 20:08:50+00:00", "2014-12-17 20:08:54+00:00", "2014-12-17 20:08:57+00:00", "2014-12-17 20:08:59+00:00", "2014-12-17 20:09:01+00:00", "2014-12-17 20:09:05+00:00", "2014-12-17 20:09:09+00:00", "2014-12-17 20:09:13+00:00", "2014-12-17 20:09:17+00:00", "2014-12-17 20:09:19+00:00", "2014-12-17 20:09:22+00:00", "2014-12-17 20:09:24+00:00", "2014-12-17 20:09:26+00:00", "2014-12-17 20:09:28+00:00", "2014-12-17 20:09:32+00:00", "2014-12-17 20:09:35+00:00", "2014-12-17 20:09:37+00:00", "2014-12-17 20:09:41+00:00"]}}, {"type": "Feature", "id": "trace#145", "geometry": {"type": "LineString", "coordinates": [[-83.66212, 32.866393], [-83.662202, 32.866848], [-83.662225, 32.867487], [-83.662245, 32.867968], [-83.662308, 32.868777], [-83.66235, 32.86945], [-83.662378, 32.870127], [-83.662397, 32.870613], [-83.662438, 32.871397], [-83.66246, 32.871997], [-83.662463, 32.872627], [-83.662485, 32.87308], [-83.662705, 32.873552], [-83.663398, 32.874395], [-83.663738, 32.874818], [-83.66465, 32.875993], [-83.66494, 32.876375], [-83.665268, 32.876772], [-83.664715, 32.876435], [-83.664388, 32.876048], [-83.663857, 32.87544], [-83.663105, 32.874578], [-83.662787, 32.874215], [-83.662458, 32.873842], [-83.662125, 32.87346], [-83.661267, 32.872478], [-83.660752, 32.871883], [-83.660398, 32.871488], [-83.660028, 32.871097], [-83.659645, 32.870702], [-83.659247, 32.8703], [-83.658835, 32.869898], [-83.658408, 32.8695], [-83.657758, 32.868907], [-83.65711, 32.868315], [-83.656035, 32.867338], [-83.655612, 32.866947], [-83.655185, 32.866557], [-83.6539, 32.865368], [-83.65325, 32.864773], [-83.652393, 32.863988], [-83.651948, 32.86362], [-83.651472, 32.863285], [-83.650952, 32.862997], [-83.650393, 32.862747], [-83.649808, 32.862508], [-83.648923, 32.862152], [-83.648342, 32.861922], [-83.647777, 32.861703], [-83.646963, 32.86139], [-83.646435, 32.861178], [-83.645395, 32.860768], [-83.644893, 32.860568], [-83.644408, 32.860357], [-83.643953, 32.860113], [-83.643527, 32.85984], [-83.642945, 32.859392], [-83.642575, 32.859055], [-83.642245, 32.858698], [-83.64195, 32.858315], [-83.64168, 32.85791], [-83.641457, 32.857493], [-83.64128, 32.857063], [-83.641142, 32.856627], [-83.640997, 32.85598], [-83.64094, 32.855325], [-83.640968, 32.854672], [-83.641095, 32.854032], [-83.641288, 32.853393], [-83.641575, 32.852532], [-83.641773, 32.851892], [-83.641977, 32.851245], [-83.642085, 32.850797], [-83.642195, 32.850133], [-83.642252, 32.849678], [-83.642297, 32.849202], [-83.64233, 32.848717], [-83.642383, 32.847978], [-83.642417, 32.847477], [-83.64245, 32.846973], [-83.642533, 32.84647], [-83.642655, 32.845977], [-83.642817, 32.845492], [-83.64301, 32.845017], [-83.643242, 32.844553], [-83.643508, 32.844103], [-83.64381, 32.843668], [-83.644493, 32.84284], [-83.645357, 32.841788], [-83.646045, 32.840947], [-83.646555, 32.840312], [-83.646902, 32.83989], [-83.647405, 32.839253], [-83.647748, 32.838832], [-83.648263, 32.838198], [-83.648775, 32.837563], [-83.649285, 32.836925], [-83.649973, 32.836078], [-83.651162, 32.834585], [-83.651842, 32.833738], [-83.652518, 32.83289]]}, "properties": {"filename": "osm-traces-page-96.gpx", "track.number": 11, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 3, "track.description": null, "times": ["2014-07-27 19:04:19+00:00", "2014-07-27 19:04:22+00:00", "2014-07-27 19:04:26+00:00", "2014-07-27 19:04:29+00:00", "2014-07-27 19:04:34+00:00", "2014-07-27 19:04:38+00:00", "2014-07-27 19:04:42+00:00", "2014-07-27 19:04:45+00:00", "2014-07-27 19:04:50+00:00", "2014-07-27 19:04:54+00:00", "2014-07-27 19:04:59+00:00", "2014-07-27 19:06:25+00:00", "2014-07-27 19:06:30+00:00", "2014-07-27 19:06:37+00:00", "2014-07-27 19:06:40+00:00", "2014-07-27 19:06:48+00:00", "2014-07-27 19:06:51+00:00", "2014-07-27 19:06:59+00:00", "2014-07-27 19:07:10+00:00", "2014-07-27 19:07:13+00:00", "2014-07-27 19:07:17+00:00", "2014-07-27 19:07:22+00:00", "2014-07-27 19:07:24+00:00", "2014-07-27 19:07:26+00:00", "2014-07-27 19:07:28+00:00", "2014-07-27 19:07:33+00:00", "2014-07-27 19:07:36+00:00", "2014-07-27 19:07:38+00:00", "2014-07-27 19:07:40+00:00", "2014-07-27 19:07:42+00:00", "2014-07-27 19:07:44+00:00", "2014-07-27 19:07:46+00:00", "2014-07-27 19:07:48+00:00", "2014-07-27 19:07:51+00:00", "2014-07-27 19:07:54+00:00", "2014-07-27 19:07:59+00:00", "2014-07-27 19:08:01+00:00", "2014-07-27 19:08:03+00:00", "2014-07-27 19:08:09+00:00", "2014-07-27 19:08:12+00:00", "2014-07-27 19:08:16+00:00", "2014-07-27 19:08:18+00:00", "2014-07-27 19:08:20+00:00", "2014-07-27 19:08:22+00:00", "2014-07-27 19:08:24+00:00", "2014-07-27 19:08:26+00:00", "2014-07-27 19:08:29+00:00", "2014-07-27 19:08:31+00:00", "2014-07-27 19:08:33+00:00", "2014-07-27 19:08:36+00:00", "2014-07-27 19:08:38+00:00", "2014-07-27 19:08:42+00:00", "2014-07-27 19:08:44+00:00", "2014-07-27 19:08:46+00:00", "2014-07-27 19:08:48+00:00", "2014-07-27 19:08:50+00:00", "2014-07-27 19:08:53+00:00", "2014-07-27 19:08:55+00:00", "2014-07-27 19:08:57+00:00", "2014-07-27 19:08:59+00:00", "2014-07-27 19:09:01+00:00", "2014-07-27 19:09:03+00:00", "2014-07-27 19:09:05+00:00", "2014-07-27 19:09:07+00:00", "2014-07-27 19:09:10+00:00", "2014-07-27 19:09:13+00:00", "2014-07-27 19:09:16+00:00", "2014-07-27 19:09:19+00:00", "2014-07-27 19:09:22+00:00", "2014-07-27 19:09:26+00:00", "2014-07-27 19:09:29+00:00", "2014-07-27 19:09:32+00:00", "2014-07-27 19:09:34+00:00", "2014-07-27 19:09:37+00:00", "2014-07-27 19:09:39+00:00", "2014-07-27 19:09:41+00:00", "2014-07-27 19:09:43+00:00", "2014-07-27 19:09:46+00:00", "2014-07-27 19:09:48+00:00", "2014-07-27 19:09:50+00:00", "2014-07-27 19:09:52+00:00", "2014-07-27 19:09:54+00:00", "2014-07-27 19:09:56+00:00", "2014-07-27 19:09:58+00:00", "2014-07-27 19:10:00+00:00", "2014-07-27 19:10:02+00:00", "2014-07-27 19:10:04+00:00", "2014-07-27 19:10:08+00:00", "2014-07-27 19:10:13+00:00", "2014-07-27 19:10:17+00:00", "2014-07-27 19:10:20+00:00", "2014-07-27 19:10:22+00:00", "2014-07-27 19:10:25+00:00", "2014-07-27 19:10:27+00:00", "2014-07-27 19:10:30+00:00", "2014-07-27 19:10:33+00:00", "2014-07-27 19:10:36+00:00", "2014-07-27 19:10:40+00:00", "2014-07-27 19:10:47+00:00", "2014-07-27 19:10:51+00:00", "2014-07-27 19:10:55+00:00"]}}, {"type": "Feature", "id": "trace#146", "geometry": {"type": "LineString", "coordinates": [[-83.719762, 32.78905], [-83.719835, 32.789945], [-83.719875, 32.790542], [-83.719925, 32.791135], [-83.719975, 32.791728], [-83.720033, 32.79232], [-83.720155, 32.793505], [-83.720302, 32.794975], [-83.720367, 32.795562], [-83.720417, 32.796145], [-83.720475, 32.796728], [-83.720518, 32.7973], [-83.720563, 32.797858], [-83.72064, 32.7984], [-83.720738, 32.798922], [-83.720853, 32.799427], [-83.720985, 32.79992], [-83.721135, 32.800407], [-83.721303, 32.800883], [-83.72149, 32.80135], [-83.721802, 32.802037], [-83.72202, 32.802487]]}, "properties": {"filename": "osm-traces-page-97.gpx", "track.number": 1, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2014-12-02 14:49:46+00:00", "2014-12-02 14:49:49+00:00", "2014-12-02 14:49:51+00:00", "2014-12-02 14:49:53+00:00", "2014-12-02 14:49:55+00:00", "2014-12-02 14:49:57+00:00", "2014-12-02 14:50:01+00:00", "2014-12-02 14:50:06+00:00", "2014-12-02 14:50:08+00:00", "2014-12-02 14:50:10+00:00", "2014-12-02 14:50:12+00:00", "2014-12-02 14:50:14+00:00", "2014-12-02 14:50:16+00:00", "2014-12-02 14:50:18+00:00", "2014-12-02 14:50:20+00:00", "2014-12-02 14:50:22+00:00", "2014-12-02 14:50:24+00:00", "2014-12-02 14:50:26+00:00", "2014-12-02 14:50:28+00:00", "2014-12-02 14:50:30+00:00", "2014-12-02 14:50:33+00:00", "2014-12-02 14:50:35+00:00"]}}, {"type": "Feature", "id": "trace#147", "geometry": {"type": "LineString", "coordinates": [[-83.72234, 32.802523], [-83.72209, 32.801973], [-83.721838, 32.801415], [-83.721612, 32.800833], [-83.721413, 32.800243], [-83.721245, 32.799638], [-83.721108, 32.799027], [-83.721007, 32.798415], [-83.720932, 32.797803], [-83.720838, 32.79689], [-83.720748, 32.795972], [-83.720688, 32.795357], [-83.720602, 32.794455], [-83.720537, 32.793858], [-83.720458, 32.792968], [-83.72042, 32.792377], [-83.720368, 32.79179], [-83.720287, 32.790905], [-83.720155, 32.789713], [-83.720095, 32.789117], [-83.720037, 32.788525], [-83.71995, 32.787932], [-83.719817, 32.787343], [-83.719637, 32.786768], [-83.719408, 32.786217], [-83.719125, 32.785678], [-83.718805, 32.785152], [-83.718295, 32.784372], [-83.717292, 32.7828], [-83.716952, 32.782273], [-83.716113, 32.780953], [-83.715615, 32.780163], [-83.715278, 32.779638], [-83.714117, 32.777803], [-83.713782, 32.77728], [-83.713263, 32.776507], [-83.712925, 32.775987], [-83.712267, 32.774942], [-83.711933, 32.774418]]}, "properties": {"filename": "osm-traces-page-98.gpx", "track.number": 1, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2014-10-20 22:21:43+00:00", "2014-10-20 22:21:45+00:00", "2014-10-20 22:21:47+00:00", "2014-10-20 22:21:49+00:00", "2014-10-20 22:21:51+00:00", "2014-10-20 22:21:53+00:00", "2014-10-20 22:21:55+00:00", "2014-10-20 22:21:57+00:00", "2014-10-20 22:21:59+00:00", "2014-10-20 22:22:02+00:00", "2014-10-20 22:22:05+00:00", "2014-10-20 22:22:07+00:00", "2014-10-20 22:22:10+00:00", "2014-10-20 22:22:12+00:00", "2014-10-20 22:22:15+00:00", "2014-10-20 22:22:17+00:00", "2014-10-20 22:22:19+00:00", "2014-10-20 22:22:22+00:00", "2014-10-20 22:22:26+00:00", "2014-10-20 22:22:28+00:00", "2014-10-20 22:22:30+00:00", "2014-10-20 22:22:32+00:00", "2014-10-20 22:22:34+00:00", "2014-10-20 22:22:36+00:00", "2014-10-20 22:22:38+00:00", "2014-10-20 22:22:40+00:00", "2014-10-20 22:22:42+00:00", "2014-10-20 22:22:45+00:00", "2014-10-20 22:22:51+00:00", "2014-10-20 22:22:53+00:00", "2014-10-20 22:22:58+00:00", "2014-10-20 22:23:01+00:00", "2014-10-20 22:23:03+00:00", "2014-10-20 22:23:10+00:00", "2014-10-20 22:23:12+00:00", "2014-10-20 22:23:15+00:00", "2014-10-20 22:23:17+00:00", "2014-10-20 22:23:21+00:00", "2014-10-20 22:23:23+00:00"]}}, {"type": "Feature", "id": "trace#148", "geometry": {"type": "LineString", "coordinates": [[-83.720487, 32.797197], [-83.720545, 32.797817], [-83.72063, 32.798435], [-83.720752, 32.799047], [-83.720895, 32.799655], [-83.721068, 32.80026], [-83.721277, 32.800855], [-83.721513, 32.801443], [-83.721775, 32.802025], [-83.722052, 32.802598], [-83.72234, 32.80317], [-83.722328, 32.802535], [-83.722082, 32.801995], [-83.721848, 32.801442], [-83.721638, 32.800865], [-83.721452, 32.80028], [-83.721282, 32.799682], [-83.721147, 32.79907], [-83.721037, 32.79846], [-83.720955, 32.797837], [-83.720867, 32.796903], [-83.720758, 32.795968], [-83.720682, 32.79535], [-83.72058, 32.79442], [-83.720505, 32.793802], [-83.720385, 32.792873], [-83.720248, 32.791632], [-83.72013, 32.790393], [-83.720067, 32.78977], [-83.719967, 32.788832], [-83.719892, 32.788208], [-83.719768, 32.787592], [-83.719597, 32.786985], [-83.719378, 32.786397], [-83.719102, 32.785828], [-83.718767, 32.785275], [-83.718415, 32.784732], [-83.71807, 32.784183], [-83.717398, 32.78308], [-83.716877, 32.782253], [-83.716533, 32.781703], [-83.716183, 32.781152], [-83.715832, 32.780602], [-83.715312, 32.779778], [-83.71461, 32.77867], [-83.713922, 32.777578], [-83.713573, 32.77703], [-83.712533, 32.775385], [-83.712188, 32.774837], [-83.71184, 32.774293], [-83.711187, 32.774123], [-83.711512, 32.774677], [-83.711857, 32.775213], [-83.712208, 32.77574], [-83.712722, 32.776535], [-83.713067, 32.777068], [-83.713407, 32.777603], [-83.713753, 32.778135], [-83.714093, 32.778668], [-83.714437, 32.7792], [-83.714772, 32.779735], [-83.715282, 32.780542], [-83.715615, 32.781078], [-83.715958, 32.781613], [-83.7163, 32.782147], [-83.716808, 32.782947], [-83.717312, 32.783748], [-83.717637, 32.784268], [-83.718482, 32.78555], [-83.718812, 32.786082], [-83.7191, 32.786635], [-83.719338, 32.787203], [-83.71951, 32.787788], [-83.719623, 32.78837], [-83.71972, 32.789233], [-83.719772, 32.789808], [-83.719818, 32.79039], [-83.719872, 32.79097], [-83.71999, 32.792142], [-83.720085, 32.79333], [-83.720137, 32.793922], [-83.720218, 32.794802], [-83.720275, 32.795387], [-83.720367, 32.796258], [-83.72042, 32.796843], [-83.720513, 32.797718], [-83.720595, 32.798302], [-83.720698, 32.798888], [-83.720828, 32.799465], [-83.720988, 32.800035], [-83.721177, 32.800598], [-83.721387, 32.801148], [-83.721613, 32.801677], [-83.721857, 32.802188], [-83.722355, 32.803183]]}, "properties": {"filename": "osm-traces-page-98.gpx", "track.number": 4, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 2, "track.description": null, "times": ["2014-09-10 13:38:40+00:00", "2014-09-10 13:38:42+00:00", "2014-09-10 13:38:44+00:00", "2014-09-10 13:38:46+00:00", "2014-09-10 13:38:48+00:00", "2014-09-10 13:38:50+00:00", "2014-09-10 13:38:52+00:00", "2014-09-10 13:38:54+00:00", "2014-09-10 13:38:56+00:00", "2014-09-10 13:38:58+00:00", "2014-09-10 13:39:00+00:00", "2014-09-10 16:46:44+00:00", "2014-09-10 16:46:46+00:00", "2014-09-10 16:46:48+00:00", "2014-09-10 16:46:50+00:00", "2014-09-10 16:46:52+00:00", "2014-09-10 16:46:54+00:00", "2014-09-10 16:46:56+00:00", "2014-09-10 16:46:58+00:00", "2014-09-10 16:47:00+00:00", "2014-09-10 16:47:03+00:00", "2014-09-10 16:47:06+00:00", "2014-09-10 16:47:08+00:00", "2014-09-10 16:47:11+00:00", "2014-09-10 16:47:13+00:00", "2014-09-10 16:47:16+00:00", "2014-09-10 16:47:20+00:00", "2014-09-10 16:47:24+00:00", "2014-09-10 16:47:26+00:00", "2014-09-10 16:47:29+00:00", "2014-09-10 16:47:31+00:00", "2014-09-10 16:47:33+00:00", "2014-09-10 16:47:35+00:00", "2014-09-10 16:47:37+00:00", "2014-09-10 16:47:39+00:00", "2014-09-10 16:47:41+00:00", "2014-09-10 16:47:43+00:00", "2014-09-10 16:47:45+00:00", "2014-09-10 16:47:49+00:00", "2014-09-10 16:47:52+00:00", "2014-09-10 16:47:54+00:00", "2014-09-10 16:47:56+00:00", "2014-09-10 16:47:58+00:00", "2014-09-10 16:48:01+00:00", "2014-09-10 16:48:05+00:00", "2014-09-10 16:48:09+00:00", "2014-09-10 16:48:11+00:00", "2014-09-10 16:48:17+00:00", "2014-09-10 16:48:19+00:00", "2014-09-10 16:48:21+00:00", "2014-09-11 13:25:12+00:00", "2014-09-11 13:25:14+00:00", "2014-09-11 13:25:16+00:00", "2014-09-11 13:25:18+00:00", "2014-09-11 13:25:21+00:00", "2014-09-11 13:25:23+00:00", "2014-09-11 13:25:25+00:00", "2014-09-11 13:25:27+00:00", "2014-09-11 13:25:29+00:00", "2014-09-11 13:25:31+00:00", "2014-09-11 13:25:33+00:00", "2014-09-11 13:25:36+00:00", "2014-09-11 13:25:38+00:00", "2014-09-11 13:25:40+00:00", "2014-09-11 13:25:42+00:00", "2014-09-11 13:25:45+00:00", "2014-09-11 13:25:48+00:00", "2014-09-11 13:25:50+00:00", "2014-09-11 13:25:55+00:00", "2014-09-11 13:25:57+00:00", "2014-09-11 13:25:59+00:00", "2014-09-11 13:26:01+00:00", "2014-09-11 13:26:03+00:00", "2014-09-11 13:26:05+00:00", "2014-09-11 13:26:08+00:00", "2014-09-11 13:26:10+00:00", "2014-09-11 13:26:12+00:00", "2014-09-11 13:26:14+00:00", "2014-09-11 13:26:18+00:00", "2014-09-11 13:26:22+00:00", "2014-09-11 13:26:24+00:00", "2014-09-11 13:26:27+00:00", "2014-09-11 13:26:29+00:00", "2014-09-11 13:26:32+00:00", "2014-09-11 13:26:34+00:00", "2014-09-11 13:26:37+00:00", "2014-09-11 13:26:39+00:00", "2014-09-11 13:26:41+00:00", "2014-09-11 13:26:43+00:00", "2014-09-11 13:26:45+00:00", "2014-09-11 13:26:47+00:00", "2014-09-11 13:26:49+00:00", "2014-09-11 13:26:51+00:00", "2014-09-11 13:26:53+00:00", "2014-09-11 13:26:57+00:00"]}}, {"type": "Feature", "id": "trace#149", "geometry": {"type": "LineString", "coordinates": [[-83.718452, 32.785567], [-83.718757, 32.786072], [-83.719028, 32.786592], [-83.71925, 32.787133], [-83.719417, 32.787685], [-83.719538, 32.788237], [-83.719612, 32.788792], [-83.719668, 32.789343], [-83.719752, 32.790165], [-83.719803, 32.790712], [-83.719885, 32.791548], [-83.719945, 32.792118], [-83.720015, 32.792702], [-83.720088, 32.793602], [-83.720153, 32.794183], [-83.720252, 32.795028], [-83.720332, 32.795862], [-83.720422, 32.796703], [-83.720478, 32.797262], [-83.720555, 32.797807], [-83.720628, 32.798343], [-83.720712, 32.798862], [-83.720883, 32.799622], [-83.721025, 32.800105], [-83.721262, 32.800815], [-83.721442, 32.801298], [-83.721648, 32.80178], [-83.721987, 32.802503], [-83.722327, 32.803202]]}, "properties": {"filename": "osm-traces-page-98.gpx", "track.number": 5, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2014-08-30 20:33:53+00:00", "2014-08-30 20:33:55+00:00", "2014-08-30 20:33:57+00:00", "2014-08-30 20:33:59+00:00", "2014-08-30 20:34:01+00:00", "2014-08-30 20:34:03+00:00", "2014-08-30 20:34:05+00:00", "2014-08-30 20:34:07+00:00", "2014-08-30 20:34:10+00:00", "2014-08-30 20:34:12+00:00", "2014-08-30 20:34:15+00:00", "2014-08-30 20:34:17+00:00", "2014-08-30 20:34:19+00:00", "2014-08-30 20:34:22+00:00", "2014-08-30 20:34:24+00:00", "2014-08-30 20:34:27+00:00", "2014-08-30 20:34:30+00:00", "2014-08-30 20:34:33+00:00", "2014-08-30 20:34:35+00:00", "2014-08-30 20:34:37+00:00", "2014-08-30 20:34:39+00:00", "2014-08-30 20:34:41+00:00", "2014-08-30 20:34:44+00:00", "2014-08-30 20:34:46+00:00", "2014-08-30 20:34:49+00:00", "2014-08-30 20:34:51+00:00", "2014-08-30 20:34:53+00:00", "2014-08-30 20:34:56+00:00", "2014-08-30 20:34:59+00:00"]}}, {"type": "Feature", "id": "trace#150", "geometry": {"type": "LineString", "coordinates": [[-83.676438, 32.890767], [-83.676062, 32.890292], [-83.675683, 32.889817], [-83.674913, 32.888878], [-83.674523, 32.888412], [-83.673752, 32.887472], [-83.673355, 32.887007], [-83.67254, 32.88609], [-83.672137, 32.885625], [-83.671353, 32.884678], [-83.670967, 32.884208], [-83.669798, 32.882793], [-83.669403, 32.882323], [-83.669015, 32.88185], [-83.668625, 32.881382], [-83.668235, 32.880903], [-83.667647, 32.880202], [-83.667253, 32.879745], [-83.66647, 32.87883], [-83.666075, 32.878368], [-83.66548, 32.877677], [-83.665083, 32.87721], [-83.664683, 32.876747], [-83.664097, 32.876038], [-83.663703, 32.875572], [-83.66332, 32.875103], [-83.662908, 32.874682], [-83.662525, 32.874215], [-83.662138, 32.873743], [-83.661752, 32.873267], [-83.660965, 32.872327], [-83.660573, 32.871857], [-83.660183, 32.871393], [-83.659783, 32.870933], [-83.659368, 32.870488], [-83.658933, 32.87005], [-83.658255, 32.869408], [-83.657568, 32.868773], [-83.65688, 32.868135], [-83.656418, 32.867715], [-83.655967, 32.867292], [-83.655512, 32.86687], [-83.655057, 32.866453], [-83.653217, 32.864753], [-83.652532, 32.864117], [-83.652073, 32.863717], [-83.651577, 32.863368], [-83.651042, 32.863058], [-83.650478, 32.862802], [-83.6499, 32.862568], [-83.649013, 32.862217], [-83.648105, 32.861863], [-83.647498, 32.861627], [-83.6469, 32.861385], [-83.646298, 32.861147], [-83.645408, 32.860788], [-83.644825, 32.860555], [-83.644268, 32.860302], [-83.643743, 32.86001], [-83.643258, 32.859677], [-83.642817, 32.85932], [-83.642413, 32.858947], [-83.642052, 32.858547], [-83.641737, 32.85812], [-83.64148, 32.857677], [-83.64128, 32.857225], [-83.641123, 32.856755], [-83.64101, 32.856277], [-83.640945, 32.85579], [-83.64093, 32.855303], [-83.640962, 32.854807], [-83.641042, 32.85431], [-83.641173, 32.853812], [-83.641405, 32.853087], [-83.641647, 32.852353], [-83.641888, 32.851617], [-83.64205, 32.851117], [-83.642165, 32.850603], [-83.64225, 32.850088], [-83.642333, 32.849295], [-83.64237, 32.848753], [-83.642382, 32.848222], [-83.642397, 32.847693], [-83.64243, 32.847165], [-83.64249, 32.846643], [-83.642602, 32.846123], [-83.642763, 32.8456], [-83.64297, 32.845087], [-83.643223, 32.844585], [-83.643515, 32.844085], [-83.643843, 32.843607], [-83.644207, 32.843137], [-83.644578, 32.842673], [-83.645135, 32.841983], [-83.645683, 32.841292], [-83.646057, 32.840835], [-83.646433, 32.840388], [-83.646818, 32.839952], [-83.647205, 32.83951], [-83.64776, 32.838832], [-83.64812, 32.838377]]}, "properties": {"filename": "osm-traces-page-98.gpx", "track.number": 5, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 3, "track.description": null, "times": ["2014-08-31 00:47:00+00:00", "2014-08-31 00:47:02+00:00", "2014-08-31 00:47:04+00:00", "2014-08-31 00:47:08+00:00", "2014-08-31 00:47:10+00:00", "2014-08-31 00:47:14+00:00", "2014-08-31 00:47:16+00:00", "2014-08-31 00:47:20+00:00", "2014-08-31 00:47:22+00:00", "2014-08-31 00:47:26+00:00", "2014-08-31 00:47:28+00:00", "2014-08-31 00:47:34+00:00", "2014-08-31 00:47:36+00:00", "2014-08-31 00:47:38+00:00", "2014-08-31 00:47:40+00:00", "2014-08-31 00:47:42+00:00", "2014-08-31 00:47:45+00:00", "2014-08-31 00:47:47+00:00", "2014-08-31 00:47:51+00:00", "2014-08-31 00:47:53+00:00", "2014-08-31 00:47:56+00:00", "2014-08-31 00:47:58+00:00", "2014-08-31 00:48:00+00:00", "2014-08-31 00:48:03+00:00", "2014-08-31 00:48:05+00:00", "2014-08-31 00:48:07+00:00", "2014-08-31 00:48:09+00:00", "2014-08-31 00:48:11+00:00", "2014-08-31 00:48:13+00:00", "2014-08-31 00:48:15+00:00", "2014-08-31 00:48:19+00:00", "2014-08-31 00:48:21+00:00", "2014-08-31 00:48:23+00:00", "2014-08-31 00:48:25+00:00", "2014-08-31 00:48:27+00:00", "2014-08-31 00:48:29+00:00", "2014-08-31 00:48:32+00:00", "2014-08-31 00:48:35+00:00", "2014-08-31 00:48:38+00:00", "2014-08-31 00:48:40+00:00", "2014-08-31 00:48:42+00:00", "2014-08-31 00:48:44+00:00", "2014-08-31 00:48:46+00:00", "2014-08-31 00:48:54+00:00", "2014-08-31 00:48:57+00:00", "2014-08-31 00:48:59+00:00", "2014-08-31 00:49:01+00:00", "2014-08-31 00:49:03+00:00", "2014-08-31 00:49:05+00:00", "2014-08-31 00:49:07+00:00", "2014-08-31 00:49:10+00:00", "2014-08-31 00:49:13+00:00", "2014-08-31 00:49:15+00:00", "2014-08-31 00:49:17+00:00", "2014-08-31 00:49:19+00:00", "2014-08-31 00:49:22+00:00", "2014-08-31 00:49:24+00:00", "2014-08-31 00:49:26+00:00", "2014-08-31 00:49:28+00:00", "2014-08-31 00:49:30+00:00", "2014-08-31 00:49:32+00:00", "2014-08-31 00:49:34+00:00", "2014-08-31 00:49:36+00:00", "2014-08-31 00:49:38+00:00", "2014-08-31 00:49:40+00:00", "2014-08-31 00:49:42+00:00", "2014-08-31 00:49:44+00:00", "2014-08-31 00:49:46+00:00", "2014-08-31 00:49:48+00:00", "2014-08-31 00:49:50+00:00", "2014-08-31 00:49:52+00:00", "2014-08-31 00:49:54+00:00", "2014-08-31 00:49:56+00:00", "2014-08-31 00:49:59+00:00", "2014-08-31 00:50:02+00:00", "2014-08-31 00:50:05+00:00", "2014-08-31 00:50:07+00:00", "2014-08-31 00:50:09+00:00", "2014-08-31 00:50:11+00:00", "2014-08-31 00:50:14+00:00", "2014-08-31 00:50:16+00:00", "2014-08-31 00:50:18+00:00", "2014-08-31 00:50:20+00:00", "2014-08-31 00:50:22+00:00", "2014-08-31 00:50:24+00:00", "2014-08-31 00:50:26+00:00", "2014-08-31 00:50:28+00:00", "2014-08-31 00:50:30+00:00", "2014-08-31 00:50:32+00:00", "2014-08-31 00:50:34+00:00", "2014-08-31 00:50:36+00:00", "2014-08-31 00:50:38+00:00", "2014-08-31 00:50:40+00:00", "2014-08-31 00:50:43+00:00", "2014-08-31 00:50:46+00:00", "2014-08-31 00:50:48+00:00", "2014-08-31 00:50:50+00:00", "2014-08-31 00:50:52+00:00", "2014-08-31 00:50:54+00:00", "2014-08-31 00:50:57+00:00", "2014-08-31 00:50:59+00:00"]}}, {"type": "Feature", "id": "trace#151", "geometry": {"type": "LineString", "coordinates": [[-83.64549, 32.832972], [-83.64512, 32.833402], [-83.64471, 32.83375], [-83.645247, 32.834072], [-83.645827, 32.834408], [-83.646372, 32.834725], [-83.646858, 32.835018], [-83.647442, 32.834842], [-83.647822, 32.834395], [-83.648145, 32.834002], [-83.648468, 32.833607], [-83.648833, 32.833168], [-83.649283, 32.832922], [-83.649833, 32.833265], [-83.650457, 32.833632], [-83.650923, 32.833933], [-83.6505, 32.833637], [-83.649963, 32.833328], [-83.649597, 32.833745], [-83.649238, 32.834155], [-83.649532, 32.83479], [-83.650013, 32.83507], [-83.650455, 32.834712], [-83.650745, 32.83432], [-83.650985, 32.833902], [-83.650523, 32.833615], [-83.650037, 32.833343], [-83.65008, 32.832853], [-83.650615, 32.832663], [-83.651157, 32.832605], [-83.651712, 32.832665], [-83.651877, 32.83221], [-83.652038, 32.831747], [-83.652403, 32.831303], [-83.65271, 32.830932], [-83.653042, 32.830488], [-83.653665, 32.829957], [-83.654297, 32.829545], [-83.654775, 32.82923], [-83.655103, 32.82882], [-83.655403, 32.828352], [-83.655662, 32.827877], [-83.655697, 32.82737], [-83.655393, 32.826907], [-83.6549, 32.82666], [-83.65433, 32.826617], [-83.653775, 32.82661], [-83.653733, 32.826103], [-83.654258, 32.825852], [-83.65485, 32.825835], [-83.655892, 32.825813], [-83.656818, 32.825825], [-83.657353, 32.825848], [-83.65799, 32.825987], [-83.658427, 32.826352], [-83.658447, 32.826845], [-83.65785, 32.827067], [-83.657387, 32.826733], [-83.657268, 32.82626], [-83.657327, 32.825743], [-83.657358, 32.825145], [-83.657307, 32.8245], [-83.657165, 32.823855], [-83.657032, 32.823417], [-83.65688, 32.822975], [-83.656718, 32.822532], [-83.656482, 32.821862], [-83.656332, 32.821423], [-83.656193, 32.820978], [-83.656087, 32.820527], [-83.656013, 32.820063], [-83.655972, 32.81959], [-83.655958, 32.819105], [-83.65597, 32.818107], [-83.65598, 32.817603], [-83.655998, 32.816845], [-83.655992, 32.81632], [-83.655998, 32.815802], [-83.656032, 32.814232], [-83.656038, 32.813708], [-83.656057, 32.812675], [-83.65608, 32.812165], [-83.656122, 32.811658], [-83.656188, 32.811147], [-83.656278, 32.810635], [-83.65639, 32.810115], [-83.656523, 32.809587], [-83.656682, 32.809053], [-83.656858, 32.808525], [-83.657157, 32.807735], [-83.657547, 32.806683], [-83.657827, 32.805908], [-83.658015, 32.805405], [-83.658197, 32.804903], [-83.658378, 32.804398], [-83.658568, 32.803893], [-83.658755, 32.803385], [-83.658933, 32.802878], [-83.659195, 32.80214], [-83.659362, 32.801657], [-83.659538, 32.801188]]}, "properties": {"filename": "osm-traces-page-99.gpx", "track.number": 0, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 2, "track.description": null, "times": ["2014-08-31 21:31:34+00:00", "2014-08-31 21:31:39+00:00", "2014-08-31 21:31:49+00:00", "2014-08-31 21:31:59+00:00", "2014-08-31 21:32:05+00:00", "2014-08-31 21:32:10+00:00", "2014-08-31 21:32:15+00:00", "2014-08-31 21:32:25+00:00", "2014-08-31 21:32:30+00:00", "2014-08-31 21:32:34+00:00", "2014-08-31 21:32:38+00:00", "2014-08-31 21:32:43+00:00", "2014-08-31 21:32:56+00:00", "2014-08-31 21:33:03+00:00", "2014-08-31 21:33:10+00:00", "2014-08-31 21:33:16+00:00", "2014-08-31 21:33:32+00:00", "2014-08-31 21:33:41+00:00", "2014-08-31 21:33:50+00:00", "2014-08-31 21:33:56+00:00", "2014-08-31 21:34:15+00:00", "2014-08-31 21:34:22+00:00", "2014-08-31 21:34:30+00:00", "2014-08-31 21:34:35+00:00", "2014-08-31 21:34:48+00:00", "2014-08-31 21:34:54+00:00", "2014-08-31 21:34:59+00:00", "2014-08-31 21:35:13+00:00", "2014-08-31 21:35:20+00:00", "2014-08-31 21:35:30+00:00", "2014-08-31 21:35:39+00:00", "2014-08-31 21:35:48+00:00", "2014-08-31 21:35:55+00:00", "2014-08-31 21:36:02+00:00", "2014-08-31 21:36:07+00:00", "2014-08-31 21:36:12+00:00", "2014-08-31 21:36:19+00:00", "2014-08-31 21:36:25+00:00", "2014-08-31 21:36:30+00:00", "2014-08-31 21:36:35+00:00", "2014-08-31 21:36:40+00:00", "2014-08-31 21:36:45+00:00", "2014-08-31 21:36:50+00:00", "2014-08-31 21:36:55+00:00", "2014-08-31 21:36:59+00:00", "2014-08-31 21:37:03+00:00", "2014-08-31 21:37:11+00:00", "2014-08-31 21:37:20+00:00", "2014-08-31 21:37:37+00:00", "2014-08-31 21:37:41+00:00", "2014-08-31 21:37:47+00:00", "2014-08-31 21:37:52+00:00", "2014-08-31 21:37:55+00:00", "2014-08-31 21:37:59+00:00", "2014-08-31 21:38:03+00:00", "2014-08-31 21:38:07+00:00", "2014-08-31 21:38:12+00:00", "2014-08-31 21:38:16+00:00", "2014-08-31 21:38:19+00:00", "2014-08-31 21:38:22+00:00", "2014-08-31 21:38:25+00:00", "2014-08-31 21:38:28+00:00", "2014-08-31 21:38:31+00:00", "2014-08-31 21:38:33+00:00", "2014-08-31 21:38:35+00:00", "2014-08-31 21:38:37+00:00", "2014-08-31 21:38:40+00:00", "2014-08-31 21:38:42+00:00", "2014-08-31 21:38:44+00:00", "2014-08-31 21:38:46+00:00", "2014-08-31 21:38:48+00:00", "2014-08-31 21:38:50+00:00", "2014-08-31 21:38:52+00:00", "2014-08-31 21:38:56+00:00", "2014-08-31 21:38:58+00:00", "2014-08-31 21:39:01+00:00", "2014-08-31 21:39:03+00:00", "2014-08-31 21:39:05+00:00", "2014-08-31 21:39:11+00:00", "2014-08-31 21:39:13+00:00", "2014-08-31 21:39:17+00:00", "2014-08-31 21:39:19+00:00", "2014-08-31 21:39:21+00:00", "2014-08-31 21:39:23+00:00", "2014-08-31 21:39:25+00:00", "2014-08-31 21:39:27+00:00", "2014-08-31 21:39:29+00:00", "2014-08-31 21:39:31+00:00", "2014-08-31 21:39:33+00:00", "2014-08-31 21:39:36+00:00", "2014-08-31 21:39:40+00:00", "2014-08-31 21:39:43+00:00", "2014-08-31 21:39:45+00:00", "2014-08-31 21:39:47+00:00", "2014-08-31 21:39:49+00:00", "2014-08-31 21:39:51+00:00", "2014-08-31 21:39:53+00:00", "2014-08-31 21:39:55+00:00", "2014-08-31 21:39:58+00:00", "2014-08-31 21:40:00+00:00", "2014-08-31 21:40:02+00:00"]}}, {"type": "Feature", "id": "trace#152", "geometry": {"type": "LineString", "coordinates": [[-83.65986, 32.800472], [-83.660117, 32.799987], [-83.660407, 32.799505], [-83.660723, 32.79904], [-83.661062, 32.798588], [-83.661423, 32.798155], [-83.66181, 32.797743], [-83.66223, 32.797353], [-83.662898, 32.796805], [-83.66359, 32.796272], [-83.664033, 32.795915], [-83.664435, 32.795542], [-83.6648, 32.79517], [-83.665127, 32.794792], [-83.665553, 32.7942], [-83.66581, 32.793777], [-83.66605, 32.793333], [-83.666362, 32.792625], [-83.666565, 32.792137], [-83.66686, 32.791387], [-83.667062, 32.790905], [-83.667253, 32.790432], [-83.667458, 32.789982], [-83.667682, 32.789562], [-83.66804, 32.78897], [-83.668427, 32.788452], [-83.668788, 32.788062], [-83.669377, 32.787827], [-83.669838, 32.7881], [-83.669772, 32.788663], [-83.669317, 32.789112], [-83.668723, 32.789095], [-83.668442, 32.788647], [-83.668202, 32.7879], [-83.667948, 32.787197], [-83.667717, 32.786673], [-83.667358, 32.786003], [-83.666757, 32.784995], [-83.666272, 32.784155], [-83.665987, 32.783657], [-83.66558, 32.782957], [-83.665253, 32.782402], [-83.664825, 32.781645], [-83.664048, 32.780302], [-83.663473, 32.779355], [-83.662905, 32.778405], [-83.662577, 32.777837], [-83.66191, 32.77668], [-83.661587, 32.776105], [-83.661153, 32.775335], [-83.660603, 32.774388]]}, "properties": {"filename": "osm-traces-page-99.gpx", "track.number": 0, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 3, "track.description": null, "times": ["2014-08-31 21:40:05+00:00", "2014-08-31 21:40:07+00:00", "2014-08-31 21:40:09+00:00", "2014-08-31 21:40:11+00:00", "2014-08-31 21:40:13+00:00", "2014-08-31 21:40:15+00:00", "2014-08-31 21:40:17+00:00", "2014-08-31 21:40:19+00:00", "2014-08-31 21:40:22+00:00", "2014-08-31 21:40:25+00:00", "2014-08-31 21:40:27+00:00", "2014-08-31 21:40:29+00:00", "2014-08-31 21:40:31+00:00", "2014-08-31 21:40:33+00:00", "2014-08-31 21:40:36+00:00", "2014-08-31 21:40:38+00:00", "2014-08-31 21:40:40+00:00", "2014-08-31 21:40:43+00:00", "2014-08-31 21:40:45+00:00", "2014-08-31 21:40:48+00:00", "2014-08-31 21:40:50+00:00", "2014-08-31 21:40:52+00:00", "2014-08-31 21:40:54+00:00", "2014-08-31 21:40:56+00:00", "2014-08-31 21:40:59+00:00", "2014-08-31 21:41:02+00:00", "2014-08-31 21:41:05+00:00", "2014-08-31 21:41:09+00:00", "2014-08-31 21:41:13+00:00", "2014-08-31 21:41:17+00:00", "2014-08-31 21:41:21+00:00", "2014-08-31 21:41:25+00:00", "2014-08-31 21:41:29+00:00", "2014-08-31 21:41:34+00:00", "2014-08-31 21:41:38+00:00", "2014-08-31 21:41:41+00:00", "2014-08-31 21:41:45+00:00", "2014-08-31 21:41:51+00:00", "2014-08-31 21:41:56+00:00", "2014-08-31 21:41:59+00:00", "2014-08-31 21:42:03+00:00", "2014-08-31 21:42:06+00:00", "2014-08-31 21:42:10+00:00", "2014-08-31 21:42:17+00:00", "2014-08-31 21:42:22+00:00", "2014-08-31 21:42:27+00:00", "2014-08-31 21:42:30+00:00", "2014-08-31 21:42:36+00:00", "2014-08-31 21:42:39+00:00", "2014-08-31 21:42:43+00:00", "2014-08-31 21:42:48+00:00"]}}, {"type": "Feature", "id": "trace#153", "geometry": {"type": "LineString", "coordinates": [[-83.719952, 32.78874], [-83.719878, 32.788138], [-83.719765, 32.787543], [-83.719593, 32.786952], [-83.719362, 32.786365], [-83.719072, 32.785788], [-83.718758, 32.785258], [-83.718427, 32.784738], [-83.718092, 32.784222], [-83.71777, 32.783702], [-83.717445, 32.783183], [-83.71711, 32.78266], [-83.716615, 32.781862], [-83.716287, 32.78132], [-83.715953, 32.780782], [-83.715612, 32.780242], [-83.715105, 32.779433], [-83.7146, 32.778617], [-83.714252, 32.778073], [-83.713732, 32.777257], [-83.713392, 32.776715], [-83.713055, 32.776185], [-83.712715, 32.77566], [-83.7119, 32.774365], [-83.711312, 32.774173], [-83.711632, 32.774672], [-83.711957, 32.775167], [-83.712922, 32.776653], [-83.71324, 32.77715], [-83.713563, 32.777645], [-83.714042, 32.778385], [-83.714355, 32.778883], [-83.714672, 32.77938], [-83.714977, 32.779877], [-83.715423, 32.780635], [-83.715727, 32.781133], [-83.716193, 32.78188], [-83.716508, 32.782378], [-83.716818, 32.782878], [-83.71713, 32.783373], [-83.717917, 32.784615], [-83.718235, 32.785117], [-83.718545, 32.785615], [-83.718838, 32.786118], [-83.719098, 32.786637], [-83.719315, 32.78717], [-83.71948, 32.78771], [-83.719598, 32.788257], [-83.719675, 32.788812], [-83.719765, 32.789932], [-83.7198, 32.790497], [-83.71984, 32.79106], [-83.71989, 32.791625], [-83.719977, 32.792473], [-83.720072, 32.793318], [-83.720183, 32.794448], [-83.720242, 32.79501], [-83.720298, 32.795573], [-83.720352, 32.796137], [-83.720413, 32.796697], [-83.720503, 32.797533], [-83.720575, 32.798093], [-83.720668, 32.79865], [-83.720778, 32.799203], [-83.72092, 32.799752], [-83.721083, 32.800293], [-83.721272, 32.800832], [-83.72148, 32.801363], [-83.721712, 32.80189], [-83.722088, 32.802672]]}, "properties": {"filename": "osm-traces-page-99.gpx", "track.number": 2, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2014-08-19 22:24:13+00:00", "2014-08-19 22:24:15+00:00", "2014-08-19 22:24:17+00:00", "2014-08-19 22:24:19+00:00", "2014-08-19 22:24:21+00:00", "2014-08-19 22:24:23+00:00", "2014-08-19 22:24:25+00:00", "2014-08-19 22:24:27+00:00", "2014-08-19 22:24:29+00:00", "2014-08-19 22:24:31+00:00", "2014-08-19 22:24:33+00:00", "2014-08-19 22:24:35+00:00", "2014-08-19 22:24:38+00:00", "2014-08-19 22:24:40+00:00", "2014-08-19 22:24:42+00:00", "2014-08-19 22:24:44+00:00", "2014-08-19 22:24:47+00:00", "2014-08-19 22:24:50+00:00", "2014-08-19 22:24:52+00:00", "2014-08-19 22:24:55+00:00", "2014-08-19 22:24:57+00:00", "2014-08-19 22:24:59+00:00", "2014-08-19 22:25:01+00:00", "2014-08-19 22:25:06+00:00", "2014-08-21 13:21:23+00:00", "2014-08-21 13:21:25+00:00", "2014-08-21 13:21:27+00:00", "2014-08-21 13:21:33+00:00", "2014-08-21 13:21:35+00:00", "2014-08-21 13:21:37+00:00", "2014-08-21 13:21:40+00:00", "2014-08-21 13:21:42+00:00", "2014-08-21 13:21:44+00:00", "2014-08-21 13:21:46+00:00", "2014-08-21 13:21:49+00:00", "2014-08-21 13:21:51+00:00", "2014-08-21 13:21:54+00:00", "2014-08-21 13:21:56+00:00", "2014-08-21 13:21:58+00:00", "2014-08-21 13:22:00+00:00", "2014-08-21 13:22:05+00:00", "2014-08-21 13:22:07+00:00", "2014-08-21 13:22:09+00:00", "2014-08-21 13:22:11+00:00", "2014-08-21 13:22:13+00:00", "2014-08-21 13:22:15+00:00", "2014-08-21 13:22:17+00:00", "2014-08-21 13:22:19+00:00", "2014-08-21 13:22:21+00:00", "2014-08-21 13:22:25+00:00", "2014-08-21 13:22:27+00:00", "2014-08-21 13:22:29+00:00", "2014-08-21 13:22:31+00:00", "2014-08-21 13:22:34+00:00", "2014-08-21 13:22:37+00:00", "2014-08-21 13:22:41+00:00", "2014-08-21 13:22:43+00:00", "2014-08-21 13:22:45+00:00", "2014-08-21 13:22:47+00:00", "2014-08-21 13:22:49+00:00", "2014-08-21 13:22:52+00:00", "2014-08-21 13:22:54+00:00", "2014-08-21 13:22:56+00:00", "2014-08-21 13:22:58+00:00", "2014-08-21 13:23:00+00:00", "2014-08-21 13:23:02+00:00", "2014-08-21 13:23:04+00:00", "2014-08-21 13:23:06+00:00", "2014-08-21 13:23:08+00:00", "2014-08-21 13:23:11+00:00"]}}, {"type": "Feature", "id": "trace#154", "geometry": {"type": "LineString", "coordinates": [[-83.722288, 32.80248], [-83.722025, 32.801932], [-83.72178, 32.801365], [-83.721558, 32.800785], [-83.72137, 32.800197], [-83.721212, 32.799592], [-83.721083, 32.79898], [-83.720982, 32.79837], [-83.720878, 32.797447], [-83.720822, 32.796835], [-83.72073, 32.79592], [-83.720637, 32.795005], [-83.720512, 32.793788], [-83.720455, 32.793177], [-83.720407, 32.792565], [-83.720368, 32.791953], [-83.720283, 32.791035], [-83.720183, 32.790115], [-83.720113, 32.789507], [-83.720017, 32.788582], [-83.71993, 32.787965], [-83.719803, 32.78736], [-83.719625, 32.78676], [-83.719387, 32.786185], [-83.719097, 32.785623], [-83.718588, 32.784813], [-83.718237, 32.784278], [-83.71789, 32.783737], [-83.717537, 32.783205], [-83.717187, 32.782668], [-83.7165, 32.781583], [-83.716157, 32.781042], [-83.715472, 32.779963], [-83.715127, 32.779427], [-83.714783, 32.778887], [-83.714442, 32.778345], [-83.713928, 32.777537], [-83.713585, 32.776992], [-83.71307, 32.776188], [-83.712043, 32.774573], [-83.711242, 32.774222], [-83.711858, 32.775207], [-83.712322, 32.775925], [-83.71262, 32.776405], [-83.712923, 32.776882], [-83.713542, 32.777835], [-83.713992, 32.778558], [-83.714292, 32.779025], [-83.714588, 32.779495], [-83.71488, 32.779963], [-83.715315, 32.780647], [-83.715737, 32.781317], [-83.716293, 32.782198], [-83.716708, 32.782868], [-83.717133, 32.78354], [-83.717417, 32.783987], [-83.718143, 32.785138], [-83.718438, 32.785607], [-83.718715, 32.786072], [-83.718967, 32.786553], [-83.71919, 32.787045], [-83.719367, 32.787548], [-83.719495, 32.788073], [-83.71958, 32.788602], [-83.719665, 32.789395], [-83.719742, 32.790202], [-83.719817, 32.791017], [-83.719873, 32.791562], [-83.719968, 32.792372], [-83.720028, 32.792915], [-83.72013, 32.794003], [-83.720208, 32.794818], [-83.720292, 32.795628], [-83.720357, 32.796173], [-83.720445, 32.796983], [-83.720523, 32.797783], [-83.720593, 32.798313], [-83.72069, 32.798832], [-83.720805, 32.799343], [-83.720933, 32.799845], [-83.721085, 32.800338], [-83.721253, 32.800827], [-83.72144, 32.801308], [-83.721645, 32.801783], [-83.72198, 32.80249], [-83.722325, 32.803195]]}, "properties": {"filename": "osm-traces-page-99.gpx", "track.number": 2, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 3, "track.description": null, "times": ["2014-08-22 02:41:16+00:00", "2014-08-22 02:41:18+00:00", "2014-08-22 02:41:20+00:00", "2014-08-22 02:41:22+00:00", "2014-08-22 02:41:24+00:00", "2014-08-22 02:41:26+00:00", "2014-08-22 02:41:28+00:00", "2014-08-22 02:41:30+00:00", "2014-08-22 02:41:33+00:00", "2014-08-22 02:41:35+00:00", "2014-08-22 02:41:38+00:00", "2014-08-22 02:41:41+00:00", "2014-08-22 02:41:45+00:00", "2014-08-22 02:41:47+00:00", "2014-08-22 02:41:49+00:00", "2014-08-22 02:41:51+00:00", "2014-08-22 02:41:54+00:00", "2014-08-22 02:41:57+00:00", "2014-08-22 02:41:59+00:00", "2014-08-22 02:42:02+00:00", "2014-08-22 02:42:04+00:00", "2014-08-22 02:42:06+00:00", "2014-08-22 02:42:08+00:00", "2014-08-22 02:42:10+00:00", "2014-08-22 02:42:12+00:00", "2014-08-22 02:42:15+00:00", "2014-08-22 02:42:17+00:00", "2014-08-22 02:42:19+00:00", "2014-08-22 02:42:21+00:00", "2014-08-22 02:42:23+00:00", "2014-08-22 02:42:27+00:00", "2014-08-22 02:42:29+00:00", "2014-08-22 02:42:33+00:00", "2014-08-22 02:42:35+00:00", "2014-08-22 02:42:37+00:00", "2014-08-22 02:42:39+00:00", "2014-08-22 02:42:42+00:00", "2014-08-22 02:42:44+00:00", "2014-08-22 02:42:47+00:00", "2014-08-22 02:42:53+00:00", "2014-08-22 13:06:12+00:00", "2014-08-22 13:06:16+00:00", "2014-08-22 13:06:19+00:00", "2014-08-22 13:06:21+00:00", "2014-08-22 13:06:23+00:00", "2014-08-22 13:06:27+00:00", "2014-08-22 13:06:30+00:00", "2014-08-22 13:06:32+00:00", "2014-08-22 13:06:34+00:00", "2014-08-22 13:06:36+00:00", "2014-08-22 13:06:39+00:00", "2014-08-22 13:06:42+00:00", "2014-08-22 13:06:46+00:00", "2014-08-22 13:06:49+00:00", "2014-08-22 13:06:52+00:00", "2014-08-22 13:06:54+00:00", "2014-08-22 13:06:59+00:00", "2014-08-22 13:07:01+00:00", "2014-08-22 13:07:03+00:00", "2014-08-22 13:07:05+00:00", "2014-08-22 13:07:07+00:00", "2014-08-22 13:07:09+00:00", "2014-08-22 13:07:11+00:00", "2014-08-22 13:07:13+00:00", "2014-08-22 13:07:16+00:00", "2014-08-22 13:07:19+00:00", "2014-08-22 13:07:22+00:00", "2014-08-22 13:07:24+00:00", "2014-08-22 13:07:27+00:00", "2014-08-22 13:07:29+00:00", "2014-08-22 13:07:33+00:00", "2014-08-22 13:07:36+00:00", "2014-08-22 13:07:39+00:00", "2014-08-22 13:07:41+00:00", "2014-08-22 13:07:44+00:00", "2014-08-22 13:07:47+00:00", "2014-08-22 13:07:49+00:00", "2014-08-22 13:07:51+00:00", "2014-08-22 13:07:53+00:00", "2014-08-22 13:07:55+00:00", "2014-08-22 13:07:57+00:00", "2014-08-22 13:07:59+00:00", "2014-08-22 13:08:01+00:00", "2014-08-22 13:08:03+00:00", "2014-08-22 13:08:06+00:00", "2014-08-22 13:08:09+00:00"]}}, {"type": "Feature", "id": "trace#155", "geometry": {"type": "LineString", "coordinates": [[-83.722115, 32.802], [-83.721872, 32.801437], [-83.721652, 32.800865], [-83.721463, 32.800288], [-83.721302, 32.799698], [-83.721163, 32.799102], [-83.721048, 32.798505], [-83.720925, 32.797612], [-83.720813, 32.796712], [-83.720755, 32.796112], [-83.720667, 32.795215], [-83.720543, 32.79403], [-83.720488, 32.793437], [-83.7204, 32.792545], [-83.720273, 32.791357], [-83.72018, 32.79046], [-83.720117, 32.789857], [-83.720053, 32.789257], [-83.72, 32.788655], [-83.719938, 32.788053], [-83.719833, 32.787458], [-83.71967, 32.786875], [-83.719443, 32.786312], [-83.719158, 32.785768], [-83.718837, 32.785237], [-83.718318, 32.784445], [-83.717978, 32.783918], [-83.71747, 32.783125], [-83.717132, 32.782597], [-83.716467, 32.781532], [-83.716133, 32.780998], [-83.715797, 32.780472], [-83.715462, 32.779942], [-83.714955, 32.779153], [-83.714283, 32.778098], [-83.713787, 32.777305], [-83.713452, 32.77678], [-83.713115, 32.776252], [-83.712618, 32.775457], [-83.712282, 32.774932], [-83.711793, 32.774132], [-83.71209, 32.77546], [-83.712567, 32.776213], [-83.713048, 32.776965], [-83.714333, 32.778987], [-83.714647, 32.779488], [-83.715125, 32.780238], [-83.715757, 32.781248], [-83.716392, 32.782252], [-83.717183, 32.783512], [-83.71798, 32.784773], [-83.718303, 32.785278], [-83.718618, 32.785785], [-83.718913, 32.7863], [-83.719167, 32.786832], [-83.719375, 32.787372], [-83.71953, 32.78792], [-83.719642, 32.788478], [-83.719748, 32.789323], [-83.719837, 32.79018], [-83.719952, 32.791328], [-83.72001, 32.791902], [-83.720063, 32.792475], [-83.720158, 32.793335], [-83.72024, 32.794188], [-83.720287, 32.794753], [-83.72034, 32.795323], [-83.720402, 32.795892], [-83.720453, 32.796457], [-83.720493, 32.797022], [-83.720577, 32.797868], [-83.72065, 32.798417], [-83.720785, 32.799203], [-83.720905, 32.799717], [-83.721143, 32.800475], [-83.721318, 32.800972], [-83.721518, 32.801457], [-83.721735, 32.801938], [-83.722087, 32.802648], [-83.722318, 32.803132]]}, "properties": {"filename": "osm-traces-page-99.gpx", "track.number": 3, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 0, "track.description": null, "times": ["2014-07-14 23:16:09+00:00", "2014-07-14 23:16:11+00:00", "2014-07-14 23:16:13+00:00", "2014-07-14 23:16:15+00:00", "2014-07-14 23:16:17+00:00", "2014-07-14 23:16:19+00:00", "2014-07-14 23:16:21+00:00", "2014-07-14 23:16:24+00:00", "2014-07-14 23:16:27+00:00", "2014-07-14 23:16:29+00:00", "2014-07-14 23:16:32+00:00", "2014-07-14 23:16:36+00:00", "2014-07-14 23:16:38+00:00", "2014-07-14 23:16:41+00:00", "2014-07-14 23:16:45+00:00", "2014-07-14 23:16:48+00:00", "2014-07-14 23:16:50+00:00", "2014-07-14 23:16:52+00:00", "2014-07-14 23:16:54+00:00", "2014-07-14 23:16:56+00:00", "2014-07-14 23:16:58+00:00", "2014-07-14 23:17:00+00:00", "2014-07-14 23:17:02+00:00", "2014-07-14 23:17:04+00:00", "2014-07-14 23:17:06+00:00", "2014-07-14 23:17:09+00:00", "2014-07-14 23:17:11+00:00", "2014-07-14 23:17:14+00:00", "2014-07-14 23:17:16+00:00", "2014-07-14 23:17:20+00:00", "2014-07-14 23:17:22+00:00", "2014-07-14 23:17:24+00:00", "2014-07-14 23:17:26+00:00", "2014-07-14 23:17:29+00:00", "2014-07-14 23:17:33+00:00", "2014-07-14 23:17:36+00:00", "2014-07-14 23:17:38+00:00", "2014-07-14 23:17:40+00:00", "2014-07-14 23:17:43+00:00", "2014-07-14 23:17:45+00:00", "2014-07-14 23:17:48+00:00", "2014-07-15 12:21:00+00:00", "2014-07-15 12:21:03+00:00", "2014-07-15 12:21:06+00:00", "2014-07-15 12:21:13+00:00", "2014-07-15 12:21:15+00:00", "2014-07-15 12:21:18+00:00", "2014-07-15 12:21:22+00:00", "2014-07-15 12:21:26+00:00", "2014-07-15 12:21:31+00:00", "2014-07-15 12:21:36+00:00", "2014-07-15 12:21:38+00:00", "2014-07-15 12:21:40+00:00", "2014-07-15 12:21:42+00:00", "2014-07-15 12:21:44+00:00", "2014-07-15 12:21:46+00:00", "2014-07-15 12:21:48+00:00", "2014-07-15 12:21:50+00:00", "2014-07-15 12:21:53+00:00", "2014-07-15 12:21:56+00:00", "2014-07-15 12:22:00+00:00", "2014-07-15 12:22:02+00:00", "2014-07-15 12:22:04+00:00", "2014-07-15 12:22:07+00:00", "2014-07-15 12:22:10+00:00", "2014-07-15 12:22:12+00:00", "2014-07-15 12:22:14+00:00", "2014-07-15 12:22:16+00:00", "2014-07-15 12:22:18+00:00", "2014-07-15 12:22:20+00:00", "2014-07-15 12:22:23+00:00", "2014-07-15 12:22:25+00:00", "2014-07-15 12:22:28+00:00", "2014-07-15 12:22:30+00:00", "2014-07-15 12:22:33+00:00", "2014-07-15 12:22:35+00:00", "2014-07-15 12:22:37+00:00", "2014-07-15 12:22:39+00:00", "2014-07-15 12:22:42+00:00", "2014-07-15 12:22:44+00:00"]}}, {"type": "Feature", "id": "trace#156", "geometry": {"type": "LineString", "coordinates": [[-83.722268, 32.811458], [-83.72177, 32.811723], [-83.721307, 32.811978], [-83.72082, 32.812252], [-83.720263, 32.812553], [-83.719485, 32.812982], [-83.71898, 32.813268], [-83.718415, 32.813582], [-83.717802, 32.813922], [-83.716928, 32.814397], [-83.716265, 32.81476], [-83.715583, 32.8151], [-83.715107, 32.815307], [-83.714128, 32.815673], [-83.713625, 32.815842], [-83.713112, 32.815983], [-83.712325, 32.816157], [-83.711543, 32.816292], [-83.710757, 32.81638], [-83.710028, 32.816435], [-83.709492, 32.816478], [-83.708922, 32.816492], [-83.708697, 32.816905], [-83.708952, 32.817362], [-83.709238, 32.817887], [-83.709422, 32.818317], [-83.709555, 32.818762], [-83.709637, 32.819222], [-83.709678, 32.819783], [-83.70966, 32.820358], [-83.70965, 32.820992], [-83.709628, 32.821702], [-83.709618, 32.822173], [-83.709612, 32.822667], [-83.709588, 32.823172], [-83.709588, 32.823823], [-83.709568, 32.824288], [-83.709533, 32.824937], [-83.709005, 32.825295], [-83.708315, 32.825212], [-83.707488, 32.825107], [-83.706837, 32.82502], [-83.70619, 32.824923], [-83.705565, 32.82482], [-83.70495, 32.824685], [-83.704363, 32.824475], [-83.703588, 32.824163], [-83.703008, 32.823927], [-83.702422, 32.823692], [-83.701827, 32.823458], [-83.701052, 32.823142], [-83.700485, 32.822922], [-83.699423, 32.822485], [-83.698933, 32.822283], [-83.698442, 32.82205], [-83.698397, 32.821577]]}, "properties": {"filename": "osm-traces-page-99.gpx", "track.number": 3, "track.link": null, "track.name": null, "track.segment.number": 0, "track.segment.split.number": 1, "track.description": null, "times": ["2014-07-15 12:25:14+00:00", "2014-07-15 12:25:17+00:00", "2014-07-15 12:25:20+00:00", "2014-07-15 12:25:25+00:00", "2014-07-15 12:26:02+00:00", "2014-07-15 12:26:08+00:00", "2014-07-15 12:26:11+00:00", "2014-07-15 12:26:14+00:00", "2014-07-15 12:26:17+00:00", "2014-07-15 12:26:21+00:00", "2014-07-15 12:26:24+00:00", "2014-07-15 12:26:27+00:00", "2014-07-15 12:26:29+00:00", "2014-07-15 12:26:33+00:00", "2014-07-15 12:26:35+00:00", "2014-07-15 12:26:37+00:00", "2014-07-15 12:26:40+00:00", "2014-07-15 12:26:43+00:00", "2014-07-15 12:26:46+00:00", "2014-07-15 12:26:49+00:00", "2014-07-15 12:26:52+00:00", "2014-07-15 12:26:59+00:00", "2014-07-15 12:27:21+00:00", "2014-07-15 12:27:25+00:00", "2014-07-15 12:27:29+00:00", "2014-07-15 12:27:32+00:00", "2014-07-15 12:27:35+00:00", "2014-07-15 12:27:38+00:00", "2014-07-15 12:27:42+00:00", "2014-07-15 12:27:48+00:00", "2014-07-15 12:27:55+00:00", "2014-07-15 12:28:00+00:00", "2014-07-15 12:28:03+00:00", "2014-07-15 12:28:06+00:00", "2014-07-15 12:28:09+00:00", "2014-07-15 12:28:13+00:00", "2014-07-15 12:28:16+00:00", "2014-07-15 12:28:21+00:00", "2014-07-15 12:28:46+00:00", "2014-07-15 12:28:50+00:00", "2014-07-15 12:28:54+00:00", "2014-07-15 12:28:57+00:00", "2014-07-15 12:29:00+00:00", "2014-07-15 12:29:03+00:00", "2014-07-15 12:29:06+00:00", "2014-07-15 12:29:09+00:00", "2014-07-15 12:29:13+00:00", "2014-07-15 12:29:16+00:00", "2014-07-15 12:29:19+00:00", "2014-07-15 12:29:22+00:00", "2014-07-15 12:29:26+00:00", "2014-07-15 12:29:29+00:00", "2014-07-15 12:29:35+00:00", "2014-07-15 12:29:38+00:00", "2014-07-15 12:29:42+00:00", "2014-07-15 12:29:55+00:00"]}}]} \ No newline at end of file diff --git a/gers/examples/python/data/overture-transportation-macon.geojson b/gers/examples/python/data/overture-transportation-macon.geojson new file mode 100644 index 00000000..c18261d5 --- /dev/null +++ b/gers/examples/python/data/overture-transportation-macon.geojson @@ -0,0 +1,38518 @@ +{"type": "FeatureCollection","features": [ +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61940200000001,32.858034]},"id":"8f44c0a3295d494-13ff6831c22569b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61940200000001,32.859538]},"id":"8f44c0a328622e0-179f6831ca420442"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328622e0-179f6831ca420442","8f44c0a3295d494-13ff6831c22569b6"]},"geometry":{"type":"LineString","coordinates":[[-83.61940200000001,32.858034],[-83.61940200000001,32.859538]]},"id":"8844c0a329fffff-13d76831cd6aa403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71580700000001,32.79509]},"id":"8f44c0b0ec75a31-17d77cd4ad23c0de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714404,32.794991]},"id":"8f44c0b0ec0dab3-179760418888f62a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec0dab3-179760418888f62a","8f44c0b0ec75a31-17d77cd4ad23c0de"]},"geometry":{"type":"LineString","coordinates":[[-83.71580700000001,32.79509],[-83.71557200000001,32.795189],[-83.71545900000001,32.795218000000006],[-83.715299,32.795223],[-83.71516100000001,32.795214],[-83.71487400000001,32.795138],[-83.714698,32.79506],[-83.714567,32.795018],[-83.714404,32.794991]]},"id":"8844c0b0edfffff-17f77e89f9b98a46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667946,32.816964]},"id":"8f44c0b18770476-17beb1adc588b31d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66801500000001,32.81505]},"id":"8f44c0b180d0696-17fef182a73e76b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18770476-17beb1adc588b31d","8f44c0b180d0696-17fef182a73e76b7"]},"geometry":{"type":"LineString","coordinates":[[-83.667946,32.816964],[-83.668372,32.816972],[-83.668546,32.816965],[-83.668616,32.816918],[-83.668647,32.816882],[-83.668666,32.816843],[-83.668681,32.816741],[-83.66874,32.815379],[-83.668744,32.815212],[-83.668717,32.81514],[-83.668608,32.815069],[-83.668411,32.815058],[-83.66801500000001,32.81505]]},"id":"8744c0b18ffffff-13dfb0384a206d23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673821,32.836421]},"id":"8f44c0b1bae1733-17bfa355e71992df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673786,32.834946]},"id":"8f44c0b1ba0e6dc-1397e36bcc8a1783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba0e6dc-1397e36bcc8a1783","8f44c0b1bae1733-17bfa355e71992df"]},"geometry":{"type":"LineString","coordinates":[[-83.673821,32.836421],[-83.673786,32.834946]]},"id":"8844c0b1bbfffff-13deb360de21728d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641194,32.815973]},"id":"8f44c0b1a54140a-13bff2fdc364d40e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642891,32.817062]},"id":"8f44c0b1a0b39a5-17f7eed928a0e86c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0b39a5-17f7eed928a0e86c","8f44c0b1a54140a-13bff2fdc364d40e"]},"geometry":{"type":"LineString","coordinates":[[-83.641194,32.815973],[-83.641754,32.816333],[-83.64216400000001,32.816589],[-83.642891,32.817062]]},"id":"8744c0b1affffff-1396f0eae72e8258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560112,32.836424]},"id":"8f44c0b8eb8576c-17bfb8f209651704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55808800000001,32.835864]},"id":"8f44c0b8eb96809-13dfbde30465395b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb8576c-17bfb8f209651704","8f44c0b8eb96809-13dfbde30465395b"]},"geometry":{"type":"LineString","coordinates":[[-83.560112,32.836424],[-83.560018,32.836382],[-83.559351,32.836162],[-83.55926000000001,32.836123],[-83.55910700000001,32.836074],[-83.559002,32.836049],[-83.558789,32.836013],[-83.55824600000001,32.835935],[-83.558126,32.835894],[-83.55808800000001,32.835864]]},"id":"8944c0b8ebbffff-13fffb6741f06a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55804,32.83531]},"id":"8f44c0b8e8c9d21-13f7fe0102fb2012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e8c9d21-13f7fe0102fb2012","8f44c0b8eb96809-13dfbde30465395b"]},"geometry":{"type":"LineString","coordinates":[[-83.55804,32.83531],[-83.55807300000001,32.835348],[-83.55808400000001,32.835408],[-83.558052,32.835745],[-83.558054,32.835794],[-83.558065,32.835832],[-83.55808800000001,32.835864]]},"id":"8744c0b8effffff-13b7bdf04ef8f17b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696161,32.862951]},"id":"8f44c0a20191894-17f66ccb60b9af88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697173,32.862889]},"id":"8f44c0a20180066-17dfea52e65b466b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20191894-17f66ccb60b9af88","8f44c0a20180066-17dfea52e65b466b"]},"geometry":{"type":"LineString","coordinates":[[-83.696161,32.862951],[-83.69640700000001,32.862954],[-83.697068,32.862971],[-83.697119,32.862965],[-83.697148,32.862949],[-83.69717,32.862917],[-83.697173,32.862889]]},"id":"8944c0a201bffff-17f6eb8187856e15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73049710000001,32.928946100000005]},"id":"8f44c0a282d215b-179f58f750b3212d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7365089,32.9309615]},"id":"8f44c0a29513680-13fefa49f8e2d825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a282d215b-179f58f750b3212d","8f44c0a29513680-13fefa49f8e2d825"]},"geometry":{"type":"LineString","coordinates":[[-83.73049710000001,32.928946100000005],[-83.7307459,32.9290984],[-83.731206,32.929327],[-83.73135160000001,32.929383900000005],[-83.731497,32.929434],[-83.7316641,32.9294802],[-83.73183,32.929518300000005],[-83.7319746,32.9295466],[-83.7321254,32.9295697],[-83.73347000000001,32.929754800000005],[-83.733665,32.9297848],[-83.733834,32.9298173],[-83.73399930000001,32.9298547],[-83.7342113,32.9299156],[-83.73439730000001,32.9299771],[-83.734583,32.930049100000005],[-83.7348291,32.9301674],[-83.7350638,32.930285000000005],[-83.73560020000001,32.930565300000005],[-83.73605420000001,32.9307797],[-83.7362829,32.930874800000005],[-83.7365089,32.9309615]]},"id":"8644c0a2fffffff-13df3196d0fd2724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73755600000001,32.87663]},"id":"8f44c0b5208084b-17d7c7bb8931a10d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737684,32.876435]},"id":"8f44c0b52085c96-17dfe76b8c37efa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5208084b-17d7c7bb8931a10d","8f44c0b52085c96-17dfe76b8c37efa1"]},"geometry":{"type":"LineString","coordinates":[[-83.73755600000001,32.87663],[-83.737904,32.87677],[-83.737993,32.876787],[-83.73802900000001,32.876786],[-83.738061,32.876779],[-83.73808700000001,32.876765],[-83.738118,32.87673],[-83.738129,32.87671],[-83.738133,32.876691],[-83.73812600000001,32.876658],[-83.738112,32.876632],[-83.73809200000001,32.87661],[-83.737993,32.876559],[-83.737733,32.876452],[-83.737684,32.876435]]},"id":"8944c0b520bffff-17dfd6ea27ba629a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69429000000001,32.911854000000005]},"id":"8f44c0a0532c3a5-17d6f15cce2d7b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69466600000001,32.911606]},"id":"8f44c0a05ad3184-13bff071c424272d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ad3184-13bff071c424272d","8f44c0a0532c3a5-17d6f15cce2d7b15"]},"geometry":{"type":"LineString","coordinates":[[-83.69429000000001,32.911854000000005],[-83.694186,32.91173],[-83.694168,32.911654],[-83.694198,32.911575],[-83.694445,32.911471],[-83.694595,32.911468],[-83.69466600000001,32.911606]]},"id":"8744c0a05ffffff-13bef12c69dc4e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56668930000001,32.7961584]},"id":"8f44c0b85074d9b-13dfa8e33fcaa2ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5687563,32.800962500000004]},"id":"8f44c0b8531e29d-179fb3d75096299d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85074d9b-13dfa8e33fcaa2ad","8f44c0b8531e29d-179fb3d75096299d"]},"geometry":{"type":"LineString","coordinates":[[-83.56668930000001,32.7961584],[-83.566947,32.796712],[-83.56699900000001,32.796863],[-83.56707200000001,32.797154],[-83.567116,32.797398],[-83.567148,32.797907],[-83.567178,32.798609],[-83.56721,32.798896],[-83.56725200000001,32.799135],[-83.56730800000001,32.799345],[-83.567374,32.799512],[-83.56751,32.799788],[-83.567665,32.800027],[-83.56779200000001,32.800185],[-83.567948,32.800344],[-83.56809200000001,32.80048],[-83.568318,32.800652],[-83.56868990000001,32.800918800000005],[-83.5687563,32.800962500000004]]},"id":"8744c0b85ffffff-13bfe715edfce775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739896,32.875805]},"id":"8f44c0b520150c3-17d622050adb67c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739997,32.876852]},"id":"8f44c0b520181a0-17f681c5e8295713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520181a0-17f681c5e8295713","8f44c0b520150c3-17d622050adb67c9"]},"geometry":{"type":"LineString","coordinates":[[-83.739896,32.875805],[-83.73991000000001,32.87603],[-83.73994400000001,32.876187],[-83.739975,32.876297],[-83.739985,32.876353],[-83.739997,32.876852]]},"id":"8944c0b5203ffff-179e91ddf4b9d82c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659148,32.790124]},"id":"8f44c0b1e80db31-13b7c7288d29964a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657829,32.790092]},"id":"8f44c0b1e81da2a-139fca60e9a53036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1e81da2a-139fca60e9a53036","8f44c0b1e80db31-13b7c7288d29964a"]},"geometry":{"type":"LineString","coordinates":[[-83.659148,32.790124],[-83.657829,32.790092]]},"id":"8944c0b1e83ffff-139fc8c4b91b5790"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666357,32.790681]},"id":"8f44c0b1c41c610-17ffb58eeded212b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666678,32.790311]},"id":"8f44c0b1c4022f1-139ef4c645fa31d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1c41c610-17ffb58eeded212b","8f44c0b1c4022f1-139ef4c645fa31d7"]},"geometry":{"type":"LineString","coordinates":[[-83.666357,32.790681],[-83.66642,32.790737],[-83.66652300000001,32.790748],[-83.66658600000001,32.790714],[-83.666638,32.790636],[-83.666663,32.790484],[-83.666678,32.790311]]},"id":"8944c0b1c43ffff-17deb5033dbe875e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740476,32.875801]},"id":"8f44c0b5200621d-17dfa09a8c1c24cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740291,32.875802]},"id":"8f44c0b520066e0-17d6410e24685342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200621d-17dfa09a8c1c24cb","8f44c0b520066e0-17d6410e24685342"]},"geometry":{"type":"LineString","coordinates":[[-83.740476,32.875801],[-83.74049500000001,32.875974],[-83.740493,32.876011000000005],[-83.740482,32.876044],[-83.740458,32.876072],[-83.740425,32.876087000000005],[-83.74039,32.876092],[-83.74035500000001,32.876088],[-83.740323,32.876072],[-83.740301,32.876047],[-83.74029200000001,32.876015],[-83.740291,32.875802]]},"id":"8a44c0b52007fff-17bf40d02fd7264b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700021,32.917324]},"id":"8f44c0a2acf4844-13bfe35ee2484357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699398,32.916946]},"id":"8f44c0a2aca9c11-13d764e4475cddaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aca9c11-13d764e4475cddaf","8f44c0a2acf4844-13bfe35ee2484357"]},"geometry":{"type":"LineString","coordinates":[[-83.700021,32.917324],[-83.69995700000001,32.91738],[-83.699878,32.917429000000006],[-83.699814,32.917445],[-83.69975500000001,32.917447],[-83.699708,32.917416],[-83.699663,32.917372],[-83.699398,32.916946]]},"id":"8844c0a2adfffff-139f74384efb4d03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726347,32.792465]},"id":"8f44c0b012d9216-13dea31922da3fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72567670000001,32.792463000000005]},"id":"8f44c0b012db443-13df64bc1e52edc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b012db443-13df64bc1e52edc3","8f44c0b012d9216-13dea31922da3fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.726347,32.792465],[-83.726222,32.792465],[-83.725927,32.792474],[-83.72567670000001,32.792463000000005]]},"id":"8a44c0b012dffff-13deb3eaa9ae959f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719077,32.928491]},"id":"8f44c0a2bd065ad-17f6f4d8e5ec4232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71853,32.929067]},"id":"8f44c0a2bd11553-17def62ecd4b9095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd11553-17def62ecd4b9095","8f44c0a2bd065ad-17f6f4d8e5ec4232"]},"geometry":{"type":"LineString","coordinates":[[-83.719077,32.928491],[-83.719026,32.928555],[-83.718924,32.928652],[-83.718683,32.928803],[-83.71862800000001,32.928858000000005],[-83.718591,32.928925],[-83.71853,32.929067]]},"id":"8944c0a2bd3ffff-179e3592cbe26b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723691,32.793734]},"id":"8f44c0b0e825076-13f7e9952d2c9939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723793,32.793504]},"id":"8f44c0b0e825923-13f629556f6ba865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e825923-13f629556f6ba865","8f44c0b0e825076-13f7e9952d2c9939"]},"geometry":{"type":"LineString","coordinates":[[-83.723691,32.793734],[-83.723736,32.793697],[-83.72376200000001,32.793664],[-83.723787,32.793594],[-83.723793,32.793504]]},"id":"8a44c0b0e827fff-13b629689725d804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726387,32.793078]},"id":"8f44c0b0e960474-13dfe3002354df96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7252491,32.793109900000005]},"id":"8f44c0b0e9702a0-13ffb5c751bdd1ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e960474-13dfe3002354df96","8f44c0b0e9702a0-13ffb5c751bdd1ef"]},"geometry":{"type":"LineString","coordinates":[[-83.726387,32.793078],[-83.725544,32.793129],[-83.7252491,32.793109900000005]]},"id":"8944c0b0e97ffff-13fe6463c0458549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582937,32.851291]},"id":"8f44c0b8d4d12b0-13ffe1386c10f4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582519,32.850911]},"id":"8f44c0b8d4d0776-179fe23da1c58667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d4d0776-179fe23da1c58667","8f44c0b8d4d12b0-13ffe1386c10f4a8"]},"geometry":{"type":"LineString","coordinates":[[-83.582937,32.851291],[-83.582519,32.850911]]},"id":"8a44c0b8d4d7fff-1397a1bb0476a8c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580702,32.850606]},"id":"8f44c0b88b22d1d-17dfc6ad4064946e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581111,32.851422]},"id":"8f44c0b88b05806-13dfc5adab224905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b05806-13dfc5adab224905","8f44c0b88b22d1d-17dfc6ad4064946e"]},"geometry":{"type":"LineString","coordinates":[[-83.580702,32.850606],[-83.58093600000001,32.851076],[-83.58107000000001,32.851336],[-83.581111,32.851422]]},"id":"8944c0b88b3ffff-17dfd62d94a722b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.765702,32.852173]},"id":"8f44c0b547354ee-13b5e3044156cd8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.765923,32.849196]},"id":"8f44c0b540b295b-13dfc27a2b96a56f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b540b295b-13dfc27a2b96a56f","8f44c0b547354ee-13b5e3044156cd8a"]},"geometry":{"type":"LineString","coordinates":[[-83.765702,32.852173],[-83.765741,32.851885],[-83.76580100000001,32.85152],[-83.76582300000001,32.851351],[-83.765838,32.851174],[-83.765855,32.850752],[-83.765859,32.850541],[-83.76587400000001,32.850347],[-83.76588500000001,32.849812],[-83.76591900000001,32.849314],[-83.765923,32.849196]]},"id":"8744c0b54ffffff-17ffd2acabdfc0d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61611500000001,32.844029]},"id":"8f44c0a3601320c-17bf30382a0402f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616372,32.843604]},"id":"8f44c0a36011cac-17b7af978db63dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3601320c-17bf30382a0402f8","8f44c0a36011cac-17b7af978db63dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.61611500000001,32.844029],[-83.616342,32.843722],[-83.61636700000001,32.84367],[-83.616372,32.843604]]},"id":"8a44c0a36017fff-17bfefdcbad50707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61969420000001,32.8394709]},"id":"8f44c0a36125a0e-139f777b27b3eec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617344,32.838611]},"id":"8f44c0a36c69574-1397ed380e1ee9b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36125a0e-139f777b27b3eec1","8f44c0a36c69574-1397ed380e1ee9b9"]},"geometry":{"type":"LineString","coordinates":[[-83.61969420000001,32.8394709],[-83.618313,32.838965],[-83.617726,32.838749],[-83.617344,32.838611]]},"id":"8744c0a36ffffff-13976a59776030b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76151,32.863764]},"id":"8f44c0b50c2ba52-17fdcd404ff5cbaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758401,32.862074]},"id":"8f44c0b50d89d86-13ddd4d76d111e56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50c2ba52-17fdcd404ff5cbaf","8f44c0b50d89d86-13ddd4d76d111e56"]},"geometry":{"type":"LineString","coordinates":[[-83.76151,32.863764],[-83.761437,32.863646],[-83.761446,32.86347],[-83.761385,32.863338],[-83.761368,32.863191],[-83.76123700000001,32.862935],[-83.76110600000001,32.862825],[-83.760941,32.862772],[-83.760715,32.862729],[-83.76060100000001,32.862766],[-83.760227,32.862693],[-83.760035,32.862561],[-83.75987,32.862422],[-83.75967800000001,32.862274],[-83.759522,32.862164],[-83.75933,32.862032],[-83.759139,32.861981],[-83.758982,32.861945],[-83.758668,32.861973],[-83.758493,32.86202],[-83.758401,32.862074]]},"id":"8844c0b50dfffff-1795f082e79dad9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.583932,32.841121]},"id":"8f44c0b8c264131-17b7feca8ab3140f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5840057,32.841001500000004]},"id":"8f44c0b8c264912-17dffe9c70d33e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8c264912-17dffe9c70d33e7f","8f44c0b8c264131-17b7feca8ab3140f"]},"geometry":{"type":"LineString","coordinates":[[-83.583932,32.841121],[-83.5840057,32.841001500000004]]},"id":"8b44c0b8c264fff-17ff7eb3845db88b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59428100000001,32.84572]},"id":"8f44c0b8d102c5b-13df658663260520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5943512,32.845625600000005]},"id":"8f44c0b8d102d6d-13b7655a8ba639bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8d102d6d-13b7655a8ba639bb","8f44c0b8d102c5b-13df658663260520"]},"geometry":{"type":"LineString","coordinates":[[-83.59428100000001,32.84572],[-83.5943512,32.845625600000005]]},"id":"8b44c0b8d102fff-13d7e57072d591a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627432,32.835957]},"id":"8f44c0a3696d585-139f34970ee38e61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627178,32.835808]},"id":"8f44c0a3696c636-13bf1535c530a421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3696c636-13bf1535c530a421","8f44c0a3696d585-139f34970ee38e61"]},"geometry":{"type":"LineString","coordinates":[[-83.627432,32.835957],[-83.627373,32.835889],[-83.627283,32.835832],[-83.627178,32.835808]]},"id":"8a44c0a3696ffff-13df74dfdd6316f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626496,32.83661]},"id":"8f44c0a3694c196-17b756e00e4c1b81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62676400000001,32.836754]},"id":"8f44c0a3694cacc-17ff56388a0ca51e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3694cacc-17ff56388a0ca51e","8f44c0a3694c196-17b756e00e4c1b81"]},"geometry":{"type":"LineString","coordinates":[[-83.626496,32.83661],[-83.62653800000001,32.836694],[-83.626644,32.836753],[-83.62676400000001,32.836754]]},"id":"8b44c0a3694cfff-17f77698542c275b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698626,32.847172]},"id":"8f44c0a247a6b61-17fee6c6c707653e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697062,32.847156000000005]},"id":"8f44c0a247b63b5-17f6ea9846d73e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a247a6b61-17fee6c6c707653e","8f44c0a247b63b5-17f6ea9846d73e22"]},"geometry":{"type":"LineString","coordinates":[[-83.698626,32.847172],[-83.698631,32.846992],[-83.6986327,32.8469374],[-83.698634,32.846898],[-83.698643,32.846739],[-83.69864000000001,32.846654],[-83.69862300000001,32.846524],[-83.698605,32.846437],[-83.69857800000001,32.846351],[-83.698548,32.846275],[-83.698454,32.846109000000006],[-83.69832500000001,32.845975],[-83.698222,32.845892],[-83.698136,32.845841],[-83.698047,32.845802],[-83.697958,32.845771],[-83.69788700000001,32.845753],[-83.697782,32.845736],[-83.69754400000001,32.845725],[-83.697304,32.845722],[-83.697165,32.845726],[-83.69709200000001,32.845744],[-83.697045,32.845768],[-83.697028,32.845779],[-83.696982,32.845807],[-83.69694000000001,32.845847],[-83.69691900000001,32.845889],[-83.696906,32.845929000000005],[-83.69691,32.846007],[-83.69692400000001,32.846058],[-83.69694700000001,32.846106],[-83.69698600000001,32.846148],[-83.697028,32.846182],[-83.69715000000001,32.846245],[-83.697524,32.846382000000006],[-83.69760600000001,32.846431],[-83.69768400000001,32.846491],[-83.697737,32.846562],[-83.697764,32.846621],[-83.697776,32.846677],[-83.697767,32.846727],[-83.697738,32.846764],[-83.697685,32.846795],[-83.697603,32.846823],[-83.697129,32.846969],[-83.69707100000001,32.847009],[-83.697061,32.847046],[-83.6970611,32.8470549],[-83.697062,32.847156000000005]]},"id":"8744c0a24ffffff-17d7f8f0e2b601c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629194,32.838805]},"id":"8f44c0a3448c804-13ff3049ce3bf3de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629333,32.838623000000005]},"id":"8f44c0a344aa32b-139f6ff2e90bc5dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3448c804-13ff3049ce3bf3de","8f44c0a344aa32b-139f6ff2e90bc5dc"]},"geometry":{"type":"LineString","coordinates":[[-83.629194,32.838805],[-83.629278,32.838745],[-83.629311,32.838709],[-83.629333,32.838623000000005]]},"id":"8a44c0a344affff-13df301449363beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628156,32.837888]},"id":"8f44c0a3448685c-17d712d28ddb2e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62799100000001,32.838104]},"id":"8f44c0a34486741-13d71339aa60f014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34486741-13d71339aa60f014","8f44c0a3448685c-17d712d28ddb2e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.628156,32.837888],[-83.628048,32.837957],[-83.62801,32.838012],[-83.62799100000001,32.838104]]},"id":"8b44c0a34486fff-17ff13137ddf7dca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626804,32.837077]},"id":"8f44c0a3694d7ae-17d7361f85e020d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626631,32.837283]},"id":"8f44c0a36949c92-17d7f68babcb1cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3694d7ae-17d7361f85e020d4","8f44c0a36949c92-17d7f68babcb1cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.626804,32.837077],[-83.62669000000001,32.837125],[-83.626638,32.837184],[-83.626631,32.837283]]},"id":"8a44c0a3694ffff-17ff3667d9b1cff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627651,32.837899]},"id":"8f44c0a3449591d-17d7f40e266da4bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62781700000001,32.837685]},"id":"8f44c0a344b3a1a-17d733a663851799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a344b3a1a-17d733a663851799","8f44c0a3449591d-17d7f40e266da4bd"]},"geometry":{"type":"LineString","coordinates":[[-83.627651,32.837899],[-83.62776000000001,32.837834],[-83.62779400000001,32.837788],[-83.62781700000001,32.837685]]},"id":"8944c0a344bffff-179f33cc70cdbf08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667482,32.840382000000005]},"id":"8f44c0b1b2142ac-17d6f2cfcffca251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66746300000001,32.841274]},"id":"8f44c0b1b21ec1d-1396f2dbabec8152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2142ac-17d6f2cfcffca251","8f44c0b1b21ec1d-1396f2dbabec8152"]},"geometry":{"type":"LineString","coordinates":[[-83.667482,32.840382000000005],[-83.66747000000001,32.841099],[-83.66746300000001,32.841274]]},"id":"8944c0b1b23ffff-17ffb2d4bcb844f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652738,32.83554]},"id":"8f44c0b1b4d2343-1396d6cecb58692b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65353300000001,32.834623]},"id":"8f44c0b1b4f3c8d-17d7f4ddefd6ac05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4f3c8d-17d7f4ddefd6ac05","8f44c0b1b4d2343-1396d6cecb58692b"]},"geometry":{"type":"LineString","coordinates":[[-83.652738,32.83554],[-83.65285300000001,32.835419],[-83.653138,32.835082],[-83.65331300000001,32.834856],[-83.653452,32.834699],[-83.65353300000001,32.834623]]},"id":"8944c0b1b4fffff-13f7f5d70de6f792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684427,32.889093]},"id":"8f44c0a234cc81d-17d7a97129865341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68392300000001,32.889236000000004]},"id":"8f44c0a234ce8d5-179e8aac2ed44cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a234ce8d5-179e8aac2ed44cc8","8f44c0a234cc81d-17d7a97129865341"]},"geometry":{"type":"LineString","coordinates":[[-83.684427,32.889093],[-83.68392300000001,32.889236000000004]]},"id":"8a44c0a234cffff-17ffda0ea209364b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691798,32.8110311]},"id":"8f44c0baa4b3250-17bff2ceab83eab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568968,32.81102]},"id":"8f44c0baa4b36e1-17b7a3530a5772a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4b36e1-17b7a3530a5772a9","8f44c0baa4b3250-17bff2ceab83eab2"]},"geometry":{"type":"LineString","coordinates":[[-83.5691798,32.8110311],[-83.568968,32.81102]]},"id":"8b44c0baa4b3fff-17bfa310dd31cf99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62409860000001,32.8437661]},"id":"8f44c0a36aa472a-179fdcba6ea67979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62300900000001,32.844695]},"id":"8f44c0a36a8612c-13df7f636e4640a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36aa472a-179fdcba6ea67979","8f44c0a36a8612c-13df7f636e4640a5"]},"geometry":{"type":"LineString","coordinates":[[-83.62409860000001,32.8437661],[-83.62418890000001,32.843990600000005],[-83.6242101,32.8441081],[-83.6242158,32.8441652],[-83.6242165,32.8442225],[-83.62420940000001,32.844300600000004],[-83.624193,32.8443777],[-83.6241675,32.8444531],[-83.6241332,32.8445259],[-83.6240904,32.844595500000004],[-83.6240396,32.8446611],[-83.62398110000001,32.844722100000006],[-83.6239498,32.844751200000005],[-83.62391570000001,32.844778000000005],[-83.6238532,32.844817400000004],[-83.62378480000001,32.8448492],[-83.6237117,32.844872200000005],[-83.62363570000001,32.8448872],[-83.62354900000001,32.8448949],[-83.6234618,32.8448932],[-83.6233756,32.844881900000004],[-83.6232918,32.844861300000005],[-83.62321200000001,32.8448318],[-83.6231374,32.844793700000004],[-83.6230694,32.8447479],[-83.62300900000001,32.844695]]},"id":"8944c0a36abffff-1397dd699736ac0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64938400000001,32.817894]},"id":"8f44c0b1a15b0f1-17ffdeff0e7885e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650389,32.817898]},"id":"8f44c0b1a064954-17f6dc8ae0a42877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a064954-17f6dc8ae0a42877","8f44c0b1a15b0f1-17ffdeff0e7885e8"]},"geometry":{"type":"LineString","coordinates":[[-83.64938400000001,32.817894],[-83.650389,32.817898]]},"id":"8844c0b1a1fffff-17f7ddc4f35df9fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717178,32.836806]},"id":"8f44c0b0b58a594-179ff97bcf81fcce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71716,32.837199000000005]},"id":"8f44c0b0b4a4c99-17977987025e8d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b4a4c99-17977987025e8d83","8f44c0b0b58a594-179ff97bcf81fcce"]},"geometry":{"type":"LineString","coordinates":[[-83.717178,32.836806],[-83.71716,32.837199000000005]]},"id":"8944c0b0b5bffff-1796b9816817bb17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6260807,32.848238900000005]},"id":"8f44c0a36ace391-139757e39f45c81c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62626800000001,32.848269]},"id":"8f44c0a36ac8d9e-139f376e80104741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ac8d9e-139f376e80104741","8f44c0a36ace391-139757e39f45c81c"]},"geometry":{"type":"LineString","coordinates":[[-83.6260807,32.848238900000005],[-83.62626800000001,32.848269]]},"id":"8b44c0a36acefff-139fd7a9080760da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6562188,32.8099574]},"id":"8f44c0b1a96a315-139fee4f4be3cb34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542957,32.8136953]},"id":"8f44c0b1a85d200-17bfd30131b9cc74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a96a315-139fee4f4be3cb34","8f44c0b1a85d200-17bfd30131b9cc74"]},"geometry":{"type":"LineString","coordinates":[[-83.6562188,32.8099574],[-83.655776,32.811237000000006],[-83.65569570000001,32.811453],[-83.6556314,32.8115954],[-83.65557700000001,32.8116974],[-83.6555167,32.8118003],[-83.655451,32.811901],[-83.6553684,32.8120191],[-83.6552777,32.812136],[-83.6551993,32.8122264],[-83.65511690000001,32.812315600000005],[-83.65452350000001,32.812873100000004],[-83.6544629,32.8129421],[-83.6544143,32.813010000000006],[-83.65436960000001,32.8130892],[-83.654335,32.8131761],[-83.65431000000001,32.813278000000004],[-83.65430070000001,32.8133683],[-83.6542957,32.8136953]]},"id":"8844c0b1a9fffff-13bed0941ef3643d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626873,32.7886]},"id":"8f44c0b1368ac18-17ff15f4670c38ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6260158,32.7882764]},"id":"8f44c0b1369ea4a-17b7d80c2cc0cc29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1368ac18-17ff15f4670c38ee","8f44c0b1369ea4a-17b7d80c2cc0cc29"]},"geometry":{"type":"LineString","coordinates":[[-83.626873,32.7886],[-83.6264931,32.7885356],[-83.6261733,32.7883701],[-83.6260158,32.7882764]]},"id":"8944c0b136bffff-179ff70871d3d9f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63263400000001,32.840961]},"id":"8f44c0a344e98dc-17d7a7e3c9b9f2b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633246,32.840716]},"id":"8f44c0a3445e2cc-17b786654b525bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a344e98dc-17d7a7e3c9b9f2b6","8f44c0a3445e2cc-17b786654b525bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.63263400000001,32.840961],[-83.63277400000001,32.840882],[-83.63293200000001,32.840784],[-83.63301200000001,32.840747],[-83.633098,32.840725],[-83.633246,32.840716]]},"id":"8844c0a345fffff-17f7d72ab260a3dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6394921,32.8138716]},"id":"8f44c0b1a52b589-179ff725759de853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400703,32.814293500000005]},"id":"8f44c0b1a5760ea-17b7f5bc1603a2bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a52b589-179ff725759de853","8f44c0b1a5760ea-17b7f5bc1603a2bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6394921,32.8138716],[-83.639666,32.8139319],[-83.6397757,32.8139789],[-83.63986680000001,32.814045],[-83.6399373,32.8141199],[-83.6399973,32.8141982],[-83.6400703,32.814293500000005]]},"id":"8844c0b1a5fffff-179ef65ecf6d3d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62580100000001,32.7889409]},"id":"8f44c0b1369b411-13d7189269d7c300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1368ac18-17ff15f4670c38ee","8f44c0b1369b411-13d7189269d7c300"]},"geometry":{"type":"LineString","coordinates":[[-83.62580100000001,32.7889409],[-83.6261044,32.788781],[-83.6263242,32.7887065],[-83.6265997,32.7886417],[-83.626873,32.7886]]},"id":"8844c0b137fffff-17bf774b64e2cb4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741793,32.876854]},"id":"8f44c0b5200d1a6-17f5fd6366ba55c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74116400000001,32.875980000000006]},"id":"8f44c0b5200562c-17bffeec8773cd8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200d1a6-17f5fd6366ba55c8","8f44c0b5200562c-17bffeec8773cd8e"]},"geometry":{"type":"LineString","coordinates":[[-83.741793,32.876854],[-83.741797,32.876317],[-83.741791,32.876275],[-83.74177800000001,32.876237],[-83.741757,32.876199],[-83.74172800000001,32.876164],[-83.74169,32.876131],[-83.74159900000001,32.876077],[-83.7415,32.876032],[-83.741403,32.876002],[-83.74128300000001,32.875980000000006],[-83.74116400000001,32.875980000000006]]},"id":"8944c0b5203ffff-17fffdc56d64da35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564527,32.845165]},"id":"8f44c0b88d88ad2-1397ae2aa5656640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56531100000001,32.845841]},"id":"8f44c0b88c15db6-13bfac40af9e633b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88d88ad2-1397ae2aa5656640","8f44c0b88c15db6-13bfac40af9e633b"]},"geometry":{"type":"LineString","coordinates":[[-83.564527,32.845165],[-83.56488300000001,32.845478],[-83.56531100000001,32.845841]]},"id":"8844c0b88dfffff-13dffd3698ecd492"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69791740000001,32.8159653]},"id":"8f44c0b1d2e4509-13be7881a5d98411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698248,32.816243]},"id":"8f44c0b1d2e5531-13f7e7b302e7140f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1d2e5531-13f7e7b302e7140f","8f44c0b1d2e4509-13be7881a5d98411"]},"geometry":{"type":"LineString","coordinates":[[-83.69791740000001,32.8159653],[-83.69807800000001,32.81608],[-83.698127,32.816136],[-83.698248,32.816243]]},"id":"8a44c0b1d2e7fff-139e7817fd0e5cce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69896700000001,32.815862100000004]},"id":"8f44c0b1d2090d2-13fff5f1a725f4cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698559,32.8155318]},"id":"8f44c0b1d208732-13bf66f0ac0b12fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1d2090d2-13fff5f1a725f4cd","8f44c0b1d208732-13bf66f0ac0b12fd"]},"geometry":{"type":"LineString","coordinates":[[-83.69896700000001,32.815862100000004],[-83.69872500000001,32.815775],[-83.698673,32.815721],[-83.69862400000001,32.815655],[-83.698559,32.8155318]]},"id":"8a44c0b1d20ffff-13bf66841b134169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6986595,32.8160161]},"id":"8f44c0b1d20b30c-13de76b1d23f0473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1d2e5531-13f7e7b302e7140f","8f44c0b1d20b30c-13de76b1d23f0473"]},"geometry":{"type":"LineString","coordinates":[[-83.698248,32.816243],[-83.698544,32.816062],[-83.6986595,32.8160161]]},"id":"8844c0b1d3fffff-139ee73496e1f7f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670893,32.808593]},"id":"8f44c0b1810611d-13beaa7be965ddfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671439,32.808301]},"id":"8f44c0b1812264c-1796a926afc8342c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1810611d-13beaa7be965ddfe","8f44c0b1812264c-1796a926afc8342c"]},"geometry":{"type":"LineString","coordinates":[[-83.670893,32.808593],[-83.67106600000001,32.808487],[-83.671189,32.80843],[-83.671439,32.808301]]},"id":"8944c0b1813ffff-17dee9d2b0252f34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672872,32.799056]},"id":"8f44c0b1c67236a-13f6a5a703dc82b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67197,32.798487]},"id":"8f44c0b1c608902-179ee7dac22d96e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c608902-179ee7dac22d96e1","8f44c0b1c67236a-13f6a5a703dc82b8"]},"geometry":{"type":"LineString","coordinates":[[-83.672872,32.799056],[-83.67234900000001,32.798879],[-83.672268,32.798838],[-83.672194,32.798788],[-83.67212,32.798721],[-83.672059,32.798645],[-83.67197,32.798487]]},"id":"8844c0b1c7fffff-13fef6dfc9d09e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69572000000001,32.896906]},"id":"8f44c0a232d00e8-17d66ddf006eb455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69652500000001,32.89734]},"id":"8f44c0a232dc831-13f7ebe7e6f993a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232d00e8-17d66ddf006eb455","8f44c0a232dc831-13f7ebe7e6f993a4"]},"geometry":{"type":"LineString","coordinates":[[-83.69572000000001,32.896906],[-83.695824,32.896942],[-83.69590600000001,32.896993],[-83.695987,32.897055],[-83.696048,32.897122],[-83.696094,32.897191],[-83.696109,32.897244],[-83.696145,32.897292],[-83.696205,32.897314],[-83.696308,32.897325],[-83.69652500000001,32.89734]]},"id":"8944c0a232fffff-13ffecece767e67c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69785800000001,32.89721]},"id":"8f44c0a232ea0e6-139668a6ce7dbd31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697231,32.897146]},"id":"8f44c0a232c1c80-13fe6a2ea4023880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232c1c80-13fe6a2ea4023880","8f44c0a232ea0e6-139668a6ce7dbd31"]},"geometry":{"type":"LineString","coordinates":[[-83.69785800000001,32.89721],[-83.69785900000001,32.897126],[-83.69784700000001,32.897063],[-83.697787,32.897042],[-83.697666,32.897047],[-83.697547,32.897064],[-83.697231,32.897146]]},"id":"8944c0a232fffff-13df6948ddff3884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69793750000001,32.8157893]},"id":"8f44c0b1d2e4da6-13de78751111e46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1d2e4da6-13de78751111e46e","8f44c0b1d208732-13bf66f0ac0b12fd"]},"geometry":{"type":"LineString","coordinates":[[-83.698559,32.8155318],[-83.69834200000001,32.815672],[-83.698194,32.815742],[-83.69793750000001,32.8157893]]},"id":"8944c0b1d23ffff-139e67abad418bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717518,32.927191]},"id":"8f44c0a2aa4e973-13d678a74ef3a2f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71719300000001,32.9275]},"id":"8f44c0a2aa4e684-1397b9726983d7a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa4e973-13d678a74ef3a2f8","8f44c0a2aa4e684-1397b9726983d7a8"]},"geometry":{"type":"LineString","coordinates":[[-83.717518,32.927191],[-83.71751400000001,32.927301],[-83.717504,32.927349],[-83.717332,32.9275],[-83.71728300000001,32.927507],[-83.71719300000001,32.9275]]},"id":"8b44c0a2aa4efff-13de78ed7b021347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6565764,32.8144952]},"id":"8f44c0b1ab06c66-17b7cd6fc220d926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65660670000001,32.8142201]},"id":"8f44c0b1ab31461-17f7dd5cd8bdcdad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab31461-17f7dd5cd8bdcdad","8f44c0b1ab06c66-17b7cd6fc220d926"]},"geometry":{"type":"LineString","coordinates":[[-83.6565764,32.8144952],[-83.65660100000001,32.8143139],[-83.65660670000001,32.8142201]]},"id":"8944c0b1ab3ffff-17dffd64e8a801c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701475,32.917377]},"id":"8f44c0a2ac0b518-13d6ffd223c582eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702426,32.917413]},"id":"8f44c0a2ac54d35-13f77d7fc0c0a179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac0b518-13d6ffd223c582eb","8f44c0a2ac54d35-13f77d7fc0c0a179"]},"geometry":{"type":"LineString","coordinates":[[-83.701475,32.917377],[-83.70151700000001,32.917457],[-83.70156100000001,32.917523],[-83.70162900000001,32.917599],[-83.70175800000001,32.917664],[-83.701851,32.917676],[-83.701932,32.917667],[-83.702145,32.917582],[-83.702298,32.917496],[-83.702426,32.917413]]},"id":"8844c0a2adfffff-13d67ebc0d94306d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690444,32.868786]},"id":"8f44c0a204c90a0-13bf7ac08caff248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691328,32.869391]},"id":"8f44c0a207958cd-17bf78980ef0ba4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a207958cd-17bf78980ef0ba4c","8f44c0a204c90a0-13bf7ac08caff248"]},"geometry":{"type":"LineString","coordinates":[[-83.690444,32.868786],[-83.690601,32.869262],[-83.690655,32.869368],[-83.69069400000001,32.869414],[-83.690747,32.869453],[-83.69079500000001,32.869476],[-83.690844,32.869487],[-83.69091300000001,32.86949],[-83.690978,32.869486],[-83.69104800000001,32.869473],[-83.691328,32.869391]]},"id":"8744c0a20ffffff-17f7f9efcd7f64a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617874,32.820722]},"id":"8f44c0ba9545466-17d76becc2483326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611952,32.808923]},"id":"8f44c0ba8a8a90c-139ffa620d741638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8a8a90c-139ffa620d741638","8f44c0ba9545466-17d76becc2483326"]},"geometry":{"type":"LineString","coordinates":[[-83.617874,32.820722],[-83.617795,32.820619],[-83.617159,32.819512],[-83.61639260000001,32.8188058],[-83.6159318,32.818092],[-83.61574750000001,32.817789600000005],[-83.615645,32.817623600000005],[-83.615243,32.816586],[-83.61426060000001,32.8155426],[-83.6141245,32.8152652],[-83.6139852,32.815164],[-83.61386660000001,32.814801100000004],[-83.61373760000001,32.8141824],[-83.61306900000001,32.811912],[-83.6127613,32.8107813],[-83.611952,32.808923]]},"id":"8644c0bafffffff-17f7b411f3d86867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.565668,32.781461]},"id":"8f44c0ba3603833-17ffab6182a5a69a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5659174,32.781430300000004]},"id":"8f44c0ba3601528-17fffac5a7c344c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0ba3603833-17ffab6182a5a69a","8f44c0ba3601528-17fffac5a7c344c0"]},"geometry":{"type":"LineString","coordinates":[[-83.565668,32.781461],[-83.5659174,32.781430300000004]]},"id":"8a44c0ba3607fff-17f7bb13994be141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61962700000001,32.8288]},"id":"8f44c0ba962c556-139727a52c05e3ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61849000000001,32.827553]},"id":"8f44c0ba971baa1-1797aa6bc30c5752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba971baa1-1797aa6bc30c5752","8f44c0ba962c556-139727a52c05e3ef"]},"geometry":{"type":"LineString","coordinates":[[-83.61962700000001,32.8288],[-83.6198167,32.8285397],[-83.61983570000001,32.8285136],[-83.61989410000001,32.828386900000005],[-83.619332,32.827779],[-83.61849000000001,32.827553]]},"id":"8844c0ba97fffff-17b7f84642bb3fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7246307,32.791838500000004]},"id":"8f44c0b0e92811d-17d73749dfdb0757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72355900000001,32.791849]},"id":"8f44c0b0e900a4d-17dfa9e7abeba4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e92811d-17d73749dfdb0757","8f44c0b0e900a4d-17dfa9e7abeba4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7246307,32.791838500000004],[-83.724439,32.791806],[-83.72422,32.791797],[-83.72413200000001,32.791801],[-83.723754,32.791843],[-83.72355900000001,32.791849]]},"id":"8944c0b0e93ffff-17d7b898492ad384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70114500000001,32.916542]},"id":"8f44c0a2ac032e0-17d6e0a063f4fde9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70198900000001,32.917122]},"id":"8f44c0a2ac09d95-13b75e90e34c3565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac09d95-13b75e90e34c3565","8f44c0a2ac032e0-17d6e0a063f4fde9"]},"geometry":{"type":"LineString","coordinates":[[-83.70114500000001,32.916542],[-83.701228,32.916525],[-83.70132500000001,32.916528],[-83.701414,32.916547],[-83.70169100000001,32.916665],[-83.701768,32.916716],[-83.701811,32.916781],[-83.70195100000001,32.917037],[-83.70198900000001,32.917122]]},"id":"8944c0a2ac3ffff-13b77f6d13e26c59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664941,32.78822]},"id":"8f44c0b1c581295-17ffb903e92cff65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664827,32.788455]},"id":"8f44c0b1c58e026-1796f94b29cde1b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c581295-17ffb903e92cff65","8f44c0b1c58e026-1796f94b29cde1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.664941,32.78822],[-83.66489200000001,32.788272],[-83.664855,32.788355],[-83.664827,32.788455]]},"id":"8944c0b1c5bffff-17d6f92ec2b88af4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6716624,32.7855706]},"id":"8f44c0b1cce2255-1397a89b07e1be1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6683795,32.787187]},"id":"8f44c0b1c50181a-13f7f09edb5a40df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c50181a-13f7f09edb5a40df","8f44c0b1cce2255-1397a89b07e1be1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6716624,32.7855706],[-83.67132790000001,32.7857294],[-83.67071700000001,32.786045],[-83.67009560000001,32.786381],[-83.669578,32.7866674],[-83.66929300000001,32.7868125],[-83.669047,32.7869296],[-83.6688609,32.787009000000005],[-83.66867540000001,32.7870811],[-83.6683795,32.787187]]},"id":"8744c0b1cffffff-139ffc9561e957a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66888080000001,32.789304300000005]},"id":"8f44c0b1c552a73-13b7bf658b355abe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6720695,32.785595300000004]},"id":"8f44c0b1cce3861-1397b79c986be4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c552a73-13b7bf658b355abe","8f44c0b1cce3861-1397b79c986be4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.66888080000001,32.789304300000005],[-83.66916760000001,32.789263000000005],[-83.6692718,32.789236],[-83.669371,32.789195],[-83.66946820000001,32.7891447],[-83.669542,32.789088],[-83.669627,32.789017],[-83.66970500000001,32.788939],[-83.66978200000001,32.78884],[-83.66988500000001,32.788634],[-83.669909,32.788544],[-83.669939,32.788399000000005],[-83.669993,32.788037],[-83.67007120000001,32.7875967],[-83.67009940000001,32.7874774],[-83.67014160000001,32.7873515],[-83.6702441,32.787142200000005],[-83.6703368,32.786991300000004],[-83.6704038,32.7869036],[-83.67048530000001,32.786807800000005],[-83.6705701,32.7867187],[-83.67066940000001,32.786627800000005],[-83.67088120000001,32.7864706],[-83.6715587,32.7860189],[-83.67184420000001,32.7858122],[-83.6720695,32.785595300000004]]},"id":"8744c0b1cffffff-17b6bbb4d12c9d67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618414,32.821351]},"id":"8f44c0ba954c94a-17f76a9b46a9df47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619417,32.822946]},"id":"8f44c0ba9095a55-13d76828630d5e50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba954c94a-17f76a9b46a9df47","8f44c0ba9095a55-13d76828630d5e50"]},"geometry":{"type":"LineString","coordinates":[[-83.618414,32.821351],[-83.619417,32.822946]]},"id":"8744c0ba9ffffff-13d7f961d2829156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71420830000001,32.9165912]},"id":"8f44c0a2a94e94c-17f7c0bbd1b61100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714996,32.917639]},"id":"8f44c0a28494cdd-13f67ecf8140a08e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a94e94c-17f7c0bbd1b61100","8f44c0a28494cdd-13f67ecf8140a08e"]},"geometry":{"type":"LineString","coordinates":[[-83.71420830000001,32.9165912],[-83.714313,32.916719],[-83.714467,32.916854],[-83.714493,32.916897],[-83.714488,32.917113],[-83.714506,32.917186],[-83.71454100000001,32.917242],[-83.714996,32.917639]]},"id":"8844c0a2a9fffff-13beffd90dd0de4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667955,32.755875]},"id":"8f44c0b1506e698-1797f1a82bee40e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667674,32.755974]},"id":"8f44c0b15045286-17d7f257c24403b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15045286-17d7f257c24403b5","8f44c0b1506e698-1797f1a82bee40e3"]},"geometry":{"type":"LineString","coordinates":[[-83.667955,32.755875],[-83.667674,32.755974]]},"id":"8944c0b1507ffff-17b6f1fffeaa1f77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694007,32.912438]},"id":"8f44c0a0532b996-17d7f20da42e6495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693618,32.912989]},"id":"8f44c0a0530d5b3-179e7300c50be230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0532b996-17d7f20da42e6495","8f44c0a0530d5b3-179e7300c50be230"]},"geometry":{"type":"LineString","coordinates":[[-83.694007,32.912438],[-83.69394100000001,32.912512],[-83.69384000000001,32.912666],[-83.693791,32.912768],[-83.69373900000001,32.91284],[-83.693675,32.912899],[-83.693618,32.912989]]},"id":"8944c0a0533ffff-17fff287843c3515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66414800000001,32.755701]},"id":"8f44c0b150e28f3-179fbaf38edbc984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66522,32.754398]},"id":"8f44c0b1500c79a-13fef8558a2da0f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150e28f3-179fbaf38edbc984","8f44c0b1500c79a-13fef8558a2da0f4"]},"geometry":{"type":"LineString","coordinates":[[-83.66414800000001,32.755701],[-83.665431,32.754967],[-83.665542,32.754883],[-83.66556,32.75486],[-83.66556800000001,32.754824],[-83.66555600000001,32.754779],[-83.665289,32.754469],[-83.66522,32.754398]]},"id":"8844c0b151fffff-17beb8da1d9076a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612578,32.875666]},"id":"8f44c0a1492e92a-13ff78dac6bc48be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61305300000001,32.875127]},"id":"8f44c0a322d2996-13bf77b1e64130e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322d2996-13bf77b1e64130e3","8f44c0a1492e92a-13ff78dac6bc48be"]},"geometry":{"type":"LineString","coordinates":[[-83.612578,32.875666],[-83.612707,32.875721],[-83.61275300000001,32.875726],[-83.61279800000001,32.875728],[-83.612829,32.875715],[-83.61285600000001,32.875673],[-83.61288300000001,32.875619],[-83.61305300000001,32.875127]]},"id":"8744c0a32ffffff-139ff820b87087a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7097129,32.9203442]},"id":"8f44c0a2a8cec15-139f6bb57574d619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70993650000001,32.920117600000005]},"id":"8f44c0a2a8c10e1-1397cb29bc2a99da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8c10e1-1397cb29bc2a99da","8f44c0a2a8cec15-139f6bb57574d619"]},"geometry":{"type":"LineString","coordinates":[[-83.7097129,32.9203442],[-83.70972490000001,32.920282400000005],[-83.7097413,32.9202375],[-83.7097703,32.920195500000005],[-83.70981330000001,32.9201615],[-83.70985900000001,32.920138],[-83.70993650000001,32.920117600000005]]},"id":"8a44c0a2a8c7fff-13b75b81681ba1db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7440299,32.900918000000004]},"id":"8f44c0a2caee68c-13b5f7ed52dbf863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746263,32.9012146]},"id":"8f44c0a2ca5d621-13dff279a871ac71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ca5d621-13dff279a871ac71","8f44c0a2caee68c-13b5f7ed52dbf863"]},"geometry":{"type":"LineString","coordinates":[[-83.7440299,32.900918000000004],[-83.7440596,32.900848],[-83.7440579,32.9007801],[-83.74402660000001,32.9007087],[-83.7439952,32.9006352],[-83.74400340000001,32.9005729],[-83.74405300000001,32.9005133],[-83.74411160000001,32.900491800000005],[-83.744308,32.9005001],[-83.7444407,32.9005318],[-83.7449675,32.9007412],[-83.74596620000001,32.9011269],[-83.7461011,32.901170900000004],[-83.7461583,32.9012058],[-83.746263,32.9012146]]},"id":"8844c0a2cbfffff-13dff5991d372bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72748800000001,32.906213]},"id":"8f44c0a2c689356-179f20500281db0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726971,32.906211]},"id":"8f44c0a2c68b14b-179fe19326554c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c68b14b-179fe19326554c04","8f44c0a2c689356-179f20500281db0b"]},"geometry":{"type":"LineString","coordinates":[[-83.72748800000001,32.906213],[-83.726971,32.906211]]},"id":"8a44c0a2c68ffff-179ea0f1984fd96f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72550700000001,32.898432]},"id":"8f44c0a2c4e0046-139625262b5f3e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72621000000001,32.898454]},"id":"8f44c0a2c452c06-139fe36ecc71837f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c4e0046-139625262b5f3e2a","8f44c0a2c452c06-139fe36ecc71837f"]},"geometry":{"type":"LineString","coordinates":[[-83.72550700000001,32.898432],[-83.72621000000001,32.898454]]},"id":"8944c0a2c4fffff-1396e44a77a290dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694372,32.897807]},"id":"8f44c0a0592ac89-139f71298f751999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695233,32.897253]},"id":"8f44c0a0592c82b-13bf6f0f61652b0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0592c82b-13bf6f0f61652b0d","8f44c0a0592ac89-139f71298f751999"]},"geometry":{"type":"LineString","coordinates":[[-83.694372,32.897807],[-83.694407,32.897699],[-83.694428,32.897647],[-83.694443,32.897633],[-83.694468,32.897613],[-83.69499400000001,32.897359],[-83.695233,32.897253]]},"id":"8944c0a0593ffff-13d7f03857f948a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70074000000001,32.897134]},"id":"8f44c0a2324e228-13f6e19d82163d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699577,32.8973]},"id":"8f44c0a23258626-13dee47467798a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a23258626-13dee47467798a03","8f44c0a2324e228-13f6e19d82163d14"]},"geometry":{"type":"LineString","coordinates":[[-83.70074000000001,32.897134],[-83.700596,32.897112],[-83.700354,32.897097],[-83.70012600000001,32.897094],[-83.699996,32.897105],[-83.69984500000001,32.897151],[-83.699802,32.897171],[-83.699707,32.897215],[-83.699577,32.8973]]},"id":"8944c0a2327ffff-13f6e312d89d785e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645241,32.856135]},"id":"8f44c0a30b35b41-17dee91c656914b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6452677,32.8556317]},"id":"8f44c0a3549b849-1397f90bb91e0f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3549b849-1397f90bb91e0f28","8f44c0a30b35b41-17dee91c656914b0"]},"geometry":{"type":"LineString","coordinates":[[-83.645241,32.856135],[-83.645204,32.855921],[-83.645201,32.855843],[-83.645241,32.855708],[-83.6452677,32.8556317]]},"id":"8744c0a30ffffff-13bfe926f2e0f207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59958,32.867876]},"id":"8f44c0b89b28ace-13f7d89689e31489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60003900000001,32.867782000000005]},"id":"8f44c0b89b2dadb-13bfd777a0348878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b28ace-13f7d89689e31489","8f44c0b89b2dadb-13bfd777a0348878"]},"geometry":{"type":"LineString","coordinates":[[-83.59958,32.867876],[-83.60003900000001,32.867782000000005]]},"id":"8a44c0b89b2ffff-13df78071107cb6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57148600000001,32.853372]},"id":"8f44c0b88021753-179f9d2d4fa43c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571713,32.85416]},"id":"8f44c0b88028676-17ff9c9f60ec94cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88028676-17ff9c9f60ec94cc","8f44c0b88021753-179f9d2d4fa43c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.57148600000001,32.853372],[-83.57168200000001,32.854053],[-83.571713,32.85416]]},"id":"8944c0b8803ffff-1797dce664d47478"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73116610000001,32.9251412]},"id":"8f44c0a2838bb9a-17d7575539db85a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72958100000001,32.924402]},"id":"8f44c0a2839e226-13f75b33e0e3cb38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2839e226-13f75b33e0e3cb38","8f44c0a2838bb9a-17d7575539db85a8"]},"geometry":{"type":"LineString","coordinates":[[-83.73116610000001,32.9251412],[-83.73065100000001,32.9260745],[-83.7296213,32.9259963],[-83.7294653,32.925987],[-83.72945,32.925856],[-83.729382,32.925023],[-83.729336,32.924915],[-83.729325,32.924809],[-83.72934000000001,32.924723],[-83.72937900000001,32.924633],[-83.729414,32.924584],[-83.72958100000001,32.924402]]},"id":"8844c0a283fffff-17d6da26147d7773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726319,32.79177]},"id":"8f44c0b012ddce2-17be632aa84bc576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723473,32.792433]},"id":"8f44c0b0e90eced-13d6aa1d6b1c785d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b012ddce2-17be632aa84bc576","8f44c0b0e90eced-13d6aa1d6b1c785d"]},"geometry":{"type":"LineString","coordinates":[[-83.726319,32.79177],[-83.72616400000001,32.791783],[-83.72596700000001,32.791809],[-83.725741,32.791832],[-83.725527,32.79186],[-83.72545600000001,32.791874],[-83.72537000000001,32.79193],[-83.725339,32.791973],[-83.725223,32.792195],[-83.725142,32.792335],[-83.72507,32.7924],[-83.724998,32.792434],[-83.724945,32.792444],[-83.723982,32.792465],[-83.723473,32.792433]]},"id":"8644c0b0fffffff-13bfa68f349e1403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76937000000001,32.850178]},"id":"8f44c0b5401eb70-17d5fa0fc166dbea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76855900000001,32.850098]},"id":"8f44c0b540add1e-179ffc0aaf8393a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5401eb70-17d5fa0fc166dbea","8f44c0b540add1e-179ffc0aaf8393a8"]},"geometry":{"type":"LineString","coordinates":[[-83.76937000000001,32.850178],[-83.76882,32.850149],[-83.76855900000001,32.850098]]},"id":"8844c0b541fffff-17b5bb0e242fbc7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65394450000001,32.8139953]},"id":"8f44c0b1a859446-17ffd3dcb0e72857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a85d200-17bfd30131b9cc74","8f44c0b1a859446-17ffd3dcb0e72857"]},"geometry":{"type":"LineString","coordinates":[[-83.6542957,32.8136953],[-83.654267,32.8137683],[-83.65423840000001,32.8138199],[-83.654193,32.8138694],[-83.6541404,32.813907300000004],[-83.6540521,32.813947500000005],[-83.65394450000001,32.8139953]]},"id":"8a44c0b1a85ffff-179ef35dd66dd96b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73663900000001,32.903298]},"id":"8f44c0a2c38e71c-17f749f8accd3e3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736388,32.903078]},"id":"8f44c0a2c383299-17f7ca958413fec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c383299-17f7ca958413fec1","8f44c0a2c38e71c-17f749f8accd3e3d"]},"geometry":{"type":"LineString","coordinates":[[-83.73663900000001,32.903298],[-83.736388,32.903078]]},"id":"8944c0a2c3bffff-17be8a471ecf53c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73625,32.904629]},"id":"8f44c0a2c2a0614-13b72aebc62f014f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73541200000001,32.904327]},"id":"8f44c0a2c2b544c-13f66cf78cc5f568"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c2b544c-13f66cf78cc5f568","8f44c0a2c2a0614-13b72aebc62f014f"]},"geometry":{"type":"LineString","coordinates":[[-83.73625,32.904629],[-83.736016,32.904579000000005],[-83.73581300000001,32.904515],[-83.735596,32.904424],[-83.73541200000001,32.904327]]},"id":"8944c0a2c2bffff-13f7cbf7192dbfcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6614121,32.8646091]},"id":"8f44c0a352c6193-13fef1a17e37096a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66114,32.864629]},"id":"8f44c0a352d582b-139fe24b809ed599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a352d582b-139fe24b809ed599","8f44c0a352c6193-13fef1a17e37096a"]},"geometry":{"type":"LineString","coordinates":[[-83.6614121,32.8646091],[-83.6612384,32.8646418],[-83.66119350000001,32.8646412],[-83.66114,32.864629]]},"id":"8944c0a352fffff-139fc1f68e660143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706935,32.845768]},"id":"8f44c0a2405404c-13ff527dab72b188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70568200000001,32.84713]},"id":"8f44c0a240ea851-17d6558cc0b8e8db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2405404c-13ff527dab72b188","8f44c0a240ea851-17d6558cc0b8e8db"]},"geometry":{"type":"LineString","coordinates":[[-83.706935,32.845768],[-83.70674600000001,32.846119],[-83.705948,32.846868],[-83.70568200000001,32.84713]]},"id":"8844c0a241fffff-17be73edc9546b7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62595,32.866976]},"id":"8f44c0a3069536c-17d718354e2d84cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626834,32.867137]},"id":"8f44c0a30680a5c-17bfb60cc10f686d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3069536c-17d718354e2d84cb","8f44c0a30680a5c-17bfb60cc10f686d"]},"geometry":{"type":"LineString","coordinates":[[-83.62595,32.866976],[-83.62608900000001,32.867006],[-83.62621,32.867024],[-83.626338,32.867029],[-83.626609,32.867063],[-83.626766,32.867117],[-83.626834,32.867137]]},"id":"8a44c0a30687fff-17ff171f463cdfd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68441800000001,32.85805]},"id":"8f44c0a262a9634-13ffc976c247ca70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68377100000001,32.857608]},"id":"8f44c0a262aa81a-17f78b0b2d8b2493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262aa81a-17f78b0b2d8b2493","8f44c0a262a9634-13ffc976c247ca70"]},"geometry":{"type":"LineString","coordinates":[[-83.68441800000001,32.85805],[-83.68377100000001,32.857608]]},"id":"8a44c0a262affff-13ffaa40fb41cdbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324384,32.927337900000005]},"id":"8f44c0a2821ba00-13b6343a09ba46ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7258932,32.9255506]},"id":"8f44c0a2875a71a-17d72434caf6295d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2875a71a-17d72434caf6295d","8f44c0a2821ba00-13b6343a09ba46ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7324384,32.927337900000005],[-83.7321818,32.9271776],[-83.73184,32.9270008],[-83.7316668,32.9269221],[-83.73148900000001,32.9268536],[-83.7312953,32.9267938],[-83.7310947,32.926739600000005],[-83.7309104,32.9267026],[-83.7307227,32.926673300000004],[-83.73032,32.926617],[-83.728662,32.926398],[-83.728389,32.926354],[-83.7282235,32.9263199],[-83.728057,32.9262779],[-83.7278869,32.9262242],[-83.727715,32.926161],[-83.72742170000001,32.9260566],[-83.7266692,32.9257767],[-83.72628160000001,32.9256574],[-83.7258932,32.9255506]]},"id":"8744c0a28ffffff-17f7bc2b42590f81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6654129,32.7943012]},"id":"8f44c0b1c4db894-17d6f7dcfb6a0a88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6674179,32.7911391]},"id":"8f44c0b1c40ab22-179ff2f7dde3e955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c4db894-17d6f7dcfb6a0a88","8f44c0b1c40ab22-179ff2f7dde3e955"]},"geometry":{"type":"LineString","coordinates":[[-83.6654129,32.7943012],[-83.6656483,32.794040100000004],[-83.6658474,32.7937701],[-83.6661443,32.793298],[-83.66671810000001,32.792323700000004],[-83.6671637,32.791578300000005],[-83.6674179,32.7911391]]},"id":"8744c0b1cffffff-139fb55189128bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720038,32.930116000000005]},"id":"8f44c0a2bd08690-13feb28049945a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72002,32.929575]},"id":"8f44c0a2bd0e859-179e728b82974c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd08690-13feb28049945a58","8f44c0a2bd0e859-179e728b82974c4d"]},"geometry":{"type":"LineString","coordinates":[[-83.720038,32.930116000000005],[-83.72002,32.929575]]},"id":"8a44c0a2bd0ffff-13d77285e5ebf66b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69498300000001,32.91169]},"id":"8f44c0a05ad3b48-13fe6faba5dd0307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69521300000001,32.911454]},"id":"8f44c0a05ad1898-13deef1be4024939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ad1898-13deef1be4024939","8f44c0a05ad3b48-13fe6faba5dd0307"]},"geometry":{"type":"LineString","coordinates":[[-83.69498300000001,32.91169],[-83.69521300000001,32.911454]]},"id":"8b44c0a05ad1fff-13b6ef63c8a2e084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66435700000001,32.788958]},"id":"8f44c0b1c59985b-13defa70e521b48d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66585500000001,32.788988]},"id":"8f44c0b1c432425-13dfb6c8a85bf3d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c59985b-13defa70e521b48d","8f44c0b1c432425-13dfb6c8a85bf3d5"]},"geometry":{"type":"LineString","coordinates":[[-83.66435700000001,32.788958],[-83.664685,32.788966],[-83.66527,32.788994],[-83.66570300000001,32.789009],[-83.665806,32.789009],[-83.66585500000001,32.788988]]},"id":"8844c0b1c5fffff-13dfb89b82f6bd42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6758274,32.7577672]},"id":"8f44c0b15a58ad3-17b69e6fe4c72287"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66883200000001,32.757433]},"id":"8f44c0b15333c8b-13d7af840caf05ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a58ad3-17b69e6fe4c72287","8f44c0b15333c8b-13d7af840caf05ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6758274,32.7577672],[-83.6740663,32.757766600000004],[-83.67217810000001,32.757766600000004],[-83.67157900000001,32.75754],[-83.671401,32.757512000000006],[-83.671188,32.757506],[-83.67055,32.757514],[-83.66995200000001,32.757531],[-83.669461,32.75753],[-83.669087,32.757509],[-83.66883200000001,32.757433]]},"id":"8744c0b15ffffff-13f6a6ff59ee2f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723628,32.790962]},"id":"8f44c0b0e922336-17bf69bc8ebdc2ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724531,32.7911899]},"id":"8f44c0b0e921ad5-17bfb7882ffd0b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e921ad5-17bfb7882ffd0b31","8f44c0b0e922336-17bf69bc8ebdc2ce"]},"geometry":{"type":"LineString","coordinates":[[-83.723628,32.790962],[-83.72390800000001,32.791049],[-83.724338,32.791193],[-83.724531,32.7911899]]},"id":"8a44c0b0e927fff-179728a460b1ba4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668515,32.7882424]},"id":"8f44c0b1c50866c-179fb04a2daffb6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668334,32.788601]},"id":"8f44c0b1c50b70a-17ffb0bb4343fe6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c50b70a-17ffb0bb4343fe6d","8f44c0b1c50866c-179fb04a2daffb6f"]},"geometry":{"type":"LineString","coordinates":[[-83.668515,32.7882424],[-83.66870870000001,32.7880897],[-83.6688187,32.7880187],[-83.66892460000001,32.7879633],[-83.6690755,32.7879033],[-83.669223,32.7878729],[-83.669323,32.787867],[-83.66939,32.787877],[-83.66946200000001,32.787897],[-83.669526,32.78792],[-83.669601,32.787968],[-83.669649,32.788007],[-83.669697,32.788061],[-83.66974900000001,32.78815],[-83.669773,32.788212],[-83.669787,32.788266],[-83.669791,32.788339],[-83.669779,32.788497],[-83.66976670000001,32.7885645],[-83.66974400000001,32.7886353],[-83.669713,32.788699300000005],[-83.669656,32.788791],[-83.669582,32.788885],[-83.669452,32.789],[-83.66938800000001,32.789046],[-83.66933300000001,32.789077],[-83.669257,32.789111000000005],[-83.669193,32.789132],[-83.6690995,32.7891545],[-83.669027,32.7891575],[-83.66896200000001,32.7891549],[-83.668896,32.7891406],[-83.66883800000001,32.7891235],[-83.66877530000001,32.789096300000004],[-83.668718,32.789057],[-83.668656,32.789008],[-83.66859500000001,32.788944],[-83.668334,32.788601]]},"id":"8844c0b1c5fffff-17b7feadb4bccd51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705482,32.785956]},"id":"8f44c0b03ab5094-13f6d609cd018ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70639100000001,32.785017]},"id":"8f44c0b03b9da91-17bff3d1a2f2c06a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ab5094-13f6d609cd018ca5","8f44c0b03b9da91-17bff3d1a2f2c06a"]},"geometry":{"type":"LineString","coordinates":[[-83.705482,32.785956],[-83.70590200000001,32.786022],[-83.706266,32.786066000000005],[-83.706373,32.786071],[-83.70642600000001,32.786063],[-83.70646500000001,32.786032],[-83.70649,32.785986],[-83.70650300000001,32.785925],[-83.706505,32.785854],[-83.706497,32.785719],[-83.70640300000001,32.785407],[-83.70639200000001,32.785324],[-83.70639100000001,32.785017]]},"id":"8844c0b03bfffff-1397f440068a8ee8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67729200000001,32.817861]},"id":"8f44c0b18370775-17dfbadc8e0faa1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6770474,32.817500100000004]},"id":"8f44c0b18376336-17ff9b7569e9cf8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18376336-17ff9b7569e9cf8a","8f44c0b18370775-17dfbadc8e0faa1a"]},"geometry":{"type":"LineString","coordinates":[[-83.67729200000001,32.817861],[-83.6770474,32.817500100000004]]},"id":"8a44c0b18377fff-17fefb28f362741d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5522325,32.840697500000005]},"id":"8f44c0b8e0c42d2-179ffc2ebeae5283"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55197720000001,32.8411745]},"id":"8f44c0b8e0c3d6d-17d7dcce4a501a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8e0c42d2-179ffc2ebeae5283","8f44c0b8e0c3d6d-17d7dcce4a501a0e"]},"geometry":{"type":"LineString","coordinates":[[-83.5522325,32.840697500000005],[-83.5522639,32.8408565],[-83.55225,32.840927],[-83.552231,32.84097],[-83.55218400000001,32.841029],[-83.55197720000001,32.8411745]]},"id":"8a44c0b8e0c7fff-17d7dc534145e41d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645002,32.8407235]},"id":"8f44c0a34068b2a-17bef9b1c45ee2fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6452244,32.8411848]},"id":"8f44c0a34069311-17dee926c4611099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34068b2a-17bef9b1c45ee2fd","8f44c0a34069311-17dee926c4611099"]},"geometry":{"type":"LineString","coordinates":[[-83.645002,32.8407235],[-83.6450585,32.840754700000005],[-83.6451124,32.840789400000006],[-83.6451454,32.840814200000004],[-83.64517830000001,32.8408413],[-83.64520130000001,32.84087],[-83.6452232,32.8408962],[-83.64525,32.840948600000004],[-83.64526950000001,32.841004600000005],[-83.6452793,32.841074],[-83.6452244,32.8411848]]},"id":"8a44c0a3406ffff-17bfe93bc974654a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738059,32.878361000000005]},"id":"8f44c0b5208b369-139fa68121a5ceb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738066,32.878794]},"id":"8f44c0b520d2d50-139e467cc828066b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5208b369-139fa68121a5ceb8","8f44c0b520d2d50-139e467cc828066b"]},"geometry":{"type":"LineString","coordinates":[[-83.738059,32.878361000000005],[-83.73806900000001,32.878555],[-83.738066,32.878794]]},"id":"8844c0b521fffff-1396e67cdc579e29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718102,32.916697]},"id":"8f44c0a285890e3-13b7b73a4ffd5dea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718539,32.916708]},"id":"8f44c0a28432662-13beb6292e026165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a285890e3-13b7b73a4ffd5dea","8f44c0a28432662-13beb6292e026165"]},"geometry":{"type":"LineString","coordinates":[[-83.718102,32.916697],[-83.718539,32.916708]]},"id":"8944c0a2843ffff-13bf36b1b252bda8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69457700000001,32.912554]},"id":"8f44c0a05329a95-179e70a96f0ec387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69515100000001,32.912272]},"id":"8f44c0a05ada968-17de6f42a54a1543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05329a95-179e70a96f0ec387","8f44c0a05ada968-17de6f42a54a1543"]},"geometry":{"type":"LineString","coordinates":[[-83.69457700000001,32.912554],[-83.694556,32.91237],[-83.694553,32.91227],[-83.694981,32.912079],[-83.69508400000001,32.912146],[-83.69515100000001,32.912272]]},"id":"8844c0a053fffff-17d77023c2266bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66792000000001,32.7873609]},"id":"8f44c0b1c5038c8-17f6b1be0f6fd29c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c5038c8-17f6b1be0f6fd29c","8f44c0b1c50181a-13f7f09edb5a40df"]},"geometry":{"type":"LineString","coordinates":[[-83.6683795,32.787187],[-83.6682842,32.7872238],[-83.6681927,32.787253],[-83.6680743,32.7872898],[-83.66792000000001,32.7873609]]},"id":"8a44c0b1c507fff-17bfb12f78a3a041"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668481,32.7893366]},"id":"8f44c0b1c5527b3-13b7f05f6d73daf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c552a73-13b7bf658b355abe","8f44c0b1c5527b3-13b7f05f6d73daf2"]},"geometry":{"type":"LineString","coordinates":[[-83.668481,32.7893366],[-83.66888080000001,32.789304300000005]]},"id":"8b44c0b1c552fff-13bfffe27660a646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62603100000001,32.840131]},"id":"8f44c0a3684d754-17bff802a633b412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625895,32.840674]},"id":"8f44c0a36b169b5-179f5857a491d2d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36b169b5-179f5857a491d2d8","8f44c0a3684d754-17bff802a633b412"]},"geometry":{"type":"LineString","coordinates":[[-83.62603100000001,32.840131],[-83.626379,32.840024],[-83.626481,32.840007],[-83.626582,32.840007],[-83.626686,32.840027],[-83.626776,32.840074],[-83.62680200000001,32.840086],[-83.626895,32.840175],[-83.626941,32.840266],[-83.62695400000001,32.840398],[-83.626923,32.840511],[-83.62684300000001,32.840603],[-83.626744,32.840671],[-83.626593,32.840722],[-83.626436,32.840741],[-83.62634800000001,32.840736],[-83.626289,32.840735],[-83.625895,32.840674]]},"id":"8844c0a36bfffff-17dff6cd9a286238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7078724,32.9176826]},"id":"8f44c0a2a8aa013-139ff033c9d3a88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704228,32.916013]},"id":"8f44c0a2ad5d19a-17fe7919838e172d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2ad5d19a-17fe7919838e172d","8f44c0a2a8aa013-139ff033c9d3a88e"]},"geometry":{"type":"LineString","coordinates":[[-83.7078724,32.9176826],[-83.70689700000001,32.917495],[-83.70659400000001,32.917428],[-83.706303,32.917343],[-83.706027,32.91724],[-83.705709,32.917091],[-83.70547900000001,32.916961],[-83.705236,32.916801],[-83.704665,32.916348],[-83.704228,32.916013]]},"id":"8744c0a2affffff-1397d4dff77dadcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655325,32.814033]},"id":"8f44c0b1a849190-1796f07defa4c7f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65443970000001,32.813480600000005]},"id":"8f44c0b1a84e4d2-17bff2a73b6a1ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a849190-1796f07defa4c7f2","8f44c0b1a84e4d2-17bff2a73b6a1ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.655325,32.814033],[-83.6551857,32.813997900000004],[-83.6550584,32.8139605],[-83.6549627,32.8139241],[-83.6548829,32.8138901],[-83.6548104,32.8138522],[-83.65474660000001,32.8138141],[-83.6546873,32.813772900000004],[-83.65462980000001,32.8137271],[-83.654579,32.8136778],[-83.6545335,32.8136275],[-83.65449600000001,32.813575],[-83.65443970000001,32.813480600000005]]},"id":"8a44c0b1a84ffff-17fef1ae652da239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723662,32.790853000000006]},"id":"8f44c0b0e922bb3-17ff29a74617cec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e922bb3-17ff29a74617cec1","8f44c0b0e922336-17bf69bc8ebdc2ce"]},"geometry":{"type":"LineString","coordinates":[[-83.723662,32.790853000000006],[-83.723628,32.790962]]},"id":"8b44c0b0e922fff-179f39b1e2fbba00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718041,32.918214]},"id":"8f44c0a284ad186-13dff7606caf0c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717967,32.918689]},"id":"8f44c0a284a9033-1796b78ea264dd4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a284ad186-13dff7606caf0c9c","8f44c0a284a9033-1796b78ea264dd4e"]},"geometry":{"type":"LineString","coordinates":[[-83.718041,32.918214],[-83.71816700000001,32.918256],[-83.71835700000001,32.918349],[-83.71846500000001,32.918408],[-83.71854400000001,32.918464],[-83.718553,32.918484],[-83.71856100000001,32.918501],[-83.71855310000001,32.918550700000004],[-83.718367,32.918732],[-83.71831800000001,32.918765],[-83.718243,32.918785],[-83.718157,32.918788],[-83.718086,32.918773],[-83.718017,32.918733],[-83.717967,32.918689]]},"id":"8844c0a285fffff-17b7b6bd0c615893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762392,32.855517]},"id":"8f44c0b5479922c-13dfeb1909961929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763074,32.855367]},"id":"8f44c0b5478bd2e-13fde96eca953b4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5479922c-13dfeb1909961929","8f44c0b5478bd2e-13fde96eca953b4d"]},"geometry":{"type":"LineString","coordinates":[[-83.762392,32.855517],[-83.76260900000001,32.855522],[-83.762752,32.85551],[-83.76288500000001,32.855483],[-83.762989,32.855441],[-83.763074,32.855367]]},"id":"8944c0b547bffff-13b7fa3b27536291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7234263,32.790668000000004]},"id":"8f44c0b0e922da4-17f7aa3a92c2416a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e922da4-17f7aa3a92c2416a","8f44c0b0e922bb3-17ff29a74617cec1"]},"geometry":{"type":"LineString","coordinates":[[-83.7234263,32.790668000000004],[-83.723662,32.790853000000006]]},"id":"8a44c0b0e927fff-17b779f0e8c44437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57895900000001,32.84638]},"id":"8f44c0b8894014b-17ff8aeea3ce4fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57981500000001,32.846641000000005]},"id":"8f44c0b8896aa9b-179fa8d7a4f75221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8896aa9b-179fa8d7a4f75221","8f44c0b8894014b-17ff8aeea3ce4fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.57895900000001,32.84638],[-83.57981500000001,32.846641000000005]]},"id":"8944c0b8897ffff-17df99e3229b8487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68564500000001,32.867589]},"id":"8f44c0a22b33365-13d7a677ef98b84e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69005700000001,32.867722]},"id":"8f44c0a204c1a12-13967bb2623c1935"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a204c1a12-13967bb2623c1935","8f44c0a22b33365-13d7a677ef98b84e"]},"geometry":{"type":"LineString","coordinates":[[-83.68564500000001,32.867589],[-83.686656,32.867665],[-83.69005700000001,32.867722]]},"id":"8644c0a27ffffff-13fee115c5632bd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738445,32.878361000000005]},"id":"8f44c0b520d4594-139fa58feccbaded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738443,32.87796]},"id":"8f44c0b52089806-1397059122b8134c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520d4594-139fa58feccbaded","8f44c0b52089806-1397059122b8134c"]},"geometry":{"type":"LineString","coordinates":[[-83.738445,32.878361000000005],[-83.738443,32.87796]]},"id":"8844c0b521fffff-13965590839071ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65746730000001,32.825838700000006]},"id":"8f44c0b1bca3725-13d7fb42f5fba823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65722810000001,32.8246842]},"id":"8f44c0b1bd99790-1797ebd8772bade9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bd99790-1797ebd8772bade9","8f44c0b1bca3725-13d7fb42f5fba823"]},"geometry":{"type":"LineString","coordinates":[[-83.65746730000001,32.825838700000006],[-83.6576185,32.825871500000005],[-83.657767,32.825912100000004],[-83.6579085,32.825964400000004],[-83.658023,32.826021100000006],[-83.6581192,32.8260832],[-83.6581984,32.826146800000004],[-83.65826960000001,32.826216800000005],[-83.6583313,32.8262907],[-83.6583829,32.8263666],[-83.6584199,32.8264435],[-83.6584436,32.8265274],[-83.658454,32.826596],[-83.65844700000001,32.8266726],[-83.6584287,32.826735500000005],[-83.65839600000001,32.826795700000005],[-83.6583537,32.826854100000006],[-83.6582934,32.826912400000005],[-83.65823300000001,32.826954],[-83.658156,32.826991],[-83.658084,32.827012],[-83.658011,32.827025],[-83.657938,32.827032],[-83.65786200000001,32.827028],[-83.657781,32.827011],[-83.65770900000001,32.826985],[-83.65763600000001,32.826952],[-83.657555,32.826898],[-83.6574897,32.826844200000004],[-83.65742900000001,32.826777],[-83.6573685,32.8266975],[-83.65732700000001,32.8266213],[-83.6572903,32.826542700000005],[-83.6572644,32.8264482],[-83.6572484,32.826348200000005],[-83.65724970000001,32.8262541],[-83.6572611,32.8261668],[-83.6572994,32.825925500000004],[-83.65732630000001,32.8256825],[-83.6573398,32.8254396],[-83.65733990000001,32.8252508],[-83.6573319,32.8250619],[-83.65729440000001,32.824873600000004],[-83.65722810000001,32.8246842]]},"id":"8844c0b1bdfffff-13b7caafc625e931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624372,32.756230800000004]},"id":"8f44c0b150d6b6b-13f6ff20c2a4a09c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6608173,32.7551785]},"id":"8f44c0b1509d591-17d6d3153a6d32f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1509d591-17d6d3153a6d32f7","8f44c0b150d6b6b-13f6ff20c2a4a09c"]},"geometry":{"type":"LineString","coordinates":[[-83.6624372,32.756230800000004],[-83.662245,32.756234],[-83.66218900000001,32.756222],[-83.662148,32.756207],[-83.662076,32.756169],[-83.66188600000001,32.756031],[-83.661156,32.75548],[-83.6608173,32.7551785]]},"id":"8844c0b151fffff-17dee13140f8aca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6079472,32.846870700000004]},"id":"8f44c0a364c80a9-17bf7429039b1ae5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608827,32.847827]},"id":"8f44c0a367954a8-1397e2032271a77e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364c80a9-17bf7429039b1ae5","8f44c0a367954a8-1397e2032271a77e"]},"geometry":{"type":"LineString","coordinates":[[-83.6079472,32.846870700000004],[-83.6081946,32.847317000000004],[-83.6083184,32.847564600000005],[-83.6083802,32.8476288],[-83.60842930000001,32.847665500000005],[-83.60852030000001,32.847715900000004],[-83.608652,32.847779],[-83.608827,32.847827]]},"id":"8744c0a36ffffff-179f6342aaed0427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608998,32.847206]},"id":"8f44c0a367b2368-17ffc19842c59517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6085822,32.846650600000004]},"id":"8f44c0a364cd853-17b7e29c24c719f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a367b2368-17ffc19842c59517","8f44c0a364cd853-17b7e29c24c719f6"]},"geometry":{"type":"LineString","coordinates":[[-83.608998,32.847206],[-83.608902,32.84716],[-83.608824,32.847088],[-83.60876,32.847003],[-83.6085822,32.846650600000004]]},"id":"8744c0a36ffffff-17f7f22d72146b40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630661,32.839668]},"id":"8f44c0a344f18b6-179f8cb4e2730125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63079300000001,32.839505]},"id":"8f44c0a344f5382-13b7ac6260071e33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a344f5382-13b7ac6260071e33","8f44c0a344f18b6-179f8cb4e2730125"]},"geometry":{"type":"LineString","coordinates":[[-83.630661,32.839668],[-83.63073700000001,32.839622],[-83.630775,32.839574],[-83.63079300000001,32.839505]]},"id":"8a44c0a344f7fff-13ffcc823e42eee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62758500000001,32.835317]},"id":"8f44c0a34592af0-13ff3437642dd3d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62784,32.835476]},"id":"8f44c0a345938ab-13df93980aad51a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34592af0-13ff3437642dd3d7","8f44c0a345938ab-13df93980aad51a7"]},"geometry":{"type":"LineString","coordinates":[[-83.62758500000001,32.835317],[-83.62763600000001,32.835388],[-83.62766400000001,32.835411],[-83.627734,32.835451],[-83.62784,32.835476]]},"id":"8a44c0a34597fff-13b773f0089c3839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670415,32.842554]},"id":"8f44c0b1b273749-13b6eba6a5e01353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669674,32.842543]},"id":"8f44c0b1b256b35-139fed75c39cf929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b273749-13b6eba6a5e01353","8f44c0b1b256b35-139fed75c39cf929"]},"geometry":{"type":"LineString","coordinates":[[-83.670415,32.842554],[-83.669674,32.842543]]},"id":"8944c0b1b27ffff-13b6fc8e3708c2ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622932,32.843916]},"id":"8f44c0a36ab5498-17f79f938e90af38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36ab5498-17f79f938e90af38","8f44c0a36a8612c-13df7f636e4640a5"]},"geometry":{"type":"LineString","coordinates":[[-83.62300900000001,32.844695],[-83.62296570000001,32.8446365],[-83.622929,32.844575],[-83.62289580000001,32.844502500000004],[-83.6228718,32.8444275],[-83.62285700000001,32.8443509],[-83.6228518,32.844273300000005],[-83.6228561,32.8441958],[-83.62287,32.844119],[-83.622932,32.843916]]},"id":"8944c0a36abffff-17f7dfa9e4e81d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66263400000001,32.756653]},"id":"8f44c0b150d030d-13febea5cb0c7b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6621679,32.756415600000004]},"id":"8f44c0b150d6299-13d7ffc9106df959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b150d030d-13febea5cb0c7b37","8f44c0b150d6299-13d7ffc9106df959"]},"geometry":{"type":"LineString","coordinates":[[-83.66263400000001,32.756653],[-83.662564,32.756545],[-83.662507,32.756487],[-83.66243700000001,32.756447],[-83.662374,32.756425],[-83.6621679,32.756415600000004]]},"id":"8a44c0b150d7fff-1396bf261ac5876d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654127,32.833871]},"id":"8f44c0b1b4f4b0b-17f7f36aa94adc99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65431500000001,32.833635]},"id":"8f44c0b1b41bc0c-17dff2f522a5d9f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4f4b0b-17f7f36aa94adc99","8f44c0b1b41bc0c-17dff2f522a5d9f3"]},"geometry":{"type":"LineString","coordinates":[[-83.654127,32.833871],[-83.65431500000001,32.833635]]},"id":"8844c0b1b5fffff-17b7f32feadad5da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65996100000001,32.833239]},"id":"8f44c0b1b0948ae-17f6e52c6cd71c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660337,32.833227]},"id":"8f44c0b1b0b3181-17dee4416fcf9888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0948ae-17f6e52c6cd71c9c","8f44c0b1b0b3181-17dee4416fcf9888"]},"geometry":{"type":"LineString","coordinates":[[-83.65996100000001,32.833239],[-83.66002,32.833202],[-83.660078,32.833183000000005],[-83.66020300000001,32.833181],[-83.660251,32.833191],[-83.660337,32.833227]]},"id":"8944c0b1b0bffff-17dec4b844702cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67637400000001,32.819601]},"id":"8f44c0b1822d02a-139ebd1a46c1fbba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67755000000001,32.8197739]},"id":"8f44c0b1835d44b-1396ba3b4d2a6265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1835d44b-1396ba3b4d2a6265","8f44c0b1822d02a-139ebd1a46c1fbba"]},"geometry":{"type":"LineString","coordinates":[[-83.67637400000001,32.819601],[-83.676894,32.819674],[-83.67755000000001,32.8197739]]},"id":"8944c0b1837ffff-13dfbbaaab765b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6293552,32.8407639]},"id":"8f44c0a344d3c1d-17d77fe50c794020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6288385,32.841381500000004]},"id":"8f44c0a36b28111-13d77127fc6c99cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b28111-13d77127fc6c99cb","8f44c0a344d3c1d-17d77fe50c794020"]},"geometry":{"type":"LineString","coordinates":[[-83.6293552,32.8407639],[-83.62931060000001,32.8408177],[-83.6289162,32.8412929],[-83.6288385,32.841381500000004]]},"id":"8644c0a37ffffff-17971085d88dcc53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65553700000001,32.8254749]},"id":"8f44c0b1a349a1e-13f7dff967695692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655298,32.825718]},"id":"8f44c0b1bc96999-139fd08ecd793dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a349a1e-13f7dff967695692","8f44c0b1bc96999-139fd08ecd793dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.65553700000001,32.8254749],[-83.65550400000001,32.825543800000005],[-83.6554617,32.8256022],[-83.6554114,32.825646],[-83.655358,32.8256843],[-83.655298,32.825718]]},"id":"8944c0b1bcbffff-13d7f03a3babfbda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710592,32.836092]},"id":"8f44c0a2483530e-13dfc9900272fe19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711162,32.836091]},"id":"8f44c0a24820c9b-13dee82bc9d28cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2483530e-13dfc9900272fe19","8f44c0a24820c9b-13dee82bc9d28cc9"]},"geometry":{"type":"LineString","coordinates":[[-83.710592,32.836092],[-83.71077000000001,32.836092],[-83.711162,32.836091]]},"id":"8944c0a2483ffff-13df58dde2673b05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65961200000001,32.822954]},"id":"8f44c0b1bd13701-13dec6068d5b91c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659603,32.822018]},"id":"8f44c0b1bd16846-1397c60c28c0015e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd13701-13dec6068d5b91c2","8f44c0b1bd16846-1397c60c28c0015e"]},"geometry":{"type":"LineString","coordinates":[[-83.65961200000001,32.822954],[-83.659603,32.822018]]},"id":"8a44c0b1bd17fff-13b7c6095110bf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666945,32.787962]},"id":"8f44c0b1c51849c-17def41f64fbfb7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66588200000001,32.787152]},"id":"8f44c0b1c5a1a5e-13f6b6b7c91b33ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c5a1a5e-13f6b6b7c91b33ba","8f44c0b1c51849c-17def41f64fbfb7f"]},"geometry":{"type":"LineString","coordinates":[[-83.666945,32.787962],[-83.66649100000001,32.787761],[-83.66619100000001,32.787636],[-83.66609700000001,32.787587],[-83.66597200000001,32.787508],[-83.665936,32.787472],[-83.665896,32.787424],[-83.665874,32.787366],[-83.665869,32.787334],[-83.66587,32.787281],[-83.665881,32.787197],[-83.66588200000001,32.787152]]},"id":"8844c0b1c5fffff-1797b5afec1d505a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67300300000001,32.853898]},"id":"8f44c0a26793c4e-17d6e5552e64f8c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670457,32.853326]},"id":"8f44c0a35b700a2-17f6eb8c6328a21e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35b700a2-17f6eb8c6328a21e","8f44c0a26793c4e-17d6e5552e64f8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.67300300000001,32.853898],[-83.67286100000001,32.853872],[-83.672768,32.853848],[-83.67253000000001,32.853771],[-83.672425,32.853745],[-83.67170700000001,32.853637],[-83.671475,32.853594],[-83.67096400000001,32.853534],[-83.670896,32.853518],[-83.670787,32.853479],[-83.67053100000001,32.853352],[-83.670457,32.853326]]},"id":"8644c0a27ffffff-17b7a876b4026d40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665981,32.849345]},"id":"8f44c0a35844585-13beb679e855dd13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666275,32.849869000000005]},"id":"8f44c0a35840a03-1796b5c22fb457f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35840a03-1796b5c22fb457f7","8f44c0a35844585-13beb679e855dd13"]},"geometry":{"type":"LineString","coordinates":[[-83.665981,32.849345],[-83.666275,32.849869000000005]]},"id":"8a44c0a35847fff-17def61e0e28d838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66404200000001,32.849157000000005]},"id":"8f44c0a3580b0ce-13d7bb35c5114c31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66369300000001,32.849728]},"id":"8f44c0a358e1da1-17bebc0fee477c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358e1da1-17bebc0fee477c66","8f44c0a3580b0ce-13d7bb35c5114c31"]},"geometry":{"type":"LineString","coordinates":[[-83.66404200000001,32.849157000000005],[-83.66369300000001,32.849728]]},"id":"8844c0a359fffff-13f7bba2dc748876"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61473500000001,32.876278]},"id":"8f44c0a322ddad3-17fff396a483e560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615108,32.875649]},"id":"8f44c0a322c10b2-13f7b2ad8ddc5c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322ddad3-17fff396a483e560","8f44c0a322c10b2-13f7b2ad8ddc5c6b"]},"geometry":{"type":"LineString","coordinates":[[-83.61473500000001,32.876278],[-83.614817,32.876103],[-83.61487100000001,32.876013],[-83.61504000000001,32.875783000000006],[-83.615108,32.875649]]},"id":"8944c0a322fffff-17b77325363fee10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69068100000001,32.902613]},"id":"8f44c0a0588d359-17d77a2c6b33d257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690858,32.903188]},"id":"8f44c0a058d4145-17bef9bdc733f4bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0588d359-17d77a2c6b33d257","8f44c0a058d4145-17bef9bdc733f4bc"]},"geometry":{"type":"LineString","coordinates":[[-83.69068100000001,32.902613],[-83.690741,32.902692],[-83.69079,32.902803],[-83.690825,32.902929],[-83.69085000000001,32.903053],[-83.690858,32.903188]]},"id":"8844c0a059fffff-17f679e2052db163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70577300000001,32.824911]},"id":"8f44c0b0a46b793-13977553eebcb44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70582800000001,32.82417]},"id":"8f44c0b0a46e30e-17d655318b276389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a46e30e-17d655318b276389","8f44c0b0a46b793-13977553eebcb44a"]},"geometry":{"type":"LineString","coordinates":[[-83.70577300000001,32.824911],[-83.705824,32.824633],[-83.70582800000001,32.82446],[-83.70580600000001,32.824266],[-83.70582800000001,32.82417]]},"id":"8944c0b0a47ffff-17bff53b763ec6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703367,32.824106]},"id":"8f44c0b0a450190-179e5b33acff1557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70414500000001,32.82271]},"id":"8f44c0b0a474554-13b7d94d6a3c7c03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a474554-13b7d94d6a3c7c03","8f44c0b0a450190-179e5b33acff1557"]},"geometry":{"type":"LineString","coordinates":[[-83.703367,32.824106],[-83.70414500000001,32.82271]]},"id":"8944c0b0a47ffff-17f65a40848411d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66601150000001,32.791403100000004]},"id":"8f44c0b1c41b4ae-17d6f666d1bf8f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645531,32.7951554]},"id":"8f44c0b1eb72a5c-17feb9f652d3901a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c41b4ae-17d6f666d1bf8f25","8f44c0b1eb72a5c-17feb9f652d3901a"]},"geometry":{"type":"LineString","coordinates":[[-83.66601150000001,32.791403100000004],[-83.66600170000001,32.7914929],[-83.66590500000001,32.792257],[-83.6658494,32.792560900000005],[-83.665779,32.792859],[-83.6657167,32.7930559],[-83.66564290000001,32.7932542],[-83.66554160000001,32.7934922],[-83.66542700000001,32.793721500000004],[-83.66527810000001,32.7939876],[-83.6651205,32.7942501],[-83.6649764,32.794471800000004],[-83.6648316,32.794686],[-83.66473160000001,32.794841600000005],[-83.6646472,32.7949858],[-83.6645531,32.7951554]]},"id":"8644c0b1fffffff-1397b7bb664b07de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717201,32.916043]},"id":"8f44c0a2858e4ea-179ef96d69101cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717207,32.915739]},"id":"8f44c0a28583ae3-17d6f969a577302e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2858e4ea-179ef96d69101cb6","8f44c0a28583ae3-17d6f969a577302e"]},"geometry":{"type":"LineString","coordinates":[[-83.717201,32.916043],[-83.717207,32.915739]]},"id":"8944c0a285bffff-17bff96b866477c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661345,32.7910344]},"id":"8f44c0b1c4184d3-17deb619f95c486c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c41b4ae-17d6f666d1bf8f25","8f44c0b1c4184d3-17deb619f95c486c"]},"geometry":{"type":"LineString","coordinates":[[-83.6661345,32.7910344],[-83.6660962,32.791079],[-83.66606850000001,32.7911249],[-83.6660425,32.7911951],[-83.6660287,32.791266300000004],[-83.66601150000001,32.791403100000004]]},"id":"8a44c0b1c41ffff-17deb64d714b0e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6677868,32.7907237]},"id":"8f44c0b1c40c0c2-179ef2114695d5b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c40ab22-179ff2f7dde3e955","8f44c0b1c40c0c2-179ef2114695d5b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6674179,32.7911391],[-83.66760000000001,32.7908624],[-83.6676284,32.790829800000004],[-83.66766460000001,32.7907966],[-83.66771960000001,32.7907616],[-83.6677868,32.7907237]]},"id":"8a44c0b1c40ffff-179ff29071b8e606"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69917450000001,32.9160173]},"id":"8f44c0a2aca1b6a-17fef56ff46d1ba7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69907110000001,32.9157913]},"id":"8f44c0a2aca52d5-17f7f5b09c0a5546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aca1b6a-17fef56ff46d1ba7","8f44c0a2aca52d5-17f7f5b09c0a5546"]},"geometry":{"type":"LineString","coordinates":[[-83.69917450000001,32.9160173],[-83.69907110000001,32.9157913]]},"id":"8a44c0a2aca7fff-17be759045adc998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67935100000001,32.787278]},"id":"8f44c0b1c8d14f1-17b6d5d5ad4448c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679364,32.786838]},"id":"8f44c0b1c8d0841-139fd5cd88c09ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d0841-139fd5cd88c09ffd","8f44c0b1c8d14f1-17b6d5d5ad4448c4"]},"geometry":{"type":"LineString","coordinates":[[-83.67935100000001,32.787278],[-83.67932900000001,32.787229],[-83.67933500000001,32.786887],[-83.679364,32.786838]]},"id":"8a44c0b1c8d7fff-13b6f5df8a19b73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649032,32.853828]},"id":"8f44c0a35403ca2-17bedfdb0e5d0fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649669,32.853599]},"id":"8f44c0a3540561d-179ffe4cedde644e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3540561d-179ffe4cedde644e","8f44c0a35403ca2-17bedfdb0e5d0fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.649032,32.853828],[-83.64912500000001,32.853794],[-83.649218,32.853749],[-83.649297,32.853717],[-83.649669,32.853599]]},"id":"8a44c0a35407fff-17deff157772d1bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694834,32.876559]},"id":"8f44c0a206c9264-17bf7008ce96cbfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69476900000001,32.87753]},"id":"8f44c0a239931ae-139e70316a9c8d34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a239931ae-139e70316a9c8d34","8f44c0a206c9264-17bf7008ce96cbfd"]},"geometry":{"type":"LineString","coordinates":[[-83.694834,32.876559],[-83.694816,32.876635],[-83.6948,32.876752],[-83.69479000000001,32.876894],[-83.694788,32.877004],[-83.694776,32.877051],[-83.69467900000001,32.877218],[-83.69467200000001,32.877267],[-83.69470100000001,32.877358],[-83.69476900000001,32.87753]]},"id":"8a44c0a23997fff-17df703857e89590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6570008,32.814141400000004]},"id":"8f44c0b1ab224c0-17d6ec668dd3ce80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65663,32.813805]},"id":"8f44c0b1ab354c6-17f6ed4e40af8e15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab224c0-17d6ec668dd3ce80","8f44c0b1ab354c6-17f6ed4e40af8e15"]},"geometry":{"type":"LineString","coordinates":[[-83.6570008,32.814141400000004],[-83.656897,32.814079],[-83.65682500000001,32.814042],[-83.656761,32.813983],[-83.656688,32.813902],[-83.65663,32.813805]]},"id":"8a44c0b1ab37fff-17ffcce63a725d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68973100000001,32.903163]},"id":"8f44c0a05124a69-179efc7e2eb560b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68858200000001,32.903149]},"id":"8f44c0a05135833-17967f4c4ce535a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05124a69-179efc7e2eb560b3","8f44c0a05135833-17967f4c4ce535a2"]},"geometry":{"type":"LineString","coordinates":[[-83.68973100000001,32.903163],[-83.689732,32.902963],[-83.68970800000001,32.902915],[-83.68966400000001,32.902853],[-83.689593,32.902814],[-83.6894,32.902805],[-83.688766,32.902816],[-83.68866,32.902825],[-83.688607,32.902863],[-83.688585,32.902911],[-83.68858200000001,32.903149]]},"id":"8744c0a05ffffff-17fe7de6de9b11db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697484,32.788327]},"id":"8f44c0b030d636c-17d669908e96e982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69776900000001,32.788327]},"id":"8f44c0b030d0903-17d668de65e1f19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030d0903-17d668de65e1f19f","8f44c0b030d636c-17d669908e96e982"]},"geometry":{"type":"LineString","coordinates":[[-83.697484,32.788327],[-83.69776900000001,32.788327]]},"id":"8a44c0b030d7fff-17d669377a92b6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7117649,32.919989300000005]},"id":"8f44c0a2a85a124-13b756b2fcf5b1f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7088969,32.9179637]},"id":"8f44c0a2a8a9af3-13bf5db37090166b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a85a124-13b756b2fcf5b1f7","8f44c0a2a8a9af3-13bf5db37090166b"]},"geometry":{"type":"LineString","coordinates":[[-83.7117649,32.919989300000005],[-83.71133640000001,32.9197184],[-83.7111982,32.9196302],[-83.71106,32.919534],[-83.71086000000001,32.919376],[-83.710696,32.919231],[-83.710249,32.918768],[-83.710097,32.918626],[-83.70997200000001,32.918522],[-83.709845,32.918429],[-83.709615,32.91828],[-83.709344,32.918141],[-83.70914400000001,32.918056],[-83.7088969,32.9179637]]},"id":"8844c0a2a9fffff-179e6a213ca5a9e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70847020000001,32.9176859]},"id":"8f44c0a2a8a8318-1397febe2658ece5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8a8318-1397febe2658ece5","8f44c0a2a8a9af3-13bf5db37090166b"]},"geometry":{"type":"LineString","coordinates":[[-83.7088969,32.9179637],[-83.70870190000001,32.9178791],[-83.70865280000001,32.9178498],[-83.7086062,32.9178139],[-83.70854080000001,32.9177569],[-83.70847020000001,32.9176859]]},"id":"8a44c0a2a8affff-13f7fe4062aa666f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67653,32.786205]},"id":"8f44c0b1c134508-1396bcb8c1cb7f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67692600000001,32.787238]},"id":"8f44c0b1c106922-1797dbc148d7e448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c106922-1797dbc148d7e448","8f44c0b1c134508-1396bcb8c1cb7f58"]},"geometry":{"type":"LineString","coordinates":[[-83.67653,32.786205],[-83.67680100000001,32.786597],[-83.67687400000001,32.786724],[-83.67689800000001,32.7868],[-83.67691500000001,32.786886],[-83.67692600000001,32.787238]]},"id":"8944c0b1c13ffff-13d7bc10097a209a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659188,32.772981]},"id":"8f44c0b11119c42-13dfe70f874f2b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65961370000001,32.7727871]},"id":"8f44c0b1110ada9-13dff605782fa6ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1110ada9-13dff605782fa6ee","8f44c0b11119c42-13dfe70f874f2b4f"]},"geometry":{"type":"LineString","coordinates":[[-83.659188,32.772981],[-83.659245,32.7728569],[-83.6592545,32.7728392],[-83.6592663,32.772820700000004],[-83.6592778,32.7728042],[-83.65929460000001,32.7727865],[-83.65931280000001,32.7727699],[-83.65933030000001,32.7727571],[-83.6593529,32.772746000000005],[-83.6593747,32.772736800000004],[-83.6593959,32.772733200000005],[-83.6594192,32.772730700000004],[-83.65944760000001,32.772730700000004],[-83.659474,32.772734],[-83.659492,32.772739300000005],[-83.6595175,32.772747200000005],[-83.65961370000001,32.7727871]]},"id":"8944c0b1113ffff-13dfd69fc3da60a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6852064,32.747850400000004]},"id":"8f44c0b060a6156-13fe878a047e253a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68592000000001,32.748061]},"id":"8f44c0b060a5568-17f6a5cc0b86f4f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b060a6156-13fe878a047e253a","8f44c0b060a5568-17f6a5cc0b86f4f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6852064,32.747850400000004],[-83.68592000000001,32.748061]]},"id":"8a44c0b060a7fff-17b6d6ab03b24cc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665615,32.849456]},"id":"8f44c0a35846cdb-13feb75ea81f1c79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665608,32.849669]},"id":"8f44c0a3584661e-1797b76305d94f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35846cdb-13feb75ea81f1c79","8f44c0a3584661e-1797b76305d94f76"]},"geometry":{"type":"LineString","coordinates":[[-83.665615,32.849456],[-83.665608,32.849669]]},"id":"8b44c0a35846fff-17d6b760dfb5f8b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72247800000001,32.793847]},"id":"8f44c0b0e8225a1-17be6c8b41928d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722639,32.79375]},"id":"8f44c0b0e822c25-13ffec26a5056324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e8225a1-17be6c8b41928d1c","8f44c0b0e822c25-13ffec26a5056324"]},"geometry":{"type":"LineString","coordinates":[[-83.72247800000001,32.793847],[-83.722639,32.79375]]},"id":"8b44c0b0e822fff-179e3c58f50077bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679861,32.787278]},"id":"8f44c0b1c8c26b0-17b6d496ea487559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67986,32.786839]},"id":"8f44c0b1c8d5a02-139ef497815cbb01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d5a02-139ef497815cbb01","8f44c0b1c8c26b0-17b6d496ea487559"]},"geometry":{"type":"LineString","coordinates":[[-83.679861,32.787278],[-83.67986,32.786839]]},"id":"8944c0b1c8fffff-13b7949732143eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71732200000001,32.916665]},"id":"8f44c0a2858a2d8-1397b921cb91045e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71759200000001,32.91603]},"id":"8f44c0a2858ea0d-1796f87909b32a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2858ea0d-1796f87909b32a6d","8f44c0a2858a2d8-1397b921cb91045e"]},"geometry":{"type":"LineString","coordinates":[[-83.71732200000001,32.916665],[-83.71753000000001,32.916417],[-83.717573,32.916348],[-83.71759300000001,32.916292],[-83.717596,32.91617],[-83.71759200000001,32.91603]]},"id":"8a44c0a2858ffff-17de38aa07395a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708032,32.917405]},"id":"8f44c0a2a8ae2b1-13f66fd0038cdb3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8aa013-139ff033c9d3a88e","8f44c0a2a8ae2b1-13f66fd0038cdb3f"]},"geometry":{"type":"LineString","coordinates":[[-83.708032,32.917405],[-83.70806400000001,32.917498],[-83.70806400000001,32.917538],[-83.70805200000001,32.917586],[-83.708026,32.917623],[-83.707991,32.91765],[-83.7079514,32.9176676],[-83.7078724,32.9176826]]},"id":"8a44c0a2a8affff-13df7fddd3cb9f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66444700000001,32.757422000000005]},"id":"8f44c0b150cc626-13defa38afb8f06f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664237,32.757574000000005]},"id":"8f44c0b150ce348-13bffabbe7013c24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150cc626-13defa38afb8f06f","8f44c0b150ce348-13bffabbe7013c24"]},"geometry":{"type":"LineString","coordinates":[[-83.66444700000001,32.757422000000005],[-83.664237,32.757574000000005]]},"id":"8a44c0b150cffff-13fefa7a4b268b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699444,32.91584]},"id":"8f44c0a2ac128de-179664c782b8b4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70020000000001,32.915712]},"id":"8f44c0a2ac15471-17d662ef0e27ed70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac128de-179664c782b8b4ea","8f44c0a2ac15471-17d662ef0e27ed70"]},"geometry":{"type":"LineString","coordinates":[[-83.699444,32.91584],[-83.69968920000001,32.915779300000004],[-83.69982660000001,32.915750200000005],[-83.70020000000001,32.915712]]},"id":"8a44c0a2ac17fff-17dff3dcadae6235"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090433,32.9199718]},"id":"8f44c0a2a8c2755-13b66d57f7e0bd50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094653,32.9201658]},"id":"8f44c0a2a8c3023-139fec503bc49d9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8c2755-13b66d57f7e0bd50","8f44c0a2a8c3023-139fec503bc49d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.7090433,32.9199718],[-83.7091989,32.9200097],[-83.7092679,32.9200375],[-83.709343,32.920070700000004],[-83.7094065,32.9201104],[-83.7094653,32.9201658]]},"id":"8a44c0a2a8c7fff-13d64ccd72b2c491"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61427040000001,32.859591900000005]},"id":"8f44c0a3288d1ac-17bff4b90734d0f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614671,32.860044]},"id":"8f44c0a328f23b4-17d7b3bea087a65b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a328f23b4-17d7b3bea087a65b","8f44c0a3288d1ac-17bff4b90734d0f2"]},"geometry":{"type":"LineString","coordinates":[[-83.61427040000001,32.859591900000005],[-83.61436900000001,32.859627],[-83.61445900000001,32.859659],[-83.61453200000001,32.859696],[-83.614592,32.85974],[-83.61463400000001,32.859788],[-83.61465100000001,32.859827],[-83.61467,32.85996],[-83.614671,32.860044]]},"id":"8844c0a329fffff-17bf74116a92578f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73079700000001,32.797424]},"id":"8f44c0b0c4f514e-17f6183be1b07097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73043100000001,32.797810000000005]},"id":"8f44c0b0c4f1424-17f75920a7d0fbbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4f514e-17f6183be1b07097","8f44c0b0c4f1424-17f75920a7d0fbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.73079700000001,32.797424],[-83.730767,32.797514],[-83.730738,32.797556],[-83.730672,32.797624],[-83.730603,32.797705],[-83.730563,32.797738],[-83.73043100000001,32.797810000000005]]},"id":"8a44c0b0c4f7fff-17ffd89d4a29868a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561389,32.868509]},"id":"8f44c0b8bc0d72d-1397b5d3ee534f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558627,32.870032]},"id":"8f44c0b8bcd5d2e-17bfbc922ae78201"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc0d72d-1397b5d3ee534f6c","8f44c0b8bcd5d2e-17bfbc922ae78201"]},"geometry":{"type":"LineString","coordinates":[[-83.561389,32.868509],[-83.56066,32.869096],[-83.56024500000001,32.869404],[-83.56003100000001,32.86958],[-83.559775,32.869766000000006],[-83.559576,32.869943],[-83.559286,32.87017],[-83.559178,32.870269],[-83.559066,32.870357000000006],[-83.55902,32.870365],[-83.558976,32.870345],[-83.55889300000001,32.870261],[-83.558698,32.870103],[-83.558627,32.870032]]},"id":"8844c0b8bdfffff-1797b9360701fca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57579100000001,32.838582]},"id":"8f44c0b8c76ea84-13f7d2aaae8b0ec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575382,32.83811]},"id":"8f44c0b8c7638ad-13dfd3aa4940ffff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8c7638ad-13dfd3aa4940ffff","8f44c0b8c76ea84-13f7d2aaae8b0ec0"]},"geometry":{"type":"LineString","coordinates":[[-83.57579100000001,32.838582],[-83.575596,32.838467],[-83.57550300000001,32.838379],[-83.575472,32.838332],[-83.5754227,32.8382257],[-83.575382,32.83811]]},"id":"8944c0b8c77ffff-13f79342776c521a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582193,32.845075]},"id":"8f44c0b8d584c99-13dfe309681a7fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58047900000001,32.84507]},"id":"8f44c0b8d596ce5-13dfc738a487d77e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d596ce5-13dfc738a487d77e","8f44c0b8d584c99-13dfe309681a7fff"]},"geometry":{"type":"LineString","coordinates":[[-83.582193,32.845075],[-83.58234,32.844949],[-83.582424,32.844859],[-83.58251,32.844758],[-83.582603,32.844638],[-83.58288800000001,32.844214],[-83.58292900000001,32.844133],[-83.582941,32.844080000000005],[-83.58293900000001,32.844019],[-83.582921,32.843975],[-83.582884,32.843943],[-83.582818,32.843907],[-83.58274300000001,32.843899],[-83.582617,32.843908],[-83.582369,32.843939],[-83.58215,32.843974],[-83.582057,32.843995],[-83.581916,32.844043],[-83.581665,32.84415],[-83.58124600000001,32.844374],[-83.581157,32.844434],[-83.58047900000001,32.84507]]},"id":"8744c0b8dffffff-179fb39f87c4714a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55318000000001,32.841212]},"id":"8f44c0b8e0eaa6b-17dfc9de8b3d85f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5524134,32.8408597]},"id":"8f44c0b8e0c5459-1797dbbdac10390b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8e0c5459-1797dbbdac10390b","8f44c0b8e0eaa6b-17dfc9de8b3d85f5"]},"geometry":{"type":"LineString","coordinates":[[-83.55318000000001,32.841212],[-83.552773,32.841059],[-83.55257230000001,32.8409597],[-83.5524134,32.8408597]]},"id":"8944c0b8e0fffff-17ffcad303ac1e34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761145,32.852263]},"id":"8f44c0b544eb51c-13ddee2469d95ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76167910000001,32.8512744]},"id":"8f44c0b544ec903-13ffccd69905886b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b544ec903-13ffccd69905886b","8f44c0b544eb51c-13ddee2469d95ac0"]},"geometry":{"type":"LineString","coordinates":[[-83.761145,32.852263],[-83.761302,32.851926],[-83.76167910000001,32.8512744]]},"id":"8944c0b544fffff-13b5cd839153290e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662369,32.873815]},"id":"8f44c0a31b037b2-17f6ff4b66f18a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66296,32.873768000000005]},"id":"8f44c0a31b01753-17dfbdda0521b87f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a31b01753-17dfbdda0521b87f","8f44c0a31b037b2-17f6ff4b66f18a53"]},"geometry":{"type":"LineString","coordinates":[[-83.662369,32.873815],[-83.66252,32.873711],[-83.66255600000001,32.873697],[-83.66259500000001,32.873686],[-83.66263400000001,32.873682],[-83.66267400000001,32.873682],[-83.66271300000001,32.873686],[-83.66296,32.873768000000005]]},"id":"8a44c0a31b07fff-17bebe97eb932d6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62111130000001,32.84642]},"id":"8f44c0a3606b089-1797a405747eab4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6186448,32.8481419]},"id":"8f44c0a363b14d3-13dfba0b097b6e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a363b14d3-13dfba0b097b6e19","8f44c0a3606b089-1797a405747eab4b"]},"geometry":{"type":"LineString","coordinates":[[-83.62111130000001,32.84642],[-83.62093060000001,32.8468108],[-83.6207468,32.8471472],[-83.62063640000001,32.8472972],[-83.6204379,32.847504400000005],[-83.62024770000001,32.8476553],[-83.6200785,32.847763900000004],[-83.6199153,32.8478487],[-83.6197145,32.847941500000005],[-83.6194385,32.8480155],[-83.61920590000001,32.8480618],[-83.6189616,32.848098300000004],[-83.6186448,32.8481419]]},"id":"8744c0a36ffffff-17d7b68fe3fa60a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736519,32.862445]},"id":"8f44c0b56692210-13b62a43aa2cbaf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73629700000001,32.86245]},"id":"8f44c0b56692681-13b74ace646f1e80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b56692681-13b74ace646f1e80","8f44c0b56692210-13b62a43aa2cbaf8"]},"geometry":{"type":"LineString","coordinates":[[-83.736519,32.862445],[-83.73629700000001,32.86245]]},"id":"8b44c0b56692fff-13b7ba890e794b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65859040000001,32.826091600000005]},"id":"8f44c0b1bcaca5b-13f7c8850fca18ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6585249,32.8258456]},"id":"8f44c0b1bcac955-13dfc8adf43894d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bcac955-13dfc8adf43894d2","8f44c0b1bcaca5b-13f7c8850fca18ae"]},"geometry":{"type":"LineString","coordinates":[[-83.65859040000001,32.826091600000005],[-83.6585872,32.826010700000005],[-83.65858,32.825949],[-83.6585561,32.8258908],[-83.6585249,32.8258456]]},"id":"8b44c0b1bcacfff-13b7c89044629c64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69271810000001,32.859057]},"id":"8f44c0a20c8c70a-13fef5333ec88784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692755,32.858434]},"id":"8f44c0a20caa504-13ff751c23e7413e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c8c70a-13fef5333ec88784","8f44c0a20caa504-13ff751c23e7413e"]},"geometry":{"type":"LineString","coordinates":[[-83.69271810000001,32.859057],[-83.69273600000001,32.858744],[-83.692755,32.858434]]},"id":"8944c0a20cbffff-13bff527ed3f7ea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324901,32.833018200000005]},"id":"8f44c0b0b8a98a2-13de7419b45be619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322968,32.833242600000005]},"id":"8f44c0b0b8a9784-17feb4928d455b30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8a9784-17feb4928d455b30","8f44c0b0b8a98a2-13de7419b45be619"]},"geometry":{"type":"LineString","coordinates":[[-83.7324901,32.833018200000005],[-83.73242,32.8330343],[-83.73237300000001,32.833061400000005],[-83.7323387,32.8330908],[-83.7323131,32.833132],[-83.73229590000001,32.8331752],[-83.7322924,32.833205500000005],[-83.7322968,32.833242600000005]]},"id":"8b44c0b0b8a9fff-1797d46b201c7635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66618100000001,32.85253]},"id":"8f44c0a35baec60-13fff5fce822ef65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66633800000001,32.852848]},"id":"8f44c0a35bae271-17d6b59ac169ebd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35bae271-17d6b59ac169ebd1","8f44c0a35baec60-13fff5fce822ef65"]},"geometry":{"type":"LineString","coordinates":[[-83.66618100000001,32.85253],[-83.666188,32.852631],[-83.666212,32.8527],[-83.666245,32.852762000000006],[-83.66633800000001,32.852848]]},"id":"8b44c0a35baefff-13fef5dcca433eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650113,32.8539]},"id":"8f44c0a3542a741-17d7dd3761c96df8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648657,32.852579]},"id":"8f44c0a35430746-139fe0c56a6d3dbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3542a741-17d7dd3761c96df8","8f44c0a35430746-139fe0c56a6d3dbc"]},"geometry":{"type":"LineString","coordinates":[[-83.650113,32.8539],[-83.650028,32.853581000000005],[-83.649966,32.853436],[-83.64989800000001,32.853308000000006],[-83.649839,32.853219],[-83.64973,32.853097000000005],[-83.649617,32.852978],[-83.6495,32.852885],[-83.64934000000001,32.85278],[-83.64917100000001,32.852696],[-83.649015,32.852646],[-83.648863,32.852606],[-83.648657,32.852579]]},"id":"8944c0a3543ffff-17d7de9e40498d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57051,32.871509]},"id":"8f44c0b8b8e9930-13d7bf8f4d73204c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5709149,32.8718992]},"id":"8f44c0b8bbb4955-13df9e9239332899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8e9930-13d7bf8f4d73204c","8f44c0b8bbb4955-13df9e9239332899"]},"geometry":{"type":"LineString","coordinates":[[-83.57051,32.871509],[-83.5709149,32.8718992]]},"id":"8844c0b8b9fffff-13df9f10c31da4c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76132100000001,32.807029]},"id":"8f44c0b0d8ab609-17fdedb66c32f33c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761784,32.80811]},"id":"8f44c0b0d8d4a6e-179dcc950c6a66b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d8ab609-17fdedb66c32f33c","8f44c0b0d8d4a6e-179dcc950c6a66b0"]},"geometry":{"type":"LineString","coordinates":[[-83.76132100000001,32.807029],[-83.761784,32.80811]]},"id":"8844c0b0d9fffff-17bffd25bde29ea2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763891,32.807288]},"id":"8f44c0b0d80b6d2-179fc7702b7e6ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d8ab609-17fdedb66c32f33c","8f44c0b0d80b6d2-179fc7702b7e6ff6"]},"geometry":{"type":"LineString","coordinates":[[-83.763891,32.807288],[-83.762966,32.80725],[-83.76132100000001,32.807029]]},"id":"8844c0b0d9fffff-17dffa94c97e52ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72550100000001,32.894152000000005]},"id":"8f44c0a2c51e245-139f2529eea0fd43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72553500000001,32.893514]},"id":"8f44c0a2c511142-179e6514a0eb3bcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c511142-179e6514a0eb3bcd","8f44c0a2c51e245-139f2529eea0fd43"]},"geometry":{"type":"LineString","coordinates":[[-83.72550100000001,32.894152000000005],[-83.72553500000001,32.893514]]},"id":"8944c0a2c53ffff-13d7a51f4d602356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62664500000001,32.865195]},"id":"8f44c0a30798652-13fff682ec2f61f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6273268,32.8655287]},"id":"8f44c0a306a4ca9-13bf74d8c1491bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306a4ca9-13bf74d8c1491bb6","8f44c0a30798652-13fff682ec2f61f9"]},"geometry":{"type":"LineString","coordinates":[[-83.62664500000001,32.865195],[-83.6273268,32.8655287]]},"id":"8944c0a307bffff-13d735add9147866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739486,32.875799]},"id":"8f44c0b52010172-17de63054e042c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7395,32.875963]},"id":"8f44c0b52010236-17b6e2fc826e33ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52010236-17b6e2fc826e33ae","8f44c0b52010172-17de63054e042c3e"]},"geometry":{"type":"LineString","coordinates":[[-83.739486,32.875799],[-83.7395,32.875963]]},"id":"8b44c0b52010fff-1797a300efd9c6cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707435,32.803652]},"id":"8f44c0b0e4c091b-17bed145212a3932"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71190200000001,32.80389]},"id":"8f44c0b0e44d909-17bf465d4bdf3bc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e4c091b-17bed145212a3932","8f44c0b0e44d909-17bf465d4bdf3bc0"]},"geometry":{"type":"LineString","coordinates":[[-83.707435,32.803652],[-83.70793400000001,32.803527],[-83.708083,32.803492],[-83.70824400000001,32.803471],[-83.708426,32.803494],[-83.708752,32.803589],[-83.708882,32.803606],[-83.70899200000001,32.803589],[-83.70909900000001,32.803548],[-83.70924500000001,32.80353],[-83.709394,32.803540000000005],[-83.70958300000001,32.803592],[-83.709694,32.803638],[-83.709829,32.803702],[-83.709939,32.803736],[-83.710097,32.803745],[-83.710254,32.803739],[-83.710392,32.803745],[-83.71053500000001,32.803767],[-83.710693,32.803815],[-83.71091700000001,32.803911],[-83.71102300000001,32.803935],[-83.711144,32.803947],[-83.71190200000001,32.80389]]},"id":"8844c0b0e5fffff-17d6fbd46b904de4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6566748,32.825724300000005]},"id":"8f44c0b1bcb1296-139ffd32424b3a0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6567533,32.826913600000005]},"id":"8f44c0b1bc83675-17f7cd013b8d757d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bcb1296-139ffd32424b3a0f","8f44c0b1bc83675-17f7cd013b8d757d"]},"geometry":{"type":"LineString","coordinates":[[-83.6566748,32.825724300000005],[-83.65649970000001,32.825691500000005],[-83.65633000000001,32.8256486],[-83.6561836,32.8255883],[-83.65607200000001,32.825527900000004],[-83.65595660000001,32.8254426],[-83.655878,32.825364],[-83.65581900000001,32.82529],[-83.655764,32.825204],[-83.655731,32.8250897],[-83.655732,32.824989],[-83.6557569,32.824891900000004],[-83.6558139,32.8247992],[-83.65590420000001,32.8247116],[-83.65600950000001,32.824653600000005],[-83.65613570000001,32.824616400000004],[-83.6562572,32.8246057],[-83.65639250000001,32.8246239],[-83.65651580000001,32.8246674],[-83.6566183,32.8247318],[-83.656698,32.8248017],[-83.6567699,32.8248802],[-83.6568331,32.824972200000005],[-83.65688,32.825053100000005],[-83.656914,32.8251416],[-83.65693320000001,32.8252322],[-83.6569406,32.825314],[-83.6569362,32.8254845],[-83.6569238,32.8256549],[-83.65689660000001,32.825924],[-83.6568345,32.8262876],[-83.6567792,32.826601700000005],[-83.6567622,32.8267576],[-83.6567533,32.826913600000005]]},"id":"8844c0b1bdfffff-13dffdb1ffa8e755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65811760000001,32.8257556]},"id":"8f44c0b1bca1322-13b7c9ac806cf344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6561803,32.8211615]},"id":"8f44c0b1aaea8c2-17fffe6754fff3c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bca1322-13b7c9ac806cf344","8f44c0b1aaea8c2-17fffe6754fff3c5"]},"geometry":{"type":"LineString","coordinates":[[-83.65811760000001,32.8257556],[-83.65801830000001,32.8257124],[-83.65793640000001,32.8256591],[-83.65787920000001,32.8256004],[-83.6578314,32.8255314],[-83.657804,32.825454],[-83.6575526,32.8244336],[-83.6574676,32.8241336],[-83.65738300000001,32.8238864],[-83.65723530000001,32.823508100000005],[-83.65713570000001,32.8232744],[-83.65687890000001,32.8227545],[-83.65666300000001,32.8222171],[-83.656433,32.821686500000006],[-83.65630800000001,32.821422600000005],[-83.6561803,32.8211615]]},"id":"8644c0b1fffffff-179eec05c32d707c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69991800000001,32.812123]},"id":"8f44c0b1d30dd06-13dee39f44aafa61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701057,32.812828]},"id":"8f44c0b1d371576-1397e0d761c70967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d371576-1397e0d761c70967","8f44c0b1d30dd06-13dee39f44aafa61"]},"geometry":{"type":"LineString","coordinates":[[-83.69991800000001,32.812123],[-83.70003600000001,32.812173],[-83.700602,32.812528],[-83.701057,32.812828]]},"id":"8844c0b1d3fffff-13be62376b8a9313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67769700000001,32.839624]},"id":"8f44c0a26d1aa22-13ff99df62fb99d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677636,32.840722]},"id":"8f44c0a26c31134-17bfda058773e9ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d1aa22-13ff99df62fb99d1","8f44c0a26c31134-17bfda058773e9ad"]},"geometry":{"type":"LineString","coordinates":[[-83.67769700000001,32.839624],[-83.677616,32.840047000000006],[-83.67759000000001,32.840238],[-83.67759000000001,32.840401],[-83.677603,32.840617],[-83.677636,32.840722]]},"id":"8844c0a26dfffff-17d6ba0e2663f5ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726107,32.906563000000006]},"id":"8f44c0a28d2634d-17ffe3af22a50dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72618,32.906373]},"id":"8f44c0a28d26b74-17f723818c105e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d2634d-17ffe3af22a50dc6","8f44c0a28d26b74-17f723818c105e7c"]},"geometry":{"type":"LineString","coordinates":[[-83.726107,32.906563000000006],[-83.726077,32.906576],[-83.726031,32.906585],[-83.725992,32.906582],[-83.725955,32.906567],[-83.72592900000001,32.906546],[-83.72591,32.906523],[-83.725902,32.906497],[-83.725903,32.906453],[-83.72591800000001,32.906422],[-83.72595100000001,32.906398],[-83.72599500000001,32.90638],[-83.72618,32.906373]]},"id":"8a44c0a28d27fff-17be23ef0b619939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590726,32.850692]},"id":"8f44c0b8d08a0e1-1797ee344a67d313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58896100000001,32.850535]},"id":"8f44c0b8d46988a-17b772836bbca44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d46988a-17b772836bbca44a","8f44c0b8d08a0e1-1797ee344a67d313"]},"geometry":{"type":"LineString","coordinates":[[-83.590726,32.850692],[-83.590705,32.850568],[-83.59063400000001,32.850546],[-83.590579,32.850541],[-83.589943,32.850544],[-83.58896100000001,32.850535]]},"id":"8744c0b8dffffff-17bf703c6de131cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745069,32.902949]},"id":"8f44c0a2dd9584c-1797f563ed2e29c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74515740000001,32.9021878]},"id":"8f44c0a2ddb0008-17bff52ca233ab01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dd9584c-1797f563ed2e29c0","8f44c0a2ddb0008-17bff52ca233ab01"]},"geometry":{"type":"LineString","coordinates":[[-83.745069,32.902949],[-83.74515740000001,32.9021878]]},"id":"8944c0a2ddbffff-17bdf54845e0badc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69960900000001,32.781028]},"id":"8f44c0b03136c18-17fee4606f3d36e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70203000000001,32.782307]},"id":"8f44c0b0312c726-139ffe774319a280"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0312c726-139ffe774319a280","8f44c0b03136c18-17fee4606f3d36e6"]},"geometry":{"type":"LineString","coordinates":[[-83.69960900000001,32.781028],[-83.69959,32.781554],[-83.69961400000001,32.781657],[-83.69968300000001,32.78175],[-83.699819,32.78182],[-83.70000900000001,32.781849],[-83.70165,32.781989],[-83.70178700000001,32.782029],[-83.701857,32.782091],[-83.701904,32.782144],[-83.70203000000001,32.782307]]},"id":"8844c0b031fffff-17dfe1f12cd733bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67143,32.829714]},"id":"8f44c0b1b858ad2-13dfe92c4593a859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67240500000001,32.826729]},"id":"8f44c0b1b959d13-1797a6cae7bf2347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b959d13-1797a6cae7bf2347","8f44c0b1b858ad2-13dfe92c4593a859"]},"geometry":{"type":"LineString","coordinates":[[-83.67143,32.829714],[-83.67144900000001,32.829647],[-83.67148900000001,32.829586],[-83.671791,32.829451],[-83.671825,32.829407],[-83.67183200000001,32.829354],[-83.671778,32.829197],[-83.67172500000001,32.829073],[-83.671693,32.828951],[-83.671678,32.828664],[-83.671705,32.827157],[-83.671712,32.827081],[-83.67174800000001,32.826988],[-83.671785,32.826939],[-83.67184200000001,32.826883],[-83.671885,32.826853],[-83.67200100000001,32.826808],[-83.67240500000001,32.826729]]},"id":"8844c0b1b9fffff-17fea85ce74483aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65994400000001,32.786605]},"id":"8f44c0b1e92b880-139ee53702a614f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66012900000001,32.786183]},"id":"8f44c0b1e928819-1396e4c36762f4ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e92b880-139ee53702a614f1","8f44c0b1e928819-1396e4c36762f4ec"]},"geometry":{"type":"LineString","coordinates":[[-83.65994400000001,32.786605],[-83.660059,32.786399],[-83.660098,32.786299],[-83.66012900000001,32.786183]]},"id":"8a44c0b1e92ffff-139fd4f5cf15ad78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764098,32.867989]},"id":"8f44c0b50111726-13bde6eec5bc87b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7641009,32.867642000000004]},"id":"8f44c0b50115694-13f5c6ecf99bba8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50111726-13bde6eec5bc87b0","8f44c0b50115694-13f5c6ecf99bba8b"]},"geometry":{"type":"LineString","coordinates":[[-83.764098,32.867989],[-83.7641009,32.867642000000004]]},"id":"8a44c0b50117fff-13d5f6ede7a44f18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672109,32.811286]},"id":"8f44c0b18152af4-17dfe783e2624898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673451,32.809942]},"id":"8f44c0b18175c9a-1397e43d2edb1303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18152af4-17dfe783e2624898","8f44c0b18175c9a-1397e43d2edb1303"]},"geometry":{"type":"LineString","coordinates":[[-83.672109,32.811286],[-83.67269800000001,32.811276],[-83.67278800000001,32.811268000000005],[-83.67285600000001,32.811255],[-83.67292,32.811234],[-83.672976,32.811203],[-83.673033,32.811162],[-83.67307600000001,32.811117],[-83.673111,32.811065],[-83.673156,32.810974],[-83.673252,32.810735],[-83.67329600000001,32.810561],[-83.673336,32.810378],[-83.673381,32.810119],[-83.673451,32.809942]]},"id":"8944c0b1817ffff-17d7e5623a4b77b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71459800000001,32.787937]},"id":"8f44c0b01682862-17debfc840d2374c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717471,32.788007]},"id":"8f44c0b01618c04-17fe78c4a2b4fa9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01682862-17debfc840d2374c","8f44c0b01618c04-17fe78c4a2b4fa9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71459800000001,32.787937],[-83.717471,32.788007]]},"id":"8844c0b017fffff-17f6bc4673668bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674881,32.87263]},"id":"8f44c0a220f1471-1797e0bf69fd4f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67433700000001,32.872208]},"id":"8f44c0a220f2976-139ea21369a771e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a220f1471-1797e0bf69fd4f44","8f44c0a220f2976-139ea21369a771e9"]},"geometry":{"type":"LineString","coordinates":[[-83.674881,32.87263],[-83.67465,32.872622],[-83.67433700000001,32.872208]]},"id":"8a44c0a220f7fff-17b6a17d3535752b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70934100000001,32.862335]},"id":"8f44c0a20b3161a-13ff6c9de4fdd826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096849,32.8614902]},"id":"8f44c0a2549b66c-13df6bc6fa0bddfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2549b66c-13df6bc6fa0bddfe","8f44c0a20b3161a-13ff6c9de4fdd826"]},"geometry":{"type":"LineString","coordinates":[[-83.70934100000001,32.862335],[-83.709326,32.862],[-83.709327,32.861925],[-83.70933500000001,32.861882],[-83.709359,32.861811],[-83.70939100000001,32.861748],[-83.70942000000001,32.861704],[-83.709484,32.861637],[-83.70954900000001,32.861581],[-83.7096849,32.8614902]]},"id":"8944c0a20b3ffff-13dedc7035f52180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603999,32.852469]},"id":"8f44c0b8daedcd3-13df6dcca8de813e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60307200000001,32.85369]},"id":"8f44c0b8dac8af2-17d7501006a41ad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac8af2-17d7501006a41ad8","8f44c0b8daedcd3-13df6dcca8de813e"]},"geometry":{"type":"LineString","coordinates":[[-83.603999,32.852469],[-83.604005,32.853292],[-83.604009,32.853738],[-83.603896,32.853741],[-83.603166,32.853733000000005],[-83.603091,32.853706],[-83.60307200000001,32.85369]]},"id":"8844c0b8dbfffff-179f6e46cc4d4bf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689632,32.793695]},"id":"8f44c0b1ca6c373-13df7cbc03b099eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689216,32.793663]},"id":"8f44c0b1ca6ea24-13d77dc00a097e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca6ea24-13d77dc00a097e20","8f44c0b1ca6c373-13df7cbc03b099eb"]},"geometry":{"type":"LineString","coordinates":[[-83.689632,32.793695],[-83.689216,32.793663]]},"id":"8a44c0b1ca6ffff-13d77d3e00eb4be3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76881900000001,32.8748]},"id":"8f44c0b50306d9c-13dfbb6823fa00fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7682573,32.874707300000004]},"id":"8f44c0b50314bb4-13b5bcc73dd114f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50306d9c-13dfbb6823fa00fd","8f44c0b50314bb4-13b5bcc73dd114f8"]},"geometry":{"type":"LineString","coordinates":[[-83.76881900000001,32.8748],[-83.7682573,32.874707300000004]]},"id":"8944c0b5033ffff-13d5bc17aca40417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698597,32.793094]},"id":"8f44c0b0374b132-13f7e6d8ed7a2ca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698048,32.793087]},"id":"8f44c0b03664d1d-13df6830017c4190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0374b132-13f7e6d8ed7a2ca0","8f44c0b03664d1d-13df6830017c4190"]},"geometry":{"type":"LineString","coordinates":[[-83.698597,32.793094],[-83.698048,32.793087]]},"id":"8944c0b0377ffff-13f7f7847fe74383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68584800000001,32.74873]},"id":"8f44c0b060a1648-1796c5f90276f86b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867055,32.748736]},"id":"8f44c0b06013014-179e83e11fdbce70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06013014-179e83e11fdbce70","8f44c0b060a1648-1796c5f90276f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.68584800000001,32.74873],[-83.6867055,32.748736]]},"id":"8844c0b061fffff-1796a4ed1f2dd000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697845,32.817586]},"id":"8f44c0b1d2ea5ab-17bf68aeef989211"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971257,32.8175716]},"id":"8f44c0b1d2c060e-17b66a7070983204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c060e-17b66a7070983204","8f44c0b1d2ea5ab-17bf68aeef989211"]},"geometry":{"type":"LineString","coordinates":[[-83.697845,32.817586],[-83.697726,32.8174931],[-83.6974946,32.8174786],[-83.6972485,32.8175303],[-83.6971257,32.8175716]]},"id":"8a44c0b1d2c7fff-17966989fc8a828b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653588,32.887135]},"id":"8f44c0a0692aa03-17fff4bb818964f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65352800000001,32.885102]},"id":"8f44c0a3128a0e1-1396d4e10aaa411d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0692aa03-17fff4bb818964f7","8f44c0a3128a0e1-1396d4e10aaa411d"]},"geometry":{"type":"LineString","coordinates":[[-83.653588,32.887135],[-83.65346000000001,32.88691],[-83.65330800000001,32.886586],[-83.653267,32.886432],[-83.653245,32.8863],[-83.653261,32.886173],[-83.65329600000001,32.886007],[-83.65337600000001,32.885789],[-83.653563,32.885413],[-83.653594,32.885309],[-83.65357900000001,32.885205],[-83.65352800000001,32.885102]]},"id":"8744c0a31ffffff-1797f52b26ace4ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658828,32.816592]},"id":"8f44c0b1ab7314e-13d6c7f08951a127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65884700000001,32.814371]},"id":"8f44c0b184d3d42-17d7e7e4a0d60a7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184d3d42-17d7e7e4a0d60a7c","8f44c0b1ab7314e-13d6c7f08951a127"]},"geometry":{"type":"LineString","coordinates":[[-83.658828,32.816592],[-83.658837,32.814845000000005],[-83.65884700000001,32.814371]]},"id":"8644c0b1fffffff-139ff7ec72c06dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.743378,32.890397]},"id":"8f44c0a2c94e468-17f7f984c6abc18c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.743976,32.890776]},"id":"8f44c0a2c94832c-13dff80f0f57c015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c94832c-13dff80f0f57c015","8f44c0a2c94e468-17f7f984c6abc18c"]},"geometry":{"type":"LineString","coordinates":[[-83.743378,32.890397],[-83.74386100000001,32.890676],[-83.743976,32.890776]]},"id":"8a44c0a2c94ffff-13f7f8c5bcc70dc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318795,32.7948953]},"id":"8f44c0b0c422644-17df95975287e1aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733185,32.794998]},"id":"8f44c0b0c552670-179fd2676ad75ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c552670-179fd2676ad75ce6","8f44c0b0c422644-17df95975287e1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7318795,32.7948953],[-83.733185,32.794998]]},"id":"8944c0b0c43ffff-17ffb3ff62a2c25f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70721,32.893811]},"id":"8f44c0a2ec2250d-13d7f1d1ca7388b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710778,32.892787000000006]},"id":"8f44c0a2ed6672b-17d7e91bc5eace4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec2250d-13d7f1d1ca7388b3","8f44c0a2ed6672b-17d7e91bc5eace4d"]},"geometry":{"type":"LineString","coordinates":[[-83.70721,32.893811],[-83.710441,32.893873],[-83.710559,32.893859],[-83.710645,32.893814],[-83.710707,32.893745],[-83.710749,32.893635],[-83.71075900000001,32.893515],[-83.710778,32.892787000000006]]},"id":"8844c0a2edfffff-139e5c914ae385f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377269,32.8209825]},"id":"8f44c0b1a4c9662-17fefb74b1f67457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63746400000001,32.821024]},"id":"8f44c0b1a4cbaca-1796fc190032d3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1a4c9662-17fefb74b1f67457","8f44c0b1a4cbaca-1796fc190032d3db"]},"geometry":{"type":"LineString","coordinates":[[-83.6377269,32.8209825],[-83.63764760000001,32.821024900000005],[-83.63754250000001,32.8210254],[-83.63746400000001,32.821024]]},"id":"8a44c0b1a4cffff-1796fbc4a26f4017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69794200000001,32.835408]},"id":"8f44c0a24d9bce8-13b6687243695072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69904600000001,32.83666]},"id":"8f44c0a24ca1640-17d6e5c04e3d0743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ca1640-17d6e5c04e3d0743","8f44c0a24d9bce8-13b6687243695072"]},"geometry":{"type":"LineString","coordinates":[[-83.69794200000001,32.835408],[-83.698338,32.835859],[-83.69835300000001,32.835877],[-83.698514,32.83605],[-83.69858,32.836123],[-83.698728,32.836301],[-83.69875300000001,32.836326],[-83.698822,32.836398],[-83.698909,32.836501000000005],[-83.69899500000001,32.83659],[-83.69904600000001,32.83666]]},"id":"8844c0a24dfffff-13bef7186fc6ef74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669195,32.827343]},"id":"8f44c0b1b81d708-1797eea121a7e2a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670744,32.827413]},"id":"8f44c0b1b80daf0-17bfaad90d4aee27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b81d708-1797eea121a7e2a2","8f44c0b1b80daf0-17bfaad90d4aee27"]},"geometry":{"type":"LineString","coordinates":[[-83.669195,32.827343],[-83.66950100000001,32.827348],[-83.670744,32.827413]]},"id":"8944c0b1b83ffff-1796acbcf22cb52e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54508,32.843443]},"id":"8f44c0b8e79d641-17dffda5092f3b00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.542973,32.841278]},"id":"8f44c0b8e4ca031-1397e2c9e1a736df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e79d641-17dffda5092f3b00","8f44c0b8e4ca031-1397e2c9e1a736df"]},"geometry":{"type":"LineString","coordinates":[[-83.54508,32.843443],[-83.544925,32.843204],[-83.544847,32.843064000000005],[-83.54466000000001,32.842768],[-83.544634,32.842705],[-83.544629,32.842672],[-83.544635,32.842606],[-83.544646,32.842579],[-83.544668,32.842548],[-83.544712,32.842457],[-83.54476700000001,32.842359],[-83.544776,32.842332],[-83.54477,32.842277],[-83.544759,32.842247],[-83.54469300000001,32.842154],[-83.54466500000001,32.842123],[-83.54457000000001,32.842033],[-83.54449100000001,32.841966],[-83.544472,32.841945],[-83.544399,32.841842],[-83.544307,32.841693],[-83.544262,32.841642],[-83.544238,32.841627],[-83.544177,32.841599],[-83.54403900000001,32.841566],[-83.543287,32.841371],[-83.542973,32.841278]]},"id":"8744c0b8effffff-1397df9a36d311f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640933,32.849373]},"id":"8f44c0a30904711-13def3a0e5051127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64156,32.849748000000005]},"id":"8f44c0a30905344-17b6f2190a5946f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30904711-13def3a0e5051127","8f44c0a30905344-17b6f2190a5946f3"]},"geometry":{"type":"LineString","coordinates":[[-83.640933,32.849373],[-83.641433,32.849663],[-83.64156,32.849748000000005]]},"id":"8a44c0a30907fff-17bff2dba7453c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651509,32.820827]},"id":"8f44c0b1a331cb4-179ef9ceebb8db9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649333,32.820822]},"id":"8f44c0b1a04a69c-1797df1eea24a5a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a04a69c-1797df1eea24a5a2","8f44c0b1a331cb4-179ef9ceebb8db9b"]},"geometry":{"type":"LineString","coordinates":[[-83.651509,32.820827],[-83.651365,32.820816],[-83.649333,32.820822]]},"id":"8744c0b1affffff-1796dc76cfe92080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6006758,32.859652100000005]},"id":"8f44c0b8d24ac08-17f7d5e9aae5c7bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60072100000001,32.8610715]},"id":"8f44c0a325a1781-13dff5cd6b050708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a325a1781-13dff5cd6b050708","8f44c0b8d24ac08-17f7d5e9aae5c7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6006758,32.859652100000005],[-83.6007026,32.8599413],[-83.60070180000001,32.8603789],[-83.6006974,32.8607262],[-83.60072100000001,32.8610715]]},"id":"8744c0a32ffffff-179f55da2515ed40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737544,32.915174]},"id":"8f44c0a28849bb2-17ffc7c30d72e278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737536,32.915999]},"id":"8f44c0a28b10462-17f767c80b2dad2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b10462-17f767c80b2dad2c","8f44c0a28849bb2-17ffc7c30d72e278"]},"geometry":{"type":"LineString","coordinates":[[-83.737544,32.915174],[-83.737536,32.915999]]},"id":"8944c0a28b3ffff-17f797c58a4133c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683763,32.746677000000005]},"id":"8f44c0b0656c382-1397ab10246fb07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68461500000001,32.748873]},"id":"8f44c0b06086a1e-17ffa8fbac673fe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06086a1e-17ffa8fbac673fe5","8f44c0b0656c382-1397ab10246fb07f"]},"geometry":{"type":"LineString","coordinates":[[-83.683763,32.746677000000005],[-83.68380300000001,32.74756],[-83.684612,32.748418],[-83.68461500000001,32.748873]]},"id":"8844c0b061fffff-13d6da299702704c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57781100000001,32.862814]},"id":"8f44c0b882600aa-179fcdbc2fb3faab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.576722,32.862715]},"id":"8f44c0b88270a18-17dff064c3fba9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882600aa-179fcdbc2fb3faab","8f44c0b88270a18-17dff064c3fba9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.57781100000001,32.862814],[-83.57768800000001,32.862733],[-83.57765900000001,32.862719000000006],[-83.577602,32.862704],[-83.57755900000001,32.862696],[-83.576874,32.862679],[-83.576825,32.862682],[-83.576722,32.862715]]},"id":"8944c0b8827ffff-17d78f0a2012d966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71061300000001,32.785628]},"id":"8f44c0b03b52022-13bfc982eeb9b1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71093,32.783616]},"id":"8f44c0b03b2aa01-13d648bcccd6416b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b2aa01-13d648bcccd6416b","8f44c0b03b52022-13bfc982eeb9b1e3"]},"geometry":{"type":"LineString","coordinates":[[-83.71061300000001,32.785628],[-83.710628,32.785335],[-83.710655,32.784098],[-83.710683,32.783934],[-83.710778,32.783793],[-83.71093,32.783616]]},"id":"8844c0b03bfffff-179ec95e4fe899d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694688,32.904829]},"id":"8f44c0a05ba6782-13be7064072540a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694649,32.905351]},"id":"8f44c0a05ba2650-17f6707c6aee06bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05ba2650-17f6707c6aee06bc","8f44c0a05ba6782-13be7064072540a3"]},"geometry":{"type":"LineString","coordinates":[[-83.694688,32.904829],[-83.694649,32.905351]]},"id":"8a44c0a05ba7fff-13d770703840ad1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72324400000001,32.90776]},"id":"8f44c0a28da1181-13d62aac846ad7d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72306040000001,32.9084784]},"id":"8f44c0a28daa992-17972b1f45e4c2c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28daa992-17972b1f45e4c2c1","8f44c0a28da1181-13d62aac846ad7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.72324400000001,32.90776],[-83.723202,32.907867],[-83.72313100000001,32.908005],[-83.723084,32.90811],[-83.723067,32.908209],[-83.723061,32.908354],[-83.72306040000001,32.9084784]]},"id":"8944c0a28dbffff-13b77afbf8c84ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687078,32.845287]},"id":"8f44c0a268ee7ab-13d6e2f84aad0a68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68703500000001,32.847023]},"id":"8f44c0a26b96d2e-179fe31323968761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b96d2e-179fe31323968761","8f44c0a268ee7ab-13d6e2f84aad0a68"]},"geometry":{"type":"LineString","coordinates":[[-83.687078,32.845287],[-83.687048,32.845439],[-83.68705,32.845867000000005],[-83.68703500000001,32.847023]]},"id":"8844c0a269fffff-13fe930c5529f488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66597800000001,32.862954]},"id":"8f44c0a35264621-17f6f67bc5fe9e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665802,32.86428]},"id":"8f44c0a35245228-13bfb6e9ce6e6b6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35245228-13bfb6e9ce6e6b6d","8f44c0a35264621-17f6f67bc5fe9e4e"]},"geometry":{"type":"LineString","coordinates":[[-83.66597800000001,32.862954],[-83.665963,32.863428],[-83.665951,32.863611],[-83.665925,32.863771],[-83.665802,32.86428]]},"id":"8944c0a3527ffff-1797f69e26a4389d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62862000000001,32.810878]},"id":"8f44c0bad66934b-17dfd1b0853caf50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6322504,32.8108035]},"id":"8f44c0bad2f0aec-17b738d3881ee8cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad2f0aec-17b738d3881ee8cc","8f44c0bad66934b-17dfd1b0853caf50"]},"geometry":{"type":"LineString","coordinates":[[-83.62862000000001,32.810878],[-83.630604,32.810831],[-83.6322504,32.8108035]]},"id":"8744c0badffffff-17b78d421c9c33d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672404,32.826565]},"id":"8f44c0b1b95d4de-179fa6cb8a22cc15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67339000000001,32.826554]},"id":"8f44c0b1b948c22-1796e4634881855c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b948c22-1796e4634881855c","8f44c0b1b95d4de-179fa6cb8a22cc15"]},"geometry":{"type":"LineString","coordinates":[[-83.672404,32.826565],[-83.67339000000001,32.826554]]},"id":"8944c0b1b97ffff-1797b59767fb2979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769068,32.803708]},"id":"8f44c0b7659466c-17ddbacc825d573f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769103,32.803908]},"id":"8f44c0b76590bb5-17dfbab6a257e560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b76590bb5-17dfbab6a257e560","8f44c0b7659466c-17ddbacc825d573f"]},"geometry":{"type":"LineString","coordinates":[[-83.769068,32.803708],[-83.76907,32.803765],[-83.769103,32.803908]]},"id":"8a44c0b76597fff-179dfac40b6d7a69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769204,32.803862]},"id":"8f44c0b76595481-17bdfa7786ad2d1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b76595481-17bdfa7786ad2d1b","8f44c0b7659466c-17ddbacc825d573f"]},"geometry":{"type":"LineString","coordinates":[[-83.769204,32.803862],[-83.769129,32.803761],[-83.769087,32.803719],[-83.769068,32.803708]]},"id":"8a44c0b76597fff-17fffa9f5b9d2d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6922617,32.8009246]},"id":"8f44c0b1dc44c19-1797f65070434139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6961198,32.800470600000004]},"id":"8f44c0b1d88598a-17f66ce5262d32d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc44c19-1797f65070434139","8f44c0b1d88598a-17f66ce5262d32d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6922617,32.8009246],[-83.69243060000001,32.8007718],[-83.6925551,32.800671200000004],[-83.69267690000001,32.8006027],[-83.69287,32.800554000000005],[-83.69390960000001,32.8006004],[-83.69482160000001,32.8005968],[-83.6954331,32.800569800000005],[-83.6959052,32.8005517],[-83.6961198,32.800470600000004]]},"id":"8744c0b1dffffff-17b771b6c75d8104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64091400000001,32.843646]},"id":"8f44c0a34392168-17def3accff92a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6415403,32.8438479]},"id":"8f44c0a34391540-17def2255b1fc651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34392168-17def3accff92a44","8f44c0a34391540-17def2255b1fc651"]},"geometry":{"type":"LineString","coordinates":[[-83.64091400000001,32.843646],[-83.6415403,32.8438479]]},"id":"8a44c0a34397fff-179ff2e905b29522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707401,32.88626]},"id":"8f44c0a23b6ead0-17ded15a69261ffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70598100000001,32.886488]},"id":"8f44c0a23b42a36-17f754d1e79dadc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23b6ead0-17ded15a69261ffb","8f44c0a23b42a36-17f754d1e79dadc4"]},"geometry":{"type":"LineString","coordinates":[[-83.707401,32.88626],[-83.706511,32.886237],[-83.70638500000001,32.886234],[-83.706293,32.886235],[-83.70622,32.886249],[-83.70614400000001,32.886284],[-83.70598100000001,32.886488]]},"id":"8944c0a23b7ffff-17df53313717d598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65754100000001,32.871178]},"id":"8f44c0a318e3ba2-1396cb14e64427d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659643,32.873859]},"id":"8f44c0a31b8552e-1797e5f32a437739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b8552e-1797e5f32a437739","8f44c0a318e3ba2-1396cb14e64427d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65754100000001,32.871178],[-83.65765800000001,32.871203],[-83.657914,32.871371],[-83.65818200000001,32.871578],[-83.65853600000001,32.871904],[-83.658961,32.872331],[-83.65942000000001,32.872808],[-83.659492,32.872909],[-83.65952300000001,32.873049],[-83.659591,32.873589],[-83.659643,32.873859]]},"id":"8744c0a31ffffff-13f6c7ec256e11e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73846900000001,32.907978]},"id":"8f44c0a2c2c1c50-13de4580e699175f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739796,32.908023]},"id":"8f44c0a2c2e9d56-13fe624383fe7230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c2c1c50-13de4580e699175f","8f44c0a2c2e9d56-13fe624383fe7230"]},"geometry":{"type":"LineString","coordinates":[[-83.73846900000001,32.907978],[-83.739796,32.908023]]},"id":"8944c0a2c2fffff-13fe53e234457a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739548,32.905274]},"id":"8f44c0a2c201269-17d642de8525712d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c2c1c50-13de4580e699175f","8f44c0a2c201269-17d642de8525712d"]},"geometry":{"type":"LineString","coordinates":[[-83.739548,32.905274],[-83.739199,32.905627],[-83.73884500000001,32.905974],[-83.738746,32.906093000000006],[-83.73865500000001,32.906238],[-83.738584,32.906377],[-83.73855,32.906534],[-83.738527,32.906861],[-83.73849,32.907682],[-83.73846900000001,32.907978]]},"id":"8844c0a2c3fffff-17de84c825415e35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64962700000001,32.741117]},"id":"8f44c0b1404a464-13fefe6722593be3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64962270000001,32.7414889]},"id":"8f44c0b143a4111-17f6de69dd78401d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1404a464-13fefe6722593be3","8f44c0b143a4111-17f6de69dd78401d"]},"geometry":{"type":"LineString","coordinates":[[-83.64962700000001,32.741117],[-83.649623,32.74123],[-83.64962270000001,32.7414889]]},"id":"8944c0b1407ffff-13f6de6952f60056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652433,32.819975]},"id":"8f44c0b1aa9912b-1796f78d647d5b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65243600000001,32.818104000000005]},"id":"8f44c0b1aab162e-17f7d78b815c3bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aab162e-17f7d78b815c3bfc","8f44c0b1aa9912b-1796f78d647d5b43"]},"geometry":{"type":"LineString","coordinates":[[-83.652433,32.819975],[-83.652445,32.819879],[-83.65243600000001,32.818104000000005]]},"id":"8944c0b1aabffff-13bff788cdb87df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70879000000001,32.785598]},"id":"8f44c0b03a311ad-1396cdf645394fd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70886700000001,32.782556]},"id":"8f44c0b03b32213-13bfcdc6236e946b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b32213-13bfcdc6236e946b","8f44c0b03a311ad-1396cdf645394fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.70879000000001,32.785598],[-83.708805,32.785305],[-83.70886200000001,32.783107],[-83.70886700000001,32.782556]]},"id":"8844c0b03bfffff-17f64dd9c77380fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75484900000001,32.885227]},"id":"8f44c0b53c089a0-13d7fd836b902290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75253000000001,32.885191500000005]},"id":"8f44c0b53cad71d-13bdf32cc0a1ba72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53cad71d-13bdf32cc0a1ba72","8f44c0b53c089a0-13d7fd836b902290"]},"geometry":{"type":"LineString","coordinates":[[-83.75484900000001,32.885227],[-83.75253000000001,32.885191500000005]]},"id":"8844c0b53dfffff-13d7f058120529bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71566100000001,32.863413]},"id":"8f44c0a257a2d93-17973d2fe1824909"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151808,32.8638242]},"id":"8f44c0a257b179d-17963e5c009ecd87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a257a2d93-17973d2fe1824909","8f44c0a257b179d-17963e5c009ecd87"]},"geometry":{"type":"LineString","coordinates":[[-83.71566100000001,32.863413],[-83.7151808,32.8638242]]},"id":"8944c0a257bffff-1797bdc5f018f0a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63316800000001,32.856569]},"id":"8f44c0a301a38a5-17dfa696062a234d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631544,32.857034]},"id":"8f44c0a30195466-17ff4a8d01d9bcc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30195466-17ff4a8d01d9bcc8","8f44c0a301a38a5-17dfa696062a234d"]},"geometry":{"type":"LineString","coordinates":[[-83.63316800000001,32.856569],[-83.63292100000001,32.856527],[-83.632602,32.856533],[-83.63238600000001,32.856599],[-83.63216200000001,32.85672],[-83.63185440000001,32.8569517],[-83.63183620000001,32.856956600000004],[-83.63170120000001,32.8570185],[-83.631544,32.857034]]},"id":"8944c0a301bffff-17b7189dc657508e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729652,32.791812]},"id":"8f44c0b0c5a6903-17d69b0785b89bbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727331,32.791514]},"id":"8f44c0b012ccc2d-179e60b22e5ddca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c5a6903-17d69b0785b89bbe","8f44c0b012ccc2d-179e60b22e5ddca9"]},"geometry":{"type":"LineString","coordinates":[[-83.729652,32.791812],[-83.72926500000001,32.791646],[-83.72910300000001,32.791582000000005],[-83.728966,32.791552],[-83.728772,32.791537000000005],[-83.727331,32.791514]]},"id":"8644c0b0fffffff-17bebdd164b4fc68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73374600000001,32.823051]},"id":"8f44c0b0876350b-1396f108c4a6e44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731014,32.822991800000004]},"id":"8f44c0b08624a2d-13f7f7b44e69e4f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08624a2d-13f7f7b44e69e4f4","8f44c0b0876350b-1396f108c4a6e44a"]},"geometry":{"type":"LineString","coordinates":[[-83.73374600000001,32.823051],[-83.73358400000001,32.82302],[-83.733395,32.823011],[-83.732093,32.822975],[-83.73114100000001,32.822961],[-83.731014,32.822991800000004]]},"id":"8844c0b087fffff-13df545ea4d53975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766851,32.896669]},"id":"8f44c0b53ace6a3-17d7e036211da533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76691500000001,32.890819]},"id":"8f44c0b53ba9858-13fde00e27bd4046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53ba9858-13fde00e27bd4046","8f44c0b53ace6a3-17d7e036211da533"]},"geometry":{"type":"LineString","coordinates":[[-83.766851,32.896669],[-83.766947,32.896358],[-83.767055,32.895975],[-83.76721400000001,32.895688],[-83.76734400000001,32.895511],[-83.767542,32.895136],[-83.767565,32.895021],[-83.767566,32.894886],[-83.76752900000001,32.894658],[-83.76747300000001,32.894458],[-83.766772,32.893265],[-83.76660000000001,32.892947],[-83.766495,32.892767],[-83.766435,32.892634],[-83.76637500000001,32.892468],[-83.76635300000001,32.892283],[-83.766362,32.89206],[-83.766416,32.891869],[-83.766492,32.891666],[-83.76691500000001,32.890819]]},"id":"8844c0b53bfffff-139dfffd14ce13b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561599,32.843691]},"id":"8f44c0b8e3650aa-17fff550a802bd19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561496,32.844037]},"id":"8f44c0b8e3611a5-17d7b5910c04e4c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e3650aa-17fff550a802bd19","8f44c0b8e3611a5-17d7b5910c04e4c1"]},"geometry":{"type":"LineString","coordinates":[[-83.561599,32.843691],[-83.56157900000001,32.843805],[-83.561496,32.844037]]},"id":"8a44c0b8e367fff-17dfb56cca0e33dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630064,32.85772]},"id":"8f44c0a3056e184-13bf0e2a018d94ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30195466-17ff4a8d01d9bcc8","8f44c0a3056e184-13bf0e2a018d94ed"]},"geometry":{"type":"LineString","coordinates":[[-83.631544,32.857034],[-83.631251,32.857146],[-83.630955,32.857286],[-83.630419,32.857512],[-83.630064,32.85772]]},"id":"8744c0a30ffffff-17df9c6160048901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762894,32.815165]},"id":"8f44c0b0d069ac5-13d7e9df415c1620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7627284,32.8143649]},"id":"8f44c0b0d06ca64-17d7da46c4c997e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d069ac5-13d7e9df415c1620","8f44c0b0d06ca64-17d7da46c4c997e1"]},"geometry":{"type":"LineString","coordinates":[[-83.762894,32.815165],[-83.762866,32.81503],[-83.762781,32.814552],[-83.7627284,32.8143649]]},"id":"8a44c0b0d06ffff-17dfca0f9f4215bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65708500000001,32.832682000000005]},"id":"8f44c0b1b42994a-139ecc31e5306cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657042,32.830686]},"id":"8f44c0b1b509106-17becc4ccd791190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b42994a-139ecc31e5306cbe","8f44c0b1b509106-17becc4ccd791190"]},"geometry":{"type":"LineString","coordinates":[[-83.65708500000001,32.832682000000005],[-83.657042,32.830686]]},"id":"8844c0b1b5fffff-139ecc3f53c25cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68795080000001,32.816091300000004]},"id":"8f44c0b1d6c4522-139f90d6cffeb9cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68796300000001,32.816038]},"id":"8f44c0b1d6c4c84-13f7c0cf23be4341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d6c4c84-13f7c0cf23be4341","8f44c0b1d6c4522-139f90d6cffeb9cc"]},"geometry":{"type":"LineString","coordinates":[[-83.68795080000001,32.816091300000004],[-83.68796300000001,32.816038]]},"id":"8b44c0b1d6c4fff-13fee0d2f110faf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73332400000001,32.863128]},"id":"8f44c0a25a52a5b-17df121083b2de7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733241,32.862344]},"id":"8f44c0a25a096e4-13f71244688d5060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25a096e4-13f71244688d5060","8f44c0a25a52a5b-17df121083b2de7d"]},"geometry":{"type":"LineString","coordinates":[[-83.73332400000001,32.863128],[-83.733299,32.863034],[-83.73325600000001,32.862434],[-83.733241,32.862344]]},"id":"8944c0a25a7ffff-17fe922d157d4833"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59100600000001,32.867666]},"id":"8f44c0b89174a9c-13f76d854eece89d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58708100000001,32.868094]},"id":"8f44c0b891a9732-13fff71a6c2fa40a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89174a9c-13f76d854eece89d","8f44c0b891a9732-13fff71a6c2fa40a"]},"geometry":{"type":"LineString","coordinates":[[-83.59100600000001,32.867666],[-83.59038600000001,32.867517],[-83.59018300000001,32.867483],[-83.59001400000001,32.867489],[-83.58988500000001,32.867505],[-83.588132,32.86788],[-83.58708100000001,32.868094]]},"id":"8844c0b891fffff-139f724fadedb4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682873,32.864237]},"id":"8f44c0a22876929-1396ad3c6a3a98b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683564,32.867635]},"id":"8f44c0a22ba46e4-13dfeb8c8d5e0c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22876929-1396ad3c6a3a98b3","8f44c0a22ba46e4-13dfeb8c8d5e0c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.682873,32.864237],[-83.682648,32.864306],[-83.68252700000001,32.864351],[-83.68240300000001,32.864404],[-83.682257,32.864506],[-83.68212700000001,32.864638],[-83.68204800000001,32.864756],[-83.682018,32.864829],[-83.682012,32.864855],[-83.682001,32.864904],[-83.682,32.865004],[-83.68203600000001,32.865143],[-83.68211000000001,32.865267],[-83.682439,32.865662],[-83.68251000000001,32.865772],[-83.68253700000001,32.865831],[-83.68255900000001,32.865961],[-83.68255900000001,32.866014],[-83.682529,32.866137],[-83.68212100000001,32.867117],[-83.682112,32.867173],[-83.682114,32.867227],[-83.68213200000001,32.867289],[-83.682156,32.867339],[-83.68218200000001,32.867379],[-83.68220000000001,32.86741],[-83.68222800000001,32.867444],[-83.682292,32.867497],[-83.682389,32.867559],[-83.68244800000001,32.867584],[-83.682502,32.867601],[-83.68263400000001,32.867624],[-83.683564,32.867635]]},"id":"8744c0a22ffffff-17deae3fe367d56e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63365610000001,32.8433706]},"id":"8f44c0a347816e5-17b7a564f8649436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6331701,32.8439896]},"id":"8f44c0a34799909-17b78694ba989ffe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34799909-17b78694ba989ffe","8f44c0a347816e5-17b7a564f8649436"]},"geometry":{"type":"LineString","coordinates":[[-83.63365610000001,32.8433706],[-83.6331701,32.8439896]]},"id":"8944c0a347bffff-17f715fcddb27768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640444,32.824208]},"id":"8f44c0b1a6138d6-17def4d28d70607b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64129600000001,32.823150000000005]},"id":"8f44c0b1a633962-13d6f2be0c07f852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a633962-13d6f2be0c07f852","8f44c0b1a6138d6-17def4d28d70607b"]},"geometry":{"type":"LineString","coordinates":[[-83.640444,32.824208],[-83.64129600000001,32.823150000000005]]},"id":"8944c0b1a63ffff-179ff3c84c94e40e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72878700000001,32.795707]},"id":"8f44c0b0c4a352c-13d6fd24290ff839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728335,32.795242]},"id":"8f44c0b0c4b532b-17b65e3eae1836c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4a352c-13d6fd24290ff839","8f44c0b0c4b532b-17b65e3eae1836c3"]},"geometry":{"type":"LineString","coordinates":[[-83.72878700000001,32.795707],[-83.728335,32.795242]]},"id":"8944c0b0c4bffff-13b79db16b5ee3af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697179,32.888091]},"id":"8f44c0a23061634-13d6ea4f26ddd9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698446,32.887687]},"id":"8f44c0a23a90b34-13d6673749b075c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a23061634-13d6ea4f26ddd9fc","8f44c0a23a90b34-13d6673749b075c2"]},"geometry":{"type":"LineString","coordinates":[[-83.697179,32.888091],[-83.697534,32.887962],[-83.698175,32.887692],[-83.698446,32.887687]]},"id":"8744c0a23ffffff-13bff8c6fae47820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558807,32.868143]},"id":"8f44c0b8bcad102-139ffc21aa677c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559469,32.868333]},"id":"8f44c0b8bc18504-1397ba83e02565ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bcad102-139ffc21aa677c25","8f44c0b8bc18504-1397ba83e02565ee"]},"geometry":{"type":"LineString","coordinates":[[-83.558807,32.868143],[-83.55923100000001,32.868223],[-83.559469,32.868333]]},"id":"8944c0b8bc3ffff-13dffb4ef972cae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628118,32.837656]},"id":"8f44c0a344b176e-17bf12ea46f5b13a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62889580000001,32.8374406]},"id":"8f44c0a344a2b68-17bf710425ecab1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a344a2b68-17bf710425ecab1c","8f44c0a344b176e-17bf12ea46f5b13a"]},"geometry":{"type":"LineString","coordinates":[[-83.628118,32.837656],[-83.62889580000001,32.8374406]]},"id":"8944c0a344bffff-17ffb1f730a8c862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7512677,32.755266500000005]},"id":"8f44c0b2e0f4db2-179df641b2de6f1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7512279,32.754325300000005]},"id":"8f44c0b2e01309c-13bdf65a99e547bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e0f4db2-179df641b2de6f1c","8f44c0b2e01309c-13bdf65a99e547bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7512677,32.755266500000005],[-83.7513062,32.754444400000004],[-83.7512279,32.754325300000005]]},"id":"8844c0b2e1fffff-17dde63789d62c13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69651300000001,32.88917]},"id":"8f44c0a2304e9a6-17f76bef639e3006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694349,32.889721]},"id":"8f44c0a230e9506-17dff137e1b01489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2304e9a6-17f76bef639e3006","8f44c0a230e9506-17dff137e1b01489"]},"geometry":{"type":"LineString","coordinates":[[-83.69651300000001,32.88917],[-83.69638400000001,32.889163],[-83.696157,32.889164],[-83.696025,32.889173],[-83.695825,32.889221],[-83.694691,32.889601],[-83.694349,32.889721]]},"id":"8844c0a231fffff-17f7fe9ae60af04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693932,32.787445000000005]},"id":"8f44c0b0346a76b-179f723c82e1a017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69539300000001,32.790343]},"id":"8f44c0b0371d395-13be6eab6074bd1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0371d395-13be6eab6074bd1d","8f44c0b0346a76b-179f723c82e1a017"]},"geometry":{"type":"LineString","coordinates":[[-83.693932,32.787445000000005],[-83.693709,32.787537],[-83.693404,32.787644],[-83.69324,32.787711],[-83.69319700000001,32.787737],[-83.693129,32.787791],[-83.693101,32.787824],[-83.69308600000001,32.787858],[-83.693072,32.787931],[-83.69307500000001,32.787999],[-83.693087,32.788037],[-83.69310700000001,32.788075],[-83.69313500000001,32.788114],[-83.69351900000001,32.788476],[-83.69363700000001,32.788581],[-83.693791,32.788746],[-83.69383400000001,32.788809],[-83.693871,32.788894],[-83.69390800000001,32.789037],[-83.693911,32.789169],[-83.69393000000001,32.789243],[-83.693966,32.789308000000005],[-83.69399200000001,32.789336],[-83.69403100000001,32.789364],[-83.694068,32.789386],[-83.69413700000001,32.789413],[-83.69418200000001,32.789423],[-83.694241,32.789428],[-83.69509000000001,32.78944],[-83.695142,32.789445],[-83.695188,32.789456],[-83.695262,32.789485],[-83.69529100000001,32.789503],[-83.695344,32.789548],[-83.69537700000001,32.789594],[-83.6954,32.789641],[-83.69540900000001,32.789682],[-83.69541100000001,32.789808],[-83.69539300000001,32.790343]]},"id":"8744c0b03ffffff-139f71afdf06b0a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67727710000001,32.8909788]},"id":"8f44c0a04b8e266-13dfdae5dd8b6a39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677997,32.890921]},"id":"8f44c0a04b8d899-13bfb923e74a5885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b8e266-13dfdae5dd8b6a39","8f44c0a04b8d899-13bfb923e74a5885"]},"geometry":{"type":"LineString","coordinates":[[-83.67727710000001,32.8909788],[-83.6774364,32.8909406],[-83.67754140000001,32.8909216],[-83.67764480000001,32.8909175],[-83.677997,32.890921]]},"id":"8a44c0a04b8ffff-13bffa0625c5994e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648853,32.838081]},"id":"8f44c0a34b8d25a-13bee04aee34f1c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64954300000001,32.838465]},"id":"8f44c0a34a338d9-13befe9bab64518d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a338d9-13befe9bab64518d","8f44c0a34b8d25a-13bee04aee34f1c2"]},"geometry":{"type":"LineString","coordinates":[[-83.648853,32.838081],[-83.64893500000001,32.838123],[-83.64938000000001,32.838377],[-83.64954300000001,32.838465]]},"id":"8844c0a34bfffff-13b6df733b8635bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461601,32.836290500000004]},"id":"8f44c0a34b96943-13dff6ddfd42b974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646991,32.836759]},"id":"8f44c0a34b95ad8-17fee4d6a6f9e256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b96943-13dff6ddfd42b974","8f44c0a34b95ad8-17fee4d6a6f9e256"]},"geometry":{"type":"LineString","coordinates":[[-83.6461601,32.836290500000004],[-83.646991,32.836759]]},"id":"8a44c0a34b97fff-17fee5da5da2b498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731105,32.8796205]},"id":"8f44c0b524cb1a6-17b6d77b6d16832e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7292137,32.8815456]},"id":"8f44c0a21b5cd66-13d61c1971c3f15a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21b5cd66-13d61c1971c3f15a","8f44c0b524cb1a6-17b6d77b6d16832e"]},"geometry":{"type":"LineString","coordinates":[[-83.731105,32.8796205],[-83.73111300000001,32.879787],[-83.73112,32.879942],[-83.731108,32.880015],[-83.731082,32.88008],[-83.731043,32.88015],[-83.731007,32.880201],[-83.73097700000001,32.880234],[-83.730885,32.880297],[-83.73005,32.880782],[-83.729882,32.880899],[-83.729746,32.881008],[-83.729274,32.881422],[-83.7292137,32.8815456]]},"id":"8644c0a27ffffff-139f197ce43e1c03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67375200000001,32.860899]},"id":"8f44c0a22d0d6ee-17ffe38109f923f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674487,32.861886000000005]},"id":"8f44c0a22d55384-13d6e1b5a3ebeeb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d0d6ee-17ffe38109f923f6","8f44c0a22d55384-13d6e1b5a3ebeeb5"]},"geometry":{"type":"LineString","coordinates":[[-83.67375200000001,32.860899],[-83.67372,32.861372],[-83.673715,32.861561],[-83.67371800000001,32.861994],[-83.673732,32.862143],[-83.673754,32.862186],[-83.673833,32.862229],[-83.673918,32.862239],[-83.674389,32.862253],[-83.674469,32.862242],[-83.674476,32.862198],[-83.674486,32.861949],[-83.674487,32.861886000000005]]},"id":"8844c0a22dfffff-13b7b301c33954a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671355,32.886639]},"id":"8f44c0a04899c83-17d7e95b2f29cf89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670795,32.886958]},"id":"8f44c0a04134b70-179eeab92de212fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04134b70-179eeab92de212fb","8f44c0a04899c83-17d7e95b2f29cf89"]},"geometry":{"type":"LineString","coordinates":[[-83.671355,32.886639],[-83.670795,32.886958]]},"id":"8744c0a04ffffff-17bfba0a2e4aa9fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76753500000001,32.753996]},"id":"8f44c0b2c79e700-13ffbe8aabe3986f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76683960000001,32.7545364]},"id":"8f44c0b2eb697b2-17d5c03d4b2d6f34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c79e700-13ffbe8aabe3986f","8f44c0b2eb697b2-17d5c03d4b2d6f34"]},"geometry":{"type":"LineString","coordinates":[[-83.76753500000001,32.753996],[-83.76729200000001,32.754179],[-83.76683960000001,32.7545364]]},"id":"8844c0b2c7fffff-1397ff64df05d08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7248795,32.8676078]},"id":"8f44c0a252a1424-13dee6ae50f4aace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72754,32.867089]},"id":"8f44c0a25204160-179ea02f8a3cc8e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25204160-179ea02f8a3cc8e2","8f44c0a252a1424-13dee6ae50f4aace"]},"geometry":{"type":"LineString","coordinates":[[-83.7248795,32.8676078],[-83.72524,32.867534],[-83.72588,32.867401],[-83.727444,32.867086],[-83.72754,32.867089]]},"id":"8844c0a253fffff-17b7636fa9c9b5dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619375,32.856792]},"id":"8f44c0a3294651e-17f72842a7ded0fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3295d494-13ff6831c22569b6","8f44c0a3294651e-17f72842a7ded0fb"]},"geometry":{"type":"LineString","coordinates":[[-83.619375,32.856792],[-83.619394,32.857289],[-83.619403,32.857678],[-83.61940200000001,32.858034]]},"id":"8944c0a3297ffff-17ff3836c63c0169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651002,32.857138]},"id":"8f44c0a3545b88a-17bfdb0bc9d2bf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65156,32.857143]},"id":"8f44c0a35459ab1-17d6f9af00388990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35459ab1-17d6f9af00388990","8f44c0a3545b88a-17bfdb0bc9d2bf11"]},"geometry":{"type":"LineString","coordinates":[[-83.651002,32.857138],[-83.65156,32.857143]]},"id":"8a44c0a3545ffff-17d6da5d6a3eb834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679034,32.873585]},"id":"8f44c0a22048c93-17f6b69bc0549001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67834900000001,32.873848]},"id":"8f44c0a220598c5-179f9847e204cce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22048c93-17f6b69bc0549001","8f44c0a220598c5-179f9847e204cce5"]},"geometry":{"type":"LineString","coordinates":[[-83.679034,32.873585],[-83.67834900000001,32.873848]]},"id":"8944c0a2207ffff-17bed771d3890eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67484900000001,32.866072]},"id":"8f44c0a22c4851b-179fa0d36180dd39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674053,32.86665]},"id":"8f44c0a221a6819-17fee2c4efdf811a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c4851b-179fa0d36180dd39","8f44c0a221a6819-17fee2c4efdf811a"]},"geometry":{"type":"LineString","coordinates":[[-83.67484900000001,32.866072],[-83.67484900000001,32.866746],[-83.67430200000001,32.866656],[-83.674053,32.86665]]},"id":"8744c0a22ffffff-17bff15a40f3c023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657511,32.855609]},"id":"8f44c0a3501bc95-1397eb27a868ddbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659102,32.855272]},"id":"8f44c0a35008d40-13b7c74548f8b108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3501bc95-1397eb27a868ddbb","8f44c0a35008d40-13b7c74548f8b108"]},"geometry":{"type":"LineString","coordinates":[[-83.657511,32.855609],[-83.65811000000001,32.855618],[-83.65827,32.855607],[-83.658315,32.855596000000006],[-83.659102,32.855272]]},"id":"8944c0a3503ffff-13ded92cc5c29fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66232690000001,32.746277]},"id":"8f44c0b15c29928-1397bf65b8b05efa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663987,32.746329]},"id":"8f44c0b15d4ad4d-13b7bb5826c20fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15d4ad4d-13b7bb5826c20fa9","8f44c0b15c29928-1397bf65b8b05efa"]},"geometry":{"type":"LineString","coordinates":[[-83.66232690000001,32.746277],[-83.663987,32.746329]]},"id":"8844c0b15dfffff-13b7fd5ef07ae105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698893,32.859129]},"id":"8f44c0a20c61528-139fe61fe1c83141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699916,32.860919]},"id":"8f44c0a20130885-17fe63a08c1c0c6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c61528-139fe61fe1c83141","8f44c0a20130885-17fe63a08c1c0c6e"]},"geometry":{"type":"LineString","coordinates":[[-83.698893,32.859129],[-83.698884,32.859399],[-83.698896,32.859558],[-83.69891100000001,32.859645],[-83.698949,32.859791],[-83.69899600000001,32.859918],[-83.699043,32.860013],[-83.69917500000001,32.860191],[-83.69931700000001,32.860343],[-83.699916,32.860919]]},"id":"8744c0a20ffffff-17ff75478e9f05c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73389800000001,32.751314]},"id":"8f44c0b05830a23-17f750a9cb25c515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73570000000001,32.751678000000005]},"id":"8f44c0b05952451-17d6cc438dfd8a5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b05830a23-17f750a9cb25c515","8f44c0b05952451-17d6cc438dfd8a5c"]},"geometry":{"type":"LineString","coordinates":[[-83.73389800000001,32.751314],[-83.735422,32.751545],[-83.73551,32.751581],[-83.73570000000001,32.751678000000005]]},"id":"8944c0b0583ffff-17be2e6f8774676f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574297,32.852888]},"id":"8f44c0b88145d4c-17df96506acea54d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573537,32.850945]},"id":"8f44c0b888de646-17b7b82b6e333b82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88145d4c-17df96506acea54d","8f44c0b888de646-17b7b82b6e333b82"]},"geometry":{"type":"LineString","coordinates":[[-83.574297,32.852888],[-83.57427,32.852786],[-83.574111,32.852373],[-83.573615,32.851117],[-83.573537,32.850945]]},"id":"8844c0b881fffff-13ffd7373c0db557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666565,32.820883]},"id":"8f44c0b18650121-17bff50ce6f2b7a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666184,32.820867]},"id":"8f44c0b1865292a-17b7f5fb0ce798f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1865292a-17b7f5fb0ce798f5","8f44c0b18650121-17bff50ce6f2b7a1"]},"geometry":{"type":"LineString","coordinates":[[-83.666565,32.820883],[-83.666184,32.820867]]},"id":"8a44c0b18657fff-17b6f583fd812b83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735134,32.91688]},"id":"8f44c0a28b82110-139e0da54205cbad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73664500000001,32.917414]},"id":"8f44c0a28bab4e1-13f7c9f4e57753fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b82110-139e0da54205cbad","8f44c0a28bab4e1-13f7c9f4e57753fa"]},"geometry":{"type":"LineString","coordinates":[[-83.735134,32.91688],[-83.73664500000001,32.917414]]},"id":"8944c0a28bbffff-13d6ebcd1a88f7f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.576757,32.857796]},"id":"8f44c0b88321b19-13df904eea2b13e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57522200000001,32.857722]},"id":"8f44c0b8833101a-13bfd40e4a3a959f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8833101a-13bfd40e4a3a959f","8f44c0b88321b19-13df904eea2b13e9"]},"geometry":{"type":"LineString","coordinates":[[-83.576757,32.857796],[-83.57522200000001,32.857722]]},"id":"8944c0b8833ffff-13d7f22e9e5d08ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562757,32.844444]},"id":"8f44c0b88d9e9b0-17d7b27ce4d21f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56368400000001,32.844113]},"id":"8f44c0b88d80634-17f7b0398a992f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88d9e9b0-17d7b27ce4d21f07","8f44c0b88d80634-17f7b0398a992f83"]},"geometry":{"type":"LineString","coordinates":[[-83.562757,32.844444],[-83.562903,32.844423],[-83.563322,32.844456],[-83.563434,32.844474000000005],[-83.563496,32.844479],[-83.563612,32.844474000000005],[-83.563654,32.844448],[-83.56368900000001,32.844417],[-83.563704,32.844363],[-83.56368400000001,32.844113]]},"id":"8944c0b88dbffff-17bff10e241bb339"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652359,32.817357]},"id":"8f44c0b1aab4206-17b6f7bba029ff87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65287500000001,32.817442]},"id":"8f44c0b1aaa648c-17d7d6792ca33d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aab4206-17b6f7bba029ff87","8f44c0b1aaa648c-17d7d6792ca33d22"]},"geometry":{"type":"LineString","coordinates":[[-83.652359,32.817357],[-83.652583,32.817407],[-83.65287500000001,32.817442]]},"id":"8944c0b1aabffff-17bef71b147025fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672509,32.796849]},"id":"8f44c0b1c621862-139ea689e7175366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670271,32.7928]},"id":"8f44c0b1c44cc29-13beac00a335be01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c621862-139ea689e7175366","8f44c0b1c44cc29-13beac00a335be01"]},"geometry":{"type":"LineString","coordinates":[[-83.672509,32.796849],[-83.672458,32.796222],[-83.67043600000001,32.792917],[-83.670271,32.7928]]},"id":"8744c0b1cffffff-17f6e8e866c8b28c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673045,32.79686]},"id":"8f44c0b1c752a2c-1397a53aea668514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67305800000001,32.796546]},"id":"8f44c0b1c75630b-13d7e532c1c6253e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c75630b-13d7e532c1c6253e","8f44c0b1c752a2c-1397a53aea668514"]},"geometry":{"type":"LineString","coordinates":[[-83.673045,32.79686],[-83.67305800000001,32.796546]]},"id":"8a44c0b1c757fff-13b7e536d81df8b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700232,32.810609]},"id":"8f44c0b1dad2485-17b6e2db04d04e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70216760000001,32.8118232]},"id":"8f44c0b1daca4a9-139fde2145b1bf7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dad2485-17b6e2db04d04e23","8f44c0b1daca4a9-139fde2145b1bf7e"]},"geometry":{"type":"LineString","coordinates":[[-83.700232,32.810609],[-83.70044200000001,32.810721],[-83.70216760000001,32.8118232]]},"id":"8844c0b1dbfffff-179ff07b879d5941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703018,32.817338]},"id":"8f44c0b0ac9b0b3-17965c0dcff1325b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70292900000001,32.817839]},"id":"8f44c0b0a5350d3-17df7c456bce97b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac9b0b3-17965c0dcff1325b","8f44c0b0a5350d3-17df7c456bce97b7"]},"geometry":{"type":"LineString","coordinates":[[-83.703018,32.817338],[-83.70292900000001,32.817839]]},"id":"8944c0b0a53ffff-17b6dc29964d9cb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556792,32.834615]},"id":"8f44c0b8e8c34dc-17d7e10d05e677e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.555019,32.834038]},"id":"8f44c0b8e121974-17dfc561252adbfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e121974-17dfc561252adbfb","8f44c0b8e8c34dc-17d7e10d05e677e3"]},"geometry":{"type":"LineString","coordinates":[[-83.556792,32.834615],[-83.556785,32.834529],[-83.556745,32.834395],[-83.556678,32.834168000000005],[-83.556673,32.834148],[-83.556646,32.83404],[-83.556629,32.83386],[-83.55660300000001,32.833816],[-83.55657400000001,32.833785],[-83.556449,32.833709],[-83.55616900000001,32.833593],[-83.555919,32.833483],[-83.55553300000001,32.833326],[-83.555396,32.83328],[-83.555265,32.833259000000005],[-83.5552,32.833271],[-83.555165,32.833292],[-83.55512300000001,32.833357],[-83.555063,32.833542],[-83.55502600000001,32.833681],[-83.555009,32.833786],[-83.555019,32.834038]]},"id":"8844c0b8e9fffff-1797e33a20b1ab3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745024,32.755651]},"id":"8f44c0b2e451183-17fdf58006e619fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.744838,32.757838]},"id":"8f44c0b2e7b171a-17d5f5f44c39f976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e7b171a-17d5f5f44c39f976","8f44c0b2e451183-17fdf58006e619fc"]},"geometry":{"type":"LineString","coordinates":[[-83.745024,32.755651],[-83.745073,32.756304],[-83.74505900000001,32.756369],[-83.74503,32.756424],[-83.744974,32.756482000000005],[-83.74493100000001,32.75651],[-83.74490300000001,32.756554],[-83.744859,32.756646],[-83.744827,32.756767],[-83.744821,32.756892],[-83.744838,32.757838]]},"id":"8744c0b2effffff-139ff5c170252aeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768951,32.802602]},"id":"8f44c0b2b2cd834-139ffb15a3a52570"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768034,32.80276]},"id":"8f44c0b2b2ca925-13fdbd52c0760225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2cd834-139ffb15a3a52570","8f44c0b2b2ca925-13fdbd52c0760225"]},"geometry":{"type":"LineString","coordinates":[[-83.768951,32.802602],[-83.768034,32.80276]]},"id":"8a44c0b2b2cffff-13dfbc3434b37119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68076500000001,32.816322]},"id":"8f44c0b18a5a68c-139fd261e11eacfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800092,32.8169209]},"id":"8f44c0b18acd360-179f943a40371af0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18acd360-179f943a40371af0","8f44c0b18a5a68c-139fd261e11eacfa"]},"geometry":{"type":"LineString","coordinates":[[-83.68076500000001,32.816322],[-83.6800092,32.8169209]]},"id":"8844c0b18bfffff-13d6f34e1ea86077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69705970000001,32.740791200000004]},"id":"8f44c0b0694500e-13b6ea99bbb1e014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6978088,32.740791200000004]},"id":"8f44c0b06968d1c-13b6e8c584831417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06968d1c-13b6e8c584831417","8f44c0b0694500e-13b6ea99bbb1e014"]},"geometry":{"type":"LineString","coordinates":[[-83.69705970000001,32.740791200000004],[-83.6978088,32.740791200000004]]},"id":"8944c0b0697ffff-13b6e9af969ba19a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64003500000001,32.841321]},"id":"8f44c0a340c01b2-13b7f5d22f34dcce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64175300000001,32.84183]},"id":"8f44c0a340e9013-13dff1a06350ff01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340c01b2-13b7f5d22f34dcce","8f44c0a340e9013-13dff1a06350ff01"]},"geometry":{"type":"LineString","coordinates":[[-83.64003500000001,32.841321],[-83.64175300000001,32.84183]]},"id":"8944c0a340fffff-13d6f3b94848b2ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76955000000001,32.911994]},"id":"8f44c0b5e7a12f2-17bdf99f4d03acfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764904,32.9197]},"id":"8f44c0b5ada9444-17fdc4f70abe71b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5ada9444-17fdc4f70abe71b0","8f44c0b5e7a12f2-17bdf99f4d03acfa"]},"geometry":{"type":"LineString","coordinates":[[-83.76955000000001,32.911994],[-83.76952100000001,32.912104],[-83.769515,32.912172000000005],[-83.76965,32.914019],[-83.769695,32.914575],[-83.76972500000001,32.915365],[-83.769765,32.915929000000006],[-83.769757,32.915999],[-83.76973100000001,32.916055],[-83.769671,32.916134],[-83.769452,32.916352],[-83.769367,32.916426],[-83.76932000000001,32.916452],[-83.769233,32.916477],[-83.768673,32.916668],[-83.76847400000001,32.916722],[-83.76835200000001,32.91675],[-83.768309,32.916755],[-83.767964,32.916766],[-83.76785000000001,32.916777],[-83.76772100000001,32.916804],[-83.766975,32.917031],[-83.766498,32.917139],[-83.766287,32.917191],[-83.76626300000001,32.917211],[-83.76625700000001,32.91723],[-83.76626,32.917333],[-83.766271,32.917392],[-83.76630300000001,32.91751],[-83.766318,32.917628],[-83.766311,32.917727],[-83.76629600000001,32.917782],[-83.76626800000001,32.917845],[-83.76620600000001,32.917928],[-83.766147,32.918037000000005],[-83.766131,32.918106],[-83.766157,32.918294],[-83.766169,32.918422],[-83.766187,32.918512],[-83.76620000000001,32.918658],[-83.766198,32.918749000000005],[-83.766181,32.918825000000005],[-83.766143,32.918903],[-83.766101,32.918960000000006],[-83.766074,32.918989],[-83.765691,32.919266],[-83.76559400000001,32.919328],[-83.76505300000001,32.919626],[-83.764904,32.9197]]},"id":"8644c0b5fffffff-17bfbd5ec6f7adc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66923030000001,32.8390707]},"id":"8f44c0b1b319a82-13b7be8b14835607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669399,32.838349]},"id":"8f44c0b1b3032a8-13f6ae21af101f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b3032a8-13f6ae21af101f35","8f44c0b1b319a82-13b7be8b14835607"]},"geometry":{"type":"LineString","coordinates":[[-83.66923030000001,32.8390707],[-83.669399,32.838349]]},"id":"8944c0b1b33ffff-13d7ae566c1f7a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75407200000001,32.925187]},"id":"8f44c0a299769a9-17f5ff6903558322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.752616,32.927622]},"id":"8f44c0a29828494-13d7e2f7004d435f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a299769a9-17f5ff6903558322","8f44c0a29828494-13d7e2f7004d435f"]},"geometry":{"type":"LineString","coordinates":[[-83.75407200000001,32.925187],[-83.7531871,32.9266596],[-83.752826,32.927275],[-83.752758,32.927379],[-83.752616,32.927622]]},"id":"8844c0a299fffff-17dfe130dc04b228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705724,32.89302]},"id":"8f44c0a2edab083-17dfd57284f3f799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70585200000001,32.894886]},"id":"8f44c0a2ec13962-13f7d52287d6df39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec13962-13f7d52287d6df39","8f44c0a2edab083-17dfd57284f3f799"]},"geometry":{"type":"LineString","coordinates":[[-83.705724,32.89302],[-83.705802,32.893192],[-83.70583500000001,32.89329],[-83.705854,32.893377],[-83.705876,32.893524],[-83.705882,32.893616],[-83.705882,32.893839],[-83.70585200000001,32.894886]]},"id":"8844c0a2edfffff-139e552096571112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75140800000001,32.880346]},"id":"8f44c0b52a5b5b6-17fde5ea09271f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.751458,32.879745]},"id":"8f44c0b52a5e05a-17f5e5cac874ec6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52a5e05a-17f5e5cac874ec6e","8f44c0b52a5b5b6-17fde5ea09271f06"]},"geometry":{"type":"LineString","coordinates":[[-83.75140800000001,32.880346],[-83.751445,32.880066],[-83.751458,32.879745]]},"id":"8a44c0b52a5ffff-17bdf5d62a7ae84e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745841,32.8872717]},"id":"8f44c0b535b6960-13d5f38166453f7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74656800000001,32.887245]},"id":"8f44c0b5225b0ae-13d5f1bb0d7bc4e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b535b6960-13d5f38166453f7d","8f44c0b5225b0ae-13d5f1bb0d7bc4e9"]},"geometry":{"type":"LineString","coordinates":[[-83.745841,32.8872717],[-83.746055,32.887270300000004],[-83.7462567,32.8872676],[-83.74656800000001,32.887245]]},"id":"8844c0b523fffff-13ddf29e1c03255c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702431,32.834631]},"id":"8f44c0a24d0a306-17de7d7ca36e4165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70275000000001,32.835455]},"id":"8f44c0a24c2534c-13df7cb54b4f9e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c2534c-13df7cb54b4f9e5e","8f44c0a24d0a306-17de7d7ca36e4165"]},"geometry":{"type":"LineString","coordinates":[[-83.702431,32.834631],[-83.702484,32.834677],[-83.702517,32.834719],[-83.702527,32.834736],[-83.702612,32.834880000000005],[-83.702646,32.835002],[-83.702658,32.835062],[-83.702664,32.835219],[-83.70275000000001,32.835455]]},"id":"8844c0a24dfffff-13d75d04439a1078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679589,32.813885]},"id":"8f44c0b18a0a525-17b6b540eba45725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679546,32.814816]},"id":"8f44c0b18ae0173-17fe955bc7fb72a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18a0a525-17b6b540eba45725","8f44c0b18ae0173-17fe955bc7fb72a8"]},"geometry":{"type":"LineString","coordinates":[[-83.679589,32.813885],[-83.67957600000001,32.814273],[-83.6795513,32.8147206],[-83.679546,32.814816]]},"id":"8844c0b18bfffff-17dfb54ccd5197e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686649,32.886522]},"id":"8f44c0a2347424c-17fec4046955c5b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686802,32.887037]},"id":"8f44c0a23471146-17bea3a4c4fcd46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23471146-17bea3a4c4fcd46e","8f44c0a2347424c-17fec4046955c5b9"]},"geometry":{"type":"LineString","coordinates":[[-83.686649,32.886522],[-83.686802,32.887037]]},"id":"8a44c0a23477fff-179fb3d49ea8450f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68222800000001,32.84966]},"id":"8f44c0a2600168e-17ff8ecf87b773a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68261100000001,32.852089]},"id":"8f44c0a260e8932-13ffade02dfb5eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2600168e-17ff8ecf87b773a4","8f44c0a260e8932-13ffade02dfb5eaf"]},"geometry":{"type":"LineString","coordinates":[[-83.68222800000001,32.84966],[-83.68286400000001,32.849677],[-83.682961,32.849702],[-83.682997,32.849728],[-83.68304400000001,32.84977],[-83.68307200000001,32.84982],[-83.68308400000001,32.849882],[-83.68308,32.850080000000005],[-83.683008,32.851792],[-83.68299300000001,32.851883],[-83.68297000000001,32.85192],[-83.68293800000001,32.851953],[-83.682849,32.852005000000005],[-83.68261100000001,32.852089]]},"id":"8844c0a261fffff-17969d2037b8ca80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64418500000001,32.801248]},"id":"8f44c0b1e79e0c9-17deebb06b64c725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64722900000001,32.801316]},"id":"8f44c0b1e63408a-17f6e441ee7a2448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e79e0c9-17deebb06b64c725","8f44c0b1e63408a-17f6e441ee7a2448"]},"geometry":{"type":"LineString","coordinates":[[-83.64418500000001,32.801248],[-83.644951,32.801268],[-83.64722900000001,32.801316]]},"id":"8844c0b1e7fffff-17f6e7f92b2e852a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73508600000001,32.88074]},"id":"8f44c0b5271a591-13de8dc34a9697d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7353228,32.881366]},"id":"8f44c0b52634220-13f7cd2f4358be72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52634220-13f7cd2f4358be72","8f44c0b5271a591-13de8dc34a9697d8"]},"geometry":{"type":"LineString","coordinates":[[-83.73508600000001,32.88074],[-83.7353228,32.881366]]},"id":"8844c0b527fffff-13b62d7944d718a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64569510000001,32.8308057]},"id":"8f44c0a348310b5-17f7f800939c6b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64479250000001,32.8318968]},"id":"8f44c0a34813b53-139fea34b6b59128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34813b53-139fea34b6b59128","8f44c0a348310b5-17f7f800939c6b27"]},"geometry":{"type":"LineString","coordinates":[[-83.64569510000001,32.8308057],[-83.6449547,32.8316942],[-83.64479250000001,32.8318968]]},"id":"8944c0a3483ffff-17dff91ba37d73f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443794,32.831511]},"id":"8f44c0a34812b16-13beeb36e89cb5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64545890000001,32.830674900000005]},"id":"8f44c0a348302f6-17b7f894376b9cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348302f6-17b7f894376b9cad","8f44c0a34812b16-13beeb36e89cb5e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6443794,32.831511],[-83.64464500000001,32.831656],[-83.644689,32.831608],[-83.645359,32.830807],[-83.64545890000001,32.830674900000005]]},"id":"8944c0a3483ffff-179ee9d153d826ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632615,32.84057]},"id":"8f44c0a344ed19b-17df47efa7c9daf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a344ed19b-17df47efa7c9daf9","8f44c0a3445e2cc-17b786654b525bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.632615,32.84057],[-83.632818,32.840626],[-83.633246,32.840716]]},"id":"8844c0a345fffff-17ff972b1d4f6fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73920100000001,32.746893]},"id":"8f44c0b23219b52-139e23b767f31e6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741241,32.747886]},"id":"8f44c0b23242cd0-1795febc6801319f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b23219b52-139e23b767f31e6a","8f44c0b23242cd0-1795febc6801319f"]},"geometry":{"type":"LineString","coordinates":[[-83.73920100000001,32.746893],[-83.73948800000001,32.746974],[-83.739711,32.747051],[-83.73995500000001,32.747148],[-83.74024800000001,32.747317],[-83.740744,32.747613],[-83.74096800000001,32.747766],[-83.741112,32.747844],[-83.741241,32.747886]]},"id":"8844c0b233fffff-13b6012dbb250bc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655839,32.7966343]},"id":"8f44c0b1e1593b4-139eff3cab610ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655968,32.796028]},"id":"8f44c0b1e15d88a-139fceec091b7b9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e1593b4-139eff3cab610ce6","8f44c0b1e15d88a-139fceec091b7b9a"]},"geometry":{"type":"LineString","coordinates":[[-83.655839,32.7966343],[-83.65585200000001,32.796568],[-83.655968,32.796028]]},"id":"8a44c0b1e15ffff-13deef14a68fd970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71100100000001,32.813994]},"id":"8f44c0b0ad44b09-17fe4890684ec3dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710524,32.811902]},"id":"8f44c0b0e6de835-13dec9ba83d91466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad44b09-17fe4890684ec3dd","8f44c0b0e6de835-13dec9ba83d91466"]},"geometry":{"type":"LineString","coordinates":[[-83.71100100000001,32.813994],[-83.711056,32.813445],[-83.71108500000001,32.8132],[-83.711098,32.812984],[-83.711095,32.812824],[-83.711065,32.812686],[-83.71103400000001,32.812586],[-83.710976,32.812466],[-83.710823,32.812241],[-83.710677,32.81207],[-83.710524,32.811902]]},"id":"8744c0b0affffff-13be68a9681eb9c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69301440000001,32.8717849]},"id":"8f44c0a20610583-1397f47a070d8e0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69022500000001,32.870858000000005]},"id":"8f44c0a22b69470-13be7b49606fc4a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a22b69470-13be7b49606fc4a7","8f44c0a20610583-1397f47a070d8e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.69301440000001,32.8717849],[-83.692943,32.8718],[-83.69271400000001,32.871861],[-83.69261900000001,32.871873],[-83.692509,32.87187],[-83.692418,32.871853],[-83.692357,32.871834],[-83.69221300000001,32.871763],[-83.692149,32.87171],[-83.691451,32.871085],[-83.691276,32.870928],[-83.691196,32.870877],[-83.69110500000001,32.870835],[-83.69099100000001,32.8708],[-83.69087800000001,32.870779],[-83.690782,32.870773],[-83.69065,32.87078],[-83.69022500000001,32.870858000000005]]},"id":"8844c0a207fffff-13de77d952564d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62659500000001,32.852169]},"id":"8f44c0a30cb36b1-139fb6a2211d4edd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625265,32.853079]},"id":"8f44c0a3626e94a-17d779e1629682d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30cb36b1-139fb6a2211d4edd","8f44c0a3626e94a-17d779e1629682d8"]},"geometry":{"type":"LineString","coordinates":[[-83.62659500000001,32.852169],[-83.625265,32.853079]]},"id":"8744c0a30ffffff-13bf1841ca5e3ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62469800000001,32.867616000000005]},"id":"8f44c0a32a6c39a-13d71b43ca1e3365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62453500000001,32.86977]},"id":"8f44c0a33d10910-17975ba9acce8f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a6c39a-13d71b43ca1e3365","8f44c0a33d10910-17975ba9acce8f38"]},"geometry":{"type":"LineString","coordinates":[[-83.62469800000001,32.867616000000005],[-83.624578,32.869543],[-83.62453500000001,32.86977]]},"id":"8644c0a37ffffff-13f73b6eba9d396c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67098800000001,32.875511]},"id":"8f44c0a2271b0a2-139eea4089cd3c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672346,32.876576]},"id":"8f44c0a22621a5a-17b6a6efc5734344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2271b0a2-139eea4089cd3c5b","8f44c0a22621a5a-17b6a6efc5734344"]},"geometry":{"type":"LineString","coordinates":[[-83.67098800000001,32.875511],[-83.67228200000001,32.876497],[-83.672346,32.876576]]},"id":"8944c0a2263ffff-17f6b8933753ce3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59115200000001,32.86249]},"id":"8f44c0b8998b229-13d76d2a0e412691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586437,32.865738]},"id":"8f44c0b89c4a188-13bf78ace35da677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8998b229-13d76d2a0e412691","8f44c0b89c4a188-13bf78ace35da677"]},"geometry":{"type":"LineString","coordinates":[[-83.59115200000001,32.86249],[-83.591257,32.862795000000006],[-83.591362,32.863162],[-83.591437,32.863453],[-83.59145600000001,32.86361],[-83.59143900000001,32.86374],[-83.591381,32.863903],[-83.59132500000001,32.86399],[-83.591233,32.864097],[-83.590985,32.864365],[-83.590609,32.865009],[-83.59052600000001,32.865133],[-83.590351,32.865265],[-83.59023400000001,32.865318],[-83.59007000000001,32.865364],[-83.589938,32.865391],[-83.58950200000001,32.865448],[-83.58875,32.865529],[-83.58856700000001,32.86553],[-83.588471,32.865505],[-83.58839400000001,32.865461],[-83.58829200000001,32.86534],[-83.588193,32.865231],[-83.58812400000001,32.865215],[-83.588053,32.865236],[-83.58767800000001,32.86543],[-83.587457,32.865529],[-83.58721100000001,32.865609],[-83.586976,32.865665],[-83.586437,32.865738]]},"id":"8744c0b89ffffff-13ff710e06a38574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65914500000001,32.808557]},"id":"8f44c0b185a36e3-13b6e72a63822516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65916,32.807073]},"id":"8f44c0b1e259898-1796e7210831a2a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185a36e3-13b6e72a63822516","8f44c0b1e259898-1796e7210831a2a1"]},"geometry":{"type":"LineString","coordinates":[[-83.65914500000001,32.808557],[-83.659163,32.807091],[-83.65916,32.807073]]},"id":"8744c0b18ffffff-17d6d724b965e650"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553866,32.844597]},"id":"8f44c0b8e39bb99-13b7e831c5ce878a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554174,32.844346]},"id":"8f44c0b8e399d5a-1797c771490796a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e39bb99-13b7e831c5ce878a","8f44c0b8e399d5a-1797c771490796a2"]},"geometry":{"type":"LineString","coordinates":[[-83.553866,32.844597],[-83.554174,32.844346]]},"id":"8a44c0b8e39ffff-17d7f7d18007811f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68817100000001,32.832487]},"id":"8f44c0b190c9335-1396e04d25dd6d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68801,32.831268]},"id":"8f44c0b190ea044-179680b1cc712dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ea044-179680b1cc712dfe","8f44c0b190c9335-1396e04d25dd6d16"]},"geometry":{"type":"LineString","coordinates":[[-83.68817100000001,32.832487],[-83.68791,32.832146],[-83.687922,32.831949],[-83.687961,32.831677],[-83.68801,32.831268]]},"id":"8844c0b191fffff-13b7d0c22af1bfa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667406,32.874398]},"id":"8f44c0a22794312-13f6f2ff425b4937"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668909,32.876204]},"id":"8f44c0a2278bc14-17dfaf53e2ea5387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22794312-13f6f2ff425b4937","8f44c0a2278bc14-17dfaf53e2ea5387"]},"geometry":{"type":"LineString","coordinates":[[-83.667406,32.874398],[-83.66849500000001,32.875697],[-83.668909,32.876204]]},"id":"8944c0a227bffff-1397f1281183b52a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70994200000001,32.813963]},"id":"8f44c0b0ad73295-17d6eb264cdae164"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709636,32.812359]},"id":"8f44c0b0ad28ac3-13fe6be586723c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad73295-17d6eb264cdae164","8f44c0b0ad28ac3-13fe6be586723c86"]},"geometry":{"type":"LineString","coordinates":[[-83.70994200000001,32.813963],[-83.70995500000001,32.813525],[-83.709957,32.813025],[-83.70991400000001,32.812837],[-83.70984800000001,32.812677],[-83.709636,32.812359]]},"id":"8844c0b0adfffff-13d64b43549c0849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63697900000001,32.783568]},"id":"8f44c0b1305b8ae-13b6fd48284de383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638902,32.783375]},"id":"8f44c0b1304d3ac-13bff89642b8e201"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1305b8ae-13b6fd48284de383","8f44c0b1304d3ac-13bff89642b8e201"]},"geometry":{"type":"LineString","coordinates":[[-83.63697900000001,32.783568],[-83.63874700000001,32.783396],[-83.638902,32.783375]]},"id":"8944c0b1307ffff-13f7faef01b6099a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74094380000001,32.9122624]},"id":"8f44c0a2d4a199a-17d5ff76239c70c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740977,32.911155]},"id":"8f44c0a2d58a84c-139fff6162cea19e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d4a199a-17d5ff76239c70c7","8f44c0a2d58a84c-139fff6162cea19e"]},"geometry":{"type":"LineString","coordinates":[[-83.74094380000001,32.9122624],[-83.740977,32.911155]]},"id":"8844c0a2d5fffff-13fdff6bc40c735f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681109,32.828186]},"id":"8f44c0b19475c48-1396d18aec7d3432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680531,32.824426]},"id":"8f44c0b1952aa98-17f6d2f4202ac4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19475c48-1396d18aec7d3432","8f44c0b1952aa98-17f6d2f4202ac4ef"]},"geometry":{"type":"LineString","coordinates":[[-83.681109,32.828186],[-83.681032,32.825207],[-83.681022,32.825111],[-83.680975,32.825001],[-83.680884,32.824866],[-83.680633,32.824523],[-83.680531,32.824426]]},"id":"8844c0b195fffff-13dff1c8bd111971"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66973700000001,32.854337]},"id":"8f44c0a35b50088-17fead4e663b1ca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669852,32.854121]},"id":"8f44c0a35b50981-17f7ad068420cebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35b50088-17fead4e663b1ca8","8f44c0a35b50981-17f7ad068420cebb"]},"geometry":{"type":"LineString","coordinates":[[-83.66973700000001,32.854337],[-83.669835,32.854239],[-83.669858,32.854186],[-83.669852,32.854121]]},"id":"8b44c0a35b50fff-17bead1ca4726d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655471,32.841402]},"id":"8f44c0b1b69c2a2-13d6d022a06310d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656377,32.841951]},"id":"8f44c0b1b68aa54-13bfedec6cabae1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b69c2a2-13d6d022a06310d6","8f44c0b1b68aa54-13bfedec6cabae1f"]},"geometry":{"type":"LineString","coordinates":[[-83.655471,32.841402],[-83.656377,32.841951]]},"id":"8944c0b1b6bffff-13ffdf078448a591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65165280000001,32.831767]},"id":"8f44c0b1b4b5c15-13def9750bb9e18b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6516734,32.8319648]},"id":"8f44c0b1b4b509b-13ded9682dfb2508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b4b5c15-13def9750bb9e18b","8f44c0b1b4b509b-13ded9682dfb2508"]},"geometry":{"type":"LineString","coordinates":[[-83.65165280000001,32.831767],[-83.65159560000001,32.8318363],[-83.65157950000001,32.8318859],[-83.6516144,32.83194],[-83.6516734,32.8319648]]},"id":"8b44c0b1b4b5fff-1396d98c74f01a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660177,32.830706]},"id":"8f44c0b1b19299e-17b7c4a5633ca56b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6603972,32.8305594]},"id":"8f44c0b1b19630d-17dfe41bca2cde79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b19299e-17b7c4a5633ca56b","8f44c0b1b19630d-17dfe41bca2cde79"]},"geometry":{"type":"LineString","coordinates":[[-83.660177,32.830706],[-83.6603972,32.8305594]]},"id":"8a44c0b1b197fff-179ff4609c58e0d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660334,32.83268]},"id":"8f44c0b1b0b0cb3-139fc4434f81d062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0b0cb3-139fc4434f81d062","8f44c0b1b19299e-17b7c4a5633ca56b"]},"geometry":{"type":"LineString","coordinates":[[-83.660334,32.83268],[-83.660323,32.832538],[-83.660247,32.831857],[-83.660213,32.831595],[-83.66020400000001,32.831448],[-83.660213,32.831158],[-83.660211,32.830758],[-83.660177,32.830706]]},"id":"8844c0b1b1fffff-139fe479f9a3bb03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614361,32.857885]},"id":"8f44c0a328a1812-139734806807ca6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612532,32.857787]},"id":"8f44c0a328b06e9-13d7f8f787f94db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328b06e9-13d7f8f787f94db9","8f44c0a328a1812-139734806807ca6e"]},"geometry":{"type":"LineString","coordinates":[[-83.614361,32.857885],[-83.613549,32.857844],[-83.61302500000001,32.857824],[-83.612532,32.857787]]},"id":"8944c0a328bffff-13f7f6bc2b952c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612522,32.858263]},"id":"8f44c0a3289590d-13ff78fdc56719f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610859,32.858263]},"id":"8f44c0a32c655ad-13ff7d0d2244bf4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3289590d-13ff78fdc56719f6","8f44c0a32c655ad-13ff7d0d2244bf4e"]},"geometry":{"type":"LineString","coordinates":[[-83.612522,32.858263],[-83.61174100000001,32.858264000000005],[-83.610859,32.858263]]},"id":"8744c0a32ffffff-13ffbb057b2c5840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672798,32.825252]},"id":"8f44c0b1b9444c5-13f6a5d544687c38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6743654,32.8253051]},"id":"8f44c0b1b96c142-1397b201a497ab76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b96c142-1397b201a497ab76","8f44c0b1b9444c5-13f6a5d544687c38"]},"geometry":{"type":"LineString","coordinates":[[-83.672798,32.825252],[-83.6743654,32.8253051]]},"id":"8944c0b1b97ffff-13f7a3eb783c25ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7167493,32.8263265]},"id":"8f44c0b0a322d4c-13963a87b79657f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71668700000001,32.824289]},"id":"8f44c0b0aa82c90-179ebaaea6350345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aa82c90-179ebaaea6350345","8f44c0b0a322d4c-13963a87b79657f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7167493,32.8263265],[-83.71674800000001,32.826134],[-83.716729,32.825466],[-83.71670400000001,32.824556],[-83.71668700000001,32.824289]]},"id":"8744c0b0affffff-139f3a978754b2bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68885300000001,32.876745]},"id":"8f44c0a23da9940-179ffea2efa0f5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690477,32.87641]},"id":"8f44c0a23d0ecda-17de7aabeb36675b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23d0ecda-17de7aabeb36675b","8f44c0a23da9940-179ffea2efa0f5c7"]},"geometry":{"type":"LineString","coordinates":[[-83.68885300000001,32.876745],[-83.689166,32.876635],[-83.68956700000001,32.876511],[-83.68978,32.876452],[-83.689971,32.876409],[-83.690121,32.876389],[-83.69026000000001,32.876382],[-83.69036700000001,32.876391000000005],[-83.690477,32.87641]]},"id":"8844c0a23dfffff-179efcaceb556975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63250620000001,32.8172208]},"id":"8f44c0b1a492392-17df0833a2f021bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63338200000001,32.817223000000006]},"id":"8f44c0b1a491883-17df6610495f676b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a491883-17df6610495f676b","8f44c0b1a492392-17df0833a2f021bb"]},"geometry":{"type":"LineString","coordinates":[[-83.63250620000001,32.8172208],[-83.63338200000001,32.817223000000006]]},"id":"8a44c0b1a497fff-17dfb721f4fe8fa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.578153,32.85884]},"id":"8f44c0b88ad82a1-13f78ce660d7acf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.577832,32.858198]},"id":"8f44c0b88ade98d-13d7cdaf0829188c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88ade98d-13d7cdaf0829188c","8f44c0b88ad82a1-13f78ce660d7acf3"]},"geometry":{"type":"LineString","coordinates":[[-83.578153,32.85884],[-83.57815500000001,32.858331],[-83.578142,32.858250000000005],[-83.578123,32.858217],[-83.57808800000001,32.858198],[-83.57803,32.858193],[-83.57794,32.85819],[-83.577832,32.858198]]},"id":"8a44c0b88adffff-13f7fd098ec4c9c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688181,32.83625]},"id":"8f44c0b19282d88-13d6c046e28cc5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687983,32.835161]},"id":"8f44c0b192b0513-1397a0c2a1dfa0c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192b0513-1397a0c2a1dfa0c2","8f44c0b19282d88-13d6c046e28cc5e6"]},"geometry":{"type":"LineString","coordinates":[[-83.688181,32.83625],[-83.688203,32.835546],[-83.688197,32.835483],[-83.688179,32.835428],[-83.688135,32.835389],[-83.68808,32.835371],[-83.687976,32.835352],[-83.68796,32.83533],[-83.687956,32.835285],[-83.68795800000001,32.835214],[-83.687983,32.835161]]},"id":"8944c0b192bffff-13d6d063380a02f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69292800000001,32.797416000000005]},"id":"8f44c0b1dd7574a-17f774b00924f613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692912,32.797711]},"id":"8f44c0b1dd7114b-17bf74ba09bbb15c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd7574a-17f774b00924f613","8f44c0b1dd7114b-17bf74ba09bbb15c"]},"geometry":{"type":"LineString","coordinates":[[-83.69292800000001,32.797416000000005],[-83.692912,32.797711]]},"id":"8a44c0b1dd77fff-17df74b50feb5acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62318900000001,32.85322]},"id":"8f44c0a3625546c-17bf9ef2e60552fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621037,32.85307]},"id":"8f44c0a362e66ea-17d7e433ebc83cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3625546c-17bf9ef2e60552fa","8f44c0a362e66ea-17d7e433ebc83cad"]},"geometry":{"type":"LineString","coordinates":[[-83.62318900000001,32.85322],[-83.622821,32.853225],[-83.622523,32.853234],[-83.622076,32.853285],[-83.62183800000001,32.853287],[-83.621522,32.853253],[-83.62129900000001,32.85322],[-83.62117900000001,32.853198],[-83.621083,32.853175],[-83.621041,32.853152],[-83.62102900000001,32.853113],[-83.621037,32.85307]]},"id":"8844c0a363fffff-17bfb1af0ae2041c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703404,32.821846]},"id":"8f44c0b0a42eaee-1397db1c8dc64e21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70292900000001,32.820805]},"id":"8f44c0b0a420d2b-179f7c456f1bdb7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a42eaee-1397db1c8dc64e21","8f44c0b0a420d2b-179f7c456f1bdb7f"]},"geometry":{"type":"LineString","coordinates":[[-83.703404,32.821846],[-83.703462,32.821765],[-83.703525,32.821663],[-83.703557,32.821565],[-83.703569,32.821494],[-83.703569,32.821412],[-83.703547,32.821309],[-83.70352700000001,32.82124],[-83.70347600000001,32.821136],[-83.70339600000001,32.821044],[-83.703311,32.82097],[-83.703163,32.820883],[-83.70292900000001,32.820805]]},"id":"8944c0b0a43ffff-179e7b294d4db29b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71890300000001,32.925863]},"id":"8f44c0a28692a28-179e7545a8a1743e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71811500000001,32.925779]},"id":"8f44c0a2aa61c31-17d7f7322a33a8dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa61c31-17d7f7322a33a8dd","8f44c0a28692a28-179e7545a8a1743e"]},"geometry":{"type":"LineString","coordinates":[[-83.71890300000001,32.925863],[-83.718934,32.925744],[-83.71893700000001,32.925705],[-83.71891000000001,32.925688],[-83.718191,32.925612],[-83.71813900000001,32.925629],[-83.718117,32.925662],[-83.71811500000001,32.925779]]},"id":"8844c0a2abfffff-1797b62b15a0d806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719345,32.926132]},"id":"8f44c0a286917b6-17b6b43162c1ffb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71911,32.925952]},"id":"8f44c0a2869064a-17d634c441b77665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869064a-17d634c441b77665","8f44c0a286917b6-17b6b43162c1ffb1"]},"geometry":{"type":"LineString","coordinates":[[-83.719345,32.926132],[-83.71942800000001,32.926028],[-83.719431,32.925995],[-83.71941100000001,32.925956],[-83.719278,32.925865],[-83.719228,32.925852],[-83.719189,32.925866],[-83.71911,32.925952]]},"id":"8a44c0a28697fff-17bfb448b3702467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768347,32.759965]},"id":"8f44c0b28d2bad3-1397bc8f229d01f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77261800000001,32.760126]},"id":"8f44c0b289b1013-13f7f221ca45de62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b28d2bad3-1397bc8f229d01f6","8f44c0b289b1013-13f7f221ca45de62"]},"geometry":{"type":"LineString","coordinates":[[-83.768347,32.759965],[-83.76888100000001,32.75965],[-83.76993300000001,32.759],[-83.770044,32.758949],[-83.770137,32.758961],[-83.77018500000001,32.758986],[-83.770505,32.759217],[-83.771186,32.759667],[-83.77123300000001,32.759698],[-83.77135700000001,32.759763],[-83.77172200000001,32.759907000000005],[-83.771918,32.759968],[-83.77208900000001,32.760008],[-83.77261800000001,32.760126]]},"id":"8744c0b28ffffff-1397f776d43189f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642746,32.799736]},"id":"8f44c0badb64c6c-139fef33cdddce46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6409776,32.7997499]},"id":"8f44c0badb76899-13b7f38507160ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb76899-13b7f38507160ddc","8f44c0badb64c6c-139fef33cdddce46"]},"geometry":{"type":"LineString","coordinates":[[-83.642746,32.799736],[-83.642364,32.799690000000005],[-83.64197,32.799689],[-83.641537,32.7997],[-83.64137450000001,32.7997499],[-83.6409776,32.7997499]]},"id":"8844c0badbfffff-139ef15cca301a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648702,32.816457]},"id":"8f44c0b1a152b4a-13ffe0a94992140e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64872700000001,32.814686]},"id":"8f44c0b1a12b415-179ee099a52670f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a152b4a-13ffe0a94992140e","8f44c0b1a12b415-179ee099a52670f4"]},"geometry":{"type":"LineString","coordinates":[[-83.648702,32.816457],[-83.64869300000001,32.816239],[-83.64869200000001,32.815804],[-83.64872700000001,32.814686]]},"id":"8844c0b1a1fffff-13d6f0a821e33f19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.576544,32.852691]},"id":"8f44c0b88b82688-13f7f0d406f7bf05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.577008,32.853173000000005]},"id":"8f44c0b88b9d8f0-1797afb207302d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b9d8f0-1797afb207302d05","8f44c0b88b82688-13f7f0d406f7bf05"]},"geometry":{"type":"LineString","coordinates":[[-83.576544,32.852691],[-83.576565,32.85307],[-83.57659500000001,32.853119],[-83.57662300000001,32.853144],[-83.57666900000001,32.853164],[-83.576842,32.853164],[-83.577008,32.853173000000005]]},"id":"8944c0b88bbffff-17bf9081e7b96681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66435700000001,32.75701]},"id":"8f44c0b150c1a1e-13dffa70ee81aecb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667681,32.755401]},"id":"8f44c0b1506346c-17dfb253663460ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150c1a1e-13dffa70ee81aecb","8f44c0b1506346c-17dfb253663460ef"]},"geometry":{"type":"LineString","coordinates":[[-83.66435700000001,32.75701],[-83.66448600000001,32.756966000000006],[-83.664613,32.756904],[-83.665885,32.756254000000006],[-83.667107,32.755643],[-83.667502,32.755453],[-83.667618,32.755401],[-83.667681,32.755401]]},"id":"8844c0b151fffff-13def6641363ccb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702864,32.788119]},"id":"8f44c0b0304186e-17be7c6e064846da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7076942,32.7881651]},"id":"8f44c0b03af091a-17df70a324d40f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0304186e-17be7c6e064846da","8f44c0b03af091a-17df70a324d40f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.702864,32.788119],[-83.703514,32.788134],[-83.70708,32.788165],[-83.7076942,32.7881651]]},"id":"8744c0b03ffffff-17d6d688a460d074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.725693,32.874305]},"id":"8f44c0a2194e51c-13bea4b1e7b2f001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72608190000001,32.8743743]},"id":"8f44c0a2194ea23-13d7f3bed56487cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2194e51c-13bea4b1e7b2f001","8f44c0a2194ea23-13d7f3bed56487cd"]},"geometry":{"type":"LineString","coordinates":[[-83.725693,32.874305],[-83.72608190000001,32.8743743]]},"id":"8b44c0a2194efff-13be743858ddc346"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74189100000001,32.822423]},"id":"8f44c0b08329963-13fffd2627acd173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74220150000001,32.821634200000005]},"id":"8f44c0b08ad14f6-1395fc641707a513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08329963-13fffd2627acd173","8f44c0b08ad14f6-1395fc641707a513"]},"geometry":{"type":"LineString","coordinates":[[-83.74189100000001,32.822423],[-83.74190800000001,32.8222],[-83.74196400000001,32.821979],[-83.742039,32.821823],[-83.74220150000001,32.821634200000005]]},"id":"8744c0b08ffffff-13fdfce6e2ab7c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70021100000001,32.887939]},"id":"8f44c0a23a8534a-13f7e2e822941cd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69945600000001,32.887605]},"id":"8f44c0a23a86a62-13b764c0095b9fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a86a62-13b764c0095b9fc9","8f44c0a23a8534a-13f7e2e822941cd4"]},"geometry":{"type":"LineString","coordinates":[[-83.70021100000001,32.887939],[-83.69945600000001,32.887605]]},"id":"8a44c0a23a87fff-139fe3d41b295980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683558,32.852795]},"id":"8f44c0a2605b50d-17b6eb9040a36e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68240270000001,32.8549645]},"id":"8f44c0a2639335b-13f6de6251b8a36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2605b50d-17b6eb9040a36e5e","8f44c0a2639335b-13f6de6251b8a36c"]},"geometry":{"type":"LineString","coordinates":[[-83.683558,32.852795],[-83.68353900000001,32.854338000000006],[-83.68352700000001,32.854413],[-83.683507,32.85447],[-83.683469,32.854523],[-83.68340400000001,32.854582],[-83.683346,32.854613],[-83.68240270000001,32.8549645]]},"id":"8744c0a26ffffff-17d6ac2e5e32a1a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677873,32.828167]},"id":"8f44c0b19418471-1396f971662af692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67912600000001,32.827242000000005]},"id":"8f44c0b1940560b-17d6d6624473184d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19418471-1396f971662af692","8f44c0b1940560b-17d6d6624473184d"]},"geometry":{"type":"LineString","coordinates":[[-83.677873,32.828167],[-83.67794500000001,32.828083],[-83.67806800000001,32.827984],[-83.678932,32.827362],[-83.67912600000001,32.827242000000005]]},"id":"8944c0b1943ffff-17de97f2996ab53c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67595800000001,32.831865]},"id":"8f44c0b1bb7644e-139fbe1e4f1b9e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675973,32.830863]},"id":"8f44c0b1bb28900-179ffe14ef2f7d5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb28900-179ffe14ef2f7d5c","8f44c0b1bb7644e-139fbe1e4f1b9e17"]},"geometry":{"type":"LineString","coordinates":[[-83.67595800000001,32.831865],[-83.675973,32.831664],[-83.675973,32.830863]]},"id":"8944c0b1bb3ffff-17d6be15d30e31bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580956,32.846314]},"id":"8f44c0b8d59e4c5-17d7c60e82e5d4a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d59e4c5-17d7c60e82e5d4a9","8f44c0b8d584c99-13dfe309681a7fff"]},"geometry":{"type":"LineString","coordinates":[[-83.580956,32.846314],[-83.581046,32.846212],[-83.581111,32.846148],[-83.58131,32.845933],[-83.581525,32.845736],[-83.58176300000001,32.845509],[-83.58202200000001,32.845253],[-83.582193,32.845075]]},"id":"8944c0b8d5bffff-13dfd48debc10e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707671,32.831769]},"id":"8f44c0b0a650075-13dff0b1a4278316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707659,32.831604]},"id":"8f44c0b0a6508b5-13fed0b920d79afe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a6508b5-13fed0b920d79afe","8f44c0b0a650075-13dff0b1a4278316"]},"geometry":{"type":"LineString","coordinates":[[-83.707671,32.831769],[-83.707659,32.831604]]},"id":"8b44c0b0a650fff-139e50b564960e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63871520000001,32.8408107]},"id":"8f44c0a340d4431-17f6f90b094ee3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340c01b2-13b7f5d22f34dcce","8f44c0a340d4431-17f6f90b094ee3cd"]},"geometry":{"type":"LineString","coordinates":[[-83.63871520000001,32.8408107],[-83.63878100000001,32.840885],[-83.64003500000001,32.841321]]},"id":"8944c0a340fffff-179ef776b012e413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74148600000001,32.915339]},"id":"8f44c0a2d4d564d-17d7fe234959074c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741473,32.914689]},"id":"8f44c0a2d4f3428-13d5fe2b68d2235c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d4d564d-17d7fe234959074c","8f44c0a2d4f3428-13d5fe2b68d2235c"]},"geometry":{"type":"LineString","coordinates":[[-83.74148600000001,32.915339],[-83.741473,32.914689]]},"id":"8944c0a2d4fffff-179ffe27541d44e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67074500000001,32.791604]},"id":"8f44c0b1c461174-17d6aad86e3feaf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67128000000001,32.791265]},"id":"8f44c0b1c096294-17fea98a0f101550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c096294-17fea98a0f101550","8f44c0b1c461174-17d6aad86e3feaf4"]},"geometry":{"type":"LineString","coordinates":[[-83.67074500000001,32.791604],[-83.670831,32.791566],[-83.67101000000001,32.79148],[-83.67115000000001,32.791399000000006],[-83.671226,32.791338],[-83.67128000000001,32.791265]]},"id":"8844c0b1c5fffff-17f6ba2706240890"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63526900000001,32.865453]},"id":"8f44c0a3076d95e-139f2174ea5511de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635408,32.867714]},"id":"8f44c0a30286673-1397411e0c85c53d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30286673-1397411e0c85c53d","8f44c0a3076d95e-139f2174ea5511de"]},"geometry":{"type":"LineString","coordinates":[[-83.63526900000001,32.865453],[-83.63530300000001,32.865844],[-83.635395,32.867035],[-83.635411,32.86741],[-83.635408,32.867714]]},"id":"8844c0a303fffff-17df413f140e4b60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640932,32.880597200000004]},"id":"8f44c0b5029b79e-1395c6f1c9fe1a6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76410440000001,32.880006900000005]},"id":"8f44c0b5029a96e-1795d6eac10c8f43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b5029b79e-1395c6f1c9fe1a6f","8f44c0b5029a96e-1795d6eac10c8f43"]},"geometry":{"type":"LineString","coordinates":[[-83.7640932,32.880597200000004],[-83.7640985,32.8803204],[-83.7641018,32.8801458],[-83.76410440000001,32.880006900000005]]},"id":"8744c0b50ffffff-17ddd6ee446d32bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65034800000001,32.854205]},"id":"8f44c0a3542b78e-1796fca484f663d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65159100000001,32.85419]},"id":"8f44c0a3555b416-179ed99baa68c05f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3555b416-179ed99baa68c05f","8f44c0a3542b78e-1796fca484f663d4"]},"geometry":{"type":"LineString","coordinates":[[-83.65034800000001,32.854205],[-83.650412,32.854173],[-83.650484,32.854165],[-83.651162,32.854188],[-83.65159100000001,32.85419]]},"id":"8844c0a355fffff-1797fb227c1ddd2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624201,32.864269]},"id":"8f44c0a32b44c49-13bf3c7a61db4758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62245700000001,32.864289]},"id":"8f44c0a32b5610c-13b7a0bc69dc2d1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b44c49-13bf3c7a61db4758","8f44c0a32b5610c-13b7a0bc69dc2d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.624201,32.864269],[-83.62245700000001,32.864289]]},"id":"8944c0a32b7ffff-13bf7e9b601ed057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62254300000001,32.863442]},"id":"8f44c0a32b0d540-17b76086a963dac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b0d540-17b76086a963dac4","8f44c0a32b5610c-13b7a0bc69dc2d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.62245700000001,32.864289],[-83.62248600000001,32.863829],[-83.622504,32.863611],[-83.622517,32.86352],[-83.62254300000001,32.863442]]},"id":"8844c0a32bfffff-17bfa0a9638cbad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.750826,32.87677]},"id":"8f44c0b52a2ad66-17bde755c71e7446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75027100000001,32.878321]},"id":"8f44c0b52a0b4c1-13f7e8b0a0b6412b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a2ad66-17bde755c71e7446","8f44c0b52a0b4c1-13f7e8b0a0b6412b"]},"geometry":{"type":"LineString","coordinates":[[-83.750826,32.87677],[-83.750394,32.878028],[-83.75027100000001,32.878321]]},"id":"8944c0b52a3ffff-1397f7fe3d6f7067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696686,32.887306]},"id":"8f44c0a23066b9e-13f66b834b06d3ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69922600000001,32.886955]},"id":"8f44c0a23ab1c14-179ee54fc4359302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a23ab1c14-179ee54fc4359302","8f44c0a23066b9e-13f66b834b06d3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.696686,32.887306],[-83.697316,32.886985],[-83.697423,32.886935],[-83.69754400000001,32.886913],[-83.697654,32.886908000000005],[-83.698909,32.887034],[-83.69922600000001,32.886955]]},"id":"8744c0a23ffffff-17b6f879ab88e351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655083,32.855066]},"id":"8f44c0a3508056d-13b6d1152a3edc46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655067,32.855716]},"id":"8f44c0a3508328e-13d6d11f2fa4e5e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3508328e-13d6d11f2fa4e5e8","8f44c0a3508056d-13b6d1152a3edc46"]},"geometry":{"type":"LineString","coordinates":[[-83.655083,32.855066],[-83.655067,32.855716]]},"id":"8a44c0a35087fff-13fff11a241600ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586692,32.872374]},"id":"8f44c0b890c6dae-13f7f80d8976377b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58704300000001,32.87183]},"id":"8f44c0b890f576c-139ff7322078e45c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890f576c-139ff7322078e45c","8f44c0b890c6dae-13f7f80d8976377b"]},"geometry":{"type":"LineString","coordinates":[[-83.586692,32.872374],[-83.58704300000001,32.87183]]},"id":"8a44c0b890f7fff-13d7f79fd8ae021e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618716,32.85803]},"id":"8f44c0a3295e6c2-13ffe9de83887676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6186947,32.859551700000004]},"id":"8f44c0a32871781-17b7f9ebd5827f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3295e6c2-13ffe9de83887676","8f44c0a32871781-17b7f9ebd5827f4c"]},"geometry":{"type":"LineString","coordinates":[[-83.618716,32.85803],[-83.61869680000001,32.8587688],[-83.6186947,32.859551700000004]]},"id":"8844c0a329fffff-13df69e7f63614f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56905,32.816003]},"id":"8f44c0b81a2482a-13d7e31fc815738a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56476400000001,32.816164]},"id":"8f44c0b81b98565-13b7ad968af14f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b81b98565-13b7ad968af14f28","8f44c0b81a2482a-13d7e31fc815738a"]},"geometry":{"type":"LineString","coordinates":[[-83.56905,32.816003],[-83.56871100000001,32.816014],[-83.568565,32.81599],[-83.568472,32.815956],[-83.568387,32.815907],[-83.568098,32.815637],[-83.568026,32.81559],[-83.56786360000001,32.8155639],[-83.566998,32.815582],[-83.56600300000001,32.815559],[-83.56527,32.815558],[-83.565185,32.815562],[-83.565118,32.815576],[-83.56502800000001,32.815629],[-83.564994,32.815671],[-83.564941,32.815766],[-83.564859,32.815952],[-83.564794,32.816125],[-83.564778,32.81615],[-83.56476400000001,32.816164]]},"id":"8844c0b81bfffff-139fa89e8f073b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634327,32.829136000000005]},"id":"8f44c0a34d8e530-13f703c1a66394eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63477400000001,32.827894]},"id":"8f44c0a34da3560-17dfc2aa44a4ec41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d8e530-13f703c1a66394eb","8f44c0a34da3560-17dfc2aa44a4ec41"]},"geometry":{"type":"LineString","coordinates":[[-83.634327,32.829136000000005],[-83.634381,32.828974],[-83.634656,32.828234],[-83.63477400000001,32.827894]]},"id":"8944c0a34dbffff-13dff335c2294955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693244,32.779232]},"id":"8f44c0b03cab580-139e73ea8670b822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935205,32.7788823]},"id":"8f44c0b03ca8082-17b7733dbc6007a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ca8082-17b7733dbc6007a7","8f44c0b03cab580-139e73ea8670b822"]},"geometry":{"type":"LineString","coordinates":[[-83.693244,32.779232],[-83.6935205,32.7788823]]},"id":"8a44c0b03caffff-139ef3941154eddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59204000000001,32.859543]},"id":"8f44c0b89916516-179f6aff0583002b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58671600000001,32.859741]},"id":"8f44c0b8d6da612-179f77fe8c789772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6da612-179f77fe8c789772","8f44c0b89916516-179f6aff0583002b"]},"geometry":{"type":"LineString","coordinates":[[-83.59204000000001,32.859543],[-83.591896,32.859686],[-83.591561,32.859983],[-83.590985,32.860467],[-83.590896,32.860529],[-83.590743,32.860529],[-83.59062200000001,32.860518],[-83.59051500000001,32.860504],[-83.58708200000001,32.859834],[-83.58671600000001,32.859741]]},"id":"8644c0b8fffffff-1797f1310df6e87e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64528460000001,32.8359535]},"id":"8f44c0a348ca286-1396f90120da76e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64636200000001,32.834693]},"id":"8f44c0a348e854e-17f7e65fc5e06b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348e854e-17f7e65fc5e06b64","8f44c0a348ca286-1396f90120da76e7"]},"geometry":{"type":"LineString","coordinates":[[-83.64528460000001,32.8359535],[-83.64636200000001,32.834693]]},"id":"8944c0a348fffff-13ffe7b075eec405"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644446,32.836953]},"id":"8f44c0a341626c5-17f7eb0d4f896575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6447383,32.8364982]},"id":"8f44c0a3416621a-17dfea5696465023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341626c5-17f7eb0d4f896575","8f44c0a3416621a-17dfea5696465023"]},"geometry":{"type":"LineString","coordinates":[[-83.644446,32.836953],[-83.64450500000001,32.836891],[-83.64456600000001,32.836816],[-83.64466300000001,32.836652],[-83.6447383,32.8364982]]},"id":"8a44c0a34167fff-17ffeaa9723aa05c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66922000000001,32.841614]},"id":"8f44c0b1b20c6c6-13deee91852dc206"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670423,32.841617]},"id":"8f44c0b1b276b76-13deaba1aa457157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b276b76-13deaba1aa457157","8f44c0b1b20c6c6-13deee91852dc206"]},"geometry":{"type":"LineString","coordinates":[[-83.66922000000001,32.841614],[-83.670423,32.841617]]},"id":"8844c0b1b3fffff-13dfbd199ea806d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606128,32.856406]},"id":"8f44c0a32c14d42-17f7c89a075577d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603886,32.856384000000006]},"id":"8f44c0a32d9b603-17ff4e134bdf61b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d9b603-17ff4e134bdf61b4","8f44c0a32c14d42-17f7c89a075577d0"]},"geometry":{"type":"LineString","coordinates":[[-83.606128,32.856406],[-83.60446200000001,32.8564],[-83.603886,32.856384000000006]]},"id":"8844c0a32dfffff-17f76b56b38d4b97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71031,32.860114]},"id":"8f44c0a25483da0-17974a404c14fc0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71053880000001,32.8589184]},"id":"8f44c0a254b5252-139e49b1412eb3b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25483da0-17974a404c14fc0c","8f44c0a254b5252-139e49b1412eb3b6"]},"geometry":{"type":"LineString","coordinates":[[-83.71031,32.860114],[-83.710362,32.859644],[-83.71042200000001,32.859302],[-83.71053880000001,32.8589184]]},"id":"8944c0a254bffff-179e7a08787033b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67337350000001,32.890127]},"id":"8f44c0a0417131e-17dfe46d9e0c3441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67269420000001,32.8899392]},"id":"8f44c0a04173d8c-17d6a6162069957e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04173d8c-17d6a6162069957e","8f44c0a0417131e-17dfe46d9e0c3441"]},"geometry":{"type":"LineString","coordinates":[[-83.67337350000001,32.890127],[-83.67320880000001,32.8901448],[-83.6730991,32.8901436],[-83.6730158,32.890135],[-83.672917,32.890119],[-83.6728161,32.8900767],[-83.67275550000001,32.8900327],[-83.67269420000001,32.8899392]]},"id":"8a44c0a04177fff-17bef552c6fdb204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66724500000001,32.823195000000005]},"id":"8f44c0b1b9a2118-13f6f363ecb2c31a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667304,32.820234]},"id":"8f44c0b186702db-17b6f33f0f38a464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186702db-17b6f33f0f38a464","8f44c0b1b9a2118-13f6f363ecb2c31a"]},"geometry":{"type":"LineString","coordinates":[[-83.66724500000001,32.823195000000005],[-83.667304,32.820234]]},"id":"8644c0b1fffffff-13d7b351708b788b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68400100000001,32.845819]},"id":"8f44c0a2612e862-139eea7b6f68204c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686386,32.845795]},"id":"8f44c0a268c14d9-139fe4a8c3d55187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268c14d9-139fe4a8c3d55187","8f44c0a2612e862-139eea7b6f68204c"]},"geometry":{"type":"LineString","coordinates":[[-83.68400100000001,32.845819],[-83.68414800000001,32.84579],[-83.686386,32.845795]]},"id":"8744c0a26ffffff-139ed792e773fb4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681036,32.862403]},"id":"8f44c0a228350e6-139ff1b88241bbc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67923300000001,32.865958]},"id":"8f44c0a228d48e8-17d7d61f62e2e00e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d48e8-17d7d61f62e2e00e","8f44c0a228350e6-139ff1b88241bbc9"]},"geometry":{"type":"LineString","coordinates":[[-83.681036,32.862403],[-83.68087200000001,32.862569],[-83.680611,32.862817],[-83.680474,32.86291],[-83.680373,32.862962],[-83.68023500000001,32.86302],[-83.68011700000001,32.863075],[-83.679967,32.8632],[-83.679888,32.863359],[-83.67988100000001,32.863579],[-83.67987500000001,32.864547],[-83.679867,32.865764],[-83.67986,32.865824],[-83.679837,32.865868],[-83.67975200000001,32.865948],[-83.679663,32.865969],[-83.67923300000001,32.865958]]},"id":"8844c0a229fffff-1397f43468e04074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702853,32.789391]},"id":"8f44c0b0304b151-13df7c74e0f486f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70768310000001,32.789431]},"id":"8f44c0b03ac2c43-13f670aa1187ffc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0304b151-13df7c74e0f486f3","8f44c0b03ac2c43-13f670aa1187ffc3"]},"geometry":{"type":"LineString","coordinates":[[-83.702853,32.789391],[-83.70768310000001,32.789431]]},"id":"8744c0b03ffffff-13f7f68f898a871f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708235,32.834246]},"id":"8f44c0a249a26cd-17dfcf512920f207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70748370000001,32.834167400000005]},"id":"8f44c0a249b38ea-17bef126b1b9e399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a249a26cd-17dfcf512920f207","8f44c0a249b38ea-17bef126b1b9e399"]},"geometry":{"type":"LineString","coordinates":[[-83.708235,32.834246],[-83.707633,32.83419],[-83.70748370000001,32.834167400000005]]},"id":"8944c0a249bffff-17d7503c36e1d5b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689189,32.79724]},"id":"8f44c0b1dd1a42a-17977dd0e20cca2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68920800000001,32.796355000000005]},"id":"8f44c0b1dd13811-13dffdc5058e814b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd1a42a-17977dd0e20cca2e","8f44c0b1dd13811-13dffdc5058e814b"]},"geometry":{"type":"LineString","coordinates":[[-83.689189,32.79724],[-83.68920800000001,32.796355000000005]]},"id":"8944c0b1dd3ffff-13fe7dcaf406d48c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669989,32.835262]},"id":"8f44c0b1ba9cb41-13d6ecb0e34362fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670055,32.834818]},"id":"8f44c0b1ba82a20-13d7ec87a783cfa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba82a20-13d7ec87a783cfa7","8f44c0b1ba9cb41-13d6ecb0e34362fe"]},"geometry":{"type":"LineString","coordinates":[[-83.669989,32.835262],[-83.670055,32.834818]]},"id":"8944c0b1babffff-13deac9c4c0ef32b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622009,32.849694]},"id":"8f44c0a362268b0-1797e1d4619f1e98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621571,32.849807000000006]},"id":"8f44c0a36235812-17df62e624fea242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362268b0-1797e1d4619f1e98","8f44c0a36235812-17df62e624fea242"]},"geometry":{"type":"LineString","coordinates":[[-83.622009,32.849694],[-83.621761,32.849725],[-83.621571,32.849807000000006]]},"id":"8944c0a3623ffff-17bf725feed57539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62223300000001,32.850245]},"id":"8f44c0a36220710-17ff2148632d449b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36235812-17df62e624fea242","8f44c0a36220710-17ff2148632d449b"]},"geometry":{"type":"LineString","coordinates":[[-83.621571,32.849807000000006],[-83.62223300000001,32.850245]]},"id":"8944c0a3623ffff-17f7621742409a14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68569600000001,32.829267]},"id":"8f44c0b190ab54b-13b7e6580fafdd2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6855857,32.830050400000005]},"id":"8f44c0b19089126-179f869cfa40e63d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ab54b-13b7e6580fafdd2f","8f44c0b19089126-179f869cfa40e63d"]},"geometry":{"type":"LineString","coordinates":[[-83.68569600000001,32.829267],[-83.685697,32.829345],[-83.685681,32.829679],[-83.685664,32.829779],[-83.6855857,32.830050400000005]]},"id":"8944c0b190bffff-13bef66b70a75c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557192,32.842605]},"id":"8f44c0b8e311b22-13d7e01301e26b7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556049,32.842016]},"id":"8f44c0b8e3164ad-13d7c2dd608c8f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e311b22-13d7e01301e26b7f","8f44c0b8e3164ad-13d7c2dd608c8f4c"]},"geometry":{"type":"LineString","coordinates":[[-83.557192,32.842605],[-83.55709800000001,32.842581],[-83.557007,32.842542],[-83.55691200000001,32.842495],[-83.556049,32.842016]]},"id":"8a44c0b8e317fff-1397c17c6618987b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564138,32.784171]},"id":"8f44c0ba36d5273-179fef1dcc68b6d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562123,32.78409]},"id":"8f44c0b85d20635-17fff40929d34944"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba36d5273-179fef1dcc68b6d3","8f44c0b85d20635-17fff40929d34944"]},"geometry":{"type":"LineString","coordinates":[[-83.564138,32.784171],[-83.564149,32.783763],[-83.56414000000001,32.783713],[-83.564069,32.783552],[-83.564019,32.783478],[-83.563969,32.783414],[-83.563856,32.783304],[-83.563479,32.782981],[-83.563367,32.78289],[-83.56329500000001,32.782837],[-83.563225,32.782797],[-83.56314900000001,32.782764],[-83.563078,32.782744],[-83.563016,32.782735],[-83.562869,32.782725],[-83.56276000000001,32.782732],[-83.562661,32.782747],[-83.56257500000001,32.78277],[-83.56251300000001,32.782797],[-83.562416,32.782857],[-83.562335,32.782922],[-83.56229,32.782969],[-83.562253,32.783034],[-83.56222500000001,32.783116],[-83.562194,32.783242],[-83.56217600000001,32.783372],[-83.56215,32.783761000000005],[-83.562123,32.78409]]},"id":"8644c0b87ffffff-13fff1b9bf6eb848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68827,32.739474]},"id":"8f44c0b06d61451-17ffc00f4b9126a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688192,32.7412696]},"id":"8f44c0b06d49da5-13df804004f35f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b06d61451-17ffc00f4b9126a5","8f44c0b06d49da5-13df804004f35f98"]},"geometry":{"type":"LineString","coordinates":[[-83.68827,32.739474],[-83.688192,32.7412696]]},"id":"8944c0b06d7ffff-13bee027a3e07884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6642975,32.741247800000004]},"id":"8f44c0b336f0ae3-13dffa9618537a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6655681,32.7365565]},"id":"8f44c0b33711350-13dff77bf551c61d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b336f0ae3-13dffa9618537a04","8f44c0b33711350-13dff77bf551c61d"]},"geometry":{"type":"LineString","coordinates":[[-83.6642975,32.741247800000004],[-83.6643231,32.7399019],[-83.664327,32.739607],[-83.664375,32.739302],[-83.66449300000001,32.73894],[-83.66458270000001,32.7387281],[-83.66470480000001,32.73847],[-83.6655681,32.7365565]]},"id":"8844c0b337fffff-17f6f99827515bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735804,32.911211]},"id":"8f44c0a2895370b-13d6ec0284ad9b9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735808,32.912157]},"id":"8f44c0a28874c92-17962c000a6628fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28874c92-17962c000a6628fa","8f44c0a2895370b-13d6ec0284ad9b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.735804,32.911211],[-83.73584600000001,32.911291],[-83.73588000000001,32.91142],[-83.735808,32.912157]]},"id":"8844c0a289fffff-13f6ebe90da40340"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716291,32.824359]},"id":"8f44c0b0aa91c30-17be7ba624e9247b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71633100000001,32.822612]},"id":"8f44c0b0a1696b0-13f6bb8d2c240da1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a1696b0-13f6bb8d2c240da1","8f44c0b0aa91c30-17be7ba624e9247b"]},"geometry":{"type":"LineString","coordinates":[[-83.716291,32.824359],[-83.716277,32.824261],[-83.716278,32.824061],[-83.71628700000001,32.823901],[-83.71633100000001,32.822612]]},"id":"8844c0b0abfffff-1796bb9f80f6e18c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67530400000001,32.826147]},"id":"8f44c0b1959bc00-1397ffb70867b662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67569300000001,32.827655]},"id":"8f44c0b19485cb0-17d6fec3ede085e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1959bc00-1397ffb70867b662","8f44c0b19485cb0-17d6fec3ede085e4"]},"geometry":{"type":"LineString","coordinates":[[-83.67530400000001,32.826147],[-83.675313,32.82624],[-83.67541700000001,32.826683],[-83.675595,32.827342],[-83.67569300000001,32.827655]]},"id":"8844c0b195fffff-17ff9f47c86c010a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69214500000001,32.825743]},"id":"8f44c0b19164c4c-139f769969d5ba6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69209400000001,32.826571]},"id":"8f44c0b19163959-179ef6b94cc9ae54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19164c4c-139f769969d5ba6b","8f44c0b19163959-179ef6b94cc9ae54"]},"geometry":{"type":"LineString","coordinates":[[-83.69214500000001,32.825743],[-83.69209400000001,32.826571]]},"id":"8a44c0b19167fff-139e76a9547e8718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762811,32.831519]},"id":"8f44c0b09b00271-13b7ea132cef2a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7637023,32.833948400000004]},"id":"8f44c0b09b53085-17b5c7e616865853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09b53085-17b5c7e616865853","8f44c0b09b00271-13b7ea132cef2a92"]},"geometry":{"type":"LineString","coordinates":[[-83.762811,32.831519],[-83.7628328,32.832006],[-83.7628854,32.832114100000005],[-83.7629562,32.8322068],[-83.76302670000001,32.8322708],[-83.7630991,32.8323459],[-83.763192,32.8324024],[-83.7634223,32.832561000000005],[-83.76349090000001,32.8326416],[-83.76358520000001,32.832752500000005],[-83.76367400000001,32.8329311],[-83.76370460000001,32.8330061],[-83.7636992,32.8332483],[-83.7637062,32.8335932],[-83.7637023,32.833948400000004]]},"id":"8844c0b09bfffff-1395d8c4856d077e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606161,32.855131]},"id":"8f44c0a32da829c-13dfe8856794999e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60406800000001,32.855136]},"id":"8f44c0a32d91acc-13df4da18281a2c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32da829c-13dfe8856794999e","8f44c0a32d91acc-13df4da18281a2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.606161,32.855131],[-83.60406800000001,32.855136]]},"id":"8944c0a32dbffff-13df7b137d7c427b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60741300000001,32.857846]},"id":"8f44c0a32c0e421-13ffc576e4756187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605168,32.857839000000006]},"id":"8f44c0a32ca8caa-13f76af202449ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c0e421-13ffc576e4756187","8f44c0a32ca8caa-13f76af202449ec5"]},"geometry":{"type":"LineString","coordinates":[[-83.60741300000001,32.857846],[-83.605168,32.857839000000006]]},"id":"8844c0a32dfffff-13f7d83470e62195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660719,32.837866000000005]},"id":"8f44c0b1b708ca5-17b6c352afa62cd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66247100000001,32.837904]},"id":"8f44c0b1b775c91-17debf0baa2b9c39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b708ca5-17b6c352afa62cd4","8f44c0b1b775c91-17debf0baa2b9c39"]},"geometry":{"type":"LineString","coordinates":[[-83.660719,32.837866000000005],[-83.661275,32.837902],[-83.66247100000001,32.837904]]},"id":"8844c0b1b7fffff-17d7e12f63af8ac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575851,32.850416]},"id":"8f44c0b888e86f6-17d792852fb60c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57678800000001,32.852666]},"id":"8f44c0b88b82200-13d7d03b8a180e2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b82200-13d7d03b8a180e2e","8f44c0b888e86f6-17d792852fb60c18"]},"geometry":{"type":"LineString","coordinates":[[-83.575851,32.850416],[-83.57593800000001,32.85053],[-83.576299,32.851405],[-83.57678800000001,32.852666]]},"id":"8744c0b88ffffff-139fb153185b7725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689648,32.806033]},"id":"8f44c0b1d0b68f3-13fefcb20f06bf79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68965010000001,32.8061103]},"id":"8f44c0b1d0b6140-13befcb0bc4d1d08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d0b68f3-13fefcb20f06bf79","8f44c0b1d0b6140-13befcb0bc4d1d08"]},"geometry":{"type":"LineString","coordinates":[[-83.689648,32.806033],[-83.68965010000001,32.8061103]]},"id":"8b44c0b1d0b6fff-1396fcb159d3082d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.756567,32.901857]},"id":"8f44c0b5364c283-13fdf951ab796236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757115,32.902547000000006]},"id":"8f44c0a2d914d2d-179ff7fb2f06dc24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d914d2d-179ff7fb2f06dc24","8f44c0b5364c283-13fdf951ab796236"]},"geometry":{"type":"LineString","coordinates":[[-83.756567,32.901857],[-83.75686900000001,32.902367000000005],[-83.756917,32.902423],[-83.756979,32.902471000000006],[-83.757041,32.902513],[-83.757115,32.902547000000006]]},"id":"8744c0b53ffffff-17ddd8ba5cd979ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67273200000001,32.741335]},"id":"8f44c0b332abab5-1796e5fe8ed07fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676004,32.739516]},"id":"8f44c0b33221371-17979e018e63c129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b332abab5-1796e5fe8ed07fa3","8f44c0b33221371-17979e018e63c129"]},"geometry":{"type":"LineString","coordinates":[[-83.67273200000001,32.741335],[-83.672759,32.739964],[-83.67282200000001,32.739763],[-83.672888,32.739644000000006],[-83.672936,32.739581],[-83.673001,32.739517],[-83.673074,32.739458],[-83.67318900000001,32.739387],[-83.67331,32.739328],[-83.673433,32.739289],[-83.673506,32.739274],[-83.67362100000001,32.739261],[-83.67372800000001,32.739258],[-83.673873,32.739266],[-83.674149,32.739294],[-83.67447,32.739333],[-83.67589000000001,32.739488],[-83.676004,32.739516]]},"id":"8844c0b333fffff-13bfb34f57fb195b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631636,32.853302]},"id":"8f44c0a30c0950a-17f7ca538e2ed4b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633781,32.854793]},"id":"8f44c0a30c412ca-1397a516e86cdc81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c412ca-1397a516e86cdc81","8f44c0a30c0950a-17f7ca538e2ed4b8"]},"geometry":{"type":"LineString","coordinates":[[-83.631636,32.853302],[-83.63186,32.853552],[-83.632154,32.853927],[-83.632406,32.854269],[-83.63258590000001,32.8545378],[-83.63282500000001,32.854895],[-83.632891,32.854958],[-83.63296100000001,32.854984],[-83.63305430000001,32.8550137],[-83.63310800000001,32.855021300000004],[-83.6331698,32.855016400000004],[-83.63331430000001,32.8549815],[-83.63349330000001,32.8549256],[-83.633781,32.854793]]},"id":"8844c0a30dfffff-1397e7f2fdb6dd01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67598500000001,32.828668]},"id":"8f44c0b1948c71e-13bf9e0d6f2fc5e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675314,32.827952]},"id":"8f44c0b1948008e-17fe9fb0c8c647e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1948008e-17fe9fb0c8c647e0","8f44c0b1948c71e-13bf9e0d6f2fc5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.67598500000001,32.828668],[-83.675954,32.828597],[-83.67571600000001,32.828347],[-83.675314,32.827952]]},"id":"8944c0b194bffff-13d7bed6d86753f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694371,32.811959]},"id":"8f44c0b1d390b86-13f6712a2c92aaca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69542600000001,32.813009]},"id":"8f44c0b1d39da82-1396ee96cb83e6f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d390b86-13f6712a2c92aaca","8f44c0b1d39da82-1396ee96cb83e6f7"]},"geometry":{"type":"LineString","coordinates":[[-83.694371,32.811959],[-83.694365,32.812023],[-83.694367,32.812123],[-83.694377,32.812226],[-83.69439200000001,32.812275],[-83.694422,32.812326],[-83.694517,32.812412],[-83.694739,32.812568],[-83.695266,32.812911],[-83.69542600000001,32.813009]]},"id":"8944c0b1d3bffff-13f770259e57f959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719846,32.829562]},"id":"8f44c0b0a36e610-13fe72f84b0c4b2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7195471,32.8292662]},"id":"8f44c0b0a363672-13b773b3103167ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a36e610-13fe72f84b0c4b2d","8f44c0b0a363672-13b773b3103167ce"]},"geometry":{"type":"LineString","coordinates":[[-83.719846,32.829562],[-83.7195471,32.8292662]]},"id":"8944c0b0a37ffff-139ff355a3945a93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687775,32.856462]},"id":"8f44c0a2622ca84-179ec144accf022a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877888,32.856836]},"id":"8f44c0a2622d4d8-1796813c0d4bc65e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2622d4d8-1796813c0d4bc65e","8f44c0a2622ca84-179ec144accf022a"]},"geometry":{"type":"LineString","coordinates":[[-83.687775,32.856462],[-83.687745,32.856569],[-83.687735,32.856703],[-83.687735,32.856758],[-83.6877429,32.856789400000004],[-83.6877611,32.856816200000004],[-83.6877888,32.856836]]},"id":"8a44c0a2622ffff-1796c1551e34c254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64525,32.822501]},"id":"8f44c0b1a7626b0-13bfe916c501e206"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646613,32.823313]},"id":"8f44c0b1a768b96-17bee5c2e1be9902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a768b96-17bee5c2e1be9902","8f44c0b1a7626b0-13bfe916c501e206"]},"geometry":{"type":"LineString","coordinates":[[-83.64525,32.822501],[-83.646613,32.823313]]},"id":"8944c0b1a77ffff-13bee76cdeb4c856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630268,32.872388]},"id":"8f44c0a33d6da23-13ff8daa88911874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62989610000001,32.87275]},"id":"8f44c0a33d691a2-17dfce92fdd434e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33d691a2-17dfce92fdd434e7","8f44c0a33d6da23-13ff8daa88911874"]},"geometry":{"type":"LineString","coordinates":[[-83.630268,32.872388],[-83.62989610000001,32.87275]]},"id":"8844c0a339fffff-17ffae1ec078857b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631735,32.871921]},"id":"8f44c0a33981599-13d7aa15a05c990d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33981599-13d7aa15a05c990d","8f44c0a33d6da23-13ff8daa88911874"]},"geometry":{"type":"LineString","coordinates":[[-83.631735,32.871921],[-83.63131700000001,32.87207],[-83.630943,32.872231],[-83.630733,32.872301],[-83.630432,32.872383],[-83.630268,32.872388]]},"id":"8944c0a339bffff-13ff5bdb831ef142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692986,32.794431]},"id":"8f44c0b036f2b81-17b7748bccd83318"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69570800000001,32.793751]},"id":"8f44c0b03609112-13fe6de68864ae20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b036f2b81-17b7748bccd83318","8f44c0b03609112-13fe6de68864ae20"]},"geometry":{"type":"LineString","coordinates":[[-83.692986,32.794431],[-83.695036,32.794437],[-83.695154,32.794417],[-83.69525300000001,32.794376],[-83.69534300000001,32.794322],[-83.69539800000001,32.794271],[-83.695445,32.794219000000005],[-83.695493,32.794145],[-83.69570800000001,32.793751]]},"id":"8844c0b037fffff-17f6f0e65a0826f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679197,32.867251]},"id":"8f44c0a228de0a9-17fff635e390c069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67849600000001,32.866836]},"id":"8f44c0a2212c835-17fe97ec075f99c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228de0a9-17fff635e390c069","8f44c0a2212c835-17fe97ec075f99c8"]},"geometry":{"type":"LineString","coordinates":[[-83.679197,32.867251],[-83.67849600000001,32.866836]]},"id":"8844c0a229fffff-17feb710f6b89d09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66229990000001,32.747418]},"id":"8f44c0b15c706e2-13f6ff769a408ff9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663522,32.747425]},"id":"8f44c0b15c62b66-13f6bc7acf7e0940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15c706e2-13f6ff769a408ff9","8f44c0b15c62b66-13f6bc7acf7e0940"]},"geometry":{"type":"LineString","coordinates":[[-83.66229990000001,32.747418],[-83.663522,32.747425]]},"id":"8944c0b15c7ffff-13f6fdf8b5047237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732054,32.883158]},"id":"8f44c0b52686141-17d7d52a4fa5f0d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7314061,32.8836023]},"id":"8f44c0b52691899-17df76bf32330a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52691899-17df76bf32330a75","8f44c0b52686141-17d7d52a4fa5f0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.732054,32.883158],[-83.732004,32.883201],[-83.73175,32.88335],[-83.731469,32.88351],[-83.7314061,32.8836023]]},"id":"8944c0b526bffff-17de35fb837614f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69993500000001,32.795977]},"id":"8f44c0b1d922c1b-13ffe394af383866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7004385,32.7968913]},"id":"8f44c0b1d905a1e-13bf7259f50e80bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d905a1e-13bf7259f50e80bd","8f44c0b1d922c1b-13ffe394af383866"]},"geometry":{"type":"LineString","coordinates":[[-83.69993500000001,32.795977],[-83.69977800000001,32.796444],[-83.699742,32.796568],[-83.69973800000001,32.796607],[-83.69974500000001,32.796653],[-83.699754,32.796675],[-83.69977800000001,32.796702],[-83.699841,32.796742],[-83.699883,32.79676],[-83.700266,32.796853],[-83.7004385,32.7968913]]},"id":"8944c0b1d93ffff-13de7388d6a4420d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63425570000001,32.835784100000005]},"id":"8f44c0a345704d3-139f13ee31f718cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6344938,32.8357121]},"id":"8f44c0a34570022-13f7135963fddfed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34570022-13f7135963fddfed","8f44c0a345704d3-139f13ee31f718cb"]},"geometry":{"type":"LineString","coordinates":[[-83.63425570000001,32.835784100000005],[-83.6343923,32.8357405],[-83.6344938,32.8357121]]},"id":"8b44c0a34570fff-1397e3a40b3720e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54922810000001,32.8425316]},"id":"8f44c0b8e708d1e-1397d3847764b623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.548467,32.84201]},"id":"8f44c0b8e703529-13d7d56024846c6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e703529-13d7d56024846c6e","8f44c0b8e708d1e-1397d3847764b623"]},"geometry":{"type":"LineString","coordinates":[[-83.54922810000001,32.8425316],[-83.54903800000001,32.842443],[-83.54894,32.842391],[-83.548821,32.842317],[-83.548529,32.842084],[-83.548467,32.84201]]},"id":"8944c0b8e73ffff-1397d47e69d45f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61861370000001,32.866424200000004]},"id":"8f44c0a32aa8735-17ff2a1e7552df9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615847,32.869206000000005]},"id":"8f44c0a32315343-17b7f0dfa76eb359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32aa8735-17ff2a1e7552df9f","8f44c0a32315343-17b7f0dfa76eb359"]},"geometry":{"type":"LineString","coordinates":[[-83.61861370000001,32.866424200000004],[-83.61851800000001,32.8665017],[-83.61814100000001,32.86685],[-83.61605,32.869025],[-83.615924,32.869149],[-83.615847,32.869206000000005]]},"id":"8744c0a32ffffff-13df3d8351e7be9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71453600000001,32.79047]},"id":"8f44c0b0ed23443-13ffffef05f9f820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714494,32.79197]},"id":"8f44c0b0ed08506-17b7400943b85bef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed08506-17b7400943b85bef","8f44c0b0ed23443-13ffffef05f9f820"]},"geometry":{"type":"LineString","coordinates":[[-83.71453600000001,32.79047],[-83.715524,32.790483],[-83.715996,32.790503],[-83.716138,32.790512],[-83.716234,32.790534],[-83.716316,32.79056],[-83.71641000000001,32.790626],[-83.71644,32.790687000000005],[-83.71645500000001,32.79074],[-83.716464,32.79083],[-83.716452,32.791524],[-83.71644,32.791747],[-83.716408,32.791846],[-83.716367,32.791893],[-83.71629200000001,32.791952],[-83.716227,32.791986],[-83.716148,32.792004],[-83.716098,32.792006],[-83.714881,32.791984],[-83.714494,32.79197]]},"id":"8744c0b0effffff-17f7bd0e40652881"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690202,32.843559]},"id":"8f44c0a26860cf6-179e7b57c6fc7a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692328,32.843562]},"id":"8f44c0a244864b6-179e762701963e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26860cf6-179e7b57c6fc7a17","8f44c0a244864b6-179e762701963e96"]},"geometry":{"type":"LineString","coordinates":[[-83.690202,32.843559],[-83.690971,32.843563],[-83.69123900000001,32.843556],[-83.692328,32.843562]]},"id":"8744c0a26ffffff-179ef8bf6ee1150f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58213590000001,32.8557895]},"id":"8f44c0b88a7515c-13f7f32d101b2b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582891,32.855567]},"id":"8f44c0b88a6455a-13ffe155218004a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a7515c-13f7f32d101b2b58","8f44c0b88a6455a-13ffe155218004a2"]},"geometry":{"type":"LineString","coordinates":[[-83.58213590000001,32.8557895],[-83.582891,32.855567]]},"id":"8944c0b88a7ffff-13bfe24119a7042d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697902,32.915829]},"id":"8f44c0a2aca2453-179f688b4ca36aea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aca2453-179f688b4ca36aea","8f44c0a2ac128de-179664c782b8b4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.697902,32.915829],[-83.698109,32.915718000000005],[-83.698245,32.915657],[-83.698379,32.915616],[-83.6985684,32.9156153],[-83.6990598,32.9156795],[-83.69924400000001,32.915701],[-83.69936,32.91576],[-83.699444,32.91584]]},"id":"8844c0a2adfffff-17b676a7170d657e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674431,32.823712]},"id":"8f44c0b182c8ab1-17b6a1d8a950272e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675672,32.823687]},"id":"8f44c0b195b0885-1796fed105ac7ff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182c8ab1-17b6a1d8a950272e","8f44c0b195b0885-1796fed105ac7ff0"]},"geometry":{"type":"LineString","coordinates":[[-83.674431,32.823712],[-83.67524,32.823703],[-83.675672,32.823687]]},"id":"8844c0b183fffff-179ef054c6b84310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65787900000001,32.816592]},"id":"8f44c0b1ab56916-13d6ca41ab9fd319"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65793400000001,32.815752]},"id":"8f44c0b1ab0dc36-13b7ca1f42f061f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab56916-13d6ca41ab9fd319","8f44c0b1ab0dc36-13b7ca1f42f061f8"]},"geometry":{"type":"LineString","coordinates":[[-83.65787900000001,32.816592],[-83.65793400000001,32.815752]]},"id":"8844c0b1abfffff-13bfca307c9dbe96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554545,32.845186000000005]},"id":"8f44c0b8e2a08ce-1397c689672d1c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55323390000001,32.8462884]},"id":"8f44c0b8e2821a9-17d7c9bcd0569bfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2821a9-17d7c9bcd0569bfe","8f44c0b8e2a08ce-1397c689672d1c41"]},"geometry":{"type":"LineString","coordinates":[[-83.554545,32.845186000000005],[-83.553489,32.846066],[-83.55323390000001,32.8462884]]},"id":"8944c0b8e2bffff-13ffd8245f66c057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647261,32.788089]},"id":"8f44c0b1ec10d03-17bfe42dee3b0b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647338,32.784697]},"id":"8f44c0b13a4b7ac-17f7e3fdc14a3040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec10d03-17bfe42dee3b0b43","8f44c0b13a4b7ac-17f7e3fdc14a3040"]},"geometry":{"type":"LineString","coordinates":[[-83.647261,32.788089],[-83.647312,32.785773],[-83.64733000000001,32.785247000000005],[-83.647338,32.784697]]},"id":"8844c0b1edfffff-1397e415c7e4b798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730045,32.863253]},"id":"8f44c0a25ad686c-17bf3a11efc6236e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732973,32.870934000000005]},"id":"8f44c0b52520da5-13ffd2ebe409af1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25ad686c-17bf3a11efc6236e","8f44c0b52520da5-13ffd2ebe409af1d"]},"geometry":{"type":"LineString","coordinates":[[-83.730045,32.863253],[-83.73024000000001,32.863801],[-83.730444,32.864423],[-83.730518,32.864626],[-83.73064000000001,32.864884],[-83.730845,32.865248],[-83.731066,32.865613],[-83.73119700000001,32.865747],[-83.73165300000001,32.866169],[-83.731831,32.86636],[-83.73197800000001,32.86656],[-83.732134,32.866847],[-83.73269300000001,32.868364],[-83.73276700000001,32.868592],[-83.733072,32.869466],[-83.73312800000001,32.869712],[-83.73318900000001,32.870038],[-83.73323400000001,32.870345],[-83.73308300000001,32.870649],[-83.732973,32.870934000000005]]},"id":"8544c0a3fffffff-17f6f596e0c611cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680135,32.828161]},"id":"8f44c0b1947679d-1396b3ebac25aac7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679704,32.824824]},"id":"8f44c0b1950ecd1-17df94f9030fc476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1950ecd1-17df94f9030fc476","8f44c0b1947679d-1396b3ebac25aac7"]},"geometry":{"type":"LineString","coordinates":[[-83.680135,32.828161],[-83.68005600000001,32.8254],[-83.680025,32.825266],[-83.679952,32.825148],[-83.679704,32.824824]]},"id":"8844c0b195fffff-13d7d41c3d425566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722008,32.856965]},"id":"8f44c0a251124ee-17d72db10ddf76b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72772970000001,32.8574846]},"id":"8f44c0a258cbd16-1797ffb8f772529a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a251124ee-17d72db10ddf76b8","8f44c0a258cbd16-1797ffb8f772529a"]},"geometry":{"type":"LineString","coordinates":[[-83.722008,32.856965],[-83.722126,32.856879],[-83.72229700000001,32.85678],[-83.722493,32.856685],[-83.72265300000001,32.856623],[-83.72284900000001,32.85658],[-83.72300200000001,32.856569],[-83.723234,32.856594],[-83.723359,32.856628],[-83.723574,32.856716],[-83.723706,32.856792],[-83.723887,32.856946],[-83.72401500000001,32.857098],[-83.72408300000001,32.857233],[-83.72414900000001,32.857474],[-83.72417200000001,32.857588],[-83.724231,32.857795],[-83.72432500000001,32.857946000000005],[-83.724455,32.858097],[-83.72459900000001,32.858213],[-83.72481,32.858313],[-83.725018,32.858373],[-83.725166,32.858386],[-83.72528700000001,32.858387],[-83.725352,32.858381],[-83.725728,32.858322],[-83.726561,32.858179],[-83.72691900000001,32.85811],[-83.72713900000001,32.858052],[-83.727216,32.858016],[-83.727366,32.857922],[-83.72746400000001,32.857833],[-83.727556,32.857698],[-83.72767300000001,32.857548],[-83.72772970000001,32.8574846]]},"id":"8744c0a25ffffff-17f626c80ec62341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726803,32.855218300000004]},"id":"8f44c0a258f0381-139f71fc2b5c0fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a258f0381-139f71fc2b5c0fc5","8f44c0a258cbd16-1797ffb8f772529a"]},"geometry":{"type":"LineString","coordinates":[[-83.72772970000001,32.8574846],[-83.72774700000001,32.85734],[-83.72773400000001,32.857211],[-83.72769600000001,32.85703],[-83.72763,32.856836],[-83.72755000000001,32.856651],[-83.727456,32.856477000000005],[-83.727351,32.856319],[-83.727264,32.856175],[-83.72717,32.85598],[-83.72694100000001,32.855448],[-83.726878,32.855347],[-83.726803,32.855218300000004]]},"id":"8944c0a258fffff-17d660a8169484ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6166,32.84809]},"id":"8f44c0a36764c69-13bf6f090a7dcad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61660300000001,32.8482307]},"id":"8f44c0a367640e0-13973f07204ae1c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764c69-13bf6f090a7dcad3","8f44c0a367640e0-13973f07204ae1c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6166,32.84809],[-83.61660300000001,32.8482307]]},"id":"8b44c0a36764fff-13d76f081aafcac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61751070000001,32.843074]},"id":"8f44c0a3600419c-17ff6ccfd4a5f2f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6190189,32.8406259]},"id":"8f44c0a3612acf2-17ff392131c15fde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3600419c-17ff6ccfd4a5f2f3","8f44c0a3612acf2-17ff392131c15fde"]},"geometry":{"type":"LineString","coordinates":[[-83.61751070000001,32.843074],[-83.61753,32.842965],[-83.61760000000001,32.842553],[-83.61761800000001,32.842484],[-83.617675,32.842331],[-83.6178253,32.8421326],[-83.617997,32.841914],[-83.618477,32.841348],[-83.61892300000001,32.840777],[-83.6190189,32.8406259]]},"id":"8844c0a361fffff-13dfeb3e558083b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695064,32.8471265]},"id":"8f44c0a244dd7b6-17de7f7902bf994e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695031,32.848456]},"id":"8f44c0a26b62ad8-139f6f8dad0ae2ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b62ad8-139f6f8dad0ae2ab","8f44c0a244dd7b6-17de7f7902bf994e"]},"geometry":{"type":"LineString","coordinates":[[-83.695064,32.8471265],[-83.695031,32.848456]]},"id":"8744c0a24ffffff-17ffff8359b767d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69505500000001,32.845878]},"id":"8f44c0a244c6084-13d7ef7eafb8bb0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69512900000001,32.847127300000004]},"id":"8f44c0a244dd733-17deff506ba5f414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244dd733-17deff506ba5f414","8f44c0a244c6084-13d7ef7eafb8bb0e"]},"geometry":{"type":"LineString","coordinates":[[-83.69505500000001,32.845878],[-83.695116,32.846673],[-83.695127,32.846922],[-83.69512900000001,32.847127300000004]]},"id":"8944c0a244fffff-17d7ff62ceff424e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71095100000001,32.889815]},"id":"8f44c0a216f0b25-179668afa939ece3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710924,32.890848000000005]},"id":"8f44c0a216c6648-139e48c08b2d9de4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216f0b25-179668afa939ece3","8f44c0a216c6648-139e48c08b2d9de4"]},"geometry":{"type":"LineString","coordinates":[[-83.71095100000001,32.889815],[-83.710924,32.890848000000005]]},"id":"8944c0a216fffff-17df78b810c6798e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66041100000001,32.853772]},"id":"8f44c0a35153d5e-1797c4132e97af04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66082200000001,32.857126]},"id":"8f44c0a35043730-17b7c31249c88e65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35043730-17b7c31249c88e65","8f44c0a35153d5e-1797c4132e97af04"]},"geometry":{"type":"LineString","coordinates":[[-83.66041100000001,32.853772],[-83.66042800000001,32.853927],[-83.66046,32.854588],[-83.660483,32.854793],[-83.660516,32.854954],[-83.66058000000001,32.855202000000006],[-83.66063000000001,32.855761],[-83.660655,32.855941],[-83.66069900000001,32.856192],[-83.660764,32.856394],[-83.660847,32.856862],[-83.66086,32.857014],[-83.660836,32.857107],[-83.66082200000001,32.857126]]},"id":"8844c0a351fffff-13b6d396696f516f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58771700000001,32.853879]},"id":"8f44c0b8d7ab30d-17df758ce97a60d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58642800000001,32.853704]},"id":"8f44c0b8d783af2-17df78b28ac214e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d783af2-17df78b28ac214e8","8f44c0b8d7ab30d-17df758ce97a60d0"]},"geometry":{"type":"LineString","coordinates":[[-83.58771700000001,32.853879],[-83.587643,32.853841],[-83.587518,32.853814],[-83.587383,32.853797],[-83.587154,32.853772],[-83.586444,32.853752],[-83.58642800000001,32.853704]]},"id":"8944c0b8d7bffff-179f7726635f5de4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687021,32.859744]},"id":"8f44c0a262ed572-179e831be46e2317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68826200000001,32.861086]},"id":"8f44c0a205a2876-13f6c014474ab778"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262ed572-179e831be46e2317","8f44c0a205a2876-13f6c014474ab778"]},"geometry":{"type":"LineString","coordinates":[[-83.687021,32.859744],[-83.687168,32.85987],[-83.687296,32.85999],[-83.687359,32.860067],[-83.68741700000001,32.860155],[-83.68746900000001,32.860247],[-83.6875,32.860329],[-83.687531,32.860428],[-83.68755900000001,32.860546],[-83.68758700000001,32.860601],[-83.687638,32.860666],[-83.687723,32.860747],[-83.68791300000001,32.860872],[-83.68826200000001,32.861086]]},"id":"8644c0a27ffffff-17de81b0b23379c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6575842,32.7505231]},"id":"8f44c0b1552b21d-13f6faf9ef0c6f96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656598,32.745936]},"id":"8f44c0b15cb02da-17d6cd6248ad9709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1552b21d-13f6faf9ef0c6f96","8f44c0b15cb02da-17d6cd6248ad9709"]},"geometry":{"type":"LineString","coordinates":[[-83.6575842,32.7505231],[-83.65767600000001,32.750496000000005],[-83.65772600000001,32.750462],[-83.657764,32.750420000000005],[-83.657791,32.750371],[-83.657801,32.75034],[-83.657801,32.750283],[-83.65763000000001,32.749656],[-83.65739,32.74884],[-83.657008,32.747458],[-83.65697990000001,32.747328100000004],[-83.656644,32.746122],[-83.656598,32.745936]]},"id":"8744c0b15ffffff-17fedbd554b56b41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660999,32.849111]},"id":"8f44c0a3588c210-13b6e2a3a4d9ebf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66243800000001,32.849154]},"id":"8f44c0a358f4ac1-13d7ff204461318e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3588c210-13b6e2a3a4d9ebf6","8f44c0a358f4ac1-13d7ff204461318e"]},"geometry":{"type":"LineString","coordinates":[[-83.660999,32.849111],[-83.66243800000001,32.849154]]},"id":"8844c0a359fffff-13b7d0e1f70aa5f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6196115,32.8348262]},"id":"8f44c0a36983594-13d767aedfd6d6eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6192453,32.8346621]},"id":"8f44c0a36991b0a-17dff893ba2328bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36991b0a-17dff893ba2328bd","8f44c0a36983594-13d767aedfd6d6eb"]},"geometry":{"type":"LineString","coordinates":[[-83.6196115,32.8348262],[-83.6192453,32.8346621]]},"id":"8944c0a369bffff-139728214d9d350b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72372,32.866763]},"id":"8f44c0a252b4b09-17bee983070363f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722875,32.865225]},"id":"8f44c0a25392554-13ffab932621ca76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a252b4b09-17bee983070363f4","8f44c0a25392554-13ffab932621ca76"]},"geometry":{"type":"LineString","coordinates":[[-83.72372,32.866763],[-83.72356400000001,32.866546],[-83.72349200000001,32.866453],[-83.72344000000001,32.866379],[-83.723383,32.866309],[-83.723342,32.866221],[-83.723213,32.865859],[-83.723172,32.865718],[-83.72301200000001,32.865445],[-83.722875,32.865225]]},"id":"8844c0a253fffff-17f6ba9547557dbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55100200000001,32.841347]},"id":"8f44c0b8e0d16ca-13b7ef2fcaca85d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5512829,32.839820800000005]},"id":"8f44c0b8e0f041c-17ffce8039aeb30a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e0d16ca-13b7ef2fcaca85d4","8f44c0b8e0f041c-17ffce8039aeb30a"]},"geometry":{"type":"LineString","coordinates":[[-83.55100200000001,32.841347],[-83.55041580000001,32.840815500000005],[-83.5503331,32.8406952],[-83.55031000000001,32.8405827],[-83.550407,32.8404624],[-83.5512829,32.839820800000005]]},"id":"8944c0b8e0fffff-17d7cfe6e2532d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70782,32.783485]},"id":"8f44c0b03ba1a2e-13fe7054834166ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706725,32.783468]},"id":"8f44c0b03b849a4-13f7d300eb8ff3c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b849a4-13f7d300eb8ff3c8","8f44c0b03ba1a2e-13fe7054834166ca"]},"geometry":{"type":"LineString","coordinates":[[-83.70782,32.783485],[-83.706725,32.783468]]},"id":"8a44c0b03ba7fff-13fed1aabab0700b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64880000000001,32.886325]},"id":"8f44c0a069b42c5-1797e06c0977281d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650676,32.882565]},"id":"8f44c0a3175d39c-17d7fbd78211101f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a069b42c5-1797e06c0977281d","8f44c0a3175d39c-17d7fbd78211101f"]},"geometry":{"type":"LineString","coordinates":[[-83.64880000000001,32.886325],[-83.64873800000001,32.886235],[-83.64866500000001,32.886097],[-83.64860900000001,32.885948],[-83.648571,32.885751],[-83.648544,32.885565],[-83.648545,32.885332000000005],[-83.64857500000001,32.885112],[-83.64861,32.884954],[-83.648656,32.884817000000005],[-83.64873,32.884678],[-83.64885600000001,32.884487],[-83.649044,32.884245],[-83.64923800000001,32.884006],[-83.649392,32.883797],[-83.649535,32.883592],[-83.64961500000001,32.883445],[-83.64969500000001,32.883254],[-83.649758,32.883077],[-83.649832,32.882968000000005],[-83.649912,32.882883],[-83.65006600000001,32.882793],[-83.65024700000001,32.882711],[-83.650676,32.882565]]},"id":"8844c0a317fffff-13f7df563e4647ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732197,32.892971]},"id":"8f44c0a2cc5aa40-17bef4d0ea6044b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73285200000001,32.895694]},"id":"8f44c0a2c188d26-17f6d3378d6fe67f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc5aa40-17bef4d0ea6044b6","8f44c0a2c188d26-17f6d3378d6fe67f"]},"geometry":{"type":"LineString","coordinates":[[-83.732197,32.892971],[-83.732201,32.893217],[-83.732217,32.893344],[-83.73226600000001,32.893572],[-83.73273300000001,32.895127],[-83.732816,32.895442],[-83.73285200000001,32.895694]]},"id":"8744c0a2cffffff-139fd41319a5e3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62316100000001,32.854979]},"id":"8f44c0a3625b61a-13ffff046a176487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62612,32.85755]},"id":"8f44c0a30426746-17d7d7cb0a19ea21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3625b61a-13ffff046a176487","8f44c0a30426746-17d7d7cb0a19ea21"]},"geometry":{"type":"LineString","coordinates":[[-83.62316100000001,32.854979],[-83.6233,32.855079],[-83.624375,32.856023],[-83.625656,32.857138],[-83.62612,32.85755]]},"id":"8744c0a30ffffff-179f3b646896ef35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57674800000001,32.858359]},"id":"8f44c0b88328d2a-13bff0548483c658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575525,32.858358]},"id":"8f44c0b88300888-13bfd350eb5980d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88328d2a-13bff0548483c658","8f44c0b88300888-13bfd350eb5980d1"]},"geometry":{"type":"LineString","coordinates":[[-83.57674800000001,32.858359],[-83.57566700000001,32.858308],[-83.57558800000001,32.85833],[-83.575525,32.858358]]},"id":"8944c0b8833ffff-13bfb1d53f7e3675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681943,32.831184]},"id":"8f44c0b19716c8c-17f68f81adaab054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68719200000001,32.831252]},"id":"8f44c0b190c02ca-179e82b10ce14ebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19716c8c-17f68f81adaab054","8f44c0b190c02ca-179e82b10ce14ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.681943,32.831184],[-83.682848,32.831214],[-83.68719200000001,32.831252]]},"id":"8744c0b19ffffff-17fef9197c6f74fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764483,32.865643]},"id":"8f44c0b50c6d2f1-1397e5fe297425a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7645172,32.8665177]},"id":"8f44c0b50130c63-17b5d5e8c43691ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50130c63-17b5d5e8c43691ff","8f44c0b50c6d2f1-1397e5fe297425a7"]},"geometry":{"type":"LineString","coordinates":[[-83.764483,32.865643],[-83.764503,32.865679],[-83.76452300000001,32.865738],[-83.7645172,32.8665177]]},"id":"8744c0b50ffffff-1795d5e81b647320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762814,32.9180015]},"id":"8f44c0b5adb08a4-13d7fa1145207f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76177200000001,32.917208]},"id":"8f44c0a2daeaa92-13f7cc9c8f892396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5adb08a4-13d7fa1145207f79","8f44c0a2daeaa92-13f7cc9c8f892396"]},"geometry":{"type":"LineString","coordinates":[[-83.762814,32.9180015],[-83.76280100000001,32.917881],[-83.762758,32.917786],[-83.762735,32.917752],[-83.76267200000001,32.917676],[-83.76257700000001,32.917583],[-83.762431,32.917471],[-83.76232300000001,32.917402],[-83.762237,32.91736],[-83.762074,32.917298],[-83.76177200000001,32.917208]]},"id":"8844c0a2dbfffff-13b5fb1f5ad60d26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693572,32.857768]},"id":"8f44c0a20cac9b4-13df731d87b062f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69573000000001,32.857796]},"id":"8f44c0a20c01ce8-13deedd8ccf1806b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c01ce8-13deedd8ccf1806b","8f44c0a20cac9b4-13df731d87b062f1"]},"geometry":{"type":"LineString","coordinates":[[-83.693572,32.857768],[-83.69457,32.857777],[-83.69573000000001,32.857796]]},"id":"8844c0a20dfffff-13d6f07b26259e5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653209,32.854276]},"id":"8f44c0a3554b8d9-17d6d5a865cb841f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653148,32.855271]},"id":"8f44c0a35461a4d-13b6f5ce8295216f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35461a4d-13b6f5ce8295216f","8f44c0a3554b8d9-17d6d5a865cb841f"]},"geometry":{"type":"LineString","coordinates":[[-83.653209,32.854276],[-83.653205,32.854571],[-83.653165,32.854929],[-83.65315100000001,32.85513],[-83.653148,32.855271]]},"id":"8844c0a355fffff-13ffd5b9e98a9dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71628000000001,32.785728]},"id":"8f44c0b0178c693-13fe3bad092e1e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71628000000001,32.785387300000004]},"id":"8f44c0b01781341-17973bad04434a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0178c693-13fe3bad092e1e8c","8f44c0b01781341-17973bad04434a50"]},"geometry":{"type":"LineString","coordinates":[[-83.71628000000001,32.785728],[-83.71628000000001,32.785387300000004]]},"id":"8a44c0b0178ffff-17ffbbad012b0c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711037,32.742821]},"id":"8f44c0b04006590-17b76879e9a9b545"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71012680000001,32.7433166]},"id":"8f44c0b04013d10-13deeab2c598a363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04006590-17b76879e9a9b545","8f44c0b04013d10-13deeab2c598a363"]},"geometry":{"type":"LineString","coordinates":[[-83.711037,32.742821],[-83.71064700000001,32.743147],[-83.71057400000001,32.743194],[-83.710479,32.743236],[-83.710424,32.743256],[-83.710257,32.743298],[-83.71012680000001,32.7433166]]},"id":"8944c0b0403ffff-13f67985938efdeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764341,32.76721]},"id":"8f44c0b28575032-13b7c656e76fade8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7647877,32.7668192]},"id":"8f44c0b28cd979b-13bfc53fb3ff063d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b28575032-13b7c656e76fade8","8f44c0b28cd979b-13bfc53fb3ff063d"]},"geometry":{"type":"LineString","coordinates":[[-83.764341,32.76721],[-83.7647877,32.7668192]]},"id":"8844c0b285fffff-13bde5cb52269338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66146,32.859876]},"id":"8f44c0a353a8770-17fec1838ea8a5fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661039,32.861654]},"id":"8f44c0a352162b5-13d7c28aac3ad7a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a352162b5-13d7c28aac3ad7a3","8f44c0a353a8770-17fec1838ea8a5fd"]},"geometry":{"type":"LineString","coordinates":[[-83.66146,32.859876],[-83.66140200000001,32.859955],[-83.661372,32.860017],[-83.661349,32.860098],[-83.661327,32.860225],[-83.66131800000001,32.860326],[-83.66129500000001,32.86076],[-83.661293,32.860936],[-83.661274,32.861052],[-83.66125100000001,32.861157],[-83.66120400000001,32.861281000000005],[-83.661039,32.861654]]},"id":"8844c0a353fffff-179fd1fa392003b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71331640000001,32.825420900000005]},"id":"8f44c0b0a05cc26-13d652e945b7971d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713158,32.824371]},"id":"8f44c0b0a073544-17bfe34c4c7eb448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a073544-17bfe34c4c7eb448","8f44c0b0a05cc26-13d652e945b7971d"]},"geometry":{"type":"LineString","coordinates":[[-83.71331640000001,32.825420900000005],[-83.7131586,32.825272000000005],[-83.7131324,32.825217800000004],[-83.7131301,32.825129600000004],[-83.71313400000001,32.824894],[-83.713158,32.824371]]},"id":"8944c0b0a07ffff-139e634b5bc4d274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650833,32.815775]},"id":"8f44c0b1a163c65-13d7fb75613d7e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652623,32.816502]},"id":"8f44c0b1ab9e22a-139fd716afcd0c4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab9e22a-139fd716afcd0c4f","8f44c0b1a163c65-13d7fb75613d7e01"]},"geometry":{"type":"LineString","coordinates":[[-83.650833,32.815775],[-83.652505,32.815793],[-83.652556,32.815807],[-83.65261100000001,32.815859],[-83.65263800000001,32.815936],[-83.652623,32.816502]]},"id":"8744c0b1affffff-139ff8aeb067d379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53630100000001,32.843501]},"id":"8f44c0b9daa5415-17f7f313e47c739a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53798900000001,32.841717]},"id":"8f44c0b9dbad38a-139feef4e9e94f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b9dbad38a-139feef4e9e94f64","8f44c0b9daa5415-17f7f313e47c739a"]},"geometry":{"type":"LineString","coordinates":[[-83.53630100000001,32.843501],[-83.536546,32.8431],[-83.53689,32.842669],[-83.53718900000001,32.842349],[-83.537401,32.84217],[-83.53798900000001,32.841717]]},"id":"8844c0b9dbfffff-139ff12f7c3dafc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7371523,32.8292505]},"id":"8f44c0b082da024-13bf98b7dad208d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733473,32.829267800000004]},"id":"8f44c0b0b9130a3-13b671b36797ddcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b9130a3-13b671b36797ddcf","8f44c0b082da024-13bf98b7dad208d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7371523,32.8292505],[-83.7364814,32.829277600000005],[-83.7356877,32.8293076],[-83.733473,32.829267800000004]]},"id":"8844c0b0b9fffff-13becd3578a06972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7196548,32.8343112]},"id":"8f44c0b0b51486a-1796b36fccb7feac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72103600000001,32.834496]},"id":"8f44c0b0b504b09-17fe301082baf0c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b504b09-17fe301082baf0c2","8f44c0b0b51486a-1796b36fccb7feac"]},"geometry":{"type":"LineString","coordinates":[[-83.7196548,32.8343112],[-83.72012600000001,32.834373],[-83.72103600000001,32.834496]]},"id":"8944c0b0b53ffff-17bff1c013c54cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53606900000001,32.803483]},"id":"8f44c0b8073211b-13d7f3a4ebe531c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54201300000001,32.803218]},"id":"8f44c0b80052648-139fe521eb92121b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b80052648-139fe521eb92121b","8f44c0b8073211b-13d7f3a4ebe531c3"]},"geometry":{"type":"LineString","coordinates":[[-83.53606900000001,32.803483],[-83.5360754,32.8032452],[-83.53608,32.803072],[-83.536096,32.803002],[-83.53612600000001,32.802988],[-83.536225,32.802982],[-83.538624,32.803078],[-83.54017800000001,32.803131],[-83.54201300000001,32.803218]]},"id":"8744c0b80ffffff-13d7ece8042c110c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670456,32.838611]},"id":"8f44c0b1b30dce2-1397eb8d0e7f1331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672376,32.838692]},"id":"8f44c0b1b36610a-13b6a6dd0503130f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b36610a-13b6a6dd0503130f","8f44c0b1b30dce2-1397eb8d0e7f1331"]},"geometry":{"type":"LineString","coordinates":[[-83.670456,32.838611],[-83.670916,32.838628],[-83.67106700000001,32.838656],[-83.67117,32.83867],[-83.671486,32.838704],[-83.67178200000001,32.838704],[-83.672376,32.838692]]},"id":"8844c0b1b3fffff-13bea9359f4762b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682647,32.845442000000006]},"id":"8f44c0a261310ee-13b7cdc9a59f6b41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682569,32.846955]},"id":"8f44c0a2611d190-17f6edfa69acd573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2611d190-17f6edfa69acd573","8f44c0a261310ee-13b7cdc9a59f6b41"]},"geometry":{"type":"LineString","coordinates":[[-83.682647,32.845442000000006],[-83.682569,32.846955]]},"id":"8944c0a2613ffff-179e9de20ea40984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70671060000001,32.7842758]},"id":"8f44c0b03b8034d-17de7309e4489e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b849a4-13f7d300eb8ff3c8","8f44c0b03b8034d-17de7309e4489e53"]},"geometry":{"type":"LineString","coordinates":[[-83.706725,32.783468],[-83.70671060000001,32.7842758]]},"id":"8944c0b03bbffff-13dff3056b35ef07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705607,32.812758]},"id":"8f44c0b0adae7a4-13f7d5bba3be1887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704659,32.812918]},"id":"8f44c0b0ad80462-13dfd80c28a1b870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad80462-13dfd80c28a1b870","8f44c0b0adae7a4-13f7d5bba3be1887"]},"geometry":{"type":"LineString","coordinates":[[-83.705607,32.812758],[-83.70560400000001,32.812314],[-83.70560800000001,32.811553],[-83.705605,32.811148],[-83.70559300000001,32.811057000000005],[-83.705555,32.811006],[-83.705516,32.810981000000005],[-83.70543500000001,32.810957],[-83.705342,32.810975],[-83.705213,32.811071000000005],[-83.70485000000001,32.811374],[-83.704768,32.811447],[-83.704701,32.81152],[-83.704639,32.811617000000005],[-83.704616,32.811673],[-83.704604,32.811768],[-83.70460100000001,32.811857],[-83.704659,32.812918]]},"id":"8644c0b0fffffff-139756d6e4c16acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745929,32.90306]},"id":"8f44c0a2dd842ca-17ddf34a6d7210b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dd9584c-1797f563ed2e29c0","8f44c0a2dd842ca-17ddf34a6d7210b5"]},"geometry":{"type":"LineString","coordinates":[[-83.745929,32.90306],[-83.745672,32.903013],[-83.745394,32.902972000000005],[-83.745069,32.902949]]},"id":"8944c0a2ddbffff-17b7f4565e767bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67993600000001,32.794998]},"id":"8f44c0b1c316a6d-179fd468060fa6e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679927,32.796357]},"id":"8f44c0b1c3ad24b-13dfb46dab977022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c316a6d-179fd468060fa6e4","8f44c0b1c3ad24b-13dfb46dab977022"]},"geometry":{"type":"LineString","coordinates":[[-83.67993600000001,32.794998],[-83.679896,32.796185],[-83.679927,32.796357]]},"id":"8944c0b1c33ffff-13b7b474e003c0cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552627,32.844624]},"id":"8f44c0b8e2b6d9e-13b7cb38223db6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55229290000001,32.8459822]},"id":"8f44c0b8e290cf6-1397ec08f2e508ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2b6d9e-13b7cb38223db6cb","8f44c0b8e290cf6-1397ec08f2e508ce"]},"geometry":{"type":"LineString","coordinates":[[-83.552627,32.844624],[-83.55315300000001,32.845078],[-83.553202,32.845112],[-83.553235,32.845153],[-83.553218,32.845235],[-83.553196,32.845241],[-83.55315200000001,32.84527],[-83.552373,32.84591],[-83.55229290000001,32.8459822]]},"id":"8744c0b8effffff-13dffab2e239668b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714482,32.870278]},"id":"8f44c0a21d05805-17d7c010cc3cec6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717567,32.867714]},"id":"8f44c0a25618b1b-13977888a0bfa33b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0a25618b1b-13977888a0bfa33b","8f44c0a21d05805-17d7c010cc3cec6e"]},"geometry":{"type":"LineString","coordinates":[[-83.714482,32.870278],[-83.71541400000001,32.870147],[-83.715833,32.870081],[-83.716482,32.86999],[-83.716875,32.869934],[-83.71722100000001,32.869875],[-83.71731000000001,32.869847],[-83.717348,32.869822],[-83.717387,32.869763],[-83.717405,32.869673],[-83.71737900000001,32.86871],[-83.717358,32.868436],[-83.71737200000001,32.868353],[-83.717505,32.867854],[-83.717567,32.867714]]},"id":"8644c0a27ffffff-17f7fb01d455f965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53094,32.828138]},"id":"8f44c0b83623000-17fa402a89cd13c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.52862400000001,32.829959]},"id":"8f44c0b836a9771-17fc65d2099056bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83623000-17fa402a89cd13c7","8f44c0b836a9771-17fc65d2099056bb"]},"geometry":{"type":"LineString","coordinates":[[-83.53094,32.828138],[-83.53088600000001,32.82821],[-83.530624,32.828432],[-83.530299,32.828699],[-83.52956900000001,32.829307],[-83.529275,32.829565],[-83.528913,32.829853],[-83.52879700000001,32.829917],[-83.52874200000001,32.829939],[-83.52862400000001,32.829959]]},"id":"8844c0b837fffff-13db82eac874ab1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68699450000001,32.8416178]},"id":"8f44c0a26831aa4-13dfa32c77fc71de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687179,32.838844]},"id":"8f44c0a26933759-139782b929d58d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26933759-139782b929d58d1c","8f44c0a26831aa4-13dfa32c77fc71de"]},"geometry":{"type":"LineString","coordinates":[[-83.68699450000001,32.8416178],[-83.687076,32.8415604],[-83.6871591,32.841496],[-83.68718600000001,32.84142],[-83.687191,32.841363],[-83.68719700000001,32.841149],[-83.68723,32.838894],[-83.68721400000001,32.838859],[-83.687179,32.838844]]},"id":"8844c0a269fffff-179f92ab9ce566bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759651,32.85418]},"id":"8f44c0b56b62259-1797d1ca29a2d8ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758525,32.854407]},"id":"8f44c0b56b559ad-1395f489e68b0953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56b62259-1797d1ca29a2d8ce","8f44c0b56b559ad-1395f489e68b0953"]},"geometry":{"type":"LineString","coordinates":[[-83.759651,32.85418],[-83.758525,32.854407]]},"id":"8944c0b56b7ffff-17ddf32a014db6a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55000580000001,32.8457245]},"id":"8f44c0b8e675598-13f7d19e6c8eeaf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54867700000001,32.846817]},"id":"8f44c0b8e65281c-179ff4dce568bdbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e65281c-179ff4dce568bdbf","8f44c0b8e675598-13f7d19e6c8eeaf0"]},"geometry":{"type":"LineString","coordinates":[[-83.55000580000001,32.8457245],[-83.54867700000001,32.846817]]},"id":"8944c0b8e67ffff-17b7d33da8234733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57679800000001,32.855671]},"id":"8f44c0b88a818e1-13bff035435c95ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57373700000001,32.855659]},"id":"8f44c0b88063a13-13b7f7ae6b1c7a26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a818e1-13bff035435c95ef","8f44c0b88063a13-13b7f7ae6b1c7a26"]},"geometry":{"type":"LineString","coordinates":[[-83.57679800000001,32.855671],[-83.576696,32.855711],[-83.576581,32.855803],[-83.576446,32.855871],[-83.576369,32.855894],[-83.57622,32.855908],[-83.57603300000001,32.85588],[-83.57496,32.85569],[-83.57431700000001,32.855671],[-83.57373700000001,32.855659]]},"id":"8744c0b88ffffff-13dfb3e0d0668348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66247800000001,32.872594]},"id":"8f44c0a31b31046-17ffff0742e1b32d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662034,32.872642]},"id":"8f44c0a31b3316a-179fc01ccf04b9c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a31b3316a-179fc01ccf04b9c5","8f44c0a31b31046-17ffff0742e1b32d"]},"geometry":{"type":"LineString","coordinates":[[-83.66247800000001,32.872594],[-83.662439,32.87267],[-83.662408,32.872706],[-83.662366,32.872732],[-83.662317,32.872746],[-83.662265,32.872746],[-83.662215,32.872735],[-83.662153,32.872706],[-83.662034,32.872642]]},"id":"8a44c0a31b37fff-17beff863f6df6f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73463600000001,32.905276]},"id":"8f44c0a2c2954e5-17d78edc8d946b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733592,32.9049464]},"id":"8f44c0a2c665911-13f79169092a8c42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c2954e5-17d78edc8d946b63","8f44c0a2c665911-13f79169092a8c42"]},"geometry":{"type":"LineString","coordinates":[[-83.73463600000001,32.905276],[-83.733805,32.905011],[-83.733592,32.9049464]]},"id":"8744c0a2cffffff-13dfd02282dd5279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.765763,32.741419]},"id":"8f44c0b21266058-17bfe2de2feb1f05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76069910000001,32.7414112]},"id":"8f44c0b212a86e2-17b7cf3b128d3a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b212a86e2-17b7cf3b128d3a12","8f44c0b21266058-17bfe2de2feb1f05"]},"geometry":{"type":"LineString","coordinates":[[-83.765763,32.741419],[-83.76348700000001,32.741405],[-83.76186100000001,32.741419],[-83.76121,32.741411],[-83.76088100000001,32.741413],[-83.76069910000001,32.7414112]]},"id":"8844c0b213fffff-17b7c90ca9f7630a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54821700000001,32.815148]},"id":"8f44c0b81589301-13bfd5fc61ca0db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.547206,32.815241]},"id":"8f44c0b814a4142-13f7f8744ae79bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b814a4142-13f7f8744ae79bd1","8f44c0b81589301-13bfd5fc61ca0db9"]},"geometry":{"type":"LineString","coordinates":[[-83.54821700000001,32.815148],[-83.54792900000001,32.815224],[-83.547578,32.815224],[-83.54736700000001,32.815219],[-83.547206,32.815241]]},"id":"8844c0b815fffff-13f7f73688ef5049"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761635,32.870078]},"id":"8f44c0b500a4558-17d7ccf228508f62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76384200000001,32.872777]},"id":"8f44c0b500e2958-17fde78ec27aa0b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b500a4558-17d7ccf228508f62","8f44c0b500e2958-17fde78ec27aa0b9"]},"geometry":{"type":"LineString","coordinates":[[-83.761635,32.870078],[-83.76174,32.870136],[-83.761863,32.870213],[-83.76194600000001,32.870283],[-83.76204600000001,32.870392],[-83.76218200000001,32.870587],[-83.762361,32.870877],[-83.762414,32.870947],[-83.762533,32.871063],[-83.762646,32.871145],[-83.76277300000001,32.871212],[-83.762977,32.871298],[-83.76325100000001,32.871389],[-83.76377000000001,32.871578],[-83.763909,32.871651],[-83.763992,32.87172],[-83.764059,32.871809],[-83.764087,32.871859],[-83.764127,32.871975],[-83.764133,32.872016],[-83.764137,32.872138],[-83.764103,32.872258],[-83.76384200000001,32.872777]]},"id":"8844c0b501fffff-13f7e95c9b176cf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726177,32.905603]},"id":"8f44c0a2c69d0e8-1797e38367ce59a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726183,32.905406]},"id":"8f44c0a2c69d894-1796e37fae703b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c69d894-1796e37fae703b07","8f44c0a2c69d0e8-1797e38367ce59a5"]},"geometry":{"type":"LineString","coordinates":[[-83.726177,32.905603],[-83.725987,32.905593],[-83.725955,32.905582],[-83.72593300000001,32.905569],[-83.725914,32.905549],[-83.725897,32.905506],[-83.725904,32.905462],[-83.72591600000001,32.905441],[-83.725935,32.905422],[-83.725952,32.905411],[-83.725993,32.905399],[-83.72606400000001,32.905396],[-83.726183,32.905406]]},"id":"8a44c0a2c69ffff-17dfa3e65c5b0514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71318000000001,32.901915]},"id":"8f44c0a2e1530ac-1796e33e8c32d7bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71294470000001,32.9017598]},"id":"8f44c0a2e15220a-13bfe3d191535097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e1530ac-1796e33e8c32d7bb","8f44c0a2e15220a-13bfe3d191535097"]},"geometry":{"type":"LineString","coordinates":[[-83.71318000000001,32.901915],[-83.71294470000001,32.9017598]]},"id":"8a44c0a2e157fff-13f663881a446129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65900500000001,32.78248]},"id":"8f44c0b112b3baa-13fec781ecd9b5f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662019,32.783201000000005]},"id":"8f44c0b1121e368-13bee0262768b652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112b3baa-13fec781ecd9b5f3","8f44c0b1121e368-13bee0262768b652"]},"geometry":{"type":"LineString","coordinates":[[-83.65900500000001,32.78248],[-83.659481,32.782493],[-83.661129,32.782521],[-83.661314,32.782533],[-83.66135100000001,32.782545],[-83.661404,32.782586],[-83.661421,32.782612],[-83.66144200000001,32.782663],[-83.66148700000001,32.782815],[-83.661511,32.782867],[-83.66153100000001,32.782899],[-83.661608,32.782975],[-83.66168800000001,32.783029],[-83.662019,32.783201000000005]]},"id":"8844c0b113fffff-13d7f39722aae781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674586,32.834983]},"id":"8f44c0b1ba0d452-13bee177c7d75de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675736,32.834992]},"id":"8f44c0b1ba7090c-13be9ea90e6474cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba7090c-13be9ea90e6474cf","8f44c0b1ba0d452-13bee177c7d75de1"]},"geometry":{"type":"LineString","coordinates":[[-83.674586,32.834983],[-83.675736,32.834992]]},"id":"8844c0b1bbfffff-13bfb010633539f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67457200000001,32.836029]},"id":"8f44c0b1ba562d5-13b6a18083667a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba562d5-13b6a18083667a6d","8f44c0b1ba7090c-13be9ea90e6474cf"]},"geometry":{"type":"LineString","coordinates":[[-83.675736,32.834992],[-83.675736,32.835217],[-83.675723,32.835907],[-83.67571500000001,32.836005],[-83.675696,32.836032],[-83.675635,32.836041],[-83.67457200000001,32.836029]]},"id":"8944c0b1ba7ffff-139fdf6de2006cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70782200000001,32.780125000000005]},"id":"8f44c0b03860491-13be70534f700123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707817,32.780008]},"id":"8f44c0b038662c5-13f7505665303f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03860491-13be70534f700123","8f44c0b038662c5-13f7505665303f57"]},"geometry":{"type":"LineString","coordinates":[[-83.70782200000001,32.780125000000005],[-83.70795600000001,32.780129],[-83.70823,32.780136],[-83.708264,32.78013],[-83.70829,32.780107],[-83.70829900000001,32.780078],[-83.708298,32.780054],[-83.70828200000001,32.780036],[-83.708259,32.780023],[-83.708223,32.780019],[-83.707969,32.780012],[-83.707817,32.780008]]},"id":"8a44c0b03867fff-139f7fb5ccf868bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723889,32.905493]},"id":"8f44c0a2ea6ad49-17df29196c31ec39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72488840000001,32.90547]},"id":"8f44c0a2ea6d055-17bee6a8c0048d28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea6d055-17bee6a8c0048d28","8f44c0a2ea6ad49-17df29196c31ec39"]},"geometry":{"type":"LineString","coordinates":[[-83.723889,32.905493],[-83.72397500000001,32.905467],[-83.72419000000001,32.905448],[-83.72488840000001,32.90547]]},"id":"8a44c0a2ea6ffff-17bee7e252380217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65629100000001,32.80397]},"id":"8f44c0b1e21cc33-17f7ce222490a6d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65771500000001,32.804018]},"id":"8f44c0b1e22a6c5-179fcaa827e7f221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e21cc33-17f7ce222490a6d8","8f44c0b1e22a6c5-179fcaa827e7f221"]},"geometry":{"type":"LineString","coordinates":[[-83.65629100000001,32.80397],[-83.65771500000001,32.804018]]},"id":"8944c0b1e23ffff-1796cc652f38f050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570125,32.795211]},"id":"8f44c0b85b9a4c1-179fe07fe2af388a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572647,32.794576]},"id":"8f44c0b85bab195-17979a57a418c07a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85b9a4c1-179fe07fe2af388a","8f44c0b85bab195-17979a57a418c07a"]},"geometry":{"type":"LineString","coordinates":[[-83.570125,32.795211],[-83.571049,32.794986],[-83.571774,32.79478],[-83.57242000000001,32.794609],[-83.572647,32.794576]]},"id":"8944c0b85bbffff-17d7dd6c56443c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72846600000001,32.903753900000005]},"id":"8f44c0a2c610106-139e3decc639d965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728616,32.904981]},"id":"8f44c0a2c61a154-139f3d8f0d98659a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c61a154-139f3d8f0d98659a","8f44c0a2c610106-139e3decc639d965"]},"geometry":{"type":"LineString","coordinates":[[-83.72846600000001,32.903753900000005],[-83.72852400000001,32.903889],[-83.728565,32.903962],[-83.72861800000001,32.904103],[-83.72864700000001,32.904165],[-83.72865300000001,32.904245],[-83.728616,32.904981]]},"id":"8944c0a2c63ffff-1397fd93f074d51c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.767402,32.873997]},"id":"8f44c0b50048892-17fdbeddc83e5b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7669518,32.8733525]},"id":"8f44c0b50041413-17d5fff721804364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50041413-17d5fff721804364","8f44c0b50048892-17fdbeddc83e5b01"]},"geometry":{"type":"LineString","coordinates":[[-83.767402,32.873997],[-83.767342,32.873809],[-83.767278,32.873683],[-83.767193,32.873578],[-83.767143,32.873527],[-83.767032,32.873429],[-83.7669518,32.8733525]]},"id":"8944c0b5007ffff-179fbf5277176013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768646,32.873348]},"id":"8f44c0b5006995b-17d7bbd442ae4d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7680704,32.8728487]},"id":"8f44c0b5006c6b1-179ffd3c06903d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5006995b-17d7bbd442ae4d8b","8f44c0b5006c6b1-179ffd3c06903d53"]},"geometry":{"type":"LineString","coordinates":[[-83.768646,32.873348],[-83.7680704,32.8728487]]},"id":"8a44c0b5006ffff-17b7bc882c2b81db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73605400000001,32.901936]},"id":"8f44c0a2c386d1b-179e0b664a6bb591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73713400000001,32.896592000000005]},"id":"8f44c0a2c15156b-179608c340c51485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c15156b-179608c340c51485","8f44c0a2c386d1b-179e0b664a6bb591"]},"geometry":{"type":"LineString","coordinates":[[-83.73605400000001,32.901936],[-83.736131,32.901879],[-83.736174,32.901842],[-83.736253,32.901749],[-83.73628400000001,32.901667],[-83.736483,32.900927],[-83.736525,32.900708],[-83.736519,32.899851000000005],[-83.736474,32.899411],[-83.736388,32.898873],[-83.73631300000001,32.898348],[-83.736343,32.89774],[-83.73640400000001,32.896839],[-83.736413,32.896779],[-83.736429,32.896738],[-83.73646500000001,32.89669],[-83.73651600000001,32.896647],[-83.736579,32.896611],[-83.73665600000001,32.896588],[-83.73679,32.896576],[-83.73713400000001,32.896592000000005]]},"id":"8744c0a2cffffff-179f7a718dc85a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7166811,32.854846300000005]},"id":"8f44c0a25cd44aa-13b6fab254e7c2ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175691,32.8559652]},"id":"8f44c0a25cdc071-13f6788751837782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25cdc071-13f6788751837782","8f44c0a25cd44aa-13b6fab254e7c2ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7166811,32.854846300000005],[-83.71691960000001,32.855103400000004],[-83.71720810000001,32.8554643],[-83.7173389,32.855674300000004],[-83.7175691,32.8559652]]},"id":"8944c0a25cfffff-13fef9959799c8d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6458334,32.860961100000004]},"id":"8f44c0a30a29656-1396f7aa2c4b0a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64151860000001,32.858124000000004]},"id":"8f44c0a30b804d9-13b7f232ee82d7ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b804d9-13b7f232ee82d7ea","8f44c0a30a29656-1396f7aa2c4b0a81"]},"geometry":{"type":"LineString","coordinates":[[-83.6458334,32.860961100000004],[-83.64476110000001,32.86054],[-83.6442564,32.8603277],[-83.643856,32.860143400000005],[-83.6433456,32.8598714],[-83.64300340000001,32.859627700000004],[-83.64261730000001,32.859333500000005],[-83.642155,32.8588843],[-83.642026,32.8587338],[-83.6418323,32.8585331],[-83.6415877,32.858239600000005],[-83.64151860000001,32.858124000000004]]},"id":"8844c0a30bfffff-17bfed53d32186d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6212192,32.850927]},"id":"8f44c0a36206746-179763c20326be38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62094,32.850822]},"id":"8f44c0a36215840-17d7e4708cc6a234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36206746-179763c20326be38","8f44c0a36215840-17d7e4708cc6a234"]},"geometry":{"type":"LineString","coordinates":[[-83.6212192,32.850927],[-83.6211337,32.8509374],[-83.62106560000001,32.850921500000005],[-83.62099,32.8508914],[-83.62094,32.850822]]},"id":"8944c0a3623ffff-1797b4218aa6b73e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581474,32.846643]},"id":"8f44c0b8d5980d4-179fe4cac147b41a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58114,32.846973000000006]},"id":"8f44c0b8d59b59c-17ffa59b8c199396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d59b59c-17ffa59b8c199396","8f44c0b8d5980d4-179fe4cac147b41a"]},"geometry":{"type":"LineString","coordinates":[[-83.581474,32.846643],[-83.58114,32.846973000000006]]},"id":"8a44c0b8d59ffff-17978533236c6918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71321400000001,32.894826]},"id":"8f44c0a2e8a6ca0-13d6432948251e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71321800000001,32.895576000000005]},"id":"8f44c0a2e8a2296-17974326cc30ab2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e8a2296-17974326cc30ab2a","8f44c0a2e8a6ca0-13d6432948251e02"]},"geometry":{"type":"LineString","coordinates":[[-83.71321400000001,32.894826],[-83.71321800000001,32.895576000000005]]},"id":"8944c0a2e8bffff-13bee3280340e541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6337761,32.8391632]},"id":"8f44c0a34473b75-13df0519fe2948f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63748100000001,32.839385]},"id":"8f44c0a34083d4d-13f7fc0e6e299227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34083d4d-13f7fc0e6e299227","8f44c0a34473b75-13df0519fe2948f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6337761,32.8391632],[-83.634089,32.839146],[-83.63436300000001,32.839156],[-83.63544800000001,32.839215],[-83.637113,32.839315],[-83.637341,32.839339],[-83.63748100000001,32.839385]]},"id":"8744c0a34ffffff-1397d091a66abfb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683553,32.833348]},"id":"8f44c0b19624433-17be8b9367692555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685946,32.833382]},"id":"8f44c0b19771719-17bfc5bbc54040d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19624433-17be8b9367692555","8f44c0b19771719-17bfc5bbc54040d0"]},"geometry":{"type":"LineString","coordinates":[[-83.683553,32.833348],[-83.68353900000001,32.833941],[-83.683532,32.834055],[-83.68354000000001,32.834153],[-83.683565,32.834197],[-83.68365100000001,32.834262],[-83.68377000000001,32.834291],[-83.68570000000001,32.834317],[-83.68576300000001,32.834308],[-83.68581800000001,32.834285],[-83.685857,32.834257],[-83.685896,32.834206],[-83.685924,32.834092000000005],[-83.68594,32.833782],[-83.685946,32.833382]]},"id":"8844c0b197fffff-17f798b3f2a9a30d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68980400000001,32.823555]},"id":"8f44c0b19124b8b-17d7fc5080e06c98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69151400000001,32.823621]},"id":"8f44c0b198f304e-17ff7823c9ce0446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19124b8b-17d7fc5080e06c98","8f44c0b198f304e-17ff7823c9ce0446"]},"geometry":{"type":"LineString","coordinates":[[-83.68980400000001,32.823555],[-83.691248,32.823604],[-83.691411,32.823624],[-83.69151400000001,32.823621]]},"id":"8844c0b199fffff-17d6fa39e0c6facc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7226545,32.823059]},"id":"8f44c0b0ab53899-139fec1cfbd27f99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72130700000001,32.823515]},"id":"8f44c0b0aa05a83-17beef6722bf3258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0aa05a83-17beef6722bf3258","8f44c0b0ab53899-139fec1cfbd27f99"]},"geometry":{"type":"LineString","coordinates":[[-83.7226545,32.823059],[-83.72242,32.823121],[-83.72203300000001,32.823199],[-83.72194300000001,32.823224],[-83.721413,32.823476],[-83.721348,32.82349],[-83.72130700000001,32.823515]]},"id":"8844c0b0abfffff-1796edc92cb26719"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642606,32.811807]},"id":"8f44c0b1ace0284-1397ef8b445c35ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645674,32.811984]},"id":"8f44c0b1ac45649-1396e80dc5fa6622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace0284-1397ef8b445c35ba","8f44c0b1ac45649-1396e80dc5fa6622"]},"geometry":{"type":"LineString","coordinates":[[-83.642606,32.811807],[-83.644022,32.811841],[-83.64427400000001,32.811855],[-83.645674,32.811984]]},"id":"8844c0b1adfffff-13beebcb916c4270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679298,32.881981]},"id":"8f44c0a222dd22e-13f6b5f6c0af3cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678127,32.882648]},"id":"8f44c0a04974280-179798d2a3b6899d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04974280-179798d2a3b6899d","8f44c0a222dd22e-13f6b5f6c0af3cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.679298,32.881981],[-83.679034,32.881383],[-83.67899600000001,32.88134],[-83.67891300000001,32.88129],[-83.678872,32.881279],[-83.67786600000001,32.881256],[-83.677774,32.881275],[-83.67766800000001,32.881349],[-83.677642,32.881404],[-83.677645,32.881461],[-83.67765,32.881484],[-83.677869,32.882036],[-83.677991,32.882334],[-83.678127,32.882648]]},"id":"8644c0a27ffffff-1396f8610b6543cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643527,32.826559]},"id":"8f44c0b1a651ad3-1797ed4ba213a5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644253,32.827015]},"id":"8f44c0b1a65d871-17b6eb85e4dcc395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a651ad3-1797ed4ba213a5ad","8f44c0b1a65d871-17b6eb85e4dcc395"]},"geometry":{"type":"LineString","coordinates":[[-83.643527,32.826559],[-83.644253,32.827015]]},"id":"8944c0b1a67ffff-17b7ec68cdc72f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65042000000001,32.807577]},"id":"8f44c0b1a9a1620-17bffc77843adede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65048,32.806919]},"id":"8f44c0b1a9a5c8a-17b6fc5203b4793e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a9a1620-17bffc77843adede","8f44c0b1a9a5c8a-17b6fc5203b4793e"]},"geometry":{"type":"LineString","coordinates":[[-83.65042000000001,32.807577],[-83.650456,32.807547],[-83.650467,32.807445],[-83.65048,32.806919]]},"id":"8a44c0b1a9a7fff-17f7dc58c2da8a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56825500000001,32.867160000000005]},"id":"8f44c0b8b98d250-17b7a510addb9989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.569935,32.868775]},"id":"8f44c0b8b801298-13bfe0f6aa05c835"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b98d250-17b7a510addb9989","8f44c0b8b801298-13bfe0f6aa05c835"]},"geometry":{"type":"LineString","coordinates":[[-83.56825500000001,32.867160000000005],[-83.56868800000001,32.867525],[-83.569051,32.867827000000005],[-83.56928,32.868032],[-83.56935100000001,32.868119],[-83.56943700000001,32.86829],[-83.56948700000001,32.86838],[-83.56952000000001,32.868423],[-83.56962,32.868521],[-83.569843,32.868707],[-83.569935,32.868775]]},"id":"8844c0b8b9fffff-13b7b2f76463571c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559516,32.807074]},"id":"8f44c0b856cb271-1797fa668b4c9667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561116,32.804862]},"id":"8f44c0b856514e6-179ff67e87f87d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b856cb271-1797fa668b4c9667","8f44c0b856514e6-179ff67e87f87d7a"]},"geometry":{"type":"LineString","coordinates":[[-83.559516,32.807074],[-83.55933200000001,32.806978],[-83.559228,32.806911],[-83.559171,32.806851],[-83.55911900000001,32.806765],[-83.559105,32.806694],[-83.559111,32.806638],[-83.55914,32.806517],[-83.559207,32.806303],[-83.55928200000001,32.806137],[-83.559391,32.805961],[-83.55955200000001,32.805757],[-83.559831,32.805491],[-83.560118,32.805247],[-83.560237,32.805159],[-83.560353,32.80509],[-83.560506,32.805017],[-83.560716,32.804946],[-83.56099300000001,32.804875],[-83.561116,32.804862]]},"id":"8844c0b857fffff-13f7b9ae8fd8f078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67156,32.860339]},"id":"8f44c0a22d1e551-179fe8db06acb910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671406,32.861362]},"id":"8f44c0a22c34742-139fe93b45b21873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c34742-139fe93b45b21873","8f44c0a22d1e551-179fe8db06acb910"]},"geometry":{"type":"LineString","coordinates":[[-83.67156,32.860339],[-83.671406,32.861362]]},"id":"8844c0a22dfffff-17dfb90b29efef35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7295824,32.7969134]},"id":"8f44c0b0c4ab063-13b6fb330c17876e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4ab063-13b6fb330c17876e","8f44c0b0c4a352c-13d6fd24290ff839"]},"geometry":{"type":"LineString","coordinates":[[-83.7295824,32.7969134],[-83.72946800000001,32.796605],[-83.729358,32.796343],[-83.72929,32.796225],[-83.72919300000001,32.796104],[-83.72878700000001,32.795707]]},"id":"8944c0b0c4bffff-13b7bc03a7098463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740621,32.822418]},"id":"8f44c0b08301b2c-13ff403fe20ef357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74060700000001,32.822969]},"id":"8f44c0b0830c6f6-13d7a048ada56502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08301b2c-13ff403fe20ef357","8f44c0b0830c6f6-13d7a048ada56502"]},"geometry":{"type":"LineString","coordinates":[[-83.740621,32.822418],[-83.74060700000001,32.822969]]},"id":"8944c0b0833ffff-13b7704448c90e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74405300000001,32.821119]},"id":"8f44c0b08ac5960-17dff7dee16191c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7454361,32.8211099]},"id":"8f44c0b08a53354-17ddf47e73e08df0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08ac5960-17dff7dee16191c4","8f44c0b08a53354-17ddf47e73e08df0"]},"geometry":{"type":"LineString","coordinates":[[-83.74405300000001,32.821119],[-83.7454361,32.8211099]]},"id":"8844c0b08bfffff-17ddf62ea3f97871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.765707,32.819057]},"id":"8f44c0b0d346295-13d7e30127664bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7657308,32.8181683]},"id":"8f44c0b0d370b4b-179ff2f2452f5eb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d370b4b-179ff2f2452f5eb0","8f44c0b0d346295-13d7e30127664bbc"]},"geometry":{"type":"LineString","coordinates":[[-83.765707,32.819057],[-83.765708,32.818892000000005],[-83.76571600000001,32.818782],[-83.76573,32.818669],[-83.765799,32.818323],[-83.7657308,32.8181683]]},"id":"8944c0b0d37ffff-13bde2eada5ad344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710379,32.855375]},"id":"8f44c0a255b6ced-13f76a1522684356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709991,32.856047700000005]},"id":"8f44c0a242c9aab-1797db07aae8b297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a242c9aab-1797db07aae8b297","8f44c0a255b6ced-13f76a1522684356"]},"geometry":{"type":"LineString","coordinates":[[-83.710379,32.855375],[-83.71025800000001,32.855441],[-83.710092,32.855663],[-83.709991,32.856047700000005]]},"id":"8844c0a243fffff-13bfcaae43d03302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561259,32.871071]},"id":"8f44c0b8bce9202-13d7f6252d90cf58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560128,32.870145]},"id":"8f44c0b8bcc5924-1797b8e80ff762d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bce9202-13d7f6252d90cf58","8f44c0b8bcc5924-1797b8e80ff762d8"]},"geometry":{"type":"LineString","coordinates":[[-83.561259,32.871071],[-83.560128,32.870145]]},"id":"8944c0b8bcfffff-17b7b786938625b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667038,32.808888]},"id":"8f44c0b181b3d8b-13f7b3e543368308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666891,32.806071]},"id":"8f44c0b18c56d9b-1396f4412f89f060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c56d9b-1396f4412f89f060","8f44c0b181b3d8b-13f7b3e543368308"]},"geometry":{"type":"LineString","coordinates":[[-83.667038,32.808888],[-83.667034,32.808672],[-83.66697400000001,32.807274],[-83.66690700000001,32.806706000000005],[-83.666891,32.806071]]},"id":"8744c0b18ffffff-1796f40fcc6d2dd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666421,32.841593]},"id":"8f44c0b1b2a8420-13dfb566e1cd757c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66647300000001,32.840359]},"id":"8f44c0b1b2a5114-17def54662719457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2a8420-13dfb566e1cd757c","8f44c0b1b2a5114-17def54662719457"]},"geometry":{"type":"LineString","coordinates":[[-83.666421,32.841593],[-83.66647300000001,32.840359]]},"id":"8944c0b1b2bffff-17deb556a6fbe241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73998900000001,32.884138]},"id":"8f44c0b52292969-13be41caeeac42c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7401892,32.8836041]},"id":"8f44c0b52294c92-17de914dcacaea27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52292969-13be41caeeac42c4","8f44c0b52294c92-17de914dcacaea27"]},"geometry":{"type":"LineString","coordinates":[[-83.73998900000001,32.884138],[-83.7401892,32.8836041]]},"id":"8a44c0b52297fff-1397618c56b83866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73259800000001,32.860894]},"id":"8f44c0a25a01d9c-17fed3d648075424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25a096e4-13f71244688d5060","8f44c0a25a01d9c-17fed3d648075424"]},"geometry":{"type":"LineString","coordinates":[[-83.733241,32.862344],[-83.73341400000001,32.862336],[-83.733553,32.862323],[-83.73363900000001,32.862308],[-83.73372400000001,32.862282],[-83.733796,32.862251],[-83.733841,32.862223],[-83.733895,32.862175],[-83.733946,32.862104],[-83.73396500000001,32.862066],[-83.733996,32.861972],[-83.73401100000001,32.861868],[-83.734021,32.861556],[-83.73401700000001,32.861336],[-83.734008,32.861243],[-83.733993,32.861173],[-83.733963,32.861095],[-83.73393200000001,32.861049],[-83.73387100000001,32.860987],[-83.733823,32.860956],[-83.73378100000001,32.860937],[-83.733698,32.860911],[-83.73358300000001,32.860894],[-83.733376,32.860889],[-83.73259800000001,32.860894]]},"id":"8844c0a25bfffff-13ded1612d9d6123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738667,32.880668]},"id":"8f44c0b52774219-13b785052ab2c731"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7370331,32.8811401]},"id":"8f44c0b5270b89a-13de99025dc01b1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5270b89a-13de99025dc01b1f","8f44c0b52774219-13b785052ab2c731"]},"geometry":{"type":"LineString","coordinates":[[-83.738667,32.880668],[-83.738557,32.88073],[-83.738353,32.880864],[-83.73822700000001,32.880936000000005],[-83.738145,32.880978],[-83.738011,32.881034],[-83.73789500000001,32.881072],[-83.73772100000001,32.881113],[-83.73761400000001,32.881127],[-83.737468,32.881135],[-83.73712,32.881138],[-83.7370331,32.8811401]]},"id":"8844c0b527fffff-139676f1673557c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681782,32.785345]},"id":"8f44c0b1c80bd0b-17feafe644d68353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68178800000001,32.783983]},"id":"8f44c0b1c805728-17b7efe28226867c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c80bd0b-17feafe644d68353","8f44c0b1c805728-17b7efe28226867c"]},"geometry":{"type":"LineString","coordinates":[[-83.681782,32.785345],[-83.68178400000001,32.784989],[-83.68178800000001,32.783983]]},"id":"8944c0b1c83ffff-17df8fe446466ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689429,32.873409]},"id":"8f44c0a22a6d589-17fefd3ae99f1458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690374,32.875177]},"id":"8f44c0a23d04cf1-13dffaec40122418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23d04cf1-13dffaec40122418","8f44c0a22a6d589-17fefd3ae99f1458"]},"geometry":{"type":"LineString","coordinates":[[-83.689429,32.873409],[-83.689628,32.873612],[-83.689712,32.873716],[-83.68978100000001,32.87382],[-83.689825,32.873928],[-83.68984,32.874051],[-83.689842,32.874231],[-83.68980300000001,32.87438],[-83.689755,32.874499],[-83.68975800000001,32.874566],[-83.689774,32.87463],[-83.689814,32.874691],[-83.689867,32.87476],[-83.690374,32.875177]]},"id":"8644c0a27ffffff-13b7fc30fd800489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670552,32.848968]},"id":"8f44c0a264aead0-13dfab510c9cd565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669617,32.849891]},"id":"8f44c0a2648e083-179fed996c397273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2648e083-179fed996c397273","8f44c0a264aead0-13dfab510c9cd565"]},"geometry":{"type":"LineString","coordinates":[[-83.670552,32.848968],[-83.669617,32.849891]]},"id":"8944c0a264bffff-13fffc753c071167"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67142000000001,32.848132]},"id":"8f44c0a26410c56-13d6a932847daacc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670519,32.84894]},"id":"8f44c0a264aea9c-13bfab65a07da747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26410c56-13d6a932847daacc","8f44c0a264aea9c-13bfab65a07da747"]},"geometry":{"type":"LineString","coordinates":[[-83.67142000000001,32.848132],[-83.67135300000001,32.848219],[-83.670519,32.84894]]},"id":"8844c0a265fffff-13d7fa4781f5b010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62684,32.8730593]},"id":"8f44c0a33c2d85b-179f160903da9355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625192,32.875036]},"id":"8f44c0a33ce519a-13f79a0f0ae8fdd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33ce519a-13f79a0f0ae8fdd2","8f44c0a33c2d85b-179f160903da9355"]},"geometry":{"type":"LineString","coordinates":[[-83.62684,32.8730593],[-83.626107,32.873540000000006],[-83.625864,32.873721],[-83.625731,32.87386],[-83.62557500000001,32.874054],[-83.625437,32.874208],[-83.625338,32.874345000000005],[-83.62529,32.87444],[-83.62526600000001,32.874524],[-83.62522100000001,32.874747],[-83.625192,32.875036]]},"id":"8844c0a33dfffff-17bf587ff44fd4e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761128,32.777206]},"id":"8f44c0b28695126-139dce2f0b19bd90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760475,32.776708]},"id":"8f44c0b2ab49330-13f7cfc7295db2f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2ab49330-13f7cfc7295db2f9","8f44c0b28695126-139dce2f0b19bd90"]},"geometry":{"type":"LineString","coordinates":[[-83.761128,32.777206],[-83.76064600000001,32.776836],[-83.760475,32.776708]]},"id":"8944c0b286bffff-13fdeefabfe93224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63211670000001,32.836508300000006]},"id":"8f44c0a3442292b-17f7b9271a164d7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6321947,32.8364427]},"id":"8f44c0a34426209-17bfb8f6526c6242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3442292b-17f7b9271a164d7d","8f44c0a34426209-17bfb8f6526c6242"]},"geometry":{"type":"LineString","coordinates":[[-83.63211670000001,32.836508300000006],[-83.6321947,32.8364427]]},"id":"8a44c0a34427fff-17df390ebb1f0791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66096,32.840452]},"id":"8f44c0b1b62944c-1796c2bc01611cd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662411,32.840477]},"id":"8f44c0b1b75911d-1796bf312780b9ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b62944c-1796c2bc01611cd0","8f44c0b1b75911d-1796bf312780b9ff"]},"geometry":{"type":"LineString","coordinates":[[-83.66096,32.840452],[-83.662411,32.840477]]},"id":"8844c0b1b7fffff-179ed0f69790c5b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75423,32.871012]},"id":"8f44c0b5041871c-139fdf064a9fe56b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.755009,32.869113]},"id":"8f44c0b50431b34-13fffd1f66b44846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5041871c-139fdf064a9fe56b","8f44c0b50431b34-13fffd1f66b44846"]},"geometry":{"type":"LineString","coordinates":[[-83.75423,32.871012],[-83.754244,32.870903000000006],[-83.75424000000001,32.870737000000005],[-83.754226,32.870632],[-83.754185,32.870472],[-83.754148,32.870049],[-83.754163,32.869956],[-83.75417800000001,32.869903],[-83.75422400000001,32.869799],[-83.754281,32.869698],[-83.75433500000001,32.869624],[-83.754413,32.869535],[-83.75448200000001,32.86947],[-83.75457800000001,32.869394],[-83.754962,32.869149],[-83.755009,32.869113]]},"id":"8944c0b5043ffff-1797feab6313bc55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708668,32.748733]},"id":"8f44c0b04754096-17966e428e415a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70980630000001,32.7486814]},"id":"8f44c0b0477121c-17f7eb7b1d5f251c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04754096-17966e428e415a03","8f44c0b0477121c-17f7eb7b1d5f251c"]},"geometry":{"type":"LineString","coordinates":[[-83.708668,32.748733],[-83.70917700000001,32.748742],[-83.709331,32.748745],[-83.709604,32.748748],[-83.70980630000001,32.7486814]]},"id":"8944c0b0477ffff-179e6cdc18f92ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70734200000001,32.8885]},"id":"8f44c0a2169052b-13d6d17f47c11e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71354500000001,32.888624]},"id":"8f44c0a2162b36e-139e425a6071804c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2162b36e-139e425a6071804c","8f44c0a2169052b-13d6d17f47c11e49"]},"geometry":{"type":"LineString","coordinates":[[-83.70734200000001,32.8885],[-83.707683,32.888511],[-83.707769,32.888513],[-83.712242,32.888596],[-83.71354500000001,32.888624]]},"id":"8744c0a21ffffff-13f7d9ecd70ecb58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64873200000001,32.850657000000005]},"id":"8f44c0a35513990-17fee0968c71e739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648449,32.851563]},"id":"8f44c0a355a9d4a-13b6e1476cd0f008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35513990-17fee0968c71e739","8f44c0a355a9d4a-13b6e1476cd0f008"]},"geometry":{"type":"LineString","coordinates":[[-83.64873200000001,32.850657000000005],[-83.64854100000001,32.851329],[-83.648488,32.851514],[-83.648449,32.851563]]},"id":"8844c0a355fffff-139ff0e88bcc068a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697822,32.859127]},"id":"8f44c0a20c71a91-139e68bd4ee3e068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69723,32.861663]},"id":"8f44c0a201b5b72-13df6a2f46c97f8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201b5b72-13df6a2f46c97f8a","8f44c0a20c71a91-139e68bd4ee3e068"]},"geometry":{"type":"LineString","coordinates":[[-83.697822,32.859127],[-83.69782500000001,32.859409],[-83.697872,32.859583],[-83.697851,32.860238],[-83.697815,32.861098000000005],[-83.697789,32.861455],[-83.697759,32.861531],[-83.697732,32.861559],[-83.69770000000001,32.861575],[-83.697657,32.861596],[-83.69751000000001,32.861629],[-83.69723,32.861663]]},"id":"8744c0a20ffffff-17b6e8dc43d929c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75543300000001,32.775263]},"id":"8f44c0b2aa338dd-17dffc16645f8509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7643697,32.775378]},"id":"8f44c0b2863600d-17b7c644f43082bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2aa338dd-17dffc16645f8509","8f44c0b2863600d-17b7c644f43082bc"]},"geometry":{"type":"LineString","coordinates":[[-83.75543300000001,32.775263],[-83.75606300000001,32.775284],[-83.756409,32.775287],[-83.757059,32.775306],[-83.75836100000001,32.775322],[-83.759027,32.775326],[-83.76031300000001,32.775342],[-83.761671,32.775351],[-83.762319,32.775351],[-83.76362300000001,32.775371],[-83.7643697,32.775378]]},"id":"8644c0b2fffffff-1797f12ddea4942e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68939400000001,32.749259]},"id":"8f44c0b0600d95e-17defd50c6ef0070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69026000000001,32.745227]},"id":"8f44c0b0612c695-1796fb33839a99bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0612c695-1796fb33839a99bc","8f44c0b0600d95e-17defd50c6ef0070"]},"geometry":{"type":"LineString","coordinates":[[-83.68939400000001,32.749259],[-83.68942100000001,32.749086000000005],[-83.689425,32.748811],[-83.689414,32.748261],[-83.689411,32.747686],[-83.68941000000001,32.747436],[-83.689395,32.746887],[-83.689389,32.746301],[-83.68937600000001,32.745604],[-83.68938700000001,32.745522],[-83.689408,32.74548],[-83.68943300000001,32.745447],[-83.689463,32.745416],[-83.689546,32.745362],[-83.689594,32.745342],[-83.689729,32.745306],[-83.69003000000001,32.745218],[-83.69026000000001,32.745227]]},"id":"8844c0b061fffff-13d67d190e44af02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656317,32.852434]},"id":"8f44c0a35181088-13d7ce11ec684cb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656338,32.853119]},"id":"8f44c0a3518a969-17ffee04c6db3c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35181088-13d7ce11ec684cb9","8f44c0a3518a969-17ffee04c6db3c65"]},"geometry":{"type":"LineString","coordinates":[[-83.656317,32.852434],[-83.656338,32.853119]]},"id":"8944c0a351bffff-179fde0b516756fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656473,32.752356]},"id":"8f44c0b15421673-17fecdb064727875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65627900000001,32.751962]},"id":"8f44c0b15420303-17fece29aa9f8b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15420303-17fece29aa9f8b24","8f44c0b15421673-17fecdb064727875"]},"geometry":{"type":"LineString","coordinates":[[-83.656473,32.752356],[-83.656373,32.752181],[-83.65631900000001,32.752059],[-83.65627900000001,32.751962]]},"id":"8a44c0b15427fff-17f7fdf0b37ddc55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60298,32.854942]},"id":"8f44c0a32d92750-13f7d04980a3b472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600818,32.854888]},"id":"8f44c0b8d373173-13d75590c5db38e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d373173-13d75590c5db38e5","8f44c0a32d92750-13f7d04980a3b472"]},"geometry":{"type":"LineString","coordinates":[[-83.60298,32.854942],[-83.602064,32.854919],[-83.601202,32.854898],[-83.600818,32.854888]]},"id":"8944c0b8d37ffff-13d7f2ed200316ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58361020000001,32.854603700000006]},"id":"8f44c0b88b4c474-139f7f93a1e49506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58430050000001,32.854835300000005]},"id":"8f44c0b88b4d86c-13b77de4352cdec2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b4c474-139f7f93a1e49506","8f44c0b88b4d86c-13b77de4352cdec2"]},"geometry":{"type":"LineString","coordinates":[[-83.58361020000001,32.854603700000006],[-83.5837721,32.8547358],[-83.58394240000001,32.8548357],[-83.5840428,32.8548697],[-83.58414210000001,32.8548788],[-83.58424090000001,32.854864],[-83.58430050000001,32.854835300000005]]},"id":"8a44c0b88b4ffff-1397fec5f80924c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687655,32.795504]},"id":"8f44c0b1dda681b-13d6818fab3a9964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68715900000001,32.795056]},"id":"8f44c0b1ca5bd20-17be82c5ab8dba55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dda681b-13d6818fab3a9964","8f44c0b1ca5bd20-17be82c5ab8dba55"]},"geometry":{"type":"LineString","coordinates":[[-83.687655,32.795504],[-83.68715900000001,32.795056]]},"id":"8744c0b1cffffff-17be822aa7514d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69607900000001,32.802754]},"id":"8f44c0b1d125a89-13ff6cfea38bb4a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696014,32.802085000000005]},"id":"8f44c0b1d88bd50-13d76d274a70f701"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d88bd50-13d76d274a70f701","8f44c0b1d125a89-13ff6cfea38bb4a7"]},"geometry":{"type":"LineString","coordinates":[[-83.69607900000001,32.802754],[-83.696014,32.802085000000005]]},"id":"8844c0b1d9fffff-13be7d12fddf340f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71505900000001,32.806375]},"id":"8f44c0b0e770d0b-13d67ea820c55478"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71154,32.806359]},"id":"8f44c0b0e7a9990-13d6673f8dc62484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e770d0b-13d67ea820c55478","8f44c0b0e7a9990-13d6673f8dc62484"]},"geometry":{"type":"LineString","coordinates":[[-83.71505900000001,32.806375],[-83.71505400000001,32.806511],[-83.715047,32.806717],[-83.715029,32.806792],[-83.71498000000001,32.806948000000006],[-83.714972,32.807068],[-83.714985,32.807181],[-83.71501500000001,32.807274],[-83.715062,32.807391],[-83.715118,32.807505],[-83.71515000000001,32.807645],[-83.71516000000001,32.807772],[-83.715135,32.807923],[-83.71499200000001,32.808424],[-83.71492400000001,32.808591],[-83.71483400000001,32.80874],[-83.71466600000001,32.808928],[-83.71448000000001,32.809103],[-83.714325,32.809227],[-83.71417600000001,32.809323],[-83.71403600000001,32.809374000000005],[-83.713975,32.809385],[-83.71381600000001,32.809399],[-83.71355000000001,32.809429],[-83.71339900000001,32.809483],[-83.71324800000001,32.809554],[-83.713019,32.809688],[-83.712714,32.809956],[-83.71248,32.810181],[-83.712376,32.81026],[-83.71225000000001,32.810333],[-83.712157,32.810394],[-83.71201400000001,32.810564],[-83.71194600000001,32.810626],[-83.711859,32.810682],[-83.71175000000001,32.810713],[-83.71153100000001,32.810715],[-83.711375,32.810729],[-83.71126600000001,32.810769],[-83.71100600000001,32.810950000000005],[-83.71089,32.811014],[-83.710784,32.811054],[-83.710643,32.811067],[-83.710498,32.811053],[-83.71044300000001,32.811038],[-83.71011700000001,32.810888],[-83.71004500000001,32.810841],[-83.70998800000001,32.810784000000005],[-83.709957,32.81072],[-83.70992600000001,32.810623],[-83.70991400000001,32.810502],[-83.70991500000001,32.810243],[-83.709925,32.809953],[-83.709917,32.809607],[-83.709889,32.809086],[-83.70990400000001,32.808992],[-83.709953,32.80888],[-83.710013,32.808801],[-83.71012800000001,32.808723],[-83.710615,32.808484],[-83.710971,32.808331],[-83.711123,32.808245],[-83.71146,32.807955],[-83.71153600000001,32.807879],[-83.71169300000001,32.807654],[-83.71178,32.807484],[-83.71181800000001,32.807383],[-83.71182400000001,32.80734],[-83.71182400000001,32.807305],[-83.71170000000001,32.807026],[-83.711568,32.806751000000006],[-83.71154200000001,32.806595],[-83.71154,32.806359]]},"id":"8844c0b0e7fffff-13d6658d8849378f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71530340000001,32.8246138]},"id":"8f44c0b0a06cca8-17d7be0f6e5ecc78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715327,32.82264]},"id":"8f44c0b0a14c581-13963e00a6186b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a14c581-13963e00a6186b09","8f44c0b0a06cca8-17d7be0f6e5ecc78"]},"geometry":{"type":"LineString","coordinates":[[-83.71530340000001,32.8246138],[-83.715261,32.824488],[-83.71526,32.824382],[-83.715327,32.82264]]},"id":"8844c0b0a1fffff-17f6fe1729228ffa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701209,32.792195]},"id":"8f44c0b0339916e-13b7e0786360af0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706534,32.791123]},"id":"8f44c0b03376ad2-1797f3784847bdf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0339916e-13b7e0786360af0e","8f44c0b03376ad2-1797f3784847bdf7"]},"geometry":{"type":"LineString","coordinates":[[-83.701209,32.792195],[-83.701891,32.791944],[-83.70206800000001,32.791885],[-83.702216,32.791855000000005],[-83.702404,32.791836],[-83.70263,32.791834],[-83.702872,32.791832],[-83.70532200000001,32.791852],[-83.705543,32.791846],[-83.705667,32.791834],[-83.70576700000001,32.791808],[-83.70589100000001,32.791753],[-83.70602600000001,32.791649],[-83.706263,32.791430000000005],[-83.70648700000001,32.791204],[-83.706534,32.791123]]},"id":"8844c0b033fffff-17d779bdea07d54c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64160600000001,32.824041]},"id":"8f44c0b1a6004da-17f7f1fc473746b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64297350000001,32.824866400000005]},"id":"8f44c0b1a60d8d4-17f7eea5973f58e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6004da-17f7f1fc473746b8","8f44c0b1a60d8d4-17f7eea5973f58e3"]},"geometry":{"type":"LineString","coordinates":[[-83.64160600000001,32.824041],[-83.6428884,32.824822600000005],[-83.64297350000001,32.824866400000005]]},"id":"8944c0b1a63ffff-17f7f051e1ef4f5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621387,32.849761]},"id":"8f44c0a36235d8c-17bfa359209835c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36235d8c-17bfa359209835c6","8f44c0a36235812-17df62e624fea242"]},"geometry":{"type":"LineString","coordinates":[[-83.621571,32.849807000000006],[-83.621493,32.849759],[-83.62146200000001,32.849756],[-83.621387,32.849761]]},"id":"8b44c0a36235fff-17d7331d699c23c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697422,32.784354]},"id":"8f44c0b0318ad4c-179f69b744477e5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69612400000001,32.78175]},"id":"8f44c0b03ceb274-17b7ece28271587f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ceb274-17b7ece28271587f","8f44c0b0318ad4c-179f69b744477e5f"]},"geometry":{"type":"LineString","coordinates":[[-83.697422,32.784354],[-83.69660900000001,32.784332],[-83.69654600000001,32.784325],[-83.696461,32.784304],[-83.69638900000001,32.784275],[-83.69633,32.784242],[-83.69626500000001,32.784188],[-83.696222,32.784135],[-83.696194,32.78409],[-83.696168,32.784005],[-83.69616400000001,32.783914],[-83.69626500000001,32.783228],[-83.696286,32.783043],[-83.69629300000001,32.782932],[-83.696281,32.782815],[-83.69624200000001,32.782651],[-83.69616500000001,32.782458000000005],[-83.696144,32.782345],[-83.69612400000001,32.78175]]},"id":"8744c0b03ffffff-13d67c325b08abfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698626,32.883781]},"id":"8f44c0a238c8309-17df66c6cdb4cd30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6991892,32.884029000000005]},"id":"8f44c0a23bb26ae-13f66566ca8552a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23bb26ae-13f66566ca8552a2","8f44c0a238c8309-17df66c6cdb4cd30"]},"geometry":{"type":"LineString","coordinates":[[-83.698626,32.883781],[-83.69895600000001,32.883916],[-83.699123,32.883992],[-83.6991892,32.884029000000005]]},"id":"8844c0a239fffff-139776154bcd6bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621308,32.835848]},"id":"8f44c0a36832712-13d7238a88b0dc29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6227193,32.833922300000005]},"id":"8f44c0a36902780-179770187c9b45b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36832712-13d7238a88b0dc29","8f44c0a36902780-179770187c9b45b9"]},"geometry":{"type":"LineString","coordinates":[[-83.621308,32.835848],[-83.621485,32.835676],[-83.62169,32.835469],[-83.62191100000001,32.835231],[-83.622122,32.834943],[-83.62217000000001,32.834854],[-83.622377,32.834362],[-83.622431,32.834268],[-83.6227193,32.833922300000005]]},"id":"8844c0a369fffff-13fff1b6ff86e686"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.751856,32.871178]},"id":"8f44c0b50481691-1397e4d2008a2f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75330000000001,32.868899]},"id":"8f44c0b5058836a-13f5e14b88401880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5058836a-13f5e14b88401880","8f44c0b50481691-1397e4d2008a2f44"]},"geometry":{"type":"LineString","coordinates":[[-83.751856,32.871178],[-83.751794,32.871045],[-83.75175700000001,32.870939],[-83.751751,32.870905],[-83.75175700000001,32.870849],[-83.75195500000001,32.870139],[-83.751996,32.870052],[-83.752105,32.869869],[-83.752184,32.869757],[-83.75232000000001,32.869601],[-83.752404,32.869517],[-83.752548,32.869394],[-83.75267000000001,32.869307],[-83.75281600000001,32.869221],[-83.753043,32.869112],[-83.753192,32.869027],[-83.753241,32.868989],[-83.75330000000001,32.868899]]},"id":"8844c0b505fffff-17fde3bc572e72be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657775,32.778318]},"id":"8f44c0b110c30e0-17d6ca82ad86b11c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658839,32.779089]},"id":"8f44c0b110c9d40-13b6e7e9ab648f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b110c30e0-17d6ca82ad86b11c","8f44c0b110c9d40-13b6e7e9ab648f10"]},"geometry":{"type":"LineString","coordinates":[[-83.657775,32.778318],[-83.65775500000001,32.778616],[-83.65776000000001,32.778655],[-83.657776,32.778706],[-83.657801,32.778734],[-83.65782,32.778748],[-83.65786100000001,32.778768],[-83.657886,32.778774],[-83.658023,32.778776],[-83.65808700000001,32.778784],[-83.658113,32.778795],[-83.65815900000001,32.778824],[-83.658207,32.778874],[-83.65827200000001,32.77899],[-83.658291,32.779016],[-83.65832300000001,32.779046],[-83.65837900000001,32.779061],[-83.65856600000001,32.779078000000005],[-83.658806,32.779082],[-83.658839,32.779089]]},"id":"8944c0b110fffff-1797c9907bba21d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6988037,32.8885633]},"id":"8f44c0a23a9c684-13fe7657bf4495de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69771,32.889]},"id":"8f44c0a2306951d-179f690348b07e6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2306951d-179f690348b07e6e","8f44c0a23a9c684-13fe7657bf4495de"]},"geometry":{"type":"LineString","coordinates":[[-83.6988037,32.8885633],[-83.69844,32.888699],[-83.697916,32.888906],[-83.69771,32.889]]},"id":"8744c0a23ffffff-13fe67af32c01abd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600047,32.854349]},"id":"8f44c0b8d30d0c8-17f77772a05bda86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.599058,32.854322]},"id":"8f44c0b8d30ad5c-17df59dcca9da7bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d30d0c8-17f77772a05bda86","8f44c0b8d30ad5c-17df59dcca9da7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.600047,32.854349],[-83.599314,32.854322],[-83.599058,32.854322]]},"id":"8a44c0b8d30ffff-17f7d8a7a5031248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74386600000001,32.889308]},"id":"8f44c0a2c94590c-17ddf853cb0ea764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74334,32.889348000000005]},"id":"8f44c0a2c94466e-17f7f99c8ce1cf07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c94590c-17ddf853cb0ea764","8f44c0a2c94466e-17f7f99c8ce1cf07"]},"geometry":{"type":"LineString","coordinates":[[-83.74386600000001,32.889308],[-83.74381000000001,32.889266],[-83.74374,32.889235],[-83.743694,32.889226],[-83.74360700000001,32.889243],[-83.743531,32.889277],[-83.74334,32.889348000000005]]},"id":"8a44c0a2c947fff-17b5f8f5b779bb49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7173825,32.8883213]},"id":"8f44c0a212b01b4-13f6f8fbfd359907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716339,32.8886559]},"id":"8f44c0a2174945c-13b7fb882fb4504d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a212b01b4-13f6f8fbfd359907","8f44c0a2174945c-13b7fb882fb4504d"]},"geometry":{"type":"LineString","coordinates":[[-83.7173825,32.8883213],[-83.7171802,32.888329500000005],[-83.7170488,32.8883479],[-83.7168809,32.8884583],[-83.7166802,32.888544100000004],[-83.716339,32.8886559]]},"id":"8744c0a21ffffff-13be3a44372c4c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75286600000001,32.756648000000006]},"id":"8f44c0b2e0eed48-13fde25ac9c61a2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7532204,32.7554894]},"id":"8f44c0b2e00b006-1795e17d475a38ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e00b006-1795e17d475a38ae","8f44c0b2e0eed48-13fde25ac9c61a2a"]},"geometry":{"type":"LineString","coordinates":[[-83.75286600000001,32.756648000000006],[-83.7532204,32.7554894]]},"id":"8844c0b2e1fffff-17fff1ec06f366bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56112200000001,32.865100000000005]},"id":"8f44c0b8bd1d929-13bfb67ac3e489b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56033400000001,32.864818]},"id":"8f44c0b8bd1120a-13fff867464c64f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd1d929-13bfb67ac3e489b2","8f44c0b8bd1120a-13fff867464c64f1"]},"geometry":{"type":"LineString","coordinates":[[-83.56112200000001,32.865100000000005],[-83.56033400000001,32.864818]]},"id":"8a44c0b8bd1ffff-13d7f77101cf4495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73917200000001,32.918944]},"id":"8f44c0a28a2e063-17b603c9871aa7f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74026400000001,32.918703]},"id":"8f44c0a28b53a22-179f611f04accab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28a2e063-17b603c9871aa7f1","8f44c0a28b53a22-179f611f04accab3"]},"geometry":{"type":"LineString","coordinates":[[-83.73917200000001,32.918944],[-83.74022020000001,32.9187127],[-83.74026400000001,32.918703]]},"id":"8844c0a28bfffff-17deb2744c5d1eb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661167,32.791539]},"id":"8f44c0b1e86ad52-1797e23aaf5cd713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66122800000001,32.790121]},"id":"8f44c0b1e86400b-13b7e21485c3c906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e86400b-13b7e21485c3c906","8f44c0b1e86ad52-1797e23aaf5cd713"]},"geometry":{"type":"LineString","coordinates":[[-83.661167,32.791539],[-83.66117100000001,32.791265],[-83.66122800000001,32.790121]]},"id":"8944c0b1e87ffff-17def22a0d5c1c32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726208,32.90462]},"id":"8f44c0a2c6805a9-13bfa3700088451c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726223,32.904423]},"id":"8f44c0a2c686ac0-13b66366a75ae065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c6805a9-13bfa3700088451c","8f44c0a2c686ac0-13b66366a75ae065"]},"geometry":{"type":"LineString","coordinates":[[-83.726208,32.90462],[-83.726015,32.904612],[-83.72596800000001,32.904592],[-83.725936,32.904556],[-83.72592800000001,32.904521],[-83.725931,32.904494],[-83.725948,32.904462],[-83.72597400000001,32.904437],[-83.726014,32.904421],[-83.72604600000001,32.904418],[-83.726099,32.90442],[-83.726223,32.904423]]},"id":"8a44c0a2c687fff-13fe23d185de2082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633645,32.861342]},"id":"8f44c0a300f0813-1397c56be86be2c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633515,32.861717]},"id":"8f44c0a300f3985-13ff25bd2bc833da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a300f3985-13ff25bd2bc833da","8f44c0a300f0813-1397c56be86be2c0"]},"geometry":{"type":"LineString","coordinates":[[-83.633645,32.861342],[-83.633515,32.861717]]},"id":"8a44c0a300f7fff-13f7f5948e1af6ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697287,32.883674]},"id":"8f44c0a238d8220-179e6a0ba8aab32a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6975129,32.8835199]},"id":"8f44c0a238dd784-17b7f97e71623b23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a238d8220-179e6a0ba8aab32a","8f44c0a238dd784-17b7f97e71623b23"]},"geometry":{"type":"LineString","coordinates":[[-83.697287,32.883674],[-83.69741400000001,32.883623],[-83.69744700000001,32.883598],[-83.697477,32.883561],[-83.6975129,32.8835199]]},"id":"8a44c0a238dffff-17f679bf23e88705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62037600000001,32.833337]},"id":"8f44c0a369a6286-17b7a5d102b706a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62002100000001,32.833176]},"id":"8f44c0a369b5873-17bf26aeee0c7e46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369a6286-17b7a5d102b706a6","8f44c0a369b5873-17bf26aeee0c7e46"]},"geometry":{"type":"LineString","coordinates":[[-83.62037600000001,32.833337],[-83.62002100000001,32.833176]]},"id":"8944c0a369bffff-17f7763ff81c66ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.576858,32.849545]},"id":"8f44c0b888515ab-17b7b00fca031f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.578218,32.852536]},"id":"8f44c0b88ba849e-13978cbdc94f6b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b888515ab-17b7b00fca031f85","8f44c0b88ba849e-13978cbdc94f6b73"]},"geometry":{"type":"LineString","coordinates":[[-83.576858,32.849545],[-83.576982,32.849708],[-83.577455,32.850696],[-83.57754800000001,32.850976],[-83.577675,32.851714],[-83.57774400000001,32.851937],[-83.577827,32.852072],[-83.57818400000001,32.852454],[-83.578218,32.852536]]},"id":"8744c0b88ffffff-17ffce701e4400a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66153100000001,32.831488]},"id":"8f44c0b1b19cae0-13b6c1572168fb31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66265800000001,32.831504]},"id":"8f44c0b1b18c11a-13bebe96c46eb4ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b18c11a-13bebe96c46eb4ff","8f44c0b1b19cae0-13b6c1572168fb31"]},"geometry":{"type":"LineString","coordinates":[[-83.66153100000001,32.831488],[-83.66265800000001,32.831504]]},"id":"8944c0b1b1bffff-13b7bff6fcfb1bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658502,32.832675]},"id":"8f44c0b1b55d260-1397e8bc43b36d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6585479,32.8315274]},"id":"8f44c0b1b540c42-13bee89f92c753fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b55d260-1397e8bc43b36d0a","8f44c0b1b540c42-13bee89f92c753fb"]},"geometry":{"type":"LineString","coordinates":[[-83.658502,32.832675],[-83.6585479,32.8315274]]},"id":"8944c0b1b57ffff-139fc8adf11ae094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.530552,32.824182]},"id":"8f44c0b837344ed-17d9c11d0a4dfa16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.491363,32.8223896]},"id":"8f44c0b9e9a230e-13f9e0ca26c7bfa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b9e9a230e-13f9e0ca26c7bfa1","8f44c0b837344ed-17d9c11d0a4dfa16"]},"geometry":{"type":"LineString","coordinates":[[-83.530552,32.824182],[-83.529635,32.824938],[-83.529452,32.825083],[-83.529398,32.825121],[-83.529199,32.825212],[-83.52902200000001,32.825232],[-83.528935,32.825237],[-83.527708,32.825263],[-83.52712000000001,32.825265],[-83.52682800000001,32.825249],[-83.52649000000001,32.825211],[-83.526133,32.825136],[-83.52526300000001,32.824939],[-83.52445200000001,32.824759],[-83.523689,32.82459],[-83.522767,32.824402],[-83.52249400000001,32.82434],[-83.52210500000001,32.824229],[-83.52196500000001,32.824182],[-83.521915,32.824163],[-83.52183600000001,32.824132],[-83.521561,32.823994],[-83.521451,32.823925],[-83.52127,32.823782],[-83.520978,32.823542],[-83.520083,32.822754],[-83.51979800000001,32.822515],[-83.519626,32.822392],[-83.519486,32.822308],[-83.51928500000001,32.822203],[-83.519006,32.822091],[-83.518789,32.822024],[-83.51848600000001,32.82191],[-83.518158,32.821796],[-83.51791800000001,32.821731],[-83.517363,32.821609],[-83.516734,32.821475],[-83.516379,32.821409],[-83.51613400000001,32.821384],[-83.515906,32.821382],[-83.515665,32.821413],[-83.514888,32.821601],[-83.51446100000001,32.821686],[-83.513941,32.821703],[-83.51386500000001,32.821702],[-83.51363400000001,32.821679],[-83.513385,32.821626],[-83.512967,32.821527],[-83.51275700000001,32.821499],[-83.512518,32.821482],[-83.512068,32.821468],[-83.511621,32.821472],[-83.511438,32.821477],[-83.51112900000001,32.821513],[-83.510692,32.821593],[-83.509724,32.821765],[-83.509431,32.821817],[-83.50859600000001,32.82197],[-83.508384,32.822032],[-83.508235,32.822089000000005],[-83.50810200000001,32.82215],[-83.5079,32.822263],[-83.50769000000001,32.822392],[-83.50637800000001,32.823296],[-83.50604,32.823507],[-83.505813,32.823639],[-83.50541700000001,32.823859],[-83.50520900000001,32.823956],[-83.50503300000001,32.82403],[-83.50446600000001,32.824246],[-83.504198,32.824334],[-83.50389100000001,32.824409],[-83.50372800000001,32.824437],[-83.50315300000001,32.8245],[-83.50292,32.824531],[-83.50281600000001,32.824548],[-83.50261900000001,32.824593],[-83.50238800000001,32.824672],[-83.50227600000001,32.82472],[-83.50214000000001,32.824793],[-83.50201600000001,32.824863],[-83.501903,32.824942],[-83.501615,32.825159],[-83.501354,32.825358],[-83.501222,32.82544],[-83.501064,32.825524],[-83.500771,32.825636],[-83.500591,32.825679],[-83.500304,32.825715],[-83.500049,32.825716],[-83.499876,32.825696],[-83.498524,32.825476],[-83.497201,32.825242],[-83.497071,32.825215],[-83.49676000000001,32.825136],[-83.49661800000001,32.825088],[-83.496414,32.825004],[-83.49610100000001,32.824857],[-83.49567,32.824634],[-83.495345,32.824475],[-83.49507100000001,32.824354],[-83.494827,32.82426],[-83.49455,32.824162],[-83.49430600000001,32.824091],[-83.493768,32.823945],[-83.493723,32.823931],[-83.493514,32.823864],[-83.49340500000001,32.823825],[-83.49329300000001,32.823777],[-83.493177,32.823721],[-83.49300000000001,32.823628],[-83.492855,32.82354],[-83.492557,32.823332],[-83.49193600000001,32.822837],[-83.49172,32.822659],[-83.491363,32.8223896]]},"id":"8544c0bbfffffff-17fe31239267db99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702224,32.886469000000005]},"id":"8f44c0a23a33020-17df7dfe09546fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69973800000001,32.885672]},"id":"8f44c0a23b988a6-17ff640fc8e98c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23a33020-17df7dfe09546fff","8f44c0a23b988a6-17ff640fc8e98c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.702224,32.886469000000005],[-83.702133,32.886339],[-83.70208000000001,32.886297],[-83.701977,32.886257],[-83.701739,32.886232],[-83.701025,32.886209],[-83.700567,32.886198],[-83.700298,32.88617],[-83.700201,32.88615],[-83.700117,32.886105],[-83.70004200000001,32.886028],[-83.69992,32.885852],[-83.69973800000001,32.885672]]},"id":"8844c0a23bfffff-1797e11fe3706786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76646600000001,32.866186]},"id":"8f44c0b5088b026-17d7c126cd12c535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76595370000001,32.866716000000004]},"id":"8f44c0b50120165-17b5c266fdff5244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50120165-17b5c266fdff5244","8f44c0b5088b026-17d7c126cd12c535"]},"geometry":{"type":"LineString","coordinates":[[-83.76646600000001,32.866186],[-83.76595370000001,32.866716000000004]]},"id":"8844c0b509fffff-17ffe1c6d1c27fcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.754147,32.886792]},"id":"8f44c0b53ce3b01-17b5df3a2f3616c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75490520000001,32.8875108]},"id":"8f44c0b53ce8b59-13f7dd60465ec6ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53ce8b59-13f7dd60465ec6ad","8f44c0b53ce3b01-17b5df3a2f3616c7"]},"geometry":{"type":"LineString","coordinates":[[-83.754147,32.886792],[-83.75490520000001,32.8875108]]},"id":"8944c0b53cfffff-1395fe4d34f4fd0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759596,32.866449]},"id":"8f44c0b50cc1112-17fff1ec8876aaa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75774700000001,32.865335]},"id":"8f44c0b50c89075-13d7f670245ddd94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50cc1112-17fff1ec8876aaa1","8f44c0b50c89075-13d7f670245ddd94"]},"geometry":{"type":"LineString","coordinates":[[-83.759596,32.866449],[-83.759302,32.866428],[-83.759006,32.866397],[-83.758853,32.866371],[-83.758779,32.866355],[-83.758708,32.866334],[-83.758612,32.86629],[-83.75855200000001,32.866253],[-83.75848400000001,32.8662],[-83.75841600000001,32.866132],[-83.75812300000001,32.865783],[-83.75803400000001,32.865674],[-83.75792700000001,32.865541],[-83.757869,32.865457],[-83.75774700000001,32.865335]]},"id":"8944c0b50cfffff-1795f46bb9bcbf6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65505800000001,32.81969]},"id":"8f44c0b1aaf5c19-13d6d124c32bcfce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653929,32.817473]},"id":"8f44c0b1aaa5d46-17fef3e66b068a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aaa5d46-17fef3e66b068a37","8f44c0b1aaf5c19-13d6d124c32bcfce"]},"geometry":{"type":"LineString","coordinates":[[-83.65505800000001,32.81969],[-83.654459,32.819173],[-83.654369,32.819085],[-83.65435000000001,32.819056],[-83.654328,32.819021],[-83.65431600000001,32.818951000000006],[-83.65429800000001,32.818261],[-83.65428800000001,32.818115],[-83.654257,32.817964],[-83.654211,32.817863],[-83.65412900000001,32.817734],[-83.653929,32.817473]]},"id":"8844c0b1abfffff-13d6d2bfd0757d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61469600000001,32.85579]},"id":"8f44c0a329aa513-13f7f3af0884412a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61463300000001,32.856679]},"id":"8f44c0a329881a8-17b773d666a4cd41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329881a8-17b773d666a4cd41","8f44c0a329aa513-13f7f3af0884412a"]},"geometry":{"type":"LineString","coordinates":[[-83.61469600000001,32.85579],[-83.61463300000001,32.856679]]},"id":"8944c0a329bffff-179fb3c2bb59d8b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70500100000001,32.744056]},"id":"8f44c0b04444d00-13bf573666ab4226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70396500000001,32.731262]},"id":"8f44c0b31ae8ac8-13fed9bde0fd1a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b31ae8ac8-13fed9bde0fd1a00","8f44c0b04444d00-13bf573666ab4226"]},"geometry":{"type":"LineString","coordinates":[[-83.70500100000001,32.744056],[-83.70499600000001,32.743781000000006],[-83.705004,32.741386],[-83.705,32.74111],[-83.70491200000001,32.738855],[-83.704876,32.73807],[-83.70485400000001,32.737668],[-83.70482200000001,32.737445],[-83.704786,32.737278],[-83.704728,32.737096],[-83.704639,32.73686],[-83.70451200000001,32.73655],[-83.70434900000001,32.736158],[-83.704186,32.735748],[-83.70407,32.73538],[-83.70399900000001,32.735047],[-83.703964,32.734699],[-83.70396000000001,32.734288],[-83.70397200000001,32.733596],[-83.70396600000001,32.73332],[-83.703974,32.732573],[-83.70398300000001,32.731672],[-83.703979,32.731395],[-83.70396500000001,32.731262]]},"id":"8544c0b3fffffff-1397584a2d8972de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69873000000001,32.791578]},"id":"8f44c0b03745a84-17b66685cce1f23e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699308,32.791206]},"id":"8f44c0b03761256-17d7e51c8a06acf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03745a84-17b66685cce1f23e","8f44c0b03761256-17d7e51c8a06acf8"]},"geometry":{"type":"LineString","coordinates":[[-83.69873000000001,32.791578],[-83.698774,32.791556],[-83.69900200000001,32.791404],[-83.69920900000001,32.791282],[-83.699308,32.791206]]},"id":"8944c0b0377ffff-17be65cfa0beb15f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69565440000001,32.791325400000005]},"id":"8f44c0b03620863-17966e0800ab7699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03745a84-17b66685cce1f23e","8f44c0b03620863-17966e0800ab7699"]},"geometry":{"type":"LineString","coordinates":[[-83.69565440000001,32.791325400000005],[-83.695739,32.791286],[-83.69678800000001,32.791302],[-83.697888,32.791324],[-83.698195,32.791325],[-83.698299,32.791342],[-83.69843,32.791379],[-83.69848300000001,32.791403],[-83.698592,32.791472],[-83.69873000000001,32.791578]]},"id":"8844c0b037fffff-17966a36e9e618ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53895800000001,32.81917]},"id":"8f44c0b838d8336-139fec9749d17a20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.540644,32.81983]},"id":"8f44c0b83b9459a-13bfe8798e06591e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b838d8336-139fec9749d17a20","8f44c0b83b9459a-13bfe8798e06591e"]},"geometry":{"type":"LineString","coordinates":[[-83.53895800000001,32.81917],[-83.53905900000001,32.819252],[-83.539367,32.819477],[-83.53958700000001,32.819611],[-83.53972900000001,32.819679],[-83.53983600000001,32.819722],[-83.539966,32.819763],[-83.54009500000001,32.819791],[-83.540323,32.819819],[-83.540644,32.81983]]},"id":"8744c0b83ffffff-13b7faa2c89b75e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616107,32.844814]},"id":"8f44c0a3601a6d0-13bff03d252ef57f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615077,32.844172]},"id":"8f44c0a360ae395-1797b2c0eb456ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360ae395-1797b2c0eb456ddd","8f44c0a3601a6d0-13bff03d252ef57f"]},"geometry":{"type":"LineString","coordinates":[[-83.616107,32.844814],[-83.615077,32.844172]]},"id":"8844c0a361fffff-17f7317f02e044a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571005,32.821903]},"id":"8f44c0b8cda5232-13bffe59e89ba4cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5823459,32.8162535]},"id":"8f44c0baa396d68-13fff2a9dae924bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0baa396d68-13fff2a9dae924bd","8f44c0b8cda5232-13bffe59e89ba4cd"]},"geometry":{"type":"LineString","coordinates":[[-83.571005,32.821903],[-83.571128,32.821827],[-83.571261,32.821664000000006],[-83.571989,32.820687],[-83.572353,32.820197],[-83.572687,32.819777],[-83.572767,32.819702],[-83.57288700000001,32.819601],[-83.57295,32.819561],[-83.57344300000001,32.819324],[-83.5744799,32.8188759],[-83.5750546,32.8186057],[-83.575596,32.818301000000005],[-83.57616900000001,32.817921000000005],[-83.57662,32.817613],[-83.576864,32.817455],[-83.57693,32.817417],[-83.57709600000001,32.817335],[-83.577229,32.817295],[-83.57736030000001,32.8172646],[-83.5774712,32.8172566],[-83.5778413,32.8172802],[-83.578136,32.8172921],[-83.578584,32.817332],[-83.579014,32.817341],[-83.579211,32.817321],[-83.57948900000001,32.817264],[-83.57988300000001,32.817149],[-83.580754,32.816913],[-83.5812684,32.816707],[-83.5823459,32.8162535]]},"id":"8544c0bbfffffff-13b7f1781e436783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568959,32.815274]},"id":"8f44c0b81b0e41a-139fe358ad0da3af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572406,32.814704]},"id":"8f44c0baa4ce6f5-17b79aee466bf090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0baa4ce6f5-17b79aee466bf090","8f44c0b81b0e41a-139fe358ad0da3af"]},"geometry":{"type":"LineString","coordinates":[[-83.568959,32.815274],[-83.56963400000001,32.815128],[-83.570272,32.815033],[-83.571425,32.814842],[-83.572406,32.814704]]},"id":"8644c0b87ffffff-17dfdf25a5b85e5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67098100000001,32.831814]},"id":"8f44c0b1bb806b6-13ffea44ebf4206d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671023,32.829827]},"id":"8f44c0b1b85aae9-1797ea2aa38d6039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb806b6-13ffea44ebf4206d","8f44c0b1b85aae9-1797ea2aa38d6039"]},"geometry":{"type":"LineString","coordinates":[[-83.67098100000001,32.831814],[-83.67102600000001,32.830281],[-83.671023,32.829827]]},"id":"8744c0b1bffffff-17feea33d39bcf84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695098,32.802976]},"id":"8f44c0b1d122320-13966f63ce7c7078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69277100000001,32.802917]},"id":"8f44c0b1dc4b8d5-13df75122456af9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d122320-13966f63ce7c7078","8f44c0b1dc4b8d5-13df75122456af9c"]},"geometry":{"type":"LineString","coordinates":[[-83.695098,32.802976],[-83.69277100000001,32.802917]]},"id":"8844c0b1d1fffff-13f7f23af25aa187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580859,32.849019000000006]},"id":"8f44c0b8d49c98d-13ffe64b29ad479b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579249,32.851833]},"id":"8f44c0b88b13955-13dfaa396c96ae7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d49c98d-13ffe64b29ad479b","8f44c0b88b13955-13dfaa396c96ae7b"]},"geometry":{"type":"LineString","coordinates":[[-83.580859,32.849019000000006],[-83.58067700000001,32.849235],[-83.58057500000001,32.849347],[-83.58050300000001,32.84937],[-83.58039600000001,32.849382],[-83.580275,32.849474],[-83.58014800000001,32.849663],[-83.57992700000001,32.850034],[-83.579794,32.850279],[-83.579693,32.850565],[-83.579363,32.851576],[-83.579249,32.851833]]},"id":"8744c0b88ffffff-179fa89b772b9179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700529,32.780262]},"id":"8f44c0b0389e335-139fe2216b6c64df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700584,32.778892]},"id":"8f44c0b038b341e-17b7e1ff04f8bc2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038b341e-17b7e1ff04f8bc2a","8f44c0b0389e335-139fe2216b6c64df"]},"geometry":{"type":"LineString","coordinates":[[-83.700529,32.780262],[-83.700584,32.778892]]},"id":"8944c0b038bffff-13f7e21037171c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630379,32.871983]},"id":"8f44c0a33993a0e-13ff6d6523fc99a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33993a0e-13ff6d6523fc99a1","8f44c0a33d6da23-13ff8daa88911874"]},"geometry":{"type":"LineString","coordinates":[[-83.630379,32.871983],[-83.63033,32.872076],[-83.630297,32.872157],[-83.630273,32.872256],[-83.630268,32.872388]]},"id":"8944c0a339bffff-13ffad9452180143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67773100000001,32.750352]},"id":"8f44c0b064c6019-139e99ca20212439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67984200000001,32.75036]},"id":"8f44c0b064536b5-139f94a2c67fb79c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b064c6019-139e99ca20212439","8f44c0b064536b5-139f94a2c67fb79c"]},"geometry":{"type":"LineString","coordinates":[[-83.67773100000001,32.750352],[-83.679253,32.750431],[-83.679384,32.750431],[-83.679525,32.750421],[-83.67969500000001,32.750396],[-83.67984200000001,32.75036]]},"id":"8844c0b065fffff-13b7f734e57a0d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68190600000001,32.832102]},"id":"8f44c0b197ac8d1-139fcf98c759c6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686977,32.832182]},"id":"8f44c0b190ca4b1-13d7c3376d5973a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ca4b1-13d7c3376d5973a6","8f44c0b197ac8d1-139fcf98c759c6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.68190600000001,32.832102],[-83.685197,32.832178],[-83.686977,32.832182]]},"id":"8744c0b19ffffff-13d6c9683fdc4c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661872,32.865673]},"id":"8f44c0a352ce5aa-1397e082003e9345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66211200000001,32.866273]},"id":"8f44c0a352ca374-179ebfec0fcb3309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a352ce5aa-1397e082003e9345","8f44c0a352ca374-179ebfec0fcb3309"]},"geometry":{"type":"LineString","coordinates":[[-83.661872,32.865673],[-83.661707,32.865716],[-83.66114300000001,32.865879],[-83.66104800000001,32.865918],[-83.66098500000001,32.865972],[-83.660949,32.866028],[-83.660939,32.866155],[-83.66095100000001,32.866278],[-83.660976,32.866332],[-83.661057,32.866363],[-83.661128,32.866362],[-83.66211200000001,32.866273]]},"id":"8944c0a352fffff-179ee1a63e6d4245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66867400000001,32.810778]},"id":"8f44c0b18188b19-1796efe6c1c84143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668422,32.812154]},"id":"8f44c0b1801268e-13fef08446a18e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1801268e-13fef08446a18e59","8f44c0b18188b19-1796efe6c1c84143"]},"geometry":{"type":"LineString","coordinates":[[-83.66867400000001,32.810778],[-83.66857,32.810884],[-83.668502,32.810979],[-83.66847700000001,32.811026000000005],[-83.66844900000001,32.811138],[-83.668422,32.812154]]},"id":"8844c0b181fffff-17bff06830582426"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.725768,32.864635]},"id":"8f44c0a253a1466-139ee48309d2d209"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72624300000001,32.864738]},"id":"8f44c0a253126d8-13df635a23496f33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a253a1466-139ee48309d2d209","8f44c0a253126d8-13df635a23496f33"]},"geometry":{"type":"LineString","coordinates":[[-83.725768,32.864635],[-83.72592800000001,32.864578],[-83.72600200000001,32.864556],[-83.726084,32.864559],[-83.726128,32.864575],[-83.726169,32.864599000000005],[-83.726203,32.864632],[-83.72622700000001,32.864669],[-83.72624300000001,32.864738]]},"id":"8944c0a253bffff-13fe73da95c41507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54997900000001,32.84682]},"id":"8f44c0b8e646641-179fd1af2e5c61ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5515914,32.8465745]},"id":"8f44c0b8e66c585-17f7ddbf6532710e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e66c585-17f7ddbf6532710e","8f44c0b8e646641-179fd1af2e5c61ef"]},"geometry":{"type":"LineString","coordinates":[[-83.54997900000001,32.84682],[-83.550134,32.846967],[-83.550612,32.847371],[-83.55121100000001,32.846879],[-83.5515914,32.8465745]]},"id":"8944c0b8e67ffff-179fffbbea90e765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661197,32.830199]},"id":"8f44c0b1b1b31aa-17fee227e475df55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66267,32.830247]},"id":"8f44c0b1b1a3856-179efe8f4213b279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1a3856-179efe8f4213b279","8f44c0b1b1b31aa-17fee227e475df55"]},"geometry":{"type":"LineString","coordinates":[[-83.661197,32.830199],[-83.661209,32.830213],[-83.66127900000001,32.830224],[-83.662073,32.830235],[-83.66267,32.830247]]},"id":"8944c0b1b1bffff-179fd05dddaecac7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69883700000001,32.834536]},"id":"8f44c0a24d83ab2-17976642e9f83009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69989100000001,32.836143]},"id":"8f44c0a24c10c98-13ff63b0291bfbbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24d83ab2-17976642e9f83009","8f44c0a24c10c98-13ff63b0291bfbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.69883700000001,32.834536],[-83.69888,32.834699],[-83.699004,32.834936],[-83.699065,32.83502],[-83.69919700000001,32.835206],[-83.699393,32.835475],[-83.699605,32.835773],[-83.69989100000001,32.836143]]},"id":"8844c0a24dfffff-13976513335b91a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759743,32.869729]},"id":"8f44c0b5056bb82-17fdf190ae283002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75918300000001,32.869687]},"id":"8f44c0b5054c983-17f7f2eeaac9eb4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5056bb82-17fdf190ae283002","8f44c0b5054c983-17f7f2eeaac9eb4a"]},"geometry":{"type":"LineString","coordinates":[[-83.759743,32.869729],[-83.75921100000001,32.869689],[-83.75918300000001,32.869687]]},"id":"8a44c0b5056ffff-17ffd23fa26b60fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67362100000001,32.834215]},"id":"8f44c0b1ba03984-17dee3d2ebd4afb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674598,32.834204]},"id":"8f44c0b1ba2a14a-17d7a17042713e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba03984-17dee3d2ebd4afb7","8f44c0b1ba2a14a-17d7a17042713e62"]},"geometry":{"type":"LineString","coordinates":[[-83.67362100000001,32.834215],[-83.67376900000001,32.834213000000005],[-83.674598,32.834204]]},"id":"8944c0b1ba3ffff-17d6f2a19b2a581a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53173600000001,32.8288]},"id":"8f44c0b83628148-1397fe390198e3e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.529143,32.830962]},"id":"8f44c0b836f1461-17df448da8ff3b0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83628148-1397fe390198e3e2","8f44c0b836f1461-17df448da8ff3b0c"]},"geometry":{"type":"LineString","coordinates":[[-83.53173600000001,32.8288],[-83.531143,32.829286],[-83.529143,32.830962]]},"id":"8844c0b837fffff-17ba1164ad0985c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66492600000001,32.808568]},"id":"8f44c0b18cd9c01-13bfb90d44615736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664516,32.808712]},"id":"8f44c0b18cdbc6c-1397ba0d8c79c9a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18cd9c01-13bfb90d44615736","8f44c0b18cdbc6c-1397ba0d8c79c9a5"]},"geometry":{"type":"LineString","coordinates":[[-83.66492600000001,32.808568],[-83.66479600000001,32.808642],[-83.664748,32.808659],[-83.664516,32.808712]]},"id":"8a44c0b18cdffff-13f6f98a08493111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728679,32.922314]},"id":"8f44c0a280c8882-17de5d67ad20d812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72882,32.922752]},"id":"8f44c0a280c9403-17f61d0f8bae1708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c8882-17de5d67ad20d812","8f44c0a280c9403-17f61d0f8bae1708"]},"geometry":{"type":"LineString","coordinates":[[-83.728679,32.922314],[-83.72882,32.922752]]},"id":"8a44c0a280cffff-17f73d3b90ba2b88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646636,32.821466]},"id":"8f44c0b1a0c8291-17bee5b48e301e55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649242,32.823039]},"id":"8f44c0b1a38cc45-13ffff57cd58d026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a38cc45-13ffff57cd58d026","8f44c0b1a0c8291-17bee5b48e301e55"]},"geometry":{"type":"LineString","coordinates":[[-83.646636,32.821466],[-83.64720100000001,32.82183],[-83.649113,32.823014],[-83.649191,32.823039],[-83.649242,32.823039]]},"id":"8744c0b1affffff-13b7e28c8324c1b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7439859,32.822424600000005]},"id":"8f44c0b08ac8115-13fff808d5cfbd40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.743429,32.822093]},"id":"8f44c0b08ace51e-13b5f964ee27cde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08ac8115-13fff808d5cfbd40","8f44c0b08ace51e-13b5f964ee27cde4"]},"geometry":{"type":"LineString","coordinates":[[-83.7439859,32.822424600000005],[-83.743696,32.822235],[-83.743429,32.822093]]},"id":"8a44c0b08acffff-1397f8b48e0308fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6129322,32.871200300000005]},"id":"8f44c0a32399808-139737fd627dcb34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613184,32.8713749]},"id":"8f44c0a3238a619-13977760043d08f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32399808-139737fd627dcb34","8f44c0a3238a619-13977760043d08f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6129322,32.871200300000005],[-83.613184,32.8713749]]},"id":"8944c0a323bffff-13dff7aeb6b069c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70742700000001,32.8066188]},"id":"8f44c0b1db6e030-13fed14a2a4fa2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707794,32.8064781]},"id":"8f44c0b1db6c575-1396d064cb03df0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db6e030-13fed14a2a4fa2dc","8f44c0b1db6c575-1396d064cb03df0e"]},"geometry":{"type":"LineString","coordinates":[[-83.70742700000001,32.8066188],[-83.7076529,32.806530200000005],[-83.707794,32.8064781]]},"id":"8a44c0b1db6ffff-13be50d7a7eb53fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64502800000001,32.821184]},"id":"8f44c0b1a0d8493-17fee9a1855ead44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645807,32.820264]},"id":"8f44c0b1a0c04d3-17bfe7baa2d41446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0c04d3-17bfe7baa2d41446","8f44c0b1a0d8493-17fee9a1855ead44"]},"geometry":{"type":"LineString","coordinates":[[-83.64502800000001,32.821184],[-83.64568100000001,32.82043],[-83.645807,32.820264]]},"id":"8944c0b1a0fffff-17def8ab6992976c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.563772,32.842731]},"id":"8f44c0b88db58c4-1397f0028beefe51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562076,32.842582]},"id":"8f44c0b8eacc2c4-13b7f4268d1d3c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eacc2c4-13b7f4268d1d3c05","8f44c0b88db58c4-1397f0028beefe51"]},"geometry":{"type":"LineString","coordinates":[[-83.563772,32.842731],[-83.563145,32.84274],[-83.56300300000001,32.842719],[-83.562838,32.842658],[-83.56265900000001,32.842613],[-83.562537,32.842605],[-83.562076,32.842582]]},"id":"8744c0b8effffff-13ffb214f4eac795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74261,32.773836]},"id":"8f44c0b2a56d689-13dffb64c50ccc12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741135,32.775464]},"id":"8f44c0b2a465c93-17ddfefea958cb3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a56d689-13dffb64c50ccc12","8f44c0b2a465c93-17ddfefea958cb3b"]},"geometry":{"type":"LineString","coordinates":[[-83.74261,32.773836],[-83.74251500000001,32.773927],[-83.74245,32.773975],[-83.74241,32.774033],[-83.742366,32.774108000000005],[-83.742112,32.774678],[-83.742089,32.774749],[-83.74208300000001,32.77483],[-83.74204800000001,32.77497],[-83.74201400000001,32.775035],[-83.741955,32.775108],[-83.741893,32.775167],[-83.74178900000001,32.775235],[-83.74166500000001,32.775291],[-83.741511,32.775351],[-83.741335,32.775412],[-83.741135,32.775464]]},"id":"8744c0b2affffff-17bdfcee3122a908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57557800000001,32.836612]},"id":"8f44c0b8c0ddb40-17b7932fccbb5d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57355600000001,32.838009]},"id":"8f44c0b8c7549b6-139fb81f816c6f59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8c0ddb40-17b7932fccbb5d05","8f44c0b8c7549b6-139fb81f816c6f59"]},"geometry":{"type":"LineString","coordinates":[[-83.57557800000001,32.836612],[-83.575432,32.836581],[-83.575163,32.836577000000005],[-83.574723,32.836579],[-83.57407400000001,32.836578],[-83.57374700000001,32.836582],[-83.57364700000001,32.83659],[-83.5736,32.836598],[-83.573576,32.836616],[-83.573559,32.836644],[-83.57354000000001,32.836768],[-83.573544,32.837032],[-83.573558,32.837349],[-83.573565,32.837795],[-83.57355600000001,32.838009]]},"id":"8744c0b8cffffff-17df96a8517c1e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54805900000001,32.807381]},"id":"8f44c0b80355074-17d7f65f2ddb84de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54579550000001,32.8048207]},"id":"8f44c0b8033334b-1797fbe5dd6cfbb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8033334b-1797fbe5dd6cfbb5","8f44c0b80355074-17d7f65f2ddb84de"]},"geometry":{"type":"LineString","coordinates":[[-83.54805900000001,32.807381],[-83.547127,32.806328],[-83.54579550000001,32.8048207]]},"id":"8844c0b803fffff-13b7f922aad3738b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689924,32.839257]},"id":"8f44c0a2692d86c-1397fc058158f631"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688277,32.83923]},"id":"8f44c0a2690555a-1396c00aed885f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2692d86c-1397fc058158f631","8f44c0a2690555a-1396c00aed885f76"]},"geometry":{"type":"LineString","coordinates":[[-83.689924,32.839257],[-83.688677,32.839219],[-83.688277,32.83923]]},"id":"8844c0a269fffff-139ffe083cd8af4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59066700000001,32.86628]},"id":"8f44c0b898d3c12-17976e592ad04e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591447,32.867027]},"id":"8f44c0b898d81b1-17f7ec71afd5673a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898d3c12-17976e592ad04e07","8f44c0b898d81b1-17f7ec71afd5673a"]},"geometry":{"type":"LineString","coordinates":[[-83.59066700000001,32.86628],[-83.590722,32.866383],[-83.59088,32.866622],[-83.59103300000001,32.866777],[-83.591164,32.866864],[-83.591447,32.867027]]},"id":"8944c0b898fffff-17977d819ec8bfe3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57123410000001,32.8645814]},"id":"8f44c0b8b9214b3-13fffdcabdb4dcbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570481,32.863943]},"id":"8f44c0b8b935860-17dfffa1619be8a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b9214b3-13fffdcabdb4dcbc","8f44c0b8b935860-17dfffa1619be8a7"]},"geometry":{"type":"LineString","coordinates":[[-83.57123410000001,32.8645814],[-83.57110800000001,32.864429],[-83.571025,32.864351],[-83.570677,32.864099],[-83.570481,32.863943]]},"id":"8944c0b8b93ffff-139fbeadb23179fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5714014,32.864584900000004]},"id":"8f44c0b8b921548-13ff9d622481dd42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572119,32.865302]},"id":"8f44c0b8b92d736-13bfdba1a6029e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b92d736-13bfdba1a6029e87","8f44c0b8b921548-13ff9d622481dd42"]},"geometry":{"type":"LineString","coordinates":[[-83.5714014,32.864584900000004],[-83.571471,32.864665],[-83.57156900000001,32.864764],[-83.57205900000001,32.865122],[-83.57212,32.86518],[-83.572134,32.865214],[-83.57213700000001,32.865242],[-83.57213,32.865276],[-83.572119,32.865302]]},"id":"8944c0b8b93ffff-13d79c6a8ebd529c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671768,32.744383]},"id":"8f44c0b1592b0e4-13f7e8590420b92e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672589,32.741335]},"id":"8f44c0b332ab01e-1796e657e253992d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1592b0e4-13f7e8590420b92e","8f44c0b332ab01e-1796e657e253992d"]},"geometry":{"type":"LineString","coordinates":[[-83.671768,32.744383],[-83.672263,32.742902],[-83.67245100000001,32.742367],[-83.67255300000001,32.742027],[-83.672571,32.74192],[-83.672584,32.741708],[-83.672589,32.741335]]},"id":"8544c0b3fffffff-17d7b729338f80fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69337,32.885841]},"id":"8f44c0a2300699e-17d6f39bcb9477af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69296800000001,32.885866]},"id":"8f44c0a23033293-17f6749706d1fbfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2300699e-17d6f39bcb9477af","8f44c0a23033293-17f6749706d1fbfe"]},"geometry":{"type":"LineString","coordinates":[[-83.69337,32.885841],[-83.69322700000001,32.885832],[-83.69313500000001,32.885832],[-83.69304500000001,32.885846],[-83.69296800000001,32.885866]]},"id":"8944c0a2303ffff-17d7f41a12dfffb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60615,32.855717]},"id":"8f44c0a32c3648c-13d7688c49bf0ff4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60397,32.855781]},"id":"8f44c0a32d98553-13ff6ddece6a02ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d98553-13ff6ddece6a02ff","8f44c0a32c3648c-13d7688c49bf0ff4"]},"geometry":{"type":"LineString","coordinates":[[-83.60615,32.855717],[-83.60397,32.855781]]},"id":"8944c0a32dbffff-13df6b35845b07dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674574,32.838821]},"id":"8f44c0a26db3642-1397a17f43fcbe42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674628,32.838164]},"id":"8f44c0a26db0546-13fea15d89e0797d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db3642-1397a17f43fcbe42","8f44c0a26db0546-13fea15d89e0797d"]},"geometry":{"type":"LineString","coordinates":[[-83.674574,32.838821],[-83.674628,32.838164]]},"id":"8944c0a26dbffff-13bff16e6b8ae93b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69988500000001,32.821686]},"id":"8f44c0b0a4a54c4-13b7e3b3ee3d2f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699807,32.820574]},"id":"8f44c0b0a58e798-17fee3e4a1380d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a4a54c4-13b7e3b3ee3d2f79","8f44c0b0a58e798-17fee3e4a1380d7b"]},"geometry":{"type":"LineString","coordinates":[[-83.69988500000001,32.821686],[-83.69914800000001,32.821389],[-83.699111,32.821354],[-83.699105,32.821322],[-83.69915800000001,32.821219],[-83.699257,32.821071],[-83.69936200000001,32.820903],[-83.699399,32.820858],[-83.69944000000001,32.820816],[-83.69958000000001,32.820701],[-83.69969300000001,32.820627],[-83.699807,32.820574]]},"id":"8844c0b0a5fffff-17fe64c88c57b726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66329300000001,32.867623]},"id":"8f44c0a2259161d-13defd09e1874d97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663314,32.867314]},"id":"8f44c0a22591c02-1797fcfcc9f27a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22591c02-1797fcfcc9f27a00","8f44c0a2259161d-13defd09e1874d97"]},"geometry":{"type":"LineString","coordinates":[[-83.66329300000001,32.867623],[-83.66327100000001,32.867531],[-83.66326500000001,32.867489],[-83.663269,32.867444],[-83.663314,32.867314]]},"id":"8b44c0a22591fff-17f7bd10be3ada91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728054,32.88787]},"id":"8f44c0a2cd832ab-13d6deee43bc077a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72871,32.887239]},"id":"8f44c0a2cd85306-13be7d544ae79793"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cd85306-13be7d544ae79793","8f44c0a2cd832ab-13d6deee43bc077a"]},"geometry":{"type":"LineString","coordinates":[[-83.728054,32.88787],[-83.72807800000001,32.887763],[-83.72809600000001,32.887743],[-83.728136,32.887703],[-83.728199,32.887651000000005],[-83.72843200000001,32.887486],[-83.728521,32.887433],[-83.728536,32.88742],[-83.728559,32.887383],[-83.72858500000001,32.88736],[-83.72862900000001,32.8873],[-83.72871,32.887239]]},"id":"8a44c0a2cd87fff-13febe2fc99a5810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69309200000001,32.854028]},"id":"8f44c0a20da64c0-17b7f449815b0515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693048,32.85638]},"id":"8f44c0a20d8a136-17f7f4650ebeec88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20d8a136-17f7f4650ebeec88","8f44c0a20da64c0-17b7f449815b0515"]},"geometry":{"type":"LineString","coordinates":[[-83.69309200000001,32.854028],[-83.693048,32.85638]]},"id":"8944c0a20dbffff-1396f4574b1b3634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604247,32.856788]},"id":"8f44c0a32ca66c8-17f7cd31a79fe63c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60420900000001,32.857501]},"id":"8f44c0a32c84331-17b76d496774ea5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c84331-17b76d496774ea5b","8f44c0a32ca66c8-17f7cd31a79fe63c"]},"geometry":{"type":"LineString","coordinates":[[-83.604247,32.856788],[-83.60420900000001,32.857501]]},"id":"8944c0a32cbffff-17d75d3d82b18123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658303,32.793149]},"id":"8f44c0b1e8cdb31-1396e938acb81aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658309,32.7915416]},"id":"8f44c0b1e8e1b00-179fc934eaa82641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8cdb31-1396e938acb81aa6","8f44c0b1e8e1b00-179fc934eaa82641"]},"geometry":{"type":"LineString","coordinates":[[-83.658303,32.793149],[-83.658309,32.7915416]]},"id":"8944c0b1e8fffff-139fd936c66ffc9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768252,32.801513]},"id":"8f44c0b2b2c5d45-17f5bcca8ee5652e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76903700000001,32.799348]},"id":"8f44c0b2b20e962-13bdbadfea51f1ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2c5d45-17f5bcca8ee5652e","8f44c0b2b20e962-13bdbadfea51f1ce"]},"geometry":{"type":"LineString","coordinates":[[-83.768252,32.801513],[-83.768465,32.801388],[-83.768614,32.801262],[-83.76875600000001,32.801101],[-83.768866,32.800941],[-83.768951,32.800769],[-83.769008,32.800556],[-83.769019,32.800351],[-83.76903700000001,32.799348]]},"id":"8844c0b2b3fffff-179fbb4dfcb22c01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738625,32.917453]},"id":"8f44c0a28b190c5-1396251f6c84415c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74037,32.917372]},"id":"8f44c0a28b7219d-13df80dccde41344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b7219d-13df80dccde41344","8f44c0a28b190c5-1396251f6c84415c"]},"geometry":{"type":"LineString","coordinates":[[-83.738625,32.917453],[-83.74037,32.917372]]},"id":"8844c0a28bfffff-13f6d2fe119ad56c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662671,32.823464]},"id":"8f44c0b1bd760f5-179fbe8eaea34de5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66268500000001,32.822507]},"id":"8f44c0b1bd2d583-13b6fe85ea248f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd760f5-179fbe8eaea34de5","8f44c0b1bd2d583-13b6fe85ea248f63"]},"geometry":{"type":"LineString","coordinates":[[-83.662671,32.823464],[-83.661473,32.823437000000006],[-83.661333,32.823421],[-83.66121100000001,32.823393],[-83.66109200000001,32.823337],[-83.660987,32.823261],[-83.660922,32.823178],[-83.660871,32.823023],[-83.660886,32.822829],[-83.66095,32.822701],[-83.66101900000001,32.822636],[-83.661113,32.822569],[-83.66130000000001,32.822501],[-83.66138000000001,32.822491],[-83.661652,32.822491],[-83.66268500000001,32.822507]]},"id":"8844c0b1bdfffff-13d6c100286dd7cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663448,32.831277]},"id":"8f44c0b1b1a9519-179ebca9045ee291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663526,32.828338]},"id":"8f44c0b1bc4cd6c-13fffc784435af6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc4cd6c-13fffc784435af6f","8f44c0b1b1a9519-179ebca9045ee291"]},"geometry":{"type":"LineString","coordinates":[[-83.663448,32.831277],[-83.663482,32.830601],[-83.66350200000001,32.829312],[-83.663526,32.828338]]},"id":"8744c0b1bffffff-1797fc8cdf3c29ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608199,32.849638]},"id":"8f44c0a366b6b93-17ffc38ba5b3df54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60816700000001,32.851074000000004]},"id":"8f44c0a36691916-17f7439faef03b95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366b6b93-17ffc38ba5b3df54","8f44c0a36691916-17f7439faef03b95"]},"geometry":{"type":"LineString","coordinates":[[-83.608199,32.849638],[-83.60816700000001,32.851074000000004]]},"id":"8944c0a366bffff-17b7c395ab4e9b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69634260000001,32.843951100000005]},"id":"8f44c0a2440e4f0-179f7c59e93fb74d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6959259,32.843953500000005]},"id":"8f44c0a2441d52e-179efd5e5c7991bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2440e4f0-179f7c59e93fb74d","8f44c0a2441d52e-179efd5e5c7991bb"]},"geometry":{"type":"LineString","coordinates":[[-83.69634260000001,32.843951100000005],[-83.6959259,32.843953500000005]]},"id":"8944c0a2443ffff-179e7cdc229ecd38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704907,32.866292]},"id":"8f44c0a20a865a2-179ed7712c310160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702133,32.865031]},"id":"8f44c0a2015eb0d-13967e36ee0daab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2015eb0d-13967e36ee0daab2","8f44c0a20a865a2-179ed7712c310160"]},"geometry":{"type":"LineString","coordinates":[[-83.704907,32.866292],[-83.70451,32.866193],[-83.70431500000001,32.866138],[-83.70424,32.866098],[-83.704147,32.866031],[-83.70409400000001,32.865966],[-83.70403300000001,32.865881],[-83.703952,32.865699],[-83.70389,32.865586],[-83.703772,32.865434],[-83.703659,32.865318],[-83.703467,32.865194],[-83.703265,32.865104],[-83.703142,32.865068],[-83.703035,32.865043],[-83.702747,32.865032],[-83.702133,32.865031]]},"id":"8744c0a20ffffff-13b7faae7662130a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663137,32.792536000000005]},"id":"8f44c0b1eb26449-1397bd6b65c966bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6654908,32.791158200000005]},"id":"8f44c0b1c4a9162-17bff7ac4dd68f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c4a9162-17bff7ac4dd68f7b","8f44c0b1eb26449-1397bd6b65c966bb"]},"geometry":{"type":"LineString","coordinates":[[-83.663137,32.792536000000005],[-83.66347800000001,32.792633],[-83.663596,32.792658],[-83.663718,32.792665],[-83.66378300000001,32.792659],[-83.66394100000001,32.792622],[-83.66403600000001,32.792582],[-83.66453200000001,32.792336],[-83.66534200000001,32.791924],[-83.665402,32.79189],[-83.665485,32.791812],[-83.66552300000001,32.791767],[-83.665542,32.791734000000005],[-83.66555600000001,32.791688],[-83.665565,32.791638],[-83.665564,32.791558],[-83.6654908,32.791158200000005]]},"id":"8644c0b1fffffff-13b6f9dd459cae60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936088,32.901393]},"id":"8f44c0a0580c064-13def3068a15567b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692075,32.901469]},"id":"8f44c0a0581c6d3-13fe76c52709e245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0580c064-13def3068a15567b","8f44c0a0581c6d3-13fe76c52709e245"]},"geometry":{"type":"LineString","coordinates":[[-83.6936088,32.901393],[-83.693195,32.901398],[-83.69238700000001,32.901452],[-83.692075,32.901469]]},"id":"8944c0a0583ffff-13de74e5f3f174ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769503,32.872836]},"id":"8f44c0b50a9c084-1797b9bca941733f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769187,32.872356]},"id":"8f44c0b50a91d59-13f7ba822efc7378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50a91d59-13f7ba822efc7378","8f44c0b50a9c084-1797b9bca941733f"]},"geometry":{"type":"LineString","coordinates":[[-83.769503,32.872836],[-83.769451,32.872658],[-83.769316,32.872459],[-83.769187,32.872356]]},"id":"8944c0b50abffff-17ffba0c077d7097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.601731,32.848780000000005]},"id":"8f44c0b8db89225-13d7d35624fad1fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60182400000001,32.849161]},"id":"8f44c0b8da1468b-13d7f31c039269c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8db89225-13d7d35624fad1fc","8f44c0b8da1468b-13d7f31c039269c0"]},"geometry":{"type":"LineString","coordinates":[[-83.601731,32.848780000000005],[-83.6018262,32.8488089],[-83.60190320000001,32.8488375],[-83.60194320000001,32.848882700000004],[-83.6019531,32.8489141],[-83.6019552,32.848945900000004],[-83.6019474,32.8489839],[-83.60192980000001,32.849015200000004],[-83.60189600000001,32.8490422],[-83.60186630000001,32.849060900000005],[-83.6018471,32.849085800000005],[-83.60182800000001,32.8491218],[-83.60182400000001,32.849161]]},"id":"8944c0b8da3ffff-13bfd2fba5313b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58994100000001,32.87003]},"id":"8f44c0b8902d350-17bff01ee7ac28e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.589611,32.871561]},"id":"8f44c0b890734c5-13f7f0ed275daa58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890734c5-13f7f0ed275daa58","8f44c0b8902d350-17bff01ee7ac28e0"]},"geometry":{"type":"LineString","coordinates":[[-83.58994100000001,32.87003],[-83.58988000000001,32.870548],[-83.589611,32.871561]]},"id":"8844c0b891fffff-139f7076da5ac673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704374,32.779035]},"id":"8f44c0b0380276e-1396f8be47b0bed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706716,32.77873]},"id":"8f44c0b0382d8d6-17d6530686dde8d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0380276e-1396f8be47b0bed4","8f44c0b0382d8d6-17d6530686dde8d9"]},"geometry":{"type":"LineString","coordinates":[[-83.704374,32.779035],[-83.704848,32.778767],[-83.70493,32.778745],[-83.705268,32.77872],[-83.706716,32.77873]]},"id":"8844c0b039fffff-17ff55f406b4915b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65400600000001,32.790483]},"id":"8f44c0b1e89c16b-1797f3b64020f681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656469,32.790535000000006]},"id":"8f44c0b1e8f4c26-17b6edb2e8634593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8f4c26-17b6edb2e8634593","8f44c0b1e89c16b-1797f3b64020f681"]},"geometry":{"type":"LineString","coordinates":[[-83.65400600000001,32.790483],[-83.655168,32.790497],[-83.65631300000001,32.790515],[-83.656469,32.790535000000006]]},"id":"8844c0b1e9fffff-179ed0b4354344ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637134,32.818806]},"id":"8f44c0b1a4c4961-13bffce7498205f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63858400000001,32.819657]},"id":"8f44c0b1a4e9913-13bff95d0ecdab70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4e9913-13bff95d0ecdab70","8f44c0b1a4c4961-13bffce7498205f5"]},"geometry":{"type":"LineString","coordinates":[[-83.637134,32.818806],[-83.637439,32.818984],[-83.63858400000001,32.819657]]},"id":"8944c0b1a4fffff-13b7fb220e73bc98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631149,32.866894]},"id":"8f44c0b50c4b100-1795c95538cf3012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761612,32.86684]},"id":"8f44c0b50c5b42b-17ffcd008c4aac3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50c5b42b-17ffcd008c4aac3a","8f44c0b50c4b100-1795c95538cf3012"]},"geometry":{"type":"LineString","coordinates":[[-83.7631149,32.866894],[-83.761612,32.86684]]},"id":"8744c0b50ffffff-17ffeb2ad141c2d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75896,32.873068]},"id":"8f44c0b50736425-17b7d37a0a512b3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758384,32.873463]},"id":"8f44c0b50449d9d-179ff4e209b33c19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50736425-17b7d37a0a512b3b","8f44c0b50449d9d-179ff4e209b33c19"]},"geometry":{"type":"LineString","coordinates":[[-83.75896,32.873068],[-83.758384,32.873463]]},"id":"8944c0b5047ffff-179ff42e0dd3c46d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63589800000001,32.732068000000005]},"id":"8f44c084925cb40-17f6ffebc99a4ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633447,32.741013]},"id":"8f44c0b16b03555-13bf25e7aa125edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c084925cb40-17f6ffebc99a4ccd","8f44c0b16b03555-13bf25e7aa125edf"]},"geometry":{"type":"LineString","coordinates":[[-83.63589800000001,32.732068000000005],[-83.635883,32.73443],[-83.635886,32.735832],[-83.63587700000001,32.73735],[-83.635862,32.737402],[-83.635839,32.737439],[-83.635785,32.737492],[-83.63576400000001,32.737506],[-83.63571400000001,32.737522000000006],[-83.635644,32.737532],[-83.63393500000001,32.737521],[-83.633797,32.737515],[-83.63366900000001,32.737519],[-83.633582,32.73753],[-83.633528,32.737549],[-83.633486,32.737585],[-83.633476,32.737602],[-83.63346,32.737676],[-83.6334508,32.7378189],[-83.633446,32.737893],[-83.633448,32.738293],[-83.63345000000001,32.738774],[-83.63344500000001,32.73986],[-83.633431,32.740257],[-83.633426,32.740613],[-83.633447,32.741013]]},"id":"8644c0b17ffffff-13df626989882bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66657500000001,32.885025]},"id":"8f44c0a04c0801e-13d6b506afd7d91f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666894,32.884828]},"id":"8f44c0a04c0d502-13dfb43f46d0dc03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c0801e-13d6b506afd7d91f","8f44c0a04c0d502-13dfb43f46d0dc03"]},"geometry":{"type":"LineString","coordinates":[[-83.66657500000001,32.885025],[-83.666894,32.884828]]},"id":"8a44c0a04c0ffff-1397b4a2f59f758b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557427,32.836609]},"id":"8f44c0b8e1613ac-17b7bf802dbf4d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557455,32.8376]},"id":"8f44c0b8e16bc41-179fbf6ea9aaa0c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e1613ac-17b7bf802dbf4d3a","8f44c0b8e16bc41-179fbf6ea9aaa0c5"]},"geometry":{"type":"LineString","coordinates":[[-83.557427,32.836609],[-83.557455,32.8376]]},"id":"8944c0b8e17ffff-17d7ff776dc00b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76348300000001,32.869169]},"id":"8f44c0b50036954-179fe86f2e0244f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763564,32.870224900000004]},"id":"8f44c0b50033768-17b7d83c8efab0ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50033768-17b7d83c8efab0ae","8f44c0b50036954-179fe86f2e0244f8"]},"geometry":{"type":"LineString","coordinates":[[-83.76348300000001,32.869169],[-83.76355600000001,32.870021],[-83.763564,32.870224900000004]]},"id":"8a44c0b50037fff-17fdf8537176d2da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641041,32.847747000000005]},"id":"8f44c0a342980c8-17d7f35d69d16c4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641582,32.847082]},"id":"8f44c0a34283182-17b6f20b46c55ad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342980c8-17d7f35d69d16c4c","8f44c0a34283182-17b6f20b46c55ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.641041,32.847747000000005],[-83.641582,32.847082]]},"id":"8944c0a342bffff-1796f2b4577d4dc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633474,32.857242]},"id":"8f44c0a301aa926-179745d6cd0dc26a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632908,32.858251]},"id":"8f44c0a30188510-13f7e73885063ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30188510-13f7e73885063ef8","8f44c0a301aa926-179745d6cd0dc26a"]},"geometry":{"type":"LineString","coordinates":[[-83.633474,32.857242],[-83.633538,32.857331],[-83.633553,32.857385],[-83.63354500000001,32.857452],[-83.632908,32.858251]]},"id":"8944c0a301bffff-13d7064e78a233b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764381,32.816961]},"id":"8f44c0b0d32ad66-17bde63defff9204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76460200000001,32.819284]},"id":"8f44c0b0d3506f2-13d5c5b3cc4224de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d3506f2-13d5c5b3cc4224de","8f44c0b0d32ad66-17bde63defff9204"]},"geometry":{"type":"LineString","coordinates":[[-83.764381,32.816961],[-83.764404,32.817126],[-83.764441,32.81745],[-83.764453,32.817601],[-83.764443,32.81794],[-83.76439900000001,32.818167],[-83.76424200000001,32.818634],[-83.764228,32.818711],[-83.76423000000001,32.818816000000005],[-83.764249,32.81888],[-83.76430400000001,32.81899],[-83.76439500000001,32.819099],[-83.76453400000001,32.819226],[-83.76460200000001,32.819284]]},"id":"8844c0b0d3fffff-17b7d63c6699222f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66853800000001,32.804063]},"id":"8f44c0b18d5165e-17bff03bcab2bd35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668564,32.802467]},"id":"8f44c0b18d729a4-13d7f02b89030131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d5165e-17bff03bcab2bd35","8f44c0b18d729a4-13d7f02b89030131"]},"geometry":{"type":"LineString","coordinates":[[-83.66853800000001,32.804063],[-83.668557,32.803078],[-83.668564,32.802467]]},"id":"8944c0b18d7ffff-13beb032b69e60cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68640900000001,32.823639]},"id":"8f44c0b19c4e6dc-17f6e49a64318993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686366,32.824503]},"id":"8f44c0b191a42c4-1796e4b54e910a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c4e6dc-17f6e49a64318993","8f44c0b191a42c4-1796e4b54e910a02"]},"geometry":{"type":"LineString","coordinates":[[-83.68640900000001,32.823639],[-83.68638800000001,32.823774],[-83.68636500000001,32.824004],[-83.686357,32.824181],[-83.686366,32.824503]]},"id":"8744c0b19ffffff-1797d4b200ca5acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68688900000001,32.829293]},"id":"8f44c0b1901b5a6-13d6a36e6faf877c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867684,32.829988400000005]},"id":"8f44c0b190f0a41-17f6c3b9cd1fc5f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190f0a41-17f6c3b9cd1fc5f7","8f44c0b1901b5a6-13d6a36e6faf877c"]},"geometry":{"type":"LineString","coordinates":[[-83.68688900000001,32.829293],[-83.686874,32.829557],[-83.686858,32.829681],[-83.68681600000001,32.829889],[-83.6867684,32.829988400000005]]},"id":"8844c0b191fffff-13b6b385b484835c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73831100000001,32.9041]},"id":"8f44c0a2c233008-13f685e3a112eb6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738507,32.901316]},"id":"8f44c0a2c3146aa-139e85692f59657f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c233008-13f685e3a112eb6c","8f44c0a2c3146aa-139e85692f59657f"]},"geometry":{"type":"LineString","coordinates":[[-83.73831100000001,32.9041],[-83.73835000000001,32.903641],[-83.738507,32.901316]]},"id":"8844c0a2c3fffff-1796b5a45dd27972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663549,32.841974]},"id":"8f44c0b1b66ca0a-13bffc69e072cc2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663582,32.84031]},"id":"8f44c0b1b748b52-17bffc554ceb2500"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b66ca0a-13bffc69e072cc2f","8f44c0b1b748b52-17bffc554ceb2500"]},"geometry":{"type":"LineString","coordinates":[[-83.663549,32.841974],[-83.663549,32.841769],[-83.66358000000001,32.841637],[-83.66359100000001,32.840877],[-83.663582,32.84031]]},"id":"8844c0b1b7fffff-17b6bc56cc2fe1a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66884900000001,32.868211]},"id":"8f44c0a22554435-13d7ef79615ff4db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66853300000001,32.868405]},"id":"8f44c0a225560f1-13d7b03ee0a3b0b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225560f1-13d7b03ee0a3b0b4","8f44c0a22554435-13d7ef79615ff4db"]},"geometry":{"type":"LineString","coordinates":[[-83.66884900000001,32.868211],[-83.66853300000001,32.868405]]},"id":"8a44c0a22557fff-1396afdc2ab34334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606148,32.854501]},"id":"8f44c0a32dac55d-13df688d83b4f517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604161,32.854501]},"id":"8f44c0a32d95862-13df6d6769c36048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d95862-13df6d6769c36048","8f44c0a32dac55d-13df688d83b4f517"]},"geometry":{"type":"LineString","coordinates":[[-83.606148,32.854501],[-83.604161,32.854501]]},"id":"8944c0a32dbffff-13df6afa7731e0f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706202,32.78116]},"id":"8f44c0b03850262-17d75447c82f189c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706208,32.780806000000005]},"id":"8f44c0b03850954-17f7d4440a3d039d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03850262-17d75447c82f189c","8f44c0b03850954-17f7d4440a3d039d"]},"geometry":{"type":"LineString","coordinates":[[-83.706202,32.78116],[-83.706208,32.780806000000005]]},"id":"8b44c0b03850fff-17d67445e7b16b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74614600000001,32.914577]},"id":"8f44c0a2d44572c-13fff2c2c4d48ba4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74537500000001,32.914496]},"id":"8f44c0a2d442920-13ddf4a4a5233a85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d442920-13ddf4a4a5233a85","8f44c0a2d44572c-13fff2c2c4d48ba4"]},"geometry":{"type":"LineString","coordinates":[[-83.74614600000001,32.914577],[-83.74581,32.914538],[-83.745579,32.91453],[-83.74537500000001,32.914496]]},"id":"8a44c0a2d447fff-13f7f3b3fd24ed92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74929800000001,32.875889]},"id":"8f44c0b52a306cd-1797eb10c839d127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.750026,32.874647]},"id":"8f44c0b52b18561-13ffe949ca8e24af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a306cd-1797eb10c839d127","8f44c0b52b18561-13ffe949ca8e24af"]},"geometry":{"type":"LineString","coordinates":[[-83.74929800000001,32.875889],[-83.74984900000001,32.875242],[-83.74992300000001,32.875143],[-83.749982,32.875048],[-83.750023,32.874969],[-83.75005300000001,32.874879],[-83.750055,32.874860000000005],[-83.750026,32.874647]]},"id":"8844c0b52bfffff-1397e9f329e8d042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663735,32.840313]},"id":"8f44c0b1b74d71b-17bfbbf5ad820fef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663764,32.839864]},"id":"8f44c0b1b74cb61-1797bbe38743840a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74d71b-17bfbbf5ad820fef","8f44c0b1b74cb61-1797bbe38743840a"]},"geometry":{"type":"LineString","coordinates":[[-83.663735,32.840313],[-83.663764,32.839864]]},"id":"8a44c0b1b74ffff-179ffbec9f7a7d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668384,32.852021]},"id":"8f44c0a35b0624e-13d7b09c0d147bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66987,32.852252]},"id":"8f44c0a35b280ae-13d7acfb419d7a90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35b0624e-13d7b09c0d147bf0","8f44c0a35b280ae-13d7acfb419d7a90"]},"geometry":{"type":"LineString","coordinates":[[-83.668384,32.852021],[-83.668638,32.852074],[-83.66890400000001,32.852114],[-83.669104,32.852134],[-83.669363,32.852142],[-83.669634,32.852134],[-83.66972100000001,32.852144],[-83.669756,32.852162],[-83.66981100000001,32.852201],[-83.66987,32.852252]]},"id":"8944c0a35b3ffff-13ffaec367714fce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734398,32.911192]},"id":"8f44c0a28805d21-13b70f714da80f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734325,32.912117]},"id":"8f44c0a2880e90b-17ff2f9eef7d0900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28805d21-13b70f714da80f44","8f44c0a2880e90b-17ff2f9eef7d0900"]},"geometry":{"type":"LineString","coordinates":[[-83.734398,32.911192],[-83.734325,32.912117]]},"id":"8944c0a2883ffff-13de1f881a0a3312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76878400000001,32.876066]},"id":"8f44c0b5031c2c6-17f5fb7e09291272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76756490000001,32.875828600000006]},"id":"8f44c0b503acadc-17f5fe77f55f1702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5031c2c6-17f5fb7e09291272","8f44c0b503acadc-17f5fe77f55f1702"]},"geometry":{"type":"LineString","coordinates":[[-83.76878400000001,32.876066],[-83.768575,32.876083],[-83.76842900000001,32.876083],[-83.76827200000001,32.876072],[-83.768162,32.876053],[-83.768011,32.876007],[-83.76787800000001,32.875954],[-83.767701,32.875874],[-83.76756490000001,32.875828600000006]]},"id":"8844c0b503fffff-17d5fd0179a1b74d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721069,32.921312]},"id":"8f44c0a287b4a25-13fe2ffbec1e9207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72126200000001,32.922224]},"id":"8f44c0a287b134c-17b62f834bf0ea42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a287b4a25-13fe2ffbec1e9207","8f44c0a287b134c-17b62f834bf0ea42"]},"geometry":{"type":"LineString","coordinates":[[-83.721069,32.921312],[-83.721047,32.921356],[-83.721029,32.921411],[-83.72102000000001,32.921486],[-83.721023,32.921543],[-83.721135,32.921934],[-83.72126200000001,32.922224]]},"id":"8944c0a287bffff-179fefe410f01336"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671001,32.796827]},"id":"8f44c0b1c631189-1396ea3860bc9264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66901700000001,32.794168]},"id":"8f44c0b1c7a6603-1797af106d79a8fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c631189-1396ea3860bc9264","8f44c0b1c7a6603-1797af106d79a8fd"]},"geometry":{"type":"LineString","coordinates":[[-83.671001,32.796827],[-83.67101600000001,32.79663],[-83.67102,32.796474],[-83.671013,32.79636],[-83.671003,32.796306],[-83.67097600000001,32.796219],[-83.67095400000001,32.796163],[-83.670833,32.795976],[-83.67017200000001,32.795249000000005],[-83.669787,32.794814],[-83.66960900000001,32.794623],[-83.66951,32.794524],[-83.669431,32.794455],[-83.66910200000001,32.794221],[-83.66901700000001,32.794168]]},"id":"8844c0b1c7fffff-17feec1ef40ea99c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59938700000001,32.850054]},"id":"8f44c0b8da86625-17f7d90f2622efea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.599444,32.850942]},"id":"8f44c0b8da9dd9d-179fd8eb89ae5a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da86625-17f7d90f2622efea","8f44c0b8da9dd9d-179fd8eb89ae5a52"]},"geometry":{"type":"LineString","coordinates":[[-83.59938700000001,32.850054],[-83.599511,32.850353000000005],[-83.599508,32.850425],[-83.59949300000001,32.850499],[-83.599444,32.850942]]},"id":"8944c0b8dabffff-1797f8dcd845fb7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69300600000001,32.835658]},"id":"8f44c0b1922a8b3-13de747f444196cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692981,32.834819]},"id":"8f44c0b1922025e-13d7f48ee4931dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1922a8b3-13de747f444196cd","8f44c0b1922025e-13d7f48ee4931dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.69300600000001,32.835658],[-83.692974,32.835532],[-83.692981,32.834819]]},"id":"8944c0b1923ffff-13df748fe9e5f7db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637236,32.831296]},"id":"8f44c0a34c012e1-17befca780f56534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63906800000001,32.830334]},"id":"8f44c0a34d5171a-17def82e82dbe002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c012e1-17befca780f56534","8f44c0a34d5171a-17def82e82dbe002"]},"geometry":{"type":"LineString","coordinates":[[-83.637236,32.831296],[-83.637411,32.831198],[-83.638937,32.830421],[-83.63906800000001,32.830334]]},"id":"8844c0a34dfffff-17fffa6975b66a29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65002000000001,32.831637]},"id":"8f44c0a3494c674-13fffd718683334c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6508546,32.8321192]},"id":"8f44c0b1b4b2142-13bedb67e45602fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4b2142-13bedb67e45602fe","8f44c0a3494c674-13fffd718683334c"]},"geometry":{"type":"LineString","coordinates":[[-83.65002000000001,32.831637],[-83.6504165,32.8318697],[-83.6506998,32.8320303],[-83.6508546,32.8321192]]},"id":"8744c0a34ffffff-1396dc6d2d8d4e91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59521500000001,32.852547]},"id":"8f44c0b8d3b406e-139fe33ea0673e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59558200000001,32.853653]},"id":"8f44c0b8d38445b-17bf62594442b9b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3b406e-139fe33ea0673e0e","8f44c0b8d38445b-17bf62594442b9b1"]},"geometry":{"type":"LineString","coordinates":[[-83.59521500000001,32.852547],[-83.595285,32.852769],[-83.59539600000001,32.853153],[-83.595539,32.853572],[-83.59558200000001,32.853653]]},"id":"8944c0b8d3bffff-17f772d29a4dd5da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71167000000001,32.74322]},"id":"8f44c0b04000001-13b6c6ee474ebdb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7119232,32.7429761]},"id":"8f44c0b04004244-139e56500d005e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04000001-13b6c6ee474ebdb1","8f44c0b04004244-139e56500d005e19"]},"geometry":{"type":"LineString","coordinates":[[-83.71167000000001,32.74322],[-83.7119232,32.7429761]]},"id":"8a44c0b04007fff-13d6569f23fcb18a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639587,32.837877]},"id":"8f44c0a340147b6-17bff6ea29ee61c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64130850000001,32.838413800000005]},"id":"8f44c0a3400561a-139ef2b631403a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3400561a-139ef2b631403a96","8f44c0a340147b6-17bff6ea29ee61c9"]},"geometry":{"type":"LineString","coordinates":[[-83.639587,32.837877],[-83.64130850000001,32.838413800000005]]},"id":"8944c0a3403ffff-13f6f4d02a075e4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718698,32.80417]},"id":"8f44c0b0e053b08-17fe75c5c3f81594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718553,32.804533]},"id":"8f44c0b0e05e49e-17d7362068c1570c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e053b08-17fe75c5c3f81594","8f44c0b0e05e49e-17d7362068c1570c"]},"geometry":{"type":"LineString","coordinates":[[-83.718698,32.80417],[-83.718553,32.804533]]},"id":"8944c0b0e07ffff-17dfb5f31b818fa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630993,32.743702]},"id":"8f44c0b16a1272e-13dfcbe56fd4223e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62115700000001,32.743609]},"id":"8f44c0b160aa995-1397a3e8e277ba19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b16a1272e-13dfcbe56fd4223e","8f44c0b160aa995-1397a3e8e277ba19"]},"geometry":{"type":"LineString","coordinates":[[-83.630993,32.743702],[-83.629692,32.743679],[-83.62901600000001,32.743677000000005],[-83.626874,32.743667],[-83.62407300000001,32.743647],[-83.623689,32.743643],[-83.622121,32.743629],[-83.62161,32.743617],[-83.62115700000001,32.743609]]},"id":"8744c0b16ffffff-13b797e724e1a77b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71247600000001,32.784933]},"id":"8f44c0b03b62684-17f764f68909dcda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716227,32.784262000000005]},"id":"8f44c0b017a3c89-17d7fbce2a02293f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b62684-17f764f68909dcda","8f44c0b017a3c89-17d7fbce2a02293f"]},"geometry":{"type":"LineString","coordinates":[[-83.71247600000001,32.784933],[-83.715072,32.784975],[-83.715224,32.784954],[-83.715338,32.784923],[-83.715433,32.784883],[-83.715525,32.78483],[-83.715664,32.784726],[-83.716227,32.784262000000005]]},"id":"8744c0b01ffffff-17de402d50809f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69964800000001,32.780203]},"id":"8f44c0b03c6c2dc-13fee4480a1790a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699706,32.778829]},"id":"8f44c0b03d4ba71-17966423c62dc220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03d4ba71-17966423c62dc220","8f44c0b03c6c2dc-13fee4480a1790a6"]},"geometry":{"type":"LineString","coordinates":[[-83.69964800000001,32.780203],[-83.699706,32.778829]]},"id":"8844c0b03dfffff-13bfe435eed40efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67195500000001,32.831823]},"id":"8f44c0b1bbaac5a-13f7e7e42c38a238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67202400000001,32.829530000000005]},"id":"8f44c0b1b85db42-13dee7b90b32f82d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b85db42-13dee7b90b32f82d","8f44c0b1bbaac5a-13f7e7e42c38a238"]},"geometry":{"type":"LineString","coordinates":[[-83.67195500000001,32.831823],[-83.67201,32.830339],[-83.67202400000001,32.829530000000005]]},"id":"8744c0b1bffffff-17b6e7cb5312a47a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66329900000001,32.781792]},"id":"8f44c0b112235a0-17debd0626c83c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66346300000001,32.781768]},"id":"8f44c0b11223c51-17bfbc9fabfed6e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11223c51-17bfbc9fabfed6e8","8f44c0b112235a0-17debd0626c83c25"]},"geometry":{"type":"LineString","coordinates":[[-83.66329900000001,32.781792],[-83.663235,32.781253],[-83.663251,32.78121],[-83.663291,32.781188],[-83.663341,32.781188],[-83.66337700000001,32.781211],[-83.663398,32.781258],[-83.66346300000001,32.781768]]},"id":"8a44c0b11227fff-17ffbcebdc5914ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736191,32.851863]},"id":"8f44c0b565a872c-13de6b10aec7b0ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73774,32.844825]},"id":"8f44c0b0b3618a6-13bfa74881af9991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b565a872c-13de6b10aec7b0ae","8f44c0b0b3618a6-13bfa74881af9991"]},"geometry":{"type":"LineString","coordinates":[[-83.736191,32.851863],[-83.73608,32.851644],[-83.73599800000001,32.851416],[-83.735932,32.850892],[-83.73589700000001,32.850101],[-83.735888,32.849618],[-83.735911,32.849415],[-83.735989,32.849198],[-83.73605900000001,32.849035],[-83.736152,32.848869],[-83.736333,32.848574],[-83.73643200000001,32.848298],[-83.73644300000001,32.848146],[-83.736433,32.847866],[-83.736445,32.847668],[-83.736491,32.847423],[-83.73653300000001,32.847279],[-83.736608,32.847079],[-83.73676800000001,32.846846],[-83.737094,32.84644],[-83.737559,32.84582],[-83.73790500000001,32.845298],[-83.737944,32.84518],[-83.73792300000001,32.845094],[-83.73774,32.844825]]},"id":"8444c0bffffffff-13ffba1d187b9410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56356600000001,32.864869]},"id":"8f44c0b886dbdb2-139fb083448f9299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562027,32.869048]},"id":"8f44c0b8bc73546-13d7b44526131642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b886dbdb2-139fb083448f9299","8f44c0b8bc73546-13d7b44526131642"]},"geometry":{"type":"LineString","coordinates":[[-83.56356600000001,32.864869],[-83.56245600000001,32.86538],[-83.562274,32.865484],[-83.56211400000001,32.865716],[-83.56207400000001,32.865938],[-83.56206800000001,32.866636],[-83.562098,32.867006],[-83.56222100000001,32.867272],[-83.56232100000001,32.867455],[-83.562444,32.867852],[-83.562488,32.868215],[-83.562488,32.868414],[-83.56244600000001,32.868591],[-83.562353,32.868741],[-83.562027,32.869048]]},"id":"8844c0b8bdfffff-17bff34de32c7980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6756635,32.837406900000005]},"id":"8f44c0b1ba59cb3-1797ded65b9deeec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6762509,32.8364011]},"id":"8f44c0b1ba40389-179ebd6736bfd09d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba40389-179ebd6736bfd09d","8f44c0b1ba59cb3-1797ded65b9deeec"]},"geometry":{"type":"LineString","coordinates":[[-83.6756635,32.837406900000005],[-83.6762509,32.8364011]]},"id":"8944c0b1ba7ffff-17df9e1ec51ca372"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707797,32.779283]},"id":"8f44c0b039591b6-13bff062edfaf851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70802300000001,32.779286]},"id":"8f44c0b0395984e-13bfcfd5a18c3a88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0395984e-13bfcfd5a18c3a88","8f44c0b039591b6-13bff062edfaf851"]},"geometry":{"type":"LineString","coordinates":[[-83.707797,32.779283],[-83.70802300000001,32.779286]]},"id":"8b44c0b03959fff-13bed01c4e3e36cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692779,32.875699000000004]},"id":"8f44c0a206dead2-179ff50d2e7c0aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69811100000001,32.875828]},"id":"8f44c0a2064921b-17f6e808a9b7004d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a206dead2-179ff50d2e7c0aa8","8f44c0a2064921b-17f6e808a9b7004d"]},"geometry":{"type":"LineString","coordinates":[[-83.692779,32.875699000000004],[-83.69514000000001,32.875697],[-83.697094,32.875715],[-83.697866,32.875743],[-83.69811100000001,32.875828]]},"id":"8644c0a27ffffff-1796ee8682b3319e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6333068,32.8464089]},"id":"8f44c0a3468c8a3-179f963f4fe56745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633358,32.846128]},"id":"8f44c0a346aa01e-13df061f49ab4c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346aa01e-13df061f49ab4c18","8f44c0a3468c8a3-179f963f4fe56745"]},"geometry":{"type":"LineString","coordinates":[[-83.6333068,32.8464089],[-83.633335,32.846209],[-83.633358,32.846128]]},"id":"8944c0a346bffff-17b74631c3688d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70710000000001,32.8981]},"id":"8f44c0a2ecea76c-13d6d216856d2823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711899,32.89819]},"id":"8f44c0a2e135712-13fec65f2bee02c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e135712-13fec65f2bee02c3","8f44c0a2ecea76c-13d6d216856d2823"]},"geometry":{"type":"LineString","coordinates":[[-83.70710000000001,32.8981],[-83.71065,32.898167],[-83.711899,32.89819]]},"id":"8744c0a2effffff-13decc3adaab72a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746981,32.829611]},"id":"8f44c0b09cdc0e9-139ff0b8e50a0fcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746932,32.830708]},"id":"8f44c0b0956642c-17bdf0d786a5cb9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0956642c-17bdf0d786a5cb9d","8f44c0b09cdc0e9-139ff0b8e50a0fcb"]},"geometry":{"type":"LineString","coordinates":[[-83.746981,32.829611],[-83.746932,32.830708]]},"id":"8744c0b09ffffff-17f5f0c839861e48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672047,32.89475]},"id":"8f44c0a04058163-1396e7aaa51ea16d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67283300000001,32.895701]},"id":"8f44c0a043a55a9-17f7a5bf6cd95956"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a043a55a9-17f7a5bf6cd95956","8f44c0a04058163-1396e7aaa51ea16d"]},"geometry":{"type":"LineString","coordinates":[[-83.672047,32.89475],[-83.672486,32.895266],[-83.67283300000001,32.895701]]},"id":"8744c0a04ffffff-13bea6b2bd179859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67827700000001,32.842261]},"id":"8f44c0a26c0e84d-13ffb874e7172578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c0e84d-13ffb874e7172578","8f44c0a26c31134-17bfda058773e9ad"]},"geometry":{"type":"LineString","coordinates":[[-83.677636,32.840722],[-83.677745,32.840747],[-83.67797900000001,32.84091],[-83.67808500000001,32.841016],[-83.678174,32.841127],[-83.678247,32.841267],[-83.67842300000001,32.841759],[-83.67845100000001,32.84187],[-83.678442,32.841977],[-83.678421,32.842039],[-83.67834,32.842177],[-83.67827700000001,32.842261]]},"id":"8944c0a26c3ffff-13df98a7659f679b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68519500000001,32.894353]},"id":"8f44c0a23683051-139ea79120b82716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687133,32.89567]},"id":"8f44c0a236f32ad-17d7c2d5ebbdd903"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a236f32ad-17d7c2d5ebbdd903","8f44c0a23683051-139ea79120b82716"]},"geometry":{"type":"LineString","coordinates":[[-83.68519500000001,32.894353],[-83.685023,32.894692],[-83.684922,32.894911],[-83.68478800000001,32.895215],[-83.684729,32.895401],[-83.68472600000001,32.895437],[-83.684735,32.895502],[-83.68474900000001,32.895527],[-83.68478900000001,32.895574],[-83.684847,32.895609],[-83.684921,32.895631],[-83.685006,32.89564],[-83.68590400000001,32.895646],[-83.686527,32.895642],[-83.686805,32.895645],[-83.68700100000001,32.895651],[-83.687133,32.89567]]},"id":"8844c0a237fffff-17b7e6a0e098333c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74424300000001,32.754969]},"id":"8f44c0b2e456cdb-17dff7682959f8e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741113,32.763371]},"id":"8f44c0b05a4a134-13d7ff0c6b6c8c30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b05a4a134-13d7ff0c6b6c8c30","8f44c0b2e456cdb-17dff7682959f8e5"]},"geometry":{"type":"LineString","coordinates":[[-83.74424300000001,32.754969],[-83.744027,32.755175],[-83.74381600000001,32.755384],[-83.743412,32.755806],[-83.74326900000001,32.755969],[-83.743228,32.756078],[-83.74321,32.756240000000005],[-83.743228,32.756383],[-83.74330900000001,32.756694],[-83.74339900000001,32.756957],[-83.74348300000001,32.757272],[-83.743599,32.757768],[-83.743688,32.758311],[-83.743723,32.758586],[-83.74373700000001,32.758651],[-83.743758,32.759088000000006],[-83.74099700000001,32.759317],[-83.741113,32.763371]]},"id":"8644c0b2fffffff-17bdfbed39cb8806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675765,32.834048]},"id":"8f44c0b1ba2da6d-17f69e96e91129a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba2da6d-17f69e96e91129a8","8f44c0b1ba7090c-13be9ea90e6474cf"]},"geometry":{"type":"LineString","coordinates":[[-83.675736,32.834992],[-83.675765,32.834048]]},"id":"8844c0b1bbfffff-17979e9ff5ad1cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682118,32.827019]},"id":"8f44c0b1954335c-17b6ef1447c7ce05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68663600000001,32.826473]},"id":"8f44c0b1918d915-13f7a40c812cf69a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1918d915-13f7a40c812cf69a","8f44c0b1954335c-17b6ef1447c7ce05"]},"geometry":{"type":"LineString","coordinates":[[-83.682118,32.827019],[-83.682467,32.826963],[-83.68455,32.82656],[-83.68499100000001,32.826483],[-83.685253,32.826462],[-83.68623000000001,32.826468000000006],[-83.68663600000001,32.826473]]},"id":"8744c0b19ffffff-17d6a995ccb1da27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6395586,32.8309816]},"id":"8f44c0a34d58b8e-17f7f6fbe5255ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63767010000001,32.831943100000004]},"id":"8f44c0a34c09d22-13befb983ad66959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d58b8e-17f7f6fbe5255ddb","8f44c0a34c09d22-13befb983ad66959"]},"geometry":{"type":"LineString","coordinates":[[-83.6395586,32.8309816],[-83.638712,32.831407],[-83.63767010000001,32.831943100000004]]},"id":"8844c0a34dfffff-139ef94acfaab688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63652300000001,32.83319]},"id":"8f44c0a34ce3110-17d7fe6520916210"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637629,32.831885]},"id":"8f44c0a34c08a66-139efbb1e18f1ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c08a66-139efbb1e18f1ed9","8f44c0a34ce3110-17d7fe6520916210"]},"geometry":{"type":"LineString","coordinates":[[-83.63652300000001,32.83319],[-83.63707500000001,32.832535],[-83.637629,32.831885]]},"id":"8844c0a34dfffff-13bffd0c1142bf3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69078400000001,32.844766]},"id":"8f44c0a2686855b-139ef9ec0498bf10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69073300000001,32.8470747]},"id":"8f44c0a26b13980-17bffa0bec8e8fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2686855b-139ef9ec0498bf10","8f44c0a26b13980-17bffa0bec8e8fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.69078400000001,32.844766],[-83.69073300000001,32.8470747]]},"id":"8744c0a26ffffff-13de79fbf26c9753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65442180000001,32.8467584]},"id":"8f44c0a35c0014e-17fed2b26f918ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65548600000001,32.846998]},"id":"8f44c0a35c286b4-17ffd0194281467b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c286b4-17ffd0194281467b","8f44c0a35c0014e-17fed2b26f918ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.65442180000001,32.8467584],[-83.654634,32.846807000000005],[-83.654977,32.846884],[-83.65548600000001,32.846998]]},"id":"8944c0a35c3ffff-17b7f165e56c994d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77059100000001,32.877096]},"id":"8f44c0b50354089-17fdb714a358a257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7702191,32.8752153]},"id":"8f44c0b5032e756-13f5b7fd1fd81c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50354089-17fdb714a358a257","8f44c0b5032e756-13f5b7fd1fd81c29"]},"geometry":{"type":"LineString","coordinates":[[-83.77059100000001,32.877096],[-83.77028800000001,32.876891],[-83.770183,32.876801],[-83.770145,32.876761],[-83.770109,32.876714],[-83.770027,32.876562],[-83.770009,32.876514],[-83.769993,32.876359],[-83.769999,32.87626],[-83.7702191,32.8752153]]},"id":"8844c0b503fffff-17f7b8243ef7297c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73534500000001,32.902305000000005]},"id":"8f44c0a2c390ba8-1796ad216e3531a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735605,32.901536]},"id":"8f44c0a2c3b2ae3-13b60c7eea1c4d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c390ba8-1796ad216e3531a4","8f44c0a2c3b2ae3-13b60c7eea1c4d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.73534500000001,32.902305000000005],[-83.7354,32.901915],[-83.73542300000001,32.901791],[-83.735455,32.901702],[-83.73550900000001,32.901618],[-83.735605,32.901536]]},"id":"8944c0a2c3bffff-1797acee7251a403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689338,32.84967]},"id":"8f44c0a26aa5a70-1797fd73ca37420e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68976500000001,32.850442]},"id":"8f44c0a26a13674-17f67c68e2d6f343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a13674-17f67c68e2d6f343","8f44c0a26aa5a70-1797fd73ca37420e"]},"geometry":{"type":"LineString","coordinates":[[-83.689338,32.84967],[-83.689543,32.84968],[-83.689727,32.849699],[-83.68976,32.84971],[-83.689778,32.849721],[-83.689791,32.849736],[-83.68980300000001,32.84976],[-83.68980900000001,32.849794],[-83.68979200000001,32.849994],[-83.689778,32.850274],[-83.68976500000001,32.850442]]},"id":"8a44c0a26a17fff-17b7fc90af699433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66135600000001,32.785259]},"id":"8f44c0b112d5a83-17d6e1c48c892e31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66131100000001,32.786212]},"id":"8f44c0b112d8d76-1396c1e0a3a23ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112d8d76-1396c1e0a3a23ab2","8f44c0b112d5a83-17d6e1c48c892e31"]},"geometry":{"type":"LineString","coordinates":[[-83.66135600000001,32.785259],[-83.661348,32.785663],[-83.66132800000001,32.786023],[-83.66131100000001,32.786212]]},"id":"8944c0b112fffff-13fee1ce63552ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6155404,32.8586892]},"id":"8f44c0a3281e38c-139ff19f4051e812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61432450000001,32.8585729]},"id":"8f44c0a328ae375-13d7349734e210ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3281e38c-139ff19f4051e812","8f44c0a328ae375-13d7349734e210ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6155404,32.8586892],[-83.61535280000001,32.8586321],[-83.6151765,32.8586126],[-83.61432450000001,32.8585729]]},"id":"8844c0a329fffff-13d7f318e17b67b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67568700000001,32.826150000000005]},"id":"8f44c0b19599426-1397dec7a822327b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67747200000001,32.826109]},"id":"8f44c0b19432532-13feba6c073e3bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19432532-13feba6c073e3bbb","8f44c0b19599426-1397dec7a822327b"]},"geometry":{"type":"LineString","coordinates":[[-83.67568700000001,32.826150000000005],[-83.675915,32.826205],[-83.676461,32.82622],[-83.676862,32.826222],[-83.67709400000001,32.826197],[-83.67730300000001,32.826155],[-83.67732260000001,32.8261497],[-83.67747200000001,32.826109]]},"id":"8844c0b195fffff-13b7dc98d801ab56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697946,32.842011]},"id":"8f44c0a24556081-13d6e86fcb5212e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697404,32.841538]},"id":"8f44c0a2450a255-13bf69c2859cafcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2450a255-13bf69c2859cafcd","8f44c0a24556081-13d6e86fcb5212e7"]},"geometry":{"type":"LineString","coordinates":[[-83.697946,32.842011],[-83.697719,32.841808],[-83.697404,32.841538]]},"id":"8844c0a245fffff-13be79186da03717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684081,32.842095]},"id":"8f44c0a268a2822-1397ea496202e4ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684539,32.840711]},"id":"8f44c0a269832e4-17b6e92b2aae4d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268a2822-1397ea496202e4ca","8f44c0a269832e4-17b6e92b2aae4d3a"]},"geometry":{"type":"LineString","coordinates":[[-83.684081,32.842095],[-83.684539,32.840711]]},"id":"8844c0a269fffff-13d6e9ba4fbd3250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54170900000001,32.844853]},"id":"8f44c0b9da66a31-13d7e5dfe022498c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539367,32.844535]},"id":"8f44c0b9da0c018-17ffeb97aa7fc0f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b9da66a31-13d7e5dfe022498c","8f44c0b9da0c018-17ffeb97aa7fc0f4"]},"geometry":{"type":"LineString","coordinates":[[-83.54170900000001,32.844853],[-83.541488,32.844479],[-83.541156,32.843936],[-83.541099,32.84385],[-83.540204,32.842864],[-83.54014400000001,32.842812],[-83.540053,32.842792],[-83.54,32.842801],[-83.539917,32.84286],[-83.539366,32.843519],[-83.539316,32.843612],[-83.53931100000001,32.843759],[-83.53932,32.843928000000005],[-83.539367,32.844535]]},"id":"8844c0b9dbfffff-17f7f93f757fae05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704993,32.888249]},"id":"8f44c0a23a70842-13b7f73b6efaabb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70560300000001,32.887738]},"id":"8f44c0a23b5bba4-13f655be212f0e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a70842-13b7f73b6efaabb2","8f44c0a23b5bba4-13f655be212f0e9f"]},"geometry":{"type":"LineString","coordinates":[[-83.704993,32.888249],[-83.70560300000001,32.887738]]},"id":"8844c0a23bfffff-1397f67ccb743b04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71150700000001,32.785645]},"id":"8f44c0b03b55659-13b667542d4d2959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711572,32.784095]},"id":"8f44c0b03b76821-17ff672b8dfdf66e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b76821-17ff672b8dfdf66e","8f44c0b03b55659-13b667542d4d2959"]},"geometry":{"type":"LineString","coordinates":[[-83.71150700000001,32.785645],[-83.71153100000001,32.785345],[-83.711572,32.784095]]},"id":"8844c0b03bfffff-17dff73c47e63f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677817,32.825735]},"id":"8f44c0b19436109-1396f994686dc6bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b19432532-13feba6c073e3bbb","8f44c0b19436109-1396f994686dc6bd"]},"geometry":{"type":"LineString","coordinates":[[-83.677817,32.825735],[-83.677712,32.82584],[-83.67747200000001,32.826109]]},"id":"8844c0b195fffff-1397fa01929d5685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695153,32.861266]},"id":"8f44c0a20ccc450-13d76f416102848c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69610300000001,32.861238]},"id":"8f44c0a201b6d23-13d7ecefa1e86275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201b6d23-13d7ecefa1e86275","8f44c0a20ccc450-13d76f416102848c"]},"geometry":{"type":"LineString","coordinates":[[-83.695153,32.861266],[-83.69610300000001,32.861238]]},"id":"8944c0a20cfffff-13deee1882cf2624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564631,32.778377]},"id":"8f44c0ba37126d9-17f7ade9a09d22eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567234,32.775152]},"id":"8f44c0ba3080456-1797a78ec1b45dc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0ba37126d9-17f7ade9a09d22eb","8f44c0ba3080456-1797a78ec1b45dc9"]},"geometry":{"type":"LineString","coordinates":[[-83.564631,32.778377],[-83.56480400000001,32.778276000000005],[-83.565213,32.777969],[-83.56528700000001,32.777917],[-83.56551300000001,32.777775000000005],[-83.56559800000001,32.777734],[-83.565702,32.7777],[-83.566237,32.777563],[-83.566507,32.777484],[-83.566587,32.777447],[-83.566669,32.777389],[-83.56672300000001,32.777337],[-83.566879,32.777133],[-83.56693700000001,32.777037],[-83.567124,32.77678],[-83.567171,32.776684],[-83.56718400000001,32.776649],[-83.56720700000001,32.776519],[-83.56721900000001,32.776406],[-83.56722500000001,32.776128],[-83.56721800000001,32.775762],[-83.567204,32.775534],[-83.567205,32.775433],[-83.567234,32.775152]]},"id":"8744c0ba3ffffff-13bfb9a1f77adebf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653828,32.849431]},"id":"8f44c0a35cc4ae8-13fef4258503c12f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653484,32.851171]},"id":"8f44c0a35cca6d5-13bff4fc87453bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cc4ae8-13fef4258503c12f","8f44c0a35cca6d5-13bff4fc87453bb6"]},"geometry":{"type":"LineString","coordinates":[[-83.653828,32.849431],[-83.653586,32.850217],[-83.65349300000001,32.850608],[-83.653484,32.851171]]},"id":"8944c0a35cfffff-179ed4b3b5d35712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60223400000001,32.848027]},"id":"8f44c0b8da36130-1397f21bcdad9f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6022263,32.848627300000004]},"id":"8f44c0b8da32321-13ff52209a5f35de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da32321-13ff52209a5f35de","8f44c0b8da36130-1397f21bcdad9f24"]},"geometry":{"type":"LineString","coordinates":[[-83.60223400000001,32.848027],[-83.60213300000001,32.848276000000006],[-83.602117,32.848426],[-83.6021274,32.8485389],[-83.6022263,32.848627300000004]]},"id":"8a44c0b8da37fff-13d7f24af9512ed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7441584,32.849876900000005]},"id":"8f44c0b56c5125e-1795f79d055e6316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74421500000001,32.848239]},"id":"8f44c0b56c76268-1395f779a2d07171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56c5125e-1795f79d055e6316","8f44c0b56c76268-1395f779a2d07171"]},"geometry":{"type":"LineString","coordinates":[[-83.7441584,32.849876900000005],[-83.74421500000001,32.848239]]},"id":"8944c0b56c7ffff-1395f78b51228376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674051,32.880314000000006]},"id":"8f44c0a22648dab-17d6e2c62f1a333f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67320500000001,32.881786000000005]},"id":"8f44c0a049a3cf4-13fee4d6e41ffc26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22648dab-17d6e2c62f1a333f","8f44c0a049a3cf4-13fee4d6e41ffc26"]},"geometry":{"type":"LineString","coordinates":[[-83.674051,32.880314000000006],[-83.67320500000001,32.881786000000005]]},"id":"8644c0a27ffffff-13b6e3ce84c2a3ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559621,32.834032]},"id":"8f44c0b8e85ea25-17d7ba24e6d05ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e8c9d21-13f7fe0102fb2012","8f44c0b8e85ea25-17d7ba24e6d05ade"]},"geometry":{"type":"LineString","coordinates":[[-83.559621,32.834032],[-83.55947400000001,32.834178],[-83.55941800000001,32.834211],[-83.55934400000001,32.834234],[-83.559267,32.834238],[-83.55851200000001,32.834209],[-83.558425,32.834252],[-83.558374,32.834296],[-83.55834800000001,32.834328],[-83.558318,32.834384],[-83.558249,32.835315],[-83.55804,32.83531]]},"id":"8844c0b8e9fffff-179fbc81038f2079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7277722,32.8066097]},"id":"8f44c0b08db0143-13f71f9e63779b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721676,32.794646]},"id":"8f44c0b0e81504b-17bfee808309687d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e81504b-17bfee808309687d","8f44c0b08db0143-13f71f9e63779b54"]},"geometry":{"type":"LineString","coordinates":[[-83.7277722,32.8066097],[-83.725944,32.806587],[-83.725295,32.806578],[-83.725143,32.806551],[-83.72505500000001,32.806495000000005],[-83.7250101,32.8064302],[-83.72499,32.806339],[-83.72497600000001,32.806213],[-83.724946,32.80613],[-83.72488200000001,32.80601],[-83.723201,32.803485],[-83.722893,32.80294],[-83.72256300000001,32.802284],[-83.722339,32.801817],[-83.72228600000001,32.801696],[-83.72206800000001,32.801195],[-83.72196600000001,32.800914],[-83.721697,32.800004],[-83.721501,32.799042],[-83.72148800000001,32.798851],[-83.72151600000001,32.798726],[-83.721565,32.79863],[-83.721739,32.798436],[-83.72184,32.798305],[-83.72189900000001,32.79813],[-83.7219,32.797929],[-83.72168900000001,32.795862],[-83.721591,32.794842],[-83.72161100000001,32.794797],[-83.721619,32.794724],[-83.721649,32.794677],[-83.721676,32.794646]]},"id":"8744c0b0effffff-17973aa89c92c3ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.536006,32.824925]},"id":"8f44c0b830e8873-139ff3cc4b5ad154"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53732600000001,32.826105000000005]},"id":"8f44c0b833a66ed-13fff0934107e3fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b830e8873-139ff3cc4b5ad154","8f44c0b833a66ed-13fff0934107e3fd"]},"geometry":{"type":"LineString","coordinates":[[-83.536006,32.824925],[-83.53609300000001,32.824968000000005],[-83.536287,32.825131],[-83.537186,32.825986],[-83.53732600000001,32.826105000000005]]},"id":"8744c0b83ffffff-1397f22a54b8e29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73783200000001,32.744408]},"id":"8f44c0b2338d752-1397070f0cf51ff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73791960000001,32.7417291]},"id":"8f44c0b2304b585-17feb6d846c97e94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2338d752-1397070f0cf51ff1","8f44c0b2304b585-17feb6d846c97e94"]},"geometry":{"type":"LineString","coordinates":[[-83.73783200000001,32.744408],[-83.737869,32.742987],[-83.737875,32.74241],[-83.73791960000001,32.7417291]]},"id":"8844c0b233fffff-13d796f92a5f271d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54559300000001,32.833425000000005]},"id":"8f44c0b8e5210ae-17dffc646c64130e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54530000000001,32.831052]},"id":"8f44c0b8ec80461-179fdd1b8c85e9a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e5210ae-17dffc646c64130e","8f44c0b8ec80461-179fdd1b8c85e9a8"]},"geometry":{"type":"LineString","coordinates":[[-83.54559300000001,32.833425000000005],[-83.545158,32.83308],[-83.54504,32.832974],[-83.54496800000001,32.832887],[-83.54494700000001,32.832803000000006],[-83.544956,32.832689],[-83.54504200000001,32.832334],[-83.545204,32.831547],[-83.545231,32.831342],[-83.54530000000001,32.831052]]},"id":"8744c0b8effffff-13b7dd71b9fe90e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66580900000001,32.881225]},"id":"8f44c0a04d1170b-139fb6e56ebac804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66781200000001,32.881915]},"id":"8f44c0a04d0d468-13bef201855a1411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d1170b-139fb6e56ebac804","8f44c0a04d0d468-13bef201855a1411"]},"geometry":{"type":"LineString","coordinates":[[-83.66580900000001,32.881225],[-83.665761,32.881469],[-83.665728,32.881710000000005],[-83.665729,32.881762],[-83.66575300000001,32.881821],[-83.665811,32.881863],[-83.665925,32.881887],[-83.66708100000001,32.882089],[-83.66729500000001,32.882098],[-83.667519,32.882032],[-83.66781200000001,32.881915]]},"id":"8944c0a04d3ffff-13bef51205ec1170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657725,32.800615]},"id":"8f44c0b1e30046b-17d6eaa1e12303e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65952800000001,32.799669]},"id":"8f44c0b1ead2821-13f7e63b068091bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e30046b-17d6eaa1e12303e6","8f44c0b1ead2821-13f7e63b068091bb"]},"geometry":{"type":"LineString","coordinates":[[-83.657725,32.800615],[-83.657798,32.79976],[-83.657815,32.799722],[-83.657881,32.799653],[-83.65794100000001,32.799628000000006],[-83.658,32.799608],[-83.65805900000001,32.799599],[-83.658179,32.799597],[-83.65840800000001,32.799604],[-83.65952800000001,32.799669]]},"id":"8744c0b1effffff-13def919e46430b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009335,32.8919525]},"id":"8f44c0a2337551b-13be712497a8ecd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699741,32.892456]},"id":"8f44c0a23309232-17ff640de1f14497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2337551b-13be712497a8ecd4","8f44c0a23309232-17ff640de1f14497"]},"geometry":{"type":"LineString","coordinates":[[-83.7009335,32.8919525],[-83.699741,32.892456]]},"id":"8944c0a2337ffff-17dff2994b5914e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696298,32.859102]},"id":"8f44c0a20c09604-139eec75c9114ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c09604-139eec75c9114ba2","8f44c0a201b6d23-13d7ecefa1e86275"]},"geometry":{"type":"LineString","coordinates":[[-83.696298,32.859102],[-83.696211,32.860529],[-83.696157,32.860819],[-83.69610300000001,32.861238]]},"id":"8844c0a20dfffff-17b7fca6523d4048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53187100000001,32.824872]},"id":"8f44c0b83720641-17fffde4ad9074ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5316159,32.8251129]},"id":"8f44c0b8372340c-139ffe84159746b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83720641-17fffde4ad9074ca","8f44c0b8372340c-139ffe84159746b9"]},"geometry":{"type":"LineString","coordinates":[[-83.53187100000001,32.824872],[-83.531779,32.824984],[-83.5316159,32.8251129]]},"id":"8a44c0b83727fff-13dffe306892a192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687492,32.876143]},"id":"8f44c0a23da36ca-17b7e1f58c7d9e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68342600000001,32.876761]},"id":"8f44c0a22346870-17b7abe2c7a1f6a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23da36ca-17b7e1f58c7d9e2a","8f44c0a22346870-17b7abe2c7a1f6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.687492,32.876143],[-83.687382,32.876092],[-83.687251,32.876071],[-83.6871,32.876072],[-83.686694,32.876105],[-83.686587,32.876102],[-83.686481,32.876089],[-83.686378,32.876067],[-83.68628100000001,32.876027],[-83.68620700000001,32.875985],[-83.685991,32.875808],[-83.685868,32.875718],[-83.68572300000001,32.875664],[-83.685574,32.875625],[-83.685451,32.87561],[-83.68530600000001,32.875599],[-83.685068,32.875605],[-83.685024,32.875614],[-83.684881,32.875641],[-83.68468100000001,32.875715],[-83.683684,32.876209],[-83.683605,32.876261],[-83.683547,32.876326],[-83.683498,32.876406],[-83.68348,32.876474],[-83.68346700000001,32.876638],[-83.68345000000001,32.876703],[-83.68342600000001,32.876761]]},"id":"8644c0a27ffffff-17be8756c21ce7f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700681,32.880813]},"id":"8f44c0a238700e8-139e61c26ddc531c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7007414,32.8801281]},"id":"8f44c0a23874d09-17f6719ca8e6ac67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23874d09-17f6719ca8e6ac67","8f44c0a238700e8-139e61c26ddc531c"]},"geometry":{"type":"LineString","coordinates":[[-83.700681,32.880813],[-83.700721,32.880425],[-83.7007414,32.8801281]]},"id":"8a44c0a23877fff-17b661adb4da4316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676551,32.87454]},"id":"8f44c0a223b2c81-13bf9cabae9abb7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6749827,32.874182600000005]},"id":"8f44c0a220dd1ae-13dea07fd2c1d2d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a220dd1ae-13dea07fd2c1d2d1","8f44c0a223b2c81-13bf9cabae9abb7b"]},"geometry":{"type":"LineString","coordinates":[[-83.676551,32.87454],[-83.6749827,32.874182600000005]]},"id":"8844c0a221fffff-13dfde95c26a0e82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695535,32.743639]},"id":"8f44c0b06846af5-13b66e52a674b8c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69549500000001,32.744729]},"id":"8f44c0b0685d11d-17dfee6ba6bfde3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06846af5-13b66e52a674b8c6","8f44c0b0685d11d-17dfee6ba6bfde3c"]},"geometry":{"type":"LineString","coordinates":[[-83.695535,32.743639],[-83.69549500000001,32.744729]]},"id":"8944c0b0687ffff-13ff6e5f2b7c5fc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66115400000001,32.829624]},"id":"8f44c0b1b1b6341-1397c242c982dd3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66268000000001,32.829544]},"id":"8f44c0b1b1a4732-13f7be8909c2fbaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1a4732-13f7be8909c2fbaa","8f44c0b1b1b6341-1397c242c982dd3c"]},"geometry":{"type":"LineString","coordinates":[[-83.66115400000001,32.829624],[-83.66213,32.829585],[-83.66268000000001,32.829544]]},"id":"8944c0b1b1bffff-13ffd065bc9da23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617016,32.8862961]},"id":"8f44c0a045359b2-17ffd0ec8fc484f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66105200000001,32.886559000000005]},"id":"8f44c0a04530572-1797e2828b59aef7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04530572-1797e2828b59aef7","8f44c0a045359b2-17ffd0ec8fc484f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6617016,32.8862961],[-83.66122580000001,32.886532800000005],[-83.66105200000001,32.886559000000005]]},"id":"8a44c0a04537fff-17dff1b3ab754415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6426,32.812584]},"id":"8f44c0b1acc5a4c-13ffef8f02e5fd3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64533800000001,32.812631]},"id":"8f44c0b1ac4e559-1396e8dfc5825108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac4e559-1396e8dfc5825108","8f44c0b1acc5a4c-13ffef8f02e5fd3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6426,32.812584],[-83.643974,32.812598],[-83.64533800000001,32.812631]]},"id":"8844c0b1adfffff-1396fc375e1d1300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75775300000001,32.855428]},"id":"8f44c0b56a2d884-1397d66c698d14a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75729890000001,32.8558569]},"id":"8f44c0b56a282f4-139fd7883aaad49a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56a282f4-139fd7883aaad49a","8f44c0b56a2d884-1397d66c698d14a7"]},"geometry":{"type":"LineString","coordinates":[[-83.75775300000001,32.855428],[-83.75729890000001,32.8558569]]},"id":"8a44c0b56a2ffff-139dd6fa5e722d6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649707,32.80406]},"id":"8f44c0b1e67005a-17bfde3529545ef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652747,32.804715]},"id":"8f44c0b1e29121c-17d6f6c92d4e901d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e29121c-17d6f6c92d4e901d","8f44c0b1e67005a-17bfde3529545ef9"]},"geometry":{"type":"LineString","coordinates":[[-83.649707,32.80406],[-83.65109100000001,32.804352],[-83.652747,32.804715]]},"id":"8744c0b1effffff-17f6da7ecac7be9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703923,32.8016]},"id":"8f44c0b0e491816-17be59d8272a8298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702436,32.799379]},"id":"8f44c0b1d940372-13bffd7988fc3f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d940372-13bffd7988fc3f35","8f44c0b0e491816-17be59d8272a8298"]},"geometry":{"type":"LineString","coordinates":[[-83.703923,32.8016],[-83.703889,32.801011],[-83.70389,32.800859],[-83.70395400000001,32.800601],[-83.704009,32.800432],[-83.704098,32.800213],[-83.704176,32.799947],[-83.70414600000001,32.799759],[-83.70404500000001,32.799633],[-83.703905,32.79958],[-83.703242,32.799439],[-83.70290100000001,32.79938],[-83.702734,32.799369],[-83.702436,32.799379]]},"id":"8744c0b1dffffff-13fe5a78f3bc5beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647428,32.847529]},"id":"8f44c0a34271051-17dfe3c58354a682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647121,32.848262000000005]},"id":"8f44c0a34242c4a-1397e4856ef67289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34271051-17dfe3c58354a682","8f44c0a34242c4a-1397e4856ef67289"]},"geometry":{"type":"LineString","coordinates":[[-83.647428,32.847529],[-83.64716700000001,32.848152],[-83.647121,32.848262000000005]]},"id":"8944c0a3427ffff-13bef4257b44497c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67855,32.861443]},"id":"8f44c0a229806e4-13d7f7ca4da58db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678527,32.862378]},"id":"8f44c0a2298a5a2-139ed7d8a3ded6f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2298a5a2-139ed7d8a3ded6f5","8f44c0a229806e4-13d7f7ca4da58db6"]},"geometry":{"type":"LineString","coordinates":[[-83.67855,32.861443],[-83.678527,32.862378]]},"id":"8944c0a229bffff-13f697d173d6122e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591481,32.853778000000005]},"id":"8f44c0b8d770793-179f6c5c614388f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59045300000001,32.853744]},"id":"8f44c0b8d708209-17f76edeeb887f8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d770793-179f6c5c614388f9","8f44c0b8d708209-17f76edeeb887f8e"]},"geometry":{"type":"LineString","coordinates":[[-83.591481,32.853778000000005],[-83.590728,32.853764000000005],[-83.59045300000001,32.853744]]},"id":"8844c0b8d7fffff-17976d9dc4636ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60424300000001,32.849651]},"id":"8f44c0b8da2848e-17f7ed3428487667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60310940000001,32.8500594]},"id":"8f44c0b8da033ae-17f76ff8aa1f642e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da2848e-17f7ed3428487667","8f44c0b8da033ae-17f76ff8aa1f642e"]},"geometry":{"type":"LineString","coordinates":[[-83.60424300000001,32.849651],[-83.603583,32.849643],[-83.60342700000001,32.849666],[-83.60333200000001,32.849722],[-83.603257,32.849795],[-83.60310940000001,32.8500594]]},"id":"8944c0b8da3ffff-17b7cec1cc394099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699785,32.880584]},"id":"8f44c0a2380d0d0-17ff63f268b445ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994983,32.881289200000005]},"id":"8f44c0a23856ce3-13b7e4a5985cf160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23856ce3-13b7e4a5985cf160","8f44c0a2380d0d0-17ff63f268b445ca"]},"geometry":{"type":"LineString","coordinates":[[-83.699785,32.880584],[-83.6994983,32.881289200000005]]},"id":"8844c0a239fffff-13df644c0465ecaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590162,32.854737]},"id":"8f44c0b8d62194b-13f7ef94cec123f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590185,32.855699]},"id":"8f44c0b8d6280d8-13bfef866424b234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6280d8-13bfef866424b234","8f44c0b8d62194b-13f7ef94cec123f1"]},"geometry":{"type":"LineString","coordinates":[[-83.590162,32.854737],[-83.59018,32.855232],[-83.590185,32.855699]]},"id":"8944c0b8d63ffff-139f7f8ba10628e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62430850000001,32.8736973]},"id":"8f44c0a33c1c0e1-17bfdc373d6b5f13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624069,32.875124]},"id":"8f44c0a33cf5270-13bf9ccce5ed5f59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33cf5270-13bf9ccce5ed5f59","8f44c0a33c1c0e1-17bfdc373d6b5f13"]},"geometry":{"type":"LineString","coordinates":[[-83.62430850000001,32.8736973],[-83.624239,32.873806],[-83.62401700000001,32.874204],[-83.62399500000001,32.874257],[-83.62396100000001,32.874386],[-83.623947,32.874491],[-83.623945,32.874606],[-83.623962,32.874727],[-83.624069,32.875124]]},"id":"8844c0a33dfffff-13df5cd71a3c7e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582509,32.869075]},"id":"8f44c0b8954eb9e-13f7e243e1a69509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582637,32.868032]},"id":"8f44c0b89545d64-13df81f3e2aad37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8954eb9e-13f7e243e1a69509","8f44c0b89545d64-13df81f3e2aad37e"]},"geometry":{"type":"LineString","coordinates":[[-83.582509,32.869075],[-83.58252200000001,32.868979],[-83.582627,32.868181],[-83.582637,32.868032]]},"id":"8944c0b8957ffff-139fb2194b0ffd48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72321310000001,32.876061]},"id":"8f44c0a21856802-17f62abfda0aaa3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7228714,32.8756545]},"id":"8f44c0a2180b931-13f63b9568cd6922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180b931-13f63b9568cd6922","8f44c0a21856802-17f62abfda0aaa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.72321310000001,32.876061],[-83.7228714,32.8756545]]},"id":"8844c0a219fffff-17f72b2a90392cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724249,32.874575]},"id":"8f44c0a2182d269-13d7683865353c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723477,32.874012]},"id":"8f44c0a2182c4a0-17f7aa1ae322ede2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2182c4a0-17f7aa1ae322ede2","8f44c0a2182d269-13d7683865353c07"]},"geometry":{"type":"LineString","coordinates":[[-83.724249,32.874575],[-83.72416100000001,32.874571],[-83.724072,32.874558],[-83.723932,32.874482],[-83.723555,32.874232],[-83.72350800000001,32.874178],[-83.72348600000001,32.874094],[-83.723477,32.874012]]},"id":"8a44c0a2182ffff-13de7951a5a0379d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72257300000001,32.875622]},"id":"8f44c0a2180aac5-13dfec4fec025e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722182,32.875863]},"id":"8f44c0a218e4ce0-17f66d4444e48a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180aac5-13dfec4fec025e7f","8f44c0a218e4ce0-17f66d4444e48a55"]},"geometry":{"type":"LineString","coordinates":[[-83.72257300000001,32.875622],[-83.722182,32.875863]]},"id":"8944c0a2183ffff-17bf3cca14fe0d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72393500000001,32.875033]},"id":"8f44c0a21876911-13ffa8fcaf526e42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723715,32.874865]},"id":"8f44c0a2182bb29-1396a98621bf2faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a21876911-13ffa8fcaf526e42","8f44c0a2182bb29-1396a98621bf2faa"]},"geometry":{"type":"LineString","coordinates":[[-83.72393500000001,32.875033],[-83.723715,32.874865]]},"id":"8944c0a2183ffff-13bf29416383c54f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723465,32.875366]},"id":"8f44c0a2180da82-13bfea226c4b7d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722808,32.874831]},"id":"8f44c0a2180134c-13f76bbd0d72d10a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180da82-13bfea226c4b7d73","8f44c0a2180134c-13f76bbd0d72d10a"]},"geometry":{"type":"LineString","coordinates":[[-83.723465,32.875366],[-83.723022,32.875014],[-83.722808,32.874831]]},"id":"8a44c0a2180ffff-139e3af11e2ae1c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72194,32.794642]},"id":"8f44c0b0e806688-17bf6ddb850f8782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e806688-17bf6ddb850f8782","8f44c0b0e8225a1-17be6c8b41928d1c"]},"geometry":{"type":"LineString","coordinates":[[-83.72247800000001,32.793847],[-83.722345,32.794038],[-83.72216,32.794327],[-83.72212400000001,32.79437],[-83.72208300000001,32.794407],[-83.722004,32.794463],[-83.721973,32.794506000000005],[-83.72196100000001,32.794531],[-83.72194,32.794642]]},"id":"8944c0b0e83ffff-17b6bd3a84b1f3f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e81504b-17bfee808309687d","8f44c0b0e8225a1-17be6c8b41928d1c"]},"geometry":{"type":"LineString","coordinates":[[-83.721676,32.794646],[-83.721564,32.794615],[-83.72154900000001,32.794531],[-83.721551,32.794513],[-83.721562,32.794496],[-83.721604,32.794466],[-83.72167200000001,32.794446],[-83.72189,32.794389],[-83.721958,32.794359],[-83.721987,32.794342],[-83.722015,32.79432],[-83.72203400000001,32.794288],[-83.72206200000001,32.794196],[-83.72208400000001,32.794143000000005],[-83.72211300000001,32.794086],[-83.722181,32.793989],[-83.72222400000001,32.79395],[-83.722254,32.793931],[-83.72237200000001,32.79388],[-83.72247800000001,32.793847]]},"id":"8944c0b0e83ffff-17bebdd09b7f5d00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677903,32.866405]},"id":"8f44c0a22120a73-17dfb95ea39461dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678151,32.86593]},"id":"8f44c0a2288b632-17b6d8c3aabba62e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22120a73-17dfb95ea39461dd","8f44c0a2288b632-17b6d8c3aabba62e"]},"geometry":{"type":"LineString","coordinates":[[-83.677903,32.866405],[-83.67802,32.866284],[-83.678037,32.866258],[-83.67808500000001,32.866143],[-83.678151,32.86593]]},"id":"8844c0a229fffff-17d7d901ae340586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640065,32.8407478]},"id":"8f44c0a340c4d90-17bff5bf67de1739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6405,32.839607]},"id":"8f44c0a34019565-13f6f4af811640a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340c4d90-17bff5bf67de1739","8f44c0a34019565-13f6f4af811640a0"]},"geometry":{"type":"LineString","coordinates":[[-83.640065,32.8407478],[-83.64008000000001,32.840639],[-83.64026000000001,32.840179],[-83.6405,32.839607]]},"id":"8844c0a341fffff-17d6f540b5411bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701693,32.816878]},"id":"8f44c0b1d26ab60-17f6df49e3883c52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701808,32.817427]},"id":"8f44c0b1d26b28b-17dfff020ffcf1b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d26b28b-17dfff020ffcf1b5","8f44c0b1d26ab60-17f6df49e3883c52"]},"geometry":{"type":"LineString","coordinates":[[-83.701693,32.816878],[-83.701744,32.817151],[-83.701808,32.817427]]},"id":"8a44c0b1d26ffff-17b6ff27de51a12c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70573200000001,32.880854]},"id":"8f44c0a214aeb81-13b7d56d8f18732f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70685110000001,32.8800621]},"id":"8f44c0a21410960-17b6d2b214094ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a214aeb81-13b7d56d8f18732f","8f44c0a21410960-17b6d2b214094ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.70573200000001,32.880854],[-83.70588500000001,32.880741],[-83.706029,32.880626],[-83.70670100000001,32.880111],[-83.70685110000001,32.8800621]]},"id":"8844c0a215fffff-17b774168e705b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6755545,32.851401700000004]},"id":"8f44c0a2644e006-13be9f1a7bf4a2c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6754178,32.851553700000004]},"id":"8f44c0a2644e6ac-139f9f6fe2040742"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2644e006-13be9f1a7bf4a2c6","8f44c0a2644e6ac-139f9f6fe2040742"]},"geometry":{"type":"LineString","coordinates":[[-83.6755545,32.851401700000004],[-83.6755085,32.851443700000004],[-83.67545000000001,32.8514952],[-83.6754178,32.851553700000004]]},"id":"8b44c0a2644efff-13febf48d3e4f480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64298140000001,32.8337118]},"id":"8f44c0a3488bc88-179feea0a4dbbe3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64337210000001,32.8332385]},"id":"8f44c0a34888825-17f6fdac781a818e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34888825-17f6fdac781a818e","8f44c0a3488bc88-179feea0a4dbbe3f"]},"geometry":{"type":"LineString","coordinates":[[-83.64298140000001,32.8337118],[-83.64337210000001,32.8332385]]},"id":"8a44c0a3488ffff-17feee2684339eba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5381778,32.8187972]},"id":"8f44c0b8312d851-13b7ee7eea50cc50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b838d8336-139fec9749d17a20","8f44c0b8312d851-13b7ee7eea50cc50"]},"geometry":{"type":"LineString","coordinates":[[-83.53895800000001,32.81917],[-83.538936,32.819012],[-83.538909,32.818984],[-83.53885100000001,32.818961],[-83.5381778,32.8187972]]},"id":"8944c0b838fffff-13f7fd65fd576ab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636397,32.819708]},"id":"8f44c0b1a4c22f0-13dffeb3e1fd6f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637839,32.820566]},"id":"8f44c0b1a4cd644-17f7fb2ea428efdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4c22f0-13dffeb3e1fd6f63","8f44c0b1a4cd644-17f7fb2ea428efdf"]},"geometry":{"type":"LineString","coordinates":[[-83.636397,32.819708],[-83.637839,32.820566]]},"id":"8944c0b1a4fffff-17fffcf14147ca75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61413900000001,32.857489]},"id":"8f44c0a328a42cc-179fb50b21e017be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61341080000001,32.856720100000004]},"id":"8f44c0a329983ad-17bf36d24b24cf93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328a42cc-179fb50b21e017be","8f44c0a329983ad-17bf36d24b24cf93"]},"geometry":{"type":"LineString","coordinates":[[-83.61413900000001,32.857489],[-83.61342,32.857462000000005],[-83.6134068,32.856806500000005],[-83.61341080000001,32.856720100000004]]},"id":"8844c0a329fffff-179f366034928d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683239,32.873832]},"id":"8f44c0a22ad465d-17978c57a4d93c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68354000000001,32.875254000000005]},"id":"8f44c0a22adab42-13ffcb9b84b45c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ad465d-17978c57a4d93c12","8f44c0a22adab42-13ffcb9b84b45c02"]},"geometry":{"type":"LineString","coordinates":[[-83.683239,32.873832],[-83.68335,32.874296],[-83.68354000000001,32.875254000000005]]},"id":"8944c0a22afffff-13be9bf5cd3255ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75441400000001,32.877156]},"id":"8f44c0b52b4d292-179fde9348984eac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7551227,32.8765625]},"id":"8f44c0b52b69318-17bfdcd8528bd49d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52b4d292-179fde9348984eac","8f44c0b52b69318-17bfdcd8528bd49d"]},"geometry":{"type":"LineString","coordinates":[[-83.75441400000001,32.877156],[-83.7551227,32.8765625]]},"id":"8944c0b52b7ffff-17f5ddb5c3323243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654925,32.817496000000006]},"id":"8f44c0b1aa140ec-17f7d177ebc75edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654891,32.816544]},"id":"8f44c0b1aa364b4-13b6d18d26423374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa140ec-17f7d177ebc75edf","8f44c0b1aa364b4-13b6d18d26423374"]},"geometry":{"type":"LineString","coordinates":[[-83.654925,32.817496000000006],[-83.654891,32.816544]]},"id":"8844c0b1abfffff-17dfd1828f31adfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677552,32.82804]},"id":"8f44c0b1941e6cc-17b79a3a04c446b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676805,32.828673]},"id":"8f44c0b194f6c8d-13d6bc0ce49df699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1941e6cc-17b79a3a04c446b2","8f44c0b194f6c8d-13d6bc0ce49df699"]},"geometry":{"type":"LineString","coordinates":[[-83.677552,32.82804],[-83.677256,32.82813],[-83.67701500000001,32.828243],[-83.676794,32.82851],[-83.676805,32.828673]]},"id":"8844c0b195fffff-13de9b5c3d2f80fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675212,32.829577]},"id":"8f44c0b1bb24450-13f7bff08556b5e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675202,32.828665]},"id":"8f44c0b1949d8a8-13bfbff6c6cf8587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb24450-13f7bff08556b5e9","8f44c0b1949d8a8-13bfbff6c6cf8587"]},"geometry":{"type":"LineString","coordinates":[[-83.675212,32.829577],[-83.675188,32.829531],[-83.675183,32.8294],[-83.675202,32.828665]]},"id":"8844c0b195fffff-13defffd175f793b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675731,32.891993]},"id":"8f44c0a04ab0b6b-13d7beac23eceb31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675882,32.892167]},"id":"8f44c0a04ab1810-17d6fe4dc073539f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04ab1810-17d6fe4dc073539f","8f44c0a04ab0b6b-13d7beac23eceb31"]},"geometry":{"type":"LineString","coordinates":[[-83.675731,32.891993],[-83.67581200000001,32.891933],[-83.675915,32.891879],[-83.675971,32.891855],[-83.67601300000001,32.891858],[-83.67605400000001,32.891871],[-83.67608800000001,32.891897],[-83.67612700000001,32.891962],[-83.676147,32.892004],[-83.67614300000001,32.892032],[-83.676113,32.892055],[-83.675882,32.892167]]},"id":"8944c0a04abffff-13d6fe0f58a50db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128211,32.794969]},"id":"8f44c0b0ec1d79d-17f7e41edf445526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec0dab3-179760418888f62a","8f44c0b0ec1d79d-17f7e41edf445526"]},"geometry":{"type":"LineString","coordinates":[[-83.7128211,32.794969],[-83.713103,32.79497],[-83.71342800000001,32.794981],[-83.714079,32.794992],[-83.71428,32.794991],[-83.714404,32.794991]]},"id":"8944c0b0ec3ffff-17ffe2303e4fd568"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64321500000001,32.810389]},"id":"8f44c0b1ac0ea65-179fee0ea5b5ed9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646466,32.810443]},"id":"8f44c0b1ad4b700-17bee61ec018ead1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac0ea65-179fee0ea5b5ed9a","8f44c0b1ad4b700-17bee61ec018ead1"]},"geometry":{"type":"LineString","coordinates":[[-83.64321500000001,32.810389],[-83.646466,32.810443]]},"id":"8844c0b1adfffff-17beea16b1c55b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740074,32.886639]},"id":"8f44c0a2c933146-17d76195cbd8e9bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7411185,32.8870525]},"id":"8f44c0a2c905c06-17d7ff08f55a3af1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c933146-17d76195cbd8e9bf","8f44c0a2c905c06-17d7ff08f55a3af1"]},"geometry":{"type":"LineString","coordinates":[[-83.740074,32.886639],[-83.74095700000001,32.886958],[-83.7411185,32.8870525]]},"id":"8944c0a2c93ffff-17be904b9db6d124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68267200000001,32.857892]},"id":"8f44c0a26283182-13968dba0beb6a76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6832433,32.857451000000005]},"id":"8f44c0a26285735-1796ec54f49953fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26285735-1796ec54f49953fe","8f44c0a26283182-13968dba0beb6a76"]},"geometry":{"type":"LineString","coordinates":[[-83.68267200000001,32.857892],[-83.682753,32.857823],[-83.68301190000001,32.857628500000004],[-83.6832433,32.857451000000005]]},"id":"8a44c0a26287fff-139fcd08426098e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74987800000001,32.882708]},"id":"8f44c0b5236c25d-17bde9a6467f4dc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7494207,32.881081300000005]},"id":"8f44c0b52aca375-13b7fac419d51d39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5236c25d-17bde9a6467f4dc1","8f44c0b52aca375-13b7fac419d51d39"]},"geometry":{"type":"LineString","coordinates":[[-83.74987800000001,32.882708],[-83.74967600000001,32.882486],[-83.749564,32.88237],[-83.749522,32.882314],[-83.749488,32.882257],[-83.749448,32.882163000000006],[-83.74941700000001,32.882057],[-83.74940500000001,32.881923],[-83.74941600000001,32.881386],[-83.7494207,32.881081300000005]]},"id":"8744c0b52ffffff-13d5ea8ef0de8d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58618700000001,32.862648]},"id":"8f44c0b89d5aa03-17b77949211eafbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584046,32.862682]},"id":"8f44c0b89c017b0-17df7e834a3b0f0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d5aa03-17b77949211eafbe","8f44c0b89c017b0-17df7e834a3b0f0d"]},"geometry":{"type":"LineString","coordinates":[[-83.58618700000001,32.862648],[-83.585154,32.862668],[-83.584046,32.862682]]},"id":"8844c0b89dfffff-17bffbe63f5d616c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643906,32.818122]},"id":"8f44c0b1a081895-17feec5ec7c4f3fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645143,32.818829]},"id":"8f44c0b1a0f6062-13bee959ad44bc66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a081895-17feec5ec7c4f3fa","8f44c0b1a0f6062-13bee959ad44bc66"]},"geometry":{"type":"LineString","coordinates":[[-83.643906,32.818122],[-83.64426800000001,32.818317],[-83.64488,32.818669],[-83.645143,32.818829]]},"id":"8844c0b1a1fffff-13d7eada083aaa0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693245,32.867517]},"id":"8f44c0a2044e30a-139673e9ebe1093f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69192000000001,32.867283]},"id":"8f44c0a2045e16b-1797f7260d6d24ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2044e30a-139673e9ebe1093f","8f44c0a2045e16b-1797f7260d6d24ac"]},"geometry":{"type":"LineString","coordinates":[[-83.693245,32.867517],[-83.692964,32.867472],[-83.69217400000001,32.867323],[-83.69192000000001,32.867283]]},"id":"8944c0a2047ffff-17df7587fc067832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66732800000001,32.846387]},"id":"8f44c0a35944b45-17fff3300258d755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668221,32.845249]},"id":"8f44c0b1b2cb1a0-13beb101e2a9f6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35944b45-17fff3300258d755","8f44c0b1b2cb1a0-13beb101e2a9f6c7"]},"geometry":{"type":"LineString","coordinates":[[-83.66732800000001,32.846387],[-83.668221,32.845249]]},"id":"8544c0a3fffffff-139ef218f0f80fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766368,32.823208]},"id":"8f44c0b0d24d140-13fdc16405993045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76701700000001,32.822961]},"id":"8f44c0b72534583-13dfbfce6e7d53a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d24d140-13fdc16405993045","8f44c0b72534583-13dfbfce6e7d53a8"]},"geometry":{"type":"LineString","coordinates":[[-83.766368,32.823208],[-83.766506,32.823096],[-83.766575,32.823048],[-83.766733,32.823005],[-83.766912,32.822972],[-83.76701700000001,32.822961]]},"id":"8844c0b725fffff-1397e0a3d3098070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69073200000001,32.740574]},"id":"8f44c0b0698a09b-13befa0c85b5a4e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69069,32.741979]},"id":"8f44c0b068aed8a-179efa26c554b755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b068aed8a-179efa26c554b755","8f44c0b0698a09b-13befa0c85b5a4e7"]},"geometry":{"type":"LineString","coordinates":[[-83.69073200000001,32.740574],[-83.690697,32.740667],[-83.69069300000001,32.740713],[-83.69068100000001,32.741774],[-83.69069,32.741979]]},"id":"8844c0b069fffff-13f67a276b2c51fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66672000000001,32.757165]},"id":"8f44c0b15059561-13beb4ac0583b6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666945,32.758327]},"id":"8f44c0b153a3133-1796f41f68df2670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15059561-13beb4ac0583b6aa","8f44c0b153a3133-1796f41f68df2670"]},"geometry":{"type":"LineString","coordinates":[[-83.66672000000001,32.757165],[-83.66674900000001,32.757204],[-83.666793,32.757303],[-83.666854,32.757536],[-83.66691300000001,32.757830000000006],[-83.666932,32.758026],[-83.666937,32.758076],[-83.666945,32.758327]]},"id":"8744c0b15ffffff-1796b44aa3647a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619911,32.831097]},"id":"8f44c0ba9655c1b-17bfa6f3a6c57a59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621002,32.829673]},"id":"8f44c0ba975b951-13b7a449c8480ab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba975b951-13b7a449c8480ab4","8f44c0ba9655c1b-17bfa6f3a6c57a59"]},"geometry":{"type":"LineString","coordinates":[[-83.619911,32.831097],[-83.619901,32.831054],[-83.619929,32.83099],[-83.62014900000001,32.83072],[-83.62094300000001,32.829782],[-83.621002,32.829673]]},"id":"8844c0ba97fffff-17ff35aa43cb22af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723819,32.904539]},"id":"8f44c0a2ea603a3-13fee9452857f174"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7248986,32.904547300000004]},"id":"8f44c0a2c690402-13fe36a26b48826c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea603a3-13fee9452857f174","8f44c0a2c690402-13fe36a26b48826c"]},"geometry":{"type":"LineString","coordinates":[[-83.723819,32.904539],[-83.7248986,32.904547300000004]]},"id":"8844c0a2ebfffff-13ffa7f3c08faae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67852400000001,32.86594]},"id":"8f44c0a228d6da8-17be97da8fccc5d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678545,32.863194]},"id":"8f44c0a228a0895-179ed7cd6b8e4f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d6da8-17be97da8fccc5d3","8f44c0a228a0895-179ed7cd6b8e4f94"]},"geometry":{"type":"LineString","coordinates":[[-83.67852400000001,32.86594],[-83.678533,32.864458],[-83.678534,32.864234],[-83.678545,32.863194]]},"id":"8844c0a229fffff-13f6f7d4da691340"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737718,32.866355]},"id":"8f44c0b52d0a963-17bfe756415a32ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74271300000001,32.865968]},"id":"8f44c0b529b0283-17dffb24695d710a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52d0a963-17bfe756415a32ce","8f44c0b529b0283-17dffb24695d710a"]},"geometry":{"type":"LineString","coordinates":[[-83.737718,32.866355],[-83.74099000000001,32.866405],[-83.74112600000001,32.866396],[-83.741293,32.866363],[-83.74154200000001,32.866287],[-83.741725,32.866233],[-83.74239,32.866023000000006],[-83.74255500000001,32.865975],[-83.742613,32.865968],[-83.74271300000001,32.865968]]},"id":"8744c0b52ffffff-17b7613088e8eaba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702968,32.812395]},"id":"8f44c0b0ad9652b-1396fc2d0e4680d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70735900000001,32.813935]},"id":"8f44c0b0ac35849-17d77174a8ab40bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac35849-17d77174a8ab40bb","8f44c0b0ad9652b-1396fc2d0e4680d8"]},"geometry":{"type":"LineString","coordinates":[[-83.702968,32.812395],[-83.702982,32.812516],[-83.70305300000001,32.812826],[-83.70312100000001,32.812981],[-83.703248,32.813177],[-83.703332,32.813267],[-83.70344300000001,32.813358],[-83.703591,32.813454],[-83.703826,32.813581],[-83.704115,32.813699],[-83.704392,32.813767],[-83.704541,32.813789],[-83.70470800000001,32.813797],[-83.70552500000001,32.813797],[-83.7062114,32.813788200000005],[-83.70693510000001,32.8139003],[-83.70714100000001,32.813934],[-83.7072514,32.813938300000004],[-83.70735900000001,32.813935]]},"id":"8844c0b0adfffff-17fe777f1bed78c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649364,32.818502]},"id":"8f44c0b1a0752ea-13ffdf0b8d15fce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65041000000001,32.818499]},"id":"8f44c0b1a060b6d-13fffc7dcf1205de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a060b6d-13fffc7dcf1205de","8f44c0b1a0752ea-13ffdf0b8d15fce8"]},"geometry":{"type":"LineString","coordinates":[[-83.649364,32.818502],[-83.65041000000001,32.818499]]},"id":"8944c0b1a07ffff-13feddc4a4232395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74865000000001,32.830739]},"id":"8f44c0b091944aa-17dfeca5c2a69255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.748709,32.829848000000005]},"id":"8f44c0b09ccd8ac-179fec80e010d9b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ccd8ac-179fec80e010d9b4","8f44c0b091944aa-17dfeca5c2a69255"]},"geometry":{"type":"LineString","coordinates":[[-83.74865000000001,32.830739],[-83.748709,32.829848000000005]]},"id":"8744c0b09ffffff-17b5fc9353ab1d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69389500000001,32.878892]},"id":"8f44c0a23d4dc5a-13dff253a9dce479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696562,32.878878]},"id":"8f44c0a2398b783-13d6ebd0cbb25e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2398b783-13d6ebd0cbb25e00","8f44c0a23d4dc5a-13dff253a9dce479"]},"geometry":{"type":"LineString","coordinates":[[-83.69389500000001,32.878892],[-83.695366,32.878915],[-83.696088,32.878904],[-83.696562,32.878878]]},"id":"8744c0a23ffffff-13f67f1208ff33a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66488600000001,32.864964]},"id":"8f44c0a3525dc0a-13deb926447882da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664349,32.865229]},"id":"8f44c0a35258446-1396ba75eeb0782b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35258446-1396ba75eeb0782b","8f44c0a3525dc0a-13deb926447882da"]},"geometry":{"type":"LineString","coordinates":[[-83.66488600000001,32.864964],[-83.66479500000001,32.865039],[-83.66464400000001,32.865107],[-83.664505,32.865175],[-83.664349,32.865229]]},"id":"8a44c0a3525ffff-13b6f9c8d0da4c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666539,32.884991]},"id":"8f44c0a04c08199-13bff51d245e8ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66139100000001,32.885903]},"id":"8f44c0a04c9a666-17ffe1aea4618c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c08199-13bff51d245e8ab8","8f44c0a04c9a666-17ffe1aea4618c04"]},"geometry":{"type":"LineString","coordinates":[[-83.666539,32.884991],[-83.665576,32.88526],[-83.665401,32.885306],[-83.66526,32.885317],[-83.665108,32.885292],[-83.664772,32.885143],[-83.66442500000001,32.88498],[-83.664241,32.884926],[-83.66402400000001,32.884895],[-83.66379500000001,32.884909],[-83.66356900000001,32.884946],[-83.66311300000001,32.884988],[-83.66198200000001,32.88499],[-83.661826,32.884999],[-83.661642,32.88505],[-83.661544,32.885123],[-83.661477,32.885195],[-83.661393,32.885317],[-83.661347,32.885471],[-83.661336,32.885565],[-83.661339,32.885709],[-83.66136800000001,32.885852],[-83.66139100000001,32.885903]]},"id":"8844c0a04dfffff-139fbc1a50925fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618953,32.836395]},"id":"8f44c0a368b570e-179fe94a6bec1694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619167,32.836179]},"id":"8f44c0a368b5876-1397e8c4a654174d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a368b570e-179fe94a6bec1694","8f44c0a368b5876-1397e8c4a654174d"]},"geometry":{"type":"LineString","coordinates":[[-83.618953,32.836395],[-83.619167,32.836179]]},"id":"8b44c0a368b5fff-13d769078cd5fcfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584044,32.856816]},"id":"8f44c0b88a6d98e-17f77e848a7e9e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581163,32.858519]},"id":"8f44c0b88a5b6b3-139fe58d27897508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a6d98e-17f77e848a7e9e28","8f44c0b88a5b6b3-139fe58d27897508"]},"geometry":{"type":"LineString","coordinates":[[-83.584044,32.856816],[-83.583968,32.85691],[-83.58361000000001,32.857205],[-83.583258,32.85746],[-83.58299500000001,32.85767],[-83.582592,32.857881],[-83.582324,32.858027],[-83.581879,32.858248],[-83.581591,32.858376],[-83.581326,32.858476],[-83.581163,32.858519]]},"id":"8844c0b88bfffff-13dfb1dfcb402401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5797149,32.8483389]},"id":"8f44c0b8d49639a-13d7d9163bfbdbad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b13955-13dfaa396c96ae7b","8f44c0b8d49639a-13d7d9163bfbdbad"]},"geometry":{"type":"LineString","coordinates":[[-83.5797149,32.8483389],[-83.57959500000001,32.848414000000005],[-83.579503,32.848458],[-83.579379,32.848618],[-83.579271,32.848787],[-83.579153,32.848982],[-83.578792,32.849663],[-83.57855500000001,32.850135],[-83.57854400000001,32.850287],[-83.578877,32.851076],[-83.579142,32.851671],[-83.579249,32.851833]]},"id":"8744c0b88ffffff-17dfbae6d4c4a0ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726702,32.798280000000005]},"id":"8f44c0b0eb30408-179f223b4cc94955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731522,32.798464]},"id":"8f44c0b0c4c5b00-17961676c4760350"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0eb30408-179f223b4cc94955","8f44c0b0c4c5b00-17961676c4760350"]},"geometry":{"type":"LineString","coordinates":[[-83.726702,32.798280000000005],[-83.728401,32.798325000000006],[-83.729572,32.798346],[-83.730708,32.798374],[-83.73101100000001,32.798374],[-83.73123100000001,32.798381],[-83.73133100000001,32.798395],[-83.731441,32.798428],[-83.731522,32.798464]]},"id":"8644c0b0fffffff-17b7dc550a008771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66028,32.87386]},"id":"8f44c0a31bae008-1796c465056b03db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66131,32.875892]},"id":"8f44c0a31a06c8a-179ec1e14c01d906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31a06c8a-179ec1e14c01d906","8f44c0a31bae008-1796c465056b03db"]},"geometry":{"type":"LineString","coordinates":[[-83.66028,32.87386],[-83.66035500000001,32.874411],[-83.66038,32.874529],[-83.660424,32.874626],[-83.660796,32.875385],[-83.66087200000001,32.875512],[-83.661017,32.875676],[-83.66117600000001,32.875799],[-83.66131,32.875892]]},"id":"8844c0a31bfffff-13bfe37e0e243d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66032,32.876278]},"id":"8f44c0a31a104eb-17ffc44c03172466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31a06c8a-179ec1e14c01d906","8f44c0a31a104eb-17ffc44c03172466"]},"geometry":{"type":"LineString","coordinates":[[-83.66131,32.875892],[-83.661192,32.875999],[-83.66095800000001,32.876091],[-83.66032,32.876278]]},"id":"8944c0a31a3ffff-1796d30c4f6666d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62774800000001,32.870199]},"id":"8f44c0a33d2dacd-17b773d186c587bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62581800000001,32.8721909]},"id":"8f44c0a33c20ae4-13ff5887c65566af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33d2dacd-17b773d186c587bf","8f44c0a33c20ae4-13ff5887c65566af"]},"geometry":{"type":"LineString","coordinates":[[-83.62774800000001,32.870199],[-83.627696,32.870294],[-83.62760800000001,32.870435],[-83.627548,32.87051],[-83.62737100000001,32.870713],[-83.627142,32.870955],[-83.626705,32.871367],[-83.62581800000001,32.8721909]]},"id":"8844c0a33dfffff-13b71612b4c6b838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626098,32.865839]},"id":"8f44c0a306b0815-13ff77d8c509ad0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626987,32.86627]},"id":"8f44c0a306a2ad6-179fd5ad2e42e447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306b0815-13ff77d8c509ad0f","8f44c0a306a2ad6-179fd5ad2e42e447"]},"geometry":{"type":"LineString","coordinates":[[-83.626098,32.865839],[-83.62636900000001,32.865933000000005],[-83.62653300000001,32.866],[-83.626923,32.86623],[-83.626987,32.86627]]},"id":"8944c0a306bffff-17f776bc78e0e617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64812,32.810425]},"id":"8f44c0b1a8b14d1-17b7e21501b21c76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64851800000001,32.809540000000005]},"id":"8f44c0b1a99b09d-139ee11c4dfdbb7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8b14d1-17b7e21501b21c76","8f44c0b1a99b09d-139ee11c4dfdbb7f"]},"geometry":{"type":"LineString","coordinates":[[-83.64812,32.810425],[-83.64851800000001,32.809540000000005]]},"id":"8944c0b1a8bffff-139ff198a07eb485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558491,32.836616]},"id":"8f44c0b8eb91403-17b7bce7281a692e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55852200000001,32.837578]},"id":"8f44c0b8eb9a315-17fffcd3cde2ce60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb9a315-17fffcd3cde2ce60","8f44c0b8eb91403-17b7bce7281a692e"]},"geometry":{"type":"LineString","coordinates":[[-83.558491,32.836616],[-83.55852200000001,32.837578]]},"id":"8944c0b8ebbffff-17d7bcdd7036a5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73314900000001,32.891472]},"id":"8f44c0a2cc447a1-1396127dea9ee6d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73313,32.892989]},"id":"8f44c0a2cc4a550-17d63289ca80c132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc447a1-1396127dea9ee6d4","8f44c0a2cc4a550-17d63289ca80c132"]},"geometry":{"type":"LineString","coordinates":[[-83.73314900000001,32.891472],[-83.73313,32.892989]]},"id":"8944c0a2cc7ffff-17fe1283d5d53a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7223695,32.822398]},"id":"8f44c0b0ab56010-13feeccf1338a9be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ab56010-13feeccf1338a9be","8f44c0b0ab53899-139fec1cfbd27f99"]},"geometry":{"type":"LineString","coordinates":[[-83.7226545,32.823059],[-83.72264150000001,32.822955],[-83.7223695,32.822398]]},"id":"8a44c0b0ab57fff-13bebc6d3221c414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65774,32.86453]},"id":"8f44c0a31930520-13dfca98857a397f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658422,32.864699]},"id":"8f44c0a319352a8-13b6e8ee466576ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a319352a8-13b6e8ee466576ed","8f44c0a31930520-13dfca98857a397f"]},"geometry":{"type":"LineString","coordinates":[[-83.65774,32.86453],[-83.65815900000001,32.864568000000006],[-83.65826100000001,32.86459],[-83.658422,32.864699]]},"id":"8a44c0a31937fff-13fec9bbc58a6402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769481,32.781343]},"id":"8f44c0b2b911906-17b7f9ca6041ed35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.773453,32.781233]},"id":"8f44c0b282c36ce-17ffb017ea4df07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b282c36ce-17ffb017ea4df07f","8f44c0b2b911906-17b7f9ca6041ed35"]},"geometry":{"type":"LineString","coordinates":[[-83.769481,32.781343],[-83.769648,32.781346],[-83.77288,32.78136],[-83.77304600000001,32.781345],[-83.77317500000001,32.781317],[-83.773453,32.781233]]},"id":"8644c0b2fffffff-17b5f4ecaa91bf41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70426900000001,32.878234]},"id":"8f44c0a21591599-13d658ffe72c1d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701041,32.876998]},"id":"8f44c0a239294d6-17bfe0e162989166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a239294d6-17bfe0e162989166","8f44c0a21591599-13d658ffe72c1d2d"]},"geometry":{"type":"LineString","coordinates":[[-83.70426900000001,32.878234],[-83.70389700000001,32.878147000000006],[-83.70353,32.878078],[-83.703158,32.878025],[-83.702861,32.877995],[-83.70206900000001,32.877947],[-83.70195700000001,32.877950000000006],[-83.701847,32.877963],[-83.70168000000001,32.87801],[-83.70134,32.878146],[-83.70115100000001,32.878233],[-83.70105500000001,32.878273],[-83.700957,32.878306],[-83.700854,32.878326],[-83.70064,32.878345],[-83.700507,32.878369],[-83.700387,32.878414],[-83.70026,32.878445],[-83.70013800000001,32.87845],[-83.699976,32.878421],[-83.699853,32.878366],[-83.69975000000001,32.878289],[-83.699706,32.878238],[-83.699657,32.878076],[-83.69964200000001,32.877933],[-83.69965400000001,32.877772],[-83.699674,32.877685],[-83.699695,32.877623],[-83.699759,32.877501],[-83.699802,32.877442],[-83.69990200000001,32.877336],[-83.69996900000001,32.877277],[-83.700044,32.87722],[-83.700125,32.87717],[-83.70021,32.87713],[-83.70034600000001,32.8771],[-83.70056600000001,32.877027000000005],[-83.70070700000001,32.877001],[-83.70081300000001,32.876992],[-83.700922,32.87699],[-83.701041,32.876998]]},"id":"8644c0a27ffffff-13f6e014549fd6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701519,32.877041000000006]},"id":"8f44c0a23929a4e-17d6ffb6adbc1bd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70519,32.873873]},"id":"8f44c0a20272d0b-179ef6c04f6145f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23929a4e-17d6ffb6adbc1bd7","8f44c0a20272d0b-179ef6c04f6145f5"]},"geometry":{"type":"LineString","coordinates":[[-83.701519,32.877041000000006],[-83.701532,32.876888],[-83.701575,32.876711],[-83.701679,32.876365],[-83.701717,32.876251],[-83.701836,32.876097],[-83.70196100000001,32.875923],[-83.702039,32.875843],[-83.702386,32.875566],[-83.70260300000001,32.875428],[-83.702819,32.875346],[-83.70306400000001,32.875225],[-83.703325,32.875154],[-83.70394800000001,32.875076],[-83.704221,32.874989],[-83.70429100000001,32.874955],[-83.704386,32.874893],[-83.70452,32.874785],[-83.704687,32.874583],[-83.70492,32.874274],[-83.70519,32.873873]]},"id":"8644c0a27ffffff-13b6fb976b7890b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70805700000001,32.906762]},"id":"8f44c0a2e70cb43-17f64fc06683cb28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70936800000001,32.905741]},"id":"8f44c0a2e0d16f5-17fe6c8d0a057240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e0d16f5-17fe6c8d0a057240","8f44c0a2e70cb43-17f64fc06683cb28"]},"geometry":{"type":"LineString","coordinates":[[-83.70805700000001,32.906762],[-83.708405,32.906663],[-83.70848000000001,32.906638],[-83.70854,32.906602],[-83.708602,32.906551],[-83.708809,32.906264],[-83.708893,32.906174],[-83.70919400000001,32.90589],[-83.70936800000001,32.905741]]},"id":"8744c0a2effffff-17dfee1086cecdf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56287800000001,32.845146]},"id":"8f44c0b88d9aa6d-13fff2314bf91499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56241700000001,32.845323]},"id":"8f44c0b88cb4d0b-13f7f35161e8f3fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88d9aa6d-13fff2314bf91499","8f44c0b88cb4d0b-13f7f35161e8f3fb"]},"geometry":{"type":"LineString","coordinates":[[-83.56287800000001,32.845146],[-83.562781,32.845191],[-83.56265,32.84527],[-83.56241700000001,32.845323]]},"id":"8844c0b88dfffff-13bfb2be09e3cad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67113400000001,32.864979000000005]},"id":"8f44c0a22ce24c8-13f7e9e54f6691e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67240500000001,32.865375]},"id":"8f44c0a22ceccdc-13dfe6caed3ce2cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ce24c8-13f7e9e54f6691e9","8f44c0a22ceccdc-13dfe6caed3ce2cc"]},"geometry":{"type":"LineString","coordinates":[[-83.67113400000001,32.864979000000005],[-83.67129,32.86509],[-83.67137500000001,32.865143],[-83.671541,32.865209],[-83.671739,32.86526],[-83.67240500000001,32.865375]]},"id":"8944c0a22cfffff-1397a865291913fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648009,32.854587]},"id":"8f44c0a3541a56c-1396e25a68a2d17f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64815,32.856614]},"id":"8f44c0a354c2b32-17f7e2024f1806fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3541a56c-1396e25a68a2d17f","8f44c0a354c2b32-17f7e2024f1806fe"]},"geometry":{"type":"LineString","coordinates":[[-83.648009,32.854587],[-83.648036,32.8547],[-83.64792700000001,32.855607],[-83.647926,32.855694],[-83.64815,32.856614]]},"id":"8844c0a355fffff-1397e25b6d23500a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660443,32.806914]},"id":"8f44c0b1e24d44a-17b7c3ff22551627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661781,32.804681]},"id":"8f44c0b18c9432e-17bfe0baeeb841a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e24d44a-17b7c3ff22551627","8f44c0b18c9432e-17bfe0baeeb841a3"]},"geometry":{"type":"LineString","coordinates":[[-83.660443,32.806914],[-83.66073300000001,32.806935],[-83.66136300000001,32.806945],[-83.66146,32.806927],[-83.661574,32.806872000000006],[-83.661612,32.806835],[-83.66167300000001,32.806722],[-83.66168400000001,32.806652],[-83.661721,32.804831],[-83.661781,32.804681]]},"id":"8744c0b18ffffff-13d6f17f1303b7d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71809350000001,32.9038082]},"id":"8f44c0a2eaae759-13b6373f9751acac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71745890000001,32.9029155]},"id":"8f44c0a2eaa288b-179638cc3495206a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2eaae759-13b6373f9751acac","8f44c0a2eaa288b-179638cc3495206a"]},"geometry":{"type":"LineString","coordinates":[[-83.71809350000001,32.9038082],[-83.71809710000001,32.9036794],[-83.7180517,32.9028043],[-83.71804560000001,32.902732],[-83.718027,32.902696],[-83.71797600000001,32.902662],[-83.717915,32.902647],[-83.717836,32.902654000000005],[-83.71772200000001,32.902684],[-83.71763800000001,32.902723],[-83.717563,32.902774],[-83.7175,32.902835],[-83.71745890000001,32.9029155]]},"id":"8944c0a2eabffff-17d737a073785ef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704677,32.783529]},"id":"8f44c0b03b96c94-139ff800eba5320b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705105,32.783533000000006]},"id":"8f44c0b03b9458a-139e76f568d4065a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b96c94-139ff800eba5320b","8f44c0b03b9458a-139e76f568d4065a"]},"geometry":{"type":"LineString","coordinates":[[-83.704677,32.783529],[-83.705105,32.783533000000006]]},"id":"8944c0b03bbffff-139ef77b2eb9a16c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69370400000001,32.836632]},"id":"8f44c0b1927629c-17bf72cb0b343bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69516200000001,32.836655]},"id":"8f44c0b1926632d-17bf6f3bc387200e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1926632d-17bf6f3bc387200e","8f44c0b1927629c-17bf72cb0b343bbf"]},"geometry":{"type":"LineString","coordinates":[[-83.69370400000001,32.836632],[-83.69516200000001,32.836655]]},"id":"8944c0b1927ffff-17b6710360db646f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679062,32.877345000000005]},"id":"8f44c0a222141a8-1396b68a437e1dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678576,32.879807]},"id":"8f44c0a222f0594-1797f7ba02046341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222141a8-1396b68a437e1dad","8f44c0a222f0594-1797f7ba02046341"]},"geometry":{"type":"LineString","coordinates":[[-83.679062,32.877345000000005],[-83.67897500000001,32.877636],[-83.678903,32.877916],[-83.678765,32.878391],[-83.67867000000001,32.87876],[-83.678617,32.879012],[-83.6786,32.879204],[-83.67858700000001,32.879675],[-83.678576,32.879807]]},"id":"8844c0a223fffff-139ff749a70fb4f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7438326,32.8169011]},"id":"8f44c0b08a3406c-1797f868aecb4c94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74462290000001,32.816900000000004]},"id":"8f44c0b08a26991-1797f67ab321104c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08a3406c-1797f868aecb4c94","8f44c0b08a26991-1797f67ab321104c"]},"geometry":{"type":"LineString","coordinates":[[-83.7438326,32.8169011],[-83.74462290000001,32.816900000000004]]},"id":"8944c0b08a3ffff-1797f771a8029d95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56782100000001,32.851967]},"id":"8f44c0b88183112-139fe61fe568fb98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56967,32.855395]},"id":"8f44c0b8801b385-13ffe19c48b611de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88183112-139fe61fe568fb98","8f44c0b8801b385-13ffe19c48b611de"]},"geometry":{"type":"LineString","coordinates":[[-83.56782100000001,32.851967],[-83.567338,32.852348],[-83.566731,32.852809],[-83.566671,32.852851],[-83.56643100000001,32.85302],[-83.56633400000001,32.85313],[-83.56627300000001,32.853268],[-83.566265,32.853319],[-83.566236,32.853504],[-83.56611600000001,32.855452],[-83.56600200000001,32.857004],[-83.566049,32.857197],[-83.56613800000001,32.857368],[-83.566253,32.85756],[-83.56648700000001,32.857804],[-83.566615,32.857892],[-83.566697,32.857919],[-83.566739,32.857932000000005],[-83.56686300000001,32.857937],[-83.56708300000001,32.857895],[-83.567363,32.857805],[-83.56779200000001,32.857663],[-83.567822,32.857649],[-83.56789500000001,32.857616],[-83.56794000000001,32.857576],[-83.567981,32.857495],[-83.56801700000001,32.85729],[-83.56803400000001,32.857081],[-83.568067,32.856855],[-83.568144,32.856734],[-83.56827700000001,32.856657000000006],[-83.568492,32.856586],[-83.56872600000001,32.856543],[-83.568826,32.856533],[-83.569055,32.856534],[-83.569134,32.85655],[-83.569356,32.856595],[-83.569511,32.856633],[-83.569559,32.856645],[-83.569737,32.856656],[-83.56988100000001,32.856599],[-83.569961,32.856496],[-83.569979,32.856413],[-83.569945,32.856256],[-83.569934,32.856206],[-83.569766,32.85575],[-83.56967,32.855395]]},"id":"8744c0b88ffffff-13bfe73ad5554667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56949900000001,32.852983]},"id":"8f44c0b88032322-179fe207211aa071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88032322-179fe207211aa071","8f44c0b8801b385-13ffe19c48b611de"]},"geometry":{"type":"LineString","coordinates":[[-83.56967,32.855395],[-83.56946900000001,32.855781],[-83.569412,32.855900000000005],[-83.56934100000001,32.855942],[-83.569209,32.855946],[-83.56905300000001,32.855911],[-83.568898,32.855825],[-83.56866600000001,32.855658000000005],[-83.568562,32.855547],[-83.56848600000001,32.855441],[-83.56846800000001,32.855303],[-83.568607,32.854917],[-83.569314,32.853395],[-83.56949900000001,32.852983]]},"id":"8844c0b881fffff-1397e3363a473dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631157,32.839958]},"id":"8f44c0a344c4929-17dfcb7eebf1907b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317906,32.8400921]},"id":"8f44c0a344e1680-17b799f2e01761fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344e1680-17b799f2e01761fe","8f44c0a344c4929-17dfcb7eebf1907b"]},"geometry":{"type":"LineString","coordinates":[[-83.631157,32.839958],[-83.63152500000001,32.840052],[-83.6317906,32.8400921]]},"id":"8a44c0a344e7fff-17ff8ab9e61f4d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55471100000001,32.838861]},"id":"8f44c0b8e070da6-13b7e621a7b3ab35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55386,32.839594000000005]},"id":"8f44c0b8e056800-13ffc835896a155e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e056800-13ffc835896a155e","8f44c0b8e070da6-13b7e621a7b3ab35"]},"geometry":{"type":"LineString","coordinates":[[-83.55471100000001,32.838861],[-83.55386,32.839594000000005]]},"id":"8944c0b8e07ffff-1397f72b9b329bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643434,32.852535]},"id":"8f44c0a30943328-1396ed85ceaa6a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64507800000001,32.854574]},"id":"8f44c0a35491335-13fee9824846981a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30943328-1396ed85ceaa6a94","8f44c0a35491335-13fee9824846981a"]},"geometry":{"type":"LineString","coordinates":[[-83.643434,32.852535],[-83.64350300000001,32.852657],[-83.643845,32.853097000000005],[-83.64411000000001,32.853409],[-83.644462,32.853854000000005],[-83.644698,32.854142],[-83.644974,32.854492],[-83.64507800000001,32.854574]]},"id":"8744c0a30ffffff-179ffb9012b40037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62853600000001,32.866196]},"id":"8f44c0a30610548-17df91e501f92132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631517,32.867151]},"id":"8f44c0a3067611e-17b76a9deb7b0d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30610548-17df91e501f92132","8f44c0a3067611e-17b76a9deb7b0d25"]},"geometry":{"type":"LineString","coordinates":[[-83.62853600000001,32.866196],[-83.628675,32.866211],[-83.628878,32.866211],[-83.629118,32.866196],[-83.629312,32.866169],[-83.629602,32.866086],[-83.62975700000001,32.866027],[-83.62995400000001,32.865958],[-83.630114,32.865933000000005],[-83.63028100000001,32.865933000000005],[-83.630655,32.86598],[-83.630927,32.865994],[-83.631189,32.866],[-83.63127700000001,32.866011],[-83.631381,32.866045],[-83.63146300000001,32.866089],[-83.63152600000001,32.866151],[-83.63158100000001,32.866261],[-83.631612,32.8664],[-83.631613,32.866492],[-83.63160500000001,32.866612],[-83.631517,32.867151]]},"id":"8944c0a3063ffff-17f79d4684ecd71b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75497700000001,32.902593]},"id":"8f44c0b5365b290-17bdfd336c959ffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7560701,32.903733200000005]},"id":"8f44c0a2d9ae856-1395da883f7ba9f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5365b290-17bdfd336c959ffc","8f44c0a2d9ae856-1395da883f7ba9f3"]},"geometry":{"type":"LineString","coordinates":[[-83.75497700000001,32.902593],[-83.755031,32.902707],[-83.755089,32.90279],[-83.755179,32.902897],[-83.755362,32.903084],[-83.755841,32.903516],[-83.7560701,32.903733200000005]]},"id":"8944c0a2d9bffff-17bffbf0186aa567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562673,32.844302]},"id":"8f44c0b88d91795-17fff2b16b7db6a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88d91795-17fff2b16b7db6a1","8f44c0b8e3611a5-17d7b5910c04e4c1"]},"geometry":{"type":"LineString","coordinates":[[-83.562673,32.844302],[-83.562539,32.844347],[-83.562441,32.844358],[-83.56224300000001,32.844365],[-83.56192700000001,32.844347],[-83.56182000000001,32.844335],[-83.561625,32.844298],[-83.561575,32.844284],[-83.56151200000001,32.844258],[-83.561456,32.844217],[-83.561448,32.844198],[-83.561496,32.844037]]},"id":"8744c0b8effffff-17ffb4621460cde3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75362870000001,32.890101]},"id":"8f44c0b5356e868-17bde07e1311b9da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7527989,32.8900686]},"id":"8f44c0b53544ac8-17b5e284b73a0156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5356e868-17bde07e1311b9da","8f44c0b53544ac8-17b5e284b73a0156"]},"geometry":{"type":"LineString","coordinates":[[-83.75362870000001,32.890101],[-83.7527989,32.8900686]]},"id":"8944c0b5357ffff-17bfe1816db47117"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66253900000001,32.83545]},"id":"8f44c0b1b0d4905-13defee123f732b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66340500000001,32.83545]},"id":"8f44c0b1b0f1029-13defcc3e5b4080e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0d4905-13defee123f732b0","8f44c0b1b0f1029-13defcc3e5b4080e"]},"geometry":{"type":"LineString","coordinates":[[-83.66253900000001,32.83545],[-83.66340500000001,32.83545]]},"id":"8a44c0b1b0f7fff-13defdd28e1b31aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643094,32.820219]},"id":"8f44c0b1a722363-179eee5a4a7b68d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64212300000001,32.819527]},"id":"8f44c0b1a73470e-13fef0b9257d290a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a73470e-13fef0b9257d290a","8f44c0b1a722363-179eee5a4a7b68d1"]},"geometry":{"type":"LineString","coordinates":[[-83.643094,32.820219],[-83.64212300000001,32.819527]]},"id":"8944c0b1a73ffff-13d6ef89b3b3e72e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570552,32.853458]},"id":"8f44c0b88004012-17d7df75063f3cc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88004012-17d7df75063f3cc0","8f44c0b8801b385-13ffe19c48b611de"]},"geometry":{"type":"LineString","coordinates":[[-83.56967,32.855395],[-83.569709,32.855319],[-83.569776,32.855168],[-83.56992500000001,32.854832],[-83.570003,32.854664],[-83.57031,32.854007],[-83.570552,32.853458]]},"id":"8844c0b881fffff-13b7e087207e9b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664674,32.757528]},"id":"8f44c0b150cc25d-139fb9aac72af2fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150cc25d-139fb9aac72af2fc","8f44c0b15045286-17d7f257c24403b5"]},"geometry":{"type":"LineString","coordinates":[[-83.667674,32.755974],[-83.66761500000001,32.755982],[-83.66744,32.756084],[-83.66676700000001,32.756453],[-83.66586000000001,32.756932],[-83.66524000000001,32.757246],[-83.664803,32.757458],[-83.664674,32.757528]]},"id":"8844c0b151fffff-13bff5fea9186576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656104,32.832698]},"id":"8f44c0b1b42a380-1396ce970b81aeff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65607100000001,32.830691]},"id":"8f44c0b1b50a61e-17bfeeaba691b56f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b50a61e-17bfeeaba691b56f","8f44c0b1b42a380-1396ce970b81aeff"]},"geometry":{"type":"LineString","coordinates":[[-83.656104,32.832698],[-83.65607100000001,32.830691]]},"id":"8844c0b1b5fffff-13b7dea1577f42f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70007700000001,32.811369]},"id":"8f44c0b1d328524-1797e33bec3ae5cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701603,32.812334]},"id":"8f44c0b1d366400-13dedf8222e1cf3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d328524-1797e33bec3ae5cb","8f44c0b1d366400-13dedf8222e1cf3d"]},"geometry":{"type":"LineString","coordinates":[[-83.70007700000001,32.811369],[-83.70023900000001,32.811455],[-83.700506,32.811616],[-83.70124200000001,32.812092],[-83.701603,32.812334]]},"id":"8844c0b1d3fffff-13be715ad5db7e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643389,32.796954]},"id":"8f44c0b1e4e6b4d-13d6eda1e56ad371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646105,32.79701]},"id":"8f44c0b1e444571-13f7e700603f04f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4e6b4d-13d6eda1e56ad371","8f44c0b1e444571-13f7e700603f04f8"]},"geometry":{"type":"LineString","coordinates":[[-83.643389,32.796954],[-83.643392,32.797289],[-83.643399,32.79732],[-83.64341900000001,32.797353],[-83.64345200000001,32.797378],[-83.643485,32.797387],[-83.643535,32.797392],[-83.645977,32.797457],[-83.646021,32.797447000000005],[-83.64604800000001,32.797427],[-83.646083,32.79739],[-83.646095,32.797328],[-83.646105,32.79701]]},"id":"8844c0b1e5fffff-17d6ea521316c4a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7417345,32.9029187]},"id":"8f44c0a2c3700ae-1795fd87ffe3a1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741984,32.898495700000005]},"id":"8f44c0a2caac6a2-13b7fcec0f616140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2caac6a2-13b7fcec0f616140","8f44c0a2c3700ae-1795fd87ffe3a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7417345,32.9029187],[-83.74179290000001,32.901503600000005],[-83.7417671,32.8998149],[-83.7417947,32.8994676],[-83.7418334,32.8990774],[-83.74189360000001,32.898792],[-83.741984,32.898495700000005]]},"id":"8744c0a2cffffff-139dfd628af5b89b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651825,32.834431]},"id":"8f44c0b1b48a6a6-17dff9096880a9f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65263900000001,32.834911000000005]},"id":"8f44c0b1b4d6191-13fff70cacba260f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4d6191-13fff70cacba260f","8f44c0b1b48a6a6-17dff9096880a9f6"]},"geometry":{"type":"LineString","coordinates":[[-83.651825,32.834431],[-83.652225,32.83466],[-83.65263900000001,32.834911000000005]]},"id":"8844c0b1b5fffff-17f7d80a15c7025c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726943,32.877481]},"id":"8f44c0a21b34322-13ffa1a4a0eb25d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728288,32.876057]},"id":"8f44c0b5248035a-17ffbe5c0450616b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5248035a-17ffbe5c0450616b","8f44c0a21b34322-13ffa1a4a0eb25d2"]},"geometry":{"type":"LineString","coordinates":[[-83.726943,32.877481],[-83.727039,32.877132],[-83.727079,32.877026],[-83.72712800000001,32.876953],[-83.727192,32.876876],[-83.727278,32.876792],[-83.727396,32.876688],[-83.72751000000001,32.876601],[-83.7282,32.876105],[-83.728288,32.876057]]},"id":"8644c0a27ffffff-17f77045c168f2f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63723,32.785838000000005]},"id":"8f44c0b13381641-13befcab49ea31fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63928800000001,32.785769]},"id":"8f44c0b1331bdb1-1397f7a504b20acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13381641-13befcab49ea31fa","8f44c0b1331bdb1-1397f7a504b20acd"]},"geometry":{"type":"LineString","coordinates":[[-83.63723,32.785838000000005],[-83.63732,32.785826],[-83.63741900000001,32.785828],[-83.63756000000001,32.785839],[-83.637702,32.785862],[-83.63782,32.785874],[-83.637968,32.785877],[-83.63815600000001,32.785869000000005],[-83.638485,32.785839],[-83.63868400000001,32.785814],[-83.63883600000001,32.785805],[-83.63928800000001,32.785769]]},"id":"8844c0b133fffff-13bffa2863c8b7ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64749400000001,32.808379]},"id":"8f44c0b1ad6cd5d-17b6e39c48b097e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64828700000001,32.808408]},"id":"8f44c0b1a991790-17d7e1aca6cafd57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad6cd5d-17b6e39c48b097e2","8f44c0b1a991790-17d7e1aca6cafd57"]},"geometry":{"type":"LineString","coordinates":[[-83.64749400000001,32.808379],[-83.64828700000001,32.808408]]},"id":"8844c0b1a9fffff-17bff2a47ff76a87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67161800000001,32.835341]},"id":"8f44c0b1baab331-139ea8b6c12110b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671626,32.834767]},"id":"8f44c0b1baa8112-13b7e8b1cbbd8654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baab331-139ea8b6c12110b8","8f44c0b1baa8112-13b7e8b1cbbd8654"]},"geometry":{"type":"LineString","coordinates":[[-83.67161800000001,32.835341],[-83.671626,32.834767]]},"id":"8a44c0b1baaffff-13d6e8b44c2ef05c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64867100000001,32.806072]},"id":"8f44c0b1e6e99ae-1397e0bca9795c31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65282900000001,32.806179]},"id":"8f44c0b1a935a14-13d7f695e272d8b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a935a14-13d7f695e272d8b0","8f44c0b1e6e99ae-1397e0bca9795c31"]},"geometry":{"type":"LineString","coordinates":[[-83.64867100000001,32.806072],[-83.648835,32.806108],[-83.64971100000001,32.806129],[-83.65282900000001,32.806179]]},"id":"8744c0b1effffff-13bffbaa7223aaa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670314,32.868288]},"id":"8f44c0a22544c59-13feabe5ccec3e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67440900000001,32.868816]},"id":"8f44c0a2218c303-13d6a1e66f228bac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22544c59-13feabe5ccec3e96","8f44c0a2218c303-13d6a1e66f228bac"]},"geometry":{"type":"LineString","coordinates":[[-83.670314,32.868288],[-83.67047000000001,32.86818],[-83.67092500000001,32.867886],[-83.67107,32.867798],[-83.67120200000001,32.867731],[-83.671317,32.867688],[-83.671425,32.867661000000005],[-83.67151600000001,32.867645],[-83.67167500000001,32.867629],[-83.671808,32.867627],[-83.67197800000001,32.867644],[-83.672117,32.867679],[-83.67229300000001,32.867737000000005],[-83.67367300000001,32.868364],[-83.673947,32.868504],[-83.67422300000001,32.868668],[-83.67440900000001,32.868816]]},"id":"8744c0a22ffffff-13dff6e1d5332164"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730638,32.793653]},"id":"8f44c0b0c5a824b-13d7389f465e2f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7299363,32.7936125]},"id":"8f44c0b0c5aa70c-13b7da55d52bbeda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c5a824b-13d7389f465e2f5b","8f44c0b0c5aa70c-13b7da55d52bbeda"]},"geometry":{"type":"LineString","coordinates":[[-83.730638,32.793653],[-83.7299363,32.7936125]]},"id":"8a44c0b0c5affff-13b6997a8261ad46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681661,32.874206]},"id":"8f44c0a22323c20-13fed031eaa4a6c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681932,32.874741]},"id":"8f44c0a2232e451-13bfaf88872fc889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22323c20-13fed031eaa4a6c2","8f44c0a2232e451-13bfaf88872fc889"]},"geometry":{"type":"LineString","coordinates":[[-83.681661,32.874206],[-83.681932,32.874741]]},"id":"8944c0a2233ffff-1397ffdd318035e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708692,32.747402]},"id":"8f44c0b0472b884-13d64e33895fe371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7103127,32.7475128]},"id":"8f44c0b040d9551-139fca3e93409380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b040d9551-139fca3e93409380","8f44c0b0472b884-13d64e33895fe371"]},"geometry":{"type":"LineString","coordinates":[[-83.708692,32.747402],[-83.709097,32.747408],[-83.71007900000001,32.747422],[-83.710172,32.747434000000005],[-83.7103127,32.7475128]]},"id":"8844c0b047fffff-13f6ec33177d0fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666921,32.880121]},"id":"8f44c0a04d227b3-17dfb42e67dcd68e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66279200000001,32.880347]},"id":"8f44c0a04db0d13-17fefe430af08263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04db0d13-17fefe430af08263","8f44c0a04d227b3-17dfb42e67dcd68e"]},"geometry":{"type":"LineString","coordinates":[[-83.666921,32.880121],[-83.666825,32.880141],[-83.66674900000001,32.880148000000005],[-83.66656900000001,32.88015],[-83.666301,32.880119],[-83.666059,32.880065],[-83.66566200000001,32.879997],[-83.665428,32.879984],[-83.665076,32.87999],[-83.664028,32.880085],[-83.66360300000001,32.880133],[-83.66337800000001,32.880166],[-83.66312500000001,32.880232],[-83.66279200000001,32.880347]]},"id":"8544c0a3fffffff-17deb93e13219c95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6167952,32.8482325]},"id":"8f44c0a36764a0a-13977e8f013e01c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61770200000001,32.848228]},"id":"8f44c0a363945a1-13ffac5845f8e6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764a0a-13977e8f013e01c3","8f44c0a363945a1-13ffac5845f8e6be"]},"geometry":{"type":"LineString","coordinates":[[-83.6167952,32.8482325],[-83.61770200000001,32.848228]]},"id":"8744c0a36ffffff-13fffd73a0c47e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6257995,32.848214500000005]},"id":"8f44c0a36addb0a-13f718935277d2ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36addb0a-13f718935277d2ab","8f44c0a36ace391-139757e39f45c81c"]},"geometry":{"type":"LineString","coordinates":[[-83.6257995,32.848214500000005],[-83.62587280000001,32.848215100000004],[-83.6260807,32.848238900000005]]},"id":"8a44c0a36acffff-13fff83b50ee8020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68288100000001,32.843423]},"id":"8f44c0a26891301-17d7ed3761d181fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683137,32.842883]},"id":"8f44c0a26895b73-13f7ec97636194b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26895b73-13f7ec97636194b6","8f44c0a26891301-17d7ed3761d181fe"]},"geometry":{"type":"LineString","coordinates":[[-83.68288100000001,32.843423],[-83.683137,32.842883]]},"id":"8944c0a268bffff-179eace76749232b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57586900000001,32.861778]},"id":"8f44c0b88228650-1397d279e01da2a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574843,32.862253]},"id":"8f44c0b8820e01e-13bfb4fb2b0eb475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88228650-1397d279e01da2a6","8f44c0b8820e01e-13bfb4fb2b0eb475"]},"geometry":{"type":"LineString","coordinates":[[-83.57586900000001,32.861778],[-83.575175,32.862215],[-83.57504,32.862288],[-83.574961,32.862302],[-83.57488500000001,32.862282],[-83.574843,32.862253]]},"id":"8944c0b8823ffff-13d7b3b51450bcd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608249,32.86253]},"id":"8f44c0a32182490-13ff436c66505036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60743500000001,32.862529]},"id":"8f44c0a32193d84-13ffe56927b72038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32182490-13ff436c66505036","8f44c0a32193d84-13ffe56927b72038"]},"geometry":{"type":"LineString","coordinates":[[-83.608249,32.86253],[-83.60743500000001,32.862529]]},"id":"8a44c0a32197fff-13fff46acaac3f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700846,32.789566]},"id":"8f44c0b033b468e-13d6e15b4b204c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70177070000001,32.7895794]},"id":"8f44c0b033a6193-13df7f195f8dde76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b033a6193-13df7f195f8dde76","8f44c0b033b468e-13d6e15b4b204c77"]},"geometry":{"type":"LineString","coordinates":[[-83.700846,32.789566],[-83.70177070000001,32.7895794]]},"id":"8944c0b033bffff-13def03a53169b1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764939,32.857462000000005]},"id":"8f44c0b5461992b-179dc4e1219c2d2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763862,32.8563539]},"id":"8f44c0b54610382-17d5f7824faa9f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5461992b-179dc4e1219c2d2e","8f44c0b54610382-17d5f7824faa9f85"]},"geometry":{"type":"LineString","coordinates":[[-83.764939,32.857462000000005],[-83.764808,32.85743],[-83.764706,32.857383],[-83.764601,32.857326],[-83.764521,32.857262],[-83.76443900000001,32.85718],[-83.76410700000001,32.856713],[-83.763862,32.8563539]]},"id":"8944c0b5463ffff-17dde656a0deca40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.747331,32.929113]},"id":"8f44c0a29898c9d-17f7efde23f3298b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746245,32.928857]},"id":"8f44c0a29c6c662-17d7f284e6906329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29898c9d-17f7efde23f3298b","8f44c0a29c6c662-17d7f284e6906329"]},"geometry":{"type":"LineString","coordinates":[[-83.747331,32.929113],[-83.746645,32.928830000000005],[-83.7464916,32.9288138],[-83.7463845,32.9288143],[-83.7462934,32.928846],[-83.746245,32.928857]]},"id":"8744c0a29ffffff-17fff12d3ed5073d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70812600000001,32.835085]},"id":"8f44c0a24980288-13fe6f9544b17d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708753,32.8351443]},"id":"8f44c0a249aa4e1-139f7e0d64831328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24980288-13fe6f9544b17d33","8f44c0a249aa4e1-139f7e0d64831328"]},"geometry":{"type":"LineString","coordinates":[[-83.70812600000001,32.835085],[-83.708242,32.835098],[-83.708635,32.835137],[-83.708753,32.8351443]]},"id":"8944c0a249bffff-13fe6ed17ce3bc6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66783600000001,32.841654000000005]},"id":"8f44c0b1b218ce8-13f7f1f2809a443e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66787400000001,32.84039]},"id":"8f44c0b1b215832-17dff1dac967be3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b215832-17dff1dac967be3b","8f44c0b1b218ce8-13f7f1f2809a443e"]},"geometry":{"type":"LineString","coordinates":[[-83.66783600000001,32.841654000000005],[-83.66787400000001,32.84039]]},"id":"8944c0b1b23ffff-17f6f1e6af06db2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734657,32.918134]},"id":"8f44c0a28b9bcd4-13bfcecf6c420cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736345,32.91906]},"id":"8f44c0a28a12111-17fe8ab06768f73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b9bcd4-13bfcecf6c420cb5","8f44c0a28a12111-17fe8ab06768f73d"]},"geometry":{"type":"LineString","coordinates":[[-83.734657,32.918134],[-83.734826,32.91818],[-83.73520900000001,32.918298],[-83.735437,32.918385],[-83.735696,32.918503],[-83.735949,32.918675],[-83.73607000000001,32.918765],[-83.736169,32.918863],[-83.73625700000001,32.918961],[-83.73630100000001,32.918993],[-83.736345,32.91906]]},"id":"8844c0a28bfffff-1796dc9c71b1f041"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70971300000001,32.785610000000005]},"id":"8f44c0b03a20646-139e4bb568bb759d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710144,32.78307]},"id":"8f44c0b03b04354-13fecaa808193d51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b04354-13fecaa808193d51","8f44c0b03a20646-139e4bb568bb759d"]},"geometry":{"type":"LineString","coordinates":[[-83.70971300000001,32.785610000000005],[-83.709756,32.783609000000006],[-83.709772,32.783533000000006],[-83.709816,32.783437],[-83.709868,32.783369],[-83.710144,32.78307]]},"id":"8844c0b03bfffff-17f64b8a02f8aa05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721457,32.849724900000005]},"id":"8f44c0a25d291a3-17b63f096489f867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718877,32.853282]},"id":"8f44c0a25c1daf6-17d77555eb290743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25c1daf6-17d77555eb290743","8f44c0a25d291a3-17b63f096489f867"]},"geometry":{"type":"LineString","coordinates":[[-83.721457,32.849724900000005],[-83.72121510000001,32.8504099],[-83.72101500000001,32.850534],[-83.72086,32.850642],[-83.72029,32.850999],[-83.72012000000001,32.851146],[-83.720042,32.851244],[-83.71962500000001,32.851996],[-83.71953500000001,32.852139],[-83.719474,32.852275],[-83.719437,32.8524],[-83.71941100000001,32.852593],[-83.719418,32.852753],[-83.71944400000001,32.852857],[-83.718877,32.853282]]},"id":"8844c0a25dfffff-13ffb2431286a8c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735118,32.911202]},"id":"8f44c0a2882c494-13bf4daf4a9ad868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734784,32.909298]},"id":"8f44c0a2891db20-17974e800583cc4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2882c494-13bf4daf4a9ad868","8f44c0a2891db20-17974e800583cc4e"]},"geometry":{"type":"LineString","coordinates":[[-83.735118,32.911202],[-83.735127,32.911064],[-83.735128,32.910919],[-83.73512000000001,32.910781],[-83.735079,32.9107],[-83.73495000000001,32.910477],[-83.734814,32.91013],[-83.734756,32.909913],[-83.73473100000001,32.909754],[-83.73473100000001,32.909565],[-83.734784,32.909298]]},"id":"8844c0a289fffff-13ffee332475d356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6398838,32.8335403]},"id":"8f44c0a34c4cca5-17b6f630a53974e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6391165,32.8339903]},"id":"8f44c0a34c5d049-17bff8103c4b15f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c5d049-17bff8103c4b15f7","8f44c0a34c4cca5-17b6f630a53974e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6398838,32.8335403],[-83.639296,32.833826],[-83.6392,32.833875],[-83.6391165,32.8339903]]},"id":"8944c0a34c7ffff-17b7f72c57a9be4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606593,32.863461]},"id":"8f44c0a3256a322-17bf67776c0e684d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60508300000001,32.864765000000006]},"id":"8f44c0a32466c0a-13df6b272e13c575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3256a322-17bf67776c0e684d","8f44c0a32466c0a-13df6b272e13c575"]},"geometry":{"type":"LineString","coordinates":[[-83.606593,32.863461],[-83.60657400000001,32.864005],[-83.60653500000001,32.86412],[-83.606493,32.864176],[-83.606403,32.86423],[-83.606272,32.864255],[-83.60602200000001,32.864255],[-83.60582500000001,32.864272],[-83.605655,32.86432],[-83.605373,32.864466],[-83.60508300000001,32.864765000000006]]},"id":"8844c0a325fffff-17ff78e69d58887e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698873,32.794112000000005]},"id":"8f44c0b032922aa-17f6662c643a79eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699306,32.7938415]},"id":"8f44c0b0329001c-17b6f51dc3526bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032922aa-17f6662c643a79eb","8f44c0b0329001c-17b6f51dc3526bde"]},"geometry":{"type":"LineString","coordinates":[[-83.698873,32.794112000000005],[-83.699306,32.7938415]]},"id":"8a44c0b03297fff-179fe5a513396dae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703021,32.822366]},"id":"8f44c0b0a42a670-13dedc0be5e1215f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a42a670-13dedc0be5e1215f","8f44c0b0a42eaee-1397db1c8dc64e21"]},"geometry":{"type":"LineString","coordinates":[[-83.703021,32.822366],[-83.703153,32.822206],[-83.703404,32.821846]]},"id":"8a44c0b0a42ffff-13be7b9166e9cba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56048200000001,32.818641]},"id":"8f44c0b81055c28-13d7b80acae8c5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56175800000001,32.817855]},"id":"8f44c0b8106639b-17d7f4ed47b2ca46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81055c28-13d7b80acae8c5d9","8f44c0b8106639b-17d7f4ed47b2ca46"]},"geometry":{"type":"LineString","coordinates":[[-83.56048200000001,32.818641],[-83.56159500000001,32.81796],[-83.56175800000001,32.817855]]},"id":"8944c0b8107ffff-17dfb67b69532388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615633,32.872619]},"id":"8f44c0a322038a9-179ff1656b301e4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61562400000001,32.873311]},"id":"8f44c0a3221d368-17bf716b02b2c443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3221d368-17bf716b02b2c443","8f44c0a322038a9-179ff1656b301e4b"]},"geometry":{"type":"LineString","coordinates":[[-83.615633,32.872619],[-83.61562400000001,32.873311]]},"id":"8944c0a3223ffff-17f731683d9d0519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67769700000001,32.851072]},"id":"8f44c0a2609aa5b-17f699df67bf6db0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67931700000001,32.84959]},"id":"8f44c0a260a32d3-17d7d5eae65af34b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260a32d3-17d7d5eae65af34b","8f44c0a2609aa5b-17f699df67bf6db0"]},"geometry":{"type":"LineString","coordinates":[[-83.67769700000001,32.851072],[-83.67868,32.85017],[-83.678903,32.84996],[-83.67931700000001,32.84959]]},"id":"8944c0a260bffff-179ff7e5fabc77cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693899,32.827959]},"id":"8f44c0b19b9b04e-1796725126a0af41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69416000000001,32.827288]},"id":"8f44c0b19b9c2cb-17df71ae09ef8e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b9b04e-1796725126a0af41","8f44c0b19b9c2cb-17df71ae09ef8e1b"]},"geometry":{"type":"LineString","coordinates":[[-83.693899,32.827959],[-83.693897,32.827874],[-83.69390800000001,32.827801],[-83.69416000000001,32.827288]]},"id":"8a44c0b19b9ffff-17bef20ef1d93d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56354300000001,32.811369]},"id":"8f44c0b8181976a-1797b091af03e624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b856cb271-1797fa668b4c9667","8f44c0b8181976a-1797b091af03e624"]},"geometry":{"type":"LineString","coordinates":[[-83.56354300000001,32.811369],[-83.56338600000001,32.811272],[-83.563241,32.811169],[-83.563069,32.810997],[-83.56290200000001,32.810769],[-83.56285000000001,32.810688],[-83.56158,32.808686],[-83.56103200000001,32.80783],[-83.560963,32.80775],[-83.56087500000001,32.807681],[-83.560782,32.807628],[-83.559645,32.807116],[-83.559516,32.807074]]},"id":"8744c0b81ffffff-13dff51f23c5325e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629351,32.85493]},"id":"8f44c0a30cc2c95-13df4fe7a46d2a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628338,32.856769]},"id":"8f44c0a30576244-17dfb260c99b499f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30576244-17dfb260c99b499f","8f44c0a30cc2c95-13df4fe7a46d2a37"]},"geometry":{"type":"LineString","coordinates":[[-83.629351,32.85493],[-83.629028,32.855579],[-83.628585,32.85652],[-83.62855420000001,32.8565617],[-83.628521,32.856602],[-83.6284651,32.8566615],[-83.628404,32.8567173],[-83.628338,32.856769]]},"id":"8744c0a30ffffff-13bf710d38a09c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65696790000001,32.8142572]},"id":"8f44c0b1ab31a44-179ecc7b191114a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ab31a44-179ecc7b191114a5","8f44c0b1ab31461-17f7dd5cd8bdcdad"]},"geometry":{"type":"LineString","coordinates":[[-83.65660670000001,32.8142201],[-83.65696790000001,32.8142572]]},"id":"8b44c0b1ab31fff-1797fcebf019482c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707651,32.860179]},"id":"8f44c0a208637a0-17bff0be2748ea1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7075744,32.859407000000004]},"id":"8f44c0a208660ed-17df70ee0d332f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208637a0-17bff0be2748ea1b","8f44c0a208660ed-17df70ee0d332f89"]},"geometry":{"type":"LineString","coordinates":[[-83.707651,32.860179],[-83.70756700000001,32.859769],[-83.707554,32.859583],[-83.7075744,32.859407000000004]]},"id":"8a44c0a20867fff-17bfd0e5f341fffe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68013400000001,32.819307]},"id":"8f44c0b19d9a38d-13f6f3ec4158d3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68098300000001,32.819313900000004]},"id":"8f44c0b19d998d5-13f7b1d9a1fb269b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d998d5-13f7b1d9a1fb269b","8f44c0b19d9a38d-13f6f3ec4158d3a0"]},"geometry":{"type":"LineString","coordinates":[[-83.68013400000001,32.819307],[-83.68098300000001,32.819313900000004]]},"id":"8a44c0b19d9ffff-13f792e2f38454a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6801829,32.8215796]},"id":"8f44c0b19c83463-17ffd3cdb67969d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68065100000001,32.82219]},"id":"8f44c0b19c8a803-13fed2a92104e6f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8a803-13fed2a92104e6f9","8f44c0b19c83463-17ffd3cdb67969d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6801829,32.8215796],[-83.680231,32.82175],[-83.680262,32.821827],[-83.680299,32.821892000000005],[-83.680434,32.822054],[-83.680571,32.822161],[-83.680605,32.822179000000006],[-83.68065100000001,32.82219]]},"id":"8944c0b19cbffff-13de935b058151c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680137,32.820057000000006]},"id":"8f44c0b19cb579a-17b7b3ea6c148c92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6810138,32.8203237]},"id":"8f44c0b19ca06a9-17ded1c66be353c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ca06a9-17ded1c66be353c2","8f44c0b19cb579a-17b7b3ea6c148c92"]},"geometry":{"type":"LineString","coordinates":[[-83.680137,32.820057000000006],[-83.68038200000001,32.820059],[-83.680458,32.820071],[-83.68059500000001,32.82011],[-83.680667,32.820144],[-83.6810138,32.8203237]]},"id":"8944c0b19cbffff-17ffd2d0a1cce369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68048900000001,32.822414]},"id":"8f44c0b19c8a70d-13fed30e62fa74fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6809224,32.822662]},"id":"8f44c0b19c8b00c-1397d1ff8f3a42bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8b00c-1397d1ff8f3a42bc","8f44c0b19c8a70d-13fed30e62fa74fe"]},"geometry":{"type":"LineString","coordinates":[[-83.68048900000001,32.822414],[-83.6809224,32.822662]]},"id":"8a44c0b19c8ffff-13d6d286f92c21c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700241,32.837294]},"id":"8f44c0a24c1a989-17dee2d564970cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69946200000001,32.836412]},"id":"8f44c0a24c1246b-17b7e4bc42a9afbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c1a989-17dee2d564970cfb","8f44c0a24c1246b-17b7e4bc42a9afbe"]},"geometry":{"type":"LineString","coordinates":[[-83.700241,32.837294],[-83.70017,32.837242],[-83.70008200000001,32.837144],[-83.69972200000001,32.836714],[-83.69946200000001,32.836412]]},"id":"8844c0a24dfffff-17bff3ccf53f002b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53652600000001,32.806426]},"id":"8f44c0b806266c2-13f7f28741a2dcf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.534481,32.804141]},"id":"8f44c0b807a0c62-17dff7856ef4dbda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b807a0c62-17dff7856ef4dbda","8f44c0b806266c2-13f7f28741a2dcf3"]},"geometry":{"type":"LineString","coordinates":[[-83.53652600000001,32.806426],[-83.53596800000001,32.805943],[-83.535509,32.805537],[-83.53531000000001,32.805355],[-83.53455500000001,32.804698],[-83.534501,32.804631],[-83.53447200000001,32.804570000000005],[-83.534468,32.804513],[-83.534481,32.804141]]},"id":"8844c0b807fffff-13d7f567a29d56c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678472,32.866101]},"id":"8f44c0a228d6425-17b7b7fb091177c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67868100000001,32.866424]},"id":"8f44c0a228d2943-17ff97786700f31a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d6425-17b7b7fb091177c1","8f44c0a228d2943-17ff97786700f31a"]},"geometry":{"type":"LineString","coordinates":[[-83.678472,32.866101],[-83.678582,32.866068],[-83.678922,32.866087],[-83.678909,32.866292],[-83.67868100000001,32.866424]]},"id":"8a44c0a228d7fff-17d6973f260a425b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737904,32.901274]},"id":"8f44c0a2c316491-139646e20407e8d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c15156b-179608c340c51485","8f44c0a2c316491-139646e20407e8d1"]},"geometry":{"type":"LineString","coordinates":[[-83.737904,32.901274],[-83.738082,32.899372],[-83.73810800000001,32.898971],[-83.73809100000001,32.898848],[-83.738049,32.898733],[-83.737993,32.898635],[-83.737936,32.898555],[-83.737826,32.898435],[-83.73770300000001,32.898311],[-83.737629,32.89821],[-83.737588,32.898123000000005],[-83.73755,32.897971000000005],[-83.737543,32.897878],[-83.737567,32.897706],[-83.737701,32.897286],[-83.737747,32.897081],[-83.737751,32.896932],[-83.737744,32.896786],[-83.737719,32.89672],[-83.737685,32.896676],[-83.73763100000001,32.896645],[-83.737572,32.896622],[-83.737508,32.896604],[-83.73713400000001,32.896592000000005]]},"id":"8744c0a2cffffff-17b787135905ab71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568324,32.865746]},"id":"8f44c0b8b9ac796-13d7e4e58967feba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571014,32.867883]},"id":"8f44c0b8b82c115-13fffe544c49eca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b9ac796-13d7e4e58967feba","8f44c0b8b82c115-13fffe544c49eca6"]},"geometry":{"type":"LineString","coordinates":[[-83.568324,32.865746],[-83.569265,32.866434000000005],[-83.56994200000001,32.86694],[-83.571014,32.867883]]},"id":"8844c0b8b9fffff-17dfe18e5d4002b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74950000000001,32.883405]},"id":"8f44c0b5236b0e3-17f5ea9282323059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7481832,32.8844058]},"id":"8f44c0b52264541-13d5edc9896de49b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5236b0e3-17f5ea9282323059","8f44c0b52264541-13d5edc9896de49b"]},"geometry":{"type":"LineString","coordinates":[[-83.74950000000001,32.883405],[-83.749328,32.883408],[-83.749204,32.883421000000006],[-83.74908900000001,32.883443],[-83.74892,32.88349],[-83.748827,32.883528000000005],[-83.74870700000001,32.883594],[-83.748564,32.883698],[-83.74844300000001,32.883809],[-83.748372,32.883891000000006],[-83.748338,32.883937],[-83.748278,32.88404],[-83.74820600000001,32.88421],[-83.748191,32.884302000000005],[-83.7481832,32.8844058]]},"id":"8844c0b523fffff-17bfec86d7574621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740339,32.909742]},"id":"8f44c0a2d586008-17bec0f02b6e6f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c2c1c50-13de4580e699175f","8f44c0a2d586008-17bec0f02b6e6f66"]},"geometry":{"type":"LineString","coordinates":[[-83.73846900000001,32.907978],[-83.738416,32.908912],[-83.73842300000001,32.909038],[-83.738442,32.909115],[-83.73845800000001,32.909155000000005],[-83.73850300000001,32.909224],[-83.73856500000001,32.90929],[-83.738607,32.909326],[-83.738704,32.909391],[-83.73884000000001,32.909453],[-83.739005,32.909506],[-83.739232,32.909608],[-83.73935200000001,32.90965],[-83.73954300000001,32.909702],[-83.7397,32.909725],[-83.739862,32.909737],[-83.740339,32.909742]]},"id":"8644c0a2fffffff-17df042c001fee01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65454100000001,32.84488]},"id":"8f44c0a35d1821a-13d6d267e6502899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65297740000001,32.848487]},"id":"8f44c0a35cf09a4-13b6f6392089440d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf09a4-13b6f6392089440d","8f44c0a35d1821a-13d6d267e6502899"]},"geometry":{"type":"LineString","coordinates":[[-83.65454100000001,32.84488],[-83.65297740000001,32.848487]]},"id":"8844c0a35dfffff-17bff45082cb3cdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570086,32.806444]},"id":"8f44c0b8525a513-13ffa09840d51a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.569821,32.805146]},"id":"8f44c0b852562b5-17d7e13de30efb3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8525a513-13ffa09840d51a03","8f44c0b852562b5-17d7e13de30efb3c"]},"geometry":{"type":"LineString","coordinates":[[-83.570086,32.806444],[-83.569992,32.805985],[-83.56992620000001,32.805705200000006],[-83.56988000000001,32.805486],[-83.569821,32.805146]]},"id":"8944c0b8527ffff-13f7f0ed8b3e73d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669391,32.809813000000005]},"id":"8f44c0b181a8a26-13b7ae26a70085e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669981,32.811461]},"id":"8f44c0b18006d0c-17bfacb5e221f45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b181a8a26-13b7ae26a70085e8","8f44c0b18006d0c-17bfacb5e221f45b"]},"geometry":{"type":"LineString","coordinates":[[-83.669391,32.809813000000005],[-83.669392,32.810119],[-83.669409,32.810172],[-83.669458,32.81024],[-83.66950700000001,32.81029],[-83.66973200000001,32.810474],[-83.669855,32.810570000000006],[-83.669911,32.81063],[-83.66995700000001,32.810735],[-83.669967,32.810825],[-83.669981,32.811461]]},"id":"8844c0b181fffff-17b7bd4a35b0367d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7238052,32.923370500000004]},"id":"8f44c0a2871bc73-13f6b94dc7e817f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72346200000001,32.92346]},"id":"8f44c0a28634802-13beaa244a82c8e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28634802-13beaa244a82c8e7","8f44c0a2871bc73-13f6b94dc7e817f6"]},"geometry":{"type":"LineString","coordinates":[[-83.7238052,32.923370500000004],[-83.72346200000001,32.92346]]},"id":"8844c0a287fffff-139eb9b905b64e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7257519,32.924478]},"id":"8f44c0a287506d8-13b6e48d12d6d8ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72546,32.92403]},"id":"8f44c0a28756708-139ee543889b5ce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28756708-139ee543889b5ce9","8f44c0a287506d8-13b6e48d12d6d8ba"]},"geometry":{"type":"LineString","coordinates":[[-83.7257519,32.924478],[-83.72546,32.92403]]},"id":"8a44c0a28757fff-139ee4e851e15bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73834000000001,32.883204]},"id":"8f44c0b5275b900-17f685d182271d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73763720000001,32.8824569]},"id":"8f44c0b5275339b-179f9788cfc871b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5275339b-179f9788cfc871b1","8f44c0b5275b900-17f685d182271d60"]},"geometry":{"type":"LineString","coordinates":[[-83.73834000000001,32.883204],[-83.737949,32.882875],[-83.73785600000001,32.882775],[-83.737781,32.882674],[-83.73763720000001,32.8824569]]},"id":"8944c0b5277ffff-179766bd00eef6d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69856700000001,32.784713]},"id":"8f44c0b03032795-17ffe6ebaf276cea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70198900000001,32.784512]},"id":"8f44c0b03154299-17f65e90ea849afc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03032795-17ffe6ebaf276cea","8f44c0b03154299-17f65e90ea849afc"]},"geometry":{"type":"LineString","coordinates":[[-83.69856700000001,32.784713],[-83.699439,32.784782],[-83.70111800000001,32.784931],[-83.701341,32.784944],[-83.701437,32.784931],[-83.70153300000001,32.784896],[-83.701598,32.784853000000005],[-83.701814,32.784677],[-83.70198900000001,32.784512]]},"id":"8844c0b031fffff-17bf6298473bc66c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71373700000001,32.903402]},"id":"8f44c0a2e075154-17b641e2638b1deb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713689,32.903816]},"id":"8f44c0a2e071b94-13b742006c81f76f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e075154-17b641e2638b1deb","8f44c0a2e071b94-13b742006c81f76f"]},"geometry":{"type":"LineString","coordinates":[[-83.71373700000001,32.903402],[-83.71371,32.903444],[-83.713696,32.903487000000005],[-83.713689,32.903816]]},"id":"8a44c0a2e077fff-13b741fb3bd729bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713779,32.903818]},"id":"8f44c0a2e071b03-13b641c82f936a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e071b03-13b641c82f936a6e","8f44c0a2e075154-17b641e2638b1deb"]},"geometry":{"type":"LineString","coordinates":[[-83.713779,32.903818],[-83.713773,32.903467],[-83.713752,32.903422],[-83.71373700000001,32.903402]]},"id":"8a44c0a2e077fff-13b7f1cc2ea1aa17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624306,32.8709737]},"id":"8f44c0a33dad225-13979c38c40a251a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623096,32.873044]},"id":"8f44c0a33c12112-17979f2d0514e485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33dad225-13979c38c40a251a","8f44c0a33c12112-17979f2d0514e485"]},"geometry":{"type":"LineString","coordinates":[[-83.624306,32.8709737],[-83.62305400000001,32.872013],[-83.622967,32.872101],[-83.622884,32.872231],[-83.622838,32.872337],[-83.62281800000001,32.872456],[-83.622816,32.872546],[-83.622833,32.87265],[-83.62286900000001,32.872749],[-83.62290300000001,32.872814000000005],[-83.622995,32.872945],[-83.623096,32.873044]]},"id":"8844c0a33dfffff-13dfde8b73d33f02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665569,32.823138]},"id":"8f44c0b186c9853-13bff77b69215b83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665661,32.821379]},"id":"8f44c0b186e12ee-17f7f741e60ee67e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186e12ee-17f7f741e60ee67e","8f44c0b186c9853-13bff77b69215b83"]},"geometry":{"type":"LineString","coordinates":[[-83.665569,32.823138],[-83.66561300000001,32.822232],[-83.665661,32.821379]]},"id":"8844c0b187fffff-1397b75fbb6864ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64465600000001,32.816409]},"id":"8f44c0b1a18b41c-13dfea8a0a276533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64466,32.815773]},"id":"8f44c0b1a18e381-13d6ea8785bd2e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a18b41c-13dfea8a0a276533","8f44c0b1a18e381-13d6ea8785bd2e17"]},"geometry":{"type":"LineString","coordinates":[[-83.64465600000001,32.816409],[-83.64466,32.816041000000006],[-83.64465200000001,32.815993],[-83.644661,32.815838],[-83.64466,32.815773]]},"id":"8a44c0b1a18ffff-139efa88f9b19dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640499,32.821354]},"id":"8f44c0b1a7ac4b0-17f6f4b022ef4a70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641214,32.820478]},"id":"8f44c0b1a716b0e-17bef2f149746a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a716b0e-17bef2f149746a97","8f44c0b1a7ac4b0-17f6f4b022ef4a70"]},"geometry":{"type":"LineString","coordinates":[[-83.640499,32.821354],[-83.641214,32.820478]]},"id":"8844c0b1a7fffff-17d6f3d0b3c465aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733869,32.75189]},"id":"8f44c0b05806c25-17df50bbe071c034"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732241,32.751959]},"id":"8f44c0b058a58e4-17f674b56d1a55d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b058a58e4-17f674b56d1a55d4","8f44c0b05806c25-17df50bbe071c034"]},"geometry":{"type":"LineString","coordinates":[[-83.733869,32.75189],[-83.73347000000001,32.751913],[-83.732787,32.751961],[-83.732241,32.751959]]},"id":"8844c0b059fffff-17fe12b87dc9f3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74808200000001,32.805227]},"id":"8f44c0b0c260595-1397ee08cab47815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75004700000001,32.80583]},"id":"8f44c0b0dc91384-13ffe93cab21b5fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0dc91384-13ffe93cab21b5fe","8f44c0b0c260595-1397ee08cab47815"]},"geometry":{"type":"LineString","coordinates":[[-83.74808200000001,32.805227],[-83.748706,32.805432],[-83.75004700000001,32.80583]]},"id":"8644c0b0fffffff-13d7fba3e5b86586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70388600000001,32.810259]},"id":"8f44c0b1daecb12-17dff9ef40aac7ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702954,32.809421]},"id":"8f44c0b1dae0d21-13d67c35cc92f2a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1daecb12-17dff9ef40aac7ce","8f44c0b1dae0d21-13d67c35cc92f2a3"]},"geometry":{"type":"LineString","coordinates":[[-83.70388600000001,32.810259],[-83.703822,32.810193000000005],[-83.703742,32.810142],[-83.703653,32.810101],[-83.703569,32.81007],[-83.70345900000001,32.810054],[-83.70315000000001,32.810059],[-83.70301,32.810056],[-83.702977,32.810043],[-83.70294600000001,32.810018],[-83.702922,32.809986],[-83.70291,32.809936],[-83.702916,32.809503],[-83.702954,32.809421]]},"id":"8944c0b1dafffff-139f5b8498ed71e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700922,32.883713]},"id":"8f44c0a23ba635c-17b6e12bc93513d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70276600000001,32.884932]},"id":"8f44c0a23b1e218-139edcab4193cb1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ba635c-17b6e12bc93513d5","8f44c0a23b1e218-139edcab4193cb1a"]},"geometry":{"type":"LineString","coordinates":[[-83.700922,32.883713],[-83.701803,32.883946],[-83.70193,32.883991],[-83.702016,32.884034],[-83.702151,32.884138],[-83.70231000000001,32.884323],[-83.702616,32.884721],[-83.70276600000001,32.884932]]},"id":"8844c0a23bfffff-13bedeaa5f53fe5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71733300000001,32.8783714]},"id":"8f44c0a21111a76-1396391ae50463a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71735100000001,32.878234]},"id":"8f44c0a211024aa-13d6790faa910314"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a21111a76-1396391ae50463a4","8f44c0a211024aa-13d6790faa910314"]},"geometry":{"type":"LineString","coordinates":[[-83.71733300000001,32.8783714],[-83.7173298,32.8782889],[-83.71735100000001,32.878234]]},"id":"8a44c0a21117fff-13feb919981e7944"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71636090000001,32.877489100000005]},"id":"8f44c0a21116d70-13febb7a7a62063f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163821,32.877030000000005]},"id":"8f44c0a21c49da2-17dffb6d35878f90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c49da2-17dffb6d35878f90","8f44c0a21116d70-13febb7a7a62063f"]},"geometry":{"type":"LineString","coordinates":[[-83.71636090000001,32.877489100000005],[-83.7163276,32.8773837],[-83.7162948,32.8772542],[-83.716329,32.8771381],[-83.7163821,32.877030000000005]]},"id":"8a44c0a21c4ffff-17dfbb8dd49066ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65572300000001,32.852469]},"id":"8f44c0a35183420-13dfef85211cdc89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65571700000001,32.853127]},"id":"8f44c0a3519d643-17f6ef88ea8d4388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3519d643-17f6ef88ea8d4388","8f44c0a35183420-13dfef85211cdc89"]},"geometry":{"type":"LineString","coordinates":[[-83.65572300000001,32.852469],[-83.65571700000001,32.853127]]},"id":"8944c0a351bffff-17b6cf8705f374d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67169100000001,32.863571]},"id":"8f44c0a22c1d118-17f7e8892d270f0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673491,32.862983]},"id":"8f44c0a22c29dae-1796e4242d093079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c1d118-17f7e8892d270f0c","8f44c0a22c29dae-1796e4242d093079"]},"geometry":{"type":"LineString","coordinates":[[-83.67169100000001,32.863571],[-83.67169200000001,32.863469],[-83.67174800000001,32.863239],[-83.67175900000001,32.863208],[-83.67182000000001,32.863034],[-83.671968,32.86291],[-83.67210700000001,32.862842],[-83.67227700000001,32.862831],[-83.67256,32.862858],[-83.67345,32.86298],[-83.673491,32.862983]]},"id":"8944c0a22c3ffff-179ea6c41ddcd844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144794,32.7426084]},"id":"8f44c0b0414208e-17b640126ca99efe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71716500000001,32.741681]},"id":"8f44c0b04b90322-17deb983e10cbed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b04b90322-17deb983e10cbed1","8f44c0b0414208e-17b640126ca99efe"]},"geometry":{"type":"LineString","coordinates":[[-83.7144794,32.7426084],[-83.7146862,32.7425313],[-83.714904,32.742483],[-83.71554900000001,32.742458],[-83.715743,32.7424388],[-83.715936,32.742399],[-83.71617400000001,32.742271],[-83.71671400000001,32.741684],[-83.716891,32.74163],[-83.71716500000001,32.741681]]},"id":"8744c0b04ffffff-17b7fcaa57c21f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66892100000001,32.855519]},"id":"8f44c0a35a2bd73-13dfef4c65e75b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670348,32.857329]},"id":"8f44c0a35a4081b-17b6abd080a97ad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35a2bd73-13dfef4c65e75b21","8f44c0a35a4081b-17b6abd080a97ad5"]},"geometry":{"type":"LineString","coordinates":[[-83.66892100000001,32.855519],[-83.66892,32.855731],[-83.668892,32.856105],[-83.668881,32.856533],[-83.668885,32.856831],[-83.669211,32.857173],[-83.669358,32.857294],[-83.669494,32.857349],[-83.669582,32.85736],[-83.66988900000001,32.857354],[-83.670348,32.857329]]},"id":"8844c0a35bfffff-17d7be74e0d8eb7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68633600000001,32.866397]},"id":"8f44c0a2049b846-17dea4c80d28b4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686239,32.866875]},"id":"8f44c0a22b35b16-1796e504aaa34328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2049b846-17dea4c80d28b4a1","8f44c0a22b35b16-1796e504aaa34328"]},"geometry":{"type":"LineString","coordinates":[[-83.68633600000001,32.866397],[-83.68632500000001,32.866517],[-83.68631,32.866608],[-83.686283,32.866726],[-83.686239,32.866875]]},"id":"8744c0a22ffffff-17f6c4e00d75233f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685422,32.867283]},"id":"8f44c0a22b33d09-1797e70348a37a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686051,32.8671]},"id":"8f44c0a22b35292-1797857a29284879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22b33d09-1797e70348a37a11","8f44c0a22b35292-1797857a29284879"]},"geometry":{"type":"LineString","coordinates":[[-83.685422,32.867283],[-83.685606,32.867271],[-83.68586,32.867213],[-83.685941,32.867184],[-83.685973,32.867168],[-83.686051,32.8671]]},"id":"8a44c0a22b37fff-17f6a636b61ea91f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22b33365-13d7a677ef98b84e","8f44c0a22ba46e4-13dfeb8c8d5e0c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.683564,32.867635],[-83.685547,32.867657],[-83.68561600000001,32.867641],[-83.68564400000001,32.867613],[-83.68564500000001,32.867589]]},"id":"8844c0a22bfffff-13f6c8f710c304d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659554,32.82392]},"id":"8f44c0b1bda9209-17b6c62acaa54e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65953400000001,32.825003]},"id":"8f44c0b1bc330dc-13dee6374d6791f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bda9209-17b6c62acaa54e6b","8f44c0b1bc330dc-13dee6374d6791f8"]},"geometry":{"type":"LineString","coordinates":[[-83.659554,32.82392],[-83.65953400000001,32.825003]]},"id":"8a44c0b1bc37fff-17fef63107ece025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58826300000001,32.853026]},"id":"8f44c0b8d7ad9a0-17b77437a98e1569"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58943000000001,32.853524]},"id":"8f44c0b8d71d650-17fff15e44fbb609"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d7ad9a0-17b77437a98e1569","8f44c0b8d71d650-17fff15e44fbb609"]},"geometry":{"type":"LineString","coordinates":[[-83.58826300000001,32.853026],[-83.589026,32.85333],[-83.589302,32.853446000000005],[-83.58943000000001,32.853524]]},"id":"8944c0b8d73ffff-17dff2c78adc4eb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647643,32.804949]},"id":"8f44c0b1e6e0396-17d7e33f218053c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649219,32.80498]},"id":"8f44c0b1e650b4e-17fedf66220891c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e6e0396-17d7e33f218053c1","8f44c0b1e650b4e-17fedf66220891c8"]},"geometry":{"type":"LineString","coordinates":[[-83.647643,32.804949],[-83.64791500000001,32.804952],[-83.64833200000001,32.804972],[-83.649219,32.80498]]},"id":"8844c0b1e7fffff-17f6f152b2c3a73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62318400000001,32.862848]},"id":"8f44c0a32b29cea-17b71ef60a942b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3056e184-13bf0e2a018d94ed","8f44c0a32b29cea-17b71ef60a942b75"]},"geometry":{"type":"LineString","coordinates":[[-83.630064,32.85772],[-83.62990500000001,32.857765],[-83.629751,32.857824],[-83.629641,32.857886],[-83.62951600000001,32.857967],[-83.62939700000001,32.85806],[-83.629276,32.858184],[-83.629129,32.858311],[-83.628955,32.858435],[-83.628787,32.858535],[-83.62851900000001,32.858671],[-83.627813,32.859056],[-83.62772000000001,32.859114000000005],[-83.627651,32.859177],[-83.62757900000001,32.859271],[-83.627404,32.859519],[-83.62733200000001,32.8596],[-83.627274,32.859644],[-83.62720300000001,32.859667],[-83.62712300000001,32.859673],[-83.626457,32.859651],[-83.62596900000001,32.859642],[-83.625623,32.859629000000005],[-83.625417,32.85963],[-83.62528,32.85964],[-83.625107,32.859665],[-83.62485600000001,32.859721],[-83.624435,32.859838],[-83.624194,32.85991],[-83.624048,32.859968],[-83.62393700000001,32.860023000000005],[-83.62381,32.860104],[-83.62369100000001,32.860203],[-83.623586,32.860309],[-83.623495,32.860425],[-83.623328,32.860687],[-83.623188,32.860926],[-83.62309400000001,32.86106],[-83.623024,32.861181],[-83.622979,32.861283],[-83.62295400000001,32.86142],[-83.622951,32.861638],[-83.62295400000001,32.862006],[-83.62294800000001,32.862132],[-83.62294100000001,32.862506],[-83.62296400000001,32.862586],[-83.62299800000001,32.862656],[-83.623062,32.862738],[-83.623125,32.862799],[-83.62318400000001,32.862848]]},"id":"8644c0a37ffffff-17ff98774263c4e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708042,32.872033]},"id":"8f44c0a2036a9b3-139eefc9cf2f261f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71273400000001,32.87249]},"id":"8f44c0a21c356b6-17be4455433434c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2036a9b3-139eefc9cf2f261f","8f44c0a21c356b6-17be4455433434c6"]},"geometry":{"type":"LineString","coordinates":[[-83.708042,32.872033],[-83.70948,32.872017],[-83.71034,32.872013],[-83.711797,32.871997],[-83.711928,32.872033],[-83.712412,32.872301],[-83.71273400000001,32.87249]]},"id":"8644c0a27ffffff-13bef9f009c8235c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73300300000001,32.908949]},"id":"8f44c0a289aca84-17bf32d923934eed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73231750000001,32.9088122]},"id":"8f44c0a289aed15-17f7b4859d6c8503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a289aed15-17f7b4859d6c8503","8f44c0a289aca84-17bf32d923934eed"]},"geometry":{"type":"LineString","coordinates":[[-83.73300300000001,32.908949],[-83.73231750000001,32.9088122]]},"id":"8944c0a289bffff-179673af541b1f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722223,32.921179]},"id":"8f44c0a2844a655-139eed2aa7a326e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7224156,32.9224535]},"id":"8f44c0a287ae824-17b77cb249053137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a287ae824-17b77cb249053137","8f44c0a2844a655-139eed2aa7a326e8"]},"geometry":{"type":"LineString","coordinates":[[-83.722223,32.921179],[-83.7223226,32.9219646],[-83.7224156,32.9224535]]},"id":"8844c0a287fffff-17be3cf44fde3bb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69902,32.783701]},"id":"8f44c0b031a912a-13f765d082858a19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b031a912a-13f765d082858a19","8f44c0b03154299-17f65e90ea849afc"]},"geometry":{"type":"LineString","coordinates":[[-83.69902,32.783701],[-83.699274,32.783963],[-83.69942800000001,32.784036],[-83.70049900000001,32.784134],[-83.701396,32.784205],[-83.70162,32.784227],[-83.701766,32.784281],[-83.70198900000001,32.784512]]},"id":"8844c0b031fffff-17ff723545eaf5f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.588847,32.855505]},"id":"8f44c0b8d6000a3-13d7f2caa7f03a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58710400000001,32.855522]},"id":"8f44c0b8d612019-13df770c0e75e001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d612019-13df770c0e75e001","8f44c0b8d6000a3-13d7f2caa7f03a91"]},"geometry":{"type":"LineString","coordinates":[[-83.588847,32.855505],[-83.58710400000001,32.855522]]},"id":"8844c0b8d7fffff-13d7f4eb5d62f41c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62389900000001,32.834484800000006]},"id":"8f44c0a3690c79e-17f71d37242a2012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6247774,32.835165]},"id":"8f44c0a3697276b-139f3b122652b9c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3690c79e-17f71d37242a2012","8f44c0a3697276b-139f3b122652b9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.62389900000001,32.834484800000006],[-83.624716,32.8349619],[-83.6247774,32.835165]]},"id":"8844c0a369fffff-13bf1c0586d59237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639992,32.848947]},"id":"8f44c0a30932241-13bff5ed066d9bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640754,32.848025]},"id":"8f44c0a3429b500-13fff410cf2c7d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30932241-13bff5ed066d9bde","8f44c0a3429b500-13fff410cf2c7d10"]},"geometry":{"type":"LineString","coordinates":[[-83.639992,32.848947],[-83.640754,32.848025]]},"id":"8744c0a34ffffff-139ff4fee7a87f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64449900000001,32.852271]},"id":"8f44c0a3096aa70-13dfeaec2f6a31c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645683,32.853631]},"id":"8f44c0a354b1764-17bfe80825da0b3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3096aa70-13dfeaec2f6a31c6","8f44c0a354b1764-17bfe80825da0b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.64449900000001,32.852271],[-83.644717,32.852489],[-83.64533200000001,32.853256],[-83.645683,32.853631]]},"id":"8744c0a30ffffff-1796f97a4e20f6cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6243657,32.849952800000004]},"id":"8f44c0a363732ec-17b79c1378d968e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62462400000001,32.849508]},"id":"8f44c0a36371ca9-179f9b7209493f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a363732ec-17b79c1378d968e1","8f44c0a36371ca9-179f9b7209493f94"]},"geometry":{"type":"LineString","coordinates":[[-83.6243657,32.849952800000004],[-83.624314,32.849798],[-83.624305,32.849766],[-83.624308,32.849736],[-83.62432100000001,32.849708],[-83.62434900000001,32.849676],[-83.62439,32.849643],[-83.624449,32.849606],[-83.62462400000001,32.849508]]},"id":"8a44c0a36377fff-1797bbf7e9ab6fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694271,32.88445]},"id":"8f44c0a23119830-13ff7168a22352eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69225,32.884805]},"id":"8f44c0a231ab6c2-13df7657c2767817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a231ab6c2-13df7657c2767817","8f44c0a23119830-13ff7168a22352eb"]},"geometry":{"type":"LineString","coordinates":[[-83.694271,32.88445],[-83.694049,32.884512],[-83.693633,32.884574],[-83.692898,32.884701],[-83.69225,32.884805]]},"id":"8844c0a231fffff-13f673decd14e19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62272300000001,32.848944]},"id":"8f44c0a3630e0e9-13bf20162513077b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62131600000001,32.848927]},"id":"8f44c0a3631e654-13b7638581606faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3631e654-13b7638581606faa","8f44c0a3630e0e9-13bf20162513077b"]},"geometry":{"type":"LineString","coordinates":[[-83.62272300000001,32.848944],[-83.62131600000001,32.848927]]},"id":"8944c0a3633ffff-13bfb1cdde62121b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66391800000001,32.887628]},"id":"8f44c0a04cde442-13bfbb834a83ff86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66391700000001,32.888913]},"id":"8f44c0a04570a28-17d6bb83e4bb0baa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04570a28-17d6bb83e4bb0baa","8f44c0a04cde442-13bfbb834a83ff86"]},"geometry":{"type":"LineString","coordinates":[[-83.66391800000001,32.887628],[-83.66391700000001,32.888913]]},"id":"8844c0a045fffff-13d7bb839ce202c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664669,32.8827]},"id":"8f44c0a04d8d322-17b7b9ade2bdc744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66328100000001,32.88328]},"id":"8f44c0a04ca441b-1796bd1161da2c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d8d322-17b7b9ade2bdc744","8f44c0a04ca441b-1796bd1161da2c05"]},"geometry":{"type":"LineString","coordinates":[[-83.664669,32.8827],[-83.664648,32.882824],[-83.66459300000001,32.882893],[-83.664535,32.88295],[-83.664473,32.883],[-83.664332,32.883086],[-83.66422,32.883131],[-83.664061,32.883177],[-83.66328100000001,32.88328]]},"id":"8844c0a04dfffff-17b6bb2e0ae3e874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5447604,32.8594601]},"id":"8f44c0b8a0ae865-17ffde6ccc89c0a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.543368,32.8588168]},"id":"8f44c0b8a0b56da-13dfe1d304649d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8a0b56da-13dfe1d304649d7c","8f44c0b8a0ae865-17ffde6ccc89c0a9"]},"geometry":{"type":"LineString","coordinates":[[-83.5447604,32.8594601],[-83.5443101,32.8592853],[-83.5442268,32.859242900000005],[-83.54402400000001,32.859101],[-83.543918,32.859007000000005],[-83.543728,32.85886],[-83.543644,32.858812],[-83.543577,32.858781],[-83.543514,32.858763],[-83.543459,32.858765000000005],[-83.543418,32.858772],[-83.54339,32.858792],[-83.543368,32.8588168]]},"id":"8944c0b8a0bffff-1397e026648d2e57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.767201,32.816828]},"id":"8f44c0b0dace8aa-17d5bf5b6dd30792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7677123,32.816395]},"id":"8f44c0b0daea18b-13d7fe1bdf434e93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0daea18b-13d7fe1bdf434e93","8f44c0b0dace8aa-17d5bf5b6dd30792"]},"geometry":{"type":"LineString","coordinates":[[-83.767201,32.816828],[-83.76728200000001,32.816668],[-83.76732200000001,32.816615],[-83.76738200000001,32.816555],[-83.767442,32.816512],[-83.767526,32.816462],[-83.767578,32.816439],[-83.7677123,32.816395]]},"id":"8944c0b0dafffff-13b7bed3198caed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66426100000001,32.756452]},"id":"8f44c0b150c5c5c-13febaace16f4273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66575,32.75553]},"id":"8f44c0b15056a44-17bef70a4f932576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150c5c5c-13febaace16f4273","8f44c0b15056a44-17bef70a4f932576"]},"geometry":{"type":"LineString","coordinates":[[-83.66426100000001,32.756452],[-83.66445200000001,32.756338],[-83.66557900000001,32.755604000000005],[-83.665659,32.755561],[-83.66575,32.75553]]},"id":"8844c0b151fffff-17def8de78bc2ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62600400000001,32.866293]},"id":"8f44c0a306b3808-179f38138ac654ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62714100000001,32.866799]},"id":"8f44c0a3068598a-17d7754ce2e46cde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3068598a-17d7754ce2e46cde","8f44c0a306b3808-179f38138ac654ef"]},"geometry":{"type":"LineString","coordinates":[[-83.62600400000001,32.866293],[-83.62611700000001,32.866317],[-83.626292,32.866376],[-83.62635200000001,32.866401],[-83.62644800000001,32.866448000000005],[-83.626973,32.866746],[-83.62704500000001,32.866779],[-83.627105,32.866798],[-83.62714100000001,32.866799]]},"id":"8944c0a306bffff-17bf76ac7012d7a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663746,32.84344]},"id":"8f44c0a359300b6-17debbeec08666f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6635098,32.842937]},"id":"8f44c0a35936995-1797bc8268c28239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a359300b6-17debbeec08666f1","8f44c0a35936995-1797bc8268c28239"]},"geometry":{"type":"LineString","coordinates":[[-83.663746,32.84344],[-83.663736,32.843303],[-83.663719,32.843224],[-83.663683,32.843148],[-83.66361900000001,32.843041],[-83.6635098,32.842937]]},"id":"8a44c0a35937fff-17b7bc1fa9e9e382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678075,32.839796]},"id":"8f44c0a26d1b96d-17fe98f3261b9c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67850700000001,32.83841]},"id":"8f44c0a26d06261-1396d7e5245c232a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d06261-1396d7e5245c232a","8f44c0a26d1b96d-17fe98f3261b9c78"]},"geometry":{"type":"LineString","coordinates":[[-83.678075,32.839796],[-83.678137,32.839664],[-83.678453,32.838486],[-83.67850700000001,32.83841]]},"id":"8944c0a26d3ffff-13b7d86e1cfb4014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68603800000001,32.75013]},"id":"8f44c0b0608db8c-13ffc5824baacc8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687634,32.752879]},"id":"8f44c0b060cb523-13b7e19cce52d979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0608db8c-13ffc5824baacc8a","8f44c0b060cb523-13b7e19cce52d979"]},"geometry":{"type":"LineString","coordinates":[[-83.68603800000001,32.75013],[-83.686273,32.750123],[-83.686637,32.750124],[-83.687447,32.750115],[-83.687543,32.750126],[-83.687635,32.750151],[-83.687706,32.75019],[-83.687781,32.750253],[-83.687849,32.750324],[-83.68788500000001,32.750389000000006],[-83.6879,32.750449],[-83.687894,32.750625],[-83.68787900000001,32.75068],[-83.687852,32.750726],[-83.687813,32.750777],[-83.68773900000001,32.750842],[-83.68724800000001,32.751305],[-83.68717000000001,32.751399],[-83.687111,32.751482],[-83.687056,32.751573],[-83.687019,32.751669],[-83.686992,32.751756],[-83.68698400000001,32.751857],[-83.68698300000001,32.752026],[-83.68700000000001,32.752113],[-83.687053,32.752296],[-83.687101,32.752392],[-83.687207,32.752532],[-83.687256,32.752584],[-83.68731700000001,32.75264],[-83.687545,32.752802],[-83.687634,32.752879]]},"id":"8844c0b061fffff-13dfc2a045e7fe04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66742500000001,32.796774]},"id":"8f44c0b1c6b4113-13dff2f36450ee92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66937200000001,32.795761]},"id":"8f44c0b1c78cd13-13f6ae328fd64c33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c78cd13-13f6ae328fd64c33","8f44c0b1c6b4113-13dff2f36450ee92"]},"geometry":{"type":"LineString","coordinates":[[-83.66742500000001,32.796774],[-83.66808,32.796774],[-83.66824000000001,32.796759],[-83.66829800000001,32.79674],[-83.668356,32.796718000000006],[-83.66841600000001,32.796689],[-83.668467,32.796656],[-83.668521,32.796615],[-83.668614,32.796508],[-83.66891600000001,32.79607],[-83.669014,32.795988],[-83.669297,32.795803],[-83.66937200000001,32.795761]]},"id":"8844c0b1c7fffff-139eb068015152dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692527,32.874743]},"id":"8f44c0a206d080d-13be75aaa6784599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69762200000001,32.874769]},"id":"8f44c0a2064cc9a-13dee93a4fb04f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2064cc9a-13dee93a4fb04f35","8f44c0a206d080d-13be75aaa6784599"]},"geometry":{"type":"LineString","coordinates":[[-83.692527,32.874743],[-83.69762200000001,32.874769]]},"id":"8844c0a207fffff-13d6ef7274b35b98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65496900000001,32.843539]},"id":"8f44c0a35d06354-179ff15c6244f03d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d06354-179ff15c6244f03d","8f44c0b1b68aa54-13bfedec6cabae1f"]},"geometry":{"type":"LineString","coordinates":[[-83.65496900000001,32.843539],[-83.656377,32.841951]]},"id":"8644c0a37ffffff-139fefa4604bca6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717152,32.792803]},"id":"8f44c0b0ed630db-13bff98c08151758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71447,32.792795000000005]},"id":"8f44c0b0ec25885-13bee01849cf3080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec25885-13bee01849cf3080","8f44c0b0ed630db-13bff98c08151758"]},"geometry":{"type":"LineString","coordinates":[[-83.717152,32.792803],[-83.716734,32.792795000000005],[-83.714899,32.792783],[-83.71447,32.792795000000005]]},"id":"8844c0b0edfffff-13b63cd22025294d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68442,32.866332]},"id":"8f44c0a2284c99a-17b7897582660517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68451,32.866168]},"id":"8f44c0a2286a392-17df893d4e1d7061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2286a392-17df893d4e1d7061","8f44c0a2284c99a-17b7897582660517"]},"geometry":{"type":"LineString","coordinates":[[-83.68442,32.866332],[-83.684454,32.866298],[-83.684487,32.866249],[-83.684506,32.866194],[-83.68451,32.866168]]},"id":"8944c0a2287ffff-1797a9531a3127b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762135,32.856758]},"id":"8f44c0b54684a5b-17d5cbb9a04493d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763058,32.856859]},"id":"8f44c0b546ac794-1795e978ccd8afd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b54684a5b-17d5cbb9a04493d7","8f44c0b546ac794-1795e978ccd8afd7"]},"geometry":{"type":"LineString","coordinates":[[-83.762135,32.856758],[-83.762511,32.856837],[-83.762681,32.856868],[-83.76281,32.856882],[-83.762944,32.856873],[-83.763058,32.856859]]},"id":"8944c0b546bffff-1797fa9a5c20bf89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554623,32.80324]},"id":"8f44c0b85692286-13bfc658a92cdaf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55571110000001,32.8044634]},"id":"8f44c0b8569bb81-17b7e3b09dbabdc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85692286-13bfc658a92cdaf5","8f44c0b8569bb81-17b7e3b09dbabdc8"]},"geometry":{"type":"LineString","coordinates":[[-83.554623,32.80324],[-83.55571110000001,32.8044634]]},"id":"8644c0b87ffffff-17b7d5049e14518a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6520026,32.839474800000005]},"id":"8f44c0a34a2995a-139fd89a6f187135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65095600000001,32.838853]},"id":"8f44c0a34a2e530-139ffb28863d161d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a2e530-139ffb28863d161d","8f44c0a34a2995a-139fd89a6f187135"]},"geometry":{"type":"LineString","coordinates":[[-83.6520026,32.839474800000005],[-83.65095600000001,32.838853]]},"id":"8a44c0a34a2ffff-13dff9e174c20dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7197568,32.9038582]},"id":"8f44c0a2ea18d24-13df73300ec46a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7197232,32.9030469]},"id":"8f44c0a2ea15399-17d673450bfe5d1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2ea18d24-13df73300ec46a7b","8f44c0a2ea15399-17d673450bfe5d1f"]},"geometry":{"type":"LineString","coordinates":[[-83.7197568,32.9038582],[-83.7197611,32.903753300000005],[-83.7197232,32.9030469]]},"id":"8944c0a2ea3ffff-17d7f337df2899d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64823200000001,32.844369]},"id":"8f44c0a34371c4d-1796e1cf01f03241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649404,32.844743]},"id":"8f44c0a34361688-13fefef28806fe62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34371c4d-1796e1cf01f03241","8f44c0a34361688-13fefef28806fe62"]},"geometry":{"type":"LineString","coordinates":[[-83.64823200000001,32.844369],[-83.649404,32.844743]]},"id":"8944c0a3437ffff-1397e060cc9323d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75880000000001,32.745103]},"id":"8f44c0b2e90e6ed-17bdf3de05f25766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75883970000001,32.7473729]},"id":"8f44c0b2e82ab19-13d5d3c5370e33c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2e90e6ed-17bdf3de05f25766","8f44c0b2e82ab19-13d5d3c5370e33c3"]},"geometry":{"type":"LineString","coordinates":[[-83.75880000000001,32.745103],[-83.75883970000001,32.7473729]]},"id":"8844c0b2e9fffff-17ffd3d198c7a2fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632343,32.813101]},"id":"8f44c0bad2d915c-13bf2899a65c66dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628685,32.813186]},"id":"8f44c0ba991c0cb-13f75187e748168c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0bad2d915c-13bf2899a65c66dd","8f44c0ba991c0cb-13f75187e748168c"]},"geometry":{"type":"LineString","coordinates":[[-83.632343,32.813101],[-83.62879360000001,32.8131835],[-83.628685,32.813186]]},"id":"8844c0ba99fffff-13d7bd10ce8e9ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739464,32.905195]},"id":"8f44c0a2c201222-1796e313052d061a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739952,32.898327]},"id":"8f44c0a2ca95811-13de61e20f4b3dcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c201222-1796e313052d061a","8f44c0a2ca95811-13de61e20f4b3dcb"]},"geometry":{"type":"LineString","coordinates":[[-83.739464,32.905195],[-83.739552,32.905143],[-83.739626,32.905067],[-83.73970200000001,32.904972],[-83.739795,32.90484],[-83.739907,32.90466],[-83.739997,32.9045],[-83.740086,32.904259],[-83.740093,32.904196],[-83.74007300000001,32.904045],[-83.73999,32.903799],[-83.739906,32.90353],[-83.739862,32.903253],[-83.73984,32.90298],[-83.73983600000001,32.902704],[-83.739846,32.902461],[-83.73987000000001,32.902274000000006],[-83.739928,32.902003],[-83.739976,32.901738],[-83.74001100000001,32.900874],[-83.740046,32.899746],[-83.740032,32.899465],[-83.739976,32.899127],[-83.739948,32.898873],[-83.739945,32.898679],[-83.739952,32.898327]]},"id":"8744c0a2cffffff-13fe81e8995d7244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554557,32.846251]},"id":"8f44c0b8e2aad62-17bfe681e7131d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55385100000001,32.846839]},"id":"8f44c0b8e28ecad-179fe83b2c38ead8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2aad62-17bfe681e7131d5f","8f44c0b8e28ecad-179fe83b2c38ead8"]},"geometry":{"type":"LineString","coordinates":[[-83.554557,32.846251],[-83.55512900000001,32.846739],[-83.555012,32.847265],[-83.5543797,32.847298],[-83.55385100000001,32.846839]]},"id":"8944c0b8e2bffff-17dff64178d8b37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64853600000001,32.812697]},"id":"8f44c0b1a1241a3-13bfe11105620ac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64852300000001,32.811523]},"id":"8f44c0b1a883175-17f7e11920ff4cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1241a3-13bfe11105620ac1","8f44c0b1a883175-17f7e11920ff4cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.64853600000001,32.812697],[-83.64852300000001,32.811523]]},"id":"8944c0b1a8bffff-13d6e115105e76d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608022,32.864109]},"id":"8f44c0a320b5d5d-17d763fa486de4e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6071867,32.8648412]},"id":"8f44c0a32094b21-139fc60456ee24eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32094b21-139fc60456ee24eb","8f44c0a320b5d5d-17d763fa486de4e8"]},"geometry":{"type":"LineString","coordinates":[[-83.608022,32.864109],[-83.607442,32.864476],[-83.60727700000001,32.864587],[-83.607225,32.864671],[-83.6071867,32.8648412]]},"id":"8944c0a320bffff-139f4522a98a4047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64335200000001,32.79829]},"id":"8f44c0b1e4c5274-1797edb90902fe30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64729600000001,32.798344]},"id":"8f44c0b1e44d808-17b7e4180528ddb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e44d808-17b7e4180528ddb6","8f44c0b1e4c5274-1797edb90902fe30"]},"geometry":{"type":"LineString","coordinates":[[-83.64335200000001,32.79829],[-83.643792,32.798296],[-83.64729600000001,32.798344]]},"id":"8744c0b1effffff-17b6e8e88d4bb306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699399,32.859133]},"id":"8f44c0a2089246a-139e64e3a42f329c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70191600000001,32.859156]},"id":"8f44c0a20885228-13bedebe80dd5306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20885228-13bedebe80dd5306","8f44c0a2089246a-139e64e3a42f329c"]},"geometry":{"type":"LineString","coordinates":[[-83.699399,32.859133],[-83.699413,32.858691],[-83.699398,32.857666],[-83.69940600000001,32.857599],[-83.69943500000001,32.857529],[-83.69947900000001,32.85747],[-83.69952400000001,32.85743],[-83.69961400000001,32.857379],[-83.699729,32.857352],[-83.70052600000001,32.857354],[-83.701587,32.857363],[-83.701689,32.857374],[-83.70175300000001,32.857391],[-83.70181500000001,32.857425],[-83.70187200000001,32.857472],[-83.701931,32.857536],[-83.70196100000001,32.857599],[-83.70197800000001,32.857675],[-83.701986,32.857774],[-83.70195100000001,32.858381],[-83.70191600000001,32.859156]]},"id":"8744c0a20ffffff-139fe1c07da457c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76808000000001,32.827882]},"id":"8f44c0b724286dc-17d7fd360b20a5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76729,32.827962]},"id":"8f44c0b72401059-1795ff23c73e2737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b724286dc-17d7fd360b20a5d9","8f44c0b72401059-1795ff23c73e2737"]},"geometry":{"type":"LineString","coordinates":[[-83.76808000000001,32.827882],[-83.76787300000001,32.827891],[-83.767635,32.827917],[-83.76729,32.827962]]},"id":"8944c0b7243ffff-17f7fe2d459cdd8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73536100000001,32.894212]},"id":"8f44c0a2c102a32-13d68d1761b27968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73527890000001,32.8929713]},"id":"8f44c0a2c130b06-17bf1d4abb5ea240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c102a32-13d68d1761b27968","8f44c0a2c130b06-17bf1d4abb5ea240"]},"geometry":{"type":"LineString","coordinates":[[-83.73536100000001,32.894212],[-83.735225,32.893079],[-83.73527890000001,32.8929713]]},"id":"8944c0a2c13ffff-17bf7d445bc5929c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.750708,32.772883]},"id":"8f44c0b2a8d92aa-139fe79f8f8bb9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75639000000001,32.772485]},"id":"8f44c0b2ab06c82-1397f9c042fa9997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a8d92aa-139fe79f8f8bb9b7","8f44c0b2ab06c82-1397f9c042fa9997"]},"geometry":{"type":"LineString","coordinates":[[-83.750708,32.772883],[-83.750957,32.772582],[-83.751068,32.772487000000005],[-83.75114400000001,32.772433],[-83.751355,32.772295],[-83.75145900000001,32.772239],[-83.751689,32.772168],[-83.75223700000001,32.772056],[-83.752447,32.771994],[-83.752819,32.771877],[-83.75307500000001,32.771834000000005],[-83.75317600000001,32.771858],[-83.75326100000001,32.771922],[-83.753459,32.77223],[-83.75353100000001,32.772317],[-83.75363700000001,32.772374],[-83.7538,32.772405],[-83.754102,32.772418],[-83.75475300000001,32.772427],[-83.75507800000001,32.772421],[-83.755403,32.772429],[-83.755819,32.772429],[-83.75613200000001,32.772441],[-83.75639000000001,32.772485]]},"id":"8744c0b2affffff-179ff0f9fe2a79ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679557,32.844112]},"id":"8f44c0a26c51aab-17f69554ee366ff4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68152400000001,32.846021]},"id":"8f44c0a261100a5-139fb087890cac78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c51aab-17f69554ee366ff4","8f44c0a261100a5-139fb087890cac78"]},"geometry":{"type":"LineString","coordinates":[[-83.679557,32.844112],[-83.679626,32.844146],[-83.67972300000001,32.844223],[-83.681022,32.845489],[-83.68148000000001,32.845944],[-83.68152400000001,32.846021]]},"id":"8744c0a26ffffff-13bef2e0cd1a29d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638159,32.8340592]},"id":"8f44c0a34c5a8d1-17f7fa66a325f537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63925300000001,32.834744]},"id":"8f44c0a341a40d1-1397f7baebbb27f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a341a40d1-1397f7baebbb27f4","8f44c0a34c5a8d1-17f7fa66a325f537"]},"geometry":{"type":"LineString","coordinates":[[-83.638159,32.8340592],[-83.63925300000001,32.834744]]},"id":"8744c0a34ffffff-17bff910c549409c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76431600000001,32.859212]},"id":"8f44c0b546c0d6e-13dfc6668d65e086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650876,32.860768900000004]},"id":"8f44c0b546c9404-179dd484480ee61b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b546c9404-179dd484480ee61b","8f44c0b546c0d6e-13dfc6668d65e086"]},"geometry":{"type":"LineString","coordinates":[[-83.76431600000001,32.859212],[-83.764408,32.859313],[-83.76448900000001,32.859366],[-83.764582,32.859416],[-83.764673,32.859453],[-83.764797,32.85949],[-83.764903,32.859516],[-83.764999,32.859567000000006],[-83.765071,32.859617],[-83.765157,32.859712],[-83.765191,32.859802],[-83.765206,32.859899],[-83.765196,32.860228],[-83.765191,32.860632],[-83.76513100000001,32.860732],[-83.7650876,32.860768900000004]]},"id":"8944c0b546fffff-17ffd4cc8ac9715c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63974,32.837507]},"id":"8f44c0a34032616-17d7f68a8b4cfecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63842500000001,32.837108]},"id":"8f44c0a3418aca0-17def9c06e06b98c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3418aca0-17def9c06e06b98c","8f44c0a34032616-17d7f68a8b4cfecf"]},"geometry":{"type":"LineString","coordinates":[[-83.63974,32.837507],[-83.63842500000001,32.837108]]},"id":"8844c0a341fffff-17d7f8257226b152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68770450000001,32.9052722]},"id":"8f44c0a0511e36e-17d7a170b5b2e169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68853650000001,32.9056453]},"id":"8f44c0a0510a431-17be7f68bbe74764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0510a431-17be7f68bbe74764","8f44c0a0511e36e-17d7a170b5b2e169"]},"geometry":{"type":"LineString","coordinates":[[-83.68770450000001,32.9052722],[-83.6878573,32.9052979],[-83.687943,32.9053166],[-83.6880447,32.9053441],[-83.68817410000001,32.9054039],[-83.6882733,32.905453],[-83.68838980000001,32.9055306],[-83.68853650000001,32.9056453]]},"id":"8a44c0a0511ffff-179ef060a388cfee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66502600000001,32.878242]},"id":"8f44c0a31a63201-13d7f8cecd6e232d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31a06c8a-179ec1e14c01d906","8f44c0a31a63201-13d7f8cecd6e232d"]},"geometry":{"type":"LineString","coordinates":[[-83.66131,32.875892],[-83.66162200000001,32.876102],[-83.661958,32.876329000000005],[-83.66252300000001,32.87671],[-83.662677,32.876798],[-83.662732,32.876817],[-83.66280300000001,32.876842],[-83.66292,32.87686],[-83.66312400000001,32.876863],[-83.66346800000001,32.876842],[-83.663605,32.876851],[-83.663707,32.876874],[-83.66383300000001,32.876921],[-83.66391700000001,32.876964],[-83.663973,32.877004],[-83.66407500000001,32.877102],[-83.664585,32.877713],[-83.66502600000001,32.878242]]},"id":"8844c0a31bfffff-179efd18dea4f499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71055000000001,32.78097]},"id":"8f44c0b01483651-17de49aa4f004262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714633,32.780935]},"id":"8f44c0b0140b985-17b67fb264036002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0140b985-17b67fb264036002","8f44c0b01483651-17de49aa4f004262"]},"geometry":{"type":"LineString","coordinates":[[-83.71055000000001,32.78097],[-83.714262,32.781031],[-83.714337,32.781028],[-83.714455,32.781003000000005],[-83.714633,32.780935]]},"id":"8844c0b015fffff-17df44a9e2bbc0fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573564,32.85642]},"id":"8f44c0b8806a48b-17ff981a85b3e5cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574978,32.856454]},"id":"8f44c0b88a9a509-1797d4a6c3f0d603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a9a509-1797d4a6c3f0d603","8f44c0b8806a48b-17ff981a85b3e5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.573564,32.85642],[-83.574978,32.856454]]},"id":"8744c0b88ffffff-179fb660a2c14acb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6521781,32.8139533]},"id":"8f44c0b1a8eb548-17d6d82cbebe778c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65324100000001,32.812959]},"id":"8f44c0b1a853b2b-13f7f59468d9c91a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8eb548-17d6d82cbebe778c","8f44c0b1a853b2b-13f7f59468d9c91a"]},"geometry":{"type":"LineString","coordinates":[[-83.6521781,32.8139533],[-83.652198,32.81337],[-83.65220400000001,32.813125],[-83.65221700000001,32.813021],[-83.652248,32.812986],[-83.652286,32.812956],[-83.65235,32.812936],[-83.65324100000001,32.812959]]},"id":"8844c0b1a9fffff-13fff775d4b64d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696853,32.849801]},"id":"8f44c0a2479a2ca-17d7eb1ae9ed44cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696962,32.847155]},"id":"8f44c0a247b672a-17dfead6c056a015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a247b672a-17dfead6c056a015","8f44c0a2479a2ca-17d7eb1ae9ed44cb"]},"geometry":{"type":"LineString","coordinates":[[-83.696853,32.849801],[-83.6969,32.848506],[-83.696938,32.847493],[-83.696962,32.847155]]},"id":"8944c0a247bffff-139efafc2a1bfb39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591322,32.871577]},"id":"8f44c0b89063b06-13ffecbfc37798c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59367200000001,32.872309]},"id":"8f44c0b89a9d076-13df6703055b5937"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89a9d076-13df6703055b5937","8f44c0b89063b06-13ffecbfc37798c7"]},"geometry":{"type":"LineString","coordinates":[[-83.591322,32.871577],[-83.59249700000001,32.871608],[-83.59268700000001,32.871616],[-83.592833,32.87163],[-83.592954,32.871671],[-83.593064,32.871715],[-83.59316100000001,32.871782],[-83.59326,32.871876],[-83.59367200000001,32.872309]]},"id":"8744c0b89ffffff-13f7f9ab21d81cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63214400000001,32.841313]},"id":"8f44c0a344eb21b-139fa91606da843b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633402,32.842581]},"id":"8f44c0a34784603-13b72603c6939232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344eb21b-139fa91606da843b","8f44c0a34784603-13b72603c6939232"]},"geometry":{"type":"LineString","coordinates":[[-83.63214400000001,32.841313],[-83.63258400000001,32.841644],[-83.6329,32.841894],[-83.632987,32.841999],[-83.63306200000001,32.8421],[-83.633336,32.842532],[-83.633402,32.842581]]},"id":"8744c0a34ffffff-139ff76fdad990ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660151,32.823928]},"id":"8f44c0b1bd1b551-17bfc4b5ae6ffdbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66009600000001,32.822972]},"id":"8f44c0b1bd1165a-13d7c4d809f7c333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd1165a-13d7c4d809f7c333","8f44c0b1bd1b551-17bfc4b5ae6ffdbd"]},"geometry":{"type":"LineString","coordinates":[[-83.660151,32.823928],[-83.66015300000001,32.823307],[-83.660144,32.82305],[-83.66012900000001,32.823006],[-83.66009600000001,32.822972]]},"id":"8844c0b1bdfffff-17ffd4b74e1a89d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674384,32.856128000000005]},"id":"8f44c0a266a3bae-17dea1f6084e2c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674113,32.857205]},"id":"8f44c0a26681270-17ffa29f64f23b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266a3bae-17dea1f6084e2c4e","8f44c0a26681270-17ffa29f64f23b39"]},"geometry":{"type":"LineString","coordinates":[[-83.674384,32.856128000000005],[-83.674113,32.857205]]},"id":"8944c0a266bffff-179eb24ab25dbcdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65024700000001,32.848529]},"id":"8f44c0a35c980c6-13befce3ae57488f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649513,32.849283]},"id":"8f44c0a35530d5e-1397feae6ae1da4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c980c6-13befce3ae57488f","8f44c0a35530d5e-1397feae6ae1da4e"]},"geometry":{"type":"LineString","coordinates":[[-83.65024700000001,32.848529],[-83.649513,32.849283]]},"id":"8744c0a35ffffff-13b6ddc90288f058"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707122,32.897072]},"id":"8f44c0a2ece158c-13be5208cfe91d50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711769,32.897154]},"id":"8f44c0a2e89e6db-13f746b06dbd41b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ece158c-13be5208cfe91d50","8f44c0a2e89e6db-13f746b06dbd41b0"]},"geometry":{"type":"LineString","coordinates":[[-83.707122,32.897072],[-83.711769,32.897154]]},"id":"8744c0a2effffff-13d7ec5c9a5296a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71921,32.926032]},"id":"8f44c0a28693943-17f63485c2b68014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719008,32.926276]},"id":"8f44c0a28693775-179eb504023d87ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28693775-179eb504023d87ea","8f44c0a28693943-17f63485c2b68014"]},"geometry":{"type":"LineString","coordinates":[[-83.71921,32.926032],[-83.719008,32.926276]]},"id":"8b44c0a28693fff-17be74c4e957e771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662451,32.847917]},"id":"8f44c0a35811684-13bebf182e3f30c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66398000000001,32.847924]},"id":"8f44c0a35801046-13d6bb5c81947a9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35811684-13bebf182e3f30c0","8f44c0a35801046-13d6bb5c81947a9f"]},"geometry":{"type":"LineString","coordinates":[[-83.662451,32.847917],[-83.66398000000001,32.847924]]},"id":"8944c0a3583ffff-13befd3a5dfcd982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663983,32.847603]},"id":"8f44c0a3580562b-17f7fb5aa462438f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66538200000001,32.847624]},"id":"8f44c0a3582d0e1-1797b7f0494292fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3582d0e1-1797b7f0494292fe","8f44c0a3580562b-17f7fb5aa462438f"]},"geometry":{"type":"LineString","coordinates":[[-83.663983,32.847603],[-83.664771,32.847606],[-83.665271,32.847617],[-83.66538200000001,32.847624]]},"id":"8944c0a3583ffff-17ffb9a562e0bf4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663005,32.841881]},"id":"8f44c0b1b66e825-13ffbdbde4f665c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663055,32.840299]},"id":"8f44c0b1b74a864-17b6fd9ea7cb8843"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b66e825-13ffbdbde4f665c6","8f44c0b1b74a864-17b6fd9ea7cb8843"]},"geometry":{"type":"LineString","coordinates":[[-83.663005,32.841881],[-83.663055,32.840299]]},"id":"8844c0b1b7fffff-1797fdae4f6f6155"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67115700000001,32.836005]},"id":"8f44c0b1ba89cf6-13b7a9d6e2282fde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67236000000001,32.83607]},"id":"8f44c0b1baf022d-13dfe6e7061681c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba89cf6-13b7a9d6e2282fde","8f44c0b1baf022d-13dfe6e7061681c4"]},"geometry":{"type":"LineString","coordinates":[[-83.67115700000001,32.836005],[-83.67136400000001,32.836039],[-83.67179900000001,32.836056],[-83.67236000000001,32.83607]]},"id":"8844c0b1bbfffff-13d7f85fa5838278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61268000000001,32.845562]},"id":"8f44c0a36734d14-13ff789b0575e1a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612702,32.845041]},"id":"8f44c0a3646da10-13b7b88d4766f5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3646da10-13b7b88d4766f5e5","8f44c0a36734d14-13ff789b0575e1a3"]},"geometry":{"type":"LineString","coordinates":[[-83.61268000000001,32.845562],[-83.612699,32.84537],[-83.61270300000001,32.845264],[-83.612702,32.845041]]},"id":"8744c0a36ffffff-13dfb89023f12a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722109,32.830605000000006]},"id":"8f44c0b0bca6b0b-17fe2d71ec2cdbc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7212102,32.8302235]},"id":"8f44c0b0bcb4976-179fbfa3ab5e0bce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bca6b0b-17fe2d71ec2cdbc9","8f44c0b0bcb4976-179fbfa3ab5e0bce"]},"geometry":{"type":"LineString","coordinates":[[-83.722109,32.830605000000006],[-83.72194900000001,32.830587],[-83.72185,32.830571],[-83.72166800000001,32.830509],[-83.721495,32.830429],[-83.7212102,32.8302235]]},"id":"8944c0b0bcbffff-17b62e976a473e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714886,32.838517]},"id":"8f44c0b0b4962c8-13df3f144198a18b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71523300000001,32.836751]},"id":"8f44c0a2496865d-17ff7e3b61047a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2496865d-17ff7e3b61047a94","8f44c0b0b4962c8-13df3f144198a18b"]},"geometry":{"type":"LineString","coordinates":[[-83.714886,32.838517],[-83.71523300000001,32.836751]]},"id":"8844c0a249fffff-17b77ea7d3a79ab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713632,32.837786]},"id":"8f44c0a2495905e-17964224085ad68f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714518,32.836551]},"id":"8f44c0a249452c1-17fe7ffa43e3b3a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2495905e-17964224085ad68f","8f44c0a249452c1-17fe7ffa43e3b3a3"]},"geometry":{"type":"LineString","coordinates":[[-83.713632,32.837786],[-83.714194,32.837207],[-83.71424800000001,32.837162],[-83.71427,32.837117],[-83.71428,32.83708],[-83.714335,32.836962],[-83.71436800000001,32.836844],[-83.714411,32.836717],[-83.714518,32.836551]]},"id":"8944c0a2497ffff-179770ef032c1bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76290900000001,32.920668]},"id":"8f44c0b5ad99623-13ddc9d5edcaeb2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763653,32.919885]},"id":"8f44c0b5ad8e88c-17f5e804e496b212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5ad8e88c-17f5e804e496b212","8f44c0b5ad99623-13ddc9d5edcaeb2d"]},"geometry":{"type":"LineString","coordinates":[[-83.76290900000001,32.920668],[-83.763171,32.920499],[-83.763371,32.920341],[-83.763439,32.92027],[-83.763491,32.920201],[-83.7635207,32.9201568],[-83.763602,32.920036],[-83.763653,32.919885]]},"id":"8944c0b5adbffff-1395e8cc7d8725d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6021504,32.849060200000004]},"id":"8f44c0b8da14ac3-1397f25007169c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603892,32.848444]},"id":"8f44c0b8da20c68-1397ce0f8a88d4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8da14ac3-1397f25007169c5e","8f44c0b8da20c68-1397ce0f8a88d4ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6021504,32.849060200000004],[-83.60239100000001,32.848982],[-83.602587,32.848906],[-83.602694,32.848872],[-83.603346,32.848619],[-83.60352900000001,32.848557],[-83.603892,32.848444]]},"id":"8944c0b8da3ffff-13d75030b3e1c3fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552497,32.84115]},"id":"8f44c0b8e0c18d4-17b7cb896adae0d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0c18d4-17b7cb896adae0d6","8f44c0b8e0c5459-1797dbbdac10390b"]},"geometry":{"type":"LineString","coordinates":[[-83.5524134,32.8408597],[-83.552487,32.8409823],[-83.552497,32.84115]]},"id":"8a44c0b8e0c7fff-17dfeb98814e16c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64154900000001,32.82329]},"id":"8f44c0b1a63172d-179ef21feb35e8fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642274,32.822404]},"id":"8f44c0b1a719666-13f6f05ac235da9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a719666-13f6f05ac235da9e","8f44c0b1a63172d-179ef21feb35e8fb"]},"geometry":{"type":"LineString","coordinates":[[-83.64154900000001,32.82329],[-83.642274,32.822404]]},"id":"8844c0b1a7fffff-1397f13d59951b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701347,32.835264]},"id":"8f44c0a24c35333-13de60222de90cd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69947,32.832928]},"id":"8f44c0a24da0dab-13b664b740cb7ac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c35333-13de60222de90cd5","8f44c0a24da0dab-13b664b740cb7ac3"]},"geometry":{"type":"LineString","coordinates":[[-83.701347,32.835264],[-83.700778,32.83457],[-83.70027900000001,32.833961],[-83.69994200000001,32.83355],[-83.699894,32.833495],[-83.69981800000001,32.83341],[-83.69974,32.833335000000005],[-83.69947,32.832928]]},"id":"8844c0a24dfffff-179762744dc0b7b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615036,32.842658]},"id":"8f44c0a360a4932-13f772da8d512171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614658,32.843119]},"id":"8f44c0a360a0d93-179773c6cbfa11f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360a0d93-179773c6cbfa11f6","8f44c0a360a4932-13f772da8d512171"]},"geometry":{"type":"LineString","coordinates":[[-83.615036,32.842658],[-83.614658,32.843119]]},"id":"8844c0a361fffff-13f77350a3bc0faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65285,32.756993]},"id":"8f44c0b10b29190-13d6f688c8f2ec9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65285700000001,32.756605]},"id":"8f44c0b10b2d403-13def684647d16e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b29190-13d6f688c8f2ec9d","8f44c0b10b2d403-13def684647d16e6"]},"geometry":{"type":"LineString","coordinates":[[-83.65285,32.756993],[-83.65285700000001,32.756605]]},"id":"8a44c0b10b2ffff-13d7f68695e0a295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.753462,32.876759]},"id":"8f44c0b52b4e55b-17b7e0e64af7ac05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7526526,32.878265]},"id":"8f44c0b52a62718-13d7e2e023df63d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a62718-13d7e2e023df63d1","8f44c0b52b4e55b-17b7e0e64af7ac05"]},"geometry":{"type":"LineString","coordinates":[[-83.753462,32.876759],[-83.753399,32.876958],[-83.753332,32.8771],[-83.753274,32.877198],[-83.753192,32.877313],[-83.753037,32.877481],[-83.752896,32.877626],[-83.75282800000001,32.877708000000005],[-83.75275,32.877836],[-83.752722,32.877891000000005],[-83.752689,32.877978],[-83.752663,32.878123],[-83.7526526,32.878265]]},"id":"8844c0b52bfffff-13f7e1f602e96ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68536,32.87923]},"id":"8f44c0a23c95172-17bec72a04fa57a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688479,32.879851]},"id":"8f44c0a23c1aa1e-17b6ff8ca871c993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23c1aa1e-17b6ff8ca871c993","8f44c0a23c95172-17bec72a04fa57a3"]},"geometry":{"type":"LineString","coordinates":[[-83.68536,32.87923],[-83.685573,32.879421],[-83.685703,32.879528],[-83.685798,32.879585],[-83.685934,32.879635],[-83.686091,32.879666],[-83.68629700000001,32.879678000000006],[-83.688089,32.879721],[-83.68826100000001,32.879744],[-83.688479,32.879851]]},"id":"8844c0a23dfffff-17b6b37788b41d26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68169900000001,32.750902]},"id":"8f44c0b0644a905-13f7d01a2b7da762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6818143,32.7501807]},"id":"8f44c0b06441111-139effd21cecb03a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0644a905-13f7d01a2b7da762","8f44c0b06441111-139effd21cecb03a"]},"geometry":{"type":"LineString","coordinates":[[-83.68169900000001,32.750902],[-83.6818143,32.7501807]]},"id":"8944c0b0647ffff-1396eff61f90a3f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763165,32.819893]},"id":"8f44c0b0d2050f5-13d5e935eb705115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7619434,32.8218125]},"id":"8f44c0b0d2f5a2e-1395dc316846f496"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d2f5a2e-1395dc316846f496","8f44c0b0d2050f5-13d5e935eb705115"]},"geometry":{"type":"LineString","coordinates":[[-83.763165,32.819893],[-83.76314400000001,32.820079],[-83.76312,32.820203],[-83.763081,32.820301],[-83.763012,32.820425],[-83.762994,32.820452],[-83.762777,32.820672],[-83.76229000000001,32.821196],[-83.762209,32.821302],[-83.762136,32.821422000000005],[-83.76205200000001,32.821579],[-83.7619434,32.8218125]]},"id":"8844c0b0d3fffff-17b5ea9a0dffabd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69923800000001,32.740698]},"id":"8f44c0b0459c09e-13fe65484a9ed874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70167400000001,32.74058]},"id":"8f44c0b045a914a-13bedf55c570cc22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0459c09e-13fe65484a9ed874","8f44c0b045a914a-13bedf55c570cc22"]},"geometry":{"type":"LineString","coordinates":[[-83.69923800000001,32.740698],[-83.70016000000001,32.740713],[-83.70113500000001,32.740716],[-83.701268,32.740712],[-83.701356,32.740696],[-83.70150100000001,32.740656],[-83.70167400000001,32.74058]]},"id":"8944c0b045bffff-13fe7248cbc79242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706412,32.862298]},"id":"8f44c0a20bb5966-13de53c48cffd332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7062829,32.8616219]},"id":"8f44c0a2085840a-13b7f41537b8a71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20bb5966-13de53c48cffd332","8f44c0a2085840a-13b7f41537b8a71e"]},"geometry":{"type":"LineString","coordinates":[[-83.706412,32.862298],[-83.70634100000001,32.861933],[-83.70631,32.861753],[-83.7062829,32.8616219]]},"id":"8844c0a209fffff-1396f3ece8e552c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678185,32.826875]},"id":"8f44c0b194064e6-17def8ae6d4c2575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679097,32.826271000000006]},"id":"8f44c0b19422bb2-13f7f6746732b797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194064e6-17def8ae6d4c2575","8f44c0b19422bb2-13f7f6746732b797"]},"geometry":{"type":"LineString","coordinates":[[-83.678185,32.826875],[-83.67845600000001,32.826681],[-83.678768,32.826464],[-83.679097,32.826271000000006]]},"id":"8944c0b1943ffff-179ed795364c6358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64754900000001,32.819569]},"id":"8f44c0b1a052773-1396e379e86135d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64757200000001,32.818801]},"id":"8f44c0b1a056db0-13b6e36b8e19dfce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a052773-1396e379e86135d5","8f44c0b1a056db0-13b6e36b8e19dfce"]},"geometry":{"type":"LineString","coordinates":[[-83.64754900000001,32.819569],[-83.647575,32.819491],[-83.647563,32.819282],[-83.6475685,32.8189883],[-83.64757200000001,32.818801]]},"id":"8844c0b1a1fffff-1397e36e7a74e7f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66540300000001,32.841039]},"id":"8f44c0b1b284119-17f7f7e3255955ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665408,32.840345]},"id":"8f44c0b1b2b5b59-17bfb7e000a24fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b284119-17f7f7e3255955ff","8f44c0b1b2b5b59-17bfb7e000a24fec"]},"geometry":{"type":"LineString","coordinates":[[-83.66540300000001,32.841039],[-83.665408,32.840345]]},"id":"8944c0b1b2bffff-179eb7e198286749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69548010000001,32.7408117]},"id":"8f44c0b06950a73-13bf7e74fdc05599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693899,32.737944]},"id":"8f44c0b069313ad-13bf7251254861e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06950a73-13bf7e74fdc05599","8f44c0b069313ad-13bf7251254861e0"]},"geometry":{"type":"LineString","coordinates":[[-83.69548010000001,32.7408117],[-83.69539300000001,32.739539],[-83.695392,32.739333],[-83.695322,32.739117],[-83.695108,32.738805],[-83.69477400000001,32.738493000000005],[-83.69440800000001,32.738168],[-83.69421700000001,32.738011],[-83.69405,32.737937],[-83.693899,32.737944]]},"id":"8844c0b069fffff-17b6ef9186811657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613443,32.855643]},"id":"8f44c0a32982cd6-139ff6be2cc951cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32982cd6-139ff6be2cc951cb","8f44c0a329983ad-17bf36d24b24cf93"]},"geometry":{"type":"LineString","coordinates":[[-83.613443,32.855643],[-83.61341080000001,32.856720100000004]]},"id":"8944c0a329bffff-17ffb6c83b95691b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61602500000001,32.848912]},"id":"8f44c0a3676228e-13bf3070647dff20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61432810000001,32.8489299]},"id":"8f44c0a3670925c-13b73494f692038f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3676228e-13bf3070647dff20","8f44c0a3670925c-13b73494f692038f"]},"geometry":{"type":"LineString","coordinates":[[-83.61602500000001,32.848912],[-83.61514100000001,32.848923],[-83.615035,32.848925],[-83.61432810000001,32.8489299]]},"id":"8944c0a3677ffff-13b77282a4798908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62572150000001,32.8308206]},"id":"8f44c0ba92a8a23-17fff8c4170c67de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62629700000001,32.8309603]},"id":"8f44c0ba921a1b4-17d7375c6d66f5b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba921a1b4-17d7375c6d66f5b6","8f44c0ba92a8a23-17fff8c4170c67de"]},"geometry":{"type":"LineString","coordinates":[[-83.62572150000001,32.8308206],[-83.6258784,32.8308903],[-83.62601090000001,32.8309347],[-83.6261168,32.8309876],[-83.62629700000001,32.8309603]]},"id":"8844c0ba93fffff-17bfb812c6f20a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65021700000001,32.797086]},"id":"8f44c0b1e0aa620-17b6dcf665e159db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65025,32.795845]},"id":"8f44c0b1e0a0048-139ffce1cd1e128d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0aa620-17b6dcf665e159db","8f44c0b1e0a0048-139ffce1cd1e128d"]},"geometry":{"type":"LineString","coordinates":[[-83.65021700000001,32.797086],[-83.65022900000001,32.79694],[-83.65025,32.795845]]},"id":"8944c0b1e0bffff-139fdce98e5908a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7184191,32.8542572]},"id":"8f44c0a25ce6670-17b6f67414cfb26c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719155,32.855352100000005]},"id":"8f44c0a25cee218-13f734a822cc985d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25ce6670-17b6f67414cfb26c","8f44c0a25cee218-13f734a822cc985d"]},"geometry":{"type":"LineString","coordinates":[[-83.7184191,32.8542572],[-83.7185346,32.854281],[-83.71874050000001,32.8545649],[-83.7188823,32.854911],[-83.7190054,32.855132000000005],[-83.719155,32.855352100000005]]},"id":"8944c0a25cfffff-13f7b57ccadc3981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56797300000001,32.832532]},"id":"8f44c0b8c40c171-13bfa5c0e46ec8c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564071,32.831074]},"id":"8f44c0b8c59ba70-179fef47aba26ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8c40c171-13bfa5c0e46ec8c9","8f44c0b8c59ba70-179fef47aba26ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.56797300000001,32.832532],[-83.567853,32.83251],[-83.56607600000001,32.831992],[-83.56584000000001,32.83196],[-83.565804,32.831955],[-83.565692,32.831947],[-83.56516500000001,32.831929],[-83.564554,32.831902],[-83.56419600000001,32.831880000000005],[-83.564074,32.831814],[-83.56402200000001,32.831755],[-83.564001,32.831697000000005],[-83.564006,32.831581],[-83.564036,32.83137],[-83.564071,32.831074]]},"id":"8844c0b8c5fffff-13dfab46a298c2de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75572000000001,32.893484]},"id":"8f44c0b5308c2b2-17ffdb6303dbf680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5308c2b2-17ffdb6303dbf680","8f44c0b5364c283-13fdf951ab796236"]},"geometry":{"type":"LineString","coordinates":[[-83.75572000000001,32.893484],[-83.755674,32.893611],[-83.755649,32.893712],[-83.75564100000001,32.893862],[-83.75565300000001,32.894123],[-83.75569300000001,32.894505],[-83.75574,32.895026],[-83.755781,32.895366],[-83.755941,32.896952],[-83.755967,32.89725],[-83.756074,32.898305],[-83.75636300000001,32.901313],[-83.756382,32.901421],[-83.75641200000001,32.90155],[-83.756437,32.901615],[-83.756484,32.901716],[-83.756567,32.901857]]},"id":"8744c0b53ffffff-13bdfaaa7ccf9a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.756009,32.893071]},"id":"8f44c0b530aa34b-17fdfaae6f7ab17d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5308c2b2-17ffdb6303dbf680","8f44c0b530aa34b-17fdfaae6f7ab17d"]},"geometry":{"type":"LineString","coordinates":[[-83.75572000000001,32.893484],[-83.755896,32.89324],[-83.756009,32.893071]]},"id":"8944c0b530bffff-17fffb079e9e38e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704683,32.870226]},"id":"8f44c0a20303ad4-17b757fd20bb02ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704959,32.869259]},"id":"8f44c0a20304b1e-17d6f750a420ce84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20304b1e-17d6f750a420ce84","8f44c0a20303ad4-17b757fd20bb02ab"]},"geometry":{"type":"LineString","coordinates":[[-83.704683,32.870226],[-83.70473100000001,32.870081],[-83.704897,32.869524000000006],[-83.704959,32.869259]]},"id":"8a44c0a20307fff-179677a22b8b9434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653588,32.756996]},"id":"8f44c0b154daae2-13d6d4bb8878f7e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653591,32.756543]},"id":"8f44c0b154de045-13b7f4b9a6308a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154de045-13b7f4b9a6308a5d","8f44c0b154daae2-13d6d4bb8878f7e8"]},"geometry":{"type":"LineString","coordinates":[[-83.653588,32.756996],[-83.653591,32.756543]]},"id":"8a44c0b154dffff-13b6f4ba9b46b773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615125,32.851089]},"id":"8f44c0a36666db4-17ffb2a2e851eaf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61513400000001,32.852544]},"id":"8f44c0a36640b24-139f329d4827c753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36666db4-17ffb2a2e851eaf9","8f44c0a36640b24-139f329d4827c753"]},"geometry":{"type":"LineString","coordinates":[[-83.615125,32.851089],[-83.61513400000001,32.852544]]},"id":"8944c0a3667ffff-13d772a01fb2c5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66764400000001,32.800418]},"id":"8f44c0b18d20471-17d7f26a86c446a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667727,32.800365]},"id":"8f44c0b18d20183-17b6b236ab33fa32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d20183-17b6b236ab33fa32","8f44c0b18d20471-17d7f26a86c446a1"]},"geometry":{"type":"LineString","coordinates":[[-83.66764400000001,32.800418],[-83.66757600000001,32.800355],[-83.667231,32.800063],[-83.667156,32.800026],[-83.66713100000001,32.800008000000005],[-83.667111,32.799976],[-83.667105,32.799948],[-83.667107,32.799925],[-83.66711600000001,32.799903],[-83.667141,32.799884],[-83.667192,32.799872],[-83.66722100000001,32.799872],[-83.667246,32.799883],[-83.66736900000001,32.800029],[-83.667471,32.800117],[-83.667727,32.800365]]},"id":"8944c0b18d3ffff-139ef3079d6c0791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74805,32.834887]},"id":"8f44c0b0909ecd9-13fdee1cc8cd7e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.753905,32.835112]},"id":"8f44c0b09054d62-13fddfd1681a4993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b0909ecd9-13fdee1cc8cd7e66","8f44c0b09054d62-13fddfd1681a4993"]},"geometry":{"type":"LineString","coordinates":[[-83.74805,32.834887],[-83.74818,32.835009],[-83.74856600000001,32.835397],[-83.748689,32.83549],[-83.748726,32.83551],[-83.74880300000001,32.835535],[-83.74893300000001,32.835545],[-83.75045,32.835586],[-83.750516,32.835582],[-83.750552,32.835571],[-83.75057500000001,32.835526],[-83.750585,32.835442],[-83.75058800000001,32.835153000000005],[-83.750597,32.835105],[-83.75063200000001,32.835062],[-83.750684,32.835032000000005],[-83.750754,32.835023],[-83.750934,32.835019],[-83.75131900000001,32.83503],[-83.75151000000001,32.835042],[-83.753388,32.835092],[-83.753905,32.835112]]},"id":"8844c0b091fffff-13dfe7462585cc39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575308,32.838447]},"id":"8f44c0b8c745931-139ff3d885daa528"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574742,32.838350000000005]},"id":"8f44c0b8c744090-13f7d53a401bf8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c745931-139ff3d885daa528","8f44c0b8c744090-13f7d53a401bf8c8"]},"geometry":{"type":"LineString","coordinates":[[-83.575308,32.838447],[-83.574939,32.838355],[-83.574742,32.838350000000005]]},"id":"8a44c0b8c747fff-13f7d4883d09e01d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71360100000001,32.858789]},"id":"8f44c0a25406176-13d762376e55e85b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711426,32.860849]},"id":"8f44c0a2548d432-17dee786c94523f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25406176-13d762376e55e85b","8f44c0a2548d432-17dee786c94523f9"]},"geometry":{"type":"LineString","coordinates":[[-83.71360100000001,32.858789],[-83.71341600000001,32.85886],[-83.71305000000001,32.859028],[-83.71288700000001,32.85913],[-83.712748,32.859254],[-83.71265100000001,32.859392],[-83.71258300000001,32.859524],[-83.71254900000001,32.859627],[-83.71246500000001,32.859941],[-83.712373,32.860169],[-83.71231200000001,32.86027],[-83.712169,32.860419],[-83.711949,32.860538000000005],[-83.711724,32.860638],[-83.711571,32.86074],[-83.711426,32.860849]]},"id":"8844c0a255fffff-17bf64e76a072db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718322,32.852617]},"id":"8f44c0a25c02684-13b7b6b0ca1d63a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71777300000001,32.851205]},"id":"8f44c0a25c32d8d-13d73807ef272f04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25c32d8d-13d73807ef272f04","8f44c0a25c02684-13b7b6b0ca1d63a7"]},"geometry":{"type":"LineString","coordinates":[[-83.718322,32.852617],[-83.718084,32.852719],[-83.717568,32.852973],[-83.71735000000001,32.853053],[-83.717185,32.853108],[-83.71705200000001,32.853144],[-83.71690000000001,32.853174],[-83.71672000000001,32.853192],[-83.71654000000001,32.853197],[-83.716323,32.853189],[-83.716115,32.853173000000005],[-83.715918,32.853144],[-83.71570100000001,32.853096],[-83.715541,32.853039],[-83.715396,32.85297],[-83.71525600000001,32.852896],[-83.715078,32.852755],[-83.715027,32.852696],[-83.714939,32.852527],[-83.714898,32.852373],[-83.71489700000001,32.852234],[-83.71490800000001,32.852089],[-83.71493500000001,32.851996],[-83.715013,32.851878],[-83.715075,32.851819],[-83.715154,32.85176],[-83.715238,32.851719],[-83.715275,32.851703],[-83.71539100000001,32.851652],[-83.71555500000001,32.851599],[-83.71577900000001,32.851556],[-83.71592600000001,32.851543],[-83.71614000000001,32.85154],[-83.716322,32.851535000000005],[-83.71644400000001,32.851517],[-83.716678,32.851464],[-83.716993,32.851374],[-83.71723300000001,32.851318],[-83.71765500000001,32.851239],[-83.71777300000001,32.851205]]},"id":"8844c0a25dfffff-13fe3b8900972105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658945,32.844437]},"id":"8f44c0b1b6cbcc8-17bfe7a76b9f724d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660897,32.844324]},"id":"8f44c0a359b19a3-17f6c2e365bee153"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6cbcc8-17bfe7a76b9f724d","8f44c0a359b19a3-17f6c2e365bee153"]},"geometry":{"type":"LineString","coordinates":[[-83.658945,32.844437],[-83.659676,32.844399],[-83.660897,32.844324]]},"id":"8744c0a35ffffff-179ff54552465e2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654318,32.832726]},"id":"8f44c0b1b41138b-13b7d2f34e357116"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65432100000001,32.831289000000005]},"id":"8f44c0b1b432863-17b7f2f16a76610a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b432863-17b7f2f16a76610a","8f44c0b1b41138b-13b7d2f34e357116"]},"geometry":{"type":"LineString","coordinates":[[-83.654318,32.832726],[-83.65432100000001,32.831289000000005]]},"id":"8944c0b1b43ffff-13f6f2f25408c5b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709367,32.794843]},"id":"8f44c0b0ec82015-17beec8da4f76b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71171500000001,32.794047]},"id":"8f44c0b0ec1069e-17b766d22ee6dc2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec1069e-17b766d22ee6dc2c","8f44c0b0ec82015-17beec8da4f76b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.709367,32.794843],[-83.709411,32.794629],[-83.70944700000001,32.794306],[-83.709455,32.794072],[-83.70945850000001,32.793989700000004],[-83.70956000000001,32.793992],[-83.709629,32.793999],[-83.70979600000001,32.794007],[-83.71171500000001,32.794047]]},"id":"8844c0b0edfffff-17fe5a5b478febb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630857,32.82013]},"id":"8f44c0ba9ba02d2-17f74c3a6cff4d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6329089,32.8213729]},"id":"8f44c0ba9b19511-17ff1737fe62a276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9ba02d2-17f74c3a6cff4d4c","8f44c0ba9b19511-17ff1737fe62a276"]},"geometry":{"type":"LineString","coordinates":[[-83.630857,32.82013],[-83.6329089,32.8213729]]},"id":"8844c0ba9bfffff-17ffb9b933038c47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74453150000001,32.9276623]},"id":"8f44c0a29c74265-13fdf6b3d99fd744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.742473,32.9263763]},"id":"8f44c0a29c043b0-17ddfbba676ad475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c74265-13fdf6b3d99fd744","8f44c0a29c043b0-17ddfbba676ad475"]},"geometry":{"type":"LineString","coordinates":[[-83.74453150000001,32.9276623],[-83.742473,32.9263763]]},"id":"8844c0a29dfffff-13dff9372928d405"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64446600000001,32.824013]},"id":"8f44c0b1a758d60-17f6eb00c7022bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64545700000001,32.824624]},"id":"8f44c0b1a74a245-17dee8956c398b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a74a245-17dee8956c398b64","8f44c0b1a758d60-17f6eb00c7022bd6"]},"geometry":{"type":"LineString","coordinates":[[-83.64446600000001,32.824013],[-83.64545700000001,32.824624]]},"id":"8944c0b1a77ffff-179ff9cb12f8d293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70909900000001,32.860286]},"id":"8f44c0a254930c0-17fecd3528e4e10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708866,32.8589257]},"id":"8f44c0a20949cd4-139eddc6c0b818f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20949cd4-139eddc6c0b818f5","8f44c0a254930c0-17fecd3528e4e10c"]},"geometry":{"type":"LineString","coordinates":[[-83.70909900000001,32.860286],[-83.70890200000001,32.859788],[-83.70886800000001,32.859586],[-83.708866,32.8589257]]},"id":"8844c0a209fffff-17df4da4968ca521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679799,32.850084]},"id":"8f44c0a260a84ce-179694bda93a88a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67825300000001,32.851484]},"id":"8f44c0a2672698b-13f79883e20f848b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2672698b-13f79883e20f848b","8f44c0a260a84ce-179694bda93a88a1"]},"geometry":{"type":"LineString","coordinates":[[-83.679799,32.850084],[-83.67970600000001,32.850158],[-83.67947600000001,32.850372],[-83.679282,32.850544],[-83.67911000000001,32.850706],[-83.67894600000001,32.850852],[-83.678489,32.851273],[-83.67825300000001,32.851484]]},"id":"8844c0a261fffff-17bef6a1bed88ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662011,32.783921]},"id":"8f44c0b1121b709-13fee02b29224f93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665107,32.782288]},"id":"8f44c0b1135e568-1396b89c2f01a01e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1121b709-13fee02b29224f93","8f44c0b1135e568-1396b89c2f01a01e"]},"geometry":{"type":"LineString","coordinates":[[-83.662011,32.783921],[-83.662456,32.783932],[-83.662542,32.783926],[-83.66262,32.783907],[-83.662693,32.783873],[-83.662783,32.783817],[-83.66438600000001,32.782745000000006],[-83.664913,32.7824],[-83.665107,32.782288]]},"id":"8844c0b113fffff-13d7fc4af2c68c17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658961,32.783417]},"id":"8f44c0b1128261e-13d7e79d6a4f9ff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66201000000001,32.783454]},"id":"8f44c0b112184c9-13dec02bc92daddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112184c9-13dec02bc92daddc","8f44c0b1128261e-13d7e79d6a4f9ff3"]},"geometry":{"type":"LineString","coordinates":[[-83.658961,32.783417],[-83.660059,32.783431],[-83.661034,32.783437],[-83.66201000000001,32.783454]]},"id":"8844c0b113fffff-13ded3e49d8dedb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710898,32.899856]},"id":"8f44c0a2e11e522-179e48d0ce568848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7106947,32.8992032]},"id":"8f44c0a2e110462-17f6494fd2dccdd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e110462-17f6494fd2dccdd2","8f44c0a2e11e522-179e48d0ce568848"]},"geometry":{"type":"LineString","coordinates":[[-83.710898,32.899856],[-83.7108829,32.8997929],[-83.7106947,32.8992032]]},"id":"8944c0a2e13ffff-17bfe90f0babb3f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684925,32.873573]},"id":"8f44c0a22ae350e-17dfa839ee7017c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685024,32.875338]},"id":"8f44c0a22ac872a-13bec7fc015f65de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ac872a-13bec7fc015f65de","8f44c0a22ae350e-17dfa839ee7017c1"]},"geometry":{"type":"LineString","coordinates":[[-83.684925,32.873573],[-83.68499700000001,32.874384],[-83.685024,32.875338]]},"id":"8944c0a22afffff-1396b812b40b39ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64754400000001,32.820777]},"id":"8f44c0b1a0e96b5-17ffe37d039fbfcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64929000000001,32.822007]},"id":"8f44c0b1a3a3a8d-13feff39c31a9fb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0e96b5-17ffe37d039fbfcd","8f44c0b1a3a3a8d-13feff39c31a9fb9"]},"geometry":{"type":"LineString","coordinates":[[-83.64754400000001,32.820777],[-83.648954,32.821804],[-83.649195,32.821973],[-83.64929000000001,32.822007]]},"id":"8744c0b1affffff-1796e160292106c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68993300000001,32.853713]},"id":"8f44c0a26adc272-17f6fbffe09519d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69065,32.853727]},"id":"8f44c0a26ace030-17ff7a3fcccf2e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26adc272-17f6fbffe09519d0","8f44c0a26ace030-17ff7a3fcccf2e90"]},"geometry":{"type":"LineString","coordinates":[[-83.68993300000001,32.853713],[-83.69065,32.853727]]},"id":"8944c0a26afffff-17f77b1fd100bb59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75704900000001,32.921073]},"id":"8f44c0a2d201066-13d7f82461f99fd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757102,32.922068]},"id":"8f44c0a2d20bd45-17d5d80346d9ca3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d20bd45-17d5d80346d9ca3c","8f44c0a2d201066-13d7f82461f99fd5"]},"geometry":{"type":"LineString","coordinates":[[-83.75704900000001,32.921073],[-83.757132,32.921793],[-83.75713300000001,32.921875],[-83.757102,32.922068]]},"id":"8944c0a2d23ffff-179dd80508ec5bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70760200000001,32.827961]},"id":"8f44c0b0a70bc8b-1797f0dccb4da421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7081395,32.827970400000005]},"id":"8f44c0b0a709094-179fcf8cdc1f4f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a709094-179fcf8cdc1f4f38","8f44c0b0a70bc8b-1797f0dccb4da421"]},"geometry":{"type":"LineString","coordinates":[[-83.70760200000001,32.827961],[-83.7081395,32.827970400000005]]},"id":"8a44c0b0a70ffff-1796d034ce80f9bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69294500000001,32.795416]},"id":"8f44c0b036d56d1-139f74a56e198d23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69742000000001,32.795389]},"id":"8f44c0b0364e565-17fe69b882cdf89e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b036d56d1-139f74a56e198d23","8f44c0b0364e565-17fe69b882cdf89e"]},"geometry":{"type":"LineString","coordinates":[[-83.69294500000001,32.795416],[-83.69508,32.795425],[-83.69672700000001,32.795423],[-83.697253,32.795417],[-83.69742000000001,32.795389]]},"id":"8844c0b037fffff-13967f2e45872f62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687889,32.850123]},"id":"8f44c0a26a84ca3-179ee0fd66fc549d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689345,32.849182]},"id":"8f44c0a26b8bb9e-13d6fd6f68918fdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a84ca3-179ee0fd66fc549d","8f44c0a26b8bb9e-13d6fd6f68918fdf"]},"geometry":{"type":"LineString","coordinates":[[-83.687889,32.850123],[-83.688118,32.85],[-83.68847600000001,32.849764],[-83.689136,32.849313],[-83.689345,32.849182]]},"id":"8844c0a26bfffff-17ffff337f9c9f90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69156000000001,32.824407]},"id":"8f44c0b198c27ae-17d6780707256503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690989,32.825215]},"id":"8f44c0b198da104-13df796be5c48eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b198c27ae-17d6780707256503","8f44c0b198da104-13df796be5c48eb3"]},"geometry":{"type":"LineString","coordinates":[[-83.69156000000001,32.824407],[-83.691569,32.824565],[-83.69154900000001,32.824714],[-83.691519,32.824816000000006],[-83.691479,32.824863],[-83.69135,32.824962],[-83.690989,32.825215]]},"id":"8944c0b198fffff-17f6f87bc585cd91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7424977,32.8852619]},"id":"8f44c0b5228d429-13fdfbaafcd6b27a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7448365,32.8808688]},"id":"8f44c0b523112b4-13bff5f53db59d2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b523112b4-13bff5f53db59d2b","8f44c0b5228d429-13fdfbaafcd6b27a"]},"geometry":{"type":"LineString","coordinates":[[-83.7424977,32.8852619],[-83.7429195,32.8852382],[-83.743156,32.885199],[-83.743226,32.885153],[-83.74331600000001,32.885061],[-83.74354000000001,32.88476],[-83.74373700000001,32.884512],[-83.74378200000001,32.88443],[-83.743834,32.884259],[-83.743842,32.884172],[-83.743854,32.883508],[-83.743841,32.883025],[-83.743851,32.882455],[-83.743865,32.882289],[-83.74389500000001,32.882119],[-83.743948,32.881912],[-83.743995,32.881783],[-83.74405200000001,32.881684],[-83.744134,32.881566],[-83.74423300000001,32.881453],[-83.744438,32.881245],[-83.74471700000001,32.880979],[-83.7448365,32.8808688]]},"id":"8844c0b523fffff-1797f8839cea28fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134913,32.781838]},"id":"8f44c0b014e20cc-17fec27bf5f8cd63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715142,32.781767]},"id":"8f44c0b01450474-17be7e7448f08107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01450474-17be7e7448f08107","8f44c0b014e20cc-17fec27bf5f8cd63"]},"geometry":{"type":"LineString","coordinates":[[-83.7134913,32.781838],[-83.713966,32.781843],[-83.714595,32.781855],[-83.71478900000001,32.781857],[-83.714922,32.781844],[-83.715045,32.781809],[-83.715142,32.781767]]},"id":"8844c0b015fffff-17ff707436a95780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69249400000001,32.83986]},"id":"8f44c0a245b258e-1796f5bf44578fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69437500000001,32.840024]},"id":"8f44c0a245a079d-17f77127af25ed37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a245b258e-1796f5bf44578fd3","8f44c0a245a079d-17f77127af25ed37"]},"geometry":{"type":"LineString","coordinates":[[-83.69249400000001,32.83986],[-83.69258500000001,32.839913],[-83.69264600000001,32.839934],[-83.69278,32.839962],[-83.69309700000001,32.839989],[-83.693388,32.840007],[-83.693753,32.840013],[-83.694007,32.840027],[-83.69421100000001,32.840046],[-83.69437500000001,32.840024]]},"id":"8944c0a245bffff-17f6f378de813f2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657959,32.846272]},"id":"8f44c0a35d41cdd-17beca0fa44e6d88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657932,32.844532]},"id":"8f44c0a35d66d83-17feca20819d6eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d41cdd-17beca0fa44e6d88","8f44c0a35d66d83-17feca20819d6eaa"]},"geometry":{"type":"LineString","coordinates":[[-83.657959,32.846272],[-83.65795700000001,32.845695],[-83.657932,32.844532]]},"id":"8944c0a35d7ffff-139eca15ee3dad32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74739100000001,32.893134]},"id":"8f44c0b534f2b33-17b5efb8a96fd5c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.747507,32.892079]},"id":"8f44c0b534ad642-179def70278e35ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b534ad642-179def70278e35ef","8f44c0b534f2b33-17b5efb8a96fd5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.74739100000001,32.893134],[-83.74746900000001,32.892969],[-83.74751400000001,32.892862],[-83.74752500000001,32.892815],[-83.747534,32.892742000000005],[-83.747539,32.892643],[-83.747507,32.892079]]},"id":"8844c0b535fffff-17ddef711cb5f760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63114300000001,32.852773]},"id":"8f44c0a30c0e04a-17972b87a7050d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6306081,32.853076900000005]},"id":"8f44c0a30c19825-17d71cd5fb78272a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c0e04a-17972b87a7050d4d","8f44c0a30c19825-17d71cd5fb78272a"]},"geometry":{"type":"LineString","coordinates":[[-83.63114300000001,32.852773],[-83.63094600000001,32.852912],[-83.6306081,32.853076900000005]]},"id":"8944c0a30c3ffff-17ff7c2b19b53ec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645385,32.845309]},"id":"8f44c0a34204921-13dee8c26e302eac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645234,32.845604]},"id":"8f44c0a342040ce-1396e920cfde0d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342040ce-1396e920cfde0d8a","8f44c0a34204921-13dee8c26e302eac"]},"geometry":{"type":"LineString","coordinates":[[-83.645385,32.845309],[-83.645234,32.845604]]},"id":"8944c0a3423ffff-13bef8f19782effc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55469500000001,32.811055]},"id":"8f44c0b81ce0801-17bfe62ba72d625a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b856cb271-1797fa668b4c9667","8f44c0b81ce0801-17bfe62ba72d625a"]},"geometry":{"type":"LineString","coordinates":[[-83.559516,32.807074],[-83.55901,32.807845],[-83.558307,32.808946],[-83.557792,32.809649],[-83.557381,32.809841],[-83.55469500000001,32.811055]]},"id":"8744c0b81ffffff-13bfff913f7cbb14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653361,32.835901]},"id":"8f44c0b1b4de8a5-13f6f549695cb476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653492,32.835901]},"id":"8f44c0b1b4de94c-13f6f4f78644bd58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4de94c-13f6f4f78644bd58","8f44c0b1b4de8a5-13f6f549695cb476"]},"geometry":{"type":"LineString","coordinates":[[-83.653361,32.835901],[-83.653492,32.835901]]},"id":"8c44c0b1b4de9ff-13f6f5207783b289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68054400000001,32.87784]},"id":"8f44c0a222054a9-13de92ec06f9c851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67946,32.879920000000006]},"id":"8f44c0a222f5342-17de95918d8bb8e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222054a9-13de92ec06f9c851","8f44c0a222f5342-17de95918d8bb8e7"]},"geometry":{"type":"LineString","coordinates":[[-83.68054400000001,32.87784],[-83.680378,32.878245],[-83.680228,32.878586],[-83.680099,32.878895],[-83.679991,32.87913],[-83.679843,32.879387],[-83.67971,32.879576],[-83.679495,32.879846],[-83.67946,32.879920000000006]]},"id":"8844c0a223fffff-13f6941eff24c13c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68954400000001,32.865475]},"id":"8f44c0a2041861e-139ffcf30a934d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6855275,32.8649842]},"id":"8f44c0a2049040e-13f7a6c150cd64ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2049040e-13f7a6c150cd64ca","8f44c0a2041861e-139ffcf30a934d83"]},"geometry":{"type":"LineString","coordinates":[[-83.68954400000001,32.865475],[-83.68934200000001,32.865464],[-83.68917,32.865434],[-83.686908,32.865125],[-83.686701,32.865093],[-83.68569000000001,32.864955],[-83.6855275,32.8649842]]},"id":"8644c0a27ffffff-13f6a1dacd20b862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6853057,32.865293300000005]},"id":"8f44c0a204922c4-13bed74bf22768bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2049040e-13f7a6c150cd64ca","8f44c0a204922c4-13bed74bf22768bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6853057,32.865293300000005],[-83.68536,32.865164],[-83.68539700000001,32.865111],[-83.685455,32.865063],[-83.6855275,32.8649842]]},"id":"8a44c0a20497fff-13d7c70f8c9b65ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763193,32.754224]},"id":"8f44c0b2ea21328-13ffc924623a655c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760918,32.754291]},"id":"8f44c0b2ea14ad6-13b7eeb24042023b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b2ea21328-13ffc924623a655c","8f44c0b2ea14ad6-13b7eeb24042023b"]},"geometry":{"type":"LineString","coordinates":[[-83.763193,32.754224],[-83.76286800000001,32.754213],[-83.76254200000001,32.754226],[-83.76186600000001,32.754266],[-83.760918,32.754291]]},"id":"8944c0b2ea3ffff-139febeb4f415f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662755,32.819339]},"id":"8f44c0b186ae4e5-13f6fe5a23748240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66598400000001,32.818678000000006]},"id":"8f44c0b18605a32-13dff6780f5636b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186ae4e5-13f6fe5a23748240","8f44c0b18605a32-13dff6780f5636b3"]},"geometry":{"type":"LineString","coordinates":[[-83.662755,32.819339],[-83.665265,32.819316],[-83.665704,32.819322],[-83.665844,32.819319],[-83.66592800000001,32.819294],[-83.665941,32.819273],[-83.665971,32.819222],[-83.66598400000001,32.818678000000006]]},"id":"8844c0b187fffff-13dff9d14f881645"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61189970000001,32.8399091]},"id":"8f44c0a36cd8b1e-17bf3a82b7f78fdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6133789,32.8408243]},"id":"8f44c0a36196ab0-17ff36e63d81ccdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36196ab0-17ff36e63d81ccdf","8f44c0a36cd8b1e-17bf3a82b7f78fdc"]},"geometry":{"type":"LineString","coordinates":[[-83.61189970000001,32.8399091],[-83.6119305,32.8399755],[-83.6120028,32.840049900000004],[-83.61208020000001,32.8401311],[-83.6121231,32.8401726],[-83.6121876,32.840210500000005],[-83.6122692,32.840243],[-83.6123051,32.8402507],[-83.6123874,32.840268300000005],[-83.6124929,32.840305900000004],[-83.6125894,32.8403496],[-83.6128101,32.840486500000004],[-83.6130923,32.8406585],[-83.6133789,32.8408243]]},"id":"8744c0a36ffffff-17df38c589c793b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70826000000001,32.851756]},"id":"8f44c0a24213c75-139fcf418f98a700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71185200000001,32.854163]},"id":"8f44c0a242422e3-17ffe67c8d9ab7c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24213c75-139fcf418f98a700","8f44c0a242422e3-17ffe67c8d9ab7c4"]},"geometry":{"type":"LineString","coordinates":[[-83.70826000000001,32.851756],[-83.70879000000001,32.851562],[-83.709265,32.851449],[-83.709556,32.851384],[-83.70974100000001,32.851385],[-83.70998300000001,32.851443],[-83.71018600000001,32.851574],[-83.711267,32.852511],[-83.711701,32.852898],[-83.71195200000001,32.853161],[-83.712029,32.853358],[-83.71206600000001,32.85353],[-83.71202600000001,32.8538],[-83.711928,32.854037000000005],[-83.71185200000001,32.854163]]},"id":"8844c0a243fffff-13fee99c35bd746b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70921600000001,32.8836]},"id":"8f44c0a2145ace1-17de4cec00a7e799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71176200000001,32.883868]},"id":"8f44c0a21732503-1397c6b4cfe5ee1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a21732503-1397c6b4cfe5ee1c","8f44c0a2145ace1-17de4cec00a7e799"]},"geometry":{"type":"LineString","coordinates":[[-83.70921600000001,32.8836],[-83.70944800000001,32.883625],[-83.709641,32.883628],[-83.709891,32.883603],[-83.710335,32.883532],[-83.710452,32.883521],[-83.710569,32.883522],[-83.71078,32.883564],[-83.711213,32.883702],[-83.711467,32.883775],[-83.71176200000001,32.883868]]},"id":"8744c0a21ffffff-17fef9c8c014f3fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644379,32.815075]},"id":"8f44c0b1a180291-139feb372c2308ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646198,32.815232]},"id":"8f44c0b1a1a9873-13f6e6c6435abe7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a180291-139feb372c2308ec","8f44c0b1a1a9873-13f6e6c6435abe7b"]},"geometry":{"type":"LineString","coordinates":[[-83.644379,32.815075],[-83.64512,32.815142],[-83.646198,32.815232]]},"id":"8944c0b1a1bffff-13bfe8fecb032ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699624,32.839731]},"id":"8f44c0a24cd13aa-17bfe45707bac13d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701031,32.839993]},"id":"8f44c0a24ccc5a8-17f7e0e7aeee6dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ccc5a8-17f7e0e7aeee6dfa","8f44c0a24cd13aa-17bfe45707bac13d"]},"geometry":{"type":"LineString","coordinates":[[-83.699624,32.839731],[-83.699774,32.839759],[-83.700788,32.839941],[-83.701031,32.839993]]},"id":"8944c0a24cfffff-179ff29ef6840c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674203,32.854549]},"id":"8f44c0a2679d013-13ffa2672842ea63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753956,32.8531862]},"id":"8f44c0a267a16aa-179fff7dc2430493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267a16aa-179fff7dc2430493","8f44c0a2679d013-13ffa2672842ea63"]},"geometry":{"type":"LineString","coordinates":[[-83.674203,32.854549],[-83.67468000000001,32.85374],[-83.67474200000001,32.853673],[-83.674991,32.853575],[-83.6753956,32.8531862]]},"id":"8944c0a267bffff-17b7f115ca32cb4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736137,32.884386]},"id":"8f44c0b5260b746-13d74b3266835f59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73454000000001,32.882874]},"id":"8f44c0b52611516-17964f18823a16f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5260b746-13d74b3266835f59","8f44c0b52611516-17964f18823a16f3"]},"geometry":{"type":"LineString","coordinates":[[-83.736137,32.884386],[-83.73593500000001,32.884361000000006],[-83.73558600000001,32.884307],[-83.73544700000001,32.884273],[-83.73537,32.884238],[-83.73529500000001,32.884191],[-83.73523300000001,32.884138],[-83.735196,32.884098],[-83.735123,32.883995],[-83.735084,32.883915],[-83.73492800000001,32.883623],[-83.73454000000001,32.882874]]},"id":"8944c0b5263ffff-17fe8d81dca21f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642643,32.813249]},"id":"8f44c0b1accc146-139eef742f7c2475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6449736,32.8134146]},"id":"8f44c0b1a1a45b1-1796e9c38414a5fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1accc146-139eef742f7c2475","8f44c0b1a1a45b1-1796e9c38414a5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.642643,32.813249],[-83.642701,32.813294],[-83.642773,32.813326],[-83.642893,32.813336],[-83.6448467,32.8133761],[-83.6449736,32.8134146]]},"id":"8744c0b1affffff-13dfeca0d35cdf17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6462425,32.8135439]},"id":"8f44c0b1a116960-17d6f6aa7d83e0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a116960-17d6f6aa7d83e0a0","8f44c0b1a1a45b1-1796e9c38414a5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6449736,32.8134146],[-83.6451004,32.813453100000004],[-83.6462425,32.8135439]]},"id":"8844c0b1a1fffff-17b6e8387bd06b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68974100000001,32.859363]},"id":"8f44c0a2626aace-17bffc77e03bec4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690568,32.858235]},"id":"8f44c0a20c904c0-13fefa7301d96254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c904c0-13fefa7301d96254","8f44c0a2626aace-17bffc77e03bec4e"]},"geometry":{"type":"LineString","coordinates":[[-83.68974100000001,32.859363],[-83.69041,32.858437],[-83.690568,32.858235]]},"id":"8844c0a263fffff-13dffb777766e7d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693983,32.733688]},"id":"8f44c0b3176956c-13df721caf71c96b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0694500e-13b6ea99bbb1e014","8f44c0b3176956c-13df721caf71c96b"]},"geometry":{"type":"LineString","coordinates":[[-83.693983,32.733688],[-83.696202,32.733722],[-83.69656,32.73373],[-83.696854,32.733742],[-83.69712200000001,32.733797],[-83.69727900000001,32.733863],[-83.697407,32.733936],[-83.69754,32.734026],[-83.697722,32.734233],[-83.69781900000001,32.734383],[-83.697874,32.734544],[-83.69789700000001,32.734688000000006],[-83.697862,32.735886],[-83.697844,32.736497],[-83.697804,32.7367],[-83.69774100000001,32.736872000000005],[-83.697536,32.73722],[-83.69717700000001,32.7376],[-83.697035,32.737789],[-83.69696300000001,32.737943],[-83.69691800000001,32.738059],[-83.69692500000001,32.738245],[-83.69697500000001,32.739587],[-83.69705970000001,32.740791200000004]]},"id":"8544c0b3fffffff-17deeb1685908be3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63566200000001,32.820611]},"id":"8f44c0b1a4da388-1797e07f435e6fd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637102,32.821472]},"id":"8f44c0ba9b65756-17befcfb466af970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4da388-1797e07f435e6fd2","8f44c0ba9b65756-17befcfb466af970"]},"geometry":{"type":"LineString","coordinates":[[-83.63566200000001,32.820611],[-83.637102,32.821472]]},"id":"8844c0ba9bfffff-179efebd4d510159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745593,32.808731]},"id":"8f44c0b0d594021-1395f41c603546bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7442015,32.8094616]},"id":"8f44c0b08963b1c-13ddf782196f3803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0d594021-1395f41c603546bc","8f44c0b08963b1c-13ddf782196f3803"]},"geometry":{"type":"LineString","coordinates":[[-83.745593,32.808731],[-83.74541,32.80869],[-83.74536,32.808689],[-83.745259,32.8087],[-83.74521,32.808715],[-83.7451774,32.808732400000004],[-83.745126,32.80876],[-83.744831,32.809039],[-83.744691,32.809154],[-83.74457600000001,32.809237],[-83.7442015,32.8094616]]},"id":"8644c0b0fffffff-13bff5da09979da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638762,32.828421]},"id":"8f44c0a34d2b753-13b7f8edc09678b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639746,32.827264]},"id":"8f44c0b1a6d3b06-17d6f686c48726b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d2b753-13b7f8edc09678b9","8f44c0b1a6d3b06-17d6f686c48726b6"]},"geometry":{"type":"LineString","coordinates":[[-83.638762,32.828421],[-83.63900500000001,32.828131],[-83.63929900000001,32.827787],[-83.639746,32.827264]]},"id":"8744c0a34ffffff-17bff7bafbe83c1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63503200000001,32.822663]},"id":"8f44c0ba9b5100d-139762090a3fc3ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63599400000001,32.821523]},"id":"8f44c0ba9b6258d-17dfffafcf75ee56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b6258d-17dfffafcf75ee56","8f44c0ba9b5100d-139762090a3fc3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.63503200000001,32.822663],[-83.63599400000001,32.821523]]},"id":"8944c0ba9b7ffff-13b720dc606c63a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655282,32.8569]},"id":"8f44c0a35724272-17bed098c5c81dec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65406800000001,32.859232]},"id":"8f44c0a3571991d-13ded38f88cb87fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35724272-17bed098c5c81dec","8f44c0a3571991d-13ded38f88cb87fd"]},"geometry":{"type":"LineString","coordinates":[[-83.655282,32.8569],[-83.655288,32.857574],[-83.655298,32.857726],[-83.655371,32.85795],[-83.655473,32.858199],[-83.65549,32.858286],[-83.65546900000001,32.858445],[-83.655405,32.858579],[-83.655366,32.858628],[-83.655224,32.858734000000005],[-83.65505300000001,32.858826],[-83.65468100000001,32.858989],[-83.65406800000001,32.859232]]},"id":"8944c0a3573ffff-139ed118858a6427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766569,32.82348]},"id":"8f44c0b72532cc8-1797c0e66eaa695f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76585100000001,32.823898]},"id":"8f44c0b0d24b344-179dc2a72dfdc04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d24b344-179dc2a72dfdc04a","8f44c0b72532cc8-1797c0e66eaa695f"]},"geometry":{"type":"LineString","coordinates":[[-83.766569,32.82348],[-83.76643200000001,32.82349],[-83.766322,32.823507],[-83.76618900000001,32.82354],[-83.76590900000001,32.823748],[-83.76585100000001,32.823836],[-83.76585100000001,32.823898]]},"id":"8844c0b725fffff-17fdd1e85fe84329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69404700000001,32.74624]},"id":"8f44c0b06bb3544-139671f4a6e56995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69377300000001,32.748264]},"id":"8f44c0b06b9b594-17f7729fe20322b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06b9b594-17f7729fe20322b3","8f44c0b06bb3544-139671f4a6e56995"]},"geometry":{"type":"LineString","coordinates":[[-83.69404700000001,32.74624],[-83.69375000000001,32.746613],[-83.693624,32.746752],[-83.693551,32.746882],[-83.693526,32.746938],[-83.693515,32.747068],[-83.693526,32.747132],[-83.69357600000001,32.747318],[-83.693658,32.747514],[-83.69372800000001,32.747695],[-83.693769,32.747884],[-83.693781,32.748025000000005],[-83.69378300000001,32.748112],[-83.69377300000001,32.748264]]},"id":"8944c0b06bbffff-13def2c77a79e0d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618772,32.862307]},"id":"8f44c0a32ba04e8-13dfe9bb816245a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618791,32.863411]},"id":"8f44c0a32b81968-179fe9afacb11702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ba04e8-13dfe9bb816245a1","8f44c0a32b81968-179fe9afacb11702"]},"geometry":{"type":"LineString","coordinates":[[-83.618772,32.862307],[-83.61878800000001,32.863036],[-83.618791,32.863411]]},"id":"8944c0a32bbffff-17b7e9b486cac95b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628369,32.82423]},"id":"8f44c0ba9a913ad-17f7d24d6640e515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628549,32.824021]},"id":"8f44c0ba9a824a8-17f731dcec11f37b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a824a8-17f731dcec11f37b","8f44c0ba9a913ad-17f7d24d6640e515"]},"geometry":{"type":"LineString","coordinates":[[-83.628369,32.82423],[-83.628479,32.824087],[-83.628549,32.824021]]},"id":"8a44c0ba9a97fff-17b77217726e615a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71984400000001,32.831615]},"id":"8f44c0b0bc9676b-13ff72f98c7085e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718996,32.832423]},"id":"8f44c0b0a26e551-13fe750b80228691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a26e551-13fe750b80228691","8f44c0b0bc9676b-13ff72f98c7085e1"]},"geometry":{"type":"LineString","coordinates":[[-83.71984400000001,32.831615],[-83.71946700000001,32.831887],[-83.71920800000001,32.832143],[-83.718996,32.832423]]},"id":"8844c0b0a3fffff-13de74139fa79d55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659351,32.771382]},"id":"8f44c0b111068ec-17f7c6a9a7de2e81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6593091,32.7718572]},"id":"8f44c0b11102b02-179ec6c3d6f74410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11102b02-179ec6c3d6f74410","8f44c0b111068ec-17f7c6a9a7de2e81"]},"geometry":{"type":"LineString","coordinates":[[-83.659351,32.771382],[-83.659322,32.771569],[-83.6593091,32.7718572]]},"id":"8a44c0b11107fff-17f7e6baa7e33646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6118027,32.849669]},"id":"8f44c0a36633b98-17973abf53a44aa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61175,32.851079]},"id":"8f44c0a3661c64a-17f77ae04eadbb5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3661c64a-17f77ae04eadbb5c","8f44c0a36633b98-17973abf53a44aa5"]},"geometry":{"type":"LineString","coordinates":[[-83.6118027,32.849669],[-83.61175,32.851079]]},"id":"8944c0a3663ffff-17bffacfd9c75a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630357,32.882581]},"id":"8f44c0a33054743-17df2d72ebcb292b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632374,32.882072]},"id":"8f44c0a33060041-139f088646b3d0c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33054743-17df2d72ebcb292b","8f44c0a33060041-139f088646b3d0c2"]},"geometry":{"type":"LineString","coordinates":[[-83.630357,32.882581],[-83.630778,32.882523],[-83.631652,32.882392],[-83.63174400000001,32.882371],[-83.63182900000001,32.882344],[-83.632374,32.882072]]},"id":"8944c0a3307ffff-17ffeaef2b13590b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575376,32.860821]},"id":"8f44c0b88223874-17bfb3ae01e1b051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57470500000001,32.859451]},"id":"8f44c0b8831808c-17f7f5516341d830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8831808c-17f7f5516341d830","8f44c0b88223874-17bfb3ae01e1b051"]},"geometry":{"type":"LineString","coordinates":[[-83.575376,32.860821],[-83.57533500000001,32.860712],[-83.575181,32.860371],[-83.575118,32.86019],[-83.575073,32.860025],[-83.575045,32.859961000000006],[-83.574988,32.859879],[-83.574791,32.859692],[-83.57476700000001,32.859648],[-83.57470500000001,32.859451]]},"id":"8844c0b883fffff-1797b47381d4208f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621841,32.864182]},"id":"8f44c0a32a24a6a-17f7e23d66edec98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621848,32.864918]},"id":"8f44c0a32a21050-13bfe2390d98aff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a24a6a-17f7e23d66edec98","8f44c0a32a21050-13bfe2390d98aff3"]},"geometry":{"type":"LineString","coordinates":[[-83.621841,32.864182],[-83.621848,32.864918]]},"id":"8a44c0a32a27fff-13d7e23b31c76b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658924,32.784329]},"id":"8f44c0b112982e3-17ffe7b487bf58aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661969,32.784366]},"id":"8f44c0b112f539e-1796c0456b8405d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112982e3-17ffe7b487bf58aa","8f44c0b112f539e-1796c0456b8405d9"]},"geometry":{"type":"LineString","coordinates":[[-83.658924,32.784329],[-83.66185300000001,32.784371],[-83.661969,32.784366]]},"id":"8844c0b113fffff-179ff3fcf84eb01d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66199,32.784835]},"id":"8f44c0b112f134e-17bfe0384a248e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66646200000001,32.784617600000004]},"id":"8f44c0b1126e230-17b6b54d428a8540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112f134e-17bfe0384a248e90","8f44c0b1126e230-17b6b54d428a8540"]},"geometry":{"type":"LineString","coordinates":[[-83.66199,32.784835],[-83.662316,32.784838],[-83.6631,32.784812],[-83.66345600000001,32.784793],[-83.66375000000001,32.784785],[-83.66407500000001,32.784765],[-83.66506000000001,32.784733],[-83.666284,32.784669],[-83.66636510000001,32.7846573],[-83.66646200000001,32.784617600000004]]},"id":"8844c0b113fffff-179fbabff6ca9928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7642019,32.747185]},"id":"8f44c0b2c5992d4-13dfe6add6e844e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614953,32.747197]},"id":"8f44c0b2e94eab2-13d7ed4972025efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b2c5992d4-13dfe6add6e844e6","8f44c0b2e94eab2-13d7ed4972025efb"]},"geometry":{"type":"LineString","coordinates":[[-83.7642019,32.747185],[-83.7614953,32.747197]]},"id":"8644c0b2fffffff-13d7e9fba4af4e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.542598,32.828488]},"id":"8f44c0b8334605d-13dfe3b44ca28326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.540098,32.832926]},"id":"8f44c0b832eb94d-13b7e9cecf5434fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8334605d-13dfe3b44ca28326","8f44c0b832eb94d-13b7e9cecf5434fe"]},"geometry":{"type":"LineString","coordinates":[[-83.542598,32.828488],[-83.542483,32.828634],[-83.542316,32.828857],[-83.54178800000001,32.829583],[-83.541658,32.829749],[-83.54151300000001,32.829912],[-83.54120400000001,32.830195],[-83.54110700000001,32.830318000000005],[-83.54102800000001,32.830435],[-83.54093900000001,32.830613],[-83.540761,32.831048],[-83.540171,32.832803000000006],[-83.540098,32.832926]]},"id":"8844c0b833fffff-17ffe72e62992cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69431800000001,32.842255]},"id":"8f44c0a2458b8b5-13ff714b4c2dd429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693369,32.842246]},"id":"8f44c0a24599722-13f7f39c632f03a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2458b8b5-13ff714b4c2dd429","8f44c0a24599722-13f7f39c632f03a7"]},"geometry":{"type":"LineString","coordinates":[[-83.69431800000001,32.842255],[-83.693369,32.842246]]},"id":"8944c0a245bffff-13f6f273d11811f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604887,32.849659]},"id":"8f44c0b8da2d623-17ffeba1af651a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60485800000001,32.850966]},"id":"8f44c0b8da73dab-17bfcbb3c5930613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da73dab-17bfcbb3c5930613","8f44c0b8da2d623-17ffeba1af651a00"]},"geometry":{"type":"LineString","coordinates":[[-83.604887,32.849659],[-83.604854,32.850205],[-83.604842,32.850879],[-83.60485800000001,32.850966]]},"id":"8844c0b8dbfffff-1797dbb416d950c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734268,32.753743]},"id":"8f44c0b0580a6a8-13d76fc28ce8683d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731623,32.754178]},"id":"8f44c0b05888164-13f75637aa342c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b05888164-13f75637aa342c6b","8f44c0b0580a6a8-13d76fc28ce8683d"]},"geometry":{"type":"LineString","coordinates":[[-83.734268,32.753743],[-83.731853,32.754123],[-83.731623,32.754178]]},"id":"8844c0b059fffff-13d632fe1a11cdb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65493400000001,32.854415]},"id":"8f44c0a350b10cd-139ff17240206126"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657511,32.854416]},"id":"8f44c0a35011c28-139ecb27a104a172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350b10cd-139ff17240206126","8f44c0a35011c28-139ecb27a104a172"]},"geometry":{"type":"LineString","coordinates":[[-83.65493400000001,32.854415],[-83.65507000000001,32.854415],[-83.657511,32.854416]]},"id":"8844c0a351fffff-139ffe4cf2ef3887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691213,32.911535]},"id":"8f44c0a05316819-139f78dfe75a3367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69087610000001,32.9120858]},"id":"8f44c0a05312465-17f7f9b27e6d37c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05316819-139f78dfe75a3367","8f44c0a05312465-17f7f9b27e6d37c1"]},"geometry":{"type":"LineString","coordinates":[[-83.691213,32.911535],[-83.6910593,32.9117371],[-83.6909622,32.9118577],[-83.69092900000001,32.911912],[-83.6909232,32.9119736],[-83.69087610000001,32.9120858]]},"id":"8a44c0a05317fff-17b77955c4bda1f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913633,32.9116191]},"id":"8f44c0a05316b74-13d7f881f124ace9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05316b74-13d7f881f124ace9","8f44c0a05312465-17f7f9b27e6d37c1"]},"geometry":{"type":"LineString","coordinates":[[-83.69087610000001,32.9120858],[-83.69101500000001,32.91199],[-83.6910967,32.911951900000005],[-83.6913633,32.9116191]]},"id":"8a44c0a05317fff-17f6790f52be0f0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66079,32.796202]},"id":"8f44c0b1ea14186-13fec3264bf257e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6619639,32.7962463]},"id":"8f44c0b1ea31268-1397f0489ccb2a41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea14186-13fec3264bf257e9","8f44c0b1ea31268-1397f0489ccb2a41"]},"geometry":{"type":"LineString","coordinates":[[-83.66079,32.796202],[-83.66096900000001,32.796194],[-83.66109700000001,32.796179],[-83.661235,32.796166],[-83.661376,32.796165],[-83.661572,32.796176],[-83.661871,32.796221],[-83.6619639,32.7962463]]},"id":"8944c0b1ea3ffff-13f7f1b619638058"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.576768,32.862772]},"id":"8f44c0b88270a5b-17979048048f82a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574762,32.863982]},"id":"8f44c0b882e1622-17f7d52dcb76fedb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882e1622-17f7d52dcb76fedb","8f44c0b88270a5b-17979048048f82a9"]},"geometry":{"type":"LineString","coordinates":[[-83.576768,32.862772],[-83.576704,32.862803],[-83.575016,32.863821],[-83.574762,32.863982]]},"id":"8844c0b883fffff-17f7d2bcc1b3d945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651604,32.819978]},"id":"8f44c0b1aa9a2a9-1796d99387a6228b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6516,32.818596]},"id":"8f44c0b1aa90bab-13b6d99604f3b5d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa9a2a9-1796d99387a6228b","8f44c0b1aa90bab-13b6d99604f3b5d3"]},"geometry":{"type":"LineString","coordinates":[[-83.651604,32.819978],[-83.6516,32.818596]]},"id":"8944c0b1aabffff-13d6f994c481a0b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653277,32.811134]},"id":"8f44c0b1a82b244-17fed57de04888b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a853b2b-13f7f59468d9c91a","8f44c0b1a82b244-17fed57de04888b0"]},"geometry":{"type":"LineString","coordinates":[[-83.65324100000001,32.812959],[-83.65329100000001,32.811478],[-83.653277,32.811134]]},"id":"8844c0b1a9fffff-13bfd582addcda3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721016,32.919891]},"id":"8f44c0a2845026e-17f7f01d0a80b7b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a287b4a25-13fe2ffbec1e9207","8f44c0a2845026e-17f7f01d0a80b7b3"]},"geometry":{"type":"LineString","coordinates":[[-83.721069,32.921312],[-83.72128000000001,32.920826000000005],[-83.721332,32.920678],[-83.721345,32.920588],[-83.721344,32.920484],[-83.721326,32.920381],[-83.721281,32.920259],[-83.721219,32.920155],[-83.721016,32.919891]]},"id":"8844c0a285fffff-13b73f9b5b92e1d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665108,32.830478]},"id":"8f44c0b1b103ce1-17bef89b8c2e2eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6660801,32.8305671]},"id":"8f44c0b1b12a65c-17f6f63bf6fb0306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b103ce1-17bef89b8c2e2eb5","8f44c0b1b12a65c-17f6f63bf6fb0306"]},"geometry":{"type":"LineString","coordinates":[[-83.665108,32.830478],[-83.665723,32.830438],[-83.6660801,32.8305671]]},"id":"8944c0b1b13ffff-17b6f7678dcea464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678871,32.875738000000005]},"id":"8f44c0a223a8589-17bed701adc40aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6818195,32.875967]},"id":"8f44c0a22308165-17b7efcedb7abe88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a223a8589-17bed701adc40aa7","8f44c0a22308165-17b7efcedb7abe88"]},"geometry":{"type":"LineString","coordinates":[[-83.678871,32.875738000000005],[-83.679518,32.875849],[-83.680182,32.875886],[-83.680805,32.87594],[-83.68161500000001,32.875995],[-83.6818195,32.875967]]},"id":"8844c0a223fffff-179f9369a02ca9bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.585215,32.85539]},"id":"8f44c0b8d6b1cc0-13fffba8ae81662a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586267,32.85595]},"id":"8f44c0b8d6ae5b1-13dff9172b12943d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6ae5b1-13dff9172b12943d","8f44c0b8d6b1cc0-13fffba8ae81662a"]},"geometry":{"type":"LineString","coordinates":[[-83.585215,32.85539],[-83.58564600000001,32.855611],[-83.586267,32.85595]]},"id":"8944c0b8d6bffff-13b7fa5edc199366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757249,32.873773]},"id":"8f44c0b504592da-17ddf7a76f177ca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75645800000001,32.874273]},"id":"8f44c0b507b56d0-1395f995c19c5987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b504592da-17ddf7a76f177ca6","8f44c0b507b56d0-1395f995c19c5987"]},"geometry":{"type":"LineString","coordinates":[[-83.757249,32.873773],[-83.75645800000001,32.874273]]},"id":"8844c0b507fffff-17fdf89e933bad81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67037400000001,32.806024]},"id":"8f44c0b18892302-13f7abc046602ad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670437,32.804038000000006]},"id":"8f44c0b18d6a2a3-179feb98e8b1c917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18892302-13f7abc046602ad3","8f44c0b18d6a2a3-179feb98e8b1c917"]},"geometry":{"type":"LineString","coordinates":[[-83.67037400000001,32.806024],[-83.670393,32.805653],[-83.670437,32.804038000000006]]},"id":"8844c0b18dfffff-179efbaa52ebf887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634247,32.773963]},"id":"8f44c0b13c639b1-13bfe3f3ab75144c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63556360000001,32.770992400000004]},"id":"8f44c0b13d6110d-17ff40bcc1f480ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13c639b1-13bfe3f3ab75144c","8f44c0b13d6110d-17ff40bcc1f480ac"]},"geometry":{"type":"LineString","coordinates":[[-83.634247,32.773963],[-83.63435700000001,32.773832],[-83.634535,32.773697],[-83.634782,32.773544],[-83.63507100000001,32.773345],[-83.63514,32.773269],[-83.635204,32.773184],[-83.635255,32.7731],[-83.63536520000001,32.7726763],[-83.63544200000001,32.772349000000006],[-83.635509,32.771748],[-83.6355601,32.771041100000005],[-83.63556360000001,32.770992400000004]]},"id":"8844c0b13dfffff-13ffd1a87215e07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637974,32.847651]},"id":"8f44c0a34642385-1797fada4c3dada4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63857,32.846974]},"id":"8f44c0a34644109-17fef965c6e5dcfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34642385-1797fada4c3dada4","8f44c0a34644109-17fef965c6e5dcfa"]},"geometry":{"type":"LineString","coordinates":[[-83.637974,32.847651],[-83.63857,32.846974]]},"id":"8a44c0a34647fff-17d6fa20009475f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62037600000001,32.869555000000005]},"id":"8f44c0a32ac8cdd-179fe5d1018432a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61852,32.870959]},"id":"8f44c0a32373a0b-13ff6a5900e273e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ac8cdd-179fe5d1018432a5","8f44c0a32373a0b-13ff6a5900e273e4"]},"geometry":{"type":"LineString","coordinates":[[-83.62037600000001,32.869555000000005],[-83.61930500000001,32.870450000000005],[-83.619054,32.870646],[-83.618853,32.870759],[-83.61852,32.870959]]},"id":"8744c0a32ffffff-17df7806f60e695c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621267,32.870308]},"id":"8f44c0a33d94060-17f7a3a4260b92d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ac8cdd-179fe5d1018432a5","8f44c0a33d94060-17f7a3a4260b92d6"]},"geometry":{"type":"LineString","coordinates":[[-83.621267,32.870308],[-83.62037600000001,32.869555000000005]]},"id":"8744c0a32ffffff-17ff34ba93f51b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.743244,32.816905000000006]},"id":"8f44c0b08a361a1-1795f9d88b1016c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a3406c-1797f868aecb4c94","8f44c0b08a361a1-1795f9d88b1016c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7438326,32.8169011],[-83.743244,32.816905000000006]]},"id":"8a44c0b08a37fff-1795f9209206f641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651432,32.84292]},"id":"8f44c0a35db4175-179fd9ff08187486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65341000000001,32.840763]},"id":"8f44c0a34a63823-17d6f52acde46860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35db4175-179fd9ff08187486","8f44c0a34a63823-17d6f52acde46860"]},"geometry":{"type":"LineString","coordinates":[[-83.651432,32.84292],[-83.65324100000001,32.840947],[-83.65341000000001,32.840763]]},"id":"8844c0a34bfffff-13f6f794fb027da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647073,32.851475]},"id":"8f44c0a35581ce5-13ffe4a365f86067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a355a9d4a-13b6e1476cd0f008","8f44c0a35581ce5-13ffe4a365f86067"]},"geometry":{"type":"LineString","coordinates":[[-83.647073,32.851475],[-83.648328,32.851567],[-83.648449,32.851563]]},"id":"8944c0a355bffff-139ff2f571fcd3e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719836,32.927124]},"id":"8f44c0a2869b94d-139eb2fe8759b6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720269,32.927366]},"id":"8f44c0a2869924c-13b7f1efe9e14c47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869b94d-139eb2fe8759b6b7","8f44c0a2869924c-13b7f1efe9e14c47"]},"geometry":{"type":"LineString","coordinates":[[-83.719836,32.927124],[-83.720269,32.927366]]},"id":"8944c0a286bffff-13fe32773df5b74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689321,32.834165]},"id":"8f44c0b1939d084-17bf7d7e65f68117"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689358,32.831269]},"id":"8f44c0b1905a8c2-17977d67473705d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1905a8c2-17977d67473705d7","8f44c0b1939d084-17bf7d7e65f68117"]},"geometry":{"type":"LineString","coordinates":[[-83.689321,32.834165],[-83.689327,32.833402],[-83.689358,32.831269]]},"id":"8744c0b19ffffff-13b67d740f5308f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621448,32.832026]},"id":"8f44c0ba964ccd8-13f76333099d31b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622853,32.832867]},"id":"8f44c0a369302eb-13ffffc4e8b93a1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba964ccd8-13f76333099d31b0","8f44c0a369302eb-13ffffc4e8b93a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.621448,32.832026],[-83.622853,32.832867]]},"id":"8744c0ba9ffffff-13f7317bfa533c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65678600000001,32.856918]},"id":"8f44c0a350d5d20-17b7cceccc9f1848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65749770000001,32.858214100000005]},"id":"8f44c0a350dd171-13dfdb2ff311c9ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350d5d20-17b7cceccc9f1848","8f44c0a350dd171-13dfdb2ff311c9ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65678600000001,32.856918],[-83.65685,32.857101],[-83.65700600000001,32.857400000000005],[-83.657213,32.857733],[-83.657369,32.858016],[-83.65749770000001,32.858214100000005]]},"id":"8944c0a350fffff-17d7fc1b3c685747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690005,32.86345]},"id":"8f44c0a20431c84-17be7bd2eb389a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907899,32.8604955]},"id":"8f44c0a205315a1-17f7f9e8540d93fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a205315a1-17f7f9e8540d93fc","8f44c0a20431c84-17be7bd2eb389a45"]},"geometry":{"type":"LineString","coordinates":[[-83.690005,32.86345],[-83.690618,32.86282],[-83.69091,32.86251],[-83.69159300000001,32.861798],[-83.692042,32.861324],[-83.69207200000001,32.861275],[-83.69206600000001,32.86124],[-83.691928,32.861154],[-83.69112100000001,32.860715],[-83.690994,32.860642],[-83.6907899,32.8604955]]},"id":"8844c0a205fffff-13df78f649ac1849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703528,32.887053]},"id":"8f44c0a23a05ab1-17de7acf050d2b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702616,32.886966]},"id":"8f44c0a23a062a5-1797dd0909579ef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a062a5-1797dd0909579ef6","8f44c0a23a05ab1-17de7acf050d2b79"]},"geometry":{"type":"LineString","coordinates":[[-83.703528,32.887053],[-83.702616,32.886966]]},"id":"8a44c0a23a07fff-17befbec0808b7b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56090900000001,32.835271]},"id":"8f44c0b8eba58dc-13dff6ffe7cad071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55995700000001,32.834775]},"id":"8f44c0b8e859786-13b7f952e6143764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e859786-13b7f952e6143764","8f44c0b8eba58dc-13dff6ffe7cad071"]},"geometry":{"type":"LineString","coordinates":[[-83.56090900000001,32.835271],[-83.55995700000001,32.834775]]},"id":"8744c0b8effffff-13d7f82960646920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739514,32.882555]},"id":"8f44c0b527412eb-17dee2f3cead2484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7390811,32.8819498]},"id":"8f44c0b52740103-13d6a4025a9ecefd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b527412eb-17dee2f3cead2484","8f44c0b52740103-13d6a4025a9ecefd"]},"geometry":{"type":"LineString","coordinates":[[-83.739514,32.882555],[-83.7390811,32.8819498]]},"id":"8944c0b5277ffff-179fc37b1aa710d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926189,32.8014987]},"id":"8f44c0b1dc45620-17fef57136896f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69377010000001,32.801372400000005]},"id":"8f44c0b1dc6c253-179ff2a1b3b0fed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc45620-17fef57136896f16","8f44c0b1dc6c253-179ff2a1b3b0fed2"]},"geometry":{"type":"LineString","coordinates":[[-83.6926189,32.8014987],[-83.6931393,32.8013765],[-83.6934805,32.801372400000005],[-83.69377010000001,32.801372400000005]]},"id":"8944c0b1dc7ffff-17bef40bdc3b0818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66411500000001,32.860528]},"id":"8f44c0a3530b306-1796bb082053342f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66823000000001,32.85991]},"id":"8f44c0a22d94023-1797f0fc4e733bc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3530b306-1796bb082053342f","8f44c0a22d94023-1797f0fc4e733bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.66411500000001,32.860528],[-83.664353,32.86096],[-83.66449300000001,32.861199],[-83.664591,32.861305],[-83.664726,32.861392],[-83.664843,32.861441],[-83.66505500000001,32.861476],[-83.665159,32.861466],[-83.665462,32.86137],[-83.665745,32.861252],[-83.66607,32.86115],[-83.66635000000001,32.861113],[-83.666804,32.861091],[-83.667028,32.861058],[-83.667184,32.861016],[-83.667331,32.860937],[-83.667411,32.860875],[-83.667568,32.860725],[-83.667726,32.860554],[-83.667989,32.860234000000005],[-83.66823000000001,32.85991]]},"id":"8744c0a35ffffff-1397f60c462481cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76147,32.766882]},"id":"8f44c0b2851c250-13f5cd5943092219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761504,32.766157]},"id":"8f44c0b28502126-13b5ed440c84d765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2851c250-13f5cd5943092219","8f44c0b28502126-13b5ed440c84d765"]},"geometry":{"type":"LineString","coordinates":[[-83.76147,32.766882],[-83.761504,32.766157]]},"id":"8944c0b2853ffff-1397fd4ead84ffc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642148,32.826946]},"id":"8f44c0b1a6e8d9b-179ff0a988c513ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6428338,32.825900000000004]},"id":"8f44c0b1a656ac2-13ffeefce9514dce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a656ac2-13ffeefce9514dce","8f44c0b1a6e8d9b-179ff0a988c513ce"]},"geometry":{"type":"LineString","coordinates":[[-83.642148,32.826946],[-83.64269010000001,32.826309],[-83.6427621,32.826161500000005],[-83.6427943,32.8260668],[-83.6428338,32.825900000000004]]},"id":"8844c0b1a7fffff-13d7ffb47518e492"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70561500000001,32.819952]},"id":"8f44c0b0a575856-13f655b6a0318be6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70654400000001,32.819966]},"id":"8f44c0b0a564226-13fed372088b7cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a575856-13f655b6a0318be6","8f44c0b0a564226-13fed372088b7cad"]},"geometry":{"type":"LineString","coordinates":[[-83.70561500000001,32.819952],[-83.70654400000001,32.819966]]},"id":"8944c0b0a57ffff-13fe7494512acaa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59139800000001,32.870604]},"id":"8f44c0b8906499a-179fec904c7a669d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.594592,32.87173]},"id":"8f44c0b89aaa7a1-13df64c40c4887cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89aaa7a1-13df64c40c4887cc","8f44c0b8906499a-179fec904c7a669d"]},"geometry":{"type":"LineString","coordinates":[[-83.59139800000001,32.870604],[-83.59185000000001,32.87062],[-83.59272100000001,32.87064],[-83.59302500000001,32.870652],[-83.59322300000001,32.870677],[-83.593351,32.870708],[-83.59356600000001,32.870789],[-83.593761,32.87089],[-83.59388600000001,32.870981],[-83.594024,32.871108],[-83.594592,32.87173]]},"id":"8744c0b89ffffff-13d7e85acce0976f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699083,32.865631]},"id":"8f44c0a2001c12d-13ff65a92bba2199"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69824700000001,32.86563]},"id":"8f44c0a20013210-13fee7b3ab058481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2001c12d-13ff65a92bba2199","8f44c0a20013210-13fee7b3ab058481"]},"geometry":{"type":"LineString","coordinates":[[-83.699083,32.865631],[-83.69824700000001,32.86563]]},"id":"8944c0a2003ffff-13ff76ae67682b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698971,32.795904]},"id":"8f44c0b1d9304f6-13d665ef2799b73c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69865,32.795153]},"id":"8f44c0b0366b84c-17fee6b7c172937d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0366b84c-17fee6b7c172937d","8f44c0b1d9304f6-13d665ef2799b73c"]},"geometry":{"type":"LineString","coordinates":[[-83.698971,32.795904],[-83.698941,32.795842],[-83.69880300000001,32.795616],[-83.69871400000001,32.795434],[-83.69868000000001,32.795335],[-83.698665,32.795262],[-83.69865,32.795153]]},"id":"8744c0b03ffffff-13dff66506f7b84f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745006,32.928939]},"id":"8f44c0a29c4084a-179ff58b48a72c64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7434248,32.9307378]},"id":"8f44c0a291b46c9-13fff9678f7c9e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a291b46c9-13fff9678f7c9e90","8f44c0a29c4084a-179ff58b48a72c64"]},"geometry":{"type":"LineString","coordinates":[[-83.745006,32.928939],[-83.743846,32.930073],[-83.74352900000001,32.9303881],[-83.74346340000001,32.9305321],[-83.7434248,32.9307378]]},"id":"8844c0a29dfffff-13b7f7a4e6e77c1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66914200000001,32.798969]},"id":"8f44c0b1c6ab05b-13bfaec24ee3f85f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67199500000001,32.797967]},"id":"8f44c0b1c62a603-17dfe7cb2da8efbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c62a603-17dfe7cb2da8efbc","8f44c0b1c6ab05b-13bfaec24ee3f85f"]},"geometry":{"type":"LineString","coordinates":[[-83.66914200000001,32.798969],[-83.66913000000001,32.798676],[-83.66914100000001,32.798582],[-83.669195,32.798433],[-83.669234,32.798361],[-83.66934300000001,32.798228],[-83.669391,32.798183],[-83.669556,32.798063],[-83.66968200000001,32.798007000000005],[-83.669786,32.797973],[-83.66987800000001,32.797952],[-83.669949,32.797942],[-83.670073,32.797936],[-83.670309,32.797944],[-83.67199500000001,32.797967]]},"id":"8844c0b1c7fffff-17b7ebea537b1983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6503666,32.8474862]},"id":"8f44c0a35c82c8e-17befc98eecee736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649918,32.848514]},"id":"8f44c0a35c9abb4-13b7ddb14a13d530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c82c8e-17befc98eecee736","8f44c0a35c9abb4-13b7ddb14a13d530"]},"geometry":{"type":"LineString","coordinates":[[-83.6503666,32.8474862],[-83.649918,32.848514]]},"id":"8944c0a35cbffff-13f6dd25166e1984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734189,32.854400000000005]},"id":"8f44c0b56484768-13960ff3ec8309e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732855,32.854400000000005]},"id":"8f44c0b56490913-13961335a439c754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56490913-13961335a439c754","8f44c0b56484768-13960ff3ec8309e6"]},"geometry":{"type":"LineString","coordinates":[[-83.734189,32.854400000000005],[-83.73316000000001,32.854397],[-83.732855,32.854400000000005]]},"id":"8944c0b564bffff-139f1194c561b1ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65965100000001,32.808735]},"id":"8f44c0b185ae055-1397e5ee26865138"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66077100000001,32.809766]},"id":"8f44c0b18434315-1397c3322f024c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185ae055-1397e5ee26865138","8f44c0b18434315-1397c3322f024c04"]},"geometry":{"type":"LineString","coordinates":[[-83.65965100000001,32.808735],[-83.66065900000001,32.808746],[-83.660735,32.808752000000005],[-83.66077,32.808777],[-83.66079400000001,32.808816],[-83.660803,32.808895],[-83.66077100000001,32.809766]]},"id":"8844c0b185fffff-13b6d3e5d38865e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562934,32.846291]},"id":"8f44c0b88cb1a2d-17d7f20e4a07e238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562532,32.845892]},"id":"8f44c0b88cb0b14-13dfb309820f1e80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88cb0b14-13dfb309820f1e80","8f44c0b88cb1a2d-17d7f20e4a07e238"]},"geometry":{"type":"LineString","coordinates":[[-83.562934,32.846291],[-83.562532,32.845892]]},"id":"8a44c0b88cb7fff-13d7b28be31ba4df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699629,32.869168]},"id":"8f44c0a200cd4a9-179e6453e93d5f74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69862470000001,32.8681807]},"id":"8f44c0a200c0476-13b6f6c790f93b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a200c0476-13b6f6c790f93b34","8f44c0a200cd4a9-179e6453e93d5f74"]},"geometry":{"type":"LineString","coordinates":[[-83.699629,32.869168],[-83.699177,32.868791],[-83.698982,32.868584000000006],[-83.698892,32.868477],[-83.69862470000001,32.8681807]]},"id":"8944c0a200fffff-13f6f59898cbf7ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69854500000001,32.868590000000005]},"id":"8f44c0a200c3541-13b6e6f966cf128b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a200c3541-13b6e6f966cf128b","8f44c0a200c0476-13b6f6c790f93b34"]},"geometry":{"type":"LineString","coordinates":[[-83.69854500000001,32.868590000000005],[-83.6986323,32.868446],[-83.6986492,32.868402200000006],[-83.69865890000001,32.8683569],[-83.69866110000001,32.8683118],[-83.698656,32.8682668],[-83.6986438,32.868222800000005],[-83.69862470000001,32.8681807]]},"id":"8a44c0a200c7fff-13be66c68eadd02b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684233,32.739108]},"id":"8f44c0b06d1948c-179689ea663633be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6841856,32.740753600000005]},"id":"8f44c0b06c00b34-139f8a080d97fcc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06c00b34-139f8a080d97fcc1","8f44c0b06d1948c-179689ea663633be"]},"geometry":{"type":"LineString","coordinates":[[-83.684233,32.739108],[-83.684178,32.739407],[-83.684161,32.739562],[-83.68415300000001,32.739767],[-83.6841856,32.740753600000005]]},"id":"8844c0b06dfffff-1397ea0ef574fe4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679061,32.884104]},"id":"8f44c0a04941931-1397968ae40c6d69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6813999,32.887191900000005]},"id":"8f44c0a2348e210-139ef0d514dd5e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2348e210-139ef0d514dd5e00","8f44c0a04941931-1397968ae40c6d69"]},"geometry":{"type":"LineString","coordinates":[[-83.679061,32.884104],[-83.679247,32.884385],[-83.679328,32.884542],[-83.679381,32.884635],[-83.67941300000001,32.884712],[-83.67945200000001,32.884846],[-83.679468,32.884957],[-83.679461,32.885044],[-83.67947000000001,32.885312],[-83.67945900000001,32.885413],[-83.679455,32.885498000000005],[-83.679461,32.88557],[-83.67947500000001,32.88563],[-83.67959900000001,32.885685],[-83.679834,32.885731],[-83.68003200000001,32.885702],[-83.680136,32.885683],[-83.680243,32.885683],[-83.68034700000001,32.885703],[-83.68044300000001,32.885741],[-83.68052800000001,32.885796],[-83.680597,32.885863],[-83.68064700000001,32.885944],[-83.680676,32.886031],[-83.680672,32.886187],[-83.681048,32.886735],[-83.6813999,32.887191900000005]]},"id":"8644c0a27ffffff-17f6d3f4e4a6850f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70754600000001,32.794739]},"id":"8f44c0b03261c5c-17f7f0ffc0b8f628"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70806900000001,32.794783]},"id":"8f44c0b0ec920e1-17976fb8ececf917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec920e1-17976fb8ececf917","8f44c0b03261c5c-17f7f0ffc0b8f628"]},"geometry":{"type":"LineString","coordinates":[[-83.70754600000001,32.794739],[-83.70802,32.794756],[-83.70806900000001,32.794783]]},"id":"8944c0b0327ffff-17fef05a66c13456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6277807,32.8739103]},"id":"8f44c0a33c66d60-17b7f3bd18c516fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6280807,32.873917]},"id":"8f44c0a33c64502-17b73301998e5996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33c64502-17b73301998e5996","8f44c0a33c66d60-17b7f3bd18c516fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6277807,32.8739103],[-83.6278698,32.8739271],[-83.6279255,32.873930200000004],[-83.6279738,32.8739332],[-83.6280158,32.873928400000004],[-83.6280807,32.873917]]},"id":"8844c0a33dfffff-17bf535f646ba467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73665100000001,32.883705]},"id":"8f44c0b5260d55c-179fa9f12bc3d81b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7360436,32.882658]},"id":"8f44c0b52605471-179f4b6cc65d6d00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52605471-179f4b6cc65d6d00","8f44c0b5260d55c-179fa9f12bc3d81b"]},"geometry":{"type":"LineString","coordinates":[[-83.73665100000001,32.883705],[-83.736548,32.883555],[-83.73640400000001,32.88333],[-83.73616100000001,32.882882],[-83.7360436,32.882658]]},"id":"8944c0b5263ffff-17defab686cff4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71900500000001,32.812911]},"id":"8f44c0b0a92d50a-13d77505e2fdcbf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719023,32.81065]},"id":"8f44c0b0e28c336-17d674faa3b13536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b0e28c336-17d674faa3b13536","8f44c0b0a92d50a-13d77505e2fdcbf5"]},"geometry":{"type":"LineString","coordinates":[[-83.71900500000001,32.812911],[-83.7189855,32.812820200000004],[-83.71897,32.812676],[-83.719007,32.811611],[-83.719023,32.81065]]},"id":"8744c0b0effffff-1397b5097439c080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64746500000001,32.854109]},"id":"8f44c0a354ac222-17dee3ae6c2228ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648127,32.854129]},"id":"8f44c0a3541eccb-17f6e210ad432fac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a354ac222-17dee3ae6c2228ff","8f44c0a3541eccb-17f6e210ad432fac"]},"geometry":{"type":"LineString","coordinates":[[-83.64746500000001,32.854109],[-83.648127,32.854129]]},"id":"8844c0a355fffff-17f6e2df88dced71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612666,32.847417]},"id":"8f44c0a36702096-1797b8a3cea1aff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614327,32.847422]},"id":"8f44c0a367284aa-1797f495a183c4b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36702096-1797b8a3cea1aff8","8f44c0a367284aa-1797f495a183c4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.612666,32.847417],[-83.614327,32.847422]]},"id":"8944c0a3673ffff-1797369cb4feb983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705144,32.820808]},"id":"8f44c0b0a546cf1-179f56dd026cb19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704487,32.821275]},"id":"8f44c0b0a551d9a-17b6f877abe05051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a546cf1-179f56dd026cb19f","8f44c0b0a551d9a-17b6f877abe05051"]},"geometry":{"type":"LineString","coordinates":[[-83.705144,32.820808],[-83.704487,32.821275]]},"id":"8944c0b0a57ffff-179ef7aa555d09a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629624,32.819453]},"id":"8f44c0ba9bb40c8-13bf2f3d0b9ac864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9ba02d2-17f74c3a6cff4d4c","8f44c0ba9bb40c8-13bf2f3d0b9ac864"]},"geometry":{"type":"LineString","coordinates":[[-83.630857,32.82013],[-83.62979200000001,32.819567],[-83.629728,32.819528000000005],[-83.629624,32.819453]]},"id":"8944c0ba9bbffff-1397fdbeed4612b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66073800000001,32.837262]},"id":"8f44c0b1b701b99-17bec346cd569f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662485,32.837271]},"id":"8f44c0b1b0da141-17beff02e0579b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b701b99-17bec346cd569f5c","8f44c0b1b0da141-17beff02e0579b07"]},"geometry":{"type":"LineString","coordinates":[[-83.66073800000001,32.837262],[-83.662485,32.837271]]},"id":"8844c0b1b7fffff-17bfd124d2186ce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76895400000001,32.859413]},"id":"8f44c0b5466b2cc-17ddbb13cb9d6e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7685484,32.8600067]},"id":"8f44c0b54649193-17d5bc114560fb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5466b2cc-17ddbb13cb9d6e66","8f44c0b54649193-17d5bc114560fb9f"]},"geometry":{"type":"LineString","coordinates":[[-83.76895400000001,32.859413],[-83.7685484,32.8600067]]},"id":"8944c0b5467ffff-1797bb92893dcff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697068,32.742207]},"id":"8f44c0b0694b996-17b76a948f046ed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6952603,32.7422088]},"id":"8f44c0b06874d61-17beeefe5d0a3af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0694b996-17b76a948f046ed6","8f44c0b06874d61-17beeefe5d0a3af7"]},"geometry":{"type":"LineString","coordinates":[[-83.697068,32.742207],[-83.6952603,32.7422088]]},"id":"8844c0b069fffff-17b7fcc9750d4d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690876,32.74248]},"id":"8f44c0b068aa861-17d679b287283d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693835,32.742507]},"id":"8f44c0b0680c6c9-17f6f2792820ecc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0680c6c9-17f6f2792820ecc2","8f44c0b068aa861-17d679b287283d48"]},"geometry":{"type":"LineString","coordinates":[[-83.690876,32.74248],[-83.693835,32.742507]]},"id":"8844c0b069fffff-17de7615df7abdec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675679,32.740104]},"id":"8f44c0b3322a816-13979ecca946bdbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68311100000001,32.740639]},"id":"8f44c0b06c150ab-13d7eca7a23cdefd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b3322a816-13979ecca946bdbf","8f44c0b06c150ab-13d7eca7a23cdefd"]},"geometry":{"type":"LineString","coordinates":[[-83.675679,32.740104],[-83.675887,32.740125],[-83.68311100000001,32.740639]]},"id":"8644c0b37ffffff-13be95ba5abec7b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68120900000001,32.874315]},"id":"8f44c0a22304d50-13bef14c67f2d277"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681871,32.87256]},"id":"8f44c0a22a9d92a-17f68faea8fef287"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22304d50-13bef14c67f2d277","8f44c0a22a9d92a-17f68faea8fef287"]},"geometry":{"type":"LineString","coordinates":[[-83.68120900000001,32.874315],[-83.68104500000001,32.873849],[-83.680957,32.873562],[-83.680943,32.873481000000005],[-83.680943,32.873403],[-83.68097300000001,32.873314],[-83.68101800000001,32.873241],[-83.68108600000001,32.873157],[-83.68115,32.873089],[-83.681229,32.873029],[-83.68133,32.872973],[-83.681487,32.872898],[-83.681644,32.872829],[-83.68173800000001,32.872766],[-83.68180100000001,32.872701],[-83.68186,32.872576],[-83.681871,32.87256]]},"id":"8744c0a22ffffff-17d791327ff7863e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661432,32.83086]},"id":"8f44c0b1b182c75-1797c1950aefa687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66265800000001,32.830869]},"id":"8f44c0b1b185a59-179fbe96c0f01d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b185a59-179fbe96c0f01d5f","8f44c0b1b182c75-1797c1950aefa687"]},"geometry":{"type":"LineString","coordinates":[[-83.661432,32.83086],[-83.66265800000001,32.830869]]},"id":"8944c0b1b1bffff-179ed015ee2e45ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6271426,32.8470485]},"id":"8f44c0a36aec559-179f554bec1378f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62763430000001,32.846457300000004]},"id":"8f44c0a36a50581-17bfd418923e07d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36aec559-179f554bec1378f3","8f44c0a36a50581-17bfd418923e07d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6271426,32.8470485],[-83.62763430000001,32.846457300000004]]},"id":"8844c0a36bfffff-17f794b242ee9226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653183,32.860618]},"id":"8f44c0a356069a1-17bed5b8aa1f487d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65653800000001,32.860152]},"id":"8f44c0a35746049-179fcd87ca37a8af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35746049-179fcd87ca37a8af","8f44c0a356069a1-17bed5b8aa1f487d"]},"geometry":{"type":"LineString","coordinates":[[-83.653183,32.860618],[-83.65326900000001,32.860689],[-83.653388,32.860776],[-83.653441,32.860796],[-83.65353300000001,32.860805],[-83.65371300000001,32.86077],[-83.655686,32.860328],[-83.65653800000001,32.860152]]},"id":"8844c0a357fffff-17fed1aeb6e99d76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73301280000001,32.8352404]},"id":"8f44c0b0b8c3d9c-13df52d30c6c3138"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b8c3d9c-13df52d30c6c3138","8f44c0b0b3618a6-13bfa74881af9991"]},"geometry":{"type":"LineString","coordinates":[[-83.73774,32.844825],[-83.73758500000001,32.844599],[-83.737521,32.84449],[-83.737465,32.844377],[-83.737342,32.844039],[-83.73707300000001,32.842844],[-83.73699900000001,32.842573],[-83.73688,32.842261],[-83.73675700000001,32.842034000000005],[-83.736636,32.84183],[-83.73654,32.84169],[-83.736492,32.841603],[-83.73634700000001,32.841306],[-83.736293,32.841122],[-83.736174,32.840713],[-83.736097,32.840485],[-83.735786,32.839903],[-83.735236,32.838859],[-83.73485600000001,32.83812],[-83.734609,32.837669000000005],[-83.73439300000001,32.837201],[-83.734218,32.836757],[-83.73397100000001,32.836106],[-83.73382600000001,32.835816],[-83.7337181,32.8356835],[-83.733439,32.8354754],[-83.7332423,32.8353587],[-83.73301280000001,32.8352404]]},"id":"8744c0b0bffffff-179f4c69f7824338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734226,32.845625000000005]},"id":"8f44c0b0b221cc6-13b7afdcc2f03748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b221cc6-13b7afdcc2f03748","8f44c0b0b3618a6-13bfa74881af9991"]},"geometry":{"type":"LineString","coordinates":[[-83.734226,32.845625000000005],[-83.73443400000001,32.845712],[-83.734834,32.845722],[-83.735173,32.845698],[-83.735276,32.845678],[-83.735422,32.845623],[-83.735584,32.84555],[-83.735641,32.845506],[-83.735836,32.845322],[-83.73600400000001,32.845202],[-83.736142,32.84514],[-83.736281,32.845104],[-83.73644200000001,32.845087],[-83.736655,32.845087],[-83.73689900000001,32.845081],[-83.73725400000001,32.845053],[-83.737403,32.845036],[-83.737485,32.845011],[-83.737651,32.844937],[-83.737682,32.844907],[-83.73774,32.844825]]},"id":"8844c0b0b3fffff-13febb89025a5151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6196118,32.867259700000005]},"id":"8f44c0a32af5522-17f777aead3ebf0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61635100000001,32.86987]},"id":"8f44c0a32303674-17d7efa4a2d14986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32af5522-17f777aead3ebf0c","8f44c0a32303674-17d7efa4a2d14986"]},"geometry":{"type":"LineString","coordinates":[[-83.6196118,32.867259700000005],[-83.61913700000001,32.867646],[-83.618615,32.868097],[-83.617089,32.869349],[-83.61673800000001,32.869629],[-83.61650900000001,32.869777],[-83.61635100000001,32.86987]]},"id":"8744c0a32ffffff-13b76b9da5c3c29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65558370000001,32.7400942]},"id":"8f44c0b14ae6594-13feefdc31882310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65295,32.740129]},"id":"8f44c0b14a9daed-1396f64a4a6232df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14ae6594-13feefdc31882310","8f44c0b14a9daed-1396f64a4a6232df"]},"geometry":{"type":"LineString","coordinates":[[-83.65558370000001,32.7400942],[-83.653655,32.740102],[-83.65295,32.740129]]},"id":"8844c0b14bfffff-1396d3135558d455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673235,32.83184]},"id":"8f44c0b1bb1ac34-13fea4c423115613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67328900000001,32.82902]},"id":"8f44c0b1b86b9ae-139fa4a26c7ce18a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb1ac34-13fea4c423115613","8f44c0b1b86b9ae-139fa4a26c7ce18a"]},"geometry":{"type":"LineString","coordinates":[[-83.673235,32.83184],[-83.673292,32.829701],[-83.67328900000001,32.82902]]},"id":"8744c0b1bffffff-179ef4ae4838297d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65199700000001,32.835695]},"id":"8f44c0a34b216c5-13f7f89de16d42ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653486,32.836556]},"id":"8f44c0b1b4dbd24-17ffd4fb417f0560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4dbd24-17ffd4fb417f0560","8f44c0a34b216c5-13f7f89de16d42ac"]},"geometry":{"type":"LineString","coordinates":[[-83.65199700000001,32.835695],[-83.65255400000001,32.835988],[-83.65301600000001,32.836286],[-83.65331300000001,32.836466],[-83.653486,32.836556]]},"id":"8844c0a34bfffff-13fef6ca752cc392"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68659500000001,32.792073]},"id":"8f44c0b1ca2b528-17f7a4262371ff44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685635,32.791552]},"id":"8f44c0b1ca008ca-17b6867e28f60008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca008ca-17b6867e28f60008","8f44c0b1ca2b528-17f7a4262371ff44"]},"geometry":{"type":"LineString","coordinates":[[-83.68659500000001,32.792073],[-83.685635,32.791552]]},"id":"8944c0b1ca3ffff-17d6d5522646fdda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65507000000001,32.756341]},"id":"8f44c0b154c122a-13bff11d407034b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65601600000001,32.75611]},"id":"8f44c0b154e8222-139ecece0d383166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154c122a-13bff11d407034b5","8f44c0b154e8222-139ecece0d383166"]},"geometry":{"type":"LineString","coordinates":[[-83.65507000000001,32.756341],[-83.65510400000001,32.756332],[-83.655403,32.756324],[-83.655574,32.756304],[-83.65567700000001,32.756278],[-83.655758,32.756245],[-83.65601600000001,32.75611]]},"id":"8944c0b154fffff-13ffefedf2172bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669341,32.826015000000005]},"id":"8f44c0b1b806b11-13d7ee45ee19fce0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669416,32.823134]},"id":"8f44c0b1b915549-13beee17040f607d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b806b11-13d7ee45ee19fce0","8f44c0b1b915549-13beee17040f607d"]},"geometry":{"type":"LineString","coordinates":[[-83.669341,32.826015000000005],[-83.669364,32.825145],[-83.66938800000001,32.824224],[-83.669416,32.823134]]},"id":"8844c0b1b9fffff-17bfbe2e5ae1b2d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67625600000001,32.811577]},"id":"8f44c0b18b987a8-1797bd640b3fb615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674013,32.814011]},"id":"8f44c0b1806eba0-17f6e2dded6d9d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18b987a8-1797bd640b3fb615","8f44c0b1806eba0-17f6e2dded6d9d12"]},"geometry":{"type":"LineString","coordinates":[[-83.67625600000001,32.811577],[-83.67613200000001,32.811739],[-83.67602000000001,32.811864],[-83.675909,32.811962],[-83.675782,32.812061],[-83.675641,32.812163000000005],[-83.675483,32.812261],[-83.67502300000001,32.812503],[-83.674728,32.812702],[-83.67451700000001,32.812872],[-83.674395,32.812987],[-83.674182,32.813221],[-83.674036,32.813473],[-83.674019,32.813556000000005],[-83.674013,32.814011]]},"id":"8744c0b18ffffff-13bfe096ddc30dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70244100000001,32.889136]},"id":"8f44c0a23ae2826-17de5d766ecaaab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698845,32.890929]},"id":"8f44c0a23300a84-13bee63dec142ccf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23ae2826-17de5d766ecaaab3","8f44c0a23300a84-13bee63dec142ccf"]},"geometry":{"type":"LineString","coordinates":[[-83.70244100000001,32.889136],[-83.702342,32.88917],[-83.702252,32.889229],[-83.701914,32.889477],[-83.701549,32.889736],[-83.70140400000001,32.889825],[-83.701155,32.889952],[-83.70088200000001,32.890075],[-83.700519,32.890224],[-83.698845,32.890929]]},"id":"8744c0a23ffffff-17bee1c13d6dc6a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691393,32.780389]},"id":"8f44c0b035359a1-13df786f6dd34f91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911481,32.7806316]},"id":"8f44c0b035354ec-13f6f90878109745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b035359a1-13df786f6dd34f91","8f44c0b035354ec-13f6f90878109745"]},"geometry":{"type":"LineString","coordinates":[[-83.691393,32.780389],[-83.6911481,32.7806316]]},"id":"8b44c0b03535fff-13bef8bbe0676a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71566800000001,32.794196]},"id":"8f44c0b0ed58431-1796bd2b8b0bd857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71516700000001,32.794289]},"id":"8f44c0b0ed5a58d-17debe64a2ef7fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed5a58d-17debe64a2ef7fb7","8f44c0b0ed58431-1796bd2b8b0bd857"]},"geometry":{"type":"LineString","coordinates":[[-83.71566800000001,32.794196],[-83.71516700000001,32.794289]]},"id":"8944c0b0ed7ffff-17b7bdc819dfea50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554281,32.835324]},"id":"8f44c0b8e101346-13ffc72e6a6dd779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55525300000001,32.835549]},"id":"8f44c0b8e176d19-139fe4cee25289c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e176d19-139fe4cee25289c9","8f44c0b8e101346-13ffc72e6a6dd779"]},"geometry":{"type":"LineString","coordinates":[[-83.554281,32.835324],[-83.554342,32.835389],[-83.554404,32.835434],[-83.554518,32.83547],[-83.55456000000001,32.835479],[-83.554586,32.835486],[-83.554703,32.83549],[-83.554941,32.835507],[-83.55525300000001,32.835549]]},"id":"8944c0b8e13ffff-13dff60aaeb89fd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615127,32.853901]},"id":"8f44c0a3664a300-17df32a1aac95d79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61511200000001,32.85481]},"id":"8f44c0a329a1d73-139772ab064e4e25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329a1d73-139772ab064e4e25","8f44c0a3664a300-17df32a1aac95d79"]},"geometry":{"type":"LineString","coordinates":[[-83.615127,32.853901],[-83.615131,32.8545],[-83.61511200000001,32.85481]]},"id":"8844c0a329fffff-17f772a20841cf5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655091,32.834638000000005]},"id":"8f44c0b1b4e3930-17d6d1102a907680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4f3c8d-17d7f4ddefd6ac05","8f44c0b1b4e3930-17d6d1102a907680"]},"geometry":{"type":"LineString","coordinates":[[-83.65353300000001,32.834623],[-83.65361100000001,32.834601],[-83.654227,32.83462],[-83.655091,32.834638000000005]]},"id":"8944c0b1b4fffff-17d6d2f7f36be043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70273900000001,32.861252]},"id":"8f44c0a208d0b0d-13dedcbc20a2116a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7020806,32.861427400000004]},"id":"8f44c0a208d2040-13be7e57aae3cd5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208d2040-13be7e57aae3cd5a","8f44c0a208d0b0d-13dedcbc20a2116a"]},"geometry":{"type":"LineString","coordinates":[[-83.70273900000001,32.861252],[-83.702217,32.861382],[-83.7020806,32.861427400000004]]},"id":"8a44c0a208d7fff-13fefd8aa8b536eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736265,32.753552]},"id":"8f44c0b05870170-13de0ae26d9a36a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b05870170-13de0ae26d9a36a9","8f44c0b0580a6a8-13d76fc28ce8683d"]},"geometry":{"type":"LineString","coordinates":[[-83.734268,32.753743],[-83.735399,32.753585],[-83.73563800000001,32.753565],[-83.736265,32.753552]]},"id":"8844c0b059fffff-1396cd53dd93646a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.748761,32.875501]},"id":"8f44c0b52b8da56-1395ec606b7e051a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.747573,32.875878]},"id":"8f44c0b52aa4914-17ffef46e6dc21cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52b8da56-1395ec606b7e051a","8f44c0b52aa4914-17ffef46e6dc21cb"]},"geometry":{"type":"LineString","coordinates":[[-83.748761,32.875501],[-83.748552,32.875663],[-83.748377,32.875769000000005],[-83.74821200000001,32.875843],[-83.748056,32.875895],[-83.74798100000001,32.875915],[-83.747922,32.875922],[-83.747573,32.875878]]},"id":"8944c0b52bbffff-17ddedc25210559a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73043700000001,32.921097]},"id":"8f44c0a2805e831-13f7b91ceffdc952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730877,32.921728]},"id":"8f44c0a2805836b-17f61809e3466782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2805e831-13f7b91ceffdc952","8f44c0a2805836b-17f61809e3466782"]},"geometry":{"type":"LineString","coordinates":[[-83.73043700000001,32.921097],[-83.730877,32.921728]]},"id":"8a44c0a2805ffff-13bed89366e37a85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69316900000001,32.82914]},"id":"8f44c0b19a95944-13f6f41965def3e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69511200000001,32.828843]},"id":"8f44c0b19aa1b1c-13beef5b0d4f81ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a95944-13f6f41965def3e5","8f44c0b19aa1b1c-13beef5b0d4f81ee"]},"geometry":{"type":"LineString","coordinates":[[-83.69316900000001,32.82914],[-83.69359,32.829143],[-83.69400900000001,32.829152],[-83.69436300000001,32.829152],[-83.69448600000001,32.829147],[-83.694602,32.829122000000005],[-83.694698,32.829082],[-83.69511200000001,32.828843]]},"id":"8944c0b19abffff-13dff1a97f27dea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.593585,32.857348]},"id":"8f44c0b8d293b71-17d7e73966c26092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591333,32.858206]},"id":"8f44c0b8d643150-13dfecb8e4e20399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d643150-13dfecb8e4e20399","8f44c0b8d293b71-17d7e73966c26092"]},"geometry":{"type":"LineString","coordinates":[[-83.593585,32.857348],[-83.59342600000001,32.857306],[-83.59330200000001,32.857284],[-83.592752,32.857174],[-83.59182600000001,32.856997],[-83.59169,32.856983],[-83.591637,32.857024],[-83.59161200000001,32.857062],[-83.591576,32.857149],[-83.59150700000001,32.857362],[-83.591465,32.85755],[-83.591412,32.857754],[-83.591333,32.858206]]},"id":"8744c0b8dffffff-17b77aad940dafa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58673200000001,32.866954]},"id":"8f44c0b891a1b8b-17b777f483ccd30b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584871,32.866945]},"id":"8f44c0b891b314e-17b7fc7fac695dfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b891b314e-17b7fc7fac695dfd","8f44c0b891a1b8b-17b777f483ccd30b"]},"geometry":{"type":"LineString","coordinates":[[-83.58673200000001,32.866954],[-83.584871,32.866945]]},"id":"8944c0b891bffff-17b77a3a1847b43d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59144900000001,32.853109]},"id":"8f44c0b8d72928e-17ff6c7064777489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590986,32.853147]},"id":"8f44c0b8d72b38e-1797ed91c1a001f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d72928e-17ff6c7064777489","8f44c0b8d72b38e-1797ed91c1a001f2"]},"geometry":{"type":"LineString","coordinates":[[-83.59144900000001,32.853109],[-83.591183,32.853136],[-83.590986,32.853147]]},"id":"8944c0b8d73ffff-17f7ed00f28761f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67463000000001,32.832662]},"id":"8f44c0b1ba24300-13ffe15c40538ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676123,32.832642]},"id":"8f44c0b1bb734ce-13f7ddb72377971d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba24300-13ffe15c40538ade","8f44c0b1bb734ce-13f7ddb72377971d"]},"geometry":{"type":"LineString","coordinates":[[-83.67463000000001,32.832662],[-83.675589,32.83265],[-83.676123,32.832642]]},"id":"8844c0b1bbfffff-13f7df89b1aa8612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634707,32.839995]},"id":"8f44c0a34441919-17f7e2d42a7834bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63434600000001,32.839802]},"id":"8f44c0a34440b96-17ff43b5c5c8f9bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34441919-17f7e2d42a7834bb","8f44c0a34440b96-17ff43b5c5c8f9bf"]},"geometry":{"type":"LineString","coordinates":[[-83.634707,32.839995],[-83.634549,32.83992],[-83.63434600000001,32.839802]]},"id":"8a44c0a34447fff-17bfe3462076b7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71436,32.797184]},"id":"8f44c0b0eced36b-17f6405d008a09d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7177822,32.796312]},"id":"8f44c0b0ec6db59-13bf38022b916abd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec6db59-13bf38022b916abd","8f44c0b0eced36b-17f6405d008a09d0"]},"geometry":{"type":"LineString","coordinates":[[-83.71436,32.797184],[-83.714673,32.797083],[-83.714771,32.797055],[-83.716024,32.796754],[-83.716645,32.796591],[-83.717247,32.796442],[-83.7175,32.796386000000005],[-83.717611,32.796351],[-83.7177822,32.796312]]},"id":"8744c0b0effffff-13df7c314fe3b52d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.751968,32.828283]},"id":"8f44c0b09c6e2c8-13dde48c07d90364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.749409,32.827965]},"id":"8f44c0b09c5634e-1797eacb6b37342f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c5634e-1797eacb6b37342f","8f44c0b09c6e2c8-13dde48c07d90364"]},"geometry":{"type":"LineString","coordinates":[[-83.751968,32.828283],[-83.751484,32.828313],[-83.751389,32.828305],[-83.75071100000001,32.82813],[-83.750285,32.828035],[-83.74992300000001,32.827985000000005],[-83.749409,32.827965]]},"id":"8944c0b09c7ffff-17f5e7aa81ef23c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76137100000001,32.857867]},"id":"8f44c0b5469d530-1397ed972aed32f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76346550000001,32.8583093]},"id":"8f44c0b546f048e-139fd87a11f0481c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b546f048e-139fd87a11f0481c","8f44c0b5469d530-1397ed972aed32f2"]},"geometry":{"type":"LineString","coordinates":[[-83.76137100000001,32.857867],[-83.761538,32.85792],[-83.76217000000001,32.858203],[-83.762313,32.858257],[-83.762465,32.858297],[-83.76263800000001,32.858324],[-83.762809,32.858338],[-83.762966,32.858331],[-83.763259,32.858286],[-83.763344,32.858291],[-83.76346550000001,32.8583093]]},"id":"8844c0b547fffff-13d5eb13e4a76065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61772900000001,32.863988]},"id":"8f44c0a32b9c2ed-17ffac476ff147c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618436,32.864154]},"id":"8f44c0a32b8e665-17f76a8d8b022376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b8e665-17f76a8d8b022376","8f44c0a32b9c2ed-17ffac476ff147c7"]},"geometry":{"type":"LineString","coordinates":[[-83.61772900000001,32.863988],[-83.61779800000001,32.863995],[-83.618261,32.864111],[-83.618436,32.864154]]},"id":"8944c0a32bbffff-17bfeb6a09e5e919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61336680000001,32.8539371]},"id":"8f44c0a366e9342-17ffb6edc7a48aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6133549,32.854445600000005]},"id":"8f44c0a329b0cf1-13bfb6f53a01402e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329b0cf1-13bfb6f53a01402e","8f44c0a366e9342-17ffb6edc7a48aed"]},"geometry":{"type":"LineString","coordinates":[[-83.61336680000001,32.8539371],[-83.6133549,32.854445600000005]]},"id":"8a44c0a329b7fff-179fb6f17a4fa0d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67178600000001,32.800545]},"id":"8f44c0b1c6e89b1-1796a84dcf4c4a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673263,32.801577]},"id":"8f44c0b189a61ab-179fa4b2a1bdbcce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6e89b1-1796a84dcf4c4a9a","8f44c0b189a61ab-179fa4b2a1bdbcce"]},"geometry":{"type":"LineString","coordinates":[[-83.67178600000001,32.800545],[-83.67222100000001,32.800372],[-83.672363,32.800311],[-83.67268,32.800157],[-83.672881,32.800074],[-83.67291800000001,32.800063],[-83.672956,32.800058],[-83.672998,32.80006],[-83.673055,32.800071],[-83.673117,32.800097],[-83.673175,32.800142],[-83.673224,32.80021],[-83.673237,32.800241],[-83.673248,32.800283],[-83.673266,32.800984],[-83.673263,32.801577]]},"id":"8644c0b1fffffff-179fe5ad50ccd725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65433,32.80451]},"id":"8f44c0b1e2aa572-17d6d2ebcc779d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65569400000001,32.806275]},"id":"8f44c0b1e2c656b-1397ef97400910c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2aa572-17d6d2ebcc779d11","8f44c0b1e2c656b-1397ef97400910c7"]},"geometry":{"type":"LineString","coordinates":[[-83.65433,32.80451],[-83.654337,32.804687],[-83.65435000000001,32.80473],[-83.65439900000001,32.804837],[-83.654443,32.804903],[-83.654588,32.805093],[-83.655105,32.80572],[-83.65533900000001,32.806012],[-83.655499,32.806157],[-83.65559400000001,32.806224],[-83.65569400000001,32.806275]]},"id":"8844c0b1e3fffff-1396d17f227f0ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69720650000001,32.8625196]},"id":"8f44c0a201840d8-13f6ea3df39703d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69781180000001,32.862522600000005]},"id":"8f44c0a201a320b-13f6e8c3a32f9be1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201840d8-13f6ea3df39703d1","8f44c0a201a320b-13f6e8c3a32f9be1"]},"geometry":{"type":"LineString","coordinates":[[-83.69720650000001,32.8625196],[-83.69781180000001,32.862522600000005]]},"id":"8944c0a201bffff-13f7f980df8f5e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65915100000001,32.873863]},"id":"8f44c0a31b80d9e-1796e726abbcf05f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659097,32.874274]},"id":"8f44c0a31b83d1e-1397c748678cd5ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b80d9e-1796e726abbcf05f","8f44c0a31b83d1e-1397c748678cd5ba"]},"geometry":{"type":"LineString","coordinates":[[-83.65915100000001,32.873863],[-83.659092,32.87389],[-83.65906100000001,32.873920000000005],[-83.65904,32.873973],[-83.65903700000001,32.874026],[-83.659048,32.874105],[-83.659075,32.874212],[-83.659097,32.874274]]},"id":"8a44c0a31b87fff-139fc75aed7d3519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737312,32.856762]},"id":"8f44c0b564ee4a3-17d6485407d51765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73514700000001,32.859509]},"id":"8f44c0a25b73352-179f2d9d297cbfcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b564ee4a3-17d6485407d51765","8f44c0a25b73352-179f2d9d297cbfcb"]},"geometry":{"type":"LineString","coordinates":[[-83.737312,32.856762],[-83.73700500000001,32.857245],[-83.73689900000001,32.857396],[-83.73677500000001,32.857546],[-83.73640900000001,32.857883],[-83.735386,32.858748],[-83.735302,32.858845],[-83.73523300000001,32.858963],[-83.73520500000001,32.859039],[-83.735167,32.859209],[-83.73514700000001,32.859509]]},"id":"8644c0b57ffffff-139e2b2eb449598b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73575600000001,32.86066]},"id":"8f44c0a25b4325c-17de8c208a71bbf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25b73352-179f2d9d297cbfcb","8f44c0a25b4325c-17de8c208a71bbf7"]},"geometry":{"type":"LineString","coordinates":[[-83.73514700000001,32.859509],[-83.73522100000001,32.859513],[-83.73532700000001,32.859535],[-83.735409,32.859568],[-83.735473,32.859599],[-83.735535,32.859636],[-83.73557600000001,32.859668],[-83.735633,32.859721],[-83.735687,32.859789],[-83.735732,32.859879],[-83.73575600000001,32.859954],[-83.735764,32.860022],[-83.735752,32.860506],[-83.73575600000001,32.86066]]},"id":"8944c0a25b7ffff-17b7ac74ec3ad5c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735904,32.861160000000005]},"id":"8f44c0a25b4a12b-13970bc407801917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25b4a12b-13970bc407801917","8f44c0a25b4325c-17de8c208a71bbf7"]},"geometry":{"type":"LineString","coordinates":[[-83.735904,32.861160000000005],[-83.73584100000001,32.860985],[-83.73575600000001,32.86066]]},"id":"8944c0a25b7ffff-17f7cbf5743c6caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653788,32.815201]},"id":"8f44c0b1ab848de-13def43e88494b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65458000000001,32.816536]},"id":"8f44c0b1ab8dc1c-139fd24f8b7bf76f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab848de-13def43e88494b09","8f44c0b1ab8dc1c-139fd24f8b7bf76f"]},"geometry":{"type":"LineString","coordinates":[[-83.653788,32.815201],[-83.6538,32.815052],[-83.65383100000001,32.814959],[-83.653959,32.814798],[-83.65406300000001,32.814725],[-83.654183,32.814672],[-83.65431500000001,32.814653],[-83.654499,32.814662000000006],[-83.65459800000001,32.814692],[-83.654711,32.814749],[-83.654779,32.814794],[-83.654854,32.814869],[-83.654904,32.814979],[-83.65493000000001,32.815067],[-83.654937,32.815129],[-83.654914,32.815258],[-83.65487800000001,32.815365],[-83.654735,32.815649],[-83.654646,32.815871],[-83.654618,32.815981],[-83.654601,32.816158],[-83.65458000000001,32.816536]]},"id":"8944c0b1abbffff-1396f27946ae2aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64374500000001,32.846773]},"id":"8f44c0a342adae3-17f7ecc365af4561"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64333400000001,32.847305]},"id":"8f44c0a342a9619-17bfedc4479fc6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342a9619-17bfedc4479fc6a8","8f44c0a342adae3-17f7ecc365af4561"]},"geometry":{"type":"LineString","coordinates":[[-83.64374500000001,32.846773],[-83.64333400000001,32.847305]]},"id":"8a44c0a342affff-1797ed43d905f4e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64395300000001,32.846897000000006]},"id":"8f44c0a3421a8b1-17beec416c49397e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644461,32.846251]},"id":"8f44c0a3421cd26-17beeb03ecd63f77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3421a8b1-17beec416c49397e","8f44c0a3421cd26-17beeb03ecd63f77"]},"geometry":{"type":"LineString","coordinates":[[-83.64395300000001,32.846897000000006],[-83.644461,32.846251]]},"id":"8a44c0a3421ffff-17f6eba2af392b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667731,32.866463]},"id":"8f44c0a2250011c-1797f2342acb98c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667181,32.8659]},"id":"8f44c0a22533a18-17b7b38bec9ad1e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22533a18-17b7b38bec9ad1e5","8f44c0a2250011c-1797f2342acb98c8"]},"geometry":{"type":"LineString","coordinates":[[-83.667731,32.866463],[-83.66753800000001,32.866286],[-83.667395,32.866121],[-83.667181,32.8659]]},"id":"8944c0a2253ffff-17d7b2e22cf5c23a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642026,32.81134]},"id":"8f44c0b1ace64f5-17fff0f5c401cb56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64219200000001,32.810583]},"id":"8f44c0b1ac18a01-1796f08e08fc9548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace64f5-17fff0f5c401cb56","8f44c0b1ac18a01-1796f08e08fc9548"]},"geometry":{"type":"LineString","coordinates":[[-83.642026,32.81134],[-83.642026,32.811225],[-83.642035,32.811149],[-83.642044,32.81111],[-83.64216,32.810988],[-83.642184,32.81093],[-83.64219200000001,32.810583]]},"id":"8844c0b1adfffff-1796f0b8c0dca524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711957,32.879737]},"id":"8f44c0a2156a5a6-17ffe63ae8cc069b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70849600000001,32.880381]},"id":"8f44c0a214052a4-17fe6eae00c5918d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2156a5a6-17ffe63ae8cc069b","8f44c0a214052a4-17fe6eae00c5918d"]},"geometry":{"type":"LineString","coordinates":[[-83.711957,32.879737],[-83.71174900000001,32.879668],[-83.711461,32.879579],[-83.711335,32.87955],[-83.71127100000001,32.879545],[-83.71104600000001,32.879543000000005],[-83.710587,32.879537],[-83.710392,32.87954],[-83.710228,32.87955],[-83.710115,32.879571],[-83.710018,32.8796],[-83.70988100000001,32.879658],[-83.70974600000001,32.879725],[-83.70943100000001,32.879891],[-83.709263,32.879981],[-83.708996,32.88013],[-83.70849600000001,32.880381]]},"id":"8844c0a215fffff-17feda8d4e665b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74277500000001,32.819477]},"id":"8f44c0b08a1a48a-13ddfafda5b75785"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7427583,32.820574]},"id":"8f44c0b08af39a9-17fffb081db7bd4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08af39a9-17fffb081db7bd4e","8f44c0b08a1a48a-13ddfafda5b75785"]},"geometry":{"type":"LineString","coordinates":[[-83.74277500000001,32.819477],[-83.742766,32.819783],[-83.7427583,32.820574]]},"id":"8844c0b08bfffff-17b7fb043056613e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76010000000001,32.912796]},"id":"8f44c0a2db8d68d-17b5d0b1850cd525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75640800000001,32.911096]},"id":"8f44c0a2d166b51-13ffd9b5084ba68c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2db8d68d-17b5d0b1850cd525","8f44c0a2d166b51-13ffd9b5084ba68c"]},"geometry":{"type":"LineString","coordinates":[[-83.76010000000001,32.912796],[-83.759083,32.911969],[-83.75896800000001,32.911859],[-83.75889000000001,32.911759],[-83.75886100000001,32.91169],[-83.75883,32.911575],[-83.75882,32.911369],[-83.758819,32.911254],[-83.758806,32.911105],[-83.758791,32.911033],[-83.758773,32.910988],[-83.75873100000001,32.910916],[-83.758635,32.910784],[-83.758583,32.910736],[-83.758525,32.910693],[-83.75846200000001,32.910654],[-83.758396,32.910621],[-83.75828100000001,32.910577],[-83.75822500000001,32.910562],[-83.758077,32.910539],[-83.75793900000001,32.910532],[-83.75734200000001,32.910545],[-83.75724100000001,32.910553],[-83.757154,32.910567],[-83.75708200000001,32.910587],[-83.756939,32.910646],[-83.75683400000001,32.91071],[-83.756729,32.91079],[-83.75663200000001,32.910874],[-83.75640800000001,32.911096]]},"id":"8744c0a2dffffff-13f5d4e7f5444cde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61458710000001,32.8264444]},"id":"8f44c0ba9794755-13dff3f31631388c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615751,32.824513]},"id":"8f44c0ba945ea12-179fb11ba745e20c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9794755-13dff3f31631388c","8f44c0ba945ea12-179fb11ba745e20c"]},"geometry":{"type":"LineString","coordinates":[[-83.61458710000001,32.8264444],[-83.614649,32.826324],[-83.615283,32.825192],[-83.61547300000001,32.824886],[-83.615588,32.824725],[-83.615751,32.824513]]},"id":"8744c0ba9ffffff-13ff32974479db00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54507100000001,32.833882]},"id":"8f44c0b8e505123-17ffddaaa42c467f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54561600000001,32.834891]},"id":"8f44c0b8e50dd59-13fffc5602d594c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e505123-17ffddaaa42c467f","8f44c0b8e50dd59-13fffc5602d594c0"]},"geometry":{"type":"LineString","coordinates":[[-83.54507100000001,32.833882],[-83.545623,32.834153],[-83.546062,32.834349],[-83.54608,32.834367],[-83.54610000000001,32.834398],[-83.54610500000001,32.834423],[-83.54610000000001,32.834452],[-83.54608300000001,32.83448],[-83.545968,32.834591],[-83.54561600000001,32.834891]]},"id":"8944c0b8e53ffff-1797fc1fe614368e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76121590000001,32.9081915]},"id":"8f44c0a2d86125e-13f7fdf81882425b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76125400000001,32.907688]},"id":"8f44c0a2d8652a0-13bdcde0461a644c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d86125e-13f7fdf81882425b","8f44c0a2d8652a0-13bdcde0461a644c"]},"geometry":{"type":"LineString","coordinates":[[-83.76121590000001,32.9081915],[-83.7612594,32.908107300000005],[-83.76125400000001,32.907688]]},"id":"8944c0a2d87ffff-13dddde0c47ed798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679955,32.843344]},"id":"8f44c0a26c46d0b-1796945c21b34dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68248700000001,32.845554]},"id":"8f44c0a26131688-13f7ce2dae8f52c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c46d0b-1796945c21b34dfa","8f44c0a26131688-13f7ce2dae8f52c9"]},"geometry":{"type":"LineString","coordinates":[[-83.679955,32.843344],[-83.68016700000001,32.84346],[-83.68034300000001,32.843587],[-83.68082100000001,32.844019],[-83.68248700000001,32.845554]]},"id":"8744c0a26ffffff-17b791363af035b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724244,32.864897]},"id":"8f44c0a253865ab-13b6a83b8577bac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7239586,32.864580700000005]},"id":"8f44c0a253b3554-13fef8ede15848d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a253865ab-13b6a83b8577bac5","8f44c0a253b3554-13fef8ede15848d9"]},"geometry":{"type":"LineString","coordinates":[[-83.724244,32.864897],[-83.72419400000001,32.864773],[-83.724168,32.864735],[-83.724134,32.8647],[-83.7239586,32.864580700000005]]},"id":"8944c0a253bffff-13d7e8864175944d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a253865ab-13b6a83b8577bac5","8f44c0a253b3554-13fef8ede15848d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7239586,32.864580700000005],[-83.723977,32.864673],[-83.72415600000001,32.864832],[-83.724244,32.864897]]},"id":"8944c0a253bffff-13d6f8a2f21f35e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727208,32.864578]},"id":"8f44c0a25311d41-13ff60ff046bec01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72773500000001,32.864514]},"id":"8f44c0a25302880-13d75fb5ada5948f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25302880-13d75fb5ada5948f","8f44c0a25311d41-13ff60ff046bec01"]},"geometry":{"type":"LineString","coordinates":[[-83.727208,32.864578],[-83.72726700000001,32.86455],[-83.72739700000001,32.864517],[-83.72773500000001,32.864514]]},"id":"8944c0a2533ffff-13deb05cb6851831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64877,32.803745]},"id":"8f44c0b1e60d19e-17f6e07ec88b225f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648768,32.802734]},"id":"8f44c0b1e62e2a5-13fee0800a2b96f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e60d19e-17f6e07ec88b225f","8f44c0b1e62e2a5-13fee0800a2b96f3"]},"geometry":{"type":"LineString","coordinates":[[-83.64877,32.803745],[-83.648768,32.802734]]},"id":"8944c0b1e63ffff-13bef07f602d2a29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660549,32.833557]},"id":"8f44c0b1b086431-17bfe3bce90540cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66256100000001,32.83337]},"id":"8f44c0b1b0126ea-17befed3611060fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b086431-17bfe3bce90540cb","8f44c0b1b0126ea-17befed3611060fe"]},"geometry":{"type":"LineString","coordinates":[[-83.660549,32.833557],[-83.66066400000001,32.833517],[-83.66158200000001,32.833439000000006],[-83.66221200000001,32.83339],[-83.66256100000001,32.83337]]},"id":"8944c0b1b0bffff-17f7c14a308be17b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644546,32.835627]},"id":"8f44c0a348d8a99-13beeacecca21de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456436,32.834265900000005]},"id":"8f44c0a348e36c1-17fef820c5a2d7f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348e36c1-17fef820c5a2d7f6","8f44c0a348d8a99-13beeacecca21de7"]},"geometry":{"type":"LineString","coordinates":[[-83.644546,32.835627],[-83.644586,32.835557],[-83.644739,32.835361],[-83.645104,32.834913],[-83.6456436,32.834265900000005]]},"id":"8944c0a348fffff-139ff97d312851f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74531300000001,32.827652]},"id":"8f44c0b09c8e281-17d7f4cb60a24451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74804,32.827688]},"id":"8f44c0b09ce616d-17ddee2305166e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ce616d-17ddee2305166e72","8f44c0b09c8e281-17d7f4cb60a24451"]},"geometry":{"type":"LineString","coordinates":[[-83.74531300000001,32.827652],[-83.745643,32.827612],[-83.745858,32.827599],[-83.74804,32.827688]]},"id":"8844c0b09dfffff-17bff177d2c5a448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607443,32.856251]},"id":"8f44c0a32c22474-1797e5642c43ec14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60613500000001,32.856214]},"id":"8f44c0a32c327a0-17ffc895a0a1110b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c327a0-17ffc895a0a1110b","8f44c0a32c22474-1797e5642c43ec14"]},"geometry":{"type":"LineString","coordinates":[[-83.607443,32.856251],[-83.60613500000001,32.856214]]},"id":"8944c0a32c3ffff-179f56fcef4ad3c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66247,32.847153]},"id":"8f44c0a35814222-17debf0c4db453dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66398600000001,32.847144]},"id":"8f44c0a35804b6b-17dfbb58ca3b27ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35804b6b-17dfbb58ca3b27ec","8f44c0a35814222-17debf0c4db453dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66247,32.847153],[-83.66398600000001,32.847144]]},"id":"8944c0a3583ffff-17dffd3285794c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561125,32.862779]},"id":"8f44c0b8869b568-1797f678e1ef66d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8869b568-1797f678e1ef66d1","8f44c0b8bd1120a-13fff867464c64f1"]},"geometry":{"type":"LineString","coordinates":[[-83.561125,32.862779],[-83.56106100000001,32.862778],[-83.56098,32.862806],[-83.560929,32.862845],[-83.560867,32.862924],[-83.560823,32.863014],[-83.56077300000001,32.863154],[-83.56069600000001,32.863422],[-83.560664,32.863574],[-83.56064400000001,32.863729],[-83.560629,32.863971],[-83.560625,32.864109],[-83.56061000000001,32.864334],[-83.56059300000001,32.86442],[-83.56053800000001,32.864572],[-83.560451,32.864685],[-83.56033400000001,32.864818]]},"id":"8644c0b8fffffff-17f7b78d82031683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.748478,32.810084]},"id":"8f44c0b0d436843-13dfed114e0b646e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.751202,32.80883]},"id":"8f44c0b0d52aa42-13dfe66ac04dffa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d436843-13dfed114e0b646e","8f44c0b0d52aa42-13dfe66ac04dffa1"]},"geometry":{"type":"LineString","coordinates":[[-83.748478,32.810084],[-83.749223,32.808861],[-83.751202,32.80883]]},"id":"8844c0b0d5fffff-13fdfa3a9effac3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711842,32.893726]},"id":"8f44c0a2ed6c726-1396c682cf6e2e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715728,32.894944]},"id":"8f44c0a2e833334-139e3d060daaa2d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed6c726-1396c682cf6e2e63","8f44c0a2e833334-139e3d060daaa2d5"]},"geometry":{"type":"LineString","coordinates":[[-83.711842,32.893726],[-83.712469,32.89374],[-83.712935,32.893727000000005],[-83.713357,32.893724],[-83.715193,32.893728],[-83.715332,32.893738],[-83.71544,32.893774],[-83.71553,32.893822],[-83.71563900000001,32.893904],[-83.71571200000001,32.894002],[-83.71575,32.894095],[-83.715754,32.894184],[-83.715728,32.894944]]},"id":"8844c0a2e9fffff-13f6f0c62dd5ff6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62921300000001,32.822059]},"id":"8f44c0ba9b9bd21-139ff03de4708948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627418,32.820968]},"id":"8f44c0ba91638ad-17f7149fc2140177"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba91638ad-17f7149fc2140177","8f44c0ba9b9bd21-139ff03de4708948"]},"geometry":{"type":"LineString","coordinates":[[-83.62921300000001,32.822059],[-83.628955,32.821891],[-83.627418,32.820968]]},"id":"8744c0ba9ffffff-17d7726d4b3c4904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65504700000001,32.833846]},"id":"8f44c0b1b4e4c94-17f7d12baeda15d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4f4b0b-17f7f36aa94adc99","8f44c0b1b4e4c94-17f7d12baeda15d9"]},"geometry":{"type":"LineString","coordinates":[[-83.654127,32.833871],[-83.654425,32.833855],[-83.65504700000001,32.833846]]},"id":"8844c0b1b5fffff-17f7f24b3f51f582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62891900000001,32.843513]},"id":"8f44c0a36b50a2a-17ffb0f5a5d9522e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62950000000001,32.842823]},"id":"8f44c0a36b73948-13df6f8a80aa2168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36b50a2a-17ffb0f5a5d9522e","8f44c0a36b73948-13df6f8a80aa2168"]},"geometry":{"type":"LineString","coordinates":[[-83.62891900000001,32.843513],[-83.62893000000001,32.843487],[-83.62894700000001,32.843462],[-83.62939,32.842941],[-83.62950000000001,32.842823]]},"id":"8944c0a36b7ffff-17b7d0447e0a6cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.744572,32.827869]},"id":"8f44c0b09c99cad-17dff69a85f50c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74457290000001,32.827428600000005]},"id":"8f44c0b09c9c276-17b7f699f49c0fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c99cad-17dff69a85f50c9f","8f44c0b09c9c276-17b7f699f49c0fbb"]},"geometry":{"type":"LineString","coordinates":[[-83.744572,32.827869],[-83.74457290000001,32.827428600000005]]},"id":"8a44c0b09c9ffff-17d5f69a37fe913b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7361635,32.812569100000005]},"id":"8f44c0b08898aec-13ffbb21d4bd146e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73616650000001,32.8130953]},"id":"8f44c0b08126d5e-13be9b1ff01bef6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08126d5e-13be9b1ff01bef6c","8f44c0b08898aec-13ffbb21d4bd146e"]},"geometry":{"type":"LineString","coordinates":[[-83.7361635,32.812569100000005],[-83.7361655,32.812921],[-83.73616650000001,32.8130953]]},"id":"8844c0b089fffff-13962b20e5b19a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689266,32.842875]},"id":"8f44c0a2695a280-13fefda0c42b370c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68942600000001,32.844219]},"id":"8f44c0a26846865-17b6fd3cc99860de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26846865-17b6fd3cc99860de","8f44c0a2695a280-13fefda0c42b370c"]},"geometry":{"type":"LineString","coordinates":[[-83.689266,32.842875],[-83.68942600000001,32.844219]]},"id":"8844c0a269fffff-1796fd6ec8f0d241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.750787,32.907522]},"id":"8f44c0a2dc44606-13d5e76e23f19808"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.750855,32.908018000000006]},"id":"8f44c0a2dc402e0-13f7e743aaa413ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dc44606-13d5e76e23f19808","8f44c0a2dc402e0-13f7e743aaa413ea"]},"geometry":{"type":"LineString","coordinates":[[-83.750787,32.907522],[-83.750821,32.907891],[-83.750855,32.908018000000006]]},"id":"8a44c0a2dc47fff-13dde75dffcd2527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75087,32.907519]},"id":"8f44c0a2dc44741-13bfe73a4e211f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dc44741-13bfe73a4e211f53","8f44c0a2dc402e0-13f7e743aaa413ea"]},"geometry":{"type":"LineString","coordinates":[[-83.750855,32.908018000000006],[-83.750882,32.907879],[-83.75088000000001,32.90773],[-83.75087,32.907519]]},"id":"8a44c0a2dc47fff-13dfe737378f3243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590056,32.87001]},"id":"8f44c0b8915adae-17bf6fd703759737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590292,32.869357]},"id":"8f44c0b89151464-17976f438d5c37e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8915adae-17bf6fd703759737","8f44c0b89151464-17976f438d5c37e3"]},"geometry":{"type":"LineString","coordinates":[[-83.590056,32.87001],[-83.590292,32.869357]]},"id":"8944c0b8917ffff-17f77f8d4330c263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71172800000001,32.744687]},"id":"8f44c0b040e4816-17b766ca03f07caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7118585,32.7447978]},"id":"8f44c0b040e4b03-17fee6787fab2d0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b040e4816-17b766ca03f07caf","8f44c0b040e4b03-17fee6787fab2d0e"]},"geometry":{"type":"LineString","coordinates":[[-83.71172800000001,32.744687],[-83.7118585,32.7447978]]},"id":"8b44c0b040e4fff-17de46a144cfd8af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684903,32.861567]},"id":"8f44c0a22966053-139fe847affb66eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68337000000001,32.862442]},"id":"8f44c0a229542a9-13b6cc05c589852f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22966053-139fe847affb66eb","8f44c0a229542a9-13b6cc05c589852f"]},"geometry":{"type":"LineString","coordinates":[[-83.684903,32.861567],[-83.684527,32.8619],[-83.684087,32.862265],[-83.683847,32.86233],[-83.68337000000001,32.862442]]},"id":"8944c0a2297ffff-13deda08a46a71b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65150600000001,32.858172]},"id":"8f44c0a357a3c28-13d7d9d0c73bdf36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653343,32.858224]},"id":"8f44c0a35711c6a-13f6d554acb48315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35711c6a-13f6d554acb48315","8f44c0a357a3c28-13d7d9d0c73bdf36"]},"geometry":{"type":"LineString","coordinates":[[-83.65150600000001,32.858172],[-83.653343,32.858224]]},"id":"8844c0a357fffff-13d7d792b5ba3b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652331,32.846653]},"id":"8f44c0a35ca524a-17b6f7cd2f15547c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65177170000001,32.847511700000005]},"id":"8f44c0a35caad01-17bed92ab7645cae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35caad01-17bed92ab7645cae","8f44c0a35ca524a-17b6f7cd2f15547c"]},"geometry":{"type":"LineString","coordinates":[[-83.652331,32.846653],[-83.652054,32.847096],[-83.65177170000001,32.847511700000005]]},"id":"8944c0a35cbffff-17b6f879613f5152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72391710000001,32.9222235]},"id":"8f44c0a28711b36-17b7b907dd3fc2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7250109,32.9204105]},"id":"8f44c0a280994ed-13beb65c32c888ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a280994ed-13beb65c32c888ed","8f44c0a28711b36-17b7b907dd3fc2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.72391710000001,32.9222235],[-83.72405660000001,32.9221425],[-83.7241451,32.9220817],[-83.7242363,32.9220142],[-83.7243141,32.921924100000005],[-83.7243892,32.9218363],[-83.7244321,32.9217552],[-83.7244817,32.9216539],[-83.7245032,32.9215729],[-83.72451930000001,32.921469300000005],[-83.72451120000001,32.9213747],[-83.72451930000001,32.9212824],[-83.72453270000001,32.9211766],[-83.72455950000001,32.921059500000005],[-83.72459710000001,32.920965],[-83.724691,32.920825400000005],[-83.7250109,32.9204105]]},"id":"8744c0a28ffffff-139fb798a2047da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688023,32.863641]},"id":"8f44c0a204a4ba6-179fa0a9a806d288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68756900000001,32.864156]},"id":"8f44c0a204a04e1-17f781c562a569a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a204a04e1-17f781c562a569a9","8f44c0a204a4ba6-179fa0a9a806d288"]},"geometry":{"type":"LineString","coordinates":[[-83.688023,32.863641],[-83.687961,32.863717],[-83.68756900000001,32.864156]]},"id":"8a44c0a204a7fff-17d7d136aad1780f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6128128,32.8710608]},"id":"8f44c0a3239d6f5-13bf38480018ce4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60852,32.869714]},"id":"8f44c0a327725ae-17f742c30d80ce35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3239d6f5-13bf38480018ce4a","8f44c0a327725ae-17f742c30d80ce35"]},"geometry":{"type":"LineString","coordinates":[[-83.6128128,32.8710608],[-83.61267000000001,32.87093],[-83.612132,32.870545],[-83.611959,32.870454],[-83.61177500000001,32.870409],[-83.6114773,32.870368400000004],[-83.6113028,32.870324000000004],[-83.61077300000001,32.870134],[-83.609947,32.869858],[-83.60961800000001,32.86976],[-83.609476,32.869712],[-83.609307,32.869692],[-83.608879,32.869694],[-83.60852,32.869714]]},"id":"8744c0a32ffffff-179fbd579c63d877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676128,32.853840000000005]},"id":"8f44c0a267ad6a8-17b69db40853e646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67594100000001,32.856395]},"id":"8f44c0a2661e9b0-17fefe28e5a2f807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2661e9b0-17fefe28e5a2f807","8f44c0a267ad6a8-17b69db40853e646"]},"geometry":{"type":"LineString","coordinates":[[-83.676128,32.853840000000005],[-83.67594100000001,32.856395]]},"id":"8844c0a267fffff-13d6fdee7c415fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67866500000001,32.817689]},"id":"8f44c0b18360990-17ffb78261764bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67948100000001,32.815989]},"id":"8f44c0b18aea571-13dfb58467d00426"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18360990-17ffb78261764bd6","8f44c0b18aea571-13dfb58467d00426"]},"geometry":{"type":"LineString","coordinates":[[-83.67866500000001,32.817689],[-83.67867600000001,32.81757],[-83.67868200000001,32.817438],[-83.678696,32.817307],[-83.67872700000001,32.817217],[-83.678768,32.817144],[-83.679029,32.816789],[-83.679218,32.816518],[-83.679367,32.816329],[-83.67943600000001,32.816208],[-83.67946,32.81611],[-83.67948100000001,32.815989]]},"id":"8744c0b18ffffff-17d7b69f9597bb5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68925800000001,32.75461]},"id":"8f44c0b06398846-17ff7da5c6cf1510"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68743400000001,32.754654]},"id":"8f44c0b0676abb3-179ec219ce4a5aee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0676abb3-179ec219ce4a5aee","8f44c0b06398846-17ff7da5c6cf1510"]},"geometry":{"type":"LineString","coordinates":[[-83.68925800000001,32.75461],[-83.689034,32.75461],[-83.68885900000001,32.754623],[-83.68870100000001,32.754638],[-83.68831300000001,32.754702],[-83.688152,32.754719],[-83.688011,32.754722],[-83.687646,32.754692],[-83.68743400000001,32.754654]]},"id":"8744c0b06ffffff-17967fe07aa7809e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.742773,32.8897125]},"id":"8f44c0a2c942001-17d7fafee0ced14b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c94466e-17f7f99c8ce1cf07","8f44c0a2c942001-17d7fafee0ced14b"]},"geometry":{"type":"LineString","coordinates":[[-83.74334,32.889348000000005],[-83.74304910000001,32.8895015],[-83.742957,32.8895874],[-83.742773,32.8897125]]},"id":"8a44c0a2c947fff-17dffa5156d080b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630351,32.854301]},"id":"8f44c0a30ce2250-17d72d76a27c5f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62931610000001,32.8539922]},"id":"8f44c0a30cf0624-17972ffd758780c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30ce2250-17d72d76a27c5f8c","8f44c0a30cf0624-17972ffd758780c8"]},"geometry":{"type":"LineString","coordinates":[[-83.630351,32.854301],[-83.630094,32.854042],[-83.629731,32.853689],[-83.62931610000001,32.8539922]]},"id":"8944c0a30cfffff-17ff9eafd88f7e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715884,32.859959]},"id":"8f44c0a2547408e-17b67ca48e73e9a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71574820000001,32.8590883]},"id":"8f44c0a2542d120-13963cf9674b9c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2547408e-17b67ca48e73e9a8","8f44c0a2542d120-13963cf9674b9c4e"]},"geometry":{"type":"LineString","coordinates":[[-83.715884,32.859959],[-83.715855,32.859699],[-83.715812,32.859425],[-83.71575700000001,32.859142],[-83.71574820000001,32.8590883]]},"id":"8844c0a255fffff-1797bcca84c49066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.748765,32.756272]},"id":"8f44c0b2e726d9d-13ffec5de4a7c086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7488869,32.7551381]},"id":"8f44c0b2e09c81c-17bdfc11b421ef84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e09c81c-17bdfc11b421ef84","8f44c0b2e726d9d-13ffec5de4a7c086"]},"geometry":{"type":"LineString","coordinates":[[-83.748765,32.756272],[-83.7488869,32.7551381]]},"id":"8a44c0b2e09ffff-179ffc37da61bc8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724451,32.90753]},"id":"8f44c0a28d10b04-13d667ba2c83aff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723982,32.908918]},"id":"8f44c0a28da9a91-17bfe8df4788f531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d10b04-13d667ba2c83aff5","8f44c0a28da9a91-17bfe8df4788f531"]},"geometry":{"type":"LineString","coordinates":[[-83.724451,32.90753],[-83.724659,32.907702],[-83.724754,32.907792],[-83.72480800000001,32.907868],[-83.724838,32.907938],[-83.72484800000001,32.908023],[-83.72483100000001,32.90814],[-83.724767,32.908347],[-83.72462900000001,32.908679],[-83.72456100000001,32.908808],[-83.724503,32.908862],[-83.724424,32.908918],[-83.72430100000001,32.90896],[-83.724175,32.908974],[-83.724075,32.908965],[-83.723982,32.908918]]},"id":"8844c0a28dfffff-13d66768d050557d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69601,32.8471379]},"id":"8f44c0a244c8c2b-17d77d29ce567ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69600200000001,32.847655700000004]},"id":"8f44c0a244cb12d-179efd2ec6d73bdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244cb12d-179efd2ec6d73bdb","8f44c0a244c8c2b-17d77d29ce567ae4"]},"geometry":{"type":"LineString","coordinates":[[-83.69601,32.8471379],[-83.69600200000001,32.847655700000004]]},"id":"8a44c0a244cffff-17f76d2c4bed6702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557944,32.867994]},"id":"8f44c0b8bcae01e-13d7fe3d02c7b17a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bcad102-139ffc21aa677c25","8f44c0b8bcae01e-13d7fe3d02c7b17a"]},"geometry":{"type":"LineString","coordinates":[[-83.558807,32.868143],[-83.557944,32.867994]]},"id":"8a44c0b8bcaffff-13fffd2f5c922ea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6768593,32.848018100000004]},"id":"8f44c0a2656a68d-13ffdbeaf2c322cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68001600000001,32.847004000000005]},"id":"8f44c0a26181905-179794360fa28030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2656a68d-13ffdbeaf2c322cb","8f44c0a26181905-179794360fa28030"]},"geometry":{"type":"LineString","coordinates":[[-83.6768593,32.848018100000004],[-83.6774534,32.8473853],[-83.67790740000001,32.8469793],[-83.6781404,32.8467803],[-83.6782034,32.8467353],[-83.6782984,32.8466873],[-83.6783704,32.846668300000005],[-83.6784464,32.8466533],[-83.67858860000001,32.846645200000005],[-83.67867100000001,32.8466497],[-83.6787654,32.8466643],[-83.6788496,32.846687700000004],[-83.6789519,32.846731500000004],[-83.6793847,32.8470285],[-83.67943340000001,32.847059300000005],[-83.6795034,32.8470849],[-83.67957650000001,32.8470954],[-83.6796721,32.8470985],[-83.6797681,32.8470844],[-83.68001600000001,32.847004000000005]]},"id":"8744c0a26ffffff-17bfb8519bd4c7db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54995500000001,32.847915]},"id":"8f44c0b8e65d790-13bff1be21e1236f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54944,32.849386]},"id":"8f44c0b8a9b1359-13d7d3000347f231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e65d790-13bff1be21e1236f","8f44c0b8a9b1359-13d7d3000347f231"]},"geometry":{"type":"LineString","coordinates":[[-83.54995500000001,32.847915],[-83.549717,32.848112],[-83.549637,32.848185],[-83.54958,32.848242],[-83.549529,32.848309],[-83.54947,32.848405],[-83.54943300000001,32.848491],[-83.549402,32.848644],[-83.549395,32.848706],[-83.54944,32.849386]]},"id":"8644c0b8fffffff-13dff2c5bcacc6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642832,32.814402]},"id":"8f44c0b1a196bb5-17ffeefe0b49768b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64454,32.814633]},"id":"8f44c0b1a1842ae-17ffead281545232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1842ae-17ffead281545232","8f44c0b1a196bb5-17ffeefe0b49768b"]},"geometry":{"type":"LineString","coordinates":[[-83.642832,32.814402],[-83.642875,32.814464],[-83.64295,32.814521],[-83.643028,32.814554],[-83.643168,32.814577],[-83.643206,32.814584],[-83.64423400000001,32.814621800000005],[-83.64454,32.814633]]},"id":"8944c0b1a1bffff-17dfecf92d1451b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73811900000001,32.895093]},"id":"8f44c0a2c175881-13ff265ba5030aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7375713,32.8957557]},"id":"8f44c0a2c173ab2-179757b1fb8a261c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c173ab2-179757b1fb8a261c","8f44c0a2c175881-13ff265ba5030aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.73811900000001,32.895093],[-83.73781500000001,32.89537],[-83.737702,32.89548],[-83.737643,32.895547],[-83.737571,32.895654],[-83.7375713,32.8957557]]},"id":"8a44c0a2c177fff-17be2721361f9e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76121,32.768599]},"id":"8f44c0b28404c66-1797edfbc3e241b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7603308,32.7679254]},"id":"8f44c0b28436349-17f5f021470dbb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b28404c66-1797edfbc3e241b6","8f44c0b28436349-17f5f021470dbb08"]},"geometry":{"type":"LineString","coordinates":[[-83.76121,32.768599],[-83.761018,32.768389],[-83.76087700000001,32.76825],[-83.760642,32.768061],[-83.7603308,32.7679254]]},"id":"8944c0b2843ffff-17bffefc12330255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670625,32.824164]},"id":"8f44c0b1b90e051-17beab236e5bfb32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672036,32.824233]},"id":"8f44c0b1b976aa6-17ffa7b18a373685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b976aa6-17ffa7b18a373685","8f44c0b1b90e051-17beab236e5bfb32"]},"geometry":{"type":"LineString","coordinates":[[-83.670625,32.824164],[-83.672036,32.824233]]},"id":"8844c0b1b9fffff-17d6b96a7d785bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68385500000001,32.843831]},"id":"8f44c0a2688e544-17d6ead6adeda4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68694400000001,32.842768]},"id":"8f44c0a268031ab-13be834c0294d12d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2688e544-17d6ead6adeda4b0","8f44c0a268031ab-13be834c0294d12d"]},"geometry":{"type":"LineString","coordinates":[[-83.68385500000001,32.843831],[-83.68389,32.843415],[-83.68393400000001,32.84329],[-83.683975,32.843207],[-83.684009,32.843176],[-83.684083,32.843159],[-83.685263,32.843139],[-83.686807,32.843111],[-83.686896,32.843069],[-83.686937,32.843004],[-83.68694400000001,32.842768]]},"id":"8844c0a269fffff-17bff74f90f59ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643753,32.831406]},"id":"8f44c0a348a560b-17feecbe6d57658c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64412460000001,32.8316309]},"id":"8f44c0a34812704-13fffbd62544079a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34812704-13fffbd62544079a","8f44c0a348a560b-17feecbe6d57658c"]},"geometry":{"type":"LineString","coordinates":[[-83.643753,32.831406],[-83.64412460000001,32.8316309]]},"id":"8944c0a348bffff-13b7fc4a477d1e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556883,32.843864]},"id":"8f44c0b8e31b41a-17d7c0d42b11300e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558008,32.845027]},"id":"8f44c0b8e22168b-13bffe150ca9ecbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e31b41a-17d7c0d42b11300e","8f44c0b8e22168b-13bffe150ca9ecbb"]},"geometry":{"type":"LineString","coordinates":[[-83.556883,32.843864],[-83.556982,32.843911],[-83.55724400000001,32.84409],[-83.557637,32.84443],[-83.55773500000001,32.844526],[-83.557822,32.844634],[-83.557866,32.844696],[-83.557961,32.844868000000005],[-83.55800500000001,32.845005],[-83.558008,32.845027]]},"id":"8944c0b8e23ffff-179fff44de3f823e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74489700000001,32.916888]},"id":"8f44c0a2d7b1b41-139ff5cf66550660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74744100000001,32.923771]},"id":"8f44c0a2d6cdcb2-13fdef9962ba1ad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d7b1b41-139ff5cf66550660","8f44c0a2d6cdcb2-13fdef9962ba1ad5"]},"geometry":{"type":"LineString","coordinates":[[-83.74489700000001,32.916888],[-83.745261,32.916902],[-83.74596600000001,32.916918],[-83.746189,32.916925],[-83.746678,32.916986],[-83.747432,32.917046],[-83.747556,32.91707],[-83.747656,32.917105],[-83.74774000000001,32.917161],[-83.74782,32.917223],[-83.747921,32.917319],[-83.748002,32.917428],[-83.74804400000001,32.917561],[-83.74805900000001,32.917693],[-83.748068,32.917915],[-83.74805500000001,32.918086],[-83.74800300000001,32.918287],[-83.74790300000001,32.918487],[-83.74783500000001,32.918681],[-83.74780100000001,32.918849],[-83.747758,32.919179],[-83.74776200000001,32.919295000000005],[-83.74778900000001,32.919441],[-83.747848,32.919611],[-83.748132,32.920186],[-83.74816700000001,32.920291],[-83.74818400000001,32.920425],[-83.748191,32.920561],[-83.74816700000001,32.921093],[-83.748152,32.921733],[-83.74813400000001,32.921833],[-83.748067,32.921999],[-83.74795400000001,32.922165],[-83.74786200000001,32.922285],[-83.74777,32.922417],[-83.747719,32.922524],[-83.74769,32.922716],[-83.747641,32.923108],[-83.747577,32.923434],[-83.74752600000001,32.92358],[-83.74744100000001,32.923771]]},"id":"8844c0a2d7fffff-17d7ef8be8d335ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655207,32.832715]},"id":"8f44c0b1b4038e3-139ef0c7ad893a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655223,32.83138]},"id":"8f44c0b1b435250-17ded0bdab1e528b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b435250-17ded0bdab1e528b","8f44c0b1b4038e3-139ef0c7ad893a31"]},"geometry":{"type":"LineString","coordinates":[[-83.655207,32.832715],[-83.655223,32.83138]]},"id":"8944c0b1b43ffff-13fff0c2a58f32a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737042,32.90289]},"id":"8f44c0a2c381acb-17f648fcca2aefc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c381acb-17f648fcca2aefc5","8f44c0a2c38e71c-17f749f8accd3e3d"]},"geometry":{"type":"LineString","coordinates":[[-83.737042,32.90289],[-83.736777,32.903107],[-83.73671800000001,32.903173],[-83.73663900000001,32.903298]]},"id":"8944c0a2c3bffff-17ff7983f9f71e2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70968900000001,32.833595]},"id":"8f44c0a24916ce0-17d6ebc46838974f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093895,32.8340564]},"id":"8f44c0a249125b2-17f74c7f9a5caf87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24916ce0-17d6ebc46838974f","8f44c0a249125b2-17f74c7f9a5caf87"]},"geometry":{"type":"LineString","coordinates":[[-83.70968900000001,32.833595],[-83.709624,32.83371],[-83.709451,32.833978],[-83.7093895,32.8340564]]},"id":"8844c0a249fffff-17d76c1e8f923471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58676200000001,32.870545]},"id":"8f44c0b8901e456-17fff7e1c1e97b50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5831914,32.8702695]},"id":"8f44c0b89096ae9-17dff09962607231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8901e456-17fff7e1c1e97b50","8f44c0b89096ae9-17dff09962607231"]},"geometry":{"type":"LineString","coordinates":[[-83.58676200000001,32.870545],[-83.586256,32.870317],[-83.586156,32.870283],[-83.586026,32.870261],[-83.58502800000001,32.870251],[-83.583657,32.870224],[-83.583481,32.870226],[-83.583358,32.870238],[-83.5832525,32.8702569],[-83.5831914,32.8702695]]},"id":"8744c0b89ffffff-17d77c302a199f3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614142,32.853917]},"id":"8f44c0a3665b8f0-17f735094e9a5b44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61413300000001,32.854861]},"id":"8f44c0a329a2795-13b7350eeae54d02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3665b8f0-17f735094e9a5b44","8f44c0a329a2795-13b7350eeae54d02"]},"geometry":{"type":"LineString","coordinates":[[-83.614142,32.853917],[-83.61413300000001,32.854861]]},"id":"8644c0a37ffffff-139f350c1ade1fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61412390000001,32.8553751]},"id":"8f44c0a32984671-13f775149e0de29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61411720000001,32.8567126]},"id":"8f44c0a3298ac54-17b77518c785c7f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3298ac54-17b77518c785c7f6","8f44c0a32984671-13f775149e0de29d"]},"geometry":{"type":"LineString","coordinates":[[-83.61412390000001,32.8553751],[-83.61411720000001,32.8567126]]},"id":"8944c0a329bffff-17977516a3905eb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574815,32.8536]},"id":"8f44c0b8816a249-179f950ca0b4e14a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.577488,32.853644]},"id":"8f44c0b88b8aa0a-17b78e860b8b64e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8816a249-179f950ca0b4e14a","8f44c0b88b8aa0a-17b78e860b8b64e7"]},"geometry":{"type":"LineString","coordinates":[[-83.574815,32.8536],[-83.575218,32.853588],[-83.57602200000001,32.853575],[-83.576901,32.853574],[-83.577122,32.853583],[-83.577309,32.853612000000005],[-83.577488,32.853644]]},"id":"8744c0b88ffffff-1797b1c7f3adea49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723213,32.835659]},"id":"8f44c0b0bcdb0e1-13deeabfea7371e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723235,32.834998]},"id":"8f44c0b0bcd8c35-13b7eab228817c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcdb0e1-13deeabfea7371e6","8f44c0b0bcd8c35-13b7eab228817c78"]},"geometry":{"type":"LineString","coordinates":[[-83.723213,32.835659],[-83.723235,32.834998]]},"id":"8a44c0b0bcdffff-13967ab90155d3d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71216700000001,32.814042]},"id":"8f44c0b0ad6c8d5-179e45b7a262416d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71151900000001,32.811366]},"id":"8f44c0b0e6c0103-17ffc74ca787d727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad6c8d5-179e45b7a262416d","8f44c0b0e6c0103-17ffc74ca787d727"]},"geometry":{"type":"LineString","coordinates":[[-83.71216700000001,32.814042],[-83.71218,32.813288],[-83.71218300000001,32.81255],[-83.71216700000001,32.812447],[-83.71211500000001,32.812275],[-83.71202100000001,32.8121],[-83.71191800000001,32.811943],[-83.71151900000001,32.811366]]},"id":"8644c0b0fffffff-139fe60624c21d85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626948,32.869753]},"id":"8f44c0a33d2c4a2-179fb5c58af3a3a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62765800000001,32.868951]},"id":"8f44c0a306d6a72-13977409c402bda4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33d2c4a2-179fb5c58af3a3a3","8f44c0a306d6a72-13977409c402bda4"]},"geometry":{"type":"LineString","coordinates":[[-83.626948,32.869753],[-83.62765800000001,32.868951]]},"id":"8644c0a37ffffff-179714e7a7ba5d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66919700000001,32.834297]},"id":"8f44c0b1ba94236-17ffae9fe3b28132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba94236-17ffae9fe3b28132","8f44c0b1ba82a20-13d7ec87a783cfa7"]},"geometry":{"type":"LineString","coordinates":[[-83.66919700000001,32.834297],[-83.66994100000001,32.834297],[-83.670023,32.834311],[-83.67005,32.834336],[-83.670061,32.834411],[-83.670055,32.834818]]},"id":"8944c0b1babffff-17bfad31f236b088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681728,32.862918]},"id":"8f44c0a22823c43-17dfd0080cebcf51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680402,32.865437]},"id":"8f44c0a228f5a09-1396b344c90a4504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228f5a09-1396b344c90a4504","8f44c0a22823c43-17dfd0080cebcf51"]},"geometry":{"type":"LineString","coordinates":[[-83.681728,32.862918],[-83.681341,32.863315],[-83.681224,32.86345],[-83.681094,32.863655],[-83.680954,32.863946],[-83.68076400000001,32.86432],[-83.680627,32.864609],[-83.680553,32.864792],[-83.680402,32.865437]]},"id":"8844c0a229fffff-17d6f1f81eea4866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58122800000001,32.865752]},"id":"8f44c0b8952caa1-13d78564848d28e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581508,32.868009]},"id":"8f44c0b89546493-13dfa4b5893829a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89546493-13dfa4b5893829a3","8f44c0b8952caa1-13d78564848d28e6"]},"geometry":{"type":"LineString","coordinates":[[-83.58122800000001,32.865752],[-83.58124400000001,32.865882],[-83.581202,32.867181],[-83.58120500000001,32.867319],[-83.581238,32.867398],[-83.58131300000001,32.867489],[-83.58143600000001,32.86766],[-83.58146500000001,32.867717],[-83.58149800000001,32.867846],[-83.581508,32.868009]]},"id":"8844c0b895fffff-1797c5448a17f311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76095980000001,32.8254271]},"id":"8f44c0b09944cb2-13d7fe982683fade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76255610000001,32.826078200000005]},"id":"8f44c0b09968b21-13ffeab272ce2c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved","flags":["isPrivate"],"restrictions":{"speedLimits":[{"maxSpeed":[5,"mph"]}]}},"subType":"road","connectors":["8f44c0b09944cb2-13d7fe982683fade","8f44c0b09968b21-13ffeab272ce2c4e"]},"geometry":{"type":"LineString","coordinates":[[-83.76095980000001,32.8254271],[-83.7612043,32.825497],[-83.761397,32.825555200000004],[-83.76158600000001,32.8256019],[-83.7619933,32.8257111],[-83.7623504,32.8258432],[-83.76255610000001,32.826078200000005]]},"id":"8944c0b0997ffff-13f5dc8bb72fbe0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66106500000001,32.853776]},"id":"8f44c0a35151ba2-179ec27a6d451a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661589,32.856596]},"id":"8f44c0a3504504d-17fec132edc1b747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35151ba2-179ec27a6d451a95","8f44c0a3504504d-17fec132edc1b747"]},"geometry":{"type":"LineString","coordinates":[[-83.66106500000001,32.853776],[-83.661083,32.854335],[-83.661083,32.854466],[-83.661094,32.854515],[-83.661507,32.85497],[-83.661547,32.855023],[-83.661581,32.855106],[-83.661585,32.855224],[-83.661589,32.856596]]},"id":"8844c0a351fffff-13ffd1a8e2f45ee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760254,32.868125]},"id":"8f44c0b50196ad8-1397f05149ec5852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759426,32.868754]},"id":"8f44c0b50561651-139fd256ce0ff8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50196ad8-1397f05149ec5852","8f44c0b50561651-139fd256ce0ff8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.760254,32.868125],[-83.7598246,32.8684512],[-83.759426,32.868754]]},"id":"8744c0b50ffffff-13d7f15408dc2113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74341700000001,32.902925]},"id":"8f44c0a2c365409-179df96c61b110af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7433941,32.9020968]},"id":"8f44c0a2caca12d-1797f97ab6ad2d1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c365409-179df96c61b110af","8f44c0a2caca12d-1797f97ab6ad2d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.74341700000001,32.902925],[-83.7434357,32.9021549],[-83.7433941,32.9020968]]},"id":"8744c0a2cffffff-1795f967200db635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691259,32.864258]},"id":"8f44c0a2042e626-13b778c325e7ba03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692037,32.863477]},"id":"8f44c0a2055281e-17bf76dce1b4e062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2055281e-17bf76dce1b4e062","8f44c0a2042e626-13b778c325e7ba03"]},"geometry":{"type":"LineString","coordinates":[[-83.691259,32.864258],[-83.691687,32.86381],[-83.692037,32.863477]]},"id":"8844c0a205fffff-17be77d2e176f4d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70862100000001,32.746299]},"id":"8f44c0b04721166-13b6ee5fe8bc7f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7118117,32.7468285]},"id":"8f44c0b040eb4c4-13ffd695b3c74d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b040eb4c4-13ffd695b3c74d2d","8f44c0b04721166-13b6ee5fe8bc7f22"]},"geometry":{"type":"LineString","coordinates":[[-83.70862100000001,32.746299],[-83.708747,32.746254],[-83.70892900000001,32.746206],[-83.70921600000001,32.746156],[-83.70936400000001,32.746147],[-83.711197,32.746173],[-83.711346,32.74618],[-83.71149000000001,32.746204],[-83.71154100000001,32.74622],[-83.711618,32.746257],[-83.71167700000001,32.746302],[-83.71172800000001,32.746353],[-83.711788,32.746451],[-83.711804,32.746493],[-83.711815,32.746588],[-83.7118117,32.7468285]]},"id":"8744c0b04ffffff-17ffea03ceabd398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64205700000001,32.801979]},"id":"8f44c0badb4e56d-1396f0e265059ba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642092,32.800356]},"id":"8f44c0badb62183-179ef0cc81e9fa6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb4e56d-1396f0e265059ba6","8f44c0badb62183-179ef0cc81e9fa6e"]},"geometry":{"type":"LineString","coordinates":[[-83.64205700000001,32.801979],[-83.64207400000001,32.801429],[-83.642092,32.800356]]},"id":"8944c0badb7ffff-179ff0d5d0d77187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54962400000001,32.843898]},"id":"8f44c0b8e752b18-17ffd28d08c5cd69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54743500000001,32.842446]},"id":"8f44c0b8e71e692-13f7d7e520a0c00c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e752b18-17ffd28d08c5cd69","8f44c0b8e71e692-13f7d7e520a0c00c"]},"geometry":{"type":"LineString","coordinates":[[-83.54962400000001,32.843898],[-83.549469,32.843795],[-83.549034,32.843415],[-83.54873500000001,32.843161],[-83.54866700000001,32.843113],[-83.548613,32.8431],[-83.54855400000001,32.843105],[-83.54851500000001,32.843113],[-83.548478,32.84312],[-83.548378,32.843155],[-83.54834000000001,32.843158],[-83.548302,32.843154000000006],[-83.548265,32.843141],[-83.54822800000001,32.843122],[-83.54818,32.843088],[-83.54798000000001,32.842908],[-83.54748400000001,32.842494],[-83.54743500000001,32.842446]]},"id":"8844c0b8e7fffff-17b7f53aba549397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710729,32.742336]},"id":"8f44c0b04032ada-17fe493a6f704110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71093300000001,32.742621]},"id":"8f44c0b040330c0-17be68baeafe6cfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b040330c0-17be68baeafe6cfc","8f44c0b04032ada-17fe493a6f704110"]},"geometry":{"type":"LineString","coordinates":[[-83.710729,32.742336],[-83.71080900000001,32.74251],[-83.71088400000001,32.742587],[-83.71093300000001,32.742621]]},"id":"8a44c0b04037fff-17def9046938e4f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66094100000001,32.795088]},"id":"8f44c0b1ebaba2b-17d6c2c7eb35f4cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663151,32.795561]},"id":"8f44c0b1ea25c06-13ffbd62abd2fa11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea25c06-13ffbd62abd2fa11","8f44c0b1ebaba2b-17d6c2c7eb35f4cc"]},"geometry":{"type":"LineString","coordinates":[[-83.66094100000001,32.795088],[-83.66104800000001,32.795054],[-83.66164400000001,32.794807],[-83.66206100000001,32.794598],[-83.662131,32.794578],[-83.662221,32.794576],[-83.66235400000001,32.794629],[-83.66240400000001,32.794659],[-83.662571,32.794784],[-83.662622,32.794815],[-83.662692,32.794843],[-83.662902,32.794888],[-83.663234,32.794915],[-83.66328800000001,32.794927],[-83.663347,32.794963],[-83.663373,32.794995],[-83.663382,32.795023],[-83.663375,32.795066],[-83.6633,32.795215],[-83.663213,32.795406],[-83.663151,32.795561]]},"id":"8844c0b1ebfffff-17d6ff4c8ddac66a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67757900000001,32.752263]},"id":"8f44c0b15b66c71-17b6fa292ab43f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67841700000001,32.752369]},"id":"8f44c0b064cb6d2-17f6b81d666e3040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15b66c71-17b6fa292ab43f21","8f44c0b064cb6d2-17f6b81d666e3040"]},"geometry":{"type":"LineString","coordinates":[[-83.67757900000001,32.752263],[-83.67815800000001,32.752267],[-83.67841700000001,32.752369]]},"id":"8a44c0b15b67fff-17d6f91f304aaf2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72332700000001,32.906367]},"id":"8f44c0a2ea4e28d-17ff6a78af0e97a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72367600000001,32.906889]},"id":"8f44c0a2ea4bba3-13b7a99e8e34d725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea4e28d-17ff6a78af0e97a5","8f44c0a2ea4bba3-13b7a99e8e34d725"]},"geometry":{"type":"LineString","coordinates":[[-83.72332700000001,32.906367],[-83.723383,32.906554],[-83.723409,32.906599],[-83.723443,32.906658],[-83.72350800000001,32.906734],[-83.72358600000001,32.90681],[-83.72367600000001,32.906889]]},"id":"8a44c0a2ea4ffff-179fea205ac182e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.534643,32.830503]},"id":"8f44c0b83293546-17bff72020afb757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.536124,32.829309]},"id":"8f44c0b832b1955-13dff382845e3498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b832b1955-13dff382845e3498","8f44c0b83293546-17bff72020afb757"]},"geometry":{"type":"LineString","coordinates":[[-83.534643,32.830503],[-83.534874,32.830357],[-83.53534400000001,32.829957],[-83.536124,32.829309]]},"id":"8944c0b832bffff-17dff54c59fe058b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70908800000001,32.778336]},"id":"8f44c0b0396a053-17de4d3c00945308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709411,32.778606]},"id":"8f44c0b0396b015-1796cc722629389a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0396a053-17de4d3c00945308","8f44c0b0396b015-1796cc722629389a"]},"geometry":{"type":"LineString","coordinates":[[-83.70908800000001,32.778336],[-83.709411,32.778606]]},"id":"8a44c0b0396ffff-17b66cd71881da72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709314,32.777862]},"id":"8f44c0b0396eaa2-17b7ccaecc7a8f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709872,32.777901]},"id":"8f44c0b0396dd9b-17de6b52059b306e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0396eaa2-17b7ccaecc7a8f7c","8f44c0b0396dd9b-17de6b52059b306e"]},"geometry":{"type":"LineString","coordinates":[[-83.709314,32.777862],[-83.70977900000001,32.777875],[-83.709872,32.777901]]},"id":"8a44c0b0396ffff-17bffbff7a697552"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709327,32.777382]},"id":"8f44c0b0396110a-1797cca6a5cfb385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708743,32.777537]},"id":"8f44c0b03963095-17feee13a91d6183"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0396110a-1797cca6a5cfb385","8f44c0b03963095-17feee13a91d6183"]},"geometry":{"type":"LineString","coordinates":[[-83.709327,32.777382],[-83.708743,32.777537]]},"id":"8a44c0b03967fff-17be7d5d2c029f93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709309,32.777302]},"id":"8f44c0b03961893-13d7ccb1efc57523"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70962700000001,32.777189]},"id":"8f44c0b01592c9d-139f6beb2d81a589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01592c9d-139f6beb2d81a589","8f44c0b03961893-13d7ccb1efc57523"]},"geometry":{"type":"LineString","coordinates":[[-83.709309,32.777302],[-83.70962700000001,32.777189]]},"id":"8944c0b0397ffff-13b67c4e871ae683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664428,32.823081]},"id":"8f44c0b186ca794-139fba44877afdc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66446,32.820213]},"id":"8f44c0b1861b0a9-179fba3087ab7ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1861b0a9-179fba3087ab7ddd","8f44c0b186ca794-139fba44877afdc2"]},"geometry":{"type":"LineString","coordinates":[[-83.664428,32.823081],[-83.66446,32.820213]]},"id":"8944c0b186fffff-139ffa3a80b8ac1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647407,32.792983]},"id":"8f44c0b1e5669ad-139ee3d2adab180e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64958700000001,32.793019]},"id":"8f44c0b1e1b311e-13b6fe80290059a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e5669ad-139ee3d2adab180e","8f44c0b1e1b311e-13b6fe80290059a4"]},"geometry":{"type":"LineString","coordinates":[[-83.647407,32.792983],[-83.64958700000001,32.793019]]},"id":"8744c0b1effffff-13bfe1296e0cc084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7463572,32.773974]},"id":"8f44c0b2a03080c-13b5f23ec1a63999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74646630000001,32.775912600000005]},"id":"8f44c0b2a01dca8-13f5f1fa9204c941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a01dca8-13f5f1fa9204c941","8f44c0b2a03080c-13b5f23ec1a63999"]},"geometry":{"type":"LineString","coordinates":[[-83.7463572,32.773974],[-83.74643830000001,32.7755353],[-83.74646630000001,32.775912600000005]]},"id":"8944c0b2a03ffff-1797f21ecae9b17b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736316,32.856493]},"id":"8f44c0b564c6836-17be2ac281509fa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73603700000001,32.855277]},"id":"8f44c0b564f4d18-13b62b70ed9ff69c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b564f4d18-13b62b70ed9ff69c","8f44c0b564c6836-17be2ac281509fa7"]},"geometry":{"type":"LineString","coordinates":[[-83.736316,32.856493],[-83.736345,32.856129],[-83.736383,32.855451],[-83.736368,32.855397],[-83.73631200000001,32.855359],[-83.73603700000001,32.855277]]},"id":"8944c0b564fffff-13f78ac19593c83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554759,32.842655]},"id":"8f44c0b8e38488c-13f7e603a45c9c73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552138,32.841687]},"id":"8f44c0b8e0ce40b-1397ec69c0a468a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e38488c-13f7e603a45c9c73","8f44c0b8e0ce40b-1397ec69c0a468a9"]},"geometry":{"type":"LineString","coordinates":[[-83.554759,32.842655],[-83.55463800000001,32.842616],[-83.554176,32.842537],[-83.553854,32.842478],[-83.553172,32.842368],[-83.55305800000001,32.842346],[-83.55293,32.842311],[-83.55285500000001,32.842274],[-83.552768,32.842214000000006],[-83.552547,32.842028],[-83.552351,32.84187],[-83.552138,32.841687]]},"id":"8744c0b8effffff-139fc960ab809aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559813,32.864724]},"id":"8f44c0b8bd13150-13d7b9aceacc346d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55955200000001,32.867482]},"id":"8f44c0b8bc11976-1397fa5009fa8c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc11976-1397fa5009fa8c0d","8f44c0b8bd13150-13d7b9aceacc346d"]},"geometry":{"type":"LineString","coordinates":[[-83.559813,32.864724],[-83.559774,32.864784],[-83.559588,32.864979000000005],[-83.55951400000001,32.865085],[-83.559453,32.865215],[-83.55942300000001,32.865354],[-83.559414,32.865533],[-83.559419,32.865668],[-83.559441,32.865823],[-83.559595,32.866686],[-83.55962600000001,32.866912],[-83.559633,32.867103],[-83.559612,32.867258],[-83.55955200000001,32.867482]]},"id":"8844c0b8bdfffff-1797fa5423dfcdba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58396300000001,32.86359]},"id":"8f44c0b89c0a392-17fffeb72a1dae29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58398000000001,32.863852]},"id":"8f44c0b89ce4bb5-17b7feac86008542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c0a392-17fffeb72a1dae29","8f44c0b89ce4bb5-17b7feac86008542"]},"geometry":{"type":"LineString","coordinates":[[-83.58396300000001,32.86359],[-83.58398000000001,32.863852]]},"id":"8944c0b89c3ffff-17d7feb1d7faaa1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58309,32.864531]},"id":"8f44c0b89ce2784-13dfe0d8c1f673bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.583222,32.864821]},"id":"8f44c0b89cc48c8-1397a0864fa7843c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89cc48c8-1397a0864fa7843c","8f44c0b89ce2784-13dfe0d8c1f673bd"]},"geometry":{"type":"LineString","coordinates":[[-83.58309,32.864531],[-83.583163,32.864735],[-83.583185,32.864773],[-83.583222,32.864821]]},"id":"8944c0b89cfffff-13bfd0b4d8f625bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590625,32.862763]},"id":"8f44c0b898a5492-17ffee736989f0af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.588076,32.864086]},"id":"8f44c0b898935ad-17b7f4ac88cb0b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898a5492-17ffee736989f0af","8f44c0b898935ad-17b7f4ac88cb0b09"]},"geometry":{"type":"LineString","coordinates":[[-83.590625,32.862763],[-83.59031200000001,32.862716],[-83.58967100000001,32.8626],[-83.588963,32.862468],[-83.58883200000001,32.862464],[-83.58878100000001,32.862476],[-83.588741,32.862505],[-83.58869200000001,32.862575],[-83.588265,32.86356],[-83.588113,32.863901000000006],[-83.58808300000001,32.863998],[-83.588076,32.864086]]},"id":"8944c0b898bffff-17f7f24137a30f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68146800000001,32.751406]},"id":"8f44c0b067a4895-179ed0aa886703b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b067a4895-179ed0aa886703b7","8f44c0b0644a905-13f7d01a2b7da762"]},"geometry":{"type":"LineString","coordinates":[[-83.68169900000001,32.750902],[-83.681656,32.7511],[-83.68162500000001,32.751184],[-83.681567,32.751275],[-83.68146800000001,32.751406]]},"id":"8944c0b0647ffff-1796b0521e5dfd4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66838800000001,32.821453000000005]},"id":"8f44c0b18641ae0-17b6b0998899e1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669151,32.820207]},"id":"8f44c0b186652ed-1797eebca67497b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18641ae0-17b6b0998899e1ba","8f44c0b186652ed-1797eebca67497b0"]},"geometry":{"type":"LineString","coordinates":[[-83.66838800000001,32.821453000000005],[-83.669061,32.821451],[-83.66911,32.821447],[-83.669137,32.821421],[-83.669144,32.821376],[-83.669151,32.820207]]},"id":"8944c0b1867ffff-17beaf1a58867f09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758864,32.853216]},"id":"8f44c0b56b748d0-17bdd3b6072c98bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758584,32.851847]},"id":"8f44c0b544d2a6a-13d5f4650e71c06d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56b748d0-17bdd3b6072c98bc","8f44c0b544d2a6a-13d5f4650e71c06d"]},"geometry":{"type":"LineString","coordinates":[[-83.758864,32.853216],[-83.75898000000001,32.852958],[-83.75900700000001,32.852859],[-83.759026,32.852749],[-83.759028,32.852584],[-83.758998,32.852384],[-83.758949,32.852275],[-83.758858,32.852161],[-83.758584,32.851847]]},"id":"8744c0b54ffffff-13fff39c9aa6aa30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181968,32.835268500000005]},"id":"8f44c0a36d68b2c-13dffb23073e3ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6188202,32.8362937]},"id":"8f44c0a368b5413-13dfb99d65fb1440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d68b2c-13dffb23073e3ddf","8f44c0a368b5413-13dfb99d65fb1440"]},"geometry":{"type":"LineString","coordinates":[[-83.6181968,32.835268500000005],[-83.618176,32.835394],[-83.61823100000001,32.835605],[-83.61826900000001,32.835712],[-83.618302,32.83578],[-83.61833200000001,32.835841],[-83.618398,32.835937],[-83.61857300000001,32.836104],[-83.618705,32.836214000000005],[-83.6188202,32.8362937]]},"id":"8844c0a369fffff-13bffaa08e656a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61890550000001,32.8350213]},"id":"8f44c0a3699ec4d-13d779681c808ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618581,32.835527]},"id":"8f44c0a3699a410-13ff6a32e6b34c11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3699ec4d-13d779681c808ccd","8f44c0a3699a410-13ff6a32e6b34c11"]},"geometry":{"type":"LineString","coordinates":[[-83.61890550000001,32.8350213],[-83.618753,32.83513],[-83.618656,32.835323],[-83.618581,32.835527]]},"id":"8944c0a369bffff-13dfb9e1023dbf4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66610700000001,32.846167]},"id":"8f44c0a3597354b-13f6f62b21be9235"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667389,32.844504]},"id":"8f44c0b1b2ddcb1-17f7b309ee5b7d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3597354b-13f6f62b21be9235","8f44c0b1b2ddcb1-17f7b309ee5b7d1c"]},"geometry":{"type":"LineString","coordinates":[[-83.66610700000001,32.846167],[-83.666534,32.845593],[-83.667389,32.844504]]},"id":"8544c0a3fffffff-13fef49d98efc865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637303,32.843159]},"id":"8f44c0a34708185-179efc7da73b2379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6389793,32.843715200000005]},"id":"8f44c0a347710d0-17fef865f49f0ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a347710d0-17fef865f49f0ab2","8f44c0a34708185-179efc7da73b2379"]},"geometry":{"type":"LineString","coordinates":[[-83.637303,32.843159],[-83.6389793,32.843715200000005]]},"id":"8844c0a347fffff-17defa71d1adcd13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61338900000001,32.843693]},"id":"8f44c0a360b30e8-17ff36dfedddb36a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61202300000001,32.844206]},"id":"8f44c0a36092592-17bffa35a6b81664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36092592-17bffa35a6b81664","8f44c0a360b30e8-17ff36dfedddb36a"]},"geometry":{"type":"LineString","coordinates":[[-83.61338900000001,32.843693],[-83.61202300000001,32.844206]]},"id":"8744c0a36ffffff-179f788ac47347f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637518,32.818346000000005]},"id":"8f44c0b1a4e0c48-139efbf74a00121e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63897,32.819193]},"id":"8f44c0b1a45ecf2-139ff86bc75876ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4e0c48-139efbf74a00121e","8f44c0b1a45ecf2-139ff86bc75876ac"]},"geometry":{"type":"LineString","coordinates":[[-83.637518,32.818346000000005],[-83.63897,32.819193]]},"id":"8844c0b1a5fffff-1396fa3180744264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64517500000001,32.817597]},"id":"8f44c0b1a0aca24-17b6e945a8ec79f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644705,32.817149]},"id":"8f44c0b1a0a1802-179eea6b652307b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0a1802-179eea6b652307b8","8f44c0b1a0aca24-17b6e945a8ec79f4"]},"geometry":{"type":"LineString","coordinates":[[-83.64517500000001,32.817597],[-83.64515800000001,32.817217],[-83.64513500000001,32.817189],[-83.645093,32.817176],[-83.644705,32.817149]]},"id":"8844c0b1a1fffff-17fef999b118fc3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666196,32.757461]},"id":"8f44c0b1505b6a1-13f7b5f38091bcb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666336,32.758226]},"id":"8f44c0b153b1a71-17d7f59c069e48c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b153b1a71-17d7f59c069e48c0","8f44c0b1505b6a1-13f7b5f38091bcb4"]},"geometry":{"type":"LineString","coordinates":[[-83.666196,32.757461],[-83.666229,32.757508],[-83.666269,32.757745],[-83.66630400000001,32.757998],[-83.666336,32.758226]]},"id":"8a44c0b153b7fff-17d7b5bf66b7007a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70388200000001,32.744045]},"id":"8f44c0b04454872-13b679f1c0926a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7032721,32.7454266]},"id":"8f44c0b044ed540-1797fb6ef772af5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04454872-13b679f1c0926a7d","8f44c0b044ed540-1797fb6ef772af5c"]},"geometry":{"type":"LineString","coordinates":[[-83.70388200000001,32.744045],[-83.703868,32.745055],[-83.703828,32.745222000000005],[-83.70373500000001,32.745336],[-83.703559,32.745432],[-83.7032721,32.7454266]]},"id":"8844c0b045fffff-17b7da399eb4d082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703669,32.886436]},"id":"8f44c0a23a23956-17d6da76eddb7693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70442200000001,32.886877000000005]},"id":"8f44c0a23a2c043-17de78a0499a52cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a2c043-17de78a0499a52cb","8f44c0a23a23956-17d6da76eddb7693"]},"geometry":{"type":"LineString","coordinates":[[-83.703669,32.886436],[-83.70442200000001,32.886877000000005]]},"id":"8944c0a23a3ffff-17d6598b9551a870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.588729,32.869783000000005]},"id":"8f44c0b89005b51-179f731466243a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.588706,32.870207]},"id":"8f44c0b8902a78e-17b77322c6889ce3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89005b51-179f731466243a64","8f44c0b8902a78e-17b77322c6889ce3"]},"geometry":{"type":"LineString","coordinates":[[-83.588729,32.869783000000005],[-83.588706,32.870207]]},"id":"8a44c0b8902ffff-17b7f31b9629061e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648357,32.835203]},"id":"8f44c0a34859a56-13b7e180e94134fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649512,32.835861]},"id":"8f44c0a34b16348-13dffeaf018824b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b16348-13dffeaf018824b5","8f44c0a34859a56-13b7e180e94134fb"]},"geometry":{"type":"LineString","coordinates":[[-83.648357,32.835203],[-83.64848,32.835262],[-83.649512,32.835861]]},"id":"8744c0a34ffffff-13fef016839fb5bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68473800000001,32.824951]},"id":"8f44c0b191b3136-13bee8aec588519e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684331,32.822435]},"id":"8f44c0b19ce5ac8-1397e9ad28e0f6d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ce5ac8-1397e9ad28e0f6d3","8f44c0b191b3136-13bee8aec588519e"]},"geometry":{"type":"LineString","coordinates":[[-83.68473800000001,32.824951],[-83.68472,32.823962],[-83.68471500000001,32.823155],[-83.68469,32.823022],[-83.68464300000001,32.822922000000005],[-83.684589,32.822829],[-83.684331,32.822435]]},"id":"8744c0b19ffffff-17ffb8da32d59c5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654075,32.842976]},"id":"8f44c0a35d149a4-17bed38b29bb0c79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d06354-179ff15c6244f03d","8f44c0a35d149a4-17bed38b29bb0c79"]},"geometry":{"type":"LineString","coordinates":[[-83.654075,32.842976],[-83.654662,32.843349],[-83.65496900000001,32.843539]]},"id":"8944c0a35d3ffff-17def2743ba30033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646708,32.847347]},"id":"8f44c0a34272ad1-17d7e5878743acaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64706500000001,32.846425]},"id":"8f44c0a34229b4a-1797e4a8657d2fcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34272ad1-17d7e5878743acaf","8f44c0a34229b4a-1797e4a8657d2fcf"]},"geometry":{"type":"LineString","coordinates":[[-83.646708,32.847347],[-83.64706500000001,32.846425]]},"id":"8844c0a343fffff-17b7e517ffaaadc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646343,32.848331]},"id":"8f44c0a3425028b-13bee66babcf0200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646395,32.848112]},"id":"8f44c0a34250145-13b6e64b257c8936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3425028b-13bee66babcf0200","8f44c0a34250145-13b6e64b257c8936"]},"geometry":{"type":"LineString","coordinates":[[-83.646343,32.848331],[-83.646395,32.848112]]},"id":"8b44c0a34250fff-13fef65b67fc31f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69329400000001,32.833267]},"id":"8f44c0b1930e175-17f7f3cb4f45e505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696038,32.833804]},"id":"8f44c0b19360518-17d7ed184202d4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1930e175-17f7f3cb4f45e505","8f44c0b19360518-17d7ed184202d4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.69329400000001,32.833267],[-83.695295,32.833297],[-83.69539800000001,32.833305],[-83.695464,32.833317],[-83.695548,32.833363],[-83.69564600000001,32.833427],[-83.695768,32.833525],[-83.69592700000001,32.833672],[-83.696038,32.833804]]},"id":"8844c0b193fffff-17bff0444aad52eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69610800000001,32.833768]},"id":"8f44c0b19360cd5-17b76cec8e178337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69685700000001,32.834424]},"id":"8f44c0b1936ccea-17df6b186d0ab197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19360cd5-17b76cec8e178337","8f44c0b1936ccea-17df6b186d0ab197"]},"geometry":{"type":"LineString","coordinates":[[-83.69610800000001,32.833768],[-83.69685700000001,32.834424]]},"id":"8944c0b1937ffff-17fe6c027bc012ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67922300000001,32.854658]},"id":"8f44c0a26754145-13b7d625a591c507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677636,32.85513]},"id":"8f44c0a2662062d-13deda058f61563f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26754145-13b7d625a591c507","8f44c0a2662062d-13deda058f61563f"]},"geometry":{"type":"LineString","coordinates":[[-83.67922300000001,32.854658],[-83.67899,32.85485],[-83.678866,32.854943],[-83.678792,32.854979],[-83.678644,32.85503],[-83.678589,32.855043],[-83.678503,32.855061],[-83.67831600000001,32.855088],[-83.67793300000001,32.855117],[-83.677636,32.85513]]},"id":"8844c0a267fffff-139ef7fcc54f522a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658811,32.823908]},"id":"8f44c0b1bdab7b5-179ec7fb297a6eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6588,32.824798]},"id":"8f44c0b1bd89310-17dec80208b193a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bdab7b5-179ec7fb297a6eff","8f44c0b1bd89310-17dec80208b193a9"]},"geometry":{"type":"LineString","coordinates":[[-83.658811,32.823908],[-83.65879000000001,32.824362],[-83.658783,32.824624],[-83.6588,32.824798]]},"id":"8844c0b1bdfffff-17b6c805674b8cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.52988500000001,32.823614]},"id":"8f44c0b83468615-17fec2bde92990be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.533044,32.820769]},"id":"8f44c0b8318a109-17f7fb078458f8b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83468615-17fec2bde92990be","8f44c0b8318a109-17f7fb078458f8b5"]},"geometry":{"type":"LineString","coordinates":[[-83.52988500000001,32.823614],[-83.53121,32.822401],[-83.531879,32.821802000000005],[-83.532095,32.821596],[-83.532549,32.821202],[-83.532779,32.821007],[-83.533044,32.820769]]},"id":"8744c0b83ffffff-13fffee6ab06cf75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72947,32.921878]},"id":"8f44c0a280ebb0b-17dfdb79409ec95d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72991900000001,32.922212]},"id":"8f44c0a283b4791-179e9a60aefd4c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280ebb0b-17dfdb79409ec95d","8f44c0a283b4791-179e9a60aefd4c02"]},"geometry":{"type":"LineString","coordinates":[[-83.72947,32.921878],[-83.72991900000001,32.922212]]},"id":"8844c0a281fffff-17b63aecf6039362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730413,32.882278]},"id":"8f44c0a21b48031-179fd92be0e281a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73032900000001,32.8815526]},"id":"8f44c0a21b41aa1-13de796061c3a8c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21b48031-179fd92be0e281a3","8f44c0a21b41aa1-13de796061c3a8c0"]},"geometry":{"type":"LineString","coordinates":[[-83.730413,32.882278],[-83.730236,32.882041],[-83.730204,32.881946],[-83.730192,32.88187],[-83.73020100000001,32.881808],[-83.730253,32.881673],[-83.73032900000001,32.8815526]]},"id":"8944c0a21b7ffff-13d7f98705d91315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668401,32.846807000000005]},"id":"8f44c0a3596895a-1796f0916763039a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66906200000001,32.84595]},"id":"8f44c0a2659016a-13feeef44f7b17f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2659016a-13feeef44f7b17f3","8f44c0a3596895a-1796f0916763039a"]},"geometry":{"type":"LineString","coordinates":[[-83.668401,32.846807000000005],[-83.66906200000001,32.84595]]},"id":"8844c0a265fffff-17febfc2d45b805c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68712500000001,32.739297]},"id":"8f44c0b06d71024-179ea2dae5a937dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687039,32.7412567]},"id":"8f44c0b06d598ae-13d7f310a3131a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b06d71024-179ea2dae5a937dd","8f44c0b06d598ae-13d7f310a3131a6c"]},"geometry":{"type":"LineString","coordinates":[[-83.68712500000001,32.739297],[-83.687039,32.7412567]]},"id":"8944c0b06d7ffff-13f782f5ce54f506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71131030000001,32.825695]},"id":"8f44c0b0a0c5a26-13ff67cf122eefe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71135600000001,32.823779200000004]},"id":"8f44c0b0a01d356-17de47b286d16d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a0c5a26-13ff67cf122eefe6","8f44c0b0a01d356-17de47b286d16d6a"]},"geometry":{"type":"LineString","coordinates":[[-83.71131030000001,32.825695],[-83.711309,32.825477],[-83.71135600000001,32.823779200000004]]},"id":"8844c0b0a1fffff-17b6f7c2dd1207ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7445939,32.925639000000004]},"id":"8f44c0a29d542ec-17fdf68cd3f0666c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74413600000001,32.926051]},"id":"8f44c0a29d52a5d-17fdf7ab0810d911"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29d52a5d-17fdf7ab0810d911","8f44c0a29d542ec-17fdf68cd3f0666c"]},"geometry":{"type":"LineString","coordinates":[[-83.7445939,32.925639000000004],[-83.74449270000001,32.9256885],[-83.74413600000001,32.926051]]},"id":"8a44c0a29d57fff-17f5f72197d19ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6589107,32.7725905]},"id":"8f44c0b1111899c-13d7d7bcd6e017c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659245,32.772244]},"id":"8f44c0b1110348d-17fec6ebeeea8c40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110348d-17fec6ebeeea8c40","8f44c0b1111899c-13d7d7bcd6e017c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6589107,32.7725905],[-83.659013,32.772447],[-83.65913040000001,32.7723478],[-83.659245,32.772244]]},"id":"8944c0b1113ffff-17f7f75a002244cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.599812,32.851112]},"id":"8f44c0b8da9db72-139f580584ea2969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59974700000001,32.853741]},"id":"8f44c0b8d30c9a2-17f7782e2ae3b454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d30c9a2-17f7782e2ae3b454","8f44c0b8da9db72-139f580584ea2969"]},"geometry":{"type":"LineString","coordinates":[[-83.599812,32.851112],[-83.599761,32.85119],[-83.599744,32.851242],[-83.59973000000001,32.852719],[-83.599733,32.85371],[-83.59974700000001,32.853741]]},"id":"8744c0b8dffffff-13bf7834615b4547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699577,32.774272]},"id":"8f44c0b006c2b26-17f664746e9e4f8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69983,32.775914]},"id":"8f44c0b03d640c4-13f663d64e32593e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b006c2b26-17f664746e9e4f8b","8f44c0b03d640c4-13f663d64e32593e"]},"geometry":{"type":"LineString","coordinates":[[-83.699577,32.774272],[-83.699342,32.774555],[-83.69910300000001,32.774828],[-83.699054,32.774896000000005],[-83.699031,32.774954],[-83.699031,32.775044],[-83.699061,32.775124000000005],[-83.69913600000001,32.775198],[-83.69940000000001,32.77536],[-83.699534,32.775447],[-83.69964,32.775523],[-83.699692,32.775571],[-83.69976700000001,32.775664],[-83.699791,32.775711],[-83.699808,32.775778],[-83.69983,32.775914]]},"id":"8744c0b03ffffff-17f6e4eb5aeb899d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67832,32.87267]},"id":"8f44c0a22042b32-17bed85a086e474c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22042b32-17bed85a086e474c","8f44c0a220598c5-179f9847e204cce5"]},"geometry":{"type":"LineString","coordinates":[[-83.67834900000001,32.873848],[-83.67827600000001,32.873587],[-83.67832,32.87267]]},"id":"8944c0a2207ffff-179fb865bc7f8562"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716802,32.908631]},"id":"8f44c0a2e225922-17f67a66cc57d1cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720529,32.90867]},"id":"8f44c0a28d935a6-179ef14d699e19a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28d935a6-179ef14d699e19a2","8f44c0a2e225922-17f67a66cc57d1cc"]},"geometry":{"type":"LineString","coordinates":[[-83.716802,32.908631],[-83.71777300000001,32.908594],[-83.717943,32.908602],[-83.71807600000001,32.908617],[-83.718232,32.908648],[-83.718669,32.908751],[-83.71878000000001,32.908761000000005],[-83.718968,32.908752],[-83.71907300000001,32.908732],[-83.719775,32.908527],[-83.719869,32.908516],[-83.71996800000001,32.908513],[-83.72005700000001,32.90852],[-83.720174,32.908546],[-83.72027800000001,32.908569],[-83.720443,32.908625],[-83.720529,32.90867]]},"id":"8744c0a2effffff-17f7f5cfdc1c8162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675537,32.871043]},"id":"8f44c0a2201c2a3-13b7ff256cdf596d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674484,32.870767]},"id":"8f44c0a220acb6d-1397e1b78a98e9eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a220acb6d-1397e1b78a98e9eb","8f44c0a2201c2a3-13b7ff256cdf596d"]},"geometry":{"type":"LineString","coordinates":[[-83.675537,32.871043],[-83.674484,32.870767]]},"id":"8944c0a2203ffff-13dfa06e76959797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707544,32.862257]},"id":"8f44c0a2084b7a8-13bef10106c1eeed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7075956,32.8615562]},"id":"8f44c0a2084e341-139ef0e0c56f45ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2084e341-139ef0e0c56f45ce","8f44c0a2084b7a8-13bef10106c1eeed"]},"geometry":{"type":"LineString","coordinates":[[-83.707544,32.862257],[-83.707571,32.861863],[-83.7075956,32.8615562]]},"id":"8a44c0a2084ffff-13f7d0f180a44ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698532,32.785452]},"id":"8f44c0b03010108-17bfe7018f309ba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702387,32.785773]},"id":"8f44c0b031581b3-13967d982504e1e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03010108-17bfe7018f309ba0","8f44c0b031581b3-13967d982504e1e8"]},"geometry":{"type":"LineString","coordinates":[[-83.698532,32.785452],[-83.702387,32.785773]]},"id":"8844c0b031fffff-139ff24cda2fa571"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670325,32.79979]},"id":"8f44c0b1c6f185c-13beebdee40de340"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67026600000001,32.798918]},"id":"8f44c0b1c61b523-139fec03c6e12a71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6f185c-13beebdee40de340","8f44c0b1c61b523-139fec03c6e12a71"]},"geometry":{"type":"LineString","coordinates":[[-83.670325,32.79979],[-83.670291,32.79946],[-83.67026600000001,32.798918]]},"id":"8844c0b1c7fffff-13beabf4f55b4cc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65450200000001,32.794282]},"id":"8f44c0b1e109cf3-17ded2804e993812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656762,32.793121]},"id":"8f44c0b1e8dd018-13f6ecfbcfa49b9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8dd018-13f6ecfbcfa49b9d","8f44c0b1e109cf3-17ded2804e993812"]},"geometry":{"type":"LineString","coordinates":[[-83.65450200000001,32.794282],[-83.654746,32.794351],[-83.654871,32.7944],[-83.655129,32.794479],[-83.65517700000001,32.794488],[-83.655215,32.794491],[-83.655372,32.794474],[-83.655589,32.794435],[-83.655679,32.794429],[-83.656051,32.794435],[-83.65638200000001,32.794446],[-83.656429,32.794441],[-83.656468,32.794426],[-83.656492,32.794407],[-83.656518,32.794376],[-83.656542,32.794334],[-83.656614,32.794002],[-83.656683,32.793784],[-83.656706,32.793729],[-83.65673600000001,32.793622],[-83.656749,32.793515],[-83.656762,32.793121]]},"id":"8744c0b1effffff-1796fef319ac1547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605299,32.856779]},"id":"8f44c0a32ca5ab4-17dfeaa024a37242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604876,32.857522]},"id":"8f44c0a32caec0b-17bf4ba887385217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32caec0b-17bf4ba887385217","8f44c0a32ca5ab4-17dfeaa024a37242"]},"geometry":{"type":"LineString","coordinates":[[-83.605299,32.856779],[-83.604876,32.857522]]},"id":"8944c0a32cbffff-17d75b245aa0e2ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671818,32.80603]},"id":"8f44c0b18882b0b-13fee839cf2296e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671839,32.804025]},"id":"8f44c0b1899aa82-1797a82cab7c9e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1899aa82-1797a82cab7c9e8c","8f44c0b18882b0b-13fee839cf2296e3"]},"geometry":{"type":"LineString","coordinates":[[-83.671818,32.80603],[-83.67185900000001,32.804125],[-83.671839,32.804025]]},"id":"8844c0b189fffff-1797a82cabb40722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65750700000001,32.856369]},"id":"8f44c0a350f5646-17deeb2a2c0ea2c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65830600000001,32.856431]},"id":"8f44c0a350e0093-1797e936cee6fb5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350e0093-1797e936cee6fb5a","8f44c0a350f5646-17deeb2a2c0ea2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65750700000001,32.856369],[-83.65830600000001,32.856431]]},"id":"8944c0a350fffff-17f6ca30736987d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69974,32.812905]},"id":"8f44c0b1d309616-13d7e40e8c4d4cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70050900000001,32.813319]},"id":"8f44c0b1d355ce1-13d6622de43c9921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d309616-13d7e40e8c4d4cf7","8f44c0b1d355ce1-13d6622de43c9921"]},"geometry":{"type":"LineString","coordinates":[[-83.69974,32.812905],[-83.699847,32.81291],[-83.700263,32.813164],[-83.70050900000001,32.813319]]},"id":"8944c0b1d37ffff-13b673197b20f254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763434,32.8221539]},"id":"8f44c0b0d252135-13d7f88dc1ce0d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76532900000001,32.820193]},"id":"8f44c0b0d358002-179de3ed676e5f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d358002-179de3ed676e5f15","8f44c0b0d252135-13d7f88dc1ce0d72"]},"geometry":{"type":"LineString","coordinates":[[-83.763434,32.8221539],[-83.763481,32.822001],[-83.76351100000001,32.82191],[-83.763565,32.821818],[-83.76363,32.821740000000005],[-83.763703,32.821665],[-83.763771,32.821607],[-83.76431500000001,32.821182],[-83.76476000000001,32.820828],[-83.76491100000001,32.820703],[-83.765026,32.82059],[-83.765145,32.820458],[-83.76532900000001,32.820193]]},"id":"8844c0b0d3fffff-17f7e652f155b1b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641789,32.82211]},"id":"8f44c0b1a71bd24-13bef189efa66e2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642679,32.821208]},"id":"8f44c0b1a703919-1797ef5da3b83e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a71bd24-13bef189efa66e2f","8f44c0b1a703919-1797ef5da3b83e90"]},"geometry":{"type":"LineString","coordinates":[[-83.641789,32.82211],[-83.642679,32.821208]]},"id":"8944c0b1a73ffff-13b6f073c5ce701e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762922,32.776944]},"id":"8f44c0b286a1715-13f7c9cdcbba4202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762977,32.778182]},"id":"8f44c0b286ab799-17ffc9ab6a9a71e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b286a1715-13f7c9cdcbba4202","8f44c0b286ab799-17ffc9ab6a9a71e9"]},"geometry":{"type":"LineString","coordinates":[[-83.762922,32.776944],[-83.76294700000001,32.777768],[-83.76295900000001,32.778044],[-83.762977,32.778182]]},"id":"8944c0b286bffff-17fdf9c104988f69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761877,32.916221]},"id":"8f44c0a2dae1c58-17ffec5aecd08599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76339800000001,32.914566]},"id":"8f44c0a2da29288-13f7c8a442362670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dae1c58-17ffec5aecd08599","8f44c0a2da29288-13f7c8a442362670"]},"geometry":{"type":"LineString","coordinates":[[-83.761877,32.916221],[-83.76209800000001,32.916041],[-83.762223,32.915926],[-83.762394,32.915757],[-83.762687,32.91543],[-83.762924,32.915135],[-83.763109,32.914883],[-83.76318900000001,32.914752],[-83.76339800000001,32.914566]]},"id":"8844c0a2dbfffff-1797ca7017fce3c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726459,32.894993]},"id":"8f44c0a2c42405e-13bea2d326fa14af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72767900000001,32.894961]},"id":"8f44c0a2c554ce8-1396bfd8ad6a6e74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c42405e-13bea2d326fa14af","8f44c0a2c554ce8-1396bfd8ad6a6e74"]},"geometry":{"type":"LineString","coordinates":[[-83.726459,32.894993],[-83.72767900000001,32.894961]]},"id":"8844c0a2c5fffff-13b6a155e590ba42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761559,32.867379]},"id":"8f44c0b501b5719-17bfed21a558bc55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759828,32.867503]},"id":"8f44c0b50ccb913-139df15b88462305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50ccb913-139df15b88462305","8f44c0b501b5719-17bfed21a558bc55"]},"geometry":{"type":"LineString","coordinates":[[-83.761559,32.867379],[-83.76090900000001,32.867365],[-83.76051100000001,32.867378],[-83.760202,32.867419000000005],[-83.759828,32.867503]]},"id":"8744c0b50ffffff-17dfef412d2edfba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582519,32.845601]},"id":"8f44c0b8d585796-1397a23da73845d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d585796-1397a23da73845d1","8f44c0b8d5980d4-179fe4cac147b41a"]},"geometry":{"type":"LineString","coordinates":[[-83.581474,32.846643],[-83.58187000000001,32.846249],[-83.582054,32.846055],[-83.582519,32.845601]]},"id":"8944c0b8d5bffff-13dfe3851abc57e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.743419,32.827888]},"id":"8f44c0b08269151-17d7f96b29d48d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74342820000001,32.827388400000004]},"id":"8f44c0b0826d1b4-179df96563833710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0826d1b4-179df96563833710","8f44c0b08269151-17d7f96b29d48d9d"]},"geometry":{"type":"LineString","coordinates":[[-83.743419,32.827888],[-83.74342820000001,32.827388400000004]]},"id":"8a44c0b0826ffff-17bdf9684b8c91fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556386,32.83762]},"id":"8f44c0b8e143a70-179fc20ac0aba284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556353,32.836653000000005]},"id":"8f44c0b8e1441b5-17bfe21f6d17390a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e1441b5-17bfe21f6d17390a","8f44c0b8e143a70-179fc20ac0aba284"]},"geometry":{"type":"LineString","coordinates":[[-83.556386,32.83762],[-83.556365,32.837018],[-83.556353,32.836653000000005]]},"id":"8a44c0b8e147fff-17ffd21531f4f4c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69633970000001,32.7881725]},"id":"8f44c0b037246c0-17dffc5bb8504293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69634,32.787511]},"id":"8f44c0b0308a4a4-17d66c5b8538f078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0308a4a4-17d66c5b8538f078","8f44c0b037246c0-17dffc5bb8504293"]},"geometry":{"type":"LineString","coordinates":[[-83.69633970000001,32.7881725],[-83.69634,32.787511]]},"id":"8844c0b031fffff-17977c5b9e1aa47a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65210900000001,32.756417]},"id":"8f44c0b10b2e46c-13def857efb181d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651402,32.756436]},"id":"8f44c0b10b00954-13f6da11cfa8e1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b2e46c-13def857efb181d3","8f44c0b10b00954-13f6da11cfa8e1ba"]},"geometry":{"type":"LineString","coordinates":[[-83.65210900000001,32.756417],[-83.651402,32.756436]]},"id":"8944c0b10b3ffff-13ded934dbaefe15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71759,32.803852]},"id":"8f44c0b0e0e1c73-17b7b87a4bc692fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71798000000001,32.804385]},"id":"8f44c0b0e0ec0ca-17f6b786841968ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e0e1c73-17b7b87a4bc692fa","8f44c0b0e0ec0ca-17f6b786841968ef"]},"geometry":{"type":"LineString","coordinates":[[-83.71759,32.803852],[-83.71798000000001,32.804385]]},"id":"8944c0b0e0fffff-17de3800651ec219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646989,32.821193]},"id":"8f44c0b1a0cd466-17ffe4d7eb5573ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0cd466-17ffe4d7eb5573ba","8f44c0b1a0c04d3-17bfe7baa2d41446"]},"geometry":{"type":"LineString","coordinates":[[-83.645807,32.820264],[-83.646989,32.821193]]},"id":"8944c0b1a0fffff-17dff64947b7fc1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737699,32.885862]},"id":"8f44c0b52658969-17dfc76228e673c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73910950000001,32.8863715]},"id":"8f44c0b526491b0-179e33f09cb7f6ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b526491b0-179e33f09cb7f6ef","8f44c0b52658969-17dfc76228e673c5"]},"geometry":{"type":"LineString","coordinates":[[-83.737699,32.885862],[-83.73910950000001,32.8863715]]},"id":"8944c0b5267ffff-17fef5a965d8cb5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71339300000001,32.820535]},"id":"8f44c0b0a10dd66-17f662b9646c0c5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71050120000001,32.8206736]},"id":"8f44c0b0a1a8a50-17bf49c8c7e58442"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a1a8a50-17bf49c8c7e58442","8f44c0b0a10dd66-17f662b9646c0c5f"]},"geometry":{"type":"LineString","coordinates":[[-83.71339300000001,32.820535],[-83.713294,32.820599],[-83.71318000000001,32.820649],[-83.71305500000001,32.820681],[-83.712924,32.820698],[-83.712647,32.820698],[-83.71204300000001,32.820687],[-83.711183,32.820679000000005],[-83.71050120000001,32.8206736]]},"id":"8844c0b0a1fffff-17bf76375ac72aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.752572,32.904822]},"id":"8f44c0a2dd6a91c-13bde3128f82f1d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75217160000001,32.9041366]},"id":"8f44c0a2dd63c55-13fde40cc793fdaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dd6a91c-13bde3128f82f1d2","8f44c0a2dd63c55-13fde40cc793fdaf"]},"geometry":{"type":"LineString","coordinates":[[-83.752572,32.904822],[-83.75229350000001,32.9043453],[-83.7522672,32.9043002],[-83.75217160000001,32.9041366]]},"id":"8944c0a2dd7ffff-13d7f38fa996ce9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5689663,32.808336100000005]},"id":"8f44c0baa59280d-179fb3541f9c42d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568568,32.808453]},"id":"8f44c0baa592482-17f7a44d00fef455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0baa592482-17f7a44d00fef455","8f44c0baa59280d-179fb3541f9c42d2"]},"geometry":{"type":"LineString","coordinates":[[-83.5689663,32.808336100000005],[-83.56884670000001,32.8083643],[-83.568568,32.808453]]},"id":"8644c0b87ffffff-17bfa3d11e7fa6ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5689943,32.8087274]},"id":"8f44c0baa5935a9-139fa3429e7cc083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0baa592482-17f7a44d00fef455","8f44c0baa5935a9-139fa3429e7cc083"]},"geometry":{"type":"LineString","coordinates":[[-83.568568,32.808453],[-83.56879040000001,32.8085195],[-83.56884600000001,32.8085504],[-83.5689076,32.8086069],[-83.5689943,32.8087274]]},"id":"8644c0b87ffffff-13b7a3b9b699d1d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5689327,32.8078668]},"id":"8f44c0baa596d5c-17f7e3691c55eabd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0baa596d5c-17f7e3691c55eabd","8f44c0baa592482-17f7a44d00fef455"]},"geometry":{"type":"LineString","coordinates":[[-83.5689327,32.8078668],[-83.5688959,32.8079946],[-83.5688679,32.8080927],[-83.5688081,32.8081929],[-83.568568,32.808453]]},"id":"8644c0b87ffffff-17b7f3c65449f2f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61995200000001,32.871398]},"id":"8f44c0a3236e089-139fe6da02f6ec6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62056600000001,32.87227]},"id":"8f44c0a33cb6d55-13b7e55a4f1e6d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3236e089-139fe6da02f6ec6a","8f44c0a33cb6d55-13b7e55a4f1e6d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.61995200000001,32.871398],[-83.62056600000001,32.87227]]},"id":"8944c0a3237ffff-13b7661a25efa083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56434200000001,32.77977]},"id":"8f44c0ba378d8f6-13dfee9e4b964266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56268800000001,32.781115]},"id":"8f44c0ba36a2334-17b7f2a80ab22e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba378d8f6-13dfee9e4b964266","8f44c0ba36a2334-17b7f2a80ab22e07"]},"geometry":{"type":"LineString","coordinates":[[-83.56434200000001,32.77977],[-83.564256,32.77984],[-83.56268800000001,32.781115]]},"id":"8844c0ba37fffff-1397b0a3251d42d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553348,32.837746]},"id":"8f44c0b8e00519c-17f7c9758cd14829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552507,32.838464]},"id":"8f44c0b8e01ca1d-13bfcb8329f94d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e00519c-17f7c9758cd14829","8f44c0b8e01ca1d-13bfcb8329f94d73"]},"geometry":{"type":"LineString","coordinates":[[-83.553348,32.837746],[-83.552507,32.838464]]},"id":"8944c0b8e03ffff-13d7ea7c5e12564b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709103,32.790802]},"id":"8f44c0b03ac9183-17df4d32a976ea8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71305100000001,32.790883]},"id":"8f44c0b0ed156b0-17ffe38f2ee9df84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ac9183-17df4d32a976ea8a","8f44c0b0ed156b0-17ffe38f2ee9df84"]},"geometry":{"type":"LineString","coordinates":[[-83.709103,32.790802],[-83.71305100000001,32.790883]]},"id":"8644c0b07ffffff-17f6d860e47d59b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734538,32.906295]},"id":"8f44c0a2c29e661-17d66f19c0b450dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73310210000001,32.906284500000005]},"id":"8f44c0a2c66ad58-17bfd29b3c183566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c66ad58-17bfd29b3c183566","8f44c0a2c29e661-17d66f19c0b450dd"]},"geometry":{"type":"LineString","coordinates":[[-83.734538,32.906295],[-83.73419100000001,32.906284],[-83.73388200000001,32.906261],[-83.73357560000001,32.9062342],[-83.7334671,32.9062263],[-83.7333468,32.906233400000005],[-83.73310210000001,32.906284500000005]]},"id":"8744c0a2cffffff-17bff0dbd066c574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63821200000001,32.82011]},"id":"8f44c0b1a7b6cb4-17defa4587e98851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63855500000001,32.820304]},"id":"8f44c0b1a7b6a03-17d6f96f23d022f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7b6a03-17d6f96f23d022f5","8f44c0b1a7b6cb4-17defa4587e98851"]},"geometry":{"type":"LineString","coordinates":[[-83.63821200000001,32.82011],[-83.63855500000001,32.820304]]},"id":"8b44c0b1a7b6fff-1797f9da54721987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64354,32.833035]},"id":"8f44c0a3488cac4-13f6ed438ea12cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3488cac4-13f6ed438ea12cbd","8f44c0a34888825-17f6fdac781a818e"]},"geometry":{"type":"LineString","coordinates":[[-83.64354,32.833035],[-83.64349250000001,32.8330925],[-83.64337210000001,32.8332385]]},"id":"8a44c0a3488ffff-17b6fd78083be59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63250380000001,32.8171125]},"id":"8f44c0b1a492002-179758352058c47b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631729,32.816702]},"id":"8f44c0ba9860984-1797ca1964097f69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9860984-1797ca1964097f69","8f44c0b1a492002-179758352058c47b"]},"geometry":{"type":"LineString","coordinates":[[-83.63250380000001,32.8171125],[-83.63235900000001,32.817079],[-83.631729,32.816702]]},"id":"8944c0ba987ffff-1797392bc4b15dda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59622200000001,32.868113]},"id":"8f44c0b89bac075-139fe0c94ce8dee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59638000000001,32.870607]},"id":"8f44c0b89a1574c-17b760668d3967c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89a1574c-17b760668d3967c2","8f44c0b89bac075-139fe0c94ce8dee1"]},"geometry":{"type":"LineString","coordinates":[[-83.59622200000001,32.868113],[-83.595563,32.86881],[-83.595476,32.868924],[-83.59543400000001,32.869005],[-83.595397,32.869131],[-83.595387,32.869214],[-83.595402,32.869376],[-83.595459,32.869535],[-83.59555900000001,32.869672],[-83.59638000000001,32.870607]]},"id":"8844c0b89bfffff-1797f1d7d83b9a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60180600000001,32.864129000000005]},"id":"8f44c0a3240276c-17d7f3274be0f79d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.602174,32.865336]},"id":"8f44c0a324e4dab-13d7524140bcedb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3240276c-17d7f3274be0f79d","8f44c0a324e4dab-13d7524140bcedb3"]},"geometry":{"type":"LineString","coordinates":[[-83.60180600000001,32.864129000000005],[-83.60156900000001,32.864351],[-83.60144700000001,32.864461],[-83.60138500000001,32.864511],[-83.60135100000001,32.864555],[-83.601343,32.864603],[-83.601358,32.864649],[-83.601399,32.864697],[-83.602174,32.865336]]},"id":"8944c0a3243ffff-13d77378fa57bcac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70468100000001,32.861994]},"id":"8f44c0a208ccbb1-139e57fe6169f131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7042821,32.862096900000004]},"id":"8f44c0a208ceb04-13ded8f7b35816b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208ceb04-13ded8f7b35816b9","8f44c0a208ccbb1-139e57fe6169f131"]},"geometry":{"type":"LineString","coordinates":[[-83.70468100000001,32.861994],[-83.7042821,32.862096900000004]]},"id":"8a44c0a208cffff-13be787b16d74ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55225300000001,32.848723]},"id":"8f44c0b8a933235-13b7ec21e6154ad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552113,32.848779]},"id":"8f44c0b8a933640-13d7ec7969fd1536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8a933640-13d7ec7969fd1536","8f44c0b8a933235-13b7ec21e6154ad3"]},"geometry":{"type":"LineString","coordinates":[[-83.55225300000001,32.848723],[-83.55207700000001,32.848383000000005],[-83.552058,32.848359],[-83.552028,32.848343],[-83.55199400000001,32.848346],[-83.551962,32.848362],[-83.55194,32.848391],[-83.551941,32.848435],[-83.552113,32.848779]]},"id":"8944c0b8a93ffff-13bfec92041b8ccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706873,32.868522]},"id":"8f44c0a20ad43a5-139e52a4667c7c0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20ad43a5-139e52a4667c7c0e","8f44c0a20a865a2-179ed7712c310160"]},"geometry":{"type":"LineString","coordinates":[[-83.706873,32.868522],[-83.706767,32.868423],[-83.706587,32.86833],[-83.706367,32.868236],[-83.70609800000001,32.868094],[-83.70591200000001,32.867973],[-83.705751,32.867845],[-83.705582,32.867697],[-83.70545,32.867555],[-83.70538900000001,32.867446],[-83.70534500000001,32.867331],[-83.705281,32.867196],[-83.70518200000001,32.867046],[-83.705065,32.866895],[-83.70501,32.866798],[-83.70489400000001,32.866557],[-83.70488900000001,32.866415],[-83.70489500000001,32.866346],[-83.704907,32.866292]]},"id":"8844c0a20bfffff-13b6d58ceea75243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621308,32.824135000000005]},"id":"8f44c0ba908da0b-17bf638a812e67b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62147900000001,32.818537]},"id":"8f44c0ba9c59272-1397a31fa76a4343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9c59272-1397a31fa76a4343","8f44c0ba908da0b-17bf638a812e67b4"]},"geometry":{"type":"LineString","coordinates":[[-83.621308,32.824135000000005],[-83.622909,32.822483000000005],[-83.62319930000001,32.8221849],[-83.6232858,32.8219031],[-83.62316100000001,32.821603],[-83.621802,32.820515],[-83.621688,32.820421],[-83.62168000000001,32.819364],[-83.62161900000001,32.819021],[-83.62147900000001,32.818537]]},"id":"8844c0ba91fffff-17bfe15080262f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618318,32.827424]},"id":"8f44c0ba971bc45-17b72ad744e6302d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61942,32.825896]},"id":"8f44c0ba9704254-13ff28268f1cd514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba971bc45-17b72ad744e6302d","8f44c0ba9704254-13ff28268f1cd514"]},"geometry":{"type":"LineString","coordinates":[[-83.618318,32.827424],[-83.618385,32.82725],[-83.61898000000001,32.826577],[-83.61915450000001,32.826308600000004],[-83.61942,32.825896]]},"id":"8944c0ba973ffff-17df397d5047f6b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636346,32.832116]},"id":"8f44c0a34c19726-13befed3cad95670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636897,32.83144]},"id":"8f44c0a34c0ecd1-1396fd7b662877bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34c19726-13befed3cad95670","8f44c0a34c0ecd1-1396fd7b662877bb"]},"geometry":{"type":"LineString","coordinates":[[-83.636346,32.832116],[-83.636897,32.83144]]},"id":"8944c0a34c3ffff-13d7fe279888b257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700084,32.871088]},"id":"8f44c0a2039e543-13de63378e2d78fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70029600000001,32.874437]},"id":"8f44c0a2029d333-13ff62b30c8515eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2039e543-13de63378e2d78fd","8f44c0a2029d333-13ff62b30c8515eb"]},"geometry":{"type":"LineString","coordinates":[[-83.700084,32.871088],[-83.699973,32.871338],[-83.69986700000001,32.871747],[-83.69978300000001,32.872116000000005],[-83.699695,32.872853],[-83.699595,32.873333],[-83.699577,32.873601],[-83.699601,32.873787],[-83.699656,32.8739],[-83.699747,32.874038],[-83.699827,32.874113],[-83.70029600000001,32.874437]]},"id":"8844c0a203fffff-17bee3e6ac305ed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646136,32.818178]},"id":"8f44c0b1a0180a9-17b7e6ed025e5210"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648396,32.818205]},"id":"8f44c0b1a076759-17b6e16885bb17b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0180a9-17b7e6ed025e5210","8f44c0b1a076759-17b6e16885bb17b1"]},"geometry":{"type":"LineString","coordinates":[[-83.646136,32.818178],[-83.6462386,32.8181792],[-83.6462678,32.8181795],[-83.647576,32.818195],[-83.648396,32.818205]]},"id":"8844c0b1a1fffff-17bfe42ac0f58c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71868900000001,32.889418]},"id":"8f44c0a21285a1a-179e75cb6a3c2a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71906010000001,32.8908506]},"id":"8f44c0a21289174-139fb4e37b32302f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21285a1a-179e75cb6a3c2a37","8f44c0a21289174-139fb4e37b32302f"]},"geometry":{"type":"LineString","coordinates":[[-83.71868900000001,32.889418],[-83.71867800000001,32.889606],[-83.71867800000001,32.889970000000005],[-83.71871300000001,32.890171],[-83.718744,32.890281],[-83.71880900000001,32.890439],[-83.718857,32.890532],[-83.71906010000001,32.8908506]]},"id":"8844c0a213fffff-17de7594f86eda7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75342,32.883797]},"id":"8f44c0b53c33770-17d5e1008dda587d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7534399,32.883219100000005]},"id":"8f44c0b53c30554-17fff0f41decc57c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53c33770-17d5e1008dda587d","8f44c0b53c30554-17fff0f41decc57c"]},"geometry":{"type":"LineString","coordinates":[[-83.75342,32.883797],[-83.7534399,32.883219100000005]]},"id":"8a44c0b53c37fff-17b5f0fa541f77cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671452,32.804031]},"id":"8f44c0b18d69b35-1797e91e8c29dca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67147200000001,32.802466]},"id":"8f44c0b18996b56-13d7e91207f27bc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d69b35-1797e91e8c29dca9","8f44c0b18996b56-13d7e91207f27bc9"]},"geometry":{"type":"LineString","coordinates":[[-83.671452,32.804031],[-83.67147200000001,32.802466]]},"id":"8844c0b189fffff-13bef91847c3ece7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632591,32.857867]},"id":"8f44c0a3018ec80-1397e7fea8664792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627916,32.860774]},"id":"8f44c0a304460d9-179fd3688ad136d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3018ec80-1397e7fea8664792","8f44c0a304460d9-179fd3688ad136d3"]},"geometry":{"type":"LineString","coordinates":[[-83.632591,32.857867],[-83.632413,32.858043],[-83.63218400000001,32.858217],[-83.63208200000001,32.858338],[-83.63204,32.858474],[-83.632005,32.858623],[-83.631974,32.858829],[-83.631983,32.85906],[-83.63197500000001,32.859169],[-83.631985,32.859325000000005],[-83.631946,32.859453],[-83.631871,32.859577],[-83.63176100000001,32.859707],[-83.631613,32.859816],[-83.631468,32.859901],[-83.63131200000001,32.859969],[-83.631223,32.860017],[-83.63117600000001,32.86008],[-83.63114800000001,32.860149],[-83.631147,32.860241],[-83.631248,32.860577],[-83.63128300000001,32.860712],[-83.631286,32.860795],[-83.631246,32.860909],[-83.631082,32.861145],[-83.63105800000001,32.861227],[-83.631073,32.861328],[-83.63113700000001,32.861566],[-83.631173,32.861728],[-83.63118800000001,32.861824],[-83.63118,32.861922],[-83.63112500000001,32.862046],[-83.631066,32.862158],[-83.63098000000001,32.862236],[-83.630871,32.862285],[-83.63077700000001,32.862291],[-83.630657,32.862288],[-83.63051700000001,32.862254],[-83.63019800000001,32.862167],[-83.629946,32.862107],[-83.62932500000001,32.861902],[-83.62887900000001,32.861711],[-83.62861600000001,32.861583],[-83.62839600000001,32.861444],[-83.628237,32.861293],[-83.62810300000001,32.861131],[-83.628027,32.860995],[-83.627916,32.860774]]},"id":"8744c0a30ffffff-17ffdcbb2e40e4e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76558100000001,32.871395]},"id":"8f44c0b5002b31c-139de34fe6e28233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764978,32.8705134]},"id":"8f44c0b5002e4b0-17f7e4c8c0b10299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5002b31c-139de34fe6e28233","8f44c0b5002e4b0-17f7e4c8c0b10299"]},"geometry":{"type":"LineString","coordinates":[[-83.76558100000001,32.871395],[-83.76531100000001,32.871192],[-83.76525000000001,32.871142],[-83.765172,32.871057],[-83.76510900000001,32.87097],[-83.76505900000001,32.87088],[-83.765023,32.870783],[-83.76500200000001,32.870683],[-83.764978,32.8705134]]},"id":"8a44c0b5002ffff-139dc43d945115e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64439700000001,32.848089]},"id":"8f44c0a342e2543-13b7eb2bed473902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64398200000001,32.847803]},"id":"8f44c0a342f540b-17f6ec2f4ae89c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342e2543-13b7eb2bed473902","8f44c0a342f540b-17f6ec2f4ae89c28"]},"geometry":{"type":"LineString","coordinates":[[-83.64439700000001,32.848089],[-83.644204,32.847969],[-83.64398200000001,32.847803]]},"id":"8944c0a342fffff-13d7ebaf71d7de58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704683,32.861053000000005]},"id":"8f44c0a208eecf4-13de77fd23b6bdec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70423890000001,32.8609485]},"id":"8f44c0a208c4b6c-139ed912b4b77f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208c4b6c-139ed912b4b77f1f","8f44c0a208eecf4-13de77fd23b6bdec"]},"geometry":{"type":"LineString","coordinates":[[-83.704683,32.861053000000005],[-83.70423890000001,32.8609485]]},"id":"8944c0a208fffff-13bfd887fdc5569c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647368,32.812706]},"id":"8f44c0b1a134326-13d7e3eb03dc9b55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64735800000001,32.811926]},"id":"8f44c0b1a89e6ac-13dfe3f1493d1f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a89e6ac-13dfe3f1493d1f36","8f44c0b1a134326-13d7e3eb03dc9b55"]},"geometry":{"type":"LineString","coordinates":[[-83.647368,32.812706],[-83.64735800000001,32.811926]]},"id":"8744c0b1affffff-13d7e3ee230d8e38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58649100000001,32.851754]},"id":"8f44c0b8d45b200-139f788b25b84d8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d783af2-17df78b28ac214e8","8f44c0b8d45b200-139f788b25b84d8d"]},"geometry":{"type":"LineString","coordinates":[[-83.58649100000001,32.851754],[-83.58644100000001,32.852005000000005],[-83.586415,32.852203],[-83.58640600000001,32.852573],[-83.58641800000001,32.853676],[-83.58642800000001,32.853704]]},"id":"8944c0b8d7bffff-13fff8b72a6fbdcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73581700000001,32.887763]},"id":"8f44c0a2c996353-1397ebfa62519888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73606000000001,32.885863]},"id":"8f44c0b526e8541-17f66b6280c00df3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c996353-1397ebfa62519888","8f44c0b526e8541-17f66b6280c00df3"]},"geometry":{"type":"LineString","coordinates":[[-83.73581700000001,32.887763],[-83.735741,32.887611],[-83.73564900000001,32.887406],[-83.735613,32.887287],[-83.73559200000001,32.887158],[-83.73558700000001,32.887013],[-83.73559300000001,32.88692],[-83.73562100000001,32.886778],[-83.735662,32.886651],[-83.73574,32.886482],[-83.73606000000001,32.885863]]},"id":"8644c0b57ffffff-17bf8c2a39a1fae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76660000000001,32.874494]},"id":"8f44c0b5005934a-139fc0d304898c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7657624,32.8738426]},"id":"8f44c0b5005e2ae-1797e2de895c9b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5005934a-139fc0d304898c18","8f44c0b5005e2ae-1797e2de895c9b8f"]},"geometry":{"type":"LineString","coordinates":[[-83.76660000000001,32.874494],[-83.766215,32.874242],[-83.7657624,32.8738426]]},"id":"8944c0b5007ffff-13ddc1dfdabc7f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66856800000001,32.876418]},"id":"8f44c0a226a412a-17d7f02906a59d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670231,32.877164]},"id":"8f44c0a2261190c-17b7ac19af6b2870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2261190c-17b7ac19af6b2870","8f44c0a226a412a-17d7f02906a59d35"]},"geometry":{"type":"LineString","coordinates":[[-83.66856800000001,32.876418],[-83.668852,32.876705],[-83.66896,32.876776],[-83.66907900000001,32.876829],[-83.669178,32.876855],[-83.670231,32.877164]]},"id":"8844c0a227fffff-17fffe3dcf7fdbeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667598,32.87686]},"id":"8f44c0a226b5281-17f7b2874aadaa34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2261190c-17b7ac19af6b2870","8f44c0a226b5281-17f7b2874aadaa34"]},"geometry":{"type":"LineString","coordinates":[[-83.670231,32.877164],[-83.670175,32.877243],[-83.670074,32.87736],[-83.669908,32.877578],[-83.669818,32.877673],[-83.66973200000001,32.877744],[-83.669662,32.877792],[-83.669516,32.877867],[-83.66934900000001,32.877926],[-83.669167,32.877977],[-83.668778,32.878056],[-83.66868500000001,32.87807],[-83.66863000000001,32.878072],[-83.668592,32.878064],[-83.668535,32.87803],[-83.667765,32.877094],[-83.667598,32.87686]]},"id":"8844c0a227fffff-13dfff6d7c6035c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.551803,32.840299]},"id":"8f44c0b8e0f175d-17b7ed3b277a9128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552453,32.839752000000004]},"id":"8f44c0b8e0e639a-17dfcba4ef09570b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0f175d-17b7ed3b277a9128","8f44c0b8e0e639a-17dfcba4ef09570b"]},"geometry":{"type":"LineString","coordinates":[[-83.551803,32.840299],[-83.552453,32.839752000000004]]},"id":"8944c0b8e0fffff-17f7fc700fa62640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713161,32.847201000000005]},"id":"8f44c0a24af3725-17fee34a67eefe22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713364,32.849413000000006]},"id":"8f44c0a24366ce0-13f762cb8cc12770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24af3725-17fee34a67eefe22","8f44c0a24366ce0-13f762cb8cc12770"]},"geometry":{"type":"LineString","coordinates":[[-83.713161,32.847201000000005],[-83.713161,32.847617],[-83.713149,32.847852],[-83.713131,32.847997],[-83.71310100000001,32.848154],[-83.713068,32.848287],[-83.71298900000001,32.848503],[-83.71293200000001,32.8487],[-83.712923,32.848777000000005],[-83.712929,32.848861],[-83.712961,32.848976],[-83.71299300000001,32.849064000000006],[-83.713035,32.849137],[-83.713103,32.849204],[-83.713364,32.849413000000006]]},"id":"8744c0a24ffffff-13df5376c1c341df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645143,32.794143000000005]},"id":"8f44c0b1e556789-17f7e959a3d19df3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645061,32.793973]},"id":"8f44c0b1e55658d-179fe98cee7306be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e55658d-179fe98cee7306be","8f44c0b1e556789-17f7e959a3d19df3"]},"geometry":{"type":"LineString","coordinates":[[-83.645143,32.794143000000005],[-83.645061,32.793973]]},"id":"8b44c0b1e556fff-17bee9734e046fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65431600000001,32.757005]},"id":"8f44c0b154d9816-13def2f483959a29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65431500000001,32.756538]},"id":"8f44c0b154ddd0b-13b6d2f52d9e6644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154d9816-13def2f483959a29","8f44c0b154ddd0b-13b6d2f52d9e6644"]},"geometry":{"type":"LineString","coordinates":[[-83.65431600000001,32.757005],[-83.65431500000001,32.756538]]},"id":"8a44c0b154dffff-13b6f2f4d48c70f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61977610000001,32.839520900000004]},"id":"8f44c0a368d2d36-13bfb747fcea0944"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6199699,32.8392609]},"id":"8f44c0a368d6c49-139f36ced74c7c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368d6c49-139f36ced74c7c8e","8f44c0a368d2d36-13bfb747fcea0944"]},"geometry":{"type":"LineString","coordinates":[[-83.61977610000001,32.839520900000004],[-83.6199699,32.8392609]]},"id":"8a44c0a368d7fff-13ff770b6f3a4b28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590781,32.852325]},"id":"8f44c0b8d72e04c-13ff6e11eefc2545"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d72e04c-13ff6e11eefc2545","8f44c0b8d08a0e1-1797ee344a67d313"]},"geometry":{"type":"LineString","coordinates":[[-83.590726,32.850692],[-83.590731,32.851121],[-83.590754,32.852201],[-83.590781,32.852325]]},"id":"8744c0b8dffffff-1397fe2b0651489e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655044,32.757005]},"id":"8f44c0b154c87b4-13def12d8685ef4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154c122a-13bff11d407034b5","8f44c0b154c87b4-13def12d8685ef4b"]},"geometry":{"type":"LineString","coordinates":[[-83.655044,32.757005],[-83.655051,32.756452],[-83.65507000000001,32.756341]]},"id":"8a44c0b154cffff-13fef129f6474957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73358900000001,32.907883000000005]},"id":"8f44c0a28914116-13b6f16ae7204288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73279450000001,32.9075238]},"id":"8f44c0a2c6486cd-13d6735b77f40582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c6486cd-13d6735b77f40582","8f44c0a28914116-13b6f16ae7204288"]},"geometry":{"type":"LineString","coordinates":[[-83.73358900000001,32.907883000000005],[-83.73345,32.907744],[-83.73332500000001,32.907651],[-83.733253,32.907612],[-83.733181,32.907584],[-83.733101,32.907561],[-83.733006,32.907544],[-83.73279450000001,32.9075238]]},"id":"8844c0a289fffff-139ed251aa9b222a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67445400000001,32.852372]},"id":"8f44c0a267b5819-139ea1ca4ab17caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2644e6ac-139f9f6fe2040742","8f44c0a267b5819-139ea1ca4ab17caf"]},"geometry":{"type":"LineString","coordinates":[[-83.6754178,32.851553700000004],[-83.675098,32.851833],[-83.67445400000001,32.852372]]},"id":"8744c0a26ffffff-139eb09be44b26fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741573,32.857917]},"id":"8f44c0b567334ec-13b7fdeceb85ca8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73875500000001,32.857391]},"id":"8f44c0b5645a0ea-17df64ce2e4d53f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5645a0ea-17df64ce2e4d53f0","8f44c0b567334ec-13b7fdeceb85ca8e"]},"geometry":{"type":"LineString","coordinates":[[-83.741573,32.857917],[-83.741421,32.857872],[-83.741265,32.857816],[-83.74110300000001,32.857723],[-83.740736,32.857523],[-83.74042100000001,32.857371],[-83.74016200000001,32.857266],[-83.740008,32.857222],[-83.73977400000001,32.857187],[-83.739478,32.857186],[-83.739258,32.857222],[-83.73900900000001,32.85729],[-83.73875500000001,32.857391]]},"id":"8744c0b56ffffff-17f6e1505e05f40e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737408,32.909668]},"id":"8f44c0a28975aec-17fe881801ac1c94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73772100000001,32.909937]},"id":"8f44c0a28962a12-17b6a75465e16009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28962a12-17b6a75465e16009","8f44c0a28975aec-17fe881801ac1c94"]},"geometry":{"type":"LineString","coordinates":[[-83.737408,32.909668],[-83.73772100000001,32.909937]]},"id":"8a44c0a28967fff-17d697b63663d954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662127,32.798664]},"id":"8f44c0b1eae42cd-17ffbfe2aa758894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66218500000001,32.800856]},"id":"8f44c0b1eacd09b-17d7bfbe699c10c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eacd09b-17d7bfbe699c10c9","8f44c0b1eae42cd-17ffbfe2aa758894"]},"geometry":{"type":"LineString","coordinates":[[-83.662127,32.798664],[-83.66211,32.798872],[-83.662035,32.799557],[-83.662011,32.79983],[-83.662013,32.799906],[-83.66203200000001,32.799999],[-83.662058,32.800168],[-83.66218500000001,32.800856]]},"id":"8944c0b1eafffff-13bff0002bbf8661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66775200000001,32.82848]},"id":"8f44c0b1b8f2af5-13deb227050e70b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669272,32.82849]},"id":"8f44c0b1b8e044d-13deee7108324ae5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8e044d-13deee7108324ae5","8f44c0b1b8f2af5-13deb227050e70b9"]},"geometry":{"type":"LineString","coordinates":[[-83.66775200000001,32.82848],[-83.669272,32.82849]]},"id":"8944c0b1b8fffff-13dfb04c0c4f5205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620025,32.85955]},"id":"8f44c0a32861558-17b7e6ac6f374d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61994700000001,32.86074]},"id":"8f44c0a3284c95b-179fa6dd265b4011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3284c95b-179fa6dd265b4011","8f44c0a32861558-17b7e6ac6f374d3f"]},"geometry":{"type":"LineString","coordinates":[[-83.620025,32.85955],[-83.620036,32.859575],[-83.62003700000001,32.859619],[-83.6199823,32.8603003],[-83.61994700000001,32.86074]]},"id":"8944c0a3287ffff-179726bf726d3948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626305,32.865487]},"id":"8f44c0a306b4849-13b7775765ea4498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62740500000001,32.865989]},"id":"8f44c0a306a08f4-17df34a7ef00891d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306a08f4-17df34a7ef00891d","8f44c0a306b4849-13b7775765ea4498"]},"geometry":{"type":"LineString","coordinates":[[-83.626305,32.865487],[-83.62643,32.865527],[-83.626731,32.865639],[-83.62720300000001,32.865904],[-83.62740500000001,32.865989]]},"id":"8944c0a306bffff-13b7f5fc11bffdad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74218900000001,32.914693]},"id":"8f44c0a2d4f1313-13d7fc6be660a2e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.742171,32.913429]},"id":"8f44c0a2d41aa11-13bdfc77239f3921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d41aa11-13bdfc77239f3921","8f44c0a2d4f1313-13d7fc6be660a2e7"]},"geometry":{"type":"LineString","coordinates":[[-83.74218900000001,32.914693],[-83.742171,32.913429]]},"id":"8844c0a2d5fffff-13bdfc7184888f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66988,32.823658]},"id":"8f44c0b1b90229b-1796ecf50b5cf5a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66982,32.823093]},"id":"8f44c0b1b9064cd-13b7ad1a849b0610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9064cd-13b7ad1a849b0610","8f44c0b1b90229b-1796ecf50b5cf5a7"]},"geometry":{"type":"LineString","coordinates":[[-83.66988,32.823658],[-83.66984500000001,32.823262],[-83.66982,32.823093]]},"id":"8a44c0b1b907fff-17d7fd05969c20bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907094,32.8148223]},"id":"8f44c0b1d67008d-17fffa1aa7940710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906639,32.8154022]},"id":"8f44c0b1d673281-13de7a371beb1c74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d67008d-17fffa1aa7940710","8f44c0b1d673281-13de7a371beb1c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6907094,32.8148223],[-83.69070090000001,32.814927100000006],[-83.6906752,32.815257200000005],[-83.6906639,32.8154022]]},"id":"8a44c0b1d677fff-13b77a28f58ac9e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615882,32.853917]},"id":"8f44c0a3664989c-17f730c9c59504b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615611,32.858127]},"id":"8f44c0a32811004-13bf717329f70ae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3664989c-17f730c9c59504b0","8f44c0a32811004-13bf717329f70ae6"]},"geometry":{"type":"LineString","coordinates":[[-83.615882,32.853917],[-83.61585600000001,32.854975],[-83.61582100000001,32.855725],[-83.61581000000001,32.85617],[-83.61581000000001,32.856811],[-83.615809,32.857746],[-83.615691,32.85803],[-83.615611,32.858127]]},"id":"8844c0a329fffff-1797b0efd197172b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553157,32.847414]},"id":"8f44c0b8e298248-1797c9ece8def13f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553796,32.848174]},"id":"8f44c0b8a925493-13dfc85d83c606d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8a925493-13dfc85d83c606d6","8f44c0b8e298248-1797c9ece8def13f"]},"geometry":{"type":"LineString","coordinates":[[-83.553157,32.847414],[-83.55350800000001,32.847714],[-83.553568,32.847775],[-83.553658,32.847909],[-83.553796,32.848174]]},"id":"8844c0b8e3fffff-17dff90f1455c512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55390200000001,32.848142]},"id":"8f44c0b8a925404-13dfc81b470ac1aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553246,32.847333]},"id":"8f44c0b8e299d88-17dfe9b54260fd1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8a925404-13dfc81b470ac1aa","8f44c0b8e299d88-17dfe9b54260fd1b"]},"geometry":{"type":"LineString","coordinates":[[-83.55390200000001,32.848142],[-83.55384500000001,32.847983],[-83.553808,32.847907],[-83.553752,32.847807],[-83.55370900000001,32.847745],[-83.553646,32.847668],[-83.553486,32.847535],[-83.55338900000001,32.84745],[-83.553246,32.847333]]},"id":"8844c0b8e3fffff-17b7f8ca54a8a8de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704644,32.798156]},"id":"8f44c0b0e595c93-17bfd81581ccf223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70743800000001,32.800075]},"id":"8f44c0b0e433116-13fef143419c128a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e595c93-17bfd81581ccf223","8f44c0b0e433116-13fef143419c128a"]},"geometry":{"type":"LineString","coordinates":[[-83.704644,32.798156],[-83.704638,32.798236],[-83.704637,32.798532],[-83.704648,32.798602],[-83.704666,32.798631],[-83.704695,32.798662],[-83.704735,32.798692],[-83.70527,32.799017],[-83.70538,32.799101],[-83.705414,32.799135],[-83.705478,32.799233],[-83.70588000000001,32.79995],[-83.705945,32.800024],[-83.706001,32.800064],[-83.706096,32.800077],[-83.70664400000001,32.800082],[-83.707113,32.800081],[-83.70743800000001,32.800075]]},"id":"8844c0b0e5fffff-13f7f54970bbb71d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635982,32.829530000000005]},"id":"8f44c0a34c36264-13deffb7486c0ff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636587,32.83039]},"id":"8f44c0a34c06ba5-17f7fe3d2e4e5b1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c06ba5-17f7fe3d2e4e5b1d","8f44c0a34c36264-13deffb7486c0ff0"]},"geometry":{"type":"LineString","coordinates":[[-83.635982,32.829530000000005],[-83.63603900000001,32.829672],[-83.636587,32.83039]]},"id":"8944c0a34c3ffff-17feff03ce17445e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6360475,32.807407600000005]},"id":"8f44c0bad373095-17d7ff8e5ed19d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6346381,32.8064592]},"id":"8f44c0bad30e12d-139702ff387efff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad373095-17d7ff8e5ed19d47","8f44c0bad30e12d-139702ff387efff0"]},"geometry":{"type":"LineString","coordinates":[[-83.6360475,32.807407600000005],[-83.6359455,32.807453],[-83.6358708,32.807509800000005],[-83.6358053,32.8076231],[-83.6357167,32.807709200000005],[-83.63566940000001,32.8077352],[-83.63555720000001,32.8077713],[-83.6354719,32.807767000000005],[-83.6353905,32.8077409],[-83.63535250000001,32.8077004],[-83.6353414,32.807605800000005],[-83.6353529,32.8075047],[-83.6353754,32.807239],[-83.6353437,32.8071897],[-83.63521680000001,32.807152800000004],[-83.6347089,32.807064600000004],[-83.63457220000001,32.807005100000005],[-83.6345088,32.8068984],[-83.6344868,32.8067506],[-83.6345258,32.8066337],[-83.6346381,32.8064592]]},"id":"8844c0bad3fffff-17f7c1b091ee43ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58720100000001,32.858527]},"id":"8f44c0b8d6d1933-13b776cf638be23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586062,32.858663]},"id":"8f44c0b8d6d2694-13ff799743f29d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6d2694-13ff799743f29d96","8f44c0b8d6d1933-13b776cf638be23c"]},"geometry":{"type":"LineString","coordinates":[[-83.58720100000001,32.858527],[-83.58686200000001,32.858528],[-83.58655300000001,32.858553],[-83.586062,32.858663]]},"id":"8a44c0b8d6d7fff-13bff83570cb4dae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.585621,32.85934]},"id":"8f44c0b89d2a815-179ffaaae0b262b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58469600000001,32.859913]},"id":"8f44c0b89d0325e-1797fced0878fa2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d2a815-179ffaaae0b262b2","8f44c0b89d0325e-1797fced0878fa2b"]},"geometry":{"type":"LineString","coordinates":[[-83.585621,32.85934],[-83.58509000000001,32.859662],[-83.58469600000001,32.859913]]},"id":"8944c0b89d3ffff-17d77bccfd434fda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63476800000001,32.826805]},"id":"8f44c0ba9a590ec-17b722ae066332a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63549,32.827168]},"id":"8f44c0ba9a4b6e3-179700eac2ec8308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a590ec-17b722ae066332a1","8f44c0ba9a4b6e3-179700eac2ec8308"]},"geometry":{"type":"LineString","coordinates":[[-83.63476800000001,32.826805],[-83.635146,32.827005],[-83.63524000000001,32.827083],[-83.635382,32.827163],[-83.63543800000001,32.827177],[-83.63547000000001,32.827176],[-83.63549,32.827168]]},"id":"8744c0ba9ffffff-17bf01cdd6090026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65169900000001,32.837812]},"id":"8f44c0a34b56cb4-1796d95826cef8b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652652,32.836643]},"id":"8f44c0a34b290d2-17b7f70483a00c10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b56cb4-1796d95826cef8b0","8f44c0a34b290d2-17b7f70483a00c10"]},"geometry":{"type":"LineString","coordinates":[[-83.65169900000001,32.837812],[-83.652652,32.836643]]},"id":"8844c0a34bfffff-17b7f82e570ad471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710554,32.831919]},"id":"8f44c0b0a66d4ee-13bf69a7cf39c117"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71084,32.83138]},"id":"8f44c0b0a293112-17dec8f50b05ea81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a293112-17dec8f50b05ea81","8f44c0b0a66d4ee-13bf69a7cf39c117"]},"geometry":{"type":"LineString","coordinates":[[-83.710554,32.831919],[-83.710604,32.831757],[-83.710677,32.831601],[-83.710728,32.831514],[-83.71084,32.83138]]},"id":"8844c0b0a7fffff-13ff495c96d9845e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71012400000001,32.831474]},"id":"8f44c0b0a66c5b3-13974ab48a44ca9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a66c5b3-13974ab48a44ca9a","8f44c0b0a293112-17dec8f50b05ea81"]},"geometry":{"type":"LineString","coordinates":[[-83.71084,32.83138],[-83.710704,32.831434],[-83.71061,32.831457],[-83.71046600000001,32.831467],[-83.71012400000001,32.831474]]},"id":"8844c0b0a7fffff-139e49d1c0164a3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60753600000001,32.8478182]},"id":"8f44c0b8db60b68-17ff652a023556c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6065518,32.8480168]},"id":"8f44c0b8db71b71-13ffc79129d54187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db71b71-13ffc79129d54187","8f44c0b8db60b68-17ff652a023556c2"]},"geometry":{"type":"LineString","coordinates":[[-83.60753600000001,32.8478182],[-83.6070049,32.848006600000005],[-83.6065518,32.8480168]]},"id":"8944c0b8db7ffff-13d7f6591504461f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67701500000001,32.743223]},"id":"8f44c0b3325d0f0-13b6fb89adffb297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67654,32.745226]},"id":"8f44c0b0658080a-1796dcb282ba4742"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b3325d0f0-13b6fb89adffb297","8f44c0b0658080a-1796dcb282ba4742"]},"geometry":{"type":"LineString","coordinates":[[-83.67701500000001,32.743223],[-83.67654,32.745226]]},"id":"8744c0b06ffffff-1396dc1e11c1d408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68597700000001,32.739164]},"id":"8f44c0b06d09b10-17bf85a868677294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858837,32.7418191]},"id":"8f44c0b06c746da-17b6f5e2b26935be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b06d09b10-17bf85a868677294","8f44c0b06c746da-17b6f5e2b26935be"]},"geometry":{"type":"LineString","coordinates":[[-83.68597700000001,32.739164],[-83.6858899,32.7412827],[-83.6858837,32.7418191]]},"id":"8844c0b06dfffff-13f7a5c987878c1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.767054,32.86049]},"id":"8f44c0b509a6789-17ffffb7421fc484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7677283,32.860667500000005]},"id":"8f44c0b509a0b1a-17ddbe11da1790c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b509a0b1a-17ddbe11da1790c1","8f44c0b509a6789-17ffffb7421fc484"]},"geometry":{"type":"LineString","coordinates":[[-83.767054,32.86049],[-83.7677283,32.860667500000005]]},"id":"8a44c0b509a7fff-17b5fee489b2d10f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717371,32.889896]},"id":"8f44c0a2129cc0b-17bf390325ede3b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71695700000001,32.889927]},"id":"8f44c0a212916d9-17de7a05ea5f5bdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a212916d9-17de7a05ea5f5bdb","8f44c0a2129cc0b-17bf390325ede3b1"]},"geometry":{"type":"LineString","coordinates":[[-83.717371,32.889896],[-83.717302,32.889896],[-83.71695700000001,32.889927]]},"id":"8944c0a212bffff-17d739849c6de70c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695177,32.905593]},"id":"8f44c0a05ba3302-179fef32628fc3e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696467,32.90489]},"id":"8f44c0a05b146b3-13d66c0c2ef5af48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05ba3302-179fef32628fc3e1","8f44c0a05b146b3-13d66c0c2ef5af48"]},"geometry":{"type":"LineString","coordinates":[[-83.695177,32.905593],[-83.695239,32.905521],[-83.69533200000001,32.905453],[-83.696157,32.905247],[-83.696467,32.90489]]},"id":"8844c0a05bfffff-17dffd8ca3f3bbdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64071700000001,32.844079]},"id":"8f44c0a3476c021-17dff427e6d81cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64208400000001,32.844868000000005]},"id":"8f44c0a34399522-13def0d1803b8404"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3476c021-17dff427e6d81cbd","8f44c0a34399522-13def0d1803b8404"]},"geometry":{"type":"LineString","coordinates":[[-83.64071700000001,32.844079],[-83.641039,32.844246000000005],[-83.64188800000001,32.844751],[-83.64208400000001,32.844868000000005]]},"id":"8844c0a343fffff-17dff27a39ef09d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5616368,32.7762394]},"id":"8f44c0ba34eed43-13bfb5390b4c8ce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.563039,32.773867]},"id":"8f44c0ba3429cb2-13f7f1cca32904e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba34eed43-13bfb5390b4c8ce9","8f44c0ba3429cb2-13f7f1cca32904e1"]},"geometry":{"type":"LineString","coordinates":[[-83.5616368,32.7762394],[-83.561863,32.776021],[-83.562219,32.775658],[-83.56236700000001,32.775502],[-83.562645,32.775135],[-83.562798,32.774901],[-83.562872,32.774757],[-83.562916,32.774635],[-83.562939,32.774509],[-83.562966,32.774194],[-83.562965,32.773969],[-83.563039,32.773867]]},"id":"8844c0ba35fffff-179ff318b3d14ecd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69209670000001,32.91736]},"id":"8f44c0a052e1c0a-13d676b797ab7ea5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6923129,32.9165907]},"id":"8f44c0a0520b545-17f776307665b4dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a052e1c0a-13d676b797ab7ea5","8f44c0a0520b545-17f776307665b4dd"]},"geometry":{"type":"LineString","coordinates":[[-83.69209670000001,32.91736],[-83.692311,32.9171801],[-83.69238530000001,32.9170624],[-83.69242100000001,32.9169378],[-83.6924293,32.9168131],[-83.69239900000001,32.9167185],[-83.6923129,32.9165907]]},"id":"8844c0a053fffff-13f77625223ec049"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916688,32.9177036]},"id":"8f44c0a052e3762-139ef7c30c9fc058"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a052e1c0a-13d676b797ab7ea5","8f44c0a052e3762-139ef7c30c9fc058"]},"geometry":{"type":"LineString","coordinates":[[-83.6916688,32.9177036],[-83.69209670000001,32.91736]]},"id":"8a44c0a052e7fff-13b7773d5d00c25d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58409830000001,32.9019709]},"id":"8f44c0a162d3b88-17b7fe629597a41f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58590240000001,32.9006709]},"id":"8f44c0a162e0410-139779fb0482d15a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a162d3b88-17b7fe629597a41f","8f44c0a162e0410-139779fb0482d15a"]},"geometry":{"type":"LineString","coordinates":[[-83.58409830000001,32.9019709],[-83.5844692,32.901669000000005],[-83.5849735,32.901299200000004],[-83.58590240000001,32.9006709]]},"id":"8944c0a162fffff-1397fc3633cfbd24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58576400000001,32.9031942]},"id":"8f44c0a162cb093-17b77a5183096e9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5863832,32.902351100000004]},"id":"8f44c0a162eb696-17b778ce81610636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a162cb093-17b77a5183096e9a","8f44c0a162eb696-17b778ce81610636"]},"geometry":{"type":"LineString","coordinates":[[-83.58576400000001,32.9031942],[-83.5863832,32.902351100000004]]},"id":"8a44c0a162cffff-17bff99009877f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5774311,32.887241800000005]},"id":"8f44c0a16cceaa0-13bfaea99ad5a2db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5764137,32.8882138]},"id":"8f44c0a16566472-139fb12577910d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16566472-139fb12577910d31","8f44c0a16cceaa0-13bfaea99ad5a2db"]},"geometry":{"type":"LineString","coordinates":[[-83.5774311,32.887241800000005],[-83.5769437,32.887675900000005],[-83.5765301,32.888091100000004],[-83.5764137,32.8882138]]},"id":"8744c0a16ffffff-13ffdfecdfff1d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5745467,32.8890636]},"id":"8f44c0a1655600c-17b7d5b452dcc83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57472290000001,32.889835600000005]},"id":"8f44c0a165530ab-1797d546360f36ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1655600c-17b7d5b452dcc83f","8f44c0a165530ab-1797d546360f36ce"]},"geometry":{"type":"LineString","coordinates":[[-83.5745467,32.8890636],[-83.5751915,32.889487800000005],[-83.5752173,32.8895366],[-83.5751891,32.8896078],[-83.57485240000001,32.8897769],[-83.57472290000001,32.889835600000005]]},"id":"8a44c0a16557fff-17bfb4c378d2f30f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5743016,32.8791655]},"id":"8f44c0b8bae820e-1797f64d8f9af427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5752576,32.8783787]},"id":"8f44c0b8ba510a9-139fb3f805913c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bae820e-1797f64d8f9af427","8f44c0b8ba510a9-139fb3f805913c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.5743016,32.8791655],[-83.5752576,32.8783787]]},"id":"8844c0b8bbfffff-13979522c92a2fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5757004,32.887551]},"id":"8f44c0a16cda476-13fff2e34cbd8d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5747949,32.886590600000005]},"id":"8f44c0a16521008-17b7b51932b4104f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16521008-17b7b51932b4104f","8f44c0a16cda476-13fff2e34cbd8d38"]},"geometry":{"type":"LineString","coordinates":[[-83.5757004,32.887551],[-83.5754368,32.8872768],[-83.57513920000001,32.8869745],[-83.57489960000001,32.8867016],[-83.5747949,32.886590600000005]]},"id":"8844c0a165fffff-17d7f40086144760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636256,32.908709]},"id":"8f44c0a02c34b15-17b7ff0c0edb02e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63857780000001,32.9085897]},"id":"8f44c0a02d7248b-17def960ecc98cec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a02c34b15-17b7ff0c0edb02e5","8f44c0a02d7248b-17def960ecc98cec"]},"geometry":{"type":"LineString","coordinates":[[-83.636256,32.908709],[-83.63857780000001,32.9085897]]},"id":"8844c0a02dfffff-1797fc367f75a3ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633576,32.903859000000004]},"id":"8f44c0a15a0d246-13dfe59705642ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63463300000001,32.9029503]},"id":"8f44c0a15b5a8eb-1797f30266ec907d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a15b5a8eb-1797f30266ec907d","8f44c0a15a0d246-13dfe59705642ed0"]},"geometry":{"type":"LineString","coordinates":[[-83.633576,32.903859000000004],[-83.633611,32.903357],[-83.63407000000001,32.903209000000004],[-83.6344011,32.902981700000005],[-83.63463300000001,32.9029503]]},"id":"8844c0a15bfffff-17ff44a76c5e4951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62775500000001,32.928214000000004]},"id":"8f44c0a1cdb1c36-17d7d3cd28e1cbc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62928570000001,32.9264681]},"id":"8f44c0a11a4101c-139790107164c697"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1cdb1c36-17d7d3cd28e1cbc6","8f44c0a11a4101c-139790107164c697"]},"geometry":{"type":"LineString","coordinates":[[-83.62775500000001,32.928214000000004],[-83.62928570000001,32.9264681]]},"id":"8744c0a11ffffff-13b731eed3685f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6383483,32.9190497]},"id":"8f44c0a020aa248-17f6f9f05fba22ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6397822,32.9189765]},"id":"8f44c0a0201ab4b-17bef6702a4eef07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0201ab4b-17bef6702a4eef07","8f44c0a020aa248-17f6f9f05fba22ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6383483,32.9190497],[-83.6392282,32.9190375],[-83.63951870000001,32.9190375],[-83.63966140000001,32.9190005],[-83.6397822,32.9189765]]},"id":"8844c0a021fffff-17def82e8a851577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60766070000001,32.917396000000004]},"id":"8f44c0a1026b85d-13dfc4dc1ed94891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60868500000001,32.917465]},"id":"8f44c0a11c9bc88-1397e25be2cd0267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a11c9bc88-1397e25be2cd0267","8f44c0a1026b85d-13dfc4dc1ed94891"]},"geometry":{"type":"LineString","coordinates":[[-83.60766070000001,32.917396000000004],[-83.60868500000001,32.917465]]},"id":"8744c0a11ffffff-13f7539bf26e0734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6076448,32.918289800000004]},"id":"8f44c0a11532733-179f64e605d04b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60626,32.917791]},"id":"8f44c0a1025da04-13d768478fdd49ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a11532733-179f64e605d04b58","8f44c0a1025da04-13d768478fdd49ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6076448,32.918289800000004],[-83.60727200000001,32.918315],[-83.606927,32.918261],[-83.60666900000001,32.918134],[-83.60626,32.917791]]},"id":"8744c0a11ffffff-13bf56b0d8a01834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.599995,32.9207564]},"id":"8f44c0a13821ba9-1397d79326743548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60174,32.921639]},"id":"8f44c0a1395d7a9-17bf73508ecdeeee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1395d7a9-17bf73508ecdeeee","8f44c0a13821ba9-1397d79326743548"]},"geometry":{"type":"LineString","coordinates":[[-83.599995,32.9207564],[-83.60027600000001,32.920898],[-83.600513,32.921007],[-83.600728,32.921079],[-83.601051,32.921296000000005],[-83.601352,32.921440000000004],[-83.601546,32.921531],[-83.60174,32.921639]]},"id":"8844c0a139fffff-139fd56f9f5de77c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64481950000001,32.8902153]},"id":"8f44c0a06c75085-1796fa23d920a040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6437562,32.889773000000005]},"id":"8f44c0a06c2b31a-17feecbc6cfe7b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06c2b31a-17feecbc6cfe7b21","8f44c0a06c75085-1796fa23d920a040"]},"geometry":{"type":"LineString","coordinates":[[-83.64481950000001,32.8902153],[-83.64438120000001,32.8900196],[-83.6437562,32.889773000000005]]},"id":"8844c0a06dfffff-17f6fb6ea1bed6ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64337400000001,32.8903259]},"id":"8f44c0a06c09d0a-17d7fdab46f27090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64459860000001,32.8905048]},"id":"8f44c0a06c71c83-13b7eaadec583a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06c09d0a-17d7fdab46f27090","8f44c0a06c71c83-13b7eaadec583a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.64337400000001,32.8903259],[-83.643724,32.8903574],[-83.64459860000001,32.8905048]]},"id":"8844c0a06dfffff-17f7fc2bd2196a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5464979,32.9094953]},"id":"8f44c0aa1ca5aee-1797da2ed0b3ebf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54649400000001,32.909045]},"id":"8f44c0aa1d8b06a-17fffa3143475e4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1ca5aee-1797da2ed0b3ebf5","8f44c0aa1d8b06a-17fffa3143475e4b"]},"geometry":{"type":"LineString","coordinates":[[-83.5464979,32.9094953],[-83.54649400000001,32.909045]]},"id":"8844c0aa1dfffff-1797fa3002a0dbe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63594450000001,32.8998968]},"id":"8f44c0a064d814d-17b7ffceb5c4edf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6381372,32.9002993]},"id":"8f44c0a067b2325-139ffa7448f930de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a064d814d-17b7ffceb5c4edf8","8f44c0a067b2325-139ffa7448f930de"]},"geometry":{"type":"LineString","coordinates":[[-83.63594450000001,32.8998968],[-83.6362519,32.900062000000005],[-83.63660390000001,32.9000664],[-83.6368662,32.900113000000005],[-83.63712340000001,32.9001553],[-83.6374462,32.9001469],[-83.6376379,32.9002951],[-83.63789,32.9003035],[-83.6381372,32.9002993]]},"id":"8744c0a06ffffff-17bffd2596665c2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64495480000001,32.897508200000004]},"id":"8f44c0a060ad459-13dee9cf424b0764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644937,32.89896]},"id":"8f44c0a060f3c8a-17dee9da67c5fd3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a060ad459-13dee9cf424b0764","8f44c0a060f3c8a-17dee9da67c5fd3f"]},"geometry":{"type":"LineString","coordinates":[[-83.64495480000001,32.897508200000004],[-83.644937,32.89896]]},"id":"8844c0a061fffff-1396f9d4d4aaff75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5783407,32.8776169]},"id":"8f44c0b89693861-13bf9c7110bf103c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5789367,32.8774178]},"id":"8f44c0b89682533-13d7aafc96b1185b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89682533-13d7aafc96b1185b","8f44c0b89693861-13bf9c7110bf103c"]},"geometry":{"type":"LineString","coordinates":[[-83.5783407,32.8776169],[-83.5783797,32.8776189],[-83.57844870000001,32.8776164],[-83.57856480000001,32.8775923],[-83.578646,32.8775625],[-83.5787823,32.877489100000005],[-83.5789367,32.8774178]]},"id":"8a44c0b89697fff-1397dbb2902c2607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6373693,32.9070331]},"id":"8f44c0a02d046de-139ffc5435a78b44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63965,32.905047]},"id":"8f44c0a066f650d-13b6f6c2cde33f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a02d046de-139ffc5435a78b44","8f44c0a066f650d-13b6f6c2cde33f6d"]},"geometry":{"type":"LineString","coordinates":[[-83.6373693,32.9070331],[-83.63965,32.905047]]},"id":"8644c0a07ffffff-17b7f98b8d089b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57080590000001,32.882051600000004]},"id":"8f44c0b8b351592-1397ded654820e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570149,32.882647]},"id":"8f44c0b8b228871-1797e070e71a7b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8b228871-1797e070e71a7b5e","8f44c0b8b351592-1397ded654820e20"]},"geometry":{"type":"LineString","coordinates":[[-83.57080590000001,32.882051600000004],[-83.57055240000001,32.8822629],[-83.570321,32.88246],[-83.5702469,32.8825279],[-83.570149,32.882647]]},"id":"8844c0b8b3fffff-17d7ffa98ceabbbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60980210000001,32.8901938]},"id":"8f44c0a14315172-17f73fa1bc7afe3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6106321,32.8902354]},"id":"8f44c0a143009b4-179f3d9aff0d2f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a143009b4-179f3d9aff0d2f2a","8f44c0a14315172-17f73fa1bc7afe3f"]},"geometry":{"type":"LineString","coordinates":[[-83.60980210000001,32.8901938],[-83.6106321,32.8902354]]},"id":"8944c0a1433ffff-17973e9e53b1a93c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62682570000001,32.903356]},"id":"8f44c0a15061830-17979611f2f759a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6284155,32.903409]},"id":"8f44c0a15a82cf0-17b7b230505527a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15061830-17979611f2f759a9","8f44c0a15a82cf0-17b7b230505527a5"]},"geometry":{"type":"LineString","coordinates":[[-83.62682570000001,32.903356],[-83.6270504,32.903356],[-83.6279028,32.9034129],[-83.6281845,32.903421900000005],[-83.6284155,32.903409]]},"id":"8744c0a15ffffff-17bf542126f6948f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.544517,32.909382]},"id":"8f44c0aa1cb011b-17dfdf04e8b59382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54460200000001,32.909725800000004]},"id":"8f44c0aa1cb14b3-17b7fecfc410d8c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1cb14b3-17b7fecfc410d8c0","8f44c0aa1cb011b-17dfdf04e8b59382"]},"geometry":{"type":"LineString","coordinates":[[-83.544517,32.909382],[-83.54460200000001,32.909725800000004]]},"id":"8a44c0aa1cb7fff-17b7feea573dec14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6189276,32.8958144]},"id":"8f44c0a15ce4c5d-17bf295a4e43a689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6161811,32.897705900000005]},"id":"8f44c0a1552c032-13df300ed8982600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1552c032-13df300ed8982600","8f44c0a15ce4c5d-17bf295a4e43a689"]},"geometry":{"type":"LineString","coordinates":[[-83.6189276,32.8958144],[-83.61894190000001,32.896069000000004],[-83.6188812,32.896140800000005],[-83.61857180000001,32.896329800000004],[-83.6161811,32.897705900000005]]},"id":"8744c0a15ffffff-17bf3c6a00a32315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5754495,32.8881959]},"id":"8f44c0a16570d94-1397f38015533d0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57664910000001,32.8889195]},"id":"8f44c0a16563425-17d7b09259fba818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a16570d94-1397f38015533d0e","8f44c0a16563425-17d7b09259fba818"]},"geometry":{"type":"LineString","coordinates":[[-83.5754495,32.8881959],[-83.57599520000001,32.8885493],[-83.57650170000001,32.8888638],[-83.57664910000001,32.8889195]]},"id":"8944c0a1657ffff-13fff20e192c1a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62217910000001,32.905436800000004]},"id":"8f44c0a150c3390-17bf216a1320df97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62771450000001,32.9148744]},"id":"8f44c0a025902c6-13b793e67572acad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a150c3390-17bf216a1320df97","8f44c0a025902c6-13b793e67572acad"]},"geometry":{"type":"LineString","coordinates":[[-83.62217910000001,32.905436800000004],[-83.6223045,32.9056335],[-83.62252620000001,32.9057411],[-83.6226297,32.9058693],[-83.6225656,32.906012000000004],[-83.62245970000001,32.9061899],[-83.62253360000001,32.9063429],[-83.6226247,32.9064319],[-83.62272820000001,32.9064567],[-83.62286370000001,32.9064257],[-83.62296470000001,32.9063657],[-83.6230977,32.906223000000004],[-83.6232111,32.9060596],[-83.6233564,32.9058796],[-83.62347220000001,32.9057286],[-83.62356580000001,32.9056976],[-83.62375060000001,32.905708000000004],[-83.623997,32.905811400000005],[-83.6243295,32.9060079],[-83.6248149,32.906388400000004],[-83.62520160000001,32.9068352],[-83.6253568,32.906959300000004],[-83.6257757,32.907131],[-83.62585700000001,32.907273700000005],[-83.6260146,32.907643900000004],[-83.626123,32.907989300000004],[-83.62610330000001,32.9081424],[-83.62590870000001,32.9085064],[-83.62589390000001,32.9086574],[-83.62590870000001,32.908756600000004],[-83.6260122,32.9088766],[-83.6262363,32.9090214],[-83.6265369,32.9093151],[-83.62666010000001,32.9095281],[-83.6266872,32.9096708],[-83.62674630000001,32.909817700000005],[-83.6268572,32.910028600000004],[-83.62700740000001,32.9102375],[-83.62717,32.9103699],[-83.6273745,32.9104485],[-83.62738680000001,32.910529100000005],[-83.6273326,32.9106801],[-83.6272095,32.91098],[-83.6269779,32.9113192],[-83.6266231,32.911646000000005],[-83.62660100000001,32.9117845],[-83.62666010000001,32.9125001],[-83.6269656,32.9141464],[-83.62724150000001,32.9144111],[-83.62771450000001,32.9148744]]},"id":"8644c0a17ffffff-17f71903b889fc09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5485786,32.9071099]},"id":"8f44c0aa1d1cca4-13bff51a6bfdffa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55175510000001,32.905020400000005]},"id":"8f44c0aa56f2b89-13b7cd5914677cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa1d1cca4-13bff51a6bfdffa0","8f44c0aa56f2b89-13b7cd5914677cfe"]},"geometry":{"type":"LineString","coordinates":[[-83.5485786,32.9071099],[-83.54878240000001,32.907074],[-83.54896790000001,32.907048800000005],[-83.54912470000001,32.9070042],[-83.5492638,32.9069355],[-83.5511511,32.9054555],[-83.55175510000001,32.905020400000005]]},"id":"8644c0aa7ffffff-17f7f11de76a0fab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299546,32.9025148]},"id":"8f44c0a15aa0a51-1797ce6e68182992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63108820000001,32.9026842]},"id":"8f44c0a15a10383-17f7aba9ee001a57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15aa0a51-1797ce6e68182992","8f44c0a15a10383-17f7aba9ee001a57"]},"geometry":{"type":"LineString","coordinates":[[-83.6299546,32.9025148],[-83.63010080000001,32.9024729],[-83.63033440000001,32.902384500000004],[-83.6305359,32.902368100000004],[-83.6307213,32.902401000000005],[-83.6308159,32.9024639],[-83.63108820000001,32.9026842]]},"id":"8844c0a15bfffff-17f70cfce0a2a54e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5449507,32.8805215]},"id":"8f44c0aa414818d-17d7fdf5d0051e7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5451927,32.8806925]},"id":"8f44c0aa4149d9c-13d7dd5e961f328b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa414818d-17d7fdf5d0051e7e","8f44c0aa4149d9c-13d7dd5e961f328b"]},"geometry":{"type":"LineString","coordinates":[[-83.5449507,32.8805215],[-83.5451927,32.8806925]]},"id":"8a44c0aa414ffff-139ffdaa32aa45f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637173,32.908976]},"id":"8f44c0a02c26b45-17defccee626d112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6386485,32.9089781]},"id":"8f44c0a02d540a6-17dff934b4b9dddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a02c26b45-17defccee626d112","8f44c0a02d540a6-17dff934b4b9dddc"]},"geometry":{"type":"LineString","coordinates":[[-83.637173,32.908976],[-83.6386485,32.9089781]]},"id":"8844c0a02dfffff-17defb01d32e0970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5879056,32.928481000000005]},"id":"8f44c0a134642ee-17fff51707289cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590159,32.9304471]},"id":"8f44c0a13724c99-13bf7f96aa72c389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a13724c99-13bf7f96aa72c389","8f44c0a134642ee-17fff51707289cc7"]},"geometry":{"type":"LineString","coordinates":[[-83.5879056,32.928481000000005],[-83.58875060000001,32.928891400000005],[-83.58936750000001,32.9293935],[-83.5894404,32.9294466],[-83.590079,32.9299121],[-83.590159,32.9299631],[-83.590186,32.9302391],[-83.590159,32.9304471]]},"id":"8744c0a13ffffff-179771dc551417a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53856710000001,32.8777258]},"id":"8f44c0aa4180986-1397ed8b99a93319"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53867430000001,32.8773993]},"id":"8f44c0aa4184126-13b7fd4894debebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa4180986-1397ed8b99a93319","8f44c0aa4184126-13b7fd4894debebd"]},"geometry":{"type":"LineString","coordinates":[[-83.53856710000001,32.8777258],[-83.53867430000001,32.8773993]]},"id":"8a44c0aa4187fff-139fed6a1130cd23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5454509,32.909615200000005]},"id":"8f44c0aa1ca216c-17dfdcbd36762638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5450308,32.9086763]},"id":"8f44c0aa1d9bd18-1797fdc3c1a6aba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1ca216c-17dfdcbd36762638","8f44c0aa1d9bd18-1797fdc3c1a6aba0"]},"geometry":{"type":"LineString","coordinates":[[-83.5454509,32.909615200000005],[-83.5452707,32.909129400000005],[-83.5451465,32.908887],[-83.5450308,32.9086763]]},"id":"8844c0aa1dfffff-17b7dd36553c7941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5486357,32.9083537]},"id":"8f44c0aa1d1b269-13dfd4f6b1dda45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54885060000001,32.9099443]},"id":"8f44c0aa1c018b5-17bff4706bf4dd95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa1c018b5-17bff4706bf4dd95","8f44c0aa1d1b269-13dfd4f6b1dda45b"]},"geometry":{"type":"LineString","coordinates":[[-83.5486357,32.9083537],[-83.5487289,32.9086268],[-83.5488732,32.9090176],[-83.5489603,32.9092513],[-83.549045,32.9095351],[-83.54910890000001,32.909746600000005],[-83.54885060000001,32.9099443]]},"id":"8944c0aa1c3ffff-17d7f4531cb7514a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56579500000001,32.916041]},"id":"8f44c0aa1b64483-179fab1220b68db7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.563377,32.916085]},"id":"8f44c0aa1b08815-17bfb0f96323fe66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa1b64483-179fab1220b68db7","8f44c0aa1b08815-17bfb0f96323fe66"]},"geometry":{"type":"LineString","coordinates":[[-83.56579500000001,32.916041],[-83.565487,32.916059000000004],[-83.56506300000001,32.916085],[-83.56466,32.916103],[-83.56434200000001,32.916094],[-83.56398200000001,32.916112000000005],[-83.563748,32.916121000000004],[-83.56350400000001,32.916112000000005],[-83.563377,32.916085]]},"id":"8844c0aa1bfffff-17bfae0663226f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.594868,32.9250544]},"id":"8f44c0a1310542d-179f64178923901d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.596676,32.927489]},"id":"8f44c0a131428ee-1397ffad881bf285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1310542d-179f64178923901d","8f44c0a131428ee-1397ffad881bf285"]},"geometry":{"type":"LineString","coordinates":[[-83.594868,32.9250544],[-83.59574400000001,32.925992],[-83.596238,32.926683000000004],[-83.596676,32.927489]]},"id":"8844c0a131fffff-17f7e1b624a2d43b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6195419,32.9012029]},"id":"8f44c0a150b5da0-13d7f7da59aebbc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61847900000001,32.902059]},"id":"8f44c0a15094548-17ffea72a643ff8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15094548-17ffea72a643ff8e","8f44c0a150b5da0-13d7f7da59aebbc0"]},"geometry":{"type":"LineString","coordinates":[[-83.6195419,32.9012029],[-83.619314,32.901413000000005],[-83.61898400000001,32.901671],[-83.61869800000001,32.90193],[-83.61847900000001,32.902059]]},"id":"8944c0a150bffff-13ffb91fbebb74ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59094420000001,32.9107262]},"id":"8f44c0a107b2662-1397edabe7214e83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5906374,32.907776000000005]},"id":"8f44c0a1040b48b-13f76e6ba1b1983f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1040b48b-13f76e6ba1b1983f","8f44c0a107b2662-1397edabe7214e83"]},"geometry":{"type":"LineString","coordinates":[[-83.59094420000001,32.9107262],[-83.59118070000001,32.9106888],[-83.591786,32.910473],[-83.59237800000001,32.910249],[-83.59273,32.910041],[-83.592922,32.909913],[-83.59308200000001,32.909737],[-83.59298600000001,32.909321000000006],[-83.592506,32.908697000000004],[-83.592186,32.908329],[-83.591706,32.908041000000004],[-83.5906374,32.907776000000005]]},"id":"8744c0a10ffffff-17976aebe1712966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60756230000001,32.922900500000004]},"id":"8f44c0a1141c36d-17dfd5199dd9b2c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605461,32.923349]},"id":"8f44c0a114aa286-13f76a3ae1c62323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1141c36d-17dfd5199dd9b2c1","8f44c0a114aa286-13f76a3ae1c62323"]},"geometry":{"type":"LineString","coordinates":[[-83.60756230000001,32.922900500000004],[-83.605461,32.923349]]},"id":"8844c0a115fffff-17df47aa365cf671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299164,32.9038673]},"id":"8f44c0a15aaa2c3-13d71e864c6e769d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629749,32.903703]},"id":"8f44c0a15aaa733-13ff6eeee154414d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a15aaa2c3-13d71e864c6e769d","8f44c0a15aaa733-13ff6eeee154414d"]},"geometry":{"type":"LineString","coordinates":[[-83.6299164,32.9038673],[-83.6298263,32.9037905],[-83.629749,32.903703]]},"id":"8b44c0a15aaafff-13b79ebc6a09798b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6136254,32.893194]},"id":"8f44c0a14341345-17d7764c26aca714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6131,32.8938445]},"id":"8f44c0a1434acdc-13dff7948ccde6b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1434acdc-13dff7948ccde6b6","8f44c0a14341345-17d7764c26aca714"]},"geometry":{"type":"LineString","coordinates":[[-83.6136254,32.893194],[-83.6131,32.8938445]]},"id":"8a44c0a1434ffff-1797b6f0599d0cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5505481,32.8779101]},"id":"8f44c0aa4b02d19-13f7d04b7182e8eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55273240000001,32.8803852]},"id":"8f44c0aa4b518f5-1797caf647d18315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4b518f5-1797caf647d18315","8f44c0aa4b02d19-13f7d04b7182e8eb"]},"geometry":{"type":"LineString","coordinates":[[-83.5505481,32.8779101],[-83.5506898,32.878393],[-83.5509993,32.8788217],[-83.55273240000001,32.8803852]]},"id":"8844c0aa4bfffff-17bffdecac41e29a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56999160000001,32.8813588]},"id":"8f44c0b8b225915-13f7e0d34c6f5ab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5706141,32.8818964]},"id":"8f44c0b8b350634-13b7df4e38d2e27d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8b350634-13b7df4e38d2e27d","8f44c0b8b225915-13f7e0d34c6f5ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.56999160000001,32.8813588],[-83.5699223,32.8814675],[-83.5698931,32.881573100000004],[-83.5698931,32.881675],[-83.5699268,32.881733100000005],[-83.57022260000001,32.881996300000004],[-83.5703039,32.882014600000005],[-83.5703575,32.8820174],[-83.5705568,32.8819357],[-83.5706141,32.8818964]]},"id":"8844c0b8b3fffff-13f7e0745582ee29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57008970000001,32.8849456]},"id":"8f44c0b8b251d9c-13b7a095f914cea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5692846,32.8866804]},"id":"8f44c0a165b6603-17dfe28d2a61634a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b251d9c-13b7a095f914cea7","8f44c0a165b6603-17dfe28d2a61634a"]},"geometry":{"type":"LineString","coordinates":[[-83.57008970000001,32.8849456],[-83.570096,32.8851582],[-83.5702088,32.885482700000004],[-83.5702533,32.8857094],[-83.57026280000001,32.8858108],[-83.5702342,32.8858908],[-83.5701866,32.8859495],[-83.56975460000001,32.8862855],[-83.5692846,32.8866804]]},"id":"8844c0b8b3fffff-17fff0f09a7e7f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5755154,32.8853043]},"id":"8f44c0a16c8d602-1397b356ec5b30f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57511240000001,32.8855324]},"id":"8f44c0a16c8b834-1797d452c87c20ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16c8b834-1797d452c87c20ea","8f44c0a16c8d602-1397b356ec5b30f4"]},"geometry":{"type":"LineString","coordinates":[[-83.5755154,32.8853043],[-83.57511240000001,32.8855324]]},"id":"8a44c0a16c8ffff-13df93d4dcc10510"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6016048,32.8932791]},"id":"8f44c0a1462b714-17ff73a50d2b302b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6007474,32.8933425]},"id":"8f44c0a1460ec49-17b755bce80f1121"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1462b714-17ff73a50d2b302b","8f44c0a1460ec49-17b755bce80f1121"]},"geometry":{"type":"LineString","coordinates":[[-83.6016048,32.8932791],[-83.6014942,32.8934378],[-83.60137300000001,32.8935546],[-83.6012553,32.8936025],[-83.6011162,32.893578600000005],[-83.60100560000001,32.8935277],[-83.6007474,32.8933425]]},"id":"8944c0a1463ffff-17ff74a235f173fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57660560000001,32.8708449]},"id":"8f44c0b8948da9a-13b790ad82582b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58008500000001,32.8705696]},"id":"8f44c0b894726d4-179f882eea1c607a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894726d4-179f882eea1c607a","8f44c0b8948da9a-13b790ad82582b35"]},"geometry":{"type":"LineString","coordinates":[[-83.57660560000001,32.8708449],[-83.5772056,32.8704714],[-83.5777815,32.870161],[-83.578021,32.8702989],[-83.5791258,32.8701029],[-83.5796076,32.8703579],[-83.57992940000001,32.8704525],[-83.58008500000001,32.8705696]]},"id":"8844c0b895fffff-17ff8c7bd2f0f89b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68149890000001,32.9257052]},"id":"8f44c0a0111035c-17b7d097333188b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6789052,32.9249975]},"id":"8f44c0a011b43a8-17fff6ec4ddad8b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a011b43a8-17fff6ec4ddad8b1","8f44c0a0111035c-17b7d097333188b3"]},"geometry":{"type":"LineString","coordinates":[[-83.68149890000001,32.9257052],[-83.681331,32.925614700000004],[-83.6810557,32.9254187],[-83.6809233,32.9252257],[-83.6807455,32.9249537],[-83.68070370000001,32.9247606],[-83.68064100000001,32.924623100000005],[-83.6804772,32.924623100000005],[-83.6802402,32.9246816],[-83.6792889,32.9249127],[-83.6789052,32.9249975]]},"id":"8744c0a01ffffff-17f6b37ae2678704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57914860000001,32.8844906]},"id":"8f44c0a16c0daf1-1397aa7829af552a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5781486,32.8834153]},"id":"8f44c0a16c00b29-17f79ce921fb591d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16c00b29-17f79ce921fb591d","8f44c0a16c0daf1-1397aa7829af552a"]},"geometry":{"type":"LineString","coordinates":[[-83.57914860000001,32.8844906],[-83.5787839,32.884191300000005],[-83.57845660000001,32.8838279],[-83.5781486,32.8834153]]},"id":"8944c0a16c3ffff-13d7abc28f83f4f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5778071,32.8737731]},"id":"8f44c0b8bb6444a-17dfbdbe981af1c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580067,32.875314700000004]},"id":"8f44c0b8979d7a6-139fb83a29d9ec2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb6444a-17dfbdbe981af1c2","8f44c0b8979d7a6-139fb83a29d9ec2e"]},"geometry":{"type":"LineString","coordinates":[[-83.5778071,32.8737731],[-83.578462,32.8737774],[-83.5785242,32.8738071],[-83.5786121,32.8738752],[-83.57998090000001,32.875368300000005],[-83.580067,32.875314700000004]]},"id":"8744c0b89ffffff-13ffaac97d596dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627457,32.902299]},"id":"8f44c0a1514d6e2-1797f48766805f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6301511,32.9002949]},"id":"8f44c0a15b8540a-139f5df39af4ee36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15b8540a-139f5df39af4ee36","8f44c0a1514d6e2-1797f48766805f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.627457,32.902299],[-83.6281644,32.901764400000005],[-83.6301511,32.9002949]]},"id":"8744c0a15ffffff-139ff13ece13d3bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5517822,32.8769756]},"id":"8f44c0aa4b20185-17bfcd482007910f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55756500000001,32.881918500000005]},"id":"8f44c0b8b61271a-13bfbf29e4af9cb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b61271a-13bfbf29e4af9cb1","8f44c0aa4b20185-17bfcd482007910f"]},"geometry":{"type":"LineString","coordinates":[[-83.5517822,32.8769756],[-83.55756500000001,32.881918500000005]]},"id":"8544c0bbfffffff-17b7f639024ec272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6076762,32.9147067]},"id":"8f44c0a1034c693-13dff4d261917d68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610363,32.917097000000005]},"id":"8f44c0a11c88834-13b7be432bb023a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1034c693-13dff4d261917d68","8f44c0a11c88834-13b7be432bb023a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6076762,32.9147067],[-83.608058,32.915289],[-83.60863400000001,32.915817000000004],[-83.60921,32.916361],[-83.60975400000001,32.916697],[-83.610106,32.917049],[-83.61028200000001,32.917129],[-83.610363,32.917097000000005]]},"id":"8644c0a17ffffff-1797d1c07185fab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6268263,32.898597800000005]},"id":"8f44c0a158dc8d9-13f7b61190ff84b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6249791,32.896881900000004]},"id":"8f44c0a1588a8b3-17d73a9419dc252b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1588a8b3-17d73a9419dc252b","8f44c0a158dc8d9-13f7b61190ff84b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6268263,32.898597800000005],[-83.6249791,32.896881900000004]]},"id":"8844c0a159fffff-13df7852d1c69d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60588150000001,32.929390600000005]},"id":"8f44c0a13b59d46-17b769341afbbf87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61136400000001,32.931013]},"id":"8f44c0a1161b9a0-139f3bd189889608"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a13b59d46-17b769341afbbf87","8f44c0a1161b9a0-139f3bd189889608"]},"geometry":{"type":"LineString","coordinates":[[-83.60588150000001,32.929390600000005],[-83.61136400000001,32.931013]]},"id":"8644c0a17ffffff-13b76282cfcdd508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56684100000001,32.909673000000005]},"id":"8f44c0a1251bced-1797a88463e8547f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691187,32.907185500000004]},"id":"8f44c0a12525862-13fff2f4d902c344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1251bced-1797a88463e8547f","8f44c0a12525862-13fff2f4d902c344"]},"geometry":{"type":"LineString","coordinates":[[-83.56684100000001,32.909673000000005],[-83.56824230000001,32.9081994],[-83.56877870000001,32.9076639],[-83.5691187,32.907185500000004]]},"id":"8944c0a1253ffff-1797a5add2e75677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5815692,32.8965769]},"id":"8f44c0a16761356-179f948f4408a1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5812152,32.896239300000005]},"id":"8f44c0a16760309-17b7956c8deb4dee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16760309-17b7956c8deb4dee","8f44c0a16761356-179f948f4408a1ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5815692,32.8965769],[-83.5812152,32.896239300000005]]},"id":"8a44c0a16767fff-179f94fde9d6845e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65586210000001,32.8962312]},"id":"8f44c0a06a358c4-17b6cf2e3d3a51a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65961300000001,32.894041]},"id":"8f44c0a044c2298-13d7e605e1100f39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a044c2298-13d7e605e1100f39","8f44c0a06a358c4-17b6cf2e3d3a51a7"]},"geometry":{"type":"LineString","coordinates":[[-83.65586210000001,32.8962312],[-83.6560475,32.896145600000004],[-83.6563649,32.895927],[-83.65691770000001,32.8955197],[-83.65717090000001,32.8953341],[-83.6573065,32.8952143],[-83.6574063,32.8950496],[-83.65752760000001,32.8946962],[-83.6576702,32.894223100000005],[-83.6578022,32.8939566],[-83.65961300000001,32.894041]]},"id":"8644c0a07ffffff-13bffad949d7219b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5560724,32.8901246]},"id":"8f44c0aa5c73c8d-17d7e2cecc08de37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5548483,32.8914874]},"id":"8f44c0aa5cec68d-139fe5cbdbcf07e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa5c73c8d-17d7e2cecc08de37","8f44c0aa5cec68d-139fe5cbdbcf07e1"]},"geometry":{"type":"LineString","coordinates":[[-83.5560724,32.8901246],[-83.5557246,32.8904044],[-83.5551707,32.890844200000004],[-83.5550393,32.891054600000004],[-83.5548483,32.8914874]]},"id":"8844c0aa5dfffff-13dfc47df9f610e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53481190000001,32.9301714]},"id":"8f44c0aa3228b00-139ff6b69c0d7bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5367025,32.929621700000006]},"id":"8f44c0aa3343962-17b7f218f773e4be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa3228b00-139ff6b69c0d7bcc","8f44c0aa3343962-17b7f218f773e4be"]},"geometry":{"type":"LineString","coordinates":[[-83.53481190000001,32.9301714],[-83.5352604,32.930028400000005],[-83.5359675,32.929673],[-83.5362661,32.929541400000005],[-83.5365404,32.929450800000005],[-83.5367025,32.929621700000006]]},"id":"8844c0aa33fffff-139ff4579f504dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57306770000001,32.880152100000004]},"id":"8f44c0b8baca3a5-17ff9950b722f8b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5717154,32.8792141]},"id":"8f44c0b8bad3b4e-17b7dc9dedd90c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bad3b4e-17b7dc9dedd90c6b","8f44c0b8baca3a5-17ff9950b722f8b4"]},"geometry":{"type":"LineString","coordinates":[[-83.57306770000001,32.880152100000004],[-83.5726678,32.879800800000005],[-83.5721534,32.8795112],[-83.5718662,32.8793474],[-83.5717154,32.8792141]]},"id":"8944c0b8bafffff-17d79af0abae8565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56542230000001,32.8840482]},"id":"8f44c0b8b28e52c-13f7abfb1a00562e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5659878,32.883991800000004]},"id":"8f44c0b8b28c19c-13dfea99a1c51a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b28e52c-13f7abfb1a00562e","8f44c0b8b28c19c-13dfea99a1c51a91"]},"geometry":{"type":"LineString","coordinates":[[-83.56542230000001,32.8840482],[-83.5659878,32.883991800000004]]},"id":"8a44c0b8b28ffff-13f7ab4a673bbb8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6810243,32.9197089]},"id":"8f44c0a01d44da1-179691bfda32e8e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6788478,32.9203828]},"id":"8f44c0a01c218e8-13b7d710264fa98f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c218e8-13b7d710264fa98f","8f44c0a01d44da1-179691bfda32e8e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6810243,32.9197089],[-83.6788478,32.9203828]]},"id":"8844c0a01dfffff-13d6b467fae38be5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5618943,32.8744534]},"id":"8f44c0b8b0a4710-1397f4981be1765e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5597587,32.8761312]},"id":"8f44c0b8b093054-179fb9ced62711b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b093054-179fb9ced62711b2","8f44c0b8b0a4710-1397f4981be1765e"]},"geometry":{"type":"LineString","coordinates":[[-83.5618943,32.8744534],[-83.559883,32.8760181],[-83.5597587,32.8761312]]},"id":"8944c0b8b0bffff-139ff735ea4f1311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570075,32.873961]},"id":"8f44c0b8bb93a69-17d7a09f262264b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570603,32.873561]},"id":"8f44c0b8bb82c8a-17d7bf5525875466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb93a69-17d7a09f262264b1","8f44c0b8bb82c8a-17d7bf5525875466"]},"geometry":{"type":"LineString","coordinates":[[-83.570075,32.873961],[-83.570603,32.873561]]},"id":"8944c0b8bbbffff-17d7bffa21703e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54164320000001,32.8958007]},"id":"8f44c0aa08728d5-17b7f60904249bec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54402970000001,32.8961763]},"id":"8f44c0aa54927b6-179ff03578fdc29a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa08728d5-17b7f60904249bec","8f44c0aa54927b6-179ff03578fdc29a"]},"geometry":{"type":"LineString","coordinates":[[-83.54164320000001,32.8958007],[-83.5423999,32.896033800000005],[-83.54259880000001,32.896021000000005],[-83.5427851,32.895972],[-83.54326350000001,32.8958482],[-83.5434943,32.895843500000005],[-83.5436849,32.895882],[-83.5438378,32.8959848],[-83.54402970000001,32.8961763]]},"id":"8944c0aa087ffff-17fff308bfe8dc3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53877580000001,32.8758222]},"id":"8f44c0aa4c58bb3-17dfed0926444c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5395603,32.8766076]},"id":"8f44c0aa41a4acc-17d7eb1ede0010bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4c58bb3-17dfed0926444c8b","8f44c0aa41a4acc-17d7eb1ede0010bd"]},"geometry":{"type":"LineString","coordinates":[[-83.53877580000001,32.8758222],[-83.5395603,32.8766076]]},"id":"8744c0aa4ffffff-17d7fc140d0bfd30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5334248,32.8831155]},"id":"8f44c0aa445b088-17bffa198ece4347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5325928,32.8838859]},"id":"8f44c0aa47b3cb0-139ffc218f72df4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa445b088-17bffa198ece4347","8f44c0aa47b3cb0-139ffc218f72df4f"]},"geometry":{"type":"LineString","coordinates":[[-83.5334248,32.8831155],[-83.53272120000001,32.8837508],[-83.5325928,32.8838859]]},"id":"8944c0aa47bffff-179ffb202c6f3082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6289421,32.8991044]},"id":"8f44c0a15bb638e-17b750e736f536ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625596,32.901673]},"id":"8f44c0a1515e861-13ffb91286d5f171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1515e861-13ffb91286d5f171","8f44c0a15bb638e-17b750e736f536ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6289421,32.8991044],[-83.627756,32.900057000000004],[-83.625596,32.901673]]},"id":"8744c0a15ffffff-13df34f672244e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57319120000001,32.8731243]},"id":"8f44c0b8bb13156-17d7b9038dbacb2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573524,32.873611000000004]},"id":"8f44c0b8bb1e39b-17f7f8338c2eb5bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb13156-17d7b9038dbacb2b","8f44c0b8bb1e39b-17f7f8338c2eb5bf"]},"geometry":{"type":"LineString","coordinates":[[-83.57319120000001,32.8731243],[-83.573524,32.873611000000004]]},"id":"8944c0b8bb3ffff-17dfd89b8c3ef5d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5434915,32.883405800000006]},"id":"8f44c0aa405dae5-17f7e185d8e4900e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5419394,32.8842258]},"id":"8f44c0aa43b0d91-13f7e54fe4eca5a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa405dae5-17f7e185d8e4900e","8f44c0aa43b0d91-13f7e54fe4eca5a4"]},"geometry":{"type":"LineString","coordinates":[[-83.5434915,32.883405800000006],[-83.5432911,32.883211700000004],[-83.5419394,32.8842258]]},"id":"8844c0aa41fffff-17fff364c88b3829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5608581,32.8772279]},"id":"8f44c0b8b099210-17dff71fba1b5ea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561115,32.8783449]},"id":"8f44c0b8b723ae8-1397b67f2edad49c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b723ae8-1397b67f2edad49c","8f44c0b8b099210-17dff71fba1b5ea0"]},"geometry":{"type":"LineString","coordinates":[[-83.5608581,32.8772279],[-83.561115,32.8783449]]},"id":"8744c0b8bffffff-13bfb6cf7aea78d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5602994,32.8865977]},"id":"8f44c0aa59b3635-17bfb87cead8fd3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5630524,32.8842419]},"id":"8f44c0b8b66848c-13ffb1c4401a6476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b66848c-13ffb1c4401a6476","8f44c0aa59b3635-17bfb87cead8fd3a"]},"geometry":{"type":"LineString","coordinates":[[-83.5602994,32.8865977],[-83.56046330000001,32.8863949],[-83.5606822,32.8861508],[-83.5611982,32.8857178],[-83.5618546,32.8851938],[-83.5624174,32.8847484],[-83.562815,32.8844288],[-83.5630524,32.8842419]]},"id":"8644c0aa7ffffff-13b7f53705f3f1de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5683621,32.8799422]},"id":"8f44c0b8b313b41-17ffe4cdb0274696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b313b41-17ffe4cdb0274696","8f44c0b8b66848c-13ffb1c4401a6476"]},"geometry":{"type":"LineString","coordinates":[[-83.5683621,32.8799422],[-83.5681673,32.8800928],[-83.5669871,32.8810285],[-83.5657525,32.882049],[-83.5630524,32.8842419]]},"id":"8744c0b8bffffff-13b7fb4bd6eeab94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56841080000001,32.879980100000004]},"id":"8f44c0b8b311685-1797b4af4bca49d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5702693,32.8784617]},"id":"8f44c0b8b320992-13dfb025b3cb8ee2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b311685-1797b4af4bca49d5","8f44c0b8b320992-13dfb025b3cb8ee2"]},"geometry":{"type":"LineString","coordinates":[[-83.56841080000001,32.879980100000004],[-83.5685612,32.87986],[-83.5702693,32.8784617]]},"id":"8944c0b8b33ffff-17bfb26a16503510"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58816780000001,32.8992963]},"id":"8f44c0a16274cf1-17bf74732f1b75d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5905542,32.8984192]},"id":"8f44c0a1636b4a4-139f6e9fa1f41148"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1636b4a4-139f6e9fa1f41148","8f44c0a16274cf1-17bf74732f1b75d8"]},"geometry":{"type":"LineString","coordinates":[[-83.58816780000001,32.8992963],[-83.5885188,32.898960200000005],[-83.58888850000001,32.898741900000005],[-83.589155,32.8986381],[-83.58966550000001,32.898555],[-83.5899665,32.8985099],[-83.5905542,32.8984192]]},"id":"8844c0a163fffff-17bff1b3385c435d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54829980000001,32.8796607]},"id":"8f44c0aa4b88d5e-17bff5c8a5b07123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55376150000001,32.883765100000005]},"id":"8f44c0aa4a6b515-17d7f873161a7ccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4a6b515-17d7f873161a7ccb","8f44c0aa4b88d5e-17bff5c8a5b07123"]},"geometry":{"type":"LineString","coordinates":[[-83.54829980000001,32.8796607],[-83.55255070000001,32.883476200000004],[-83.55298780000001,32.8832295],[-83.55376150000001,32.883765100000005]]},"id":"8844c0aa4bfffff-13d7df3f027d7365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5860098,32.8739128]},"id":"8f44c0b890da12c-17b7f9b7ef61a243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58540070000001,32.8740703]},"id":"8f44c0b897290b6-1397fb3494a55026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b897290b6-1397fb3494a55026","8f44c0b890da12c-17b7f9b7ef61a243"]},"geometry":{"type":"LineString","coordinates":[[-83.5860098,32.8739128],[-83.58540070000001,32.8740703]]},"id":"8844c0b897fffff-17f7fa7647e068f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54392390000001,32.8800819]},"id":"8f44c0aa415cad2-17d7f0779e4cfff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.544303,32.8797664]},"id":"8f44c0aa4143884-17ffdf8aa9443506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa4143884-17ffdf8aa9443506","8f44c0aa415cad2-17d7f0779e4cfff8"]},"geometry":{"type":"LineString","coordinates":[[-83.54392390000001,32.8800819],[-83.544303,32.8797664]]},"id":"8944c0aa417ffff-17f7e0012c6a5f68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5663081,32.886303000000005]},"id":"8f44c0aa592d89d-17f7e9d17dad9d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56629450000001,32.8868986]},"id":"8f44c0aa5929a89-17f7a9d9f17a4036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa592d89d-17f7e9d17dad9d3c","8f44c0aa5929a89-17f7a9d9f17a4036"]},"geometry":{"type":"LineString","coordinates":[[-83.5663081,32.886303000000005],[-83.56629930000001,32.8866083],[-83.56629450000001,32.8868986]]},"id":"8a44c0aa592ffff-17bfa9d64938903e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56895630000001,32.8841486]},"id":"8f44c0b8b20b41c-13b7e35a5a2887a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.569542,32.8841406]},"id":"8f44c0b8b20971c-13bfe1ec4f5cf466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b20971c-13bfe1ec4f5cf466","8f44c0b8b20b41c-13b7e35a5a2887a0"]},"geometry":{"type":"LineString","coordinates":[[-83.56895630000001,32.8841486],[-83.569542,32.8841406]]},"id":"8a44c0b8b20ffff-13bfe2a359a13342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5686242,32.882283]},"id":"8f44c0b8b2044c9-17b7e429e91cf3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56918440000001,32.8827917]},"id":"8f44c0b8b201909-17f7f2cbccc94ea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b201909-17f7f2cbccc94ea4","8f44c0b8b2044c9-17b7e429e91cf3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.5686242,32.882283],[-83.56918440000001,32.8827917]]},"id":"8a44c0b8b207fff-17d7e37ad90b60d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54421520000001,32.8786367]},"id":"8f44c0aa41718d1-13bfffc18ba711ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.548322,32.8768963]},"id":"8f44c0aa48598e6-17fff5bacb31e7e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa41718d1-13bfffc18ba711ba","8f44c0aa48598e6-17fff5bacb31e7e7"]},"geometry":{"type":"LineString","coordinates":[[-83.54421520000001,32.8786367],[-83.54527990000001,32.8778462],[-83.5460127,32.8772034],[-83.5478003,32.875537],[-83.5480807,32.8753891],[-83.54829240000001,32.87538],[-83.54849870000001,32.8754119],[-83.5487049,32.8755076],[-83.5489275,32.875753800000005],[-83.54903060000001,32.8759863],[-83.54900430000001,32.8762279],[-83.54871580000001,32.876533300000006],[-83.548322,32.8768963]]},"id":"8744c0aa4ffffff-17fff9009d27e77d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.550122,32.878237]},"id":"8f44c0aa4b1101b-13d7f155c9d746c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4b1101b-13d7f155c9d746c7","8f44c0aa48598e6-17fff5bacb31e7e7"]},"geometry":{"type":"LineString","coordinates":[[-83.548322,32.8768963],[-83.550122,32.878237]]},"id":"8744c0aa4ffffff-139ff3884a1433b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.535247,32.873165]},"id":"8f44c0aa4cadd0a-17f7f5a6ac8b7a57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53948170000001,32.873759500000006]},"id":"8f44c0aa4c75a54-17d7fb4ff70c6ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c75a54-17d7fb4ff70c6ace","8f44c0aa4cadd0a-17f7f5a6ac8b7a57"]},"geometry":{"type":"LineString","coordinates":[[-83.535247,32.873165],[-83.537771,32.873524],[-83.53921430000001,32.8737189],[-83.53948170000001,32.873759500000006]]},"id":"8844c0aa4dfffff-179ff07b7a2945c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59143470000001,32.9202181]},"id":"8f44c0a13d530e4-13d77c79572a45c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5821952,32.9186728]},"id":"8f44c0a12356a55-17ff830804af7f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12356a55-17ff830804af7f79","8f44c0a13d530e4-13d77c79572a45c5"]},"geometry":{"type":"LineString","coordinates":[[-83.59143470000001,32.9202181],[-83.5910546,32.9200974],[-83.59058130000001,32.9199234],[-83.5894265,32.919611100000004],[-83.5883965,32.9192531],[-83.5845367,32.918106800000004],[-83.5841693,32.9182045],[-83.5829891,32.9190241],[-83.5827424,32.9190691],[-83.5821952,32.9186728]]},"id":"8644c0a17ffffff-17dff8013f341809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5462308,32.9095479]},"id":"8f44c0aa1ca5621-17b7fad5cf84278e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.545996,32.909099000000005]},"id":"8f44c0aa1ca415e-179ffb688fb25c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1ca5621-17b7fad5cf84278e","8f44c0aa1ca415e-179ffb688fb25c41"]},"geometry":{"type":"LineString","coordinates":[[-83.5462308,32.9095479],[-83.545996,32.909099000000005]]},"id":"8a44c0aa1ca7fff-17b7fb1f26f47b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57437,32.871745600000004]},"id":"8f44c0b8bb3571b-13ff9622c03a1696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57495820000001,32.872669900000005]},"id":"8f44c0b8bb05566-17bfb4b32b96c823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb3571b-13ff9622c03a1696","8f44c0b8bb05566-17bfb4b32b96c823"]},"geometry":{"type":"LineString","coordinates":[[-83.57437,32.871745600000004],[-83.57495820000001,32.872669900000005]]},"id":"8944c0b8bb3ffff-139ff56afa645e74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5505583,32.8881183]},"id":"8f44c0aa5cb0806-13f7f0451f9b26b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54689280000001,32.884999300000004]},"id":"8f44c0aa432a001-13d7d9380a9d9fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa432a001-13d7d9380a9d9fca","8f44c0aa5cb0806-13f7f0451f9b26b4"]},"geometry":{"type":"LineString","coordinates":[[-83.5505583,32.8881183],[-83.55068440000001,32.8881323],[-83.5507984,32.888091200000005],[-83.5516726,32.887311600000004],[-83.55169430000001,32.8871976],[-83.5516726,32.887074500000004],[-83.5493162,32.885082000000004],[-83.5489775,32.8849219],[-83.5486972,32.884890500000004],[-83.5470738,32.884917900000005],[-83.54689280000001,32.884999300000004]]},"id":"8644c0aa7ffffff-17d7d203f206e4ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61497800000001,32.859603]},"id":"8f44c0a328f6a53-17d7f2fec65c3cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328f6a53-17d7f2fec65c3cff","8f44c0a3288d1ac-17bff4b90734d0f2"]},"geometry":{"type":"LineString","coordinates":[[-83.61497800000001,32.859603],[-83.61463930000001,32.8595946],[-83.61427040000001,32.859591900000005]]},"id":"8844c0a329fffff-17bf73dbe42b491e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56462400000001,32.8841565]},"id":"8f44c0b8b298992-13b7fdee0d3f4695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b28e52c-13f7abfb1a00562e","8f44c0b8b298992-13b7fdee0d3f4695"]},"geometry":{"type":"LineString","coordinates":[[-83.56542230000001,32.8840482],[-83.5650549,32.8840662],[-83.5649406,32.8840847],[-83.564778,32.884129],[-83.56462400000001,32.8841565]]},"id":"8944c0b8b2bffff-139fbcf5e8fbaeb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62099740000001,32.897734400000004]},"id":"8f44c0a15c59ca9-13df244ca4b110b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177248,32.8996354]},"id":"8f44c0a15563ca2-17972c4a0b598b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15563ca2-17972c4a0b598b07","8f44c0a15c59ca9-13df244ca4b110b9"]},"geometry":{"type":"LineString","coordinates":[[-83.62099740000001,32.897734400000004],[-83.6203297,32.8981057],[-83.6177248,32.8996354]]},"id":"8744c0a15ffffff-17bf384d9693815e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5777762,32.881313500000005]},"id":"8f44c0a16d185b2-13d7fdd1e289e0dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5774738,32.881455800000005]},"id":"8f44c0a16d1a190-139fee8eec9d2317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d185b2-13d7fdd1e289e0dd","8f44c0a16d1a190-139fee8eec9d2317"]},"geometry":{"type":"LineString","coordinates":[[-83.5777762,32.881313500000005],[-83.5774738,32.881455800000005]]},"id":"8a44c0a16d1ffff-13f7fe3066ae9209"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5407034,32.9039866]},"id":"8f44c0aa0a99922-139fe85467a51bd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5427478,32.9052056]},"id":"8f44c0aa0ac25a4-179fe356acd6797e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0a99922-139fe85467a51bd8","8f44c0aa0ac25a4-179fe356acd6797e"]},"geometry":{"type":"LineString","coordinates":[[-83.5407034,32.9039866],[-83.5427478,32.9052056]]},"id":"8844c0aa0bfffff-139ff5d58976beb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58738290000001,32.9276567]},"id":"8f44c0a1355d694-13ff765dbd93d062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5661323,32.9214369]},"id":"8f44c0aacd30da2-13bfba3f5ad0ca69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aacd30da2-13bfba3f5ad0ca69","8f44c0a1355d694-13ff765dbd93d062"]},"geometry":{"type":"LineString","coordinates":[[-83.58738290000001,32.9276567],[-83.5867983,32.927268000000005],[-83.5864414,32.927056],[-83.585976,32.9267789],[-83.5854295,32.9264902],[-83.58474480000001,32.9261136],[-83.5841305,32.925742500000005],[-83.58408630000001,32.9254559],[-83.5837748,32.9250952],[-83.58240450000001,32.9248665],[-83.5815683,32.9251889],[-83.58072390000001,32.9252891],[-83.57958860000001,32.9244481],[-83.57823160000001,32.9243882],[-83.5760589,32.9222483],[-83.5748265,32.9217253],[-83.57370780000001,32.9229359],[-83.56935650000001,32.9210982],[-83.56835500000001,32.921437700000006],[-83.5677971,32.921257600000004],[-83.5673357,32.9207983],[-83.5670461,32.9207623],[-83.56667060000001,32.9211405],[-83.5661323,32.9214369]]},"id":"8444c0bffffffff-13f7d02e7766e1ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5396406,32.8711849]},"id":"8f44c0aa4d73b86-139ffaeca0427e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5363138,32.8702911]},"id":"8f44c0aa4dadba3-17dff30be6c4cf1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4dadba3-17dff30be6c4cf1d","8f44c0aa4d73b86-139ffaeca0427e1b"]},"geometry":{"type":"LineString","coordinates":[[-83.5396406,32.8711849],[-83.5363138,32.8702911]]},"id":"8844c0aa4dfffff-17f7eefc4a8ef194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5494321,32.9086628]},"id":"8f44c0aa1c254a5-179fd304f0b6afa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55033800000001,32.910863]},"id":"8f44c0aa1c70c43-13fff0cecafb3522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1c70c43-13fff0cecafb3522","8f44c0aa1c254a5-179fd304f0b6afa4"]},"geometry":{"type":"LineString","coordinates":[[-83.5494321,32.9086628],[-83.549833,32.909513000000004],[-83.550217,32.910569],[-83.55033800000001,32.910863]]},"id":"8844c0aa1dfffff-17b7d1de24d45b2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.578805,32.8991519]},"id":"8f44c0a16670614-17d7fb4ee9356fd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5825262,32.9043112]},"id":"8f44c0a12825b80-13ff823920b10f45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12825b80-13ff823920b10f45","8f44c0a16670614-17d7fb4ee9356fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.578805,32.8991519],[-83.579514,32.8998203],[-83.58043140000001,32.901258],[-83.5806331,32.902659],[-83.58083690000001,32.9029727],[-83.5825262,32.9043112]]},"id":"8644c0a17ffffff-13df86feb3392c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5741047,32.8809819]},"id":"8f44c0a16d90104-13f7b6c89f981624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d90104-13f7b6c89f981624","8f44c0b8baca3a5-17ff9950b722f8b4"]},"geometry":{"type":"LineString","coordinates":[[-83.5741047,32.8809819],[-83.57306770000001,32.880152100000004]]},"id":"8744c0b8bffffff-17f7f80ca089954f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.566838,32.884748900000005]},"id":"8f44c0b8b2f204d-13bfb88648b60afe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5668854,32.885081]},"id":"8f44c0b8b2d4b74-13f7a868a51f7efe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2f204d-13bfb88648b60afe","8f44c0b8b2d4b74-13f7a868a51f7efe"]},"geometry":{"type":"LineString","coordinates":[[-83.566838,32.884748900000005],[-83.5668854,32.885081]]},"id":"8944c0b8b2fffff-139fe8777a3b935f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5977288,32.9227946]},"id":"8f44c0a1381b42e-179ffd1b825d00da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5954277,32.921244200000004]},"id":"8f44c0a138a2434-13d7e2b9b0f2356b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a138a2434-13d7e2b9b0f2356b","8f44c0a1381b42e-179ffd1b825d00da"]},"geometry":{"type":"LineString","coordinates":[[-83.5977288,32.9227946],[-83.5968771,32.9221292],[-83.5965381,32.9219315],[-83.59616170000001,32.9217651],[-83.5954277,32.921244200000004]]},"id":"8844c0a139fffff-179fffe2c6b6441c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5395086,32.8723534]},"id":"8f44c0aa4d5c575-13f7eb3f2e0157d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5355363,32.8718991]},"id":"8f44c0aa4c14ca0-13dff4f1d37606c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c14ca0-13dff4f1d37606c4","8f44c0aa4d5c575-13f7eb3f2e0157d3"]},"geometry":{"type":"LineString","coordinates":[[-83.5395086,32.8723534],[-83.5389542,32.8723011],[-83.5382793,32.872217400000004],[-83.537498,32.872177300000004],[-83.53642710000001,32.8720312],[-83.5355363,32.8718991]]},"id":"8844c0aa4dfffff-13f7f01a16c684c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573503,32.8797986]},"id":"8f44c0b8bac8d69-1797b840a2b8fd11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bae820e-1797f64d8f9af427","8f44c0b8bac8d69-1797b840a2b8fd11"]},"geometry":{"type":"LineString","coordinates":[[-83.573503,32.8797986],[-83.5743016,32.8791655]]},"id":"8944c0b8bafffff-17dfd74719529f4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bae820e-1797f64d8f9af427","8f44c0b8bac8d69-1797b840a2b8fd11"]},"geometry":{"type":"LineString","coordinates":[[-83.5743016,32.8791655],[-83.5737132,32.878623600000005],[-83.57274050000001,32.8778133],[-83.5720168,32.877179000000005],[-83.57186320000001,32.8771233],[-83.5717388,32.8771183],[-83.57162140000001,32.8771525],[-83.5712161,32.8774861],[-83.571172,32.8775812],[-83.5711649,32.8776887],[-83.57122600000001,32.8777868],[-83.57175190000001,32.878265],[-83.5724478,32.8788727],[-83.5729263,32.8793044],[-83.573503,32.8797986]]},"id":"8844c0b8bbfffff-13f7ba996b4ed945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53093910000001,32.8493958]},"id":"8f44c0b9d39d21d-13d8602b1d517c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53156200000001,32.851498]},"id":"8f44c0b9d2a8002-13fffea5c64e890b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b9d2a8002-13fffea5c64e890b","8f44c0b9d39d21d-13d8602b1d517c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.53093910000001,32.8493958],[-83.531034,32.850986],[-83.531018,32.85105],[-83.531146,32.851114],[-83.53125800000001,32.851226000000004],[-83.531418,32.851418],[-83.53156200000001,32.851498]]},"id":"8844c0b9d3fffff-17b7ffd33d7dea62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58312640000001,32.9099929]},"id":"8f44c0a12ba2388-17df90c205411841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58457510000001,32.9125801]},"id":"8f44c0a12a159a6-179ffd389a6a12c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12a159a6-179ffd389a6a12c3","8f44c0a12ba2388-17df90c205411841"]},"geometry":{"type":"LineString","coordinates":[[-83.58312640000001,32.9099929],[-83.5832764,32.910504],[-83.5834586,32.9111463],[-83.58356780000001,32.911399800000005],[-83.5836604,32.911552900000004],[-83.5838179,32.9117837],[-83.58418920000001,32.9121553],[-83.58457510000001,32.9125801]]},"id":"8844c0a12bfffff-13b7ff5a03e51316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5829241,32.8976423]},"id":"8f44c0a1639b88e-13b7f1407ef16bb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58377510000001,32.8984913]},"id":"8f44c0a162a0ac3-13b77f2c9d89e741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a162a0ac3-13b77f2c9d89e741","8f44c0a1639b88e-13b7f1407ef16bb4"]},"geometry":{"type":"LineString","coordinates":[[-83.5829241,32.8976423],[-83.58377510000001,32.8984913]]},"id":"8844c0a163fffff-13bfc0368859c59e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446287,32.8974525]},"id":"8f44c0a060a889a-13bffa9b1dca882e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645038,32.896386]},"id":"8f44c0a0601638d-1797e99b4a81e0f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a060a889a-13bffa9b1dca882e","8f44c0a0601638d-1797e99b4a81e0f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6446287,32.8974525],[-83.644917,32.896918],[-83.645038,32.896538],[-83.645038,32.896386]]},"id":"8844c0a061fffff-17f7f9ff360b8eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5663402,32.885681000000005]},"id":"8f44c0b8b2d06b1-17ffa9bd6a821cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa592d89d-17f7e9d17dad9d3c","8f44c0b8b2d06b1-17ffa9bd6a821cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.5663402,32.885681000000005],[-83.5663081,32.886303000000005]]},"id":"8944c0b8b2fffff-17b7a9c77f0281ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55593230000001,32.8739772]},"id":"8f44c0b8b405951-17dfc326590b6023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55513780000001,32.873938200000005]},"id":"8f44c0b8b406a0e-17d7e516e76e5378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8b406a0e-17d7e516e76e5378","8f44c0b8b405951-17dfc326590b6023"]},"geometry":{"type":"LineString","coordinates":[[-83.55593230000001,32.8739772],[-83.55537650000001,32.8739435],[-83.55513780000001,32.873938200000005]]},"id":"8a44c0b8b407fff-17dfd41e8d0a00a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63034520000001,32.9238044]},"id":"8f44c0a11b4c45e-1397cd7a4e880bff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317283,32.926178900000004]},"id":"8f44c0a02698976-17dfda19d7c96858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a02698976-17dfda19d7c96858","8f44c0a11b4c45e-1397cd7a4e880bff"]},"geometry":{"type":"LineString","coordinates":[[-83.63034520000001,32.9238044],[-83.63046270000001,32.924019],[-83.6305389,32.924199300000005],[-83.6305696,32.9244427],[-83.6305775,32.924568],[-83.6306059,32.924629700000004],[-83.6306512,32.9246921],[-83.6307451,32.924738600000005],[-83.6307819,32.9247966],[-83.6307965,32.9249087],[-83.63089000000001,32.925203100000004],[-83.6309485,32.925290000000004],[-83.6310682,32.925404900000004],[-83.63117790000001,32.925502900000005],[-83.63126890000001,32.9256028],[-83.6314473,32.925905900000004],[-83.63166340000001,32.926121800000004],[-83.6317283,32.926178900000004]]},"id":"8744c0a02ffffff-179fec09d51e6ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5432165,32.8794832]},"id":"8f44c0aa4150346-17dfe231b575c369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54355360000001,32.879310600000004]},"id":"8f44c0aa41550ea-17f7e15f0dda13a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa41550ea-17f7e15f0dda13a5","8f44c0aa4150346-17dfe231b575c369"]},"geometry":{"type":"LineString","coordinates":[[-83.5432165,32.8794832],[-83.54355360000001,32.879310600000004]]},"id":"8a44c0aa4157fff-1797f1c861a70957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5599773,32.8870519]},"id":"8f44c0aa5990a1e-17d7f94632091edd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55330570000001,32.875754900000004]},"id":"8f44c0b8b4f6514-17b7d98ffacb1c6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5990a1e-17d7f94632091edd","8f44c0b8b4f6514-17b7d98ffacb1c6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5599773,32.8870519],[-83.5599983,32.886806],[-83.5601879,32.885908400000005],[-83.56029050000001,32.885103400000006],[-83.5603085,32.8848515],[-83.5602808,32.8846523],[-83.5602176,32.8844732],[-83.5600893,32.8842287],[-83.5598698,32.8837331],[-83.55966240000001,32.8832387],[-83.5596091,32.8829785],[-83.55958670000001,32.8828095],[-83.55957280000001,32.8825936],[-83.55962310000001,32.8822416],[-83.55961980000001,32.8820356],[-83.5595979,32.8818545],[-83.55954200000001,32.8817019],[-83.55943590000001,32.881464900000005],[-83.55926260000001,32.8812303],[-83.55889020000001,32.8807787],[-83.55330570000001,32.875754900000004]]},"id":"8444c0bffffffff-13bfbe751e01317e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6771145,32.921592700000005]},"id":"8f44c0a01c1c175-179ffb4b768e6ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67741410000001,32.9222859]},"id":"8f44c0a01c19809-17deba903b6afa34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c19809-17deba903b6afa34","8f44c0a01c1c175-179ffb4b768e6ef8"]},"geometry":{"type":"LineString","coordinates":[[-83.6771145,32.921592700000005],[-83.6771179,32.9217887],[-83.67720510000001,32.9219378],[-83.67735490000001,32.9221251],[-83.67741410000001,32.9222859]]},"id":"8a44c0a01c1ffff-17fedaffd2b35955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900998,32.9155784]},"id":"8f44c0a052ac06e-17fefb97a004de6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a052e1c0a-13d676b797ab7ea5","8f44c0a052ac06e-17fefb97a004de6f"]},"geometry":{"type":"LineString","coordinates":[[-83.6900998,32.9155784],[-83.69025880000001,32.9155564],[-83.6904999,32.9155417],[-83.6907157,32.9156135],[-83.6908188,32.9157049],[-83.6909004,32.9158534],[-83.69092760000001,32.916592800000004],[-83.69096850000001,32.9166875],[-83.6910249,32.916778900000004],[-83.69108200000001,32.916848300000005],[-83.69127180000001,32.916947],[-83.69162580000001,32.9170317],[-83.691767,32.917098800000005],[-83.6918983,32.917186900000004],[-83.69209670000001,32.91736]]},"id":"8844c0a053fffff-17ff793a8e966dee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57875080000001,32.887869900000005]},"id":"8f44c0a161b2a49-13d7bb70c0d4a7ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58666790000001,32.8914026]},"id":"8f44c0a1614d366-13f7f81c9ac46505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1614d366-13f7f81c9ac46505","8f44c0a161b2a49-13d7bb70c0d4a7ab"]},"geometry":{"type":"LineString","coordinates":[[-83.57875080000001,32.887869900000005],[-83.5789146,32.8881776],[-83.5790688,32.8884941],[-83.5792395,32.8888381],[-83.5793433,32.8890381],[-83.579418,32.889193],[-83.579514,32.889417],[-83.5796072,32.8895809],[-83.5797289,32.889724],[-83.5798635,32.8898218],[-83.5801629,32.8899837],[-83.580427,32.8900999],[-83.58059970000001,32.8901677],[-83.5807666,32.8902068],[-83.58091440000001,32.8902245],[-83.5814454,32.8902413],[-83.58160690000001,32.8902808],[-83.58176950000001,32.8903599],[-83.581899,32.8904645],[-83.5821367,32.890675900000005],[-83.5823529,32.890790200000005],[-83.58258040000001,32.890863],[-83.5828798,32.8909242],[-83.58299260000001,32.8909327],[-83.5832972,32.8909244],[-83.58347180000001,32.890928],[-83.58365880000001,32.8909581],[-83.5841494,32.8910987],[-83.58447220000001,32.8911849],[-83.584925,32.8912738],[-83.5852991,32.8913378],[-83.58569100000001,32.891369000000005],[-83.5862992,32.8914202],[-83.58652550000001,32.8914155],[-83.58666790000001,32.8914026]]},"id":"8844c0a161fffff-17d7c2e2ea44ac17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58084170000001,32.8704733]},"id":"8f44c0b89470240-17dfd655fdc8b464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5821203,32.874926]},"id":"8f44c0b897a9765-13bfc336d0ff3f32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89470240-17dfd655fdc8b464","8f44c0b897a9765-13bfc336d0ff3f32"]},"geometry":{"type":"LineString","coordinates":[[-83.58084170000001,32.8704733],[-83.58091920000001,32.8707799],[-83.5809839,32.8710858],[-83.58127680000001,32.8716677],[-83.58138380000001,32.8725339],[-83.5815431,32.874143700000005],[-83.581787,32.874602],[-83.5821203,32.874926]]},"id":"8744c0b89ffffff-17f7c4febdfdb7de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5318481,32.8819073]},"id":"8f44c0aa44e3b49-13bffdf2f1844d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53114980000001,32.882472]},"id":"8f44c0aa44c0ae0-179fffa76e7094bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa44e3b49-13bffdf2f1844d48","8f44c0aa44c0ae0-179fffa76e7094bc"]},"geometry":{"type":"LineString","coordinates":[[-83.5318481,32.8819073],[-83.5312995,32.882344700000004],[-83.53114980000001,32.882472]]},"id":"8944c0aa44fffff-13f7fece2f3b7022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.583399,32.871438000000005]},"id":"8f44c0b8909e699-13bfc017ae685fe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5835199,32.8740132]},"id":"8f44c0b8970350e-17f77fcc100fcbf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8970350e-17f77fcc100fcbf4","8f44c0b8909e699-13bfc017ae685fe6"]},"geometry":{"type":"LineString","coordinates":[[-83.583399,32.871438000000005],[-83.58342760000001,32.871830100000004],[-83.583399,32.872038],[-83.583274,32.872329],[-83.5829161,32.873216400000004],[-83.5829851,32.873476000000004],[-83.5832211,32.8737238],[-83.5835199,32.8740132]]},"id":"8744c0b89ffffff-17ffc08af5943a18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5844143,32.8972807]},"id":"8f44c0a16388833-13d77d9d1f2dc981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58491160000001,32.896906800000004]},"id":"8f44c0a163ab01c-17d7fc664961dabd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16388833-13d77d9d1f2dc981","8f44c0a163ab01c-17d7fc664961dabd"]},"geometry":{"type":"LineString","coordinates":[[-83.5844143,32.8972807],[-83.58491160000001,32.896906800000004]]},"id":"8944c0a163bffff-13dffd01a79d17e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5547494,32.8888679]},"id":"8f44c0aa5c01116-17b7f609a42d8ec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5597461,32.8872756]},"id":"8f44c0aa5993981-13d7f9d6b247bda1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5993981-13d7f9d6b247bda1","8f44c0aa5c01116-17b7f609a42d8ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.5547494,32.8888679],[-83.5547605,32.888791000000005],[-83.5547997,32.888722900000005],[-83.55500640000001,32.888537500000005],[-83.55632530000001,32.8874136],[-83.55787330000001,32.8862346],[-83.5579617,32.8862296],[-83.55804660000001,32.886245100000004],[-83.55813210000001,32.8862864],[-83.5597461,32.8872756]]},"id":"8744c0aa5ffffff-13bff03220f79e58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6076146,32.920544]},"id":"8f44c0a11434824-139f44f8ed7ca76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6108985,32.9205861]},"id":"8f44c0a11570265-13b77cf47b6362ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a11434824-139f44f8ed7ca76a","8f44c0a11570265-13b77cf47b6362ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6076146,32.920544],[-83.60842140000001,32.920554700000004],[-83.6094016,32.920578],[-83.6105189,32.9205872],[-83.6108985,32.9205861]]},"id":"8844c0a115fffff-139f40f6b1c5355c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5468685,32.9093687]},"id":"8f44c0aa1c16068-17d7f9473eccf8c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54834340000001,32.9115686]},"id":"8f44c0aa1ce46e2-13b7f5ad602158cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1ce46e2-13b7f5ad602158cd","8f44c0aa1c16068-17d7f9473eccf8c6"]},"geometry":{"type":"LineString","coordinates":[[-83.5468685,32.9093687],[-83.54702040000001,32.9099835],[-83.5471304,32.9104174],[-83.5472191,32.910751000000005],[-83.5473406,32.911259300000005],[-83.5473869,32.911393700000005],[-83.5474428,32.9114585],[-83.5475277,32.9115071],[-83.5476742,32.9115346],[-83.54813320000001,32.911503800000006],[-83.54834340000001,32.9115686]]},"id":"8844c0aa1dfffff-13b7f813fcccc90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6724956,32.92719]},"id":"8f44c0a01431a89-13d7e6924edd9d8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6715216,32.928306500000005]},"id":"8f44c0a014116c1-17ffb8f30d9e29d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01431a89-13d7e6924edd9d8c","8f44c0a014116c1-17ffb8f30d9e29d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6724956,32.92719],[-83.6716825,32.927376200000005],[-83.6715741,32.927396800000004],[-83.671441,32.9275375],[-83.6713917,32.927669900000005],[-83.6715216,32.928306500000005]]},"id":"8944c0a0143ffff-13b6e86935fb7466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5420028,32.8730149]},"id":"8f44c0aa48b0576-1797f5284f97fcb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54291380000001,32.8712201]},"id":"8f44c0aa4982404-13b7f2eee634cd69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4982404-13b7f2eee634cd69","8f44c0aa48b0576-1797f5284f97fcb9"]},"geometry":{"type":"LineString","coordinates":[[-83.5420028,32.8730149],[-83.54193020000001,32.8729633],[-83.541815,32.8728586],[-83.54173300000001,32.872634000000005],[-83.5417508,32.8723465],[-83.54183280000001,32.8721819],[-83.5419743,32.872023],[-83.54291380000001,32.8712201]]},"id":"8844c0aa49fffff-13bff4d1ffe92695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57750750000001,32.875460100000005]},"id":"8f44c0b8bb4115b-13ff9e79db6da415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5759776,32.8741445]},"id":"8f44c0b8bb720a1-13d7d236004ef849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb720a1-13d7d236004ef849","8f44c0b8bb4115b-13ff9e79db6da415"]},"geometry":{"type":"LineString","coordinates":[[-83.57750750000001,32.875460100000005],[-83.5773501,32.8754009],[-83.57723060000001,32.8753357],[-83.5770634,32.8752116],[-83.5767174,32.874846000000005],[-83.5759776,32.8741445]]},"id":"8944c0b8bb7ffff-13ff90689280d48b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5414793,32.8963106]},"id":"8f44c0aa085402c-17f7e66f708a1436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5430979,32.897590900000004]},"id":"8f44c0aa084eb0c-1397f27bddd14c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa085402c-17f7e66f708a1436","8f44c0aa084eb0c-1397f27bddd14c3e"]},"geometry":{"type":"LineString","coordinates":[[-83.5414793,32.8963106],[-83.5430979,32.897590900000004]]},"id":"8944c0aa087ffff-17f7e475ad32c273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461282,32.9131318]},"id":"8f44c0a028e5396-17f7e6f1ef002f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6380185,32.9143127]},"id":"8f44c0a021b5ce9-13d7fabe7b82eb3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a021b5ce9-13d7fabe7b82eb3a","8f44c0a028e5396-17f7e6f1ef002f72"]},"geometry":{"type":"LineString","coordinates":[[-83.6461282,32.9131318],[-83.6458437,32.9130942],[-83.6456678,32.9131157],[-83.6454408,32.9131613],[-83.64525110000001,32.9132267],[-83.644948,32.913369700000004],[-83.6448252,32.913412300000005],[-83.6446088,32.9134448],[-83.6442052,32.9134709],[-83.6437197,32.913516800000004],[-83.64347330000001,32.913558200000004],[-83.6429603,32.9137245],[-83.642319,32.9139545],[-83.6421218,32.9139806],[-83.64192990000001,32.9139763],[-83.6416056,32.9139567],[-83.6413955,32.9139458],[-83.641266,32.9139661],[-83.6410635,32.9140242],[-83.64076440000001,32.914135200000004],[-83.64022170000001,32.9144864],[-83.6401244,32.9145185],[-83.63995840000001,32.9145272],[-83.6396783,32.9145163],[-83.6393517,32.914530400000004],[-83.6389649,32.9145751],[-83.63876,32.914577300000005],[-83.6386166,32.914538300000004],[-83.6384695,32.9144859],[-83.6382308,32.914363900000005],[-83.6381604,32.914331100000005],[-83.6380185,32.9143127]]},"id":"8744c0a02ffffff-13def0e386d050e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa44e3b49-13bffdf2f1844d48","8f44c0aa445b088-17bffa198ece4347"]},"geometry":{"type":"LineString","coordinates":[[-83.5334248,32.8831155],[-83.5336175,32.8829727],[-83.53407630000001,32.882569000000004],[-83.5342124,32.882436000000006],[-83.53428310000001,32.8822806],[-83.53429100000001,32.8821134],[-83.5342292,32.8819819],[-83.53376610000001,32.8813182],[-83.53344530000001,32.8808391],[-83.5333664,32.880783300000004],[-83.53330100000001,32.8807956],[-83.5331779,32.880881],[-83.53231260000001,32.8815498],[-83.5318481,32.8819073]]},"id":"8844c0aa45fffff-13dffa2fc3e9cbd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53405910000001,32.9140406]},"id":"8f44c0aa391b529-13bff88d1117eefc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5336709,32.913319200000004]},"id":"8f44c0aa39ad94d-17fff97fbc445e6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa391b529-13bff88d1117eefc","8f44c0aa39ad94d-17fff97fbc445e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.53405910000001,32.9140406],[-83.5336709,32.913319200000004]]},"id":"8944c0aa393ffff-13dff9066cfaadf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54010720000001,32.868191100000004]},"id":"8f44c0b8a6f3484-13bff9c9030ea715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53661530000001,32.8664292]},"id":"8f44c0b8a692c9c-17fff24f799e82b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a692c9c-17fff24f799e82b8","8f44c0b8a6f3484-13bff9c9030ea715"]},"geometry":{"type":"LineString","coordinates":[[-83.54010720000001,32.868191100000004],[-83.5394421,32.8683136],[-83.5392697,32.8683282],[-83.5391139,32.8683217],[-83.53893740000001,32.8682977],[-83.5385559,32.8682127],[-83.53771470000001,32.8679951],[-83.5367413,32.8677538],[-83.5364454,32.8676636],[-83.53639890000001,32.867615300000004],[-83.53638190000001,32.8675413],[-83.53644840000001,32.8671991],[-83.53661530000001,32.8664292]]},"id":"8544c0bbfffffff-13d7ff61f57fffb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575619,32.8814633]},"id":"8f44c0a16d81551-13b7931628623667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57636260000001,32.882637]},"id":"8f44c0a16d890e8-1797b1456a934b6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d890e8-1797b1456a934b6d","8f44c0a16d81551-13b7931628623667"]},"geometry":{"type":"LineString","coordinates":[[-83.575619,32.8814633],[-83.5757839,32.8817376],[-83.5759178,32.881932],[-83.5760128,32.8820828],[-83.5761009,32.882209800000005],[-83.5762287,32.8824136],[-83.576316,32.8825485],[-83.57636260000001,32.882637]]},"id":"8844c0a16dfffff-1397f22ce7f40123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5395924,32.8667613]},"id":"8f44c0b8a6aab1a-17bffb0aceb5b523"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a692c9c-17fff24f799e82b8","8f44c0b8a6aab1a-17bffb0aceb5b523"]},"geometry":{"type":"LineString","coordinates":[[-83.5395924,32.8667613],[-83.5388781,32.8668728],[-83.5386661,32.8668861],[-83.538452,32.8668697],[-83.53818840000001,32.8668173],[-83.53743460000001,32.866632100000004],[-83.53678260000001,32.8664611],[-83.53661530000001,32.8664292]]},"id":"8544c0bbfffffff-17b7eeb176ec38eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5382852,32.9041494]},"id":"8f44c0aa004cd4a-1397ee3bced61ad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5370822,32.9051272]},"id":"8f44c0aa00596d4-13fff12badadb296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa00596d4-13fff12badadb296","8f44c0aa004cd4a-1397ee3bced61ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.5382852,32.9041494],[-83.5380927,32.904209],[-83.53797150000001,32.904256100000005],[-83.5378522,32.904316800000004],[-83.5377543,32.904376400000004],[-83.5376701,32.9044486],[-83.53755190000001,32.9045779],[-83.5370822,32.9051272]]},"id":"8944c0aa007ffff-139fffd47bf85aff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567587,32.8792473]},"id":"8f44c0b8b3a5b03-17bfb6b2282ea3c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5735243,32.874610600000004]},"id":"8f44c0b8ba35564-13f7b833583876d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8ba35564-13f7b833583876d8","8f44c0b8b3a5b03-17bfb6b2282ea3c0"]},"geometry":{"type":"LineString","coordinates":[[-83.567587,32.8792473],[-83.5703711,32.876961],[-83.5735243,32.874610600000004]]},"id":"8744c0b8bffffff-17ffff83c989a023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56827340000001,32.8851353]},"id":"8f44c0b8b2e3409-139fb50521d32466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5685754,32.885364]},"id":"8f44c0b8b2ee5a4-13bfa4486a807f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2e3409-139fb50521d32466","8f44c0b8b2ee5a4-13bfa4486a807f94"]},"geometry":{"type":"LineString","coordinates":[[-83.56827340000001,32.8851353],[-83.5685754,32.885364]]},"id":"8944c0b8b2fffff-13f7b4a6cfc5e5e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5829703,32.8743886]},"id":"8f44c0b89718da0-13dfe12393cdef93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58307640000001,32.8760862]},"id":"8f44c0b89604d48-1797e0e145c279f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89604d48-1797e0e145c279f8","8f44c0b89718da0-13dfe12393cdef93"]},"geometry":{"type":"LineString","coordinates":[[-83.5829703,32.8743886],[-83.5830447,32.875022],[-83.58307640000001,32.8760862]]},"id":"8844c0b897fffff-13ff90f79feade3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6351547,32.8917372]},"id":"8f44c0a33258272-13b7c1bc51237d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62874210000001,32.895223300000005]},"id":"8f44c0a158052d9-13bf916437233adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a158052d9-13bf916437233adb","8f44c0a33258272-13b7c1bc51237d65"]},"geometry":{"type":"LineString","coordinates":[[-83.6351547,32.8917372],[-83.63473470000001,32.892333],[-83.6338776,32.892801],[-83.6330205,32.8929883],[-83.63176630000001,32.8931404],[-83.6314109,32.893146200000004],[-83.6305032,32.893541500000005],[-83.6298361,32.8939244],[-83.6293065,32.8943925],[-83.6290627,32.894726],[-83.62874210000001,32.895223300000005]]},"id":"8544c0a3fffffff-179789cc4315c5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876979,32.915393800000004]},"id":"8f44c0a05295d25-17ffa174d6d4db4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68710370000001,32.9158824]},"id":"8f44c0a052906a3-17be82e8348c55d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05295d25-17ffa174d6d4db4f","8f44c0a052906a3-17be82e8348c55d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6876979,32.915393800000004],[-83.6876352,32.9155591],[-83.6874871,32.9156615],[-83.68710370000001,32.9158824]]},"id":"8a44c0a05297fff-17b7e217a8328aea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55408050000001,32.889543700000004]},"id":"8f44c0aa5c1d706-17dfd7abba779f34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa5c1d706-17dfd7abba779f34","8f44c0aa5c01116-17b7f609a42d8ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.5547494,32.8888679],[-83.5546375,32.8889754],[-83.554429,32.8891834],[-83.5542789,32.8893246],[-83.55408050000001,32.889543700000004]]},"id":"8944c0aa5c3ffff-1797d6dd56c5dc44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5736995,32.8701159]},"id":"8f44c0b8b86c865-17fff7c5dc868b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57452640000001,32.8695036]},"id":"8f44c0b89495ceb-17ffd5c10600f675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b86c865-17fff7c5dc868b3c","8f44c0b89495ceb-17ffd5c10600f675"]},"geometry":{"type":"LineString","coordinates":[[-83.5736995,32.8701159],[-83.5741802,32.8697467],[-83.57452640000001,32.8695036]]},"id":"8a44c0b89497fff-17bff6c56a94a31a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68668170000001,32.913794100000004]},"id":"8f44c0a0576a4a9-1397d3effda96c26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837445,32.9157917]},"id":"8f44c0a05609332-17f7db1bb1052300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05609332-17f7db1bb1052300","8f44c0a0576a4a9-1397d3effda96c26"]},"geometry":{"type":"LineString","coordinates":[[-83.68668170000001,32.913794100000004],[-83.68621470000001,32.9136771],[-83.6855352,32.913451800000004],[-83.6853854,32.913419600000005],[-83.68529480000001,32.913443],[-83.68426330000001,32.9143587],[-83.68374060000001,32.9148677],[-83.68365,32.9149964],[-83.6835873,32.915125100000004],[-83.6835977,32.915262600000005],[-83.6836535,32.915499600000004],[-83.6837445,32.9157917]]},"id":"8844c0a057fffff-13b6f88bf6031963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5659021,32.877867200000004]},"id":"8f44c0b8b05ec42-13dfaacf3b846c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56874970000001,32.8738869]},"id":"8f44c0b8b16ed11-17b7f3db70d4c411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b16ed11-17b7f3db70d4c411","8f44c0b8b05ec42-13dfaacf3b846c66"]},"geometry":{"type":"LineString","coordinates":[[-83.5659021,32.877867200000004],[-83.5693981,32.8748006],[-83.56874970000001,32.8738869]]},"id":"8744c0b8bffffff-17bfb5ddf18c09a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633308,32.911369]},"id":"8f44c0a02c81489-13b7a63e8552a941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638636,32.909513000000004]},"id":"8f44c0a02d503a0-179ff93c8c51bab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a02c81489-13b7a63e8552a941","8f44c0a02d503a0-179ff93c8c51bab6"]},"geometry":{"type":"LineString","coordinates":[[-83.633308,32.911369],[-83.63380400000001,32.911529],[-83.634316,32.911321],[-83.6358419,32.9104234],[-83.636195,32.910299],[-83.63663600000001,32.909865],[-83.636972,32.909593],[-83.6375,32.909481],[-83.638636,32.909513000000004]]},"id":"8844c0a02dfffff-13d7ffd091b83d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5725575,32.8735219]},"id":"8f44c0b8bba8d6a-17bfba8f908295f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5717541,32.871156500000005]},"id":"8f44c0b8b85ca69-13ffdc85bfb6b6c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b85ca69-13ffdc85bfb6b6c3","8f44c0b8bba8d6a-17bfba8f908295f7"]},"geometry":{"type":"LineString","coordinates":[[-83.5725575,32.8735219],[-83.5717248,32.8718401],[-83.57172700000001,32.8713993],[-83.5717893,32.8711974],[-83.5717541,32.871156500000005]]},"id":"8744c0b8bffffff-13f79bd8807f6ebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7581301,32.9242906]},"id":"8f44c0a2d25bc9a-13b5f580b5c5c296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7635285,32.9239869]},"id":"8f44c0b5acd6864-13f7d852b6c85505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d25bc9a-13b5f580b5c5c296","8f44c0b5acd6864-13f7d852b6c85505"]},"geometry":{"type":"LineString","coordinates":[[-83.7581301,32.9242906],[-83.7586958,32.924350000000004],[-83.7588649,32.9243965],[-83.7592762,32.9246247],[-83.7594923,32.924899700000005],[-83.75970140000001,32.9252216],[-83.7597642,32.925707200000005],[-83.75975720000001,32.9261226],[-83.7597224,32.9264971],[-83.7600221,32.926871600000005],[-83.76044730000001,32.927181700000006],[-83.76078190000001,32.927368900000005],[-83.7611444,32.9274274],[-83.76169510000001,32.927480100000004],[-83.7621761,32.9273572],[-83.76255950000001,32.9271173],[-83.7628662,32.926842300000004],[-83.7630893,32.9265673],[-83.7631939,32.9260875],[-83.7631939,32.9253093],[-83.76324960000001,32.9247652],[-83.7633402,32.924326300000004],[-83.7635285,32.9239869]]},"id":"8744c0b5affffff-17dfedfbade7cf86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5320849,32.7445514]},"id":"8f44c0bb5099318-13f7fd5ef4c20246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5271166,32.750925800000005]},"id":"8f44c0bb569d388-13f8a980288df969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bb5099318-13f7fd5ef4c20246","8f44c0bb569d388-13f8a980288df969"]},"geometry":{"type":"LineString","coordinates":[[-83.5320849,32.7445514],[-83.53146500000001,32.745093000000004],[-83.53012000000001,32.746191],[-83.529144,32.747035000000004],[-83.52792500000001,32.748144],[-83.52748600000001,32.748554],[-83.527185,32.748793],[-83.526931,32.748953],[-83.52683400000001,32.749061000000005],[-83.52679,32.749273],[-83.526836,32.749723],[-83.5268873,32.7504847],[-83.52695220000001,32.750673],[-83.5271166,32.750925800000005]]},"id":"8744c0bb5ffffff-139d552b12d8e095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5344305,32.7466817]},"id":"8f44c0bb50d9191-1397f7a4fc4365e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.532624,32.752191]},"id":"8f44c0bb565c21a-1797fc0e0b6ff720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bb50d9191-1397f7a4fc4365e3","8f44c0bb565c21a-1797fc0e0b6ff720"]},"geometry":{"type":"LineString","coordinates":[[-83.5344305,32.7466817],[-83.533679,32.747330000000005],[-83.532921,32.747952000000005],[-83.53148800000001,32.749171000000004],[-83.531064,32.74949],[-83.530861,32.74967],[-83.53055900000001,32.749915],[-83.530471,32.750058],[-83.530377,32.750243000000005],[-83.53034000000001,32.750413],[-83.530321,32.750618],[-83.530353,32.750864],[-83.530544,32.751444],[-83.53064300000001,32.75171],[-83.530741,32.751912000000004],[-83.53083600000001,32.752051],[-83.53094800000001,32.752162000000006],[-83.531101,32.752271],[-83.53137100000001,32.752386],[-83.53159000000001,32.752452000000005],[-83.53189900000001,32.752481],[-83.532156,32.752447000000004],[-83.53230500000001,32.752402000000004],[-83.532624,32.752191]]},"id":"8844c0bb57fffff-13d7fdf81d92a6ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655876,32.8258151]},"id":"8f44c0b1bc94aab-13d6ff2581d59783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6546251,32.830057000000004]},"id":"8f44c0b1b5adb96-17b7f2335e293f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bc94aab-13d6ff2581d59783","8f44c0b1b5adb96-17b7f2335e293f7a"]},"geometry":{"type":"LineString","coordinates":[[-83.655876,32.8258151],[-83.6560278,32.8258419],[-83.65612390000001,32.8258704],[-83.6561963,32.8259047],[-83.65626130000001,32.825954200000005],[-83.6563089,32.8260067],[-83.6563423,32.826062],[-83.65636140000001,32.826123100000004],[-83.65636880000001,32.826194300000004],[-83.6563708,32.826264300000005],[-83.6563582,32.826607700000004],[-83.65633890000001,32.8267934],[-83.6563004,32.8270489],[-83.656239,32.82732],[-83.6561636,32.827573300000005],[-83.6561034,32.8277388],[-83.6560353,32.827902],[-83.65593170000001,32.828124],[-83.6558107,32.828344900000005],[-83.6557027,32.828522],[-83.6555747,32.8286947],[-83.6552836,32.8290695],[-83.65493830000001,32.8295195],[-83.654767,32.8297843],[-83.6546251,32.830057000000004]]},"id":"8744c0b1bffffff-17deff6313f048a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63400610000001,32.8534893]},"id":"8f44c0a30c639b1-17d7d48a31e41a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6334047,32.853172]},"id":"8f44c0a30c75345-179786021f8c3820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"construction","surface":"paved","flags":["isBridge"],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a30c75345-179786021f8c3820","8f44c0a30c639b1-17d7d48a31e41a74"]},"geometry":{"type":"LineString","coordinates":[[-83.63400610000001,32.8534893],[-83.633829,32.853402100000004],[-83.63369270000001,32.8533318],[-83.6334047,32.853172]]},"id":"8944c0a30c7ffff-17f7d5474b30eac6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62661820000001,32.8471581]},"id":"8f44c0a36aee40c-17f7d693a8994be0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62415200000001,32.8434663]},"id":"8f44c0a36b8a6dc-17df7c990d48576a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b8a6dc-17df7c990d48576a","8f44c0a36aee40c-17f7d693a8994be0"]},"geometry":{"type":"LineString","coordinates":[[-83.62661820000001,32.8471581],[-83.62555060000001,32.8454296],[-83.62542350000001,32.8452393],[-83.6249954,32.8445981],[-83.62438560000001,32.8437694],[-83.62415200000001,32.8434663]]},"id":"8844c0a36bfffff-13d7397eec4a4868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6220737,32.8417467]},"id":"8f44c0a36165066-13bfb1abf37ad9e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36165066-13bfb1abf37ad9e0","8f44c0a36aa472a-179fdcba6ea67979"]},"geometry":{"type":"LineString","coordinates":[[-83.6220737,32.8417467],[-83.6223325,32.8419735],[-83.62243880000001,32.842063800000005],[-83.6229749,32.8425589],[-83.6233395,32.8429231],[-83.62376590000001,32.8433885],[-83.62409860000001,32.8437661]]},"id":"8744c0a36ffffff-13979f2200827e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62009450000001,32.8480969]},"id":"8f44c0a363a1ce2-13bfb680f448164f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a363a1ce2-13bfb680f448164f","8f44c0a363b14d3-13dfba0b097b6e19"]},"geometry":{"type":"LineString","coordinates":[[-83.62009450000001,32.8480969],[-83.62003200000001,32.848094],[-83.61953770000001,32.8480992],[-83.6191572,32.8481272],[-83.6189623,32.8481351],[-83.6186448,32.8481419]]},"id":"8944c0a363bffff-13b7b8460217a57e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62818750000001,32.8492808]},"id":"8f44c0a30d86b04-139792bed49b39dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36ac8d9e-139f376e80104741","8f44c0a30d86b04-139792bed49b39dd"]},"geometry":{"type":"LineString","coordinates":[[-83.62626800000001,32.848269],[-83.626603,32.848303],[-83.62675300000001,32.848343],[-83.626929,32.848419],[-83.62710700000001,32.848529],[-83.62818750000001,32.8492808]]},"id":"8744c0a36ffffff-139f34ff751f34df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36aec559-179f554bec1378f3","8f44c0a36ac8d9e-139f376e80104741"]},"geometry":{"type":"LineString","coordinates":[[-83.62626800000001,32.848269],[-83.6266403,32.847748100000004],[-83.6268519,32.8474512],[-83.62701630000001,32.8472689],[-83.6271426,32.8470485]]},"id":"8944c0a36afffff-179f965b065e4153"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575281,32.838572]},"id":"8f44c0b8c7458e2-13ff93e968a27fdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5747695,32.8413125]},"id":"8f44c0b8c661683-139fd529149d8a9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c7458e2-13ff93e968a27fdb","8f44c0b8c661683-139fd529149d8a9d"]},"geometry":{"type":"LineString","coordinates":[[-83.575281,32.838572],[-83.5752619,32.8386556],[-83.57516100000001,32.839098],[-83.575135,32.839215],[-83.5749231,32.8401015],[-83.574894,32.840223],[-83.57483900000001,32.840455],[-83.57478,32.840736],[-83.574763,32.840877],[-83.5747695,32.8413125]]},"id":"8844c0b8c7fffff-17d7d4a86a5e2540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621109,32.837702]},"id":"8f44c0a368ad268-17dfe406e92a9b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621261,32.837795]},"id":"8f44c0a3681a18e-1797e3a7eee9a7df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a368ad268-17dfe406e92a9b8c","8f44c0a3681a18e-1797e3a7eee9a7df"]},"geometry":{"type":"LineString","coordinates":[[-83.621109,32.837702],[-83.621261,32.837795]]},"id":"8b44c0a3681afff-17fff3d76091ecc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76080350000001,32.7981524]},"id":"8f44c0b2b628335-17bdcef9d4aa07a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.78119140000001,32.7983835]},"id":"8f44c0b76d44470-17ddbd336ba2a54e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b628335-17bdcef9d4aa07a8","8f44c0b76d44470-17ddbd336ba2a54e"]},"geometry":{"type":"LineString","coordinates":[[-83.76080350000001,32.7981524],[-83.76230500000001,32.797911],[-83.763312,32.797766],[-83.76379100000001,32.797697],[-83.76437100000001,32.797606],[-83.765861,32.79739],[-83.766506,32.797314],[-83.766829,32.797283],[-83.767216,32.797254],[-83.767491,32.797238],[-83.768141,32.797207],[-83.768467,32.797203],[-83.769255,32.797209],[-83.769715,32.797221],[-83.770365,32.79726],[-83.770915,32.797305],[-83.780162,32.798273],[-83.78119140000001,32.7983835]]},"id":"8544c0b3fffffff-1795b61c9a3ebb6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640085,32.8137526]},"id":"8f44c0b1a529563-17d7f5b2e5ccee49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64010040000001,32.8134882]},"id":"8f44c0b1a528b4c-17bef5a94fd3766c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529563-17d7f5b2e5ccee49","8f44c0b1a528b4c-17bef5a94fd3766c"]},"geometry":{"type":"LineString","coordinates":[[-83.640085,32.8137526],[-83.64009250000001,32.813650200000005],[-83.64010040000001,32.8134882]]},"id":"8a44c0b1a52ffff-1796f5ad93c802d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c76ea84-13f7d2aaae8b0ec0","8f44c0b8c745931-139ff3d885daa528"]},"geometry":{"type":"LineString","coordinates":[[-83.57579100000001,32.838582],[-83.5753837,32.8384682],[-83.575308,32.838447]]},"id":"8944c0b8c77ffff-13d793419a7607c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c7458e2-13ff93e968a27fdb","8f44c0b8c744090-13f7d53a401bf8c8"]},"geometry":{"type":"LineString","coordinates":[[-83.574742,32.838350000000005],[-83.574906,32.838433],[-83.5751982,32.838548200000005],[-83.575281,32.838572]]},"id":"8a44c0b8c747fff-13bf949404a13dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62679800000001,32.839212]},"id":"8f44c0a3686d296-13ff96234381cca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627336,32.838582]},"id":"8f44c0a34491705-13f7d4d305b08fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3686d296-13ff96234381cca9","8f44c0a34491705-13f7d4d305b08fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.62679800000001,32.839212],[-83.6268491,32.8391522],[-83.627336,32.838582]]},"id":"8744c0a36ffffff-13b7b57b243439cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6210125,32.848202]},"id":"8f44c0a363106d1-13ff644339171c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6208871,32.8481976]},"id":"8f44c0a36313db4-13ffa4919a3a42b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36313db4-13ffa4919a3a42b1","8f44c0a363106d1-13ff644339171c80"]},"geometry":{"type":"LineString","coordinates":[[-83.6210125,32.848202],[-83.6208871,32.8481976]]},"id":"8a44c0a36317fff-13ffe46a6851ad82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bcac955-13dfc8adf43894d2","8f44c0b1bca3725-13d7fb42f5fba823"]},"geometry":{"type":"LineString","coordinates":[[-83.65746730000001,32.825838700000006],[-83.658102,32.825845],[-83.6584017,32.8258456],[-83.6584315,32.8258457],[-83.6585249,32.8258456]]},"id":"8944c0b1bcbffff-13ded9f87858ac35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655567,32.825715]},"id":"8f44c0b1bc9450e-1397efe6af1645d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bcb1296-139ffd32424b3a0f","8f44c0b1bc9450e-1397efe6af1645d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6566748,32.825724300000005],[-83.655567,32.825715]]},"id":"8944c0b1bcbffff-139ede8c7bfff3c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7255038,32.8096604]},"id":"8f44c0b0e348743-13d7e5282f1efdc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72492340000001,32.809974700000005]},"id":"8f44c0b0e264c4c-139e3692edc36f4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e264c4c-139e3692edc36f4d","8f44c0b0e348743-13d7e5282f1efdc0"]},"geometry":{"type":"LineString","coordinates":[[-83.7255038,32.8096604],[-83.7250609,32.809900400000004],[-83.72492340000001,32.809974700000005]]},"id":"8944c0b0e37ffff-13be25dd8137cc47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631422,32.842022]},"id":"8f44c0a344cb8d5-13d7cad94beeece1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6319996,32.84141]},"id":"8f44c0a344cd8a6-13df497047455ca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a344cb8d5-13d7cad94beeece1","8f44c0a344cd8a6-13df497047455ca2"]},"geometry":{"type":"LineString","coordinates":[[-83.631422,32.842022],[-83.6319996,32.84141]]},"id":"8a44c0a344cffff-139f8a24c552b9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622192,32.836419]},"id":"8f44c0a36806153-17bfe1620a5a2fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6223763,32.8365373]},"id":"8f44c0a36800da2-17f7f0eed5e07e2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36800da2-17f7f0eed5e07e2b","8f44c0a36806153-17bfe1620a5a2fba"]},"geometry":{"type":"LineString","coordinates":[[-83.622192,32.836419],[-83.6223763,32.8365373]]},"id":"8b44c0a36806fff-17dfe12871cfa83e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269208,32.8091761]},"id":"8f44c0b08cb419c-13b731b28d957211"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7282802,32.8084387]},"id":"8f44c0b08d8e4b1-17de3e60eb46e9d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d8e4b1-17de3e60eb46e9d2","8f44c0b08cb419c-13b731b28d957211"]},"geometry":{"type":"LineString","coordinates":[[-83.7269208,32.8091761],[-83.727337,32.808956],[-83.72820920000001,32.8084754],[-83.7282802,32.8084387]]},"id":"8844c0b08dfffff-13d7a0092caa1521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56999920000001,32.864778]},"id":"8f44c0b8b906c08-13f7e0ce8f430c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56912480000001,32.8651554]},"id":"8f44c0b8b91000b-13d7a2f10da03112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b906c08-13f7e0ce8f430c8b","8f44c0b8b91000b-13d7a2f10da03112"]},"geometry":{"type":"LineString","coordinates":[[-83.56999920000001,32.864778],[-83.56978720000001,32.8648486],[-83.56952530000001,32.8649529],[-83.5692776,32.8650678],[-83.56912480000001,32.8651554]]},"id":"8944c0b8b93ffff-13d7b1e436551e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160956,32.7438913]},"id":"8f44c0b04149aa2-13d63c204f2e48eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71535680000001,32.7483373]},"id":"8f44c0b0431e5b0-179efdee0597feec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0431e5b0-179efdee0597feec","8f44c0b04149aa2-13d63c204f2e48eb"]},"geometry":{"type":"LineString","coordinates":[[-83.7160956,32.7438913],[-83.71645210000001,32.7440397],[-83.7165634,32.744079400000004],[-83.7166577,32.7441222],[-83.7167312,32.7441635],[-83.716784,32.7441984],[-83.7168595,32.7442555],[-83.7169255,32.7443173],[-83.7169858,32.7443824],[-83.71704240000001,32.744452200000005],[-83.71708770000001,32.7445204],[-83.71713290000001,32.744598100000005],[-83.7171744,32.7446774],[-83.71721210000001,32.744793200000004],[-83.7172348,32.7449074],[-83.71723850000001,32.7450026],[-83.7172329,32.7450993],[-83.7172197,32.7451929],[-83.7171895,32.7452944],[-83.7171273,32.745434],[-83.7170349,32.7456101],[-83.71679350000001,32.746041500000004],[-83.716488,32.7466078],[-83.7161221,32.7472597],[-83.71590710000001,32.7476087],[-83.71569960000001,32.7479068],[-83.71535680000001,32.7483373]]},"id":"8744c0b04ffffff-17f63b18042e90cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7146752,32.7505523]},"id":"8f44c0b0421095e-13973f9803513d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7221349,32.738768]},"id":"8f44c0b2349d436-17d62d61bb8649ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b2349d436-17d62d61bb8649ef","8f44c0b0421095e-13973f9803513d46"]},"geometry":{"type":"LineString","coordinates":[[-83.7146752,32.7505523],[-83.7163464,32.748114900000004],[-83.718061,32.7456229],[-83.7192859,32.743839900000005],[-83.7199624,32.742848200000005],[-83.72036250000001,32.742263900000005],[-83.7208378,32.7415183],[-83.72122510000001,32.7408319],[-83.7215355,32.7402147],[-83.72170480000001,32.7398386],[-83.72186330000001,32.7394625],[-83.7221349,32.738768]]},"id":"8744c0b04ffffff-17f6b60accee70c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7195167,32.74483]},"id":"8f44c0b04aadaee-179ef3c6137fc8f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7198202,32.744602]},"id":"8f44c0b04a1e103-179673086287bc32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04aadaee-179ef3c6137fc8f1","8f44c0b04a1e103-179673086287bc32"]},"geometry":{"type":"LineString","coordinates":[[-83.7195167,32.74483],[-83.7195882,32.7447405],[-83.7196401,32.7446864],[-83.7196981,32.7446428],[-83.71975,32.7446132],[-83.7198202,32.744602]]},"id":"8a44c0b04a1ffff-17bf737051a9acdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7195516,32.7446166]},"id":"8f44c0b04a1e59b-179f73b046d088bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a1e59b-179f73b046d088bc","8f44c0b04aadaee-179ef3c6137fc8f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7195167,32.74483],[-83.7195315,32.7447249],[-83.7195516,32.7446166]]},"id":"8a44c0b04a1ffff-17dff3bbe3c0d192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72020640000001,32.744436400000005]},"id":"8f44c0b04a1cce1-139ef2170d1c6022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71958520000001,32.7444855]},"id":"8f44c0b04a13358-13b7739b45598e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a1cce1-139ef2170d1c6022","8f44c0b04a13358-13b7739b45598e88"]},"geometry":{"type":"LineString","coordinates":[[-83.72020640000001,32.744436400000005],[-83.7199731,32.744461300000005],[-83.7198355,32.7444724],[-83.71974850000001,32.7444815],[-83.7196593,32.7444851],[-83.71958520000001,32.7444855]]},"id":"8944c0b04a3ffff-13bf72d8f08dabe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7070408,32.760564800000004]},"id":"8f44c0b00122a09-13ff523b8785f1db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7131506,32.753955000000005]},"id":"8f44c0b042d2742-13d7e350e5b6d18b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b042d2742-13d7e350e5b6d18b","8f44c0b00122a09-13ff523b8785f1db"]},"geometry":{"type":"LineString","coordinates":[[-83.7070408,32.760564800000004],[-83.7087084,32.7586924],[-83.70972060000001,32.7575443],[-83.71035970000001,32.7568234],[-83.7106682,32.7564881],[-83.7109183,32.7562306],[-83.71122000000001,32.7559319],[-83.7117101,32.7554473],[-83.7121154,32.7550763],[-83.71241280000001,32.7548022],[-83.7126231,32.7545972],[-83.7127842,32.7544196],[-83.71292650000001,32.754241900000004],[-83.7131506,32.753955000000005]]},"id":"8644c0b07ffffff-13d6ead85deaf2d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71234790000001,32.751645]},"id":"8f44c0b042807ae-17b66546989b819c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70627130000001,32.7596116]},"id":"8f44c0b0089a2ab-13b7541c757ad73e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0089a2ab-13b7541c757ad73e","8f44c0b042807ae-17b66546989b819c"]},"geometry":{"type":"LineString","coordinates":[[-83.71234790000001,32.751645],[-83.71197120000001,32.7520162],[-83.7116797,32.7522649],[-83.71145290000001,32.7524522],[-83.7111532,32.752670200000004],[-83.71080090000001,32.752895],[-83.7104346,32.753101400000006],[-83.70962850000001,32.7535765],[-83.7090376,32.7539406],[-83.7088251,32.7541019],[-83.7086203,32.7542828],[-83.7084518,32.754455],[-83.7083326,32.7545923],[-83.7081953,32.7547841],[-83.7080579,32.7550021],[-83.7079516,32.7551939],[-83.70782200000001,32.7554838],[-83.7077546,32.7556974],[-83.707695,32.7559503],[-83.7076121,32.7563644],[-83.7075006,32.7569071],[-83.7074281,32.7572428],[-83.70731400000001,32.757602500000004],[-83.7072078,32.757927200000005],[-83.707003,32.7583283],[-83.706736,32.7587795],[-83.70627130000001,32.7596116]]},"id":"8644c0b07ffffff-17ff5dfadcafe668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71769850000001,32.7442561]},"id":"8f44c0b04a84128-13be38367123b1a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a84128-13be38367123b1a7","8f44c0b0431e5b0-179efdee0597feec"]},"geometry":{"type":"LineString","coordinates":[[-83.71769850000001,32.7442561],[-83.71755420000001,32.7441795],[-83.7174791,32.7441376],[-83.7173946,32.7440894],[-83.7173478,32.7440577],[-83.7172845,32.7440082],[-83.7172287,32.743946],[-83.7171804,32.7438749],[-83.7171321,32.7437861],[-83.7171034,32.7437163],[-83.7170883,32.7436529],[-83.7170748,32.7435564],[-83.7170763,32.7434853],[-83.71708530000001,32.7433914],[-83.71711400000001,32.7433001],[-83.7171502,32.7432214],[-83.7171924,32.7431605],[-83.7172453,32.743093200000004],[-83.7173116,32.7430323],[-83.71737800000001,32.7429803],[-83.7174595,32.742927],[-83.7175545,32.7428838],[-83.71761790000001,32.7428623],[-83.7176994,32.7428369],[-83.7177944,32.7428229],[-83.717894,32.742816600000005],[-83.7179981,32.7428179],[-83.7181097,32.742830600000005],[-83.7181912,32.7428496],[-83.7182757,32.742875000000005],[-83.7183572,32.742908],[-83.71842960000001,32.742947300000004],[-83.7185005,32.7430019],[-83.7185639,32.7430564],[-83.71862270000001,32.743122400000004],[-83.71867060000001,32.7431907],[-83.7187098,32.7432618],[-83.7187475,32.743360800000005],[-83.7187626,32.7434686],[-83.7187581,32.7435625],[-83.7187536,32.743624700000005],[-83.71874000000001,32.7437059],[-83.7186978,32.743797300000004],[-83.71865550000001,32.7438646],[-83.71841710000001,32.7442046],[-83.7180799,32.7446938],[-83.7174825,32.7455859],[-83.71718680000001,32.746013500000004],[-83.716876,32.746481700000004],[-83.7166227,32.7468483],[-83.7164388,32.7471061],[-83.7161866,32.7474312],[-83.71596260000001,32.7476969],[-83.71576230000001,32.747920900000004],[-83.71535680000001,32.7483373]]},"id":"8744c0b04ffffff-17fe78fdd54bfc22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7110021,32.758431200000004]},"id":"8f44c0b0080e0c2-17d7c88fbf6daa08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b042d2742-13d7e350e5b6d18b","8f44c0b0080e0c2-17d7c88fbf6daa08"]},"geometry":{"type":"LineString","coordinates":[[-83.7110021,32.758431200000004],[-83.7110509,32.7581982],[-83.7111548,32.7576628],[-83.7112153,32.757430400000004],[-83.7112802,32.757226700000004],[-83.7113628,32.7570021],[-83.71147690000001,32.7567536],[-83.7116053,32.7565073],[-83.71192810000001,32.755977],[-83.7122782,32.7554067],[-83.7125785,32.754916800000004],[-83.7128136,32.7545439],[-83.7131506,32.753955000000005]]},"id":"8644c0b07ffffff-13b7d64fb31ad212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7197313,32.744042900000004]},"id":"8f44c0b04a10341-13b6f33ff8d01bae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a10341-13b6f33ff8d01bae","8f44c0b04a1cce1-139ef2170d1c6022"]},"geometry":{"type":"LineString","coordinates":[[-83.72020640000001,32.744436400000005],[-83.72001320000001,32.744399300000005],[-83.7199635,32.7443906],[-83.71991580000001,32.7443784],[-83.71985980000001,32.7443505],[-83.71980590000001,32.7443104],[-83.7197685,32.744272],[-83.7197416,32.7442197],[-83.7197285,32.7441728],[-83.71972450000001,32.7441193],[-83.7197313,32.744042900000004]]},"id":"8944c0b04a3ffff-13d772d8e9f5ab36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b2349d436-17d62d61bb8649ef","8f44c0b04a10341-13b6f33ff8d01bae"]},"geometry":{"type":"LineString","coordinates":[[-83.7197313,32.744042900000004],[-83.7198766,32.7436488],[-83.7199442,32.743485],[-83.7200145,32.7433245],[-83.72014680000001,32.74306],[-83.72028440000001,32.742805600000004],[-83.7206611,32.7421841],[-83.72108890000001,32.741469200000004],[-83.72137710000001,32.740929],[-83.7216681,32.740321300000005],[-83.7218914,32.7397946],[-83.7220154,32.739389],[-83.7220819,32.7390819],[-83.7221349,32.738768]]},"id":"8744c0b04ffffff-17deb0151aa9402f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71700340000001,32.743090200000005]},"id":"8f44c0b04ab4c29-13df79e8e9847696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716244,32.7437934]},"id":"8f44c0b04ab24f5-1396fbc38fe5a25a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04ab24f5-1396fbc38fe5a25a","8f44c0b04ab4c29-13df79e8e9847696"]},"geometry":{"type":"LineString","coordinates":[[-83.71700340000001,32.743090200000005],[-83.71691820000001,32.7432109],[-83.71665700000001,32.7436348],[-83.716627,32.7436734],[-83.7165801,32.743718300000005],[-83.7165207,32.743754200000005],[-83.7164448,32.7437788],[-83.7163618,32.7437928],[-83.716244,32.7437934]]},"id":"8944c0b04abffff-13de7ab569b33f59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71667450000001,32.7439393]},"id":"8f44c0b04ab3ca0-13f63ab67ef55a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a84128-13be38367123b1a7","8f44c0b04ab3ca0-13f63ab67ef55a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.71769850000001,32.7442561],[-83.717629,32.7442408],[-83.7173951,32.7441758],[-83.717099,32.7440854],[-83.7168346,32.743996700000004],[-83.71667450000001,32.7439393]]},"id":"8944c0b04abffff-13def9783a4cfcde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64008150000001,32.813881]},"id":"8f44c0b1a529711-17b7f5b517b116bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640567,32.813889]},"id":"8f44c0b1acda6ee-17bef485ad5150b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529711-17b7f5b517b116bd","8f44c0b1acda6ee-17bef485ad5150b4"]},"geometry":{"type":"LineString","coordinates":[[-83.64008150000001,32.813881],[-83.640567,32.813889]]},"id":"8844c0b1a5fffff-17b6f51d5d3b0345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7321514,32.8325404]},"id":"8f44c0b0b8ac75e-13b7d4ed66071dff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318582,32.8327864]},"id":"8f44c0b0b8a8588-13df95a4a8f9720b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8a8588-13df95a4a8f9720b","8f44c0b0b8ac75e-13b7d4ed66071dff"]},"geometry":{"type":"LineString","coordinates":[[-83.7321514,32.8325404],[-83.73212810000001,32.8326109],[-83.7321137,32.8326417],[-83.73209530000001,32.8326725],[-83.7320761,32.8326955],[-83.73205700000001,32.832714],[-83.7320318,32.8327291],[-83.7320066,32.8327419],[-83.73197760000001,32.8327544],[-83.73194720000001,32.832765900000005],[-83.7319174,32.8327733],[-83.7318582,32.8327864]]},"id":"8a44c0b0b8affff-13973536ca8a5203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7532233,32.867738]},"id":"8f44c0b505aac84-13b5e17b7f109a07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7546885,32.8675082]},"id":"8f44c0b5051e574-1395fde7be097dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5051e574-1395fde7be097dbd","8f44c0b505aac84-13b5e17b7f109a07"]},"geometry":{"type":"LineString","coordinates":[[-83.7532233,32.867738],[-83.7535174,32.8675167],[-83.75354940000001,32.867504600000004],[-83.7535921,32.8674993],[-83.7545063,32.8675067],[-83.7546885,32.8675082]]},"id":"8844c0b505fffff-13b5ffc3907298b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7346624,32.8338739]},"id":"8f44c0b0b8e5b10-17f73ecc0e00c1c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349696,32.8336472]},"id":"8f44c0b0b856d68-17f78e0c0675570c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8e5b10-17f73ecc0e00c1c9","8f44c0b0b856d68-17f78e0c0675570c"]},"geometry":{"type":"LineString","coordinates":[[-83.7346624,32.8338739],[-83.7346813,32.833806100000004],[-83.7347077,32.8337547],[-83.7347422,32.8337145],[-83.7347934,32.8336786],[-83.7348608,32.833654],[-83.7349696,32.8336472]]},"id":"8844c0b0b9fffff-1796ce7fca411d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73205060000001,32.8329461]},"id":"8f44c0b0b8a8744-13bf552c6363ac46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8a9784-17feb4928d455b30","8f44c0b0b8a8744-13bf552c6363ac46"]},"geometry":{"type":"LineString","coordinates":[[-83.73205060000001,32.8329461],[-83.73213650000001,32.833019],[-83.73217120000001,32.8330574],[-83.7322006,32.833095900000004],[-83.7322968,32.833242600000005]]},"id":"8a44c0b0b8affff-1796d4d984ee2b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19599426-1397dec7a822327b","8f44c0b19436109-1396f994686dc6bd"]},"geometry":{"type":"LineString","coordinates":[[-83.677817,32.825735],[-83.677671,32.825781],[-83.677536,32.825823],[-83.67726300000001,32.825919],[-83.67723500000001,32.8259275],[-83.677124,32.825961],[-83.67697000000001,32.826002],[-83.67682,32.826034],[-83.6765,32.826082],[-83.676316,32.826099],[-83.67609900000001,32.826109],[-83.67589000000001,32.826107],[-83.67568700000001,32.826150000000005]]},"id":"8944c0b195bffff-13befc278618323c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677206,32.826507]},"id":"8f44c0b1958928b-13f6fb1240f536da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677942,32.825941]},"id":"8f44c0b1943634b-1397b9464e2704b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b1943634b-1397b9464e2704b9","8f44c0b1958928b-13f6fb1240f536da"]},"geometry":{"type":"LineString","coordinates":[[-83.677206,32.826507],[-83.677301,32.826464],[-83.67748830000001,32.826325700000005],[-83.677519,32.826303],[-83.677869,32.826034],[-83.677942,32.825941]]},"id":"8944c0b1943ffff-13d69a22b14fe382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66250600000001,32.873219]},"id":"8f44c0a31b00523-1797fef5cbea4907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6620484,32.8742333]},"id":"8f44c0a31b188c9-13ffd013c7a360da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b00523-1797fef5cbea4907","8f44c0a31b188c9-13ffd013c7a360da"]},"geometry":{"type":"LineString","coordinates":[[-83.66250600000001,32.873219],[-83.6620484,32.8742333]]},"id":"8944c0a31b3ffff-17beff84caf01761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7587177,32.7925847]},"id":"8f44c0b2b46e38b-13b5f411754954b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759146,32.793613]},"id":"8f44c0b2b7367ac-13bdf305cadfb4a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2b7367ac-13bdf305cadfb4a4","8f44c0b2b46e38b-13b5f411754954b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7587177,32.7925847],[-83.758826,32.792732],[-83.75892800000001,32.792997],[-83.759033,32.793346],[-83.759146,32.793613]]},"id":"8944c0b2b47ffff-13f5d3814bedaf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a52b589-179ff725759de853","8f44c0b1a529711-17b7f5b517b116bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6394921,32.8138716],[-83.6399123,32.8138783],[-83.64008150000001,32.813881]]},"id":"8a44c0b1a52ffff-17b6f66d470d6294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0421095e-13973f9803513d46","8f44c0b00122a09-13ff523b8785f1db"]},"geometry":{"type":"LineString","coordinates":[[-83.7070408,32.760564800000004],[-83.70799070000001,32.7592786],[-83.70888160000001,32.758121],[-83.71041460000001,32.756103200000005],[-83.71105440000001,32.755253800000006],[-83.7116982,32.7544011],[-83.7127639,32.7530096],[-83.7135506,32.751982600000005],[-83.71390170000001,32.7515364],[-83.7146752,32.7505523]]},"id":"8644c0b07ffffff-17b7f8f4c078f00e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659315,32.772184]},"id":"8f44c0b11103425-17d7c6c02e947b1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65955360000001,32.772660800000004]},"id":"8f44c0b1111da23-1397c62b0a19d6fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1111da23-1397c62b0a19d6fc","8f44c0b11103425-17d7c6c02e947b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.659315,32.772184],[-83.659351,32.772364],[-83.659451,32.772551],[-83.65955360000001,32.772660800000004]]},"id":"8944c0b1113ffff-17f6e68744494f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5688571,32.813138]},"id":"8f44c0b81b35982-13d7e3985cf75716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56892900000001,32.814498]},"id":"8f44c0b81b00031-17b7e36b6638156c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81b00031-17b7e36b6638156c","8f44c0b81b35982-13d7e3985cf75716"]},"geometry":{"type":"LineString","coordinates":[[-83.5688571,32.813138],[-83.568853,32.813716],[-83.56886700000001,32.814335],[-83.56892900000001,32.814498]]},"id":"8944c0b81b3ffff-17ffe394d8f97998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64710240000001,32.8389832]},"id":"8f44c0a34aa212a-13fee49106cb2e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461742,32.839284400000004]},"id":"8f44c0a34ab3061-13bee6d52d5b5c6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34aa212a-13fee49106cb2e0b","8f44c0a34ab3061-13bee6d52d5b5c6a"]},"geometry":{"type":"LineString","coordinates":[[-83.64710240000001,32.8389832],[-83.6467131,32.8392999],[-83.64666360000001,32.8393352],[-83.64660740000001,32.839363],[-83.64655040000001,32.8393778],[-83.6465034,32.839380500000004],[-83.6464442,32.839378100000005],[-83.64638090000001,32.839364800000006],[-83.64631680000001,32.8393431],[-83.6462479,32.8393157],[-83.6461742,32.839284400000004]]},"id":"8944c0a34abffff-1396e5a4baf516db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6455117,32.840830700000005]},"id":"8f44c0a34a9ac11-17fff87334bef54a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34069311-17dee926c4611099","8f44c0a34a9ac11-17fff87334bef54a"]},"geometry":{"type":"LineString","coordinates":[[-83.6455117,32.840830700000005],[-83.6452244,32.8411848]]},"id":"8744c0a34ffffff-17dfe8cd0162f13a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644104,32.857796400000005]},"id":"8f44c0a30b1e830-13deebe308074437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6434546,32.856606400000004]},"id":"8f44c0a30849609-17f7ed78e55b86aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1e830-13deebe308074437","8f44c0a30849609-17f7ed78e55b86aa"]},"geometry":{"type":"LineString","coordinates":[[-83.644104,32.857796400000005],[-83.64394820000001,32.8575752],[-83.64332590000001,32.856849700000005],[-83.6433688,32.8567235],[-83.6434546,32.856606400000004]]},"id":"8944c0a30b3ffff-17feecf8c2c45502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64807610000001,32.8339779]},"id":"8f44c0a34842074-17b6f23073d845a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64896300000001,32.834476]},"id":"8f44c0a3484c4b4-17ffe0062afa71e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34842074-17b6f23073d845a1","8f44c0a3484c4b4-17ffe0062afa71e8"]},"geometry":{"type":"LineString","coordinates":[[-83.64807610000001,32.8339779],[-83.64896300000001,32.834476]]},"id":"8944c0a3487ffff-17dfe11b57611dbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7325593,32.814680100000004]},"id":"8f44c0b08184d54-179713ee7b1d9fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73328280000001,32.8150765]},"id":"8f44c0b081ae42b-139ed22a4754e87f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b081ae42b-139ed22a4754e87f","8f44c0b08184d54-179713ee7b1d9fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.7325593,32.814680100000004],[-83.732646,32.8147357],[-83.73277540000001,32.8148116],[-83.7331413,32.8150695],[-83.73328280000001,32.8150765]]},"id":"8944c0b081bffff-17b773112dd70a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70799000000001,32.915961]},"id":"8f44c0a2a8a48e2-17dfefea4e1ccbd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707479,32.916215]},"id":"8f44c0a2a8a6041-17fe7129a21e52a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a6041-17fe7129a21e52a5","8f44c0a2a8a48e2-17dfefea4e1ccbd9"]},"geometry":{"type":"LineString","coordinates":[[-83.70799000000001,32.915961],[-83.70763070000001,32.9161118],[-83.707479,32.916215]]},"id":"8a44c0a2a8a7fff-17b6708da049ae1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649354,32.832986000000005]},"id":"8f44c0a34860301-13dedf11c08311ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64992600000001,32.833318000000006]},"id":"8f44c0a3486cd2d-1797ddac4ca8b60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3486cd2d-1797ddac4ca8b60a","8f44c0a34860301-13dedf11c08311ea"]},"geometry":{"type":"LineString","coordinates":[[-83.649354,32.832986000000005],[-83.64992600000001,32.833318000000006]]},"id":"8944c0a3487ffff-17b6de5f0d2f90c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6525558,32.8279124]},"id":"8f44c0b1a25e2c4-17f7d740ac5c3f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65368570000001,32.826653]},"id":"8f44c0b1a24401d-17d6f47e7260bcf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1a25e2c4-17f7d740ac5c3f86","8f44c0b1a24401d-17d6f47e7260bcf7"]},"geometry":{"type":"LineString","coordinates":[[-83.6525558,32.8279124],[-83.65274000000001,32.8277907],[-83.6529977,32.827596400000004],[-83.653115,32.827497900000004],[-83.6532267,32.827446200000004],[-83.6533328,32.8274181],[-83.65348920000001,32.827394600000005],[-83.6535618,32.827347700000004],[-83.6536456,32.8272679],[-83.65366800000001,32.8271881],[-83.6536806,32.826997500000004],[-83.6536959,32.8267656],[-83.65368570000001,32.826653]]},"id":"8944c0b1a27ffff-1797d579a105f2fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552276,32.8268677]},"id":"8f44c0b1a26dd80-17ded0bac1e29e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553411,32.826751300000005]},"id":"8f44c0b1bc93788-179fd073dfcd908b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1bc93788-179fd073dfcd908b","8f44c0b1a26dd80-17ded0bac1e29e7d"]},"geometry":{"type":"LineString","coordinates":[[-83.6552276,32.8268677],[-83.6553411,32.826751300000005]]},"id":"8a44c0b1a26ffff-17b7f0975482e104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65233860000001,32.8313173]},"id":"8f44c0b1b599116-17b7d7c860b196bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65210520000001,32.8311715]},"id":"8f44c0b1b59830e-17def85a4c826dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b599116-17b7d7c860b196bd","8f44c0b1b59830e-17def85a4c826dc6"]},"geometry":{"type":"LineString","coordinates":[[-83.65233860000001,32.8313173],[-83.65210520000001,32.8311715]]},"id":"8a44c0b1b59ffff-1797d81158b72ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6518611,32.8283767]},"id":"8f44c0b1a2e9741-1397f8f2d8a1067c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a2e9741-1397f8f2d8a1067c","8f44c0b1a25e2c4-17f7d740ac5c3f86"]},"geometry":{"type":"LineString","coordinates":[[-83.6525558,32.8279124],[-83.65237610000001,32.8279913],[-83.6518611,32.8283767]]},"id":"8844c0b1a3fffff-17ffd81f2ff2d31d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65301260000001,32.8263355]},"id":"8f44c0b1a27384e-139ff62320a421a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1a27384e-139ff62320a421a7","8f44c0b1a24401d-17d6f47e7260bcf7"]},"geometry":{"type":"LineString","coordinates":[[-83.65368570000001,32.826653],[-83.65328860000001,32.8266368],[-83.6530743,32.8265331],[-83.6530261,32.8264362],[-83.65301260000001,32.8263355]]},"id":"8944c0b1a27ffff-17b6d57679acfdb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64785300000001,32.830351]},"id":"8f44c0a34956bac-17dfe2bbe47b0f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6468672,32.83149]},"id":"8f44c0a3482e604-13b7e52401a8e010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34956bac-17dfe2bbe47b0f11","8f44c0a3482e604-13b7e52401a8e010"]},"geometry":{"type":"LineString","coordinates":[[-83.64785300000001,32.830351],[-83.6478098,32.830402],[-83.647625,32.83062],[-83.6474776,32.8308023],[-83.647321,32.830996],[-83.647113,32.831246],[-83.646955,32.831404],[-83.64692260000001,32.8314357],[-83.6468672,32.83149]]},"id":"8844c0a349fffff-17d6e3ea5174ad82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6587428,32.8186162]},"id":"8f44c0b1ab5bb91-13b7e825cc1b4944"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6591765,32.8180436]},"id":"8f44c0b1ab5d1a2-17dfc716ba6c2052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ab5d1a2-17dfc716ba6c2052","8f44c0b1ab5bb91-13b7e825cc1b4944"]},"geometry":{"type":"LineString","coordinates":[[-83.6587428,32.8186162],[-83.6587643,32.8182781],[-83.6589091,32.8181383],[-83.6591765,32.8180436]]},"id":"8a44c0b1ab5ffff-17ded7d419dd5d34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65791130000001,32.8200689]},"id":"8f44c0b1aa55aa3-17bfda2d75dc686d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657922,32.8197483]},"id":"8f44c0b1aa73398-13f6fa26cbe54680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa55aa3-17bfda2d75dc686d","8f44c0b1aa73398-13f6fa26cbe54680"]},"geometry":{"type":"LineString","coordinates":[[-83.65791130000001,32.8200689],[-83.6579167,32.81991],[-83.657922,32.8197483]]},"id":"8944c0b1aa7ffff-13deea2a1fa0dc68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6534649,32.8206944]},"id":"8f44c0b1aad6633-17d6d5087056b90a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65152280000001,32.8203382]},"id":"8f44c0b1a33431c-17f7f9c64be9b725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a33431c-17f7f9c64be9b725","8f44c0b1aad6633-17d6d5087056b90a"]},"geometry":{"type":"LineString","coordinates":[[-83.6534649,32.8206944],[-83.65343270000001,32.8206268],[-83.65343270000001,32.820351800000005],[-83.65330390000001,32.820351800000005],[-83.65152280000001,32.8203382]]},"id":"8744c0b1affffff-17fff714bb239a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594548,32.8342089]},"id":"8f44c0b1b093415-17d6d668c9dbb3aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6597134,32.8337087]},"id":"8f44c0b1b090ced-179ff5c7259a3895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b090ced-179ff5c7259a3895","8f44c0b1b093415-17d6d668c9dbb3aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6594548,32.8342089],[-83.65903820000001,32.834222600000004],[-83.65905430000001,32.833862],[-83.6597134,32.8337087]]},"id":"8844c0b1b5fffff-17b6d6e21c5359fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65594420000001,32.836875400000004]},"id":"8f44c0b1b7b2274-17d7eefae5d4d590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558287,32.836712]},"id":"8f44c0b1b7b2001-17f7cf431d724c49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7b2274-17d7eefae5d4d590","8f44c0b1b7b2001-17f7cf431d724c49"]},"geometry":{"type":"LineString","coordinates":[[-83.65594420000001,32.836875400000004],[-83.6559682,32.836820200000005],[-83.65591450000001,32.8367571],[-83.6558287,32.836712]]},"id":"8b44c0b1b7b2fff-179ecf0bfd302cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553361,32.8375494]},"id":"8f44c0b1b7904a0-17fef076f816176f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6554162,32.8374776]},"id":"8f44c0b1b790523-17bfd044e18e381d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7904a0-17fef076f816176f","8f44c0b1b790523-17bfd044e18e381d"]},"geometry":{"type":"LineString","coordinates":[[-83.6553361,32.8375494],[-83.6554162,32.8374776]]},"id":"8c44c0b1b7905ff-17d7f05de14a8cbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6551701,32.8374481]},"id":"8f44c0b1b79664a-17bfd0deb112b6de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65524350000001,32.8373782]},"id":"8f44c0b1b796399-1797f0b0d26a45b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b796399-1797f0b0d26a45b2","8f44c0b1b79664a-17bfd0deb112b6de"]},"geometry":{"type":"LineString","coordinates":[[-83.6551701,32.8374481],[-83.65524350000001,32.8373782]]},"id":"8b44c0b1b796fff-1797d0c7c907d90c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65729850000001,32.8380704]},"id":"8f44c0b1b78105d-13b6cbac71b4a9c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65732,32.8376991]},"id":"8f44c0b1b785755-17dffb9f0dadb705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b785755-17dffb9f0dadb705","8f44c0b1b78105d-13b6cbac71b4a9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.65729850000001,32.8380704],[-83.6572986,32.8379245],[-83.65732,32.8376991]]},"id":"8a44c0b1b787fff-17bfeba85ad2ccbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63262440000001,32.836759400000005]},"id":"8f44c0a34420349-17ffa7e9c412e61c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34420349-17ffa7e9c412e61c","8f44c0a34426209-17bfb8f6526c6242"]},"geometry":{"type":"LineString","coordinates":[[-83.63262440000001,32.836759400000005],[-83.6321947,32.8364427]]},"id":"8a44c0a34427fff-179fb87017062c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62401700000001,32.8356804]},"id":"8f44c0a36956798-13df5ced6dba3717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623796,32.835453]},"id":"8f44c0a3690b64d-13df3d77897906f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36956798-13df5ced6dba3717","8f44c0a3690b64d-13df3d77897906f1"]},"geometry":{"type":"LineString","coordinates":[[-83.62401700000001,32.8356804],[-83.62398,32.835651],[-83.62394400000001,32.835627],[-83.6238847,32.8355679],[-83.62385900000001,32.835535],[-83.623796,32.835453]]},"id":"8844c0a369fffff-139f9d36c0c4fe14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63143740000001,32.840125300000004]},"id":"8f44c0a344e30da-17b75acfa9bcf1b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63089810000001,32.8407418]},"id":"8f44c0a344c0284-17b7ac20babc1085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a344c0284-17b7ac20babc1085","8f44c0a344e30da-17b75acfa9bcf1b5"]},"geometry":{"type":"LineString","coordinates":[[-83.63143740000001,32.840125300000004],[-83.6312807,32.8403179],[-83.63089810000001,32.8407418]]},"id":"8944c0a344fffff-17ffcb761dd4c819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6323119,32.8394811]},"id":"8f44c0a344e5b0d-13b7b8ad1e69004d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e1680-17b799f2e01761fe","8f44c0a344e5b0d-13b7b8ad1e69004d"]},"geometry":{"type":"LineString","coordinates":[[-83.6317906,32.8400921],[-83.6323119,32.8394811]]},"id":"8944c0a344fffff-17f7a950065e1299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624257,32.835825]},"id":"8f44c0a36952964-13b7bc576ca78f42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62476310000001,32.8361778]},"id":"8f44c0a36951554-13973b1b1bd4b288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36951554-13973b1b1bd4b288","8f44c0a36952964-13b7bc576ca78f42"]},"geometry":{"type":"LineString","coordinates":[[-83.624257,32.835825],[-83.62435400000001,32.835932],[-83.62476310000001,32.8361778]]},"id":"8a44c0a36957fff-13bfbbbfa2818932"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66527,32.847127]},"id":"8f44c0a359534ac-17def836413214a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0a359534ac-17def836413214a7","8f44c0a35804b6b-17dfbb58ca3b27ec"]},"geometry":{"type":"LineString","coordinates":[[-83.66398600000001,32.847144],[-83.66527,32.847127]]},"id":"8844c0a359fffff-17d7b9c78eafb72e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616859,32.848919]},"id":"8f44c0a36761024-13bf6e67294e2535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61687400000001,32.849655]},"id":"8f44c0a367685a9-17ff6e5dcabec0f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36761024-13bf6e67294e2535","8f44c0a367685a9-17ff6e5dcabec0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.616859,32.848919],[-83.61687400000001,32.849655]]},"id":"8944c0a3677ffff-13976e627d67ae40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645798,32.789234]},"id":"8f44c0b1ec85288-13f7e7c04be70572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443668,32.7892612]},"id":"8f44c0b1ec9188a-139eeb3ec5bf519f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec85288-13f7e7c04be70572","8f44c0b1ec9188a-139eeb3ec5bf519f"]},"geometry":{"type":"LineString","coordinates":[[-83.645798,32.789234],[-83.6443668,32.7892612]]},"id":"8944c0b1ecbffff-13ffe97f873990c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607166,32.847127]},"id":"8f44c0a364d9ad4-17df66114756ff11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6054256,32.8478153]},"id":"8f44c0b8db720ac-17ffda510ea79f56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db720ac-17ffda510ea79f56","8f44c0a364d9ad4-17df66114756ff11"]},"geometry":{"type":"LineString","coordinates":[[-83.607166,32.847127],[-83.6055984,32.8477022],[-83.6054256,32.8478153]]},"id":"8844c0b8dbfffff-179fd8370887ee4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61649200000001,32.844254]},"id":"8f44c0a3601e324-17dfef4c8a6f2a63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61696900000001,32.844537]},"id":"8f44c0a36018b5a-17ffae2264db48b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3601e324-17dfef4c8a6f2a63","8f44c0a36018b5a-17ffae2264db48b4"]},"geometry":{"type":"LineString","coordinates":[[-83.61649200000001,32.844254],[-83.61696900000001,32.844537]]},"id":"8a44c0a3601ffff-17b73eb77f704079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764a0a-13977e8f013e01c3","8f44c0a367640e0-13973f07204ae1c7"]},"geometry":{"type":"LineString","coordinates":[[-83.61660300000001,32.8482307],[-83.6167952,32.8482325]]},"id":"8b44c0a36764fff-1397eecb133296ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64812660000001,32.8303305]},"id":"8f44c0a349540d4-17def210eae64bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34956bac-17dfe2bbe47b0f11","8f44c0a349540d4-17def210eae64bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.64785300000001,32.830351],[-83.64794420000001,32.8303756],[-83.64812660000001,32.8303305]]},"id":"8a44c0a34957fff-17def2668a04d759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6533531,32.7745751]},"id":"8f44c0b115486dd-17bff54e539aa459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531813,32.7729317]},"id":"8f44c0b11544ac1-13bed5b9b5397ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b115486dd-17bff54e539aa459","8f44c0b11544ac1-13bed5b9b5397ee9"]},"geometry":{"type":"LineString","coordinates":[[-83.6533531,32.7745751],[-83.653299,32.7740175],[-83.653181,32.773377],[-83.6531813,32.7729317]]},"id":"8944c0b1157ffff-13bef58cb752f69f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65490840000001,32.7772469]},"id":"8f44c0b11726118-13b7d1824c0855d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6551519,32.776601500000005]},"id":"8f44c0b1109d291-139ff0ea12e1b273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11726118-13b7d1824c0855d0","8f44c0b1109d291-139ff0ea12e1b273"]},"geometry":{"type":"LineString","coordinates":[[-83.65490840000001,32.7772469],[-83.6551519,32.776601500000005]]},"id":"8844c0b111fffff-13fff1362b174be5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6577354,32.7731244]},"id":"8f44c0b111a9686-13b6ca9b62e10419"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6576227,32.7731269]},"id":"8f44c0b111abae4-13b6dae1d2efaf23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b111abae4-13b6dae1d2efaf23","8f44c0b111a9686-13b6ca9b62e10419"]},"geometry":{"type":"LineString","coordinates":[[-83.6577354,32.7731244],[-83.6576979,32.7730613],[-83.6576335,32.773002600000005],[-83.6575691,32.7730568],[-83.6576227,32.7731269]]},"id":"8a44c0b111affff-13fefad5a016b2f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6582152,32.7733682]},"id":"8f44c0b1103472c-13bfe96f805dbf45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6586334,32.7730033]},"id":"8f44c0b1111bd8c-13d7d86a239c72dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1103472c-13bfe96f805dbf45","8f44c0b1111bd8c-13d7d86a239c72dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6582152,32.7733682],[-83.658304,32.7730252],[-83.65842210000001,32.7729711],[-83.6586334,32.7730033]]},"id":"8844c0b111fffff-1396c914688cb8c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553421,32.7705146]},"id":"8f44c0b11ce9c25-13d7f073339d33d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65715610000001,32.7706255]},"id":"8f44c0b11c4a1a6-139efc05701f8a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b11ce9c25-13d7f073339d33d7","8f44c0b11c4a1a6-139efc05701f8a81"]},"geometry":{"type":"LineString","coordinates":[[-83.6553421,32.7705146],[-83.6553751,32.7706662],[-83.65552980000001,32.7708168],[-83.6557605,32.7708168],[-83.6559268,32.7707311],[-83.65623790000001,32.770717600000005],[-83.6565973,32.7707627],[-83.65679580000001,32.7707627],[-83.6569621,32.770654400000005],[-83.65715610000001,32.7706255]]},"id":"8844c0b11dfffff-13deee67f4b3c1cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6566679,32.774649000000004]},"id":"8f44c0b110a521c-17dfed3699851ce1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6578307,32.7746774]},"id":"8f44c0b11015701-17ffea5fdca5447b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110a521c-17dfed3699851ce1","8f44c0b11015701-17ffea5fdca5447b"]},"geometry":{"type":"LineString","coordinates":[[-83.6566679,32.774649000000004],[-83.6578307,32.7746774]]},"id":"8844c0b111fffff-17f6cbcb3715bf17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635389,32.799328800000005]},"id":"8f44c0badb9596e-139f8129e1713212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6375455,32.799599300000004]},"id":"8f44c0badbac2c4-13d7fbe61b7090ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0badb9596e-139f8129e1713212","8f44c0badbac2c4-13d7fbe61b7090ae"]},"geometry":{"type":"LineString","coordinates":[[-83.635389,32.799328800000005],[-83.63679450000001,32.7993017],[-83.6369447,32.7995272],[-83.6375455,32.799599300000004]]},"id":"8944c0badbbffff-13d6fe79ccee462a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6356143,32.8015202]},"id":"8f44c0badaa604b-17f7209d127b984d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63486280000001,32.8012577]},"id":"8f44c0badab4aab-17d71272c409b2a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0badaa604b-17f7209d127b984d","8f44c0badab4aab-17d71272c409b2a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6356143,32.8015202],[-83.635389,32.801375900000004],[-83.6350779,32.801375900000004],[-83.63486280000001,32.8012577]]},"id":"8944c0badabffff-179f9185a9e90435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6340479,32.806137400000004]},"id":"8f44c0bad30351d-13bfe4701195586a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6336837,32.8045088]},"id":"8f44c0bad330c21-17d70553b26f225c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0bad30351d-13bfe4701195586a","8f44c0bad330c21-17d70553b26f225c"]},"geometry":{"type":"LineString","coordinates":[[-83.6340479,32.806137400000004],[-83.63397280000001,32.806290700000005],[-83.6334257,32.8063358],[-83.6333833,32.8063038],[-83.6334257,32.8052446],[-83.63358450000001,32.804718300000005],[-83.63362830000001,32.804631],[-83.6336715,32.804570600000005],[-83.6336837,32.8045088]]},"id":"8944c0bad33ffff-139f55a88484bfdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384472,32.7762642]},"id":"8f44c0b138d1d08-13dff9b28a917a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63808680000001,32.775288]},"id":"8f44c0b1388986b-17fffa93cf38cea3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b138d1d08-13dff9b28a917a83","8f44c0b1388986b-17fffa93cf38cea3"]},"geometry":{"type":"LineString","coordinates":[[-83.6384472,32.7762642],[-83.63835680000001,32.7760903],[-83.6380135,32.7754047],[-83.63808680000001,32.775288]]},"id":"8944c0b138fffff-139efa48bfb6638a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6372946,32.7769968]},"id":"8f44c0b13128cd4-1397fc82e6b2d056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64179460000001,32.7795403]},"id":"8f44c0b13b9d215-13def1866a08f83a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13128cd4-1397fc82e6b2d056","8f44c0b13b9d215-13def1866a08f83a"]},"geometry":{"type":"LineString","coordinates":[[-83.6372946,32.7769968],[-83.6381959,32.778598],[-83.6386143,32.7792249],[-83.63881280000001,32.7793918],[-83.6391668,32.7794955],[-83.6394994,32.779540600000004],[-83.64179460000001,32.7795403]]},"id":"8744c0b13ffffff-17bef7e7c9053b53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643496,32.7760586]},"id":"8f44c0b1384cc43-13deed5f01a5791a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6424016,32.7730602]},"id":"8f44c0b1395e518-13fef00b0986dd8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1395e518-13fef00b0986dd8f","8f44c0b1384cc43-13deed5f01a5791a"]},"geometry":{"type":"LineString","coordinates":[[-83.643496,32.7760586],[-83.6434852,32.7758016],[-83.6424016,32.7730602]]},"id":"8844c0b139fffff-179eee9cf681d21e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6493753,32.7737719]},"id":"8f44c0b11406aed-13b7ff0471fdc160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64533060000001,32.776089]},"id":"8f44c0b1149b133-13dfe8e467e919fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1149b133-13dfe8e467e919fa","8f44c0b11406aed-13b7ff0471fdc160"]},"geometry":{"type":"LineString","coordinates":[[-83.6493753,32.7737719],[-83.6466609,32.773681700000004],[-83.64641420000001,32.773799000000004],[-83.6460708,32.7741327],[-83.6454164,32.774186900000004],[-83.645352,32.7743763],[-83.6453305,32.7750889],[-83.6453091,32.775720400000004],[-83.64533060000001,32.776089]]},"id":"8844c0b115fffff-17dff584c972eca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6392972,32.776029900000005]},"id":"8f44c0b138c0d94-13bef79f4ecfc72c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6388546,32.776141700000004]},"id":"8f44c0b138c2da3-1396f8b3eedec49d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b138c2da3-1396f8b3eedec49d","8f44c0b138c0d94-13bef79f4ecfc72c"]},"geometry":{"type":"LineString","coordinates":[[-83.6392972,32.776029900000005],[-83.6394082,32.7764285],[-83.63950480000001,32.7766631],[-83.6393975,32.7767578],[-83.63924730000001,32.776798400000004],[-83.6391186,32.7767488],[-83.6390327,32.7765909],[-83.6388546,32.776141700000004]]},"id":"8944c0b138fffff-13def7cfc4cda8b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64299700000001,32.775107000000006]},"id":"8f44c0b13844063-17ffee96ea500731"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6429327,32.776050500000004]},"id":"8f44c0b1384eda3-13d7febf14d773e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1384eda3-13d7febf14d773e6","8f44c0b13844063-17ffee96ea500731"]},"geometry":{"type":"LineString","coordinates":[[-83.64299700000001,32.775107000000006],[-83.6429327,32.776050500000004]]},"id":"8a44c0b13847fff-17b6eeab068d60e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6429166,32.778083800000005]},"id":"8f44c0b13ba16c2-17beeec929203765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6445589,32.7782094]},"id":"8f44c0b13b1cc98-179eeac6b6e74b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13b1cc98-179eeac6b6e74b58","8f44c0b13ba16c2-17beeec929203765"]},"geometry":{"type":"LineString","coordinates":[[-83.6429166,32.778083800000005],[-83.6429166,32.778165],[-83.6443113,32.778165],[-83.6444132,32.778169500000004],[-83.6445589,32.7782094]]},"id":"8844c0b13bfffff-17f7ecde9ecdc533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6438445,32.7769613]},"id":"8f44c0b13849068-1396fc8536533df3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6417595,32.7769405]},"id":"8f44c0b1385b4c6-13f7f19c50d8f89c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13849068-1396fc8536533df3","8f44c0b1385b4c6-13f7f19c50d8f89c"]},"geometry":{"type":"LineString","coordinates":[[-83.6438445,32.7769613],[-83.6438339,32.777145700000005],[-83.6417613,32.7771148],[-83.6417595,32.7769405]]},"id":"8744c0b13ffffff-13f6ff108c49f329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64281460000001,32.779757100000005]},"id":"8f44c0b13b89c36-13d6ff08ea8242cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6426806,32.7800395]},"id":"8f44c0b13b8bb55-1396ff5ca8cdc1cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13b8bb55-1396ff5ca8cdc1cb","8f44c0b13b89c36-13d6ff08ea8242cc"]},"geometry":{"type":"LineString","coordinates":[[-83.64281460000001,32.779757100000005],[-83.6427395,32.7797977],[-83.6426806,32.7800395]]},"id":"8a44c0b13b8ffff-13b6ff3f8ac9ee9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6518595,32.832343800000004]},"id":"8f44c0b1b4b1b56-13b6f8f3d16b9811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6507021,32.8323498]},"id":"8f44c0b1b4b26eb-13befbc73a04b771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4b26eb-13befbc73a04b771","8f44c0b1b4b1b56-13b6f8f3d16b9811"]},"geometry":{"type":"LineString","coordinates":[[-83.6518595,32.832343800000004],[-83.65178560000001,32.832343900000005],[-83.6507021,32.8323498]]},"id":"8a44c0b1b4b7fff-13befa5d8749544a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6355589,32.780328100000006]},"id":"8f44c0b130010a6-13bf10bfb2eeaff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63834030000001,32.7798717]},"id":"8f44c0b1314368c-139ff9f55403f9ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1314368c-139ff9f55403f9ee","8f44c0b130010a6-13bf10bfb2eeaff2"]},"geometry":{"type":"LineString","coordinates":[[-83.6355589,32.780328100000006],[-83.63599880000001,32.7801928],[-83.6364118,32.780053],[-83.63678730000001,32.7798455],[-83.6371306,32.7797463],[-83.6373935,32.7797508],[-83.63834030000001,32.7798717]]},"id":"8844c0b131fffff-13d7fd65d8a2bead"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402903,32.781622500000005]},"id":"8f44c0b13a9182e-17f6f5329274655b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6408213,32.785992300000004]},"id":"8f44c0b1330b8f4-139ff3e6b185edc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13a9182e-17f6f5329274655b","8f44c0b1330b8f4-139ff3e6b185edc6"]},"geometry":{"type":"LineString","coordinates":[[-83.6402903,32.781622500000005],[-83.6403547,32.7820239],[-83.6405156,32.782312600000004],[-83.6405692,32.782745500000004],[-83.64048340000001,32.7828898],[-83.6407355,32.784905800000004],[-83.6408375,32.785771700000005],[-83.6407945,32.785879900000005],[-83.6408213,32.785992300000004]]},"id":"8744c0b13ffffff-13bff46d67437d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65276820000001,32.810881900000005]},"id":"8f44c0b1a80c826-17d7f6bbe3d06909"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6529076,32.8101154]},"id":"8f44c0b1a82e102-13f6f664cd5a4086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a80c826-17d7f6bbe3d06909","8f44c0b1a82e102-13f6f664cd5a4086"]},"geometry":{"type":"LineString","coordinates":[[-83.65276820000001,32.810881900000005],[-83.65276820000001,32.810219100000005],[-83.6528057,32.810147],[-83.6529076,32.8101154]]},"id":"8a44c0b1a82ffff-17dfd6b3dea9c715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651537,32.811146]},"id":"8f44c0b1a81dc99-17f6d9bd625e5be9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6514484,32.8111405]},"id":"8f44c0b1a81c253-17f6d9f4cb3deb77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a81c253-17f6d9f4cb3deb77","8f44c0b1a81dc99-17f6d9bd625e5be9"]},"geometry":{"type":"LineString","coordinates":[[-83.651537,32.811146],[-83.6515773,32.8109811],[-83.6516094,32.810890900000004],[-83.65170060000001,32.8107782],[-83.651824,32.8107241],[-83.6519313,32.8103995],[-83.65196350000001,32.8102777],[-83.65193670000001,32.8102462],[-83.6518348,32.810219100000005],[-83.65162020000001,32.810165000000005],[-83.6515451,32.810174],[-83.65141100000001,32.8105708],[-83.65147,32.8106565],[-83.65150750000001,32.810836800000004],[-83.65150220000001,32.8109315],[-83.6514484,32.8111405]]},"id":"8944c0b1a83ffff-17b6f97ab1b69e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65269310000001,32.8086095]},"id":"8f44c0b1a90a4c3-13d6f6eadbde55a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65356840000001,32.8093489]},"id":"8f44c0b1a956758-1397d4c7c0e234b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a956758-1397d4c7c0e234b2","8f44c0b1a90a4c3-13d6f6eadbde55a6"]},"geometry":{"type":"LineString","coordinates":[[-83.65269310000001,32.8086095],[-83.65270380000001,32.8090288],[-83.6527628,32.8091731],[-83.65292910000001,32.809317400000005],[-83.6531329,32.8093535],[-83.6534226,32.8093535],[-83.65356840000001,32.8093489]]},"id":"8844c0b1a9fffff-1397d63da4e51583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6708959,32.8179905]},"id":"8f44c0b1839e099-17beba7a1aa301f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6712785,32.8192527]},"id":"8f44c0b182a2d96-13d6f98af05f5ec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1839e099-17beba7a1aa301f8","8f44c0b182a2d96-13d6f98af05f5ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.6708959,32.8179905],[-83.67144300000001,32.818017600000005],[-83.6714967,32.818094200000004],[-83.6715128,32.8189508],[-83.6714752,32.819095000000004],[-83.6712785,32.8192527]]},"id":"8844c0b183fffff-13dff9463fe1d596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66925970000001,32.819757700000004]},"id":"8f44c0b1874b2e5-13febe78bf62ff08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6698635,32.819752900000005]},"id":"8f44c0b18294550-13ffbcff5d7d140c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1874b2e5-13febe78bf62ff08","8f44c0b18294550-13ffbcff5d7d140c"]},"geometry":{"type":"LineString","coordinates":[[-83.66925970000001,32.819757700000004],[-83.6698635,32.819752900000005]]},"id":"8844c0b187fffff-13ffbdbc0aab6773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67963400000001,32.850682]},"id":"8f44c0a2608ddae-17fed524c9023faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67853190000001,32.851682000000004]},"id":"8f44c0a267246ac-13ffd7d597b1c81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267246ac-13ffd7d597b1c81d","8f44c0a2608ddae-17fed524c9023faa"]},"geometry":{"type":"LineString","coordinates":[[-83.67963400000001,32.850682],[-83.67927660000001,32.8510003],[-83.67853190000001,32.851682000000004]]},"id":"8844c0a261fffff-13b7d67e1f89d957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6776753,32.851687500000004]},"id":"8f44c0a267351a3-13f6b9ecfaef82f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775794,32.851174300000004]},"id":"8f44c0a2609a256-13bffa28e0d65b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609a256-13bffa28e0d65b8c","8f44c0a267351a3-13f6b9ecfaef82f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6776753,32.851687500000004],[-83.6775794,32.851174300000004]]},"id":"8744c0a26ffffff-13d6da0af8363fdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6804262,32.8507243]},"id":"8f44c0a260f6b33-1796b335a89929bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679654,32.8499354]},"id":"8f44c0a260aa92a-17bfb5184c6fcbb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260aa92a-17bfb5184c6fcbb8","8f44c0a260f6b33-1796b335a89929bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6804262,32.8507243],[-83.68056940000001,32.8505902],[-83.67981300000001,32.849842100000004],[-83.679654,32.8499354]]},"id":"8844c0a261fffff-17f6f3d30c845925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6792819,32.852849]},"id":"8f44c0a26728905-17d6b600d2d40b87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800808,32.8535111]},"id":"8f44c0a260db5b2-17f6f40d8a21fcfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26728905-17d6b600d2d40b87","8f44c0a260db5b2-17f6f40d8a21fcfd"]},"geometry":{"type":"LineString","coordinates":[[-83.6792819,32.852849],[-83.67999,32.8534292],[-83.6800808,32.8535111]]},"id":"8844c0a267fffff-1796d50626b131e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67956690000001,32.8498461]},"id":"8f44c0a260ae629-17f7d54eb20e381c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779827,32.851280100000004]},"id":"8f44c0a2609bb85-13f6992cdcc51b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260ae629-17f7d54eb20e381c","8f44c0a2609bb85-13f6992cdcc51b72"]},"geometry":{"type":"LineString","coordinates":[[-83.67956690000001,32.8498461],[-83.67945900000001,32.8499277],[-83.6792283,32.8501215],[-83.6779827,32.851280100000004]]},"id":"8944c0a260bffff-17bed742a336f951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779784,32.8520188]},"id":"8f44c0a26722565-13bfd92f8e00cb61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6788367,32.852054800000005]},"id":"8f44c0a26721d31-13d6d7171d5514aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26721d31-13d6d7171d5514aa","8f44c0a26722565-13bfd92f8e00cb61"]},"geometry":{"type":"LineString","coordinates":[[-83.6779784,32.8520188],[-83.6781339,32.851879100000005],[-83.6782788,32.851802400000004],[-83.67845580000001,32.8517889],[-83.6785577,32.851847500000005],[-83.6786811,32.851933100000004],[-83.6788367,32.852054800000005]]},"id":"8a44c0a26727fff-13ff9823bc7150ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680456,32.851658]},"id":"8f44c0a260f376e-13ded3230a0938fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679866,32.850478]},"id":"8f44c0a260ab019-17fed493cf87f6f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260f376e-13ded3230a0938fc","8f44c0a260ab019-17fed493cf87f6f9"]},"geometry":{"type":"LineString","coordinates":[[-83.680456,32.851658],[-83.6804326,32.8513157],[-83.6803977,32.8509462],[-83.68036020000001,32.850860600000004],[-83.679866,32.850478]]},"id":"8844c0a261fffff-17d6f38c0f330e40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6690603,32.813984500000004]},"id":"8f44c0b180f0a9d-17f6fef5523daea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6690683,32.8135094]},"id":"8f44c0b180f4003-17bfeef0566c3044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f4003-17bfeef0566c3044","8f44c0b180f0a9d-17f6fef5523daea8"]},"geometry":{"type":"LineString","coordinates":[[-83.6690603,32.813984500000004],[-83.6690629,32.8138627],[-83.6690683,32.8135094]]},"id":"8a44c0b180f7fff-17dfeef2a5b15007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66691990000001,32.8139033]},"id":"8f44c0b1808a4a5-17b7b42f11310069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669359,32.813466000000005]},"id":"8f44c0b1809d95a-17b6f4251feab10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809d95a-17b6f4251feab10c","8f44c0b1808a4a5-17b7b42f11310069"]},"geometry":{"type":"LineString","coordinates":[[-83.66691990000001,32.8139033],[-83.66692520000001,32.813847],[-83.6669359,32.813466000000005]]},"id":"8a44c0b1809ffff-17bef4291e5e8a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6695538,32.8144195]},"id":"8f44c0b180c4c14-17f6bdc0e7e98774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6695395,32.813996200000005]},"id":"8f44c0b180f5276-17ffadc9d94897a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f5276-17ffadc9d94897a5","8f44c0b180c4c14-17f6bdc0e7e98774"]},"geometry":{"type":"LineString","coordinates":[[-83.6695538,32.8144195],[-83.6695395,32.813996200000005]]},"id":"8944c0b180fffff-17fffdc56de37628"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6680893,32.813490800000004]},"id":"8f44c0b180ab6d1-17bff1543ab945bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66807390000001,32.8139254]},"id":"8f44c0b1808d649-17bff15dd179ad0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808d649-17bff15dd179ad0d","8f44c0b180ab6d1-17bff1543ab945bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6680893,32.813490800000004],[-83.66807390000001,32.8139254]]},"id":"8b44c0b1808dfff-17b7b1590770758d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6692857,32.8139873]},"id":"8f44c0b180f56a9-17f6be687d411e95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6693041,32.8135142]},"id":"8f44c0b180f4b5e-17beee5cfcde1410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f56a9-17f6be687d411e95","8f44c0b180f4b5e-17beee5cfcde1410"]},"geometry":{"type":"LineString","coordinates":[[-83.6692857,32.8139873],[-83.6693041,32.8135142]]},"id":"8a44c0b180f7fff-17d6ee62bf451006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67529660000001,32.8154947]},"id":"8f44c0b1833576d-1396bfbba2b3a185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6751404,32.8154948]},"id":"8f44c0b183356a4-1396e01d48c1e727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1833576d-1396bfbba2b3a185","8f44c0b183356a4-1396e01d48c1e727"]},"geometry":{"type":"LineString","coordinates":[[-83.67529660000001,32.8154947],[-83.67524010000001,32.8154903],[-83.6751404,32.8154948]]},"id":"8b44c0b18335fff-1396dfec74ad9de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67092120000001,32.814996400000005]},"id":"8f44c0b180e88a1-17deea6a465a80d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6698107,32.8146489]},"id":"8f44c0b180c4af2-1797bd2052439833"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180c4af2-1797bd2052439833","8f44c0b180e88a1-17deea6a465a80d1"]},"geometry":{"type":"LineString","coordinates":[[-83.67092120000001,32.814996400000005],[-83.6700849,32.8149718],[-83.66996680000001,32.8149448],[-83.66984880000001,32.814868100000005],[-83.66979520000001,32.8147734],[-83.6698107,32.8146489]]},"id":"8944c0b180fffff-17b6bbfdf95e3816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668051,32.8144763]},"id":"8f44c0b180d686c-1797b16c201114b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808d649-17bff15dd179ad0d","8f44c0b180d686c-1797b16c201114b8"]},"geometry":{"type":"LineString","coordinates":[[-83.668051,32.8144763],[-83.66812420000001,32.8144015],[-83.66812150000001,32.8141648],[-83.6681188,32.8140408],[-83.66807390000001,32.8139254]]},"id":"8844c0b181fffff-17f7b146fd704c9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64846,32.838648]},"id":"8f44c0a34a161a6-139fe1408298666a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651643,32.839861]},"id":"8f44c0a34a76c35-1797f97b24be445c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a76c35-1797f97b24be445c","8f44c0a34a161a6-139fe1408298666a"]},"geometry":{"type":"LineString","coordinates":[[-83.64846,32.838648],[-83.648469,32.838676],[-83.648908,32.838865000000006],[-83.649882,32.839214000000005],[-83.650277,32.83934],[-83.65031570000001,32.8393546],[-83.650868,32.839563000000005],[-83.651573,32.839813],[-83.651643,32.839861]]},"id":"8944c0a34a3ffff-139efd6359731d17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64074670000001,32.836550700000004]},"id":"8f44c0a3411a342-17fef41556955c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64183340000001,32.837258600000006]},"id":"8f44c0a34020958-17b6f16e29b35ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34020958-17b6f16e29b35ffd","8f44c0a3411a342-17fef41556955c25"]},"geometry":{"type":"LineString","coordinates":[[-83.64074670000001,32.836550700000004],[-83.64113830000001,32.8366814],[-83.6414092,32.8368054],[-83.6415111,32.8368527],[-83.6415272,32.8368842],[-83.6415245,32.836940600000005],[-83.641436,32.8371209],[-83.64183340000001,32.837258600000006]]},"id":"8844c0a341fffff-17def2a318047a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478623,32.845619]},"id":"8f44c0a3435cc64-139fe2b61dd3f3c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64772980000001,32.8455536]},"id":"8f44c0a3435cd91-13f7e308e58db19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3435cc64-139fe2b61dd3f3c2","8f44c0a3435cd91-13f7e308e58db19d"]},"geometry":{"type":"LineString","coordinates":[[-83.6478623,32.845619],[-83.64772980000001,32.8455536]]},"id":"8c44c0a3435cdff-139ff2df7f0724e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6125693,32.853703800000005]},"id":"8f44c0a366ea361-17dff8e03f126d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6125749,32.852726000000004]},"id":"8f44c0a366e1085-13fff8dcb7f5bf60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a366ea361-17dff8e03f126d14","8f44c0a366e1085-13fff8dcb7f5bf60"]},"geometry":{"type":"LineString","coordinates":[[-83.6125693,32.853703800000005],[-83.61288850000001,32.8537035],[-83.61292830000001,32.853694600000004],[-83.6129398,32.853660000000005],[-83.61293620000001,32.8528972],[-83.61293810000001,32.8528396],[-83.6129255,32.852801500000005],[-83.61289400000001,32.8527548],[-83.6128451,32.8527259],[-83.6125749,32.852726000000004]]},"id":"8944c0a366fffff-17b7b82d6e08631e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6137992,32.8539368]},"id":"8f44c0a3665a2c9-17ffb5df8494f883"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61322050000001,32.853938]},"id":"8f44c0a366e92b6-17ff7749387f17e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3665a2c9-17ffb5df8494f883","8f44c0a366e92b6-17ff7749387f17e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6137992,32.8539368],[-83.613757,32.8538526],[-83.6136819,32.8537489],[-83.61356930000001,32.8536993],[-83.6133708,32.8536858],[-83.61325280000001,32.853712900000005],[-83.6132206,32.853812000000005],[-83.61322050000001,32.853938]]},"id":"8844c0a367fffff-179736a9a59365c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6064946,32.8270452]},"id":"8f44c0babb9d30d-17d747b4ef905a5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61012980000001,32.824371500000005]},"id":"8f44c0babb22ce8-17d73ed4ed8d9499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb22ce8-17d73ed4ed8d9499","8f44c0babb9d30d-17d747b4ef905a5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6064946,32.8270452],[-83.6072563,32.8264772],[-83.6073636,32.826287900000004],[-83.6080395,32.825801000000006],[-83.6083078,32.8255757],[-83.6093055,32.8249355],[-83.6097883,32.824629],[-83.61002640000001,32.8244495],[-83.61012980000001,32.824371500000005]]},"id":"8844c0babbfffff-13ff4358b3461d6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67799640000001,32.820493500000005]},"id":"8f44c0b18264065-17def9244202b02e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67708590000001,32.821037100000005]},"id":"8f44c0b182624d4-179ebb5d5d3fef30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b182624d4-179ebb5d5d3fef30","8f44c0b18264065-17def9244202b02e"]},"geometry":{"type":"LineString","coordinates":[[-83.67799640000001,32.820493500000005],[-83.67797490000001,32.8208676],[-83.67794810000001,32.8210029],[-83.6778676,32.821070500000005],[-83.67769600000001,32.821066],[-83.67754570000001,32.8210615],[-83.677417,32.8210119],[-83.67734730000001,32.820939800000005],[-83.6772722,32.8209217],[-83.6771702,32.8209533],[-83.67708590000001,32.821037100000005]]},"id":"8944c0b1827ffff-17d7b9f020a96e92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a4cbaca-1796fc190032d3db","8f44c0ba9b65756-17befcfb466af970"]},"geometry":{"type":"LineString","coordinates":[[-83.63746400000001,32.821024],[-83.637102,32.821472]]},"id":"8744c0b1affffff-17b6fc8a27672643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62534380000001,32.8351938]},"id":"8f44c0a36973961-13bf39b023a50de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626816,32.836235]},"id":"8f44c0a3696aab4-13b7f6180c60a871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36973961-13bf39b023a50de1","8f44c0a3696aab4-13b7f6180c60a871"]},"geometry":{"type":"LineString","coordinates":[[-83.62534380000001,32.8351938],[-83.6254792,32.8354312],[-83.62614980000001,32.835836400000005],[-83.626816,32.836235]]},"id":"8944c0a3697ffff-139f97fe99e251df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6411119,32.8338465]},"id":"8f44c0a341344f0-17f6f3311f61a874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6417978,32.8326614]},"id":"8f44c0a34891221-13fff18465b5eaaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34891221-13fff18465b5eaaf","8f44c0a341344f0-17f6f3311f61a874"]},"geometry":{"type":"LineString","coordinates":[[-83.6411119,32.8338465],[-83.6411114,32.83372],[-83.6411597,32.8336051],[-83.6412509,32.833623100000004],[-83.6413474,32.8336321],[-83.64174440000001,32.8327779],[-83.6417978,32.8326614]]},"id":"8744c0a34ffffff-179ff258c5d74e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63825,32.812936]},"id":"8f44c0b1a5068e2-13d7fa2dc99fdb62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639196,32.812958]},"id":"8f44c0b1a523231-13f6f7de8a2c77b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a523231-13f6f7de8a2c77b2","8f44c0b1a5068e2-13d7fa2dc99fdb62"]},"geometry":{"type":"LineString","coordinates":[[-83.63825,32.812936],[-83.63861100000001,32.812933],[-83.639196,32.812958]]},"id":"8944c0b1a53ffff-13def90617f5c3f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36991b0a-17dff893ba2328bd","8f44c0a3699ec4d-13d779681c808ccd"]},"geometry":{"type":"LineString","coordinates":[[-83.61890550000001,32.8350213],[-83.6190806,32.834822],[-83.6192453,32.8346621]]},"id":"8944c0a369bffff-13dff9001e348c6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6328211,32.8388872]},"id":"8f44c0a3440985c-13b7876edcc9f15d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e5b0d-13b7b8ad1e69004d","8f44c0a3440985c-13b7876edcc9f15d"]},"geometry":{"type":"LineString","coordinates":[[-83.6323119,32.8394811],[-83.6328211,32.8388872]]},"id":"8844c0a345fffff-13ff280dfbe717fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635991,32.832106]},"id":"8f44c0a34c1b12d-13b6ffb1a6d333a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63566970000001,32.8324918]},"id":"8f44c0a34cf5c8b-1397607a79708dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34c1b12d-13b6ffb1a6d333a1","8f44c0a34cf5c8b-1397607a79708dfe"]},"geometry":{"type":"LineString","coordinates":[[-83.635991,32.832106],[-83.63566970000001,32.8324918]]},"id":"8844c0a34dfffff-139fd016044e9fe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6357923,32.831985700000004]},"id":"8f44c0a34c1bd98-13d7102dddf06b4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6354737,32.8323695]},"id":"8f44c0a34cf4394-13d7f0f4fe91c657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34c1bd98-13d7102dddf06b4d","8f44c0a34cf4394-13d7f0f4fe91c657"]},"geometry":{"type":"LineString","coordinates":[[-83.6357923,32.831985700000004],[-83.6354737,32.8323695]]},"id":"8844c0a34dfffff-13df00916c391219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138098,32.7428503]},"id":"8f44c0b04153a42-17bf71b4ef087a8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152032,32.743497000000005]},"id":"8f44c0b0414a988-13dfbe4e03b53b95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04153a42-17bf71b4ef087a8d","8f44c0b0414a988-13dfbe4e03b53b95"]},"geometry":{"type":"LineString","coordinates":[[-83.7138098,32.7428503],[-83.7139745,32.742952200000005],[-83.7141206,32.743042],[-83.71430810000001,32.7431417],[-83.714537,32.7432484],[-83.7147717,32.7433392],[-83.7151106,32.743461],[-83.7152032,32.743497000000005]]},"id":"8944c0b0417ffff-1396e00aa81e5657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7249295,32.7450637]},"id":"8f44c0b23696556-17b6f68f1a2826ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7248957,32.7440629]},"id":"8f44c0b04b4c629-13bf76a430e2ef0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b23696556-17b6f68f1a2826ad","8f44c0b04b4c629-13bf76a430e2ef0b"]},"geometry":{"type":"LineString","coordinates":[[-83.7249295,32.7450637],[-83.7248957,32.7440629]]},"id":"8844c0b04bfffff-13fe3699a7c463b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7247404,32.7421716]},"id":"8f44c0b04b66243-179767054daa2b44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04b66243-179767054daa2b44","8f44c0b04b4c629-13bf76a430e2ef0b"]},"geometry":{"type":"LineString","coordinates":[[-83.7248957,32.7440629],[-83.72486520000001,32.743382100000005],[-83.72482640000001,32.742518600000004],[-83.72480420000001,32.7423166],[-83.7247404,32.7421716]]},"id":"8944c0b04b7ffff-13de66c18064c7a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72278770000001,32.7441539]},"id":"8f44c0b04a2d223-13fe3bc9bc3ebde1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7228116,32.744597500000005]},"id":"8f44c0b04a74d89-13ff7bbacc06ba77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b04a2d223-13fe3bc9bc3ebde1","8f44c0b04a74d89-13ff7bbacc06ba77"]},"geometry":{"type":"LineString","coordinates":[[-83.72278770000001,32.7441539],[-83.7228116,32.744597500000005]]},"id":"8844c0b04bfffff-13f6fbc23ab34776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7306022,32.746921]},"id":"8f44c0b236e5274-13bfb8b5a6f9437f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730219,32.7479561]},"id":"8f44c0b236ea8e1-17b699a52e742b55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b236e5274-13bfb8b5a6f9437f","8f44c0b236ea8e1-17b699a52e742b55"]},"geometry":{"type":"LineString","coordinates":[[-83.7306022,32.746921],[-83.730407,32.7472025],[-83.7303055,32.7473866],[-83.730242,32.7475339],[-83.73022350000001,32.7476362],[-83.730214,32.747753800000005],[-83.730219,32.7479561]]},"id":"8944c0b236fffff-13ded95a323e9ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65019570000001,32.8127683]},"id":"8f44c0b1a8f3408-13fefd03b782590c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64998650000001,32.8135418]},"id":"8f44c0b1a8d152c-17dffd867b69c47c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8d152c-17dffd867b69c47c","8f44c0b1a8f3408-13fefd03b782590c"]},"geometry":{"type":"LineString","coordinates":[[-83.65019570000001,32.8127683],[-83.65008660000001,32.8127166],[-83.6496413,32.8127662],[-83.64958770000001,32.8128113],[-83.64958770000001,32.8132802],[-83.6496896,32.8134335],[-83.6497808,32.813514600000005],[-83.64998650000001,32.8135418]]},"id":"8944c0b1a8fffff-13b6de134cd4046b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6515511,32.812933]},"id":"8f44c0b1a8e3459-13d7f9b4951f98fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6508912,32.8128879]},"id":"8f44c0b1a8c692d-13b6fb5100e7da2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8e3459-13d7f9b4951f98fb","8f44c0b1a8c692d-13b6fb5100e7da2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6515511,32.812933],[-83.6512024,32.812942],[-83.6508912,32.8128879]]},"id":"8944c0b1a8fffff-13dfda8385e6c2d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63484430000001,32.8380269]},"id":"8f44c0a34559853-1397d27e587be52c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6350546,32.8370089]},"id":"8f44c0a3454066a-179f91faeb033fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3454066a-179f91faeb033fba","8f44c0a34559853-1397d27e587be52c"]},"geometry":{"type":"LineString","coordinates":[[-83.63484430000001,32.8380269],[-83.6350546,32.8370089]]},"id":"8944c0a3457ffff-17dfb23c9a0d9f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6734643,32.808997500000004]},"id":"8f44c0b188de742-13b7f434d38d4ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671981,32.808605]},"id":"8f44c0b18123266-13d6a7d3ea370434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b188de742-13b7f434d38d4ba2","8f44c0b18123266-13d6a7d3ea370434"]},"geometry":{"type":"LineString","coordinates":[[-83.6734643,32.808997500000004],[-83.6737688,32.8085236],[-83.67377950000001,32.8084019],[-83.6726476,32.8084154],[-83.6724384,32.8083613],[-83.67219700000001,32.8083703],[-83.6720683,32.808447],[-83.671981,32.808605]]},"id":"8744c0b18ffffff-17feb53ba50ea0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66552920000001,32.8517232]},"id":"8f44c0a35ba662b-1397b7944245b5e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66318050000001,32.8505826]},"id":"8f44c0a358c5762-17bebd503f627cf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358c5762-17bebd503f627cf2","8f44c0a35ba662b-1397b7944245b5e7"]},"geometry":{"type":"LineString","coordinates":[[-83.66552920000001,32.8517232],[-83.66552920000001,32.8512365],[-83.66548970000001,32.851181700000005],[-83.6654058,32.8511599],[-83.6649318,32.8511727],[-83.6648157,32.8511509],[-83.66399840000001,32.8506725],[-83.6638286,32.8506011],[-83.66363360000001,32.8505824],[-83.66334930000001,32.8505914],[-83.66318050000001,32.8505826]]},"id":"8744c0a35ffffff-17b7b9f4364679b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62542210000001,32.8490917]},"id":"8f44c0a36366141-139f597f3f58f77b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6258979,32.8495134]},"id":"8f44c0a36360aeb-17b7f855dbcdc705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36366141-139f597f3f58f77b","8f44c0a36360aeb-17b7f855dbcdc705"]},"geometry":{"type":"LineString","coordinates":[[-83.62542210000001,32.8490917],[-83.6255533,32.8492187],[-83.6256257,32.8492896],[-83.6257061,32.8493798],[-83.6258067,32.849482300000005],[-83.6258979,32.8495134]]},"id":"8a44c0a36367fff-13b738efe5f1742e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da32321-13ff52209a5f35de","8f44c0b8da36130-1397f21bcdad9f24"]},"geometry":{"type":"LineString","coordinates":[[-83.6022263,32.848627300000004],[-83.602264,32.848495],[-83.602224,32.848373],[-83.602204,32.848213],[-83.602208,32.848156],[-83.60223400000001,32.848027]]},"id":"8a44c0b8da37fff-13bfd21f8af4b9db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600834,32.853147]},"id":"8f44c0b8d32d98b-1797f586ce0a252a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d32d98b-1797f586ce0a252a","8f44c0b8da1468b-13d7f31c039269c0"]},"geometry":{"type":"LineString","coordinates":[[-83.60182400000001,32.849161],[-83.60185700000001,32.849232],[-83.60183,32.84941],[-83.601826,32.849672000000005],[-83.60196,32.850538],[-83.601982,32.850959],[-83.60197000000001,32.851923],[-83.601967,32.852983],[-83.601944,32.853063],[-83.601881,32.853126],[-83.601837,32.853132],[-83.600949,32.853132],[-83.600834,32.853147]]},"id":"8744c0b8dffffff-13b7f3214c39fe92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318041,32.8070353]},"id":"8f44c0b08d00ad0-17ff15c67ce57462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73153160000001,32.8066581]},"id":"8f44c0b08d06a74-13975670c31f7504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d06a74-13975670c31f7504","8f44c0b08d00ad0-17ff15c67ce57462"]},"geometry":{"type":"LineString","coordinates":[[-83.7318041,32.8070353],[-83.73153160000001,32.8066581]]},"id":"8a44c0b08d07fff-13f7361b98e2b1e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1110348d-17fec6ebeeea8c40","8f44c0b11102b02-179ec6c3d6f74410"]},"geometry":{"type":"LineString","coordinates":[[-83.6593091,32.7718572],[-83.6592502,32.7720855],[-83.659245,32.772244]]},"id":"8a44c0b11107fff-1796f6de4fdf01d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7344915,32.808427800000004]},"id":"8f44c0b08d6206b-17d76f36dee44a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73450910000001,32.807330900000004]},"id":"8f44c0b0c6d9d98-17b7df2bd86650cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0c6d9d98-17b7df2bd86650cb","8f44c0b08d6206b-17d76f36dee44a03"]},"geometry":{"type":"LineString","coordinates":[[-83.7344915,32.808427800000004],[-83.73450910000001,32.807330900000004]]},"id":"8844c0b08dfffff-17feaf31566845fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7342844,32.808425500000006]},"id":"8f44c0b08d6244a-17d7ffb84cb2c236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7343019,32.8073283]},"id":"8f44c0b0c6d82b0-17b63fad504aa4de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0c6d82b0-17b63fad504aa4de","8f44c0b08d6244a-17d7ffb84cb2c236"]},"geometry":{"type":"LineString","coordinates":[[-83.7342844,32.808425500000006],[-83.73429300000001,32.8078826],[-83.7343019,32.8073283]]},"id":"8844c0b08dfffff-17ff1fb2dd512c4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7351799,32.8084356]},"id":"8f44c0b08d61c05-17de4d88942f387a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7351975,32.8073396]},"id":"8f44c0b0c6ca8de-17bf4d7d922b151f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0c6ca8de-17bf4d7d922b151f","8f44c0b08d61c05-17de4d88942f387a"]},"geometry":{"type":"LineString","coordinates":[[-83.7351799,32.8084356],[-83.7351975,32.8073396]]},"id":"8744c0b08ffffff-1797cd8313117d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73496320000001,32.8084332]},"id":"8f44c0b08d6021e-17d6ce100516024b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349808,32.8073368]},"id":"8f44c0b0c6ca50c-17bf8e05069badeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0c6ca50c-17bf8e05069badeb","8f44c0b08d6021e-17d6ce100516024b"]},"geometry":{"type":"LineString","coordinates":[[-83.73496320000001,32.8084332],[-83.7349808,32.8073368]]},"id":"8744c0b08ffffff-17962e0a8724f0cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7347177,32.8084304]},"id":"8f44c0b08d60683-17d70ea977b49915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7347352,32.8073337]},"id":"8f44c0b0c6d99ab-17b79e9e859b5a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d60683-17d70ea977b49915","8f44c0b0c6d99ab-17b79e9e859b5a6e"]},"geometry":{"type":"LineString","coordinates":[[-83.7347177,32.8084304],[-83.7347352,32.8073337]]},"id":"8744c0b08ffffff-17fe5ea3fee4f6fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73542060000001,32.8084383]},"id":"8f44c0b08d61946-17dffcf2263e1659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354382,32.807342600000005]},"id":"8f44c0b0c6c84e8-17bf2ce723d87455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d61946-17dffcf2263e1659","8f44c0b0c6c84e8-17bf2ce723d87455"]},"geometry":{"type":"LineString","coordinates":[[-83.73542060000001,32.8084383],[-83.7354382,32.807342600000005]]},"id":"8744c0b08ffffff-17979ceca72767f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7291338,32.8114828]},"id":"8f44c0b08cf680d-17dedc4b6b39341e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73152950000001,32.8098461]},"id":"8f44c0b08c05b76-13dfd6721c469c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c05b76-13dfd6721c469c86","8f44c0b08cf680d-17dedc4b6b39341e"]},"geometry":{"type":"LineString","coordinates":[[-83.7291338,32.8114828],[-83.7305286,32.8105299],[-83.73152950000001,32.8098461]]},"id":"8844c0b08dfffff-17df595eba32aebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73158400000001,32.810048]},"id":"8f44c0b08c2ac05-13de165008d8435b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72949700000001,32.811493]},"id":"8f44c0b08cf4000-17df3b6860b772a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08cf4000-17df3b6860b772a1","8f44c0b08c2ac05-13de165008d8435b"]},"geometry":{"type":"LineString","coordinates":[[-83.73158400000001,32.810048],[-83.730671,32.8106802],[-83.72949700000001,32.811493]]},"id":"8844c0b08dfffff-179f98dc30c7463e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7312947,32.8094924]},"id":"8f44c0b08c2344c-13fed704d72f0c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72838420000001,32.8114711]},"id":"8f44c0b08c8ddb4-17d77e1fe85ca965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c2344c-13fed704d72f0c16","8f44c0b08c8ddb4-17d77e1fe85ca965"]},"geometry":{"type":"LineString","coordinates":[[-83.7312947,32.8094924],[-83.730231,32.8102156],[-83.72838420000001,32.8114711]]},"id":"8844c0b08dfffff-17d73a92577090a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72979600000001,32.811496000000005]},"id":"8f44c0b08c1b79e-17d71aad8e58d75a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73160100000001,32.810282]},"id":"8f44c0b08c2a72d-17de56456b5c7b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c2a72d-17de56456b5c7b58","8f44c0b08c1b79e-17d71aad8e58d75a"]},"geometry":{"type":"LineString","coordinates":[[-83.72979600000001,32.811496000000005],[-83.73080250000001,32.810819],[-83.73160100000001,32.810282]]},"id":"8844c0b08dfffff-17d7b8797d3b7fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7311576,32.8093366]},"id":"8f44c0b08c222ed-139f775a8ec00479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728054,32.811467900000004]},"id":"8f44c0b08c8c7ad-17bf7eee420396a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c8c7ad-17bf7eee420396a9","8f44c0b08c222ed-139f775a8ec00479"]},"geometry":{"type":"LineString","coordinates":[[-83.7311576,32.8093366],[-83.7300917,32.8100686],[-83.72946610000001,32.810498200000005],[-83.728054,32.811467900000004]]},"id":"8844c0b08dfffff-17b77b246983c519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731533,32.810588]},"id":"8f44c0b08c0c11e-179f966fe297628c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730231,32.811465000000005]},"id":"8f44c0b08c1ba4c-17bfb99da6642f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c1ba4c-17bfb99da6642f80","8f44c0b08c0c11e-179f966fe297628c"]},"geometry":{"type":"LineString","coordinates":[[-83.731533,32.810588],[-83.7309534,32.8109784],[-83.730231,32.811465000000005]]},"id":"8844c0b08dfffff-17bf9806c7b23b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7314108,32.809633000000005]},"id":"8f44c0b08c2329a-13d6b6bc45297e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72873940000001,32.8114745]},"id":"8f44c0b08cab2e0-17d79d41e3b9a05c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c2329a-13d6b6bc45297e2a","8f44c0b08cab2e0-17d79d41e3b9a05c"]},"geometry":{"type":"LineString","coordinates":[[-83.7314108,32.809633000000005],[-83.7303632,32.810355200000004],[-83.72873940000001,32.8114745]]},"id":"8844c0b08dfffff-179639ff1408fec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6592128,32.772685]},"id":"8f44c0b1111d440-1396e700038f18d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1111899c-13d7d7bcd6e017c6","8f44c0b1111d440-1396e700038f18d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6589107,32.7725905],[-83.6590329,32.772555000000004],[-83.6591137,32.772555000000004],[-83.6591708,32.772591000000006],[-83.6592128,32.772685]]},"id":"8a44c0b1111ffff-13d6c750bcd61bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a10341-13b6f33ff8d01bae","8f44c0b04a13358-13b7739b45598e88"]},"geometry":{"type":"LineString","coordinates":[[-83.71958520000001,32.7444855],[-83.7196117,32.7443984],[-83.7197313,32.744042900000004]]},"id":"8a44c0b04a17fff-13bef36e45950139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6071735,32.837957700000004]},"id":"8f44c0bab24ccf4-17ffd60c9a6cb461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608332,32.838046]},"id":"8f44c0bab26920a-13b7c338868f2b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bab24ccf4-17ffd60c9a6cb461","8f44c0bab26920a-13b7c338868f2b12"]},"geometry":{"type":"LineString","coordinates":[[-83.6071735,32.837957700000004],[-83.6071735,32.8378852],[-83.6072111,32.8378176],[-83.6072915,32.837799600000004],[-83.60817130000001,32.8378582],[-83.6082571,32.8378717],[-83.6083054,32.8379348],[-83.608332,32.838046]]},"id":"8944c0bab27ffff-17bf74a1f7bc9a22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a344e1680-17b799f2e01761fe","8f44c0a344ed19b-17df47efa7c9daf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6317906,32.8400921],[-83.632146,32.840316],[-83.632615,32.84057]]},"id":"8944c0a344fffff-17bf18f3bdbc7c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63716840000001,32.8356046]},"id":"8f44c0a34194705-13befcd1c7b1fbc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6369107,32.8354361]},"id":"8f44c0a34196928-13d7fd72dbf7bf94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34196928-13d7fd72dbf7bf94","8f44c0a34194705-13befcd1c7b1fbc6"]},"geometry":{"type":"LineString","coordinates":[[-83.63716840000001,32.8356046],[-83.6369107,32.8354361]]},"id":"8a44c0a34197fff-13fefd2256af47e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7309441,32.834251]},"id":"8f44c0b0b124868-17def7dff7d383a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7286953,32.842748400000005]},"id":"8f44c0b0b0c8ca8-139fdd5d76a0499d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b0c8ca8-139fdd5d76a0499d","8f44c0b0b124868-17def7dff7d383a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7309441,32.834251],[-83.73088200000001,32.834321700000004],[-83.7308357,32.8343995],[-83.7308242,32.8344935],[-83.7308454,32.8348224],[-83.730857,32.8349709],[-83.730855,32.8356196],[-83.730855,32.836698600000005],[-83.7308611,32.8384188],[-83.730304,32.8392379],[-83.7296633,32.840115600000004],[-83.7292037,32.8407007],[-83.72868840000001,32.8408411],[-83.7286953,32.842748400000005]]},"id":"8744c0b0bffffff-1396fa0146e03cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7077237,32.825165000000005]},"id":"8f44c0b0a7268e2-13b67090b3d8ee6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7064699,32.8250357]},"id":"8f44c0b0a736871-13df53a05af3e272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a7268e2-13b67090b3d8ee6f","8f44c0b0a736871-13df53a05af3e272"]},"geometry":{"type":"LineString","coordinates":[[-83.7077237,32.825165000000005],[-83.70714240000001,32.8250863],[-83.7067911,32.8250301],[-83.7064699,32.8250357]]},"id":"8944c0b0a73ffff-13fef217f16cd0f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083406,32.9178015]},"id":"8f44c0a2a8ab912-13dfff0f26a1f5b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8ab912-13dfff0f26a1f5b8","8f44c0a2a8ae2b1-13f66fd0038cdb3f"]},"geometry":{"type":"LineString","coordinates":[[-83.708032,32.917405],[-83.708211,32.91762],[-83.70827580000001,32.9177108],[-83.7083406,32.9178015]]},"id":"8a44c0a2a8affff-13de4f6d504457de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71087800000001,32.9232928]},"id":"8f44c0a2ab9a29a-13d648dd491efba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71123700000001,32.9241272]},"id":"8f44c0a2aaa2582-13dfc7fcee3c7e46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab9a29a-13d648dd491efba0","8f44c0a2aaa2582-13dfc7fcee3c7e46"]},"geometry":{"type":"LineString","coordinates":[[-83.71087800000001,32.9232928],[-83.71117500000001,32.923978600000005],[-83.71123700000001,32.9241272]]},"id":"8844c0a2abfffff-13d6d86c9086b6dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7222874,32.8296293]},"id":"8f44c0b0bd9d95a-13967d026411e2a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7226998,32.8299407]},"id":"8f44c0b0bd8a969-17defc00a69ef13c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0bd8a969-17defc00a69ef13c","8f44c0b0bd9d95a-13967d026411e2a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7222874,32.8296293],[-83.72257280000001,32.829862600000006],[-83.7226998,32.8299407]]},"id":"8944c0b0bdbffff-13ff6c8414141db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72180560000001,32.8285767]},"id":"8f44c0b0bd864f4-13967e2f891c002a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0bd864f4-13967e2f891c002a","8f44c0b0bd9d95a-13967d026411e2a9"]},"geometry":{"type":"LineString","coordinates":[[-83.72180560000001,32.8285767],[-83.7219364,32.8287446],[-83.72203280000001,32.8288547],[-83.72209070000001,32.8290006],[-83.72213310000001,32.8291691],[-83.722137,32.8293538],[-83.72216010000001,32.8295029],[-83.7222102,32.8295872],[-83.7222874,32.8296293]]},"id":"8944c0b0bdbffff-13dffd893e4c710d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7227695,32.8292485]},"id":"8f44c0b0bd81072-13be7bd51712e93c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0bd81072-13be7bd51712e93c","8f44c0b0bd9d95a-13967d026411e2a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7222874,32.8296293],[-83.7222527,32.8295061],[-83.72226040000001,32.829418600000004],[-83.7223259,32.829340900000005],[-83.7223915,32.8292955],[-83.72246480000001,32.8292534],[-83.72254190000001,32.8292372],[-83.72263450000001,32.8292372],[-83.7227695,32.8292485]]},"id":"8944c0b0bdbffff-13f6bca7d3d25708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732664,32.814583400000004]},"id":"8f44c0b081a2674-17deb3ad0c435af3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b081ae42b-139ed22a4754e87f","8f44c0b081a2674-17deb3ad0c435af3"]},"geometry":{"type":"LineString","coordinates":[[-83.73328280000001,32.8150765],[-83.7332197,32.8149673],[-83.732664,32.814583400000004]]},"id":"8944c0b081bffff-17fed2e0f776c1ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5668407,32.7957982]},"id":"8f44c0b8515acd0-13ffe884939d053d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53384600000001,32.723279600000005]},"id":"8f44c085b45ec4b-17f7f91240b67adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8515acd0-13ffe884939d053d","8f44c085b45ec4b-17f7f91240b67adc"]},"geometry":{"type":"LineString","coordinates":[[-83.5668407,32.7957982],[-83.5662415,32.7949885],[-83.564459,32.79242],[-83.5613491,32.787975200000005],[-83.56050400000001,32.78673],[-83.560349,32.786488],[-83.560201,32.786243],[-83.559996,32.785863],[-83.559914,32.785688],[-83.559832,32.785499],[-83.559623,32.784967800000004],[-83.55955800000001,32.7847444],[-83.55942800000001,32.784191],[-83.5593412,32.783649600000004],[-83.55923990000001,32.7830527],[-83.55835280000001,32.7767713],[-83.5582012,32.7757847],[-83.5580839,32.7747594],[-83.5579245,32.7731531],[-83.55743000000001,32.769751],[-83.55722700000001,32.768174],[-83.55697400000001,32.7665841],[-83.556864,32.765798100000005],[-83.5567886,32.764991800000004],[-83.5567195,32.764310200000004],[-83.5566221,32.7637682],[-83.5564794,32.763283200000004],[-83.55630620000001,32.762802400000005],[-83.55590380000001,32.7620145],[-83.5550589,32.760559],[-83.55440490000001,32.759333600000005],[-83.5540138,32.758654],[-83.55358100000001,32.7579431],[-83.55330380000001,32.7574388],[-83.55255100000001,32.756102],[-83.551811,32.754779],[-83.5513849,32.7540898],[-83.55061210000001,32.7526728],[-83.548866,32.7496391],[-83.54527300000001,32.7433354],[-83.544138,32.741391],[-83.5433342,32.739951600000005],[-83.54271940000001,32.738858900000004],[-83.542085,32.737784000000005],[-83.54069000000001,32.735318],[-83.538944,32.732254000000005],[-83.5379714,32.7304996],[-83.5358695,32.7268556],[-83.53425200000001,32.724008000000005],[-83.53384600000001,32.723279600000005]]},"id":"8544c0bbfffffff-17b7edccf8083a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6780172,32.890925100000004]},"id":"8f44c0a04b8d88b-13beb9174bc015c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b8d88b-13beb9174bc015c6","8f44c0a04b8d899-13bfb923e74a5885"]},"geometry":{"type":"LineString","coordinates":[[-83.677997,32.890921],[-83.6780172,32.890925100000004]]},"id":"8d44c0a04b8d8bf-13bef91d9dbfdc1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a4c9662-17fefb74b1f67457","8f44c0ba9b65756-17befcfb466af970"]},"geometry":{"type":"LineString","coordinates":[[-83.637102,32.821472],[-83.6377269,32.8209825]]},"id":"8744c0b1affffff-1797fc37fbb2ff0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6969969,32.8677426]},"id":"8f44c0a200d6549-13b76ac0ff3e06f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6972806,32.8680879]},"id":"8f44c0a200d04e5-13fefa0fa97212ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a200d04e5-13fefa0fa97212ae","8f44c0a200d6549-13b76ac0ff3e06f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6969969,32.8677426],[-83.6970805,32.8678699],[-83.6971467,32.867966100000004],[-83.6972806,32.8680879]]},"id":"8a44c0a200d7fff-1396ea6eb9a0dace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67703800000001,32.890699000000005]},"id":"8f44c0a04b8ece3-13befb7b407aa509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a04b8d899-13bfb923e74a5885","8f44c0a04b8ece3-13befb7b407aa509"]},"geometry":{"type":"LineString","coordinates":[[-83.677997,32.890921],[-83.67761730000001,32.8908606],[-83.67747680000001,32.890844300000005],[-83.6773864,32.890833400000005],[-83.67730080000001,32.8908104],[-83.67721200000001,32.8907751],[-83.67703800000001,32.890699000000005]]},"id":"8a44c0a04b8ffff-1396ba54116b21f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890327,32.8623938]},"id":"8f44c0a205abd2e-13967e32929777f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886468,32.862580200000004]},"id":"8f44c0a2058c8a0-179eff23cab82547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2058c8a0-179eff23cab82547","8f44c0a205abd2e-13967e32929777f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6890327,32.8623938],[-83.6889489,32.862477600000005],[-83.6888854,32.8625251],[-83.68883380000001,32.8625526],[-83.6887525,32.8625759],[-83.6886468,32.862580200000004]]},"id":"8944c0a205bffff-13f67ea22edb2488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67761390000001,32.891380500000004]},"id":"8f44c0a04b89584-13deda135cb7778f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a04b89584-13deda135cb7778f","8f44c0a04b8d899-13bfb923e74a5885"]},"geometry":{"type":"LineString","coordinates":[[-83.67761390000001,32.891380500000004],[-83.6776028,32.891198200000005],[-83.67761250000001,32.891138500000004],[-83.6776399,32.8910707],[-83.6776787,32.891026000000004],[-83.677735,32.890995700000005],[-83.6778292,32.8909645],[-83.677997,32.890921]]},"id":"8a44c0a04b8ffff-13b7d9d009a6b195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716406,32.8776226]},"id":"8f44c0a21116100-13d63b5e49dc0d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7162397,32.8777275]},"id":"8f44c0a21116458-1397bbc632ca9abd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a21116458-1397bbc632ca9abd","8f44c0a21116100-13d63b5e49dc0d3d"]},"geometry":{"type":"LineString","coordinates":[[-83.716406,32.8776226],[-83.71635380000001,32.8776694],[-83.7163136,32.877698800000005],[-83.7162397,32.8777275]]},"id":"8b44c0a21116fff-13f77b8f70c73f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71697420000001,32.8780598]},"id":"8f44c0a21110a73-13d779fb22b7a1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a21111a76-1396391ae50463a4","8f44c0a21110a73-13d779fb22b7a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.71697420000001,32.8780598],[-83.7170986,32.878196100000004],[-83.7172158,32.8782932],[-83.71733300000001,32.8783714]]},"id":"8a44c0a21117fff-13bef9905d0dbf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63557300000001,32.835591]},"id":"8f44c0a34566325-13b760b6e247375f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63609600000001,32.834946]},"id":"8f44c0a34cca172-1397ff700dae229d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34566325-13b760b6e247375f","8f44c0a34cca172-1397ff700dae229d"]},"geometry":{"type":"LineString","coordinates":[[-83.63557300000001,32.835591],[-83.63609600000001,32.834946]]},"id":"8744c0a34ffffff-13dfd0137d16c1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6374771,32.8261576]},"id":"8f44c0b1a69b451-139efc10da0b32ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377585,32.8259106]},"id":"8f44c0b1a69b904-1396fb60f7d379a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"tertiary","surface":"paved","flags":["isBridge"],"restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a69b451-139efc10da0b32ba","8f44c0b1a69b904-1396fb60f7d379a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6374771,32.8261576],[-83.6377585,32.8259106]]},"id":"8a44c0b1a69ffff-13dffbb8e8568709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603032,32.853583]},"id":"8f44c0b8dac88c9-179770290f1e48cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6030394,32.8530249]},"id":"8f44c0b8daccd45-17b7d0246a5ca527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac88c9-179770290f1e48cb","8f44c0b8daccd45-17b7d0246a5ca527"]},"geometry":{"type":"LineString","coordinates":[[-83.603032,32.853583],[-83.6032694,32.8535436],[-83.6032893,32.8532232],[-83.6032855,32.853093],[-83.6032225,32.8530247],[-83.6030394,32.8530249]]},"id":"8944c0b8dafffff-17dfcfb4dd9b38da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6012309,32.852223200000005]},"id":"8f44c0b8dad42e8-13bfd48ebaef611e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6008419,32.8522678]},"id":"8f44c0b8dad0cb6-13df7581d03b0faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dad0cb6-13df7581d03b0faa","8f44c0b8dad42e8-13bfd48ebaef611e"]},"geometry":{"type":"LineString","coordinates":[[-83.6012309,32.852223200000005],[-83.6008419,32.8522678]]},"id":"8a44c0b8dad7fff-13df750845a5c12d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5972186,32.8518449]},"id":"8f44c0b8d04c28d-13d75e5a626c35f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5968837,32.8510051]},"id":"8f44c0b8d045754-17d77f2bb2d7fef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d04c28d-13d75e5a626c35f2","8f44c0b8d045754-17d77f2bb2d7fef9"]},"geometry":{"type":"LineString","coordinates":[[-83.5972186,32.8518449],[-83.5971416,32.851709],[-83.59713280000001,32.851606100000005],[-83.59706840000001,32.8514934],[-83.5969558,32.8513267],[-83.59688600000001,32.8512095],[-83.5968837,32.8510051]]},"id":"8944c0b8d07ffff-13d7ded34fb93ee0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6019488,32.8581175]},"id":"8f44c0b8d26cc16-13b772ce0561fb3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60127,32.8586424]},"id":"8f44c0b8d24534e-13ffd476405bd60d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d24534e-13ffd476405bd60d","8f44c0b8d26cc16-13b772ce0561fb3e"]},"geometry":{"type":"LineString","coordinates":[[-83.6019488,32.8581175],[-83.60188690000001,32.8580565],[-83.601785,32.857979900000004],[-83.6013719,32.857998],[-83.60129140000001,32.8580836],[-83.60127,32.8586424]]},"id":"8944c0b8d27ffff-13d753f5486b6b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7471173,32.8354682]},"id":"8f44c0b0946b884-13d7f063b88b9d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7466375,32.8354298]},"id":"8f44c0b0946a60d-13bff18f9e8c8393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0946b884-13d7f063b88b9d38","8f44c0b0946a60d-13bff18f9e8c8393"]},"geometry":{"type":"LineString","coordinates":[[-83.7471173,32.8354682],[-83.7469547,32.835494100000005],[-83.7468551,32.835498],[-83.7467625,32.8354766],[-83.7466375,32.8354298]]},"id":"8a44c0b0946ffff-13ddf0fb54a2075d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6433265,32.8505045]},"id":"8f44c0a342db631-179ffdc8f92b1d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6441647,32.851029700000005]},"id":"8f44c0a30960023-17d7fbbd189efa57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30960023-17d7fbbd189efa57","8f44c0a342db631-179ffdc8f92b1d10"]},"geometry":{"type":"LineString","coordinates":[[-83.6433265,32.8505045],[-83.6433265,32.851027200000004],[-83.6434016,32.8511219],[-83.64366980000001,32.851185],[-83.643879,32.851126400000005],[-83.6441647,32.851029700000005]]},"id":"8944c0a3097ffff-17bfed2876ad0b2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64368280000001,32.851947800000005]},"id":"8f44c0a309454d1-1397ecea47e46f51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64295630000001,32.851770800000004]},"id":"8f44c0a309467ad-13b6eeb059203162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a309467ad-13b6eeb059203162","8f44c0a309454d1-1397ecea47e46f51"]},"geometry":{"type":"LineString","coordinates":[[-83.64368280000001,32.851947800000005],[-83.6434018,32.8519288],[-83.64295630000001,32.851770800000004]]},"id":"8a44c0a30947fff-13feedd0598bc6bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6741137,32.8065578]},"id":"8f44c0b188f4d48-13d6a29efe76ac82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67333670000001,32.8064002]},"id":"8f44c0b188ab8d4-13f6a4849c14588b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b188ab8d4-13f6a4849c14588b","8f44c0b188f4d48-13d6a29efe76ac82"]},"geometry":{"type":"LineString","coordinates":[[-83.6741137,32.8065578],[-83.6739769,32.806562400000004],[-83.6723783,32.8065984],[-83.6722924,32.8065804],[-83.67226020000001,32.8065263],[-83.67227100000001,32.806454200000005],[-83.6723568,32.8064316],[-83.67248550000001,32.8064181],[-83.67333670000001,32.8064002]]},"id":"8844c0b189fffff-13bfe54b093dca56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67416030000001,32.8077482]},"id":"8f44c0b188c6c01-17bea281d10feca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67437380000001,32.8063951]},"id":"8f44c0b1881a372-13def1fc6445f1e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1881a372-13def1fc6445f1e8","8f44c0b188c6c01-17bea281d10feca4"]},"geometry":{"type":"LineString","coordinates":[[-83.67416030000001,32.8077482],[-83.67432550000001,32.8077437],[-83.6744006,32.807734700000005],[-83.67443820000001,32.807658],[-83.67442750000001,32.8073424],[-83.67437380000001,32.8063951]]},"id":"8844c0b189fffff-17d7e1f25c351a40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5789263,32.871110300000005]},"id":"8f44c0b894e0b62-13dffb031e037f4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57914620000001,32.8717501]},"id":"8f44c0b894ec4a4-13ffda79aac4836b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894ec4a4-13ffda79aac4836b","8f44c0b894e0b62-13dffb031e037f4a"]},"geometry":{"type":"LineString","coordinates":[[-83.5789263,32.871110300000005],[-83.5790121,32.8714302],[-83.57914620000001,32.8717501]]},"id":"8944c0b894fffff-13b7bac52c476812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5727518,32.870835500000005]},"id":"8f44c0b8b86a7b0-13b7ba1623c3066e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5738134,32.8721763]},"id":"8f44c0b8bb330a2-13f7b77ea51ea815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b86a7b0-13b7ba1623c3066e","8f44c0b8bb330a2-13f7b77ea51ea815"]},"geometry":{"type":"LineString","coordinates":[[-83.5727518,32.870835500000005],[-83.57289130000001,32.871119300000004],[-83.57312730000001,32.8714753],[-83.5735994,32.8719258],[-83.5737067,32.872061],[-83.5738134,32.8721763]]},"id":"8744c0b8bffffff-13f7d8e415313568"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57948900000001,32.868869000000004]},"id":"8f44c0b8942e49c-13f7a9a36d46b418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57773710000001,32.8685366]},"id":"8f44c0b89414aa0-1397edea518190ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89414aa0-1397edea518190ed","8f44c0b8942e49c-13f7a9a36d46b418"]},"geometry":{"type":"LineString","coordinates":[[-83.57948900000001,32.868869000000004],[-83.5783947,32.8690537],[-83.5781592,32.8690287],[-83.57773710000001,32.8685366]]},"id":"8944c0b8943ffff-13ff8bf485d23a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5780841,32.871119300000004]},"id":"8f44c0b894e2cf1-13f79d1179b569c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5784134,32.8719972]},"id":"8f44c0b894c501c-1397cc43a3dfa073"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894e2cf1-13f79d1179b569c7","8f44c0b894c501c-1397cc43a3dfa073"]},"geometry":{"type":"LineString","coordinates":[[-83.5780841,32.871119300000004],[-83.57799820000001,32.8712229],[-83.5780304,32.8713536],[-83.5784134,32.8719972]]},"id":"8944c0b894fffff-13f78cdb6148a002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5768824,32.8676635]},"id":"8f44c0b8958c6ca-13f7b000879da356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57538430000001,32.867959]},"id":"8f44c0b8959bd04-13bff3a8d2e988d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8958c6ca-13f7b000879da356","8f44c0b8959bd04-13bff3a8d2e988d2"]},"geometry":{"type":"LineString","coordinates":[[-83.5768824,32.8676635],[-83.57636210000001,32.8678618],[-83.576228,32.8678572],[-83.57597050000001,32.867695000000005],[-83.5758686,32.8676995],[-83.57549300000001,32.867902300000004],[-83.57538430000001,32.867959]]},"id":"8944c0b895bffff-13d7b1daffa44d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5761368,32.872362800000005]},"id":"8f44c0b8bb2c822-13ffd1d282306653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5755317,32.871305400000004]},"id":"8f44c0b8bb24803-13d7f34cb1ccb028"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb24803-13d7f34cb1ccb028","8f44c0b8bb2c822-13ffd1d282306653"]},"geometry":{"type":"LineString","coordinates":[[-83.5761368,32.872362800000005],[-83.5755317,32.871305400000004]]},"id":"8844c0b895fffff-13b7d28fa504c3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57554130000001,32.8739848]},"id":"8f44c0b8bb0d6f5-17f79346b316960a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5777163,32.8722725]},"id":"8f44c0b894c2a41-13b7ddf7580cf840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894c2a41-13b7ddf7580cf840","8f44c0b8bb0d6f5-17f79346b316960a"]},"geometry":{"type":"LineString","coordinates":[[-83.57554130000001,32.8739848],[-83.57593290000001,32.8730477],[-83.5777163,32.8722725]]},"id":"8644c0b8fffffff-17dfb10dd0bd7b2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5747862,32.875654000000004]},"id":"8f44c0b8ba2e148-13f7d51eacdc41d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5777948,32.8762563]},"id":"8f44c0b8bb48a98-17ffbdc64179c33c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8ba2e148-13f7d51eacdc41d8","8f44c0b8bb48a98-17ffbdc64179c33c"]},"geometry":{"type":"LineString","coordinates":[[-83.5747862,32.875654000000004],[-83.57542020000001,32.8751796],[-83.5755527,32.8751881],[-83.5756339,32.875252100000004],[-83.5768106,32.8762963],[-83.57698230000001,32.8763323],[-83.5771754,32.8762783],[-83.57741680000001,32.8762107],[-83.5777948,32.8762563]]},"id":"8844c0b8bbfffff-17dff196a102df82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660936,32.841614]},"id":"8f44c0b1b67349d-13dec2cb087a77fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66238600000001,32.841765]},"id":"8f44c0b1b66344a-13b7bf40c9fc2b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b67349d-13dec2cb087a77fa","8f44c0b1b66344a-13b7bf40c9fc2b70"]},"geometry":{"type":"LineString","coordinates":[[-83.660936,32.841614],[-83.661505,32.841693],[-83.662121,32.841773],[-83.662237,32.841777],[-83.66238600000001,32.841765]]},"id":"8944c0b1b67ffff-1396e1067bca537f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667985,32.794522]},"id":"8f44c0b1c7b3c29-17f6f1956ab1e033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668632,32.794694]},"id":"8f44c0b1c7b1225-17dff00108806bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c7b1225-17dff00108806bbc","8f44c0b1c7b3c29-17f6f1956ab1e033"]},"geometry":{"type":"LineString","coordinates":[[-83.667985,32.794522],[-83.668063,32.794552],[-83.668211,32.794627000000006],[-83.668272,32.794649],[-83.668318,32.794662],[-83.668632,32.794694]]},"id":"8a44c0b1c7b7fff-17b7f0cf869aca55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66399200000001,32.846024]},"id":"8f44c0a35919651-139fbb5504feb44f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624731,32.8460752]},"id":"8f44c0a3583652a-13bfbf0a56d39d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3583652a-13bfbf0a56d39d46","8f44c0a35919651-139fbb5504feb44f"]},"geometry":{"type":"LineString","coordinates":[[-83.66399200000001,32.846024],[-83.6633809,32.846030500000005],[-83.6624731,32.8460752]]},"id":"8844c0a359fffff-13bebd2fdb714ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76718600000001,32.879541]},"id":"8f44c0b5021a620-17f5bf64ce7803cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76680180000001,32.8799088]},"id":"8f44c0b502f6bb0-17d7c054e42ec878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b502f6bb0-17d7c054e42ec878","8f44c0b5021a620-17f5bf64ce7803cf"]},"geometry":{"type":"LineString","coordinates":[[-83.76718600000001,32.879541],[-83.7671845,32.879605500000004],[-83.7671784,32.879644500000005],[-83.7671682,32.8796835],[-83.7671531,32.8797212],[-83.76713260000001,32.8797555],[-83.7671011,32.8797901],[-83.76706420000001,32.879821400000004],[-83.76701580000001,32.879849300000004],[-83.76696460000001,32.8798705],[-83.76689800000001,32.8798896],[-83.76680180000001,32.8799088]]},"id":"8844c0b503fffff-1795bfb9b19be312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57678410000001,32.8563902]},"id":"8f44c0b88a88c8c-17fff03df8224408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5767706,32.8570932]},"id":"8f44c0b88a8b74a-17b7d0466310d246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a88c8c-17fff03df8224408","8f44c0b88a8b74a-17b7d0466310d246"]},"geometry":{"type":"LineString","coordinates":[[-83.57678410000001,32.8563902],[-83.57666610000001,32.856385800000005],[-83.57649980000001,32.856408300000005],[-83.57636570000001,32.856548000000004],[-83.5763282,32.8567643],[-83.5763336,32.8569535],[-83.57637650000001,32.857088700000006],[-83.5767706,32.8570932]]},"id":"8844c0b88bfffff-17d7d0fc92fd2fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66091300000001,32.8136924]},"id":"8f44c0b184e3003-17bfc2d960df2083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65954860000001,32.8136565]},"id":"8f44c0b184f3776-1797d62e22343ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184f3776-1797d62e22343ad0","8f44c0b184e3003-17bfc2d960df2083"]},"geometry":{"type":"LineString","coordinates":[[-83.66091300000001,32.8136924],[-83.659982,32.8136737],[-83.65954860000001,32.8136565]]},"id":"8944c0b184fffff-17b6d483da827735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66305050000001,32.798564500000005]},"id":"8f44c0b1ea5686b-17befda17e9a3d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea5686b-17befda17e9a3d63","8f44c0b1eae42cd-17ffbfe2aa758894"]},"geometry":{"type":"LineString","coordinates":[[-83.66305050000001,32.798564500000005],[-83.6629486,32.7985194],[-83.66257470000001,32.798578500000005],[-83.662127,32.798664]]},"id":"8844c0b1ebfffff-17defec03ec17e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65407040000001,32.802340300000004]},"id":"8f44c0b1e39d683-13f6f38e0e956f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6540868,32.8016954]},"id":"8f44c0b1e39c96d-17f7f383c17677ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e39c96d-17f7f383c17677ac","8f44c0b1e39d683-13f6f38e0e956f85"]},"geometry":{"type":"LineString","coordinates":[[-83.65407040000001,32.802340300000004],[-83.6540868,32.8016954]]},"id":"8944c0b1e3bffff-13bff388ecf1c9e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65145820000001,32.802556700000004]},"id":"8f44c0b1e74166c-13fff9eea1d9b2d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6514904,32.8016488]},"id":"8f44c0b1e744b59-17d6d9da8685b539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e74166c-13fff9eea1d9b2d4","8f44c0b1e744b59-17d6d9da8685b539"]},"geometry":{"type":"LineString","coordinates":[[-83.65145820000001,32.802556700000004],[-83.6514904,32.8016488]]},"id":"8a44c0b1e747fff-13f6d9e49d3d58f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65401700000001,32.8010329]},"id":"8f44c0b1e386736-17d7d3af64b96987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6546476,32.8010433]},"id":"8f44c0b1e3842ac-17ded22542dcae62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e386736-17d7d3af64b96987","8f44c0b1e3842ac-17ded22542dcae62"]},"geometry":{"type":"LineString","coordinates":[[-83.65401700000001,32.8010329],[-83.6546476,32.8010433]]},"id":"8a44c0b1e387fff-17ded2ea578deeda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558074,32.8009991]},"id":"8f44c0b1e3ac465-17b6ff5069bea514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6546496,32.8009846]},"id":"8f44c0b1e384385-17b7f2240017f924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e384385-17b7f2240017f924","8f44c0b1e3ac465-17b6ff5069bea514"]},"geometry":{"type":"LineString","coordinates":[[-83.6558074,32.8009991],[-83.6546496,32.8009846]]},"id":"8944c0b1e3bffff-17bff0ba351625fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6421718,32.838402200000004]},"id":"8f44c0a34028cce-1397f09aa1fa0ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64140350000001,32.838204600000005]},"id":"8f44c0a340051ae-1397f27adc61c314"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340051ae-1397f27adc61c314","8f44c0a34028cce-1397f09aa1fa0ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.6421718,32.838402200000004],[-83.64200650000001,32.8384159],[-83.64140350000001,32.838204600000005]]},"id":"8944c0a3403ffff-13d6f18ce1b60060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5892579,32.878397500000005]},"id":"8f44c0b89281810-13b771c9d6f1f6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5854868,32.8802424]},"id":"8f44c0b8964a718-17b7fafec6876d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8964a718-17b7fafec6876d24","8f44c0b89281810-13b771c9d6f1f6be"]},"geometry":{"type":"LineString","coordinates":[[-83.5892579,32.878397500000005],[-83.588462,32.8787132],[-83.58738910000001,32.8785059],[-83.5855545,32.878821300000006],[-83.5852541,32.8791096],[-83.5853828,32.8797674],[-83.5854868,32.8802424]]},"id":"8744c0b89ffffff-13d7f7b939f99b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580449,32.887024700000005]},"id":"8f44c0a16c4a70a-17b7f74b6d50c0ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5798661,32.8882458]},"id":"8f44c0a1618486b-13b7a8b7b760ec48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a16c4a70a-17b7f74b6d50c0ee","8f44c0a1618486b-13b7a8b7b760ec48"]},"geometry":{"type":"LineString","coordinates":[[-83.580449,32.887024700000005],[-83.58028660000001,32.8874347],[-83.5801795,32.8876763],[-83.58002420000001,32.8879176],[-83.5798661,32.8882458]]},"id":"8744c0a16ffffff-13bfc7f8a2da09a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58502530000001,32.8843168]},"id":"8f44c0a168a1b13-139f7c1f312e1a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5805957,32.8820508]},"id":"8f44c0a16d73151-1397c6efb7264cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a168a1b13-139f7c1f312e1a09","8f44c0a16d73151-1397c6efb7264cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.58502530000001,32.8843168],[-83.58427800000001,32.8838656],[-83.5836307,32.8834758],[-83.5831678,32.8832101],[-83.5829691,32.883110900000005],[-83.5823422,32.8829033],[-83.5816808,32.882702200000004],[-83.58130030000001,32.8825791],[-83.5810804,32.8825002],[-83.5809558,32.882436600000005],[-83.58083900000001,32.8823542],[-83.5807044,32.882204],[-83.5805957,32.8820508]]},"id":"8744c0a16ffffff-17dfc18ecffd8ee4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6203459,32.866037]},"id":"8f44c0a32a1cb0a-17ff25e3dce46f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62452800000001,32.86629]},"id":"8f44c0a32b4b0a5-17975bae05a24e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32b4b0a5-17975bae05a24e6b","8f44c0a32a1cb0a-17ff25e3dce46f66"]},"geometry":{"type":"LineString","coordinates":[[-83.6203459,32.866037],[-83.6205331,32.8658887],[-83.6206051,32.865857000000005],[-83.62067850000001,32.8658504],[-83.6207632,32.865866000000004],[-83.6213223,32.8653926],[-83.621441,32.8653524],[-83.6215992,32.865327],[-83.6219106,32.8653143],[-83.62200530000001,32.8653405],[-83.6220658,32.865377800000005],[-83.62212930000001,32.8654743],[-83.6224703,32.8653295],[-83.62276,32.865302400000004],[-83.62321060000001,32.8654286],[-83.62452800000001,32.86629]]},"id":"8844c0a32bfffff-13f7f0cb824b21d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621654,32.8541103]},"id":"8f44c0a362ee60d-17dff2b24d79a933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6231748,32.8541103]},"id":"8f44c0a3625ea8e-17dffefbc71576ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3625ea8e-17dffefbc71576ad","8f44c0a362ee60d-17dff2b24d79a933"]},"geometry":{"type":"LineString","coordinates":[[-83.621654,32.8541103],[-83.6231748,32.8541103]]},"id":"8844c0a363fffff-17dff0d705fed951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61752840000001,32.862569400000005]},"id":"8f44c0a32bb3023-1797ecc4cb48f78b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61688190000001,32.862632000000005]},"id":"8f44c0a32b94509-17bf2e58deaa864b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32b94509-17bf2e58deaa864b","8f44c0a32bb3023-1797ecc4cb48f78b"]},"geometry":{"type":"LineString","coordinates":[[-83.61752840000001,32.862569400000005],[-83.61688190000001,32.862632000000005]]},"id":"8944c0a32bbffff-17977d8eca664bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6156723,32.861041900000004]},"id":"8f44c0a328c0774-13d7314cd52a3553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61612290000001,32.859605]},"id":"8f44c0a328e612b-17d73033320e71d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328e612b-17d73033320e71d5","8f44c0a328c0774-13d7314cd52a3553"]},"geometry":{"type":"LineString","coordinates":[[-83.6156723,32.861041900000004],[-83.6155435,32.860703900000004],[-83.61564010000001,32.8605958],[-83.61612290000001,32.8598658],[-83.61612290000001,32.859605]]},"id":"8944c0a328fffff-179fb0e7c4aadb2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6175176,32.863060600000004]},"id":"8f44c0a32b95a8e-17b7eccb84d5b43a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6169069,32.862952400000005]},"id":"8f44c0a32b90d41-17f76e4930903d8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32b90d41-17f76e4930903d8f","8f44c0a32b95a8e-17b7eccb84d5b43a"]},"geometry":{"type":"LineString","coordinates":[[-83.6175176,32.863060600000004],[-83.6169069,32.862952400000005]]},"id":"8a44c0a32b97fff-17973d8a6cedb72d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6174962,32.863777]},"id":"8f44c0a32b9c466-17f7acd8e8beb20c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6167511,32.863827400000005]},"id":"8f44c0a3216d832-17972eaa913e9bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3216d832-17972eaa913e9bb6","8f44c0a32b9c466-17f7acd8e8beb20c"]},"geometry":{"type":"LineString","coordinates":[[-83.6174962,32.863777],[-83.6167511,32.863827400000005]]},"id":"8944c0a32bbffff-17976dc1c44ae15f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61736210000001,32.861744800000004]},"id":"8f44c0a32bb68c0-13ffad2cbd7969cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61732980000001,32.8623478]},"id":"8f44c0a32bb2ace-13f76d40eafe1a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32bb68c0-13ffad2cbd7969cc","8f44c0a32bb2ace-13f76d40eafe1a17"]},"geometry":{"type":"LineString","coordinates":[[-83.61736210000001,32.861744800000004],[-83.61732980000001,32.8623478]]},"id":"8a44c0a32bb7fff-13bffd36c1d69613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6148507,32.8610745]},"id":"8f44c0a328d18c4-13dfb34e5bca09ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143392,32.8605515]},"id":"8f44c0a328d4695-1797b48e064881ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328d18c4-13dfb34e5bca09ae","8f44c0a328d4695-1797b48e064881ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6148507,32.8610745],[-83.6147389,32.8607309],[-83.6143392,32.8605515]]},"id":"8a44c0a328d7fff-1797b3c8e234217b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655184,32.836394]},"id":"8f44c0b1b4cd498-179ed0d605b1b395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65414,32.836393900000004]},"id":"8f44c0b1b4dd769-179ef36287c6ad90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4cd498-179ed0d605b1b395","8f44c0b1b4dd769-179ef36287c6ad90"]},"geometry":{"type":"LineString","coordinates":[[-83.655184,32.836394],[-83.6550156,32.8364106],[-83.65414,32.836393900000004]]},"id":"8944c0b1b4fffff-179ff21c1c269eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6947787,32.801381400000004]},"id":"8f44c0b1d89eb6e-179f702b54280c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963863,32.8012105]},"id":"8f44c0b1d88c9a8-17b6fc3e95b6a294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d88c9a8-17b6fc3e95b6a294","8f44c0b1d89eb6e-179f702b54280c75"]},"geometry":{"type":"LineString","coordinates":[[-83.6947787,32.801381400000004],[-83.6953366,32.8013544],[-83.69612140000001,32.8012746],[-83.6963863,32.8012105]]},"id":"8944c0b1d8bffff-17ffee32e3b257e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6967814,32.823630900000005]},"id":"8f44c0b19868724-17f77b47aeb4e6c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69641270000001,32.823582800000004]},"id":"8f44c0b1986a88e-17d76c2e1c8a2ae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1986a88e-17d76c2e1c8a2ae3","8f44c0b19868724-17f77b47aeb4e6c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6967814,32.823630900000005],[-83.6966809,32.8234656],[-83.69641270000001,32.823582800000004]]},"id":"8a44c0b1986ffff-17b6ebac6cd5a2e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6556223,32.8455354]},"id":"8f44c0a35c25816-13ffefc41723673c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6567174,32.8460081]},"id":"8f44c0a35d51d2c-1397dd17a1c1a311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d51d2c-1397dd17a1c1a311","8f44c0a35c25816-13ffefc41723673c"]},"geometry":{"type":"LineString","coordinates":[[-83.6556223,32.8455354],[-83.65601260000001,32.8449499],[-83.6561521,32.8449048],[-83.6566081,32.8451029],[-83.65674220000001,32.8453417],[-83.65681160000001,32.8457293],[-83.6567687,32.845887000000005],[-83.6567174,32.8460081]]},"id":"8844c0a35dfffff-13d7de023b6ff45a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702831,32.8264226]},"id":"8f44c0b0a7b2765-13d67c82a2436eee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70482650000001,32.8267268]},"id":"8f44c0b0a7a17b3-179657a374e95ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a7a17b3-179657a374e95ab3","8f44c0b0a7b2765-13d67c82a2436eee"]},"geometry":{"type":"LineString","coordinates":[[-83.702831,32.8264226],[-83.7032709,32.826503800000005],[-83.7039146,32.8265128],[-83.70455840000001,32.8265398],[-83.70482650000001,32.8267268]]},"id":"8944c0b0a7bffff-1797da0551795413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059277,32.8253536]},"id":"8f44c0b0a44d31c-13b654f33d84cf3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7046935,32.8251622]},"id":"8f44c0b0a45da1c-13be77f698b3c21d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a44d31c-13b654f33d84cf3f","8f44c0b0a45da1c-13be77f698b3c21d"]},"geometry":{"type":"LineString","coordinates":[[-83.7059277,32.8253536],[-83.7057063,32.825358800000004],[-83.7055454,32.8252686],[-83.7046935,32.8251622]]},"id":"8944c0b0a47ffff-13fe5671d039848b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70249840000001,32.8288838]},"id":"8f44c0b0a6b4702-13d67d52800da805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7040364,32.8286962]},"id":"8f44c0b0a6a4926-13df79914e70db91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a6b4702-13d67d52800da805","8f44c0b0a6a4926-13df79914e70db91"]},"geometry":{"type":"LineString","coordinates":[[-83.70249840000001,32.8288838],[-83.7024233,32.8290912],[-83.7029061,32.8299296],[-83.70320650000001,32.830173],[-83.70359280000001,32.830146],[-83.70371080000001,32.829938600000006],[-83.70387170000001,32.8288117],[-83.7040364,32.8286962]]},"id":"8844c0b0a7fffff-13ff5b6bc44e909e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6566294,32.8523136]},"id":"8f44c0a351aa4f2-13fecd4ea3bac727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6574255,32.8523043]},"id":"8f44c0a351a8319-13f6fb5d1d9f2ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351a8319-13f6fb5d1d9f2ba2","8f44c0a351aa4f2-13fecd4ea3bac727"]},"geometry":{"type":"LineString","coordinates":[[-83.6566294,32.8523136],[-83.6574255,32.8523043]]},"id":"8944c0a351bffff-13f7ec55eac42388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002703,32.805395100000005]},"id":"8f44c0b1db82b83-13fff2c3125fdaa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70031270000001,32.8045786]},"id":"8f44c0b1dbb108e-17ffe2a89f7df79b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1db82b83-13fff2c3125fdaa3","8f44c0b1dbb108e-17ffe2a89f7df79b"]},"geometry":{"type":"LineString","coordinates":[[-83.7002703,32.805395100000005],[-83.7005099,32.8053453],[-83.70077280000001,32.8051875],[-83.70082640000001,32.804926],[-83.7007782,32.804714000000004],[-83.70031270000001,32.8045786]]},"id":"8944c0b1dbbffff-17ffe1e7d7357278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7022534,32.806179400000005]},"id":"8f44c0b1da3614c-13d67deba862ba51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002595,32.8060532]},"id":"8f44c0b1db9dcf4-139762c9dc939b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1db9dcf4-139762c9dc939b54","8f44c0b1da3614c-13d67deba862ba51"]},"geometry":{"type":"LineString","coordinates":[[-83.7022534,32.806179400000005],[-83.7022427,32.8057871],[-83.7023017,32.8056744],[-83.701953,32.8056609],[-83.70176520000001,32.8057421],[-83.70158280000001,32.8058367],[-83.70120200000001,32.805945],[-83.7005153,32.8060532],[-83.7002595,32.8060532]]},"id":"8844c0b1dbfffff-13b6ffcf224bf424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70466300000001,32.817639]},"id":"8f44c0b0acd6cad-17d67809a3fd45b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704791,32.817297]},"id":"8f44c0b0ac89563-17fef7b9aada5499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac89563-17fef7b9aada5499","8f44c0b0acd6cad-17d67809a3fd45b5"]},"geometry":{"type":"LineString","coordinates":[[-83.70466300000001,32.817639],[-83.704791,32.817297]]},"id":"8844c0b0adfffff-17f7d7e1a035b378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7064478,32.8167291]},"id":"8f44c0b0ac1b76b-1797f3ae2545b6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70740280000001,32.8175684]},"id":"8f44c0b0ace155b-17b651594e15bd04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac1b76b-1797f3ae2545b6bc","8f44c0b0ace155b-17b651594e15bd04"]},"geometry":{"type":"LineString","coordinates":[[-83.7064478,32.8167291],[-83.7072471,32.8167787],[-83.70746700000001,32.817013200000005],[-83.70750460000001,32.8172431],[-83.70740280000001,32.8175684]]},"id":"8844c0b0adfffff-17be51f51556b4e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901789,32.788472]},"id":"8f44c0b034cc494-179f7b663c771ef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69090770000001,32.785899300000004]},"id":"8f44c0b03408493-13d7799eb1908672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b03408493-13d7799eb1908672","8f44c0b034cc494-179f7b663c771ef4"]},"geometry":{"type":"LineString","coordinates":[[-83.6901789,32.788472],[-83.6900609,32.7884404],[-83.6900609,32.7883051],[-83.6901521,32.787768400000004],[-83.6901199,32.7874392],[-83.6901145,32.7872724],[-83.69014130000001,32.786862],[-83.6902486,32.786600400000005],[-83.6904739,32.786329800000004],[-83.6908387,32.7860457],[-83.69090770000001,32.785899300000004]]},"id":"8844c0b035fffff-13df7b286eac72e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885323,32.7825763]},"id":"8f44c0b03585665-13b67f6b5a85ceae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890978,32.781280200000005]},"id":"8f44c0b035a434d-179e7e09ee9083f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b03585665-13b67f6b5a85ceae","8f44c0b035a434d-179e7e09ee9083f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6885323,32.7825763],[-83.6887403,32.7825779],[-83.6888801,32.782572],[-83.68898630000001,32.782543700000005],[-83.68903230000001,32.782506500000004],[-83.6890915,32.7824104],[-83.6890966,32.781492400000005],[-83.6890978,32.781280200000005]]},"id":"8944c0b035bffff-179e7e454bd85bc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735769,32.861196]},"id":"8f44c0a25b4a54d-13b78c186cfdd920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25b4a54d-13b78c186cfdd920","8f44c0a25b4325c-17de8c208a71bbf7"]},"geometry":{"type":"LineString","coordinates":[[-83.73575600000001,32.86066],[-83.73573400000001,32.8609],[-83.735737,32.860985],[-83.735753,32.861128],[-83.735769,32.861196]]},"id":"8944c0a25b7ffff-13967c27049efc3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7465636,32.8896439]},"id":"8f44c0b5359db34-179ff1bdcb7f1160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74709510000001,32.889848300000004]},"id":"8f44c0b53588cc2-179ff0719a2f30b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b53588cc2-179ff0719a2f30b6","8f44c0b5359db34-179ff1bdcb7f1160"]},"geometry":{"type":"LineString","coordinates":[[-83.7465636,32.8896439],[-83.74709510000001,32.889848300000004]]},"id":"8a44c0b5358ffff-17dff117a7bc0567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624904,32.836036]},"id":"8f44c0a36951d60-13bf9ac302b7a06a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36951554-13973b1b1bd4b288","8f44c0a36951d60-13bf9ac302b7a06a"]},"geometry":{"type":"LineString","coordinates":[[-83.624904,32.836036],[-83.62476310000001,32.8361778]]},"id":"8b44c0a36951fff-13f7daef1f29638d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110348d-17fec6ebeeea8c40","8f44c0b1111d440-1396e700038f18d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6592128,32.772685],[-83.6592299,32.7723954],[-83.659245,32.772244]]},"id":"8944c0b1113ffff-1396f6f73d4e90e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62800030000001,32.837791200000005]},"id":"8f44c0a34486d44-17979333dbec887b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34486d44-17979333dbec887b","8f44c0a344b3a1a-17d733a663851799"]},"geometry":{"type":"LineString","coordinates":[[-83.62800030000001,32.837791200000005],[-83.62781700000001,32.837685]]},"id":"8944c0a344bffff-17f7536d1b8c3a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62782,32.838003]},"id":"8f44c0a344864e3-1397f3a48baafb56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344864e3-1397f3a48baafb56","8f44c0a34486741-13d71339aa60f014"]},"geometry":{"type":"LineString","coordinates":[[-83.62782,32.838003],[-83.62799100000001,32.838104]]},"id":"8b44c0a34486fff-13b7736f17230ea5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36951d60-13bf9ac302b7a06a","8f44c0a36952964-13b7bc576ca78f42"]},"geometry":{"type":"LineString","coordinates":[[-83.624904,32.836036],[-83.624786,32.836011],[-83.62445500000001,32.835883],[-83.624257,32.835825]]},"id":"8a44c0a36957fff-13ffdb8d60f692ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110348d-17fec6ebeeea8c40","8f44c0b11103425-17d7c6c02e947b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.659245,32.772244],[-83.659315,32.772184]]},"id":"8c44c0b111035ff-17ffc6d60348021a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6325139,32.810390600000005]},"id":"8f44c0bad21b6d1-179f282ed43052e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6322676,32.8114008]},"id":"8f44c0bad2c6c48-179788c8c1434482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0bad21b6d1-179f282ed43052e9","8f44c0bad2c6c48-179788c8c1434482"]},"geometry":{"type":"LineString","coordinates":[[-83.6325139,32.810390600000005],[-83.63249250000001,32.8108821],[-83.63253,32.8112427],[-83.6324281,32.8113509],[-83.6322676,32.8114008]]},"id":"8944c0bad2fffff-1797e843d967fa17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55928800000001,32.872231]},"id":"8f44c0b8b566b4b-139ffaf50224c4fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b566b4b-139ffaf50224c4fc","8f44c0b8b405951-17dfc326590b6023"]},"geometry":{"type":"LineString","coordinates":[[-83.55928800000001,32.872231],[-83.559189,32.872282000000006],[-83.55593230000001,32.8739772]]},"id":"8844c0b8b5fffff-17bfff0dcc7644f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570076,32.864317]},"id":"8f44c0b8b931c14-13d7a09e847bf4d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8b931c14-13d7a09e847bf4d7","8f44c0b8b91000b-13d7a2f10da03112"]},"geometry":{"type":"LineString","coordinates":[[-83.570076,32.864317],[-83.5696992,32.864618400000005],[-83.5693597,32.864887700000004],[-83.56912480000001,32.8651554]]},"id":"8944c0b8b93ffff-13d7a1d17d612825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54613830000001,32.886711500000004]},"id":"8f44c0aa4225484-17f7fb0f9a5ae56f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5451171,32.8849802]},"id":"8f44c0aa431102c-13bffd8dd2bb73d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa431102c-13bffd8dd2bb73d0","8f44c0aa4225484-17f7fb0f9a5ae56f"]},"geometry":{"type":"LineString","coordinates":[[-83.54613830000001,32.886711500000004],[-83.5451171,32.8849802]]},"id":"8844c0aa43fffff-17d7fc4ebb2d5216"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5457736,32.8868663]},"id":"8f44c0aa4220443-17d7fbf381b63b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5447255,32.885144700000005]},"id":"8f44c0aa4313a8a-139ffe8294a2d04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4220443-17d7fbf381b63b61","8f44c0aa4313a8a-139ffe8294a2d04a"]},"geometry":{"type":"LineString","coordinates":[[-83.5457736,32.8868663],[-83.5447255,32.885144700000005]]},"id":"8844c0aa43fffff-17bffd3b16931b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5454012,32.8870565]},"id":"8f44c0aa4222740-17dfdcdc4752e51b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54434540000001,32.8853316]},"id":"8f44c0aa43add83-1397df702f7d1d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4222740-17dfdcdc4752e51b","8f44c0aa43add83-1397df702f7d1d22"]},"geometry":{"type":"LineString","coordinates":[[-83.5454012,32.8870565],[-83.54434540000001,32.8853316]]},"id":"8844c0aa43fffff-17bfde26320124eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54465640000001,32.8874305]},"id":"8f44c0aa4206426-13b7deadcb8d4c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5434027,32.885348300000004]},"id":"8f44c0aa43ae4d2-139ff1bd50dfa190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa43ae4d2-139ff1bd50dfa190","8f44c0aa4206426-13b7deadcb8d4c61"]},"geometry":{"type":"LineString","coordinates":[[-83.54465640000001,32.8874305],[-83.5434027,32.885348300000004]]},"id":"8844c0aa43fffff-17bfe03593bb9c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5496128,32.888397600000005]},"id":"8f44c0aa43498e8-1397d2940db3bab9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5470751,32.886263400000004]},"id":"8f44c0aa4309332-17dff8c6103a825b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa43498e8-1397d2940db3bab9","8f44c0aa4309332-17dff8c6103a825b"]},"geometry":{"type":"LineString","coordinates":[[-83.5496128,32.888397600000005],[-83.5485417,32.8874982],[-83.5480976,32.88712],[-83.54799270000001,32.887030700000004],[-83.5475435,32.8866632],[-83.54722100000001,32.8863408],[-83.5470751,32.886263400000004]]},"id":"8844c0aa43fffff-13f7d5ad098052b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69627030000001,32.9139598]},"id":"8f44c0a0536ed64-13feec8719922473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964133,32.9137694]},"id":"8f44c0a05361050-1397ec2dbf64fba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0536ed64-13feec8719922473","8f44c0a05361050-1397ec2dbf64fba9"]},"geometry":{"type":"LineString","coordinates":[[-83.69627030000001,32.9139598],[-83.6964133,32.9137694]]},"id":"8a44c0a05367fff-13bf6c5a6dd51594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6961115,32.9137963]},"id":"8f44c0a05363b03-1396fcea58990941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69570110000001,32.913545400000004]},"id":"8f44c0a05362aa9-13f7edeaddd9321f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05362aa9-13f7edeaddd9321f","8f44c0a05363b03-1396fcea58990941"]},"geometry":{"type":"LineString","coordinates":[[-83.6961115,32.9137963],[-83.69570110000001,32.913545400000004]]},"id":"8a44c0a05367fff-13d67d6a921cef72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69605580000001,32.9142414]},"id":"8f44c0a05345b66-13beed0d2a019945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962208,32.9140383]},"id":"8f44c0a0536ec73-13bffca60be2dd08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05345b66-13beed0d2a019945","8f44c0a0536ec73-13bffca60be2dd08"]},"geometry":{"type":"LineString","coordinates":[[-83.69605580000001,32.9142414],[-83.6962208,32.9140383]]},"id":"8b44c0a0536efff-13ff7cd99af8af64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6958551,32.913819000000004]},"id":"8f44c0a053630a4-13b6ed8a9a427dca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69569840000001,32.9140036]},"id":"8f44c0a05344a68-13966dec8a6ccb05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a053630a4-13b6ed8a9a427dca","8f44c0a05344a68-13966dec8a6ccb05"]},"geometry":{"type":"LineString","coordinates":[[-83.6958551,32.913819000000004],[-83.69569840000001,32.9140036]]},"id":"8944c0a0537ffff-13defdbb88057804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70077590000001,32.9273411]},"id":"8f44c0a2a702b96-13b6718712dcc944"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7001276,32.926351000000004]},"id":"8f44c0a2a732043-17bf631c465045f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a702b96-13b6718712dcc944","8f44c0a2a732043-17bf631c465045f7"]},"geometry":{"type":"LineString","coordinates":[[-83.70077590000001,32.9273411],[-83.70070460000001,32.9273727],[-83.7006173,32.927411500000005],[-83.7005683,32.9274587],[-83.70049,32.927497800000005],[-83.7004189,32.9275204],[-83.7002623,32.9275492],[-83.7000982,32.9275656],[-83.70007620000001,32.9274793],[-83.7001276,32.927444300000005],[-83.7001815,32.9273827],[-83.70019860000001,32.9273436],[-83.7000419,32.9267004],[-83.7000615,32.9265956],[-83.7001276,32.926351000000004]]},"id":"8944c0a2a73ffff-13b7e2db3fd57847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69960160000001,32.9264376]},"id":"8f44c0a2a4490e4-17ffe465043b36b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69941510000001,32.9258188]},"id":"8f44c0a2a44c21a-17fee4d99cbe3d76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a4490e4-17ffe465043b36b6","8f44c0a2a44c21a-17fee4d99cbe3d76"]},"geometry":{"type":"LineString","coordinates":[[-83.69960160000001,32.9264376],[-83.69941510000001,32.9258188]]},"id":"8a44c0a2a44ffff-17be649f59d0d92c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69995300000001,32.9263805]},"id":"8f44c0a2a7327ac-17dff389630a7387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699731,32.9254673]},"id":"8f44c0a2a46bcd9-179774142f531a7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a46bcd9-179774142f531a7e","8f44c0a2a7327ac-17dff389630a7387"]},"geometry":{"type":"LineString","coordinates":[[-83.69995300000001,32.9263805],[-83.699731,32.9254673]]},"id":"8744c0a2affffff-17be73cecf94efad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7010774,32.928455]},"id":"8f44c0a2a70a402-17de60caab4ffdc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7029181,32.933503200000004]},"id":"8f44c0a2a64e6a8-13bfdc4c37cb5e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a70a402-17de60caab4ffdc4","8f44c0a2a64e6a8-13bfdc4c37cb5e0b"]},"geometry":{"type":"LineString","coordinates":[[-83.7010774,32.928455],[-83.70114190000001,32.9287118],[-83.7012411,32.9291065],[-83.701313,32.9292609],[-83.7014882,32.929875800000005],[-83.70158020000001,32.9302906],[-83.70161180000001,32.9304016],[-83.70163760000001,32.9305439],[-83.70164630000001,32.930746400000004],[-83.70161750000001,32.9308791],[-83.70163760000001,32.9310117],[-83.7017095,32.931105800000005],[-83.70178130000001,32.9311588],[-83.70183300000001,32.9312191],[-83.7018934,32.931318000000005],[-83.7022381,32.9326564],[-83.70249390000001,32.933739200000005],[-83.70262770000001,32.933722100000004],[-83.7026692,32.9337126],[-83.70270070000001,32.9337054],[-83.7028128,32.9336331],[-83.7029181,32.933503200000004]]},"id":"8844c0a2a7fffff-13d65ed9313d62eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7024378,32.924719200000006]},"id":"8f44c0a2a081233-13bfdd786f36de34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7015023,32.925080200000004]},"id":"8f44c0a2a09d59b-179f7fc11b7a07cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a2a09d59b-179f7fc11b7a07cc","8f44c0a2a081233-13bfdd786f36de34"]},"geometry":{"type":"LineString","coordinates":[[-83.7024378,32.924719200000006],[-83.7015023,32.925080200000004]]},"id":"8944c0a2a0bffff-17be5e9ccea3345b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70122160000001,32.9245888]},"id":"8f44c0a2a091361-13fe6070814c59aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70185640000001,32.9243383]},"id":"8f44c0a2a080785-13df7ee3ca2817a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a091361-13fe6070814c59aa","8f44c0a2a080785-13df7ee3ca2817a9"]},"geometry":{"type":"LineString","coordinates":[[-83.70122160000001,32.9245888],[-83.70185640000001,32.9243383]]},"id":"8944c0a2a0bffff-139fffaa2c4beb6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6152,32.8592255]},"id":"8f44c0a328f4d2b-13d7f274006dab2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3288d1ac-17bff4b90734d0f2","8f44c0a328f4d2b-13d7f274006dab2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6152,32.8592255],[-83.6150406,32.8593168],[-83.614914,32.8594181],[-83.6147603,32.859489],[-83.6146307,32.859527],[-83.61427040000001,32.859591900000005]]},"id":"8844c0a329fffff-17f7b38ba976153e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7250786,32.8101732]},"id":"8f44c0b0e264329-17966631ef79840d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7251925,32.8104099]},"id":"8f44c0b0e265092-17be35eabb4f3ad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e265092-17be35eabb4f3ad2","8f44c0b0e264329-17966631ef79840d"]},"geometry":{"type":"LineString","coordinates":[[-83.7250786,32.8101732],[-83.7251925,32.8104099]]},"id":"8a44c0b0e267fff-17f6660e52cd9a33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e264c4c-139e3692edc36f4d","8f44c0b0e264329-17966631ef79840d"]},"geometry":{"type":"LineString","coordinates":[[-83.72492340000001,32.809974700000005],[-83.7250786,32.8101732]]},"id":"8b44c0b0e264fff-13de66626e7dd80b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71909000000001,32.813451]},"id":"8f44c0b0a929051-1796f4d0c5e20737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7202082,32.8131263]},"id":"8f44c0b0e2d8b33-13dff215e2f91f0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e2d8b33-13dff215e2f91f0a","8f44c0b0a929051-1796f4d0c5e20737"]},"geometry":{"type":"LineString","coordinates":[[-83.71909000000001,32.813451],[-83.7192979,32.8133946],[-83.7200337,32.812993],[-83.72011950000001,32.813007],[-83.720179,32.813051],[-83.7202082,32.8131263]]},"id":"8644c0b0fffffff-13fff362ee3ab8de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971793,32.8176842]},"id":"8f44c0b1d2c398d-17feea4ef38b63c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ea5ab-17bf68aeef989211","8f44c0b1d2c398d-17feea4ef38b63c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6971793,32.8176842],[-83.697293,32.817646],[-83.69750710000001,32.817601],[-83.6976648,32.817610900000005],[-83.697845,32.817586]]},"id":"8a44c0b1d2c7fff-17d6f98094be902b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908463,32.8166403]},"id":"8f44c0b1d65c2eb-13f679c510eb69e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908317,32.8168519]},"id":"8f44c0b1d658a23-17f679ce34bc1e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65c2eb-13f679c510eb69e2","8f44c0b1d658a23-17f679ce34bc1e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.6908463,32.8166403],[-83.6908317,32.8168519]]},"id":"8a44c0b1d65ffff-17b679c9ac0cb978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909814,32.8167137]},"id":"8f44c0b1d65d542-179e7970a17d7995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d658a23-17f679ce34bc1e8d","8f44c0b1d65d542-179e7970a17d7995"]},"geometry":{"type":"LineString","coordinates":[[-83.6908317,32.8168519],[-83.6909814,32.8167137]]},"id":"8a44c0b1d65ffff-17bf799f714e9d90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6912252,32.8165757]},"id":"8f44c0b1d65d826-13b7f8d8474557a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69133380000001,32.8163751]},"id":"8f44c0b1d643335-13be7894603e11af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65d826-13b7f8d8474557a3","8f44c0b1d643335-13be7894603e11af"]},"geometry":{"type":"LineString","coordinates":[[-83.6912252,32.8165757],[-83.6912563,32.8164713],[-83.69133380000001,32.8163751]]},"id":"8944c0b1d67ffff-13f7f8bc8993d501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69106400000001,32.8163671]},"id":"8f44c0b1d6437b4-13b7793d077dd00d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6437b4-13b7793d077dd00d","8f44c0b1d643335-13be7894603e11af"]},"geometry":{"type":"LineString","coordinates":[[-83.69133380000001,32.8163751],[-83.6911997,32.816394700000004],[-83.69106400000001,32.8163671]]},"id":"8b44c0b1d643fff-13bf78e8e16430fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960744,32.8192606]},"id":"8f44c0b1997540a-13d7ed018a506c0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69663100000001,32.8196936]},"id":"8f44c0b19962391-13d6eba5a7204565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1997540a-13d7ed018a506c0f","8f44c0b19962391-13d6eba5a7204565"]},"geometry":{"type":"LineString","coordinates":[[-83.6960744,32.8192606],[-83.6962615,32.8194199],[-83.6964461,32.819552300000005],[-83.69663100000001,32.8196936]]},"id":"8944c0b1997ffff-13df6c55421a3c8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935103,32.820494000000004]},"id":"8f44c0b19823c10-17def3441e6505a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693543,32.8200823]},"id":"8f44c0b19826261-17d7732faef14ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19823c10-17def3441e6505a7","8f44c0b19826261-17d7732faef14ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.6935103,32.820494000000004],[-83.6935196,32.8203775],[-83.6935311,32.8202323],[-83.693543,32.8200823]]},"id":"8a44c0b19827fff-17de7339df9d95e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69340290000001,32.8200821]},"id":"8f44c0b1982628a-17d773873491a04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69337990000001,32.8204961]},"id":"8f44c0b19822276-17de73959d81ef0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19822276-17de73959d81ef0b","8f44c0b1982628a-17d773873491a04d"]},"geometry":{"type":"LineString","coordinates":[[-83.69340290000001,32.8200821],[-83.6934001,32.8202535],[-83.69339520000001,32.8203383],[-83.69337990000001,32.8204961]]},"id":"8a44c0b19827fff-17def38bedfcafc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7842512,32.922998400000004]},"id":"8f44c0b58400cf6-179f95bb064ebd79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7668854,32.9260412]},"id":"8f44c0b5a1b38a0-17f7c020aa3f5ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5a1b38a0-17f7c020aa3f5ee9","8f44c0b58400cf6-179f95bb064ebd79"]},"geometry":{"type":"LineString","coordinates":[[-83.7842512,32.922998400000004],[-83.7815707,32.9244566],[-83.78153250000001,32.924480200000005],[-83.78100260000001,32.9247661],[-83.7807293,32.924859000000005],[-83.78040460000001,32.924944],[-83.77947350000001,32.925102800000005],[-83.7790114,32.925205500000004],[-83.7787636,32.9252914],[-83.7785205,32.9254233],[-83.7783194,32.9255847],[-83.7781336,32.9257812],[-83.77782230000001,32.926227100000006],[-83.7778014,32.926257],[-83.7775775,32.9264834],[-83.7773185,32.9266628],[-83.77702020000001,32.9268134],[-83.7766878,32.926908700000006],[-83.77665180000001,32.926919000000005],[-83.7764508,32.9269533],[-83.7764111,32.9269601],[-83.7761423,32.926981500000004],[-83.77558950000001,32.926958500000005],[-83.77518640000001,32.9269095],[-83.7747927,32.926788],[-83.774461,32.9266663],[-83.77413870000001,32.926497600000005],[-83.7738887,32.926351600000004],[-83.7736713,32.9261702],[-83.77261150000001,32.9250891],[-83.772417,32.9249559],[-83.7722976,32.924874100000004],[-83.7721154,32.924791],[-83.7719191,32.924747],[-83.77155880000001,32.924754400000005],[-83.77117790000001,32.9248374],[-83.77054150000001,32.9251473],[-83.7699082,32.9254917],[-83.7693053,32.925728400000004],[-83.76905550000001,32.9257932],[-83.7689854,32.9258114],[-83.768494,32.925882800000004],[-83.768054,32.9259464],[-83.7674465,32.926056800000005],[-83.7668854,32.9260412]]},"id":"8644c0b5fffffff-17fdaaaf2f82312d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7356953,32.9258168]},"id":"8f44c0a2835c783-17ff8c467f8c33f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7363152,32.925741900000006]},"id":"8f44c0a2834374c-17bebac3066b3130"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834374c-17bebac3066b3130","8f44c0a2835c783-17ff8c467f8c33f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7356953,32.9258168],[-83.7357783,32.926227000000004],[-83.7361743,32.9261611],[-83.7363028,32.9261132],[-83.73633840000001,32.926029400000004],[-83.7363242,32.925939500000005],[-83.7363313,32.9258137],[-83.7363152,32.925741900000006]]},"id":"8944c0a2837ffff-1796eb7682eba327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7360743,32.9255992]},"id":"8f44c0a28343484-17f78b599f88e3df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73613280000001,32.9248366]},"id":"8f44c0a28346153-1796eb35057fb8a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28343484-17f78b599f88e3df","8f44c0a28346153-1796eb35057fb8a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7360743,32.9255992],[-83.73613280000001,32.9248366]]},"id":"8a44c0a28347fff-17f73b475d9e7d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7357566,32.9248345]},"id":"8f44c0a28355874-17979c2026a8b9d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7356944,32.925659800000005]},"id":"8f44c0a2835c508-179f6c4701d9c9b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835c508-179f6c4701d9c9b2","8f44c0a28355874-17979c2026a8b9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7357566,32.9248345],[-83.7356944,32.925659800000005]]},"id":"8944c0a2837ffff-17978c3399882998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7371468,32.922356400000005]},"id":"8f44c0a28ac06d3-17fec8bb4666aa47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368393,32.9220105]},"id":"8f44c0a28ac66e1-17b6997b7d6aa29c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac66e1-17b6997b7d6aa29c","8f44c0a28ac06d3-17fec8bb4666aa47"]},"geometry":{"type":"LineString","coordinates":[[-83.7371468,32.922356400000005],[-83.7368393,32.9220105]]},"id":"8a44c0a28ac7fff-179eb91b60e32df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368563,32.9249006]},"id":"8f44c0a28345c22-17bee970dd2a0abb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376083,32.925370300000004]},"id":"8f44c0a283687b3-17d6779addf25811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28345c22-17bee970dd2a0abb","8f44c0a283687b3-17d6779addf25811"]},"geometry":{"type":"LineString","coordinates":[[-83.7368563,32.9249006],[-83.7376083,32.925370300000004]]},"id":"8944c0a2837ffff-17d7b885dc3a8c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7383782,32.9228858]},"id":"8f44c0a28aeb6c4-17d7a5b9a8436e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7379138,32.9223307]},"id":"8f44c0a28aea588-17feb6dbe20200a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeb6c4-17d7a5b9a8436e12","8f44c0a28aea588-17feb6dbe20200a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7383782,32.9228858],[-83.7379138,32.9223307]]},"id":"8944c0a28afffff-1796364ace06d469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73888500000001,32.9225462]},"id":"8f44c0a28ae9561-17ff647ceeceea56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73842900000001,32.9219981]},"id":"8f44c0a28aeeaf1-179ed599ec2f2c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ae9561-17ff647ceeceea56","8f44c0a28aeeaf1-179ed599ec2f2c68"]},"geometry":{"type":"LineString","coordinates":[[-83.73888500000001,32.9225462],[-83.73842900000001,32.9219981]]},"id":"8a44c0a28aeffff-17d6250b63d1a50b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73550110000001,32.925690700000004]},"id":"8f44c0a2835e82b-179ebcbfd717c8c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735568,32.9248227]},"id":"8f44c0a28355c70-13fe3c9603e3ddbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835e82b-179ebcbfd717c8c3","8f44c0a28355c70-13fe3c9603e3ddbd"]},"geometry":{"type":"LineString","coordinates":[[-83.73550110000001,32.925690700000004],[-83.735568,32.9248227]]},"id":"8944c0a2837ffff-179f7caaeb52f8b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735111,32.9257529]},"id":"8f44c0a2835e595-17d79db3a5c42043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73518580000001,32.9248014]},"id":"8f44c0a28354673-13f6ed84ef113b2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28354673-13f6ed84ef113b2b","8f44c0a2835e595-17d79db3a5c42043"]},"geometry":{"type":"LineString","coordinates":[[-83.735111,32.9257529],[-83.73518580000001,32.9248014]]},"id":"8944c0a2837ffff-179e4d9c43ffe420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73874330000001,32.9226528]},"id":"8f44c0a28aebb2d-17b604d579e31bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7385502,32.922778300000004]},"id":"8f44c0a28aeb3a4-1796754e26df3559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeb3a4-1796754e26df3559","8f44c0a28aebb2d-17b604d579e31bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.73874330000001,32.9226528],[-83.7385502,32.922778300000004]]},"id":"8a44c0a28aeffff-17df4511cc412a85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834374c-17bebac3066b3130","8f44c0a2835c783-17ff8c467f8c33f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7363152,32.925741900000006],[-83.73624570000001,32.9257195],[-83.7356953,32.9258168]]},"id":"8944c0a2837ffff-17de6b8410e5ac3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7371821,32.9277098]},"id":"8f44c0a2826c908-139ea8a53158815c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368409,32.927622]},"id":"8f44c0a28261af3-13d7c97a702c60f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826c908-139ea8a53158815c","8f44c0a28261af3-13d7c97a702c60f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7371821,32.9277098],[-83.7371174,32.927542100000004],[-83.73704430000001,32.9275621],[-83.7368409,32.927622]]},"id":"8944c0a2827ffff-13d728fb2eec0278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73827770000001,32.9221464]},"id":"8f44c0a28aea920-17f785f872b37bed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aebb2d-17b604d579e31bf0","8f44c0a28aea920-17f785f872b37bed"]},"geometry":{"type":"LineString","coordinates":[[-83.73827770000001,32.9221464],[-83.73874330000001,32.9226528]]},"id":"8a44c0a28aeffff-1797c566fc391646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7424967,32.9281328]},"id":"8f44c0a29c0a2d1-1797fbab96dde090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7418141,32.927803000000004]},"id":"8f44c0a29c19db3-13d5fd5639e1064a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c19db3-13d5fd5639e1064a","8f44c0a29c0a2d1-1797fbab96dde090"]},"geometry":{"type":"LineString","coordinates":[[-83.7424967,32.9281328],[-83.7420888,32.9278629],[-83.7419818,32.927827],[-83.7418141,32.927803000000004]]},"id":"8944c0a29c3ffff-1397fc78cd4d385f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7351198,32.9235022]},"id":"8f44c0a2832b0c0-13d6edae2da1d11b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354913,32.922336]},"id":"8f44c0a28ad229a-17fe0cc5f6c68e50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2832b0c0-13d6edae2da1d11b","8f44c0a28ad229a-17fe0cc5f6c68e50"]},"geometry":{"type":"LineString","coordinates":[[-83.7351198,32.9235022],[-83.73513240000001,32.9234239],[-83.73509960000001,32.922837300000005],[-83.7351349,32.922742],[-83.7351879,32.922670000000004],[-83.7354913,32.922336]]},"id":"8944c0a2833ffff-17bf5d7df7426860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7289052,32.923842300000004]},"id":"8f44c0a2839225d-139f7cda4fb32c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7301195,32.923111]},"id":"8f44c0a28386d1a-17d679e35312a050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2839225d-139f7cda4fb32c18","8f44c0a28386d1a-17d679e35312a050"]},"geometry":{"type":"LineString","coordinates":[[-83.7289052,32.923842300000004],[-83.72904840000001,32.9237515],[-83.729225,32.923717700000005],[-83.7301195,32.923111]]},"id":"8944c0a283bffff-13d79b5875e5c458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7311272,32.9232433]},"id":"8f44c0a283a3759-13b7176d87d52f01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7300676,32.9239125]},"id":"8f44c0a28382661-13d75a03c894a7b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283a3759-13b7176d87d52f01","8f44c0a28382661-13d75a03c894a7b3"]},"geometry":{"type":"LineString","coordinates":[[-83.7311272,32.9232433],[-83.73102630000001,32.923590600000004],[-83.7309556,32.9237261],[-83.7300676,32.9239125]]},"id":"8944c0a283bffff-13d65874365a0e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71508180000001,32.9139399]},"id":"8f44c0a2e2c8525-13fe7e99ebeed743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715096,32.913226900000005]},"id":"8f44c0a2e2c18c9-17befe91074827f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e2c18c9-17befe91074827f3","8f44c0a2e2c8525-13fe7e99ebeed743"]},"geometry":{"type":"LineString","coordinates":[[-83.71508180000001,32.9139399],[-83.715096,32.913226900000005]]},"id":"8944c0a2e2fffff-139fbe9573d2bc04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76563420000001,32.8803014]},"id":"8f44c0b50288621-17dde32ea9962b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76590060000001,32.880037200000004]},"id":"8f44c0b5028894c-17b7c288234742e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50288621-17dde32ea9962b8c","8f44c0b5028894c-17b7c288234742e2"]},"geometry":{"type":"LineString","coordinates":[[-83.76563420000001,32.8803014],[-83.7657406,32.8801602],[-83.76581870000001,32.8801002],[-83.76590060000001,32.880037200000004]]},"id":"8b44c0b50288fff-17f5c2e10c211084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7574306,32.884909400000005]},"id":"8f44c0b53d59b5c-139df735e036811f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7574378,32.8840919]},"id":"8f44c0b53d430ec-139df73161c09c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d430ec-139df73161c09c68","8f44c0b53d59b5c-139df735e036811f"]},"geometry":{"type":"LineString","coordinates":[[-83.7574306,32.884909400000005],[-83.7574378,32.8840919]]},"id":"8944c0b53d7ffff-139df733a03eb3be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7599452,32.876491800000004]},"id":"8f44c0b50620c4d-17fff1124881d860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75965120000001,32.8764817]},"id":"8f44c0b506262de-17fdd1ca09e53a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50620c4d-17fff1124881d860","8f44c0b506262de-17fdd1ca09e53a8f"]},"geometry":{"type":"LineString","coordinates":[[-83.7599452,32.876491800000004],[-83.75965120000001,32.8764817]]},"id":"8a44c0b50627fff-17fdd16e25058187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75708,32.8810057]},"id":"8f44c0b506d3376-1395d81105c9bae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7571061,32.8798272]},"id":"8f44c0b506d4d1e-17b5d800b9a55ccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506d3376-1395d81105c9bae1","8f44c0b506d4d1e-17b5d800b9a55ccc"]},"geometry":{"type":"LineString","coordinates":[[-83.75708,32.8810057],[-83.7571061,32.8798272]]},"id":"8a44c0b506d7fff-1795d808dbc0945d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7568165,32.8849023]},"id":"8f44c0b53d5b80b-1397f8b5b98df82a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75683550000001,32.8840787]},"id":"8f44c0b53d5ccd9-1395f8a9dd233c23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d5ccd9-1395f8a9dd233c23","8f44c0b53d5b80b-1397f8b5b98df82a"]},"geometry":{"type":"LineString","coordinates":[[-83.7568165,32.8849023],[-83.75683550000001,32.8840787]]},"id":"8a44c0b53d5ffff-1397d8afc360da16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761278,32.8760044]},"id":"8f44c0b50709a43-17dfcdd148ef1c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7610186,32.8760023]},"id":"8f44c0b507090c3-17ddfe736a8bbc1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b507090c3-17ddfe736a8bbc1d","8f44c0b50709a43-17dfcdd148ef1c88"]},"geometry":{"type":"LineString","coordinates":[[-83.761278,32.8760044],[-83.7610186,32.8760023]]},"id":"8b44c0b50709fff-17dfee225ef818b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762838,32.8768982]},"id":"8f44c0b50741da4-17fdea0247af1017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7624646,32.8772347]},"id":"8f44c0b50743015-17dffaeba47fb71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50743015-17dffaeba47fb71e","8f44c0b50741da4-17fdea0247af1017"]},"geometry":{"type":"LineString","coordinates":[[-83.762838,32.8768982],[-83.7624646,32.8772347]]},"id":"8a44c0b50747fff-17f7da76f89b6c5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69181780000001,32.911645400000005]},"id":"8f44c0a05315da2-13d67765e2c7ab4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6920017,32.9113963]},"id":"8f44c0a0533319e-13b6f6f2fc277c30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05315da2-13d67765e2c7ab4c","8f44c0a0533319e-13b6f6f2fc277c30"]},"geometry":{"type":"LineString","coordinates":[[-83.69181780000001,32.911645400000005],[-83.6920017,32.9113963]]},"id":"8944c0a0533ffff-1396f72c6de119df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824778,32.924044900000005]},"id":"8f44c0a0189b418-139e9e336a436d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68206830000001,32.9211261]},"id":"8f44c0a01d6b6da-13f7df335c02a2d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0189b418-139e9e336a436d58","8f44c0a01d6b6da-13f7df335c02a2d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6824778,32.924044900000005],[-83.6820639,32.9241173],[-83.68192090000001,32.9241091],[-83.6818248,32.924049100000005],[-83.681746,32.9239395],[-83.68174110000001,32.9236768],[-83.6819308,32.9232114],[-83.6820639,32.923017],[-83.6822068,32.9229198],[-83.6823226,32.922932200000005],[-83.6826552,32.9229611],[-83.6827612,32.922905300000004],[-83.6828327,32.9227936],[-83.6828327,32.9225723],[-83.6827267,32.9223799],[-83.68238670000001,32.9217594],[-83.68206830000001,32.9211261]]},"id":"8744c0a01ffffff-17beceb3d3b2775d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66637870000001,32.9119254]},"id":"8f44c0a00150306-1797f5815e0de76f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666574,32.9119254]},"id":"8f44c0a001556e3-1797f4d32cb0715a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a001556e3-1797f4d32cb0715a","8f44c0a00150306-1797f5815e0de76f"]},"geometry":{"type":"LineString","coordinates":[[-83.66637870000001,32.9119254],[-83.6666574,32.9119254]]},"id":"8a44c0a00157fff-1797f52a3b86a44f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66629280000001,32.910415]},"id":"8f44c0a0012b299-13d7f5b70e69a9d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66704770000001,32.9104392]},"id":"8f44c0a001740b1-13f6b3df33e82d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0012b299-13d7f5b70e69a9d2","8f44c0a001740b1-13f6b3df33e82d72"]},"geometry":{"type":"LineString","coordinates":[[-83.66629280000001,32.910415],[-83.66704770000001,32.9104392]]},"id":"8844c0a001fffff-13def4cb1891ecf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663752,32.912943500000004]},"id":"8f44c0a0015ac48-17ffb5838a11fb3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667201,32.9129376]},"id":"8f44c0a00158472-17feb4abf531b090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0015ac48-17ffb5838a11fb3b","8f44c0a00158472-17feb4abf531b090"]},"geometry":{"type":"LineString","coordinates":[[-83.6663752,32.912943500000004],[-83.6667201,32.9129376]]},"id":"8a44c0a0015ffff-17fff517b0febdc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663808,32.9113169]},"id":"8f44c0a00154c4c-1397b58000186b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66734740000001,32.9113227]},"id":"8f44c0a0017176a-139eb323e5389e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0017176a-139eb323e5389e05","8f44c0a00154c4c-1397b58000186b3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6663808,32.9113169],[-83.66734740000001,32.9113227]]},"id":"8944c0a0017ffff-1396f451f5e05b41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6634719,32.9109087]},"id":"8f44c0a001a904c-1397fc9a18379212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645457,32.911281800000005]},"id":"8f44c0a00026c54-13ffb9faf90b293a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a00026c54-13ffb9faf90b293a","8f44c0a001a904c-1397fc9a18379212"]},"geometry":{"type":"LineString","coordinates":[[-83.6634719,32.9109087],[-83.66435050000001,32.9110828],[-83.6645457,32.911281800000005]]},"id":"8844c0a001fffff-13debb37e2e16e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663834,32.9105788]},"id":"8f44c0a0010db24-13b7f57e61c84fd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66550050000001,32.9112935]},"id":"8f44c0a0010b709-13f6f7a63ae534e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0010b709-13f6f7a63ae534e7","8f44c0a0010db24-13b7f57e61c84fd4"]},"geometry":{"type":"LineString","coordinates":[[-83.6663834,32.9105788],[-83.66615560000001,32.9106967],[-83.66550050000001,32.9112935]]},"id":"8944c0a0013ffff-139ff69b980398e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6641414,32.9158994]},"id":"8f44c0a000ea56c-17b7baf7a01be687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66326190000001,32.914791900000004]},"id":"8f44c0a000f191b-1396fd1d55954563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a000ea56c-17b7baf7a01be687","8f44c0a000f191b-1396fd1d55954563"]},"geometry":{"type":"LineString","coordinates":[[-83.6641414,32.9158994],[-83.6641623,32.914921],[-83.66412050000001,32.9148274],[-83.6640369,32.914804000000004],[-83.66326190000001,32.914791900000004]]},"id":"8944c0a000fffff-17defb70cd0a84d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66544490000001,32.9101376]},"id":"8f44c0a001012b6-13b6b7c8f70b7229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6642899,32.9101359]},"id":"8f44c0a0011c513-13b6fa9adebd7b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a001012b6-13b6b7c8f70b7229","8f44c0a0011c513-13b6fa9adebd7b03"]},"geometry":{"type":"LineString","coordinates":[[-83.66544490000001,32.9101376],[-83.6652356,32.9104509],[-83.6649987,32.9104392],[-83.66476870000001,32.9104509],[-83.6645735,32.910521100000004],[-83.6642899,32.9101359]]},"id":"8944c0a0013ffff-13bfb9352895736d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6605693,32.8984225]},"id":"8f44c0a04694130-139ed3b03db5bc4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6614471,32.9037481]},"id":"8f44c0a00d0b210-139ed18b9e31b6df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a00d0b210-139ed18b9e31b6df","8f44c0a04694130-139ed3b03db5bc4e"]},"geometry":{"type":"LineString","coordinates":[[-83.6605693,32.8984225],[-83.66076600000001,32.898723100000005],[-83.6610031,32.8990662],[-83.66139650000001,32.9001333],[-83.6615629,32.9004467],[-83.6617848,32.900705],[-83.66211770000001,32.9009549],[-83.6623447,32.9010861],[-83.6625817,32.901192],[-83.6628087,32.901408],[-83.66298520000001,32.9016832],[-83.66304070000001,32.901979600000004],[-83.6630004,32.902208300000005],[-83.6629247,32.902466600000004],[-83.66276830000001,32.9026614],[-83.66238,32.9030044],[-83.6614471,32.9037481]]},"id":"8644c0a07ffffff-13dfe04a53049cfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6312946,32.9024829]},"id":"8f44c0a15a1548d-17f7db28ebe5ad76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317693,32.9057418]},"id":"8f44c0a15ac0a66-17ffaa003f195873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a15a1548d-17f7db28ebe5ad76","8f44c0a15ac0a66-17ffaa003f195873"]},"geometry":{"type":"LineString","coordinates":[[-83.6312946,32.9024829],[-83.63142380000001,32.9025892],[-83.63214,32.9031672],[-83.6322056,32.9038088],[-83.63215260000001,32.90412],[-83.6318097,32.9047213],[-83.63170380000001,32.9052294],[-83.631676,32.9053565],[-83.6317693,32.9057418]]},"id":"8844c0a15bfffff-13b799b6fc5e827d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317216,32.8888327]},"id":"8f44c0a332ad9b6-17b77a1e0d55b4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620064,32.891488100000004]},"id":"8f44c0a15d01cc2-139f36940bb4c222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15d01cc2-139f36940bb4c222","8f44c0a332ad9b6-17b77a1e0d55b4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6317216,32.8888327],[-83.6314802,32.8888733],[-83.63132250000001,32.888753300000005],[-83.6310318,32.8883147],[-83.6308643,32.8882071],[-83.6304849,32.8881947],[-83.6301055,32.888219500000005],[-83.6297656,32.8882609],[-83.62930730000001,32.8884099],[-83.6289624,32.888608500000004],[-83.62826770000001,32.8889519],[-83.6279671,32.8890429],[-83.62756800000001,32.889071900000005],[-83.6273513,32.8890181],[-83.627031,32.8888319],[-83.62678460000001,32.8885092],[-83.62588790000001,32.8886374],[-83.62542470000001,32.888749100000005],[-83.6252966,32.8889933],[-83.6252326,32.8891091],[-83.6249616,32.8892374],[-83.62484330000001,32.889369800000004],[-83.62452800000001,32.8897959],[-83.6242521,32.8900566],[-83.6237741,32.890172400000004],[-83.6234687,32.890280000000004],[-83.6233553,32.8904372],[-83.6231681,32.8907806],[-83.62303010000001,32.8909171],[-83.6227394,32.8910082],[-83.62241420000001,32.8909668],[-83.6219215,32.8908344],[-83.62162590000001,32.8908013],[-83.6214781,32.8908427],[-83.6211332,32.8910454],[-83.62087700000001,32.8911199],[-83.6205912,32.8911861],[-83.620064,32.891488100000004]]},"id":"8544c0a3fffffff-17bfb85e16fa7352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60578500000001,32.881898]},"id":"8f44c0a14130742-13b749706d2a0c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60349520000001,32.8839101]},"id":"8f44c0a14181141-139fdf078ff28094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14130742-13b749706d2a0c16","8f44c0a14181141-139fdf078ff28094"]},"geometry":{"type":"LineString","coordinates":[[-83.60578500000001,32.881898],[-83.60568690000001,32.8820598],[-83.6056798,32.8821676],[-83.605801,32.8827127],[-83.6059152,32.8828504],[-83.6060329,32.8829732],[-83.60605070000001,32.8830601],[-83.60594010000001,32.883167900000004],[-83.6058474,32.8832697],[-83.60569050000001,32.8833177],[-83.6054979,32.883398500000006],[-83.6050022,32.8837459],[-83.6047169,32.8838657],[-83.6043995,32.8839556],[-83.6040428,32.884051400000004],[-83.60375040000001,32.8840604],[-83.60364340000001,32.884015500000004],[-83.60349520000001,32.8839101]]},"id":"8844c0a141fffff-17b76b0f29ed542f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6022846,32.882032800000005]},"id":"8f44c0a141b6943-1397d1fc22450014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6023401,32.881588900000004]},"id":"8f44c0a14ce9822-13f751d97a935380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14ce9822-13f751d97a935380","8f44c0a141b6943-1397d1fc22450014"]},"geometry":{"type":"LineString","coordinates":[[-83.6022846,32.882032800000005],[-83.6023401,32.881588900000004]]},"id":"8844c0a14dfffff-13ffd1eada8b44c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6036469,32.8809636]},"id":"8f44c0a14c43550-13ff4ea8b1eadf5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6033338,32.8817898]},"id":"8f44c0a14c595a1-13ffef6c626312b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c595a1-13ffef6c626312b4","8f44c0a14c43550-13ff4ea8b1eadf5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6036469,32.8809636],[-83.6033338,32.8817898]]},"id":"8944c0a14c7ffff-13ff7f0a9beba6a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60823660000001,32.8837733]},"id":"8f44c0a14176a60-17d753742dd563e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6078943,32.883276200000005]},"id":"8f44c0a14129415-179fe44a1d22357b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14176a60-17d753742dd563e0","8f44c0a14129415-179fe44a1d22357b"]},"geometry":{"type":"LineString","coordinates":[[-83.60823660000001,32.8837733],[-83.6079371,32.8836266],[-83.6078586,32.8835427],[-83.6078372,32.8834499],[-83.6078943,32.883276200000005]]},"id":"8844c0a141fffff-17d7641acfcef93a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6021011,32.8805211]},"id":"8f44c0a14c521a9-17d7f26ed6c18752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60313140000001,32.8803751]},"id":"8f44c0a14c55062-17ff7feaeab277d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c521a9-17d7f26ed6c18752","8f44c0a14c55062-17ff7feaeab277d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6021011,32.8805211],[-83.60215260000001,32.8806311],[-83.60232740000001,32.880735900000005],[-83.6025164,32.8808318],[-83.6025984,32.8808378],[-83.60313140000001,32.8803751]]},"id":"8a44c0a14c57fff-13bf51300d9bb119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6055352,32.8817303]},"id":"8f44c0a1413294c-13df7a0c88e6fc43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6045029,32.8816434]},"id":"8f44c0a14c48006-13976c91bbfff155"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1413294c-13df7a0c88e6fc43","8f44c0a14c48006-13976c91bbfff155"]},"geometry":{"type":"LineString","coordinates":[[-83.6055352,32.8817303],[-83.60542600000001,32.8817],[-83.60531250000001,32.8816434],[-83.6051948,32.8816614],[-83.60497360000001,32.8818561],[-83.6048952,32.881892],[-83.60477390000001,32.881877100000004],[-83.6046527,32.8817692],[-83.6045029,32.8816434]]},"id":"8744c0a14ffffff-13dfeb5a52d80673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6027076,32.891109300000004]},"id":"8f44c0a14772608-13bf50f3c221ba26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60893200000001,32.8922935]},"id":"8f44c0a1423624b-179771c18cc2dab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a14772608-13bf50f3c221ba26","8f44c0a1423624b-179771c18cc2dab7"]},"geometry":{"type":"LineString","coordinates":[[-83.6027076,32.891109300000004],[-83.6027317,32.8912655],[-83.6028137,32.891565],[-83.60287790000001,32.891722200000004],[-83.60291000000001,32.8918046],[-83.6029992,32.8919258],[-83.60312040000001,32.8920157],[-83.6032488,32.892119],[-83.6033469,32.8922028],[-83.6034075,32.892379500000004],[-83.6034824,32.892688],[-83.60354840000001,32.8927404],[-83.6036072,32.892758400000005],[-83.60374630000001,32.892741900000004],[-83.60523710000001,32.8923451],[-83.6064496,32.8920411],[-83.60725740000001,32.891833000000005],[-83.6075017,32.8917731],[-83.60767290000001,32.8917596],[-83.6077781,32.891780600000004],[-83.6079493,32.891858500000005],[-83.60893200000001,32.8922935]]},"id":"8744c0a14ffffff-17bffa3b2181a632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5934414,32.896569]},"id":"8f44c0a10da3566-1797e7932a9defca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59577420000001,32.8976208]},"id":"8f44c0a10d19535-139761e12eceb43f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a10d19535-139761e12eceb43f","8f44c0a10da3566-1797e7932a9defca"]},"geometry":{"type":"LineString","coordinates":[[-83.5934414,32.896569],[-83.59388560000001,32.8966845],[-83.5944348,32.8966007],[-83.59470590000001,32.8966366],[-83.5949769,32.896822300000004],[-83.59541200000001,32.8971876],[-83.59565450000001,32.8973912],[-83.59577420000001,32.8976208]]},"id":"8844c0a10dfffff-17d7f476d796055e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6720119,32.873979]},"id":"8f44c0a22700801-17dee7c09e31fc92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67165630000001,32.872241800000005]},"id":"8f44c0a2209a322-139fa89edb221b94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22700801-17dee7c09e31fc92","8f44c0a2209a322-139fa89edb221b94"]},"geometry":{"type":"LineString","coordinates":[[-83.6720119,32.873979],[-83.67200340000001,32.8730344],[-83.6719819,32.8729371],[-83.67165630000001,32.872241800000005]]},"id":"8744c0a22ffffff-17b6e7f5baf07bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75587870000001,32.847297000000005]},"id":"8f44c0b5696ac76-17bdfaffd871a471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7523419,32.8483822]},"id":"8f44c0b56801a4b-13dfe3a2532b2038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5696ac76-17bdfaffd871a471","8f44c0b56801a4b-13dfe3a2532b2038"]},"geometry":{"type":"LineString","coordinates":[[-83.75587870000001,32.847297000000005],[-83.7557239,32.8472493],[-83.755533,32.8472753],[-83.75537820000001,32.8473273],[-83.7552285,32.847427],[-83.7550892,32.847561400000004],[-83.75486740000001,32.8476091],[-83.75326270000001,32.8475787],[-83.75294790000001,32.8475787],[-83.7527364,32.8475917],[-83.75251970000001,32.8476914],[-83.75237,32.8478432],[-83.75230810000001,32.848038200000005],[-83.7523419,32.8483822]]},"id":"8844c0b569fffff-1795ffdc077b5b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7579511,32.8383078]},"id":"8f44c0b09301d5e-13d7f5f09027979b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7578246,32.837231200000005]},"id":"8f44c0b09322181-17b5d63fa9c278ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09322181-17b5d63fa9c278ef","8f44c0b09301d5e-13d7f5f09027979b"]},"geometry":{"type":"LineString","coordinates":[[-83.7579511,32.8383078],[-83.7578246,32.837231200000005]]},"id":"8944c0b0933ffff-17f5f6182e44394d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75356670000001,32.8399827]},"id":"8f44c0b09398398-17ddf0a4d57783ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7528467,32.8399708]},"id":"8f44c0b0939a4f4-17d5e266dedbcfdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09398398-17ddf0a4d57783ab","8f44c0b0939a4f4-17d5e266dedbcfdb"]},"geometry":{"type":"LineString","coordinates":[[-83.75356670000001,32.8399827],[-83.7528467,32.8399708]]},"id":"8944c0b093bffff-17dde185d63be3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7550791,32.837799600000004]},"id":"8f44c0b093a081b-179ddcf39c020882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75548420000001,32.837113800000004]},"id":"8f44c0b0904aa41-17ddfbf665f8efe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b093a081b-179ddcf39c020882","8f44c0b0904aa41-17ddfbf665f8efe1"]},"geometry":{"type":"LineString","coordinates":[[-83.7550791,32.837799600000004],[-83.75548420000001,32.837113800000004]]},"id":"8844c0b093fffff-17b7fc7505c39e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7546535,32.8409317]},"id":"8f44c0b092a5386-17bfddfd9ede8e48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75359800000001,32.8409447]},"id":"8f44c0b092a2ced-17b7f09143073631"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b092a2ced-17b7f09143073631","8f44c0b092a5386-17bfddfd9ede8e48"]},"geometry":{"type":"LineString","coordinates":[[-83.7546535,32.8409317],[-83.7544577,32.840875100000005],[-83.75359800000001,32.8409447]]},"id":"8a44c0b092a7fff-179fff459abd58ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76108,32.8359699]},"id":"8f44c0b09a1b2e1-1395fe4d09befdd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7585708,32.835957900000004]},"id":"8f44c0b09a8e785-139df46d49aaa9bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09a8e785-139df46d49aaa9bc","8f44c0b09a1b2e1-1395fe4d09befdd3"]},"geometry":{"type":"LineString","coordinates":[[-83.76108,32.8359699],[-83.7595759,32.8359699],[-83.7585708,32.835957900000004]]},"id":"8844c0b09bfffff-139ff15d2d91f1ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75416560000001,32.8444923]},"id":"8f44c0b5692c874-17dfff2e8c09f291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75351690000001,32.8449297]},"id":"8f44c0b5692a932-13f5f0c3f4de0ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5692c874-17dfff2e8c09f291","8f44c0b5692a932-13f5f0c3f4de0ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.75416560000001,32.8444923],[-83.7535465,32.8448434],[-83.75351690000001,32.8449297]]},"id":"8944c0b5693ffff-13ddf0070a0cc4fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7529995,32.8470195]},"id":"8f44c0b56825232-179ff20756bd2a56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7530795,32.846146700000006]},"id":"8f44c0b56908623-13fdf1d5533a286b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b56908623-13fdf1d5533a286b","8f44c0b56825232-179ff20756bd2a56"]},"geometry":{"type":"LineString","coordinates":[[-83.7529995,32.8470195],[-83.7529944,32.8468418],[-83.7529531,32.8466034],[-83.7529686,32.846404],[-83.7530795,32.846146700000006]]},"id":"8844c0b569fffff-17f5e20c919b6dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7586388,32.8232493]},"id":"8f44c0b09904101-1797d442c2929191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7576805,32.823176700000005]},"id":"8f44c0b0993371c-13d5f699b050508d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0993371c-13d5f699b050508d","8f44c0b09904101-1797d442c2929191"]},"geometry":{"type":"LineString","coordinates":[[-83.7586388,32.8232493],[-83.7576805,32.823176700000005]]},"id":"8944c0b0993ffff-13fdf56e3a3a2bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76521580000001,32.824681500000004]},"id":"8f44c0b725a14d3-1795f4342b9f1c26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649652,32.826418100000005]},"id":"8f44c0b725880c5-13bfd4d0c52862c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b725a14d3-1795f4342b9f1c26","8f44c0b725880c5-13bfd4d0c52862c9"]},"geometry":{"type":"LineString","coordinates":[[-83.76521580000001,32.824681500000004],[-83.7652568,32.824889],[-83.76533420000001,32.8250407],[-83.7654631,32.8252098],[-83.7656231,32.8253615],[-83.7658449,32.825452500000004],[-83.7663814,32.8256303],[-83.76676830000001,32.8257603],[-83.7669901,32.8258687],[-83.76720680000001,32.8260984],[-83.76731000000001,32.8263802],[-83.7673254,32.8264842],[-83.7672842,32.826662],[-83.76719130000001,32.826783400000004],[-83.76706750000001,32.8268744],[-83.76682500000001,32.8269351],[-83.7666239,32.8269177],[-83.7660977,32.8266967],[-83.7656231,32.826523300000005],[-83.765427,32.8264669],[-83.7649652,32.826418100000005]]},"id":"8844c0b725fffff-13fff1aa1ab03eeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760895,32.822077]},"id":"8f44c0b0d2f2324-13b7eec0ac9f16a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7587278,32.8219585]},"id":"8f44c0b0d29959c-13ddd40b250e1de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0d2f2324-13b7eec0ac9f16a1","8f44c0b0d29959c-13ddd40b250e1de3"]},"geometry":{"type":"LineString","coordinates":[[-83.760895,32.822077],[-83.758769,32.8219109],[-83.7587278,32.8219585]]},"id":"8844c0b0d3fffff-13f5f16c70aeb3fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764725,32.826181500000004]},"id":"8f44c0b7258e22c-13bff566e5ea97f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76435400000001,32.824928]},"id":"8f44c0b725847a3-139dc64ec32e7894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b7258e22c-13bff566e5ea97f4","8f44c0b725847a3-139dc64ec32e7894"]},"geometry":{"type":"LineString","coordinates":[[-83.764725,32.826181500000004],[-83.7646584,32.8259467],[-83.7644159,32.8255782],[-83.76435400000001,32.824928]]},"id":"8944c0b725bffff-13bdd5f9150ed2f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764617,32.828158]},"id":"8f44c0b724aea8b-17ffc5aa6a8c7005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76474920000001,32.8265866]},"id":"8f44c0b7258bd13-17bde557c60b9b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b724aea8b-17ffc5aa6a8c7005","8f44c0b7258bd13-17bde557c60b9b63"]},"geometry":{"type":"LineString","coordinates":[[-83.764617,32.828158],[-83.7647616,32.827789100000004],[-83.7647616,32.8276027],[-83.76473580000001,32.8271041],[-83.76474920000001,32.8265866]]},"id":"8844c0b725fffff-179fd5619bd630b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7521062,32.825082300000005]},"id":"8f44c0b09d45556-13fdf435a7af42d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7508356,32.825044500000004]},"id":"8f44c0b09d55469-13f5f74fc20edcab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09d45556-13fdf435a7af42d3","8f44c0b09d55469-13f5f74fc20edcab"]},"geometry":{"type":"LineString","coordinates":[[-83.7521062,32.825082300000005],[-83.7508356,32.825044500000004]]},"id":"8944c0b09d7ffff-13f5e5c2b4755913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7470351,32.8244798]},"id":"8f44c0b09d8d985-1797f0971e0129bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7476128,32.8249827]},"id":"8f44c0b09c32b61-13bfff2e07ab45cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c32b61-13bfff2e07ab45cc","8f44c0b09d8d985-1797f0971e0129bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7470351,32.8244798],[-83.7476128,32.8249827]]},"id":"8844c0b09dfffff-17b5ffe2873d64df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7440203,32.8232561]},"id":"8f44c0b09d96419-1797f7f350173000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74401560000001,32.8239137]},"id":"8f44c0b0836c9b3-17b7f7f6460ce79f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b09d96419-1797f7f350173000","8f44c0b0836c9b3-17b7f7f6460ce79f"]},"geometry":{"type":"LineString","coordinates":[[-83.7440203,32.8232561],[-83.74401560000001,32.8239137]]},"id":"8a44c0b09d97fff-17d5f7f4d35e87af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7442741,32.8238709]},"id":"8f44c0b09d93c93-1797f754b696bc61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7442764,32.823249600000004]},"id":"8f44c0b09d96158-1797f7534c57f4f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b09d93c93-1797f754b696bc61","8f44c0b09d96158-1797f7534c57f4f0"]},"geometry":{"type":"LineString","coordinates":[[-83.7442741,32.8238709],[-83.7442764,32.823249600000004]]},"id":"8a44c0b09d97fff-17d5f7540e819ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7458692,32.8253815]},"id":"8f44c0b09ca40dc-13b7f36fc8133b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.747262,32.8263612]},"id":"8f44c0b09c1169a-139ff0094fa68322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c1169a-139ff0094fa68322","8f44c0b09ca40dc-13b7f36fc8133b67"]},"geometry":{"type":"LineString","coordinates":[[-83.7458692,32.8253815],[-83.7459156,32.8255982],[-83.7459156,32.8262051],[-83.74597750000001,32.826417500000005],[-83.746122,32.8265606],[-83.74627670000001,32.8266256],[-83.74655010000001,32.826647300000005],[-83.7468958,32.826582300000005],[-83.747262,32.8263612]]},"id":"8844c0b09dfffff-13f7f2578110ff2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7504318,32.8137127]},"id":"8f44c0b0d45018e-17bff84c2ff1603b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75523220000001,32.8121181]},"id":"8f44c0b0d0a2c9c-13d5dc93e4a36458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d0a2c9c-13d5dc93e4a36458","8f44c0b0d45018e-17bff84c2ff1603b"]},"geometry":{"type":"LineString","coordinates":[[-83.7504318,32.8137127],[-83.7508536,32.8138133],[-83.7512753,32.8138755],[-83.75183390000001,32.8139139],[-83.7543758,32.8138564],[-83.75466080000001,32.813779700000005],[-83.75480900000001,32.81366],[-83.7549743,32.813454],[-83.75507680000001,32.8132481],[-83.75516230000001,32.812879200000005],[-83.75522310000001,32.812646900000004],[-83.755272,32.812468100000004],[-83.7552857,32.8123177],[-83.7552766,32.8122374],[-83.75523220000001,32.8121181]]},"id":"8744c0b0dffffff-17f5e142fd1847ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74630810000001,32.8139327]},"id":"8f44c0b0d48b71d-17d7f25d7ce3a05a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745519,32.8139703]},"id":"8f44c0b08b268c6-17dff44aaa11e5a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08b268c6-17dff44aaa11e5a6","8f44c0b0d48b71d-17d7f25d7ce3a05a"]},"geometry":{"type":"LineString","coordinates":[[-83.74630810000001,32.8139327],[-83.745519,32.8139703]]},"id":"8844c0b0d5fffff-17dff3541d94abcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270455,32.808309]},"id":"8f44c0b08d9e420-179f21649ad3bc71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726634,32.8077886]},"id":"8f44c0b08d92328-17d7e265c0215880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d92328-17d7e265c0215880","8f44c0b08d9e420-179f21649ad3bc71"]},"geometry":{"type":"LineString","coordinates":[[-83.7270455,32.808309],[-83.726634,32.8077886]]},"id":"8944c0b08dbffff-17f6a1e52d89814f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7277232,32.8074759]},"id":"8f44c0b08d95b44-17967fbd0c9c0018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7280302,32.807883000000004]},"id":"8f44c0b08d82aed-17fefefd25b68d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d82aed-17fefefd25b68d7c","8f44c0b08d95b44-17967fbd0c9c0018"]},"geometry":{"type":"LineString","coordinates":[[-83.7277232,32.8074759],[-83.7275223,32.807571800000005],[-83.72748410000001,32.8076245],[-83.72748750000001,32.8077093],[-83.72771730000001,32.8080194],[-83.7277486,32.808034],[-83.7280302,32.807883000000004]]},"id":"8944c0b08dbffff-17df9fd911b61bff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7572294,32.7499611]},"id":"8f44c0b2e8c4263-1395f7b3a04fc8ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75815320000001,32.749921400000005]},"id":"8f44c0b2e8ec4d6-13fdf57246dbc36f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b2e8c4263-1395f7b3a04fc8ad","8f44c0b2e8ec4d6-13fdf57246dbc36f"]},"geometry":{"type":"LineString","coordinates":[[-83.7572294,32.7499611],[-83.75723980000001,32.7500537],[-83.7572602,32.7501167],[-83.75730560000001,32.750141500000005],[-83.75738720000001,32.7501586],[-83.7580003,32.7501814],[-83.75813240000001,32.7501229],[-83.7581463,32.749976600000004],[-83.75815320000001,32.749921400000005]]},"id":"8944c0b2e8fffff-13ffd6865f221354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7148267,32.7356148]},"id":"8f44c0b0498bb85-179f7f395d5e30d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122878,32.7406777]},"id":"8f44c0b04103733-13ffd56c2f40b90a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0498bb85-179f7f395d5e30d1","8f44c0b04103733-13ffd56c2f40b90a"]},"geometry":{"type":"LineString","coordinates":[[-83.7148267,32.7356148],[-83.7136485,32.736707200000005],[-83.7126473,32.737636300000005],[-83.7126238,32.737658],[-83.7124266,32.737839900000004],[-83.7123411,32.738037600000006],[-83.7123426,32.7382186],[-83.7123483,32.738918000000005],[-83.7123358,32.7392807],[-83.71231750000001,32.739814],[-83.7122878,32.7406777]]},"id":"8744c0b04ffffff-13b7f3a0a414bed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6754561,32.756285500000004]},"id":"8f44c0b15a55dae-1396ff57f911a433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6776481,32.757744200000005]},"id":"8f44c0b15a4daf5-1796b9fdf70440bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a55dae-1396ff57f911a433","8f44c0b15a4daf5-1796b9fdf70440bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6754561,32.756285500000004],[-83.67549050000001,32.7564427],[-83.67549050000001,32.756769500000004],[-83.67558890000001,32.756914300000005],[-83.6763415,32.7576631],[-83.6766908,32.7580023],[-83.67691210000001,32.7581305],[-83.67711870000001,32.7581719],[-83.67734990000001,32.7581471],[-83.6775221,32.7579651],[-83.6776481,32.757744200000005]]},"id":"8644c0b07ffffff-13ffdd0cb28e818f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6828004,32.7569267]},"id":"8f44c0b066e6ba8-1397bd69ca9c06c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6832327,32.757341600000004]},"id":"8f44c0b066e0a40-139e8c5b992d03bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b066e0a40-139e8c5b992d03bf","8f44c0b066e6ba8-1397bd69ca9c06c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6828004,32.7569267],[-83.6832327,32.757341600000004]]},"id":"8a44c0b066e7fff-139eece2b847a877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6812278,32.7529501]},"id":"8f44c0b06785370-13f7d140aae6acc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6808079,32.7525313]},"id":"8f44c0b06784065-17de92471de11bbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06784065-17de92471de11bbe","8f44c0b06785370-13f7d140aae6acc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6812278,32.7529501],[-83.6811965,32.752862300000004],[-83.6808079,32.7525313]]},"id":"8a44c0b06787fff-17d7b1b96bb36dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6807548,32.7534269]},"id":"8f44c0b06783a6c-139fd268400eefc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6801339,32.7533091]},"id":"8f44c0b0679c90b-13d6b3ec573b4bad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0679c90b-13d6b3ec573b4bad","8f44c0b06783a6c-139fd268400eefc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6807548,32.7534269],[-83.68051270000001,32.7533629],[-83.6801339,32.7533091]]},"id":"8a44c0b06787fff-13f7932931680717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66750090000001,32.7510046]},"id":"8f44c0b158da7b2-13b7f2c3f0977370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66501480000001,32.7471175]},"id":"8f44c0b15894786-13b6f8d5c151ac26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158da7b2-13b7f2c3f0977370","8f44c0b15894786-13b6f8d5c151ac26"]},"geometry":{"type":"LineString","coordinates":[[-83.66750090000001,32.7510046],[-83.6674503,32.7509237],[-83.66726510000001,32.7488724],[-83.6671761,32.7487136],[-83.6670088,32.748528],[-83.6669126,32.7484411],[-83.66675950000001,32.7480458],[-83.6665957,32.747905100000004],[-83.6661328,32.747701400000004],[-83.6656664,32.747369],[-83.6654955,32.74736],[-83.66518570000001,32.747372],[-83.6650718,32.7473301],[-83.6649792,32.747225300000004],[-83.66501480000001,32.7471175]]},"id":"8744c0b15ffffff-1797f4ca69d7e8e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6684192,32.7517298]},"id":"8f44c0b151662a6-17f7b086025af725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66800070000001,32.7520035]},"id":"8f44c0b151624b3-1796b18b9d7defd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b151624b3-1796b18b9d7defd9","8f44c0b151662a6-17f7b086025af725"]},"geometry":{"type":"LineString","coordinates":[[-83.6684192,32.7517298],[-83.6681913,32.751819600000005],[-83.66800070000001,32.7520035]]},"id":"8944c0b1517ffff-17bfb1113289162f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666981,32.751389]},"id":"8f44c0b15176cc1-1796b408e2aa3ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66662620000001,32.7512412]},"id":"8f44c0b1512b71d-17b7f4e6afd000e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15176cc1-1796b408e2aa3ed9","8f44c0b1512b71d-17b7f4e6afd000e2"]},"geometry":{"type":"LineString","coordinates":[[-83.666981,32.751389],[-83.66689810000001,32.7513407],[-83.6668125,32.7513026],[-83.66662620000001,32.7512412]]},"id":"8944c0b1513ffff-17def47599c30f4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6707801,32.748922300000004]},"id":"8f44c0b1585052d-179efac273a543ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6689996,32.7485674]},"id":"8f44c0b158e64aa-17beaf1b48d2b7a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158e64aa-17beaf1b48d2b7a2","8f44c0b1585052d-179efac273a543ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6707801,32.748922300000004],[-83.6705057,32.748851900000005],[-83.66975090000001,32.7486423],[-83.6693877,32.7485135],[-83.66916330000001,32.7485195],[-83.6689996,32.7485674]]},"id":"8844c0b159fffff-17ffacee9dd0f432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6681781,32.745046]},"id":"8f44c0b159ab58e-1797f11cbdb02b88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6682042,32.743645900000004]},"id":"8f44c0b159a0a68-13beb10c60440e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b159ab58e-1797f11cbdb02b88","8f44c0b159a0a68-13beb10c60440e63"]},"geometry":{"type":"LineString","coordinates":[[-83.6681781,32.745046],[-83.6682042,32.743645900000004]]},"id":"8944c0b159bffff-13f6f114862bb761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6606062,32.7435686]},"id":"8f44c0b15d1c446-13fee3992a232248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6606302,32.7411979]},"id":"8f44c0b14a69a82-13b6f38a21fc8da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14a69a82-13b6f38a21fc8da0","8f44c0b15d1c446-13fee3992a232248"]},"geometry":{"type":"LineString","coordinates":[[-83.6606062,32.7435686],[-83.6606302,32.7411979]]},"id":"8644c0b17ffffff-1797d391a89ec81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6358871,32.8176403]},"id":"8f44c0b1a4a9702-17d7fff29965c620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63509040000001,32.8175972]},"id":"8f44c0b1a48c9aa-17b741e485584522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4a9702-17d7fff29965c620","8f44c0b1a48c9aa-17b741e485584522"]},"geometry":{"type":"LineString","coordinates":[[-83.6358871,32.8176403],[-83.635748,32.817632800000005],[-83.63509040000001,32.8175972]]},"id":"8a44c0b1a4affff-17d7c0eb96ea7653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6431419,32.8168674]},"id":"8f44c0b1a0b0a0c-17feee3c5812067f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6438868,32.817506]},"id":"8f44c0b1a084b5e-17ffec6acf7fcc65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a084b5e-17ffec6acf7fcc65","8f44c0b1a0b0a0c-17feee3c5812067f"]},"geometry":{"type":"LineString","coordinates":[[-83.6431419,32.8168674],[-83.6438868,32.817506]]},"id":"8944c0b1a0bffff-17b7fd539776d2ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63824240000001,32.815245000000004]},"id":"8f44c0b1a420ca6-13fefa3287aebb5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6376465,32.815559]},"id":"8f44c0b1a431b20-13befba6f72d50c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a431b20-13befba6f72d50c8","8f44c0b1a420ca6-13fefa3287aebb5b"]},"geometry":{"type":"LineString","coordinates":[[-83.63824240000001,32.815245000000004],[-83.6380927,32.8153205],[-83.6376465,32.815559]]},"id":"8944c0b1a43ffff-13dffaed2966a916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64054130000001,32.8180703]},"id":"8f44c0b1a463581-17dff495b1f422b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64033160000001,32.8178894]},"id":"8f44c0b1a462703-17fef518c8ac21e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a463581-17dff495b1f422b0","8f44c0b1a462703-17fef518c8ac21e8"]},"geometry":{"type":"LineString","coordinates":[[-83.64054130000001,32.8180703],[-83.6404629,32.8179952],[-83.64038810000001,32.8179201],[-83.64033160000001,32.8178894]]},"id":"8a44c0b1a467fff-17b6f4d4ecc3797c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6433154,32.816696900000004]},"id":"8f44c0b1a0b556e-1797fdcfe12eb102"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6424367,32.816103600000005]},"id":"8f44c0b1a569499-1396eff518d812bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a569499-1396eff518d812bb","8f44c0b1a0b556e-1797fdcfe12eb102"]},"geometry":{"type":"LineString","coordinates":[[-83.6433154,32.816696900000004],[-83.6428272,32.8163153],[-83.64268360000001,32.816300500000004],[-83.6424367,32.816103600000005]]},"id":"8844c0b1a1fffff-13d6fee04004c547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64541200000001,32.8186848]},"id":"8f44c0b1a0f4429-13dee8b182a9f65c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644878,32.8189851]},"id":"8f44c0b1a0f2d36-139ff9ff457b3aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a0f2d36-139ff9ff457b3aa8","8f44c0b1a0f4429-13dee8b182a9f65c"]},"geometry":{"type":"LineString","coordinates":[[-83.64541200000001,32.8186848],[-83.6456639,32.8188286],[-83.6459181,32.818983700000004],[-83.64599120000001,32.8190802],[-83.6459494,32.8191621],[-83.6458798,32.819214800000005],[-83.6457336,32.8192089],[-83.64511010000001,32.8191471],[-83.6450149,32.8191235],[-83.6449506,32.819085],[-83.644878,32.8189851]]},"id":"8a44c0b1a0f7fff-13d7f862e71cb983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6269966,32.8144781]},"id":"8f44c0ba9989930-179fd5a7212a91da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6266892,32.815503]},"id":"8f44c0ba981212c-139f7667447aa4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba981212c-139f7667447aa4ea","8f44c0ba9989930-179fd5a7212a91da"]},"geometry":{"type":"LineString","coordinates":[[-83.6269966,32.8144781],[-83.62665390000001,32.8143765],[-83.6264927,32.814329900000004],[-83.6263364,32.814368],[-83.62627090000001,32.814444300000005],[-83.62617010000001,32.8146433],[-83.6261601,32.8148466],[-83.62625080000001,32.8149694],[-83.62635660000001,32.8151261],[-83.6263969,32.8153209],[-83.6265027,32.8154479],[-83.6266892,32.815503]]},"id":"8844c0ba99fffff-17df37047c0427f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63423780000001,32.833994600000004]},"id":"8f44c0a34cd22ec-17bfa3f9672c80bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6334597,32.8343642]},"id":"8f44c0a3452e099-17b7a5dfba6c2721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3452e099-17b7a5dfba6c2721","8f44c0a34cd22ec-17bfa3f9672c80bb"]},"geometry":{"type":"LineString","coordinates":[[-83.63423780000001,32.833994600000004],[-83.6340053,32.8338315],[-83.6339466,32.833812200000004],[-83.6339006,32.8338294],[-83.6334597,32.8343642]]},"id":"8744c0a34ffffff-17df04fc8e428f32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6261166,32.829076]},"id":"8f44c0ba9389b9e-13bf97cd2713d1dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62566650000001,32.8301882]},"id":"8f44c0ba92ac994-17f7b8e674cb176f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92ac994-17f7b8e674cb176f","8f44c0ba9389b9e-13bf97cd2713d1dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6261166,32.829076],[-83.62599750000001,32.829327500000005],[-83.62563,32.8297562],[-83.62566650000001,32.8301882]]},"id":"8844c0ba93fffff-139fb88c611e2732"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6253681,32.834459800000005]},"id":"8f44c0a369741a9-17f779a0f0998795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6250193,32.8348724]},"id":"8f44c0a3697059c-13f75a7afccc9fb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a369741a9-17f779a0f0998795","8f44c0a3697059c-13f75a7afccc9fb8"]},"geometry":{"type":"LineString","coordinates":[[-83.6253681,32.834459800000005],[-83.6250193,32.8348724]]},"id":"8a44c0a36977fff-17f75a0dff6abd82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6267234,32.8295872]},"id":"8f44c0ba9215d4c-13ff1651efa4cb9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba921a1b4-17d7375c6d66f5b6","8f44c0ba9215d4c-13ff1651efa4cb9b"]},"geometry":{"type":"LineString","coordinates":[[-83.62629700000001,32.8309603],[-83.6261853,32.8307078],[-83.62618060000001,32.830562300000004],[-83.62618060000001,32.830385400000004],[-83.6266298,32.829768],[-83.6267234,32.8295872]]},"id":"8944c0ba923ffff-179f77319f46f0a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62340520000001,32.769587800000004]},"id":"8f44c0b123088c4-13977e6bcb20f751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62598940000001,32.772510700000005]},"id":"8f44c0b13c96d03-13b7381caae5a17a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b123088c4-13977e6bcb20f751","8f44c0b13c96d03-13b7381caae5a17a"]},"geometry":{"type":"LineString","coordinates":[[-83.62340520000001,32.769587800000004],[-83.6232071,32.7697858],[-83.6231588,32.7699481],[-83.6232634,32.7701915],[-83.6235207,32.7705025],[-83.6236976,32.770705400000004],[-83.6239549,32.7708339],[-83.6243329,32.7711787],[-83.62442940000001,32.7716182],[-83.6245178,32.7721456],[-83.62466260000001,32.7724634],[-83.6249762,32.7725445],[-83.62598940000001,32.772510700000005]]},"id":"8844c0b123fffff-17f7dc331515ec71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6386334,32.7694929]},"id":"8f44c0b139a411a-13d7f93e2181a817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6393144,32.7708582]},"id":"8f44c0b139ac2ca-179ef79482874000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139a411a-13d7f93e2181a817","8f44c0b139ac2ca-179ef79482874000"]},"geometry":{"type":"LineString","coordinates":[[-83.6386334,32.7694929],[-83.6393144,32.7708582]]},"id":"8844c0b139fffff-13fff8695d8eaf1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298508,32.7781378]},"id":"8f44c0b135636d3-17f72eaf49065255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6288693,32.7788071]},"id":"8f44c0b1355c9a1-17977114bca80ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1355c9a1-17977114bca80ec5","8f44c0b135636d3-17f72eaf49065255"]},"geometry":{"type":"LineString","coordinates":[[-83.6298508,32.7781378],[-83.6301316,32.778133000000004],[-83.63048420000001,32.778094700000004],[-83.63161570000001,32.7780756],[-83.63166120000001,32.7781425],[-83.6316726,32.7782429],[-83.63159870000001,32.778376800000004],[-83.63091630000001,32.779027],[-83.63042730000001,32.779490700000004],[-83.6302454,32.7796198],[-83.63006340000001,32.779662800000004],[-83.6297677,32.7796293],[-83.62956870000001,32.7795815],[-83.6292105,32.7795672],[-83.6290172,32.7795481],[-83.62892620000001,32.779519400000005],[-83.62883520000001,32.779419000000004],[-83.62881250000001,32.779223],[-83.6287727,32.7790222],[-83.6288693,32.7788071]]},"id":"8744c0b13ffffff-179ffd7974a77ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298541,32.7776166]},"id":"8f44c0b13562a2c-179f6ead3c91d2ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6293019,32.778172600000005]},"id":"8f44c0b13546b4b-17f7f0065beca314"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13546b4b-17f7f0065beca314","8f44c0b13562a2c-179f6ead3c91d2ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6298541,32.7776166],[-83.6293299,32.7779657],[-83.6293019,32.778172600000005]]},"id":"8944c0b1357ffff-17b7cf7bf7fb5723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6392782,32.7709901]},"id":"8f44c0b139a884b-17fef7ab25fe0c14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63836950000001,32.7711422]},"id":"8f44c0b139aa4b3-17dff9e310850d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139aa4b3-17dff9e310850d12","8f44c0b139a884b-17fef7ab25fe0c14"]},"geometry":{"type":"LineString","coordinates":[[-83.6392782,32.7709901],[-83.63880370000001,32.7711557],[-83.63866300000001,32.7711659],[-83.63836950000001,32.7711422]]},"id":"8944c0b139bffff-17bef8c3458392ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6350534,32.767757800000005]},"id":"8f44c0b106f1896-179fa1fba62e31c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63424520000001,32.768335900000004]},"id":"8f44c0b106d424b-17f7f3f4ca89cc3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106d424b-17f7f3f4ca89cc3f","8f44c0b106f1896-179fa1fba62e31c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6350534,32.767757800000005],[-83.63498100000001,32.7679167],[-83.6349247,32.7680317],[-83.63424520000001,32.768335900000004]]},"id":"8944c0b106fffff-17dfc2d741776c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6363565,32.7688191]},"id":"8f44c0b106eab2e-179ffecd333d4869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6342171,32.7686301]},"id":"8f44c0b106d1da4-17bfd4065b18b5c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106eab2e-179ffecd333d4869","8f44c0b106d1da4-17bfd4065b18b5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6363565,32.7688191],[-83.6361792,32.7688025],[-83.63466740000001,32.7686402],[-83.6342171,32.7686301]]},"id":"8944c0b106fffff-17df31693b578a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64034330000001,32.7706851]},"id":"8f44c0b1391c436-13bef5117d6627ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63985240000001,32.7698154]},"id":"8f44c0b139146e4-139ef64444ab65eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1391c436-13bef5117d6627ae","8f44c0b139146e4-139ef64444ab65eb"]},"geometry":{"type":"LineString","coordinates":[[-83.64034330000001,32.7706851],[-83.64023110000001,32.7705743],[-83.63987730000001,32.7698541],[-83.63985240000001,32.7698154]]},"id":"8944c0b1393ffff-13b7f5b4b139c3f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6336534,32.773254300000005]},"id":"8f44c0b13d5b2a9-13f7f566a24413ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63395440000001,32.772010800000004]},"id":"8f44c0b13d5c906-17ffc4aa8b7087e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d5c906-17ffc4aa8b7087e8","8f44c0b13d5b2a9-13f7f566a24413ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6336534,32.773254300000005],[-83.63379760000001,32.773045100000004],[-83.6338968,32.7729012],[-83.63394310000001,32.7727614],[-83.63395440000001,32.772010800000004]]},"id":"8844c0b13dfffff-13fff4d3282e9f5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63570010000001,32.7665937]},"id":"8f44c0b10618b6e-13b710677cea61c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63444220000001,32.767653]},"id":"8f44c0b106f2b09-17d72379ad2fccad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106f2b09-17d72379ad2fccad","8f44c0b10618b6e-13b710677cea61c7"]},"geometry":{"type":"LineString","coordinates":[[-83.63570010000001,32.7665937],[-83.6353067,32.7666489],[-83.6349971,32.766719900000005],[-83.6348564,32.7668145],[-83.6347277,32.7669836],[-83.63444220000001,32.767653]]},"id":"8844c0b107fffff-1397a242dc01817a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6426033,32.769860900000005]},"id":"8f44c0b1392c023-13bfff8cfd7f1969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64203640000001,32.7700266]},"id":"8f44c0b1392e726-1396f0ef415a17de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1392c023-13bfff8cfd7f1969","8f44c0b1392e726-1396f0ef415a17de"]},"geometry":{"type":"LineString","coordinates":[[-83.6426033,32.769860900000005],[-83.64254700000001,32.769945400000005],[-83.6424183,32.7700029],[-83.6422495,32.7700266],[-83.6421047,32.770029900000004],[-83.64203640000001,32.7700266]]},"id":"8a44c0b1392ffff-13fff03099ecc6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6369382,32.7713045]},"id":"8f44c0b13991201-17b7fd61aa7999ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63774430000001,32.772218800000005]},"id":"8f44c0b1398a791-17fefb69d02769c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13991201-17b7fd61aa7999ff","8f44c0b1398a791-17fefb69d02769c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6369382,32.7713045],[-83.6370507,32.7715073],[-83.6372558,32.771713600000005],[-83.6374689,32.7718556],[-83.63763780000001,32.7720111],[-83.63774430000001,32.772218800000005]]},"id":"8944c0b139bffff-17dffc656d19ed27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62963470000001,32.775962]},"id":"8f44c0b13cdc030-13974f3655281a28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62730400000001,32.7741095]},"id":"8f44c0b13c9d796-179f74e70ec03a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cdc030-13974f3655281a28","8f44c0b13c9d796-179f74e70ec03a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.62963470000001,32.775962],[-83.628285,32.7760229],[-83.6276739,32.776158200000005],[-83.62740050000001,32.776077],[-83.6272637,32.7757863],[-83.62727980000001,32.7754685],[-83.62730400000001,32.7741095]]},"id":"8744c0b13ffffff-17bfb359b1ba8d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6314251,32.7686895]},"id":"8f44c0b13d33b00-17dffad757e7da69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6319397,32.7703123]},"id":"8f44c0b13d1da44-13d73995b7d4ec46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d1da44-13d73995b7d4ec46","8f44c0b13d33b00-17dffad757e7da69"]},"geometry":{"type":"LineString","coordinates":[[-83.6314251,32.7686895],[-83.6314251,32.7688112],[-83.6314974,32.768916000000004],[-83.63178690000001,32.7690986],[-83.63192360000001,32.769223700000005],[-83.6319598,32.769331900000005],[-83.6319397,32.7703123]]},"id":"8944c0b13d3ffff-13b7b9e2d98a2e98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298726,32.7710312]},"id":"8f44c0b13c36499-17978ea1af5d30c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62912730000001,32.772209700000005]},"id":"8f44c0b13c12d93-17f710737d222e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c12d93-17f710737d222e62","8f44c0b13c36499-17978ea1af5d30c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6298726,32.7710312],[-83.6298153,32.771129200000004],[-83.6296476,32.771122000000005],[-83.6293775,32.771095700000004],[-83.62922970000001,32.7711173],[-83.6291558,32.771196100000004],[-83.62911600000001,32.7712631],[-83.6291169,32.7713357],[-83.62912730000001,32.772209700000005]]},"id":"8844c0b13dfffff-17973007c54ce5db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384689,32.7695522]},"id":"8f44c0b139a4456-13fef9a4f1b105d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63773830000001,32.768985300000004]},"id":"8f44c0b1065ab6d-1797fb6d9e1a3fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139a4456-13fef9a4f1b105d3","8f44c0b1065ab6d-1797fb6d9e1a3fb7"]},"geometry":{"type":"LineString","coordinates":[[-83.6384689,32.7695522],[-83.6384982,32.7694045],[-83.63848610000001,32.76932],[-83.63842980000001,32.7692524],[-83.638277,32.7691509],[-83.6381564,32.769083300000005],[-83.6379996,32.7690495],[-83.63773830000001,32.768985300000004]]},"id":"8644c0b17ffffff-1397fa45f0158b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6342302,32.7684931]},"id":"8f44c0b106d54de-17d733fe2ed50a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6323337,32.768662500000005]},"id":"8f44c0b13d22344-17bf189f703461f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d22344-17bf189f703461f0","8f44c0b106d54de-17d733fe2ed50a80"]},"geometry":{"type":"LineString","coordinates":[[-83.6342302,32.7684931],[-83.63393400000001,32.768476500000006],[-83.633544,32.7684664],[-83.6330896,32.768486700000004],[-83.63278410000001,32.768486700000004],[-83.63259910000001,32.7685036],[-83.6324503,32.7685813],[-83.6323337,32.768662500000005]]},"id":"8744c0b13ffffff-17d7565acd376050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6383443,32.7709844]},"id":"8f44c0b13985211-17fff9f2db66fccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63718270000001,32.7700203]},"id":"8f44c0b139b0292-139efcc8d54e9b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139b0292-139efcc8d54e9b19","8f44c0b13985211-17fff9f2db66fccd"]},"geometry":{"type":"LineString","coordinates":[[-83.6383443,32.7709844],[-83.6381604,32.7709935],[-83.6379795,32.770976600000004],[-83.6378669,32.7709326],[-83.6377021,32.7707568],[-83.637489,32.7704728],[-83.63728800000001,32.7702734],[-83.63718270000001,32.7700203]]},"id":"8944c0b139bffff-139ffb936a62d1f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62616510000001,32.768669800000005]},"id":"8f44c0b12ace7a6-17d7b7aedc378fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6235274,32.769600000000004]},"id":"8f44c0b12308b26-139f1e1f6209c1fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b12308b26-139f1e1f6209c1fc","8f44c0b12ace7a6-17d7b7aedc378fbb"]},"geometry":{"type":"LineString","coordinates":[[-83.62616510000001,32.768669800000005],[-83.6260391,32.768721500000005],[-83.62561690000001,32.768768200000004],[-83.62505030000001,32.7688452],[-83.62475590000001,32.768882600000005],[-83.62438660000001,32.768924600000005],[-83.6242088,32.768973700000004],[-83.6240033,32.7690718],[-83.6238311,32.7691535],[-83.6236367,32.769265600000004],[-83.6235589,32.7693707],[-83.6235274,32.769600000000004]]},"id":"8744c0b12ffffff-17ff5b36838e4c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65067110000001,32.826039800000004]},"id":"8f44c0b1a2191ab-13d6fbda99aee9df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650946,32.826203]},"id":"8f44c0b1a2e4da8-13befb2ec968de44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a2e4da8-13befb2ec968de44","8f44c0b1a2191ab-13d6fbda99aee9df"]},"geometry":{"type":"LineString","coordinates":[[-83.65067110000001,32.826039800000004],[-83.6507684,32.826058],[-83.6508283,32.8260932],[-83.65088420000001,32.8261419],[-83.650946,32.826203]]},"id":"8944c0b1a23ffff-13fefb7e66d65c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5779734,32.9145656]},"id":"8f44c0a12042404-13f78d56a1ccdf7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58158470000001,32.9100021]},"id":"8f44c0a12b94c25-17dfd48599f63693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12b94c25-17dfd48599f63693","8f44c0a12042404-13f78d56a1ccdf7b"]},"geometry":{"type":"LineString","coordinates":[[-83.5779734,32.9145656],[-83.5786333,32.9136419],[-83.5793788,32.9124557],[-83.5798214,32.911748700000004],[-83.58006010000001,32.9114177],[-83.5801594,32.9113186],[-83.58048120000001,32.9111002],[-83.5806314,32.9109313],[-83.5807092,32.9108187],[-83.5807843,32.9106791],[-83.580838,32.9104382],[-83.5808755,32.9103593],[-83.5809399,32.910303],[-83.58101500000001,32.9102558],[-83.5812027,32.910206200000005],[-83.5814629,32.9101252],[-83.58153,32.9100936],[-83.58158470000001,32.9100021]]},"id":"8744c0a12ffffff-1797992b04d2e21c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59113380000001,32.9122721]},"id":"8f44c0a1079eade-17df7d356587bc86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59092480000001,32.912291]},"id":"8f44c0a1079e754-17f7edb80c299689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a1079eade-17df7d356587bc86","8f44c0a1079e754-17f7edb80c299689"]},"geometry":{"type":"LineString","coordinates":[[-83.59113380000001,32.9122721],[-83.59092480000001,32.912291]]},"id":"8b44c0a1079efff-17f76d76ba5c6d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59121950000001,32.9238458]},"id":"8f44c0a13c580b6-139fecffde7079c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59105170000001,32.923677500000004]},"id":"8f44c0a13c5e221-13b77d68bb950f55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a13c5e221-13b77d68bb950f55","8f44c0a13c580b6-139fecffde7079c6"]},"geometry":{"type":"LineString","coordinates":[[-83.59121950000001,32.9238458],[-83.59105170000001,32.923677500000004]]},"id":"8a44c0a13c5ffff-13f77d344b7241da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60658400000001,32.860010100000004]},"id":"8f44c0a32cc0811-17d7577d09f0c661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60608780000001,32.8599023]},"id":"8f44c0a32cc6729-17fff8b320faa188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc0811-17d7577d09f0c661","8f44c0a32cc6729-17fff8b320faa188"]},"geometry":{"type":"LineString","coordinates":[[-83.60658400000001,32.860010100000004],[-83.60639780000001,32.860006500000004],[-83.6062181,32.860002],[-83.60616710000001,32.859993],[-83.60614070000001,32.859979],[-83.6061236,32.859962100000004],[-83.60608780000001,32.8599023]]},"id":"8a44c0a32cc7fff-17b7c8239d457ec6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6247208,32.833921600000004]},"id":"8f44c0a369283a4-17971b35883b6669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62462880000001,32.8340212]},"id":"8f44c0a36928644-17df5b6f0cd3b723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369283a4-17971b35883b6669","8f44c0a36928644-17df5b6f0cd3b723"]},"geometry":{"type":"LineString","coordinates":[[-83.6247208,32.833921600000004],[-83.62464530000001,32.833924800000005],[-83.6246196,32.833961800000004],[-83.62462880000001,32.8340212]]},"id":"8b44c0a36928fff-17b75b613b7c5222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6018796,32.842340300000004]},"id":"8f44c0b8d959cac-139ff2f949784090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60274820000001,32.8419307]},"id":"8f44c0b8d94eb8e-139ff0da6b8191fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8d94eb8e-139ff0da6b8191fa","8f44c0b8d959cac-139ff2f949784090"]},"geometry":{"type":"LineString","coordinates":[[-83.6018796,32.842340300000004],[-83.60203340000001,32.8421223],[-83.6021528,32.8419893],[-83.6022708,32.8418901],[-83.6023419,32.841855200000005],[-83.60241160000001,32.841839400000005],[-83.60250140000001,32.8418361],[-83.602602,32.841855200000005],[-83.60267850000001,32.841889],[-83.60274820000001,32.8419307]]},"id":"8944c0b8d97ffff-13d75205e23508cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60382870000001,32.8434025]},"id":"8f44c0a36495696-17b7de371dc2129f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604094,32.8426144]},"id":"8f44c0a364b3d03-13df4d91462933c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36495696-17b7de371dc2129f","8f44c0a364b3d03-13df4d91462933c0"]},"geometry":{"type":"LineString","coordinates":[[-83.60382870000001,32.8434025],[-83.60400150000001,32.8432578],[-83.6042281,32.8430234],[-83.6042858,32.842941100000004],[-83.6043073,32.842888200000004],[-83.60430860000001,32.8428296],[-83.6042831,32.8427688],[-83.6042348,32.8427226],[-83.60416910000001,32.8426741],[-83.604094,32.8426144]]},"id":"8944c0a364bffff-17d77d77f99a5e38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6027226,32.845536700000004]},"id":"8f44c0b8db3248d-13ff70ea6cacfb83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60285370000001,32.8467132]},"id":"8f44c0b8db1141a-17dfd09874766ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8db3248d-13ff70ea6cacfb83","8f44c0b8db1141a-17dfd09874766ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.6027226,32.845536700000004],[-83.6026971,32.845772100000005],[-83.60270440000001,32.845885200000005],[-83.6027954,32.8463957],[-83.60285370000001,32.8467132]]},"id":"8944c0b8db3ffff-13df50d49155f100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6254985,32.849043200000004]},"id":"8f44c0a36366ba4-13ff194f79d0f2a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ac8d9e-139f376e80104741","8f44c0a36366ba4-13ff194f79d0f2a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6254985,32.849043200000004],[-83.62568900000001,32.848905],[-83.62591,32.848706],[-83.62605,32.848557],[-83.62616990000001,32.8483985],[-83.62626800000001,32.848269]]},"id":"8744c0a36ffffff-139f385004a37af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625022,32.849339]},"id":"8f44c0a36375344-13b7fa794396f92a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624958,32.849184]},"id":"8f44c0a3637516c-13d71aa142213a3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36375344-13b7fa794396f92a","8f44c0a3637516c-13d71aa142213a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.625022,32.849339],[-83.624958,32.849184]]},"id":"8b44c0a36375fff-13977a8d4da043bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6267789,32.8458154]},"id":"8f44c0a36ae4822-139fb62f3be213f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6265554,32.8454507]},"id":"8f44c0a36a0a5b5-13b7b6bae550bc85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a0a5b5-13b7b6bae550bc85","8f44c0a36ae4822-139fb62f3be213f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6267789,32.8458154],[-83.6266655,32.8457941],[-83.62660580000001,32.845780600000005],[-83.62653730000001,32.8457586],[-83.6264877,32.8457157],[-83.62645710000001,32.8456765],[-83.6264323,32.8456435],[-83.6264294,32.845594500000004],[-83.62646000000001,32.8455431],[-83.6264994,32.845499000000004],[-83.6265554,32.8454507]]},"id":"8944c0a36a3ffff-13d716c03865c232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63786660000001,32.848622500000005]},"id":"8f44c0a34659534-13f7fb1d639b1bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63771650000001,32.848623700000005]},"id":"8f44c0a346582d2-13f7fb7b3daa58c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34659534-13f7fb1d639b1bd6","8f44c0a346582d2-13f7fb7b3daa58c2"]},"geometry":{"type":"LineString","coordinates":[[-83.63786660000001,32.848622500000005],[-83.6377923,32.848621300000005],[-83.63771650000001,32.848623700000005]]},"id":"8a44c0a3465ffff-13f6fb4c596b649d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63761240000001,32.8490063]},"id":"8f44c0a3465b2ac-13f6fbbc4dc216f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6374353,32.8489522]},"id":"8f44c0a3465b78d-13d7fc2afd73368f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465b2ac-13f6fbbc4dc216f6","8f44c0a3465b78d-13d7fc2afd73368f"]},"geometry":{"type":"LineString","coordinates":[[-83.63761240000001,32.8490063],[-83.63752380000001,32.8489871],[-83.6374353,32.8489522]]},"id":"8b44c0a3465bfff-13d6fbf4454a707d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63820650000001,32.8498053]},"id":"8f44c0a309a3881-17defa48f7d07c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63807990000001,32.8498895]},"id":"8f44c0a309a356d-179efa9812f4331b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a356d-179efa9812f4331b","8f44c0a309a3881-17defa48f7d07c12"]},"geometry":{"type":"LineString","coordinates":[[-83.63820650000001,32.8498053],[-83.6381573,32.849820900000005],[-83.6381288,32.8498359],[-83.63810500000001,32.849856200000005],[-83.63807990000001,32.8498895]]},"id":"8b44c0a309a3fff-17fffa744d0faec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63849280000001,32.8495182]},"id":"8f44c0a309a0a2b-17b6f9960f23cc72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6379517,32.8491816]},"id":"8f44c0a309a600d-13d6fae8364b53fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309a600d-13d6fae8364b53fe","8f44c0a309a0a2b-17b6f9960f23cc72"]},"geometry":{"type":"LineString","coordinates":[[-83.63849280000001,32.8495182],[-83.6384051,32.8495111],[-83.6383234,32.849508400000005],[-83.638288,32.8494966],[-83.63814620000001,32.8494326],[-83.63805160000001,32.8493811],[-83.63800760000001,32.849352200000006],[-83.6379861,32.8493288],[-83.6379689,32.8492927],[-83.637955,32.849262],[-83.6379517,32.8492331],[-83.6379517,32.8491816]]},"id":"8a44c0a309a7fff-13f6fa5fc0131dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63787860000001,32.8504829]},"id":"8f44c0a309856a6-17fffb15ea0d71ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6375754,32.850463600000005]},"id":"8f44c0a3098002a-17f7fbd362e6d036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098002a-17f7fbd362e6d036","8f44c0a309856a6-17fffb15ea0d71ab"]},"geometry":{"type":"LineString","coordinates":[[-83.63787860000001,32.8504829],[-83.6377401,32.850457500000005],[-83.6375754,32.850463600000005]]},"id":"8a44c0a30987fff-17f6fb74458ad9a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63653040000001,32.8504208]},"id":"8f44c0a3099569a-17dffe6089261804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3099569a-17dffe6089261804","8f44c0a3098002a-17f7fbd362e6d036"]},"geometry":{"type":"LineString","coordinates":[[-83.6375754,32.850463600000005],[-83.637574,32.8505261],[-83.6375419,32.8505628],[-83.6374938,32.8505983],[-83.63738450000001,32.8506179],[-83.63719210000001,32.850644800000005],[-83.6369531,32.8506754],[-83.63684230000001,32.8506779],[-83.6367884,32.8506657],[-83.63674320000001,32.850631400000005],[-83.63653040000001,32.8504208]]},"id":"8944c0a309bffff-17dffd16509f6c2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6364439,32.851728300000005]},"id":"8f44c0a3099a2e4-139efe969dd72b51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636876,32.8515838]},"id":"8f44c0a309982a0-13bffd8886114248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309982a0-13bffd8886114248","8f44c0a3099a2e4-139efe969dd72b51"]},"geometry":{"type":"LineString","coordinates":[[-83.6364439,32.851728300000005],[-83.6364963,32.8516842],[-83.636578,32.8516549],[-83.6367091,32.851630400000005],[-83.6368417,32.8516071],[-83.636876,32.8515838]]},"id":"8a44c0a3099ffff-13d6fe12523f4cf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637467,32.8499114]},"id":"8f44c0a309b1241-179efc17241ad464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63769350000001,32.8502296]},"id":"8f44c0a30984299-17f7fb8990b403cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309b1241-179efc17241ad464","8f44c0a30984299-17f7fb8990b403cf"]},"geometry":{"type":"LineString","coordinates":[[-83.637467,32.8499114],[-83.6375661,32.8499114],[-83.63765210000001,32.849937100000005],[-83.6377016,32.8499787],[-83.6377075,32.8500387],[-83.6376987,32.850125600000005],[-83.63769350000001,32.8502296]]},"id":"8b44c0a30984fff-17dffba7ca517db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639072,32.849794200000005]},"id":"8f44c0a30912729-17d7f82c065b5d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63937250000001,32.849492600000005]},"id":"8f44c0a3091625c-1796f7703028e1d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30912729-17d7f82c065b5d0b","8f44c0a3091625c-1796f7703028e1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.639072,32.849794200000005],[-83.63914580000001,32.8497119],[-83.6392424,32.8496319],[-83.63932150000001,32.849541800000004],[-83.63937250000001,32.849492600000005]]},"id":"8a44c0a30917fff-17f7f7ce383ab9ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6390104,32.849702]},"id":"8f44c0a30912548-1797f8528caaec68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63926520000001,32.8493827]},"id":"8f44c0a30916395-13d6f7b34f0d80c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30912548-1797f8528caaec68","8f44c0a30916395-13d6f7b34f0d80c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6390104,32.849702],[-83.63906270000001,32.8496454],[-83.6391177,32.8495925],[-83.6391512,32.8495575],[-83.63917670000001,32.849518100000004],[-83.63921690000001,32.8494516],[-83.63926520000001,32.8493827]]},"id":"8a44c0a30917fff-17b7f7fe7d0507d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6392994,32.8509613]},"id":"8f44c0a309a904c-17bef79de14f3089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63890310000001,32.8509151]},"id":"8f44c0a309ab842-179ff89596eaf176"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309ab842-179ff89596eaf176","8f44c0a309a904c-17bef79de14f3089"]},"geometry":{"type":"LineString","coordinates":[[-83.6392994,32.8509613],[-83.63923100000001,32.8509602],[-83.639121,32.850957900000004],[-83.63908260000001,32.850953600000004],[-83.6390406,32.8509489],[-83.63895210000001,32.850932],[-83.63890310000001,32.8509151]]},"id":"8a44c0a309affff-17b7f81acf5cc799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63805350000001,32.8512494]},"id":"8f44c0a3098eb59-13defaa895d634a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377994,32.8510963]},"id":"8f44c0a3098e892-17fffb47620de5c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098eb59-13defaa895d634a2","8f44c0a3098e892-17fffb47620de5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.63805350000001,32.8512494],[-83.63795830000001,32.8512068],[-83.6379007,32.8511753],[-83.63782420000001,32.8511246],[-83.6377994,32.8510963]]},"id":"8b44c0a3098efff-13b6fafb831a49c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63760380000001,32.8509143]},"id":"8f44c0a30983a13-179ffbc1a87b0b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63662790000001,32.8510565]},"id":"8f44c0a3099eba2-17f6fe2392e55869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3099eba2-17f6fe2392e55869","8f44c0a30983a13-179ffbc1a87b0b3f"]},"geometry":{"type":"LineString","coordinates":[[-83.63760380000001,32.8509143],[-83.6374876,32.8509432],[-83.6373803,32.850968],[-83.6372006,32.850995000000005],[-83.63693640000001,32.8510164],[-83.63662790000001,32.8510565]]},"id":"8944c0a309bffff-17d6fcf1721fed54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6388749,32.850026500000006]},"id":"8f44c0a309acc8d-17f6f8a732f1c60b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6380056,32.8502844]},"id":"8f44c0a309851a4-1797fac6825b9f4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309851a4-1797fac6825b9f4b","8f44c0a309acc8d-17f6f8a732f1c60b"]},"geometry":{"type":"LineString","coordinates":[[-83.6388749,32.850026500000006],[-83.638705,32.8500998],[-83.63860310000001,32.8501336],[-83.6384582,32.8501641],[-83.6383684,32.850188800000005],[-83.63829460000001,32.8502294],[-83.6382155,32.8502767],[-83.63813640000001,32.8503004],[-83.6380867,32.8502981],[-83.6380056,32.8502844]]},"id":"8944c0a309bffff-17d6f9b5b0fc86ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6391971,32.8501035]},"id":"8f44c0a309acb02-1796f7ddd39e1ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639645,32.849721800000005]},"id":"8f44c0a30910381-17b6f6c5e4ea4bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30910381-17b6f6c5e4ea4bbb","8f44c0a309acb02-1796f7ddd39e1ca5"]},"geometry":{"type":"LineString","coordinates":[[-83.6391971,32.8501035],[-83.6392835,32.8500382],[-83.6394793,32.8498704],[-83.63958260000001,32.8497746],[-83.639645,32.849721800000005]]},"id":"8844c0a309fffff-179ff75051ad9f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6396897,32.8502132]},"id":"8f44c0a3091ec84-17d7f6a9f650ede1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63980500000001,32.8516631]},"id":"8f44c0a3083578e-13f7f661e7f3c740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3083578e-13f7f661e7f3c740","8f44c0a3091ec84-17d7f6a9f650ede1"]},"geometry":{"type":"LineString","coordinates":[[-83.6396897,32.8502132],[-83.6398168,32.8503185],[-83.639966,32.850483600000004],[-83.6400461,32.8505875],[-83.6401043,32.850715900000004],[-83.64014800000001,32.8508565],[-83.6401771,32.8510124],[-83.64019160000001,32.851186600000005],[-83.64016620000001,32.8513456],[-83.64013340000001,32.8514373],[-83.6400315,32.8515382],[-83.6399478,32.851602400000004],[-83.63980500000001,32.8516631]]},"id":"8844c0a309fffff-17b7f5d3e5994715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640853,32.8513265]},"id":"8f44c0a30824199-139ff3d2ee9ce96d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64031200000001,32.8521486]},"id":"8f44c0a30804824-1396f5250169a801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30824199-139ff3d2ee9ce96d","8f44c0a30804824-1396f5250169a801"]},"geometry":{"type":"LineString","coordinates":[[-83.640853,32.8513265],[-83.6408037,32.8514791],[-83.6407313,32.851683],[-83.6406575,32.851831700000005],[-83.64057030000001,32.8519286],[-83.6404899,32.8520075],[-83.64031200000001,32.8521486]]},"id":"8a44c0a30827fff-13b7f45a016cb4f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64091900000001,32.8517869]},"id":"8f44c0a30820aa2-13bef3a9a6b8facb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64051090000001,32.852261]},"id":"8f44c0a3082345a-13d7f4a8b5fe9f8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3082345a-13d7f4a8b5fe9f8b","8f44c0a30820aa2-13bef3a9a6b8facb"]},"geometry":{"type":"LineString","coordinates":[[-83.64091900000001,32.8517869],[-83.64084530000001,32.8519129],[-83.6407339,32.8520661],[-83.6406293,32.8521585],[-83.64051090000001,32.852261]]},"id":"8a44c0a30827fff-13def41e1f857c3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63847480000001,32.8526988]},"id":"8f44c0a30812b03-13fef9a1452fead2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6363154,32.8522443]},"id":"8f44c0a308b096e-13defee6e5910e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30812b03-13fef9a1452fead2","8f44c0a308b096e-13defee6e5910e4c"]},"geometry":{"type":"LineString","coordinates":[[-83.63847480000001,32.8526988],[-83.63817780000001,32.852770400000004],[-83.63785390000001,32.8528102],[-83.6374973,32.852880500000005],[-83.6371953,32.853005800000005],[-83.63700610000001,32.8530516],[-83.636846,32.8530486],[-83.63669320000001,32.8530333],[-83.63655130000001,32.853015],[-83.6364348,32.8529661],[-83.6363475,32.852898800000006],[-83.63631480000001,32.8528193],[-83.63631480000001,32.8526206],[-83.6363475,32.8524678],[-83.6363257,32.8523364],[-83.6363154,32.8522443]]},"id":"8844c0a309fffff-17bffcdce7a2b524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638309,32.848285100000005]},"id":"8f44c0a3465db8e-13b6fa08e9337ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384568,32.8481668]},"id":"8f44c0a3464e431-13def9ac8553ee9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465db8e-13b6fa08e9337ed0","8f44c0a3464e431-13def9ac8553ee9e"]},"geometry":{"type":"LineString","coordinates":[[-83.638309,32.848285100000005],[-83.6383605,32.8482269],[-83.6384568,32.8481668]]},"id":"8944c0a3467ffff-13fef9dd61a22cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63851600000001,32.8484822]},"id":"8f44c0a3464ad4a-139ff9878e562e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6386571,32.8483808]},"id":"8f44c0a3464e29d-13def92f574870dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3464e29d-13def92f574870dd","8f44c0a3464ad4a-139ff9878e562e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.63851600000001,32.8484822],[-83.6385643,32.848443200000006],[-83.6386571,32.8483808]]},"id":"8a44c0a3464ffff-13fef95c1bbb4ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63751020000001,32.848086]},"id":"8f44c0a3465ea06-13b7fbfc24fc3d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63768850000001,32.8481638]},"id":"8f44c0a3465c6c4-13d6fb8cba171fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3465c6c4-13d6fb8cba171fe7","8f44c0a3465ea06-13b7fbfc24fc3d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.63751020000001,32.848086],[-83.63760950000001,32.8481311],[-83.63768850000001,32.8481638]]},"id":"8a44c0a3465ffff-13befbc4aff7a9ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63549850000001,32.847367000000006]},"id":"8f44c0a346e2a56-17f760e57e5d91ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63448980000001,32.8467106]},"id":"8f44c0a346f4735-17df235be034bc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346e2a56-17f760e57e5d91ad","8f44c0a346f4735-17df235be034bc1e"]},"geometry":{"type":"LineString","coordinates":[[-83.63549850000001,32.847367000000006],[-83.63527570000001,32.847299],[-83.6349163,32.847162600000004],[-83.6346467,32.8470646],[-83.6345649,32.8470286],[-83.6345314,32.846997],[-83.63449250000001,32.8469508],[-83.6344778,32.846910300000005],[-83.63448050000001,32.8468449],[-83.63448980000001,32.8467106]]},"id":"8944c0a346fffff-17df026147eadeb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6427209,32.853130900000004]},"id":"8f44c0a309582b1-17f6ff4375e8f989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64187150000001,32.8539192]},"id":"8f44c0a30870541-17f7f1565a5ce1cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30870541-17f7f1565a5ce1cb","8f44c0a309582b1-17f6ff4375e8f989"]},"geometry":{"type":"LineString","coordinates":[[-83.6427209,32.853130900000004],[-83.64261950000001,32.8531563],[-83.64256350000001,32.8531484],[-83.64248880000001,32.853121],[-83.64241870000001,32.8531013],[-83.64235330000001,32.8530974],[-83.6422919,32.8531173],[-83.64202800000001,32.8532712],[-83.641857,32.8533782],[-83.64180970000001,32.8534516],[-83.6417806,32.85358],[-83.6417806,32.8537053],[-83.64179150000001,32.8537939],[-83.64187150000001,32.8539192]]},"id":"8844c0a309fffff-179ff0c96e2a22de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6429109,32.8552533]},"id":"8f44c0a30841c41-13b7feccb822dc5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642756,32.8550429]},"id":"8f44c0a30840a15-13b7ff2d894abd27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30841c41-13b7feccb822dc5d","8f44c0a30840a15-13b7ff2d894abd27"]},"geometry":{"type":"LineString","coordinates":[[-83.6429109,32.8552533],[-83.642756,32.8550429]]},"id":"8a44c0a30847fff-13f7fefd11711908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64241960000001,32.8545773]},"id":"8f44c0a308444b2-13feffffc8f888da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6425631,32.8547887]},"id":"8f44c0a308446d4-1396ffa61ab4c325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308446d4-1396ffa61ab4c325","8f44c0a308444b2-13feffffc8f888da"]},"geometry":{"type":"LineString","coordinates":[[-83.64241960000001,32.8545773],[-83.6425631,32.8547887]]},"id":"8a44c0a30847fff-13d6efd2fedcfb2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6422577,32.8560328]},"id":"8f44c0a3085d62e-179ef064f3db36ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64176970000001,32.8553538]},"id":"8f44c0a30851374-13f6f195fd6fc3d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3085d62e-179ef064f3db36ce","8f44c0a30851374-13f6f195fd6fc3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6422577,32.8560328],[-83.6419935,32.855690100000004],[-83.64176970000001,32.8553538]]},"id":"8944c0a3087ffff-13bef1012b205445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6422496,32.8551262]},"id":"8f44c0a30842b88-13d7f06a094ec630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6419735,32.8547454]},"id":"8f44c0a30855b25-13f7f1169a1de335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30855b25-13f7f1169a1de335","8f44c0a30842b88-13d7f06a094ec630"]},"geometry":{"type":"LineString","coordinates":[[-83.6422496,32.8551262],[-83.64211540000001,32.854964100000004],[-83.6419735,32.8547454]]},"id":"8a44c0a30847fff-13f7f0c3b0d839d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6490354,32.832812000000004]},"id":"8f44c0a34860513-13dfdfd8e70e8524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34860513-13dfdfd8e70e8524","8f44c0a3494c674-13fffd718683334c"]},"geometry":{"type":"LineString","coordinates":[[-83.6490354,32.832812000000004],[-83.649535,32.8322157],[-83.65002000000001,32.831637]]},"id":"8844c0a349fffff-13fedea53a9316b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65367830000001,32.825798]},"id":"8f44c0b1a275b24-13bfd48310258f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a24401d-17d6f47e7260bcf7","8f44c0b1a275b24-13bfd48310258f63"]},"geometry":{"type":"LineString","coordinates":[[-83.65368570000001,32.826653],[-83.65372570000001,32.826539700000005],[-83.65372640000001,32.8258906],[-83.65367830000001,32.825798]]},"id":"8944c0b1a27ffff-13d7d468cd449462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a24401d-17d6f47e7260bcf7","8f44c0b1a275b24-13bfd48310258f63"]},"geometry":{"type":"LineString","coordinates":[[-83.65367830000001,32.825798],[-83.6536244,32.8258868],[-83.65362660000001,32.826538400000004],[-83.65368570000001,32.826653]]},"id":"8944c0b1a27ffff-13d6f49f68d1b882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64164140000001,32.8592913]},"id":"8f44c0a30b8a4c0-1797f1e6252b3e5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6445272,32.8606323]},"id":"8f44c0a30a0119e-17d7fada8b97a8f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b8a4c0-1797f1e6252b3e5b","8f44c0a30a0119e-17d7fada8b97a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.64164140000001,32.8592913],[-83.6418541,32.859442300000005],[-83.64204210000001,32.8595667],[-83.64224010000001,32.859695800000004],[-83.64251800000001,32.859840000000005],[-83.642875,32.859996],[-83.643422,32.8602162],[-83.64399300000001,32.860425],[-83.6445272,32.8606323]]},"id":"8844c0a30bfffff-17dffe75a26b23a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734763,32.832441700000004]},"id":"8f44c0b0b80cd1b-13f61e8d29ab0864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73416370000001,32.830448700000005]},"id":"8f44c0b0b91b384-17967003b3bb3b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b91b384-17967003b3bb3b01","8f44c0b0b80cd1b-13f61e8d29ab0864"]},"geometry":{"type":"LineString","coordinates":[[-83.734763,32.832441700000004],[-83.73449140000001,32.8323003],[-83.73425440000001,32.832174900000005],[-83.734143,32.832039],[-83.73381400000001,32.831666000000006],[-83.73367,32.831494],[-83.7336619,32.8313615],[-83.73365600000001,32.831252400000004],[-83.7336796,32.8310837],[-83.73371200000001,32.8309373],[-83.73380060000001,32.8307736],[-83.73391880000001,32.830644500000005],[-83.73416370000001,32.830448700000005]]},"id":"8944c0b0b83ffff-13b63065fd60d9f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7348051,32.833500900000004]},"id":"8f44c0b0b80ba23-179e1e72d859c8ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734509,32.8332755]},"id":"8f44c0b0b80bd10-17ff3f2be8819470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b80bd10-17ff3f2be8819470","8f44c0b0b80ba23-179e1e72d859c8ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7348051,32.833500900000004],[-83.73470420000001,32.8334558],[-83.73463020000001,32.833404],[-83.73458570000001,32.8333691],[-83.73454740000001,32.8333279],[-83.734509,32.8332755]]},"id":"8b44c0b0b80bfff-17df3ed6d6c04e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7326015,32.8144707]},"id":"8f44c0b081a244c-179633d4130f83d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7327291,32.8143583]},"id":"8f44c0b081a2133-17dff38450f5f8e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b081a2133-17dff38450f5f8e7","8f44c0b081a244c-179633d4130f83d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7326015,32.8144707],[-83.7327291,32.8143583]]},"id":"8b44c0b081a2fff-17f713ac340b9752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7373352,32.814064]},"id":"8f44c0b0812c98e-179608458e7dafe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7369841,32.8127048]},"id":"8f44c0b0888aa30-13d68920f67474fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0812c98e-179608458e7dafe8","8f44c0b0888aa30-13d68920f67474fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7373352,32.814064],[-83.73729660000001,32.813969400000005],[-83.7372934,32.8138829],[-83.7373288,32.8136694],[-83.7373288,32.8135397],[-83.7373144,32.8134328],[-83.7372934,32.8133058],[-83.7372548,32.8131792],[-83.73715750000001,32.8129721],[-83.7369841,32.8127048]]},"id":"8744c0b08ffffff-13f698815ec61e4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6460261,32.8344931]},"id":"8f44c0a348ee626-17f6f731bef03991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64583660000001,32.834380200000005]},"id":"8f44c0a348ee490-17bfe7a82e728c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348ee490-17bfe7a82e728c05","8f44c0a348ee626-17f6f731bef03991"]},"geometry":{"type":"LineString","coordinates":[[-83.6460261,32.8344931],[-83.64610300000001,32.834405100000005],[-83.6464359,32.8340241],[-83.646456,32.8339984],[-83.64646730000001,32.833969700000004],[-83.6464552,32.8339227],[-83.6464078,32.8338861],[-83.6463497,32.8338555],[-83.64630290000001,32.8338587],[-83.6462676,32.833875500000005],[-83.6462393,32.8339056],[-83.64591060000001,32.834293],[-83.64583660000001,32.834380200000005]]},"id":"8944c0a348fffff-1796e6cb24626d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704221,32.782139]},"id":"8f44c0b038c142c-17b6f91de6f9bb29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704707,32.780551]},"id":"8f44c0b038e4799-13d677ee2e946dca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038e4799-13d677ee2e946dca","8f44c0b038c142c-17b6f91de6f9bb29"]},"geometry":{"type":"LineString","coordinates":[[-83.704221,32.782139],[-83.704328,32.782023],[-83.704462,32.781894],[-83.704519,32.78183],[-83.704547,32.781789],[-83.704577,32.781731],[-83.7046,32.781674],[-83.704614,32.781618],[-83.70463000000001,32.781162],[-83.70464000000001,32.780866],[-83.704649,32.780789],[-83.704707,32.780551]]},"id":"8944c0b038fffff-17d7d84750d16418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7088306,32.8169905]},"id":"8f44c0b0ac54a50-17bf5ddce3876b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70921700000001,32.816578]},"id":"8f44c0b0ac70298-13bf4ceb67740e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0ac54a50-17bf5ddce3876b01","8f44c0b0ac70298-13bf4ceb67740e97"]},"geometry":{"type":"LineString","coordinates":[[-83.7088306,32.8169905],[-83.7088379,32.8167653],[-83.7088435,32.8167327],[-83.708858,32.816702],[-83.70887900000001,32.8166764],[-83.7089062,32.8166553],[-83.7089382,32.8166397],[-83.7089735,32.8166303],[-83.70921700000001,32.816578]]},"id":"8944c0b0ac7ffff-17976d946313bdf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70813650000001,32.8158133]},"id":"8f44c0b0ac0cb91-13df5f8ebf69a549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70774700000001,32.8163077]},"id":"8f44c0b0ac08442-139650822481e46d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0ac08442-139650822481e46d","8f44c0b0ac0cb91-13df5f8ebf69a549"]},"geometry":{"type":"LineString","coordinates":[[-83.70813650000001,32.8158133],[-83.70816020000001,32.816014200000005],[-83.70817480000001,32.816052500000005],[-83.708179,32.816092600000005],[-83.70817260000001,32.8161325],[-83.708156,32.8161703],[-83.70813000000001,32.8162041],[-83.7081038,32.8162267],[-83.7080734,32.816245200000004],[-83.7080397,32.816259],[-83.70774700000001,32.8163077]]},"id":"8a44c0b0ac0ffff-13be6fc3fce0ad9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5812147,32.8993982]},"id":"8f44c0a16292a81-17ffe56cd2e869c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58078350000001,32.8994104]},"id":"8f44c0a16661b14-17f7867a50defba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16661b14-17f7867a50defba3","8f44c0a16292a81-17ffe56cd2e869c7"]},"geometry":{"type":"LineString","coordinates":[[-83.5812147,32.8993982],[-83.58078350000001,32.8994104]]},"id":"8844c0a167fffff-17ffb5f391d7fd4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62367610000001,32.8497304]},"id":"8f44c0a36354cf5-17bf9dc270aa1d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62385900000001,32.8499691]},"id":"8f44c0a36354234-17bfbd5024551ebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36354cf5-17bf9dc270aa1d92","8f44c0a36354234-17bfbd5024551ebc"]},"geometry":{"type":"LineString","coordinates":[[-83.62367610000001,32.8497304],[-83.62374870000001,32.849747400000005],[-83.62378670000001,32.8497793],[-83.62384030000001,32.8498281],[-83.6238582,32.8498844],[-83.62385900000001,32.8499691]]},"id":"8b44c0a36354fff-17f7bd73b5a2a8d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3442292b-17f7b9271a164d7d","8f44c0a34420349-17ffa7e9c412e61c"]},"geometry":{"type":"LineString","coordinates":[[-83.63211670000001,32.836508300000006],[-83.6321678,32.8365383],[-83.63262440000001,32.836759400000005]]},"id":"8a44c0a34427fff-17b758890eb732a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63136940000001,32.8361548]},"id":"8f44c0a34434308-1397cafa25047b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63149920000001,32.835983500000005]},"id":"8f44c0a3451b4d3-139fbaa9032f5258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3451b4d3-139fbaa9032f5258","8f44c0a34434308-1397cafa25047b72"]},"geometry":{"type":"LineString","coordinates":[[-83.63136940000001,32.8361548],[-83.6314243,32.8361062],[-83.6314596,32.8360691],[-83.63148600000001,32.8360235],[-83.63149920000001,32.835983500000005]]},"id":"8944c0a3443ffff-13d77acb868689f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672303,32.7412811]},"id":"8f44c0b33655022-13f6b36d123d83e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66753170000001,32.7365443]},"id":"8f44c0b3372bd01-13d6b2b0bc9ee1c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b33655022-13f6b36d123d83e7","8f44c0b3372bd01-13d6b2b0bc9ee1c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6672303,32.7412811],[-83.6672279,32.7404341],[-83.6672573,32.7402443],[-83.6673257,32.7399969],[-83.66736470000001,32.739793500000005],[-83.66738450000001,32.7396234],[-83.66738500000001,32.739580600000004],[-83.66739530000001,32.7385777],[-83.6674011,32.737547400000004],[-83.6674038,32.736653100000005],[-83.6674435,32.736578900000005],[-83.66753170000001,32.7365443]]},"id":"8844c0b337fffff-179fb31f509d4118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6533737,32.830857200000004]},"id":"8f44c0b1b58c756-1797d5417730223b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65399330000001,32.8300435]},"id":"8f44c0b1b5a8d53-179ff3be365cb847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b58c756-1797d5417730223b","8f44c0b1b5a8d53-179ff3be365cb847"]},"geometry":{"type":"LineString","coordinates":[[-83.6533737,32.830857200000004],[-83.6540255,32.8300864],[-83.65399330000001,32.8300435]]},"id":"8944c0b1b5bffff-179ed46c0a41da55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464905,32.8318169]},"id":"8f44c0a348018ed-13fff60f7dbee378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64718040000001,32.8316766]},"id":"8f44c0a3482855a-1397e4604db3b791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3482855a-1397e4604db3b791","8f44c0a348018ed-13fff60f7dbee378"]},"geometry":{"type":"LineString","coordinates":[[-83.6464905,32.8318169],[-83.64662700000001,32.8317082],[-83.6467181,32.831636100000004],[-83.6468201,32.8316113],[-83.64687640000001,32.831609],[-83.64694610000001,32.8316158],[-83.6469998,32.8316271],[-83.64718040000001,32.8316766]]},"id":"8944c0a3483ffff-1396f54261c2ee3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7594066,32.882266300000005]},"id":"8f44c0b53996945-179df262e1caa0e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7594201,32.880774100000004]},"id":"8f44c0b506eab1b-13f7d25a7807078b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53996945-179df262e1caa0e9","8f44c0b506eab1b-13f7d25a7807078b"]},"geometry":{"type":"LineString","coordinates":[[-83.7594066,32.882266300000005],[-83.7594201,32.880774100000004]]},"id":"8644c0b57ffffff-13d7f25eb8ff20eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76016460000001,32.882285100000004]},"id":"8f44c0b539b30dd-17b5f0892925e5f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76017730000001,32.880809400000004]},"id":"8f44c0b506e9915-139df0813b752fef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e9915-139df0813b752fef","8f44c0b539b30dd-17b5f0892925e5f4"]},"geometry":{"type":"LineString","coordinates":[[-83.76016460000001,32.882285100000004],[-83.76017730000001,32.880809400000004]]},"id":"8644c0b57ffffff-13d7d0853f07d991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7596019,32.8807787]},"id":"8f44c0b506e871e-13f7f1e8dde2a6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7596048,32.882270000000005]},"id":"8f44c0b53994563-179fd1e70845eded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53994563-179fd1e70845eded","8f44c0b506e871e-13f7f1e8dde2a6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7596019,32.8807787],[-83.7596048,32.882270000000005]]},"id":"8644c0b57ffffff-13ddd1e7e383c60b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75981540000001,32.880784600000005]},"id":"8f44c0b506e8300-13fff16365d8b8cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7597954,32.8822739]},"id":"8f44c0b53994164-179df16fe0fbf092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53994164-179df16fe0fbf092","8f44c0b506e8300-13fff16365d8b8cb"]},"geometry":{"type":"LineString","coordinates":[[-83.75981540000001,32.880784600000005],[-83.7597954,32.8822739]]},"id":"8644c0b57ffffff-13dfd169a2d8d23a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7590364,32.882256600000005]},"id":"8f44c0b506cb348-1797f34a40229fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7590526,32.880763900000005]},"id":"8f44c0b506ea423-13fdf3402c79ea2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506cb348-1797f34a40229fb3","8f44c0b506ea423-13fdf3402c79ea2b"]},"geometry":{"type":"LineString","coordinates":[[-83.7590364,32.882256600000005],[-83.7590526,32.880763900000005]]},"id":"8944c0b506fffff-13bff34536a6da29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75923350000001,32.8807701]},"id":"8f44c0b506ea026-13f5d2cf1d9d7bd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7592223,32.8822635]},"id":"8f44c0b53996d4c-1797f2d61d774390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506ea026-13f5d2cf1d9d7bd9","8f44c0b53996d4c-1797f2d61d774390"]},"geometry":{"type":"LineString","coordinates":[[-83.75923350000001,32.8807701],[-83.7592223,32.8822635]]},"id":"8644c0b57ffffff-13d5d2d29a2ceca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7600275,32.8807971]},"id":"8f44c0b506e9d28-1397f0ded9b1c4c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7600091,32.8822775]},"id":"8f44c0b539b37b2-179ff0ea5a892fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539b37b2-179ff0ea5a892fd7","8f44c0b506e9d28-1397f0ded9b1c4c3"]},"geometry":{"type":"LineString","coordinates":[[-83.7600275,32.8807971],[-83.7600091,32.8822775]]},"id":"8644c0b57ffffff-13d5d0e4955f3122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5317957,32.8861395]},"id":"8f44c0aa46b690b-179ffe13bf11abf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53064590000001,32.8836524]},"id":"8f44c0aa44d9128-17fac0e2547ec445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa46b690b-179ffe13bf11abf8","8f44c0aa44d9128-17fac0e2547ec445"]},"geometry":{"type":"LineString","coordinates":[[-83.5317957,32.8861395],[-83.5316504,32.885975800000004],[-83.53147530000001,32.885710700000004],[-83.5313749,32.885510700000005],[-83.5312916,32.8852552],[-83.53120840000001,32.8848286],[-83.5311338,32.8845273],[-83.5310362,32.884308000000004],[-83.5309185,32.884098300000005],[-83.5307808,32.8838886],[-83.53064590000001,32.8836524]]},"id":"8744c0aa4ffffff-139fff81ede3c3fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5294748,32.8839127]},"id":"8f44c0aa6b7440c-139d73be45e43cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53039150000001,32.8869661]},"id":"8f44c0aa6b4b4e6-1799d1815e09d17f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6b7440c-139d73be45e43cd1","8f44c0aa6b4b4e6-1799d1815e09d17f"]},"geometry":{"type":"LineString","coordinates":[[-83.5294748,32.8839127],[-83.52939160000001,32.8842043],[-83.52937150000001,32.8843514],[-83.52937150000001,32.8845104],[-83.52937440000001,32.884684],[-83.5294289,32.8848937],[-83.5294921,32.8850744],[-83.5295753,32.8852865],[-83.5299111,32.8862048],[-83.52999150000001,32.886383200000004],[-83.5300804,32.8865302],[-83.5301838,32.8867013],[-83.53033590000001,32.8868965],[-83.53039150000001,32.8869661]]},"id":"8944c0aa6b7ffff-13fe23288ed01bd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5267836,32.8889092]},"id":"8f44c0aa6aeecc8-17d84a50492e5e85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5315248,32.8945293]},"id":"8f44c0aa0c0c630-139ffebd0b2519f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6aeecc8-17d84a50492e5e85","8f44c0aa0c0c630-139ffebd0b2519f5"]},"geometry":{"type":"LineString","coordinates":[[-83.5267836,32.8889092],[-83.52687470000001,32.889331],[-83.526964,32.8895764],[-83.52705730000001,32.8897435],[-83.5273933,32.8901357],[-83.5277676,32.890629600000004],[-83.5281532,32.8911409],[-83.5283684,32.891423800000005],[-83.52848200000001,32.891648700000005],[-83.5286444,32.892047500000004],[-83.52877020000001,32.892228100000004],[-83.5290178,32.8924667],[-83.5304182,32.893669800000005],[-83.5309986,32.8941845],[-83.53131110000001,32.8944026],[-83.5313967,32.894453],[-83.5315248,32.8945293]]},"id":"8644c0aa7ffffff-13bcf535c972f89f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54112020000001,32.8654973]},"id":"8f44c0b8a615883-13b7f74fe5f3142c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5412294,32.8651992]},"id":"8f44c0b8a63300d-13ffe70baa28972b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a615883-13b7f74fe5f3142c","8f44c0b8a63300d-13ffe70baa28972b"]},"geometry":{"type":"LineString","coordinates":[[-83.54112020000001,32.8654973],[-83.5412294,32.8651992]]},"id":"8944c0b8a63ffff-13dff72dc62ae5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53379500000001,32.8929676]},"id":"8f44c0aa0d42d6a-17bff932290c16af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5351632,32.891630500000005]},"id":"8f44c0aa0d6415a-13f7f5db0f0483f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa0d42d6a-17bff932290c16af","8f44c0aa0d6415a-13f7f5db0f0483f7"]},"geometry":{"type":"LineString","coordinates":[[-83.53379500000001,32.8929676],[-83.5338802,32.8929367],[-83.5339778,32.892874],[-83.5351632,32.891630500000005]]},"id":"8844c0aa0dfffff-17b7f77b3dd571c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53248090000001,32.8927716]},"id":"8f44c0aa0d566f1-17bffc67768c5669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5330629,32.8923124]},"id":"8f44c0aa0d54d40-179ffafbb3e8b85d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa0d566f1-17bffc67768c5669","8f44c0aa0d54d40-179ffafbb3e8b85d"]},"geometry":{"type":"LineString","coordinates":[[-83.53248090000001,32.8927716],[-83.532577,32.892771],[-83.53268320000001,32.8927445],[-83.53274920000001,32.892693900000005],[-83.5329731,32.8923902],[-83.5330629,32.8923124]]},"id":"8a44c0aa0d57fff-17dffba2233a86fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.530822,32.886725000000006]},"id":"8f44c0aa6b48253-17fb2074432f285a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5325,32.887523200000004]},"id":"8f44c0aa4680daa-13fffc5b85542032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4680daa-13fffc5b85542032","8f44c0aa6b48253-17fb2074432f285a"]},"geometry":{"type":"LineString","coordinates":[[-83.530822,32.886725000000006],[-83.5309702,32.8869327],[-83.5310735,32.8870652],[-83.5312543,32.8872219],[-83.53146380000001,32.8873496],[-83.5316734,32.887443600000005],[-83.5319489,32.8875015],[-83.5322933,32.887520800000004],[-83.5325,32.887523200000004]]},"id":"8744c0aa4ffffff-13dffe9bdd8aac7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54221820000001,32.893912]},"id":"8f44c0aa095028d-1397e4a1a9d24120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5465545,32.891451700000005]},"id":"8f44c0aa55b494e-1397da0b7e943e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa55b494e-1397da0b7e943e88","8f44c0aa095028d-1397e4a1a9d24120"]},"geometry":{"type":"LineString","coordinates":[[-83.54221820000001,32.893912],[-83.54248480000001,32.8939486],[-83.54273640000001,32.893937300000005],[-83.5429879,32.893861900000005],[-83.5431676,32.8937827],[-83.54338770000001,32.8935903],[-83.54354040000001,32.893401700000005],[-83.5437605,32.893024600000004],[-83.5439671,32.8927266],[-83.54409290000001,32.8925757],[-83.54428610000001,32.8924135],[-83.5445196,32.892285300000005],[-83.5449464,32.892157000000005],[-83.5455797,32.891972200000005],[-83.54601550000001,32.8918327],[-83.5461951,32.8917421],[-83.54637480000001,32.8916026],[-83.5465545,32.891451700000005]]},"id":"8644c0aa7ffffff-179fff6c393cec7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56691500000001,32.8834426]},"id":"8f44c0b8b2ad4c3-17f7a8562d34eb7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5669178,32.8836801]},"id":"8f44c0b8b2a9c1d-179fb85467081414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2a9c1d-179fb85467081414","8f44c0b8b2ad4c3-17f7a8562d34eb7f"]},"geometry":{"type":"LineString","coordinates":[[-83.56691500000001,32.8834426],[-83.5669178,32.8836801]]},"id":"8a44c0b8b2affff-17d7e8554843a37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67004820000001,32.8480772]},"id":"8f44c0a264a0575-13b6ec8bed3bdfbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66970400000001,32.847732]},"id":"8f44c0a264a6cdd-17dead6306628515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a264a6cdd-17dead6306628515","8f44c0a264a0575-13b6ec8bed3bdfbf"]},"geometry":{"type":"LineString","coordinates":[[-83.67004820000001,32.8480772],[-83.67013250000001,32.8480322],[-83.67019110000001,32.847953700000005],[-83.66970400000001,32.847732]]},"id":"8a44c0a264a7fff-13bfecad15633d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6700809,32.847529200000004]},"id":"8f44c0a2659935d-17dfec777b440513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a264a6cdd-17dead6306628515","8f44c0a2659935d-17dfec777b440513"]},"geometry":{"type":"LineString","coordinates":[[-83.6700809,32.847529200000004],[-83.66999530000001,32.8476388],[-83.6699389,32.8476656],[-83.6698372,32.8476945],[-83.66970400000001,32.847732]]},"id":"8a44c0a264a7fff-179ffce299cbbf41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72285310000001,32.7451255]},"id":"8f44c0b04a708d2-17d77ba0dc9a8507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a708d2-17d77ba0dc9a8507","8f44c0b23696556-17b6f68f1a2826ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7249295,32.7450637],[-83.72285310000001,32.7451255]]},"id":"8844c0b04bfffff-17b62917f157d142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64597900000001,32.8306306]},"id":"8f44c0a34822596-179ee74f25a752b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461415,32.830435300000005]},"id":"8f44c0a34835a63-179ef6e99daf6113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34822596-179ee74f25a752b3","8f44c0a34835a63-179ef6e99daf6113"]},"geometry":{"type":"LineString","coordinates":[[-83.64597900000001,32.8306306],[-83.6461415,32.830435300000005]]},"id":"8944c0a3483ffff-17dfe71c60aa9dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635999,32.837169]},"id":"8f44c0a3456a230-17feffaca4507189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6358659,32.8377919]},"id":"8f44c0a3454d492-1797ffffd130876f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3454d492-1797ffffd130876f","8f44c0a3456a230-17feffaca4507189"]},"geometry":{"type":"LineString","coordinates":[[-83.635999,32.837169],[-83.6358659,32.8377919]]},"id":"8944c0a3457ffff-17d7ffd6439ee5bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6344152,32.8002011]},"id":"8f44c0badb93698-13bfb38a869db53a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6376575,32.800654800000004]},"id":"8f44c0bada36048-17dffba019b302ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0bada36048-17dffba019b302ba","8f44c0badb93698-13bfb38a869db53a"]},"geometry":{"type":"LineString","coordinates":[[-83.6344152,32.8002011],[-83.63482040000001,32.8000502],[-83.635271,32.800023200000005],[-83.6358075,32.8000593],[-83.6366229,32.800447000000005],[-83.63729880000001,32.800519200000004],[-83.6376575,32.800654800000004]]},"id":"8844c0badbfffff-13f7ff9281331fab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5332023,32.905674600000005]},"id":"8f44c0aa00db530-17bffaa494b5a08e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5405671,32.899488600000005]},"id":"8f44c0aa0b94664-17b7e8a9969bcf80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0b94664-17b7e8a9969bcf80","8f44c0aa00db530-17bffaa494b5a08e"]},"geometry":{"type":"LineString","coordinates":[[-83.5332023,32.905674600000005],[-83.53358800000001,32.905457600000005],[-83.5340049,32.905212],[-83.53418040000001,32.9050816],[-83.534351,32.9049197],[-83.5344774,32.9047562],[-83.5349132,32.9042526],[-83.535487,32.90363],[-83.5357242,32.903348300000005],[-83.5361099,32.902867400000005],[-83.5367106,32.9021404],[-83.5370645,32.9017436],[-83.5371841,32.9015906],[-83.5372767,32.9014497],[-83.53734510000001,32.9013137],[-83.5374252,32.9010854],[-83.5375631,32.9007438],[-83.5376315,32.900618300000005],[-83.5377203,32.9005017],[-83.537834,32.900383500000004],[-83.5379623,32.9002758],[-83.5387231,32.8997876],[-83.5391127,32.8995479],[-83.53929690000001,32.8994702],[-83.5394328,32.8994378],[-83.53960450000001,32.8994176],[-83.5397877,32.899426500000004],[-83.5404752,32.8994815],[-83.5405671,32.899488600000005]]},"id":"8744c0aa0ffffff-17b7f204c28e5d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61749640000001,32.8612555]},"id":"8f44c0a328e9803-13dfbcd8c8ad70d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6175056,32.861068]},"id":"8f44c0a328ed761-13d7acd30da9e6d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328e9803-13dfbcd8c8ad70d9","8f44c0a328ed761-13d7acd30da9e6d9"]},"geometry":{"type":"LineString","coordinates":[[-83.61749640000001,32.8612555],[-83.6175056,32.861068]]},"id":"8a44c0a328effff-13972cd5eb1cf0ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7278156,32.803011500000004]},"id":"8f44c0b0ea2b0ce-139e3f83457d45c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b08db0143-13f71f9e63779b54","8f44c0b0ea2b0ce-139e3f83457d45c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7277722,32.8066097],[-83.7278156,32.803011500000004]]},"id":"8744c0b0effffff-17febf90dbecde3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6823262,32.7433071]},"id":"8f44c0b06cf371b-13d6fe922015a804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68354020000001,32.7439576]},"id":"8f44c0b06cc56e9-13ff8b9b6bfc46f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06cf371b-13d6fe922015a804","8f44c0b06cc56e9-13ff8b9b6bfc46f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6823262,32.7433071],[-83.68354020000001,32.7439576]]},"id":"8944c0b06cfffff-13b6bd16c2f9c35b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53732450000001,32.818475]},"id":"8f44c0b8312e90e-13dff09430d5d57a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5382103,32.8186972]},"id":"8f44c0b838d32db-13f7ee6a9bf7fdb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8312e90e-13dff09430d5d57a","8f44c0b838d32db-13f7ee6a9bf7fdb4"]},"geometry":{"type":"LineString","coordinates":[[-83.53732450000001,32.818475],[-83.5374183,32.818550800000004],[-83.5380219,32.818706500000005],[-83.5382103,32.8186972]]},"id":"8a44c0b8312ffff-13bfff87154ae4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8312e90e-13dff09430d5d57a","8f44c0b838d32db-13f7ee6a9bf7fdb4"]},"geometry":{"type":"LineString","coordinates":[[-83.5382103,32.8186972],[-83.5380612,32.818627400000004],[-83.5374271,32.8184638],[-83.53732450000001,32.818475]]},"id":"8a44c0b8312ffff-139fff7c06670374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53588470000001,32.815893200000005]},"id":"8f44c0b8389022a-139ff41811058720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53524420000001,32.8157458]},"id":"8f44c0b83892c5e-13b7f5a86d12ebc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8389022a-139ff41811058720","8f44c0b83892c5e-13b7f5a86d12ebc9"]},"geometry":{"type":"LineString","coordinates":[[-83.53588470000001,32.815893200000005],[-83.53524420000001,32.8157458]]},"id":"8a44c0b83897fff-13dff4e03d91a594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7358732,32.8084434]},"id":"8f44c0b08992bb1-17df2bd74c19bbe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7358907,32.8073483]},"id":"8f44c0b0c6cd692-17b6bbcc53c6e551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08992bb1-17df2bd74c19bbe9","8f44c0b0c6cd692-17b6bbcc53c6e551"]},"geometry":{"type":"LineString","coordinates":[[-83.7358732,32.8084434],[-83.7358907,32.8073483]]},"id":"8744c0b08ffffff-1796fbd1de9cd839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73652820000001,32.8103773]},"id":"8f44c0b088b50f2-1797da3ded7d6292"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7373129,32.8108864]},"id":"8f44c0b088a3899-17d6085376c9811d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b088b50f2-1797da3ded7d6292","8f44c0b088a3899-17d6085376c9811d"]},"geometry":{"type":"LineString","coordinates":[[-83.73652820000001,32.8103773],[-83.7365121,32.810841700000005],[-83.7365819,32.8109364],[-83.73713980000001,32.8109319],[-83.7373129,32.8108864]]},"id":"8944c0b088bffff-17b7c9ab8bb01c46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7623341,32.8959501]},"id":"8f44c0b53314b9d-1795db3d361b407b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7624371,32.896018000000005]},"id":"8f44c0b53314a46-17bfcafcd01ed91d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53314a46-17bfcafcd01ed91d","8f44c0b53314b9d-1795db3d361b407b"]},"geometry":{"type":"LineString","coordinates":[[-83.7623341,32.8959501],[-83.7624371,32.896018000000005]]},"id":"8c44c0b53314bff-1797db1d00df2c7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7627413,32.8956698]},"id":"8f44c0b53333985-17d5ea3eb21c4510"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53314a46-17bfcafcd01ed91d","8f44c0b53333985-17d5ea3eb21c4510"]},"geometry":{"type":"LineString","coordinates":[[-83.7624371,32.896018000000005],[-83.7625684,32.895845],[-83.7627413,32.8956698]]},"id":"8944c0b5333ffff-17bfeaa14f159cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7626158,32.8955995]},"id":"8f44c0b53330698-17b5fa8d225e0c08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53314b9d-1795db3d361b407b","8f44c0b53330698-17b5fa8d225e0c08"]},"geometry":{"type":"LineString","coordinates":[[-83.7626158,32.8955995],[-83.7624553,32.8957975],[-83.7623341,32.8959501]]},"id":"8944c0b5333ffff-1797dae57640e2b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76212600000001,32.8963131]},"id":"8f44c0b53310125-17f7fbbf4f019903"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53314b9d-1795db3d361b407b","8f44c0b53310125-17f7fbbf4f019903"]},"geometry":{"type":"LineString","coordinates":[[-83.7623341,32.8959501],[-83.7622553,32.896041700000005],[-83.7621907,32.8961571],[-83.76212600000001,32.8963131]]},"id":"8a44c0b53317fff-17fddb85f60682bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53314a46-17bfcafcd01ed91d","8f44c0b53310125-17f7fbbf4f019903"]},"geometry":{"type":"LineString","coordinates":[[-83.76212600000001,32.8963131],[-83.76230380000001,32.8961842],[-83.76240080000001,32.8960774],[-83.7624371,32.896018000000005]]},"id":"8a44c0b53317fff-179fcb56a051564a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7605281,32.9031759]},"id":"8f44c0b532de56e-17b5ffa5f3212d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7584271,32.9036169]},"id":"8f44c0a2d901494-13bdd4c713b8fb76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2d901494-13bdd4c713b8fb76","8f44c0b532de56e-17b5ffa5f3212d48"]},"geometry":{"type":"LineString","coordinates":[[-83.7605281,32.9031759],[-83.75963920000001,32.9031657],[-83.7594129,32.9031691],[-83.7591745,32.9032098],[-83.75896440000001,32.903274200000006],[-83.7587948,32.9033455],[-83.758617,32.9034574],[-83.7584271,32.9036169]]},"id":"8544c0b7fffffff-17d5f250eae7d7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6447138,32.8338893]},"id":"8f44c0a348f14c3-17fefa65e2944517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64495620000001,32.8338538]},"id":"8f44c0a348f1076-17f6e9ce69acaf68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a348f1076-17f6e9ce69acaf68","8f44c0a348f14c3-17fefa65e2944517"]},"geometry":{"type":"LineString","coordinates":[[-83.6447138,32.8338893],[-83.64474680000001,32.8339051],[-83.6447832,32.833914400000005],[-83.6448211,32.833916800000004],[-83.6448587,32.833912000000005],[-83.6448941,32.833900400000005],[-83.64491770000001,32.8338878],[-83.6449386,32.8338721],[-83.64495620000001,32.8338538]]},"id":"8b44c0a348f1fff-1797ea175d97c96b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34486d44-17979333dbec887b","8f44c0a344b176e-17bf12ea46f5b13a"]},"geometry":{"type":"LineString","coordinates":[[-83.62800030000001,32.837791200000005],[-83.6280696,32.837720700000006],[-83.628118,32.837656]]},"id":"8944c0a344bffff-17df730daa347e3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34491705-13f7d4d305b08fc7","8f44c0a344864e3-1397f3a48baafb56"]},"geometry":{"type":"LineString","coordinates":[[-83.627336,32.838582],[-83.6277441,32.8380938],[-83.62782,32.838003]]},"id":"8944c0a344bffff-13bfd43bc63124a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630229,32.835152]},"id":"8f44c0a345ae3a0-13970dc2eb4ef8c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63070300000001,32.834581]},"id":"8f44c0a34512722-17bf2c9aa1fe04a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345ae3a0-13970dc2eb4ef8c3","8f44c0a34512722-17bf2c9aa1fe04a0"]},"geometry":{"type":"LineString","coordinates":[[-83.630229,32.835152],[-83.63030420000001,32.8350614],[-83.63070300000001,32.834581]]},"id":"8944c0a345bffff-13df9d2ec8199e10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6462425,32.8136251]},"id":"8f44c0b1a116868-1797f6aa78ff6f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649444,32.813693]},"id":"8f44c0b1a8d3436-17befed9828bc92c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a116868-1797f6aa78ff6f21","8f44c0b1a8d3436-17befed9828bc92c"]},"geometry":{"type":"LineString","coordinates":[[-83.6462425,32.8136251],[-83.647411,32.81365],[-83.64828200000001,32.813668],[-83.649444,32.813693]]},"id":"8744c0b1affffff-179ee2c1f14ac7ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62989,32.837108]},"id":"8f44c0a3441642b-17df8e96c3c21fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3441642b-17df8e96c3c21fc8","8f44c0a344a2b68-17bf710425ecab1c"]},"geometry":{"type":"LineString","coordinates":[[-83.62889580000001,32.8374406],[-83.62989,32.837108]]},"id":"8844c0a345fffff-17d77fcd70cb4089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6284469,32.8372678]},"id":"8f44c0a344a2cb0-17bf721cb60e65d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a344a2cb0-17bf721cb60e65d3","8f44c0a344a2b68-17bf710425ecab1c"]},"geometry":{"type":"LineString","coordinates":[[-83.62889580000001,32.8374406],[-83.628718,32.837415],[-83.628527,32.837314],[-83.6284469,32.8372678]]},"id":"8a44c0a344a7fff-17ffb1949b70f19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64482810000001,32.8138269]},"id":"8f44c0b1a1a62ea-1797fa1e72143eb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a1a62ea-1797fa1e72143eb2","8f44c0b1a1a45b1-1796e9c38414a5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6449736,32.8134146],[-83.64486810000001,32.8137111],[-83.64482810000001,32.8138269]]},"id":"8a44c0b1a1a7fff-1796e9f130c74509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446349,32.8143831]},"id":"8f44c0b1a184851-17dffa97331c6e5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64478790000001,32.813945700000005]},"id":"8f44c0b1a1a286a-17defa3798f7cc55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a184851-17dffa97331c6e5c","8f44c0b1a1a286a-17defa3798f7cc55"]},"geometry":{"type":"LineString","coordinates":[[-83.6446349,32.8143831],[-83.64475080000001,32.8140561],[-83.64478790000001,32.813945700000005]]},"id":"8944c0b1a1bffff-17d6ea66f4f33718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640128,32.813004]},"id":"8f44c0b1a52cb13-13fff5980f09ae60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a52cb13-13fff5980f09ae60","8f44c0b1a528b4c-17bef5a94fd3766c"]},"geometry":{"type":"LineString","coordinates":[[-83.64010040000001,32.8134882],[-83.640128,32.813004]]},"id":"8a44c0b1a52ffff-1396f5a0a6e5c18e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7576578,32.7889307]},"id":"8f44c0b2b57351b-13bdf6a7edf407db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7552004,32.788928]},"id":"8f44c0b2b51b291-13bddca7c1bb2eb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2b57351b-13bdf6a7edf407db","8f44c0b2b51b291-13bddca7c1bb2eb7"]},"geometry":{"type":"LineString","coordinates":[[-83.7576578,32.7889307],[-83.75537,32.7889282],[-83.7552004,32.788928]]},"id":"8844c0b2b5fffff-13bdf9a7d9bc4a33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65566820000001,32.8734084]},"id":"8f44c0a3117436d-17fecfa765358adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558553,32.873452900000004]},"id":"8f44c0a311758b0-1796df3272e792ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a311758b0-1796df3272e792ba","8f44c0a3117436d-17fecfa765358adc"]},"geometry":{"type":"LineString","coordinates":[[-83.65566820000001,32.8734084],[-83.6557614,32.873429900000005],[-83.6558553,32.873452900000004]]},"id":"8a44c0a31177fff-1797ff6ce5579f52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65579070000001,32.8732652]},"id":"8f44c0a318db79c-179ecf5ada4b9f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a311758b0-1796df3272e792ba","8f44c0a318db79c-179ecf5ada4b9f15"]},"geometry":{"type":"LineString","coordinates":[[-83.6558553,32.873452900000004],[-83.6558229,32.8733711],[-83.65579070000001,32.8732652]]},"id":"8944c0a3117ffff-17dfdf47d51acd76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65690120000001,32.873641]},"id":"8f44c0a311655b3-179feca4cdfbe500"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6563675,32.8737593]},"id":"8f44c0a31162944-17d7ddf25643243b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a311655b3-179feca4cdfbe500","8f44c0a31162944-17d7ddf25643243b"]},"geometry":{"type":"LineString","coordinates":[[-83.65690120000001,32.873641],[-83.65684320000001,32.873602500000004],[-83.6568216,32.873592200000004],[-83.65677190000001,32.8735683],[-83.6566937,32.8735398],[-83.6565884,32.8735512],[-83.65648990000001,32.8735911],[-83.6564773,32.873604900000004],[-83.6564118,32.873676700000004],[-83.65639780000001,32.873702800000004],[-83.6563675,32.8737593]]},"id":"8a44c0a31167fff-17f6dd5a07d9db07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6549052,32.870319200000004]},"id":"8f44c0a3188c6e1-17ffd18445cbc007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542938,32.8709489]},"id":"8f44c0a311248b6-13f7d30267696e2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3188c6e1-17ffd18445cbc007","8f44c0a311248b6-13f7d30267696e2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6549052,32.870319200000004],[-83.6547963,32.8702655],[-83.6547388,32.870247400000004],[-83.65468840000001,32.870238400000005],[-83.6546453,32.870253500000004],[-83.6546381,32.8702577],[-83.65442250000001,32.8703833],[-83.654365,32.8704255],[-83.6543147,32.870479800000005],[-83.6542141,32.8706096],[-83.6541746,32.8706941],[-83.65413860000001,32.8707787],[-83.65414080000001,32.8708158],[-83.65414220000001,32.870839000000004],[-83.6541746,32.8709024],[-83.6542938,32.8709489]]},"id":"8944c0a318bffff-17fef2b7ed82d07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65389280000001,32.8750273]},"id":"8f44c0a3102cd9d-13fed3fd094af112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6536856,32.874852100000005]},"id":"8f44c0a31021119-13fed47e8404d605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31021119-13fed47e8404d605","8f44c0a3102cd9d-13fed3fd094af112"]},"geometry":{"type":"LineString","coordinates":[[-83.65389280000001,32.8750273],[-83.6536856,32.874852100000005]]},"id":"8944c0a3103ffff-13b7d43dc4949443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65479950000001,32.876214700000006]},"id":"8f44c0a3107484c-17d6f1c6521659bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65466930000001,32.8755893]},"id":"8f44c0a3115e693-13dfd217bacfabd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3107484c-17d6f1c6521659bd","8f44c0a3115e693-13dfd217bacfabd5"]},"geometry":{"type":"LineString","coordinates":[[-83.65479950000001,32.876214700000006],[-83.65489290000001,32.8762592],[-83.65497350000001,32.8762859],[-83.65503290000001,32.8762859],[-83.6550881,32.8762628],[-83.6551242,32.8762271],[-83.65513580000001,32.8762064],[-83.65514320000001,32.876193300000004],[-83.65517080000001,32.8761274],[-83.6551835,32.8760793],[-83.655192,32.876008],[-83.6551984,32.8759278],[-83.655192,32.875837000000004],[-83.65517510000001,32.8757533],[-83.65514320000001,32.8756731],[-83.6551029,32.8756107],[-83.6550457,32.875532400000004],[-83.654999,32.8754754],[-83.6549576,32.875450900000004],[-83.65494170000001,32.8754415],[-83.65488450000001,32.875427300000005],[-83.65482510000001,32.8754326],[-83.65477630000001,32.8754718],[-83.65466930000001,32.8755893]]},"id":"8844c0a311fffff-17fef13b426d441a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553434,32.873446300000005]},"id":"8f44c0a311746f0-179ff07264452974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65553960000001,32.8734093]},"id":"8f44c0a31174232-17fedff7cfdffd61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31174232-17fedff7cfdffd61","8f44c0a311746f0-179ff07264452974"]},"geometry":{"type":"LineString","coordinates":[[-83.6553434,32.873446300000005],[-83.65544750000001,32.873421],[-83.65553960000001,32.8734093]]},"id":"8b44c0a31174fff-1796f035699c9956"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65539270000001,32.8730234]},"id":"8f44c0a31174d34-1797f053936df8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65543070000001,32.8731953]},"id":"8f44c0a311741a6-17f7d03bd5343415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31174d34-1797f053936df8d3","8f44c0a311741a6-17f7d03bd5343415"]},"geometry":{"type":"LineString","coordinates":[[-83.65539270000001,32.8730234],[-83.6554093,32.873095],[-83.65543070000001,32.8731953]]},"id":"8c44c0a31174dff-17bfd04776a92885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6554169,32.8732872]},"id":"8f44c0a31174085-17bed0447dfd060a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31174085-17bed0447dfd060a","8f44c0a311746f0-179ff07264452974"]},"geometry":{"type":"LineString","coordinates":[[-83.6554169,32.8732872],[-83.6553775,32.8733622],[-83.6553434,32.873446300000005]]},"id":"8b44c0a31174fff-17dff05cae421060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65560760000001,32.873102]},"id":"8f44c0a3117490b-17becfcd4c620da2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3117490b-17becfcd4c620da2","8f44c0a31174d34-1797f053936df8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65560760000001,32.873102],[-83.6555175,32.8730665],[-83.6554878,32.873052200000004],[-83.65539270000001,32.8730234]]},"id":"8b44c0a31174fff-179ed00ff6e7ee5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7605492,32.8822193]},"id":"8f44c0b539b1630-13ffdf98c34a4242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7605734,32.8809873]},"id":"8f44c0b5065a3b4-13fddf89adec4bd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065a3b4-13fddf89adec4bd9","8f44c0b539b1630-13ffdf98c34a4242"]},"geometry":{"type":"LineString","coordinates":[[-83.7605492,32.8822193],[-83.7605734,32.8809873]]},"id":"8644c0b57ffffff-13ffdf9133f7a46d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76095020000001,32.8819952]},"id":"8f44c0b539a2418-13ffce9e23f36eb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7609699,32.8809928]},"id":"8f44c0b50658642-13fdce91da2010a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539a2418-13ffce9e23f36eb6","8f44c0b50658642-13fdce91da2010a9"]},"geometry":{"type":"LineString","coordinates":[[-83.76095020000001,32.8819952],[-83.7609699,32.8809928]]},"id":"8644c0b57ffffff-13b5ce97f786c738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76507860000001,32.8822271]},"id":"8f44c0b5392ac40-13fff489e43b1b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7643676,32.882219500000005]},"id":"8f44c0b53900303-13fff646491bedb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53900303-13fff646491bedb5","8f44c0b5392ac40-13fff489e43b1b46"]},"geometry":{"type":"LineString","coordinates":[[-83.76507860000001,32.8822271],[-83.76511520000001,32.8822309],[-83.7651706,32.8822058],[-83.7652006,32.8821668],[-83.7651841,32.8820977],[-83.765134,32.8820612],[-83.7644312,32.882044900000004],[-83.7643953,32.8820688],[-83.7643706,32.882126],[-83.7643676,32.882219500000005]]},"id":"8944c0b5393ffff-13bff53506a69d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7627707,32.879082700000005]},"id":"8f44c0b50661c53-17d7fa2c5672dc9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76278330000001,32.8783991]},"id":"8f44c0b50664b1e-13b7fa247cab71c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50664b1e-13b7fa247cab71c1","8f44c0b50661c53-17d7fa2c5672dc9d"]},"geometry":{"type":"LineString","coordinates":[[-83.7627707,32.879082700000005],[-83.76278330000001,32.8783991]]},"id":"8a44c0b50667fff-13fdda2864a95c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7617756,32.878385800000004]},"id":"8f44c0b5075b283-139fec9a4e148f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76177990000001,32.8775461]},"id":"8f44c0b50758d14-1397dc979e90a2c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075b283-139fec9a4e148f0f","8f44c0b50758d14-1397dc979e90a2c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7617756,32.878385800000004],[-83.76177990000001,32.8775461]]},"id":"8a44c0b5075ffff-139dcc98ec6222ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7664053,32.8823743]},"id":"8f44c0b502dac4b-17dff14cb902fbed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766416,32.8817607]},"id":"8f44c0b502d3a51-13ddf14604dd2f2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dac4b-17dff14cb902fbed","8f44c0b502d3a51-13ddf14604dd2f2f"]},"geometry":{"type":"LineString","coordinates":[[-83.7664053,32.8823743],[-83.766416,32.8817607]]},"id":"8944c0b502fffff-139df149554407bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760383,32.879051700000005]},"id":"8f44c0b50609acc-17bfd000a648b247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7603957,32.8783678]},"id":"8f44c0b5060d832-1397eff8bec2279a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060d832-1397eff8bec2279a","8f44c0b50609acc-17bfd000a648b247"]},"geometry":{"type":"LineString","coordinates":[[-83.760383,32.879051700000005],[-83.7603957,32.8783678]]},"id":"8a44c0b5060ffff-13fddffcb2765352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7665496,32.8839319]},"id":"8f44c0b5394682e-13bdf0f281420f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7665655,32.8829902]},"id":"8f44c0b53975d12-17dde0e89f8963f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53975d12-17dde0e89f8963f6","8f44c0b5394682e-13bdf0f281420f1e"]},"geometry":{"type":"LineString","coordinates":[[-83.7665496,32.8839319],[-83.7665655,32.8829902]]},"id":"8944c0b5397ffff-1797f0ed97d4f6fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7635075,32.8821949]},"id":"8f44c0b5391194d-13ffd85fd27b0234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76352100000001,32.881404]},"id":"8f44c0b539331a1-13fdc85769db00f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539331a1-13fdc85769db00f9","8f44c0b5391194d-13ffd85fd27b0234"]},"geometry":{"type":"LineString","coordinates":[[-83.7635075,32.8821949],[-83.76352100000001,32.881404]]},"id":"8944c0b5393ffff-13f5f85b91e0ff6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7601956,32.877366300000006]},"id":"8f44c0b5062e0e4-13b5f075cd445d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7599663,32.8771448]},"id":"8f44c0b50623350-1797d10516c0f1e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50623350-1797d10516c0f1e1","8f44c0b5062e0e4-13b5f075cd445d1c"]},"geometry":{"type":"LineString","coordinates":[[-83.7601956,32.877366300000006],[-83.7599663,32.8771448]]},"id":"8944c0b5063ffff-17ddd0bd7a4c6281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7610293,32.874876]},"id":"8f44c0b5072a225-139dce6cb4bd53f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7607407,32.8750991]},"id":"8f44c0b5070c1b4-139dff211bc3bc99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5070c1b4-139dff211bc3bc99","8f44c0b5072a225-139dce6cb4bd53f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7610293,32.874876],[-83.7607407,32.8750991]]},"id":"8944c0b5073ffff-13d7cec6ea0aad8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7601779,32.879049]},"id":"8f44c0b506090ca-17bdf080d3b11de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7601873,32.8783651]},"id":"8f44c0b5060dca5-1397f07af7ee29ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506090ca-17bdf080d3b11de9","8f44c0b5060dca5-1397f07af7ee29ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7601779,32.879049],[-83.7601873,32.8783651]]},"id":"8a44c0b5060ffff-13f7f07deb229925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7656968,32.8838561]},"id":"8f44c0b53954ab4-17ffd3078678acf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7657155,32.8829742]},"id":"8f44c0b5397654e-17d7e2fbdf97079c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53954ab4-17ffd3078678acf4","8f44c0b5397654e-17d7e2fbdf97079c"]},"geometry":{"type":"LineString","coordinates":[[-83.7656968,32.8838561],[-83.7657155,32.8829742]]},"id":"8844c0b539fffff-17f7c301b1db8774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76715920000001,32.883936500000004]},"id":"8f44c0b53944b74-13bdff7585076364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7671741,32.8830016]},"id":"8f44c0b53966898-17f5bf6c3fbe1e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53944b74-13bdff7585076364","8f44c0b53966898-17f5bf6c3fbe1e97"]},"geometry":{"type":"LineString","coordinates":[[-83.76715920000001,32.883936500000004],[-83.7671741,32.8830016]]},"id":"8944c0b5397ffff-179dbf70e1c195a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7610258,32.87906]},"id":"8f44c0b50673c61-17d5ce6ee4c944b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7610372,32.878376100000004]},"id":"8f44c0b50676b2d-139dde67c73a30fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50676b2d-139dde67c73a30fc","8f44c0b50673c61-17d5ce6ee4c944b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7610258,32.87906],[-83.7610372,32.878376100000004]]},"id":"8a44c0b50677fff-13ffde6b52e7b5a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759122,32.879035300000005]},"id":"8f44c0b506e4c1a-17b5d314c96cff46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7591352,32.878344500000004]},"id":"8f44c0b5061d858-1395d30c81ff7825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5061d858-1395d30c81ff7825","8f44c0b506e4c1a-17b5d314c96cff46"]},"geometry":{"type":"LineString","coordinates":[[-83.759122,32.879035300000005],[-83.7591352,32.878344500000004]]},"id":"8944c0b5063ffff-13ddf310af1a368c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75963080000001,32.8733534]},"id":"8f44c0b5073085c-17d5f1d6c9afefff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7593777,32.873118000000005]},"id":"8f44c0b50736b43-17d7d274f92ff834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50736b43-17d7d274f92ff834","8f44c0b5073085c-17d5f1d6c9afefff"]},"geometry":{"type":"LineString","coordinates":[[-83.75963080000001,32.8733534],[-83.7593777,32.873118000000005]]},"id":"8a44c0b50737fff-179dd225dcefac91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76378650000001,32.879265000000004]},"id":"8f44c0b50293805-17d5e7b177ec7331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7634872,32.87926]},"id":"8f44c0b50293c96-17d5c86c8430ce47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50293c96-17d5c86c8430ce47","8f44c0b50293805-17d5e7b177ec7331"]},"geometry":{"type":"LineString","coordinates":[[-83.76378650000001,32.879265000000004],[-83.7634872,32.87926]]},"id":"8b44c0b50293fff-17d7d80ef0ed4050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76192250000001,32.879071700000004]},"id":"8f44c0b5066270b-17dfdc3e727be01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7619353,32.8783879]},"id":"8f44c0b50666c90-13b5fc3674af717c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50666c90-13b5fc3674af717c","8f44c0b5066270b-17dfdc3e727be01a"]},"geometry":{"type":"LineString","coordinates":[[-83.76192250000001,32.879071700000004],[-83.7619353,32.8783879]]},"id":"8944c0b5067ffff-13f7ec3a71115036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76256450000001,32.87908]},"id":"8f44c0b506602ea-17d5caad312fbfb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7625773,32.8783964]},"id":"8f44c0b50664036-13b5caa538452a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50664036-13b5caa538452a23","8f44c0b506602ea-17d5caad312fbfb9"]},"geometry":{"type":"LineString","coordinates":[[-83.76256450000001,32.87908],[-83.7625773,32.8783964]]},"id":"8a44c0b50667fff-13ffeaa9365e5acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7616864,32.882128300000005]},"id":"8f44c0b539a02d8-13d7fcd207d42e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76170470000001,32.8808311]},"id":"8f44c0b5064ad93-1397fcc6982e5801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539a02d8-13d7fcd207d42e87","8f44c0b5064ad93-1397fcc6982e5801"]},"geometry":{"type":"LineString","coordinates":[[-83.7616864,32.882128300000005],[-83.76170470000001,32.8808311]]},"id":"8644c0b57ffffff-13bddccc4c8eaa64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76610620000001,32.883927]},"id":"8f44c0b539732ab-13b7e207a15ae66d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76612730000001,32.882982000000005]},"id":"8f44c0b53974793-17d7c1fa76924a90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53974793-17d7c1fa76924a90","8f44c0b539732ab-13b7e207a15ae66d"]},"geometry":{"type":"LineString","coordinates":[[-83.76610620000001,32.883927],[-83.76612730000001,32.882982000000005]]},"id":"8a44c0b53977fff-17ffd201017eba4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76755920000001,32.883939500000004]},"id":"8f44c0b53963ac0-13bfbe7b85b21ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7675794,32.883009300000005]},"id":"8f44c0b539640ae-17fdfe6eea7b9934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539640ae-17fdfe6eea7b9934","8f44c0b53963ac0-13bfbe7b85b21ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.76755920000001,32.883939500000004],[-83.7675794,32.883009300000005]]},"id":"8a44c0b53967fff-179fbe7537a7e05e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76618520000001,32.8823693]},"id":"8f44c0b502da5b1-17ddd1d640f92a76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76619380000001,32.8817594]},"id":"8f44c0b502d30ea-13dfe1d0e5f9601b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502da5b1-17ddd1d640f92a76","8f44c0b502d30ea-13dfe1d0e5f9601b"]},"geometry":{"type":"LineString","coordinates":[[-83.76618520000001,32.8823693],[-83.76619380000001,32.8817594]]},"id":"8944c0b502fffff-139fc1d3975913ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75782140000001,32.878043000000005]},"id":"8f44c0b50613281-13ddf641a45278d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75779940000001,32.8789437]},"id":"8f44c0b506f4cf0-13ffd64f6b3b2ae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4cf0-13ffd64f6b3b2ae7","8f44c0b50613281-13ddf641a45278d6"]},"geometry":{"type":"LineString","coordinates":[[-83.75782140000001,32.878043000000005],[-83.75779940000001,32.8789437]]},"id":"8844c0b507fffff-13f7d6488aaf7015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75719860000001,32.881172400000004]},"id":"8f44c0b506de562-13fdd7c6e8fe81e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7571956,32.8810096]},"id":"8f44c0b506deda1-1397d7c8c7c521b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506de562-13fdd7c6e8fe81e8","8f44c0b506deda1-1397d7c8c7c521b8"]},"geometry":{"type":"LineString","coordinates":[[-83.75719860000001,32.881172400000004],[-83.7571956,32.8810096]]},"id":"8b44c0b506defff-13bdf7c7de07b4fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7605463,32.8732771]},"id":"8f44c0b50726a9a-17b7ff9a969fdc28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7603022,32.8730484]},"id":"8f44c0b50726d99-1797d03324130b7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50726d99-1797d03324130b7b","8f44c0b50726a9a-17b7ff9a969fdc28"]},"geometry":{"type":"LineString","coordinates":[[-83.7605463,32.8732771],[-83.7603022,32.8730484]]},"id":"8b44c0b50726fff-17dfcfe6e6adb1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76233880000001,32.8790771]},"id":"8f44c0b506606d8-17dffb3a4a478a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7623516,32.8783934]},"id":"8f44c0b50664599-13b7eb32453b6e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50664599-13b7eb32453b6e0c","8f44c0b506606d8-17dffb3a4a478a84"]},"geometry":{"type":"LineString","coordinates":[[-83.76233880000001,32.8790771],[-83.7623516,32.8783934]]},"id":"8a44c0b50667fff-13fddb364b8dfed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76248530000001,32.8821888]},"id":"8f44c0b539123b6-13fdcadeb465e7e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76251740000001,32.8808439]},"id":"8f44c0b50648848-139ffacaa47f1942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50648848-139ffacaa47f1942","8f44c0b539123b6-13fdcadeb465e7e3"]},"geometry":{"type":"LineString","coordinates":[[-83.76248530000001,32.8821888],[-83.76251740000001,32.8808439]]},"id":"8644c0b57ffffff-13d7cad4a435d420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7618862,32.882137]},"id":"8f44c0b539a1cdd-13d7ec552fe669fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7619109,32.880834400000005]},"id":"8f44c0b5064a995-139dcc45baeb65d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539a1cdd-13d7ec552fe669fa","8f44c0b5064a995-139dcc45baeb65d1"]},"geometry":{"type":"LineString","coordinates":[[-83.7618862,32.882137],[-83.7619109,32.880834400000005]]},"id":"8644c0b57ffffff-13b5dc4d620b0bc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76596830000001,32.8823643]},"id":"8f44c0b53929996-17d5f25ddd1cf9b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7659747,32.8817581]},"id":"8f44c0b502d34d8-13dfd259d9a0272c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53929996-17d5f25ddd1cf9b5","8f44c0b502d34d8-13dfd259d9a0272c"]},"geometry":{"type":"LineString","coordinates":[[-83.76596830000001,32.8823643],[-83.7659747,32.8817581]]},"id":"8744c0b50ffffff-139dc25bdca7e245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761379,32.877950500000004]},"id":"8f44c0b5075a0c3-139fdd92270c4e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7613821,32.8775464]},"id":"8f44c0b5075e7aa-1397cd9031f09984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075a0c3-139fdd92270c4e99","8f44c0b5075e7aa-1397cd9031f09984"]},"geometry":{"type":"LineString","coordinates":[[-83.761379,32.877950500000004],[-83.7613821,32.8775464]]},"id":"8a44c0b5075ffff-1395dd912a63de6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7569658,32.8811715]},"id":"8f44c0b53d2d952-13fdf858688d8dd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7569637,32.8810038]},"id":"8f44c0b506d3391-1397f859b93c455c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d2d952-13fdf858688d8dd2","8f44c0b506d3391-1397f859b93c455c"]},"geometry":{"type":"LineString","coordinates":[[-83.7569658,32.8811715],[-83.7569637,32.8810038]]},"id":"8944c0b506fffff-13b7d8590de12f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7622925,32.8821877]},"id":"8f44c0b53912794-13f7db5738c09b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7623143,32.8808407]},"id":"8f44c0b506481a4-139dfb499edbb055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506481a4-139dfb499edbb055","8f44c0b53912794-13f7db5738c09b92"]},"geometry":{"type":"LineString","coordinates":[[-83.7622925,32.8821877],[-83.7623143,32.8808407]]},"id":"8644c0b57ffffff-13d7eb506fae6844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76695380000001,32.8839349]},"id":"8f44c0b53944172-13bffff5ef70a12f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76696650000001,32.882997700000004]},"id":"8f44c0b53966530-17f5bfedf622b85d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53966530-17f5bfedf622b85d","8f44c0b53944172-13bffff5ef70a12f"]},"geometry":{"type":"LineString","coordinates":[[-83.76695380000001,32.8839349],[-83.76696650000001,32.882997700000004]]},"id":"8944c0b5397ffff-1797fff1e81e93a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7611739,32.8779443]},"id":"8f44c0b5075a4d8-139ffe1257afb665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7611768,32.8775824]},"id":"8f44c0b5062daae-13bdce1088a0ac27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5062daae-13bdce1088a0ac27","8f44c0b5075a4d8-139ffe1257afb665"]},"geometry":{"type":"LineString","coordinates":[[-83.7611739,32.8779443],[-83.7611768,32.8775824]]},"id":"8a44c0b5062ffff-139fee117aba8fb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7605932,32.8790544]},"id":"8f44c0b506726ed-17d5cf7d417e8bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76060530000001,32.8783705]},"id":"8f44c0b5067651b-1395df75b176b7d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5067651b-1395df75b176b7d3","8f44c0b506726ed-17d5cf7d417e8bc3"]},"geometry":{"type":"LineString","coordinates":[[-83.7605932,32.8790544],[-83.76060530000001,32.8783705]]},"id":"8a44c0b50677fff-13ffdf7979dde977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7581459,32.8798483]},"id":"8f44c0b506f10e6-17b5f576dd7314d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75815270000001,32.879578]},"id":"8f44c0b506f56c4-179dd57297833a2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f56c4-179dd57297833a2a","8f44c0b506f10e6-17b5f576dd7314d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7581459,32.8798483],[-83.75815270000001,32.879578]]},"id":"8a44c0b506f7fff-17ddf574b65a7c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76735810000001,32.883938]},"id":"8f44c0b539630dc-13bdfef939a6e166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.767374,32.8830054]},"id":"8f44c0b53964483-17f7feef41857184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539630dc-13bdfef939a6e166","8f44c0b53964483-17f7feef41857184"]},"geometry":{"type":"LineString","coordinates":[[-83.76735810000001,32.883938],[-83.767374,32.8830054]]},"id":"8a44c0b53967fff-179dfef43a889fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75936300000001,32.8790384]},"id":"8f44c0b506e4828-17b7d27e2c639d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75936970000001,32.8783545]},"id":"8f44c0b5060e736-139fd279fe1d12c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060e736-139fd279fe1d12c2","8f44c0b506e4828-17b7d27e2c639d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.75936300000001,32.8790384],[-83.75936970000001,32.8783545]]},"id":"8a44c0b5060ffff-13f5d27c0ec43062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762901,32.8821913]},"id":"8f44c0b53910640-13fdd9daea64d709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76291660000001,32.881398600000004]},"id":"8f44c0b53914d9b-13ffe9d1278fec37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53914d9b-13ffe9d1278fec37","8f44c0b53910640-13fdd9daea64d709"]},"geometry":{"type":"LineString","coordinates":[[-83.762901,32.8821913],[-83.76291660000001,32.881398600000004]]},"id":"8a44c0b53917fff-13f5e9d6058e161e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76519060000001,32.878324]},"id":"8f44c0b502a279c-13fdc443e7701a54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650811,32.8780687]},"id":"8f44c0b502b521d-13ddf48855b10c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502a279c-13fdc443e7701a54","8f44c0b502b521d-13ddf48855b10c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.76519060000001,32.878324],[-83.7650811,32.8780687]]},"id":"8944c0b502bffff-13bdc4661f8f0d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7677572,32.883941]},"id":"8f44c0b539616e2-13bfbdffc346dbab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7677762,32.883013000000005]},"id":"8f44c0b53964aa1-17ffbdf3efbee57f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539616e2-13bfbdffc346dbab","8f44c0b53964aa1-17ffbdf3efbee57f"]},"geometry":{"type":"LineString","coordinates":[[-83.7677572,32.883941],[-83.7677762,32.883013000000005]]},"id":"8a44c0b53967fff-179dbdf9d1af1091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75874920000001,32.8791962]},"id":"8f44c0b506e6132-179df3fdca9f8237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75847160000001,32.8791944]},"id":"8f44c0b5061b2cb-179dd4ab4517a15b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061b2cb-179dd4ab4517a15b","8f44c0b506e6132-179df3fdca9f8237"]},"geometry":{"type":"LineString","coordinates":[[-83.75874920000001,32.8791962],[-83.75847160000001,32.8791944]]},"id":"8944c0b506fffff-179dd4548aeda12b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76243620000001,32.8806515]},"id":"8f44c0b5064c660-13b7fafd6f96e388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7628342,32.8806571]},"id":"8f44c0b5064dd4d-13bffa04ac49b19c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5064dd4d-13bffa04ac49b19c","8f44c0b5064c660-13b7fafd6f96e388"]},"geometry":{"type":"LineString","coordinates":[[-83.76243620000001,32.8806515],[-83.7628342,32.8806571]]},"id":"8a44c0b5064ffff-13bdfa810928aea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7607897,32.879057]},"id":"8f44c0b50672251-17d7ef027b8a7bdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76080440000001,32.878373100000005]},"id":"8f44c0b5067611c-1397fef94d8ddd88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5067611c-1397fef94d8ddd88","8f44c0b50672251-17d7ef027b8a7bdf"]},"geometry":{"type":"LineString","coordinates":[[-83.7607897,32.879057],[-83.76080440000001,32.878373100000005]]},"id":"8a44c0b50677fff-13fdfefddb8f1bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75885650000001,32.8686525]},"id":"8f44c0b5056342d-13dfd3bab19b4006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75864100000001,32.8688157]},"id":"8f44c0b50544a9c-13d5d441615ad423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50544a9c-13d5d441615ad423","8f44c0b5056342d-13dfd3bab19b4006"]},"geometry":{"type":"LineString","coordinates":[[-83.75885650000001,32.8686525],[-83.75864100000001,32.8688157]]},"id":"8944c0b5057ffff-139fd3fe0799a9e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76172050000001,32.8790691]},"id":"8f44c0b50671a20-17dffcbcba216cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7617333,32.878385200000004]},"id":"8f44c0b5075b66c-139fccb4b3b763a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075b66c-139fccb4b3b763a7","8f44c0b50671a20-17dffcbcba216cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.76172050000001,32.8790691],[-83.7617333,32.878385200000004]]},"id":"8944c0b5067ffff-13f5ccb8b932570f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76267220000001,32.8757518]},"id":"8f44c0b5077536d-17b5ea69e449783c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76203070000001,32.8762364]},"id":"8f44c0b50773ad1-17dfcbfad845a2b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5077536d-17b5ea69e449783c","8f44c0b50773ad1-17dfcbfad845a2b2"]},"geometry":{"type":"LineString","coordinates":[[-83.76267220000001,32.8757518],[-83.76203070000001,32.8762364]]},"id":"8944c0b5077ffff-17dddb3253d17113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76134780000001,32.8752718]},"id":"8f44c0b5072b2f1-1395eda5ac9c0859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76112380000001,32.875464300000004]},"id":"8f44c0b5070d18c-13fdfe31ae11a5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5072b2f1-1395eda5ac9c0859","8f44c0b5070d18c-13fdfe31ae11a5e6"]},"geometry":{"type":"LineString","coordinates":[[-83.76134780000001,32.8752718],[-83.76112380000001,32.875464300000004]]},"id":"8944c0b5073ffff-13d5ddebad2406b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7659016,32.8839197]},"id":"8f44c0b5397368e-13b5d28783399170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7659198,32.8829781]},"id":"8f44c0b5397616a-17d5d27c2611697a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5397616a-17d5d27c2611697a","8f44c0b5397368e-13b5d28783399170"]},"geometry":{"type":"LineString","coordinates":[[-83.7659016,32.8839197],[-83.7659198,32.8829781]]},"id":"8944c0b5397ffff-17ffd281dea849cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76575030000001,32.881756800000005]},"id":"8f44c0b5392c10d-13dfc2e612d3be8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7657355,32.882359]},"id":"8f44c0b53928346-17d7e2ef5947a10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53928346-17d7e2ef5947a10c","8f44c0b5392c10d-13dfc2e612d3be8d"]},"geometry":{"type":"LineString","coordinates":[[-83.76575030000001,32.881756800000005],[-83.7657355,32.882359]]},"id":"8a44c0b5392ffff-1397f2eab3699275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757969,32.8821967]},"id":"8f44c0b53d668ab-13fdf5e56e893c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7586854,32.882212]},"id":"8f44c0b506cb6b4-13f7d425a846c152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53d668ab-13fdf5e56e893c68","8f44c0b506cb6b4-13f7d425a846c152"]},"geometry":{"type":"LineString","coordinates":[[-83.757969,32.8821967],[-83.7586854,32.882212]]},"id":"8a44c0b53d67fff-13f5d5058ff8145d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7612335,32.8790627]},"id":"8f44c0b50671494-17d7fded15ada7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76125350000001,32.8783789]},"id":"8f44c0b506740c2-139fdde09416800c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506740c2-139fdde09416800c","8f44c0b50671494-17d7fded15ada7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7612335,32.8790627],[-83.76125350000001,32.8783789]]},"id":"8a44c0b50677fff-13f5cde6d7fe7128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76631350000001,32.883929900000005]},"id":"8f44c0b53946c13-13bdf1861b8cd36a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7663198,32.882985600000005]},"id":"8f44c0b53974390-17dfc1822ef20499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53974390-17dfc1822ef20499","8f44c0b53946c13-13bdf1861b8cd36a"]},"geometry":{"type":"LineString","coordinates":[[-83.76631350000001,32.883929900000005],[-83.7663198,32.882985600000005]]},"id":"8a44c0b53977fff-1795e18416fae804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7633053,32.8821937]},"id":"8f44c0b53911896-13ffd8de3ea26475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7633189,32.881402200000004]},"id":"8f44c0b53933585-13fde8d5bd53fcf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53933585-13fde8d5bd53fcf6","8f44c0b53911896-13ffd8de3ea26475"]},"geometry":{"type":"LineString","coordinates":[[-83.7633053,32.8821937],[-83.7633189,32.881402200000004]]},"id":"8944c0b5393ffff-13f7c8d9f37338ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631341,32.8792264]},"id":"8f44c0b50292686-17bdc94936dc6505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76236300000001,32.8792154]},"id":"8f44c0b50663131-17b5eb2b2ad32a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50292686-17bdc94936dc6505","8f44c0b50663131-17b5eb2b2ad32a6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7631341,32.8792264],[-83.76236300000001,32.8792154]]},"id":"8944c0b5067ffff-17bdda3a30112cfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7599711,32.8790463]},"id":"8f44c0b5060bb75-17bff102108f2d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7599804,32.8783624]},"id":"8f44c0b5060c284-1395d0fc4f631bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060c284-1395d0fc4f631bf8","8f44c0b5060bb75-17bff102108f2d13"]},"geometry":{"type":"LineString","coordinates":[[-83.7599711,32.8790463],[-83.7599804,32.8783624]]},"id":"8a44c0b5060ffff-13f7d0ff39c82cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76213580000001,32.8790745]},"id":"8f44c0b50662374-17dddbb92a686e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7621486,32.878390700000004]},"id":"8f44c0b506668b5-13b7fbb12daa7cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506668b5-13b7fbb12daa7cf1","8f44c0b50662374-17dddbb92a686e8c"]},"geometry":{"type":"LineString","coordinates":[[-83.76213580000001,32.8790745],[-83.7621486,32.878390700000004]]},"id":"8a44c0b50667fff-13f7ebb52ffe4980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76297840000001,32.8790854]},"id":"8f44c0b50661846-17d5e9aa8911f454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762991,32.8784019]},"id":"8f44c0b5074b700-13bdf9a2aab99fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5074b700-13bdf9a2aab99fad","8f44c0b50661846-17d5e9aa8911f454"]},"geometry":{"type":"LineString","coordinates":[[-83.76297840000001,32.8790854],[-83.762991,32.8784019]]},"id":"8844c0b507fffff-13ffd9a69bf58f81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631052,32.8821925]},"id":"8f44c0b53910261-13ffd95b423aa978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76312080000001,32.881400400000004]},"id":"8f44c0b5391499d-13ffc9518bfafea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5391499d-13ffc9518bfafea4","8f44c0b53910261-13ffd95b423aa978"]},"geometry":{"type":"LineString","coordinates":[[-83.7631052,32.8821925],[-83.76312080000001,32.881400400000004]]},"id":"8a44c0b53917fff-13f7d95660c1a822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763823,32.878761700000005]},"id":"8f44c0b502946cd-139fd79aa69bad13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76318690000001,32.878749400000004]},"id":"8f44c0b50665b50-1397e9283131ddf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502946cd-139fd79aa69bad13","8f44c0b50665b50-1397e9283131ddf7"]},"geometry":{"type":"LineString","coordinates":[[-83.763823,32.878761700000005],[-83.76318690000001,32.878749400000004]]},"id":"8a44c0b50297fff-1397c86175c7ff30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75778240000001,32.8811994]},"id":"8f44c0b506dc0c8-13fdf65a03948aa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75763660000001,32.881309]},"id":"8f44c0b506dc6d6-13d7f6b523cb0546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506dc0c8-13fdf65a03948aa1","8f44c0b506dc6d6-13d7f6b523cb0546"]},"geometry":{"type":"LineString","coordinates":[[-83.75778240000001,32.8811994],[-83.75763660000001,32.881309]]},"id":"8a44c0b506dffff-139ff6879704ed85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7620869,32.8821664]},"id":"8f44c0b539a18cb-13dfcbd7b9db0be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76211,32.880837500000005]},"id":"8f44c0b506485b1-139ffbc94ccaf152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539a18cb-13dfcbd7b9db0be8","8f44c0b506485b1-139ffbc94ccaf152"]},"geometry":{"type":"LineString","coordinates":[[-83.7620869,32.8821664],[-83.76211,32.880837500000005]]},"id":"8644c0b57ffffff-13bfcbd08f0d6f04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76674960000001,32.883933400000004]},"id":"8f44c0b53944552-13bfe07587ba519e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7667624,32.8829939]},"id":"8f44c0b53975914-17dff06d898bef82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53975914-17dff06d898bef82","8f44c0b53944552-13bfe07587ba519e"]},"geometry":{"type":"LineString","coordinates":[[-83.76674960000001,32.883933400000004],[-83.7667624,32.8829939]]},"id":"8944c0b5397ffff-1795d0718eeb0434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75876070000001,32.887703300000005]},"id":"8f44c0b53130874-13dfd3f696079c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7584473,32.8873673]},"id":"8f44c0b5313694d-139dd4ba754a9cd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53130874-13dfd3f696079c37","8f44c0b5313694d-139dd4ba754a9cd7"]},"geometry":{"type":"LineString","coordinates":[[-83.75876070000001,32.887703300000005],[-83.7585731,32.887547000000005],[-83.7584473,32.8873673]]},"id":"8a44c0b53137fff-13fdd45f9e149c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7595952,32.8805801]},"id":"8f44c0b506e8cf3-17ffd1ed03cf4f1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7589069,32.8805664]},"id":"8f44c0b506c5384-17f7d39b3d1bd492"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506e8cf3-17ffd1ed03cf4f1c","8f44c0b506c5384-17f7d39b3d1bd492"]},"geometry":{"type":"LineString","coordinates":[[-83.7595952,32.8805801],[-83.7589069,32.8805664]]},"id":"8944c0b506fffff-17f7d2c4233bba0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76754000000001,32.882353200000004]},"id":"8f44c0b502dd375-17dffe8782ebab40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7679045,32.882270600000005]},"id":"8f44c0b502ce2a4-179fbda3b50ea21d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dd375-17dffe8782ebab40","8f44c0b502ce2a4-179fbda3b50ea21d"]},"geometry":{"type":"LineString","coordinates":[[-83.76754000000001,32.882353200000004],[-83.7678406,32.8823074],[-83.7679045,32.882270600000005]]},"id":"8944c0b502fffff-17bffe1357a95694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76177890000001,32.8793819]},"id":"8f44c0b5064456b-179dfc983a656c30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614482,32.879379]},"id":"8f44c0b506468ae-179fed66e8ab1610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506468ae-179fed66e8ab1610","8f44c0b5064456b-179dfc983a656c30"]},"geometry":{"type":"LineString","coordinates":[[-83.76177890000001,32.8793819],[-83.76155220000001,32.8793799],[-83.7614482,32.879379]]},"id":"8a44c0b50647fff-179dccff8e8d44c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76575150000001,32.8789919]},"id":"8f44c0b50285a16-179df2e55ba776b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649858,32.878633900000004]},"id":"8f44c0b502844a2-13bff4c3e9d31463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502844a2-13bff4c3e9d31463","8f44c0b50285a16-179df2e55ba776b2"]},"geometry":{"type":"LineString","coordinates":[[-83.76575150000001,32.8789919],[-83.7657628,32.8786463],[-83.7649858,32.878633900000004]]},"id":"8944c0b502bffff-13f5c387676c95c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75699060000001,32.8707158]},"id":"8f44c0b50474549-17f5f848ece07d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7563533,32.870311]},"id":"8f44c0b5042b91c-17fdf9d7324e044f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5042b91c-17fdf9d7324e044f","8f44c0b50474549-17f5f848ece07d3b"]},"geometry":{"type":"LineString","coordinates":[[-83.75699060000001,32.8707158],[-83.7563015,32.870640200000004],[-83.7563533,32.870311]]},"id":"8844c0b505fffff-17b5f960ef68cd01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650986,32.8831523]},"id":"8f44c0b53908b2e-17d7f47d6abab112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764545,32.8831451]},"id":"8f44c0b5390a955-17bdf5d7654a01f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53908b2e-17d7f47d6abab112","8f44c0b5390a955-17bdf5d7654a01f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7650986,32.8831523],[-83.76509440000001,32.8833603],[-83.764544,32.8833488],[-83.764545,32.8831451]]},"id":"8a44c0b5390ffff-17b5d52ae7f79591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7609286,32.8835197]},"id":"8f44c0b5398324a-17b7deaba9e80829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7611792,32.8821128]},"id":"8f44c0b539a2383-13bdce0f08519c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539a2383-13bdce0f08519c5d","8f44c0b5398324a-17b7deaba9e80829"]},"geometry":{"type":"LineString","coordinates":[[-83.7609286,32.8835197],[-83.7609303,32.8833451],[-83.7611615,32.8833372],[-83.7611638,32.883176],[-83.7611651,32.883088400000005],[-83.76116950000001,32.882786200000005],[-83.7611749,32.882411000000005],[-83.76117550000001,32.882367800000004],[-83.7611758,32.8823464],[-83.7611792,32.8821128]]},"id":"8944c0b539bffff-179dee2fbd855d6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7602406,32.8868379]},"id":"8f44c0b5388e642-17d5f059a8038ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76004040000001,32.887056300000005]},"id":"8f44c0b5388a55e-17dff0d6cfb1763a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388e642-17d5f059a8038ef5","8f44c0b5388a55e-17dff0d6cfb1763a"]},"geometry":{"type":"LineString","coordinates":[[-83.7602406,32.8868379],[-83.7603878,32.8869494],[-83.76022060000001,32.887137800000005],[-83.76004040000001,32.887056300000005]]},"id":"8a44c0b5388ffff-17b5f051e3cda8f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650357,32.8807306]},"id":"8f44c0b53924082-13dde4a4b176940d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650349,32.8803262]},"id":"8f44c0b5028a4c5-17dfe4a53295b192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5028a4c5-17dfe4a53295b192","8f44c0b53924082-13dde4a4b176940d"]},"geometry":{"type":"LineString","coordinates":[[-83.7650357,32.8807306],[-83.76531960000001,32.8807315],[-83.76532060000001,32.880329700000004],[-83.76516980000001,32.880327900000005],[-83.7650349,32.8803262]]},"id":"8844c0b503fffff-17dfc42727fa3a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650014,32.885103400000006]},"id":"8f44c0b5382d58c-1395e4ba20e79579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76400100000001,32.8857213]},"id":"8f44c0b5380c528-1797d72b60421cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5382d58c-1395e4ba20e79579","8f44c0b5380c528-1797d72b60421cc9"]},"geometry":{"type":"LineString","coordinates":[[-83.7650014,32.885103400000006],[-83.76498570000001,32.8856468],[-83.7648894,32.8857392],[-83.76400100000001,32.8857213]]},"id":"8944c0b5383ffff-17bfe5848be90ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7632708,32.884514800000005]},"id":"8f44c0b53831235-1395c8f3c06f144d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7632732,32.884937900000004]},"id":"8f44c0b53800d95-139ff8f24faa3604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53800d95-139ff8f24faa3604","8f44c0b53831235-1395c8f3c06f144d"]},"geometry":{"type":"LineString","coordinates":[[-83.7632708,32.884514800000005],[-83.7631099,32.884514800000005],[-83.7631078,32.8848819],[-83.7632732,32.884937900000004]]},"id":"8944c0b5383ffff-139fd940a48966a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7580784,32.878928900000005]},"id":"8f44c0b506f4959-13f7d5a1005dcfd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7582991,32.878936100000004]},"id":"8f44c0b5061b54d-13f7d5171167b880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4959-13f7d5a1005dcfd3","8f44c0b5061b54d-13f7d5171167b880"]},"geometry":{"type":"LineString","coordinates":[[-83.7580784,32.878928900000005],[-83.758098,32.8782283],[-83.75831500000001,32.8782354],[-83.7582991,32.878936100000004]]},"id":"8a44c0b5061ffff-13fdd555c3a8a953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7571702,32.8698896]},"id":"8f44c0b5055e451-17f5d7d8a61e43e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5042b91c-17fdf9d7324e044f","8f44c0b5055e451-17f5d7d8a61e43e1"]},"geometry":{"type":"LineString","coordinates":[[-83.7571702,32.8698896],[-83.7568634,32.8703998],[-83.7567898,32.8704425],[-83.7566996,32.8704399],[-83.7563533,32.870311]]},"id":"8844c0b505fffff-17dfd8b227df5b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75955760000001,32.879875000000006]},"id":"8f44c0b506e18ca-17d5f204817cafd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506e18ca-17d5f204817cafd0","8f44c0b506c5384-17f7d39b3d1bd492"]},"geometry":{"type":"LineString","coordinates":[[-83.75955760000001,32.879875000000006],[-83.75955710000001,32.8801135],[-83.7590352,32.8801085],[-83.7589076,32.8802113],[-83.7589069,32.8805664]]},"id":"8944c0b506fffff-17fff2e6fe1514bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7637617,32.8806583]},"id":"8f44c0b539340d5-13bff7c0f4624023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631219,32.87999]},"id":"8f44c0b50668040-179dc950dd29968e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539340d5-13bff7c0f4624023","8f44c0b50668040-179dc950dd29968e"]},"geometry":{"type":"LineString","coordinates":[[-83.7637617,32.8806583],[-83.76376780000001,32.8802686],[-83.76311170000001,32.8802606],[-83.7631219,32.87999]]},"id":"8744c0b50ffffff-17ddc8779292fe79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763198,32.8782427]},"id":"8f44c0b5074b8ed-13d5f921489da740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76321030000001,32.877684]},"id":"8f44c0b5074c6c8-13fdc91996e4722b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5074c6c8-13fdc91996e4722b","8f44c0b5074b8ed-13d5f921489da740"]},"geometry":{"type":"LineString","coordinates":[[-83.763198,32.8782427],[-83.7636379,32.8782514],[-83.76363710000001,32.8781754],[-83.7634156,32.8778114],[-83.7633165,32.8776898],[-83.76321030000001,32.877684]]},"id":"8a44c0b5074ffff-13d7c883f9318dee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760817,32.887019]},"id":"8f44c0b53888af4-17b7eef1620bdcf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76103,32.8871648]},"id":"8f44c0b53889894-139fce6c44b445a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53889894-139fce6c44b445a8","8f44c0b53888af4-17b7eef1620bdcf8"]},"geometry":{"type":"LineString","coordinates":[[-83.760817,32.887019],[-83.76072760000001,32.8871343],[-83.7607519,32.887208],[-83.7608704,32.8872693],[-83.7609223,32.887264],[-83.76103,32.8871648]]},"id":"8a44c0b5388ffff-139ddee178359b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76747230000001,32.8819262]},"id":"8f44c0b502c3746-13d7feb1dadec654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76684990000001,32.8823833]},"id":"8f44c0b502d808a-17f5d036da67364b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502d808a-17f5d036da67364b","8f44c0b502c3746-13d7feb1dadec654"]},"geometry":{"type":"LineString","coordinates":[[-83.76747230000001,32.8819262],[-83.7672479,32.8819589],[-83.7670902,32.8820283],[-83.7669463,32.882146500000005],[-83.7668764,32.8822825],[-83.76684990000001,32.8823833]]},"id":"8944c0b502fffff-13b5bf98f12ca45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7665891,32.8823011]},"id":"8f44c0b502da942-17bff0d9d249b768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7672225,32.8817654]},"id":"8f44c0b502dc96a-13dfff4df1a14c14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502da942-17bff0d9d249b768","8f44c0b502dc96a-13dfff4df1a14c14"]},"geometry":{"type":"LineString","coordinates":[[-83.7665891,32.8823011],[-83.7666827,32.8822398],[-83.7667674,32.8820745],[-83.7668764,32.8819607],[-83.7670066,32.881875400000006],[-83.7672225,32.8817654]]},"id":"8944c0b502fffff-13f7e0232bd681f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7674865,32.882116100000005]},"id":"8f44c0b502dd81d-13bfbea8f851e634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7670478,32.882387]},"id":"8f44c0b502d8a8c-17f7ffbb28fffec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502d8a8c-17f7ffbb28fffec3","8f44c0b502dd81d-13bfbea8f851e634"]},"geometry":{"type":"LineString","coordinates":[[-83.7674865,32.882116100000005],[-83.7673728,32.8821127],[-83.76723100000001,32.88215],[-83.7671347,32.8822211],[-83.7670733,32.882302],[-83.7670478,32.882387]]},"id":"8a44c0b502dffff-13fdff49818f067f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76140690000001,32.8858054]},"id":"8f44c0b538a8994-17bded80b04458e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760873,32.886589400000005]},"id":"8f44c0b5388ca9a-17b7eece60e2be83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538a8994-17bded80b04458e8","8f44c0b5388ca9a-17b7eece60e2be83"]},"geometry":{"type":"LineString","coordinates":[[-83.76140690000001,32.8858054],[-83.76134180000001,32.8859538],[-83.76127860000001,32.886092600000005],[-83.7612539,32.886289500000004],[-83.7612344,32.886358300000005],[-83.7611842,32.8864439],[-83.76110650000001,32.8865074],[-83.760873,32.886589400000005]]},"id":"8944c0b538bffff-17ddddff2c0b672c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6836449,32.7438319]},"id":"8f44c0b06cc53b6-139efb59f2b25e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68243100000001,32.743180200000005]},"id":"8f44c0b06cf3035-1397ae50a1a532af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06cf3035-1397ae50a1a532af","8f44c0b06cc53b6-139efb59f2b25e7d"]},"geometry":{"type":"LineString","coordinates":[[-83.6836449,32.7438319],[-83.68243100000001,32.743180200000005]]},"id":"8944c0b06cfffff-13d7dcd55a15b545"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6859668,32.746463]},"id":"8f44c0b061810a0-139fe5aec893e2ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6857684,32.7459209]},"id":"8f44c0b06180930-17be962ac786762e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b061810a0-139fe5aec893e2ef","8f44c0b06180930-17be962ac786762e"]},"geometry":{"type":"LineString","coordinates":[[-83.6859668,32.746463],[-83.6859271,32.7462194],[-83.6857684,32.7459209]]},"id":"8a44c0b06187fff-17dfd5df0f99cde9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6815971,32.743873400000005]},"id":"8f44c0b06cd2b58-13bef059dba7b235"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6816644,32.7435221]},"id":"8f44c0b06cd6ac9-13dfd02fc0bf7568"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06cd6ac9-13dfd02fc0bf7568","8f44c0b06cd2b58-13bef059dba7b235"]},"geometry":{"type":"LineString","coordinates":[[-83.6815971,32.743873400000005],[-83.6816644,32.7435221]]},"id":"8a44c0b06cd7fff-13dfb044cb51fddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644557,32.8111635]},"id":"8f44c0b1855d941-1797ba333782b408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66392610000001,32.811159]},"id":"8f44c0b1855c282-17fefb7e3226bcbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855c282-17fefb7e3226bcbf","8f44c0b1855d941-1797ba333782b408"]},"geometry":{"type":"LineString","coordinates":[[-83.6644557,32.8111635],[-83.66392610000001,32.811159]]},"id":"8a44c0b1855ffff-17fffad8b560da74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71558830000001,32.820499500000004]},"id":"8f44c0b0a164c1d-17de3d5d5c26ebc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145672,32.820485000000005]},"id":"8f44c0b0a174b03-17d73fdb86ab9767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a174b03-17d73fdb86ab9767","8f44c0b0a164c1d-17de3d5d5c26ebc0"]},"geometry":{"type":"LineString","coordinates":[[-83.71558830000001,32.820499500000004],[-83.7145672,32.820485000000005]]},"id":"8844c0b0a1fffff-17d7be9c691e84c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70133220000001,32.8155329]},"id":"8f44c0b1d26099e-13be702b6b540cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7013421,32.815066200000004]},"id":"8f44c0b1d264d1c-139e602537e3768b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d264d1c-139e602537e3768b","8f44c0b1d26099e-13be702b6b540cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.70133220000001,32.8155329],[-83.7013421,32.815066200000004]]},"id":"8a44c0b1d267fff-139e602855610683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69765360000001,32.8206435]},"id":"8f44c0b199680da-17b67926832cc782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970036,32.8203157]},"id":"8f44c0b19945b81-17df7abcc85d1ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199680da-17b67926832cc782","8f44c0b19945b81-17df7abcc85d1ed1"]},"geometry":{"type":"LineString","coordinates":[[-83.69765360000001,32.8206435],[-83.6970036,32.8203157]]},"id":"8944c0b1997ffff-17bfe9f1a80e6d82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632774,32.8099009]},"id":"8f44c0b185540a1-13febd13a773e46f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645598,32.809922900000004]},"id":"8f44c0b18544cee-13fff9f2266283d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18544cee-13fff9f2266283d4","8f44c0b185540a1-13febd13a773e46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6632774,32.8099009],[-83.6645598,32.809922900000004]]},"id":"8944c0b1857ffff-13f6fb82e3eb7786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7055388,32.8155553]},"id":"8f44c0b0acacba4-13be55e64d680359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7055412,32.8151699]},"id":"8f44c0b0ac12153-13df75e4cd36c884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac12153-13df75e4cd36c884","8f44c0b0acacba4-13be55e64d680359"]},"geometry":{"type":"LineString","coordinates":[[-83.7055388,32.8155553],[-83.7055412,32.8151699]]},"id":"8844c0b0adfffff-13d7f5e5899bdabb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862461,32.8142681]},"id":"8f44c0b1d6ae694-1797950032937949"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858931,32.814264800000004]},"id":"8f44c0b1d68509d-179785dcd238e5fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68509d-179785dcd238e5fc","8f44c0b1d6ae694-1797950032937949"]},"geometry":{"type":"LineString","coordinates":[[-83.6862461,32.8142681],[-83.6858931,32.814264800000004]]},"id":"8944c0b1d6bffff-1796956e8b67f2e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69398790000001,32.8215742]},"id":"8f44c0b1982a274-17fff2199ea69e68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6932506,32.8220387]},"id":"8f44c0b1980e0cb-139e73e6642d421b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1980e0cb-139e73e6642d421b","8f44c0b1982a274-17fff2199ea69e68"]},"geometry":{"type":"LineString","coordinates":[[-83.69398790000001,32.8215742],[-83.6932506,32.8220387]]},"id":"8944c0b1983ffff-13ff72fff6fe8333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69184890000001,32.8177469]},"id":"8f44c0b199a585c-1797f7527aebe085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69164450000001,32.8162591]},"id":"8f44c0b1d641720-13f7f7d2329cbfd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a585c-1797f7527aebe085","8f44c0b1d641720-13f7f7d2329cbfd3"]},"geometry":{"type":"LineString","coordinates":[[-83.69184890000001,32.8177469],[-83.69164450000001,32.8162591]]},"id":"8644c0b1fffffff-17d6f79252cef310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6654252,32.811319000000005]},"id":"8f44c0b1854dc9b-17f6f7d5499dd417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6646133,32.8113104]},"id":"8f44c0b1854e781-17dfb9d0be4321a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854dc9b-17f6f7d5499dd417","8f44c0b1854e781-17dfb9d0be4321a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6654252,32.811319000000005],[-83.6646133,32.8113104]]},"id":"8a44c0b1854ffff-17dfb8d3081cfb13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6968571,32.817066600000004]},"id":"8f44c0b1d2c6030-17feeb185920fda9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6958044,32.8171735]},"id":"8f44c0b1d2d0c1b-17bf7daa497ba73c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0c1b-17bf7daa497ba73c","8f44c0b1d2c6030-17feeb185920fda9"]},"geometry":{"type":"LineString","coordinates":[[-83.6968571,32.817066600000004],[-83.6958044,32.8171735]]},"id":"8944c0b1d2fffff-179e7c615fb23443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712243,32.8201917]},"id":"8f44c0b0a10302d-179fd5882f9a6b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122504,32.8194807]},"id":"8f44c0b0a104691-13df75838cffe76b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a104691-13df75838cffe76b","8f44c0b0a10302d-179fd5882f9a6b21"]},"geometry":{"type":"LineString","coordinates":[[-83.712243,32.8201917],[-83.7122504,32.8194807]]},"id":"8a44c0b0a107fff-13bfe585dbb8ba4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69480270000001,32.8162273]},"id":"8f44c0b1d28ac41-13de701c56752d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6949565,32.8173194]},"id":"8f44c0b19921d65-179eefbc3f2ddc6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19921d65-179eefbc3f2ddc6f","8f44c0b1d28ac41-13de701c56752d11"]},"geometry":{"type":"LineString","coordinates":[[-83.69480270000001,32.8162273],[-83.6949565,32.8173194]]},"id":"8844c0b1d3fffff-17b76fec401490a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138875,32.821218200000004]},"id":"8f44c0b0a17222d-179f618454c4a9ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140567,32.8211396]},"id":"8f44c0b0a17069b-17de411a9b5a6667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a17069b-17de411a9b5a6667","8f44c0b0a17222d-179f618454c4a9ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7138875,32.821218200000004],[-83.7140567,32.8211396]]},"id":"8a44c0b0a177fff-17f6d14f77a5d4d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154577,32.818047400000005]},"id":"8f44c0b0a8f56c8-17dfbdaefeacc675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71404790000001,32.8180335]},"id":"8f44c0b0a889ce1-17d6f1201a59aa72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8f56c8-17dfbdaefeacc675","8f44c0b0a889ce1-17d6f1201a59aa72"]},"geometry":{"type":"LineString","coordinates":[[-83.7154577,32.818047400000005],[-83.71404790000001,32.8180335]]},"id":"8844c0b0a9fffff-17df7f6787fab74f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6955422,32.8163281]},"id":"8f44c0b1d289da3-139f7e4e24e45b3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69567310000001,32.817332]},"id":"8f44c0b1d2d0489-1796edfc5f569875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0489-1796edfc5f569875","8f44c0b1d289da3-139f7e4e24e45b3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6955422,32.8163281],[-83.69567310000001,32.817332]]},"id":"8844c0b1d3fffff-17d6fe254e061810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66769930000001,32.813922000000005]},"id":"8f44c0b18088313-17bff247fdd8e0cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6677059,32.8134826]},"id":"8f44c0b1808c774-17beb243d8fef243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18088313-17bff247fdd8e0cf","8f44c0b1808c774-17beb243d8fef243"]},"geometry":{"type":"LineString","coordinates":[[-83.66769930000001,32.813922000000005],[-83.6677059,32.8134826]]},"id":"8a44c0b1808ffff-17b7f245e4daae7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67491700000001,32.8180531]},"id":"8f44c0b183196c6-17d7b0a8e13257ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6749412,32.816916]},"id":"8f44c0b1831c90c-179ea099cbb69e31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b183196c6-17d7b0a8e13257ce","8f44c0b1831c90c-179ea099cbb69e31"]},"geometry":{"type":"LineString","coordinates":[[-83.67491700000001,32.8180531],[-83.6749412,32.816916]]},"id":"8944c0b1833ffff-17ffe0a154080e82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71241970000001,32.8222103]},"id":"8f44c0b0a0217a0-13ff7519b26e36fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7124249,32.8215675]},"id":"8f44c0b0a024209-17f7f5167517d539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0217a0-13ff7519b26e36fe","8f44c0b0a024209-17f7f5167517d539"]},"geometry":{"type":"LineString","coordinates":[[-83.71241970000001,32.8222103],[-83.7124249,32.8215675]]},"id":"8a44c0b0a027fff-13b6d51815f5ecea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69393840000001,32.8228181]},"id":"8f44c0b19856916-13f772388a00bf48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942058,32.8218454]},"id":"8f44c0b1982b761-1397719162c5668a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19856916-13f772388a00bf48","8f44c0b1982b761-1397719162c5668a"]},"geometry":{"type":"LineString","coordinates":[[-83.69393840000001,32.8228181],[-83.6942058,32.8218454]]},"id":"8844c0b199fffff-13d771e4fef8518b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6791901,32.8136931]},"id":"8f44c0b18a1d4e1-17beb63a39ea00cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67918490000001,32.813063]},"id":"8f44c0b18a022ac-13b6f63d7380b1d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a1d4e1-17beb63a39ea00cd","8f44c0b18a022ac-13b6f63d7380b1d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6791901,32.8136931],[-83.67918490000001,32.813063]]},"id":"8944c0b18a3ffff-13ffd63bd26183b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886329,32.813632500000004]},"id":"8f44c0b1d6004c6-179e7f2c70836b97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885962,32.8142696]},"id":"8f44c0b1d61dd60-1796ff436cff2982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6004c6-179e7f2c70836b97","8f44c0b1d61dd60-1796ff436cff2982"]},"geometry":{"type":"LineString","coordinates":[[-83.6886329,32.813632500000004],[-83.6885962,32.8142696]]},"id":"8944c0b1d63ffff-17df7f37e2996229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69543900000001,32.8239737]},"id":"8f44c0b1984305a-17d7fe8ea265fcff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6948993,32.8238652]},"id":"8f44c0b1985cd5b-1797efdffa0aba09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1985cd5b-1797efdffa0aba09","8f44c0b1984305a-17d7fe8ea265fcff"]},"geometry":{"type":"LineString","coordinates":[[-83.69543900000001,32.8239737],[-83.6948993,32.8238652]]},"id":"8944c0b1987ffff-17b7ff375cdaea63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7117424,32.8178574]},"id":"8f44c0b0a89a4d1-17dee6c10db5a1a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109453,32.8178459]},"id":"8f44c0b0ac6bc20-17d7f8b33bbe9330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6bc20-17d7f8b33bbe9330","8f44c0b0a89a4d1-17dee6c10db5a1a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7117424,32.8178574],[-83.7109453,32.8178459]]},"id":"8a44c0b0ac6ffff-17d757ba27c6e025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68022230000001,32.813701]},"id":"8f44c0b18a08d6c-17b7b3b510b55789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6802155,32.8130277]},"id":"8f44c0b18a2a48d-139ed3b95476d4d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a08d6c-17b7b3b510b55789","8f44c0b18a2a48d-139ed3b95476d4d5"]},"geometry":{"type":"LineString","coordinates":[[-83.68022230000001,32.813701],[-83.6802155,32.8130277]]},"id":"8944c0b18a3ffff-13f6d3b73b326b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937039,32.8161439]},"id":"8f44c0b1d29ab30-13bff2cb1acb686d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937987,32.816846000000005]},"id":"8f44c0b199358aa-17f6f28fd95a14d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29ab30-13bff2cb1acb686d","8f44c0b199358aa-17f6f28fd95a14d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6937039,32.8161439],[-83.6937987,32.816846000000005]]},"id":"8744c0b1dffffff-139772ad70a31463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68625540000001,32.813914700000005]},"id":"8f44c0b1d6a3360-17beb4fa62c732a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685896,32.8139114]},"id":"8f44c0b1d684b69-17b6a5db01060312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a3360-17beb4fa62c732a3","8f44c0b1d684b69-17b6a5db01060312"]},"geometry":{"type":"LineString","coordinates":[[-83.68625540000001,32.813914700000005],[-83.685896,32.8139114]]},"id":"8b44c0b1d6a3fff-17b7b56ab1ddbc5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71536710000001,32.8217644]},"id":"8f44c0b0a14599d-13f6fde7969590d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7153723,32.8211967]},"id":"8f44c0b0a1606b6-17fffde4591fa4c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1606b6-17fffde4591fa4c9","8f44c0b0a14599d-13f6fde7969590d3"]},"geometry":{"type":"LineString","coordinates":[[-83.71536710000001,32.8217644],[-83.7153723,32.8211967]]},"id":"8944c0b0a17ffff-17b77de5f157e968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68062610000001,32.813784600000005]},"id":"8f44c0b18a0d080-17f7f2b8b893340a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6806164,32.8130274]},"id":"8f44c0b18a2aa10-139eb2bec54398b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a0d080-17f7f2b8b893340a","8f44c0b18a2aa10-139eb2bec54398b3"]},"geometry":{"type":"LineString","coordinates":[[-83.68062610000001,32.813784600000005],[-83.6806164,32.8130274]]},"id":"8944c0b18a3ffff-13fed2bbc051717c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70386090000001,32.8157726]},"id":"8f44c0b0ac80c05-13d7f9fef2410ef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70387190000001,32.8151926]},"id":"8f44c0b0acb1a11-13d779f81b12bc62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac80c05-13d7f9fef2410ef1","8f44c0b0acb1a11-13d779f81b12bc62"]},"geometry":{"type":"LineString","coordinates":[[-83.70386090000001,32.8157726],[-83.70387190000001,32.8151926]]},"id":"8944c0b0acbffff-139ef9fb86049b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69442070000001,32.8150494]},"id":"8f44c0b1d2862ca-17fff10b193b360c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6944812,32.8142768]},"id":"8f44c0b1d2b1134-179f70e5488c8563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b1134-179f70e5488c8563","8f44c0b1d2862ca-17fff10b193b360c"]},"geometry":{"type":"LineString","coordinates":[[-83.69442070000001,32.8150494],[-83.6944812,32.8142768]]},"id":"8944c0b1d2bffff-179e70f83172c374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897284,32.810305400000004]},"id":"8f44c0b1d704654-17fefc7fc90ec8bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897993,32.8093333]},"id":"8f44c0b1d735b2a-139f7c537fc2052e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d735b2a-139f7c537fc2052e","8f44c0b1d704654-17fefc7fc90ec8bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6897284,32.810305400000004],[-83.6897993,32.8093333]]},"id":"8944c0b1d73ffff-13bf7c69a323e158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6941704,32.8193926]},"id":"8f44c0b1990aa0a-139e71a78d44b285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69424860000001,32.8200719]},"id":"8f44c0b19825108-17d6f176a8dba02d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990aa0a-139e71a78d44b285","8f44c0b19825108-17d6f176a8dba02d"]},"geometry":{"type":"LineString","coordinates":[[-83.6941704,32.8193926],[-83.69424860000001,32.8200719]]},"id":"8844c0b199fffff-13fef18f1827bb75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896373,32.8136608]},"id":"8f44c0b1d62ad5a-179e7cb8b54ef1b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68959020000001,32.8143984]},"id":"8f44c0b1d60c2a0-17f77cd622bcb235"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62ad5a-179e7cb8b54ef1b3","8f44c0b1d60c2a0-17f77cd622bcb235"]},"geometry":{"type":"LineString","coordinates":[[-83.6896373,32.8136608],[-83.68959020000001,32.8143984]]},"id":"8944c0b1d63ffff-1796fcc76f3b542d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862581,32.8137313]},"id":"8f44c0b1d6a3849-17d694f8b709768d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68589750000001,32.8137291]},"id":"8f44c0b1d6a351c-17d6b5da19d2adf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a3849-17d694f8b709768d","8f44c0b1d6a351c-17d6b5da19d2adf2"]},"geometry":{"type":"LineString","coordinates":[[-83.6862581,32.8137313],[-83.68589750000001,32.8137291]]},"id":"8b44c0b1d6a3fff-17d7e56962d8852b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6945223,32.8193246]},"id":"8f44c0b1990804b-13fff0cb94e36735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6946077,32.8200476]},"id":"8f44c0b19956734-17b7f0963eb36b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956734-17b7f0963eb36b2f","8f44c0b1990804b-13fff0cb94e36735"]},"geometry":{"type":"LineString","coordinates":[[-83.6945223,32.8193246],[-83.6946077,32.8200476]]},"id":"8844c0b199fffff-13dff0b0e5fe4222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71290690000001,32.8180222]},"id":"8f44c0b0a89916b-17bfe3e93a727444"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71344780000001,32.8180325]},"id":"8f44c0b0a88a366-17d6529720d77c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a89916b-17bfe3e93a727444","8f44c0b0a88a366-17d6529720d77c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71290690000001,32.8180222],[-83.71344780000001,32.8180325]]},"id":"8944c0b0a8bffff-17d763402a265d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6767117,32.8225287]},"id":"8f44c0b1825ddae-13d6fc473ea8bd81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6767021,32.8210727]},"id":"8f44c0b18271573-17b6fc4d3f870973"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825ddae-13d6fc473ea8bd81","8f44c0b18271573-17b6fc4d3f870973"]},"geometry":{"type":"LineString","coordinates":[[-83.6767117,32.8225287],[-83.6767021,32.8210727]]},"id":"8944c0b1827ffff-13fffc4a3ca797ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6973518,32.818321600000004]},"id":"8f44c0b1d2ce603-17ff69e3227dd198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6961339,32.8184415]},"id":"8f44c0b1d2dabb2-13d7fcdc517c7648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ce603-17ff69e3227dd198","8f44c0b1d2dabb2-13d7fcdc517c7648"]},"geometry":{"type":"LineString","coordinates":[[-83.6973518,32.818321600000004],[-83.6961339,32.8184415]]},"id":"8944c0b1d2fffff-13b6eb5fb0bbd389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095496,32.8200483]},"id":"8f44c0b0a1a30ca-17b67c1b862670bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70955210000001,32.819743200000005]},"id":"8f44c0b0a1a06dc-13f7cc19f4a9da4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1a06dc-13f7cc19f4a9da4f","8f44c0b0a1a30ca-17b67c1b862670bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7095496,32.8200483],[-83.70955210000001,32.819743200000005]]},"id":"8b44c0b0a1a3fff-13d6ec1ac9df21b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155525,32.8188973]},"id":"8f44c0b0a8c0c8d-13f6fd73ba0b0215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71459180000001,32.8188884]},"id":"8f44c0b0a8d0b56-13df7fcc2a3bd468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8c0c8d-13f6fd73ba0b0215","8f44c0b0a8d0b56-13df7fcc2a3bd468"]},"geometry":{"type":"LineString","coordinates":[[-83.7155525,32.8188973],[-83.71459180000001,32.8188884]]},"id":"8944c0b0a8fffff-13f63e9ff4b4b767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69999010000001,32.8155315]},"id":"8f44c0b1d270102-13bf737237b3d244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69999,32.815155000000004]},"id":"8f44c0b1d274464-13bfe3724bfee288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274464-13bfe3724bfee288","8f44c0b1d270102-13bf737237b3d244"]},"geometry":{"type":"LineString","coordinates":[[-83.69999010000001,32.8155315],[-83.69999,32.815155000000004]]},"id":"8a44c0b1d277fff-13b7f3724e5c1cf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155834,32.820858]},"id":"8f44c0b0a1646cd-17be7d60668f6466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145618,32.8208445]},"id":"8f44c0b0a17542b-17b7ffdeedab7fa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1646cd-17be7d60668f6466","8f44c0b0a17542b-17b7ffdeedab7fa4"]},"geometry":{"type":"LineString","coordinates":[[-83.7155834,32.820858],[-83.7145618,32.8208445]]},"id":"8944c0b0a17ffff-17be3e9fa285b01b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896964,32.811784]},"id":"8f44c0b1d70a46c-13977c93c42e7fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68956920000001,32.8113565]},"id":"8f44c0b1d71d8ed-17fffce344d5b028"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d71d8ed-17fffce344d5b028","8f44c0b1d70a46c-13977c93c42e7fd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6896964,32.811784],[-83.68956920000001,32.8113565]]},"id":"8944c0b1d73ffff-17ff7cbb85a1466c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7153806,32.817406600000005]},"id":"8f44c0b0a8f486a-17bf3ddf2246311f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140756,32.817391]},"id":"8f44c0b0a88ca06-17b7610ecf377aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88ca06-17b7610ecf377aa3","8f44c0b0a8f486a-17bf3ddf2246311f"]},"geometry":{"type":"LineString","coordinates":[[-83.7153806,32.817406600000005],[-83.7140756,32.817391]]},"id":"8844c0b0a9fffff-17be7f76f58a4652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66328370000001,32.8095889]},"id":"8f44c0b18572799-13bfbd0fb14f16f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645625,32.8096101]},"id":"8f44c0b185624e2-13b6f9f07009acb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185624e2-13b6f9f07009acb6","8f44c0b18572799-13bfbd0fb14f16f2"]},"geometry":{"type":"LineString","coordinates":[[-83.66328370000001,32.8095889],[-83.6645625,32.8096101]]},"id":"8a44c0b18577fff-13bfbb8017aab2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6959064,32.8173109]},"id":"8f44c0b1d2d0003-17977d6a87b83524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69693860000001,32.817212500000004]},"id":"8f44c0b1d2c6234-17d7fae56abc3dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c6234-17d7fae56abc3dd1","8f44c0b1d2d0003-17977d6a87b83524"]},"geometry":{"type":"LineString","coordinates":[[-83.6959064,32.8173109],[-83.69693860000001,32.817212500000004]]},"id":"8944c0b1d2fffff-17f6fc27f83973cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70428390000001,32.8156884]},"id":"8f44c0b0ac85caa-139f58f69b0896c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70429370000001,32.8152282]},"id":"8f44c0b0aca222b-13fff8f07aabcfe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac85caa-139f58f69b0896c7","8f44c0b0aca222b-13fff8f07aabcfe4"]},"geometry":{"type":"LineString","coordinates":[[-83.70428390000001,32.8156884],[-83.70429370000001,32.8152282]]},"id":"8944c0b0acbffff-13ff78f38755764e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140713,32.8221361]},"id":"8f44c0b0a142496-13df5111752b5651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140693,32.821583700000005]},"id":"8f44c0b0a173643-17f7d112b8b1fcfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a173643-17f7d112b8b1fcfb","8f44c0b0a142496-13df5111752b5651"]},"geometry":{"type":"LineString","coordinates":[[-83.7140713,32.8221361],[-83.7140693,32.821583700000005]]},"id":"8a44c0b0a157fff-139e711214dfce24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695176,32.8162534]},"id":"8f44c0b1d288441-13fe6f33078fc4e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69532170000001,32.8173637]},"id":"8f44c0b1d2d2563-17b67ed7f679708d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d288441-13fe6f33078fc4e4","8f44c0b1d2d2563-17b67ed7f679708d"]},"geometry":{"type":"LineString","coordinates":[[-83.695176,32.8162534],[-83.69532170000001,32.8173637]]},"id":"8844c0b1d3fffff-17df6f05756e1d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639377,32.8103811]},"id":"8f44c0b18542c32-179ebb76f57d20a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66455590000001,32.8103897]},"id":"8f44c0b1854012a-179fb9f49ca0aef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854012a-179fb9f49ca0aef6","8f44c0b18542c32-179ebb76f57d20a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6639377,32.8103811],[-83.66455590000001,32.8103897]]},"id":"8a44c0b18547fff-179efab5c340247f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144919,32.8234027]},"id":"8f44c0b0a1590ed-17f6f00a95bc296c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71432,32.823402300000005]},"id":"8f44c0b0a1597b5-17f670760a671624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1590ed-17f6f00a95bc296c","8f44c0b0a1597b5-17f670760a671624"]},"geometry":{"type":"LineString","coordinates":[[-83.7144919,32.8234027],[-83.71432,32.823402300000005]]},"id":"8b44c0b0a159fff-17f6d040538adb1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69514310000001,32.8199466]},"id":"8f44c0b199540d4-13f6ef479112ec90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69499470000001,32.8187585]},"id":"8f44c0b1992b724-139e7fa453ef6269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992b724-139e7fa453ef6269","8f44c0b199540d4-13f6ef479112ec90"]},"geometry":{"type":"LineString","coordinates":[[-83.69514310000001,32.8199466],[-83.69499470000001,32.8187585]]},"id":"8844c0b199fffff-13ff6f75f6780212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71549680000001,32.818426200000005]},"id":"8f44c0b0a8f12ad-13be7d968efd1475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140399,32.8184034]},"id":"8f44c0b0a8d699e-13be612514cd7a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d699e-13be612514cd7a81","8f44c0b0a8f12ad-13be7d968efd1475"]},"geometry":{"type":"LineString","coordinates":[[-83.71549680000001,32.818426200000005],[-83.7140399,32.8184034]]},"id":"8944c0b0a8fffff-13b77f5dc92818ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68702540000001,32.814322100000005]},"id":"8f44c0b1d6ad4a2-17b7d31925c1ea78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68670900000001,32.8143167]},"id":"8f44c0b1d6a8c19-17b7f3dee4b11257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ad4a2-17b7d31925c1ea78","8f44c0b1d6a8c19-17b7f3dee4b11257"]},"geometry":{"type":"LineString","coordinates":[[-83.68702540000001,32.814322100000005],[-83.68670900000001,32.8143167]]},"id":"8a44c0b1d6affff-17b7a37c0c1e201a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6959946,32.8179249]},"id":"8f44c0b1d2dec81-17977d336131adbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970527,32.8178196]},"id":"8f44c0b1d2c318e-17d76a9e12523569"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2dec81-17977d336131adbb","8f44c0b1d2c318e-17d76a9e12523569"]},"geometry":{"type":"LineString","coordinates":[[-83.6959946,32.8179249],[-83.6970527,32.8178196]]},"id":"8944c0b1d2fffff-17f67be8cceac795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69627200000001,32.820557400000006]},"id":"8f44c0b19940635-17f66c860b4a0d90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69616950000001,32.8207061]},"id":"8f44c0b19943c31-17df7cc616822872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19940635-17f66c860b4a0d90","8f44c0b19943c31-17df7cc616822872"]},"geometry":{"type":"LineString","coordinates":[[-83.69627200000001,32.820557400000006],[-83.69616950000001,32.8207061]]},"id":"8a44c0b19947fff-179eeca60edaa021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122155,32.8222082]},"id":"8f44c0b0a023b86-13fe659954525aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122143,32.821565500000005]},"id":"8f44c0b0a0246e3-17f6759a1e16ab3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a023b86-13fe659954525aed","8f44c0b0a0246e3-17f6759a1e16ab3f"]},"geometry":{"type":"LineString","coordinates":[[-83.7122155,32.8222082],[-83.7122143,32.821565500000005]]},"id":"8a44c0b0a027fff-13bf5599b40e6122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6933449,32.8161235]},"id":"8f44c0b1d29a504-139f73ab70d88cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69344360000001,32.8168669]},"id":"8f44c0b199342dc-17fff36dc23825c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29a504-139f73ab70d88cff","8f44c0b199342dc-17fff36dc23825c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6933449,32.8161235],[-83.69344360000001,32.8168669]]},"id":"8744c0b1dffffff-1397f38c97c89304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6943085,32.82284]},"id":"8f44c0b19854c48-139771513da1ca84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6945384,32.8220143]},"id":"8f44c0b198761aa-13fef0c18c860fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19854c48-139771513da1ca84","8f44c0b198761aa-13fef0c18c860fc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6943085,32.82284],[-83.6945384,32.8220143]]},"id":"8844c0b199fffff-1397710960aaf79a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957593,32.8193107]},"id":"8f44c0b199701ac-13f77dc67b1bc094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69567710000001,32.8186501]},"id":"8f44c0b19929a88-13de7df9d8ed09d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19929a88-13de7df9d8ed09d1","8f44c0b199701ac-13f77dc67b1bc094"]},"geometry":{"type":"LineString","coordinates":[[-83.6957593,32.8193107],[-83.69567710000001,32.8186501]]},"id":"8844c0b199fffff-1396ede022a870a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69042660000001,32.8121821]},"id":"8f44c0b1d756d14-13fffacb6172b5fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69043640000001,32.8119788]},"id":"8f44c0b1d709418-13fefac54067f4ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d709418-13fefac54067f4ff","8f44c0b1d756d14-13fffacb6172b5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.69042660000001,32.8121821],[-83.69043640000001,32.8119788]]},"id":"8a44c0b1d70ffff-13be7ac853e63978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68001240000001,32.813690300000005]},"id":"8f44c0b18a0e345-17bef43845efc008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800116,32.8130279]},"id":"8f44c0b18a01124-139ef438c42e7793"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a01124-139ef438c42e7793","8f44c0b18a0e345-17bef43845efc008"]},"geometry":{"type":"LineString","coordinates":[[-83.68001240000001,32.813690300000005],[-83.6800116,32.8130279]]},"id":"8944c0b18a3ffff-13dff4388539a9ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6674996,32.813920100000004]},"id":"8f44c0b180887ab-17beb2c4cd4f614e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675051,32.8134782]},"id":"8f44c0b1808eb72-17b7f2c150176099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180887ab-17beb2c4cd4f614e","8f44c0b1808eb72-17b7f2c150176099"]},"geometry":{"type":"LineString","coordinates":[[-83.6674996,32.813920100000004],[-83.6675051,32.8134782]]},"id":"8a44c0b1808ffff-17b6b2c3048e47a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7116376,32.820111000000004]},"id":"8f44c0b0a11cd1b-17df6702873cbca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71165,32.819478600000004]},"id":"8f44c0b0a11584b-13de66facf3ebb3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11584b-13de66facf3ebb3e","8f44c0b0a11cd1b-17df6702873cbca7"]},"geometry":{"type":"LineString","coordinates":[[-83.7116376,32.820111000000004],[-83.71165,32.819478600000004]]},"id":"8944c0b0a13ffff-1397c6fea521cc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6984774,32.814883800000004]},"id":"8f44c0b1d2012ac-17966723ab1c2c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69866850000001,32.8145144]},"id":"8f44c0b1d20525b-17bfe6ac3fd4cb2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2012ac-17966723ab1c2c58","8f44c0b1d20525b-17bfe6ac3fd4cb2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6984774,32.814883800000004],[-83.69866850000001,32.8145144]]},"id":"8a44c0b1d207fff-17b6f6e7f0ae1ecd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940617,32.8161751]},"id":"8f44c0b1d298049-13bf71eb7d4ad619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942295,32.8173918]},"id":"8f44c0b1992232a-17b7f1829b709e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d298049-13bf71eb7d4ad619","8f44c0b1992232a-17b7f1829b709e53"]},"geometry":{"type":"LineString","coordinates":[[-83.6940617,32.8161751],[-83.6942295,32.8173918]]},"id":"8744c0b1dffffff-17bff1b707542de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69374780000001,32.8213424]},"id":"8f44c0b1982acd9-17df72afaca8fdf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930335,32.8217927]},"id":"8f44c0b19803275-13f6746e1c108d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19803275-13f6746e1c108d20","8f44c0b1982acd9-17df72afaca8fdf0"]},"geometry":{"type":"LineString","coordinates":[[-83.69374780000001,32.8213424],[-83.6930335,32.8217927]]},"id":"8944c0b1983ffff-17f7f38ee5b94cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129134,32.8175114]},"id":"8f44c0b0a89dc49-1796e3e5260b43b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713457,32.8175179]},"id":"8f44c0b0a88e071-1796f2916ff57e65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a89dc49-1796e3e5260b43b6","8f44c0b0a88e071-1796f2916ff57e65"]},"geometry":{"type":"LineString","coordinates":[[-83.7129134,32.8175114],[-83.713457,32.8175179]]},"id":"8944c0b0a8bffff-1796f33b4b0379f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644598,32.810982800000005]},"id":"8f44c0b185433ac-1796fa30af721e04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66543010000001,32.8110011]},"id":"8f44c0b1856b493-179fb7d230fd916c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1856b493-179fb7d230fd916c","8f44c0b185433ac-1796fa30af721e04"]},"geometry":{"type":"LineString","coordinates":[[-83.6644598,32.810982800000005],[-83.66543010000001,32.8110011]]},"id":"8944c0b1857ffff-1796b90161997fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6947935,32.8150678]},"id":"8f44c0b1d2808c3-139f702213078503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6948543,32.814466100000004]},"id":"8f44c0b1d2a26ee-17977ffc1519ba8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2808c3-139f702213078503","8f44c0b1d2a26ee-17977ffc1519ba8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6947935,32.8150678],[-83.6948543,32.814466100000004]]},"id":"8944c0b1d2bffff-17df700f121ed478"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690364,32.8103415]},"id":"8f44c0b1d72e494-17ff7af28832dbdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69044050000001,32.8093656]},"id":"8f44c0b1d7246e8-139ffac2bfdf566c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72e494-17ff7af28832dbdb","8f44c0b1d7246e8-139ffac2bfdf566c"]},"geometry":{"type":"LineString","coordinates":[[-83.690364,32.8103415],[-83.69044050000001,32.8093656]]},"id":"8944c0b1d73ffff-13defadaa5e8a755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690053,32.813683600000005]},"id":"8f44c0b1d62854c-17be7bb4e9942799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69000000000001,32.8144243]},"id":"8f44c0b1d60d814-17f77bd60aea2cb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62854c-17be7bb4e9942799","8f44c0b1d60d814-17f77bd60aea2cb2"]},"geometry":{"type":"LineString","coordinates":[[-83.690053,32.813683600000005],[-83.69000000000001,32.8144243]]},"id":"8944c0b1d63ffff-179ffbc57cb41a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6848042,32.8146148]},"id":"8f44c0b1d68269a-17fec88564e95122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684809,32.8144477]},"id":"8f44c0b1d682419-1797d88260a2f542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68269a-17fec88564e95122","8f44c0b1d682419-1797d88260a2f542"]},"geometry":{"type":"LineString","coordinates":[[-83.6848042,32.8146148],[-83.684809,32.8144477]]},"id":"8b44c0b1d682fff-17be9883e12d495a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69220200000001,32.817687500000005]},"id":"8f44c0b19916119-17fef675c54cb95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6920022,32.816177700000004]},"id":"8f44c0b1d66a796-13bf76f2a5b65953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19916119-17fef675c54cb95e","8f44c0b1d66a796-13bf76f2a5b65953"]},"geometry":{"type":"LineString","coordinates":[[-83.69220200000001,32.817687500000005],[-83.6920022,32.816177700000004]]},"id":"8744c0b1dffffff-1796f6b43eb65f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129013,32.818366000000005]},"id":"8f44c0b0a12449c-1396c3ecb5865ae5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71344300000001,32.8183744]},"id":"8f44c0b0a124b4d-139e429a278d559a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a124b4d-139e429a278d559a","8f44c0b0a12449c-1396c3ecb5865ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.7129013,32.818366000000005],[-83.71344300000001,32.8183744]]},"id":"8a44c0b0a127fff-139f634370d80f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6771298,32.8225299]},"id":"8f44c0b1824e530-13d7bb41e2696a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6771202,32.821282700000005]},"id":"8f44c0b18244c05-17b7bb47ef10c3c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18244c05-17b7bb47ef10c3c8","8f44c0b1824e530-13d7bb41e2696a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6771298,32.8225299],[-83.6771202,32.821282700000005]]},"id":"8944c0b1827ffff-13bffb44e0d75055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962206,32.818585500000005]},"id":"8f44c0b1d2daaeb-139ffca623552393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6972793,32.8184817]},"id":"8f44c0b1d2cac09-13df7a107abacb8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2daaeb-139ffca623552393","8f44c0b1d2cac09-13df7a107abacb8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6962206,32.818585500000005],[-83.6972793,32.8184817]]},"id":"8944c0b1d2fffff-13ffeb5b570f76a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862332,32.816065200000004]},"id":"8f44c0b1d6d6ce0-13fec50845de7b02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862399,32.8156521]},"id":"8f44c0b1d688249-13f695041acefa1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d688249-13f695041acefa1f","8f44c0b1d6d6ce0-13fec50845de7b02"]},"geometry":{"type":"LineString","coordinates":[[-83.6862332,32.816065200000004],[-83.6862399,32.8156521]]},"id":"8844c0b1d7fffff-13f7b5063300b2ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155906,32.820327500000005]},"id":"8f44c0b0a8d9b4c-17f6bd5bee64ba10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145697,32.820317200000005]},"id":"8f44c0b0a8da2cc-17de7fd9f4728c1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d9b4c-17f6bd5bee64ba10","8f44c0b0a8da2cc-17de7fd9f4728c1b"]},"geometry":{"type":"LineString","coordinates":[[-83.7155906,32.820327500000005],[-83.7145697,32.820317200000005]]},"id":"8a44c0b0a8dffff-17dfbe9afe9eed43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69786900000001,32.8199713]},"id":"8f44c0b1996c8a4-1796789fe1aaabf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970615,32.819569200000004]},"id":"8f44c0b19960775-1396ea9895f15e58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19960775-1396ea9895f15e58","8f44c0b1996c8a4-1796789fe1aaabf7"]},"geometry":{"type":"LineString","coordinates":[[-83.69786900000001,32.8199713],[-83.6970615,32.819569200000004]]},"id":"8944c0b1997ffff-1396799c3a4677ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645586,32.8100699]},"id":"8f44c0b18544726-13d7b9f2ea4333f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66327430000001,32.810051800000004]},"id":"8f44c0b1855475b-13defd159c6cbdec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855475b-13defd159c6cbdec","8f44c0b18544726-13d7b9f2ea4333f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6645586,32.8100699],[-83.66327430000001,32.810051800000004]]},"id":"8944c0b1857ffff-13d6bb843394083c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7153723,32.8172086]},"id":"8f44c0b0a81a2a5-17d77de454e36365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71418440000001,32.817196100000004]},"id":"8f44c0b0a8ab515-17bfd0cac1b65bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a81a2a5-17d77de454e36365","8f44c0b0a8ab515-17bfd0cac1b65bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.7153723,32.8172086],[-83.71418440000001,32.817196100000004]]},"id":"8844c0b0a9fffff-17bfbf5794586fc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70573850000001,32.8155556]},"id":"8f44c0b0ac13448-13be556974e9c829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7057348,32.8151701]},"id":"8f44c0b0ac12b54-13df556bc11ae534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac12b54-13df556bc11ae534","8f44c0b0ac13448-13be556974e9c829"]},"geometry":{"type":"LineString","coordinates":[[-83.70573850000001,32.8155556],[-83.7057348,32.8151701]]},"id":"8a44c0b0ac17fff-13d7d56aa94550ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71559380000001,32.8192759]},"id":"8f44c0b0a8c399e-13df7d59e2108231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145855,32.819263500000005]},"id":"8f44c0b0a8d1443-13d7bfd018ba9e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8c399e-13df7d59e2108231","8f44c0b0a8d1443-13d7bfd018ba9e97"]},"geometry":{"type":"LineString","coordinates":[[-83.71559380000001,32.8192759],[-83.7145855,32.819263500000005]]},"id":"8944c0b0a8fffff-13dfbe94f48a0744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697933,32.8193792]},"id":"8f44c0b0a596632-13966877e7c85a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698035,32.819228800000005]},"id":"8f44c0b0a5961ab-13b6683829a2172f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a596632-13966877e7c85a06","8f44c0b0a5961ab-13b6683829a2172f"]},"geometry":{"type":"LineString","coordinates":[[-83.697933,32.8193792],[-83.698035,32.819228800000005]]},"id":"8b44c0b0a596fff-13f768580396b2a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70407680000001,32.8156832]},"id":"8f44c0b0ac8429d-139e597807063a0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7040843,32.8152252]},"id":"8f44c0b0aca260e-13ffd973517b5764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac8429d-139e597807063a0f","8f44c0b0aca260e-13ffd973517b5764"]},"geometry":{"type":"LineString","coordinates":[[-83.70407680000001,32.8156832],[-83.7040843,32.8152252]]},"id":"8944c0b0acbffff-13fef975a6fda398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71244030000001,32.8201934]},"id":"8f44c0b0a103b51-179ee50cd6934249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71245760000001,32.819482900000004]},"id":"8f44c0b0a1042b1-13d6d50203b95abc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a103b51-179ee50cd6934249","8f44c0b0a1042b1-13d6d50203b95abc"]},"geometry":{"type":"LineString","coordinates":[[-83.71244030000001,32.8201934],[-83.71245760000001,32.819482900000004]]},"id":"8a44c0b0a107fff-13bee50767497d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6947779,32.817337200000004]},"id":"8f44c0b19920369-1797f02bdd5bed7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69462440000001,32.8162149]},"id":"8f44c0b1d29d24c-13d6708bce53ec2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29d24c-13d6708bce53ec2f","8f44c0b19920369-1797f02bdd5bed7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6947779,32.817337200000004],[-83.69462440000001,32.8162149]]},"id":"8744c0b1dffffff-17b7705bc0b99300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713255,32.820413]},"id":"8f44c0b0a10ca21-1796630fabdfa2a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129927,32.8202006]},"id":"8f44c0b0a10cd2a-179763b399e2ad4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a10cd2a-179763b399e2ad4c","8f44c0b0a10ca21-1796630fabdfa2a7"]},"geometry":{"type":"LineString","coordinates":[[-83.713255,32.820413],[-83.7129927,32.8202006]]},"id":"8b44c0b0a10cfff-17d7c361a3ec8c11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67504650000001,32.815330200000005]},"id":"8f44c0b18335599-13bfe057fbdfa9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6741942,32.8153099]},"id":"8f44c0b1804da54-13b6b26ca0b41295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18335599-13bfe057fbdfa9fc","8f44c0b1804da54-13b6b26ca0b41295"]},"geometry":{"type":"LineString","coordinates":[[-83.67504650000001,32.815330200000005],[-83.6741942,32.8153099]]},"id":"8a44c0b18337fff-13b7b16254ed1e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639327,32.8107135]},"id":"8f44c0b1854261d-17f7fb7a14c29eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645531,32.8107269]},"id":"8f44c0b18543955-17f6f9f651c04227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18543955-17f6f9f651c04227","8f44c0b1854261d-17f7fb7a14c29eaf"]},"geometry":{"type":"LineString","coordinates":[[-83.6639327,32.8107135],[-83.6645531,32.8107269]]},"id":"8a44c0b18547fff-17febab83af49925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715514,32.818593]},"id":"8f44c0b0a8c686d-13b6bd8bc07105ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140363,32.8185744]},"id":"8f44c0b0a8d6028-139f412754330605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8c686d-13b6bd8bc07105ac","8f44c0b0a8d6028-139f412754330605"]},"geometry":{"type":"LineString","coordinates":[[-83.715514,32.818593],[-83.7140363,32.8185744]]},"id":"8944c0b0a8fffff-139eff598519a60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6684721,32.8143544]},"id":"8f44c0b180d480d-17dfb064fbed681a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6684896,32.8134984]},"id":"8f44c0b180f6ce2-17b6b05a045a0d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180d480d-17dfb064fbed681a","8f44c0b180f6ce2-17b6b05a045a0d91"]},"geometry":{"type":"LineString","coordinates":[[-83.6684721,32.8143544],[-83.6684896,32.8134984]]},"id":"8844c0b181fffff-17d6b05f71507406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68703070000001,32.813990600000004]},"id":"8f44c0b1d6acb93-17fea315da3742be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867115,32.8139843]},"id":"8f44c0b1d6ac414-17f6b3dd5779d709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ac414-17f6b3dd5779d709","8f44c0b1d6acb93-17fea315da3742be"]},"geometry":{"type":"LineString","coordinates":[[-83.68703070000001,32.813990600000004],[-83.6867115,32.8139843]]},"id":"8b44c0b1d6acfff-17f6b379914dee90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716521,32.8155736]},"id":"8f44c0b0a804444-13d7bb1663d747ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71597170000001,32.8157674]},"id":"8f44c0b0a815b68-13bebc6db6dffd42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a804444-13d7bb1663d747ad","8f44c0b0a815b68-13bebc6db6dffd42"]},"geometry":{"type":"LineString","coordinates":[[-83.716521,32.8155736],[-83.71597170000001,32.8157674]]},"id":"8a44c0b0a807fff-13963bc2159ba25a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69398670000001,32.8219786]},"id":"8f44c0b1980ddab-13fef21a5ab21721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937912,32.822651300000004]},"id":"8f44c0b198094eb-139f72948e6062c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198094eb-139f72948e6062c2","8f44c0b1980ddab-13fef21a5ab21721"]},"geometry":{"type":"LineString","coordinates":[[-83.69398670000001,32.8219786],[-83.6937912,32.822651300000004]]},"id":"8a44c0b1980ffff-13bef25774b1d700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69595380000001,32.8176409]},"id":"8f44c0b1d2d3845-17d7fd4cee95f101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69690750000001,32.8175453]},"id":"8f44c0b1d2c2a13-1797faf8d4a26403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c2a13-1797faf8d4a26403","8f44c0b1d2d3845-17d7fd4cee95f101"]},"geometry":{"type":"LineString","coordinates":[[-83.69595380000001,32.8176409],[-83.69690750000001,32.8175453]]},"id":"8944c0b1d2fffff-17b7fc22d1ddeb23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68589010000001,32.814631600000006]},"id":"8f44c0b1d681154-17fec5debaea0868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862356,32.8146404]},"id":"8f44c0b1d6aa703-17fec506c601efac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6aa703-17fec506c601efac","8f44c0b1d681154-17fec5debaea0868"]},"geometry":{"type":"LineString","coordinates":[[-83.68589010000001,32.814631600000006],[-83.6862356,32.8146404]]},"id":"8944c0b1d6bffff-17ff8572b606eeb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70200410000001,32.815672500000005]},"id":"8f44c0b1d265a5e-13975e877d26f4c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7020102,32.8150731]},"id":"8f44c0b1d34b8e1-139efe83a1556ae5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d265a5e-13975e877d26f4c5","8f44c0b1d34b8e1-139efe83a1556ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.70200410000001,32.815672500000005],[-83.7020102,32.8150731]]},"id":"8844c0b1d3fffff-13de5e858d3c08f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695741,32.8167113]},"id":"8f44c0b1d28921c-179efdd1e93efadf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69636530000001,32.816664]},"id":"8f44c0b1d2f3cd6-13ff6c4bb450481b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28921c-179efdd1e93efadf","8f44c0b1d2f3cd6-13ff6c4bb450481b"]},"geometry":{"type":"LineString","coordinates":[[-83.695741,32.8167113],[-83.69636530000001,32.816664]]},"id":"8944c0b1d2fffff-13fffd0ecce2bac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69605990000001,32.8190724]},"id":"8f44c0b19974341-13d66d0a975e9bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960078,32.818607300000004]},"id":"8f44c0b1d2da761-13bffd2b29258ef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2da761-13bffd2b29258ef2","8f44c0b19974341-13d66d0a975e9bde"]},"geometry":{"type":"LineString","coordinates":[[-83.69605990000001,32.8190724],[-83.6960078,32.818607300000004]]},"id":"8844c0b199fffff-13befd1ad01b3be5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713446,32.8221683]},"id":"8f44c0b0a153986-13df72984e6464c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134547,32.8215771]},"id":"8f44c0b0a154796-17fff292d28142c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a153986-13df72984e6464c6","8f44c0b0a154796-17fff292d28142c4"]},"geometry":{"type":"LineString","coordinates":[[-83.713446,32.8221683],[-83.7134547,32.8215771]]},"id":"8a44c0b0a157fff-13b672959b46815d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7117336,32.818241900000004]},"id":"8f44c0b0a134464-17df76c6827fc4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109416,32.8182345]},"id":"8f44c0b0ac6b65b-17d6d8b58d08cb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a134464-17df76c6827fc4b3","8f44c0b0ac6b65b-17d6d8b58d08cb08"]},"geometry":{"type":"LineString","coordinates":[[-83.7117336,32.818241900000004],[-83.7109416,32.8182345]]},"id":"8744c0b0affffff-17d6e7be01171642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66711620000001,32.8139099]},"id":"8f44c0b1808a189-17b7b3b46881c9fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66712820000001,32.8134701]},"id":"8f44c0b1808e551-17b6f3acef149faf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808e551-17b6f3acef149faf","8f44c0b1808a189-17b7b3b46881c9fb"]},"geometry":{"type":"LineString","coordinates":[[-83.66711620000001,32.8139099],[-83.66712820000001,32.8134701]]},"id":"8a44c0b1808ffff-17bef3b0a140c578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628936,32.8129842]},"id":"8f44c0b18473670-13f7be038e97e5bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632811,32.8129827]},"id":"8f44c0b18446d51-13f6bd115d6c75a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18446d51-13f6bd115d6c75a3","8f44c0b18473670-13f7be038e97e5bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6628936,32.8129842],[-83.6632811,32.8129827]]},"id":"8944c0b1847ffff-13f6bd8a60e004c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71302820000001,32.820201600000004]},"id":"8f44c0b0a12a6db-1796439d6e3c2893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71303610000001,32.8195266]},"id":"8f44c0b0a12e4a2-13fe6398706e6e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12e4a2-13fe6398706e6e9f","8f44c0b0a12a6db-1796439d6e3c2893"]},"geometry":{"type":"LineString","coordinates":[[-83.71302820000001,32.820201600000004],[-83.71303610000001,32.8195266]]},"id":"8944c0b0a13ffff-13bf539afae3d5ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129001,32.8178521]},"id":"8f44c0b0a8999a9-17d7d3ed7403e917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71345020000001,32.8178563]},"id":"8f44c0b0a88a84b-17de7295a370456e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8999a9-17d7d3ed7403e917","8f44c0b0a88a84b-17de7295a370456e"]},"geometry":{"type":"LineString","coordinates":[[-83.7129001,32.8178521],[-83.71345020000001,32.8178563]]},"id":"8944c0b0a8bffff-17d6e34184284b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70697150000001,32.814899000000004]},"id":"8f44c0b0ac06054-179ff266d2dc057c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7067176,32.8149463]},"id":"8f44c0b0ac15b75-17bf7305859890db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac06054-179ff266d2dc057c","8f44c0b0ac15b75-17bf7305859890db"]},"geometry":{"type":"LineString","coordinates":[[-83.70697150000001,32.814899000000004],[-83.7067176,32.8149463]]},"id":"8b44c0b0ac06fff-17bef2b632ff1610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109204,32.8155809]},"id":"8f44c0b0ad4aba6-13de58c2caa733bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090771,32.815584]},"id":"8f44c0b0ac298cb-13de4d42df689922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac298cb-13de4d42df689922","8f44c0b0ad4aba6-13de58c2caa733bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7109204,32.8155809],[-83.7090771,32.815584]]},"id":"8844c0b0adfffff-13df5b02c270208f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6954985,32.8173477]},"id":"8f44c0b1d2d28dc-179e7e6979c7de66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69536310000001,32.816266500000005]},"id":"8f44c0b1d288040-13f6febe10637123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d288040-13f6febe10637123","8f44c0b1d2d28dc-179e7e6979c7de66"]},"geometry":{"type":"LineString","coordinates":[[-83.6954985,32.8173477],[-83.69536310000001,32.816266500000005]]},"id":"8844c0b1d3fffff-17de7e93c2994f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6980382,32.819004]},"id":"8f44c0b1d2c96f6-13b7e8362e8e0382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69741880000001,32.8187009]},"id":"8f44c0b1d2ca310-13fe79b94374da87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c96f6-13b7e8362e8e0382","8f44c0b1d2ca310-13fe79b94374da87"]},"geometry":{"type":"LineString","coordinates":[[-83.6980382,32.819004],[-83.69741880000001,32.8187009]]},"id":"8a44c0b1d2cffff-13d6f8f7b16e2ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66783380000001,32.8143192]},"id":"8f44c0b1808968d-17b7b1f3e9be3764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6678502,32.8139234]},"id":"8f44c0b18089db5-17beb1e9a40cf2ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808968d-17b7b1f3e9be3764","8f44c0b18089db5-17beb1e9a40cf2ea"]},"geometry":{"type":"LineString","coordinates":[[-83.66783380000001,32.8143192],[-83.6678502,32.8139234]]},"id":"8a44c0b1808ffff-17bff1eec79c069a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6925368,32.817461900000005]},"id":"8f44c0b19914ca1-17f7f5a489e6ff7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6923613,32.8161235]},"id":"8f44c0b1d66aa1e-139f76123ec5081b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d66aa1e-139f76123ec5081b","8f44c0b19914ca1-17f7f5a489e6ff7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6925368,32.817461900000005],[-83.6923613,32.8161235]]},"id":"8744c0b1dffffff-17bf75db605319b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71343320000001,32.818895600000005]},"id":"8f44c0b0a1256eb-13f7c2a049dae100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128914,32.8188894]},"id":"8f44c0b0a120783-13dfe3f2edfd5e6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1256eb-13f7c2a049dae100","8f44c0b0a120783-13dfe3f2edfd5e6c"]},"geometry":{"type":"LineString","coordinates":[[-83.71343320000001,32.818895600000005],[-83.7128914,32.8188894]]},"id":"8a44c0b0a127fff-13dfd34998a0ae99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930593,32.8137987]},"id":"8f44c0b1d74d414-17f6745dfcdc7b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69309030000001,32.813273]},"id":"8f44c0b1d76a2f3-13b7f44a97157757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d76a2f3-13b7f44a97157757","8f44c0b1d74d414-17f6745dfcdc7b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6930593,32.8137987],[-83.69309030000001,32.813273]]},"id":"8944c0b1d77ffff-17dff454484184bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71329800000001,32.821437]},"id":"8f44c0b0a156956-179662f4ce114b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71389210000001,32.8214342]},"id":"8f44c0b0a1734d0-1796618179dfaa80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156956-179662f4ce114b8c","8f44c0b0a1734d0-1796618179dfaa80"]},"geometry":{"type":"LineString","coordinates":[[-83.71329800000001,32.821437],[-83.71389210000001,32.8214342]]},"id":"8944c0b0a17ffff-1797423b1c21dd12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69275160000001,32.8132554]},"id":"8f44c0b1d741aea-139ef51e4eecd83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69277890000001,32.812835500000006]},"id":"8f44c0b1d745300-1396750d33a4d43a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d745300-1396750d33a4d43a","8f44c0b1d741aea-139ef51e4eecd83f"]},"geometry":{"type":"LineString","coordinates":[[-83.69275160000001,32.8132554],[-83.69277890000001,32.812835500000006]]},"id":"8a44c0b1d747fff-139f7515bf8d6516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7116105,32.820396200000005]},"id":"8f44c0b0a11c71a-179fe71373933dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71161190000001,32.8201107]},"id":"8f44c0b0a11cd8d-17df77129b60b558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11c71a-179fe71373933dd1","8f44c0b0a11cd8d-17df77129b60b558"]},"geometry":{"type":"LineString","coordinates":[[-83.7116105,32.820396200000005],[-83.71161190000001,32.8201107]]},"id":"8b44c0b0a11cfff-17b6771302502d74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69845790000001,32.816746]},"id":"8f44c0b1d2e1baa-17b6672fdb8b6bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6980918,32.8166816]},"id":"8f44c0b1d2e024b-13fe6814a03a41b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e1baa-17b6672fdb8b6bf5","8f44c0b1d2e024b-13fe6814a03a41b3"]},"geometry":{"type":"LineString","coordinates":[[-83.69845790000001,32.816746],[-83.6980918,32.8166816]]},"id":"8b44c0b1d2e1fff-179e67a24d44ff02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858442,32.816058600000005]},"id":"8f44c0b1d68b6c1-13f6a5fb6fb40723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858528,32.8156294]},"id":"8f44c0b1d68bda5-13fee5f60b11bc74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b6c1-13f6a5fb6fb40723","8f44c0b1d68bda5-13fee5f60b11bc74"]},"geometry":{"type":"LineString","coordinates":[[-83.6858442,32.816058600000005],[-83.6858528,32.8156294]]},"id":"8844c0b1d7fffff-13fe85f8b7690421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155857,32.8206882]},"id":"8f44c0b0a164730-17d63d5ef2d693fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145643,32.8206788]},"id":"8f44c0b0a175d9b-17be7fdd578667fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a164730-17d63d5ef2d693fd","8f44c0b0a175d9b-17be7fdd578667fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7155857,32.8206882],[-83.7145643,32.8206788]]},"id":"8944c0b0a17ffff-17bf3e9e27bff1ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7015574,32.8156496]},"id":"8f44c0b1d2654d1-13f75f9eab44fd5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70156150000001,32.8150685]},"id":"8f44c0b1d26492e-139fdf9c13a57ba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d26492e-139fdf9c13a57ba0","8f44c0b1d2654d1-13f75f9eab44fd5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7015574,32.8156496],[-83.70156150000001,32.8150685]]},"id":"8844c0b1d3fffff-13bf7f9d665d6162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69776440000001,32.8204824]},"id":"8f44c0b199688d1-17d7e8e14dcfe4b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971132,32.8201583]},"id":"8f44c0b1996e5a3-17f6fa784094fde3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199688d1-17d7e8e14dcfe4b9","8f44c0b1996e5a3-17f6fa784094fde3"]},"geometry":{"type":"LineString","coordinates":[[-83.69776440000001,32.8204824],[-83.6971132,32.8201583]]},"id":"8a44c0b1996ffff-17de69acced8437c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677558,32.8225312]},"id":"8f44c0b1824c4ab-13d69a364bd3cb42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775411,32.821494200000004]},"id":"8f44c0b182636a9-17bffa40d9878cdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1824c4ab-13d69a364bd3cb42","8f44c0b182636a9-17bffa40d9878cdd"]},"geometry":{"type":"LineString","coordinates":[[-83.677558,32.8225312],[-83.6775411,32.821494200000004]]},"id":"8944c0b1827ffff-13fffa3b8f9b491b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66456120000001,32.8097657]},"id":"8f44c0b18571a69-1397b9f14b493086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632804,32.8097507]},"id":"8f44c0b18554c2d-139ebd11cbfc015e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18554c2d-139ebd11cbfc015e","8f44c0b18571a69-1397b9f14b493086"]},"geometry":{"type":"LineString","coordinates":[[-83.66456120000001,32.8097657],[-83.6632804,32.8097507]]},"id":"8944c0b1857ffff-1396fb818438bb9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70511830000001,32.8155548]},"id":"8f44c0b0acac591-13bfd6ed19443b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7051196,32.8151693]},"id":"8f44c0b0aca181d-13ded6ec4bf3c00b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acac591-13bfd6ed19443b0e","8f44c0b0aca181d-13ded6ec4bf3c00b"]},"geometry":{"type":"LineString","coordinates":[[-83.70511830000001,32.8155548],[-83.7051196,32.8151693]]},"id":"8944c0b0acbffff-13d756ecab508324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70271720000001,32.8157099]},"id":"8f44c0b0ac908e6-139efcc9c6d2639c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7027255,32.8150805]},"id":"8f44c0b0acb2616-13975cc49dc97aeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acb2616-13975cc49dc97aeb","8f44c0b0ac908e6-139efcc9c6d2639c"]},"geometry":{"type":"LineString","coordinates":[[-83.70271720000001,32.8157099],[-83.7027255,32.8150805]]},"id":"8944c0b0acbffff-13d65cc734814a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69459970000001,32.8208806]},"id":"8f44c0b1982caa5-17be709b35775bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69469500000001,32.82067]},"id":"8f44c0b1995225b-17b6f05faf9f7e0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995225b-17b6f05faf9f7e0a","8f44c0b1982caa5-17be709b35775bf7"]},"geometry":{"type":"LineString","coordinates":[[-83.69459970000001,32.8208806],[-83.69469500000001,32.82067]]},"id":"8844c0b199fffff-17fef07d6dc718b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69513160000001,32.8173438]},"id":"8f44c0b19921960-1797ef4ecda604db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69498510000001,32.8162401]},"id":"8f44c0b1d28a843-13f67faa5186e6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19921960-1797ef4ecda604db","8f44c0b1d28a843-13f67faa5186e6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.69513160000001,32.8173438],[-83.69498510000001,32.8162401]]},"id":"8844c0b1d3fffff-17bf6f7c8e1a6893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71711470000001,32.815732700000005]},"id":"8f44c0b0a805804-13bef9a3561aa2f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71703480000001,32.815573300000004]},"id":"8f44c0b0a823604-13d779d544c87198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a823604-13d779d544c87198","8f44c0b0a805804-13bef9a3561aa2f0"]},"geometry":{"type":"LineString","coordinates":[[-83.71711470000001,32.815732700000005],[-83.71703480000001,32.815573300000004]]},"id":"8944c0b0a83ffff-13f739bc4881d066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6870564,32.8144897]},"id":"8f44c0b1d6a8a60-17b69305c5f95dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867077,32.814488000000004]},"id":"8f44c0b1d6a809a-179f83dfb8dd6086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a8a60-17b69305c5f95dd6","8f44c0b1d6a809a-179f83dfb8dd6086"]},"geometry":{"type":"LineString","coordinates":[[-83.6870564,32.8144897],[-83.6867077,32.814488000000004]]},"id":"8b44c0b1d6a8fff-179f9372b5ceb32f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6750317,32.8158277]},"id":"8f44c0b18331446-13f6f061354fde5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6741808,32.815804]},"id":"8f44c0b18314d29-13d7a2750582a1aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18331446-13f6f061354fde5c","8f44c0b18314d29-13d7a2750582a1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6750317,32.8158277],[-83.6741808,32.815804]]},"id":"8944c0b1833ffff-13def16b179ad952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971359,32.817958000000004]},"id":"8f44c0b1d2c3380-1797ea6a1b985ad4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69601540000001,32.8180698]},"id":"8f44c0b1d2de466-17dfed266a1efc7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c3380-1797ea6a1b985ad4","8f44c0b1d2de466-17dfed266a1efc7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6971359,32.817958000000004],[-83.69601540000001,32.8180698]]},"id":"8944c0b1d2fffff-17befbc84ce9b459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66392830000001,32.811013800000005]},"id":"8f44c0b1855c008-17b7bb7cd54e95b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644589,32.8110224]},"id":"8f44c0b18543214-17bfba313ea0af5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855c008-17b7bb7cd54e95b2","8f44c0b18543214-17bfba313ea0af5d"]},"geometry":{"type":"LineString","coordinates":[[-83.66392830000001,32.811013800000005],[-83.6644589,32.8110224]]},"id":"8944c0b1857ffff-17b6fad70921c4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71342460000001,32.8194085]},"id":"8f44c0b0a12e82d-13b652a5abf9e72a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128797,32.8194013]},"id":"8f44c0b0a123645-139fd3fa3cbcaf24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12e82d-13b652a5abf9e72a","8f44c0b0a123645-139fd3fa3cbcaf24"]},"geometry":{"type":"LineString","coordinates":[[-83.71342460000001,32.8194085],[-83.7128797,32.8194013]]},"id":"8944c0b0a13ffff-13b6534fe41f43c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6870363,32.8136424]},"id":"8f44c0b1d6120c5-179e83125ee26031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867141,32.8136456]},"id":"8f44c0b1d6a1ba3-179683dbba74331f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a1ba3-179683dbba74331f","8f44c0b1d6120c5-179e83125ee26031"]},"geometry":{"type":"LineString","coordinates":[[-83.6870363,32.8136424],[-83.6867141,32.8136456]]},"id":"8944c0b1d6bffff-179f83770263dc9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6943822,32.821933300000005]},"id":"8f44c0b1982b268-13de712323c0d544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6941065,32.8228841]},"id":"8f44c0b19854588-139ef1cf74186979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19854588-139ef1cf74186979","8f44c0b1982b268-13de712323c0d544"]},"geometry":{"type":"LineString","coordinates":[[-83.6943822,32.821933300000005],[-83.6941065,32.8228841]]},"id":"8844c0b199fffff-13f771795e2edef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107709,32.820142000000004]},"id":"8f44c0b0a113716-17fec9203c320a49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107831,32.819473800000004]},"id":"8f44c0b0a116358-13df69189c8d16ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a113716-17fec9203c320a49","8f44c0b0a116358-13df69189c8d16ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7107709,32.820142000000004],[-83.7107831,32.819473800000004]]},"id":"8a44c0b0a117fff-139ff91c69d9f11a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71539800000001,32.8175827]},"id":"8f44c0b0a8f4aea-17bf3dd449c9b3d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140559,32.8175661]},"id":"8f44c0b0a88dc92-17b6d11b1a943946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8f4aea-17bf3dd449c9b3d1","8f44c0b0a88dc92-17b6d11b1a943946"]},"geometry":{"type":"LineString","coordinates":[[-83.71539800000001,32.8175827],[-83.7140559,32.8175661]]},"id":"8844c0b0a9fffff-17be3f77b585cb74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71072360000001,32.817837700000005]},"id":"8f44c0b0ac6a233-17ded93dc9b500f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099908,32.8178324]},"id":"8f44c0b0ac414e1-17df4b07ccafef0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6a233-17ded93dc9b500f4","8f44c0b0ac414e1-17df4b07ccafef0e"]},"geometry":{"type":"LineString","coordinates":[[-83.71072360000001,32.817837700000005],[-83.7099908,32.8178324]]},"id":"8944c0b0ac7ffff-17deea22c84e6853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675363,32.818508]},"id":"8f44c0b182208f4-13ff9f922fbd7686"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6744671,32.8184849]},"id":"8f44c0b182353b0-13f7b1c215c7d1dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b182353b0-13f7b1c215c7d1dc","8f44c0b182208f4-13ff9f922fbd7686"]},"geometry":{"type":"LineString","coordinates":[[-83.675363,32.818508],[-83.6744671,32.8184849]]},"id":"8944c0b1823ffff-13fef0aa1c05a100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6678936,32.813923800000005]},"id":"8f44c0b18089d10-17bef1ce89ea76f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6679046,32.8134868]},"id":"8f44c0b1808cad8-17bff1c7aee86f62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18089d10-17bef1ce89ea76f8","8f44c0b1808cad8-17bff1c7aee86f62"]},"geometry":{"type":"LineString","coordinates":[[-83.6678936,32.813923800000005],[-83.6679046,32.8134868]]},"id":"8a44c0b1808ffff-17b7f1cb1028e74e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6958438,32.8186295]},"id":"8f44c0b1d2da6b1-13bf7d91a10ae07c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69590380000001,32.8191726]},"id":"8f44c0b1997090e-139eed6c216b7be6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2da6b1-13bf7d91a10ae07c","8f44c0b1997090e-139eed6c216b7be6"]},"geometry":{"type":"LineString","coordinates":[[-83.6958438,32.8186295],[-83.69590380000001,32.8191726]]},"id":"8844c0b199fffff-13f77d7eee24b477"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7114354,32.8201087]},"id":"8f44c0b0a111233-17d7f780e9a2aa19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7114428,32.819478600000004]},"id":"8f44c0b0a115184-13de677c4ac8c08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a115184-13de677c4ac8c08b","8f44c0b0a111233-17d7f780e9a2aa19"]},"geometry":{"type":"LineString","coordinates":[[-83.7114354,32.8201087],[-83.7114428,32.819478600000004]]},"id":"8a44c0b0a117fff-1397577e917155bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6804086,32.813730400000004]},"id":"8f44c0b18a0896b-17d79340a18a3f02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68040660000001,32.813027600000005]},"id":"8f44c0b18a2a0ae-139ed341e3bbcf5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a0896b-17d79340a18a3f02","8f44c0b18a2a0ae-139ed341e3bbcf5c"]},"geometry":{"type":"LineString","coordinates":[[-83.6804086,32.813730400000004],[-83.68040660000001,32.813027600000005]]},"id":"8944c0b18a3ffff-13fff3414fa0b67a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6855352,32.8140792]},"id":"8f44c0b1d684655-179f86bc887b6d52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68528,32.8140777]},"id":"8f44c0b1d686ad5-179e975c0039464f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d684655-179f86bc887b6d52","8f44c0b1d686ad5-179e975c0039464f"]},"geometry":{"type":"LineString","coordinates":[[-83.6855352,32.8140792],[-83.68528,32.8140777]]},"id":"8a44c0b1d687fff-179f970c45d9d344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69578390000001,32.817024100000005]},"id":"8f44c0b1d2d6a71-17d67db714cf9674"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69674180000001,32.8169333]},"id":"8f44c0b1d2c6c12-17977b6065319f43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d6a71-17d67db714cf9674","8f44c0b1d2c6c12-17977b6065319f43"]},"geometry":{"type":"LineString","coordinates":[[-83.69578390000001,32.817024100000005],[-83.69674180000001,32.8169333]]},"id":"8944c0b1d2fffff-17b7fc8bb4d72994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138539,32.8221342]},"id":"8f44c0b0a151c63-13dfe1995df8daf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138626,32.8215809]},"id":"8f44c0b0a154a5b-17f65193e855bb5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a154a5b-17f65193e855bb5d","8f44c0b0a151c63-13dfe1995df8daf9"]},"geometry":{"type":"LineString","coordinates":[[-83.7138539,32.8221342],[-83.7138626,32.8215809]]},"id":"8a44c0b0a157fff-139f4196a2c21652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129263,32.8170056]},"id":"8f44c0b0a883c12-17d6c3dd137fe937"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7136042,32.8170185]},"id":"8f44c0b0a881162-17ded2356d41cbd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a883c12-17d6c3dd137fe937","8f44c0b0a881162-17ded2356d41cbd8"]},"geometry":{"type":"LineString","coordinates":[[-83.7129263,32.8170056],[-83.7136042,32.8170185]]},"id":"8a44c0b0a887fff-17ded309350e83f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901581,32.810329800000005]},"id":"8f44c0b1d705c65-17fe7b7331fabca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6902237,32.8093547]},"id":"8f44c0b1d726ac3-1396fb4a35a82221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d705c65-17fe7b7331fabca9","8f44c0b1d726ac3-1396fb4a35a82221"]},"geometry":{"type":"LineString","coordinates":[[-83.6901581,32.810329800000005],[-83.6902237,32.8093547]]},"id":"8944c0b1d73ffff-13d77b5eb06e1fdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71291760000001,32.8173454]},"id":"8f44c0b0a8836f3-179ee3e28ae2b7c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134783,32.8173522]},"id":"8f44c0b0a88e812-179f62841bfd4a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88e812-179f62841bfd4a25","8f44c0b0a8836f3-179ee3e28ae2b7c9"]},"geometry":{"type":"LineString","coordinates":[[-83.71291760000001,32.8173454],[-83.7134783,32.8173522]]},"id":"8944c0b0a8bffff-179f43334bf72c11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69182830000001,32.8162144]},"id":"8f44c0b1d641ab1-13d6775f55754b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69202700000001,32.8177235]},"id":"8f44c0b1991640d-179776e32b930475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d641ab1-13d6775f55754b91","8f44c0b1991640d-179776e32b930475"]},"geometry":{"type":"LineString","coordinates":[[-83.69182830000001,32.8162144],[-83.69202700000001,32.8177235]]},"id":"8644c0b1fffffff-17bff72145793216"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154323,32.8178618]},"id":"8f44c0b0a8f5443-17dfbdbeda42a25b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140517,32.8178531]},"id":"8f44c0b0a88d694-17d6711db8b29a8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8f5443-17dfbdbeda42a25b","8f44c0b0a88d694-17d6711db8b29a8c"]},"geometry":{"type":"LineString","coordinates":[[-83.7154323,32.8178618],[-83.7140517,32.8178531]]},"id":"8844c0b0a9fffff-17deff6e44f0b423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128957,32.818192]},"id":"8f44c0b0a899203-17be43f033177eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71344540000001,32.8182004]},"id":"8f44c0b0a88b436-17bf4298a3088e1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88b436-17bf4298a3088e1e","8f44c0b0a899203-17be43f033177eaf"]},"geometry":{"type":"LineString","coordinates":[[-83.7128957,32.818192],[-83.71344540000001,32.8182004]]},"id":"8944c0b0a8bffff-17bee344789f0b7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70907410000001,32.8152545]},"id":"8f44c0b0ac2d0c6-13fe5d44b6740175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109214,32.8152617]},"id":"8f44c0b0ad4e053-1396d8c222813157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4e053-1396d8c222813157","8f44c0b0ac2d0c6-13fe5d44b6740175"]},"geometry":{"type":"LineString","coordinates":[[-83.70907410000001,32.8152545],[-83.7109214,32.8152617]]},"id":"8844c0b0adfffff-13965b03602b0b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909038,32.812517]},"id":"8f44c0b1d7546eb-13df79a1236243ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69059130000001,32.812498600000005]},"id":"8f44c0b1d756312-13d7fa647313caa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7546eb-13df79a1236243ca","8f44c0b1d756312-13d7fa647313caa4"]},"geometry":{"type":"LineString","coordinates":[[-83.6909038,32.812517],[-83.69059130000001,32.812498600000005]]},"id":"8a44c0b1d757fff-13df7a02d9a54d2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70111530000001,32.815063800000004]},"id":"8f44c0b1d35938c-1396e0b2f974dde0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70111150000001,32.8155236]},"id":"8f44c0b1d266341-13b660b55e02057d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35938c-1396e0b2f974dde0","8f44c0b1d266341-13b660b55e02057d"]},"geometry":{"type":"LineString","coordinates":[[-83.70111530000001,32.815063800000004],[-83.70111150000001,32.8155236]]},"id":"8844c0b1d3fffff-1396f0b429791f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71092250000001,32.8149436]},"id":"8f44c0b0ad4160b-17bfc8c17b0a0487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092179,32.8149436]},"id":"8f44c0b0ad5329e-17bfccead6579ba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad5329e-17bfccead6579ba6","8f44c0b0ad4160b-17bfc8c17b0a0487"]},"geometry":{"type":"LineString","coordinates":[[-83.71092250000001,32.8149436],[-83.7092179,32.8149436]]},"id":"8944c0b0ad7ffff-17bfcad629df8a8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69625830000001,32.8188838]},"id":"8f44c0b1d2db44b-13de6c8e91b53b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69708560000001,32.818800200000005]},"id":"8f44c0b1d2d9a58-13b66a898d81d1da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d9a58-13b66a898d81d1da","8f44c0b1d2db44b-13de6c8e91b53b77"]},"geometry":{"type":"LineString","coordinates":[[-83.69625830000001,32.8188838],[-83.69708560000001,32.818800200000005]]},"id":"8a44c0b1d2dffff-13d66b8c068c4be5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6793803,32.8136925]},"id":"8f44c0b18a1d0e5-17bfd5c352f43501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679382,32.8130614]},"id":"8f44c0b18a03c14-13b7f5c24fc7d760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a03c14-13b7f5c24fc7d760","8f44c0b18a1d0e5-17bfd5c352f43501"]},"geometry":{"type":"LineString","coordinates":[[-83.6793803,32.8136925],[-83.679382,32.8130614]]},"id":"8944c0b18a3ffff-13feb5c2c9c6fe99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69326480000001,32.8168847]},"id":"8f44c0b19930d60-17fef3dd8d24b060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69316450000001,32.8161183]},"id":"8f44c0b1d66992a-139ff41c33103806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d66992a-139ff41c33103806","8f44c0b19930d60-17fef3dd8d24b060"]},"geometry":{"type":"LineString","coordinates":[[-83.69326480000001,32.8168847],[-83.69316450000001,32.8161183]]},"id":"8744c0b1dffffff-139f73fcdac9abd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69215240000001,32.8080579]},"id":"8f44c0b1d0a9728-17fe7694c6d6a59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914708,32.808013800000005]},"id":"8f44c0b1d0ab594-17d6f83ecd7fe093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ab594-17d6f83ecd7fe093","8f44c0b1d0a9728-17fe7694c6d6a59f"]},"geometry":{"type":"LineString","coordinates":[[-83.69215240000001,32.8080579],[-83.6914708,32.808013800000005]]},"id":"8a44c0b1d0affff-17de7769c63ed3e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155714,32.8190706]},"id":"8f44c0b0a8c0449-13df3d67e7cf943d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71458890000001,32.8190572]},"id":"8f44c0b0a8d1ca4-13d6ffcdf6709473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d1ca4-13d6ffcdf6709473","8f44c0b0a8c0449-13df3d67e7cf943d"]},"geometry":{"type":"LineString","coordinates":[[-83.7155714,32.8190706],[-83.71458890000001,32.8190572]]},"id":"8944c0b0a8fffff-13defe9af76a7ebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155776,32.8217687]},"id":"8f44c0b0a16e5aa-13f77d64085701a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71558010000001,32.8212001]},"id":"8f44c0b0a160398-17963d627cda058a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16e5aa-13f77d64085701a0","8f44c0b0a160398-17963d627cda058a"]},"geometry":{"type":"LineString","coordinates":[[-83.7155776,32.8217687],[-83.71558010000001,32.8212001]]},"id":"8944c0b0a17ffff-17b7fd633652f3d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70364520000001,32.8156552]},"id":"8f44c0b0ac86041-13feda85c7cf6d85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70365000000001,32.815134400000005]},"id":"8f44c0b0acb1183-13b75a82c9ee87cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac86041-13feda85c7cf6d85","8f44c0b0acb1183-13b75a82c9ee87cb"]},"geometry":{"type":"LineString","coordinates":[[-83.70364520000001,32.8156552],[-83.70365000000001,32.815134400000005]]},"id":"8944c0b0acbffff-13d7da8445554eb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942198,32.8150398]},"id":"8f44c0b1d282d66-17f7f188aa1233fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942803,32.814140800000004]},"id":"8f44c0b1d2b0add-17d67162da494e7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d282d66-17f7f188aa1233fc","8f44c0b1d2b0add-17d67162da494e7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6942198,32.8150398],[-83.6942803,32.814140800000004]]},"id":"8944c0b1d2bffff-17def175c6b667f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69405880000001,32.8200747]},"id":"8f44c0b19825425-17d6f1ed4ad99fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69398430000001,32.8194121]},"id":"8f44c0b1990a0ee-13b6f21bd8a3531d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990a0ee-13b6f21bd8a3531d","8f44c0b19825425-17d6f1ed4ad99fb3"]},"geometry":{"type":"LineString","coordinates":[[-83.69405880000001,32.8200747],[-83.69398430000001,32.8194121]]},"id":"8844c0b199fffff-13f7f204968e039d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71038320000001,32.8213059]},"id":"8f44c0b0a036529-17d67a1285c978b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099791,32.8213]},"id":"8f44c0b0a18dc25-17d6cb0f1852dd0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a036529-17d67a1285c978b5","8f44c0b0a18dc25-17d6cb0f1852dd0e"]},"geometry":{"type":"LineString","coordinates":[[-83.71038320000001,32.8213059],[-83.7099791,32.8213]]},"id":"8944c0b0a1bffff-17d66a90c9cde995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858984,32.8136235]},"id":"8f44c0b1d6a234c-1796b5d98d790323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68553580000001,32.813618000000005]},"id":"8f44c0b1d6a2695-17ffc6bc282d21cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a2695-17ffc6bc282d21cc","8f44c0b1d6a234c-1796b5d98d790323"]},"geometry":{"type":"LineString","coordinates":[[-83.6858984,32.8136235],[-83.68553580000001,32.813618000000005]]},"id":"8b44c0b1d6a2fff-1796f64ad96b5359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7115766,32.8157695]},"id":"8f44c0b0ad49c5d-13bff728ac89f05a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109197,32.815771500000004]},"id":"8f44c0b0ad4a346-13d778c337033d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a346-13d778c337033d8a","8f44c0b0ad49c5d-13bff728ac89f05a"]},"geometry":{"type":"LineString","coordinates":[[-83.7115766,32.8157695],[-83.7109197,32.815771500000004]]},"id":"8a44c0b0ad4ffff-13d6d7f5ffa54c15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67649420000001,32.8225281]},"id":"8f44c0b1825c39c-13d69ccf21db87c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67649080000001,32.8210112]},"id":"8f44c0b18273923-179e9cd144840c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825c39c-13d69ccf21db87c3","8f44c0b18273923-179e9cd144840c58"]},"geometry":{"type":"LineString","coordinates":[[-83.67649420000001,32.8225281],[-83.67649080000001,32.8210112]]},"id":"8944c0b1827ffff-13f69cd0323fcee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6995926,32.813579600000004]},"id":"8f44c0b1d3521a3-17f7646aacc2e8d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6993376,32.813536500000005]},"id":"8f44c0b1d2252c3-17de750a0f25f29b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d3521a3-17f7646aacc2e8d6","8f44c0b1d2252c3-17de750a0f25f29b"]},"geometry":{"type":"LineString","coordinates":[[-83.6995926,32.813579600000004],[-83.6993376,32.813536500000005]]},"id":"8944c0b1d23ffff-17dff4ba59a89951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645544,32.8105697]},"id":"8f44c0b18540383-179eb9f583e8dc2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66393500000001,32.810562600000004]},"id":"8f44c0b18542096-179fbb78a795e769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18540383-179eb9f583e8dc2a","8f44c0b18542096-179fbb78a795e769"]},"geometry":{"type":"LineString","coordinates":[[-83.6645544,32.8105697],[-83.66393500000001,32.810562600000004]]},"id":"8a44c0b18547fff-179ffab7163f1b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6686883,32.8135021]},"id":"8f44c0b180f68e4-17b6ffddd5f847b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66866320000001,32.8143588]},"id":"8f44c0b180f342b-17deefed8604beb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f68e4-17b6ffddd5f847b1","8f44c0b180f342b-17deefed8604beb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6686883,32.8135021],[-83.66866320000001,32.8143588]]},"id":"8a44c0b180f7fff-17d6afe5b2194385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6870281,32.814154]},"id":"8f44c0b1d6ac221-17dec31774b10d56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867103,32.8141477]},"id":"8f44c0b1d6aeb48-17ded3de165443b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6aeb48-17ded3de165443b2","8f44c0b1d6ac221-17dec31774b10d56"]},"geometry":{"type":"LineString","coordinates":[[-83.6870281,32.814154],[-83.6867103,32.8141477]]},"id":"8b44c0b1d6acfff-17ded37ac85404e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69697790000001,32.817686900000005]},"id":"8f44c0b1d2c3ca5-17fe7accd867c2ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695975,32.817788400000005]},"id":"8f44c0b1d2d3ae4-17bfed3fac6e6f4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c3ca5-17fe7accd867c2ca","8f44c0b1d2d3ae4-17bfed3fac6e6f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.69697790000001,32.817686900000005],[-83.695975,32.817788400000005]]},"id":"8944c0b1d2fffff-179e7c0646b97f46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915841,32.8145218]},"id":"8f44c0b1d666570-17b677f7fcf2c125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69155090000001,32.8150289]},"id":"8f44c0b1d6620a8-17f7780cb2875847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6620a8-17f7780cb2875847","8f44c0b1d666570-17b677f7fcf2c125"]},"geometry":{"type":"LineString","coordinates":[[-83.6915841,32.8145218],[-83.69155090000001,32.8150289]]},"id":"8a44c0b1d667fff-17d6f8025af53f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7017847,32.815542300000004]},"id":"8f44c0b1d265111-13b7ff109dc2ceea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7017933,32.8150709]},"id":"8f44c0b1d34bcc2-139f5f0b36ee6432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d265111-13b7ff109dc2ceea","8f44c0b1d34bcc2-139f5f0b36ee6432"]},"geometry":{"type":"LineString","coordinates":[[-83.7017847,32.815542300000004],[-83.7017933,32.8150709]]},"id":"8844c0b1d3fffff-139eff0de2733811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703417,32.815747900000005]},"id":"8f44c0b0ac86684-13b67b14631ff830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7034321,32.815131]},"id":"8f44c0b0acb3969-13b6fb0af4f9d99a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac86684-13b67b14631ff830","8f44c0b0acb3969-13b6fb0af4f9d99a"]},"geometry":{"type":"LineString","coordinates":[[-83.703417,32.815747900000005],[-83.7034321,32.815131]]},"id":"8944c0b0acbffff-13f7fb0fb6c7b1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132373,32.8222186]},"id":"8f44c0b0a153c82-13fee31ab23909a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132442,32.821575200000005]},"id":"8f44c0b0a156163-17fec31666f03329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a153c82-13fee31ab23909a6","8f44c0b0a156163-17fec31666f03329"]},"geometry":{"type":"LineString","coordinates":[[-83.7132373,32.8222186],[-83.7132442,32.821575200000005]]},"id":"8a44c0b0a157fff-13b7d31886b4e1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673172,32.8134742]},"id":"8f44c0b1808e155-17b7f336c1487eb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66730720000001,32.8139163]},"id":"8f44c0b1808ab8d-17bfb33d0f81bce7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808ab8d-17bfb33d0f81bce7","8f44c0b1808e155-17b7f336c1487eb8"]},"geometry":{"type":"LineString","coordinates":[[-83.6673172,32.8134742],[-83.66730720000001,32.8139163]]},"id":"8a44c0b1808ffff-17bfb339ed109fdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71187,32.8201326]},"id":"8f44c0b0a11c954-17f6e6714633ba99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7118818,32.819478600000004]},"id":"8f44c0b0a10609b-13de6669e62c830d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a10609b-13de6669e62c830d","8f44c0b0a11c954-17f6e6714633ba99"]},"geometry":{"type":"LineString","coordinates":[[-83.71187,32.8201326],[-83.7118818,32.819478600000004]]},"id":"8a44c0b0a107fff-139ec66d9a86c754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713706,32.8239877]},"id":"8f44c0b0a075798-17d651f5c16e3e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7137,32.823363900000004]},"id":"8f44c0b0a15a2d9-17de71f981ab4543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15a2d9-17de71f981ab4543","8f44c0b0a075798-17d651f5c16e3e51"]},"geometry":{"type":"LineString","coordinates":[[-83.713706,32.8239877],[-83.7137,32.823363900000004]]},"id":"8844c0b0a1fffff-179f61f7af3838b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713239,32.8202073]},"id":"8f44c0b0a12a2ce-1797d319a29d07ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132426,32.8195806]},"id":"8f44c0b0a12e08d-139fe3176cb567e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12e08d-139fe3176cb567e1","8f44c0b0a12a2ce-1797d319a29d07ba"]},"geometry":{"type":"LineString","coordinates":[[-83.713239,32.8202073],[-83.7132426,32.8195806]]},"id":"8a44c0b0a12ffff-13d7c318862affb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71399410000001,32.8239899]},"id":"8f44c0b0a075308-17d7f141b226e3b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71398980000001,32.823362200000005]},"id":"8f44c0b0a15b132-17df61446d9358ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15b132-17df61446d9358ad","8f44c0b0a075308-17d7f141b226e3b6"]},"geometry":{"type":"LineString","coordinates":[[-83.71399410000001,32.8239899],[-83.71398980000001,32.823362200000005]]},"id":"8844c0b0a1fffff-179fd14300e2f594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69848010000001,32.8219127]},"id":"8f44c0b0a4b150a-13bf7721f981f6ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6986225,32.821639600000005]},"id":"8f44c0b0a4b5781-1396e6c8fae559dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b5781-1396e6c8fae559dc","8f44c0b0a4b150a-13bf7721f981f6ed"]},"geometry":{"type":"LineString","coordinates":[[-83.69848010000001,32.8219127],[-83.6986225,32.821639600000005]]},"id":"8a44c0b0a4b7fff-13fe66f578c97e76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109198,32.815753900000004]},"id":"8f44c0b0ad4a370-13b678c3241d0758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090787,32.815756]},"id":"8f44c0b0ac29224-13b7cd41dbfbd562"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a370-13b678c3241d0758","8f44c0b0ac29224-13b7cd41dbfbd562"]},"geometry":{"type":"LineString","coordinates":[[-83.7109198,32.815753900000004],[-83.7090787,32.815756]]},"id":"8844c0b0adfffff-13b6db027f50f061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69481900000001,32.818815]},"id":"8f44c0b1990cb51-13bf70122ae7b910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6949598,32.8199934]},"id":"8f44c0b19956b44-179fefba2d944046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956b44-179fefba2d944046","8f44c0b1990cb51-13bf70122ae7b910"]},"geometry":{"type":"LineString","coordinates":[[-83.69481900000001,32.818815],[-83.6949598,32.8199934]]},"id":"8844c0b199fffff-139fefe62da9bbc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6943033,32.8208288]},"id":"8f44c0b1982c556-179e71547cd369b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982caa5-17be709b35775bf7","8f44c0b1982c556-179e71547cd369b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6943033,32.8208288],[-83.69459970000001,32.8208806]]},"id":"8b44c0b1982cfff-17be70f7d5f29b5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68458720000001,32.814605]},"id":"8f44c0b1d69104c-17fea90d034e13f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68459030000001,32.8144433]},"id":"8f44c0b1d6918f6-1797990b18c4587d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d69104c-17fea90d034e13f9","8f44c0b1d6918f6-1797990b18c4587d"]},"geometry":{"type":"LineString","coordinates":[[-83.68458720000001,32.814605],[-83.68459030000001,32.8144433]]},"id":"8b44c0b1d691fff-17b7a90c05ad2024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71547770000001,32.8182412]},"id":"8f44c0b0a8f1152-17defda27c7abe98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71404390000001,32.8182168]},"id":"8f44c0b0a889700-17bfc12299a5c18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8f1152-17defda27c7abe98","8f44c0b0a889700-17bfc12299a5c18f"]},"geometry":{"type":"LineString","coordinates":[[-83.71547770000001,32.8182412],[-83.71404390000001,32.8182168]]},"id":"8944c0b0a8fffff-17d73f62877cee52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128983,32.8185382]},"id":"8f44c0b0a126aed-139663ee9455f947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134407,32.8185443]},"id":"8f44c0b0a125c1d-1396729b9d137f56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a126aed-139663ee9455f947","8f44c0b0a125c1d-1396729b9d137f56"]},"geometry":{"type":"LineString","coordinates":[[-83.7128983,32.8185382],[-83.7134407,32.8185443]]},"id":"8a44c0b0a127fff-139653451d323869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926553,32.813647800000005]},"id":"8f44c0b1d74ea72-1797f55a7e8dba4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926782,32.8132516]},"id":"8f44c0b1d741320-139e754c2afa7f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d741320-139e754c2afa7f10","8f44c0b1d74ea72-1797f55a7e8dba4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6926553,32.813647800000005],[-83.6926782,32.8132516]]},"id":"8944c0b1d77ffff-179675535f8bd806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6860312,32.8160617]},"id":"8f44c0b1d68b2c4-13f695868671924b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68604450000001,32.8156407]},"id":"8f44c0b1d68b916-13fff57e366d9ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b916-13fff57e366d9ddf","8f44c0b1d68b2c4-13f695868671924b"]},"geometry":{"type":"LineString","coordinates":[[-83.6860312,32.8160617],[-83.68604450000001,32.8156407]]},"id":"8a44c0b1d68ffff-13f785826ba2338d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960856,32.815003000000004]},"id":"8f44c0b1d2ac642-17f6ecfa8b757bc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695188,32.814956200000005]},"id":"8f44c0b1d285114-17d7ef2b83369180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d285114-17d7ef2b83369180","8f44c0b1d2ac642-17f6ecfa8b757bc9"]},"geometry":{"type":"LineString","coordinates":[[-83.6960856,32.815003000000004],[-83.695188,32.814956200000005]]},"id":"8944c0b1d2bffff-17d66e130c5f8714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6798145,32.813691]},"id":"8f44c0b18a0e75d-17bef4b3f4a6117c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67980510000001,32.813028]},"id":"8f44c0b18a01504-139e94b9d5db1e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a01504-139e94b9d5db1e19","8f44c0b18a0e75d-17bef4b3f4a6117c"]},"geometry":{"type":"LineString","coordinates":[[-83.6798145,32.813691],[-83.67980510000001,32.813028]]},"id":"8944c0b18a3ffff-13dfb4b6e143c43a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887944,32.814348200000005]},"id":"8f44c0b1d60e490-17d7fec780b5d981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688843,32.8136172]},"id":"8f44c0b1d60000a-17fefea92b604ee8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60000a-17fefea92b604ee8","8f44c0b1d60e490-17d7fec780b5d981"]},"geometry":{"type":"LineString","coordinates":[[-83.6887944,32.814348200000005],[-83.688843,32.8136172]]},"id":"8944c0b1d63ffff-17f77eb852941c8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68625010000001,32.8144548]},"id":"8f44c0b1d6aacec-179ec4fdb14c5695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68589150000001,32.8144538]},"id":"8f44c0b1d6819b5-179fa5ddd6e662db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6aacec-179ec4fdb14c5695","8f44c0b1d6819b5-179fa5ddd6e662db"]},"geometry":{"type":"LineString","coordinates":[[-83.68625010000001,32.8144548],[-83.68589150000001,32.8144538]]},"id":"8944c0b1d6bffff-179ff56dcb3812f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69405160000001,32.8173393]},"id":"8f44c0b1992208b-179771f1c739823e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938918,32.8161603]},"id":"8f44c0b1d298730-13b67255a561c8f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992208b-179771f1c739823e","8f44c0b1d298730-13b67255a561c8f3"]},"geometry":{"type":"LineString","coordinates":[[-83.69405160000001,32.8173393],[-83.6938918,32.8161603]]},"id":"8744c0b1dffffff-17b6f223b3af5d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155977,32.8194384]},"id":"8f44c0b0a8c302c-13b73d57790041e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71458270000001,32.819424000000005]},"id":"8f44c0b0a8d16d0-13be3fd1d19deece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d16d0-13be3fd1d19deece","8f44c0b0a8c302c-13b73d57790041e4"]},"geometry":{"type":"LineString","coordinates":[[-83.7155977,32.8194384],[-83.71458270000001,32.819424000000005]]},"id":"8944c0b0a8fffff-13b6be94a6c8e3a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151455,32.8217599]},"id":"8f44c0b0a144369-13dffe721f52775b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71515760000001,32.8211931]},"id":"8f44c0b0a16214b-17ffbe6a8a1722e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16214b-17ffbe6a8a1722e2","8f44c0b0a144369-13dffe721f52775b"]},"geometry":{"type":"LineString","coordinates":[[-83.7151455,32.8217599],[-83.71515760000001,32.8211931]]},"id":"8944c0b0a17ffff-17befe6e51887866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69314370000001,32.8219176]},"id":"8f44c0b1980e541-13d6f4293f3183aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938679,32.821458400000004]},"id":"8f44c0b1982a0ec-17b7f264992b82f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982a0ec-17b7f264992b82f6","8f44c0b1980e541-13d6f4293f3183aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69314370000001,32.8219176],[-83.6938679,32.821458400000004]]},"id":"8944c0b1983ffff-13b77346ee4a172d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633267,32.811633400000005]},"id":"8f44c0b1855a390-17b6fcf4d03dc820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639179,32.8116429]},"id":"8f44c0b18558258-17befb8351b7eebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558258-17befb8351b7eebd","8f44c0b1855a390-17b6fcf4d03dc820"]},"geometry":{"type":"LineString","coordinates":[[-83.6633267,32.811633400000005],[-83.6639179,32.8116429]]},"id":"8a44c0b1855ffff-17bffc3c149af997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69461340000001,32.8150585]},"id":"8f44c0b1d280cce-1397f092a78a6368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6946648,32.814401100000005]},"id":"8f44c0b1d2b1a03-17fef072829a47ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d280cce-1397f092a78a6368","8f44c0b1d2b1a03-17fef072829a47ea"]},"geometry":{"type":"LineString","coordinates":[[-83.69461340000001,32.8150585],[-83.6946648,32.814401100000005]]},"id":"8944c0b1d2bffff-17b670829b71c4f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69443960000001,32.820067]},"id":"8f44c0b19825b2a-17bff0ff4256b6f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69435340000001,32.819373500000005]},"id":"8f44c0b19908606-139e71352ba9c067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825b2a-17bff0ff4256b6f0","8f44c0b19908606-139e71352ba9c067"]},"geometry":{"type":"LineString","coordinates":[[-83.69443960000001,32.820067],[-83.69435340000001,32.819373500000005]]},"id":"8844c0b199fffff-13f7711a3ff0e9da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898456,32.8136722]},"id":"8f44c0b1d62a95d-17b77c368f8d7d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68979610000001,32.814411400000004]},"id":"8f44c0b1d60dc12-17ff7c557212851b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62a95d-17b77c368f8d7d4d","8f44c0b1d60dc12-17ff7c557212851b"]},"geometry":{"type":"LineString","coordinates":[[-83.6898456,32.8136722],[-83.68979610000001,32.814411400000004]]},"id":"8944c0b1d63ffff-179e7c4609bb2852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769276,32.8225293]},"id":"8f44c0b1825d914-13d6dbc0430b2a3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769132,32.821178700000004]},"id":"8f44c0b1827104d-17f6bbc941c67e9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825d914-13d6dbc0430b2a3c","8f44c0b1827104d-17f6bbc941c67e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6769276,32.8225293],[-83.6769132,32.821178700000004]]},"id":"8944c0b1827ffff-139edbc4cbedb63d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67503690000001,32.815654200000004]},"id":"8f44c0b18331cae-13f7e05df7426285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6741854,32.815634]},"id":"8f44c0b18332458-13ffe2722d03be46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18332458-13ffe2722d03be46","8f44c0b18331cae-13f7e05df7426285"]},"geometry":{"type":"LineString","coordinates":[[-83.67503690000001,32.815654200000004],[-83.6741854,32.815634]]},"id":"8a44c0b18337fff-13f7b1681a87c3e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645519,32.8108723]},"id":"8f44c0b18543b88-17dfb9f714d5a65d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639305,32.8108659]},"id":"8f44c0b1855c890-17d7bb7b7882e759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18543b88-17dfb9f714d5a65d","8f44c0b1855c890-17d7bb7b7882e759"]},"geometry":{"type":"LineString","coordinates":[[-83.6645519,32.8108723],[-83.6639305,32.8108659]]},"id":"8944c0b1857ffff-17dfbab94ba347cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134266,32.819235500000005]},"id":"8f44c0b0a121398-13b672a469346bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128795,32.8192351]},"id":"8f44c0b0a1230aa-13b7f3fa5636e8dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a121398-13b672a469346bd6","8f44c0b0a1230aa-13b7f3fa5636e8dc"]},"geometry":{"type":"LineString","coordinates":[[-83.7134266,32.819235500000005],[-83.7128795,32.8192351]]},"id":"8a44c0b0a127fff-13b6534f616e1598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913473,32.8146438]},"id":"8f44c0b1d675b94-1796788bf7e0629b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913562,32.814504400000004]},"id":"8f44c0b1d67591d-17bf7886651b20b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d67591d-17bf7886651b20b5","8f44c0b1d675b94-1796788bf7e0629b"]},"geometry":{"type":"LineString","coordinates":[[-83.6913473,32.8146438],[-83.6913562,32.814504400000004]]},"id":"8b44c0b1d675fff-17d6f8893080aee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913408,32.8131512]},"id":"8f44c0b1d751300-13dff89006e40f46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913748,32.812690700000005]},"id":"8f44c0b1d7550e8-13bff87ac8656a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7550e8-13bff87ac8656a45","8f44c0b1d751300-13dff89006e40f46"]},"geometry":{"type":"LineString","coordinates":[[-83.6913408,32.8131512],[-83.6913748,32.812690700000005]]},"id":"8a44c0b1d757fff-13dff88566e58565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632713,32.8102042]},"id":"8f44c0b185508ac-17bfbd177e8a036f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645573,32.8102278]},"id":"8f44c0b185446e9-17bef9f3b9483a71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185446e9-17bef9f3b9483a71","8f44c0b185508ac-17bfbd177e8a036f"]},"geometry":{"type":"LineString","coordinates":[[-83.6632713,32.8102042],[-83.6645573,32.8102278]]},"id":"8944c0b1857ffff-17b7bb8594a86901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6870336,32.8138153]},"id":"8f44c0b1d6ac902-17fe931402796b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68671280000001,32.8138153]},"id":"8f44c0b1d6a1371-17fe93dc8bb52e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a1371-17fe93dc8bb52e6b","8f44c0b1d6ac902-17fe931402796b54"]},"geometry":{"type":"LineString","coordinates":[[-83.6870336,32.8138153],[-83.68671280000001,32.8138153]]},"id":"8944c0b1d6bffff-17fe93784144be5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7153844,32.817038600000004]},"id":"8f44c0b0a81a173-17df3ddccd7cb74b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71440120000001,32.817027800000005]},"id":"8f44c0b0a8a8652-17d66043414cab5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8a8652-17d66043414cab5b","8f44c0b0a81a173-17df3ddccd7cb74b"]},"geometry":{"type":"LineString","coordinates":[[-83.7153844,32.817038600000004],[-83.71440120000001,32.817027800000005]]},"id":"8844c0b0a9fffff-17d7ff100044058a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7061515,32.8155562]},"id":"8f44c0b0ac11691-13bef4675cdc9f90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70615400000001,32.8151707]},"id":"8f44c0b0ac10ace-13dff465c5fd6d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac10ace-13dff465c5fd6d2c","8f44c0b0ac11691-13bef4675cdc9f90"]},"geometry":{"type":"LineString","coordinates":[[-83.7061515,32.8155562],[-83.70615400000001,32.8151707]]},"id":"8a44c0b0ac17fff-13d6746690e2d2f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666103,32.8142056]},"id":"8f44c0b1809b704-17feb62da2fc13f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66611180000001,32.8137087]},"id":"8f44c0b1809841d-17b7f6282d6d57a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809b704-17feb62da2fc13f7","8f44c0b1809841d-17b7f6282d6d57a2"]},"geometry":{"type":"LineString","coordinates":[[-83.666103,32.8142056],[-83.66611180000001,32.8137087]]},"id":"8a44c0b1809ffff-17d7f62aea9e5cbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109731,32.820142700000005]},"id":"8f44c0b0a113336-17ff78a1d93c34b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109892,32.8194761]},"id":"8f44c0b0a110d40-13ded897c59746a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a110d40-13ded897c59746a3","8f44c0b0a113336-17ff78a1d93c34b6"]},"geometry":{"type":"LineString","coordinates":[[-83.7109731,32.820142700000005],[-83.7109892,32.8194761]]},"id":"8a44c0b0a117fff-139ee89cc9b299e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936184,32.816849500000004]},"id":"8f44c0b19935c8d-17f6f3008b8ae5cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935318,32.8161289]},"id":"8f44c0b1d29a122-13b6f336af920784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29a122-13b6f336af920784","8f44c0b19935c8d-17f6f3008b8ae5cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6936184,32.816849500000004],[-83.6935318,32.8161289]]},"id":"8744c0b1dffffff-1397f31b91862763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68625010000001,32.8140936]},"id":"8f44c0b1d6ae431-17be84fdbea45753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858945,32.8140925]},"id":"8f44c0b1d685c08-17b7d5dbf70365f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ae431-17be84fdbea45753","8f44c0b1d685c08-17b7d5dbf70365f7"]},"geometry":{"type":"LineString","coordinates":[[-83.68625010000001,32.8140936],[-83.6858945,32.8140925]]},"id":"8944c0b1d6bffff-17beb56cdc64969a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69657600000001,32.816791800000004]},"id":"8f44c0b1d2f3060-17beebc802e95d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957627,32.816869600000004]},"id":"8f44c0b1d2d4482-17ffedc450be0be7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f3060-17beebc802e95d78","8f44c0b1d2d4482-17ffedc450be0be7"]},"geometry":{"type":"LineString","coordinates":[[-83.69657600000001,32.816791800000004],[-83.6957627,32.816869600000004]]},"id":"8944c0b1d2fffff-17d77cc639a347d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71364700000001,32.8221323]},"id":"8f44c0b0a150242-13def21aa1065e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71365300000001,32.821579]},"id":"8f44c0b0a1543b2-17fee216ea68a547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1543b2-17fee216ea68a547","8f44c0b0a150242-13def21aa1065e66"]},"geometry":{"type":"LineString","coordinates":[[-83.71364700000001,32.8221323],[-83.71365300000001,32.821579]]},"id":"8a44c0b0a157fff-139fd218cbd4ba72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6944369,32.8162018]},"id":"8f44c0b1d29d64d-13de7100f87692a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69459110000001,32.8173558]},"id":"8f44c0b19920295-179f70a093db8d6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29d64d-13de7100f87692a8","8f44c0b19920295-179f70a093db8d6d"]},"geometry":{"type":"LineString","coordinates":[[-83.6944369,32.8162018],[-83.69459110000001,32.8173558]]},"id":"8744c0b1dffffff-17b6f0d0ccb34c0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129275,32.8168346]},"id":"8f44c0b0a882b50-17dfe3dc5d0c6f37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71373870000001,32.8168494]},"id":"8f44c0b0a8852ea-17f6e1e15bb6e58e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a882b50-17dfe3dc5d0c6f37","8f44c0b0a8852ea-17f6e1e15bb6e58e"]},"geometry":{"type":"LineString","coordinates":[[-83.7129275,32.8168346],[-83.71373870000001,32.8168494]]},"id":"8a44c0b0a887fff-17de42ded8a7d395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69328300000001,32.8103022]},"id":"8f44c0b1d0c161e-17f6f3d2298a8be2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6932438,32.8099288]},"id":"8f44c0b1d0c1db2-13fff3eaacd3d4c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0c1db2-13fff3eaacd3d4c4","8f44c0b1d0c161e-17f6f3d2298a8be2"]},"geometry":{"type":"LineString","coordinates":[[-83.69328300000001,32.8103022],[-83.6932438,32.8099288]]},"id":"8a44c0b1d0c7fff-13f673de6aee81d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712922,32.817173600000004]},"id":"8f44c0b0a883462-17bfc3dfc931132e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135222,32.8171824]},"id":"8f44c0b0a881768-17b74268a969a4ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a883462-17bfc3dfc931132e","8f44c0b0a881768-17b74268a969a4ed"]},"geometry":{"type":"LineString","coordinates":[[-83.712922,32.817173600000004],[-83.7135222,32.8171824]]},"id":"8a44c0b0a887fff-17b64324391bb4b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6982983,32.8218393]},"id":"8f44c0b0a4b0299-1397f79395e9b7da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6980272,32.8217312]},"id":"8f44c0b0a4b2b0b-13de683d0592b6d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b2b0b-13de683d0592b6d1","8f44c0b0a4b0299-1397f79395e9b7da"]},"geometry":{"type":"LineString","coordinates":[[-83.6982983,32.8218393],[-83.6980272,32.8217312]]},"id":"8a44c0b0a4b7fff-13fff7e85da6a8e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109209,32.8154234]},"id":"8f44c0b0ad4a921-13f7e8c2718d70ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090756,32.8154182]},"id":"8f44c0b0ac29914-13f66d43cbd28e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a921-13f7e8c2718d70ec","8f44c0b0ac29914-13f66d43cbd28e97"]},"geometry":{"type":"LineString","coordinates":[[-83.7109209,32.8154234],[-83.7090756,32.8154182]]},"id":"8844c0b0adfffff-13f64b0310bf5a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6951648,32.8187133]},"id":"8f44c0b1992bab6-13ffff3a0fd1d7cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6953089,32.819902400000004]},"id":"8f44c0b19954aa6-13d76edffab71772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19954aa6-13d76edffab71772","8f44c0b1992bab6-13ffff3a0fd1d7cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6951648,32.8187133],[-83.6953089,32.819902400000004]]},"id":"8844c0b199fffff-13f77f0d03dd780e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71092200000001,32.8151053]},"id":"8f44c0b0ad4e899-13b6d8c1c6b2ba6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70907270000001,32.815099100000005]},"id":"8f44c0b0ac2dc41-139efd4598a3e89f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac2dc41-139efd4598a3e89f","8f44c0b0ad4e899-13b6d8c1c6b2ba6f"]},"geometry":{"type":"LineString","coordinates":[[-83.71092200000001,32.8151053],[-83.70907270000001,32.815099100000005]]},"id":"8944c0b0ad7ffff-139eeb03af6498fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134286,32.8190666]},"id":"8f44c0b0a12110e-13dee2a324dd76bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128876,32.8190635]},"id":"8f44c0b0a123d5e-13def3f5431bb09f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12110e-13dee2a324dd76bd","8f44c0b0a123d5e-13def3f5431bb09f"]},"geometry":{"type":"LineString","coordinates":[[-83.7134286,32.8190666],[-83.7128876,32.8190635]]},"id":"8a44c0b0a127fff-13dff34c3ecb8e13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69720670000001,32.818642000000004]},"id":"8f44c0b1d2ca440-13d76a3dd67dcf77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962397,32.8187365]},"id":"8f44c0b1d2db52c-13fe7c9a314eec25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ca440-13d76a3dd67dcf77","8f44c0b1d2db52c-13fe7c9a314eec25"]},"geometry":{"type":"LineString","coordinates":[[-83.69720670000001,32.818642000000004],[-83.6962397,32.8187365]]},"id":"8944c0b1d2fffff-13f6fb6c097a7c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936562,32.8224984]},"id":"8f44c0b198082d3-13bff2e8ea044c94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937741,32.822108]},"id":"8f44c0b19808973-13bff29f37516332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198082d3-13bff2e8ea044c94","8f44c0b19808973-13bff29f37516332"]},"geometry":{"type":"LineString","coordinates":[[-83.6936562,32.8224984],[-83.6937741,32.822108]]},"id":"8b44c0b19808fff-13b7f2c41c8dae21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692982,32.8161104]},"id":"8f44c0b1d669d0c-1397748e4d9af056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69306870000001,32.816756600000005]},"id":"8f44c0b19936a16-17bef45815f29a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d669d0c-1397748e4d9af056","8f44c0b19936a16-17bef45815f29a95"]},"geometry":{"type":"LineString","coordinates":[[-83.692982,32.8161104],[-83.69306870000001,32.816756600000005]]},"id":"8744c0b1dffffff-13def473389f4a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68565050000001,32.8160553]},"id":"8f44c0b19d24add-13f6967477c8790b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6856558,32.8156746]},"id":"8f44c0b1d68a210-1396a6712745329e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68a210-1396a6712745329e","8f44c0b19d24add-13f6967477c8790b"]},"geometry":{"type":"LineString","coordinates":[[-83.68565050000001,32.8160553],[-83.6856558,32.8156746]]},"id":"8844c0b1d7fffff-13ffa672cc4442c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6955119,32.8186705]},"id":"8f44c0b199290dc-13d77e611e16ad71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6956167,32.819489000000004]},"id":"8f44c0b199706a6-13d6ee1f985c158f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199290dc-13d77e611e16ad71","8f44c0b199706a6-13d6ee1f985c158f"]},"geometry":{"type":"LineString","coordinates":[[-83.6955119,32.8186705],[-83.6956167,32.819489000000004]]},"id":"8844c0b199fffff-13d6ee405d10149d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7157672,32.8217725]},"id":"8f44c0b0a16e1a1-13f7fced8fdf757e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71577590000001,32.8212034]},"id":"8f44c0b0a161d83-17963ce811a7cfe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16e1a1-13f7fced8fdf757e","8f44c0b0a161d83-17963ce811a7cfe8"]},"geometry":{"type":"LineString","coordinates":[[-83.7157672,32.8217725],[-83.71577590000001,32.8212034]]},"id":"8944c0b0a17ffff-17b63cead3b01893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69166890000001,32.809441500000005]},"id":"8f44c0b1d0d469c-13def7c2fb56406c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915958,32.810407000000005]},"id":"8f44c0b1d72d826-17be77f0a936814d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0d469c-13def7c2fb56406c","8f44c0b1d72d826-17be77f0a936814d"]},"geometry":{"type":"LineString","coordinates":[[-83.69166890000001,32.809441500000005],[-83.6915958,32.810407000000005]]},"id":"8944c0b1d0fffff-13fef7d9cdb04878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7029437,32.8156003]},"id":"8f44c0b0ac95c99-13d67c3c3928b748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70294990000001,32.8150828]},"id":"8f44c0b0acb2235-1396dc385c228f82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acb2235-1396dc385c228f82","8f44c0b0ac95c99-13d67c3c3928b748"]},"geometry":{"type":"LineString","coordinates":[[-83.7029437,32.8156003],[-83.70294990000001,32.8150828]]},"id":"8944c0b0acbffff-13b6dc3a4e869964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6944177,32.817373]},"id":"8f44c0b19923d24-17be710cf6546b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69426130000001,32.8161895]},"id":"8f44c0b1d299d32-13d6716eb9a49815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19923d24-17be710cf6546b07","8f44c0b1d299d32-13d6716eb9a49815"]},"geometry":{"type":"LineString","coordinates":[[-83.6944177,32.817373],[-83.69426130000001,32.8161895]]},"id":"8744c0b1dffffff-17be713dd1ddae05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71264620000001,32.8201952]},"id":"8f44c0b0a101771-179e448c24ae9286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71266410000001,32.819485]},"id":"8f44c0b0a105ca6-13d66480f9c7013a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a105ca6-13d66480f9c7013a","8f44c0b0a101771-179e448c24ae9286"]},"geometry":{"type":"LineString","coordinates":[[-83.71264620000001,32.8201952],[-83.71266410000001,32.819485]]},"id":"8a44c0b0a107fff-13b6548681c6cd15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69335530000001,32.8221574]},"id":"8f44c0b1980e2ec-13de73a4f0d70a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6941075,32.8216885]},"id":"8f44c0b1982b563-13b771ced1765294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b563-13b771ced1765294","8f44c0b1980e2ec-13de73a4f0d70a00"]},"geometry":{"type":"LineString","coordinates":[[-83.69335530000001,32.8221574],[-83.6941075,32.8216885]]},"id":"8944c0b1983ffff-13d7f2b9e4de77b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71290210000001,32.8176895]},"id":"8f44c0b0a89d766-17fff3ec31724fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71345260000001,32.8176906]},"id":"8f44c0b0a88e2d4-17f6e294292a4c1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88e2d4-17f6e294292a4c1a","8f44c0b0a89d766-17fff3ec31724fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.71290210000001,32.8176895],[-83.71345260000001,32.8176906]]},"id":"8944c0b0a8bffff-17f6534020b7b6c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71037960000001,32.821483400000005]},"id":"8f44c0b0a036788-17b76a14c936dba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099759,32.8214776]},"id":"8f44c0b0a18d0a2-17bfcb11173fee0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a036788-17b76a14c936dba5","8f44c0b0a18d0a2-17bfcb11173fee0a"]},"geometry":{"type":"LineString","coordinates":[[-83.71037960000001,32.821483400000005],[-83.7099759,32.8214776]]},"id":"8944c0b0a1bffff-17b75a92e11b441a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109235,32.8214356]},"id":"8f44c0b0a034609-179748c0d5321eae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109269,32.8211675]},"id":"8f44c0b0a034cec-17fff8beb3b3e978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a034609-179748c0d5321eae","8f44c0b0a034cec-17fff8beb3b3e978"]},"geometry":{"type":"LineString","coordinates":[[-83.7109235,32.8214356],[-83.7109269,32.8211675]]},"id":"8b44c0b0a034fff-17d778bfcd6b34bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69501360000001,32.8150776]},"id":"8f44c0b1d2854e8-139fef98874e2b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6950611,32.8144829]},"id":"8f44c0b1d2a22ed-179fff7addf7372e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2a22ed-179fff7addf7372e","8f44c0b1d2854e8-139fef98874e2b13"]},"geometry":{"type":"LineString","coordinates":[[-83.69501360000001,32.8150776],[-83.6950611,32.8144829]]},"id":"8944c0b1d2bffff-17d7ff89abbffdf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6993044,32.8137083]},"id":"8f44c0b1d221bae-17b7f51ec5f7f36d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698839,32.8136443]},"id":"8f44c0b1d2202d1-179ff641a9071975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2202d1-179ff641a9071975","8f44c0b1d221bae-17b7f51ec5f7f36d"]},"geometry":{"type":"LineString","coordinates":[[-83.6993044,32.8137083],[-83.698839,32.8136443]]},"id":"8a44c0b1d227fff-17b7f5b0308040f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67733790000001,32.8225305]},"id":"8f44c0b1824e899-13d79abfd52f1ca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6773266,32.8213864]},"id":"8f44c0b18244bb5-17f69ac6ebcf951b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18244bb5-17f69ac6ebcf951b","8f44c0b1824e899-13d79abfd52f1ca0"]},"geometry":{"type":"LineString","coordinates":[[-83.67733790000001,32.8225305],[-83.6773266,32.8213864]]},"id":"8944c0b1827ffff-13de9ac35c28f8a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6925374,32.8161082]},"id":"8f44c0b1d668789-1397f5a4288c2888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927127,32.817414400000004]},"id":"8f44c0b199149b1-17d675369f2748e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d668789-1397f5a4288c2888","8f44c0b199149b1-17d675369f2748e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6925374,32.8161082],[-83.6927127,32.817414400000004]]},"id":"8744c0b1dffffff-17bff56d638237d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144356,32.8194406]},"id":"8f44c0b0a8d3ac9-13b6602dc2b302f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71402830000001,32.818926600000005]},"id":"8f44c0b0a8d285c-13f7612c5a45b5d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d285c-13f7612c5a45b5d3","8f44c0b0a8d3ac9-13b6602dc2b302f0"]},"geometry":{"type":"LineString","coordinates":[[-83.7144356,32.8194406],[-83.7144356,32.8189318],[-83.71402830000001,32.818926600000005]]},"id":"8a44c0b0a8d7fff-13dff06657f118f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963575,32.8210907]},"id":"8f44c0b199432ed-17bffc5096166d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199432ed-17bffc5096166d63","8f44c0b19943c31-17df7cc616822872"]},"geometry":{"type":"LineString","coordinates":[[-83.6963575,32.8210907],[-83.6964708,32.8208415],[-83.69616950000001,32.8207061]]},"id":"8b44c0b19943fff-17be7c4d53d24b94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71131460000001,32.820501]},"id":"8f44c0b0a11e313-17df67cc6f9b63da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11c71a-179fe71373933dd1","8f44c0b0a11e313-17df67cc6f9b63da"]},"geometry":{"type":"LineString","coordinates":[[-83.71131460000001,32.820501],[-83.71137010000001,32.8203972],[-83.7116105,32.820396200000005]]},"id":"8a44c0b0a11ffff-1796f77cf35546c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6945275,32.821308300000005]},"id":"8f44c0b19828a04-17d7f0c855730a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982caa5-17be709b35775bf7","8f44c0b19828a04-17d7f0c855730a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6945275,32.821308300000005],[-83.6946178,32.82096],[-83.69459970000001,32.8208806]]},"id":"8a44c0b1982ffff-17d670a7f3f9a041"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69823740000001,32.817061100000004]},"id":"8f44c0b1d2ee8a0-17f777b9ab9b6331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69803610000001,32.8168805]},"id":"8f44c0b1d2e3a21-17f678377aa6fe90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ee8a0-17f777b9ab9b6331","8f44c0b1d2e3a21-17f678377aa6fe90"]},"geometry":{"type":"LineString","coordinates":[[-83.69823740000001,32.817061100000004],[-83.69827570000001,32.816927],[-83.69803610000001,32.8168805]]},"id":"8944c0b1d2fffff-179f67d5b7751f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69152310000001,32.8073507]},"id":"8f44c0b1d0ae072-17b6781e11985dd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905679,32.807337700000005]},"id":"8f44c0b1d0809b3-17be7a7313c896d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ae072-17b6781e11985dd0","8f44c0b1d0809b3-17be7a7313c896d2"]},"geometry":{"type":"LineString","coordinates":[[-83.69152310000001,32.8073507],[-83.6906854,32.8072931],[-83.6905679,32.807337700000005]]},"id":"8944c0b1d0bffff-179ff94aba138ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69763490000001,32.821818400000005]},"id":"8f44c0b0a4b27b2-1396e9323435a75a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6981068,32.8212349]},"id":"8f44c0b0a4b684c-1797f80b4bf1181e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b27b2-1396e9323435a75a","8f44c0b0a4b684c-1797f80b4bf1181e"]},"geometry":{"type":"LineString","coordinates":[[-83.69763490000001,32.821818400000005],[-83.69786710000001,32.821466],[-83.6981068,32.8212349]]},"id":"8a44c0b0a4b7fff-17d7f8a89a93fafb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70227390000001,32.8155712]},"id":"8f44c0b0ac963b6-13d65dded317c45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7025023,32.8150782]},"id":"8f44c0b1d349ab1-139ffd501a3bab6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac963b6-13d65dded317c45b","8f44c0b1d349ab1-139ffd501a3bab6d"]},"geometry":{"type":"LineString","coordinates":[[-83.70227390000001,32.8155712],[-83.7024986,32.8155744],[-83.7025023,32.8150782]]},"id":"8944c0b0acbffff-13defd6773f87696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69168110000001,32.813924]},"id":"8f44c0b1d759db2-17bef7bb5a6d95be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69121080000001,32.813913]},"id":"8f44c0b1d75ab0b-17b7f8e145bac16a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75ab0b-17b7f8e145bac16a","8f44c0b1d759db2-17bef7bb5a6d95be"]},"geometry":{"type":"LineString","coordinates":[[-83.69168110000001,32.813924],[-83.69125700000001,32.8138992],[-83.69121080000001,32.813913]]},"id":"8a44c0b1d75ffff-17b6784ed8bd69cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71836350000001,32.814344000000006]},"id":"8f44c0b0a909156-17d73696db71f747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7185647,32.8145465]},"id":"8f44c0b0a954ca1-17d7b6191857d7e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a954ca1-17d7b6191857d7e6","8f44c0b0a909156-17d73696db71f747"]},"geometry":{"type":"LineString","coordinates":[[-83.71836350000001,32.814344000000006],[-83.7184708,32.814499500000004],[-83.7185647,32.8145465]]},"id":"8944c0b0a97ffff-179e365edfb20c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637508,32.8112858]},"id":"8f44c0b18558c70-17dfbbebc68ba2ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66333660000001,32.810652000000005]},"id":"8f44c0b185514ac-17d7bceea992cfc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185514ac-17d7bceea992cfc7","8f44c0b18558c70-17dfbbebc68ba2ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6637508,32.8112858],[-83.66375740000001,32.810654400000004],[-83.66333660000001,32.810652000000005]]},"id":"8944c0b1857ffff-17bfbc1d7d2ce171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155956,32.8199649]},"id":"8f44c0b0a8ddad1-13fe3d58c0d7b15c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140138,32.8199399]},"id":"8f44c0b0a12d6e6-13fe71356b890cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8ddad1-13fe3d58c0d7b15c","8f44c0b0a12d6e6-13fe71356b890cac"]},"geometry":{"type":"LineString","coordinates":[[-83.7155956,32.8199649],[-83.7145752,32.8199488],[-83.7140138,32.8199399]]},"id":"8744c0b0affffff-13f67f4712684df3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009019,32.8148915]},"id":"8f44c0b1d35950a-179f713853c26f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700063,32.8149856]},"id":"8f44c0b1d274d50-17d66344a457eb6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274d50-17d66344a457eb6a","8f44c0b1d35950a-179f713853c26f97"]},"geometry":{"type":"LineString","coordinates":[[-83.7009019,32.8148915],[-83.70011650000001,32.8148283],[-83.700063,32.8149856]]},"id":"8844c0b1d3fffff-179ef25b6f96731b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996539,32.8221238]},"id":"8f44c0b0a4a384b-13d764445f349315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698705,32.822246]},"id":"8f44c0b0a486940-139fe69560d9124f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4a384b-13d764445f349315","8f44c0b0a486940-139fe69560d9124f"]},"geometry":{"type":"LineString","coordinates":[[-83.6996539,32.8221238],[-83.69892080000001,32.8218619],[-83.698705,32.822246]]},"id":"8944c0b0a4bffff-13ff759490fd6016"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69217610000001,32.8161478]},"id":"8f44c0b1d66a0c4-13be7685f02600b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6923981,32.8175262]},"id":"8f44c0b1d6492cd-179ff5fb3069265c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d66a0c4-13be7685f02600b3","8f44c0b1d6492cd-179ff5fb3069265c"]},"geometry":{"type":"LineString","coordinates":[[-83.69217610000001,32.8161478],[-83.6923613,32.8175035],[-83.6923981,32.8175262]]},"id":"8744c0b1dffffff-17f77649f35f3406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6947849,32.820025300000005]},"id":"8f44c0b19956a96-17b7f0277f3e3592"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69463250000001,32.8189338]},"id":"8f44c0b1990c38c-13fff086b8f1ab46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956a96-17b7f0277f3e3592","8f44c0b1990c38c-13fff086b8f1ab46"]},"geometry":{"type":"LineString","coordinates":[[-83.6947849,32.820025300000005],[-83.69465810000001,32.8189596],[-83.69463250000001,32.8189338]]},"id":"8844c0b199fffff-13dff050a35a4682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694142,32.814047200000005]},"id":"8f44c0b1d2b0028-179ff1b94e6653e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6946715,32.813455600000005]},"id":"8f44c0b1d39b184-179ff06e597a4d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d39b184-179ff06e597a4d35","8f44c0b1d2b0028-179ff1b94e6653e4"]},"geometry":{"type":"LineString","coordinates":[[-83.694142,32.814047200000005],[-83.6942049,32.8139601],[-83.6946715,32.813455600000005]]},"id":"8844c0b1d3fffff-17d6711683a150ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155932,32.8201369]},"id":"8f44c0b0a8ca5ac-17ffbd5a407e5362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140116,32.8201203]},"id":"8f44c0b0a129131-17df7136c8d6f98e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8ca5ac-17ffbd5a407e5362","8f44c0b0a129131-17df7136c8d6f98e"]},"geometry":{"type":"LineString","coordinates":[[-83.7155932,32.8201369],[-83.71457260000001,32.8201255],[-83.7140116,32.8201203]]},"id":"8744c0b0affffff-17f63f4881db599a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715407,32.8161675]},"id":"8f44c0b0a811421-13bebdcea8c14600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71589390000001,32.815606200000005]},"id":"8f44c0b0a81596c-13dffc9e5cca2a65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a81596c-13dffc9e5cca2a65","8f44c0b0a811421-13bebdcea8c14600"]},"geometry":{"type":"LineString","coordinates":[[-83.715407,32.8161675],[-83.7152528,32.8158466],[-83.71589390000001,32.815606200000005]]},"id":"8944c0b0a83ffff-13f73d9ab7037e7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155979,32.819795]},"id":"8f44c0b0a8dd843-1397fd5757ca0cdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140158,32.8197762]},"id":"8f44c0b0a12d092-139e61342095b048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8dd843-1397fd5757ca0cdd","8f44c0b0a12d092-139e61342095b048"]},"geometry":{"type":"LineString","coordinates":[[-83.7155979,32.819795],[-83.7145777,32.8197829],[-83.7140158,32.8197762]]},"id":"8744c0b0affffff-139e3f45ce603d9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69846960000001,32.8177216]},"id":"8f44c0b1d2e8651-1796672882687e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6979878,32.8177917]},"id":"8f44c0b1d2ea676-17bff855a552d45a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e8651-1796672882687e17","8f44c0b1d2ea676-17bff855a552d45a"]},"geometry":{"type":"LineString","coordinates":[[-83.69846960000001,32.8177216],[-83.6982917,32.8178568],[-83.6979878,32.8177917]]},"id":"8a44c0b1d2effff-17bf67b7bb95863c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633262,32.811277600000004]},"id":"8f44c0b1855e6e2-17debcf52981308f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185514ac-17d7bceea992cfc7","8f44c0b1855e6e2-17debcf52981308f"]},"geometry":{"type":"LineString","coordinates":[[-83.66333660000001,32.810652000000005],[-83.6633262,32.811277600000004]]},"id":"8944c0b1857ffff-1797bcf1e9d78922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67478320000001,32.816473200000004]},"id":"8f44c0b18302d9c-13f7e0fc832d304c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67452800000001,32.816799700000004]},"id":"8f44c0b18311065-17d7f19c0f79bd3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18311065-17d7f19c0f79bd3c","8f44c0b18302d9c-13f7e0fc832d304c"]},"geometry":{"type":"LineString","coordinates":[[-83.67478320000001,32.816473200000004],[-83.67477480000001,32.816802800000005],[-83.67452800000001,32.816799700000004]]},"id":"8944c0b1833ffff-179ef1214d80eb50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690292,32.8169017]},"id":"8f44c0b1d65aba2-1797fb1f8b50e510"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903137,32.8162445]},"id":"8f44c0b1d65160d-13fefb11f89ed004"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65aba2-1797fb1f8b50e510","8f44c0b1d65160d-13fefb11f89ed004"]},"geometry":{"type":"LineString","coordinates":[[-83.690292,32.8169017],[-83.6906649,32.8165652],[-83.6906421,32.8165023],[-83.6903137,32.8162445]]},"id":"8944c0b1d67ffff-13b6faa3b2aae83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942087,32.8212422]},"id":"8f44c0b19828574-179e718f90964e5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19828574-179e718f90964e5b","8f44c0b1982c556-179e71547cd369b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6943033,32.8208288],[-83.694281,32.8208841],[-83.6942119,32.8211984],[-83.6942087,32.8212422]]},"id":"8a44c0b1982ffff-179e7176544afa3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69833460000001,32.8184769]},"id":"8f44c0b1d2cd3b5-13de777ced5126e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69756600000001,32.818437]},"id":"8f44c0b1d2c8595-13d7695d4e22f9c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c8595-13d7695d4e22f9c5","8f44c0b1d2cd3b5-13de777ced5126e5"]},"geometry":{"type":"LineString","coordinates":[[-83.69833460000001,32.8184769],[-83.6979609,32.8184571],[-83.69792000000001,32.8185311],[-83.69756600000001,32.818437]]},"id":"8a44c0b1d2cffff-13de786f4088f522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938483,32.8099414]},"id":"8f44c0b1d0eac43-13977270dff0df90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938811,32.809771500000004]},"id":"8f44c0b1d0ee61a-139f725c57dadc76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ee61a-139f725c57dadc76","8f44c0b1d0eac43-13977270dff0df90"]},"geometry":{"type":"LineString","coordinates":[[-83.6938483,32.8099414],[-83.69478050000001,32.8099466],[-83.69478310000001,32.809783200000005],[-83.6938811,32.809771500000004]]},"id":"8a44c0b1d0effff-13d7f130a55d5784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905194,32.812186600000004]},"id":"8f44c0b1d7096c3-1396fa916c43171d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901414,32.8121681]},"id":"8f44c0b1d70b0d9-13f77b7da6611868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7096c3-1396fa916c43171d","8f44c0b1d70b0d9-13f77b7da6611868"]},"geometry":{"type":"LineString","coordinates":[[-83.6905194,32.812186600000004],[-83.6904846,32.8122964],[-83.6901686,32.8122807],[-83.6901414,32.8121681]]},"id":"8844c0b1d7fffff-13b7fb098a3ae410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090783,32.815716]},"id":"8f44c0b0ac29306-139ecd42187b083e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090747,32.8153145]},"id":"8f44c0b0ac2d745-13b7dd445ccb2da9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac2d745-13b7dd445ccb2da9","8f44c0b0ac29306-139ecd42187b083e"]},"geometry":{"type":"LineString","coordinates":[[-83.7090783,32.815716],[-83.7087889,32.815716],[-83.7087872,32.8153152],[-83.7090747,32.8153145]]},"id":"8a44c0b0ac2ffff-13b77dc24213b228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090075,32.817302000000005]},"id":"8f44c0b0ac55051-17ffcd6e580d919d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7081151,32.8168736]},"id":"8f44c0b0ac56d43-17f64f9c1270434c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac55051-17ffcd6e580d919d","8f44c0b0ac56d43-17f64f9c1270434c"]},"geometry":{"type":"LineString","coordinates":[[-83.7090075,32.817302000000005],[-83.70870090000001,32.8173872],[-83.70854750000001,32.817133000000005],[-83.7081151,32.8168736]]},"id":"8a44c0b0ac57fff-17be4e8789db2bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7104965,32.8204937]},"id":"8f44c0b0a1ad4b3-17ded9cbb9b7774c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71056560000001,32.819932]},"id":"8f44c0b0a1122ab-13ffc9a08aac1068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1ad4b3-17ded9cbb9b7774c","8f44c0b0a1122ab-13ffc9a08aac1068"]},"geometry":{"type":"LineString","coordinates":[[-83.7104965,32.8204937],[-83.7102826,32.820483200000005],[-83.71029130000001,32.819988],[-83.71056560000001,32.819932]]},"id":"8944c0b0a1bffff-179efa27cc832389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700896,32.81561]},"id":"8f44c0b1d2629a1-13de613c035089ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70069020000001,32.8150315]},"id":"8f44c0b1d35b16d-17f6f1bca5e1cf59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35b16d-17f6f1bca5e1cf59","8f44c0b1d2629a1-13de613c035089ba"]},"geometry":{"type":"LineString","coordinates":[[-83.700896,32.81561],[-83.7007404,32.8155951],[-83.7006812,32.8155713],[-83.70069020000001,32.8150315]]},"id":"8844c0b1d3fffff-13d6e1ad15613b84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d70a46c-13977c93c42e7fd1","8f44c0b1d709418-13fefac54067f4ff"]},"geometry":{"type":"LineString","coordinates":[[-83.69043640000001,32.8119788],[-83.69044070000001,32.8118909],[-83.6903939,32.811813900000004],[-83.6896964,32.811784]]},"id":"8a44c0b1d70ffff-139e7b893e678587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69813,32.816544]},"id":"8f44c0b1d2e0ac8-13b667fcc2b42225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69954770000001,32.8167321]},"id":"8f44c0b1d251c05-179ff486bf45d741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d251c05-179ff486bf45d741","8f44c0b1d2e0ac8-13b667fcc2b42225"]},"geometry":{"type":"LineString","coordinates":[[-83.69813,32.816544],[-83.6985599,32.816596600000004],[-83.69892440000001,32.8164317],[-83.6995503,32.81645],[-83.69954770000001,32.8167321]]},"id":"8844c0b1d3fffff-139765faf528fb64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140028,32.8203254]},"id":"8f44c0b0a129769-17df613c4de78a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144617,32.8204264]},"id":"8f44c0b0a1748e0-179ec01d79cbef86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a129769-17df613c4de78a37","8f44c0b0a1748e0-179ec01d79cbef86"]},"geometry":{"type":"LineString","coordinates":[[-83.7140028,32.8203254],[-83.7138931,32.8206663],[-83.71409410000001,32.820887],[-83.7143542,32.8208104],[-83.7144617,32.8204264]]},"id":"8844c0b0a1fffff-17b7c0de67c8f39b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66298040000001,32.8095571]},"id":"8f44c0b18509020-1397bdcd40b47010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66297510000001,32.809795300000005]},"id":"8f44c0b18556923-13bebdd09c97472e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18556923-13bebdd09c97472e","8f44c0b18509020-1397bdcd40b47010"]},"geometry":{"type":"LineString","coordinates":[[-83.66298040000001,32.8095571],[-83.66241500000001,32.809556300000004],[-83.6623168,32.8096608],[-83.66229720000001,32.809733900000005],[-83.66233460000001,32.8097952],[-83.66297510000001,32.809795300000005]]},"id":"8844c0b185fffff-13f6beb517258fdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691457,32.8081888]},"id":"8f44c0b1d08ca20-17be78476332960c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08ca20-17be78476332960c","8f44c0b1d0a9728-17fe7694c6d6a59f"]},"geometry":{"type":"LineString","coordinates":[[-83.691457,32.8081888],[-83.69148080000001,32.808207700000004],[-83.6920891,32.8082432],[-83.69211820000001,32.808239900000004],[-83.69214070000001,32.808193200000005],[-83.69215240000001,32.8080579]]},"id":"8944c0b1d0bffff-17de7749c3649d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69049650000001,32.8071013]},"id":"8f44c0b1d08442b-17967a9fbf640b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900682,32.8070942]},"id":"8f44c0b1d086cf5-1797fbab677ed33f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08442b-17967a9fbf640b9e","8f44c0b1d086cf5-1797fbab677ed33f"]},"geometry":{"type":"LineString","coordinates":[[-83.69049650000001,32.8071013],[-83.6904535,32.8070526],[-83.6902874,32.8070408],[-83.69021950000001,32.8070502],[-83.6901639,32.807064100000005],[-83.6900682,32.8070942]]},"id":"8a44c0b1d087fff-17fe7b21084cf457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69815100000001,32.819487800000005]},"id":"8f44c0b0a5962eb-13d7e7efa11ec32c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6987162,32.8177752]},"id":"8f44c0b1d2e9515-17b7e68e6958b411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a5962eb-13d7e7efa11ec32c","8f44c0b1d2e9515-17b7e68e6958b411"]},"geometry":{"type":"LineString","coordinates":[[-83.69815100000001,32.819487800000005],[-83.6984066,32.8191295],[-83.69824440000001,32.819051900000005],[-83.6986042,32.8185311],[-83.69861490000001,32.8183181],[-83.69858380000001,32.818218800000004],[-83.6987162,32.8177752]]},"id":"8644c0b1fffffff-13df672c239e3190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70931470000001,32.817314700000004]},"id":"8f44c0b0ac466f6-1797fcae550d8473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091893,32.8170832]},"id":"8f44c0b0ac46590-17f74cfcb859763d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac46590-17f74cfcb859763d","8f44c0b0ac466f6-1797fcae550d8473"]},"geometry":{"type":"LineString","coordinates":[[-83.70931470000001,32.817314700000004],[-83.7094411,32.8173198],[-83.7097306,32.817196700000004],[-83.7095998,32.8169659],[-83.70952390000001,32.816952],[-83.709326,32.8170245],[-83.7091893,32.8170832]]},"id":"8a44c0b0ac47fff-17967c360e488f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7071889,32.8154738]},"id":"8f44c0b0ac03d4d-139771def88338f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7073852,32.8158629]},"id":"8f44c0b0ac0e52e-13fe5164409ebf6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac03d4d-139771def88338f8","8f44c0b0ac0e52e-13fe5164409ebf6b"]},"geometry":{"type":"LineString","coordinates":[[-83.7071889,32.8154738],[-83.7070319,32.8154841],[-83.7069482,32.8155207],[-83.7069081,32.8155918],[-83.70690640000001,32.815787400000005],[-83.70696740000001,32.8158131],[-83.7072394,32.8158394],[-83.7073852,32.8158629]]},"id":"8944c0b0ac3ffff-1396d22e68e43548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6921665,32.8078945]},"id":"8f44c0b1d0a9c59-1796768bf9d1dd74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914838,32.8078487]},"id":"8f44c0b1d0aa305-17ff7836ad81b6d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa305-17ff7836ad81b6d0","8f44c0b1d0a9c59-1796768bf9d1dd74"]},"geometry":{"type":"LineString","coordinates":[[-83.6921665,32.8078945],[-83.6914838,32.8078487]]},"id":"8a44c0b1d0affff-17f7f76157139b56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7b2274-17d7eefae5d4d590","8f44c0b1b790523-17bfd044e18e381d"]},"geometry":{"type":"LineString","coordinates":[[-83.65594420000001,32.836875400000004],[-83.6554162,32.8374776]]},"id":"8944c0b1b7bffff-1797df9fe41ee972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6557772,32.8367771]},"id":"8f44c0b1b7b20de-179fff634acd59ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b796399-1797f0b0d26a45b2","8f44c0b1b7b20de-179fff634acd59ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6557772,32.8367771],[-83.65524350000001,32.8373782]]},"id":"8944c0b1b7bffff-17d7d00a0e11052b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74212220000001,32.7402426]},"id":"8f44c0b23aab619-13dffc95a9915184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73885100000001,32.733973]},"id":"8f44c0b238c67b1-139f249228e28d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b238c67b1-139f249228e28d57","8f44c0b23aab619-13dffc95a9915184"]},"geometry":{"type":"LineString","coordinates":[[-83.74212220000001,32.7402426],[-83.7414744,32.7395062],[-83.74059390000001,32.738531300000005],[-83.7404795,32.7383528],[-83.74043370000001,32.7382384],[-83.7404017,32.7381194],[-83.7404108,32.737991300000004],[-83.7404429,32.737817400000004],[-83.7405391,32.7374756],[-83.74089450000001,32.736307100000005],[-83.74095100000001,32.7360786],[-83.7409456,32.735868],[-83.7409076,32.735730700000005],[-83.7407594,32.735510000000005],[-83.7406251,32.7353745],[-83.7399709,32.734839400000006],[-83.73885100000001,32.733973]]},"id":"8744c0b23ffffff-13ffe046fc1bd90d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689834,32.901338]},"id":"8f44c0a0588554c-13be7c3dcfc9d4ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898749,32.9006138]},"id":"8f44c0a058a2a15-13f7fc24358dab38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a2a15-13f7fc24358dab38","8f44c0a0588554c-13be7c3dcfc9d4ca"]},"geometry":{"type":"LineString","coordinates":[[-83.689834,32.901338],[-83.6897091,32.9012546],[-83.68969390000001,32.901205600000004],[-83.6897421,32.901122400000006],[-83.6897739,32.9010276],[-83.6897713,32.900936],[-83.68975610000001,32.9008422],[-83.6897218,32.9007591],[-83.68969770000001,32.9006962],[-83.6898749,32.9006138]]},"id":"8944c0a058bffff-13befc6ec7af4545"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7047845,32.9002392]},"id":"8f44c0a2e57331e-17ffd7bdb86daf6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7048113,32.899450300000005]},"id":"8f44c0a2e5746f0-179e77acf19fc1af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5746f0-179e77acf19fc1af","8f44c0a2e57331e-17ffd7bdb86daf6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7047845,32.9002392],[-83.7048113,32.899450300000005]]},"id":"8a44c0a2e577fff-179757b55cfa1741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68848630000001,32.897873600000004]},"id":"8f44c0a05996c8c-13b77f881de3269e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875899,32.8975202]},"id":"8f44c0a236d9af3-13d6a1b85befb3d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05996c8c-13b77f881de3269e","8f44c0a236d9af3-13d6a1b85befb3d4"]},"geometry":{"type":"LineString","coordinates":[[-83.68848630000001,32.897873600000004],[-83.6875899,32.8975202]]},"id":"8744c0a05ffffff-13d690a03ed8c824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885683,32.8977245]},"id":"8f44c0a236c9682-13d7ff54d4b86fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876459,32.8973691]},"id":"8f44c0a236ca499-13f7b19550e63614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236ca499-13f7b19550e63614","8f44c0a236c9682-13d7ff54d4b86fd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6885683,32.8977245],[-83.6876459,32.8973691]]},"id":"8944c0a236fffff-13f6c07513636b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898906,32.898425100000004]},"id":"8f44c0a059828a8-139ffc1a67c08746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69012020000001,32.8985101]},"id":"8f44c0a059804c9-13d6fb8ae324afba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059828a8-139ffc1a67c08746","8f44c0a059804c9-13d6fb8ae324afba"]},"geometry":{"type":"LineString","coordinates":[[-83.6898906,32.898425100000004],[-83.69012020000001,32.8985101]]},"id":"8a44c0a05987fff-13b67bd2aa4a1b26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893168,32.897155000000005]},"id":"8f44c0a059b6740-13f7fd8107c3cdb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892516,32.8973]},"id":"8f44c0a059b2d69-13defda9ceb86a28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b2d69-13defda9ceb86a28","8f44c0a059b6740-13f7fd8107c3cdb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6893168,32.897155000000005],[-83.6892601,32.897253400000004],[-83.6892516,32.8973]]},"id":"8a44c0a059b7fff-139ffd98b2e5aa27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68798840000001,32.9006224]},"id":"8f44c0a05d49a92-13ff80bf429d8c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878013,32.9007243]},"id":"8f44c0a05d49604-13beb13436e65383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d49604-13beb13436e65383","8f44c0a05d49a92-13ff80bf429d8c1d"]},"geometry":{"type":"LineString","coordinates":[[-83.68798840000001,32.9006224],[-83.6878013,32.9007243]]},"id":"8b44c0a05d49fff-139ee0f9cc08ad9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7045827,32.9002366]},"id":"8f44c0a2e5737a9-17f7f83bd30455c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70461060000001,32.8994457]},"id":"8f44c0a2e576ad4-179fd82a60fd1de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e576ad4-179fd82a60fd1de6","8f44c0a2e5737a9-17f7f83bd30455c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7045827,32.9002366],[-83.70461060000001,32.8994457]]},"id":"8a44c0a2e577fff-1796f8331b151310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6839654,32.898662200000004]},"id":"8f44c0a05c26056-179fea91ac093ffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68380450000001,32.8984729]},"id":"8f44c0a05c26ca3-13bf9af635eb507a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c26056-179fea91ac093ffb","8f44c0a05c26ca3-13bf9af635eb507a"]},"geometry":{"type":"LineString","coordinates":[[-83.6839654,32.898662200000004],[-83.68380450000001,32.8984729]]},"id":"8b44c0a05c26fff-13f6cac3ec94e252"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6932776,32.905741]},"id":"8f44c0a05b90918-17fe73d58f738d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927916,32.9062591]},"id":"8f44c0a05b935b6-17bff5054a828774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b935b6-17bff5054a828774","8f44c0a05b90918-17fe73d58f738d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.6932776,32.905741],[-83.6927916,32.9062591]]},"id":"8a44c0a05b97fff-179e746d6c738a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908011,32.8989613]},"id":"8f44c0a05981246-17def9e1565e9b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900366,32.8986668]},"id":"8f44c0a05983d95-17b6fbbf26bb9507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05981246-17def9e1565e9b18","8f44c0a05983d95-17b6fbbf26bb9507"]},"geometry":{"type":"LineString","coordinates":[[-83.6908011,32.8989613],[-83.6900366,32.8986668]]},"id":"8944c0a059bffff-17fefad038cdca14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927761,32.8973279]},"id":"8f44c0a05915c28-13dff50efd0929d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6919424,32.8969571]},"id":"8f44c0a236496b5-17f677180f6245c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236496b5-17f677180f6245c8","8f44c0a05915c28-13dff50efd0929d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6927761,32.8973279],[-83.6919424,32.8969571]]},"id":"8844c0a059fffff-13fe76137ef11587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907506,32.8991379]},"id":"8f44c0a0598eb31-17df7a00e3a9fd72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6899551,32.8988194]},"id":"8f44c0a05983581-17967bf21e9bdeba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05983581-17967bf21e9bdeba","8f44c0a0598eb31-17df7a00e3a9fd72"]},"geometry":{"type":"LineString","coordinates":[[-83.6907506,32.8991379],[-83.6899551,32.8988194]]},"id":"8944c0a059bffff-17f7faf97ee2e2f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903272,32.899796900000005]},"id":"8f44c0a0598a60a-17f77b09875ed70f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68958020000001,32.899506200000005]},"id":"8f44c0a059980cb-17bf7cdc6310b51b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598a60a-17f77b09875ed70f","8f44c0a059980cb-17bf7cdc6310b51b"]},"geometry":{"type":"LineString","coordinates":[[-83.6903272,32.899796900000005],[-83.68958020000001,32.899506200000005]]},"id":"8944c0a059bffff-179e7bf2f885b413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7047117,32.8987502]},"id":"8f44c0a2e529901-17d6f7eb38cae9f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043101,32.8987293]},"id":"8f44c0a2e528318-17dfd8e633b3c7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e529901-17d6f7eb38cae9f7","8f44c0a2e528318-17dfd8e633b3c7a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7047117,32.8987502],[-83.7043101,32.8987293]]},"id":"8a44c0a2e52ffff-17d67868ba61fa45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913203,32.8977591]},"id":"8f44c0a059a119c-13ff789cd26a16c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906701,32.897506400000005]},"id":"8f44c0a059a28e9-13dffa3338a440cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a119c-13ff789cd26a16c0","8f44c0a059a28e9-13dffa3338a440cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6913203,32.8977591],[-83.6906701,32.897506400000005]]},"id":"8a44c0a059a7fff-139ef9680bba5ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68965730000001,32.8993659]},"id":"8f44c0a059988db-17d7fcac3318ff85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6904032,32.8996537]},"id":"8f44c0a0598a01a-179ffada09b45c40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598a01a-179ffada09b45c40","8f44c0a059988db-17d7fcac3318ff85"]},"geometry":{"type":"LineString","coordinates":[[-83.68965730000001,32.8993659],[-83.6904032,32.8996537]]},"id":"8944c0a059bffff-17b7fbc31ebafc3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69300630000001,32.9057528]},"id":"8f44c0a05b90cb4-17fff47f10dfd8aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69249690000001,32.905397400000005]},"id":"8f44c0a058cb388-179775bd70e9df31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058cb388-179775bd70e9df31","8f44c0a05b90cb4-17fff47f10dfd8aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69300630000001,32.9057528],[-83.69249690000001,32.905397400000005]]},"id":"8744c0a05ffffff-1796751e48ce1da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889999,32.8969327]},"id":"8f44c0a236cd905-17f6fe471437c04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68786440000001,32.896493500000005]},"id":"8f44c0a236c386d-17d6f10ccb6df8dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd905-17f6fe471437c04a","8f44c0a236c386d-17d6f10ccb6df8dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6889999,32.8969327],[-83.68786440000001,32.896493500000005]]},"id":"8944c0a236fffff-17dfffa9e1601aad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70429990000001,32.898959500000004]},"id":"8f44c0a2e52b86d-17dff8ec9a1486f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70385110000001,32.8989441]},"id":"8f44c0a2e52a2ed-17d65a051f991f17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e52a2ed-17d65a051f991f17","8f44c0a2e52b86d-17dff8ec9a1486f4"]},"geometry":{"type":"LineString","coordinates":[[-83.70429990000001,32.898959500000004],[-83.70385110000001,32.8989441]]},"id":"8a44c0a2e52ffff-17d6f978da5ed01e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886645,32.897549600000005]},"id":"8f44c0a236c90b6-13feff18b0bcfc08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876933,32.8971699]},"id":"8f44c0a236dd35c-13ffb177ba7a9eb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236dd35c-13ffb177ba7a9eb9","8f44c0a236c90b6-13feff18b0bcfc08"]},"geometry":{"type":"LineString","coordinates":[[-83.6886645,32.897549600000005],[-83.6876933,32.8971699]]},"id":"8944c0a236fffff-13f7e0483b9422a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905232,32.8995313]},"id":"8f44c0a0598a8e0-17bf7a8f092eb600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897361,32.899222200000004]},"id":"8f44c0a05998929-17fffc7af5865188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05998929-17fffc7af5865188","8f44c0a0598a8e0-17bf7a8f092eb600"]},"geometry":{"type":"LineString","coordinates":[[-83.6905232,32.8995313],[-83.6897361,32.899222200000004]]},"id":"8944c0a059bffff-17de7b8504c875f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70374840000001,32.8999632]},"id":"8f44c0a2e50944d-17df5a454af5a8c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7037655,32.9002259]},"id":"8f44c0a2e556882-17f77a3a971f7dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50944d-17df5a454af5a8c2","8f44c0a2e556882-17f77a3a971f7dc6"]},"geometry":{"type":"LineString","coordinates":[[-83.70374840000001,32.8999632],[-83.7037655,32.9002259]]},"id":"8844c0a2e5fffff-179f7a3fe564e4f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890808,32.8967809]},"id":"8f44c0a236eb333-179e7e1489b39013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68791870000001,32.8963401]},"id":"8f44c0a236c0273-17f690eade36d6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c0273-17f690eade36d6f6","8f44c0a236eb333-179e7e1489b39013"]},"geometry":{"type":"LineString","coordinates":[[-83.6890808,32.8967809],[-83.68791870000001,32.8963401]]},"id":"8944c0a236fffff-17fe7f7fb2335837"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885522,32.8986375]},"id":"8f44c0a059922d4-17967f5eeb7bdebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886425,32.8984686]},"id":"8f44c0a05992aaa-13b6ff267c384e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05992aaa-13b6ff267c384e64","8f44c0a059922d4-17967f5eeb7bdebe"]},"geometry":{"type":"LineString","coordinates":[[-83.6885522,32.8986375],[-83.6886425,32.8984686]]},"id":"8b44c0a05992fff-13dfff42ae0045a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887466,32.8974003]},"id":"8f44c0a236c9d6a-139f7ee56d27718e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877326,32.897004800000005]},"id":"8f44c0a236dda34-1396815f2f1c9965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c9d6a-139f7ee56d27718e","8f44c0a236dda34-1396815f2f1c9965"]},"geometry":{"type":"LineString","coordinates":[[-83.6887466,32.8974003],[-83.6877326,32.897004800000005]]},"id":"8944c0a236fffff-139fa02243a4e231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689811,32.8990859]},"id":"8f44c0a0599c30e-17befc4c256e4299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69060850000001,32.8993948]},"id":"8f44c0a0598e2f5-17fffa59b87bbd6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599c30e-17befc4c256e4299","8f44c0a0598e2f5-17fffa59b87bbd6d"]},"geometry":{"type":"LineString","coordinates":[[-83.689811,32.8990859],[-83.69060850000001,32.8993948]]},"id":"8944c0a059bffff-179f7b52f826b6d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689169,32.8966153]},"id":"8f44c0a236eb86a-17b6fddd6230b69a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68799410000001,32.8961629]},"id":"8f44c0a236c0a23-1797d0bbbd9d2539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c0a23-1797d0bbbd9d2539","8f44c0a236eb86a-17b6fddd6230b69a"]},"geometry":{"type":"LineString","coordinates":[[-83.689169,32.8966153],[-83.68799410000001,32.8961629]]},"id":"8944c0a236fffff-17977f4c8fb07882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70438100000001,32.9002339]},"id":"8f44c0a2e554b8d-17f678b9ea87e335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7044051,32.899441100000004]},"id":"8f44c0a2e57672c-1796f8aad26a1351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e57672c-1796f8aad26a1351","8f44c0a2e554b8d-17f678b9ea87e335"]},"geometry":{"type":"LineString","coordinates":[[-83.70438100000001,32.9002339],[-83.7044051,32.899441100000004]]},"id":"8944c0a2e57ffff-17fe78b25a6624cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009367,32.8994505]},"id":"8f44c0a2e5a8310-179ef1229c9b8a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009244,32.899713000000006]},"id":"8f44c0a2e5ab86b-17b6e12a423ceb90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5ab86b-17b6e12a423ceb90","8f44c0a2e5a8310-179ef1229c9b8a97"]},"geometry":{"type":"LineString","coordinates":[[-83.7009367,32.8994505],[-83.7009244,32.899713000000006]]},"id":"8a44c0a2e5affff-17dee1266d085948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68935970000001,32.8999311]},"id":"8f44c0a0599b71e-17befd6635ab4a54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68996410000001,32.900163500000005]},"id":"8f44c0a058a6b8a-17de7bec7a54465c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b71e-17befd6635ab4a54","8f44c0a058a6b8a-17de7bec7a54465c"]},"geometry":{"type":"LineString","coordinates":[[-83.68935970000001,32.8999311],[-83.68996410000001,32.900163500000005]]},"id":"8944c0a058bffff-1797fca9510e8665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6888339,32.8972415]},"id":"8f44c0a236cd771-13b7feaedd3c851a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877721,32.8968386]},"id":"8f44c0a236ce594-17bea1467e3f31d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd771-13b7feaedd3c851a","8f44c0a236ce594-17bea1467e3f31d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6888339,32.8972415],[-83.6877721,32.8968386]]},"id":"8a44c0a236cffff-13be7ffaac149233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69400970000001,32.9013687]},"id":"8f44c0a0582b0cb-13bf720bf83f2f49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69384960000001,32.901136]},"id":"8f44c0a0582bc91-13be72700e19243f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0582b0cb-13bf720bf83f2f49","8f44c0a0582bc91-13be72700e19243f"]},"geometry":{"type":"LineString","coordinates":[[-83.69400970000001,32.9013687],[-83.69384960000001,32.901136]]},"id":"8b44c0a0582bfff-13f6f23e0ae4d0db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936517,32.9060788]},"id":"8f44c0a05b91824-17bf72ebbc3df571"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69340240000001,32.905918400000004]},"id":"8f44c0a05b90b50-17d773878ae6da45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b91824-17bf72ebbc3df571","8f44c0a05b90b50-17d773878ae6da45"]},"geometry":{"type":"LineString","coordinates":[[-83.6936517,32.9060788],[-83.69340240000001,32.905918400000004]]},"id":"8a44c0a05b97fff-179f7339a396273b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900432,32.9000232]},"id":"8f44c0a058a459a-17f6fbbb070e2389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894324,32.8997849]},"id":"8f44c0a0599b1a1-17dffd38c3ceb2b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a459a-17f6fbbb070e2389","8f44c0a0599b1a1-17dffd38c3ceb2b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6900432,32.9000232],[-83.6894324,32.8997849]]},"id":"8844c0a059fffff-17be7c79e06bb9df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881864,32.898437]},"id":"8f44c0a05d61844-1397a0438ee0fde5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68729210000001,32.898093]},"id":"8f44c0a05d62930-13bea27275f71f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d62930-13bea27275f71f64","8f44c0a05d61844-1397a0438ee0fde5"]},"geometry":{"type":"LineString","coordinates":[[-83.6881864,32.898437],[-83.68729210000001,32.898093]]},"id":"8a44c0a05d67fff-13b7a15af26922b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889187,32.8970853]},"id":"8f44c0a236cd12b-13d67e79d0709f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68781510000001,32.8966578]},"id":"8f44c0a236c3ad6-17bfa12b9ac7a1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd12b-13d67e79d0709f6c","8f44c0a236c3ad6-17bfa12b9ac7a1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6889187,32.8970853],[-83.68781510000001,32.8966578]]},"id":"8944c0a236fffff-17d6ffd2b7bb4d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70568750000001,32.898580700000004]},"id":"8f44c0a2ecd8953-13fef58956439894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70592520000001,32.898585000000004]},"id":"8f44c0a2ecdd561-13fff4f4cdad5092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd8953-13fef58956439894","8f44c0a2ecdd561-13fff4f4cdad5092"]},"geometry":{"type":"LineString","coordinates":[[-83.70568750000001,32.898580700000004],[-83.70592520000001,32.898585000000004]]},"id":"8a44c0a2ecdffff-13fe553f009a3b4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7032375,32.9002398]},"id":"8f44c0a2e50b6da-17fffb8498bf0d5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7034101,32.900633]},"id":"8f44c0a2e425260-13fffb18b6efcdaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e425260-13fffb18b6efcdaf","8f44c0a2e50b6da-17fffb8498bf0d5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7032375,32.9002398],[-83.7034101,32.900633]]},"id":"8b44c0a2e425fff-13f6db4ea9a06979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691012,32.896869]},"id":"8f44c0a059a4ca4-17bf795d8e93263c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69084360000001,32.8971685]},"id":"8f44c0a059a6a1c-13fe79c6cb37703c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a4ca4-17bf795d8e93263c","8f44c0a059a6a1c-13fe79c6cb37703c"]},"geometry":{"type":"LineString","coordinates":[[-83.691012,32.896869],[-83.69084360000001,32.8971685]]},"id":"8a44c0a059a7fff-139ef9922e78bba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68910360000001,32.9003132]},"id":"8f44c0a058b54d6-13b7fe064ad29300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892466,32.900158600000005]},"id":"8f44c0a058b5ce6-17d77dace460e047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058b54d6-13b7fe064ad29300","8f44c0a058b5ce6-17d77dace460e047"]},"geometry":{"type":"LineString","coordinates":[[-83.68910360000001,32.9003132],[-83.6892466,32.900158600000005]]},"id":"8b44c0a058b5fff-17f77dd998cedc23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043122,32.897741100000005]},"id":"8f44c0a2ecd2429-13f678e4e2956aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043175,32.897361700000005]},"id":"8f44c0a2e525b22-13f758e1930c5264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd2429-13f678e4e2956aa9","8f44c0a2e525b22-13f758e1930c5264"]},"geometry":{"type":"LineString","coordinates":[[-83.7043122,32.897741100000005],[-83.7043175,32.897361700000005]]},"id":"8a44c0a2ecd7fff-13fff8e34ceb3fab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68950140000001,32.8996499]},"id":"8f44c0a0599b995-179f7d0dacc048ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6902228,32.8999255]},"id":"8f44c0a058a4c0e-17b77b4acd01ac63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b995-179f7d0dacc048ab","8f44c0a058a4c0e-17b77b4acd01ac63"]},"geometry":{"type":"LineString","coordinates":[[-83.68950140000001,32.8996499],[-83.6902228,32.8999255]]},"id":"8944c0a059bffff-17df7c2c32ef666a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69226230000001,32.9040124]},"id":"8f44c0a058c11b2-13bff6501aa729cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691996,32.9038319]},"id":"8f44c0a058c03b0-13bef6f68a0bf649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058c11b2-13bff6501aa729cc","8f44c0a058c03b0-13bef6f68a0bf649"]},"geometry":{"type":"LineString","coordinates":[[-83.69226230000001,32.9040124],[-83.691996,32.9038319]]},"id":"8a44c0a058c7fff-13f776a3541c923c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68840540000001,32.8980236]},"id":"8f44c0a059964f2-1396ffbaac624ed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68751350000001,32.897671200000005]},"id":"8f44c0a236d92ea-13b681e819df27a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059964f2-1396ffbaac624ed8","8f44c0a236d92ea-13b681e819df27a3"]},"geometry":{"type":"LineString","coordinates":[[-83.68840540000001,32.8980236],[-83.68751350000001,32.897671200000005]]},"id":"8744c0a05ffffff-13b6a0d158581e3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7051881,32.9002445]},"id":"8f44c0a2e546922-17fed6c17b98999a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70520730000001,32.8994592]},"id":"8f44c0a2e575c1d-179656b57f96e97d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e575c1d-179656b57f96e97d","8f44c0a2e546922-17fed6c17b98999a"]},"geometry":{"type":"LineString","coordinates":[[-83.7051881,32.9002445],[-83.70520730000001,32.8994592]]},"id":"8944c0a2e57ffff-179776bb7a0ad695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913275,32.8975759]},"id":"8f44c0a059a1d05-13fef89854d1f91e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69075090000001,32.8973491]},"id":"8f44c0a059a62e3-13ff7a00b37d8d0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a1d05-13fef89854d1f91e","8f44c0a059a62e3-13ff7a00b37d8d0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6913275,32.8975759],[-83.69075090000001,32.8973491]]},"id":"8a44c0a059a7fff-13b6794c8b5ddcd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68993470000001,32.8969949]},"id":"8f44c0a059b4335-139ffbfed2cfb6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68969340000001,32.896897]},"id":"8f44c0a059b4551-17d6fc95ab239284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b4335-139ffbfed2cfb6b7","8f44c0a059b4551-17d6fc95ab239284"]},"geometry":{"type":"LineString","coordinates":[[-83.68993470000001,32.8969949],[-83.68969340000001,32.896897]]},"id":"8b44c0a059b4fff-17ff7c4a3c4276b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69685150000001,32.897663]},"id":"8f44c0a232dd988-13bf6b1bd5f35b9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964997,32.8976033]},"id":"8f44c0a232dc3ad-139e7bf7b9d33ab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a232dc3ad-139e7bf7b9d33ab6","8f44c0a232dd988-13bf6b1bd5f35b9a"]},"geometry":{"type":"LineString","coordinates":[[-83.69685150000001,32.897663],[-83.6964997,32.8976033]]},"id":"8a44c0a232dffff-139eeb89cfad6cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927764,32.8971206]},"id":"8f44c0a059337b2-13de750ec06b27fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6920317,32.8967983]},"id":"8f44c0a2364956d-1796f6e03dd59cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059337b2-13de750ec06b27fa","8f44c0a2364956d-1796f6e03dd59cf3"]},"geometry":{"type":"LineString","coordinates":[[-83.6927764,32.8971206],[-83.6920317,32.8967983]]},"id":"8844c0a059fffff-17f7f5f785c4230c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68832780000001,32.8981701]},"id":"8f44c0a05d65ae3-13fe7feb261629c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6874377,32.897821]},"id":"8f44c0a05d66bb4-1396a2177e4a6c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d65ae3-13fe7feb261629c0","8f44c0a05d66bb4-1396a2177e4a6c07"]},"geometry":{"type":"LineString","coordinates":[[-83.68832780000001,32.8981701],[-83.6874377,32.897821]]},"id":"8a44c0a05d67fff-13ffc1015865fdbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7049966,32.900242]},"id":"8f44c0a2e546d00-17ff57392a1cb3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7050181,32.8994549]},"id":"8f44c0a2e574219-179f572bb10bfd11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e574219-179f572bb10bfd11","8f44c0a2e546d00-17ff57392a1cb3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7049966,32.900242],[-83.7050181,32.8994549]]},"id":"8a44c0a2e577fff-179757327e82969e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6949963,32.8909794]},"id":"8f44c0a233b17a8-13de6fa35a75355f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69570610000001,32.8911285]},"id":"8f44c0a233a349d-13bf7de7b0c7bd11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a233a349d-13bf7de7b0c7bd11","8f44c0a233b17a8-13de6fa35a75355f"]},"geometry":{"type":"LineString","coordinates":[[-83.6949963,32.8909794],[-83.69570610000001,32.890992700000005],[-83.69570610000001,32.8911285]]},"id":"8944c0a233bffff-13ffeea1ede1999c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891425,32.8964154]},"id":"8f44c0a236e82a6-17b7fdedf2d80845"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881652,32.895853]},"id":"8f44c0a236c5da8-17d6a050c2cd9743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c5da8-17d6a050c2cd9743","8f44c0a236e82a6-17b7fdedf2d80845"]},"geometry":{"type":"LineString","coordinates":[[-83.6891425,32.8964154],[-83.68922020000001,32.8962583],[-83.6881652,32.895853]]},"id":"8944c0a236fffff-17de7ede113cf6f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6843704,32.899467800000004]},"id":"8f44c0a05c23ac1-1797e9948c37aae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68504030000001,32.8990533]},"id":"8f44c0a05d52cf5-1796d7f1d5d034eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c23ac1-1797e9948c37aae2","8f44c0a05d52cf5-1796d7f1d5d034eb"]},"geometry":{"type":"LineString","coordinates":[[-83.6843704,32.899467800000004],[-83.68454030000001,32.8993442],[-83.68504030000001,32.8990533]]},"id":"8944c0a05c3ffff-1797c8c5d704b15f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69452530000001,32.9028827]},"id":"8f44c0a058553b1-17fff0c9b0258746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934894,32.903439]},"id":"8f44c0a058ec14a-17df7351243fb1e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058553b1-17fff0c9b0258746","8f44c0a058ec14a-17df7351243fb1e0"]},"geometry":{"type":"LineString","coordinates":[[-83.69452530000001,32.9028827],[-83.6946066,32.903292900000004],[-83.6934894,32.903439]]},"id":"8844c0a059fffff-17fef19c60c72a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934181,32.9029407]},"id":"8f44c0a05852cdb-1797f37dbd0c2231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69314460000001,32.9031182]},"id":"8f44c0a058e1149-1796f428ae48ec78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05852cdb-1797f37dbd0c2231","8f44c0a058e1149-1796f428ae48ec78"]},"geometry":{"type":"LineString","coordinates":[[-83.6934181,32.9029407],[-83.6931433,32.902936000000004],[-83.69314460000001,32.9031182]]},"id":"8944c0a058fffff-17b6f3f5a1970415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689881,32.900311]},"id":"8f44c0a058a6214-13b67c206991e546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68930540000001,32.9000403]},"id":"8f44c0a0599b6d2-17ff7d882ef7c9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b6d2-17ff7d882ef7c9ba","8f44c0a058a6214-13b67c206991e546"]},"geometry":{"type":"LineString","coordinates":[[-83.689881,32.900311],[-83.6895178,32.9001705],[-83.68930540000001,32.9000403]]},"id":"8944c0a058bffff-17df7cd8115c1fd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70301070000001,32.899467300000005]},"id":"8f44c0a2e50e6c2-17975c125c48d474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7031819,32.8999321]},"id":"8f44c0a2e50b514-17bfdba758c7d8f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50e6c2-17975c125c48d474","8f44c0a2e50b514-17bfdba758c7d8f8"]},"geometry":{"type":"LineString","coordinates":[[-83.70301070000001,32.899467300000005],[-83.7030002,32.8999286],[-83.7031819,32.8999321]]},"id":"8a44c0a2e50ffff-17d65c068e7eb210"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913162,32.8978638]},"id":"8f44c0a059a1723-13bef89f6529824a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69058790000001,32.8976665]},"id":"8f44c0a059a23a2-13b7fa669460e0cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a1723-13bef89f6529824a","8f44c0a059a23a2-13b7fa669460e0cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6913162,32.8978638],[-83.6910807,32.897861500000005],[-83.69058790000001,32.8976665]]},"id":"8a44c0a059a7fff-1397f98699e249b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69190850000001,32.9039188]},"id":"8f44c0a058c0673-13f7772d3d224fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69182470000001,32.9036051]},"id":"8f44c0a058c0c84-13b77761948f1ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058c0673-13f7772d3d224fed","8f44c0a058c0c84-13b77761948f1ff5"]},"geometry":{"type":"LineString","coordinates":[[-83.69190850000001,32.9039188],[-83.69182470000001,32.9038257],[-83.69182470000001,32.9036051]]},"id":"8b44c0a058c0fff-139ff75812ffadfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6939986,32.8972655]},"id":"8f44c0a05904a20-13b6f212eec04fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936405,32.896966400000004]},"id":"8f44c0a05931a2b-17fe72f2bcc6c8d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05904a20-13b6f212eec04fff","8f44c0a05931a2b-17fe72f2bcc6c8d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6939986,32.8972655],[-83.69386150000001,32.8973284],[-83.6936405,32.896966400000004]]},"id":"8944c0a0593ffff-1397f2904d0d1418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928341,32.9032325]},"id":"8f44c0a058e3b4e-17de74eabd6f562e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6922832,32.9036288]},"id":"8f44c0a058c542a-13d67643015c054a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058c542a-13d67643015c054a","8f44c0a058e3b4e-17de74eabd6f562e"]},"geometry":{"type":"LineString","coordinates":[[-83.6928341,32.9032325],[-83.69222070000001,32.903417600000004],[-83.6922832,32.9036288]]},"id":"8944c0a058fffff-17b7f5d675de388d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916767,32.904149000000004]},"id":"8f44c0a058c3420-139777be1b9d845e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6920125,32.904489500000004]},"id":"8f44c0a058ce406-13dff6ec3e0e8b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058c3420-139777be1b9d845e","8f44c0a058ce406-13dff6ec3e0e8b01"]},"geometry":{"type":"LineString","coordinates":[[-83.6916767,32.904149000000004],[-83.6917981,32.9042284],[-83.6918133,32.904352],[-83.6920125,32.904489500000004]]},"id":"8944c0a058fffff-13f67759d62793b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891938,32.897434100000005]},"id":"8f44c0a059b2188-13b67dcde84a5f6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68900450000001,32.8977714]},"id":"8f44c0a05994cf5-13f77e4435dfc076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b2188-13b67dcde84a5f6b","8f44c0a05994cf5-13f77e4435dfc076"]},"geometry":{"type":"LineString","coordinates":[[-83.6891938,32.897434100000005],[-83.68937000000001,32.8975071],[-83.6891822,32.897843900000005],[-83.68900450000001,32.8977714]]},"id":"8944c0a059bffff-13be7db6155347a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907745,32.9009099]},"id":"8f44c0a058a1a59-139ef9f1fe6584f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689895,32.900641]},"id":"8f44c0a058a2a0a-13f6fc17aec6be94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a2a0a-13f6fc17aec6be94","8f44c0a058a1a59-139ef9f1fe6584f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6907745,32.9009099],[-83.6900701,32.9006221],[-83.6900037,32.900618300000005],[-83.689895,32.900641]]},"id":"8a44c0a058a7fff-13b67b02218df48f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885278,32.897798200000004]},"id":"8f44c0a05996dad-1397ff6e2810086a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883385,32.8981499]},"id":"8f44c0a05d65a0a-13dfffe47f808366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d65a0a-13dfffe47f808366","8f44c0a05996dad-1397ff6e2810086a"]},"geometry":{"type":"LineString","coordinates":[[-83.6885278,32.897798200000004],[-83.68909330000001,32.8980261],[-83.6889017,32.8983713],[-83.6883385,32.8981499]]},"id":"8744c0a05ffffff-13defecd8af00f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7692445,32.9015257]},"id":"8f44c0b5ec8c916-139dba5e377df09c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7689136,32.900982]},"id":"8f44c0b5ec85003-13ddfb2d0d9ccf8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5ec85003-13ddfb2d0d9ccf8f","8f44c0b5ec8c916-139dba5e377df09c"]},"geometry":{"type":"LineString","coordinates":[[-83.7692445,32.9015257],[-83.7693426,32.901433700000005],[-83.76939180000001,32.9013259],[-83.7693988,32.9009923],[-83.7689136,32.900982]]},"id":"8944c0b5ecbffff-13b5ba4d820cda36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67177260000001,32.832543900000005]},"id":"8f44c0b1bb8c6c0-13b7f8562394e933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6717321,32.8334141]},"id":"8f44c0b1bb8b2e3-17d7f86f73537503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb8b2e3-17d7f86f73537503","8f44c0b1bb8c6c0-13b7f8562394e933"]},"geometry":{"type":"LineString","coordinates":[[-83.67177260000001,32.832543900000005],[-83.6717321,32.8334141]]},"id":"8a44c0b1bb8ffff-13d7e862dcd029ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67057630000001,32.833387800000004]},"id":"8f44c0b1baa6545-17d7eb41d237e519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6709297,32.833395800000005]},"id":"8f44c0b1baa6b76-17deea64f016876e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1baa6b76-17deea64f016876e","8f44c0b1baa6545-17d7eb41d237e519"]},"geometry":{"type":"LineString","coordinates":[[-83.67057630000001,32.833387800000004],[-83.67083450000001,32.833632900000005],[-83.67091400000001,32.833618],[-83.6709297,32.833395800000005]]},"id":"8a44c0b1baa7fff-179ebab68ad874b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7309827,32.8900894]},"id":"8f44c0a2cc0e914-17b7f7c7dd80b77e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73091360000001,32.8889623]},"id":"8f44c0a2cc04953-17f777f30e96a161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc04953-17f777f30e96a161","8f44c0a2cc0e914-17b7f7c7dd80b77e"]},"geometry":{"type":"LineString","coordinates":[[-83.7309827,32.8900894],[-83.73099300000001,32.8893969],[-83.73096890000001,32.8891622],[-83.73091360000001,32.8889623]]},"id":"8944c0a2cc3ffff-17df97cadaf752a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735511,32.901446]},"id":"8f44c0a2c3b2161-13ffccb9a28a3660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c3b2161-13ffccb9a28a3660","8f44c0a2c390ba8-1796ad216e3531a4"]},"geometry":{"type":"LineString","coordinates":[[-83.735511,32.901446],[-83.7354,32.901555],[-83.73534000000001,32.90164],[-83.735292,32.901753],[-83.73527800000001,32.901853],[-83.73527700000001,32.901977],[-83.73534500000001,32.902305000000005]]},"id":"8944c0a2c3bffff-13ff2d27cb34e513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737116,32.902963]},"id":"8f44c0a2c38cc18-179fe8ce84ec0e41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c38cc18-179fe8ce84ec0e41","8f44c0a2c38e71c-17f749f8accd3e3d"]},"geometry":{"type":"LineString","coordinates":[[-83.73663900000001,32.903298],[-83.736894,32.903129],[-83.737116,32.902963]]},"id":"8a44c0a2c38ffff-179eb96214e230f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724433,32.8801724]},"id":"8f44c0a21b81270-17ffe7c563954a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7247241,32.8803408]},"id":"8f44c0a21b8c066-17f7270f7960ede6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b8c066-17f7270f7960ede6","8f44c0a21b81270-17ffe7c563954a32"]},"geometry":{"type":"LineString","coordinates":[[-83.724433,32.8801724],[-83.7247241,32.8803408]]},"id":"8a44c0a21b8ffff-17b6676a7788c937"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69167010000001,32.8756934]},"id":"8f44c0a23d28c64-179e77c2386b2424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916561,32.8754094]},"id":"8f44c0a23d2c470-13def7caf19a7ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23d2c470-13def7caf19a7ace","8f44c0a23d28c64-179e77c2386b2424"]},"geometry":{"type":"LineString","coordinates":[[-83.69167010000001,32.8756934],[-83.6916561,32.8754094]]},"id":"8a44c0a23d2ffff-13b7f7c69ba4faf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717371,32.88998]},"id":"8f44c0a2129c191-17ffb90324d6def1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a212916d9-17de7a05ea5f5bdb","8f44c0a2129c191-17ffb90324d6def1"]},"geometry":{"type":"LineString","coordinates":[[-83.71695700000001,32.889927],[-83.71715800000001,32.889961],[-83.71729500000001,32.889977],[-83.717371,32.88998]]},"id":"8944c0a212bffff-17f63984e4aad800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7251572,32.8801494]},"id":"8f44c0a21bab102-17ff6600c8ff6ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b8c066-17f7270f7960ede6","8f44c0a21bab102-17ff6600c8ff6ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.7247241,32.8803408],[-83.72479530000001,32.880257400000005],[-83.724894,32.8802066],[-83.7251572,32.8801494]]},"id":"8944c0a21bbffff-1797f691db647fea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a21bab102-17ff6600c8ff6ad1","8f44c0a21b81270-17ffe7c563954a32"]},"geometry":{"type":"LineString","coordinates":[[-83.7251572,32.8801494],[-83.7247808,32.880162600000006],[-83.7246095,32.880171600000004],[-83.724433,32.8801724]]},"id":"8944c0a21bbffff-17f7b6e319ceff23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70914040000001,32.8733242]},"id":"8f44c0a21cb03aa-17d7ed1b435d6de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7088349,32.873739]},"id":"8f44c0a21cb37a8-17d6edda3092498b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb03aa-17d7ed1b435d6de9","8f44c0a21cb37a8-17d6edda3092498b"]},"geometry":{"type":"LineString","coordinates":[[-83.70914040000001,32.8733242],[-83.7088349,32.873739]]},"id":"8a44c0a21cb7fff-17d74d7ab64384e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7086785,32.8736545]},"id":"8f44c0a21c9486d-17965e3bfb00d82b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7089868,32.8732428]},"id":"8f44c0a21cb046d-1796cd7b4c9c97d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c9486d-17965e3bfb00d82b","8f44c0a21cb046d-1796cd7b4c9c97d0"]},"geometry":{"type":"LineString","coordinates":[[-83.7086785,32.8736545],[-83.7089868,32.8732428]]},"id":"8a44c0a21cb7fff-17977ddba69a2ba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094897,32.8740923]},"id":"8f44c0a21c86360-13b7fc40f78bb258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7098028,32.873674900000005]},"id":"8f44c0a21c84d60-179edb7d4e45bbcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c84d60-179edb7d4e45bbcc","8f44c0a21c86360-13b7fc40f78bb258"]},"geometry":{"type":"LineString","coordinates":[[-83.7094897,32.8740923],[-83.7098028,32.873674900000005]]},"id":"8a44c0a21c87fff-17b74bdf2c471354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70860110000001,32.8734148]},"id":"8f44c0a21cb2396-17fe4e6c5301fd07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708219,32.8732124]},"id":"8f44c0a20349914-17ffcf5b22282987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb2396-17fe4e6c5301fd07","8f44c0a20349914-17ffcf5b22282987"]},"geometry":{"type":"LineString","coordinates":[[-83.70860110000001,32.8734148],[-83.708219,32.8732124]]},"id":"8644c0a27ffffff-17bf4ee3cd4e9761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7089983,32.8738271]},"id":"8f44c0a21cb328c-17fffd741e0ab268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093066,32.8734121]},"id":"8f44c0a21cb1c8c-17fedcb362b6f200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb1c8c-17fedcb362b6f200","8f44c0a21cb328c-17fffd741e0ab268"]},"geometry":{"type":"LineString","coordinates":[[-83.7089983,32.8738271],[-83.7093066,32.8734121]]},"id":"8a44c0a21cb7fff-17fe4d13c0bdd84f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205282,32.874770500000004]},"id":"8f44c0a218aca32-13dfb14de1bdd221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7209031,32.8740998]},"id":"8f44c0a21810c76-13be706398cbb7f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a218aca32-13dfb14de1bdd221","8f44c0a21810c76-13be706398cbb7f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7205282,32.874770500000004],[-83.7209031,32.8740998]]},"id":"8844c0a219fffff-13fe30d8cffb5264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096538,32.8741809]},"id":"8f44c0a21c80c45-13df5bda6987d52c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099663,32.8737615]},"id":"8f44c0a21c84863-17d6fb1718992b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c84863-17d6fb1718992b43","8f44c0a21c80c45-13df5bda6987d52c"]},"geometry":{"type":"LineString","coordinates":[[-83.7096538,32.8741809],[-83.7099663,32.8737615]]},"id":"8944c0a21cbffff-17de4b78c9ae5d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70916220000001,32.873915600000004]},"id":"8f44c0a21c86508-17b74d0dabe1ae80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094675,32.873497400000005]},"id":"8f44c0a21cb1108-17bfec4edf0cdb79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c86508-17b74d0dabe1ae80","8f44c0a21cb1108-17bfec4edf0cdb79"]},"geometry":{"type":"LineString","coordinates":[[-83.70916220000001,32.873915600000004],[-83.7094675,32.873497400000005]]},"id":"8944c0a21cbffff-17b6dcae4cf074d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7098278,32.8742748]},"id":"8f44c0a21c80b81-1397cb6da935137c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7097078,32.8744548]},"id":"8f44c0a21c802a3-13964bb8aa4a2bdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c802a3-13964bb8aa4a2bdb","8f44c0a21c80b81-1397cb6da935137c"]},"geometry":{"type":"LineString","coordinates":[[-83.7098278,32.8742748],[-83.7097078,32.8744548]]},"id":"8b44c0a21c80fff-13de4b932df06826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7084999,32.873558200000005]},"id":"8f44c0a21c94996-17d7eeab939c6d39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083628,32.8737463]},"id":"8f44c0a21c94464-17df7f01400ac195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c94464-17df7f01400ac195","8f44c0a21c94996-17d7eeab939c6d39"]},"geometry":{"type":"LineString","coordinates":[[-83.7084999,32.873558200000005],[-83.7083628,32.8737463]]},"id":"8b44c0a21c94fff-1796fed6654cdee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70932540000001,32.8740036]},"id":"8f44c0a21c860e4-17fe4ca7ab92fa0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70964400000001,32.8735908]},"id":"8f44c0a21cb1a56-17fe4be08df725ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb1a56-17fe4be08df725ad","8f44c0a21c860e4-17fe4ca7ab92fa0a"]},"geometry":{"type":"LineString","coordinates":[[-83.70932540000001,32.8740036],[-83.70964400000001,32.8735908]]},"id":"8944c0a21cbffff-17ff4c441d7b1a72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71968340000001,32.8735312]},"id":"8f44c0a218a4c05-17d7335de2428d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71996100000001,32.8731524]},"id":"8f44c0a2198a8f4-17de72b0612bbe5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a218a4c05-17d7335de2428d0a","8f44c0a2198a8f4-17de72b0612bbe5e"]},"geometry":{"type":"LineString","coordinates":[[-83.71968340000001,32.8735312],[-83.7197967,32.8734453],[-83.71996100000001,32.8731524]]},"id":"8944c0a219bffff-17d732fd8822b4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6517941,32.8259978]},"id":"8f44c0b1a208355-13bef91cb687a119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65076260000001,32.8264817]},"id":"8f44c0b1a2e6b18-13f7dba1653230ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1a2e6b18-13f7dba1653230ab","8f44c0b1a208355-13bef91cb687a119"]},"geometry":{"type":"LineString","coordinates":[[-83.6517941,32.8259978],[-83.65148450000001,32.826084900000005],[-83.651291,32.826160300000005],[-83.6511801,32.8262766],[-83.6510624,32.82647],[-83.65093900000001,32.8265376],[-83.65083170000001,32.8265151],[-83.6508151,32.8265071],[-83.65076260000001,32.8264817]]},"id":"8844c0b1a3fffff-13dffa6a7bddcb22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6868274,32.903865800000005]},"id":"8f44c0a05116c36-13d6a394e6c3411c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728300000001,32.9041522]},"id":"8f44c0a051146dc-1397a2782083cc27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a051146dc-1397a2782083cc27","8f44c0a05116c36-13d6a394e6c3411c"]},"geometry":{"type":"LineString","coordinates":[[-83.6868274,32.903865800000005],[-83.6869509,32.9039335],[-83.68719130000001,32.904085800000004],[-83.68728300000001,32.9041522]]},"id":"8944c0a0513ffff-13bef3048e2ca5ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68691270000001,32.9042742]},"id":"8f44c0a05112915-13d7e35f94520343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a051146dc-1397a2782083cc27","8f44c0a05112915-13d7e35f94520343"]},"geometry":{"type":"LineString","coordinates":[[-83.68691270000001,32.9042742],[-83.6869375,32.9042136],[-83.6869911,32.9041495],[-83.6870327,32.9041281],[-83.68709840000001,32.904108900000004],[-83.6871735,32.9041134],[-83.68728300000001,32.9041522]]},"id":"8a44c0a05117fff-1397e2fa8e5ee2f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6868122,32.902258700000004]},"id":"8f44c0a05c6ad8b-17f7b39e60f2e4fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6865664,32.901903000000004]},"id":"8f44c0a05c45d66-179fe438051e7e6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c45d66-179fe438051e7e6e","8f44c0a05c6ad8b-17f7b39e60f2e4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6868122,32.902258700000004],[-83.68671640000001,32.902198],[-83.6866718,32.9021573],[-83.6866328,32.902112],[-83.6866037,32.902051300000004],[-83.6865846,32.9019971],[-83.6865664,32.901903000000004]]},"id":"8944c0a05c7ffff-1796e3ff4910482f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864553,32.901601500000005]},"id":"8f44c0a05c63586-13def47d7ca74976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858462,32.901692100000005]},"id":"8f44c0a05c4691c-139795fa2fa17a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4691c-139795fa2fa17a86","8f44c0a05c63586-13def47d7ca74976"]},"geometry":{"type":"LineString","coordinates":[[-83.6864553,32.901601500000005],[-83.6863751,32.9016916],[-83.6862917,32.9017502],[-83.68624220000001,32.9017726],[-83.6861875,32.9017877],[-83.68612490000001,32.9017943],[-83.6860692,32.901791800000005],[-83.68601050000001,32.9017828],[-83.6859586,32.901770400000004],[-83.6859194,32.9017505],[-83.6858462,32.901692100000005]]},"id":"8944c0a05c7ffff-13b7c534b1a672b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76524400000001,32.880026]},"id":"8f44c0b5028e6e6-17b5c422854bb8b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50288621-17dde32ea9962b8c","8f44c0b5028e6e6-17b5c422854bb8b0"]},"geometry":{"type":"LineString","coordinates":[[-83.76524400000001,32.880026],[-83.76537540000001,32.8800702],[-83.76549080000001,32.880117500000004],[-83.7655337,32.8801513],[-83.7656034,32.8802369],[-83.76563420000001,32.8803014]]},"id":"8a44c0b5028ffff-17f7c39904a253ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7641076,32.8798794]},"id":"8f44c0b5029e233-17d5e6e8c87c64cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029e233-17d5e6e8c87c64cd","8f44c0b5029a96e-1795d6eac10c8f43"]},"geometry":{"type":"LineString","coordinates":[[-83.7641076,32.8798794],[-83.76410440000001,32.880006900000005]]},"id":"8a44c0b5029ffff-17fdc6e9cd823c85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7641298,32.8791011]},"id":"8f44c0b50291d74-17dff6daecd893dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029e233-17d5e6e8c87c64cd","8f44c0b50291d74-17dff6daecd893dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7641298,32.8791011],[-83.76406920000001,32.879209700000004],[-83.7640597,32.8795208],[-83.76405580000001,32.8797233],[-83.7641076,32.8798794]]},"id":"8944c0b502bffff-17dfd6ff3de330f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614133,32.883504]},"id":"8f44c0b5398c413-179fcd7cb37b787a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614356,32.8821156]},"id":"8f44c0b539a3d03-13bfcd6ec59212aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5398c413-179fcd7cb37b787a","8f44c0b539a3d03-13bfcd6ec59212aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7614133,32.883504],[-83.7614356,32.8821156]]},"id":"8944c0b539bffff-17fded75c8a6998b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640817,32.883139]},"id":"8f44c0b5391d213-17bde6f8f4bf17f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76407830000001,32.883571100000005]},"id":"8f44c0b5391934c-17d7f6fb1cc66106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b5391934c-17d7f6fb1cc66106","8f44c0b5391d213-17bde6f8f4bf17f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7640817,32.883139],[-83.76407830000001,32.883571100000005]]},"id":"8944c0b5393ffff-17d5f6fa09adc72f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6589706,32.8258448]},"id":"8f44c0b1bc13bb0-13dfc79768f14720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6592576,32.8258153]},"id":"8f44c0b1bc11083-13d6d6e40926a123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc13bb0-13dfc79768f14720","8f44c0b1bc11083-13d6d6e40926a123"]},"geometry":{"type":"LineString","coordinates":[[-83.6589706,32.8258448],[-83.659165,32.8258482],[-83.6592576,32.8258153]]},"id":"8a44c0b1bc17fff-13d6f73c8b7c6df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc13bb0-13dfc79768f14720","8f44c0b1bcac955-13dfc8adf43894d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6585249,32.8258456],[-83.6589706,32.8258448]]},"id":"8a44c0b1bc17fff-13dfc822b989458d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6584401,32.8257609]},"id":"8f44c0b1bc12641-13b6d8e2f3555321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bc12641-13b6d8e2f3555321","8f44c0b1bcac955-13dfc8adf43894d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6585249,32.8258456],[-83.6584838,32.825801600000005],[-83.6584401,32.8257609]]},"id":"8a44c0b1bc17fff-13bed8c801fef6e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7355055,32.8128832]},"id":"8f44c0b08134953-13b60cbd15a6ccb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73457540000001,32.812873700000004]},"id":"8f44c0b08c6b043-13be1f026e7c570d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08c6b043-13be1f026e7c570d","8f44c0b08134953-13b60cbd15a6ccb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7355055,32.8128832],[-83.73457540000001,32.812873700000004]]},"id":"8744c0b08ffffff-13b71ddfbfc6a4b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73555560000001,32.8127147]},"id":"8f44c0b0889a3a9-13debc9dca63561c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73457830000001,32.8127006]},"id":"8f44c0b08c6b88c-13d7ef009b2fac0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0889a3a9-13debc9dca63561c","8f44c0b08c6b88c-13d7ef009b2fac0c"]},"geometry":{"type":"LineString","coordinates":[[-83.73555560000001,32.8127147],[-83.73457830000001,32.8127006]]},"id":"8744c0b08ffffff-13d65dcf3e00239e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354662,32.8124929]},"id":"8f44c0b0889ac45-13d61cd5aa783ecb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73458670000001,32.8124905]},"id":"8f44c0b08c68754-13be9efb5fab2311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08c68754-13be9efb5fab2311","8f44c0b0889ac45-13d61cd5aa783ecb"]},"geometry":{"type":"LineString","coordinates":[[-83.7354662,32.8124929],[-83.73458670000001,32.8124905]]},"id":"8744c0b08ffffff-13bf5de877d00827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354574,32.8123285]},"id":"8f44c0b0889e6aa-13df5cdb2a3caaf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7346339,32.8123239]},"id":"8f44c0b08c68113-13d67eddd81044be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0889e6aa-13df5cdb2a3caaf2","8f44c0b08c68113-13d67eddd81044be"]},"geometry":{"type":"LineString","coordinates":[[-83.7354574,32.8123285],[-83.7346339,32.8123239]]},"id":"8744c0b08ffffff-13d7eddc8df28842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322738,32.807126700000005]},"id":"8f44c0b08d2a58c-17b634a0e1cdf28f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73201110000001,32.807124]},"id":"8f44c0b08d01d4e-17b695451cf83399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d2a58c-17b634a0e1cdf28f","8f44c0b08d01d4e-17b695451cf83399"]},"geometry":{"type":"LineString","coordinates":[[-83.7322738,32.807126700000005],[-83.73201110000001,32.807124]]},"id":"8a44c0b08d07fff-17b774f30d3320d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73569640000001,32.8071848]},"id":"8f44c0b0c6c88f4-17de8c45cfde0b5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73475570000001,32.807172300000005]},"id":"8f44c0b0c6dd766-17d6be91b944e855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c88f4-17de8c45cfde0b5a","8f44c0b0c6dd766-17d6be91b944e855"]},"geometry":{"type":"LineString","coordinates":[[-83.73569640000001,32.8071848],[-83.73475570000001,32.807172300000005]]},"id":"8944c0b0c6fffff-17d6ad6bb8158fae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7358107,32.807015]},"id":"8f44c0b0c6cc215-17f66bfe56269dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73485210000001,32.8069976]},"id":"8f44c0b0c6dd8d5-17d78e55797f3de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6dd8d5-17d78e55797f3de7","8f44c0b0c6cc215-17f66bfe56269dcf"]},"geometry":{"type":"LineString","coordinates":[[-83.7358107,32.807015],[-83.73485210000001,32.8069976]]},"id":"8944c0b0c6fffff-17defd29ed89f612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7359217,32.806818]},"id":"8f44c0b0c6ccb10-13f74bb8fa8696b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349459,32.806802600000005]},"id":"8f44c0b0c6c3212-13dfae1ad353d084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c3212-13dfae1ad353d084","8f44c0b0c6ccb10-13f74bb8fa8696b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7359217,32.806818],[-83.7349459,32.806802600000005]]},"id":"8944c0b0c6fffff-13f67ce9ec00fcb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73592980000001,32.806647000000005]},"id":"8f44c0b0c6ea2c0-13fe6bb3ef3669f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349446,32.806640300000005]},"id":"8f44c0b0c6c315e-13f63e1ba221eb78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c315e-13f63e1ba221eb78","8f44c0b0c6ea2c0-13fe6bb3ef3669f9"]},"geometry":{"type":"LineString","coordinates":[[-83.73592980000001,32.806647000000005],[-83.7349446,32.806640300000005]]},"id":"8944c0b0c6fffff-13fe5ce7c23faff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73594100000001,32.806410500000005]},"id":"8f44c0b0c6ea145-13f69bace2a4a340"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73498740000001,32.8063883]},"id":"8f44c0b0c6c066e-13debe00e58269fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c066e-13debe00e58269fb","8f44c0b0c6ea145-13f69bace2a4a340"]},"geometry":{"type":"LineString","coordinates":[[-83.73594100000001,32.806410500000005],[-83.73498740000001,32.8063883]]},"id":"8944c0b0c6fffff-13dfacd6ee2676c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7359493,32.8062343]},"id":"8f44c0b0c6ea913-13fe7ba7b1d9847c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735099,32.806223200000005]},"id":"8f44c0b0c6c014b-13f78dbb2a0b3fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ea913-13fe7ba7b1d9847c","8f44c0b0c6c014b-13f78dbb2a0b3fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.7359493,32.8062343],[-83.735099,32.806223200000005]]},"id":"8944c0b0c6fffff-13f70cb1771e8b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639285,32.825223]},"id":"8f44c0b1a68c815-13d6f7a6e4fcb017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64022200000001,32.82407]},"id":"8f44c0b1a612ac8-1797f55d4f504d8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0b1a68c815-13d6f7a6e4fcb017","8f44c0b1a612ac8-1797f55d4f504d8c"]},"geometry":{"type":"LineString","coordinates":[[-83.639285,32.825223],[-83.63938800000001,32.825116],[-83.64022200000001,32.82407]]},"id":"8844c0b1a7fffff-17fef67f2f88413a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63108550000001,32.8368964]},"id":"8f44c0a34433141-17d74bab9b79eab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6312233,32.836681]},"id":"8f44c0a344302ee-17dfab5571a227b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a34433141-17d74bab9b79eab3","8f44c0a344302ee-17dfab5571a227b4"]},"geometry":{"type":"LineString","coordinates":[[-83.63108550000001,32.8368964],[-83.6312233,32.836681]]},"id":"8a44c0a34437fff-1797fb808a85e0c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6258049,32.8346536]},"id":"8f44c0a3697598e-17df988ffeb95717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6259077,32.834708400000004]},"id":"8f44c0a36975862-17ffd84fb0466859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3697598e-17df988ffeb95717","8f44c0a36975862-17ffd84fb0466859"]},"geometry":{"type":"LineString","coordinates":[[-83.6258049,32.8346536],[-83.6259077,32.834708400000004]]},"id":"8c44c0a369759ff-17ffb86fdd26bd3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637563,32.828533]},"id":"8f44c0a34d1d84d-13fffbdb22d87f40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639356,32.828964]},"id":"8f44c0a34d704e0-13f6f77a8d781b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d1d84d-13fffbdb22d87f40","8f44c0a34d704e0-13f6f77a8d781b5e"]},"geometry":{"type":"LineString","coordinates":[[-83.637563,32.828533],[-83.63844900000001,32.828741],[-83.639356,32.828964]]},"id":"8844c0a34dfffff-13fef9aa7b2a8b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64,32.829161]},"id":"8f44c0a34d71819-13f7f5e808e081d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d704e0-13f6f77a8d781b5e","8f44c0a34d71819-13f7f5e808e081d9"]},"geometry":{"type":"LineString","coordinates":[[-83.639356,32.828964],[-83.63970780000001,32.829051400000004],[-83.64,32.829161]]},"id":"8a44c0a34d77fff-13bef6af7700f47a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36956798-13df5ced6dba3717","8f44c0a36952964-13b7bc576ca78f42"]},"geometry":{"type":"LineString","coordinates":[[-83.624257,32.835825],[-83.62410700000001,32.835735],[-83.62401700000001,32.8356804]]},"id":"8a44c0a36957fff-139f9ca277cfd21f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62413140000001,32.835402300000005]},"id":"8f44c0a36956d52-13bf7ca5ed6ff077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36956798-13df5ced6dba3717","8f44c0a36956d52-13bf7ca5ed6ff077"]},"geometry":{"type":"LineString","coordinates":[[-83.62401700000001,32.8356804],[-83.6240143,32.835591300000004],[-83.6240331,32.8355102],[-83.62406800000001,32.8354561],[-83.62413140000001,32.835402300000005]]},"id":"8b44c0a36956fff-13ffdcdae85db74d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62366200000001,32.835096]},"id":"8f44c0a3690bcb3-13ff1dcb4e875d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233758,32.8354389]},"id":"8f44c0a368243b0-13d75e7e2d1c513a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a368243b0-13d75e7e2d1c513a","8f44c0a3690bcb3-13ff1dcb4e875d3c"]},"geometry":{"type":"LineString","coordinates":[[-83.62366200000001,32.835096],[-83.6236147,32.835206],[-83.6235717,32.835253300000005],[-83.62350740000001,32.835323200000005],[-83.6233758,32.8354389]]},"id":"8844c0a369fffff-13f7de1a6e74f503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6234639,32.835546900000004]},"id":"8f44c0a36824250-139fde471a41ba3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36956798-13df5ced6dba3717","8f44c0a36824250-139fde471a41ba3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6234639,32.835546900000004],[-83.6235798,32.8355508],[-83.62367370000001,32.835568800000004],[-83.62375150000001,32.8355958],[-83.6238319,32.8356319],[-83.62401700000001,32.8356804]]},"id":"8844c0a369fffff-13bfdd98e8ef1b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61976250000001,32.84044]},"id":"8f44c0a3612892b-17ff275070eaea73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3612acf2-17ff392131c15fde","8f44c0a3612892b-17ff275070eaea73"]},"geometry":{"type":"LineString","coordinates":[[-83.6190189,32.8406259],[-83.61919830000001,32.8405311],[-83.61928850000001,32.840493900000006],[-83.6193513,32.840468200000004],[-83.61944840000001,32.8404456],[-83.6195556,32.8404368],[-83.6196582,32.840430500000004],[-83.61976250000001,32.84044]]},"id":"8a44c0a3612ffff-179ff83f15d96db2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53624330000001,32.868085400000005]},"id":"8f44c0b99a4dd0d-13fff337f71da497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.540377,32.869314700000004]},"id":"8f44c0b8a6dccce-17fff92062f20b8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b8a6dccce-17fff92062f20b8e","8f44c0b99a4dd0d-13fff337f71da497"]},"geometry":{"type":"LineString","coordinates":[[-83.53624330000001,32.868085400000005],[-83.53648390000001,32.8681472],[-83.53663730000001,32.8681982],[-83.53678790000001,32.8682615],[-83.53690660000001,32.868349],[-83.53699060000001,32.868422],[-83.53708040000001,32.8685168],[-83.5371817,32.8685606],[-83.53732360000001,32.8686214],[-83.5374597,32.8686944],[-83.5375205,32.8687698],[-83.5375726,32.8688646],[-83.5376334,32.8689303],[-83.5377753,32.8689497],[-83.5379259,32.8689765],[-83.5382096,32.8690057],[-83.538392,32.8690227],[-83.53854840000001,32.8690227],[-83.53866710000001,32.8690178],[-83.5388293,32.8690616],[-83.5390464,32.8691783],[-83.53930120000001,32.869334],[-83.53942860000001,32.8694167],[-83.5395503,32.8694337],[-83.5397385,32.869368],[-83.53986880000001,32.8693316],[-83.5401612,32.8693145],[-83.540377,32.869314700000004]]},"id":"8544c0bbfffffff-13ffee48b12b647c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7658155,32.8772182]},"id":"8f44c0b5038a4b4-17d5e2bd548e4927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.79206160000001,32.9077141]},"id":"8f44c0b5c783a0d-13bdd2a980aae603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b5c783a0d-13bdd2a980aae603","8f44c0b5038a4b4-17d5e2bd548e4927"]},"geometry":{"type":"LineString","coordinates":[[-83.7658155,32.8772182],[-83.76659020000001,32.877920200000005],[-83.7673372,32.8786142],[-83.768719,32.879869400000004],[-83.77044690000001,32.8814677],[-83.7715397,32.882494300000005],[-83.7722437,32.8832064],[-83.77291550000001,32.883923100000004],[-83.77373510000001,32.884870400000004],[-83.77444600000001,32.8857461],[-83.774845,32.886243300000004],[-83.77536860000001,32.8868965],[-83.7797323,32.892342500000005],[-83.7823516,32.895605],[-83.784943,32.8988359],[-83.7855073,32.899540200000004],[-83.78678520000001,32.9011386],[-83.78752390000001,32.9020537],[-83.7896226,32.904671900000004],[-83.79054260000001,32.9058164],[-83.7914506,32.9069482],[-83.79206160000001,32.9077141]]},"id":"8544c0b7fffffff-179fe1bd4d68f9f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76740910000001,32.880062800000005]},"id":"8f44c0b502f5cf5-17b7fed95996e69f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7724077,32.883574100000004]},"id":"8f44c0b5151e01e-17ddf2a538ec7cc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b502f5cf5-17b7fed95996e69f","8f44c0b5151e01e-17ddf2a538ec7cc5"]},"geometry":{"type":"LineString","coordinates":[[-83.76740910000001,32.880062800000005],[-83.76743300000001,32.880118],[-83.7675068,32.8802917],[-83.7675727,32.8804551],[-83.7676397,32.8805999],[-83.76772170000001,32.880738],[-83.7678047,32.8808619],[-83.76788140000001,32.8809671],[-83.76800370000001,32.881109],[-83.7680974,32.881207700000004],[-83.76819640000001,32.881301900000004],[-83.76838500000001,32.881462],[-83.76850900000001,32.881549],[-83.76863900000001,32.881635],[-83.768809,32.881732],[-83.768946,32.881800000000005],[-83.76912,32.881878],[-83.769895,32.882188400000004],[-83.7706845,32.8825008],[-83.77102740000001,32.8826476],[-83.77127730000001,32.8827735],[-83.77150850000001,32.8829033],[-83.77175720000001,32.8830594],[-83.77188720000001,32.8831457],[-83.77213,32.8833293],[-83.7722715,32.8834506],[-83.7724077,32.883574100000004]]},"id":"8644c0b57ffffff-13f7f934d1d3f5c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7673513,32.8799148]},"id":"8f44c0b502f4ae5-17dffefd755e1ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b502f6bb0-17d7c054e42ec878","8f44c0b502f4ae5-17dffefd755e1ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.7673513,32.8799148],[-83.7671981,32.879913300000005],[-83.76680180000001,32.8799088]]},"id":"8a44c0b502f7fff-17ddffa93db1dacf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7530507,32.867502200000004]},"id":"8f44c0b5058512a-139de1e75a64bd53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.752949,32.867675600000005]},"id":"8f44c0b50585756-13fde226e5e24d09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5058512a-139de1e75a64bd53","8f44c0b50585756-13fde226e5e24d09"]},"geometry":{"type":"LineString","coordinates":[[-83.7530507,32.867502200000004],[-83.752949,32.867675600000005]]},"id":"8b44c0b50585fff-13d7f2071c66ef9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75444780000001,32.867365400000004]},"id":"8f44c0b50513768-17b7fe7e22600506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5051e574-1395fde7be097dbd","8f44c0b50513768-17b7fe7e22600506"]},"geometry":{"type":"LineString","coordinates":[[-83.75444780000001,32.867365400000004],[-83.7546885,32.8675082]]},"id":"8944c0b5053ffff-17f5de32e6a88630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7344607,32.833493600000004]},"id":"8f44c0b0b80b474-17978f4a186a4d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8e5b10-17f73ecc0e00c1c9","8f44c0b0b80b474-17978f4a186a4d16"]},"geometry":{"type":"LineString","coordinates":[[-83.7346624,32.8338739],[-83.7346376,32.8336668],[-83.7346205,32.8336302],[-83.7345954,32.833597000000005],[-83.7345626,32.8335655],[-83.7345257,32.833537500000006],[-83.7344607,32.833493600000004]]},"id":"8844c0b0b9fffff-17fe7ef30ec952d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7343165,32.8334652]},"id":"8f44c0b0b8e494d-17f7cfa43abcb731"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b80bd10-17ff3f2be8819470","8f44c0b0b8e494d-17f7cfa43abcb731"]},"geometry":{"type":"LineString","coordinates":[[-83.7343165,32.8334652],[-83.73436120000001,32.8334575],[-83.7344005,32.833440700000004],[-83.73444570000001,32.8334071],[-83.73447440000001,32.8333693],[-83.73449380000001,32.833328],[-83.734509,32.8332755]]},"id":"8a44c0b0b80ffff-17d6af5ac487e242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318729,32.828690800000004]},"id":"8f44c0b0b9a28b3-13dfd59b720b564e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b9a28b3-13dfd59b720b564e","8f44c0b0b80bd10-17ff3f2be8819470"]},"geometry":{"type":"LineString","coordinates":[[-83.734509,32.8332755],[-83.73446360000001,32.8331541],[-83.734384,32.8329809],[-83.73426900000001,32.8327714],[-83.7341763,32.8326141],[-83.73405460000001,32.8324506],[-83.73385160000001,32.832212500000004],[-83.73346790000001,32.831780300000005],[-83.7332262,32.831501700000004],[-83.7331094,32.8313647],[-83.73299800000001,32.8312277],[-83.7329306,32.8311313],[-83.73285,32.8310139],[-83.7327633,32.8308783],[-83.7326874,32.8307427],[-83.7326137,32.830592],[-83.7325095,32.8303476],[-83.73241870000001,32.8301032],[-83.7322573,32.8296257],[-83.73207450000001,32.8291459],[-83.7319777,32.8289172],[-83.7318729,32.828690800000004]]},"id":"8844c0b0b9fffff-179e32ac73351b38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322164,32.832943400000005]},"id":"8f44c0b0b8a8376-13bfb4c4c2c87529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8ac75e-13b7d4ed66071dff","8f44c0b0b8a8376-13bfb4c4c2c87529"]},"geometry":{"type":"LineString","coordinates":[[-83.7321514,32.8325404],[-83.7321684,32.832804200000005],[-83.7321727,32.8328531],[-83.732185,32.8328901],[-83.7322164,32.832943400000005]]},"id":"8a44c0b0b8affff-13b654e262841c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7350674,32.8371968]},"id":"8f44c0b0bb95225-17960dcee0f4984c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0bb95225-17960dcee0f4984c","8f44c0b0b8a9784-17feb4928d455b30"]},"geometry":{"type":"LineString","coordinates":[[-83.7322968,32.833242600000005],[-83.73240750000001,32.833479700000005],[-83.7324847,32.8336309],[-83.732543,32.8337456],[-83.732608,32.8338581],[-83.73271650000001,32.8340215],[-83.73284100000001,32.8341793],[-83.7329514,32.834313300000005],[-83.7331328,32.8345025],[-83.7334422,32.8348175],[-83.733607,32.8349846],[-83.73376900000001,32.8351528],[-83.73387050000001,32.8352694],[-83.73396650000001,32.835387100000005],[-83.7340468,32.835489],[-83.734119,32.8355921],[-83.7341839,32.8356914],[-83.73424610000001,32.835793100000004],[-83.7343223,32.835928200000005],[-83.7343931,32.8360633],[-83.7345482,32.8363618],[-83.7347891,32.8367844],[-83.73492420000001,32.836992800000004],[-83.7350674,32.8371968]]},"id":"8744c0b0bffffff-13b67126247764a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7266604,32.809313700000004]},"id":"8f44c0b08cb6b89-13ff32554f830a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7265309,32.8091084]},"id":"8f44c0b08cb69b2-13fee2a6319d272c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b08cb6b89-13ff32554f830a32","8f44c0b08cb69b2-13fee2a6319d272c"]},"geometry":{"type":"LineString","coordinates":[[-83.7266604,32.809313700000004],[-83.7265309,32.8091084]]},"id":"8b44c0b08cb6fff-13bee27db99a566b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7267654,32.809483900000004]},"id":"8f44c0b08cb0c06-13f77213a2e651ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b08cb419c-13b731b28d957211","8f44c0b08cb0c06-13f77213a2e651ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7267654,32.809483900000004],[-83.7267609,32.8094357],[-83.72676460000001,32.8093992],[-83.7267738,32.8093627],[-83.72679640000001,32.8093166],[-83.7268339,32.809262600000004],[-83.7269208,32.8091761]]},"id":"8a44c0b08cb7fff-13fff1f4b531c7f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b08cb6b89-13ff32554f830a32","8f44c0b08cb0c06-13f77213a2e651ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7267654,32.809483900000004],[-83.72670310000001,32.8093804],[-83.7266604,32.809313700000004]]},"id":"8a44c0b08cb7fff-13b6323415588de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7267966,32.808959800000004]},"id":"8f44c0b0e369ac5-139fe20027cb1bc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7263899,32.808937900000004]},"id":"8f44c0b0e3694d3-139632fe5c1e746e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e3694d3-139632fe5c1e746e","8f44c0b0e369ac5-139fe20027cb1bc2"]},"geometry":{"type":"LineString","coordinates":[[-83.7267966,32.808959800000004],[-83.7267102,32.8089742],[-83.7266603,32.8089809],[-83.72661120000001,32.8089849],[-83.7265605,32.8089849],[-83.7265052,32.8089798],[-83.7264476,32.8089628],[-83.7263899,32.808937900000004]]},"id":"8b44c0b0e369fff-13b7f280bf29329b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7247229,32.8103795]},"id":"8f44c0b0e260ce6-17973710348b357b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e260ce6-17973710348b357b","8f44c0b0e265092-17be35eabb4f3ad2"]},"geometry":{"type":"LineString","coordinates":[[-83.7247229,32.8103795],[-83.72485470000001,32.8103345],[-83.7249316,32.8103244],[-83.72500120000001,32.8103251],[-83.7250594,32.8103354],[-83.72510820000001,32.810355300000005],[-83.7251531,32.8103804],[-83.7251925,32.8104099]]},"id":"8a44c0b0e267fff-1797f67a545a5ac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7347009,32.9296987]},"id":"8f44c0a2825b70d-17f7beb3ff12b0f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2875a71a-17d72434caf6295d","8f44c0a2825b70d-17f7beb3ff12b0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7347009,32.9296987],[-83.73407080000001,32.9293621],[-83.73384370000001,32.9292394],[-83.7329764,32.9287766],[-83.732048,32.9282783],[-83.7311332,32.9277991],[-83.73038790000001,32.9274325],[-83.729483,32.927005],[-83.72850100000001,32.926584000000005],[-83.7272344,32.9260767],[-83.7258932,32.9255506]]},"id":"8644c0a2fffffff-139e395242846e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7355656,32.9301662]},"id":"8f44c0a295a08f1-139fec978ba488ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a295a08f1-139fec978ba488ae","8f44c0a2825b70d-17f7beb3ff12b0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7355656,32.9301662],[-83.7347009,32.9296987]]},"id":"8944c0a295bffff-13f7dda5cf678dc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2825b70d-17f7beb3ff12b0f1","8f44c0a2821ba00-13b6343a09ba46ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7347009,32.9296987],[-83.73439330000001,32.9294436],[-83.734239,32.9293108],[-83.73408400000001,32.9291655],[-83.7339829,32.9290654],[-83.73387960000001,32.9289517],[-83.7336739,32.9287197],[-83.7330895,32.9280412],[-83.73259110000001,32.9274719],[-83.7324384,32.927337900000005]]},"id":"8844c0a283fffff-179771865e54f929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72711360000001,32.9264043]},"id":"8f44c0a28660025-17deb13a0265f887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a28660025-17deb13a0265f887","8f44c0a282d215b-179f58f750b3212d"]},"geometry":{"type":"LineString","coordinates":[[-83.72711360000001,32.9264043],[-83.72734600000001,32.926551],[-83.727508,32.926653],[-83.7276454,32.926743900000005],[-83.72781350000001,32.926859900000004],[-83.72803300000001,32.9270269],[-83.7303088,32.928816000000005],[-83.73049710000001,32.928946100000005]]},"id":"8744c0a28ffffff-13fe3d0f9a4f599d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70864680000001,32.918017500000005]},"id":"8f44c0a2a8a9620-13f6fe4fce7fdad4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8ab912-13dfff0f26a1f5b8","8f44c0a2a8a9620-13f6fe4fce7fdad4"]},"geometry":{"type":"LineString","coordinates":[[-83.70864680000001,32.918017500000005],[-83.70857430000001,32.9179523],[-83.7085012,32.917897100000005],[-83.7084214,32.917844200000005],[-83.7083406,32.9178015]]},"id":"8a44c0a2a8affff-139eeeac1ccb18a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8a9af3-13bf5db37090166b","8f44c0a2a8a9620-13f6fe4fce7fdad4"]},"geometry":{"type":"LineString","coordinates":[[-83.7088969,32.9179637],[-83.70880460000001,32.9179631],[-83.70873060000001,32.917982900000005],[-83.70864680000001,32.918017500000005]]},"id":"8b44c0a2a8a9fff-13defe0305a4d17a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68655530000001,32.902203400000005]},"id":"8f44c0a05c45760-17d7a43efbc23cd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c45760-17d7a43efbc23cd5","8f44c0a05c6ad8b-17f7b39e60f2e4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6868122,32.902258700000004],[-83.6866555,32.9022293],[-83.68655530000001,32.902203400000005]]},"id":"8944c0a05c7ffff-17d7b3eef3ee1dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6863551,32.9021403]},"id":"8f44c0a05c454d5-179fb4bc155748dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c454d5-179fb4bc155748dc","8f44c0a05c4691c-139795fa2fa17a86"]},"geometry":{"type":"LineString","coordinates":[[-83.6863551,32.9021403],[-83.6862141,32.902058100000005],[-83.68609140000001,32.901958400000005],[-83.68596500000001,32.901848300000005],[-83.6859056,32.901776000000005],[-83.6858462,32.901692100000005]]},"id":"8a44c0a05c47fff-179eb5667a4c6d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68637100000001,32.9037729]},"id":"8f44c0a05c4b4c0-139e94b22f2174d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68663450000001,32.904015]},"id":"8f44c0a051a594e-13b7e40d7a419caa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a051a594e-13b7e40d7a419caa","8f44c0a05c4b4c0-139e94b22f2174d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68637100000001,32.9037729],[-83.68643800000001,32.9038033],[-83.6864843,32.903830400000004],[-83.6865212,32.9038619],[-83.68656080000001,32.9038996],[-83.6865956,32.903944100000004],[-83.68663450000001,32.904015]]},"id":"8844c0a051fffff-13dec455a62927bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66728710000001,32.7908196]},"id":"8f44c0b1c40e0d4-17d6f3499b31e1d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c40e0d4-17d6f3499b31e1d6","8f44c0b1c40ab22-179ff2f7dde3e955"]},"geometry":{"type":"LineString","coordinates":[[-83.6674179,32.7911391],[-83.6674359,32.7910581],[-83.6674303,32.7909987],[-83.6674057,32.7909351],[-83.6673615,32.7908755],[-83.66728710000001,32.7908196]]},"id":"8a44c0b1c40ffff-17b6b307bebf4682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668535,32.7896741]},"id":"8f44c0b1c42c022-139ef03da3143a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c552a73-13b7bf658b355abe","8f44c0b1c42c022-139ef03da3143a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.668535,32.7896741],[-83.66858230000001,32.7895607],[-83.66862,32.7895069],[-83.66866440000001,32.7894561],[-83.66872000000001,32.789404000000005],[-83.66878770000001,32.789349800000004],[-83.66888080000001,32.789304300000005]]},"id":"8844c0b1c5fffff-1397ffe2369a6e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6656294,32.791133300000006]},"id":"8f44c0b1c4a9b23-179ef755a999e5c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c41b4ae-17d6f666d1bf8f25","8f44c0b1c4a9b23-179ef755a999e5c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6656294,32.791133300000006],[-83.6657254,32.79115],[-83.6658029,32.7911717],[-83.6658695,32.791203],[-83.665918,32.7912418],[-83.665964,32.791288800000004],[-83.6659929,32.7913383],[-83.66601150000001,32.791403100000004]]},"id":"8844c0b1c5fffff-17d7f6c9de6aa96f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667759,32.78696]},"id":"8f44c0b1c500405-13feb222aae5d88a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1c500405-13feb222aae5d88a","8f44c0b1c50181a-13f7f09edb5a40df"]},"geometry":{"type":"LineString","coordinates":[[-83.6683795,32.787187],[-83.6682849,32.787187700000004],[-83.668197,32.787179],[-83.668137,32.787166],[-83.668051,32.787132],[-83.66797700000001,32.787097],[-83.667845,32.787025],[-83.667759,32.78696]]},"id":"8a44c0b1c507fff-13dfb168d4103afe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bc13bb0-13dfc79768f14720","8f44c0b1bcaca5b-13f7c8850fca18ae"]},"geometry":{"type":"LineString","coordinates":[[-83.65859040000001,32.826091600000005],[-83.658637,32.8260184],[-83.658699,32.825957],[-83.65876680000001,32.825917700000005],[-83.65884000000001,32.8258886],[-83.6589706,32.8258448]]},"id":"8844c0b1bdfffff-1397c81a3db9f1d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65528690000001,32.8294927]},"id":"8f44c0b1b511848-13d6f095b4debb31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd99790-1797ebd8772bade9","8f44c0b1b511848-13d6f095b4debb31"]},"geometry":{"type":"LineString","coordinates":[[-83.65528690000001,32.8294927],[-83.6557398,32.8289338],[-83.65617800000001,32.828367],[-83.6563407,32.828121800000005],[-83.6565588,32.8277513],[-83.65671590000001,32.8274454],[-83.65684920000001,32.8271316],[-83.6569587,32.8268219],[-83.65708830000001,32.8263818],[-83.65715180000001,32.826101300000005],[-83.6571997,32.8257903],[-83.65723290000001,32.825411800000005],[-83.6572412,32.825054200000004],[-83.65722810000001,32.8246842]]},"id":"8744c0b1bffffff-17b6ed6212c7f5fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558061,32.8152071]},"id":"8f44c0b1ab114e3-13f6ff513e200241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab114e3-13f6ff513e200241","8f44c0b1a84e4d2-17bff2a73b6a1ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.65443970000001,32.813480600000005],[-83.6544413,32.813405],[-83.6544514,32.8133168],[-83.65447610000001,32.813239],[-83.65451130000001,32.813173],[-83.65456400000001,32.8131068],[-83.6546383,32.8130447],[-83.6547213,32.812996600000005],[-83.65480670000001,32.8129653],[-83.6549069,32.8129478],[-83.6550192,32.812945500000005],[-83.6551158,32.812963],[-83.65520430000001,32.8129952],[-83.6552752,32.8130319],[-83.65535940000001,32.813090100000004],[-83.6554239,32.813140000000004],[-83.6554816,32.8131955],[-83.65553390000001,32.813255600000005],[-83.6555819,32.813320000000004],[-83.6556281,32.8134024],[-83.655663,32.813487],[-83.65568520000001,32.8135646],[-83.65569500000001,32.813635600000005],[-83.6556994,32.8137065],[-83.6557023,32.8139565],[-83.65573140000001,32.8145875],[-83.6557647,32.814897300000005],[-83.6558061,32.8152071]]},"id":"8744c0b1affffff-17ded0652149a533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a96a315-139fee4f4be3cb34","8f44c0b1ab114e3-13f6ff513e200241"]},"geometry":{"type":"LineString","coordinates":[[-83.6562188,32.8099574],[-83.6560819,32.810586],[-83.6559531,32.8113734],[-83.65590540000001,32.811739700000004],[-83.65585610000001,32.8123833],[-83.65583740000001,32.8129724],[-83.6558318,32.8133903],[-83.6558061,32.8152071]]},"id":"8744c0b1affffff-13f7ff10f765a373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab31a44-179ecc7b191114a5","8f44c0b1ab06c66-17b7cd6fc220d926"]},"geometry":{"type":"LineString","coordinates":[[-83.6565764,32.8144952],[-83.6566049,32.8144451],[-83.6566368,32.8143966],[-83.656665,32.814364000000005],[-83.65670370000001,32.8143341],[-83.65675440000001,32.814307500000005],[-83.6568031,32.814290400000004],[-83.6568598,32.8142744],[-83.65696790000001,32.8142572]]},"id":"8944c0b1ab3ffff-17d6dd04c9d9fe37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64654490000001,32.8395567]},"id":"8f44c0a34a86163-13d6f5ed746645ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34aa212a-13fee49106cb2e0b","8f44c0a34a86163-13d6f5ed746645ff"]},"geometry":{"type":"LineString","coordinates":[[-83.64710240000001,32.8389832],[-83.6467628,32.839335600000005],[-83.64654490000001,32.8395567]]},"id":"8944c0a34abffff-13b6f53ec5c8e91d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738422,32.924926]},"id":"8f44c0a29d932a8-17bec59e4bdf58d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73893100000001,32.925182]},"id":"8f44c0a29d98db2-17dec4602e1f9723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a29d98db2-17dec4602e1f9723","8f44c0a29d932a8-17bec59e4bdf58d2"]},"geometry":{"type":"LineString","coordinates":[[-83.738422,32.924926],[-83.73851020000001,32.925008000000005],[-83.73882130000001,32.925184800000004],[-83.73893100000001,32.925182]]},"id":"8944c0a29dbffff-17b6d506f9f9a9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a29d98db2-17dec4602e1f9723","8f44c0a29d932a8-17bec59e4bdf58d2"]},"geometry":{"type":"LineString","coordinates":[[-83.73893100000001,32.925182],[-83.738878,32.925131],[-83.7385414,32.9249397],[-83.738422,32.924926]]},"id":"8944c0a29dbffff-17ff74f885476df8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73490860000001,32.924313000000005]},"id":"8f44c0a2830900c-13bfae3228f64653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7334812,32.9242173]},"id":"8f44c0a2831909e-1397d1ae4b96ecfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2830900c-13bfae3228f64653","8f44c0a2831909e-1397d1ae4b96ecfe"]},"geometry":{"type":"LineString","coordinates":[[-83.73490860000001,32.924313000000005],[-83.7334812,32.9242173]]},"id":"8844c0a283fffff-13b7cff03464a700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73566220000001,32.9256666]},"id":"8f44c0a2835c51b-179fac5b21fba151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835c51b-179fac5b21fba151","8f44c0a2835c783-17ff8c467f8c33f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7356953,32.9258168],[-83.73566220000001,32.9256666]]},"id":"8b44c0a2835cfff-17be9c50d4799991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7350014,32.9247906]},"id":"8f44c0a28356a46-13fe2df82b4ba063"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349229,32.925783]},"id":"8f44c0a2822d8b5-17d66e2936feb780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28356a46-13fe2df82b4ba063","8f44c0a2822d8b5-17d66e2936feb780"]},"geometry":{"type":"LineString","coordinates":[[-83.7350014,32.9247906],[-83.7349229,32.925783]]},"id":"8944c0a2837ffff-17b64e10b1ac8b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7358841,32.9256295]},"id":"8f44c0a2835c120-17f67bd0768ba8a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7359428,32.9248453]},"id":"8f44c0a28346429-179e5babc296a05d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835c120-17f67bd0768ba8a1","8f44c0a28346429-179e5babc296a05d"]},"geometry":{"type":"LineString","coordinates":[[-83.7358841,32.9256295],[-83.7359428,32.9248453]]},"id":"8944c0a2837ffff-17976bbe29d20d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7353818,32.924812700000004]},"id":"8f44c0a28354271-13f7fd0a695910df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73531200000001,32.9257208]},"id":"8f44c0a2835ec53-17bf8d3608ea0afa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28354271-13f7fd0a695910df","8f44c0a2835ec53-17bf8d3608ea0afa"]},"geometry":{"type":"LineString","coordinates":[[-83.7353818,32.924812700000004],[-83.73531200000001,32.9257208]]},"id":"8944c0a2837ffff-1797cd2030319ffa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7366576,32.9256748]},"id":"8f44c0a2834168d-1796c9ed0b5ec0b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834374c-17bebac3066b3130","8f44c0a2834168d-1796c9ed0b5ec0b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7366576,32.9256748],[-83.7363152,32.925741900000006]]},"id":"8a44c0a28347fff-17b7ca580351d48f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7334395,32.9271894]},"id":"8f44c0a2820aa5d-13d771c85460a359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7332647,32.9269437]},"id":"8f44c0a2820a98e-13bfd2359ef697a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2820a98e-13bfd2359ef697a8","8f44c0a2820aa5d-13d771c85460a359"]},"geometry":{"type":"LineString","coordinates":[[-83.7334395,32.9271894],[-83.733373,32.927018600000004],[-83.7332647,32.9269437]]},"id":"8b44c0a2820afff-13fff1f3fb6c47e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73332470000001,32.927230200000004]},"id":"8f44c0a2820a309-13def2101e4045a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2820a98e-13bfd2359ef697a8","8f44c0a2820a309-13def2101e4045a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7332647,32.9269437],[-83.7332576,32.9270681],[-83.73332470000001,32.927230200000004]]},"id":"8b44c0a2820afff-1397122cdb61f87a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713739,32.90309]},"id":"8f44c0a2e15b708-17ff41e127e53b22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e15b708-17ff41e127e53b22","8f44c0a2e075154-17b641e2638b1deb"]},"geometry":{"type":"LineString","coordinates":[[-83.71373700000001,32.903402],[-83.713739,32.90309]]},"id":"8944c0a2e07ffff-17d6c1e1c9a8cc0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7139415,32.9272678]},"id":"8f44c0a2aac0b36-13f661629815258b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138735,32.9271316]},"id":"8f44c0a2aac0906-13b7418d11f5b62c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac0b36-13f661629815258b","8f44c0a2aac0906-13b7418d11f5b62c"]},"geometry":{"type":"LineString","coordinates":[[-83.7139415,32.9272678],[-83.714065,32.9272366],[-83.7144835,32.9270948],[-83.7149502,32.9269462],[-83.71504940000001,32.9269012],[-83.7150843,32.9268179],[-83.7150146,32.926777300000005],[-83.71494480000001,32.9267593],[-83.7139942,32.9270739],[-83.7138735,32.9271316]]},"id":"8944c0a2aafffff-13def0004b5e5c2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71331670000001,32.9273469]},"id":"8f44c0a2aac288a-13b7d2e91f92b8a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128593,32.9272267]},"id":"8f44c0a2aad5754-13def406f9256938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aad5754-13def406f9256938","8f44c0a2aac288a-13b7d2e91f92b8a1"]},"geometry":{"type":"LineString","coordinates":[[-83.71331670000001,32.9273469],[-83.71315580000001,32.9273447],[-83.7130722,32.9273176],[-83.7130029,32.9272951],[-83.7128593,32.9272267]]},"id":"8944c0a2aafffff-1396737b47361b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6856472,32.745966100000004]},"id":"8f44c0b06180d45-17d6d67681f28a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b061810a0-139fe5aec893e2ef","8f44c0b06180d45-17d6d67681f28a81"]},"geometry":{"type":"LineString","coordinates":[[-83.6856472,32.745966100000004],[-83.6859668,32.746463]]},"id":"8a44c0b06187fff-17f6a612a7f22aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745912,32.903136]},"id":"8f44c0a2dd80860-179df3550e955264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dd9584c-1797f563ed2e29c0","8f44c0a2dd80860-179df3550e955264"]},"geometry":{"type":"LineString","coordinates":[[-83.745069,32.902949],[-83.74520600000001,32.902987],[-83.74560100000001,32.903081],[-83.745912,32.903136]]},"id":"8944c0a2ddbffff-17d7f45d8e206f8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738096,32.9222607]},"id":"8f44c0a28aeac42-17bef66a0e8190df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeb3a4-1796754e26df3559","8f44c0a28aeac42-17bef66a0e8190df"]},"geometry":{"type":"LineString","coordinates":[[-83.7385502,32.922778300000004],[-83.7385199,32.922743600000004],[-83.738096,32.9222607]]},"id":"8a44c0a28aeffff-17deb5dc1017e2d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75175800000001,32.914681]},"id":"8f44c0a2d01b343-13bfe50f4e174b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d01b343-13bfe50f4e174b08","8f44c0a2dc402e0-13f7e743aaa413ea"]},"geometry":{"type":"LineString","coordinates":[[-83.750855,32.908018000000006],[-83.750876,32.908544],[-83.750939,32.909329],[-83.75098,32.909633],[-83.75110000000001,32.910212],[-83.751177,32.910618],[-83.751214,32.910897],[-83.751226,32.911051],[-83.751227,32.911312],[-83.751216,32.911443000000006],[-83.751152,32.911853],[-83.75113900000001,32.911994],[-83.75113400000001,32.912132],[-83.751141,32.912264],[-83.751159,32.912397],[-83.751191,32.912506],[-83.751247,32.912636],[-83.75151000000001,32.913141],[-83.75163,32.913386],[-83.75166300000001,32.913473],[-83.75172,32.913672000000005],[-83.75174200000001,32.913826],[-83.75175200000001,32.914045],[-83.75175800000001,32.914681]]},"id":"8744c0a2dffffff-13bde652e89d340a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73138900000001,32.806434]},"id":"8f44c0b08d06913-13f756c9ee6de0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73141000000001,32.8067255]},"id":"8f44c0b08d06301-13bf76bccc058aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d06913-13f756c9ee6de0eb","8f44c0b08d06301-13bf76bccc058aed"]},"geometry":{"type":"LineString","coordinates":[[-83.73138900000001,32.806434],[-83.73141000000001,32.8067255]]},"id":"8b44c0b08d06fff-13d676c355f593a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1acda6ee-17bef485ad5150b4","8f44c0b1a5760ea-17b7f5bc1603a2bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6400703,32.814293500000005],[-83.640178,32.814147000000006],[-83.640236,32.814085],[-83.640298,32.814027],[-83.640371,32.813982],[-83.640567,32.813889]]},"id":"8844c0b1a5fffff-1797f52f7a6e2db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661612,32.865191]},"id":"8f44c0a352c3da3-13fee1248305b8a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a352d582b-139fe24b809ed599","8f44c0a352c3da3-13fee1248305b8a9"]},"geometry":{"type":"LineString","coordinates":[[-83.66114,32.864629],[-83.661174,32.8647093],[-83.6615239,32.865116900000004],[-83.661612,32.865191]]},"id":"8944c0a352fffff-13d6e1c1ce21c315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6440414,32.887569400000004]},"id":"8f44c0a06d0bb76-139eec0a2e485ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64745330000001,32.887574400000005]},"id":"8f44c0a06992176-139ee3b5bd5fdd9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a06992176-139ee3b5bd5fdd9a","8f44c0a06d0bb76-139eec0a2e485ac0"]},"geometry":{"type":"LineString","coordinates":[[-83.6440414,32.887569400000004],[-83.64401860000001,32.8876787],[-83.64404400000001,32.8877485],[-83.644087,32.887767600000004],[-83.6441245,32.8877789],[-83.64419020000001,32.887775500000004],[-83.6444826,32.887737200000004],[-83.6445925,32.8876877],[-83.64467970000001,32.887629100000005],[-83.64477090000001,32.887524400000004],[-83.6448809,32.887417400000004],[-83.6449707,32.887378000000005],[-83.6450753,32.8873746],[-83.64516250000001,32.8874027],[-83.64521620000001,32.887441],[-83.6452457,32.8874951],[-83.64527790000001,32.8875886],[-83.64530740000001,32.8878296],[-83.6453369,32.8879298],[-83.645365,32.8879613],[-83.64541870000001,32.887995100000005],[-83.6454911,32.8880131],[-83.6455488,32.8880131],[-83.64562520000001,32.8879906],[-83.6457982,32.8879073],[-83.64599000000001,32.88778],[-83.6461938,32.887637000000005],[-83.6463212,32.887582900000005],[-83.6464701,32.8875401],[-83.6467088,32.887516500000004],[-83.64692740000001,32.887530000000005],[-83.64745330000001,32.887574400000005]]},"id":"8744c0a06ffffff-13d7e83a44e717d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6352806,32.832716500000004]},"id":"8f44c0a34cf0085-139fd16dae0c1692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63511510000001,32.8325448]},"id":"8f44c0a34cf635a-13b781d517f04b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf0085-139fd16dae0c1692","8f44c0a34cf635a-13b781d517f04b09"]},"geometry":{"type":"LineString","coordinates":[[-83.6352806,32.832716500000004],[-83.63528570000001,32.8326555],[-83.63527380000001,32.832601600000004],[-83.6352401,32.832571800000004],[-83.63519450000001,32.8325562],[-83.63511510000001,32.8325448]]},"id":"8a44c0a34cf7fff-13df318c019e7451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693573,32.867266]},"id":"8f44c0a2044c18a-17ff731cea297271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69379,32.867427]},"id":"8f44c0a2044c345-17dff2954fe73af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2044c345-17dff2954fe73af7","8f44c0a2044c18a-17ff731cea297271"]},"geometry":{"type":"LineString","coordinates":[[-83.693573,32.867266],[-83.693697,32.867365],[-83.69379,32.867427]]},"id":"8b44c0a2044cfff-17bf72da29939af0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75331410000001,32.8665375]},"id":"8f44c0b505a098a-17b5f142b5f29f41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50513768-17b7fe7e22600506","8f44c0b505a098a-17b5f142b5f29f41"]},"geometry":{"type":"LineString","coordinates":[[-83.75444780000001,32.867365400000004],[-83.75447820000001,32.8673578],[-83.7544989,32.86735],[-83.754517,32.8673364],[-83.7545291,32.8673201],[-83.7545351,32.8673038],[-83.7545358,32.867285200000005],[-83.75453180000001,32.8672649],[-83.7545204,32.8672458],[-83.7545023,32.8672289],[-83.75430250000001,32.867128],[-83.75416630000001,32.867055400000005],[-83.7540208,32.8669675],[-83.7538572,32.8668515],[-83.7537198,32.8667383],[-83.75358100000001,32.8666088],[-83.75352600000001,32.8665496],[-83.75350320000001,32.8665248],[-83.7534777,32.8665085],[-83.7534535,32.8664995],[-83.75342400000001,32.8664939],[-83.7533959,32.8664916],[-83.7533691,32.8664933],[-83.7533463,32.8664989],[-83.7533282,32.8665091],[-83.75331680000001,32.8665226],[-83.75331410000001,32.8665375]]},"id":"8844c0b505fffff-1797ffaad48f48d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635755,32.843525]},"id":"8f44c0a3471b429-179720452a66cffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636988,32.843885]},"id":"8f44c0a34625dab-17f6fd428fb89661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3471b429-179720452a66cffd","8f44c0a34625dab-17f6fd428fb89661"]},"geometry":{"type":"LineString","coordinates":[[-83.635755,32.843525],[-83.636306,32.843696],[-83.636988,32.843885]]},"id":"8944c0a3463ffff-17f6fec4b7669b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7148944,32.9256539]},"id":"8f44c0a2aa0a34c-1797bf0f046b0da5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155661,32.928418400000005]},"id":"8f44c0a2bdb0cf4-17d7bd6b38d29888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0a34c-1797bf0f046b0da5","8f44c0a2bdb0cf4-17d7bd6b38d29888"]},"geometry":{"type":"LineString","coordinates":[[-83.7148944,32.9256539],[-83.7149562,32.925729100000005],[-83.7149845,32.9260796],[-83.7150376,32.9263143],[-83.71517560000001,32.926590600000004],[-83.715255,32.926756000000005],[-83.71533840000001,32.926956000000004],[-83.7155118,32.927345100000004],[-83.71558970000001,32.9276422],[-83.71557200000001,32.9281205],[-83.7155661,32.928418400000005]]},"id":"8844c0a2abfffff-13dfbe0765b97baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71577330000001,32.9284455]},"id":"8f44c0a2bdb08e3-17d67ce9b325d798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71505160000001,32.925522]},"id":"8f44c0a2aa086a4-17b77eacc4f713a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bdb08e3-17d67ce9b325d798","8f44c0a2aa086a4-17b77eacc4f713a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71577330000001,32.9284455],[-83.7157914,32.9281353],[-83.71580560000001,32.9277432],[-83.71575250000001,32.9274847],[-83.7157135,32.9273006],[-83.7154383,32.9266895],[-83.71532780000001,32.9264628],[-83.7151968,32.9261361],[-83.71515790000001,32.9258449],[-83.7151614,32.925628100000004],[-83.71510830000001,32.9255508],[-83.71505160000001,32.925522]]},"id":"8844c0a2abfffff-13b77d8e683c9c72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1111d440-1396e700038f18d6","8f44c0b11119c42-13dfe70f874f2b4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6592128,32.772685],[-83.6591918,32.772842000000004],[-83.659188,32.772981]]},"id":"8a44c0b1111ffff-13fef70a38ca911d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110ada9-13dff605782fa6ee","8f44c0b1111da23-1397c62b0a19d6fc"]},"geometry":{"type":"LineString","coordinates":[[-83.65961370000001,32.7727871],[-83.65955360000001,32.772660800000004]]},"id":"8a44c0b1110ffff-13bec6184146ef23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11102b02-179ec6c3d6f74410","8f44c0b11103425-17d7c6c02e947b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6593091,32.7718572],[-83.65930850000001,32.772020600000005],[-83.659315,32.772184]]},"id":"8a44c0b11107fff-17f6e6c3128e8aa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65944800000001,32.772076500000004]},"id":"8f44c0b11103d59-1797d66d0fd3de25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11103d59-1797d66d0fd3de25","8f44c0b11103425-17d7c6c02e947b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.659315,32.772184],[-83.65944800000001,32.772076500000004]]},"id":"8b44c0b11103fff-17b7f69691cb73d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71346580000001,32.923735]},"id":"8f44c0a2aa14171-13d6628bec0d4086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133249,32.923536]},"id":"8f44c0a2aa14d33-13de42e3ff3e4454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa14171-13d6628bec0d4086","8f44c0a2aa14d33-13de42e3ff3e4454"]},"geometry":{"type":"LineString","coordinates":[[-83.71346580000001,32.923735],[-83.7134206,32.9236329],[-83.7133249,32.923536]]},"id":"8b44c0a2aa14fff-139652b23d721664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71375090000001,32.9234017]},"id":"8f44c0a2aa32a51-139651d9b25f053f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa14171-13d6628bec0d4086","8f44c0a2aa32a51-139651d9b25f053f"]},"geometry":{"type":"LineString","coordinates":[[-83.71346580000001,32.923735],[-83.7134999,32.9236227],[-83.713604,32.9235166],[-83.71375090000001,32.9234017]]},"id":"8944c0a2aa3ffff-13f64240eef00b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133757,32.9237486]},"id":"8f44c0a2aa14189-13dee2c43959ba36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa14189-13dee2c43959ba36","8f44c0a2aa14d33-13de42e3ff3e4454"]},"geometry":{"type":"LineString","coordinates":[[-83.7133249,32.923536],[-83.7133596,32.9236619],[-83.7133757,32.9237486]]},"id":"8b44c0a2aa14fff-139e62d2b96d2002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7125341,32.9237661]},"id":"8f44c0a2aaa5916-13ffd4d23468c3f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaa5916-13ffd4d23468c3f4","8f44c0a2aa14189-13dee2c43959ba36"]},"geometry":{"type":"LineString","coordinates":[[-83.7125341,32.9237661],[-83.71270960000001,32.923782700000004],[-83.7130918,32.923659900000004],[-83.71323000000001,32.923659900000004],[-83.7133757,32.9237486]]},"id":"8844c0a2abfffff-13de63c606d7f56d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71222110000001,32.926688]},"id":"8f44c0a2aad6921-139e4595d5204b28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7124282,32.9268024]},"id":"8f44c0a2aad4462-13d7c51463651c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aad6921-139e4595d5204b28","8f44c0a2aad4462-13d7c51463651c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.71222110000001,32.926688],[-83.7122755,32.926715200000004],[-83.7124282,32.9268024]]},"id":"8a44c0a2aad7fff-13bf5554c3e08f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630351,32.816727]},"id":"8f44c0ba987011e-17976d76a2d87cd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63045500000001,32.816938]},"id":"8f44c0ba987022a-179f4d35a17751e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0ba987011e-17976d76a2d87cd0","8f44c0ba987022a-179f4d35a17751e2"]},"geometry":{"type":"LineString","coordinates":[[-83.630351,32.816727],[-83.63045500000001,32.816938]]},"id":"8b44c0ba9870fff-17df5d562b07e8f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631798,32.819021]},"id":"8f44c0ba9848a4c-13b729ee4f0da73a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0ba9848a4c-13b729ee4f0da73a","8f44c0ba987022a-179f4d35a17751e2"]},"geometry":{"type":"LineString","coordinates":[[-83.63045500000001,32.816938],[-83.63053000000001,32.817107],[-83.630605,32.817276],[-83.630739,32.817646],[-83.63083900000001,32.817895],[-83.630933,32.818102],[-83.631009,32.818247],[-83.631123,32.818419],[-83.631241,32.818573],[-83.63140800000001,32.818734],[-83.631614,32.8189],[-83.631798,32.819021]]},"id":"8944c0ba987ffff-17df8bdaf9a652a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6044499,32.812419600000005]},"id":"8f44c0ba8745791-13974cb2db285401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6031629,32.8135362]},"id":"8f44c0ba875aa76-17df6fd73acf8a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8745791-13974cb2db285401","8f44c0ba875aa76-17df6fd73acf8a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6044499,32.812419600000005],[-83.6031629,32.8135362]]},"id":"8944c0ba877ffff-13ff7e45065900e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6032964,32.8117128]},"id":"8f44c0ba8773574-17dfcf83c506fd13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6033731,32.8110141]},"id":"8f44c0ba8776a31-17b7df53db2a577d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8773574-17dfcf83c506fd13","8f44c0ba8776a31-17b7df53db2a577d"]},"geometry":{"type":"LineString","coordinates":[[-83.6032964,32.8117128],[-83.6028673,32.8114603],[-83.6033731,32.8110141]]},"id":"8944c0ba877ffff-179f4ffc1c3705b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a1e59b-179f73b046d088bc","8f44c0b04a13358-13b7739b45598e88"]},"geometry":{"type":"LineString","coordinates":[[-83.7195516,32.7446166],[-83.71958520000001,32.7444855]]},"id":"8944c0b04a3ffff-13f673a5c98de120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a1e59b-179f73b046d088bc","8f44c0b04a1e103-179673086287bc32"]},"geometry":{"type":"LineString","coordinates":[[-83.7195516,32.7446166],[-83.71962570000001,32.744616],[-83.7197051,32.7446117],[-83.7198202,32.744602]]},"id":"8b44c0b04a1efff-1796335c40f2cf00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7227371,32.743796800000005]},"id":"8f44c0b04b5365b-139f2be9540d4081"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a2d223-13fe3bc9bc3ebde1","8f44c0b04b5365b-139f2be9540d4081"]},"geometry":{"type":"LineString","coordinates":[[-83.7227371,32.743796800000005],[-83.72278770000001,32.7441539]]},"id":"8b44c0b04a2dfff-13feabd9897ed6e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72208830000001,32.744215700000005]},"id":"8f44c0b04a287ad-139efd7ed3d90223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a287ad-139efd7ed3d90223","8f44c0b04a74d89-13ff7bbacc06ba77"]},"geometry":{"type":"LineString","coordinates":[[-83.72208830000001,32.744215700000005],[-83.7225339,32.7442847],[-83.7226586,32.7443399],[-83.72273100000001,32.744451600000005],[-83.7228116,32.744597500000005]]},"id":"8844c0b04bfffff-13de3c7e299d3753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a287ad-139efd7ed3d90223","8f44c0b04b5365b-139f2be9540d4081"]},"geometry":{"type":"LineString","coordinates":[[-83.7227371,32.743796800000005],[-83.7226816,32.7439163],[-83.72261300000001,32.7439948],[-83.72250840000001,32.744069200000006],[-83.72208830000001,32.744215700000005]]},"id":"8a44c0b04a2ffff-13bffc9ba233b0ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a2d223-13fe3bc9bc3ebde1","8f44c0b04a287ad-139efd7ed3d90223"]},"geometry":{"type":"LineString","coordinates":[[-83.72208830000001,32.744215700000005],[-83.72266060000001,32.7441587],[-83.72278770000001,32.7441539]]},"id":"8a44c0b04a2ffff-13ffaca464fc492f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7234821,32.744123900000005]},"id":"8f44c0b04b58c42-13d77a17b13adf5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04a74d89-13ff7bbacc06ba77","8f44c0b04b58c42-13d77a17b13adf5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7228116,32.744597500000005],[-83.72287180000001,32.7444651],[-83.7229416,32.7443151],[-83.72308910000001,32.744241800000005],[-83.7234821,32.744123900000005]]},"id":"8844c0b04bfffff-13d77b0bbdc7ac22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72040600000001,32.810307800000004]},"id":"8f44c0b0e21a050-17fe719a4814b9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72078,32.810005100000005]},"id":"8f44c0b0e218c00-13bf30b08bc8e38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e21a050-17fe719a4814b9af","8f44c0b0e218c00-13bf30b08bc8e38a"]},"geometry":{"type":"LineString","coordinates":[[-83.72040600000001,32.810307800000004],[-83.7204485,32.810226400000005],[-83.7205893,32.8101171],[-83.72078,32.810005100000005]]},"id":"8a44c0b0e21ffff-1797712fc4d5e991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72041030000001,32.810080500000005]},"id":"8f44c0b0e21a991-13de71979ea4cd88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e21a991-13de71979ea4cd88","8f44c0b0e21a050-17fe719a4814b9af"]},"geometry":{"type":"LineString","coordinates":[[-83.72040600000001,32.810307800000004],[-83.72041030000001,32.810080500000005]]},"id":"8b44c0b0e21afff-17b77198efb0a333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72039450000001,32.8110921]},"id":"8f44c0b0e2f54da-17d6b1a17490d75e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72039410000001,32.8109186]},"id":"8f44c0b0e2f425d-17fe31a1b83edaf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2f54da-17d6b1a17490d75e","8f44c0b0e2f425d-17fe31a1b83edaf7"]},"geometry":{"type":"LineString","coordinates":[[-83.72039450000001,32.8110921],[-83.72039410000001,32.8109186]]},"id":"8b44c0b0e2f5fff-179e71a192068af5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203934,32.812180600000005]},"id":"8f44c0b0e2c282d-13fef1a22b5a4a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203923,32.8120615]},"id":"8f44c0b0e2c6280-13b671a2d5e6d95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2c6280-13b671a2d5e6d95f","8f44c0b0e2c282d-13fef1a22b5a4a23"]},"geometry":{"type":"LineString","coordinates":[[-83.7203934,32.812180600000005],[-83.7203923,32.8120615]]},"id":"8a44c0b0e2c7fff-13d7b1a280054525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7215427,32.8118162]},"id":"8f44c0b0e2eed9e-139f2ed3da0fb38c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e2c6280-13b671a2d5e6d95f","8f44c0b0e2eed9e-139f2ed3da0fb38c"]},"geometry":{"type":"LineString","coordinates":[[-83.7215427,32.8118162],[-83.7213081,32.811899100000005],[-83.72062550000001,32.812262100000005],[-83.7205517,32.812279000000004],[-83.72048740000001,32.812238400000005],[-83.7203923,32.8120615]]},"id":"8944c0b0e2fffff-13be30548dc9d84a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203727,32.8129415]},"id":"8f44c0b0e2ddca8-13de71af1f77f0e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206175,32.812612]},"id":"8f44c0b0e2c311b-139eb1161b25901d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c311b-139eb1161b25901d","8f44c0b0e2ddca8-13de71af1f77f0e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7203727,32.8129415],[-83.72040150000001,32.812862800000005],[-83.7204444,32.812770400000005],[-83.7206175,32.812612]]},"id":"8944c0b0e2fffff-13ff716e79e5d621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203667,32.8125991]},"id":"8f44c0b0e2c359c-139671b2dea417a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72038350000001,32.8124482]},"id":"8f44c0b0e2c2354-13b631a85e34cf50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2c359c-139671b2dea417a4","8f44c0b0e2c2354-13b631a85e34cf50"]},"geometry":{"type":"LineString","coordinates":[[-83.7203667,32.8125991],[-83.72038350000001,32.8124482]]},"id":"8a44c0b0e2c7fff-13d771ad924be454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72128500000001,32.8122556]},"id":"8f44c0b0e2c5215-13bfef74ed751846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72283010000001,32.8111182]},"id":"8f44c0b0e254651-17f6ebaf3e153260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e2c5215-13bfef74ed751846","8f44c0b0e254651-17f6ebaf3e153260"]},"geometry":{"type":"LineString","coordinates":[[-83.72128500000001,32.8122556],[-83.7215388,32.812046800000005],[-83.72211010000001,32.8116444],[-83.7227471,32.811295],[-83.72281550000001,32.8112127],[-83.72283010000001,32.8111182]]},"id":"8844c0b0e3fffff-17df7d83a09573e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723433,32.81111]},"id":"8f44c0b0e25594e-17dfea3666248543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7245314,32.810198]},"id":"8f44c0b0e266065-17b7e787e56143ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e25594e-17dfea3666248543","8f44c0b0e266065-17b7e787e56143ed"]},"geometry":{"type":"LineString","coordinates":[[-83.723433,32.81111],[-83.7234847,32.8110414],[-83.723639,32.8109027],[-83.7240936,32.8105623],[-83.72446640000001,32.8103561],[-83.724508,32.8102704],[-83.7245314,32.810198]]},"id":"8944c0b0e27ffff-17d6a8d775cbf2c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e260ce6-17973710348b357b","8f44c0b0e264329-17966631ef79840d"]},"geometry":{"type":"LineString","coordinates":[[-83.7247229,32.8103795],[-83.7250786,32.8101732]]},"id":"8a44c0b0e267fff-17d6e6a111e26106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7242712,32.810323600000004]},"id":"8f44c0b0e266695-17f6682a8f821268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7229849,32.8113377]},"id":"8f44c0b0e250b0a-17fe3b4e748c3c87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e250b0a-17fe3b4e748c3c87","8f44c0b0e266695-17f6682a8f821268"]},"geometry":{"type":"LineString","coordinates":[[-83.7242712,32.810323600000004],[-83.7239273,32.8106063],[-83.7236041,32.8108407],[-83.7233855,32.810974900000005],[-83.72308910000001,32.8111383],[-83.7230073,32.8112093],[-83.7229849,32.8113377]]},"id":"8944c0b0e27ffff-17bff9cdf77fcbcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e260ce6-17973710348b357b","8f44c0b0e266065-17b7e787e56143ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7245314,32.810198],[-83.7247229,32.8103795]]},"id":"8a44c0b0e267fff-17de774c197347ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e348743-13d7e5282f1efdc0","8f44c0b0e264329-17966631ef79840d"]},"geometry":{"type":"LineString","coordinates":[[-83.7255038,32.8096604],[-83.7251128,32.8099672],[-83.72505380000001,32.810034800000004],[-83.7250786,32.8101732]]},"id":"8844c0b0e3fffff-13f725d0f4d2b806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72958030000001,32.929767600000005]},"id":"8f44c0a2b92acaa-1396db34525ac92a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7296556,32.9297035]},"id":"8f44c0a2b92ad0e-17febb0544ed3feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2b92ad0e-17febb0544ed3feb","8f44c0a2b92acaa-1396db34525ac92a"]},"geometry":{"type":"LineString","coordinates":[[-83.72958030000001,32.929767600000005],[-83.7296556,32.9297035]]},"id":"8c44c0a2b92adff-17fedb1cdc290343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7611859,32.851027]},"id":"8f44c0b544e1c45-17d7ee0ad4408e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b544ec903-13ffccd69905886b","8f44c0b544e1c45-17d7ee0ad4408e1b"]},"geometry":{"type":"LineString","coordinates":[[-83.7611859,32.851027],[-83.76141000000001,32.851135],[-83.76167910000001,32.8512744]]},"id":"8944c0b544fffff-13b5dd7022f9927a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.747399,32.85817]},"id":"8f44c0b560e9566-13d5efb3a7767b38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74650100000001,32.8580042]},"id":"8f44c0b560ea40c-13ddf1e4ed899ecd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b560e9566-13d5efb3a7767b38","8f44c0b560ea40c-13ddf1e4ed899ecd"]},"geometry":{"type":"LineString","coordinates":[[-83.747399,32.85817],[-83.7470942,32.858096100000004],[-83.74650100000001,32.8580042]]},"id":"8a44c0b560effff-139ff0cb3e4e7a3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7254219,32.8634756]},"id":"8f44c0a250598e9-17be655b540b31dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7250327,32.8636345]},"id":"8f44c0a2505bb0b-179fb64e9a5409a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2505bb0b-179fb64e9a5409a7","8f44c0a250598e9-17be655b540b31dc"]},"geometry":{"type":"LineString","coordinates":[[-83.7254219,32.8634756],[-83.72518380000001,32.8635581],[-83.7250327,32.8636345]]},"id":"8a44c0a2505ffff-17f625d6ab02965c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74243940000001,32.8618593]},"id":"8f44c0b5662a0dd-13d7fbcf6b22e916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.742795,32.861735]},"id":"8f44c0b566287a6-13fdfaf12371649c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b566287a6-13fdfaf12371649c","8f44c0b5662a0dd-13d7fbcf6b22e916"]},"geometry":{"type":"LineString","coordinates":[[-83.74243940000001,32.8618593],[-83.742537,32.861826],[-83.742795,32.861735]]},"id":"8a44c0b5662ffff-139ffb6035610174"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7428094,32.862064600000004]},"id":"8f44c0b5662b1a9-13d7fae823cd451b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b5662a0dd-13d7fbcf6b22e916","8f44c0b5662b1a9-13d7fae823cd451b"]},"geometry":{"type":"LineString","coordinates":[[-83.74243940000001,32.8618593],[-83.7425874,32.861875600000005],[-83.74267590000001,32.8619083],[-83.74274840000001,32.8619574],[-83.7428094,32.862064600000004]]},"id":"8a44c0b5662ffff-13fffb4cc007840c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b566287a6-13fdfaf12371649c","8f44c0b5662b1a9-13d7fae823cd451b"]},"geometry":{"type":"LineString","coordinates":[[-83.7428094,32.862064600000004],[-83.742795,32.861735]]},"id":"8a44c0b5662ffff-13dffaeca05a4537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7430021,32.861658000000006]},"id":"8f44c0b56628142-13ddfa6fb6494402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b56628142-13ddfa6fb6494402","8f44c0b5662b1a9-13d7fae823cd451b"]},"geometry":{"type":"LineString","coordinates":[[-83.7428094,32.862064600000004],[-83.7428316,32.861944],[-83.7428546,32.8618429],[-83.7428917,32.8617775],[-83.7429324,32.861731500000005],[-83.7430021,32.861658000000006]]},"id":"8a44c0b5662ffff-13bffabd2d832baa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74607,32.871913]},"id":"8f44c0b528eeba6-13d5f2f247c5bc9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746486,32.871570000000006]},"id":"8f44c0b5285275d-13fff1ee4f31869d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5285275d-13fff1ee4f31869d","8f44c0b528eeba6-13d5f2f247c5bc9f"]},"geometry":{"type":"LineString","coordinates":[[-83.74607,32.871913],[-83.7461578,32.8717386],[-83.746249,32.871644],[-83.746325,32.871606],[-83.746409,32.87158],[-83.746486,32.871570000000006]]},"id":"8944c0b528fffff-13dff2860110fad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.751383,32.879747]},"id":"8f44c0b52a5e0d3-17f5e5f9a759af6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52a5e0d3-17f5e5f9a759af6f","8f44c0b52a5b5b6-17fde5ea09271f06"]},"geometry":{"type":"LineString","coordinates":[[-83.751383,32.879747],[-83.7513778,32.880062800000005],[-83.75140800000001,32.880346]]},"id":"8a44c0b52a5ffff-17bdf5f79fa1688b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74583700000001,32.887213700000004]},"id":"8f44c0b522e92f1-13bdf383e0f20997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5225b0ae-13d5f1bb0d7bc4e9","8f44c0b522e92f1-13bdf383e0f20997"]},"geometry":{"type":"LineString","coordinates":[[-83.74656800000001,32.887245],[-83.7462532,32.8872188],[-83.746049,32.8872157],[-83.74583700000001,32.887213700000004]]},"id":"8844c0b523fffff-13b7f29f49f07bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74598900000001,32.890196]},"id":"8f44c0b5359bb20-17f5f324e8cc85ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74593200000001,32.889424000000005]},"id":"8f44c0b5359c09c-1797f3488974edbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5359c09c-1797f3488974edbc","8f44c0b5359bb20-17f5f324e8cc85ef"]},"geometry":{"type":"LineString","coordinates":[[-83.74598900000001,32.890196],[-83.74595400000001,32.889733],[-83.74593200000001,32.889424000000005]]},"id":"8a44c0b5359ffff-1797f336fbaa2d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7458996,32.8889893]},"id":"8f44c0b535824f2-1797f35ccc44787a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5359c09c-1797f3488974edbc","8f44c0b535824f2-1797f35ccc44787a"]},"geometry":{"type":"LineString","coordinates":[[-83.7458996,32.8889893],[-83.74593200000001,32.889424000000005]]},"id":"8944c0b535bffff-179ff352a79a228e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74505760000001,32.8891128]},"id":"8f44c0b53593cd9-17dff56b09faa507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5359c09c-1797f3488974edbc","8f44c0b53593cd9-17dff56b09faa507"]},"geometry":{"type":"LineString","coordinates":[[-83.74505760000001,32.8891128],[-83.74593200000001,32.889424000000005]]},"id":"8944c0b535bffff-17b5f459c5bedeb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5359c09c-1797f3488974edbc","8f44c0b5359db34-179ff1bdcb7f1160"]},"geometry":{"type":"LineString","coordinates":[[-83.7465636,32.8896439],[-83.74593200000001,32.889424000000005]]},"id":"8944c0b535bffff-17d7f28328bf330a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7448957,32.9075748]},"id":"8f44c0a2dc8a634-13f7f5d03710a948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74554400000001,32.907714]},"id":"8f44c0a2dc8b84c-13bdf43b09b96b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dc8a634-13f7f5d03710a948","8f44c0a2dc8b84c-13bdf43b09b96b42"]},"geometry":{"type":"LineString","coordinates":[[-83.7448957,32.9075748],[-83.745213,32.907668],[-83.74536300000001,32.907696],[-83.74554400000001,32.907714]]},"id":"8a44c0a2dc8ffff-1397f50752293839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74556890000001,32.9071184]},"id":"8f44c0a2dc8c641-13d5f42b755645e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dc8c641-13d5f42b755645e8","8f44c0a2dc8b84c-13bdf43b09b96b42"]},"geometry":{"type":"LineString","coordinates":[[-83.74556890000001,32.9071184],[-83.74554400000001,32.907714]]},"id":"8a44c0a2dc8ffff-13fff433311b8991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73222270000001,32.9259484]},"id":"8f44c0a2821191a-17bfd4c0dcf4c146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731488,32.9263178]},"id":"8f44c0a28213786-17b6b68c0ed6ff67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28213786-17b6b68c0ed6ff67","8f44c0a2821191a-17bfd4c0dcf4c146"]},"geometry":{"type":"LineString","coordinates":[[-83.73222270000001,32.9259484],[-83.73189160000001,32.9264755],[-83.731488,32.9263178]]},"id":"8944c0a2823ffff-1797f58687e9e5db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7329435,32.9248587]},"id":"8f44c0a28235741-1796b2fe5ef250f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73291280000001,32.9253598]},"id":"8f44c0a282312f1-17dff3118c7aa2c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282312f1-17dff3118c7aa2c0","8f44c0a28235741-1796b2fe5ef250f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7329435,32.9248587],[-83.73291280000001,32.9253598]]},"id":"8944c0a2823ffff-17b75307ea77009e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73311790000001,32.9253632]},"id":"8f44c0a28204ce6-17d6129155dfff1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7331066,32.9247387]},"id":"8f44c0a28235aa0-13dfb298679c1236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28235aa0-13dfb298679c1236","8f44c0a28204ce6-17d6129155dfff1c"]},"geometry":{"type":"LineString","coordinates":[[-83.73311790000001,32.9253632],[-83.7331595,32.9248333],[-83.7331441,32.9247932],[-83.7331066,32.9247387]]},"id":"8944c0a2823ffff-179f1284a514ce78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73274570000001,32.9251878]},"id":"8f44c0a2823146d-17f67379f191d4e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322304,32.9251643]},"id":"8f44c0a28233cd6-17d7b4bc0bb7e53f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28233cd6-17d7b4bc0bb7e53f","8f44c0a2823146d-17f67379f191d4e0"]},"geometry":{"type":"LineString","coordinates":[[-83.73274570000001,32.9251878],[-83.7322304,32.9251643]]},"id":"8a44c0a28237fff-17df141b0c90d48a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7345743,32.9260328]},"id":"8f44c0a28228a14-17f68f0310148be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73440400000001,32.9259141]},"id":"8f44c0a28228c6c-17be5f6d85f2b466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a28228a14-17f68f0310148be8","8f44c0a28228c6c-17be5f6d85f2b466"]},"geometry":{"type":"LineString","coordinates":[[-83.7345743,32.9260328],[-83.73440400000001,32.9259141]]},"id":"8b44c0a28228fff-17df7f384bfc9a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7346516,32.925835]},"id":"8f44c0a2822c25b-17f6eed2caaeaa52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28228a14-17f68f0310148be8","8f44c0a2822c25b-17f6eed2caaeaa52"]},"geometry":{"type":"LineString","coordinates":[[-83.7345743,32.9260328],[-83.73457300000001,32.9259574],[-83.7345944,32.9259135],[-83.7346516,32.925835]]},"id":"8a44c0a2822ffff-17b79ef4917cbba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734707,32.926651]},"id":"8f44c0a282768a1-13f6eeb025daa304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7347218,32.9264212]},"id":"8f44c0a282290d0-17f74ea6edfa9744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a282768a1-13f6eeb025daa304","8f44c0a282290d0-17f74ea6edfa9744"]},"geometry":{"type":"LineString","coordinates":[[-83.734707,32.926651],[-83.7347366,32.926552900000004],[-83.7347218,32.9264212]]},"id":"8944c0a2823ffff-13bfcea44e69bb51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a28228a14-17f68f0310148be8","8f44c0a282290d0-17f74ea6edfa9744"]},"geometry":{"type":"LineString","coordinates":[[-83.7347218,32.9264212],[-83.7346655,32.926197200000004],[-83.7345743,32.9260328]]},"id":"8a44c0a2822ffff-17fedecd2a6c2ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7345901,32.9263931]},"id":"8f44c0a282294e1-17d7bef9341f4770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a282768a1-13f6eeb025daa304","8f44c0a282294e1-17d7bef9341f4770"]},"geometry":{"type":"LineString","coordinates":[[-83.7345901,32.9263931],[-83.73460250000001,32.9264403],[-83.73464940000001,32.9265653],[-83.734707,32.926651]]},"id":"8944c0a2823ffff-13b6eeda2f795ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7342301,32.9267259]},"id":"8f44c0a2820d98c-13b7bfda32ab10d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a282294e1-17d7bef9341f4770","8f44c0a2820d98c-13b7bfda32ab10d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7345901,32.9263931],[-83.73455820000001,32.9265022],[-83.73450860000001,32.9265788],[-83.73443350000001,32.9266407],[-83.734341,32.9266846],[-83.7342301,32.9267259]]},"id":"8944c0a2823ffff-13d78f534eb2726a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a282294e1-17d7bef9341f4770","8f44c0a28228c6c-17be5f6d85f2b466"]},"geometry":{"type":"LineString","coordinates":[[-83.73440400000001,32.9259141],[-83.73445500000001,32.926059800000004],[-83.7345421,32.9262107],[-83.734581,32.9263581],[-83.7345901,32.9263931]]},"id":"8a44c0a2822ffff-17beef2fe2338d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7339467,32.9256601]},"id":"8f44c0a2822e563-179f908b55f72a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2822e563-179f908b55f72a95","8f44c0a28228c6c-17be5f6d85f2b466"]},"geometry":{"type":"LineString","coordinates":[[-83.7339467,32.9256601],[-83.73417,32.925736],[-83.734317,32.925835],[-83.73440400000001,32.9259141]]},"id":"8a44c0a2822ffff-17de0ff518d82ed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7348293,32.9269945]},"id":"8f44c0a28270c9e-13df9e63bf13401e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7350239,32.927540900000004]},"id":"8f44c0a28273b8a-13b71dea1a3838bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a28273b8a-13b71dea1a3838bb","8f44c0a28270c9e-13df9e63bf13401e"]},"geometry":{"type":"LineString","coordinates":[[-83.7348293,32.9269945],[-83.7350239,32.927540900000004]]},"id":"8a44c0a28277fff-13f65e26e4d031eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349829,32.9266049]},"id":"8f44c0a28274528-13de1e03b5ad7c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a282768a1-13f6eeb025daa304","8f44c0a28274528-13de1e03b5ad7c36"]},"geometry":{"type":"LineString","coordinates":[[-83.734707,32.926651],[-83.7349829,32.9266049]]},"id":"8a44c0a28277fff-13f68e59f4b9ebc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7379915,32.924680900000006]},"id":"8f44c0a2836c91a-13b796ab5150623e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2836c91a-13b796ab5150623e","8f44c0a29d932a8-17bec59e4bdf58d2"]},"geometry":{"type":"LineString","coordinates":[[-83.7379915,32.924680900000006],[-83.7381119,32.9247597],[-83.738422,32.924926]]},"id":"8a44c0a29d97fff-13f696263b55315b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7387411,32.924567200000006]},"id":"8f44c0a29d91cdc-13de84d6dcb168b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a29d91cdc-13de84d6dcb168b9","8f44c0a29d932a8-17bec59e4bdf58d2"]},"geometry":{"type":"LineString","coordinates":[[-83.7387411,32.924567200000006],[-83.738422,32.924926]]},"id":"8a44c0a29d97fff-13dea53a94b20c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72929640000001,32.929495700000004]},"id":"8f44c0a2b905ce9-17f6dbe5cb41e35b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729314,32.929549300000005]},"id":"8f44c0a2b90518e-179e5bdac9509bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b905ce9-17f6dbe5cb41e35b","8f44c0a2b90518e-179e5bdac9509bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.72929640000001,32.929495700000004],[-83.729314,32.929549300000005]]},"id":"8b44c0a2b905fff-17f79be04c13556a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70858270000001,32.9236476]},"id":"8f44c0a2a15dab2-139fce77dfa5f90d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70912700000001,32.924819]},"id":"8f44c0a2a0653a3-13ffed23a60d1ee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a15dab2-139fce77dfa5f90d","8f44c0a2a0653a3-13ffed23a60d1ee7"]},"geometry":{"type":"LineString","coordinates":[[-83.70858270000001,32.9236476],[-83.70891200000001,32.924382],[-83.70912700000001,32.924819]]},"id":"8844c0a2a1fffff-139f4dd0dc0ce3eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71279170000001,32.9276014]},"id":"8f44c0a2aad10e3-13d6e431318ea2af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7130138,32.9275654]},"id":"8f44c0a2aad1a28-13b663a66acf216c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2aad10e3-13d6e431318ea2af","8f44c0a2aad1a28-13b663a66acf216c"]},"geometry":{"type":"LineString","coordinates":[[-83.71279170000001,32.9276014],[-83.7130138,32.9275654]]},"id":"8b44c0a2aad1fff-13bfe3ebca7773c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122715,32.9264462]},"id":"8f44c0a2aa89140-17f6e576554e6a22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa89140-17f6e576554e6a22","8f44c0a2aad6921-139e4595d5204b28"]},"geometry":{"type":"LineString","coordinates":[[-83.7122715,32.9264462],[-83.71226130000001,32.926608200000004],[-83.71222110000001,32.926688]]},"id":"8b44c0a2aa89fff-13d6557f1c9e1d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa89140-17f6e576554e6a22","8f44c0a2aad4462-13d7c51463651c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.7122715,32.9264462],[-83.7124282,32.9268024]]},"id":"8944c0a2aafffff-13f675455bfc77df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac0b36-13f661629815258b","8f44c0a2aad1a28-13b663a66acf216c"]},"geometry":{"type":"LineString","coordinates":[[-83.7130138,32.9275654],[-83.7131631,32.927516000000004],[-83.7132416,32.9274865],[-83.7139415,32.9272678]]},"id":"8944c0a2aafffff-13d7e284f4dcacf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac288a-13b7d2e91f92b8a1","8f44c0a2aac0906-13b7418d11f5b62c"]},"geometry":{"type":"LineString","coordinates":[[-83.7138735,32.9271316],[-83.71373750000001,32.9271946],[-83.71331670000001,32.9273469]]},"id":"8a44c0a2aac7fff-13f75239f6f24be2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7167385,32.9291332]},"id":"8f44c0a2bda345d-17967a8e7847700c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7167199,32.931172600000004]},"id":"8f44c0a2bd8b0f4-13fefa9a19d7450a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2bda345d-17967a8e7847700c","8f44c0a2bd8b0f4-13fefa9a19d7450a"]},"geometry":{"type":"LineString","coordinates":[[-83.7167385,32.9291332],[-83.7167199,32.931172600000004]]},"id":"8944c0a2bdbffff-1397ba944b510a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7161269,32.9291211]},"id":"8f44c0a2bd84590-17febc0cbef64256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd84590-17febc0cbef64256","8f44c0a2bda345d-17967a8e7847700c"]},"geometry":{"type":"LineString","coordinates":[[-83.7167385,32.9291332],[-83.7161269,32.9291211]]},"id":"8944c0a2bdbffff-1796bb4d9386340c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7136679,32.924408500000006]},"id":"8f44c0a2aa1189c-13ff520d96610b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa1189c-13ff520d96610b67","8f44c0a2aa14189-13dee2c43959ba36"]},"geometry":{"type":"LineString","coordinates":[[-83.7133757,32.9237486],[-83.7136679,32.924408500000006]]},"id":"8a44c0a2aa17fff-13bf6268e3ca3f88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71377890000001,32.9243716]},"id":"8f44c0a2aa11952-13f641c83c6e3b02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa14171-13d6628bec0d4086","8f44c0a2aa11952-13f641c83c6e3b02"]},"geometry":{"type":"LineString","coordinates":[[-83.71377890000001,32.9243716],[-83.71346580000001,32.923735]]},"id":"8a44c0a2aa17fff-139f522a0c1a7033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711408,32.9240824]},"id":"8f44c0a2aaa2ce1-13bfc79204f9ff44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aaa2ce1-13bfc79204f9ff44","8f44c0a2aaa2582-13dfc7fcee3c7e46"]},"geometry":{"type":"LineString","coordinates":[[-83.711408,32.9240824],[-83.71123700000001,32.9241272]]},"id":"8b44c0a2aaa2fff-13bfc7c77a85838b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7103247,32.9244178]},"id":"8f44c0a2aab34e6-13976a371873f6b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7098124,32.923257400000004]},"id":"8f44c0a2a16b566-13bfeb7749f5715f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a16b566-13bfeb7749f5715f","8f44c0a2aab34e6-13976a371873f6b2"]},"geometry":{"type":"LineString","coordinates":[[-83.7103247,32.9244178],[-83.7098124,32.923257400000004]]},"id":"8744c0a2affffff-1396cad734f714c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aab34e6-13976a371873f6b2","8f44c0a2aaa2582-13dfc7fcee3c7e46"]},"geometry":{"type":"LineString","coordinates":[[-83.71123700000001,32.9241272],[-83.7103247,32.9244178]]},"id":"8a44c0a2aab7fff-13b65919fd2c7618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70749810000001,32.9166511]},"id":"8f44c0a2a8a2ae5-139ef11db1e381bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70721780000001,32.9164819]},"id":"8f44c0a2a8a2ce0-17b771cce557817f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a2ce0-17b771cce557817f","8f44c0a2a8a2ae5-139ef11db1e381bb"]},"geometry":{"type":"LineString","coordinates":[[-83.70749810000001,32.9166511],[-83.7073386,32.9165362],[-83.70721780000001,32.9164819]]},"id":"8b44c0a2a8a2fff-17d7d172dbec8552"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70561760000001,32.9149231]},"id":"8f44c0a2ad6eb94-13d6f5b50b1cb191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70507590000001,32.9150196]},"id":"8f44c0a2ad45129-179f57079d22eb41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2ad45129-179f57079d22eb41","8f44c0a2ad6eb94-13d6f5b50b1cb191"]},"geometry":{"type":"LineString","coordinates":[[-83.70561760000001,32.9149231],[-83.705512,32.9150046],[-83.7054233,32.9150379],[-83.7053393,32.9150457],[-83.7052342,32.915032000000004],[-83.70507590000001,32.9150196]]},"id":"8944c0a2ad7ffff-179ef6571ea8fe27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706868,32.916230500000005]},"id":"8f44c0a2a8b519e-179652a78ed0d536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a2ce0-17b771cce557817f","8f44c0a2a8b519e-179652a78ed0d536"]},"geometry":{"type":"LineString","coordinates":[[-83.706868,32.916230500000005],[-83.70721780000001,32.9164819]]},"id":"8944c0a2a8bffff-17d6f23a325ebcba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a6041-17fe7129a21e52a5","8f44c0a2a8a2ce0-17b771cce557817f"]},"geometry":{"type":"LineString","coordinates":[[-83.707479,32.916215],[-83.7072675,32.916386100000004],[-83.70721780000001,32.9164819]]},"id":"8a44c0a2a8a7fff-17d7d182ebf307b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7075753,32.9162525]},"id":"8f44c0a2a8a6ade-1797d0ed7c768753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8a2ae5-139ef11db1e381bb","8f44c0a2a8a6ade-1797d0ed7c768753"]},"geometry":{"type":"LineString","coordinates":[[-83.70749810000001,32.9166511],[-83.7074911,32.9165465],[-83.7074911,32.9164663],[-83.70750740000001,32.9163912],[-83.7075399,32.9163127],[-83.7075753,32.9162525]]},"id":"8a44c0a2a8a7fff-179ef115776ab32d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8a6041-17fe7129a21e52a5","8f44c0a2a8b519e-179652a78ed0d536"]},"geometry":{"type":"LineString","coordinates":[[-83.707479,32.916215],[-83.707302,32.9162632],[-83.7071805,32.9162787],[-83.70707030000001,32.9162751],[-83.706868,32.916230500000005]]},"id":"8944c0a2a8bffff-179671e81b08e39a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875423,32.9019555]},"id":"8f44c0a05c6c0ea-17beb1d61aaa10a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877858,32.9026365]},"id":"8f44c0a05c69023-17d7d13dec120545"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c6c0ea-17beb1d61aaa10a2","8f44c0a05c69023-17d7d13dec120545"]},"geometry":{"type":"LineString","coordinates":[[-83.6875423,32.9019555],[-83.68767220000001,32.902284300000005],[-83.6877858,32.9026365]]},"id":"8a44c0a05c6ffff-17ffc18693f90fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906707,32.905216100000004]},"id":"8f44c0a0517410e-17b67a32d3458558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913554,32.9056674]},"id":"8f44c0a051666f3-17be7886e8ae3303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0517410e-17b67a32d3458558","8f44c0a051666f3-17be7886e8ae3303"]},"geometry":{"type":"LineString","coordinates":[[-83.6906707,32.905216100000004],[-83.6913554,32.9056674]]},"id":"8944c0a0517ffff-17bf795cddd9201d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6945795,32.907839700000004]},"id":"8f44c0a05aa420b-1397f0a7d2ec5023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938375,32.9073392]},"id":"8f44c0a05b99493-13df7277902dc2b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a05aa420b-1397f0a7d2ec5023","8f44c0a05b99493-13df7277902dc2b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6945795,32.907839700000004],[-83.6938375,32.9073392]]},"id":"8844c0a05bfffff-13ff718fb5414adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68713340000001,32.9053059]},"id":"8f44c0a051ad336-17deb2d5a6f3966c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a051ad336-17deb2d5a6f3966c","8f44c0a05112915-13d7e35f94520343"]},"geometry":{"type":"LineString","coordinates":[[-83.68713340000001,32.9053059],[-83.6870423,32.904872000000005],[-83.68691270000001,32.9042742]]},"id":"8944c0a0513ffff-1397b31a184c8ed5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864843,32.905338300000004]},"id":"8f44c0a051a80b2-17fef46b58f181c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68699740000001,32.905316400000004]},"id":"8f44c0a051ad72d-17dec32aa235ad79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a051a80b2-17fef46b58f181c9","8f44c0a051ad72d-17dec32aa235ad79"]},"geometry":{"type":"LineString","coordinates":[[-83.6864843,32.905338300000004],[-83.6868645,32.905335],[-83.68699740000001,32.905316400000004]]},"id":"8a44c0a051affff-17ffa3cab162469e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c45760-17d7a43efbc23cd5","8f44c0a05c454d5-179fb4bc155748dc"]},"geometry":{"type":"LineString","coordinates":[[-83.68655530000001,32.902203400000005],[-83.6863551,32.9021403]]},"id":"8b44c0a05c45fff-17b7f47d8784fc83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68671730000001,32.901414700000004]},"id":"8f44c0a05c606e0-13deb3d9b8a57729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68689020000001,32.9010035]},"id":"8f44c0a05c6464e-13d7b36dae1f0b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c6464e-13d7b36dae1f0b77","8f44c0a05c606e0-13deb3d9b8a57729"]},"geometry":{"type":"LineString","coordinates":[[-83.68671730000001,32.901414700000004],[-83.6868283,32.901217],[-83.68689020000001,32.9010035]]},"id":"8a44c0a05c67fff-13ded39c4fb80432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6874421,32.9017584]},"id":"8f44c0a05c6cc19-13bf8214bacee2e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6873099,32.901523700000006]},"id":"8f44c0a05c61b86-139ed267529d45ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c61b86-139ed267529d45ed","8f44c0a05c6cc19-13bf8214bacee2e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6874421,32.9017584],[-83.68734500000001,32.901569200000004],[-83.6873099,32.901523700000006]]},"id":"8944c0a05c7ffff-13f6c23bdb677129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68725,32.901446]},"id":"8f44c0a05c618a9-13ffc28cce135aa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c618a9-13ffc28cce135aa1","8f44c0a05c606e0-13deb3d9b8a57729"]},"geometry":{"type":"LineString","coordinates":[[-83.68671730000001,32.901414700000004],[-83.68678820000001,32.9013645],[-83.686879,32.9013295],[-83.6869437,32.9013166],[-83.6870023,32.9013179],[-83.68709630000001,32.9013464],[-83.68716400000001,32.9013839],[-83.68725,32.901446]]},"id":"8a44c0a05c67fff-13b7e331b408ead6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c6c0ea-17beb1d61aaa10a2","8f44c0a05c6cc19-13bf8214bacee2e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6874421,32.9017584],[-83.6875423,32.9019555]]},"id":"8b44c0a05c6cfff-13fea1f563e7577b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69023890000001,32.8964962]},"id":"8f44c0a2365ab68-17d67b40b86655c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a059b4335-139ffbfed2cfb6b7","8f44c0a2365ab68-17d67b40b86655c0"]},"geometry":{"type":"LineString","coordinates":[[-83.68993470000001,32.8969949],[-83.69023890000001,32.8964962]]},"id":"8844c0a237fffff-17f67b9fcbd38ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7042462,32.8991619]},"id":"8f44c0a2e52b374-17de790e200d2726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70318230000001,32.8991465]},"id":"8f44c0a2e50e881-17dedba7180c797c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e52b374-17de790e200d2726","8f44c0a2e50e881-17dedba7180c797c"]},"geometry":{"type":"LineString","coordinates":[[-83.7042462,32.8991619],[-83.704041,32.899155],[-83.70318230000001,32.8991465]]},"id":"8944c0a2e53ffff-17d67a5a909df2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684942,32.864789]},"id":"8f44c0a22865060-13ffa82f4e390920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2049040e-13f7a6c150cd64ca","8f44c0a22865060-13ffa82f4e390920"]},"geometry":{"type":"LineString","coordinates":[[-83.6855275,32.8649842],[-83.685314,32.864925],[-83.685203,32.864902],[-83.684942,32.864789]]},"id":"8844c0a229fffff-13b6a77a98c8957a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68956800000001,32.86558]},"id":"8f44c0a2041b993-13dffce4038fc5ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2049040e-13f7a6c150cd64ca","8f44c0a2041b993-13dffce4038fc5ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6855275,32.8649842],[-83.685643,32.865036],[-83.685851,32.865068],[-83.68956800000001,32.86558]]},"id":"8644c0a27ffffff-13beb1d5da9174c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891492,32.864468800000004]},"id":"8f44c0a204102c1-13b77de9c03429af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689324,32.864521]},"id":"8f44c0a20411563-13d7fd7c84aeec1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204102c1-13b77de9c03429af","8f44c0a20411563-13d7fd7c84aeec1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6891492,32.864468800000004],[-83.68920080000001,32.8644789],[-83.689324,32.864521]]},"id":"8a44c0a20417fff-13b7fdb2b934b761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691181,32.864213]},"id":"8f44c0a2042e7b2-139778f3e69814f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2042e7b2-139778f3e69814f1","8f44c0a20411563-13d7fd7c84aeec1e"]},"geometry":{"type":"LineString","coordinates":[[-83.691181,32.864213],[-83.69050700000001,32.864868],[-83.69043,32.864911],[-83.69034400000001,32.864942],[-83.69026600000001,32.864961],[-83.69014800000001,32.864961],[-83.690055,32.864933],[-83.68956800000001,32.864638],[-83.68947700000001,32.86459],[-83.689448,32.864576],[-83.689324,32.864521]]},"id":"8944c0a2043ffff-13bf7b1bee1041fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891497,32.8635997]},"id":"8f44c0a20414d2b-1797fde97287f0bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891068,32.86339]},"id":"8f44c0a2043241b-1796fe0446d6f168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2043241b-1796fe0446d6f168","8f44c0a20414d2b-1797fde97287f0bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6891497,32.8635997],[-83.6891068,32.86339]]},"id":"8944c0a2043ffff-17d67df6d7da41d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68947560000001,32.8631158]},"id":"8f44c0a204362a8-17d77d1dc30b8dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2043241b-1796fe0446d6f168","8f44c0a204362a8-17d77d1dc30b8dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6891068,32.86339],[-83.6891294,32.8632232],[-83.68917920000001,32.8631404],[-83.6892239,32.8631182],[-83.68929410000001,32.863106200000004],[-83.68947560000001,32.8631158]]},"id":"8844c0a205fffff-17977db46e160101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688958,32.862789]},"id":"8f44c0a205ab61b-179f7e61461ac527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a205ab61b-179f7e61461ac527","8f44c0a205abd2e-13967e32929777f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6890327,32.8623938],[-83.68897670000001,32.862526700000004],[-83.6889589,32.8626559],[-83.688958,32.862789]]},"id":"8b44c0a205abfff-179f7e54e238ef0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71061,32.875227]},"id":"8f44c0a21c8d509-13fee984cd32d878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7108209,32.874952400000005]},"id":"8f44c0a21cab754-13bf4900fc2d94fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21cab754-13bf4900fc2d94fa","8f44c0a21c8d509-13fee984cd32d878"]},"geometry":{"type":"LineString","coordinates":[[-83.71061,32.875227],[-83.7107082,32.875100700000004],[-83.7107261,32.8750771],[-83.7108209,32.874952400000005]]},"id":"8944c0a21cbffff-13974942a2d652b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72506200000001,32.880536]},"id":"8f44c0a21b8d88e-17df263c4b747b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b8d88e-17df263c4b747b3a","8f44c0a21b8c066-17f7270f7960ede6"]},"geometry":{"type":"LineString","coordinates":[[-83.72506200000001,32.880536],[-83.7247241,32.8803408]]},"id":"8a44c0a21b8ffff-17b626a5eec893f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72579180000001,32.8809478]},"id":"8f44c0a21a3072a-13f664742a23e7cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a21a3072a-13f664742a23e7cf","8f44c0a21b8d88e-17df263c4b747b3a"]},"geometry":{"type":"LineString","coordinates":[[-83.72579180000001,32.8809478],[-83.725212,32.880622],[-83.72506200000001,32.880536]]},"id":"8844c0a21bfffff-13f625586588f261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a21b8d88e-17df263c4b747b3a","8f44c0a21bab102-17ff6600c8ff6ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.72506200000001,32.880536],[-83.72502300000001,32.880454400000005],[-83.7249948,32.880349700000004],[-83.72500690000001,32.880293300000005],[-83.7250458,32.8802314],[-83.7251572,32.8801494]]},"id":"8944c0a21bbffff-17dfb6473ef6345c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74598680000001,32.8789724]},"id":"8f44c0b52a9bae8-179df3264c205c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74598300000001,32.879669400000004]},"id":"8f44c0b523220ae-17d5f328a3a15887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b523220ae-17d5f328a3a15887","8f44c0b52a9bae8-179df3264c205c41"]},"geometry":{"type":"LineString","coordinates":[[-83.74598680000001,32.8789724],[-83.74598300000001,32.879669400000004]]},"id":"8944c0b5233ffff-17f7f327712441ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76401870000001,32.8783936]},"id":"8f44c0b50294804-13b5c720590bdf38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76497710000001,32.8784105]},"id":"8f44c0b502b1331-13bfd4c9558f47e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502b1331-13bfd4c9558f47e1","8f44c0b50294804-13b5c720590bdf38"]},"geometry":{"type":"LineString","coordinates":[[-83.76401870000001,32.8783936],[-83.76497710000001,32.8784105]]},"id":"8a44c0b502b7fff-13bdd5f4d8f28908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7634809,32.878408300000004]},"id":"8f44c0b50749653-13bdf8707533445c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50749653-13bdf8707533445c","8f44c0b50294804-13b5c720590bdf38"]},"geometry":{"type":"LineString","coordinates":[[-83.7634809,32.878408300000004],[-83.763875,32.878408400000005],[-83.76401870000001,32.8783936]]},"id":"8944c0b502bffff-13bdc7c836566ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75870350000001,32.881552500000005]},"id":"8f44c0b506ce2c1-13dfd41a5f8f3bdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7587233,32.8807558]},"id":"8f44c0b506c1d59-13fdf40dfed7259a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506ce2c1-13dfd41a5f8f3bdc","8f44c0b506c1d59-13fdf40dfed7259a"]},"geometry":{"type":"LineString","coordinates":[[-83.75870350000001,32.881552500000005],[-83.7587233,32.8807558]]},"id":"8944c0b506fffff-13f5d4142ca248ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7587348,32.8803506]},"id":"8f44c0b506c5c8d-17fff406ca5bbe53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758747,32.879862]},"id":"8f44c0b506e222c-17bdd3ff232e7b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506c5c8d-17fff406ca5bbe53","8f44c0b506e222c-17bdd3ff232e7b8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7587348,32.8803506],[-83.758747,32.879862]]},"id":"8944c0b506fffff-17d7f402fb9f3168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76585250000001,32.8810817]},"id":"8f44c0b502d6603-13b5d2a63ac30779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76585870000001,32.880882400000004]},"id":"8f44c0b502d6565-13b7c2a258268461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d6565-13b7c2a258268461","8f44c0b502d6603-13b5d2a63ac30779"]},"geometry":{"type":"LineString","coordinates":[[-83.76585250000001,32.8810817],[-83.76585870000001,32.880882400000004]]},"id":"8b44c0b502d6fff-13f5d2a44943f79f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7662007,32.8810875]},"id":"8f44c0b502d0d89-13b7f1cc96e8847e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d6603-13b5d2a63ac30779","8f44c0b502d0d89-13b7f1cc96e8847e"]},"geometry":{"type":"LineString","coordinates":[[-83.7662007,32.8810875],[-83.76585250000001,32.8810817]]},"id":"8a44c0b502d7fff-13b5e23964b310cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76619600000001,32.8814981]},"id":"8f44c0b502d3d65-13bdd1cf8cd4d891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7663551,32.881500800000005]},"id":"8f44c0b502d02da-13bfc16c1740985c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d02da-13bfc16c1740985c","8f44c0b502d3d65-13bdd1cf8cd4d891"]},"geometry":{"type":"LineString","coordinates":[[-83.76619600000001,32.8814981],[-83.7663551,32.881500800000005]]},"id":"8a44c0b502d7fff-13bdf19ddbd43413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766363,32.881090300000004]},"id":"8f44c0b502d099d-13bdf16721206189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d099d-13bdf16721206189","8f44c0b502d0d89-13b7f1cc96e8847e"]},"geometry":{"type":"LineString","coordinates":[[-83.766363,32.881090300000004],[-83.7662007,32.8810875]]},"id":"8b44c0b502d0fff-13bdd199ea8ec95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d0d89-13b7f1cc96e8847e","8f44c0b502d3d65-13bdd1cf8cd4d891"]},"geometry":{"type":"LineString","coordinates":[[-83.76619600000001,32.8814981],[-83.7662007,32.8810875]]},"id":"8a44c0b502d7fff-13bdc1ce12734b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b502f5cf5-17b7fed95996e69f","8f44c0b5028894c-17b7c288234742e2"]},"geometry":{"type":"LineString","coordinates":[[-83.76590060000001,32.880037200000004],[-83.7671763,32.8800588],[-83.76740910000001,32.880062800000005]]},"id":"8844c0b503fffff-17bfc0b0b8032052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76555830000001,32.881345]},"id":"8f44c0b502d24b2-13dde35e17a384a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7655565,32.8808815]},"id":"8f44c0b53925832-13b7f35f3f59184e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d24b2-13dde35e17a384a3","8f44c0b53925832-13b7f35f3f59184e"]},"geometry":{"type":"LineString","coordinates":[[-83.76555830000001,32.881345],[-83.7655565,32.8808815]]},"id":"8a44c0b53927fff-13d7d35ea1e5caad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7655507,32.881755600000005]},"id":"8f44c0b5392c425-13ddc362da67f735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d24b2-13dde35e17a384a3","8f44c0b5392c425-13ddc362da67f735"]},"geometry":{"type":"LineString","coordinates":[[-83.76555830000001,32.881345],[-83.7655507,32.881755600000005]]},"id":"8944c0b5393ffff-13ddf36078e159b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7651069,32.883825]},"id":"8f44c0b53956896-17f7e47836a56ad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76551500000001,32.8838286]},"id":"8f44c0b5395419a-17fde3792db4a7e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5395419a-17fde3792db4a7e3","8f44c0b53956896-17f7e47836a56ad9"]},"geometry":{"type":"LineString","coordinates":[[-83.7651069,32.883825],[-83.76551500000001,32.8838286]]},"id":"8a44c0b53957fff-17f7c3f8ab723cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640757,32.883888400000004]},"id":"8f44c0b53824695-139fc6fcb6533fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640538,32.8850931]},"id":"8f44c0b53805af2-13fff70a6e7674fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b53805af2-13fff70a6e7674fb","8f44c0b53824695-139fc6fcb6533fc8"]},"geometry":{"type":"LineString","coordinates":[[-83.7640757,32.883888400000004],[-83.7640538,32.8850931]]},"id":"8944c0b5383ffff-1397c7039e9f6228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b5391934c-17d7f6fb1cc66106","8f44c0b53824695-139fc6fcb6533fc8"]},"geometry":{"type":"LineString","coordinates":[[-83.76407830000001,32.883571100000005],[-83.7640757,32.883888400000004]]},"id":"8a44c0b53827fff-17bfd6fbec37791e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640932,32.881257000000005]},"id":"8f44c0b539318f2-13b5e6f1c222fc15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640956,32.8808689]},"id":"8f44c0b53935186-13bfd6f0402c98d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b539318f2-13b5e6f1c222fc15","8f44c0b53935186-13bfd6f0402c98d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7640932,32.881257000000005],[-83.7640956,32.8808689]]},"id":"8a44c0b53937fff-13bde6f105af7da1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631109,32.880729800000005]},"id":"8f44c0b539364e2-13dde957bf95ae43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631107,32.880853300000005]},"id":"8f44c0b53936690-13b5d957dd486650"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53936690-13b5d957dd486650","8f44c0b539364e2-13dde957bf95ae43"]},"geometry":{"type":"LineString","coordinates":[[-83.7631109,32.880729800000005],[-83.7631107,32.880853300000005]]},"id":"8b44c0b53936fff-13ffc957ca1ebdba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76434540000001,32.8803799]},"id":"8f44c0b5029b8a9-17fdf654213e6a56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7647845,32.880202100000005]},"id":"8f44c0b50299991-179fd541bae82089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5029b8a9-17fdf654213e6a56","8f44c0b50299991-179fd541bae82089"]},"geometry":{"type":"LineString","coordinates":[[-83.76434540000001,32.8803799],[-83.7643468,32.8803268],[-83.7643469,32.8803234],[-83.7643499,32.8801985],[-83.7647845,32.880202100000005]]},"id":"8a44c0b5029ffff-179dd5f1f13ccf99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7647807,32.8803915]},"id":"8f44c0b50299028-1795f544127cea19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0b5029b8a9-17fdf654213e6a56","8f44c0b50299028-1795f544127cea19"]},"geometry":{"type":"LineString","coordinates":[[-83.7647807,32.8803915],[-83.76434540000001,32.8803799]]},"id":"8a44c0b5029ffff-1795d5cc11593cf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7647742,32.880723100000004]},"id":"8f44c0b53926855-13d7f54825f2853f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53926855-13d7f54825f2853f","8f44c0b50299028-1795f544127cea19"]},"geometry":{"type":"LineString","coordinates":[[-83.7647742,32.880723100000004],[-83.7647807,32.8803915]]},"id":"8844c0b503fffff-17fdd54625a4ee3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53926855-13d7f54825f2853f","8f44c0b5029b8a9-17fdf654213e6a56"]},"geometry":{"type":"LineString","coordinates":[[-83.76434540000001,32.8803799],[-83.7643309,32.8807093],[-83.7647742,32.880723100000004]]},"id":"8844c0b503fffff-13b5e60bd49c13c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76477100000001,32.8808706]},"id":"8f44c0b53926a8d-13b5e54a25c88f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53926855-13d7f54825f2853f","8f44c0b53926a8d-13b5e54a25c88f94"]},"geometry":{"type":"LineString","coordinates":[[-83.76477100000001,32.8808706],[-83.7647742,32.880723100000004]]},"id":"8b44c0b53926fff-1397d54923415c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7645145,32.8808717]},"id":"8f44c0b5392644d-13b5d5ea751d7ea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5392644d-13b5d5ea751d7ea0","8f44c0b53935186-13bfd6f0402c98d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7645145,32.8808717],[-83.7640956,32.8808689]]},"id":"8944c0b5393ffff-13bff66d601b3d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029a96e-1795d6eac10c8f43","8f44c0b50668040-179dc950dd29968e"]},"geometry":{"type":"LineString","coordinates":[[-83.7631219,32.87999],[-83.7638555,32.8800024],[-83.76410440000001,32.880006900000005]]},"id":"8744c0b50ffffff-179ff81dc797fbed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65004210000001,32.780225200000004]},"id":"8f44c0b1179a980-13fedd63b8cf3aef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649421,32.780206]},"id":"8f44c0b13b68b48-13fedee7e66ca498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1179a980-13fedd63b8cf3aef","8f44c0b13b68b48-13fedee7e66ca498"]},"geometry":{"type":"LineString","coordinates":[[-83.65004210000001,32.780225200000004],[-83.649421,32.780206]]},"id":"8844c0b117fffff-13f6de25c9351464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6559653,32.7803665]},"id":"8f44c0b11754a9c-13d7deedb63600c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65511380000001,32.7803419]},"id":"8f44c0b1170b2cd-13d7f101e1f55197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b11754a9c-13d7deedb63600c1","8f44c0b1170b2cd-13d7f101e1f55197"]},"geometry":{"type":"LineString","coordinates":[[-83.6559653,32.7803665],[-83.65511380000001,32.7803419]]},"id":"8844c0b117fffff-13dfeff7c900fda5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6554026,32.779721900000006]},"id":"8f44c0b11708a61-13bef04d6f7923a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11708a61-13bef04d6f7923a0","8f44c0b1170b2cd-13d7f101e1f55197"]},"geometry":{"type":"LineString","coordinates":[[-83.6554026,32.779721900000006],[-83.65511380000001,32.7803419]]},"id":"8a44c0b1170ffff-13fff0a7af3f7269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65478900000001,32.780996]},"id":"8f44c0b1162100b-17ded1ccef4c0923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1162100b-17ded1ccef4c0923","8f44c0b1170b2cd-13d7f101e1f55197"]},"geometry":{"type":"LineString","coordinates":[[-83.65478900000001,32.780996],[-83.65511380000001,32.7803419]]},"id":"8844c0b117fffff-179ef1676bec8fa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6595582,32.7804637]},"id":"8f44c0b11391224-139fd6282791cd64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65904400000001,32.780451]},"id":"8f44c0b1139314e-1397e7698433ac03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b11391224-139fd6282791cd64","8f44c0b1139314e-1397e7698433ac03"]},"geometry":{"type":"LineString","coordinates":[[-83.6595582,32.7804637],[-83.65904400000001,32.780451]]},"id":"8a44c0b11397fff-139fe6c8ddbd91e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66837620000001,32.7887635]},"id":"8f44c0b1c425836-17d7b0a0e9ccb040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c425836-17d7b0a0e9ccb040","8f44c0b1c5527b3-13b7f05f6d73daf2"]},"geometry":{"type":"LineString","coordinates":[[-83.66837620000001,32.7887635],[-83.6684183,32.7889323],[-83.668481,32.7893366]]},"id":"8944c0b1c43ffff-1397b07cc64a26aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c4184d3-17deb619f95c486c","8f44c0b1c40e0d4-17d6f3499b31e1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.66728710000001,32.7908196],[-83.6661345,32.7910344]]},"id":"8944c0b1c43ffff-179ff4b1c759d802"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670697,32.791305]},"id":"8f44c0b1c46571e-1797aaf664f8fb0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c46571e-1797aaf664f8fb0b","8f44c0b1c461174-17d6aad86e3feaf4"]},"geometry":{"type":"LineString","coordinates":[[-83.67074500000001,32.791604],[-83.67072900000001,32.791525],[-83.67072,32.791397],[-83.670697,32.791305]]},"id":"8a44c0b1c467fff-17f6fae64e9c4290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910701,32.7827433]},"id":"8f44c0b0351d7a8-139ef9393b91e869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689154,32.7827208]},"id":"8f44c0b035aab72-1396fde6c6625fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b035aab72-1396fde6c6625fa3","8f44c0b0351d7a8-139ef9393b91e869"]},"geometry":{"type":"LineString","coordinates":[[-83.6910701,32.7827433],[-83.689154,32.7827208]]},"id":"8844c0b035fffff-1397fb8ff1be4d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68913260000001,32.7829184]},"id":"8f44c0b035abca3-139e7df4234bc9e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68852220000001,32.782937100000005]},"id":"8f44c0b03581315-1397ff71a4a211b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03581315-1397ff71a4a211b1","8f44c0b035abca3-139e7df4234bc9e2"]},"geometry":{"type":"LineString","coordinates":[[-83.68913260000001,32.7829184],[-83.68852220000001,32.782937100000005]]},"id":"8944c0b035bffff-1397feb2ec76b3ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885687,32.7812774]},"id":"8f44c0b035a6a8e-179e7f549e2be3dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68848,32.779587]},"id":"8f44c0b02242152-13ffff8c05e7c2f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b035a6a8e-179e7f549e2be3dd","8f44c0b02242152-13ffff8c05e7c2f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6885687,32.7812774],[-83.6885067,32.7811749],[-83.68849,32.780665],[-83.688483,32.780412000000005],[-83.68848,32.779587]]},"id":"8644c0b07ffffff-13ff7f8500229853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c40e0d4-17d6f3499b31e1d6","8f44c0b1c40c0c2-179ef2114695d5b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6677868,32.7907237],[-83.66728710000001,32.7908196]]},"id":"8a44c0b1c40ffff-17bef2ad767c5b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655088,32.795859]},"id":"8f44c0b1e15e11e-13b7f11202bead95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6538692,32.7956257]},"id":"8f44c0b1e02e830-1396d40bcb795864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1e15e11e-13b7f11202bead95","8f44c0b1e02e830-1396d40bcb795864"]},"geometry":{"type":"LineString","coordinates":[[-83.655088,32.795859],[-83.65496320000001,32.7958],[-83.6546685,32.7957556],[-83.6538692,32.7956257]]},"id":"8844c0b1e1fffff-13d7d28bdbf177b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65383,32.795701]},"id":"8f44c0b1e02e8d6-13d7f4244dc8397d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1e15e11e-13b7f11202bead95","8f44c0b1e02e8d6-13d7f4244dc8397d"]},"geometry":{"type":"LineString","coordinates":[[-83.65383,32.795701],[-83.654652,32.795831],[-83.65496320000001,32.7958778],[-83.655088,32.795859]]},"id":"8844c0b1e1fffff-13ffd29b4d3b5e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65064070000001,32.803406800000005]},"id":"8f44c0b1e759448-1397dbed98ea0eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6500484,32.8033828]},"id":"8f44c0b1e75b584-1396dd5fc44c8e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1e759448-1397dbed98ea0eaa","8f44c0b1e75b584-1396dd5fc44c8e1d"]},"geometry":{"type":"LineString","coordinates":[[-83.65064070000001,32.803406800000005],[-83.6500484,32.8033828]]},"id":"8a44c0b1e75ffff-139fdca6bb089ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65034610000001,32.8027765]},"id":"8f44c0b1e75c699-1397dca5b77f9c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e75c699-1397dca5b77f9c36","8f44c0b1e75b584-1396dd5fc44c8e1d"]},"geometry":{"type":"LineString","coordinates":[[-83.65034610000001,32.8027765],[-83.6500484,32.8033828]]},"id":"8a44c0b1e75ffff-13d6dd02cd6af615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64689100000001,32.809593]},"id":"8f44c0b1ad4c300-13bfe51525500b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64667100000001,32.810024]},"id":"8f44c0b1ad480c9-13bfe59ea87edba4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad480c9-13bfe59ea87edba4","8f44c0b1ad4c300-13bfe51525500b65"]},"geometry":{"type":"LineString","coordinates":[[-83.64689100000001,32.809593],[-83.64667100000001,32.810024]]},"id":"8a44c0b1ad4ffff-13b6f559e74d9a01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64551560000001,32.8122959]},"id":"8f44c0b1ac4170d-13d6f870c5a50be6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac4170d-13d6f870c5a50be6","8f44c0b1ac45649-1396e80dc5fa6622"]},"geometry":{"type":"LineString","coordinates":[[-83.64551560000001,32.8122959],[-83.6455852,32.8121588],[-83.645674,32.811984]]},"id":"8a44c0b1ac47fff-13f7f83f41a4b40c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645926,32.8115188]},"id":"8f44c0b1ac63209-17dfe77049b6fe1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac45649-1396e80dc5fa6622","8f44c0b1ac63209-17dfe77049b6fe1a"]},"geometry":{"type":"LineString","coordinates":[[-83.645926,32.8115188],[-83.645674,32.811984]]},"id":"8944c0b1ac7ffff-17f6e7bf0f482c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63960780000001,32.8137356]},"id":"8f44c0b1a52bc33-17def6dd2cfcd6cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529563-17d7f5b2e5ccee49","8f44c0b1a52bc33-17def6dd2cfcd6cf"]},"geometry":{"type":"LineString","coordinates":[[-83.640085,32.8137526],[-83.63960780000001,32.8137356]]},"id":"8a44c0b1a52ffff-17def6480d923f68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64040100000001,32.813758]},"id":"8f44c0b1a529b01-17d6f4ed692de424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529b01-17d6f4ed692de424","8f44c0b1a529563-17d7f5b2e5ccee49"]},"geometry":{"type":"LineString","coordinates":[[-83.64040100000001,32.813758],[-83.6402602,32.8137556],[-83.640085,32.8137526]]},"id":"8b44c0b1a529fff-17d7f55026650151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a1a286a-17defa3798f7cc55","8f44c0b1a1a62ea-1797fa1e72143eb2"]},"geometry":{"type":"LineString","coordinates":[[-83.64478790000001,32.813945700000005],[-83.64482810000001,32.8138269]]},"id":"8a44c0b1a1a7fff-17b6fa2b0c324911"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651971,32.8145485]},"id":"8f44c0b1873664c-17d6f863d4b76e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666478,32.8145688]},"id":"8f44c0b18726303-17d7b4d921450713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1873664c-17d6f863d4b76e08","8f44c0b18726303-17d7b4d921450713"]},"geometry":{"type":"LineString","coordinates":[[-83.6651971,32.8145485],[-83.666098,32.81456],[-83.6666478,32.8145688]]},"id":"8944c0b1873ffff-17def69e75c4d993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6852403,32.8153092]},"id":"8f44c0b1d69d392-13b6c774d2a830e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685249,32.815112]},"id":"8f44c0b1d69d130-13b7876f6a17745e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d69d130-13b7876f6a17745e","8f44c0b1d69d392-13b6c774d2a830e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6852403,32.8153092],[-83.685249,32.815112]]},"id":"8b44c0b1d69dfff-13f6a7722206041b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68520740000001,32.8160498]},"id":"8f44c0b19d26a24-13ffa78962b4ad9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d69d392-13b6c774d2a830e1","8f44c0b19d26a24-13ffa78962b4ad9a"]},"geometry":{"type":"LineString","coordinates":[[-83.68520740000001,32.8160498],[-83.68522010000001,32.8157626],[-83.6852403,32.8153092]]},"id":"8844c0b1d7fffff-1397b77f2800dad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62703540000001,32.8334041]},"id":"8f44c0ba92c10db-17df958ee98a418c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6270291,32.8336221]},"id":"8f44c0ba92ce81e-17d7d592dc68865d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0ba92ce81e-17d7d592dc68865d","8f44c0ba92c10db-17df958ee98a418c"]},"geometry":{"type":"LineString","coordinates":[[-83.62703540000001,32.8334041],[-83.6270291,32.8336221]]},"id":"8944c0ba92fffff-1797b590d47fd148"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6272466,32.8333577]},"id":"8f44c0ba92c1a19-17b7950ae83eabd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0ba92c1a19-17b7950ae83eabd4","8f44c0ba92c10db-17df958ee98a418c"]},"geometry":{"type":"LineString","coordinates":[[-83.6272466,32.8333577],[-83.62703540000001,32.8334041]]},"id":"8b44c0ba92c1fff-17bf154ce9209715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92ce81e-17d7d592dc68865d","8f44c0ba92c1a19-17b7950ae83eabd4"]},"geometry":{"type":"LineString","coordinates":[[-83.6270291,32.8336221],[-83.6272466,32.8333577]]},"id":"8944c0ba92fffff-1797354ee31d8422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62882350000001,32.8343095]},"id":"8f44c0a345b1d90-179771315c12c9a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6285773,32.834161800000004]},"id":"8f44c0a345b018a-17b731cb35324274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b1d90-179771315c12c9a5","8f44c0a345b018a-17b731cb35324274"]},"geometry":{"type":"LineString","coordinates":[[-83.62882350000001,32.8343095],[-83.6285773,32.834161800000004]]},"id":"8b44c0a345b0fff-17d7517e4263a60f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62834640000001,32.834412]},"id":"8f44c0a345b3d95-17d7925b8c65e0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62860810000001,32.834569]},"id":"8f44c0a345b38c9-17b7b1b7f8a2ee5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b38c9-17b7b1b7f8a2ee5d","8f44c0a345b3d95-17d7925b8c65e0fa"]},"geometry":{"type":"LineString","coordinates":[[-83.62834640000001,32.834412],[-83.6284409,32.8344687],[-83.62860810000001,32.834569]]},"id":"8a44c0a345b7fff-17f79209cf9fcfc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6300428,32.8353897]},"id":"8f44c0a345aac6a-13b79e3742256c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345ae3a0-13970dc2eb4ef8c3","8f44c0a345aac6a-13b79e3742256c69"]},"geometry":{"type":"LineString","coordinates":[[-83.6300428,32.8353897],[-83.630229,32.835152]]},"id":"8a44c0a345affff-13df5dfd10fa22f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63319700000001,32.8371256]},"id":"8f44c0a3442c883-17f78683e70f4c96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34420349-17ffa7e9c412e61c","8f44c0a3442c883-17f78683e70f4c96"]},"geometry":{"type":"LineString","coordinates":[[-83.63262440000001,32.836759400000005],[-83.6331253,32.837079800000005],[-83.63319700000001,32.8371256]]},"id":"8944c0a3443ffff-17f71736d8b71dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6326142,32.836282100000005]},"id":"8f44c0a3442438e-13d757f0229b8c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3442438e-13d757f0229b8c12","8f44c0a34426209-17bfb8f6526c6242"]},"geometry":{"type":"LineString","coordinates":[[-83.6326142,32.836282100000005],[-83.63228430000001,32.8363912],[-83.6321947,32.8364427]]},"id":"8a44c0a34427fff-1797f8754d0b4123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6316688,32.8361281]},"id":"8f44c0a3451b65c-13f71a3f0128caf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3451b65c-13f71a3f0128caf1","8f44c0a34426209-17bfb8f6526c6242"]},"geometry":{"type":"LineString","coordinates":[[-83.6321947,32.8364427],[-83.6317944,32.8362032],[-83.6316688,32.8361281]]},"id":"8944c0a3443ffff-13d7699aa7106122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6316044,32.836208]},"id":"8f44c0a34435d41-13b70a6740343775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3442292b-17f7b9271a164d7d","8f44c0a34435d41-13b70a6740343775"]},"geometry":{"type":"LineString","coordinates":[[-83.6316044,32.836208],[-83.63202840000001,32.836456500000004],[-83.63211670000001,32.836508300000006]]},"id":"8944c0a3443ffff-1797d9c72e1333e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6343504,32.8338671]},"id":"8f44c0a34cd2a5a-17fff3b3078a2da8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633868,32.833576]},"id":"8f44c0a3452531b-17bf04e087df49e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3452531b-17bf04e087df49e5","8f44c0a34cd2a5a-17fff3b3078a2da8"]},"geometry":{"type":"LineString","coordinates":[[-83.6343504,32.8338671],[-83.633868,32.833576]]},"id":"8844c0a34dfffff-17970449ce6decb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65104000000001,32.825922000000006]},"id":"8f44c0b1a20a573-139fdaf409ea85b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a20a573-139fdaf409ea85b6","8f44c0b1a2191ab-13d6fbda99aee9df"]},"geometry":{"type":"LineString","coordinates":[[-83.65067110000001,32.826039800000004],[-83.650878,32.8259666],[-83.65104000000001,32.825922000000006]]},"id":"8944c0b1a23ffff-13bedb67fda206c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65566220000001,32.825820900000004]},"id":"8f44c0b1bc94724-13dedfab25abeb28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a275b24-13bfd48310258f63","8f44c0b1bc94724-13dedfab25abeb28"]},"geometry":{"type":"LineString","coordinates":[[-83.65367830000001,32.825798],[-83.65504800000001,32.825829],[-83.65566220000001,32.825820900000004]]},"id":"8644c0b1fffffff-13d7f21727a15751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6544327,32.825697000000005]},"id":"8f44c0b1a264056-13fef2ab9b9e8393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653678,32.825685]},"id":"8f44c0b1a2665b3-13f7f483412c1813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a264056-13fef2ab9b9e8393","8f44c0b1a2665b3-13f7f483412c1813"]},"geometry":{"type":"LineString","coordinates":[[-83.6544327,32.825697000000005],[-83.653847,32.825688400000004],[-83.653678,32.825685]]},"id":"8a44c0b1a267fff-13fff39776fa6142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6795932,32.8248796]},"id":"8f44c0b1950e58b-17ffd53e44795415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678714,32.825325]},"id":"8f44c0b195186d0-1396b763c6911222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1950e58b-17ffd53e44795415","8f44c0b195186d0-1396b763c6911222"]},"geometry":{"type":"LineString","coordinates":[[-83.6795932,32.8248796],[-83.67916600000001,32.825082],[-83.678714,32.825325]]},"id":"8944c0b1953ffff-1397f652c318ac85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1943634b-1397b9464e2704b9","8f44c0b19432532-13feba6c073e3bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.67747200000001,32.826109],[-83.677942,32.825941]]},"id":"8944c0b1943ffff-13dfb9d92167bbb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677007,32.826662]},"id":"8f44c0b19416c5b-17d7db8eaa826781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b19416c5b-17d7db8eaa826781","8f44c0b1958928b-13f6fb1240f536da"]},"geometry":{"type":"LineString","coordinates":[[-83.677007,32.826662],[-83.677206,32.826507]]},"id":"8a44c0b19417fff-17b7db5079d16c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b195186d0-1396b763c6911222","8f44c0b19436109-1396f994686dc6bd"]},"geometry":{"type":"LineString","coordinates":[[-83.678714,32.825325],[-83.678538,32.825361],[-83.678334,32.82547],[-83.677845,32.825718],[-83.677817,32.825735]]},"id":"8844c0b195fffff-139e9880346188aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68122340000001,32.8234555]},"id":"8f44c0b19cd2068-1797b14361ed4ae5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68171500000001,32.823797]},"id":"8f44c0b19cd3a53-17dfb0102a26560b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19cd3a53-17dfb0102a26560b","8f44c0b19cd2068-1797b14361ed4ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.68122340000001,32.8234555],[-83.68160900000001,32.82369],[-83.68171500000001,32.823797]]},"id":"8a44c0b19cd7fff-17f7b0a478e207e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960468,32.8204433]},"id":"8f44c0b19942871-17bf7d12ce908d18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957203,32.8210542]},"id":"8f44c0b1995c72c-17b6eddedd32dd37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995c72c-17b6eddedd32dd37","8f44c0b19942871-17bf7d12ce908d18"]},"geometry":{"type":"LineString","coordinates":[[-83.6960468,32.8204433],[-83.6957203,32.8210542]]},"id":"8944c0b1997ffff-17fe6d78dc4ea782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6983572,32.8159933]},"id":"8f44c0b1d20b796-13dff76ec46cbea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d20b30c-13de76b1d23f0473","8f44c0b1d20b796-13dff76ec46cbea0"]},"geometry":{"type":"LineString","coordinates":[[-83.6983572,32.8159933],[-83.6986595,32.8160161]]},"id":"8b44c0b1d20bfff-13d6f71050fa1fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69842720000001,32.8158331]},"id":"8f44c0b1d20bcd8-13f7f7430b1774ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e4da6-13de78751111e46e","8f44c0b1d20bcd8-13f7f7430b1774ff"]},"geometry":{"type":"LineString","coordinates":[[-83.69842720000001,32.8158331],[-83.69793750000001,32.8157893]]},"id":"8944c0b1d23ffff-13de67dc00491299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906912,32.815571]},"id":"8f44c0b1d65586b-13d7fa260f2f51cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65586b-13d7fa260f2f51cb","8f44c0b1d673281-13de7a371beb1c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6906912,32.815571],[-83.6906639,32.8154022]]},"id":"8944c0b1d67ffff-139f7a2e9d29f767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906012,32.8155657]},"id":"8f44c0b1d6558c4-13d6fa5e467d5ac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690579,32.8159215]},"id":"8f44c0b1d651963-139efa6c2311d226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6558c4-13d6fa5e467d5ac4","8f44c0b1d651963-139efa6c2311d226"]},"geometry":{"type":"LineString","coordinates":[[-83.6906012,32.8155657],[-83.690589,32.815766700000005],[-83.690579,32.8159215]]},"id":"8a44c0b1d657fff-13bffa65119bdda0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901309,32.8155379]},"id":"8f44c0b1d650932-13bf7b843039354e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d650932-13bf7b843039354e","8f44c0b1d651963-139efa6c2311d226"]},"geometry":{"type":"LineString","coordinates":[[-83.6901309,32.8155379],[-83.6903065,32.815595200000004],[-83.6904116,32.815658],[-83.6904793,32.8157444],[-83.6905284,32.8158248],[-83.690579,32.8159215]]},"id":"8a44c0b1d657fff-139ffae30ac41b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69061330000001,32.8160887]},"id":"8f44c0b1d651b52-13977a56bbb0b5fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908391,32.8164486]},"id":"8f44c0b1d65ca92-13fe79c99cdd3b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d651b52-13977a56bbb0b5fa","8f44c0b1d65ca92-13fe79c99cdd3b85"]},"geometry":{"type":"LineString","coordinates":[[-83.69061330000001,32.8160887],[-83.6906988,32.8162448],[-83.6908317,32.816397800000004],[-83.6908391,32.8164486]]},"id":"8944c0b1d67ffff-13fefa0eabd903d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d651b52-13977a56bbb0b5fa","8f44c0b1d651963-139efa6c2311d226"]},"geometry":{"type":"LineString","coordinates":[[-83.690579,32.8159215],[-83.6905881,32.8159986],[-83.69061330000001,32.8160887]]},"id":"8b44c0b1d651fff-13d7fa637370c152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69070860000001,32.8160058]},"id":"8f44c0b1d642450-13d7fa1b2b2aa0de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911814,32.8156102]},"id":"8f44c0b1d646ae0-13de78f3adf13720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d642450-13d7fa1b2b2aa0de","8f44c0b1d646ae0-13de78f3adf13720"]},"geometry":{"type":"LineString","coordinates":[[-83.69070860000001,32.8160058],[-83.6907619,32.815828700000004],[-83.69081560000001,32.8157561],[-83.69089960000001,32.8156776],[-83.6909907,32.8156443],[-83.6911814,32.8156102]]},"id":"8a44c0b1d647fff-13b679a818bc5716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d650932-13bf7b843039354e","8f44c0b1d6558c4-13d6fa5e467d5ac4"]},"geometry":{"type":"LineString","coordinates":[[-83.6901309,32.8155379],[-83.6905433,32.8155623],[-83.6905864,32.815564800000004],[-83.6906012,32.8155657]]},"id":"8a44c0b1d657fff-13b7faf148c68eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d20bcd8-13f7f7430b1774ff","8f44c0b1d2090d2-13fff5f1a725f4cd"]},"geometry":{"type":"LineString","coordinates":[[-83.69896700000001,32.815862100000004],[-83.6987297,32.8158483],[-83.6986196,32.8158431],[-83.69842720000001,32.8158331]]},"id":"8a44c0b1d20ffff-13f6e69a5162e3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7468341,32.8356407]},"id":"8f44c0b0946b4d6-13d7f114b97d8bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0946b4d6-13d7f114b97d8bda","8f44c0b0946a60d-13bff18f9e8c8393"]},"geometry":{"type":"LineString","coordinates":[[-83.7468341,32.8356407],[-83.7466375,32.8354298]]},"id":"8a44c0b0946ffff-1395f15224689fde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0946b884-13d7f063b88b9d38","8f44c0b0946b4d6-13d7f114b97d8bda"]},"geometry":{"type":"LineString","coordinates":[[-83.7471173,32.8354682],[-83.7468341,32.8356407]]},"id":"8b44c0b0946bfff-139df0bc371a594c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451654,32.8348949]},"id":"8f44c0b09455a8b-13f5f527ab05b8b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451755,32.834470700000004]},"id":"8f44c0b094730e9-17fdf5215b9f0ca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b094730e9-17fdf5215b9f0ca8","8f44c0b09455a8b-13f5f527ab05b8b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7451654,32.8348949],[-83.7451755,32.834470700000004]]},"id":"8944c0b0947ffff-17fdf5248fe909ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7455956,32.8347076]},"id":"8f44c0b09446145-17fdf41ac8fda4ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b09455a8b-13f5f527ab05b8b1","8f44c0b09446145-17fdf41ac8fda4ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7451654,32.8348949],[-83.74522680000001,32.834789],[-83.74528980000001,32.8347378],[-83.745367,32.8347104],[-83.7454544,32.834703600000005],[-83.7455956,32.8347076]]},"id":"8944c0b0947ffff-1397f4b1d349e309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451875,32.834106500000004]},"id":"8f44c0b09470605-1795f519db4d007e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.744628,32.834293800000005]},"id":"8f44c0b09454d2a-17fdf6778b09707e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b09454d2a-17fdf6778b09707e","8f44c0b09470605-1795f519db4d007e"]},"geometry":{"type":"LineString","coordinates":[[-83.7451875,32.834106500000004],[-83.74511360000001,32.8342143],[-83.7450319,32.834281000000004],[-83.7449315,32.834318200000006],[-83.74482640000001,32.8343222],[-83.744628,32.834293800000005]]},"id":"8944c0b0947ffff-17fff5b78450d8a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451953,32.8338513]},"id":"8f44c0b09470ce4-17f5f514f0eb37aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09470ce4-17f5f514f0eb37aa","8f44c0b09470605-1795f519db4d007e"]},"geometry":{"type":"LineString","coordinates":[[-83.7451953,32.8338513],[-83.745191,32.834],[-83.7451875,32.834106500000004]]},"id":"8b44c0b09470fff-17b5f5175abc3ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7346153,32.833524100000005]},"id":"8f44c0b0b80b00b-179e9ee976a7b788"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b80b00b-179e9ee976a7b788","8f44c0b0b80ba23-179e1e72d859c8ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7348051,32.833500900000004],[-83.7346153,32.833524100000005]]},"id":"8b44c0b0b80bfff-17975eae2892b469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8a8376-13bfb4c4c2c87529","8f44c0b0b8a8744-13bf552c6363ac46"]},"geometry":{"type":"LineString","coordinates":[[-83.73205060000001,32.8329461],[-83.7322164,32.832943400000005]]},"id":"8b44c0b0b8a8fff-13be94f8987a2d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727112,32.8311544]},"id":"8f44c0b0bd5e728-17dfa13b00644bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72675690000001,32.8312952]},"id":"8f44c0b0bc2d3a8-17b7a218f67ab6de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0bd5e728-17dfa13b00644bbf","8f44c0b0bc2d3a8-17b7a218f67ab6de"]},"geometry":{"type":"LineString","coordinates":[[-83.727112,32.8311544],[-83.72706090000001,32.8312365],[-83.7269919,32.831284100000005],[-83.7268928,32.831302],[-83.72675690000001,32.8312952]]},"id":"8944c0b0bd7ffff-1797319d9cdf02de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7213232,32.8282471]},"id":"8f44c0b0bd94846-13b67f5d0d01f53c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7214148,32.828153400000005]},"id":"8f44c0b0bdb35b5-17ffef23c8f89ce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bd94846-13b67f5d0d01f53c","8f44c0b0bdb35b5-17ffef23c8f89ce8"]},"geometry":{"type":"LineString","coordinates":[[-83.7213232,32.8282471],[-83.7214148,32.828153400000005]]},"id":"8944c0b0bdbffff-139f3f4063f3acfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7217822,32.8284068]},"id":"8f44c0b0bdb3229-139e6e3e23b52290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bdb3229-139e6e3e23b52290","8f44c0b0bdb35b5-17ffef23c8f89ce8"]},"geometry":{"type":"LineString","coordinates":[[-83.7217822,32.8284068],[-83.7214148,32.828153400000005]]},"id":"8b44c0b0bdb3fff-13df3eb0f3fa7c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7200408,32.8275658]},"id":"8f44c0b0aace65c-179eb27e863b2131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72024400000001,32.827512]},"id":"8f44c0b0aace342-17ff31ff8992c2f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aace342-17ff31ff8992c2f3","8f44c0b0aace65c-179eb27e863b2131"]},"geometry":{"type":"LineString","coordinates":[[-83.7200408,32.8275658],[-83.72024400000001,32.827512]]},"id":"8b44c0b0aacefff-17fff23f01ef7b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163847,32.8264894]},"id":"8f44c0b0a331856-13fffb6b99fc8ea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0a322d4c-13963a87b79657f4","8f44c0b0a331856-13fffb6b99fc8ea6"]},"geometry":{"type":"LineString","coordinates":[[-83.7167493,32.8263265],[-83.716707,32.8263994],[-83.7166433,32.826445500000005],[-83.71656010000001,32.826478200000004],[-83.7163847,32.8264894]]},"id":"8944c0b0a33ffff-13dfbaed2b8cb152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160865,32.826548]},"id":"8f44c0b0a331426-1796bc25fb4f16cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71646960000001,32.826635800000005]},"id":"8f44c0b0a331a08-17d77b368d6180c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a331426-1796bc25fb4f16cb","8f44c0b0a331a08-17d77b368d6180c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7160865,32.826548],[-83.71646960000001,32.826635800000005]]},"id":"8b44c0b0a331fff-17bffbae4e8fb885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71303520000001,32.8258425]},"id":"8f44c0b0a05e356-13d7d399034c1cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a331426-1796bc25fb4f16cb","8f44c0b0a05e356-13d7d399034c1cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.71303520000001,32.8258425],[-83.7139453,32.8260547],[-83.7147668,32.826249100000005],[-83.7153183,32.826369],[-83.7160865,32.826548]]},"id":"8744c0b0affffff-13b73fdfbbab4d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129086,32.826238000000004]},"id":"8f44c0b0a05a305-13dec3e82c34f86b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a05e356-13d7d399034c1cfb","8f44c0b0a05a305-13dec3e82c34f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.7129086,32.826238000000004],[-83.713003,32.825964],[-83.71303520000001,32.8258425]]},"id":"8a44c0b0a05ffff-13d7c3bebf08ecf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709721,32.8207036]},"id":"8f44c0b0a1aa0b6-17dfcbb06b08b780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a1a8a50-17bf49c8c7e58442","8f44c0b0a1aa0b6-17dfcbb06b08b780"]},"geometry":{"type":"LineString","coordinates":[[-83.71050120000001,32.8206736],[-83.7099331,32.820667],[-83.709721,32.8207036]]},"id":"8a44c0b0a1affff-17bfcabd4b1c1865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71992200000001,32.8134457]},"id":"8f44c0b0e2db99e-1797b2c8c8819105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2d8b33-13dff215e2f91f0a","8f44c0b0e2db99e-1797b2c8c8819105"]},"geometry":{"type":"LineString","coordinates":[[-83.7202082,32.8131263],[-83.7201909,32.8131811],[-83.72015760000001,32.8132372],[-83.72007310000001,32.813332200000005],[-83.71992200000001,32.8134457]]},"id":"8a44c0b0e2dffff-13bf72634356d632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08cb69b2-13fee2a6319d272c","8f44c0b0e369ac5-139fe20027cb1bc2"]},"geometry":{"type":"LineString","coordinates":[[-83.7267966,32.808959800000004],[-83.7266603,32.809036],[-83.7265309,32.8091084]]},"id":"8a44c0b0e36ffff-13de725331409d0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08cb6b89-13ff32554f830a32","8f44c0b08cb419c-13b731b28d957211"]},"geometry":{"type":"LineString","coordinates":[[-83.7266604,32.809313700000004],[-83.7269208,32.8091761]]},"id":"8a44c0b08cb7fff-13d63203ee291eb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73165970000001,32.807079]},"id":"8f44c0b08d0076d-179e7620be278a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d0076d-179e7620be278a0b","8f44c0b08d06301-13bf76bccc058aed"]},"geometry":{"type":"LineString","coordinates":[[-83.73141000000001,32.8067255],[-83.73165970000001,32.807079]]},"id":"8a44c0b08d07fff-179ff66ec6cb46ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d06a74-13975670c31f7504","8f44c0b08d06913-13f756c9ee6de0eb"]},"geometry":{"type":"LineString","coordinates":[[-83.73153160000001,32.8066581],[-83.73138900000001,32.806434]]},"id":"8b44c0b08d06fff-13bf569d51ad01bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d06a74-13975670c31f7504","8f44c0b08d06301-13bf76bccc058aed"]},"geometry":{"type":"LineString","coordinates":[[-83.73141000000001,32.8067255],[-83.731486,32.806683],[-83.73153160000001,32.8066581]]},"id":"8b44c0b08d06fff-13965696d4d54a69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75337640000001,32.7992664]},"id":"8f44c0b0ca6e488-13f5e11bc1b5bf35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7529269,32.7993746]},"id":"8f44c0b0ca454f0-13bde234b7dbd63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca6e488-13f5e11bc1b5bf35","8f44c0b0ca454f0-13bde234b7dbd63f"]},"geometry":{"type":"LineString","coordinates":[[-83.75337640000001,32.7992664],[-83.7531361,32.7993396],[-83.7530521,32.799369],[-83.7530011,32.799378000000004],[-83.7529269,32.7993746]]},"id":"8944c0b0ca7ffff-139ff1a74b6cfc14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.755047,32.811884]},"id":"8f44c0b0d0b5119-13d7dd07af5c01b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d0a2c9c-13d5dc93e4a36458","8f44c0b0d0b5119-13d7dd07af5c01b1"]},"geometry":{"type":"LineString","coordinates":[[-83.755047,32.811884],[-83.7551684,32.8120227],[-83.75523220000001,32.8121181]]},"id":"8944c0b0d0bffff-139ffccb887681c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7467424,32.8097699]},"id":"8f44c0b0d583a9e-139ff14e0016b8e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74553870000001,32.8097834]},"id":"8f44c0b0d59ec84-13b7f43e57885a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d59ec84-13b7f43e57885a45","8f44c0b0d583a9e-139ff14e0016b8e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7467424,32.8097699],[-83.74628750000001,32.8097743],[-83.74553870000001,32.8097834]]},"id":"8944c0b0d5bffff-139ff2c63d849b98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d59ec84-13b7f43e57885a45","8f44c0b0888aa30-13d68920f67474fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7369841,32.8127048],[-83.73743300000001,32.812486],[-83.73863200000001,32.811932],[-83.739067,32.811731],[-83.74119800000001,32.810741],[-83.74167800000001,32.810512],[-83.742726,32.810035],[-83.742908,32.809969],[-83.743071,32.809919],[-83.74330900000001,32.809862],[-83.743547,32.809832],[-83.743656,32.80982],[-83.74370590000001,32.8098179],[-83.74432300000001,32.809792],[-83.7445074,32.8097907],[-83.74553870000001,32.8097834]]},"id":"8644c0b0fffffff-17d7fee5b247c03e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08126d5e-13be9b1ff01bef6c","8f44c0b0888aa30-13d68920f67474fc"]},"geometry":{"type":"LineString","coordinates":[[-83.73616650000001,32.8130953],[-83.7369841,32.8127048]]},"id":"8844c0b089fffff-13be9a207b0ae722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7335942,32.814764700000005]},"id":"8f44c0b081a1383-17dff167a4a8070b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b081ae42b-139ed22a4754e87f","8f44c0b081a1383-17dff167a4a8070b"]},"geometry":{"type":"LineString","coordinates":[[-83.7335942,32.814764700000005],[-83.73328280000001,32.8150765]]},"id":"8944c0b081bffff-17bf71c8f82a9140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7272655,32.8188404]},"id":"8f44c0b0845540c-13bf60db1ec48974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72680310000001,32.8191277]},"id":"8f44c0b08450688-13f6f1fc1c5d67e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0845540c-13bf60db1ec48974","8f44c0b08450688-13f6f1fc1c5d67e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7272655,32.8188404],[-83.72680310000001,32.8191277]]},"id":"8a44c0b08457fff-139f216b9f647b81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7131167,32.8257001]},"id":"8f44c0b0a05ea24-13fed366172dbfb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a05ea24-13fed366172dbfb0","8f44c0b0a05e356-13d7d399034c1cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.71303520000001,32.8258425],[-83.7131167,32.8257001]]},"id":"8b44c0b0a05efff-13bf537f97580940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a05ea24-13fed366172dbfb0","8f44c0b0a05cc26-13d652e945b7971d"]},"geometry":{"type":"LineString","coordinates":[[-83.7131167,32.8257001],[-83.71314170000001,32.8256566],[-83.71320700000001,32.825546800000005],[-83.71331640000001,32.825420900000005]]},"id":"8a44c0b0a05ffff-13b6632bc8ab8e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710886,32.742297]},"id":"8f44c0b0403069d-17dfe8d84ecd426e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0403069d-17dfe8d84ecd426e","8f44c0b040330c0-17be68baeafe6cfc"]},"geometry":{"type":"LineString","coordinates":[[-83.71093300000001,32.742621],[-83.71094400000001,32.742476],[-83.710886,32.742297]]},"id":"8a44c0b04037fff-17d7f8bfcc9b8005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71679730000001,32.7441054]},"id":"8f44c0b04ab3011-13dffa69b44cf205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04149aa2-13d63c204f2e48eb","8f44c0b04ab3011-13dffa69b44cf205"]},"geometry":{"type":"LineString","coordinates":[[-83.7160956,32.7438913],[-83.71647610000001,32.743990600000004],[-83.71679730000001,32.7441054]]},"id":"8944c0b04abffff-13963b4385fa4bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a8318-1397febe2658ece5","8f44c0a2a8a9620-13f6fe4fce7fdad4"]},"geometry":{"type":"LineString","coordinates":[[-83.70864680000001,32.918017500000005],[-83.70847020000001,32.9176859]]},"id":"8a44c0a2a8affff-13ff5e86faf25886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74736510000001,32.8814056]},"id":"8f44c0b5237600c-13ffefc8d5abace2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7473836,32.8810396]},"id":"8f44c0b52329700-139defbd4ba8a0b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5237600c-13ffefc8d5abace2","8f44c0b52329700-139defbd4ba8a0b9"]},"geometry":{"type":"LineString","coordinates":[[-83.74736510000001,32.8814056],[-83.74714060000001,32.881396800000005],[-83.7471608,32.8810309],[-83.7473836,32.8810396]]},"id":"8844c0b523fffff-139df0286b8e1910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7481844,32.8801567]},"id":"8f44c0b52ad1295-17f5fdc8cff471e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74763510000001,32.8801447]},"id":"8f44c0b52ad3724-17ffff2018a8c5a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b52ad3724-17ffff2018a8c5a2","8f44c0b52ad1295-17f5fdc8cff471e4"]},"geometry":{"type":"LineString","coordinates":[[-83.7481844,32.8801567],[-83.74763510000001,32.8801447]]},"id":"8a44c0b52ad7fff-17fffe747677563d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75674500000001,32.8798223]},"id":"8f44c0b50689620-17b5f8e262a11da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.756178,32.8798145]},"id":"8f44c0b5068b408-179dda44c9a64653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50689620-17b5f8e262a11da0","8f44c0b5068b408-179dda44c9a64653"]},"geometry":{"type":"LineString","coordinates":[[-83.75674500000001,32.8798223],[-83.756748,32.8795389],[-83.75683430000001,32.8792854],[-83.7568866,32.879099100000005],[-83.75688050000001,32.8789852],[-83.75683430000001,32.8789335],[-83.75635670000001,32.8789231],[-83.75627970000001,32.87898],[-83.7562365,32.879081],[-83.756178,32.8798145]]},"id":"8a44c0b5068ffff-17ddf968424da750"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7467999,32.879679700000004]},"id":"8f44c0b52321d0a-17d7f12a1feca6b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b523220ae-17d5f328a3a15887","8f44c0b52321d0a-17d7f12a1feca6b8"]},"geometry":{"type":"LineString","coordinates":[[-83.7467999,32.879679700000004],[-83.74598300000001,32.879669400000004]]},"id":"8a44c0b52327fff-17d5f2296abfa984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7402227,32.878812]},"id":"8f44c0b520c550e-13bf8138da0fa349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74022500000001,32.8795768]},"id":"8f44c0b520ce832-17978137660fcfc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520ce832-17978137660fcfc3","8f44c0b520c550e-13bf8138da0fa349"]},"geometry":{"type":"LineString","coordinates":[[-83.7402227,32.878812],[-83.74022280000001,32.878866],[-83.74022500000001,32.8795768]]},"id":"8944c0b520fffff-179e813820c17205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328f6a53-17d7f2fec65c3cff","8f44c0a328f4d2b-13d7f274006dab2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6152,32.8592255],[-83.61497800000001,32.859603]]},"id":"8a44c0a328f7fff-17dff2b962d3dd49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62083460000001,32.851220600000005]},"id":"8f44c0a3621194a-13dfe4b269f4f4f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36206746-179763c20326be38","8f44c0a3621194a-13dfe4b269f4f4f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6212192,32.850927],[-83.6209468,32.851134900000005],[-83.62083460000001,32.851220600000005]]},"id":"8944c0a3623ffff-17f7243a32cd653f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621353,32.850828]},"id":"8f44c0a36206149-17d7a36e62bfd005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36206149-17d7a36e62bfd005","8f44c0a36206746-179763c20326be38"]},"geometry":{"type":"LineString","coordinates":[[-83.621353,32.850828],[-83.6212192,32.850927]]},"id":"8b44c0a36206fff-17f773983bdfecb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62472580000001,32.8503003]},"id":"8f44c0a363462e9-179fbb326edf509d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a363462e9-179fbb326edf509d","8f44c0a363732ec-17b79c1378d968e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6243657,32.849952800000004],[-83.62472580000001,32.8503003]]},"id":"8944c0a3637ffff-17b73ba2ed9f6cdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36366141-139f597f3f58f77b","8f44c0a36375344-13b7fa794396f92a"]},"geometry":{"type":"LineString","coordinates":[[-83.625022,32.849339],[-83.625248,32.84921],[-83.62542210000001,32.8490917]]},"id":"8944c0a3637ffff-13ff19fabdc541b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620908,32.847507]},"id":"8f44c0a36316826-17bfe48481612116"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3606b089-1797a405747eab4b","8f44c0a36316826-17bfe48481612116"]},"geometry":{"type":"LineString","coordinates":[[-83.62111130000001,32.84642],[-83.62104670000001,32.8466855],[-83.62098590000001,32.8469447],[-83.62092840000001,32.8472579],[-83.620908,32.847507]]},"id":"8744c0a36ffffff-17f7744faeb51467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6210861,32.8472644]},"id":"8f44c0a36049a1e-17b76415395a09b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36049a1e-17b76415395a09b5","8f44c0a36316826-17bfe48481612116"]},"geometry":{"type":"LineString","coordinates":[[-83.620908,32.847507],[-83.6210861,32.8472644]]},"id":"8944c0a3633ffff-17f7344ce6ebe444"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6198056,32.8482361]},"id":"8f44c0a363a38c0-1397b7358684c997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a363a1ce2-13bfb680f448164f","8f44c0a363a38c0-1397b7358684c997"]},"geometry":{"type":"LineString","coordinates":[[-83.6198056,32.8482361],[-83.62009450000001,32.8480969]]},"id":"8a44c0a363a7fff-13df36db490b123e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36313db4-13ffa4919a3a42b1","8f44c0a363a1ce2-13bfb680f448164f"]},"geometry":{"type":"LineString","coordinates":[[-83.6208871,32.8481976],[-83.62075700000001,32.8481454],[-83.62052220000001,32.8481266],[-83.62009450000001,32.8480969]]},"id":"8844c0a363fffff-13d7f586b9c5aa14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616787,32.848095]},"id":"8f44c0a3676486c-13bf6e942e7b1cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764a0a-13977e8f013e01c3","8f44c0a3676486c-13bf6e942e7b1cac"]},"geometry":{"type":"LineString","coordinates":[[-83.6167952,32.8482325],[-83.616787,32.848095]]},"id":"8b44c0a36764fff-13d76e9190469720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764c69-13bf6f090a7dcad3","8f44c0a3676486c-13bf6e942e7b1cac"]},"geometry":{"type":"LineString","coordinates":[[-83.616787,32.848095],[-83.6166,32.84809]]},"id":"8b44c0a36764fff-13bffece9adea82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616056,32.848225]},"id":"8f44c0a367661b0-13ffb05d0d587b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a367640e0-13973f07204ae1c7","8f44c0a367661b0-13ffb05d0d587b75"]},"geometry":{"type":"LineString","coordinates":[[-83.616056,32.848225],[-83.616493,32.8482296],[-83.61660300000001,32.8482307]]},"id":"8a44c0a36767fff-13ff7fb21ef2821a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61265590000001,32.848082600000005]},"id":"8f44c0a36718901-13b7b8aa1486f18e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612654,32.8482166]},"id":"8f44c0a36718bb4-13f778ab48795713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36718bb4-13f778ab48795713","8f44c0a36718901-13b7b8aa1486f18e"]},"geometry":{"type":"LineString","coordinates":[[-83.61265590000001,32.848082600000005],[-83.612654,32.8482166]]},"id":"8c44c0a367189ff-13dfb8aaabebe586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109335,32.848111700000004]},"id":"8f44c0a367aa96d-13b7fcde95a9d887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61093550000001,32.8482259]},"id":"8f44c0a367aab03-13ff3cdd5e0dd152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367aa96d-13b7fcde95a9d887","8f44c0a367aab03-13ff3cdd5e0dd152"]},"geometry":{"type":"LineString","coordinates":[[-83.6109335,32.848111700000004],[-83.61093550000001,32.8482259]]},"id":"8b44c0a367aafff-13dfbcddfd44121c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61092810000001,32.848752600000005]},"id":"8f44c0a367ab681-13d77ce1f0916258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a367aab03-13ff3cdd5e0dd152","8f44c0a367ab681-13d77ce1f0916258"]},"geometry":{"type":"LineString","coordinates":[[-83.61092810000001,32.848752600000005],[-83.61093530000001,32.8483035],[-83.61093550000001,32.8482259]]},"id":"8944c0a367bffff-13b7fcdf675f4507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604118,32.848393]},"id":"8f44c0b8da25591-13f7ed824b23ca1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8da25591-13f7ed824b23ca1e","8f44c0b8da20c68-1397ce0f8a88d4ef"]},"geometry":{"type":"LineString","coordinates":[[-83.603892,32.848444],[-83.604118,32.848393]]},"id":"8a44c0b8da27fff-13f7ddc8ee108d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60224600000001,32.848779]},"id":"8f44c0b8da3224b-13d7f21445b59f5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8db89225-13d7d35624fad1fc","8f44c0b8da3224b-13d7f21445b59f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.601731,32.848780000000005],[-83.60193340000001,32.848787300000005],[-83.602057,32.8487883],[-83.60224600000001,32.848779]]},"id":"8944c0b8da3ffff-13df72b53fddd5b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57975780000001,32.8398254]},"id":"8f44c0b8c23360a-17ffe8fb6552ac5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5808389,32.840130900000005]},"id":"8f44c0b8c2055a1-17bfd657b3331e32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c23360a-17ffe8fb6552ac5a","8f44c0b8c2055a1-17bfd657b3331e32"]},"geometry":{"type":"LineString","coordinates":[[-83.57975780000001,32.8398254],[-83.5808389,32.840130900000005]]},"id":"8944c0b8c23ffff-17dfe7a989bde330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5800013,32.8397609]},"id":"8f44c0b8c233ada-17d798633b147452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c23360a-17ffe8fb6552ac5a","8f44c0b8c233ada-17d798633b147452"]},"geometry":{"type":"LineString","coordinates":[[-83.5800013,32.8397609],[-83.5798709,32.8398003],[-83.57975780000001,32.8398254]]},"id":"8b44c0b8c233fff-17ffa8aef9c5bff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0c18d4-17b7cb896adae0d6","8f44c0b8e0c3d6d-17d7dcce4a501a0e"]},"geometry":{"type":"LineString","coordinates":[[-83.552497,32.84115],[-83.552109,32.84116],[-83.55197720000001,32.8411745]]},"id":"8a44c0b8e0c7fff-17bfdc2c05506c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5689478,32.801056100000004]},"id":"8f44c0b85318556-17d7b35faf715a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85318556-17d7b35faf715a32","8f44c0b8531e29d-179fb3d75096299d"]},"geometry":{"type":"LineString","coordinates":[[-83.5687563,32.800962500000004],[-83.5689478,32.801056100000004]]},"id":"8a44c0b8531ffff-17b7f39b88e60801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56995930000001,32.7993475]},"id":"8f44c0b85322711-13bfb0e7799c6f05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5697105,32.7993681]},"id":"8f44c0b85331b9b-13b7b182ffd5f47e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85331b9b-13b7b182ffd5f47e","8f44c0b85322711-13bfb0e7799c6f05"]},"geometry":{"type":"LineString","coordinates":[[-83.56995930000001,32.7993475],[-83.569837,32.799334300000005],[-83.5697105,32.7993681]]},"id":"8944c0b8533ffff-13b7e135c78da539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.569276,32.801302]},"id":"8f44c0b8531826d-17ffe2928e81cd81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85318556-17d7b35faf715a32","8f44c0b8531826d-17ffe2928e81cd81"]},"geometry":{"type":"LineString","coordinates":[[-83.5689478,32.801056100000004],[-83.5690524,32.8011627],[-83.56916580000001,32.8012333],[-83.569276,32.801302]]},"id":"8a44c0b8531ffff-17b7f2fd8675f7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56960090000001,32.8084012]},"id":"8f44c0baa595691-17d7e1c771b1764f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56918,32.8083194]},"id":"8f44c0baa590551-179fa2ce884cc2ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0baa590551-179fa2ce884cc2ec","8f44c0baa595691-17d7e1c771b1764f"]},"geometry":{"type":"LineString","coordinates":[[-83.56960090000001,32.8084012],[-83.5694127,32.8083529],[-83.56918,32.8083194]]},"id":"8a44c0baa597fff-17b7b24a4e17f394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691425,32.8076632]},"id":"8f44c0b852c9048-17f7a2e5f08aa4be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa590551-179fa2ce884cc2ec","8f44c0b852c9048-17f7a2e5f08aa4be"]},"geometry":{"type":"LineString","coordinates":[[-83.56918,32.8083194],[-83.5691425,32.8076632]]},"id":"8944c0baa5bffff-17d7b2da3a3c4a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0baa590551-179fa2ce884cc2ec","8f44c0baa59280d-179fb3541f9c42d2"]},"geometry":{"type":"LineString","coordinates":[[-83.56918,32.8083194],[-83.5689663,32.808336100000005]]},"id":"8a44c0baa597fff-1797e31142426965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa4b36e1-17b7a3530a5772a9","8f44c0b81b35982-13d7e3985cf75716"]},"geometry":{"type":"LineString","coordinates":[[-83.568968,32.81102],[-83.56888500000001,32.812123],[-83.568859,32.812672],[-83.5688571,32.813138]]},"id":"8744c0b81ffffff-13bff37f33899620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa596d5c-17f7e3691c55eabd","8f44c0baa59280d-179fb3541f9c42d2"]},"geometry":{"type":"LineString","coordinates":[[-83.5689327,32.8078668],[-83.568959,32.8081516],[-83.5689663,32.808336100000005]]},"id":"8a44c0baa597fff-1797f35cc3971524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5687979,32.8821165]},"id":"8f44c0b8b204c4d-13bff3bd5f3bb819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5698938,32.8812699]},"id":"8f44c0b8b30b602-13bfb1106016b633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b204c4d-13bff3bd5f3bb819","8f44c0b8b30b602-13bfb1106016b633"]},"geometry":{"type":"LineString","coordinates":[[-83.5687979,32.8821165],[-83.5689356,32.8820587],[-83.56909490000001,32.8819396],[-83.5693971,32.8816883],[-83.5698938,32.8812699]]},"id":"8844c0b8b3fffff-13bff25ec162ed18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56980630000001,32.8811963]},"id":"8f44c0b8b30b4ce-13ffb1471b79ecf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b204c4d-13bff3bd5f3bb819","8f44c0b8b30b4ce-13ffb1471b79ecf3"]},"geometry":{"type":"LineString","coordinates":[[-83.56980630000001,32.8811963],[-83.56930720000001,32.8816147],[-83.5692752,32.8816415],[-83.5690057,32.881867400000004],[-83.5688586,32.8820008],[-83.5687979,32.8821165]]},"id":"8844c0b8b3fffff-1397b28e66089466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59156850000001,32.90059]},"id":"8f44c0a10c9c8ac-13d7ec25b8b9b27a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5921414,32.9007798]},"id":"8f44c0a10c8334a-13df6abfab18c7fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c9c8ac-13d7ec25b8b9b27a","8f44c0a10c8334a-13df6abfab18c7fc"]},"geometry":{"type":"LineString","coordinates":[[-83.59156850000001,32.90059],[-83.5916839,32.900622000000006],[-83.5921414,32.9007798]]},"id":"8944c0a10cbffff-139f7b72214767c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6172186,32.84499]},"id":"8f44c0a3601935e-1397ed866f3eec98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6180382,32.844565]},"id":"8f44c0a36008110-139f2b862d6d7013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36008110-139f2b862d6d7013","8f44c0a3601935e-1397ed866f3eec98"]},"geometry":{"type":"LineString","coordinates":[[-83.6172186,32.84499],[-83.6173423,32.8448693],[-83.617406,32.8448143],[-83.6174733,32.8447711],[-83.61756530000001,32.8447161],[-83.61771750000001,32.8446641],[-83.61782360000001,32.844638800000006],[-83.61790500000001,32.8446165],[-83.6180382,32.844565]]},"id":"8944c0a3603ffff-13fffc94cc9ee555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61739700000001,32.8438279]},"id":"8f44c0a360038a5-17d77d16e60e55a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36008110-139f2b862d6d7013","8f44c0a360038a5-17d77d16e60e55a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6180382,32.844565],[-83.6178732,32.8444783],[-83.6177387,32.844401000000005],[-83.61764840000001,32.8443296],[-83.6175529,32.844233],[-83.6174874,32.8441333],[-83.6174503,32.8440486],[-83.61741310000001,32.8439222],[-83.61739700000001,32.8438279]]},"id":"8944c0a3603ffff-17dfec7bce7914ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171305,32.845598700000004]},"id":"8f44c0a360e041d-13973dbd7bdefb6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3601935e-1397ed866f3eec98","8f44c0a360e041d-13973dbd7bdefb6c"]},"geometry":{"type":"LineString","coordinates":[[-83.6171305,32.845598700000004],[-83.6172186,32.84499]]},"id":"8a44c0a360e7fff-13d72da1f1dd255b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177746,32.845932000000005]},"id":"8f44c0a360e114d-13f7ac2ae3354635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6173595,32.8459547]},"id":"8f44c0a360e385d-13f7bd2e53b08459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360e114d-13f7ac2ae3354635","8f44c0a360e385d-13f7bd2e53b08459"]},"geometry":{"type":"LineString","coordinates":[[-83.6177746,32.845932000000005],[-83.6176174,32.8459657],[-83.6175224,32.8459701],[-83.6173595,32.8459547]]},"id":"8a44c0a360e7fff-13f73cac16aba839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360e041d-13973dbd7bdefb6c","8f44c0a360e385d-13f7bd2e53b08459"]},"geometry":{"type":"LineString","coordinates":[[-83.6173595,32.8459547],[-83.61729100000001,32.845914400000005],[-83.61723260000001,32.8458713],[-83.61718300000001,32.8458089],[-83.617153,32.845727100000005],[-83.6171305,32.845598700000004]]},"id":"8a44c0a360e7fff-1397fd8b87e09738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616991,32.846479]},"id":"8f44c0a360c5093-17bf6e14a5d4e63b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6170659,32.8460118]},"id":"8f44c0a360e355e-13976de5d5150a1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360c5093-17bf6e14a5d4e63b","8f44c0a360e355e-13976de5d5150a1a"]},"geometry":{"type":"LineString","coordinates":[[-83.616991,32.846479],[-83.6170486,32.846119],[-83.6170659,32.8460118]]},"id":"8944c0a360fffff-17b76dfd43da9469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73602190000001,32.927359800000005]},"id":"8f44c0a28262a11-13bfeb7a55e46a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73598700000001,32.927257700000006]},"id":"8f44c0a2826285c-13f61b90232531a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28262a11-13bfeb7a55e46a0e","8f44c0a2826285c-13f61b90232531a1"]},"geometry":{"type":"LineString","coordinates":[[-83.73602190000001,32.927359800000005],[-83.73598700000001,32.927257700000006]]},"id":"8b44c0a28262fff-13960b85353eaa06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73446840000001,32.927536700000005]},"id":"8f44c0a282548a8-139e7f454f937690"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73442010000001,32.927567100000005]},"id":"8f44c0a28254135-13b77f637c8d0b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28254135-13b77f637c8d0b37","8f44c0a282548a8-139e7f454f937690"]},"geometry":{"type":"LineString","coordinates":[[-83.73446840000001,32.927536700000005],[-83.73442010000001,32.927567100000005]]},"id":"8b44c0a28254fff-13b7ff5451444e5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73385540000001,32.9270903]},"id":"8f44c0a28208ac3-139770c469da0950"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28254135-13b77f637c8d0b37","8f44c0a28208ac3-139770c469da0950"]},"geometry":{"type":"LineString","coordinates":[[-83.73385540000001,32.9270903],[-83.733885,32.9271619],[-83.7339252,32.9272654],[-83.7339762,32.9273465],[-83.734172,32.9275739],[-83.7342095,32.9276099],[-83.7342632,32.9276324],[-83.73430880000001,32.9276302],[-83.7343517,32.9276099],[-83.73442010000001,32.927567100000005]]},"id":"8844c0a283fffff-13dff0301f94127b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73464270000001,32.9274399]},"id":"8f44c0a2827225e-13f7fed85d4baaf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7342419,32.927277600000004]},"id":"8f44c0a28209b06-13fe8fd2db4ec819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2827225e-13f7fed85d4baaf8","8f44c0a28209b06-13fe8fd2db4ec819"]},"geometry":{"type":"LineString","coordinates":[[-83.73464270000001,32.9274399],[-83.7345099,32.9272857],[-83.734459,32.9272317],[-83.7344053,32.9272137],[-83.7343517,32.9272227],[-83.7342419,32.927277600000004]]},"id":"8944c0a2827ffff-13962f4b33b4a6b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62530000000001,32.848970800000004]},"id":"8f44c0a36366c70-13dfd9cb896f9896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36366c70-13dfd9cb896f9896","8f44c0a3637516c-13d71aa142213a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.62530000000001,32.848970800000004],[-83.62521500000001,32.849027],[-83.624958,32.849184]]},"id":"8944c0a3637ffff-13973a35fdd1e613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655585,32.742234]},"id":"8f44c0b14ace475-17becfdb6f5522c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558139,32.741161600000005]},"id":"8f44c0b14ac5d91-139ecf4c581dc796"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14ace475-17becfdb6f5522c2","8f44c0b14ac5d91-139ecf4c581dc796"]},"geometry":{"type":"LineString","coordinates":[[-83.655585,32.742234],[-83.6557227,32.7421832],[-83.6557925,32.74212],[-83.6557549,32.7418989],[-83.65573880000001,32.7416282],[-83.65580320000001,32.741353000000004],[-83.6558139,32.741161600000005]]},"id":"8944c0b14afffff-179fef7004cd4f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a344ed19b-17df47efa7c9daf9","8f44c0a344e98dc-17d7a7e3c9b9f2b6"]},"geometry":{"type":"LineString","coordinates":[[-83.63263400000001,32.840961],[-83.63261390000001,32.8407075],[-83.632615,32.84057]]},"id":"8a44c0a344effff-17d787ec23b6df21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6291791,32.8446634]},"id":"8f44c0a36b587ae-13dfb053196c03f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62938000000001,32.8444396]},"id":"8f44c0a36b58812-17bfcfd5806a266d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b587ae-13dfb053196c03f2","8f44c0a36b58812-17bfcfd5806a266d"]},"geometry":{"type":"LineString","coordinates":[[-83.6291791,32.8446634],[-83.62938000000001,32.8444396]]},"id":"8b44c0a36b58fff-1397b0144f52a6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6560295,32.776615500000005]},"id":"8f44c0b11088154-13befec5944bf9b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65610240000001,32.7764104]},"id":"8f44c0b11088934-13bece9809d03e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11088154-13befec5944bf9b8","8f44c0b11088934-13bece9809d03e12"]},"geometry":{"type":"LineString","coordinates":[[-83.6560295,32.776615500000005],[-83.65610240000001,32.7764104]]},"id":"8a44c0b1108ffff-13feeeaed7afd9ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6396126,32.8405615]},"id":"8f44c0a340f1595-17d6f6da2f12fcfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6386464,32.8404596]},"id":"8f44c0a340898c8-1797f93600461f68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340f1595-17d6f6da2f12fcfe","8f44c0a340898c8-1797f93600461f68"]},"geometry":{"type":"LineString","coordinates":[[-83.6396126,32.8405615],[-83.63952450000001,32.8405841],[-83.63933750000001,32.8405931],[-83.6391055,32.840585600000004],[-83.6386464,32.8404596]]},"id":"8944c0a340fffff-17d7f809f778057f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6397426,32.839559300000005]},"id":"8f44c0a3401a768-13d6f688ed75c085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63980910000001,32.8394138]},"id":"8f44c0a3401a146-13fff65f581100fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3401a146-13fff65f581100fe","8f44c0a3401a768-13d6f688ed75c085"]},"geometry":{"type":"LineString","coordinates":[[-83.6397426,32.839559300000005],[-83.63980910000001,32.8394138]]},"id":"8b44c0a3401afff-13b7f6741f979f3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63866850000001,32.8396941]},"id":"8f44c0a340ab44c-17bef9283fc47afa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340ab44c-17bef9283fc47afa","8f44c0a3401a768-13d6f688ed75c085"]},"geometry":{"type":"LineString","coordinates":[[-83.6397426,32.839559300000005],[-83.6392124,32.8394156],[-83.6390937,32.8393839],[-83.6390112,32.8393883],[-83.6389261,32.8394349],[-83.6388242,32.839550800000005],[-83.6387662,32.8396266],[-83.63866850000001,32.8396941]]},"id":"8844c0a341fffff-13bef7ed70fb1a3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64008150000001,32.839677]},"id":"8f44c0a3401bc4a-179ef5b51f876d99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3401a768-13d6f688ed75c085","8f44c0a3401bc4a-179ef5b51f876d99"]},"geometry":{"type":"LineString","coordinates":[[-83.6397426,32.839559300000005],[-83.64008150000001,32.839677]]},"id":"8a44c0a3401ffff-13fff61ef9a4c9eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691348,32.880980300000004]},"id":"8f44c0b8b3190d1-13f7b2eace522b68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691427,32.8815253]},"id":"8f44c0b8b22620a-13dff2e5dd1689e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8b22620a-13dff2e5dd1689e6","8f44c0b8b3190d1-13f7b2eace522b68"]},"geometry":{"type":"LineString","coordinates":[[-83.5691348,32.880980300000004],[-83.5694564,32.8812688],[-83.5694047,32.8813096],[-83.5691427,32.8815253]]},"id":"8844c0b8b3fffff-13b7a28532f703b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8b22620a-13dff2e5dd1689e6","8f44c0b8b3190d1-13f7b2eace522b68"]},"geometry":{"type":"LineString","coordinates":[[-83.5691427,32.8815253],[-83.56880170000001,32.881233200000004],[-83.56912200000001,32.880969400000005],[-83.5691348,32.880980300000004]]},"id":"8844c0b8b3fffff-1397e351939786e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085618,32.807687200000004]},"id":"8f44c0b0e6b4059-1796ce84e4b343b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085586,32.808032000000004]},"id":"8f44c0b0e6b0bab-17de4e86e41b7cd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e6b0bab-17de4e86e41b7cd3","8f44c0b0e6b4059-1796ce84e4b343b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7085618,32.807687200000004],[-83.7085586,32.808032000000004]]},"id":"8a44c0b0e6b7fff-17f64e85e31bf4ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083628,32.807685400000004]},"id":"8f44c0b0e6b47b5-17976f0147360f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083595,32.8080318]},"id":"8f44c0b0e6b018b-17dfef03558ff693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e6b018b-17dfef03558ff693","8f44c0b0e6b47b5-17976f0147360f60"]},"geometry":{"type":"LineString","coordinates":[[-83.7083628,32.807685400000004],[-83.7083595,32.8080318]]},"id":"8a44c0b0e6b7fff-17ffef0252844d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7076301,32.807557700000004]},"id":"8f44c0b1db6b666-17b7d0cb3c3bb196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7076258,32.8080312]},"id":"8f44c0b1db4d2f1-17dfd0cde1b353bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db4d2f1-17dfd0cde1b353bb","8f44c0b1db6b666-17b7d0cb3c3bb196"]},"geometry":{"type":"LineString","coordinates":[[-83.7076301,32.807557700000004],[-83.7076258,32.8080312]]},"id":"8944c0b1db7ffff-17d7d0cc99449b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70779370000001,32.8075586]},"id":"8f44c0b1db6b229-17b67064fd4e049e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70778940000001,32.8080313]},"id":"8f44c0b0e6b2cf6-17dfd067a7ca3a88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e6b2cf6-17dfd067a7ca3a88","8f44c0b1db6b229-17b67064fd4e049e"]},"geometry":{"type":"LineString","coordinates":[[-83.70779370000001,32.8075586],[-83.70778940000001,32.8080313]]},"id":"8844c0b0e7fffff-17d7f0664676ab4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70975150000001,32.8256506]},"id":"8f44c0b0a0d50d0-13dfeb9d5eb7fd4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7097547,32.8254879]},"id":"8f44c0b0a0d5c43-13fffb9b5ac989c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d5c43-13fffb9b5ac989c5","8f44c0b0a0d50d0-13dfeb9d5eb7fd4a"]},"geometry":{"type":"LineString","coordinates":[[-83.70975150000001,32.8256506],[-83.7097547,32.8254879]]},"id":"8b44c0b0a0d5fff-13bedb9c565f1d5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6768208,32.7857484]},"id":"8f44c0b1c89a131-13f6dc03041a619d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6759351,32.786191]},"id":"8f44c0b1cc6b204-139ffe2c9d394ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc6b204-139ffe2c9d394ff7","8f44c0b1c89a131-13f6dc03041a619d"]},"geometry":{"type":"LineString","coordinates":[[-83.6768208,32.7857484],[-83.6767356,32.7857409],[-83.67668590000001,32.7857423],[-83.6766513,32.7857506],[-83.6763581,32.7859168],[-83.6760196,32.7861044],[-83.6759504,32.7861411],[-83.6759351,32.786191]]},"id":"8744c0b1cffffff-13f6dd25bcfd7023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67657840000001,32.7854338]},"id":"8f44c0b1cc6d85a-17b6bc9a8f6fe2e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6757001,32.7859143]},"id":"8f44c0b1cc6bc8e-13defebf77275c7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc6d85a-17b6bc9a8f6fe2e4","8f44c0b1cc6bc8e-13defebf77275c7e"]},"geometry":{"type":"LineString","coordinates":[[-83.67657840000001,32.7854338],[-83.6760838,32.7857019],[-83.6757001,32.7859143]]},"id":"8a44c0b1cc6ffff-13d7bdad586ce6d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75955330000001,32.8791601]},"id":"8f44c0b5060b782-1797d2073c711cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7590596,32.8792664]},"id":"8f44c0b506e4791-17d5d33bc8941eea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060b782-1797d2073c711cbf","8f44c0b506e4791-17d5d33bc8941eea"]},"geometry":{"type":"LineString","coordinates":[[-83.75955330000001,32.8791601],[-83.75916930000001,32.8791529],[-83.7591144,32.8791734],[-83.7590921,32.8791956],[-83.7590677,32.8792281],[-83.7590596,32.8792664]]},"id":"8844c0b507fffff-179dd2b0fe846a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b506e18ca-17d5f204817cafd0","8f44c0b506e222c-17bdd3ff232e7b8b"]},"geometry":{"type":"LineString","coordinates":[[-83.758747,32.879862],[-83.75955760000001,32.879875000000006]]},"id":"8a44c0b506e7fff-17bdd301d27ea7a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76154670000001,32.8799075]},"id":"8f44c0b50642b64-17d7fd2957a159c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b50642b64-17d7fd2957a159c9","8f44c0b506e18ca-17d5f204817cafd0"]},"geometry":{"type":"LineString","coordinates":[[-83.75955760000001,32.879875000000006],[-83.7614425,32.8799045],[-83.76154670000001,32.8799075]]},"id":"8844c0b507fffff-17dfef96ee6faf13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b506f10e6-17b5f576dd7314d5","8f44c0b506e222c-17bdd3ff232e7b8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7581459,32.8798483],[-83.758747,32.879862]]},"id":"8944c0b506fffff-17b5d4bafcc467f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5597592,32.896548100000004]},"id":"8f44c0aa50286db-17f7b9ce8bbc3b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5651641,32.8919717]},"id":"8f44c0aa58510c4-13dffc9c722d25a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa50286db-17f7b9ce8bbc3b65","8f44c0aa58510c4-13dffc9c722d25a8"]},"geometry":{"type":"LineString","coordinates":[[-83.5597592,32.896548100000004],[-83.56040250000001,32.8959806],[-83.5618177,32.8947494],[-83.56336420000001,32.8934085],[-83.56463760000001,32.892299],[-83.56481600000001,32.8921562],[-83.564971,32.8920618],[-83.5650622,32.8920122],[-83.5651641,32.8919717]]},"id":"8744c0aa5ffffff-13d7b346fcf2a9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5646486,32.9053216]},"id":"8f44c0aa527380b-17f7addea31be315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa527380b-17f7addea31be315","8f44c0aa58510c4-13dffc9c722d25a8"]},"geometry":{"type":"LineString","coordinates":[[-83.5651641,32.8919717],[-83.5654404,32.8927306],[-83.5655723,32.893244700000004],[-83.5656579,32.893705100000005],[-83.5656661,32.8940105],[-83.56562600000001,32.894569000000004],[-83.5657063,32.8949702],[-83.56589860000001,32.895410600000005],[-83.5661712,32.895766],[-83.56654950000001,32.896100100000005],[-83.56780040000001,32.8970951],[-83.5679678,32.8973059],[-83.56813190000001,32.897831000000004],[-83.567818,32.899721],[-83.567786,32.900105],[-83.56767400000001,32.900601],[-83.567434,32.901993000000004],[-83.567178,32.902537],[-83.56679050000001,32.903069900000006],[-83.56574300000001,32.9041829],[-83.5646486,32.9053216]]},"id":"8744c0aa5ffffff-179fe8f3721c6e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663318,32.755673]},"id":"8f44c0b150f0311-1797bcfa42f26a7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b150f0311-1797bcfa42f26a7c","8f44c0b150d6b6b-13f6ff20c2a4a09c"]},"geometry":{"type":"LineString","coordinates":[[-83.663318,32.755673],[-83.66317400000001,32.755741],[-83.6629886,32.7558218],[-83.662585,32.756124],[-83.6624372,32.756230800000004]]},"id":"8944c0b150fffff-17befe152e648af6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6507464,32.8398519]},"id":"8f44c0a34a0c442-179ffbab8c10d5fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6500785,32.840361200000004]},"id":"8f44c0a34a0a41a-17dfdd4cf599f953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a0a41a-17dfdd4cf599f953","8f44c0a34a0c442-179ffbab8c10d5fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6507464,32.8398519],[-83.65060550000001,32.8400138],[-83.65056390000001,32.8400217],[-83.6504835,32.8400161],[-83.65042310000001,32.840009300000006],[-83.6503775,32.840017200000005],[-83.65034130000001,32.8400386],[-83.6500785,32.840361200000004]]},"id":"8944c0a34a3ffff-179efc84635f8886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65111950000001,32.840542500000005]},"id":"8f44c0a34a091a9-17bfdac25f414b96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65126450000001,32.840048800000005]},"id":"8f44c0a34a0d134-1796da67b452c16b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a0d134-1796da67b452c16b","8f44c0a34a091a9-17bfdac25f414b96"]},"geometry":{"type":"LineString","coordinates":[[-83.65111950000001,32.840542500000005],[-83.6509757,32.8404522],[-83.6509716,32.840433000000004],[-83.6509824,32.8404138],[-83.65126450000001,32.840048800000005]]},"id":"8a44c0a34a0ffff-17bedad19ca2c309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d82aed-17fefefd25b68d7c","8f44c0b08d95b44-17967fbd0c9c0018"]},"geometry":{"type":"LineString","coordinates":[[-83.7280302,32.807883000000004],[-83.7277232,32.8074759]]},"id":"8a44c0b08d87fff-17ffbf5d173909a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322759,32.8070223]},"id":"8f44c0b08d05275-17f6f49f964844c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6d82b0-17b63fad504aa4de","8f44c0b08d05275-17f6f49f964844c8"]},"geometry":{"type":"LineString","coordinates":[[-83.7343019,32.8073283],[-83.73416920000001,32.807326],[-83.7339877,32.807323700000005],[-83.7337164,32.8073241],[-83.7336786,32.8073232],[-83.73335200000001,32.8073156],[-83.73327470000001,32.8073138],[-83.7331484,32.807299400000005],[-83.7330057,32.8072631],[-83.7328262,32.8071903],[-83.7327441,32.8071526],[-83.7326226,32.8070949],[-83.73246920000001,32.8070408],[-83.7323284,32.807024600000005],[-83.7322759,32.8070223]]},"id":"8844c0b08dfffff-17fed22e466b2074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6256226,32.8330584]},"id":"8f44c0ba92d1cae-13f79901e868c3e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62528850000001,32.8334257]},"id":"8f44c0ba92d339e-17df19d2bbc5d088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d339e-17df19d2bbc5d088","8f44c0ba92d1cae-13f79901e868c3e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6256226,32.8330584],[-83.62528850000001,32.8334257]]},"id":"8a44c0ba92d7fff-17ff596a585e208a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62542590000001,32.832933600000004]},"id":"8f44c0ba92d005e-13b7997cd0f7a430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62510710000001,32.8333226]},"id":"8f44c0ba92d3454-179fba441a9d48f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d005e-13b7997cd0f7a430","8f44c0ba92d3454-179fba441a9d48f0"]},"geometry":{"type":"LineString","coordinates":[[-83.62542590000001,32.832933600000004],[-83.62510710000001,32.8333226]]},"id":"8a44c0ba92d7fff-17b719e077b8665f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6268905,32.8335723]},"id":"8f44c0ba92cec25-17b7b5e977b3b946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62622490000001,32.833164000000004]},"id":"8f44c0ba92c20c1-17b797897770c2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92cec25-17b7b5e977b3b946","8f44c0ba92c20c1-17b797897770c2fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6268905,32.8335723],[-83.62622490000001,32.833164000000004]]},"id":"8a44c0ba92c7fff-17b736b97199e66c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0ba92ce81e-17d7d592dc68865d","8f44c0ba92cec25-17b7b5e977b3b946"]},"geometry":{"type":"LineString","coordinates":[[-83.6268905,32.8335723],[-83.6270291,32.8336221]]},"id":"8b44c0ba92cefff-17d755be217407d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68736480000001,32.8957862]},"id":"8f44c0a236c6191-179ee24508081502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6872421,32.8963434]},"id":"8f44c0a236c272a-17f6a291b3c677ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c6191-179ee24508081502","8f44c0a236c272a-17f6a291b3c677ce"]},"geometry":{"type":"LineString","coordinates":[[-83.68736480000001,32.8957862],[-83.6873223,32.8958832],[-83.6872955,32.8959733],[-83.6872421,32.8963434]]},"id":"8a44c0a236c7fff-17d6927448346636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6866665,32.8976309]},"id":"8f44c0a05d74b1c-139fd3f9748ee51b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68660480000001,32.8978606]},"id":"8f44c0a05d74246-13bee4200cfa536c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d74b1c-139fd3f9748ee51b","8f44c0a05d74246-13bee4200cfa536c"]},"geometry":{"type":"LineString","coordinates":[[-83.6866665,32.8976309],[-83.6866679,32.8977367],[-83.68660480000001,32.8978606]]},"id":"8b44c0a05d74fff-13f7a403fc5c7492"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6874202,32.896365200000005]},"id":"8f44c0a236c230e-1796c2226921784f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c272a-17f6a291b3c677ce","8f44c0a236c230e-1796c2226921784f"]},"geometry":{"type":"LineString","coordinates":[[-83.6874202,32.896365200000005],[-83.6872421,32.8963434]]},"id":"8b44c0a236c2fff-17fff25a1e6741d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478452,32.8290856]},"id":"8f44c0a3492b41e-13d6e2c0cf12ab64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64814480000001,32.828772300000004]},"id":"8f44c0a34928744-13fef2058f5fbcb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3492b41e-13d6e2c0cf12ab64","8f44c0a34928744-13fef2058f5fbcb2"]},"geometry":{"type":"LineString","coordinates":[[-83.6478452,32.8290856],[-83.6480633,32.828863500000004],[-83.64814480000001,32.828772300000004]]},"id":"8a44c0a3492ffff-13f7e2623d07aabf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64612410000001,32.8304235]},"id":"8f44c0a34835a71-1796f6f47b3886a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64619230000001,32.8303419]},"id":"8f44c0a348267b2-17d7f6c9db045bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348267b2-17d7f6c9db045bd4","8f44c0a34835a71-1796f6f47b3886a2"]},"geometry":{"type":"LineString","coordinates":[[-83.64612410000001,32.8304235],[-83.64619230000001,32.8303419]]},"id":"8a44c0a34827fff-17fff6df20bdfb09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6468097,32.828526600000004]},"id":"8f44c0a3490018b-13f7e547fc816e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6467485,32.8284034]},"id":"8f44c0a34900c1e-139ee56e30dd9c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34900c1e-139ee56e30dd9c37","8f44c0a3490018b-13f7e547fc816e47"]},"geometry":{"type":"LineString","coordinates":[[-83.6468097,32.828526600000004],[-83.6467485,32.8284034]]},"id":"8b44c0a34900fff-13bee55b146b302d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64692330000001,32.827863900000004]},"id":"8f44c0a34904d24-17d6f500f9c7e41a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461865,32.8276783]},"id":"8f44c0a349339b5-17d6f6cd776716b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a349339b5-17d6f6cd776716b3","8f44c0a34904d24-17d6f500f9c7e41a"]},"geometry":{"type":"LineString","coordinates":[[-83.64692330000001,32.827863900000004],[-83.64679910000001,32.8280173],[-83.6461865,32.8276783]]},"id":"8944c0a3493ffff-17dfe5db6bc640dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6474266,32.8272331]},"id":"8f44c0a34926a24-17bef3c66fbe1a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34926a24-17bef3c66fbe1a92","8f44c0a34904d24-17d6f500f9c7e41a"]},"geometry":{"type":"LineString","coordinates":[[-83.64692330000001,32.827863900000004],[-83.6474266,32.8272331]]},"id":"8a44c0a34927fff-1797f463a3fa3fb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64710790000001,32.8279677]},"id":"8f44c0a3490482c-1797f48d9ea5cd73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476123,32.8273376]},"id":"8f44c0a34924653-17fee3525c014602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34924653-17fee3525c014602","8f44c0a3490482c-1797f48d9ea5cd73"]},"geometry":{"type":"LineString","coordinates":[[-83.64710790000001,32.8279677],[-83.6476123,32.8273376]]},"id":"8a44c0a34927fff-17d6f3effe64a0d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464385,32.830047300000004]},"id":"8f44c0a3491965d-179ff62ffa2b7024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3491965d-179ff62ffa2b7024","8f44c0a348267b2-17d7f6c9db045bd4"]},"geometry":{"type":"LineString","coordinates":[[-83.64619230000001,32.8303419],[-83.6464385,32.830047300000004]]},"id":"8844c0a349fffff-17f7e67ce6248b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368b570e-179fe94a6bec1694","8f44c0a368b5413-13dfb99d65fb1440"]},"geometry":{"type":"LineString","coordinates":[[-83.6188202,32.8362937],[-83.618953,32.836395]]},"id":"8b44c0a368b5fff-13ff6973e7fcd51d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62007100000001,32.83708]},"id":"8f44c0a368aed76-17d7268fa10094fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368b570e-179fe94a6bec1694","8f44c0a368aed76-17d7268fa10094fb"]},"geometry":{"type":"LineString","coordinates":[[-83.618953,32.836395],[-83.619241,32.836627],[-83.61968300000001,32.836914],[-83.619724,32.836940000000006],[-83.619893,32.837018],[-83.62007100000001,32.83708]]},"id":"8944c0a368bffff-1797f7f9b746cf9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618779,32.835687]},"id":"8f44c0a3699a748-13f769b724e213db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3699a748-13f769b724e213db","8f44c0a3699ec4d-13d779681c808ccd"]},"geometry":{"type":"LineString","coordinates":[[-83.618779,32.835687],[-83.618752,32.835597],[-83.618792,32.835350000000005],[-83.618807,32.83529],[-83.618885,32.835102],[-83.61890550000001,32.8350213]]},"id":"8a44c0a3699ffff-139fe9a3b4439eb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368b5413-13dfb99d65fb1440","8f44c0a3699a410-13ff6a32e6b34c11"]},"geometry":{"type":"LineString","coordinates":[[-83.618581,32.835527],[-83.61857400000001,32.835687],[-83.618583,32.835831],[-83.61859600000001,32.835879000000006],[-83.618657,32.836036],[-83.6188202,32.8362937]]},"id":"8844c0a369fffff-13f77a093885bdfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63843100000001,32.836388]},"id":"8f44c0a3418380e-1796f9bcafc1eac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638658,32.836515]},"id":"8f44c0a34181788-17f7f92ecf4e7733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34181788-17f7f92ecf4e7733","8f44c0a3418380e-1796f9bcafc1eac1"]},"geometry":{"type":"LineString","coordinates":[[-83.63843100000001,32.836388],[-83.638658,32.836515]]},"id":"8a44c0a34187fff-17bef975bb746e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36824250-139fde471a41ba3c","8f44c0a3690b64d-13df3d77897906f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6234639,32.835546900000004],[-83.6235566,32.835512],[-83.62359740000001,32.8355017],[-83.62369600000001,32.835473],[-83.623796,32.835453]]},"id":"8a44c0a36827fff-13ff3de048f6d274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622927,32.835898]},"id":"8f44c0a36822a06-13f75f96aa3d944c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36822a06-13f75f96aa3d944c","8f44c0a36824250-139fde471a41ba3c"]},"geometry":{"type":"LineString","coordinates":[[-83.622927,32.835898],[-83.623113,32.835737],[-83.623242,32.835644],[-83.62339200000001,32.835574],[-83.6234639,32.835546900000004]]},"id":"8a44c0a36827fff-13ff1ef6a8c0d42f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6148103,32.8307686]},"id":"8f44c0ba969d14a-17df73679a65ee14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61505700000001,32.8317434]},"id":"8f44c0a36d242ea-13bfb2cd695c48e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0ba969d14a-17df73679a65ee14","8f44c0a36d242ea-13bfb2cd695c48e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6148103,32.8307686],[-83.6145628,32.830863900000004],[-83.61505700000001,32.8317434]]},"id":"8844c0ba97fffff-17ff7377e5fc84c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6135347,32.8326252]},"id":"8f44c0a36d06489-13f7f684dfcd563e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130512,32.8330276]},"id":"8f44c0a36d11cd4-13f777b30cbb5aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d11cd4-13f777b30cbb5aa6","8f44c0a36d06489-13f7f684dfcd563e"]},"geometry":{"type":"LineString","coordinates":[[-83.6135347,32.8326252],[-83.6135259,32.832724],[-83.61350970000001,32.8327924],[-83.6133999,32.8328641],[-83.6130512,32.8330276]]},"id":"8944c0a36d3ffff-13ffb6fc6ec0c55b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6264714,32.849996100000006]},"id":"8f44c0a3636c8d6-17df96ef6c6c3a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6263253,32.8501011]},"id":"8f44c0a3636c093-1797374ab24204f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3636c093-1797374ab24204f5","8f44c0a3636c8d6-17df96ef6c6c3a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6264714,32.849996100000006],[-83.6263253,32.8501011]]},"id":"8b44c0a3636cfff-17f7771d1d600b52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6257326,32.8504876]},"id":"8f44c0a3636ac0a-1797d8bd23ca19ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6252166,32.8499701]},"id":"8f44c0a36344ab5-17bf59ffa6e69424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36344ab5-17bf59ffa6e69424","8f44c0a3636ac0a-1797d8bd23ca19ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6257326,32.8504876],[-83.6257051,32.850460000000005],[-83.6256522,32.850407000000004],[-83.6252166,32.8499701]]},"id":"8944c0a3637ffff-17f7195e64246ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7115533,32.9263168]},"id":"8f44c0a2aa8aaee-17b6473737b855dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71139960000001,32.927005]},"id":"8f44c0a2a325418-13d667974d74ab89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa8aaee-17b6473737b855dc","8f44c0a2a325418-13d667974d74ab89"]},"geometry":{"type":"LineString","coordinates":[[-83.7115533,32.9263168],[-83.71115060000001,32.9264634],[-83.7111373,32.9264841],[-83.71115250000001,32.926508000000005],[-83.71139960000001,32.927005]]},"id":"8844c0a2abfffff-13dfc7d51ccf0cb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7123665,32.9251809]},"id":"8f44c0a2aaa8419-17de553af94b1dbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71218400000001,32.9247932]},"id":"8f44c0a2aaae1ac-13ffc5ad0fadee8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaae1ac-13ffc5ad0fadee8b","8f44c0a2aaa8419-17de553af94b1dbf"]},"geometry":{"type":"LineString","coordinates":[[-83.7123665,32.9251809],[-83.71218400000001,32.9247932]]},"id":"8a44c0a2aaaffff-17f6f57400663d71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5745706,32.8423772]},"id":"8f44c0b8c64c110-13b7d5a564605901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57370300000001,32.842608000000006]},"id":"8f44c0b8c65d8d9-13d797c3a6f5ac87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c64c110-13b7d5a564605901","8f44c0b8c65d8d9-13d797c3a6f5ac87"]},"geometry":{"type":"LineString","coordinates":[[-83.5745706,32.8423772],[-83.57370300000001,32.842608000000006]]},"id":"8944c0b8c67ffff-13fff6b48a83129e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5741873,32.841861300000005]},"id":"8f44c0b8c645688-13f7d694fb601ce3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5736825,32.8419788]},"id":"8f44c0b8c643d26-13bfd7d0785480ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c643d26-13bfd7d0785480ed","8f44c0b8c645688-13f7d694fb601ce3"]},"geometry":{"type":"LineString","coordinates":[[-83.5741873,32.841861300000005],[-83.5736825,32.8419788]]},"id":"8a44c0b8c647fff-139f9732b3b6adfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5756133,32.842331]},"id":"8f44c0b8c669313-139ff319b395a9d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5754666,32.842247]},"id":"8f44c0b8c669080-13f7f3756d583ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c669313-139ff319b395a9d1","8f44c0b8c669080-13f7f3756d583ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.5756133,32.842331],[-83.5754666,32.842247]]},"id":"8b44c0b8c669fff-13ffb3478b388ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5751163,32.8424172]},"id":"8f44c0b8c66b04b-13dfd45059723b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5748288,32.841891000000004]},"id":"8f44c0b8c66a80d-1397f50408e9641b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c66a80d-1397f50408e9641b","8f44c0b8c66b04b-13dfd45059723b09"]},"geometry":{"type":"LineString","coordinates":[[-83.5751163,32.8424172],[-83.5748288,32.841891000000004]]},"id":"8a44c0b8c66ffff-13bfd4aa2dd6beae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7356469,32.8084409]},"id":"8f44c0b08992192-17df9c64b774ad0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7356645,32.807345500000004]},"id":"8f44c0b0c6c8042-17befc59b6ed9a51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08992192-17df9c64b774ad0c","8f44c0b0c6c8042-17befc59b6ed9a51"]},"geometry":{"type":"LineString","coordinates":[[-83.7356469,32.8084409],[-83.7356645,32.807345500000004]]},"id":"8744c0b08ffffff-17974c5f39c75cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67472000000001,32.8879077]},"id":"8f44c0a048c1d46-13def1240011cba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67487600000001,32.888098]},"id":"8f44c0a048c1aa0-13d7e0c28b1ef842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048c1d46-13def1240011cba8","8f44c0a048c1aa0-13d7e0c28b1ef842"]},"geometry":{"type":"LineString","coordinates":[[-83.67472000000001,32.8879077],[-83.6750313,32.8877487],[-83.67526450000001,32.8876432],[-83.6757189,32.8873821],[-83.67576050000001,32.887394],[-83.6760103,32.8876866],[-83.67527890000001,32.8880785],[-83.6751002,32.8880281],[-83.67487600000001,32.888098]]},"id":"8944c0a048fffff-13979f6bba03cf5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6264527,32.8064606]},"id":"8f44c0bad7726ee-1397f6fb197e4266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6261331,32.803498000000005]},"id":"8f44c0bad72484b-13df57c2d11aa853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0bad72484b-13df57c2d11aa853","8f44c0bad7726ee-1397f6fb197e4266"]},"geometry":{"type":"LineString","coordinates":[[-83.6264527,32.8064606],[-83.62635200000001,32.8063808],[-83.6262686,32.806308300000005],[-83.6262004,32.8062522],[-83.62612870000001,32.806179900000004],[-83.6260968,32.806089400000005],[-83.6260622,32.805874],[-83.6260369,32.8055484],[-83.6260343,32.8048659],[-83.6260768,32.804408],[-83.6260934,32.8040295],[-83.6261331,32.803498000000005]]},"id":"8744c0badffffff-179797d7f15381b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7281366,32.9251373]},"id":"8f44c0a2874ddb3-17d6debaa4bd2c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7278424,32.9248781]},"id":"8f44c0a2874cc03-17b6df728727f819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2874ddb3-17d6debaa4bd2c18","8f44c0a2874cc03-17b6df728727f819"]},"geometry":{"type":"LineString","coordinates":[[-83.7281366,32.9251373],[-83.7278424,32.9248781]]},"id":"8b44c0a2874cfff-17f7df169d5d5e37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269153,32.924544700000006]},"id":"8f44c0a28742ae3-13d671b5ff4248d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7266311,32.924539800000005]},"id":"8f44c0a28742733-13df62679a131581"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28742733-13df62679a131581","8f44c0a28742ae3-13d671b5ff4248d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7269153,32.924544700000006],[-83.7266311,32.924539800000005]]},"id":"8b44c0a28742fff-13def20ec382e051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7027364,32.906142200000005]},"id":"8f44c0a2e79496d-17f6fcbdcfd176f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7016639,32.9067176]},"id":"8f44c0a05b652ec-17dedf5c16fb0ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e79496d-17f6fcbdcfd176f4","8f44c0a05b652ec-17dedf5c16fb0ddb"]},"geometry":{"type":"LineString","coordinates":[[-83.7027364,32.906142200000005],[-83.7023777,32.9056511],[-83.70225710000001,32.905552400000005],[-83.7020823,32.9055296],[-83.70190450000001,32.9055777],[-83.7017809,32.9057346],[-83.7015337,32.906192600000004],[-83.7014704,32.9062736],[-83.7012203,32.9063875],[-83.7010997,32.906509],[-83.70109070000001,32.9066507],[-83.7011449,32.906757],[-83.7012625,32.9068278],[-83.7014403,32.9068582],[-83.7016332,32.906787300000005],[-83.7016639,32.9067176]]},"id":"8744c0a2effffff-17f67f1a06aea60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970043,32.8984545]},"id":"8f44c0a05964c60-139e7abc51f6fa40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696798,32.899072700000005]},"id":"8f44c0a05960732-17b67b3d4c0e7642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05964c60-139e7abc51f6fa40","8f44c0a05960732-17b67b3d4c0e7642"]},"geometry":{"type":"LineString","coordinates":[[-83.6970043,32.8984545],[-83.696798,32.899072700000005]]},"id":"8a44c0a05967fff-17df6afcd133b32c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6967924,32.898411700000004]},"id":"8f44c0a232d922d-13977b40c5447bef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6966125,32.898973000000005]},"id":"8f44c0a0596296a-17f66bb1356403bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232d922d-13977b40c5447bef","8f44c0a0596296a-17f66bb1356403bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6967924,32.898411700000004],[-83.6966125,32.898973000000005]]},"id":"8a44c0a05967fff-17b6eb7907f09a16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6956463,32.8985268]},"id":"8f44c0a05974725-13df6e0d19423293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694894,32.898524800000004]},"id":"8f44c0a0590d950-13de6fe341efe9f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05974725-13df6e0d19423293","8f44c0a0590d950-13de6fe341efe9f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6956463,32.8985268],[-83.694894,32.898524800000004]]},"id":"8844c0a059fffff-13deeef838bb2499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6954171,32.899091500000004]},"id":"8f44c0a05973d25-17be7e9c596ecb3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957433,32.899332300000005]},"id":"8f44c0a05973b6e-17d6fdd07104426e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05973b6e-17d6fdd07104426e","8f44c0a05973d25-17be7e9c596ecb3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6954171,32.899091500000004],[-83.6957433,32.899332300000005]]},"id":"8a44c0a05977fff-17f77e366c0e9ef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69698220000001,32.900118400000004]},"id":"8f44c0a0596ac5d-17be6aca21e61681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6967398,32.900118400000004]},"id":"8f44c0a059452c8-17be6b61a77e400f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0596ac5d-17be6aca21e61681","8f44c0a059452c8-17be6b61a77e400f"]},"geometry":{"type":"LineString","coordinates":[[-83.69698220000001,32.900118400000004],[-83.6969773,32.899587000000004],[-83.69692090000001,32.8995294],[-83.69681320000001,32.8995253],[-83.69673,32.8995829],[-83.6967398,32.900118400000004]]},"id":"8944c0a0597ffff-17de7b188d8878d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6968435,32.898246300000004]},"id":"8f44c0a232d9a30-139ffb20db8ff38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232d922d-13977b40c5447bef","8f44c0a232d9a30-139ffb20db8ff38a"]},"geometry":{"type":"LineString","coordinates":[[-83.6968435,32.898246300000004],[-83.6967924,32.898411700000004]]},"id":"8b44c0a232d9fff-13dfeb30d3048f5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69705880000001,32.898290700000004]},"id":"8f44c0a232ca62a-13b7fa9a45f4d8b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05964c60-139e7abc51f6fa40","8f44c0a232ca62a-13b7fa9a45f4d8b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6970043,32.8984545],[-83.69705880000001,32.898290700000004]]},"id":"8944c0a232fffff-13feeaab51ea623a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69207510000001,32.8973272]},"id":"8f44c0a05916336-13dff6c512f5138b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918462,32.8975055]},"id":"8f44c0a05912d71-13def7542f44eb4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05916336-13dff6c512f5138b","8f44c0a05912d71-13def7542f44eb4a"]},"geometry":{"type":"LineString","coordinates":[[-83.69207510000001,32.8973272],[-83.69203610000001,32.8975304],[-83.6918462,32.8975055]]},"id":"8a44c0a05917fff-13b7f6f3a5f46776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928774,32.9000172]},"id":"8f44c0a05822682-17fef4cfa5508bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928841,32.8996358]},"id":"8f44c0a05835ac8-179674cb7ac69310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05835ac8-179674cb7ac69310","8f44c0a05822682-17fef4cfa5508bfa"]},"geometry":{"type":"LineString","coordinates":[[-83.6928774,32.9000172],[-83.69264310000001,32.9000092],[-83.6926512,32.899626000000005],[-83.6928841,32.8996358]]},"id":"8944c0a0583ffff-17f7f537720fef05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69248830000001,32.897459000000005]},"id":"8f44c0a05910829-13bff5c2d1d23a3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692459,32.8981549]},"id":"8f44c0a0591ed8e-13f6f5d525bab02b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591ed8e-13f6f5d525bab02b","8f44c0a05910829-13bff5c2d1d23a3a"]},"geometry":{"type":"LineString","coordinates":[[-83.69248830000001,32.897459000000005],[-83.692459,32.8981549]]},"id":"8a44c0a05917fff-139f75cbfcae0fd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6925545,32.8981834]},"id":"8f44c0a0591ed5c-13f6f5997adf0aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69258,32.897485]},"id":"8f44c0a05915481-13d675898cd1c37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05915481-13d675898cd1c37e","8f44c0a0591ed5c-13f6f5997adf0aed"]},"geometry":{"type":"LineString","coordinates":[[-83.6925545,32.8981834],[-83.69258,32.897485]]},"id":"8944c0a0593ffff-139e75918bc71ee6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927756,32.8975274]},"id":"8f44c0a059150d6-13def50f403ee5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692732,32.897696]},"id":"8f44c0a059156cd-13d6752a8f80d037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059156cd-13d6752a8f80d037","8f44c0a059150d6-13def50f403ee5c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6927756,32.8975274],[-83.692732,32.897696]]},"id":"8a44c0a05917fff-139f751ce08a6e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69264390000001,32.8980675]},"id":"8f44c0a05911674-13be75619df53111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059156cd-13d6752a8f80d037","8f44c0a05911674-13be75619df53111"]},"geometry":{"type":"LineString","coordinates":[[-83.692732,32.897696],[-83.69268500000001,32.897733800000005],[-83.69264580000001,32.8978259],[-83.69264390000001,32.8980675]]},"id":"8b44c0a05911fff-13b77557dc5711c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690667,32.895284700000005]},"id":"8f44c0a236466c6-13f6fa35264da744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907766,32.894809]},"id":"8f44c0a236716ad-13b7f9f0ad781db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236466c6-13f6fa35264da744","8f44c0a236716ad-13b7f9f0ad781db9"]},"geometry":{"type":"LineString","coordinates":[[-83.690667,32.895284700000005],[-83.690858,32.8949899],[-83.69084210000001,32.894935100000005],[-83.6907498,32.8948764],[-83.6907766,32.894809]]},"id":"8944c0a2367ffff-13def9f04b5dedfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903668,32.896273400000005]},"id":"8f44c0a23658c50-17defaf0c2c18202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906362,32.896405]},"id":"8f44c0a23658a2a-179f7a4862e96446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23658a2a-179f7a4862e96446","8f44c0a23658c50-17defaf0c2c18202"]},"geometry":{"type":"LineString","coordinates":[[-83.6903668,32.896273400000005],[-83.6906362,32.896405]]},"id":"8b44c0a23658fff-17f67a9c92552446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908909,32.8960463]},"id":"8f44c0a236436d0-17bef9a93e0a2184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236436d0-17bef9a93e0a2184","8f44c0a23658a2a-179f7a4862e96446"]},"geometry":{"type":"LineString","coordinates":[[-83.6908909,32.8960463],[-83.6906362,32.896405]]},"id":"8a44c0a2365ffff-17bf79f8db13cd48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907812,32.8955403]},"id":"8f44c0a23642ab3-1796f9edcd70049b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6904054,32.8960515]},"id":"8f44c0a2365c781-17d67ad8af7e22bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2365c781-17d67ad8af7e22bf","8f44c0a23642ab3-1796f9edcd70049b"]},"geometry":{"type":"LineString","coordinates":[[-83.6907812,32.8955403],[-83.6904054,32.8960515]]},"id":"8944c0a2367ffff-17b67a633fe67c46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901325,32.895894000000006]},"id":"8f44c0a2365e988-17dffb83358d2bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2365c781-17d67ad8af7e22bf","8f44c0a2365e988-17dffb83358d2bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.6904054,32.8960515],[-83.6901325,32.895894000000006]]},"id":"8a44c0a2365ffff-179f7b2dfa20b473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236436d0-17bef9a93e0a2184","8f44c0a23658a2a-179f7a4862e96446"]},"geometry":{"type":"LineString","coordinates":[[-83.6906362,32.896405],[-83.691052,32.8966082],[-83.69113820000001,32.8965671],[-83.691283,32.896356700000005],[-83.6912693,32.8962646],[-83.6912223,32.896212000000006],[-83.6908909,32.8960463]]},"id":"8944c0a2367ffff-179ef94ba3ad9a60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907078,32.895954800000005]},"id":"8f44c0a2365cb89-1797fa1bae6b7894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236436d0-17bef9a93e0a2184","8f44c0a2365cb89-1797fa1bae6b7894"]},"geometry":{"type":"LineString","coordinates":[[-83.6907078,32.895954800000005],[-83.6908909,32.8960463]]},"id":"8a44c0a2365ffff-17b679e26e77e9f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68135140000001,32.890024000000004]},"id":"8f44c0a04b2b6e4-179f90f36b1a3b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800017,32.890637500000004]},"id":"8f44c0a04b19a9c-139ef43effdeb885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04b2b6e4-179f90f36b1a3b6b","8f44c0a04b19a9c-139ef43effdeb885"]},"geometry":{"type":"LineString","coordinates":[[-83.68135140000001,32.890024000000004],[-83.6808135,32.8902407],[-83.6803094,32.890357300000005],[-83.6800017,32.890637500000004]]},"id":"8944c0a04b3ffff-17bf92aa1fc85d01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67925530000001,32.889290800000005]},"id":"8f44c0a04b11d2c-17bed6117301d74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6787426,32.8887923]},"id":"8f44c0a04b16848-1797b751edcf1031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b16848-1797b751edcf1031","8f44c0a04b11d2c-17bed6117301d74c"]},"geometry":{"type":"LineString","coordinates":[[-83.67925530000001,32.889290800000005],[-83.67902140000001,32.8891964],[-83.67894940000001,32.888773400000005],[-83.6787426,32.8887923]]},"id":"8a44c0a04b17fff-179ff6b36238e82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6759854,32.886940700000004]},"id":"8f44c0a0485212c-1797fe0d2c7a336f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67544840000001,32.885661500000005]},"id":"8f44c0a0480e292-17f6ff5cc15db617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0485212c-1797fe0d2c7a336f","8f44c0a0480e292-17f6ff5cc15db617"]},"geometry":{"type":"LineString","coordinates":[[-83.6759854,32.886940700000004],[-83.67544840000001,32.885661500000005]]},"id":"8844c0a049fffff-17f6beb4fe21f68f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6758868,32.885459000000004]},"id":"8f44c0a0480c728-13f7fe4ac5ec2cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67581150000001,32.885295500000005]},"id":"8f44c0a0480ccd3-13ffbe79d888412a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0480ccd3-13ffbe79d888412a","8f44c0a0480c728-13f7fe4ac5ec2cad"]},"geometry":{"type":"LineString","coordinates":[[-83.6758868,32.885459000000004],[-83.67581150000001,32.885295500000005]]},"id":"8b44c0a0480cfff-13b6de625f89301b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6778199,32.8861174]},"id":"8f44c0a04862425-17fff99297ec90d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67812280000001,32.8867911]},"id":"8f44c0a04845ce6-17b6f8d5415857bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04845ce6-17b6f8d5415857bb","8f44c0a04862425-17fff99297ec90d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6778199,32.8861174],[-83.67812280000001,32.8867911]]},"id":"8944c0a0487ffff-17d7f933ed2ebe27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67799120000001,32.8859525]},"id":"8f44c0a048666cb-179ed9278cdd034b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6783632,32.886824000000004]},"id":"8f44c0a04845842-17bf983f0e6bc41f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04845842-17bf983f0e6bc41f","8f44c0a048666cb-179ed9278cdd034b"]},"geometry":{"type":"LineString","coordinates":[[-83.67799120000001,32.8859525],[-83.6783632,32.886824000000004]]},"id":"8944c0a0487ffff-17beb8b3417e36eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779487,32.884666100000004]},"id":"8f44c0a0495c75d-13f6d942180269a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67823560000001,32.8858118]},"id":"8f44c0a04866328-17d6f88eccbcaa1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04866328-17d6f88eccbcaa1d","8f44c0a0495c75d-13f6d942180269a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6779487,32.884666100000004],[-83.678115,32.8850142],[-83.6782319,32.8851922],[-83.67827940000001,32.8853731],[-83.67827940000001,32.8855327],[-83.67823560000001,32.8858118]]},"id":"8844c0a049fffff-13d7b8b4e85a7e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66806030000001,32.793747]},"id":"8f44c0b1c7b45aa-13fff16656e1a4dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6678275,32.793693600000005]},"id":"8f44c0b1c4e96cd-13deb1f7d260453b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4e96cd-13deb1f7d260453b","8f44c0b1c7b45aa-13fff16656e1a4dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66806030000001,32.793747],[-83.6678275,32.793693600000005]]},"id":"8844c0b1c5fffff-13ffb1af1c27dbcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6677284,32.7946363]},"id":"8f44c0b1c79495d-17b7b235c95a8135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675084,32.794566100000004]},"id":"8f44c0b1c794d0c-17fff2bf42a6b231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79495d-17b7b235c95a8135","8f44c0b1c794d0c-17fff2bf42a6b231"]},"geometry":{"type":"LineString","coordinates":[[-83.6677284,32.7946363],[-83.6675084,32.794566100000004]]},"id":"8b44c0b1c794fff-1797f27a89400fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63544060000001,32.8198582]},"id":"8f44c0b1a4d3232-13bf6109a888f831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63471720000001,32.8207583]},"id":"8f44c0ba9b2b04e-17fff2cdce196bb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b2b04e-17fff2cdce196bb7","8f44c0b1a4d3232-13bf6109a888f831"]},"geometry":{"type":"LineString","coordinates":[[-83.63544060000001,32.8198582],[-83.63514980000001,32.820244200000005],[-83.63471720000001,32.8207583]]},"id":"8644c0bafffffff-17d7a1e8058e877b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67367390000001,32.8845741]},"id":"8f44c0a0481058a-13bef3b1d869d4fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67291920000001,32.884123]},"id":"8f44c0a048a4a56-13b6e5898cb680a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481058a-13bef3b1d869d4fa","8f44c0a048a4a56-13b6e5898cb680a0"]},"geometry":{"type":"LineString","coordinates":[[-83.67367390000001,32.8845741],[-83.6735919,32.8844158],[-83.6735192,32.884340900000005],[-83.6733585,32.884274500000004],[-83.6731482,32.8841899],[-83.67298240000001,32.884143900000005],[-83.67291920000001,32.884123]]},"id":"8844c0a049fffff-139eb4832a5189d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67266380000001,32.8842117]},"id":"8f44c0a048a4758-13def629294bc029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6718768,32.8839326]},"id":"8f44c0a0499b0cd-13bfe81503df7bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a4758-13def629294bc029","8f44c0a0499b0cd-13bfe81503df7bfa"]},"geometry":{"type":"LineString","coordinates":[[-83.67266380000001,32.8842117],[-83.6725488,32.8839932],[-83.67198420000001,32.8841673],[-83.6718768,32.8839326]]},"id":"8844c0a049fffff-1396f723152335a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6746682,32.885561100000004]},"id":"8f44c0a0481895c-17b7b144674a1189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67408540000001,32.8857626]},"id":"8f44c0a0481a174-17b7a2b0a8eae33d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481895c-17b7b144674a1189","8f44c0a0481a174-17b7a2b0a8eae33d"]},"geometry":{"type":"LineString","coordinates":[[-83.6746682,32.885561100000004],[-83.67408540000001,32.8857626]]},"id":"8a44c0a0481ffff-17f6b1fa84c02824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67333190000001,32.8857452]},"id":"8f44c0a048a8358-1796e4879c1b2ba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6738284,32.885559900000004]},"id":"8f44c0a048adac2-17b6f351463b4597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a8358-1796e4879c1b2ba5","8f44c0a048adac2-17b6f351463b4597"]},"geometry":{"type":"LineString","coordinates":[[-83.67333190000001,32.8857452],[-83.673355,32.8858113],[-83.6734328,32.885913],[-83.67351690000001,32.8859516],[-83.67363680000001,32.8859227],[-83.6738,32.885858400000004],[-83.67383570000001,32.8858006],[-83.6738433,32.885687100000006],[-83.6738284,32.885559900000004]]},"id":"8a44c0a048affff-17dea3c836cc0e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6726805,32.8851764]},"id":"8f44c0a048ae52e-13b7e61eb76301b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67212740000001,32.8844013]},"id":"8f44c0a048a66c8-13def77868f02352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a66c8-13def77868f02352","8f44c0a048ae52e-13b7e61eb76301b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6726805,32.8851764],[-83.6727719,32.8850611],[-83.6728715,32.884969000000005],[-83.6729437,32.8848465],[-83.67248020000001,32.8846829],[-83.6723012,32.8846089],[-83.6722261,32.884550700000005],[-83.6721742,32.8844877],[-83.67212740000001,32.8844013]]},"id":"8944c0a048bffff-13bee651dff32d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731589,32.8856167]},"id":"8f44c0a048a80f4-17d6f4f3b58c0cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6738629,32.885365400000005]},"id":"8f44c0a0481e494-13bfe33bb863538e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481e494-13bfe33bb863538e","8f44c0a048a80f4-17d6f4f3b58c0cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6731589,32.8856167],[-83.6738629,32.885365400000005]]},"id":"8a44c0a048affff-13f7e417bea3fc25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67378980000001,32.885226]},"id":"8f44c0a04813291-13d6e36963b78dbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6730627,32.8854922]},"id":"8f44c0a048a8cd0-13fea52fd37e6e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a04813291-13d6e36963b78dbc","8f44c0a048a8cd0-13fea52fd37e6e59"]},"geometry":{"type":"LineString","coordinates":[[-83.67378980000001,32.885226],[-83.6730627,32.8854922]]},"id":"8844c0a049fffff-13b7f44ca1c45ce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6729674,32.8853689]},"id":"8f44c0a048ae376-13bfb56b600e09c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67371630000001,32.885081]},"id":"8f44c0a0481309d-13f7a3975e11d4d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048ae376-13bfb56b600e09c8","8f44c0a0481309d-13f7a3975e11d4d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6729674,32.8853689],[-83.67371630000001,32.885081]]},"id":"8844c0a049fffff-13d7a481506c2dc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6736494,32.8849492]},"id":"8f44c0a04813cd6-13b7e3c12b177f75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67286510000001,32.8852366]},"id":"8f44c0a048ae156-13dee5ab54b848de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a04813cd6-13b7e3c12b177f75","8f44c0a048ae156-13dee5ab54b848de"]},"geometry":{"type":"LineString","coordinates":[[-83.6736494,32.8849492],[-83.67286510000001,32.8852366]]},"id":"8844c0a049fffff-13ffb4b63ec73658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71338460000001,32.7431989]},"id":"8f44c0b0402d19a-139752bea6460987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129469,32.7428356]},"id":"8f44c0b0402c508-17b643d0392b7c79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402c508-17b643d0392b7c79","8f44c0b0402d19a-139752bea6460987"]},"geometry":{"type":"LineString","coordinates":[[-83.71338460000001,32.7431989],[-83.7135356,32.7429306],[-83.7135356,32.7429025],[-83.7135136,32.7428723],[-83.71328390000001,32.742770900000004],[-83.7131755,32.742738700000004],[-83.7130989,32.742749700000005],[-83.71300930000001,32.7428374],[-83.7129469,32.7428356]]},"id":"8844c0b041fffff-17df52e8879005e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135894,32.7432642]},"id":"8f44c0b0402da8e-13be623ea1ab2473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402da8e-13be623ea1ab2473","8f44c0b0402d19a-139752bea6460987"]},"geometry":{"type":"LineString","coordinates":[[-83.71338460000001,32.7431989],[-83.7134467,32.743196600000005],[-83.7135894,32.7432642]]},"id":"8b44c0b0402dfff-13b7427d575ffb37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718536,32.8077187]},"id":"8f44c0b0e39896e-179e362b0c9e45c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71830100000001,32.8080263]},"id":"8f44c0b0e39875b-17de76bde7544682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e39875b-17de76bde7544682","8f44c0b0e39896e-179e362b0c9e45c6"]},"geometry":{"type":"LineString","coordinates":[[-83.718536,32.8077187],[-83.7185006,32.8078433],[-83.7184311,32.8079496],[-83.71830100000001,32.8080263]]},"id":"8b44c0b0e398fff-1797b66391cdcd19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61290770000001,32.8607821]},"id":"8f44c0a321207b6-17b7f80cb827c203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6129229,32.8603015]},"id":"8f44c0a3212686d-17ff780330dd1279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3212686d-17ff780330dd1279","8f44c0a321207b6-17b7f80cb827c203"]},"geometry":{"type":"LineString","coordinates":[[-83.61290770000001,32.8607821],[-83.6129229,32.8603015]]},"id":"8a44c0a32127fff-179fb807fadbf2cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134538,32.8595947]},"id":"8f44c0a3288e282-17bfb6b76cc1bf20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6129392,32.8598531]},"id":"8f44c0a328998e6-17f737f90fca13ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3288e282-17bfb6b76cc1bf20","8f44c0a328998e6-17f737f90fca13ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6134538,32.8595947],[-83.61345,32.8598561],[-83.6129392,32.8598531]]},"id":"8944c0a328bffff-17d7f722f19f55d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6146332,32.860101900000004]},"id":"8f44c0a328f276b-17ffb3d649114a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6141898,32.8595922]},"id":"8f44c0a3288d565-17bf34eb6a7c6fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3288d565-17bf34eb6a7c6fc9","8f44c0a328f276b-17ffb3d649114a3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6146332,32.860101900000004],[-83.6143562,32.8599648],[-83.6141971,32.859761400000004],[-83.6141898,32.8595922]]},"id":"8844c0a329fffff-17ff7487e047444e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61486090000001,32.861699800000004]},"id":"8f44c0a328d8db1-13f77347f9f3014e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6142023,32.8615963]},"id":"8f44c0a3212d88a-13b7b4e3934b60ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3212d88a-13b7b4e3934b60ad","8f44c0a328d8db1-13f77347f9f3014e"]},"geometry":{"type":"LineString","coordinates":[[-83.61486090000001,32.861699800000004],[-83.6142023,32.8615963]]},"id":"8944c0a328fffff-13d73415cb1aa716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61320880000001,32.863873600000005]},"id":"8f44c0a32152851-17b737508ffb5c2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61287850000001,32.8638287]},"id":"8f44c0a32025261-1797f81efaf4c4e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32025261-1797f81efaf4c4e6","8f44c0a32152851-17b737508ffb5c2e"]},"geometry":{"type":"LineString","coordinates":[[-83.61320880000001,32.863873600000005],[-83.61287850000001,32.8638287]]},"id":"8b44c0a32152fff-17b737b7b3aaf795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61377440000001,32.862267700000004]},"id":"8f44c0a3212ba0d-13d775ef064b640f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614225,32.8622351]},"id":"8f44c0a32129ac9-13b7f4d56fefe49a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3212ba0d-13d775ef064b640f","8f44c0a32129ac9-13b7f4d56fefe49a"]},"geometry":{"type":"LineString","coordinates":[[-83.61377440000001,32.862267700000004],[-83.6137937,32.8621572],[-83.614225,32.8622351]]},"id":"8a44c0a3212ffff-139fb578e05b0825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6147608,32.861500500000005]},"id":"8f44c0a328de852-13f7f386879cf449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6144326,32.8612106]},"id":"8f44c0a328d3ba0-13b7b453a270b4bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328de852-13f7f386879cf449","8f44c0a328d3ba0-13b7b453a270b4bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6147608,32.861500500000005],[-83.61478480000001,32.861279700000004],[-83.6144326,32.8612106]]},"id":"8944c0a328fffff-13fff3be69da94fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66505930000001,32.8763345]},"id":"8f44c0a31b5d80c-179fb8b9f399390e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66544800000001,32.8768097]},"id":"8f44c0a31b4aaac-17d6b7c702a7c85b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b5d80c-179fb8b9f399390e","8f44c0a31b4aaac-17d6b7c702a7c85b"]},"geometry":{"type":"LineString","coordinates":[[-83.66505930000001,32.8763345],[-83.66544800000001,32.8768097]]},"id":"8944c0a31b7ffff-17b7b8407347c902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74802860000001,32.871597200000004]},"id":"8f44c0b52842ae6-139dee2a2e2fe4c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7480015,32.8718334]},"id":"8f44c0b52843430-139fee3b1fcc4cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52843430-139fee3b1fcc4cd2","8f44c0b52842ae6-139dee2a2e2fe4c9"]},"geometry":{"type":"LineString","coordinates":[[-83.74802860000001,32.871597200000004],[-83.7480015,32.8718334]]},"id":"8a44c0b52847fff-13d7fe3298644515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7481695,32.872069100000004]},"id":"8f44c0b5284364c-13b7fdd216ba9727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74811290000001,32.8722361]},"id":"8f44c0b5285d105-139ffdf571f7d759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5284364c-13b7fdd216ba9727","8f44c0b5285d105-139ffdf571f7d759"]},"geometry":{"type":"LineString","coordinates":[[-83.7481695,32.872069100000004],[-83.74811290000001,32.8722361]]},"id":"8a44c0b5285ffff-13f7ede3c49d15e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74847480000001,32.8723216]},"id":"8f44c0b5284e623-13d5ed134131e46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5284e623-13d5ed134131e46e","8f44c0b5285d105-139ffdf571f7d759"]},"geometry":{"type":"LineString","coordinates":[[-83.74811290000001,32.8722361],[-83.74847480000001,32.8723216]]},"id":"8944c0b5287ffff-13b7ed8450ef6032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.748821,32.872224200000005]},"id":"8f44c0b5284eb4a-1395ec3ae3f4edf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7489778,32.871615600000005]},"id":"8f44c0b5286a435-1397ebd8eb224ac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5286a435-1397ebd8eb224ac4","8f44c0b5284eb4a-1395ec3ae3f4edf8"]},"geometry":{"type":"LineString","coordinates":[[-83.748821,32.872224200000005],[-83.7489584,32.8720354],[-83.7489778,32.871615600000005]]},"id":"8944c0b5287ffff-13dfebf07af714ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7487852,32.872886900000005]},"id":"8f44c0b5284b116-17b7fc5149955883"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5284b116-17b7fc5149955883","8f44c0b5284eb4a-1395ec3ae3f4edf8"]},"geometry":{"type":"LineString","coordinates":[[-83.748821,32.872224200000005],[-83.74878000000001,32.8723606],[-83.74883770000001,32.872814600000005],[-83.7487852,32.872886900000005]]},"id":"8a44c0b5284ffff-17f7fc435e389fd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75080630000001,32.8715361]},"id":"8f44c0b50498c83-13f7f76219e174ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7510324,32.871817]},"id":"8f44c0b50498215-1395e6d4c3fd53d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50498215-1395e6d4c3fd53d8","8f44c0b50498c83-13f7f76219e174ee"]},"geometry":{"type":"LineString","coordinates":[[-83.75080630000001,32.8715361],[-83.7510324,32.871817]]},"id":"8b44c0b50498fff-13bde71b72ce419e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75036030000001,32.8716208]},"id":"8f44c0b5049ac12-139fe878d51e68b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7503805,32.871799200000005]},"id":"8f44c0b5049a46c-139fe86c33b97623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5049a46c-139fe86c33b97623","8f44c0b5049ac12-139fe878d51e68b8"]},"geometry":{"type":"LineString","coordinates":[[-83.75036030000001,32.8716208],[-83.7503805,32.871799200000005]]},"id":"8b44c0b5049afff-13d7e87289334374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7490904,32.8734547]},"id":"8f44c0b52b16654-1795fb928289e044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52b16654-1795fb928289e044","8f44c0b5284b116-17b7fc5149955883"]},"geometry":{"type":"LineString","coordinates":[[-83.7490904,32.8734547],[-83.7491842,32.873196300000004],[-83.7491545,32.8730838],[-83.7487852,32.872886900000005]]},"id":"8844c0b52bfffff-17d5fba868a3f5bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7486432,32.873400600000004]},"id":"8f44c0b52ba50ac-17f7ecaa032c48ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74877500000001,32.8734003]},"id":"8f44c0b52ba5ab2-17f7fc57a76cc4ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b52ba50ac-17f7ecaa032c48ea","8f44c0b52ba5ab2-17f7fc57a76cc4ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7486432,32.873400600000004],[-83.7486468,32.8739233],[-83.7487423,32.8739835],[-83.74880320000001,32.873922300000004],[-83.7488079,32.8734982],[-83.74877500000001,32.8734003]]},"id":"8944c0b52bbffff-17b7ec76f6742593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7503674,32.8733828]},"id":"8f44c0b52b0654e-17fde87461220c39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7498245,32.8729448]},"id":"8f44c0b52b322f1-17d7e9c7b895eee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b52b322f1-17d7e9c7b895eee1","8f44c0b52b0654e-17fde87461220c39"]},"geometry":{"type":"LineString","coordinates":[[-83.7503674,32.8733828],[-83.7502776,32.873192700000004],[-83.7498245,32.8729448]]},"id":"8944c0b52b3ffff-17dff9090069b6b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200749,32.8532515]},"id":"8f44c0a362f06e4-17d7368d38b0fb6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62004540000001,32.853673900000004]},"id":"8f44c0a362f3290-17df369fa50701cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a362f3290-17df369fa50701cd","8f44c0a362f06e4-17d7368d38b0fb6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6200749,32.8532515],[-83.61992520000001,32.8536483],[-83.62004540000001,32.853673900000004]]},"id":"8944c0a362fffff-17dfe6be19ba3bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620405,32.8523705]},"id":"8f44c0a3621a296-139fb5bee24ff76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62058010000001,32.8522588]},"id":"8f44c0a3621aaf4-13d7e5517ccdd5c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3621a296-139fb5bee24ff76a","8f44c0a3621aaf4-13d7e5517ccdd5c8"]},"geometry":{"type":"LineString","coordinates":[[-83.620405,32.8523705],[-83.62046090000001,32.8522273],[-83.62058010000001,32.8522588]]},"id":"8b44c0a3621afff-13df65951c8921c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6201132,32.8525873]},"id":"8f44c0a362f4518-13b73675495b99ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62011600000001,32.8524906]},"id":"8f44c0a362a9349-13f7a6738c9dc7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a362f4518-13b73675495b99ae","8f44c0a362a9349-13f7a6738c9dc7e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6201132,32.8525873],[-83.62011600000001,32.8524906]]},"id":"8b44c0a362f4fff-1397e674689ec4ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7463407,32.8908129]},"id":"8f44c0b534a0525-13f7f2491acbcbb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b534a0525-13f7f2491acbcbb9","8f44c0b5359bb20-17f5f324e8cc85ef"]},"geometry":{"type":"LineString","coordinates":[[-83.74598900000001,32.890196],[-83.74612900000001,32.8901947],[-83.746216,32.8901963],[-83.7463101,32.8902324],[-83.7461979,32.890449000000004],[-83.74618310000001,32.8905296],[-83.74621020000001,32.890624700000004],[-83.7463185,32.8907716],[-83.74633460000001,32.8907922],[-83.7463407,32.8908129]]},"id":"8844c0b535fffff-17fff297ef10e68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74652970000001,32.8909867]},"id":"8f44c0b534a0059-13f7f1d2f95d094c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b534a0059-13f7f1d2f95d094c","8f44c0b53588cc2-179ff0719a2f30b6"]},"geometry":{"type":"LineString","coordinates":[[-83.74652970000001,32.8909867],[-83.7465949,32.8908587],[-83.74663340000001,32.890782800000004],[-83.7467192,32.8906014],[-83.74679920000001,32.8904373],[-83.74689690000001,32.8902458],[-83.7469428,32.8901538],[-83.7469605,32.890078],[-83.74709510000001,32.889848300000004]]},"id":"8844c0b535fffff-17fdf123b7774b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74604210000001,32.890975600000004]},"id":"8f44c0b534a210d-13dff303b80a0bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7462806,32.891025]},"id":"8f44c0b534a2b6a-13fff26eaea4898a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b534a210d-13dff303b80a0bf8","8f44c0b534a2b6a-13fff26eaea4898a"]},"geometry":{"type":"LineString","coordinates":[[-83.74604210000001,32.890975600000004],[-83.7462806,32.891025]]},"id":"8a44c0b534a7fff-13fff2b925a57b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7463204,32.8915352]},"id":"8f44c0b534a3641-13bdf255cb8efa0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b534a3641-13bdf255cb8efa0e","8f44c0b534a2b6a-13fff26eaea4898a"]},"geometry":{"type":"LineString","coordinates":[[-83.7462806,32.891025],[-83.7463204,32.8915352]]},"id":"8944c0b534bffff-139ff26233efcc28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74603610000001,32.8908885]},"id":"8f44c0b534a2886-13b5f3077ffcaf42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b534a2886-13b5f3077ffcaf42","8f44c0b534a0525-13f7f2491acbcbb9"]},"geometry":{"type":"LineString","coordinates":[[-83.7463407,32.8908129],[-83.7463013,32.8908367],[-83.74616830000001,32.890876],[-83.74603610000001,32.8908885]]},"id":"8a44c0b534a7fff-1395f2a62bf4963a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7465363,32.891078]},"id":"8f44c0b534a02ac-139ff1cedd04c220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b534a02ac-139ff1cedd04c220","8f44c0b534a2b6a-13fff26eaea4898a"]},"geometry":{"type":"LineString","coordinates":[[-83.7462806,32.891025],[-83.7465363,32.891078]]},"id":"8b44c0b534a0fff-139ff21ecdda57e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b534a0525-13f7f2491acbcbb9","8f44c0b534a0059-13f7f1d2f95d094c"]},"geometry":{"type":"LineString","coordinates":[[-83.74652970000001,32.8909867],[-83.7463407,32.8908129]]},"id":"8b44c0b534a0fff-13bdf20e03e97cc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b534a2886-13b5f3077ffcaf42","8f44c0b5359bb20-17f5f324e8cc85ef"]},"geometry":{"type":"LineString","coordinates":[[-83.74603610000001,32.8908885],[-83.74598900000001,32.890196]]},"id":"8844c0b535fffff-13ddf316245751f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b534a2886-13b5f3077ffcaf42","8f44c0b534a210d-13dff303b80a0bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.74604210000001,32.890975600000004],[-83.74603610000001,32.8908885]]},"id":"8b44c0b534a2fff-13d5f3059c9ebaf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671141,32.815083300000005]},"id":"8f44c0b18721550-1397b3b5b43a0035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671359,32.8145783]},"id":"8f44c0b1872425a-17d7f3a8162ae222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18721550-1397b3b5b43a0035","8f44c0b1872425a-17d7f3a8162ae222"]},"geometry":{"type":"LineString","coordinates":[[-83.6671141,32.815083300000005],[-83.6671359,32.8145783]]},"id":"8a44c0b18727fff-17f7f3aee5489eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669059,32.815420200000005]},"id":"8f44c0b18723255-13f7b437d9790709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666328,32.8154087]},"id":"8f44c0b18723689-13def4e289cdd9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18723255-13f7b437d9790709","8f44c0b18723689-13def4e289cdd9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6669059,32.815420200000005],[-83.6666328,32.8154087]]},"id":"8b44c0b18723fff-13f6b48d22a0ccf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669174,32.8145733]},"id":"8f44c0b187246cc-17d6f430ae6e76fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18726303-17d7b4d921450713","8f44c0b187246cc-17d6f430ae6e76fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6666478,32.8145688],[-83.6669174,32.8145733]]},"id":"8a44c0b18727fff-17d6f484e5668e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673344,32.8145818]},"id":"8f44c0b18725c51-17dfb32c04da64c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66732370000001,32.8152301]},"id":"8f44c0b187213a8-13fef332bd771cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18725c51-17dfb32c04da64c5","8f44c0b187213a8-13fef332bd771cdc"]},"geometry":{"type":"LineString","coordinates":[[-83.6673344,32.8145818],[-83.66732370000001,32.8152301]]},"id":"8a44c0b18727fff-17b6f32f54298813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675589,32.8145858]},"id":"8f44c0b1872586e-17deb29fb7086159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18725c51-17dfb32c04da64c5","8f44c0b1872586e-17deb29fb7086159"]},"geometry":{"type":"LineString","coordinates":[[-83.6673344,32.8145818],[-83.6675589,32.8145858]]},"id":"8b44c0b18725fff-17def2e5ec76f08f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18725c51-17dfb32c04da64c5","8f44c0b1872425a-17d7f3a8162ae222"]},"geometry":{"type":"LineString","coordinates":[[-83.6671359,32.8145783],[-83.6673344,32.8145818]]},"id":"8a44c0b18727fff-17deb36a09171b00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75872840000001,32.8805629]},"id":"8f44c0b506c5785-17ffd40ac5a0faa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506c5785-17ffd40ac5a0faa2","8f44c0b506c5384-17f7d39b3d1bd492"]},"geometry":{"type":"LineString","coordinates":[[-83.7589069,32.8805664],[-83.75872840000001,32.8805629]]},"id":"8b44c0b506c5fff-17f5f3d30cf19783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7577691,32.882195200000005]},"id":"8f44c0b53d66c89-13fdd6625bc5d4dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53d668ab-13fdf5e56e893c68","8f44c0b53d66c89-13fdd6625bc5d4dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7577691,32.882195200000005],[-83.757969,32.8821967]]},"id":"8b44c0b53d66fff-13fdd623d97179f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74451230000001,32.889552900000005]},"id":"8f44c0a2c968c2c-17f7f6bfdde636db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74447570000001,32.8900127]},"id":"8f44c0a2c96b886-1795f6d6bf4dc947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2c968c2c-17f7f6bfdde636db","8f44c0a2c96b886-1795f6d6bf4dc947"]},"geometry":{"type":"LineString","coordinates":[[-83.74451230000001,32.889552900000005],[-83.74447570000001,32.8900127]]},"id":"8a44c0a2c96ffff-17f7f6cb424d680c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67532170000001,32.8854508]},"id":"8f44c0a0480e554-13dedfabfdf6f9b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0480e292-17f6ff5cc15db617","8f44c0a0480e554-13dedfabfdf6f9b8"]},"geometry":{"type":"LineString","coordinates":[[-83.67544840000001,32.885661500000005],[-83.67532170000001,32.8854508]]},"id":"8b44c0a0480efff-17b6bf845ca692b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6311216,32.7720374]},"id":"8f44c0b13c04735-17ff6b95039b57f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298879,32.771276]},"id":"8f44c0b13c32ca5-179f8e9810115ca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c04735-17ff6b95039b57f1","8f44c0b13c32ca5-179f8e9810115ca4"]},"geometry":{"type":"LineString","coordinates":[[-83.6311216,32.7720374],[-83.6302388,32.7720155],[-83.6300458,32.7720165],[-83.629931,32.7719757],[-83.62985520000001,32.771899000000005],[-83.6298845,32.77134],[-83.6298879,32.771276]]},"id":"8944c0b13c3ffff-1797eda4bdc75b7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7123679,32.9242109]},"id":"8f44c0a2aaa19b1-13ffd53a1d5c5002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7119694,32.924335500000005]},"id":"8f44c0a2aaa390a-13dff63323ce7a21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa19b1-13ffd53a1d5c5002","8f44c0a2aaa390a-13dff63323ce7a21"]},"geometry":{"type":"LineString","coordinates":[[-83.7123679,32.9242109],[-83.7119694,32.924335500000005]]},"id":"8a44c0a2aaa7fff-13b6c5b69a9e46d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128362,32.925237]},"id":"8f44c0a2aaa8a69-179764156b60e9d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71242980000001,32.925359400000005]},"id":"8f44c0a2aaa86f3-17dfe5136dc884fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa86f3-17dfe5136dc884fa","8f44c0a2aaa8a69-179764156b60e9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7128362,32.925237],[-83.71242980000001,32.925359400000005]]},"id":"8b44c0a2aaa8fff-17b764946e03d8a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69743340000001,32.8714409]},"id":"8f44c0a2074276a-13bef9b0262c1d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69826470000001,32.87175]},"id":"8f44c0a2074e932-13ffe7a898e0759e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2074e932-13ffe7a898e0759e","8f44c0a2074276a-13bef9b0262c1d58"]},"geometry":{"type":"LineString","coordinates":[[-83.69743340000001,32.8714409],[-83.69749230000001,32.8715485],[-83.69756140000001,32.8716237],[-83.6976264,32.8717005],[-83.69768540000001,32.8717312],[-83.69775650000001,32.8717381],[-83.69826470000001,32.87175]]},"id":"8944c0a2077ffff-13d778c9deafb6de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74821010000001,32.8371796]},"id":"8f44c0b09706349-1795edb8b8565991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7489434,32.8368917]},"id":"8f44c0b09723776-17d5fbee6af6e88b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b09706349-1795edb8b8565991","8f44c0b09723776-17d5fbee6af6e88b"]},"geometry":{"type":"LineString","coordinates":[[-83.74821010000001,32.8371796],[-83.74842790000001,32.8370429],[-83.74861700000001,32.8369336],[-83.74872160000001,32.8368964],[-83.7489434,32.8368917]]},"id":"8944c0b0973ffff-179ffcdc239a8921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7494609,32.8371356]},"id":"8f44c0b0972eab0-17fdeaaaf68f6709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7494607,32.83668]},"id":"8f44c0b09721033-17ddeaab1e8e8d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0972eab0-17fdeaaaf68f6709","8f44c0b09721033-17ddeaab1e8e8d9b"]},"geometry":{"type":"LineString","coordinates":[[-83.7494609,32.8371356],[-83.74952640000001,32.8370375],[-83.74955050000001,32.836924800000006],[-83.7495317,32.836818900000004],[-83.7494607,32.83668]]},"id":"8944c0b0973ffff-17ddea8913816181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5705559,32.8108877]},"id":"8f44c0baa4a3849-17d7df7292781809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a3849-17d7df7292781809","8f44c0baa4b3250-17bff2ceab83eab2"]},"geometry":{"type":"LineString","coordinates":[[-83.5705559,32.8108877],[-83.5704185,32.8109847],[-83.57024080000001,32.8110917],[-83.5701135,32.811141500000005],[-83.5700104,32.8111581],[-83.5698809,32.8111581],[-83.56962850000001,32.8111212],[-83.56943100000001,32.811077000000004],[-83.5691798,32.8110311]]},"id":"8944c0baa4bffff-17dfe1130cf9f4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57053470000001,32.811968300000004]},"id":"8f44c0baa48c99e-13ffbf7fd9d92b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5709628,32.811044]},"id":"8f44c0baa4a1252-17b79e7449d3ef91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa48c99e-13ffbf7fd9d92b43","8f44c0baa4a1252-17b79e7449d3ef91"]},"geometry":{"type":"LineString","coordinates":[[-83.57053470000001,32.811968300000004],[-83.57072380000001,32.8119859],[-83.5707484,32.811907500000004],[-83.5707759,32.811823600000004],[-83.570828,32.8117043],[-83.5708671,32.8116021],[-83.57089900000001,32.8114975],[-83.57092,32.81141],[-83.570936,32.8113169],[-83.5709554,32.8111592],[-83.5709628,32.811044]]},"id":"8944c0baa4bffff-179fbec636860c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5721122,32.811996400000005]},"id":"8f44c0baa41a349-139fdba5e0956072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57228160000001,32.8103525]},"id":"8f44c0baa415d46-1797db3c0555398c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa41a349-139fdba5e0956072","8f44c0baa415d46-1797db3c0555398c"]},"geometry":{"type":"LineString","coordinates":[[-83.5721122,32.811996400000005],[-83.57210640000001,32.8117469],[-83.57210350000001,32.8115498],[-83.57216430000001,32.8113551],[-83.5722107,32.8111921],[-83.5722657,32.810980300000004],[-83.5722961,32.810824600000004],[-83.57230480000001,32.8105958],[-83.5722961,32.8104364],[-83.57228160000001,32.8103525]]},"id":"8944c0baa43ffff-179fdb6afa9c58d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5711414,32.8110257]},"id":"8f44c0baa4acc01-17bf9e04ab711c67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5713406,32.812000000000005]},"id":"8f44c0baa4a9716-139f9d882cba271b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9716-139f9d882cba271b","8f44c0baa4acc01-17bf9e04ab711c67"]},"geometry":{"type":"LineString","coordinates":[[-83.5711414,32.8110257],[-83.5711323,32.8119991],[-83.5713406,32.812000000000005]]},"id":"8a44c0baa4affff-1797fdfc85979253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57191800000001,32.8077722]},"id":"8f44c0baa5a1b00-17bfbc1f41dde441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5727904,32.808577]},"id":"8f44c0baa51e6c1-13b7b9fe088f46ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1b00-17bfbc1f41dde441","8f44c0baa51e6c1-13b7b9fe088f46ac"]},"geometry":{"type":"LineString","coordinates":[[-83.57191800000001,32.8077722],[-83.5721757,32.8080212],[-83.57245040000001,32.8082818],[-83.57262940000001,32.808474600000004],[-83.5727904,32.808577]]},"id":"8844c0baa5fffff-17bf9b1368074f49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7097389,32.9156051]},"id":"8f44c0a2a83056d-17ff7ba5371ba366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095493,32.9152773]},"id":"8f44c0a2a836163-17b65c1bb77e876f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836163-17b65c1bb77e876f","8f44c0a2a83056d-17ff7ba5371ba366"]},"geometry":{"type":"LineString","coordinates":[[-83.7097389,32.9156051],[-83.7095493,32.9152773]]},"id":"8a44c0a2a837fff-1796cbe07fa6b6a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093869,32.915357400000005]},"id":"8f44c0a2a836726-17f66c813cb7a3eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70956380000001,32.9156831]},"id":"8f44c0a2a832b23-17bffc12ac733e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836726-17f66c813cb7a3eb","8f44c0a2a832b23-17bffc12ac733e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.7093869,32.915357400000005],[-83.70956380000001,32.9156831]]},"id":"8a44c0a2a837fff-17de6c49f7073a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091237,32.9148954]},"id":"8f44c0a2a9ab135-13d7ed25b62bfdff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70924190000001,32.9148519]},"id":"8f44c0a2a9ab829-13b67cdbda4abbe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9ab135-13d7ed25b62bfdff","8f44c0a2a9ab829-13b67cdbda4abbe2"]},"geometry":{"type":"LineString","coordinates":[[-83.7091237,32.9148954],[-83.70924190000001,32.9148519]]},"id":"8b44c0a2a9abfff-13b65d00cb465ecd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70905210000001,32.9146647]},"id":"8f44c0a2a9a879a-13b77d527b066cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9ab135-13d7ed25b62bfdff","8f44c0a2a9a879a-13b77d527b066cf4"]},"geometry":{"type":"LineString","coordinates":[[-83.70905210000001,32.9146647],[-83.7090112,32.9147273],[-83.7090058,32.914788800000004],[-83.7090166,32.9148288],[-83.7090397,32.9148651],[-83.7091237,32.9148954]]},"id":"8a44c0a2a9affff-13966d5b2261bc9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710052,32.9137446]},"id":"8f44c0a2a91020c-13f66ae187c5f5fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092911,32.913922500000005]},"id":"8f44c0a2a9acd08-13f7dcbd12264aee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9acd08-13f7dcbd12264aee","8f44c0a2a91020c-13f66ae187c5f5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.710052,32.9137446],[-83.71003400000001,32.9138594],[-83.7100039,32.9139114],[-83.7099455,32.9139337],[-83.7092911,32.913922500000005]]},"id":"8844c0a2a9fffff-13decbada46aae9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7522677,32.8162777]},"id":"8f44c0b0d7a1a75-13fdf3d0b202d7f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7491779,32.816498]},"id":"8f44c0b0d796730-1397eb5bd9777d5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d7a1a75-13fdf3d0b202d7f5","8f44c0b0d796730-1397eb5bd9777d5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7522677,32.8162777],[-83.7491779,32.816498]]},"id":"8944c0b0d7bffff-13d7f7964571e023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75240570000001,32.818805600000005]},"id":"8f44c0b0d614262-13bde37a712c831b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75127850000001,32.8184234]},"id":"8f44c0b0d78b473-13bfe63af2fd87ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0d614262-13bde37a712c831b","8f44c0b0d78b473-13bfe63af2fd87ec"]},"geometry":{"type":"LineString","coordinates":[[-83.75240570000001,32.818805600000005],[-83.75233850000001,32.8188708],[-83.7522876,32.8189046],[-83.75224200000001,32.8189046],[-83.7520784,32.818837],[-83.7513595,32.818503400000004],[-83.7512952,32.8184515],[-83.75127850000001,32.8184234]]},"id":"8844c0b0d7fffff-13ffe4dcc22fdb5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7500411,32.8160801]},"id":"8f44c0b0d7b234b-1397f9405193ac4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74917110000001,32.816146100000005]},"id":"8f44c0b0d4cbb4a-13bffb6010685e83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d7b234b-1397f9405193ac4d","8f44c0b0d4cbb4a-13bffb6010685e83"]},"geometry":{"type":"LineString","coordinates":[[-83.7500411,32.8160801],[-83.74917110000001,32.816146100000005]]},"id":"8744c0b0dffffff-1397fa503f678d95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7500222,32.815902]},"id":"8f44c0b0d7b2b88-1397e94c2cedc81c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74915440000001,32.8159651]},"id":"8f44c0b0d4c958e-13bffb6a8d1dc251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d7b2b88-1397e94c2cedc81c","8f44c0b0d4c958e-13bffb6a8d1dc251"]},"geometry":{"type":"LineString","coordinates":[[-83.7500222,32.815902],[-83.74915440000001,32.8159651]]},"id":"8844c0b0d5fffff-13b7ea5b5ca4f2b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7462763,32.816695800000005]},"id":"8f44c0b08b724d0-1797f27153d6d4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746173,32.815626300000005]},"id":"8f44c0b08b2aa6e-13f7f2b1eb4b1814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08b724d0-1797f27153d6d4b3","8f44c0b08b2aa6e-13f7f2b1eb4b1814"]},"geometry":{"type":"LineString","coordinates":[[-83.7462763,32.816695800000005],[-83.7461614,32.816700100000006],[-83.74607830000001,32.8166888],[-83.7460568,32.8166505],[-83.7459951,32.8159629],[-83.74597100000001,32.8157037],[-83.7459817,32.815660900000005],[-83.74602730000001,32.8156361],[-83.746173,32.815626300000005]]},"id":"8844c0b08bfffff-13bdf3018b4e46bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74430980000001,32.825126000000004]},"id":"8f44c0b09cb4594-1397f73e6a8e1529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74431560000001,32.8239901]},"id":"8f44c0b09d9355e-17d5f73ac19100fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09cb4594-1397f73e6a8e1529","8f44c0b09d9355e-17d5f73ac19100fd"]},"geometry":{"type":"LineString","coordinates":[[-83.74430980000001,32.825126000000004],[-83.74431560000001,32.8239901]]},"id":"8844c0b09dfffff-17b5f73c961d2ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6057464,32.8983542]},"id":"8f44c0a1090a8c1-13df698885f3bed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60239820000001,32.89654]},"id":"8f44c0a109a6c81-17f7d1b52940aa3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1090a8c1-13df698885f3bed2","8f44c0a109a6c81-17f7d1b52940aa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.6057464,32.8983542],[-83.6055149,32.8982899],[-83.6051207,32.898184],[-83.6047022,32.898019600000005],[-83.6044662,32.897913800000005],[-83.6044176,32.897887000000004],[-83.6040773,32.897699800000005],[-83.60372860000001,32.897456600000005],[-83.6035274,32.8972922],[-83.6033397,32.897085000000004],[-83.6030312,32.8968845],[-83.60255380000001,32.8965873],[-83.60239820000001,32.89654]]},"id":"8744c0a10ffffff-13f7fdbdbd621906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775477,32.8162491]},"id":"8f44c0b18adedb1-13ffba3cbd76c589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775753,32.8152745]},"id":"8f44c0b18ad4000-139e9a2b7feb385a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18adedb1-13ffba3cbd76c589","8f44c0b18ad4000-139e9a2b7feb385a"]},"geometry":{"type":"LineString","coordinates":[[-83.6775477,32.8162491],[-83.67753760000001,32.816050100000005],[-83.6775753,32.8152745]]},"id":"8a44c0b18ad7fff-13bfba3904901dc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68751780000001,32.9002496]},"id":"8f44c0a05d48189-139681e562e8f1f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68735620000001,32.9004009]},"id":"8f44c0a05d486b0-13de924a6baf6c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d486b0-13de924a6baf6c50","8f44c0a05d48189-139681e562e8f1f7"]},"geometry":{"type":"LineString","coordinates":[[-83.68751780000001,32.9002496],[-83.6874777,32.9002931],[-83.68735620000001,32.9004009]]},"id":"8b44c0a05d48fff-13b6c216fd0521b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875411,32.8997369]},"id":"8f44c0a05d4ccd5-17bf91d6d53e1e27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878743,32.899926]},"id":"8f44c0a05d4ddb4-17b7c1069ce6226b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4ddb4-17b7c1069ce6226b","8f44c0a05d4ccd5-17bf91d6d53e1e27"]},"geometry":{"type":"LineString","coordinates":[[-83.6875411,32.8997369],[-83.6878743,32.899926]]},"id":"8b44c0a05d4cfff-17feb16eb8f3734a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7010542,32.8988934]},"id":"8f44c0a2e5ac162-17b660d92b1ecce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70091090000001,32.8984979]},"id":"8f44c0a2e51241d-13bf7132b92987b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5ac162-17b660d92b1ecce5","8f44c0a2e51241d-13bf7132b92987b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7010542,32.8988934],[-83.7009068,32.898874],[-83.7008826,32.898847100000005],[-83.70091090000001,32.8984979]]},"id":"8944c0a2e5bffff-17d6f12d1bc8e391"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7005415,32.8984776]},"id":"8f44c0a2e5a1ce4-13bee2199e513fb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003718,32.898838000000005]},"id":"8f44c0a2e5aed81-179fe283aba08719"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5aed81-179fe283aba08719","8f44c0a2e5a1ce4-13bee2199e513fb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7005415,32.8984776],[-83.7005089,32.8988166],[-83.7004971,32.898826500000006],[-83.70046090000001,32.8988378],[-83.7003718,32.898838000000005]]},"id":"8a44c0a2e5a7fff-17bf62330322a30f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7024574,32.897958]},"id":"8f44c0a2e506d15-13f7dd6c24c95455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702246,32.8981994]},"id":"8f44c0a2e51586b-13fefdf0407f4cd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e51586b-13fefdf0407f4cd0","8f44c0a2e506d15-13f7dd6c24c95455"]},"geometry":{"type":"LineString","coordinates":[[-83.7024574,32.897958],[-83.7022661,32.8980077],[-83.702246,32.8981994]]},"id":"8944c0a2e53ffff-139eddc8816907e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7019952,32.8982788]},"id":"8f44c0a2e5150b1-13b65e8d090924b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7010767,32.898502900000004]},"id":"8f44c0a2e512013-13be70cb1f0f7339"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5150b1-13b65e8d090924b6","8f44c0a2e512013-13be70cb1f0f7339"]},"geometry":{"type":"LineString","coordinates":[[-83.7019952,32.8982788],[-83.7012806,32.898271900000005],[-83.7012672,32.8985077],[-83.7010767,32.898502900000004]]},"id":"8a44c0a2e517fff-13d6ffcc0236ef69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70256040000001,32.8981477]},"id":"8f44c0a2e506024-13de5d2bcf6ad5a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7028982,32.898433700000005]},"id":"8f44c0a2e500114-13975c58a59121f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e506024-13de5d2bcf6ad5a6","8f44c0a2e500114-13975c58a59121f1"]},"geometry":{"type":"LineString","coordinates":[[-83.70256040000001,32.8981477],[-83.7026822,32.8984444],[-83.7027037,32.8984544],[-83.7028982,32.898433700000005]]},"id":"8a44c0a2e507fff-13f6dcdb108d2e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568105,32.805974500000005]},"id":"8f44c0b852c0d74-13d7b56e6777c811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5679491,32.8057645]},"id":"8f44c0b852c6868-13d7f5cfdfe98870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c6868-13d7f5cfdfe98870","8f44c0b852c0d74-13d7b56e6777c811"]},"geometry":{"type":"LineString","coordinates":[[-83.568105,32.805974500000005],[-83.5679491,32.8057645]]},"id":"8a44c0b852c7fff-1397f59f17e47042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5681661,32.8057327]},"id":"8f44c0b852c40b4-13bff54837a01557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c6868-13d7f5cfdfe98870","8f44c0b852c40b4-13bff54837a01557"]},"geometry":{"type":"LineString","coordinates":[[-83.5679491,32.8057645],[-83.5680181,32.8057366],[-83.5681661,32.8057327]]},"id":"8a44c0b852c7fff-13d7a58d2d01f526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56784300000001,32.8056213]},"id":"8f44c0b852f164e-13fff6122c8fef39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c6868-13d7f5cfdfe98870","8f44c0b852f164e-13fff6122c8fef39"]},"geometry":{"type":"LineString","coordinates":[[-83.5679491,32.8057645],[-83.56784300000001,32.8056213]]},"id":"8944c0b852fffff-13b7b5f107d45f69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5676856,32.8058712]},"id":"8f44c0b852c6091-1397a6748fa4475e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5673952,32.8053897]},"id":"8f44c0b852f3c64-13ffb72a06497b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c6091-1397a6748fa4475e","8f44c0b852f3c64-13ffb72a06497b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.5676856,32.8058712],[-83.5673952,32.8053897]]},"id":"8944c0b852fffff-13ffb6cf456bea0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638603,32.846938]},"id":"8f44c0a346448dc-17def9512aacf281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6386968,32.8469295]},"id":"8f44c0a3464484c-17d6f91689b51224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3464484c-17d6f91689b51224","8f44c0a346448dc-17def9512aacf281"]},"geometry":{"type":"LineString","coordinates":[[-83.638603,32.846938],[-83.6386968,32.8469295]]},"id":"8c44c0a346449ff-17d7f933d7137a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59128700000001,32.9007183]},"id":"8f44c0a10c9c4ad-13b7fcd5a32bb312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5909578,32.900361700000005]},"id":"8f44c0a10c91431-13d77da368eca8e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a10c9c4ad-13b7fcd5a32bb312","8f44c0a10c91431-13d77da368eca8e6"]},"geometry":{"type":"LineString","coordinates":[[-83.59128700000001,32.9007183],[-83.5910611,32.900637800000005],[-83.5909578,32.900361700000005]]},"id":"8944c0a10cbffff-13df7d54f73df9c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7717915,32.9034597]},"id":"8f44c0b5ecea892-17d7f42656777894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769734,32.9035998]},"id":"8f44c0b5ecd1499-13bdf92c441290ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5ecea892-17d7f42656777894","8f44c0b5ecd1499-13bdf92c441290ff"]},"geometry":{"type":"LineString","coordinates":[[-83.7717915,32.9034597],[-83.7713686,32.9034548],[-83.77034450000001,32.903443],[-83.7701407,32.9034159],[-83.769734,32.9035998]]},"id":"8944c0b5ecfffff-17d7f6b35dc48e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6618564,32.740923]},"id":"8f44c0b3369d702-1396e08bcbfac7d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66098480000001,32.741046000000004]},"id":"8f44c0b3369a033-13d7c2ac889e3ebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b3369d702-1396e08bcbfac7d1","8f44c0b3369a033-13d7c2ac889e3ebc"]},"geometry":{"type":"LineString","coordinates":[[-83.6618564,32.740923],[-83.66158250000001,32.741002],[-83.66145080000001,32.7410477],[-83.66098480000001,32.741046000000004]]},"id":"8a44c0b3369ffff-13bfc1994ea36b00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7210319,32.8111073]},"id":"8f44c0b0e2e6651-17de30131a001597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e2e6651-17de30131a001597","8f44c0b0e2f54da-17d6b1a17490d75e"]},"geometry":{"type":"LineString","coordinates":[[-83.72039450000001,32.8110921],[-83.7210319,32.8111073]]},"id":"8944c0b0e2fffff-17df70da46d9ca90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57959190000001,32.8593319]},"id":"8f44c0b89d96d33-179ff9631a8eb56c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5800842,32.8587183]},"id":"8f44c0b88acda11-139ff82f61e60128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b89d96d33-179ff9631a8eb56c","8f44c0b88acda11-139ff82f61e60128"]},"geometry":{"type":"LineString","coordinates":[[-83.57959190000001,32.8593319],[-83.57961710000001,32.858697500000005],[-83.5800842,32.8587183]]},"id":"8a44c0b88acffff-1397e919fea0ce79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7117516,32.929788300000006]},"id":"8f44c0a2a354154-139ff6bb441ee2db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71166260000001,32.9295879]},"id":"8f44c0a2a354d21-17b676f2e8d161e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a354d21-17b676f2e8d161e7","8f44c0a2a354154-139ff6bb441ee2db"]},"geometry":{"type":"LineString","coordinates":[[-83.7117516,32.929788300000006],[-83.71166260000001,32.9295879]]},"id":"8b44c0a2a354fff-17df56d71e682c7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710898,32.930066700000005]},"id":"8f44c0a2a225aa8-13dff8d0cd4c3d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7108048,32.9298555]},"id":"8f44c0a2a22598e-13d7f90b04fe05df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a225aa8-13dff8d0cd4c3d7c","8f44c0a2a22598e-13d7f90b04fe05df"]},"geometry":{"type":"LineString","coordinates":[[-83.710898,32.930066700000005],[-83.7108048,32.9298555]]},"id":"8b44c0a2a225fff-139ff8ede5ea264e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6524303,32.8300204]},"id":"8f44c0b1b582960-179ed78f15ab8627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6524794,32.829941000000005]},"id":"8f44c0b1b586272-17dff7706217daec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1b582960-179ed78f15ab8627","8f44c0b1b586272-17dff7706217daec"]},"geometry":{"type":"LineString","coordinates":[[-83.6524303,32.8300204],[-83.6524794,32.829941000000005]]},"id":"8a44c0b1b587fff-17f7f77fcc176860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65459290000001,32.8293611]},"id":"8f44c0b1b5106a6-13fef2477ebb939b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6541086,32.828521]},"id":"8f44c0b1a24b8de-13f7f37621811c57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b5106a6-13fef2477ebb939b","8f44c0b1a24b8de-13f7f37621811c57"]},"geometry":{"type":"LineString","coordinates":[[-83.65459290000001,32.8293611],[-83.6545286,32.829262],[-83.6541404,32.8286333],[-83.6541086,32.828521]]},"id":"8844c0b1b5fffff-13fef2e782cf2d2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65312730000001,32.829047200000005]},"id":"8f44c0b1b5a2970-13bed5db7323ce58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6532059,32.8291965]},"id":"8f44c0b1b5a2b76-1397d5aa5d304cda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1b5a2b76-1397d5aa5d304cda","8f44c0b1b5a2970-13bed5db7323ce58"]},"geometry":{"type":"LineString","coordinates":[[-83.65312730000001,32.829047200000005],[-83.6532059,32.8291965]]},"id":"8b44c0b1b5a2fff-13dff5c2ecf7483b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65385380000001,32.82987]},"id":"8f44c0b1b5aea30-17bed415626dacf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6537656,32.8297478]},"id":"8f44c0b1b5ae81e-13f6f44c8e4fc6f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1b5ae81e-13f6f44c8e4fc6f0","8f44c0b1b5aea30-17bed415626dacf2"]},"geometry":{"type":"LineString","coordinates":[[-83.65385380000001,32.82987],[-83.6537656,32.8297478]]},"id":"8b44c0b1b5aefff-1796d430fe52e288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65237730000001,32.830071600000004]},"id":"8f44c0b1b582876-17bed7b03ea94f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1b582960-179ed78f15ab8627","8f44c0b1b582876-17bed7b03ea94f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6524303,32.8300204],[-83.65237730000001,32.830071600000004]]},"id":"8c44c0b1b5829ff-179ed79fa2b73975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6504774,32.8310898]},"id":"8f44c0a34968696-17b7fc53a15a9818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6505339,32.831126000000005]},"id":"8f44c0a34968689-17bfdc3058a5813d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34968689-17bfdc3058a5813d","8f44c0a34968696-17b7fc53a15a9818"]},"geometry":{"type":"LineString","coordinates":[[-83.6504774,32.8310898],[-83.6505339,32.831126000000005]]},"id":"8b44c0a34968fff-17b6fc420aa3285a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6503473,32.827004]},"id":"8f44c0b1a2e2714-17bfdca4f4e4f55e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65021660000001,32.8269339]},"id":"8f44c0b1a2e24ae-1797fcf6a7fd7142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a2e24ae-1797fcf6a7fd7142","8f44c0b1a2e2714-17bfdca4f4e4f55e"]},"geometry":{"type":"LineString","coordinates":[[-83.6503473,32.827004],[-83.65021660000001,32.8269339]]},"id":"8b44c0b1a2e2fff-1797fccdc44e0ba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65069000000001,32.8264396]},"id":"8f44c0b1a2e68e9-13dedbcec51dc5b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a2e68e9-13dedbcec51dc5b2","8f44c0b1a2e6b18-13f7dba1653230ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65076260000001,32.8264817],[-83.65069000000001,32.8264396]]},"id":"8b44c0b1a2e6fff-13dffbb81932cdf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66247530000001,32.8725309]},"id":"8f44c0a31b31150-17d7ff08f7ab3b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66229960000001,32.8724672]},"id":"8f44c0a31b31cd3-17bebf76cc2901cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b31150-17d7ff08f7ab3b08","8f44c0a31b31cd3-17bebf76cc2901cf"]},"geometry":{"type":"LineString","coordinates":[[-83.66247530000001,32.8725309],[-83.6624242,32.872539100000004],[-83.6623746,32.872525200000005],[-83.66229960000001,32.8724672]]},"id":"8b44c0a31b31fff-17deff42d3d51d94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66199040000001,32.8725894]},"id":"8f44c0a31b3312e-17fee0380505103f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b31cd3-17bebf76cc2901cf","8f44c0a31b3312e-17fee0380505103f"]},"geometry":{"type":"LineString","coordinates":[[-83.66229960000001,32.8724672],[-83.6622097,32.8724517],[-83.66214550000001,32.8724574],[-83.66210260000001,32.872494200000006],[-83.66199040000001,32.8725894]]},"id":"8a44c0a31b37fff-17bfffdd9e79f3c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6622672,32.8720961]},"id":"8f44c0a31b30949-13d6bf8b07a4f30a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66160670000001,32.872126900000005]},"id":"8f44c0a31b366cb-13d7d127d09539d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b30949-13d6bf8b07a4f30a","8f44c0a31b366cb-13d7d127d09539d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6622672,32.8720961],[-83.6620517,32.8721297],[-83.66191690000001,32.872140200000004],[-83.66180960000001,32.872101400000005],[-83.6617447,32.8720972],[-83.66160670000001,32.872126900000005]]},"id":"8a44c0a31b37fff-13d7c05a2b245b22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6622148,32.8716881]},"id":"8f44c0a31b34898-13d7bfabcb41deb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6616982,32.8717545]},"id":"8f44c0a31b36d4a-13fed0eea87e7c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b34898-13d7bfabcb41deb2","8f44c0a31b36d4a-13fed0eea87e7c77"]},"geometry":{"type":"LineString","coordinates":[[-83.6622148,32.8716881],[-83.6621776,32.8715228],[-83.6621314,32.871509200000006],[-83.6616982,32.8717545]]},"id":"8744c0a31ffffff-139fe03384e7cfff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75898070000001,32.849418400000005]},"id":"8f44c0b544a8984-13f7d36d1762534a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75868700000001,32.8496966]},"id":"8f44c0b544aab76-1795f424af180a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544a8984-13f7d36d1762534a","8f44c0b544aab76-1795f424af180a92"]},"geometry":{"type":"LineString","coordinates":[[-83.75898070000001,32.849418400000005],[-83.7588771,32.8495258],[-83.75871980000001,32.8496374],[-83.75868700000001,32.8496966]]},"id":"8a44c0b544affff-17bdf3cb1b580de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75913220000001,32.8495568]},"id":"8f44c0b544a8b31-17bdd30e6b33db66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544a8b31-17bdd30e6b33db66","8f44c0b544aab76-1795f424af180a92"]},"geometry":{"type":"LineString","coordinates":[[-83.75868700000001,32.8496966],[-83.7587755,32.8496856],[-83.75889520000001,32.849625],[-83.759005,32.8496168],[-83.75913220000001,32.8495568]]},"id":"8a44c0b544affff-17fdd3984500da96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75910920000001,32.8505289]},"id":"8f44c0b544f6674-179dd31ccc7016b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7585689,32.8500892]},"id":"8f44c0b544ab4d6-179dd46e72e16334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544f6674-179dd31ccc7016b4","8f44c0b544ab4d6-179dd46e72e16334"]},"geometry":{"type":"LineString","coordinates":[[-83.75910920000001,32.8505289],[-83.7589739,32.8504859],[-83.7588788,32.850395],[-83.7585689,32.8500892]]},"id":"8844c0b545fffff-17b5d3ce5bb4a091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75892180000001,32.8498438]},"id":"8f44c0b544ab906-17f5f391ed33db13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544ab906-17f5f391ed33db13","8f44c0b544ab4d6-179dd46e72e16334"]},"geometry":{"type":"LineString","coordinates":[[-83.75892180000001,32.8498438],[-83.7587329,32.8499184],[-83.75858860000001,32.8500327],[-83.7585689,32.8500892]]},"id":"8a44c0b544affff-17bfd40c9485d99b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544ab906-17f5f391ed33db13","8f44c0b544ab4d6-179dd46e72e16334"]},"geometry":{"type":"LineString","coordinates":[[-83.7585689,32.8500892],[-83.75863290000001,32.850072700000005],[-83.7588034,32.849947300000004],[-83.75892180000001,32.8498438]]},"id":"8a44c0b544affff-17d5f3fba93572ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6027236,32.8595698]},"id":"8f44c0a325342f3-17bf70e9c6c6fed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60273810000001,32.8598262]},"id":"8f44c0a32530a0e-17df70e0b4a4800d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a325342f3-17bf70e9c6c6fed4","8f44c0a32530a0e-17df70e0b4a4800d"]},"geometry":{"type":"LineString","coordinates":[[-83.6027236,32.8595698],[-83.60273810000001,32.8598262]]},"id":"8a44c0a32537fff-17ff50e5406d0c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6382239,32.8382524]},"id":"8f44c0a340a0622-13b7fa3e12c0679f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384694,32.8383282]},"id":"8f44c0a340a026e-13d7f9a4aa7ff8ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340a0622-13b7fa3e12c0679f","8f44c0a340a026e-13d7f9a4aa7ff8ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6382239,32.8382524],[-83.6384694,32.8383282]]},"id":"8a44c0a340a7fff-13bff9f16e892c6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6032507,32.8600751]},"id":"8f44c0a3252244a-17ffffa05bfbed12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60325590000001,32.8598939]},"id":"8f44c0a32522c8d-17ffff9d197e8615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3252244a-17ffffa05bfbed12","8f44c0a32522c8d-17ffff9d197e8615"]},"geometry":{"type":"LineString","coordinates":[[-83.6032507,32.8600751],[-83.60325590000001,32.8598939]]},"id":"8b44c0a32522fff-17b75f9ebcd420bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68670010000001,32.906120300000005]},"id":"8f44c0a05036092-17d7b3e4733d4e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68736030000001,32.9069335]},"id":"8f44c0a0503168a-13d7f247d585a2ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0503168a-13d7f247d585a2ac","8f44c0a05036092-17d7b3e4733d4e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.68670010000001,32.906120300000005],[-83.68675610000001,32.9062397],[-83.6868371,32.9064424],[-83.68689260000001,32.9065717],[-83.68689260000001,32.906665000000004],[-83.6869308,32.9067783],[-83.6869831,32.906936900000005],[-83.6870117,32.9070182],[-83.6871546,32.9069822],[-83.68736030000001,32.9069335]]},"id":"8a44c0a05037fff-17b7b345d877edaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299214,32.843081600000005]},"id":"8f44c0a36b445a6-17ff0e832ac2716c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6303879,32.8427428]},"id":"8f44c0a36b62ab4-139f4d5f9544b8f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36b62ab4-139f4d5f9544b8f8","8f44c0a36b445a6-17ff0e832ac2716c"]},"geometry":{"type":"LineString","coordinates":[[-83.6299214,32.843081600000005],[-83.63005530000001,32.8429404],[-83.63015970000001,32.8429287],[-83.63026760000001,32.8428892],[-83.6303302,32.8428088],[-83.6303879,32.8427428]]},"id":"8944c0a36b7ffff-17970def36633f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893637,32.8262791]},"id":"8f44c0b1910b9a1-13fe7d63b3cd646a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903363,32.825624000000005]},"id":"8f44c0b19176d29-13df7b03d6d5a2c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1910b9a1-13fe7d63b3cd646a","8f44c0b19176d29-13df7b03d6d5a2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6893637,32.8262791],[-83.6902321,32.8263356],[-83.6903363,32.825624000000005]]},"id":"8844c0b191fffff-139f7bcad5331b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67024040000001,32.881492]},"id":"8f44c0a226ca62e-13b6ac13c30e8cd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66968270000001,32.8818342]},"id":"8f44c0a04d661a3-139eed7058c044fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a226ca62e-13b6ac13c30e8cd0","8f44c0a04d661a3-139eed7058c044fa"]},"geometry":{"type":"LineString","coordinates":[[-83.67024040000001,32.881492],[-83.66968270000001,32.8818342]]},"id":"8744c0a04ffffff-139ffcc20806244d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66859000000001,32.793039400000005]},"id":"8f44c0b1c45e3ac-13d7b01b47864f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6683137,32.792968900000005]},"id":"8f44c0b1c45e4f1-1397b0c7fd3e5bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c45e4f1-1397b0c7fd3e5bcb","8f44c0b1c45e3ac-13d7b01b47864f10"]},"geometry":{"type":"LineString","coordinates":[[-83.66859000000001,32.793039400000005],[-83.6683137,32.792968900000005]]},"id":"8b44c0b1c45efff-13bfb071aeab19d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688853,32.7932057]},"id":"8f44c0b1c458102-13bfbf62bfa5ba13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c458102-13bfbf62bfa5ba13","8f44c0b1c45e3ac-13d7b01b47864f10"]},"geometry":{"type":"LineString","coordinates":[[-83.66859000000001,32.793039400000005],[-83.66866180000001,32.793056],[-83.6688853,32.7932057]]},"id":"8a44c0b1c45ffff-13ffafbc69537261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66853280000001,32.7931503]},"id":"8f44c0b1c45a920-1396f03f00d2c2ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6687862,32.7933164]},"id":"8f44c0b1c458730-13feefa0a52056b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c45a920-1396f03f00d2c2ca","8f44c0b1c458730-13feefa0a52056b5"]},"geometry":{"type":"LineString","coordinates":[[-83.66853280000001,32.7931503],[-83.6687862,32.7933164]]},"id":"8a44c0b1c45ffff-13beefefd2e02997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c458102-13bfbf62bfa5ba13","8f44c0b1c458730-13feefa0a52056b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6688853,32.7932057],[-83.6687862,32.7933164]]},"id":"8b44c0b1c458fff-13debf81b5dc7987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6689904,32.7932761]},"id":"8f44c0b1c458ab0-13d7bf210e88af1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c458102-13bfbf62bfa5ba13","8f44c0b1c458ab0-13d7bf210e88af1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6689904,32.7932761],[-83.6688853,32.7932057]]},"id":"8b44c0b1c458fff-13bfbf41ef264e4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66889090000001,32.793385]},"id":"8f44c0b1c45839e-139faf5f33e628b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c458730-13feefa0a52056b5","8f44c0b1c45839e-139faf5f33e628b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6687862,32.7933164],[-83.66889090000001,32.793385]]},"id":"8b44c0b1c458fff-1396bf7ff1e2890b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66827400000001,32.7931325]},"id":"8f44c0b1c4eda59-13fff0e0caea94ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c45a920-1396f03f00d2c2ca","8f44c0b1c4eda59-13fff0e0caea94ed"]},"geometry":{"type":"LineString","coordinates":[[-83.66827400000001,32.7931325],[-83.66853280000001,32.7931503]]},"id":"8a44c0b1c45ffff-1397f08fe482db6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c45a920-1396f03f00d2c2ca","8f44c0b1c45e3ac-13d7b01b47864f10"]},"geometry":{"type":"LineString","coordinates":[[-83.66853280000001,32.7931503],[-83.66859000000001,32.793039400000005]]},"id":"8b44c0b1c45efff-13f6f02d2558170b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7233198,32.8120403]},"id":"8f44c0b0e25c452-13b73a7d2e2ec264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7231162,32.811792700000005]},"id":"8f44c0b0e251763-139e7afc63c81695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e25c452-13b73a7d2e2ec264","8f44c0b0e251763-139e7afc63c81695"]},"geometry":{"type":"LineString","coordinates":[[-83.7233198,32.8120403],[-83.7232529,32.8119863],[-83.7231775,32.811876500000004],[-83.7231162,32.811792700000005]]},"id":"8944c0b0e27ffff-13df7ac06f2278be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69640700000001,32.898009]},"id":"8f44c0a232d8331-1397ec31a7007251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6952031,32.897773400000005]},"id":"8f44c0a05928b01-13f66f2212fbf98e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05928b01-13f66f2212fbf98e","8f44c0a232d8331-1397ec31a7007251"]},"geometry":{"type":"LineString","coordinates":[[-83.69640700000001,32.898009],[-83.69630430000001,32.8979845],[-83.6960985,32.8979505],[-83.6958977,32.8979151],[-83.695577,32.8978655],[-83.6954336,32.8978258],[-83.6953695,32.897798900000005],[-83.6952031,32.897773400000005]]},"id":"8844c0a059fffff-13d6fdaac1e8dd07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69281760000001,32.866595700000005]},"id":"8f44c0a20440192-17d674f509b02e1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6923252,32.8656609]},"id":"8f44c0a20470395-139e7628cb8884e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20440192-17d674f509b02e1a","8f44c0a20470395-139e7628cb8884e9"]},"geometry":{"type":"LineString","coordinates":[[-83.69281760000001,32.866595700000005],[-83.6924489,32.8663656],[-83.6920518,32.8661061],[-83.6920506,32.8660213],[-83.692133,32.865888600000005],[-83.6923252,32.8656609]]},"id":"8944c0a2047ffff-17def62474158434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57851840000001,32.8729881]},"id":"8f44c0b894c8d70-17f79c0204ef32d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5785802,32.8731351]},"id":"8f44c0b894c810d-17dffbdb696b0975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894c8d70-17f79c0204ef32d5","8f44c0b894c810d-17dffbdb696b0975"]},"geometry":{"type":"LineString","coordinates":[[-83.57851840000001,32.8729881],[-83.57855190000001,32.8731255],[-83.5785802,32.8731351]]},"id":"8b44c0b894c8fff-17b78bf43c4b0265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6210052,32.8418988]},"id":"8f44c0a36162181-139fe447cef6fd7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6207881,32.8425892]},"id":"8f44c0a361446da-13bf64cf7e4e1451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a361446da-13bf64cf7e4e1451","8f44c0a36162181-139fe447cef6fd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6210052,32.8418988],[-83.62082430000001,32.8421054],[-83.62065050000001,32.842308100000004],[-83.62062990000001,32.8424118],[-83.62071010000001,32.8425413],[-83.6207881,32.8425892]]},"id":"8944c0a3617ffff-13f724daa31bb11d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6212625,32.8420501]},"id":"8f44c0a36163db3-13ff73a6f5b0cc5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36163db3-13ff73a6f5b0cc5e","8f44c0a361446da-13bf64cf7e4e1451"]},"geometry":{"type":"LineString","coordinates":[[-83.6207881,32.8425892],[-83.6212625,32.8420501]]},"id":"8944c0a3617ffff-1397f43b33c93190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69914100000001,32.838143]},"id":"8f44c0a24c8d040-13df6584ebf6780f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69848300000001,32.8370077]},"id":"8f44c0a24c85015-179ff7202fd7f5fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a24c8d040-13df6584ebf6780f","8f44c0a24c85015-179ff7202fd7f5fa"]},"geometry":{"type":"LineString","coordinates":[[-83.69914100000001,32.838143],[-83.69927,32.838046600000006],[-83.6992884,32.8379258],[-83.6991962,32.837746100000004],[-83.69883850000001,32.8373866],[-83.69848300000001,32.8370077]]},"id":"8944c0a24cbffff-17f6f5f23f28ad8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6444633,32.8427159]},"id":"8f44c0a34310532-139ffb0279f954a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64242970000001,32.8461665]},"id":"8f44c0a342a3159-13f6fff97c6413a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a342a3159-13f6fff97c6413a7","8f44c0a34310532-139ffb0279f954a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6444633,32.8427159],[-83.64409900000001,32.8431652],[-83.6437849,32.8435604],[-83.6435622,32.8438601],[-83.6433571,32.844162100000005],[-83.643168,32.8444674],[-83.64298620000001,32.8447672],[-83.6429007,32.8449429],[-83.64286150000001,32.8450256],[-83.6427439,32.845293000000005],[-83.64256920000001,32.845719200000005],[-83.64242970000001,32.8461665]]},"id":"8844c0a343fffff-1796edce3aae0b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64208570000001,32.8460927]},"id":"8f44c0a34284965-13d7f0d07ddf6558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a34284965-13d7f0d07ddf6558","8f44c0a34310532-139ffb0279f954a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6444633,32.8427159],[-83.6441679,32.8429293],[-83.64387040000001,32.843192300000005],[-83.6431974,32.843907800000004],[-83.6427353,32.8446145],[-83.6426074,32.8448233],[-83.6425073,32.8450286],[-83.642364,32.8453747],[-83.64208570000001,32.8460927]]},"id":"8844c0a343fffff-17d6ee5b07a1913f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644102,32.8425646]},"id":"8f44c0a343164cb-13beebe442deeea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34284965-13d7f0d07ddf6558","8f44c0a343164cb-13beebe442deeea9"]},"geometry":{"type":"LineString","coordinates":[[-83.644102,32.8425646],[-83.64365740000001,32.8431037],[-83.6434218,32.8433895],[-83.6432278,32.843634200000004],[-83.6429847,32.8439197],[-83.64266140000001,32.8444153],[-83.6424355,32.8448775],[-83.64230280000001,32.8451907],[-83.64218790000001,32.8455176],[-83.64208570000001,32.8460927]]},"id":"8844c0a343fffff-17bfeecbab1af125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7228932,32.8141527]},"id":"8f44c0b08586022-17df7b87cdd7295b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72347710000001,32.813813800000005]},"id":"8f44c0b085a2293-17ffaa1ada56e528"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08586022-17df7b87cdd7295b","8f44c0b085a2293-17ffaa1ada56e528"]},"geometry":{"type":"LineString","coordinates":[[-83.7228932,32.8141527],[-83.72322290000001,32.8145419],[-83.7232563,32.8145887],[-83.7236991,32.814343],[-83.72389410000001,32.814211900000004],[-83.72390800000001,32.8141464],[-83.72366290000001,32.8138608],[-83.72347710000001,32.813813800000005]]},"id":"8944c0b085bffff-179eaa1780a84352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65727240000001,32.8331716]},"id":"8f44c0b1b47400b-17becbbccd46784a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6574315,32.8329809]},"id":"8f44c0b1b474946-13d7db5956f5c0dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1b474946-13d7db5956f5c0dc","8f44c0b1b47400b-17becbbccd46784a"]},"geometry":{"type":"LineString","coordinates":[[-83.65727240000001,32.8331716],[-83.6574063,32.8331703],[-83.65742990000001,32.8331597],[-83.6574315,32.8329809]]},"id":"8b44c0b1b474fff-179edb7106e12940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65794340000001,32.8342791]},"id":"8f44c0b1b444069-17f6fa19638695ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65793640000001,32.8337925]},"id":"8f44c0b1b4620a1-17d6da1dcbde5aaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1b4620a1-17d6da1dcbde5aaf","8f44c0b1b444069-17f6fa19638695ca"]},"geometry":{"type":"LineString","coordinates":[[-83.65794340000001,32.8342791],[-83.65793640000001,32.8337925]]},"id":"8944c0b1b47ffff-17deea1b9cf48da2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6444675,32.832310400000004]},"id":"8f44c0a348ad021-13b6eaffd60dcc75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6437801,32.8331749]},"id":"8f44c0a3488d8aa-17befcad7fa57308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3488d8aa-17befcad7fa57308","8f44c0a348ad021-13b6eaffd60dcc75"]},"geometry":{"type":"LineString","coordinates":[[-83.6444675,32.832310400000004],[-83.64439630000001,32.8323702],[-83.64416100000001,32.832674100000006],[-83.6437801,32.8331749]]},"id":"8844c0a349fffff-13bffbdb5c8027cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963966,32.8680997]},"id":"8f44c0a20721c36-13967c3829cbd59b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69603550000001,32.868345000000005]},"id":"8f44c0a2072311d-139fed19dd390105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20721c36-13967c3829cbd59b","8f44c0a2072311d-139fed19dd390105"]},"geometry":{"type":"LineString","coordinates":[[-83.6963966,32.8680997],[-83.69603550000001,32.868345000000005]]},"id":"8a44c0a20727fff-13df6ca901dfc062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697452,32.869103100000004]},"id":"8f44c0a200dac12-13f779a48ca3aafa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69758610000001,32.869235100000004]},"id":"8f44c0a200da026-17d7f950b2fa53de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200dac12-13f779a48ca3aafa","8f44c0a200da026-17d7f950b2fa53de"]},"geometry":{"type":"LineString","coordinates":[[-83.697452,32.869103100000004],[-83.69758610000001,32.869235100000004]]},"id":"8b44c0a200dafff-179ef97a936dc031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6972662,32.8689137]},"id":"8f44c0a2072d155-13ff7a18a8d71716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6973548,32.8686031]},"id":"8f44c0a200d3395-13bef9e14fd1789e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200d3395-13bef9e14fd1789e","8f44c0a2072d155-13ff7a18a8d71716"]},"geometry":{"type":"LineString","coordinates":[[-83.6972662,32.8689137],[-83.6974598,32.868768100000004],[-83.69746950000001,32.8687375],[-83.69745010000001,32.8687089],[-83.6973548,32.8686031]]},"id":"8944c0a200fffff-13b7f9cb3908236c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6967886,32.8695742]},"id":"8f44c0a2072baca-179feb4323f72b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963135,32.8694848]},"id":"8f44c0a2070c86e-17f66c6c1d5c3f47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072baca-179feb4323f72b62","8f44c0a2070c86e-17f66c6c1d5c3f47"]},"geometry":{"type":"LineString","coordinates":[[-83.6967886,32.8695742],[-83.69657570000001,32.869348200000005],[-83.6965559,32.86934],[-83.6965244,32.869343300000004],[-83.6963135,32.8694848]]},"id":"8944c0a2073ffff-17d6ebd06a484599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971214,32.8687661]},"id":"8f44c0a2072dc33-13b6fa732b664e5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6965979,32.8689102]},"id":"8f44c0a20728c8c-13feebba528fdd09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072dc33-13b6fa732b664e5b","8f44c0a20728c8c-13feebba528fdd09"]},"geometry":{"type":"LineString","coordinates":[[-83.6971214,32.8687661],[-83.69676600000001,32.8690115],[-83.6967355,32.8690196],[-83.6967035,32.8690115],[-83.6965979,32.8689102]]},"id":"8a44c0a2072ffff-1397fb190b3cbb3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69699290000001,32.8686352]},"id":"8f44c0a2072ca85-13d76ac37585e231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072ca85-13d76ac37585e231","8f44c0a2072dc33-13b6fa732b664e5b"]},"geometry":{"type":"LineString","coordinates":[[-83.6971214,32.8687661],[-83.69699290000001,32.8686352]]},"id":"8a44c0a2072ffff-13fffa9b4b569256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651784,32.8147778]},"id":"8f44c0b18732143-17d6b86f8346da2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640658,32.814763400000004]},"id":"8f44c0b1844bd33-17dfbb26e8ecf26e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b18732143-17d6b86f8346da2b","8f44c0b1844bd33-17dfbb26e8ecf26e"]},"geometry":{"type":"LineString","coordinates":[[-83.6651784,32.8147778],[-83.6640658,32.814763400000004]]},"id":"8844c0b187fffff-17dfb9cb36d88518"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711415,32.908602]},"id":"8f44c0a2e769920-17f6478da3b58030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71169710000001,32.9074145]},"id":"8f44c0a2e39088c-13fe56dd572f15b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e39088c-13fe56dd572f15b2","8f44c0a2e769920-17f6478da3b58030"]},"geometry":{"type":"LineString","coordinates":[[-83.711415,32.908602],[-83.71150390000001,32.9081613],[-83.71154370000001,32.907608],[-83.71169710000001,32.9074145]]},"id":"8844c0a2e3fffff-13f7774c332661e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107883,32.904277900000004]},"id":"8f44c0a2e0e2914-13d7f915559ef587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712016,32.9042575]},"id":"8f44c0a2e056713-13def6160d85c1e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e0e2914-13d7f915559ef587","8f44c0a2e056713-13def6160d85c1e2"]},"geometry":{"type":"LineString","coordinates":[[-83.7107883,32.904277900000004],[-83.7110961,32.9041981],[-83.7113791,32.9041684],[-83.712016,32.9042575]]},"id":"8844c0a2e1fffff-13bee7973cd4196d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.592122,32.903001]},"id":"8f44c0a1052e094-17b7eacbc9c39efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59168600000001,32.9011906]},"id":"8f44c0a10c9d686-13df6bdc4cb6f059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a1052e094-17b7eacbc9c39efd","8f44c0a10c9d686-13df6bdc4cb6f059"]},"geometry":{"type":"LineString","coordinates":[[-83.592122,32.903001],[-83.5921632,32.901558],[-83.5918635,32.901372900000005],[-83.59168600000001,32.9011906]]},"id":"8744c0a10ffffff-17dfeae95f6b818e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61287370000001,32.8494231]},"id":"8f44c0a36622b28-13ff7821f7a895e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6126583,32.849450700000006]},"id":"8f44c0a36622020-13ffb8a897da64be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36622020-13ffb8a897da64be","8f44c0a36622b28-13ff7821f7a895e0"]},"geometry":{"type":"LineString","coordinates":[[-83.61287370000001,32.8494231],[-83.6127706,32.8494584],[-83.6126583,32.849450700000006]]},"id":"8b44c0a36622fff-13fff8646d524526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72364680000001,32.835608400000005]},"id":"8f44c0b0bcd9771-13bf69b0ca7a6b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72329230000001,32.8356529]},"id":"8f44c0b0bcdb06d-13df3a8e5f44995c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bcdb06d-13df3a8e5f44995c","8f44c0b0bcd9771-13bf69b0ca7a6b46"]},"geometry":{"type":"LineString","coordinates":[[-83.72364680000001,32.835608400000005],[-83.7238205,32.836444400000005],[-83.723782,32.836555100000005],[-83.7236664,32.8366045],[-83.7235661,32.8365925],[-83.72349120000001,32.836536800000005],[-83.72341300000001,32.8361972],[-83.72336080000001,32.8359736],[-83.72329230000001,32.8356529]]},"id":"8844c0b0b5fffff-139eb9d9e4367cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72215200000001,32.835778000000005]},"id":"8f44c0b0b57656c-139f6d5707aa4e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72151330000001,32.836140300000004]},"id":"8f44c0b0b509da2-13ffbee63c635051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b509da2-13ffbee63c635051","8f44c0b0b57656c-139f6d5707aa4e52"]},"geometry":{"type":"LineString","coordinates":[[-83.72215200000001,32.835778000000005],[-83.72206440000001,32.8358936],[-83.72179390000001,32.8362441],[-83.72161030000001,32.836181100000005],[-83.72151330000001,32.836140300000004]]},"id":"8844c0b0b5fffff-13d7be0a4133189d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72219270000001,32.836328800000004]},"id":"8f44c0b0b572049-13f7ad3d9475adce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7221842,32.836300200000004]},"id":"8f44c0b0b572045-13dfad42e92b771e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b572049-13f7ad3d9475adce","8f44c0b0b572045-13dfad42e92b771e"]},"geometry":{"type":"LineString","coordinates":[[-83.72219270000001,32.836328800000004],[-83.7221842,32.836300200000004]]},"id":"8d44c0b0b57207f-13febd404620458e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714053,32.9212635]},"id":"8f44c0a2ab1070e-13dff11ce7830fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2ab1070e-13dff11ce7830fba","8f44c0a2a8c10e1-1397cb29bc2a99da"]},"geometry":{"type":"LineString","coordinates":[[-83.70993650000001,32.920117600000005],[-83.71073080000001,32.9202916],[-83.71151330000001,32.9204566],[-83.7117554,32.9205123],[-83.71197930000001,32.920570000000005],[-83.7121618,32.920626],[-83.71234360000001,32.9206924],[-83.7131904,32.9210054],[-83.714053,32.9212635]]},"id":"8744c0a2affffff-13de761abd9e6931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a282290d0-17f74ea6edfa9744","8f44c0a28274528-13de1e03b5ad7c36"]},"geometry":{"type":"LineString","coordinates":[[-83.7349829,32.9266049],[-83.734868,32.926552900000004],[-83.73478490000001,32.9265124],[-83.7347567,32.9264707],[-83.7347218,32.9264212]]},"id":"8844c0a283fffff-13be1e5d25465802"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69025160000001,32.9070722]},"id":"8f44c0a05151315-13be7b38c66fe029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69047690000001,32.9068289]},"id":"8f44c0a0514250a-13967aabf6d0d297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":-1,"road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0514250a-13967aabf6d0d297","8f44c0a05151315-13be7b38c66fe029"]},"geometry":{"type":"LineString","coordinates":[[-83.69025160000001,32.9070722],[-83.6902948,32.9070911],[-83.69033060000001,32.9071006],[-83.69036150000001,32.9070951],[-83.6903908,32.907076],[-83.6905062,32.9069491],[-83.69052090000001,32.9069122],[-83.6905127,32.9068781],[-83.69047690000001,32.9068289]]},"id":"8944c0a0517ffff-13ff7acd149df27b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68994070000001,32.906815800000004]},"id":"8f44c0a0515035e-1397fbfb12d8008c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901867,32.9065524]},"id":"8f44c0a05155549-17f77b615ea13a13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0515035e-1397fbfb12d8008c","8f44c0a05155549-17f77b615ea13a13"]},"geometry":{"type":"LineString","coordinates":[[-83.68994070000001,32.906815800000004],[-83.6901867,32.9065524]]},"id":"8a44c0a05157fff-17b7fbae35612442"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69031980000001,32.9081306]},"id":"8f44c0a0515b10c-13bffb0e2d8a4864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69070210000001,32.9083599]},"id":"8f44c0a050668a5-13defa1f38a187b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a050668a5-13defa1f38a187b8","8f44c0a0515b10c-13bffb0e2d8a4864"]},"geometry":{"type":"LineString","coordinates":[[-83.69031980000001,32.9081306],[-83.69070210000001,32.9083599]]},"id":"8844c0a051fffff-13977a96be2e02de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7642039,32.8772686]},"id":"8f44c0b50769083-17f5e6ac95ae2bd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76436000000001,32.8770854]},"id":"8f44c0b50769832-17f7e64b0ae80d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50769832-17f7e64b0ae80d25","8f44c0b50769083-17f5e6ac95ae2bd9"]},"geometry":{"type":"LineString","coordinates":[[-83.7642039,32.8772686],[-83.7641985,32.8772366],[-83.76419390000001,32.877206],[-83.76419390000001,32.8771864],[-83.76420320000001,32.8771542],[-83.7642266,32.8771252],[-83.76425830000001,32.8771033],[-83.7642929,32.877093800000004],[-83.76432840000001,32.8770891],[-83.76436000000001,32.8770854]]},"id":"8b44c0b50769fff-179dc6932bd0d259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61796980000001,32.843183800000006]},"id":"8f44c0a36023656-17bfebb0ee55b709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178007,32.8442096]},"id":"8f44c0a3600e8e1-17bf2c1a949e6f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36023656-17bfebb0ee55b709","8f44c0a3600e8e1-17bf2c1a949e6f7c"]},"geometry":{"type":"LineString","coordinates":[[-83.61796980000001,32.843183800000006],[-83.6178007,32.8442096]]},"id":"8944c0a3603ffff-17ff7be5c41aa64f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70632450000001,32.9194947]},"id":"8f44c0a2a122cab-17fe73fb3ceff43d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706135,32.9196948]},"id":"8f44c0a2a131ba8-17ff5471a5cf387c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a131ba8-17ff5471a5cf387c","8f44c0a2a122cab-17fe73fb3ceff43d"]},"geometry":{"type":"LineString","coordinates":[[-83.70632450000001,32.9194947],[-83.706135,32.9196948]]},"id":"8944c0a2a13ffff-17bef43673732997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7061941,32.9193988]},"id":"8f44c0a2a135303-17d6544cb34ab1e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059462,32.9192164]},"id":"8f44c0a2a135528-17de54e7a9be1e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a135303-17d6544cb34ab1e9","8f44c0a2a135528-17de54e7a9be1e01"]},"geometry":{"type":"LineString","coordinates":[[-83.7061941,32.9193988],[-83.7061455,32.9192831],[-83.7061133,32.919248800000005],[-83.7060661,32.9192254],[-83.7060082,32.919214600000004],[-83.7059462,32.9192164]]},"id":"8b44c0a2a135fff-17f6f48aac17f824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65443420000001,32.825506700000005]},"id":"8f44c0b1a2648b4-1397f2aaa00aeeea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a264056-13fef2ab9b9e8393","8f44c0b1a2648b4-1397f2aaa00aeeea"]},"geometry":{"type":"LineString","coordinates":[[-83.6544327,32.825697000000005],[-83.65443420000001,32.825506700000005]]},"id":"8b44c0b1a264fff-13d7f2ab225e81b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65443850000001,32.824970400000005]},"id":"8f44c0b1a35da68-13b6d2a7f3fadbe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a35da68-13b6d2a7f3fadbe5","8f44c0b1a2648b4-1397f2aaa00aeeea"]},"geometry":{"type":"LineString","coordinates":[[-83.65443420000001,32.825506700000005],[-83.65443850000001,32.824970400000005]]},"id":"8944c0b1a37ffff-13def2a947cd7ba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654196,32.825504]},"id":"8f44c0b1a359266-1396d33f8f37661b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542003,32.8249672]},"id":"8f44c0b1a35d05a-13b6d33cd5d5eedc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a359266-1396d33f8f37661b","8f44c0b1a35d05a-13b6d33cd5d5eedc"]},"geometry":{"type":"LineString","coordinates":[[-83.654196,32.825504],[-83.6542003,32.8249672]]},"id":"8944c0b1a37ffff-13ded33e3e23efc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461172,32.8444548]},"id":"8f44c0a34224846-17dee6f8ceda0e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64621980000001,32.844107900000004]},"id":"8f44c0a3430ab9d-17fff6b8a1fbbe29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3430ab9d-17fff6b8a1fbbe29","8f44c0a34224846-17dee6f8ceda0e1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6461172,32.8444548],[-83.64621980000001,32.844107900000004]]},"id":"8944c0a3433ffff-17dfe6d8ba76a760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64604960000001,32.8468401]},"id":"8f44c0a3420d521-179ff723022bbf56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64570690000001,32.846601400000004]},"id":"8f44c0a3420c55b-1797e7f93f7f6cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3420c55b-1797e7f93f7f6cd2","8f44c0a3420d521-179ff723022bbf56"]},"geometry":{"type":"LineString","coordinates":[[-83.64604960000001,32.8468401],[-83.6459669,32.8467444],[-83.64570690000001,32.846601400000004]]},"id":"8a44c0a3420ffff-17dee787f78de438"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7287888,32.809541100000004]},"id":"8f44c0b08ca5872-139f3d230a634ab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7292654,32.8094198]},"id":"8f44c0b08c1682b-13bf7bf92677c627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08c1682b-13bf7bf92677c627","8f44c0b08ca5872-139f3d230a634ab6"]},"geometry":{"type":"LineString","coordinates":[[-83.7287888,32.809541100000004],[-83.72899670000001,32.809472400000004],[-83.7290517,32.8094555],[-83.72909460000001,32.8094397],[-83.72918270000001,32.8094194],[-83.7292654,32.8094198]]},"id":"8844c0b08dfffff-13df5c8f717b270e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7290998,32.8092095]},"id":"8f44c0b08d89783-13bffc60a4dad15b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d89783-13bffc60a4dad15b","8f44c0b08ca5872-139f3d230a634ab6"]},"geometry":{"type":"LineString","coordinates":[[-83.7290998,32.8092095],[-83.7290651,32.809283],[-83.7290222,32.8093406],[-83.7289374,32.809409800000005],[-83.7287888,32.809541100000004]]},"id":"8844c0b08dfffff-13be1cb98434790e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72962670000001,32.8092015]},"id":"8f44c0b08c326c5-13b6fb1759dab654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72988600000001,32.8089134]},"id":"8f44c0b08c32842-1396fa75494595a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b08c326c5-13b6fb1759dab654","8f44c0b08c32842-1396fa75494595a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72962670000001,32.8092015],[-83.72965280000001,32.8091549],[-83.7296991,32.8090892],[-83.72988600000001,32.8089134]]},"id":"8b44c0b08c32fff-13de9acbc43257c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72946540000001,32.809011500000004]},"id":"8f44c0b08c3249c-13d63b7c2cb1fd53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b08c3249c-13d63b7c2cb1fd53","8f44c0b08c32842-1396fa75494595a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72988600000001,32.8089134],[-83.7296352,32.8089953],[-83.7295404,32.8090131],[-83.72946540000001,32.809011500000004]]},"id":"8944c0b08c3ffff-13bfbaf7515e8110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72867910000001,32.808446]},"id":"8f44c0b08d8eb8e-17dedd6795fb14be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72912070000001,32.8091335]},"id":"8f44c0b08d89444-139e7c539615e38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d89444-139e7c539615e38a","8f44c0b08d8eb8e-17dedd6795fb14be"]},"geometry":{"type":"LineString","coordinates":[[-83.72867910000001,32.808446],[-83.7290115,32.808877],[-83.7290936,32.8089968],[-83.72911500000001,32.8090847],[-83.72912070000001,32.8091335]]},"id":"8a44c0b08d8ffff-13be1ccd46ed2f33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72862590000001,32.8082504]},"id":"8f44c0b08d8e916-17f69d88dc495d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d8e4b1-17de3e60eb46e9d2","8f44c0b08d8e916-17f69d88dc495d61"]},"geometry":{"type":"LineString","coordinates":[[-83.7282802,32.8084387],[-83.7284661,32.8083346],[-83.72862590000001,32.8082504]]},"id":"8b44c0b08d8efff-179ebdf536ac06a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72879830000001,32.808391400000005]},"id":"8f44c0b08d8c4d5-17bebd1d14210ba7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7288537,32.8081187]},"id":"8f44c0b08d81aeb-17963cfa7bff0946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b08d81aeb-17963cfa7bff0946","8f44c0b08d8c4d5-17bebd1d14210ba7"]},"geometry":{"type":"LineString","coordinates":[[-83.72879830000001,32.808391400000005],[-83.72878850000001,32.8082787],[-83.72879250000001,32.8082465],[-83.7288101,32.808187600000004],[-83.7288537,32.8081187]]},"id":"8944c0b08dbffff-17f69d1884a137a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b08d8e4b1-17de3e60eb46e9d2","8f44c0b08d8eb8e-17dedd6795fb14be"]},"geometry":{"type":"LineString","coordinates":[[-83.7282802,32.8084387],[-83.7285001,32.8084216],[-83.72857090000001,32.8084192],[-83.72867910000001,32.808446]]},"id":"8b44c0b08d8efff-17d63de39782f030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d8e916-17f69d88dc495d61","8f44c0b08d8c4d5-17bebd1d14210ba7"]},"geometry":{"type":"LineString","coordinates":[[-83.72879830000001,32.808391400000005],[-83.72873630000001,32.8083095],[-83.72862590000001,32.8082504]]},"id":"8a44c0b08d8ffff-179edd4e17972212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63775720000001,32.8261788]},"id":"8f44c0b1a69ba8a-13bffb61cb89779d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63905600000001,32.826856]},"id":"8f44c0b1a6d2caa-17d7f8360a568f91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a69ba8a-13bffb61cb89779d","8f44c0b1a6d2caa-17d7f8360a568f91"]},"geometry":{"type":"LineString","coordinates":[[-83.63775720000001,32.8261788],[-83.637923,32.826231],[-83.63804800000001,32.826279],[-83.63815000000001,32.826324],[-83.63822,32.826361],[-83.638295,32.8264],[-83.638968,32.826791],[-83.63905600000001,32.826856]]},"id":"8944c0a34d3ffff-13fef9c2975eef9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733185,32.888943600000005]},"id":"8f44c0a2cd51858-17f7d26763c2bad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7330653,32.8892127]},"id":"8f44c0a2cd5e924-179ff2b235fdae26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd51858-17f7d26763c2bad5","8f44c0a2cd5e924-179ff2b235fdae26"]},"geometry":{"type":"LineString","coordinates":[[-83.733185,32.888943600000005],[-83.7330653,32.8892127]]},"id":"8b44c0a2cd51fff-17bff28cc30cf96a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73246160000001,32.8885669]},"id":"8f44c0a2cd56243-13fe542b885aee7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73288570000001,32.888142]},"id":"8f44c0a2cd5481a-13f6d3227763b8b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd56243-13fe542b885aee7a","8f44c0a2cd5481a-13f6d3227763b8b6"]},"geometry":{"type":"LineString","coordinates":[[-83.73246160000001,32.8885669],[-83.73288570000001,32.888142]]},"id":"8a44c0a2cd57fff-13f793a6f7d77b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733016,32.8875949]},"id":"8f44c0a2cd7664d-139ed2d105627563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7331604,32.887095]},"id":"8f44c0a2cd2976b-17f67276c5a778f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd2976b-17f67276c5a778f2","8f44c0a2cd7664d-139ed2d105627563"]},"geometry":{"type":"LineString","coordinates":[[-83.733016,32.8875949],[-83.7331604,32.887095]]},"id":"8844c0a2cdfffff-13feb2a3e7185498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73330530000001,32.8860538]},"id":"8f44c0b526d3563-17d7b21c3d3d91fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324912,32.886172200000004]},"id":"8f44c0a2cd2e884-17b7b419055e5745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b526d3563-17d7b21c3d3d91fd","8f44c0a2cd2e884-17b7b419055e5745"]},"geometry":{"type":"LineString","coordinates":[[-83.73330530000001,32.8860538],[-83.7324912,32.886172200000004]]},"id":"8744c0a2cffffff-17feb31aadc6f605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72210340000001,32.755073700000004]},"id":"8f44c0b0552c4e6-17973d7562ea2185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7218945,32.755547]},"id":"8f44c0b0552ab15-17beedf7faed987b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0552ab15-17beedf7faed987b","8f44c0b0552c4e6-17973d7562ea2185"]},"geometry":{"type":"LineString","coordinates":[[-83.72210340000001,32.755073700000004],[-83.7218945,32.755547]]},"id":"8a44c0b0552ffff-17b72db6b4008525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7238564,32.7575276]},"id":"8f44c0b05545035-139ee92dc3c3e981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72310250000001,32.7574806]},"id":"8f44c0b05546204-13f76b04fd58e722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05546204-13f76b04fd58e722","8f44c0b05545035-139ee92dc3c3e981"]},"geometry":{"type":"LineString","coordinates":[[-83.7238564,32.7575276],[-83.72310250000001,32.7574806]]},"id":"8a44c0b05547fff-13963a19565685b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7231555,32.756285500000004]},"id":"8f44c0b05575c36-13967ae3de645b4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72258760000001,32.7564255]},"id":"8f44c0b05570c96-13dffc46c5e7118a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05570c96-13dffc46c5e7118a","8f44c0b05575c36-13967ae3de645b4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7231555,32.756285500000004],[-83.72258760000001,32.7564255]]},"id":"8a44c0b05577fff-13b63b9545708cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72490640000001,32.7563821]},"id":"8f44c0b05196521-13d6f69d86d8d8b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72587850000001,32.7564058]},"id":"8f44c0b051b3613-13d7a43df8db4325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05196521-13d6f69d86d8d8b2","8f44c0b051b3613-13d7a43df8db4325"]},"geometry":{"type":"LineString","coordinates":[[-83.72490640000001,32.7563821],[-83.72587850000001,32.7564058]]},"id":"8a44c0b05197fff-13de656dbd71890e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6742765,32.749355300000005]},"id":"8f44c0b0649acc2-179fb239340952ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6740966,32.7490194]},"id":"8f44c0b1586d8f6-17dfa2a9ac477b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0649acc2-179fb239340952ac","8f44c0b1586d8f6-17dfa2a9ac477b69"]},"geometry":{"type":"LineString","coordinates":[[-83.6742765,32.749355300000005],[-83.67407820000001,32.749352],[-83.6740966,32.7490194]]},"id":"8744c0b15ffffff-17dee29a6133cd99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6746351,32.7518693]},"id":"8f44c0b15b03056-17bef1591347778c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6742926,32.751868900000005]},"id":"8f44c0b15b1c859-17beb22f26dc2c51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15b1c859-17beb22f26dc2c51","8f44c0b15b03056-17bef1591347778c"]},"geometry":{"type":"LineString","coordinates":[[-83.6746351,32.7518693],[-83.6742926,32.751868900000005]]},"id":"8944c0b15b3ffff-17beb1c429785147"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67468070000001,32.7503444]},"id":"8f44c0b15b35389-1397e13c9ace3f5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6743155,32.7503436]},"id":"8f44c0b15b30a1e-1396e220da75253c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15b35389-1397e13c9ace3f5f","8f44c0b15b30a1e-1396e220da75253c"]},"geometry":{"type":"LineString","coordinates":[[-83.67468070000001,32.7503444],[-83.6743155,32.7503436]]},"id":"8a44c0b15b37fff-1397a1aeb70b23d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67461370000001,32.749360800000005]},"id":"8f44c0b0649848e-179ea16672624379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0649848e-179ea16672624379","8f44c0b0649acc2-179fb239340952ac"]},"geometry":{"type":"LineString","coordinates":[[-83.67461370000001,32.749360800000005],[-83.6742765,32.749355300000005]]},"id":"8b44c0b0649afff-179ef1cfd3dbfd94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67465390000001,32.7486953]},"id":"8f44c0b06491382-17feb14d59628d54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67430470000001,32.7486886]},"id":"8f44c0b06493b89-17fee2279d2d7c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06491382-17feb14d59628d54","8f44c0b06493b89-17fee2279d2d7c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.67465390000001,32.7486953],[-83.67430470000001,32.7486886]]},"id":"8a44c0b06497fff-17fea1ba76b6c7d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76659480000001,32.8357114]},"id":"8f44c0b72690b34-13ffe0d6415a26a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650953,32.835826700000005]},"id":"8f44c0b09a602a2-13b7f47f7d975679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72690b34-13ffe0d6415a26a4","8f44c0b09a602a2-13b7f47f7d975679"]},"geometry":{"type":"LineString","coordinates":[[-83.76659480000001,32.8357114],[-83.7650953,32.835826700000005]]},"id":"8544c0b7fffffff-1397f2aae406860f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761944,32.9058312]},"id":"8f44c0a2d96ab58-17b5cc3102bb7b17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762454,32.9065859]},"id":"8f44c0b5e4b639d-17fdfaf24a4ecd1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d96ab58-17b5cc3102bb7b17","8f44c0b5e4b639d-17fdfaf24a4ecd1b"]},"geometry":{"type":"LineString","coordinates":[[-83.761944,32.9058312],[-83.762454,32.9065859]]},"id":"8744c0a2dffffff-179deb91ad1b2446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69074060000001,32.806850600000004]},"id":"8f44c0b1d0a2663-13fffa0729322d17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08442b-17967a9fbf640b9e","8f44c0b1d0a2663-13fffa0729322d17"]},"geometry":{"type":"LineString","coordinates":[[-83.69049650000001,32.8071013],[-83.6905835,32.8070989],[-83.69066670000001,32.807076900000006],[-83.69073680000001,32.8070164],[-83.69074060000001,32.806850600000004]]},"id":"8944c0b1d0bffff-17f6fa3480abfa14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6578377,32.8196741]},"id":"8f44c0b1aa73720-13deda5b707cacd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa73720-13deda5b707cacd8","8f44c0b1aa73398-13f6fa26cbe54680"]},"geometry":{"type":"LineString","coordinates":[[-83.6578377,32.8196741],[-83.657922,32.8197483]]},"id":"8b44c0b1aa73fff-13dfca4123a6a073"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638907,32.835875]},"id":"8f44c0a34185c4c-13d7f8932e200409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34185c4c-13d7f8932e200409","8f44c0a3418380e-1796f9bcafc1eac1"]},"geometry":{"type":"LineString","coordinates":[[-83.638907,32.835875],[-83.638765,32.835993],[-83.63857800000001,32.836222],[-83.63843100000001,32.836388]]},"id":"8a44c0a34187fff-13f7f92c45cb98b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109507,32.847070200000005]},"id":"8f44c0a367a5781-17bffcd3d097a53b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6114543,32.8470633]},"id":"8f44c0a367166c0-17b7bb9918c55894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a367a5781-17bffcd3d097a53b","8f44c0a367166c0-17b7bb9918c55894"]},"geometry":{"type":"LineString","coordinates":[[-83.6109507,32.847070200000005],[-83.6114543,32.8470633]]},"id":"8844c0a367fffff-17bffc3670ad2eb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61095680000001,32.8464465]},"id":"8f44c0a3644b5b6-17b73cd00f9be563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61151620000001,32.846454300000005]},"id":"8f44c0a364494e5-17bffb7264f5a8f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3644b5b6-17b73cd00f9be563","8f44c0a364494e5-17bffb7264f5a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.61095680000001,32.8464465],[-83.61151620000001,32.846454300000005]]},"id":"8a44c0a3644ffff-17b7bc213cc9d59d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908021,32.7578666]},"id":"8f44c0b062f0cc5-17f6f9e0be4a8cc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6904499,32.7582996]},"id":"8f44c0b062d4928-17f77abcdc93dc09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b062f0cc5-17f6f9e0be4a8cc3","8f44c0b062d4928-17f77abcdc93dc09"]},"geometry":{"type":"LineString","coordinates":[[-83.6908021,32.7578666],[-83.6904499,32.7582996]]},"id":"8a44c0b062f7fff-17fffa4ec394efa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930415,32.8979528]},"id":"8f44c0a059026ac-13f6f4691e5c288b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931419,32.8979641]},"id":"8f44c0a05902666-13fff42a5ad08648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059026ac-13f6f4691e5c288b","8f44c0a05902666-13fff42a5ad08648"]},"geometry":{"type":"LineString","coordinates":[[-83.6930415,32.8979528],[-83.6931419,32.8979641]]},"id":"8c44c0a059027ff-13fe7449bd52b736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64913650000001,32.862295200000005]},"id":"8f44c0a35691669-13d6df99b1f8dd67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6408049,32.857404100000004]},"id":"8f44c0a30bb341a-17f7f3f0fab248c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a35691669-13d6df99b1f8dd67","8f44c0a30bb341a-17f7f3f0fab248c3"]},"geometry":{"type":"LineString","coordinates":[[-83.64913650000001,32.862295200000005],[-83.6476305,32.8615469],[-83.64727110000001,32.8613802],[-83.6463404,32.860938600000004],[-83.6456162,32.8604925],[-83.644605,32.8598548],[-83.6441463,32.859552900000004],[-83.643119,32.858877],[-83.642655,32.8586089],[-83.64223120000001,32.8583498],[-83.6413541,32.8577955],[-83.6408049,32.857404100000004]]},"id":"8644c0a37ffffff-17b7e9ee039242cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6357397,32.853922000000004]},"id":"8f44c0a3089e915-17f7404ebac78fb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6322373,32.8520319]},"id":"8f44c0a30c28144-13d7f8dbb70f1add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"motorway_link","surface":"paved","flags":["isBridge","isLink"]},"subType":"road","connectors":["8f44c0a30c28144-13d7f8dbb70f1add","8f44c0a3089e915-17f7404ebac78fb4"]},"geometry":{"type":"LineString","coordinates":[[-83.6357397,32.853922000000004],[-83.6348724,32.853463000000005],[-83.63452790000001,32.8532577],[-83.63295880000001,32.852439700000005],[-83.6322373,32.8520319]]},"id":"8744c0a30ffffff-179fe4967576a689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638642,32.839748]},"id":"8f44c0a340ab781-17def938cf0948c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34083d4d-13f7fc0e6e299227","8f44c0a340ab781-17def938cf0948c4"]},"geometry":{"type":"LineString","coordinates":[[-83.63748100000001,32.839385],[-83.638642,32.839748]]},"id":"8944c0a340bffff-13dffaa398505e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62372900000001,32.83534]},"id":"8f44c0a3690b718-13979da1639b5130"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3690b718-13979da1639b5130","8f44c0a3690b64d-13df3d77897906f1"]},"geometry":{"type":"LineString","coordinates":[[-83.623796,32.835453],[-83.62372900000001,32.83534]]},"id":"8b44c0a3690bfff-13bfdd8c7646899e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20414d2b-1797fde97287f0bb","8f44c0a20411563-13d7fd7c84aeec1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6891497,32.8635997],[-83.689183,32.863788],[-83.68923600000001,32.864036],[-83.689285,32.864305],[-83.689324,32.864521]]},"id":"8a44c0a20417fff-17b7fdb265062660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635399,32.834525]},"id":"8f44c0a34cdc2f5-179f2123a28b603a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34cdc2f5-179f2123a28b603a","8f44c0a34cd2a5a-17fff3b3078a2da8"]},"geometry":{"type":"LineString","coordinates":[[-83.6343504,32.8338671],[-83.63455900000001,32.833993],[-83.63462200000001,32.834032],[-83.63511000000001,32.834320000000005],[-83.635399,32.834525]]},"id":"8944c0a34cfffff-17b7c26839c01d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6368183,32.835553000000004]},"id":"8f44c0a341968d6-139efdac9e0b9731"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a341968d6-139efdac9e0b9731","8f44c0a34194705-13befcd1c7b1fbc6"]},"geometry":{"type":"LineString","coordinates":[[-83.6368183,32.835553000000004],[-83.63716840000001,32.8356046]]},"id":"8a44c0a34197fff-139efd3f2e9b96d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446856,32.833697400000005]},"id":"8f44c0a348f0273-1796ea77871c8c6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a348f0273-1796ea77871c8c6f","8f44c0a348f14c3-17fefa65e2944517"]},"geometry":{"type":"LineString","coordinates":[[-83.6446856,32.833697400000005],[-83.64466850000001,32.8337201],[-83.6446571,32.8337451],[-83.6446516,32.833771500000005],[-83.6446524,32.833798300000005],[-83.64465940000001,32.833824400000005],[-83.64467230000001,32.8338489],[-83.6446907,32.8338708],[-83.6447138,32.8338893]]},"id":"8a44c0a348f7fff-17d7ea8192eef54d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644914,32.8336737]},"id":"8f44c0a348f1d41-17f6f9e8c03e039a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a348f1076-17f6e9ce69acaf68","8f44c0a348f1d41-17f6f9e8c03e039a"]},"geometry":{"type":"LineString","coordinates":[[-83.64495620000001,32.8338538],[-83.6449657,32.833836500000004],[-83.64497250000001,32.833818300000004],[-83.6449769,32.833791600000005],[-83.6449754,32.8337647],[-83.644968,32.833738700000005],[-83.64495500000001,32.833714400000005],[-83.64493680000001,32.833692400000004],[-83.644914,32.8336737]]},"id":"8b44c0a348f1fff-17bfe9cc2900747d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34860513-13dfdfd8e70e8524","8f44c0a34860301-13dedf11c08311ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6490354,32.832812000000004],[-83.649354,32.832986000000005]]},"id":"8b44c0a34860fff-1397ff7556383a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64978980000001,32.832982300000005]},"id":"8f44c0a348652e2-13d7fe016ff1f90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3486cd2d-1797ddac4ca8b60a","8f44c0a348652e2-13d7fe016ff1f90b"]},"geometry":{"type":"LineString","coordinates":[[-83.64978980000001,32.832982300000005],[-83.64987090000001,32.8332472],[-83.64992600000001,32.833318000000006]]},"id":"8944c0a3487ffff-17b6fdddaf6e8ff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68778300000001,32.85528]},"id":"8f44c0a2630bb59-13b6813fab3341fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688631,32.855303]},"id":"8f44c0a26373585-13d67f2da7b53438"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2630bb59-13b6813fab3341fd","8f44c0a26373585-13d67f2da7b53438"]},"geometry":{"type":"LineString","coordinates":[[-83.68778300000001,32.85528],[-83.688631,32.855303]]},"id":"8844c0a263fffff-13bfb036ac32bf9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69731820000001,32.867911]},"id":"8f44c0a200d0ca0-139e69f82e34b546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200c3541-13b6e6f966cf128b","8f44c0a200d0ca0-139e69f82e34b546"]},"geometry":{"type":"LineString","coordinates":[[-83.69731820000001,32.867911],[-83.6976375,32.8681004],[-83.69784580000001,32.868207500000004],[-83.69815580000001,32.8683866],[-83.69854500000001,32.868590000000005]]},"id":"8944c0a200fffff-13f7f87aa6f39b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92c10db-17df958ee98a418c","8f44c0ba92cec25-17b7b5e977b3b946"]},"geometry":{"type":"LineString","coordinates":[[-83.62703540000001,32.8334041],[-83.6268905,32.8335723]]},"id":"8a44c0ba92c7fff-179735bc2cff5a2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a348f0273-1796ea77871c8c6f","8f44c0a348f1d41-17f6f9e8c03e039a"]},"geometry":{"type":"LineString","coordinates":[[-83.644914,32.8336737],[-83.6448798,32.833656500000004],[-83.6448417,32.833646800000004],[-83.6448019,32.833645100000005],[-83.64476280000001,32.833651700000004],[-83.6447337,32.8336625],[-83.6447076,32.833678],[-83.6446856,32.833697400000005]]},"id":"8a44c0a348f7fff-17fffa32013978b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6752972,32.8147828]},"id":"8f44c0b18a9bc12-17d7dfbb4e2fa90f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675301,32.8146438]},"id":"8f44c0b18a9aa66-1796ffb8ee0f3cda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b18a9bc12-17d7dfbb4e2fa90f","8f44c0b18a9aa66-1796ffb8ee0f3cda"]},"geometry":{"type":"LineString","coordinates":[[-83.6752972,32.8147828],[-83.675301,32.8146438]]},"id":"8a44c0b18a9ffff-17bfdfba13101c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679545,32.815016]},"id":"8f44c0b18ae02ad-17ff955c6f8c0c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18ae02ad-17ff955c6f8c0c7f","8f44c0b18ae0173-17fe955bc7fb72a8"]},"geometry":{"type":"LineString","coordinates":[[-83.679545,32.815016],[-83.679546,32.814816]]},"id":"8b44c0b18ae0fff-17be955c145087b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18aea571-13dfb58467d00426","8f44c0b18ae02ad-17ff955c6f8c0c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.67948100000001,32.815989],[-83.6795376,32.8151285],[-83.679545,32.815016]]},"id":"8944c0b18afffff-139f95706a6a56d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68108070000001,32.818317900000004]},"id":"8f44c0b19d83d02-17feb19c90a82c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681071,32.817681]},"id":"8f44c0b19d86846-17feb1a2a6858b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d83d02-17feb19c90a82c90","8f44c0b19d86846-17feb1a2a6858b03"]},"geometry":{"type":"LineString","coordinates":[[-83.68108070000001,32.818317900000004],[-83.681071,32.817681]]},"id":"8a44c0b19d87fff-17b7b19f9c131271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62004990000001,32.851837100000004]},"id":"8f44c0a362ad1ad-13df369cd76e0679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61947,32.852584]},"id":"8f44c0a362ab286-13b72807482005de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362ad1ad-13df369cd76e0679","8f44c0a362ab286-13b72807482005de"]},"geometry":{"type":"LineString","coordinates":[[-83.62004990000001,32.851837100000004],[-83.61969400000001,32.852241],[-83.61947,32.852584]]},"id":"8a44c0a362affff-13b7675a5ad44394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604453,32.86345]},"id":"8f44c0a32553b29-17bf4cb0e0901591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.602401,32.864595]},"id":"8f44c0a3240ecda-13f7f1b364fde8bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32553b29-17bf4cb0e0901591","8f44c0a3240ecda-13f7f1b364fde8bf"]},"geometry":{"type":"LineString","coordinates":[[-83.604453,32.86345],[-83.604218,32.863448000000005],[-83.603947,32.863464],[-83.60378800000001,32.863529],[-83.603503,32.863695],[-83.60336500000001,32.863784],[-83.603105,32.863994000000005],[-83.602401,32.864595]]},"id":"8844c0a325fffff-17b77f581ed3c5f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6131428,32.8603049]},"id":"8f44c0a32124081-17ffb779c7aa3872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32124081-17ffb779c7aa3872","8f44c0a3212686d-17ff780330dd1279"]},"geometry":{"type":"LineString","coordinates":[[-83.6131428,32.8603049],[-83.6129229,32.8603015]]},"id":"8a44c0a32127fff-17ffb7be8cddf7a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61294860000001,32.8595965]},"id":"8f44c0a3289d0c3-17bff7f32c8fad66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612505,32.859598000000005]},"id":"8f44c0a32898119-17d7f90866e5b4de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32898119-17d7f90866e5b4de","8f44c0a3289d0c3-17bff7f32c8fad66"]},"geometry":{"type":"LineString","coordinates":[[-83.61294860000001,32.8595965],[-83.612505,32.859598000000005]]},"id":"8a44c0a3289ffff-17d7787dcd790e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3239d6f5-13bf38480018ce4a","8f44c0a32399808-139737fd627dcb34"]},"geometry":{"type":"LineString","coordinates":[[-83.6128128,32.8710608],[-83.6129322,32.871200300000005]]},"id":"8a44c0a3239ffff-13ffb822be43efac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607517,32.879997]},"id":"8f44c0a14881c10-179f6535e8fbfbf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60740170000001,32.8799034]},"id":"8f44c0a14880325-17d7e57dfac170c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a14880325-17d7e57dfac170c2","8f44c0a14881c10-179f6535e8fbfbf8"]},"geometry":{"type":"LineString","coordinates":[[-83.607517,32.879997],[-83.60740170000001,32.8799034]]},"id":"8a44c0a14887fff-17f7e559f47b19e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637259,32.847577]},"id":"8f44c0a34651511-17f7fc992e8d0a6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63743000000001,32.847229]},"id":"8f44c0a34655471-179efc2e4f46a3c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34651511-17f7fc992e8d0a6b","8f44c0a34655471-179efc2e4f46a3c6"]},"geometry":{"type":"LineString","coordinates":[[-83.637259,32.847577],[-83.63743000000001,32.847229]]},"id":"8a44c0a34657fff-17fefc63b2f51c62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64679600000001,32.844686]},"id":"8f44c0a34356c4d-13dee550807b6bbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64681850000001,32.844637]},"id":"8f44c0a34356894-13bee5427ac58dd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34356894-13bee5427ac58dd2","8f44c0a34356c4d-13dee550807b6bbe"]},"geometry":{"type":"LineString","coordinates":[[-83.64679600000001,32.844686],[-83.64681850000001,32.844637]]},"id":"8b44c0a34356fff-13dff54974b11712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64601300000001,32.852106]},"id":"8f44c0a35598c72-13f6e739eabc729c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3096aa70-13dfeaec2f6a31c6","8f44c0a35598c72-13f6e739eabc729c"]},"geometry":{"type":"LineString","coordinates":[[-83.64601300000001,32.852106],[-83.645274,32.852086],[-83.645204,32.852097],[-83.64506,32.852124],[-83.644834,32.852178],[-83.64449900000001,32.852271]]},"id":"8644c0a37ffffff-139ee916ff3a13ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69067670000001,32.8992716]},"id":"8f44c0a0598e325-179efa2f19ba9e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898814,32.8989576]},"id":"8f44c0a0599cba9-17defc202a5823c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598e325-179efa2f19ba9e07","8f44c0a0599cba9-17defc202a5823c5"]},"geometry":{"type":"LineString","coordinates":[[-83.69067670000001,32.8992716],[-83.6898814,32.8989576]]},"id":"8944c0a059bffff-17befb279c176c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63122100000001,32.833968]},"id":"8f44c0a34514428-17bf0b56e38d3afb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34514428-17bf0b56e38d3afb","8f44c0a34512722-17bf2c9aa1fe04a0"]},"geometry":{"type":"LineString","coordinates":[[-83.63070300000001,32.834581],[-83.63122100000001,32.833968]]},"id":"8a44c0a34517fff-17ff9bf8c8cfcdbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649485,32.814811]},"id":"8f44c0b1a1292c5-17fefebfe6e15086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65084200000001,32.814847]},"id":"8f44c0b1a8d9225-17fffb6fc898300f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1292c5-17fefebfe6e15086","8f44c0b1a8d9225-17fffb6fc898300f"]},"geometry":{"type":"LineString","coordinates":[[-83.649485,32.814811],[-83.65084200000001,32.814847]]},"id":"8844c0b1a1fffff-17f6fd17ddd9fe71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653767,32.816518]},"id":"8f44c0b1ab8e720-1397d44baa54e701"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab848de-13def43e88494b09","8f44c0b1ab8e720-1397d44baa54e701"]},"geometry":{"type":"LineString","coordinates":[[-83.653767,32.816518],[-83.653788,32.815201]]},"id":"8944c0b1abbffff-13fef4451fed4beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65885800000001,32.814245]},"id":"8f44c0b184d0612-1797e7ddc9abaf4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184d3d42-17d7e7e4a0d60a7c","8f44c0b184d0612-1797e7ddc9abaf4e"]},"geometry":{"type":"LineString","coordinates":[[-83.65884700000001,32.814371],[-83.65885800000001,32.814245]]},"id":"8a44c0b184d7fff-17bec7e1336b99ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633413,32.810372]},"id":"8f44c0b18550aaa-1796bcebbafd5005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185514ac-17d7bceea992cfc7","8f44c0b18550aaa-1796bcebbafd5005"]},"geometry":{"type":"LineString","coordinates":[[-83.6633413,32.810372],[-83.66333660000001,32.810652000000005]]},"id":"8a44c0b18557fff-17febced30cf289a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712512,32.783381]},"id":"8f44c0b014dc6de-13bf64e00c02321f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712529,32.782702]},"id":"8f44c0b014c24a4-1396c4d56374bdc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b014dc6de-13bf64e00c02321f","8f44c0b014c24a4-1396c4d56374bdc5"]},"geometry":{"type":"LineString","coordinates":[[-83.712512,32.783381],[-83.712511,32.783105],[-83.712519,32.782849],[-83.712529,32.782702]]},"id":"8944c0b014fffff-13dee4dddd8e431f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71565000000001,32.782555]},"id":"8f44c0b0145ea84-13befd36cb8bb410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0145ea84-13befd36cb8bb410","8f44c0b014c24a4-1396c4d56374bdc5"]},"geometry":{"type":"LineString","coordinates":[[-83.712529,32.782702],[-83.712677,32.782693],[-83.712737,32.782684],[-83.713012,32.782617],[-83.71310100000001,32.782612],[-83.715337,32.782645],[-83.71541300000001,32.782638],[-83.71546500000001,32.782626],[-83.71565000000001,32.782555]]},"id":"8844c0b015fffff-13df51040ca2a89f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70778,32.78092]},"id":"8f44c0b03845cc9-17bf506d899d3296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03845cc9-17bf506d899d3296","8f44c0b01483651-17de49aa4f004262"]},"geometry":{"type":"LineString","coordinates":[[-83.70778,32.78092],[-83.708066,32.780925],[-83.71055000000001,32.78097]]},"id":"8744c0b03ffffff-17bedd0be91c28ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34435d41-13b70a6740343775","8f44c0a344302ee-17dfab5571a227b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6312233,32.836681],[-83.63150560000001,32.836330600000004],[-83.6316044,32.836208]]},"id":"8a44c0a34437fff-17bfdade6becc8f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2e4da8-13befb2ec968de44","8f44c0b1a20a573-139fdaf409ea85b6"]},"geometry":{"type":"LineString","coordinates":[[-83.65104000000001,32.825922000000006],[-83.651033,32.825958],[-83.651014,32.8260166],[-83.65100000000001,32.826060000000005],[-83.650946,32.826203]]},"id":"8944c0b1a23ffff-13f7db0f2916210e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66286360000001,32.8144952]},"id":"8f44c0b18458735-17b7be164d4f4a8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66286600000001,32.8143407]},"id":"8f44c0b18458ce3-17d6fe14c9b9b99e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18458735-17b7be164d4f4a8e","8f44c0b18458ce3-17d6fe14c9b9b99e"]},"geometry":{"type":"LineString","coordinates":[[-83.66286360000001,32.8144952],[-83.66286600000001,32.8143407]]},"id":"8b44c0b18458fff-17f7fe158b176d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6558c4-13d6fa5e467d5ac4","8f44c0b1d673281-13de7a371beb1c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6906639,32.8154022],[-83.6906012,32.8155657]]},"id":"8944c0b1d67ffff-139f7a4ab901225f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d6558c4-13d6fa5e467d5ac4","8f44c0b1d65586b-13d7fa260f2f51cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6906012,32.8155657],[-83.6906912,32.815571]]},"id":"8c44c0b1d6559ff-13d67a422f045759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7185621,32.810369]},"id":"8f44c0b0e281763-1796b61abc5c04d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e281763-1796b61abc5c04d3","8f44c0b0e2f425d-17fe31a1b83edaf7"]},"geometry":{"type":"LineString","coordinates":[[-83.7185621,32.810369],[-83.7191883,32.8103872],[-83.7191705,32.8108973],[-83.72039410000001,32.8109186]]},"id":"8844c0b0e3fffff-17f7b408054f77fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186726,32.8081187]},"id":"8f44c0b0e399c4a-179635d5acacc1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71867250000001,32.808037500000005]},"id":"8f44c0b0e399d51-17df75d5b6e8e561"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e399c4a-179635d5acacc1d1","8f44c0b0e399d51-17df75d5b6e8e561"]},"geometry":{"type":"LineString","coordinates":[[-83.7186726,32.8081187],[-83.71867250000001,32.808037500000005]]},"id":"8c44c0b0e399dff-17fef5d5a63a553b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d8e916-17f69d88dc495d61","8f44c0b08d8eb8e-17dedd6795fb14be"]},"geometry":{"type":"LineString","coordinates":[[-83.72862590000001,32.8082504],[-83.728666,32.808340300000005],[-83.72867910000001,32.808446]]},"id":"8b44c0b08d8efff-17b67d73a4f60799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73712280000001,32.7983903]},"id":"8f44c0b0c09919e-17d7f8ca41e13cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7359964,32.798323]},"id":"8f44c0b0c469ab5-17b7eb8a44575fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b0c469ab5-17b7eb8a44575fb1","8f44c0b0c09919e-17d7f8ca41e13cc7"]},"geometry":{"type":"LineString","coordinates":[[-83.73712280000001,32.7983903],[-83.7359964,32.798323]]},"id":"8744c0b0cffffff-17befa2a405efe54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7084602,32.816352900000005]},"id":"8f44c0b0ac0d2e4-13bedec467108271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac0d2e4-13bedec467108271","8f44c0b0ac0cb91-13df5f8ebf69a549"]},"geometry":{"type":"LineString","coordinates":[[-83.7084602,32.816352900000005],[-83.70835360000001,32.8161752],[-83.70813650000001,32.8158133]]},"id":"8a44c0b0ac0ffff-1397ff298c98b716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616799,32.846463]},"id":"8f44c0a360c5493-17bf6e8ca5bf86be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360c5093-17bf6e14a5d4e63b","8f44c0a360c5493-17bf6e8ca5bf86be"]},"geometry":{"type":"LineString","coordinates":[[-83.616991,32.846479],[-83.616799,32.846463]]},"id":"8a44c0a360c7fff-17b76e50a94b9497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616877,32.845968]},"id":"8f44c0a360c4954-13ff2e5be3aeacbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360c4954-13ff2e5be3aeacbd","8f44c0a360c5493-17bf6e8ca5bf86be"]},"geometry":{"type":"LineString","coordinates":[[-83.616877,32.845968],[-83.616799,32.846463]]},"id":"8944c0a360fffff-1797be7444f6089d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6076357,32.8481077]},"id":"8f44c0b8db6110a-13b754ebb3cefaf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6076388,32.8482289]},"id":"8f44c0b8db613b0-13ff54e9cceb62c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db613b0-13ff54e9cceb62c7","8f44c0b8db6110a-13b754ebb3cefaf6"]},"geometry":{"type":"LineString","coordinates":[[-83.6076357,32.8481077],[-83.6076388,32.8482289]]},"id":"8b44c0b8db61fff-13df74eabb9eb44c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59312800000001,32.861478000000005]},"id":"8f44c0b8991b158-13d7e8570f31b3b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.592083,32.861995]},"id":"8f44c0b89832818-139feae4267104d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b89832818-139feae4267104d0","8f44c0b8991b158-13d7e8570f31b3b2"]},"geometry":{"type":"LineString","coordinates":[[-83.59312800000001,32.861478000000005],[-83.592698,32.861683],[-83.592083,32.861995]]},"id":"8844c0b899fffff-13f7699e85b8bd54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57002440000001,32.864422000000005]},"id":"8f44c0b8b93150e-1397e0bec3207fe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b906c08-13f7e0ce8f430c8b","8f44c0b8b93150e-1397e0bec3207fe6"]},"geometry":{"type":"LineString","coordinates":[[-83.56999920000001,32.864778],[-83.5699999,32.8646778],[-83.57000000000001,32.8646353],[-83.5699957,32.8645786],[-83.5700085,32.8644972],[-83.57002440000001,32.864422000000005]]},"id":"8944c0b8b93ffff-13f7a0cbd7b91445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57157000000001,32.870761]},"id":"8f44c0b8b842771-1397bcf8c800bab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5718719,32.871028200000005]},"id":"8f44c0b8b843734-13bfbc3c1794fc40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b842771-1397bcf8c800bab6","8f44c0b8b843734-13bfbc3c1794fc40"]},"geometry":{"type":"LineString","coordinates":[[-83.57157000000001,32.870761],[-83.5718719,32.871028200000005]]},"id":"8a44c0b8b847fff-13d7bc9a6f4350a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8e9930-13d7bf8f4d73204c","8f44c0b8b842771-1397bcf8c800bab6"]},"geometry":{"type":"LineString","coordinates":[[-83.57157000000001,32.870761],[-83.57105800000001,32.871215],[-83.570797,32.871395],[-83.57060800000001,32.871485],[-83.570572,32.871499],[-83.57051,32.871509]]},"id":"8844c0b8b9fffff-1397be3490964ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55615900000001,32.846381]},"id":"8f44c0b8e2185ac-17ffe298aa6b80ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.555186,32.845733]},"id":"8f44c0b8e2acd68-13f7e4f8c19723cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2acd68-13f7e4f8c19723cb","8f44c0b8e2185ac-17ffe298aa6b80ea"]},"geometry":{"type":"LineString","coordinates":[[-83.55615900000001,32.846381],[-83.556026,32.846356],[-83.555954,32.846334],[-83.55589400000001,32.846308],[-83.555828,32.846272],[-83.55574100000001,32.846213],[-83.555186,32.845733]]},"id":"8844c0b8e3fffff-13dfd3d89f943fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.555783,32.847991]},"id":"8f44c0b8e2c6c34-13ffe383a979c226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e2185ac-17ffe298aa6b80ea","8f44c0b8e2c6c34-13ffe383a979c226"]},"geometry":{"type":"LineString","coordinates":[[-83.55615900000001,32.846381],[-83.555965,32.847081],[-83.555846,32.84763],[-83.555801,32.84787],[-83.555783,32.847991]]},"id":"8844c0b8e3fffff-17f7d318f3e4d1b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579294,32.852432]},"id":"8f44c0b88b1e799-13d78a1d4e2d0e31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b1e799-13d78a1d4e2d0e31","8f44c0b88b13955-13dfaa396c96ae7b"]},"geometry":{"type":"LineString","coordinates":[[-83.579249,32.851833],[-83.579294,32.852096],[-83.579294,32.852432]]},"id":"8944c0b88b3ffff-1397aa2382e70867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653204,32.813791]},"id":"8f44c0b1a85a0f2-17fff5ab8470f24e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a853b2b-13f7f59468d9c91a","8f44c0b1a85a0f2-17fff5ab8470f24e"]},"geometry":{"type":"LineString","coordinates":[[-83.653204,32.813791],[-83.65324100000001,32.812959]]},"id":"8944c0b1a87ffff-13f7f59ff46f9e85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655817,32.789215]},"id":"8f44c0b1e81248e-13ffef4a603d4235"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65584100000001,32.787931]},"id":"8f44c0b1e988cdc-17deef3b6ad83cfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e81248e-13ffef4a603d4235","8f44c0b1e988cdc-17deef3b6ad83cfa"]},"geometry":{"type":"LineString","coordinates":[[-83.655817,32.789215],[-83.655834,32.788665],[-83.65584100000001,32.787931]]},"id":"8844c0b1e9fffff-17deff40c3540758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657893,32.787962]},"id":"8f44c0b1e835bb5-17deca38e057e842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e835bb5-17deca38e057e842","8f44c0b1e988cdc-17deef3b6ad83cfa"]},"geometry":{"type":"LineString","coordinates":[[-83.65584100000001,32.787931],[-83.657893,32.787962]]},"id":"8844c0b1e9fffff-17d6dcba2673c701"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65586,32.786626000000005]},"id":"8f44c0b1e985996-139fcf2f87d4135b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e985996-139fcf2f87d4135b","8f44c0b1e988cdc-17deef3b6ad83cfa"]},"geometry":{"type":"LineString","coordinates":[[-83.65584100000001,32.787931],[-83.65586,32.786626000000005]]},"id":"8944c0b1e9bffff-17b7df357dc00e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65843000000001,32.786682]},"id":"8f44c0b1e9037b0-13bec8e948eddb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e985996-139fcf2f87d4135b","8f44c0b1e9037b0-13bec8e948eddb08"]},"geometry":{"type":"LineString","coordinates":[[-83.65586,32.786626000000005],[-83.658296,32.786659],[-83.65843000000001,32.786682]]},"id":"8844c0b1e9fffff-13b6cc0bd14bfb73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64283,32.79535]},"id":"8f44c0b1e411b30-17f7eeff48e53343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e411b30-17f7eeff48e53343","8f44c0b1e55658d-179fe98cee7306be"]},"geometry":{"type":"LineString","coordinates":[[-83.64283,32.79535],[-83.643084,32.795135],[-83.64335600000001,32.794935],[-83.643718,32.794693],[-83.64390200000001,32.794575],[-83.644272,32.794372],[-83.64460000000001,32.794199],[-83.645061,32.793973]]},"id":"8844c0b1e5fffff-1797ec5a6047ec10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354658,32.927436400000005]},"id":"8f44c0a28271169-13dfccd5eb1e6794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28271169-13dfccd5eb1e6794","8f44c0a28273b8a-13b71dea1a3838bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7350239,32.927540900000004],[-83.7352958,32.9274703],[-83.7354658,32.927436400000005]]},"id":"8a44c0a28277fff-13fe9d6061418657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7364912,32.927056]},"id":"8f44c0a28260970-13f60a550a028787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7360599,32.9272195]},"id":"8f44c0a282604b3-13de3b62983ff74f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28260970-13f60a550a028787","8f44c0a282604b3-13de3b62983ff74f"]},"geometry":{"type":"LineString","coordinates":[[-83.7364912,32.927056],[-83.7360599,32.9272195]]},"id":"8a44c0a28267fff-13b71adbddb4173f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6281233,32.8320992]},"id":"8f44c0ba9252c80-139f12e6f0eeeb59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62825070000001,32.832174300000005]},"id":"8f44c0ba9252112-13dff2975ce905d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9252112-13dff2975ce905d8","8f44c0ba9252c80-139f12e6f0eeeb59"]},"geometry":{"type":"LineString","coordinates":[[-83.6281233,32.8320992],[-83.62825070000001,32.832174300000005]]},"id":"8b44c0ba9252fff-13b792bf2e38a87b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686294,32.905300000000004]},"id":"8f44c0a051aa968-17d684e245be90cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6863122,32.9050534]},"id":"8f44c0a051aea91-13bee4d6eb189cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051aea91-13bee4d6eb189cfe","8f44c0a051aa968-17d684e245be90cf"]},"geometry":{"type":"LineString","coordinates":[[-83.686294,32.905300000000004],[-83.6863122,32.9050534]]},"id":"8a44c0a051affff-1797f4dc9494e1f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68662610000001,32.904854900000004]},"id":"8f44c0a051ac1b3-13bed412bfe3dc63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051aea91-13bee4d6eb189cfe","8f44c0a051ac1b3-13bed412bfe3dc63"]},"geometry":{"type":"LineString","coordinates":[[-83.68662610000001,32.904854900000004],[-83.6861373,32.904886000000005],[-83.6861236,32.9049695],[-83.6861367,32.905028],[-83.6861712,32.905057500000005],[-83.6863122,32.9050534]]},"id":"8a44c0a051affff-13ffe4de0ee72641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686586,32.9044486]},"id":"8f44c0a0511258b-13d6e42bcdc908bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0511258b-13d6e42bcdc908bd","8f44c0a051ac1b3-13bed412bfe3dc63"]},"geometry":{"type":"LineString","coordinates":[[-83.68662610000001,32.904854900000004],[-83.6866054,32.9046022],[-83.6865903,32.904475000000005],[-83.686586,32.9044486]]},"id":"8944c0a051bffff-13bfb41dd725f0cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051aea91-13bee4d6eb189cfe","8f44c0a051ac1b3-13bed412bfe3dc63"]},"geometry":{"type":"LineString","coordinates":[[-83.6863122,32.9050534],[-83.6866069,32.905041700000005],[-83.6866384,32.9050048],[-83.68662610000001,32.904854900000004]]},"id":"8a44c0a051affff-139ed44fe4a30b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6859687,32.9046578]},"id":"8f44c0a051a3b95-13d7a5ad97c86896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6856109,32.904949300000006]},"id":"8f44c0a05185d88-13ffd68d3c84c986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051a3b95-13d7a5ad97c86896","8f44c0a05185d88-13ffd68d3c84c986"]},"geometry":{"type":"LineString","coordinates":[[-83.6859687,32.9046578],[-83.6856109,32.904949300000006]]},"id":"8944c0a051bffff-139ec61d6b90518d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68599970000001,32.9041222]},"id":"8f44c0a051a08b1-13f6e59a3f910ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685389,32.904789]},"id":"8f44c0a05184023-1397a717ec2f2204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05184023-1397a717ec2f2204","8f44c0a051a08b1-13f6e59a3f910ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.68599970000001,32.9041222],[-83.6858591,32.9042776],[-83.68587240000001,32.9043732],[-83.685865,32.904468900000005],[-83.6856475,32.9046776],[-83.6855824,32.9047137],[-83.685501,32.904701200000005],[-83.685389,32.904789]]},"id":"8944c0a051bffff-13f7d63b93376d04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6845622,32.9022645]},"id":"8f44c0a05c52a68-17ffd91caa9f510f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68409580000001,32.902440600000006]},"id":"8f44c0a05cecd1b-17dfea40234cb521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05cecd1b-17dfea40234cb521","8f44c0a05c52a68-17ffd91caa9f510f"]},"geometry":{"type":"LineString","coordinates":[[-83.6845622,32.9022645],[-83.6846582,32.9023632],[-83.68478560000001,32.902666],[-83.6843819,32.902819],[-83.68409580000001,32.902440600000006]]},"id":"8844c0a05dfffff-17d6c9436e4fdbd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68295230000001,32.9039571]},"id":"8f44c0a05cca91a-139fbd0adf54c318"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6821132,32.9039856]},"id":"8f44c0a05cd8335-139f8f174643a7ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cca91a-139fbd0adf54c318","8f44c0a05cd8335-139f8f174643a7ed"]},"geometry":{"type":"LineString","coordinates":[[-83.68295230000001,32.9039571],[-83.6828406,32.904031],[-83.68275150000001,32.903977600000005],[-83.6826448,32.903904100000005],[-83.6825271,32.90386],[-83.6824411,32.903856000000005],[-83.68226440000001,32.9039067],[-83.6821132,32.9039856]]},"id":"8944c0a05cfffff-13ffce0b8962abfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881445,32.9022649]},"id":"8f44c0a05c6da62-17ff905db4793112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05c6da62-17ff905db4793112","8f44c0a05c69023-17d7d13dec120545"]},"geometry":{"type":"LineString","coordinates":[[-83.6881445,32.9022649],[-83.6880965,32.9023557],[-83.68809060000001,32.9024516],[-83.68808170000001,32.9025277],[-83.6880502,32.9025715],[-83.6879823,32.902600400000004],[-83.6877858,32.9026365]]},"id":"8744c0a05ffffff-1797c0ae1f93c0a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892115,32.9016305]},"id":"8f44c0a05882a46-13df7dc2de68a025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883907,32.901328500000005]},"id":"8f44c0a05890b75-13b67fc3d4027ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05882a46-13df7dc2de68a025","8f44c0a05890b75-13b67fc3d4027ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.6892115,32.9016305],[-83.6891956,32.901525500000005],[-83.68888150000001,32.901214800000005],[-83.6887725,32.901124800000005],[-83.6886643,32.901130300000005],[-83.6883907,32.901328500000005]]},"id":"8944c0a058bffff-13967ea7ddb8188f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897531,32.899191300000005]},"id":"8f44c0a0599c2d5-17fefc705c4e5223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6895473,32.899118800000004]},"id":"8f44c0a0599c6a3-17bf7cf0fe9b13ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0599c2d5-17fefc705c4e5223","8f44c0a0599c6a3-17bf7cf0fe9b13ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6897531,32.899191300000005],[-83.6895473,32.899118800000004]]},"id":"8b44c0a0599cfff-17d7fcb0ab5a8e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687368,32.899684400000005]},"id":"8f44c0a05d4121a-179ec243061b3820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68706420000001,32.899276900000004]},"id":"8f44c0a05d4032a-17b69300ea8d887d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d4032a-17b69300ea8d887d","8f44c0a05d4121a-179ec243061b3820"]},"geometry":{"type":"LineString","coordinates":[[-83.687368,32.899684400000005],[-83.68747520000001,32.8995576],[-83.68746920000001,32.8995213],[-83.6874468,32.8994799],[-83.68706420000001,32.899276900000004]]},"id":"8944c0a05d7ffff-179f926014e47d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6869068,32.900049800000005]},"id":"8f44c0a05d5da23-1797a363457c9171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867679,32.899911700000004]},"id":"8f44c0a05d5d8ac-17bed3ba17c2dba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5da23-1797a363457c9171","8f44c0a05d5d8ac-17bed3ba17c2dba8"]},"geometry":{"type":"LineString","coordinates":[[-83.6869068,32.900049800000005],[-83.6867873,32.8999617],[-83.6867679,32.899911700000004]]},"id":"8b44c0a05d5dfff-17dea39422073f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68635330000001,32.8999189]},"id":"8f44c0a05d5c299-17b7d4bd3e284232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68599970000001,32.8998088]},"id":"8f44c0a05d5eb9d-17fe859a301a64f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5eb9d-17fe859a301a64f4","8f44c0a05d5c299-17b7d4bd3e284232"]},"geometry":{"type":"LineString","coordinates":[[-83.68635330000001,32.8999189],[-83.68599970000001,32.8998088]]},"id":"8a44c0a05d5ffff-179ef52bb8e0b539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7065165,32.921028]},"id":"8f44c0a2a10e9a4-13bed38339410905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059856,32.92129]},"id":"8f44c0a2a11d100-13de54cf0ee0d2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a10e9a4-13bed38339410905","8f44c0a2a11d100-13de54cf0ee0d2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.7065165,32.921028],[-83.7065912,32.9211292],[-83.706596,32.9211702],[-83.7065762,32.921206500000004],[-83.7061577,32.9214094],[-83.70611070000001,32.9214134],[-83.70606740000001,32.9214007],[-83.70604010000001,32.921373100000004],[-83.7059856,32.92129]]},"id":"8944c0a2a13ffff-13d7d3f4beb11ee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7061606,32.921206600000005]},"id":"8f44c0a2a11d94c-13be7461a58543c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7049094,32.9209525]},"id":"8f44c0a2a11335c-139f576faf72a8a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a11d94c-13be7461a58543c4","8f44c0a2a11335c-139f576faf72a8a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7061606,32.921206600000005],[-83.7060806,32.921093400000004],[-83.70605570000001,32.9210793],[-83.706021,32.9210756],[-83.70595270000001,32.921111100000005],[-83.70584480000001,32.921154800000004],[-83.7057449,32.921190200000005],[-83.70569710000001,32.9211991],[-83.7056319,32.921194400000005],[-83.705573,32.9211777],[-83.70546320000001,32.92111],[-83.70512860000001,32.9208701],[-83.70508690000001,32.9208506],[-83.70505560000001,32.9208506],[-83.7050174,32.9208565],[-83.7049094,32.9209525]]},"id":"8944c0a2a13ffff-13ded5e711ee32be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7047089,32.9208066]},"id":"8f44c0a2a113084-13b677ecf4c9bdbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7036451,32.9204747]},"id":"8f44c0a2a1a02c1-13f6fa85de2384db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a1a02c1-13f6fa85de2384db","8f44c0a2a113084-13b677ecf4c9bdbb"]},"geometry":{"type":"LineString","coordinates":[[-83.7047089,32.9208066],[-83.70422500000001,32.9212483],[-83.70414140000001,32.9213248],[-83.70401840000001,32.921385400000005],[-83.7038412,32.921452200000004],[-83.7038019,32.9214542],[-83.7037576,32.9214432],[-83.7033198,32.921157300000004],[-83.70329530000001,32.9211003],[-83.7032916,32.9210592],[-83.7033311,32.9209896],[-83.7033876,32.920915300000004],[-83.7035628,32.920741400000004],[-83.7036085,32.9206828],[-83.7036198,32.9206408],[-83.70363710000001,32.9205799],[-83.7036451,32.9204747]]},"id":"8844c0a2a1fffff-13f65a0161a7da11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70487370000001,32.919592200000004]},"id":"8f44c0a2ac49b08-17bf7785f931cdd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7051364,32.9197963]},"id":"8f44c0a2a11482e-17bef6e1caf2d163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a11482e-17bef6e1caf2d163","8f44c0a2ac49b08-17bf7785f931cdd6"]},"geometry":{"type":"LineString","coordinates":[[-83.70487370000001,32.919592200000004],[-83.7051364,32.9197963]]},"id":"8944c0a2a13ffff-17fef733dba570e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7044111,32.920043]},"id":"8f44c0a2a116464-13d6f8a71def0da2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70459290000001,32.9201689]},"id":"8f44c0a2a11638d-13b7d835795c1a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a11638d-13b7d835795c1a74","8f44c0a2a116464-13d6f8a71def0da2"]},"geometry":{"type":"LineString","coordinates":[[-83.7044111,32.920043],[-83.70459290000001,32.9201689]]},"id":"8b44c0a2a116fff-13fe586e40b0a79c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70540700000001,32.9191768]},"id":"8f44c0a2a136adb-17b7d638a4e5f0c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7053147,32.9191117]},"id":"8f44c0a2a136044-179ed67252cdd171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a136044-179ed67252cdd171","8f44c0a2a136adb-17b7d638a4e5f0c9"]},"geometry":{"type":"LineString","coordinates":[[-83.70540700000001,32.9191768],[-83.7055541,32.9190394],[-83.70556140000001,32.9190021],[-83.7055266,32.918975],[-83.7054895,32.918975],[-83.7053147,32.9191117]]},"id":"8a44c0a2a137fff-17fe7616f86d00e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122695,32.9277686]},"id":"8f44c0a2aad3773-13bf6577918400a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711291,32.9280448]},"id":"8f44c0a2a32e655-13de47db2d63f750"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a32e655-13de47db2d63f750","8f44c0a2aad3773-13bf6577918400a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7122695,32.9277686],[-83.71218110000001,32.927589000000005],[-83.71215240000001,32.927568900000004],[-83.7121039,32.927566],[-83.71125450000001,32.9278556],[-83.7112366,32.927910700000005],[-83.711291,32.9280448]]},"id":"8744c0a2affffff-139f56cc1c0f6a63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70837540000001,32.9257908]},"id":"8f44c0a2a045395-17df4ef961980ce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7082548,32.9258432]},"id":"8f44c0a2a04561d-17fe4f44c706960b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a045395-17df4ef961980ce2","8f44c0a2a04561d-17fe4f44c706960b"]},"geometry":{"type":"LineString","coordinates":[[-83.70837540000001,32.9257908],[-83.7082548,32.9258432]]},"id":"8b44c0a2a045fff-17ffef1f14a42d69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709973,32.928724800000005]},"id":"8f44c0a2a31cacb-17974b12ec85bf66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70985,32.928395]},"id":"8f44c0a2a30265b-17b6eb5fc10a92c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a30265b-17b6eb5fc10a92c0","8f44c0a2a31cacb-17974b12ec85bf66"]},"geometry":{"type":"LineString","coordinates":[[-83.709973,32.928724800000005],[-83.71009860000001,32.9286557],[-83.7101112,32.928626900000005],[-83.71010940000001,32.9285891],[-83.7100408,32.9284315],[-83.7100187,32.9284084],[-83.7099802,32.9284023],[-83.70985,32.928395]]},"id":"8944c0a2a33ffff-179fdaf1a36fd74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7106272,32.9281321]},"id":"8f44c0a2a300a46-1796d97a01411765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71080500000001,32.9289799]},"id":"8f44c0a2a30e36a-17b6790aefbd19ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a300a46-1796d97a01411765","8f44c0a2a30e36a-17b6790aefbd19ce"]},"geometry":{"type":"LineString","coordinates":[[-83.7106272,32.9281321],[-83.71059840000001,32.9282825],[-83.7105782,32.9283911],[-83.7105739,32.9284745],[-83.71080500000001,32.9289799]]},"id":"8944c0a2a33ffff-17b6c96987c92bf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7167987,32.905911]},"id":"8f44c0a2e3204a2-17d67a68d25fe574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71471980000001,32.9058609]},"id":"8f44c0a2e049d53-17b73f7c268ba091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e3204a2-17d67a68d25fe574","8f44c0a2e049d53-17b73f7c268ba091"]},"geometry":{"type":"LineString","coordinates":[[-83.7167987,32.905911],[-83.71527730000001,32.9059352],[-83.7149933,32.9059134],[-83.71471980000001,32.9058609]]},"id":"8844c0a2e3fffff-17d73cf3f434cf66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71582140000001,32.9041135]},"id":"8f44c0a2ea938c0-13fefccba09da1b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154419,32.903829900000005]},"id":"8f44c0a2ea92162-13bfbdb8df8d862c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea92162-13bfbdb8df8d862c","8f44c0a2ea938c0-13fefccba09da1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71582140000001,32.9041135],[-83.7154706,32.9041116],[-83.7154419,32.903829900000005]]},"id":"8a44c0a2ea97fff-13d6fd6e460b2d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712888,32.9236631]},"id":"8f44c0a2aa16d29-13bf73f50987b0d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71281420000001,32.923488]},"id":"8f44c0a2ab894d3-13be44232667fea3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ab894d3-13be44232667fea3","8f44c0a2aa16d29-13bf73f50987b0d0"]},"geometry":{"type":"LineString","coordinates":[[-83.712888,32.9236631],[-83.71281420000001,32.923488]]},"id":"8a44c0a2ab8ffff-13f6c40c163b1b2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71203410000001,32.923903100000004]},"id":"8f44c0a2aaa09aa-13bf760ab36dbd05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7119629,32.9237358]},"id":"8f44c0a2aaa47ac-13d6e63731b6e7df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aaa47ac-13d6e63731b6e7df","8f44c0a2aaa09aa-13bf760ab36dbd05"]},"geometry":{"type":"LineString","coordinates":[[-83.71203410000001,32.923903100000004],[-83.7119629,32.9237358]]},"id":"8a44c0a2aaa7fff-139f7620fb6921f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837953,32.8988772]},"id":"8f44c0a05c22d73-17b6cafbf39fd76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68451370000001,32.898515700000004]},"id":"8f44c0a05c2414c-13d6d93afe50e8a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05c22d73-17b6cafbf39fd76a","8f44c0a05c2414c-13d6d93afe50e8a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6837953,32.8988772],[-83.68405770000001,32.898752300000005],[-83.6842378,32.8986779],[-83.68451370000001,32.898515700000004]]},"id":"8a44c0a05c27fff-17be8a18f51fbdd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68484810000001,32.8977591]},"id":"8f44c0a05d0eaca-13fff869fb626c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6860182,32.899275200000005]},"id":"8f44c0a05d51883-179f858ea2435ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d51883-179f858ea2435ffd","8f44c0a05d0eaca-13fff869fb626c90"]},"geometry":{"type":"LineString","coordinates":[[-83.68484810000001,32.8977591],[-83.684534,32.898134],[-83.68451900000001,32.8981865],[-83.6845359,32.8982279],[-83.6847276,32.8983711],[-83.68485720000001,32.898487],[-83.685108,32.898793500000004],[-83.6854575,32.8991922],[-83.68569000000001,32.899466700000005],[-83.68575480000001,32.899466700000005],[-83.6860182,32.899275200000005]]},"id":"8844c0a05dfffff-17d6c7b666ace573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708336,32.9230973]},"id":"8f44c0a2a1422ea-17d7df1208fb4f5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7080608,32.922498700000006]},"id":"8f44c0a2a155b16-17d7ffbe08dbf26f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a155b16-17d7ffbe08dbf26f","8f44c0a2a1422ea-17d7df1208fb4f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.708336,32.9230973],[-83.7080444,32.923196000000004],[-83.70799790000001,32.923196000000004],[-83.7079669,32.923161300000004],[-83.70774990000001,32.9226647],[-83.7077421,32.9226387],[-83.7077512,32.922615900000004],[-83.7080608,32.922498700000006]]},"id":"8944c0a2a17ffff-17d67001626bcc28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73525020000001,32.9268949]},"id":"8f44c0a2827425c-139f5d5ca5434ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28271169-13dfccd5eb1e6794","8f44c0a2827425c-139f5d5ca5434ef0"]},"geometry":{"type":"LineString","coordinates":[[-83.7354658,32.927436400000005],[-83.73525020000001,32.9268949]]},"id":"8a44c0a28277fff-13b69d19480a6bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73552550000001,32.925688900000004]},"id":"8f44c0a2835e958-179f9cb0923e99b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7356663,32.9262954]},"id":"8f44c0a28358629-1796ac5893603ab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2835e958-179f9cb0923e99b0","8f44c0a28358629-1796ac5893603ab4"]},"geometry":{"type":"LineString","coordinates":[[-83.73552550000001,32.925688900000004],[-83.7356663,32.9262954]]},"id":"8a44c0a2835ffff-17df2c8497d86b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73423740000001,32.924961200000006]},"id":"8f44c0a28225755-17d6cfd5a1184e95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7341459,32.925388000000005]},"id":"8f44c0a28221763-17df900ed7c02976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28225755-17d6cfd5a1184e95","8f44c0a28221763-17df900ed7c02976"]},"geometry":{"type":"LineString","coordinates":[[-83.73423740000001,32.924961200000006],[-83.7342191,32.9249719],[-83.7342007,32.9249906],[-83.73418960000001,32.9250088],[-83.73415700000001,32.9251857],[-83.7341459,32.925388000000005]]},"id":"8a44c0a28227fff-17d6100043ecfbc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7346254,32.925297300000004]},"id":"8f44c0a28352741-17b6dee32abb1f87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28352741-17b6dee32abb1f87","8f44c0a28225755-17d6cfd5a1184e95"]},"geometry":{"type":"LineString","coordinates":[[-83.7346254,32.925297300000004],[-83.7346309,32.9250525],[-83.7346124,32.9250214],[-83.7345708,32.924988400000004],[-83.73448280000001,32.924968],[-83.73423740000001,32.924961200000006]]},"id":"8844c0a283fffff-179e8f296563502c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71945410000001,32.9046515]},"id":"8f44c0a2eaf4b5c-13bf33ed3854875b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7192127,32.9043176]},"id":"8f44c0a2ea1a636-13feb484101fcb89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea1a636-13feb484101fcb89","8f44c0a2eaf4b5c-13bf33ed3854875b"]},"geometry":{"type":"LineString","coordinates":[[-83.71945410000001,32.9046515],[-83.7192127,32.9043176]]},"id":"8844c0a2ebfffff-13d6f438afd6edac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7482536,32.908800500000005]},"id":"8f44c0a2dcea00a-17f5fd9d8c7feba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74749410000001,32.908873]},"id":"8f44c0a2dcc1494-179def783b4ccffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2dcc1494-179def783b4ccffd","8f44c0a2dcea00a-17f5fd9d8c7feba1"]},"geometry":{"type":"LineString","coordinates":[[-83.7482536,32.908800500000005],[-83.7481241,32.908853400000005],[-83.74799850000001,32.908882000000006],[-83.74749410000001,32.908873]]},"id":"8944c0a2dcfffff-179dfe87cc9af8aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62837970000001,32.905211]},"id":"8f44c0a153267a6-179ff246b3bbfb6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6287425,32.9075725]},"id":"8f44c0a153080e2-13f7d163f3abfdd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a153267a6-179ff246b3bbfb6a","8f44c0a153080e2-13f7d163f3abfdd4"]},"geometry":{"type":"LineString","coordinates":[[-83.62837970000001,32.905211],[-83.62845440000001,32.905307300000004],[-83.6285404,32.9054875],[-83.6286498,32.9058675],[-83.62870740000001,32.905999900000005],[-83.62877080000001,32.906199],[-83.62877420000001,32.9062794],[-83.62874380000001,32.906421800000004],[-83.62868680000001,32.906534400000005],[-83.6285793,32.9066534],[-83.62846160000001,32.906737400000004],[-83.62836030000001,32.9068362],[-83.6282869,32.9069371],[-83.6282527,32.90702],[-83.6282451,32.907081600000005],[-83.6282742,32.9071677],[-83.6283679,32.907293100000004],[-83.6285223,32.9074025],[-83.6287425,32.9075725]]},"id":"8944c0a1533ffff-17bf71e16d928ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68764180000001,32.9076891]},"id":"8f44c0a050006f5-13bfb197ecdecc8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6868903,32.907925]},"id":"8f44c0a050112e0-13bfa36d98870d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a050112e0-13bfa36d98870d2d","8f44c0a050006f5-13bfb197ecdecc8c"]},"geometry":{"type":"LineString","coordinates":[[-83.68764180000001,32.9076891],[-83.68751490000001,32.9077184],[-83.6873678,32.9077575],[-83.68728920000001,32.9077734],[-83.6868903,32.907925]]},"id":"8944c0a0503ffff-13fe82850af62c2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6874133,32.9071257]},"id":"8f44c0a05006102-13df9226be610469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867684,32.907275600000006]},"id":"8f44c0a0501542c-13b7c3b9c6a184d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05006102-13df9226be610469","8f44c0a0501542c-13b7c3b9c6a184d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6874133,32.9071257],[-83.6872889,32.9071433],[-83.68711400000001,32.9071942],[-83.686997,32.9072059],[-83.6869329,32.9072254],[-83.6867684,32.907275600000006]]},"id":"8944c0a0503ffff-13f692f1384121a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64656620000001,32.916167300000005]},"id":"8f44c0a02b95012-17def5e02c385ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a02b95012-17def5e02c385ec3","8f44c0a028e5396-17f7e6f1ef002f72"]},"geometry":{"type":"LineString","coordinates":[[-83.6461282,32.9131318],[-83.64619850000001,32.9132928],[-83.6462817,32.913521],[-83.6463488,32.913631],[-83.6464383,32.9137598],[-83.6465438,32.9138565],[-83.6467868,32.9140202],[-83.6471065,32.914183900000005],[-83.64773310000001,32.914557],[-83.6481775,32.9148871],[-83.6483917,32.9150991],[-83.64842370000001,32.915201100000004],[-83.64843330000001,32.9153004],[-83.64835980000001,32.915466800000004],[-83.64824150000001,32.915603700000005],[-83.64804330000001,32.9157889],[-83.6477363,32.9160358],[-83.6476468,32.916108200000004],[-83.6474934,32.91617],[-83.64721200000001,32.9161726],[-83.6467101,32.916167300000005],[-83.64656620000001,32.916167300000005]]},"id":"8744c0a02ffffff-13dee3dc9871c293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637079,32.906229100000004]},"id":"8f44c0a00c65ce9-179fbc0697727a29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627146,32.9068756]},"id":"8f44c0a00c44122-13bffe736b9351a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a00c65ce9-179fbc0697727a29","8f44c0a00c44122-13bffe736b9351a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6637079,32.906229100000004],[-83.6627146,32.9068756]]},"id":"8944c0a00c7ffff-17f7fd3d0df7e513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712833,32.916992]},"id":"8f44c0a2a9584d0-13f6441762488b98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71206000000001,32.916773]},"id":"8f44c0a2a82d45e-13d765fa89467203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a82d45e-13d765fa89467203","8f44c0a2a9584d0-13f6441762488b98"]},"geometry":{"type":"LineString","coordinates":[[-83.712833,32.916992],[-83.7128158,32.917099],[-83.7127883,32.917254],[-83.71272280000001,32.917365600000004],[-83.7126393,32.917346300000005],[-83.7125213,32.9172679],[-83.71239840000001,32.9172102],[-83.7121116,32.917182600000004],[-83.71193620000001,32.9171482],[-83.7119067,32.9170946],[-83.71206000000001,32.916773]]},"id":"8844c0a2a9fffff-13d7d5420257f58f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692789,32.9034422]},"id":"8f44c0a058ee525-17df7506e2f421c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693611,32.903699700000004]},"id":"8f44c0a058ed50e-13fe730526001dff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058ee525-17df7506e2f421c9","8f44c0a058ed50e-13fe730526001dff"]},"geometry":{"type":"LineString","coordinates":[[-83.692789,32.9034422],[-83.692831,32.903509400000004],[-83.692879,32.9035421],[-83.69293090000001,32.903551900000004],[-83.6932357,32.9034604],[-83.6932733,32.9034604],[-83.6933006,32.9034811],[-83.6933875,32.903702200000005],[-83.6934238,32.9037305],[-83.6934705,32.9037468],[-83.693611,32.903699700000004]]},"id":"8a44c0a058effff-139ff401787646e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133898,32.9091013]},"id":"8f44c0a2e38b184-179e52bb60c94507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7120222,32.9086979]},"id":"8f44c0a2e39ab62-17b67612271fd9dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e39ab62-17b67612271fd9dc","8f44c0a2e38b184-179e52bb60c94507"]},"geometry":{"type":"LineString","coordinates":[[-83.7133898,32.9091013],[-83.7132421,32.909340300000004],[-83.7132038,32.9093491],[-83.7128555,32.909217500000004],[-83.7126935,32.9092117],[-83.71208060000001,32.9092336],[-83.7119796,32.9092131],[-83.71194650000001,32.9091751],[-83.7120005,32.9088257],[-83.7120222,32.9086979]]},"id":"8844c0a2e3fffff-17d644c8580b4c08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942102,32.9068859]},"id":"8f44c0a05b9d016-13b7f18ea329df27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69462630000001,32.9078693]},"id":"8f44c0a05aa4241-139e708a9a4a7edc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b9d016-13b7f18ea329df27","8f44c0a05aa4241-139e708a9a4a7edc"]},"geometry":{"type":"LineString","coordinates":[[-83.6942102,32.9068859],[-83.6943687,32.9069748],[-83.6941831,32.9072327],[-83.6948474,32.9076277],[-83.69462630000001,32.9078693]]},"id":"8844c0a05bfffff-13f6f0e167d907d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6437765,32.9283528]},"id":"8f44c0a022c62e5-179eecafb10078c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6416713,32.9288734]},"id":"8f44c0a1c92e8b1-17f7f1d370c07b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a022c62e5-179eecafb10078c1","8f44c0a1c92e8b1-17f7f1d370c07b8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6437765,32.9283528],[-83.6436791,32.9284139],[-83.64351110000001,32.928515000000004],[-83.64323750000001,32.928672],[-83.6429865,32.9288143],[-83.6428061,32.9288848],[-83.64261300000001,32.928936400000005],[-83.64228250000001,32.9289773],[-83.6421232,32.9289781],[-83.64186600000001,32.928958800000004],[-83.6417289,32.9289307],[-83.6416713,32.928905],[-83.6416713,32.9288734]]},"id":"8744c0a02ffffff-17b7ff35cb1cf93f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376619,32.928174]},"id":"8f44c0a29c9e4da-17bec77951c73f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7382762,32.9280175]},"id":"8f44c0a29c9c091-13def5f96455c427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a29c9c091-13def5f96455c427","8f44c0a29c9e4da-17bec77951c73f0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7376619,32.928174],[-83.7382762,32.9280175]]},"id":"8a44c0a29c9ffff-13ffe6b967fc866b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5909764,32.915138]},"id":"8f44c0a10683611-17df6d97c86a10a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5905458,32.9151978]},"id":"8f44c0a1069c708-17ffeea4e3148624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a10683611-17df6d97c86a10a3","8f44c0a1069c708-17ffeea4e3148624"]},"geometry":{"type":"LineString","coordinates":[[-83.5909764,32.915138],[-83.5908587,32.9151432],[-83.5907555,32.915156200000006],[-83.5905458,32.9151978]]},"id":"8a44c0a1069ffff-17f76e1ee6062a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561366,32.7460152]},"id":"8f44c0ba62a949e-17f7b5e24c76ad26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56031250000001,32.7459788]},"id":"8f44c0ba62810d9-17dff874bb1e8a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba62810d9-17dff874bb1e8a91","8f44c0ba62a949e-17f7b5e24c76ad26"]},"geometry":{"type":"LineString","coordinates":[[-83.561366,32.7460152],[-83.5605338,32.7460906],[-83.56031250000001,32.7459788]]},"id":"8944c0ba62bffff-179ff731ac407c96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64158470000001,32.8534266]},"id":"8f44c0a30876d0d-17bff2099d8e47e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6434385,32.844805900000004]},"id":"8f44c0a34388a73-13b7fd82fed742cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a34388a73-13b7fd82fed742cb","8f44c0a30876d0d-17bff2099d8e47e6"]},"geometry":{"type":"LineString","coordinates":[[-83.64158470000001,32.8534266],[-83.6417919,32.8528241],[-83.64206220000001,32.851989100000004],[-83.6421454,32.8516804],[-83.6422744,32.851216400000006],[-83.64240310000001,32.850582],[-83.64249810000001,32.8497548],[-83.64252900000001,32.8491571],[-83.6425818,32.84817],[-83.6426428,32.847473300000004],[-83.6427688,32.8465784],[-83.6429152,32.8459705],[-83.6431561,32.8453595],[-83.6434385,32.844805900000004]]},"id":"8644c0a37ffffff-13b6ffd099ab7ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628832,32.849742]},"id":"8f44c0a30d8529d-17b7d12c0d6e7859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved"},"subType":"road","connectors":["8f44c0a30d8529d-17b7d12c0d6e7859","8f44c0a30d86b04-139792bed49b39dd"]},"geometry":{"type":"LineString","coordinates":[[-83.62818750000001,32.8492808],[-83.628832,32.849742]]},"id":"8a44c0a30d87fff-17b7b1f56a8926c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65472270000001,32.7789434]},"id":"8f44c0b117014e1-17d7f1f65feb8e69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6555651,32.7789656]},"id":"8f44c0b1172bcb6-17f7cfe7df655614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b117014e1-17d7f1f65feb8e69","8f44c0b1172bcb6-17f7cfe7df655614"]},"geometry":{"type":"LineString","coordinates":[[-83.65472270000001,32.7789434],[-83.6555651,32.7789656]]},"id":"8944c0b1173ffff-17ded0ef14d0e2f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65549220000001,32.7791151]},"id":"8f44c0b1172b4a2-13d6f015656bf2fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6546745,32.7791092]},"id":"8f44c0b11703a4b-13bfd21471459b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1172b4a2-13d6f015656bf2fe","8f44c0b11703a4b-13bfd21471459b69"]},"geometry":{"type":"LineString","coordinates":[[-83.65549220000001,32.7791151],[-83.6546745,32.7791092]]},"id":"8944c0b1173ffff-13d7f114e20fbe57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6546194,32.7792527]},"id":"8f44c0b1170e522-139ef236e957d5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6554176,32.779268200000004]},"id":"8f44c0b1170caad-13b6f0440b51af51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170e522-139ef236e957d5d9","8f44c0b1170caad-13b6f0440b51af51"]},"geometry":{"type":"LineString","coordinates":[[-83.6546194,32.7792527],[-83.6554176,32.779268200000004]]},"id":"8a44c0b1170ffff-139fd13d77039da5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553413,32.7794248]},"id":"8f44c0b1170c219-1396d073bf574406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6545555,32.7794188]},"id":"8f44c0b1170e4db-1396d25ed04faae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170e4db-1396d25ed04faae9","8f44c0b1170c219-1396d073bf574406"]},"geometry":{"type":"LineString","coordinates":[[-83.6553413,32.7794248],[-83.6545555,32.7794188]]},"id":"8a44c0b1170ffff-1396f1694252dc94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65450460000001,32.7795512]},"id":"8f44c0b1170adb6-13d7d27ea1843ed3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552728,32.779565500000004]},"id":"8f44c0b11708854-13def09e83864bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170adb6-13d7d27ea1843ed3","8f44c0b11708854-13def09e83864bfa"]},"geometry":{"type":"LineString","coordinates":[[-83.65450460000001,32.7795512],[-83.6552728,32.779565500000004]]},"id":"8a44c0b1170ffff-13ded18e9d3196a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65519470000001,32.7797257]},"id":"8f44c0b11708043-13d6d0cf5bb17eab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65444020000001,32.7797189]},"id":"8f44c0b1170a5aa-13bed2a6ed4f8326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11708043-13d6d0cf5bb17eab","8f44c0b1170a5aa-13bed2a6ed4f8326"]},"geometry":{"type":"LineString","coordinates":[[-83.65519470000001,32.7797257],[-83.65444020000001,32.7797189]]},"id":"8944c0b1173ffff-13bef1bb172d2f4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654387,32.7798571]},"id":"8f44c0b11719b1d-1396f2c82f21d87b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65512240000001,32.779874]},"id":"8f44c0b1170b936-139fd0fc89085312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11719b1d-1396f2c82f21d87b","8f44c0b1170b936-139fd0fc89085312"]},"geometry":{"type":"LineString","coordinates":[[-83.654387,32.7798571],[-83.65512240000001,32.779874]]},"id":"8944c0b1173ffff-139ed1e259e43b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6550471,32.7800287]},"id":"8f44c0b1170b123-13fff12b9b171229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6543242,32.7800206]},"id":"8f44c0b11719355-13fef2ef617d94de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170b123-13fff12b9b171229","8f44c0b11719355-13fef2ef617d94de"]},"geometry":{"type":"LineString","coordinates":[[-83.6550471,32.7800287],[-83.6543242,32.7800206]]},"id":"8944c0b1173ffff-13fff20d856f0ae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6541703,32.780128500000004]},"id":"8f44c0b1162691c-13bed34f9a810b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65415580000001,32.7803223]},"id":"8f44c0b1162614d-13b7f358a406f9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1162691c-13bed34f9a810b18","8f44c0b1162614d-13b7f358a406f9fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6541703,32.780128500000004],[-83.65415580000001,32.7803223]]},"id":"8b44c0b11626fff-13fef3541f55863c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6535235,32.7829769]},"id":"8f44c0b11619ae3-13b6d4e3dbeeb248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531987,32.783729900000004]},"id":"8f44c0b116e28c9-1397f5aed7bb0b90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116e28c9-1397f5aed7bb0b90","8f44c0b11619ae3-13b6d4e3dbeeb248"]},"geometry":{"type":"LineString","coordinates":[[-83.6535235,32.7829769],[-83.65347580000001,32.783185700000004],[-83.6531987,32.783729900000004]]},"id":"8844c0b117fffff-13b6d53debb41b04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650388,32.790822]},"id":"8f44c0b1ec51869-17d7dc8b8dd0caf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6523732,32.791477900000004]},"id":"8f44c0b1ec4d92a-17f7f7b2cfe5e3c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ec51869-17d7dc8b8dd0caf0","8f44c0b1ec4d92a-17f7f7b2cfe5e3c4"]},"geometry":{"type":"LineString","coordinates":[[-83.650388,32.790822],[-83.6506391,32.790943500000004],[-83.6508156,32.790967900000005],[-83.6508773,32.790976400000005],[-83.65103570000001,32.7908409],[-83.6512507,32.7906284],[-83.6514817,32.7905478],[-83.65149790000001,32.7903582],[-83.6515093,32.7902241],[-83.6515325,32.7900299],[-83.6518106,32.7895156],[-83.6522449,32.7895197],[-83.6523173,32.789922100000005],[-83.6523798,32.790373],[-83.6523583,32.791346000000004],[-83.6523732,32.791477900000004]]},"id":"8944c0b1ec7ffff-13d7f92bd1705cc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6395136,32.783498800000004]},"id":"8f44c0b1333040d-13f6f71809bcc2ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63931240000001,32.7821401]},"id":"8f44c0b1306c22a-17b7f795c43edde9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1333040d-13f6f71809bcc2ec","8f44c0b1306c22a-17b7f795c43edde9"]},"geometry":{"type":"LineString","coordinates":[[-83.6395136,32.783498800000004],[-83.63931240000001,32.7821401]]},"id":"8744c0b13ffffff-13def756e0a02932"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63910960000001,32.7821608]},"id":"8f44c0b1306c6e5-17b6f814806546b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6393268,32.783517700000004]},"id":"8f44c0b13332853-1396f78cc552ce4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1306c6e5-17b6f814806546b4","8f44c0b13332853-1396f78cc552ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.63910960000001,32.7821608],[-83.6393268,32.783517700000004]]},"id":"8744c0b13ffffff-13def7d0a3e87007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63916350000001,32.7835722]},"id":"8f44c0b1333218c-13b6f7f2d6e4cb96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63893130000001,32.7835951]},"id":"8f44c0b13332486-13b6f883f48edfc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1333218c-13b6f7f2d6e4cb96","8f44c0b13332486-13b6f883f48edfc3"]},"geometry":{"type":"LineString","coordinates":[[-83.63916350000001,32.7835722],[-83.63893130000001,32.7835951]]},"id":"8944c0b1333ffff-13bff83b65550dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639307,32.7845649]},"id":"8f44c0b133156c2-1797f7992e45672c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63922090000001,32.7839691]},"id":"8f44c0b13314859-179ef7cef0ae7a6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b133156c2-1797f7992e45672c","8f44c0b13314859-179ef7cef0ae7a6f"]},"geometry":{"type":"LineString","coordinates":[[-83.639307,32.7845649],[-83.639688,32.78452],[-83.63973940000001,32.7844268],[-83.63972860000001,32.7842335],[-83.63969610000001,32.7840289],[-83.6396366,32.783963],[-83.63947440000001,32.783938],[-83.63922090000001,32.7839691]]},"id":"8944c0b1333ffff-17d7f6f5a5548693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63563230000001,32.7768332]},"id":"8f44c0b131066e6-13b7c091dbd58ded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63673700000001,32.776857]},"id":"8f44c0b13105baa-13bffddf63413342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b131066e6-13b7c091dbd58ded","8f44c0b13105baa-13bffddf63413342"]},"geometry":{"type":"LineString","coordinates":[[-83.63563230000001,32.7768332],[-83.63626520000001,32.7769009],[-83.636528,32.7768873],[-83.63673700000001,32.776857]]},"id":"8a44c0b13107fff-13deff388599ee9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6265169,32.7716397]},"id":"8f44c0b1236b2e8-1797d6d2fb213a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1236b2e8-1797d6d2fb213a4b","8f44c0b13c9d796-179f74e70ec03a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6265169,32.7716397],[-83.62657440000001,32.7718398],[-83.62684110000001,32.772164100000005],[-83.6269355,32.772357400000004],[-83.62694780000001,32.773088900000005],[-83.627194,32.773289000000005],[-83.62730400000001,32.7741095]]},"id":"8844c0b13dfffff-13ff35b1c928ff6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6308795,32.7741344]},"id":"8f44c0b13ce6b63-179f0c2c5be4152a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6315788,32.774120700000005]},"id":"8f44c0b13c0b29d-17977a7744e78412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce6b63-179f0c2c5be4152a","8f44c0b13c0b29d-17977a7744e78412"]},"geometry":{"type":"LineString","coordinates":[[-83.6308795,32.7741344],[-83.6315788,32.774120700000005]]},"id":"8844c0b13dfffff-1797cb51d920367f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6306534,32.774331000000004]},"id":"8f44c0b13ce62f6-1797ecb9ae400e0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6315613,32.774314600000004]},"id":"8f44c0b13ce5bb2-179faa82352b083e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce62f6-1797ecb9ae400e0a","8f44c0b13ce5bb2-179faa82352b083e"]},"geometry":{"type":"LineString","coordinates":[[-83.6306534,32.774331000000004],[-83.6315613,32.774314600000004]]},"id":"8a44c0b13ce7fff-179fcb9de685e078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6304793,32.774755400000004]},"id":"8f44c0b13ce2291-179f2d267a8cd088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63011180000001,32.7749107]},"id":"8f44c0b13cf12e9-17ff3e0c26d36164"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cf12e9-17ff3e0c26d36164","8f44c0b13ce2291-179f2d267a8cd088"]},"geometry":{"type":"LineString","coordinates":[[-83.6304793,32.774755400000004],[-83.63002150000001,32.7747589],[-83.63011180000001,32.7749107]]},"id":"8944c0b13cfffff-17bfcdd58e3676a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630477,32.774576]},"id":"8f44c0b13ce2006-17bf0d27efb31841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63016920000001,32.7745795]},"id":"8f44c0b13cf1863-17b73de845e96ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce2006-17bf0d27efb31841","8f44c0b13cf1863-17b73de845e96ed1"]},"geometry":{"type":"LineString","coordinates":[[-83.630477,32.774576],[-83.63016920000001,32.7745795]]},"id":"8944c0b13cfffff-17bf2d881cc35dc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63146180000001,32.774598600000004]},"id":"8f44c0b13ce192e-17bf2ac069308f2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce192e-17bf2ac069308f2e","8f44c0b13ce2291-179f2d267a8cd088"]},"geometry":{"type":"LineString","coordinates":[[-83.63146180000001,32.774598600000004],[-83.6314619,32.774752],[-83.6304793,32.774755400000004]]},"id":"8a44c0b13ce7fff-17977bc9f913b7b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143505,32.8302714]},"id":"8f44c0ba969cd51-17b7b486fb2bded7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61506270000001,32.829979900000005]},"id":"8f44c0ba9680314-17f772c9d99b3aab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9680314-17f772c9d99b3aab","8f44c0ba969cd51-17b7b486fb2bded7"]},"geometry":{"type":"LineString","coordinates":[[-83.6143505,32.8302714],[-83.61506270000001,32.829979900000005]]},"id":"8944c0ba96bffff-17dfb3a862ff0351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6144974,32.830380500000004]},"id":"8f44c0ba969cbb6-17fff42b2aea0088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61513790000001,32.8301115]},"id":"8f44c0ba968026b-17d7b29ad7a24417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba968026b-17d7b29ad7a24417","8f44c0ba969cbb6-17fff42b2aea0088"]},"geometry":{"type":"LineString","coordinates":[[-83.6144974,32.830380500000004],[-83.61513790000001,32.8301115]]},"id":"8944c0ba96bffff-1797f362f7fefb58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6146271,32.8304988]},"id":"8f44c0ba969ca45-17b7f3da158f1b5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6152193,32.8302539]},"id":"8f44c0ba968146e-179fb267f50919e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba968146e-179fb267f50919e8","8f44c0ba969ca45-17b7f3da158f1b5f"]},"geometry":{"type":"LineString","coordinates":[[-83.6146271,32.8304988],[-83.6152193,32.8302539]]},"id":"8944c0ba96bffff-17ff73210488920f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6147188,32.8306194]},"id":"8f44c0ba969dd59-179733a0c5881b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61522690000001,32.8304277]},"id":"8f44c0ba96816c1-179f726334446fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96816c1-179f726334446fba","8f44c0ba969dd59-179733a0c5881b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6147188,32.8306194],[-83.61522690000001,32.8304277]]},"id":"8944c0ba96bffff-17d77301fc881353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6235674,32.8344207]},"id":"8f44c0a3690e1a5-17dffe0664a47732"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62326390000001,32.834771]},"id":"8f44c0a3691d260-13b7fec41ef528af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3691d260-13b7fec41ef528af","8f44c0a3690e1a5-17dffe0664a47732"]},"geometry":{"type":"LineString","coordinates":[[-83.6235674,32.8344207],[-83.62326390000001,32.834771]]},"id":"8944c0a3693ffff-17b77e6541baacfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61252590000001,32.827805000000005]},"id":"8f44c0babb402f6-17b738fb514c2078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6131857,32.8283987]},"id":"8f44c0babb4c769-1397375efb408de2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb402f6-17b738fb514c2078","8f44c0babb4c769-1397375efb408de2"]},"geometry":{"type":"LineString","coordinates":[[-83.61252590000001,32.827805000000005],[-83.6131857,32.8283987]]},"id":"8944c0babb7ffff-17dfb82d2c27d6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61233610000001,32.8278389]},"id":"8f44c0babb406db-17b77971fb734e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6131349,32.8285458]},"id":"8f44c0babb4898b-13f7377ebfc43d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb406db-17b77971fb734e1b","8f44c0babb4898b-13f7377ebfc43d38"]},"geometry":{"type":"LineString","coordinates":[[-83.61233610000001,32.8278389],[-83.6131349,32.8285458]]},"id":"8944c0babb7ffff-139778785b00e819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61192270000001,32.827912600000005]},"id":"8f44c0babb42651-17f77a745220dc3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61294430000001,32.828772300000004]},"id":"8f44c0babb48712-13ffb7f5d7427981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb42651-17f77a745220dc3f","8f44c0babb48712-13ffb7f5d7427981"]},"geometry":{"type":"LineString","coordinates":[[-83.61192270000001,32.827912600000005],[-83.61226210000001,32.8282151],[-83.61294430000001,32.828772300000004]]},"id":"8944c0babb7ffff-13f73937b886651e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61303170000001,32.8286715]},"id":"8f44c0babb48188-13bfb7bf32971977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6121292,32.8278758]},"id":"8f44c0babb4235e-17df79f342040940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb4235e-17df79f342040940","8f44c0babb48188-13bfb7bf32971977"]},"geometry":{"type":"LineString","coordinates":[[-83.61303170000001,32.8286715],[-83.6121292,32.8278758]]},"id":"8944c0babb7ffff-13d738d946ebab7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64656570000001,32.7435622]},"id":"8f44c0b1476eac5-13f6e5e0759ad5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648054,32.742677900000004]},"id":"8f44c0b143958cd-17dff23e4fee8734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1476eac5-13f6e5e0759ad5d9","8f44c0b143958cd-17dff23e4fee8734"]},"geometry":{"type":"LineString","coordinates":[[-83.64656570000001,32.7435622],[-83.6465603,32.7428764],[-83.64663010000001,32.7427275],[-83.64677490000001,32.742677900000004],[-83.648054,32.742677900000004]]},"id":"8744c0b14ffffff-17bee4b0a604bbac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617762,32.7404874]},"id":"8f44c0b3369cbad-13f6e0bde975d755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637048,32.737096900000004]},"id":"8f44c0b337aa502-13bfbc0885e49128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b337aa502-13bfbc0885e49128","8f44c0b3369cbad-13f6e0bde975d755"]},"geometry":{"type":"LineString","coordinates":[[-83.6617762,32.7404874],[-83.6626031,32.7387491],[-83.66346560000001,32.737511500000004],[-83.6637048,32.737096900000004]]},"id":"8844c0b337fffff-17bffe85313f91a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6725401,32.747813]},"id":"8f44c0b158660a0-13d7a6767f8d8fa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6738919,32.7475017]},"id":"8f44c0b15949474-1396b32993039623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158660a0-13d7a6767f8d8fa7","8f44c0b15949474-1396b32993039623"]},"geometry":{"type":"LineString","coordinates":[[-83.6725401,32.747813],[-83.67269300000001,32.748237200000005],[-83.67296920000001,32.7483139],[-83.67327230000001,32.7483567],[-83.67385970000001,32.748221400000006],[-83.67392410000001,32.7477589],[-83.6738919,32.7475017]]},"id":"8844c0b159fffff-1796e482091bb782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6725718,32.7472146]},"id":"8f44c0b15959d99-13f7a662af14b391"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6727504,32.7477627]},"id":"8f44c0b15866ba4-13b7b5f3048040ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15959d99-13f7a662af14b391","8f44c0b15866ba4-13b7b5f3048040ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6725718,32.7472146],[-83.6727504,32.7477627]]},"id":"8844c0b159fffff-139ef62ad8f208a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6729517,32.7477183]},"id":"8f44c0b15864466-139ff575305bd514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6727666,32.747140900000005]},"id":"8f44c0b1595d651-13b7b5e8e5e03363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1595d651-13b7b5e8e5e03363","8f44c0b15864466-139ff575305bd514"]},"geometry":{"type":"LineString","coordinates":[[-83.6729517,32.7477183],[-83.6727666,32.747140900000005]]},"id":"8844c0b159fffff-13f7a5af1db80ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731482,32.747673]},"id":"8f44c0b15864166-13ffa4fa6494e292"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6729619,32.747080600000004]},"id":"8f44c0b1595d356-139fe56edb3f1072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1595d356-139fe56edb3f1072","8f44c0b15864166-13ffa4fa6494e292"]},"geometry":{"type":"LineString","coordinates":[[-83.6731482,32.747673],[-83.6729619,32.747080600000004]]},"id":"8944c0b1597ffff-13d6a534a4fb6cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6733566,32.7476244]},"id":"8f44c0b1594b4e6-13f7e478205d0338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731515,32.747026000000005]},"id":"8f44c0b1594e68a-13ffe4f85b89638a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594e68a-13ffe4f85b89638a","8f44c0b1594b4e6-13f7e478205d0338"]},"geometry":{"type":"LineString","coordinates":[[-83.6733566,32.7476244],[-83.6731515,32.747026000000005]]},"id":"8a44c0b1594ffff-13b6e4b841473383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6735586,32.7475785]},"id":"8f44c0b1594b026-13d6b3f9e3d848b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67339030000001,32.747028]},"id":"8f44c0b1594e21b-13fea463154745cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594e21b-13fea463154745cd","8f44c0b1594b026-13d6b3f9e3d848b6"]},"geometry":{"type":"LineString","coordinates":[[-83.6735586,32.7475785],[-83.67339030000001,32.747028]]},"id":"8a44c0b1594ffff-139eb42e7db91355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6737664,32.747529300000004]},"id":"8f44c0b1594949b-13b7f378047a4d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6736103,32.74703]},"id":"8f44c0b15948c0c-13ffe3d99eaa846c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15948c0c-13ffe3d99eaa846c","8f44c0b1594949b-13b7f378047a4d49"]},"geometry":{"type":"LineString","coordinates":[[-83.6737664,32.747529300000004],[-83.6736103,32.74703]]},"id":"8a44c0b1594ffff-139ff3a8c67a067e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6718627,32.7485689]},"id":"8f44c0b158716dc-17bfb81dd3237004"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67206680000001,32.748506]},"id":"8f44c0b15871215-179ee79e4029fac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15871215-179ee79e4029fac1","8f44c0b158716dc-17bfb81dd3237004"]},"geometry":{"type":"LineString","coordinates":[[-83.6718627,32.7485689],[-83.67193300000001,32.7486365],[-83.6720205,32.748756400000005],[-83.6721785,32.748685800000004],[-83.67206680000001,32.748506]]},"id":"8944c0b1587ffff-17f7e7aa878d5ca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6729547,32.7490228]},"id":"8f44c0b15845b5c-17dfe57350aef029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731572,32.7489259]},"id":"8f44c0b1586e0a9-179eb4f4c07d0db8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1586e0a9-179eb4f4c07d0db8","8f44c0b15845b5c-17dfe57350aef029"]},"geometry":{"type":"LineString","coordinates":[[-83.6729547,32.7490228],[-83.67280790000001,32.748772200000005],[-83.67300560000001,32.748691],[-83.6731572,32.7489259]]},"id":"8944c0b1587ffff-17def570461d95cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731113,32.748953900000004]},"id":"8f44c0b1586e726-17b6b5117c68d5db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67287830000001,32.749059800000005]},"id":"8f44c0b15845af4-17f6e5a3155b7f81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15845af4-17f6e5a3155b7f81","8f44c0b1586e726-17b6b5117c68d5db"]},"geometry":{"type":"LineString","coordinates":[[-83.6731113,32.748953900000004],[-83.6732719,32.7492046],[-83.6730271,32.7493069],[-83.67287830000001,32.749059800000005]]},"id":"8944c0b1587ffff-17b6f51a01c428aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6714558,32.7482072]},"id":"8f44c0b15870698-17dfa91c294a0611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67171450000001,32.7482733]},"id":"8f44c0b158702cb-17f6f87a710b903c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158702cb-17f6f87a710b903c","8f44c0b15870698-17dfa91c294a0611"]},"geometry":{"type":"LineString","coordinates":[[-83.6714558,32.7482072],[-83.67171450000001,32.7482733]]},"id":"8b44c0b15870fff-17f6b8cb5b2d9d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6693685,32.747361500000004]},"id":"8f44c0b1581cb73-13befe34b505df59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6695229,32.7468486]},"id":"8f44c0b158004e6-13feedd430d9cc1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158004e6-13feedd430d9cc1c","8f44c0b1581cb73-13befe34b505df59"]},"geometry":{"type":"LineString","coordinates":[[-83.6693685,32.747361500000004],[-83.6695229,32.7468486]]},"id":"8944c0b1583ffff-139ebe047f5e4fac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66922840000001,32.7473327]},"id":"8f44c0b1581cb96-13befe8c4adca817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6693747,32.7468153]},"id":"8f44c0b1580282b-13f7be30defd0b5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580282b-13f7be30defd0b5d","8f44c0b1581cb96-13befe8c4adca817"]},"geometry":{"type":"LineString","coordinates":[[-83.66922840000001,32.7473327],[-83.6693747,32.7468153]]},"id":"8944c0b1583ffff-139fee5e9949afe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66905960000001,32.7469759]},"id":"8f44c0b158024ee-13dffef5c3ad09cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669117,32.7467558]},"id":"8f44c0b15802d8e-13d6eed1ed102373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15802d8e-13d6eed1ed102373","8f44c0b158024ee-13dffef5c3ad09cc"]},"geometry":{"type":"LineString","coordinates":[[-83.66905960000001,32.7469759],[-83.669117,32.7467558]]},"id":"8b44c0b15802fff-1397bee3d97257fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6705379,32.7476027]},"id":"8f44c0b1580c319-13d7bb59d9d233ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67069310000001,32.7470811]},"id":"8f44c0b1582aa85-139fbaf8daea0421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582aa85-139fbaf8daea0421","8f44c0b1580c319-13d7bb59d9d233ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6705379,32.7476027],[-83.67069310000001,32.7470811]]},"id":"8944c0b1583ffff-13b6bb295c3cda57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67040680000001,32.7475776]},"id":"8f44c0b1580c0db-13d6ababcc3a8ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670564,32.7470517]},"id":"8f44c0b1582a000-13fffb498b535c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582a000-13fffb498b535c81","8f44c0b1580c0db-13d6ababcc3a8ace"]},"geometry":{"type":"LineString","coordinates":[[-83.67040680000001,32.7475776],[-83.670564,32.7470517]]},"id":"8944c0b1583ffff-139fbb7aa1237269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67026390000001,32.7475502]},"id":"8f44c0b1580c4cd-13b6ec051291ea9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67041130000001,32.747016800000004]},"id":"8f44c0b1582a550-13f7aba8feba845a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582a550-13f7aba8feba845a","8f44c0b1580c4cd-13b6ec051291ea9f"]},"geometry":{"type":"LineString","coordinates":[[-83.67026390000001,32.7475502],[-83.67041130000001,32.747016800000004]]},"id":"8944c0b1583ffff-139ebbd70144e5f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67336970000001,32.7461782]},"id":"8f44c0b15941d35-17dfe46ff75052cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6728319,32.7457525]},"id":"8f44c0b15946b9a-17dff5c018945f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15941d35-17dfe46ff75052cc","8f44c0b15946b9a-17dff5c018945f66"]},"geometry":{"type":"LineString","coordinates":[[-83.67336970000001,32.7461782],[-83.6727525,32.7461658],[-83.67277100000001,32.7460368],[-83.6728319,32.7457525]]},"id":"8a44c0b15947fff-179ff575c30920aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6732937,32.746740200000005]},"id":"8f44c0b1594ec45-13bea49f7c23abbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6732939,32.746859900000004]},"id":"8f44c0b1594e01e-1397f49f5a859372"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594e01e-1397f49f5a859372","8f44c0b1594ec45-13bea49f7c23abbf"]},"geometry":{"type":"LineString","coordinates":[[-83.6732937,32.746740200000005],[-83.6732939,32.746859900000004]]},"id":"8b44c0b1594efff-13deb49f6be2f780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67461300000001,32.7467831]},"id":"8f44c0b064b6d46-13d7f166ee75b94e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6740347,32.7466413]},"id":"8f44c0b1596b4aa-13fef2d05ca6eeff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1596b4aa-13fef2d05ca6eeff","8f44c0b064b6d46-13d7f166ee75b94e"]},"geometry":{"type":"LineString","coordinates":[[-83.67461300000001,32.7467831],[-83.67461660000001,32.7466164],[-83.6745538,32.7465916],[-83.67411410000001,32.746590000000005],[-83.6740347,32.7466413]]},"id":"8944c0b1597ffff-13feb1f565358a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67573660000001,32.746476]},"id":"8f44c0b06598284-13979ea8af8503b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67574730000001,32.7485386]},"id":"8f44c0b0648034a-179ebea1fb5075e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b06598284-13979ea8af8503b4","8f44c0b0648034a-179ebea1fb5075e5"]},"geometry":{"type":"LineString","coordinates":[[-83.67573660000001,32.746476],[-83.6757044,32.748380700000006],[-83.67574730000001,32.7485386]]},"id":"8844c0b065fffff-139fbeb278452db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67352620000001,32.7448964]},"id":"8f44c0b1596631e-17bee40e2664beb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731347,32.7447578]},"id":"8f44c0b1597595d-17f7a502d187bc44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1596631e-17bee40e2664beb1","8f44c0b1597595d-17f7a502d187bc44"]},"geometry":{"type":"LineString","coordinates":[[-83.67352620000001,32.7448964],[-83.6731347,32.7447578]]},"id":"8944c0b1597ffff-179ef488729b84eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67329690000001,32.7444627]},"id":"8f44c0b332dba25-13bfb49d7b348480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67366120000001,32.7446033]},"id":"8f44c0b159645b2-1797b3b9ceb77fee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b159645b2-1797b3b9ceb77fee","8f44c0b332dba25-13bfb49d7b348480"]},"geometry":{"type":"LineString","coordinates":[[-83.67329690000001,32.7444627],[-83.67366120000001,32.7446033]]},"id":"8944c0b332fffff-13d7a42b95ffb380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76265310000001,32.8773921]},"id":"8f44c0b5074334d-13b7da75d75af025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50743015-17dffaeba47fb71e","8f44c0b5074334d-13b7da75d75af025"]},"geometry":{"type":"LineString","coordinates":[[-83.76265310000001,32.8773921],[-83.7624646,32.8772347]]},"id":"8b44c0b50743fff-1395eab0ce0200a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7602607,32.8768302]},"id":"8f44c0b506211b5-17d7f04d1e1baf59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50620c4d-17fff1124881d860","8f44c0b506211b5-17d7f04d1e1baf59"]},"geometry":{"type":"LineString","coordinates":[[-83.7599452,32.876491800000004],[-83.7599452,32.8765544],[-83.7602031,32.8768205],[-83.7602607,32.8768302]]},"id":"8a44c0b50627fff-17f7d0c034006527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76030730000001,32.8768814]},"id":"8f44c0b50621030-17f7f02ff454cd34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50621030-17f7f02ff454cd34","8f44c0b506211b5-17d7f04d1e1baf59"]},"geometry":{"type":"LineString","coordinates":[[-83.7602607,32.8768302],[-83.76030730000001,32.8768814]]},"id":"8b44c0b50621fff-17f7f03e8e558115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7600046,32.8762999]},"id":"8f44c0b50624676-1797f0ed2436206e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50624676-1797f0ed2436206e","8f44c0b50620c4d-17fff1124881d860"]},"geometry":{"type":"LineString","coordinates":[[-83.7600046,32.8762999],[-83.7599452,32.876491800000004]]},"id":"8a44c0b50627fff-17d7f0ffbeef221a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50620c4d-17fff1124881d860","8f44c0b506211b5-17d7f04d1e1baf59"]},"geometry":{"type":"LineString","coordinates":[[-83.7602607,32.8768302],[-83.7602698,32.876776400000004],[-83.76001360000001,32.876511],[-83.7599452,32.876491800000004]]},"id":"8a44c0b50627fff-17ddd09d8a52b853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65838620000001,32.8816764]},"id":"8f44c0a3130969c-13b7c904adc9ff63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65793330000001,32.8816598]},"id":"8f44c0a3130b45e-139fea1fb4f1d125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a3130b45e-139fea1fb4f1d125","8f44c0a3130969c-13b7c904adc9ff63"]},"geometry":{"type":"LineString","coordinates":[[-83.65838620000001,32.8816764],[-83.6582721,32.8813048],[-83.6582551,32.8812766],[-83.65822320000001,32.881256900000004],[-83.6581798,32.8812598],[-83.6581283,32.881271000000005],[-83.6580938,32.8813005],[-83.6580941,32.8813308],[-83.6581141,32.8813783],[-83.6581621,32.8814822],[-83.6581884,32.8815532],[-83.65816930000001,32.881612100000005],[-83.6581154,32.8816511],[-83.65793330000001,32.8816598]]},"id":"8a44c0a3130ffff-13bec97ca4ed69c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65919620000001,32.8815842]},"id":"8f44c0a31372260-13fee70a60f00139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6590942,32.881915400000004]},"id":"8f44c0a31354ac2-13bfe74a2f47fa82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a31372260-13fee70a60f00139","8f44c0a31354ac2-13bfe74a2f47fa82"]},"geometry":{"type":"LineString","coordinates":[[-83.65919620000001,32.8815842],[-83.6590942,32.881915400000004]]},"id":"8944c0a3137ffff-13d7e72a41af7191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614228,32.885051600000004]},"id":"8f44c0b53812510-13f5cd76caf0be3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538a8994-17bded80b04458e8","8f44c0b53812510-13f5cd76caf0be3d"]},"geometry":{"type":"LineString","coordinates":[[-83.7614228,32.885051600000004],[-83.76141390000001,32.885660800000004],[-83.76140690000001,32.8858054]]},"id":"8944c0b538bffff-13d5ed7a827bb1e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7615562,32.8850551]},"id":"8f44c0b53812ce9-13f7fd2362107f1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b538a8994-17bded80b04458e8","8f44c0b53812ce9-13f7fd2362107f1a"]},"geometry":{"type":"LineString","coordinates":[[-83.76140690000001,32.8858054],[-83.7614849,32.8856807],[-83.7615334,32.8855766],[-83.7615517,32.8854928],[-83.7615562,32.8850551]]},"id":"8944c0b538bffff-13dddd36596c4dcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759145,32.8850271]},"id":"8f44c0b538b2362-13d5f3066e8ac726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75922960000001,32.8847418]},"id":"8f44c0b538b0581-13b7f2d183ca04c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b538b0581-13b7f2d183ca04c2","8f44c0b538b2362-13d5f3066e8ac726"]},"geometry":{"type":"LineString","coordinates":[[-83.759145,32.8850271],[-83.75922960000001,32.8847418]]},"id":"8a44c0b538b7fff-13fdd2ebfc93bca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75865830000001,32.885020600000004]},"id":"8f44c0b53d49a16-13d5f436913d0f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75866330000001,32.885547]},"id":"8f44c0b53890d06-179ff4337e2defdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53890d06-179ff4337e2defdd","8f44c0b53d49a16-13d5f436913d0f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.75865830000001,32.885020600000004],[-83.75861420000001,32.885110700000006],[-83.7586113,32.8852648],[-83.75860510000001,32.8854526],[-83.75866330000001,32.885547]]},"id":"8944c0b538bffff-13f7f44eab3ced05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53890d06-179ff4337e2defdd","8f44c0b53d49a16-13d5f436913d0f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.75866330000001,32.885547],[-83.7587013,32.8854683],[-83.7587098,32.8851202],[-83.75865830000001,32.885020600000004]]},"id":"8944c0b538bffff-13f5d41e2bdcf924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7586673,32.8840518]},"id":"8f44c0b53d6bcec-13f5f430f3503ea2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75814820000001,32.884080000000004]},"id":"8f44c0b53d4cd89-1397d5756c069cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d4cd89-1397d5756c069cbe","8f44c0b53d6bcec-13f5f430f3503ea2"]},"geometry":{"type":"LineString","coordinates":[[-83.7586673,32.8840518],[-83.7582881,32.884052000000004],[-83.75814820000001,32.884080000000004]]},"id":"8944c0b53d7ffff-13f7f4d3d97f3f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75866660000001,32.8841255]},"id":"8f44c0b53d6b19a-13b7f43169b9cd95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d4cd89-1397d5756c069cbe","8f44c0b53d6b19a-13b7f43169b9cd95"]},"geometry":{"type":"LineString","coordinates":[[-83.75814820000001,32.884080000000004],[-83.7582565,32.884118],[-83.75866660000001,32.8841255]]},"id":"8944c0b53d7ffff-139dd4d4f9be2ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55655270000001,32.8134369]},"id":"8f44c0b811a2c2b-179fd1a291028a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5546455,32.816830800000005]},"id":"8f44c0b810b3454-17d7c64a9f27e0e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b810b3454-17d7c64a9f27e0e3","8f44c0b811a2c2b-179fd1a291028a08"]},"geometry":{"type":"LineString","coordinates":[[-83.55655270000001,32.8134369],[-83.5565079,32.8134201],[-83.55649480000001,32.8134151],[-83.55588900000001,32.8131882],[-83.555829,32.8132218],[-83.55576900000001,32.8133192],[-83.5539778,32.8165889],[-83.5546455,32.816830800000005]]},"id":"8744c0b81ffffff-17b7e56697fd9725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55672580000001,32.813097500000005]},"id":"8f44c0b811a611e-13bff1366299aafc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55421890000001,32.8176512]},"id":"8f44c0b81093829-17dfc7553e982401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b811a611e-13bff1366299aafc","8f44c0b81093829-17dfc7553e982401"]},"geometry":{"type":"LineString","coordinates":[[-83.55672580000001,32.813097500000005],[-83.556634,32.8130651],[-83.55584590000001,32.8127872],[-83.5553098,32.8137843],[-83.5536249,32.8168509],[-83.5534975,32.8169875],[-83.55344910000001,32.8171094],[-83.5534645,32.8171832],[-83.55351060000001,32.8172792],[-83.55358310000001,32.8173586],[-83.5537084,32.8174251],[-83.55421890000001,32.8176512]]},"id":"8744c0b81ffffff-17ffc6062a84bf6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5680475,32.810974]},"id":"8f44c0baa4961b0-179fe5925dcb31e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5686788,32.8110026]},"id":"8f44c0baa494334-179fa407cb7727ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa494334-179fa407cb7727ec","8f44c0baa4961b0-179fe5925dcb31e9"]},"geometry":{"type":"LineString","coordinates":[[-83.5680475,32.810974],[-83.56822700000001,32.8110396],[-83.56840290000001,32.811056400000005],[-83.5685349,32.811042900000004],[-83.5686788,32.8110026]]},"id":"8a44c0baa497fff-17bfa4ce4b8463cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4b36e1-17b7a3530a5772a9","8f44c0baa494334-179fa407cb7727ec"]},"geometry":{"type":"LineString","coordinates":[[-83.568968,32.81102],[-83.5686788,32.8110026]]},"id":"8a44c0baa497fff-17b7b3ad66d1079c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56790760000001,32.810093300000005]},"id":"8f44c0b81948995-13f7f5e9c3d31b30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5678171,32.809936300000004]},"id":"8f44c0b8194c794-1397b622553ee3c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8194c794-1397b622553ee3c5","8f44c0b81948995-13f7f5e9c3d31b30"]},"geometry":{"type":"LineString","coordinates":[[-83.56790760000001,32.810093300000005],[-83.5683501,32.8099045],[-83.5682563,32.809749100000005],[-83.5678171,32.809936300000004]]},"id":"8944c0b8197ffff-13fff5664dc2155c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56577130000001,32.8131983]},"id":"8f44c0b8185815d-13fffb20f77dc776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5650114,32.8136985]},"id":"8f44c0b81bb456e-17b7bcfbe930a81a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8185815d-13fffb20f77dc776","8f44c0b81bb456e-17b7bcfbe930a81a"]},"geometry":{"type":"LineString","coordinates":[[-83.56577130000001,32.8131983],[-83.56503160000001,32.8135137],[-83.56499070000001,32.813574700000004],[-83.5650114,32.8136985]]},"id":"8844c0b819fffff-13ffbc3940682dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56326320000001,32.8127872]},"id":"8f44c0b818c0964-13ffb1408454cbf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5630294,32.8124101]},"id":"8f44c0b818c4c98-139ff1d2aa7405e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c0964-13ffb1408454cbf8","8f44c0b818c4c98-139ff1d2aa7405e6"]},"geometry":{"type":"LineString","coordinates":[[-83.56326320000001,32.8127872],[-83.5630294,32.8124101]]},"id":"8a44c0b818c7fff-1397b18997fea583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56363420000001,32.812620700000004]},"id":"8f44c0b818e3641-139ff058afe23b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56451410000001,32.8108384]},"id":"8f44c0b81808d60-17b7ae32bd5738e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81808d60-17b7ae32bd5738e0","8f44c0b818e3641-139ff058afe23b99"]},"geometry":{"type":"LineString","coordinates":[[-83.56363420000001,32.812620700000004],[-83.5633286,32.8121238],[-83.5634924,32.8119366],[-83.5636659,32.8117852],[-83.5639312,32.811609100000005],[-83.5640327,32.8114962],[-83.5640884,32.8111467],[-83.56451410000001,32.8108384]]},"id":"8844c0b819fffff-17dfefe44236018b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5635491,32.808562900000005]},"id":"8f44c0b81834220-13b7f08dd7279b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5651924,32.8089527]},"id":"8f44c0b81825316-139ffc8acfe4930a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81834220-13b7f08dd7279b6a","8f44c0b81825316-139ffc8acfe4930a"]},"geometry":{"type":"LineString","coordinates":[[-83.5635491,32.808562900000005],[-83.5643367,32.8082335],[-83.5644407,32.8082067],[-83.5645566,32.808223500000004],[-83.56471260000001,32.8083108],[-83.5648565,32.8084721],[-83.5651924,32.8089527]]},"id":"8844c0b819fffff-17f7fe5837e9adee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54277540000001,32.810715]},"id":"8f44c0b8028b344-17ffe345649b546b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5416986,32.8092818]},"id":"8f44c0b80282383-13ffe5e66941da4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80282383-13ffe5e66941da4e","8f44c0b8028b344-17ffe345649b546b"]},"geometry":{"type":"LineString","coordinates":[[-83.54277540000001,32.810715],[-83.5416986,32.8092818]]},"id":"8944c0b802bffff-13bfe495e0e04842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560484,32.799253]},"id":"8f44c0b85700cda-13ffb809831302b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5599564,32.7993557]},"id":"8f44c0b85702502-13bff95345f7227a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85702502-13bff95345f7227a","8f44c0b85700cda-13ffb809831302b0"]},"geometry":{"type":"LineString","coordinates":[[-83.560484,32.799253],[-83.56035320000001,32.799298300000004],[-83.56016000000001,32.7993321],[-83.5599564,32.7993557]]},"id":"8a44c0b85707fff-1397b8accde7e7ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5435454,32.8051507]},"id":"8f44c0b803a07b3-17d7f1642eae83da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5420996,32.8048267]},"id":"8f44c0b803b62f0-179ff4ebc541c0e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b803a07b3-17d7f1642eae83da","8f44c0b803b62f0-179ff4ebc541c0e2"]},"geometry":{"type":"LineString","coordinates":[[-83.5435454,32.8051507],[-83.54340160000001,32.804926800000004],[-83.54330010000001,32.804891500000004],[-83.5431671,32.804853200000004],[-83.5430096,32.8048591],[-83.5425896,32.8048591],[-83.5420996,32.8048267]]},"id":"8944c0b803bffff-17bfe30683455bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53861330000001,32.8045678]},"id":"8f44c0b80728ba1-17f7ed6ebdc383a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5405315,32.8046267]},"id":"8f44c0b800ddb68-179ff8bfdc58e3ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b800ddb68-179ff8bfdc58e3ed","8f44c0b80728ba1-17f7ed6ebdc383a0"]},"geometry":{"type":"LineString","coordinates":[[-83.53861330000001,32.8045678],[-83.5405315,32.8046267]]},"id":"8744c0b80ffffff-17fffb174c0ef741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53898190000001,32.806834300000006]},"id":"8f44c0b8074251b-13fffc8857a86b45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5394613,32.8075275]},"id":"8f44c0b8075d8ab-17b7fb5cb4951f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8074251b-13fffc8857a86b45","8f44c0b8075d8ab-17b7fb5cb4951f03"]},"geometry":{"type":"LineString","coordinates":[[-83.53898190000001,32.806834300000006],[-83.539056,32.8069714],[-83.5394613,32.8075275]]},"id":"8944c0b8077ffff-17dfebf70e59231e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539724,32.809597700000005]},"id":"8f44c0b8066e013-13bffab88da67ca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54076710000001,32.8084816]},"id":"8f44c0b80294422-17f7e82c95967594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8066e013-13bffab88da67ca6","8f44c0b80294422-17f7e82c95967594"]},"geometry":{"type":"LineString","coordinates":[[-83.539724,32.809597700000005],[-83.54021490000001,32.8094622],[-83.5402693,32.8093968],[-83.54027710000001,32.809305300000005],[-83.54007490000001,32.8088216],[-83.54005930000001,32.8087431],[-83.5401138,32.8086647],[-83.54076710000001,32.8084816]]},"id":"8844c0b807fffff-13d7f9886b3afae5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7585303,32.751436600000005]},"id":"8f44c0b2ebb2858-17bff4869f6bf64c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75855680000001,32.7510181]},"id":"8f44c0b2ebb6128-13bfd4760670c811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2ebb6128-13bfd4760670c811","8f44c0b2ebb2858-17bff4869f6bf64c"]},"geometry":{"type":"LineString","coordinates":[[-83.7585303,32.751436600000005],[-83.75855680000001,32.7510181]]},"id":"8a44c0b2ebb7fff-17bdf47e43b30485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758342,32.7502312]},"id":"8f44c0b2e8e88d5-13bfd4fc452afa0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7582785,32.7516813]},"id":"8f44c0b2ebb26e6-17ddd523f2cb9b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2e8e88d5-13bfd4fc452afa0f","8f44c0b2ebb26e6-17ddd523f2cb9b24"]},"geometry":{"type":"LineString","coordinates":[[-83.758342,32.7502312],[-83.7582785,32.7516813]]},"id":"8744c0b2effffff-1397f51021462bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7602774,32.7503364]},"id":"8f44c0b2e85da2e-1395d042a948cc4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75960810000001,32.7502554]},"id":"8f44c0b2e858d6c-13ddf1e4f9c0cea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b2e85da2e-1395d042a948cc4b","8f44c0b2e858d6c-13ddf1e4f9c0cea9"]},"geometry":{"type":"LineString","coordinates":[[-83.7602774,32.7503364],[-83.76006600000001,32.7503863],[-83.7599612,32.750376200000005],[-83.7598385,32.7503486],[-83.7596979,32.7502882],[-83.75960810000001,32.7502554]]},"id":"8944c0b2e87ffff-1395d11623f71787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76948800000001,32.750557]},"id":"8f44c0b2c4438a8-139fb9c60839cb3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769479,32.749726]},"id":"8f44c0b2c444533-1397f9cba2803c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b2c444533-1397f9cba2803c37","8f44c0b2c4438a8-139fb9c60839cb3a"]},"geometry":{"type":"LineString","coordinates":[[-83.76948800000001,32.750557],[-83.769473,32.750354],[-83.769469,32.750166],[-83.769479,32.749726]]},"id":"8a44c0b2c447fff-1397b9ce34eecdb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6379565,32.855448800000005]},"id":"8f44c0a308d09b5-139ffae53ec08376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a308d09b5-139ffae53ec08376","8f44c0a30bb341a-17f7f3f0fab248c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6408049,32.857404100000004],[-83.6404349,32.8571009],[-83.63997280000001,32.856751800000005],[-83.63948760000001,32.8564203],[-83.6379565,32.855448800000005]]},"id":"8744c0a30ffffff-17fef75c829f30a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53404850000001,32.8374777]},"id":"8f44c0b9d819cea-17bff893b58b0a76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53373660000001,32.8366412]},"id":"8f44c0b9d81ccb0-17b7f956af030841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0b9d819cea-17bff893b58b0a76","8f44c0b9d81ccb0-17b7f956af030841"]},"geometry":{"type":"LineString","coordinates":[[-83.53404850000001,32.8374777],[-83.53400810000001,32.8374302],[-83.53397480000001,32.837339400000005],[-83.53378570000001,32.8367352],[-83.53373660000001,32.8366412]]},"id":"8a44c0b9d81ffff-17bff8f7c0bb68de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5366869,32.8366844]},"id":"8f44c0b9d95a05b-17dff222b1afa34e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5363586,32.8365396]},"id":"8f44c0b9d829960-17f7f2efe7f89652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b9d829960-17f7f2efe7f89652","8f44c0b9d95a05b-17dff222b1afa34e"]},"geometry":{"type":"LineString","coordinates":[[-83.5366869,32.8366844],[-83.53661430000001,32.8366287],[-83.5363586,32.8365396]]},"id":"8844c0b9d9fffff-179ff2861a817886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5496954,32.841641]},"id":"8f44c0b8e72a924-13fff2606921d489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54942790000001,32.8405982]},"id":"8f44c0b8e720c48-17dff3079a5e7fcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e720c48-17dff3079a5e7fcd","8f44c0b8e72a924-13fff2606921d489"]},"geometry":{"type":"LineString","coordinates":[[-83.5496954,32.841641],[-83.5495202,32.841382],[-83.5493955,32.8412462],[-83.549063,32.8410561],[-83.54891980000001,32.8409009],[-83.5489891,32.840765000000005],[-83.54904450000001,32.8406447],[-83.5492662,32.8405671],[-83.54942790000001,32.8405982]]},"id":"8944c0b8e73ffff-17fff374dfb19961"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5395936,32.8621429]},"id":"8f44c0b8a7a6536-13f7fb0a0aaa45f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539254,32.8624383]},"id":"8f44c0b8a7b5729-13bffbde4447af9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a7a6536-13f7fb0a0aaa45f7","8f44c0b8a7b5729-13bffbde4447af9f"]},"geometry":{"type":"LineString","coordinates":[[-83.5395936,32.8621429],[-83.539254,32.8624383]]},"id":"8944c0b8a7bffff-13d7eb7429765d68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.544976,32.859253700000004]},"id":"8f44c0b8a0acd11-13ffdde60b2a4088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5458562,32.859986400000004]},"id":"8f44c0b8a01a810-17b7dbbfe3de6b97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a0acd11-13ffdde60b2a4088","8f44c0b8a01a810-17b7dbbfe3de6b97"]},"geometry":{"type":"LineString","coordinates":[[-83.544976,32.859253700000004],[-83.5458562,32.859986400000004]]},"id":"8844c0b8a1fffff-17dfdcd2fea4412e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5454797,32.8508258]},"id":"8f44c0b8ad4241a-17d7fcab3e1e5503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5463847,32.8495204]},"id":"8f44c0b8ad66783-17b7da7596a273f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ad66783-17b7da7596a273f5","8f44c0b8ad4241a-17d7fcab3e1e5503"]},"geometry":{"type":"LineString","coordinates":[[-83.5454797,32.8508258],[-83.5460429,32.8507722],[-83.5461432,32.850732300000004],[-83.5462012,32.850670300000004],[-83.54624340000001,32.8505683],[-83.54622230000001,32.8498503],[-83.54625920000001,32.8497439],[-83.5463225,32.8496376],[-83.5463847,32.8495204]]},"id":"8944c0b8ad7ffff-17bffb28da7e5f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5457478,32.849546000000004]},"id":"8f44c0b8ad7086a-17b7dc03a3a1f91e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5455628,32.848941700000005]},"id":"8f44c0b8ad29a51-13bfdc7745b8ac9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ad7086a-17b7dc03a3a1f91e","8f44c0b8ad29a51-13bfdc7745b8ac9d"]},"geometry":{"type":"LineString","coordinates":[[-83.5457478,32.849546000000004],[-83.5455628,32.848941700000005]]},"id":"8844c0b8adfffff-13fffc3d73e57483"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5495063,32.853830300000006]},"id":"8f44c0b8a88c20d-17bff2d699eedc78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5492296,32.8549473]},"id":"8f44c0b8a125a20-13f7d3838b9cf4fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88c20d-17bff2d699eedc78","8f44c0b8a125a20-13f7d3838b9cf4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.5495063,32.853830300000006],[-83.5492296,32.8549473]]},"id":"8844c0b8a9fffff-139fd32d19062c1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5494963,32.8527828]},"id":"8f44c0b8a8ae55a-179fd2dcd23ce1ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5487105,32.8525233]},"id":"8f44c0b8a884192-13ffd4c7f4ab99ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a884192-13ffd4c7f4ab99ae","8f44c0b8a8ae55a-179fd2dcd23ce1ef"]},"geometry":{"type":"LineString","coordinates":[[-83.5494963,32.8527828],[-83.5490607,32.852616000000005],[-83.5487105,32.8525233]]},"id":"8944c0b8a8bffff-13d7f3d0511dfb8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5506258,32.8527392]},"id":"8f44c0b8a8132a3-1797d01aef5f16a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5507438,32.8525894]},"id":"8f44c0b8a813aa5-13b7efd1278e7f99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a813aa5-13b7efd1278e7f99","8f44c0b8a8132a3-1797d01aef5f16a5"]},"geometry":{"type":"LineString","coordinates":[[-83.5506258,32.8527392],[-83.5510076,32.8530947],[-83.55111840000001,32.8531168],[-83.5512028,32.853059200000004],[-83.5512133,32.8529883],[-83.5510972,32.8528243],[-83.5507438,32.8525894]]},"id":"8944c0b8a83ffff-17dfdf4b10e1ffe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7227941,32.875700200000004]},"id":"8f44c0a2180b99c-1796abc5b38f0a6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7231359,32.8761068]},"id":"8f44c0a21856126-179eeaf01f7de6e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180b99c-1796abc5b38f0a6b","8f44c0a21856126-179eeaf01f7de6e6"]},"geometry":{"type":"LineString","coordinates":[[-83.7227941,32.875700200000004],[-83.7231359,32.8761068]]},"id":"8844c0a219fffff-179fbb5ae9a873a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7173331,32.8748195]},"id":"8f44c0a21896201-13fe391ad3b163b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7174296,32.8751462]},"id":"8f44c0a2189068e-13b678de8d5f3156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21896201-13fe391ad3b163b5","8f44c0a2189068e-13b678de8d5f3156"]},"geometry":{"type":"LineString","coordinates":[[-83.7173331,32.8748195],[-83.7172888,32.8749175],[-83.71727410000001,32.874960300000005],[-83.71727940000001,32.8749817],[-83.7174296,32.8751462]]},"id":"8a44c0a21897fff-13d7f91cbea1d23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71627810000001,32.8749782]},"id":"8f44c0a21c60392-13df7bae3402e1b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160631,32.8747294]},"id":"8f44c0a21c66263-13b7fc349738a50d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c60392-13df7bae3402e1b5","8f44c0a21c66263-13b7fc349738a50d"]},"geometry":{"type":"LineString","coordinates":[[-83.71627810000001,32.8749782],[-83.7160631,32.8747294]]},"id":"8a44c0a21c67fff-13ffbbf166cf708b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160805,32.8753534]},"id":"8f44c0a21c63726-13b7fc29b72674f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7161344,32.8750835]},"id":"8f44c0a21c606de-139f3c080a750b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c606de-139f3c080a750b09","8f44c0a21c63726-13b7fc29b72674f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7160805,32.8753534],[-83.7159812,32.8753489],[-83.71583910000001,32.8752903],[-83.71598390000001,32.8749963],[-83.7161344,32.8750835]]},"id":"8a44c0a21c67fff-13df3c7466db593a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71651370000001,32.8752079]},"id":"8f44c0a21c61463-13defb1afdd34714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71678390000001,32.8750397]},"id":"8f44c0a21c61950-13f7fa721e67ab5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c61950-13f7fa721e67ab5d","8f44c0a21c61463-13defb1afdd34714"]},"geometry":{"type":"LineString","coordinates":[[-83.71651370000001,32.8752079],[-83.71642560000001,32.8751097],[-83.7166943,32.8749398],[-83.71678390000001,32.8750397]]},"id":"8a44c0a21c67fff-13fe7af110d0e1c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7156515,32.875771400000005]},"id":"8f44c0a21c408c1-17bf3d35d4c25a59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71575460000001,32.876128300000005]},"id":"8f44c0a21c41425-179e3cf5608acc19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c408c1-17bf3d35d4c25a59","8f44c0a21c41425-179e3cf5608acc19"]},"geometry":{"type":"LineString","coordinates":[[-83.7156515,32.875771400000005],[-83.7156326,32.875876000000005],[-83.71575460000001,32.876128300000005]]},"id":"8a44c0a21c47fff-17bebd2469f8989e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71600140000001,32.875692400000005]},"id":"8f44c0a21c451aa-179ffc5b24d321af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7156889,32.8757803]},"id":"8f44c0a21c40bb5-17d6bd1e7cd17c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c40bb5-17d6bd1e7cd17c0d","8f44c0a21c451aa-179ffc5b24d321af"]},"geometry":{"type":"LineString","coordinates":[[-83.71600140000001,32.875692400000005],[-83.7159142,32.8757217],[-83.71579080000001,32.875763400000004],[-83.7156889,32.8757803]]},"id":"8a44c0a21c47fff-17bebcbbfda41f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7147154,32.8764144]},"id":"8f44c0a21c5c4d6-17df3f7eef53f193"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715169,32.8755285]},"id":"8f44c0a21c460ad-13b77e636504ba87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c460ad-13b77e636504ba87","8f44c0a21c5c4d6-17df3f7eef53f193"]},"geometry":{"type":"LineString","coordinates":[[-83.7147154,32.8764144],[-83.715169,32.8755285]]},"id":"8944c0a21c7ffff-17be3ef124f04678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134518,32.8743563]},"id":"8f44c0a21c0ea1b-13def294afa2be5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152641,32.874989]},"id":"8f44c0a21c71c58-13d63e27fab48352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c71c58-13d63e27fab48352","8f44c0a21c0ea1b-13def294afa2be5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7134518,32.8743563],[-83.7152641,32.874989]]},"id":"8844c0a21dfffff-139e705e52934705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145162,32.8730157]},"id":"8f44c0a21d526e9-1796fffb6d2427a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7146984,32.872461]},"id":"8f44c0a21d560d9-17be3f89819539fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d526e9-1796fffb6d2427a8","8f44c0a21d560d9-17be3f89819539fe"]},"geometry":{"type":"LineString","coordinates":[[-83.7145162,32.8730157],[-83.714498,32.872975700000005],[-83.71449150000001,32.872933800000006],[-83.7145021,32.8728567],[-83.71456930000001,32.872662000000005],[-83.714633,32.8725357],[-83.7146984,32.872461]]},"id":"8a44c0a21d57fff-17deffdeb6ecfc10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71692730000001,32.8737008]},"id":"8f44c0a21d48d1d-17bf3a187ea6fe27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71694090000001,32.873995400000005]},"id":"8f44c0a21d48772-17f73a0ffc516c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d48d1d-17bf3a187ea6fe27","8f44c0a21d48772-17f73a0ffc516c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71692730000001,32.8737008],[-83.7168771,32.873736],[-83.716856,32.873760600000004],[-83.71684210000001,32.8737885],[-83.71683610000001,32.873818400000005],[-83.71683820000001,32.8738486],[-83.7168462,32.873873100000004],[-83.7168597,32.8738959],[-83.71694090000001,32.873995400000005]]},"id":"8b44c0a21d48fff-179eba38ea05573a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7174068,32.874817300000004]},"id":"8f44c0a21896348-13fef8eccb0ab753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7176099,32.875033200000004]},"id":"8f44c0a218900ec-13fff86ddcaf32ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21896348-13fef8eccb0ab753","8f44c0a218900ec-13fff86ddcaf32ff"]},"geometry":{"type":"LineString","coordinates":[[-83.7174068,32.874817300000004],[-83.7174437,32.874857500000005],[-83.7176099,32.875033200000004]]},"id":"8a44c0a21897fff-13be78ad72c0d4c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71526990000001,32.872826100000005]},"id":"8f44c0a21d5036c-179e7e245636ad48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7150026,32.873397700000005]},"id":"8f44c0a21c2d946-17f7becb6a474fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d5036c-179e7e245636ad48","8f44c0a21c2d946-17f7becb6a474fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.71526990000001,32.872826100000005],[-83.7150026,32.873397700000005]]},"id":"8944c0a21d7ffff-17befe77e6db2fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155762,32.8737112]},"id":"8f44c0a21d58cca-17b7bd64e99f581d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155458,32.874292100000005]},"id":"8f44c0a21d5b0ce-13b6bd77edb146d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d58cca-17b7bd64e99f581d","8f44c0a21d5b0ce-13b6bd77edb146d8"]},"geometry":{"type":"LineString","coordinates":[[-83.7155762,32.8737112],[-83.71554540000001,32.8738328],[-83.71553730000001,32.8740806],[-83.7155458,32.874292100000005]]},"id":"8a44c0a21d5ffff-17fe3d780a01c75c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71696700000001,32.873233]},"id":"8f44c0a21d4cdb6-179eb9ffa127edb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d48d1d-17bf3a187ea6fe27","8f44c0a21d4cdb6-179eb9ffa127edb5"]},"geometry":{"type":"LineString","coordinates":[[-83.71692730000001,32.8737008],[-83.7171392,32.8735656],[-83.71696800000001,32.8733676],[-83.71695840000001,32.8733513],[-83.71695220000001,32.8733339],[-83.7169497,32.8733045],[-83.7169566,32.8732756],[-83.71696700000001,32.873233]]},"id":"8944c0a21d7ffff-17be79db6284479d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71671280000001,32.8731412]},"id":"8f44c0a21d410a1-17d77a9e835c2413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d48d1d-17bf3a187ea6fe27","8f44c0a21d410a1-17d77a9e835c2413"]},"geometry":{"type":"LineString","coordinates":[[-83.71692730000001,32.8737008],[-83.71665180000001,32.8734059],[-83.7166361,32.8733851],[-83.7166248,32.873362400000005],[-83.71661830000001,32.8733384],[-83.7166167,32.873312],[-83.7166207,32.873285800000005],[-83.7166303,32.8732606],[-83.7166473,32.873225600000005],[-83.7166679,32.8731919],[-83.71669080000001,32.873161200000006],[-83.71671280000001,32.8731412]]},"id":"8944c0a21d7ffff-1796ba94f57516cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71719230000001,32.8745458]},"id":"8f44c0a21896c42-13bf3972d6a8c4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21896348-13fef8eccb0ab753","8f44c0a21896c42-13bf3972d6a8c4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71719230000001,32.8745458],[-83.7172472,32.8745469],[-83.71733710000001,32.874579600000004],[-83.7174176,32.8746663],[-83.7174591,32.8747215],[-83.7174524,32.8747643],[-83.7174068,32.874817300000004]]},"id":"8b44c0a21896fff-13fff906dec311db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6199474,32.843440900000004]},"id":"8f44c0a3615ea25-17dfb6dcee70a5e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191198,32.8444451]},"id":"8f44c0a36076a82-17d738e2257a5dae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36076a82-17d738e2257a5dae","8f44c0a3615ea25-17dfb6dcee70a5e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6199474,32.843440900000004],[-83.6191198,32.8444451]]},"id":"8844c0a361fffff-179f67df8d4abdb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620108,32.843534500000004]},"id":"8f44c0a3615c6ee-179f36788c4495e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61933520000001,32.8444334]},"id":"8f44c0a360746a4-17bfe85b8eee0fdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360746a4-17bfe85b8eee0fdd","8f44c0a3615c6ee-179f36788c4495e9"]},"geometry":{"type":"LineString","coordinates":[[-83.620108,32.843534500000004],[-83.61933520000001,32.8444334]]},"id":"8844c0a361fffff-17b7276a0431ec56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6202741,32.8436314]},"id":"8f44c0a3615894c-17d7a610b8e7f554"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6196125,32.8444249]},"id":"8f44c0a3607430d-17b7b7ae36b59b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615894c-17d7a610b8e7f554","8f44c0a3607430d-17b7b7ae36b59b58"]},"geometry":{"type":"LineString","coordinates":[[-83.6202741,32.8436314],[-83.6196125,32.8444249]]},"id":"8844c0a361fffff-17bfb6df73a7e144"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6204427,32.843729700000004]},"id":"8f44c0a3615d44b-179735a75841ccab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61987470000001,32.844414900000004]},"id":"8f44c0a3615b6eb-17bf770a59fa989f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d44b-179735a75841ccab","8f44c0a3615b6eb-17bf770a59fa989f"]},"geometry":{"type":"LineString","coordinates":[[-83.6204427,32.843729700000004],[-83.61987470000001,32.844414900000004]]},"id":"8844c0a361fffff-17df3658df8ccb1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6224157,32.842712]},"id":"8f44c0a3616d532-139720d63f94690b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6222269,32.8426142]},"id":"8f44c0a3616c741-13dfe14c303ec60b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3616c741-13dfe14c303ec60b","8f44c0a3616d532-139720d63f94690b"]},"geometry":{"type":"LineString","coordinates":[[-83.6224157,32.842712],[-83.62230960000001,32.8425292],[-83.6222269,32.8426142]]},"id":"8a44c0a3616ffff-13d7e10c948525b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62181650000001,32.8437104]},"id":"8f44c0a3614d1b6-17f7224cbc42e374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6213637,32.8442665]},"id":"8f44c0a3614b8d9-17d7b367bbeaf95b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614d1b6-17f7224cbc42e374","8f44c0a3614b8d9-17d7b367bbeaf95b"]},"geometry":{"type":"LineString","coordinates":[[-83.62181650000001,32.8437104],[-83.6213637,32.8442665]]},"id":"8a44c0a3614ffff-17b7e2da3c43db15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206758,32.845069]},"id":"8f44c0a36063930-13df2515aaac6cf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36063930-13df2515aaac6cf8","8f44c0a3614b8d9-17d7b367bbeaf95b"]},"geometry":{"type":"LineString","coordinates":[[-83.6206758,32.845069],[-83.6213637,32.8442665]]},"id":"8844c0a361fffff-13df743ebfc79f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6215315,32.8430745]},"id":"8f44c0a3616a44d-17ffb2fed459d475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62204100000001,32.842511900000005]},"id":"8f44c0a3616c4f1-139ff1c06176c054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3616c4f1-139ff1c06176c054","8f44c0a3616a44d-17ffb2fed459d475"]},"geometry":{"type":"LineString","coordinates":[[-83.6215315,32.8430745],[-83.62204100000001,32.842511900000005]]},"id":"8a44c0a3616ffff-13bfe25f9c56ed6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6213938,32.8429846]},"id":"8f44c0a3616a59b-17b76354edfe5aad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6218889,32.8424222]},"id":"8f44c0a3616e824-13d7e21f7fd193e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3616e824-13d7e21f7fd193e4","8f44c0a3616a59b-17b76354edfe5aad"]},"geometry":{"type":"LineString","coordinates":[[-83.6213938,32.8429846],[-83.6218889,32.8424222]]},"id":"8944c0a3617ffff-1397a2ba369b302d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62124,32.8428842]},"id":"8f44c0a36145640-13f7a3b5052a89b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6217326,32.842330600000004]},"id":"8f44c0a36161688-139fa28121d9f315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36161688-139fa28121d9f315","8f44c0a36145640-13f7a3b5052a89b9"]},"geometry":{"type":"LineString","coordinates":[[-83.62124,32.8428842],[-83.6217326,32.842330600000004]]},"id":"8944c0a3617ffff-13d7a31b1c848ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6210539,32.8427627]},"id":"8f44c0a36140b29-13b7b4295f9beaf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62153500000001,32.842219400000005]},"id":"8f44c0a36163bb3-13d722fcac6a8741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36163bb3-13d722fcac6a8741","8f44c0a36140b29-13b7b4295f9beaf3"]},"geometry":{"type":"LineString","coordinates":[[-83.6210539,32.8427627],[-83.62153500000001,32.842219400000005]]},"id":"8944c0a3617ffff-13fff392f9754338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6209219,32.8426765]},"id":"8f44c0a3614080e-13f7f47bd30af148"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62139880000001,32.8421347]},"id":"8f44c0a36163c65-139f3351ccb38f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3614080e-13f7f47bd30af148","8f44c0a36163c65-139f3351ccb38f1f"]},"geometry":{"type":"LineString","coordinates":[[-83.6209219,32.8426765],[-83.62139880000001,32.8421347]]},"id":"8944c0a3617ffff-13d7a3e6db858f8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6198009,32.8433555]},"id":"8f44c0a3615e8f3-179f37387f0e361b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6204946,32.8429379]},"id":"8f44c0a36142a1e-17973586eb907dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615e8f3-179f37387f0e361b","8f44c0a36142a1e-17973586eb907dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6198009,32.8433555],[-83.62020910000001,32.8428666],[-83.6202657,32.8428458],[-83.62034530000001,32.842854800000005],[-83.6204946,32.8429379]]},"id":"8944c0a3617ffff-17d776711b76e352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6208266,32.843953400000004]},"id":"8f44c0a3614a56e-179fe4b76620cbbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6212986,32.8433854]},"id":"8f44c0a3614c585-17bfe39065f6bb15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614a56e-179fe4b76620cbbc","8f44c0a3614c585-17bfe39065f6bb15"]},"geometry":{"type":"LineString","coordinates":[[-83.6208266,32.843953400000004],[-83.6212986,32.8433854]]},"id":"8a44c0a3614ffff-17df6423eb666c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206847,32.843870700000004]},"id":"8f44c0a3615d251-17df351010c8d1e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621155,32.8433055]},"id":"8f44c0a36141293-17fff3ea2272277c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d251-17df351010c8d1e1","8f44c0a36141293-17fff3ea2272277c"]},"geometry":{"type":"LineString","coordinates":[[-83.6206847,32.843870700000004],[-83.621155,32.8433055]]},"id":"8944c0a3617ffff-17bfb47d197c9975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6205214,32.8437755]},"id":"8f44c0a3615d773-179fb57627f9d484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6209918,32.843214700000004]},"id":"8f44c0a36141790-17d7345022893c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d773-179fb57627f9d484","8f44c0a36141790-17d7345022893c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6205214,32.8437755],[-83.6209918,32.843214700000004]]},"id":"8944c0a3617ffff-17f774e327db4713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62034200000001,32.843671]},"id":"8f44c0a3615d4a8-17df65e643d5ba0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6208082,32.8431124]},"id":"8f44c0a3614380c-179764c2e4a03d80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d4a8-17df65e643d5ba0f","8f44c0a3614380c-179764c2e4a03d80"]},"geometry":{"type":"LineString","coordinates":[[-83.62034200000001,32.843671],[-83.6208082,32.8431124]]},"id":"8944c0a3617ffff-17bff5549cf7c24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62017870000001,32.8435757]},"id":"8f44c0a36158913-17b7f64c5554bfd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206413,32.843019500000004]},"id":"8f44c0a36143d2a-17d7352b32964a28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36143d2a-17d7352b32964a28","8f44c0a36158913-17b7f64c5554bfd1"]},"geometry":{"type":"LineString","coordinates":[[-83.62017870000001,32.8435757],[-83.6206413,32.843019500000004]]},"id":"8944c0a3617ffff-17f725bbcc903963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62003410000001,32.8434915]},"id":"8f44c0a3615c680-17ff36a6ba2549e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36142a1e-17973586eb907dd1","8f44c0a3615c680-17ff36a6ba2549e7"]},"geometry":{"type":"LineString","coordinates":[[-83.62003410000001,32.8434915],[-83.6204946,32.8429379]]},"id":"8944c0a3617ffff-17d73616c6f0450f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6184029,32.8432429]},"id":"8f44c0a3602ec4d-17d7faa23190469d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6187908,32.8427894]},"id":"8f44c0a361524ad-13b769afced23065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602ec4d-17d7faa23190469d","8f44c0a361524ad-13b769afced23065"]},"geometry":{"type":"LineString","coordinates":[[-83.6184029,32.8432429],[-83.6187908,32.8427894]]},"id":"8944c0a3603ffff-17d73a2907407b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177304,32.8463828]},"id":"8f44c0a360eea1e-17ff6c46809bc936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178129,32.8462386]},"id":"8f44c0a360ec4a1-17b72c12f3bcb5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ec4a1-17b72c12f3bcb5c7","8f44c0a360eea1e-17ff6c46809bc936"]},"geometry":{"type":"LineString","coordinates":[[-83.6177304,32.8463828],[-83.61723160000001,32.8463274],[-83.6172621,32.846170300000004],[-83.6178129,32.8462386]]},"id":"8944c0a360fffff-17bf6ce58af3bf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61770010000001,32.846544200000004]},"id":"8f44c0a360ee271-17f72c597e656ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171482,32.8464862]},"id":"8f44c0a360c5060-17bfedb26ab6b864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ee271-17f72c597e656ed7","8f44c0a360c5060-17bfedb26ab6b864"]},"geometry":{"type":"LineString","coordinates":[[-83.61770010000001,32.846544200000004],[-83.6171482,32.8464862]]},"id":"8944c0a360fffff-17d72d05f8ad7bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617592,32.8475977]},"id":"8f44c0a360cd735-17f7bc9d0230e520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6170762,32.847545700000005]},"id":"8f44c0a360c8cd4-17d73ddf6db9c93c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cd735-17f7bc9d0230e520","8f44c0a360c8cd4-17d73ddf6db9c93c"]},"geometry":{"type":"LineString","coordinates":[[-83.617592,32.8475977],[-83.6170762,32.847545700000005]]},"id":"8a44c0a360cffff-17f77d3e3628237b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617614,32.847415000000005]},"id":"8f44c0a360cdc09-17976c8f4a659729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61710430000001,32.8473527]},"id":"8f44c0a360ceb4a-17df7dcddfb28d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ceb4a-17df7dcddfb28d5b","8f44c0a360cdc09-17976c8f4a659729"]},"geometry":{"type":"LineString","coordinates":[[-83.617614,32.847415000000005],[-83.61710430000001,32.8473527]]},"id":"8a44c0a360cffff-17fffd2e90d3e4a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6174467,32.8472178]},"id":"8f44c0a360ccb9b-17972cf7d60ff46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171281,32.8471897]},"id":"8f44c0a360cc431-17f7bdbef3511edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cc431-17f7bdbef3511edf","8f44c0a360ccb9b-17972cf7d60ff46e"]},"geometry":{"type":"LineString","coordinates":[[-83.6174467,32.8472178],[-83.6171281,32.8471897]]},"id":"8b44c0a360ccfff-17ff6d5b62bfb1f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176552,32.8471205]},"id":"8f44c0a360eb470-17df7c75894d253f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171475,32.8470565]},"id":"8f44c0a360cccb2-17b77db2dbdc2386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cccb2-17b77db2dbdc2386","8f44c0a360eb470-17df7c75894d253f"]},"geometry":{"type":"LineString","coordinates":[[-83.6176552,32.8471205],[-83.6171475,32.8470565]]},"id":"8944c0a360fffff-17b77d143f6829a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176753,32.8469563]},"id":"8f44c0a360ebca5-17f7bc68f196d7c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171697,32.8469043]},"id":"8f44c0a360c1a2e-17d73da4fd67e649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c1a2e-17d73da4fd67e649","8f44c0a360ebca5-17f7bc68f196d7c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6176753,32.8469563],[-83.6171697,32.8469043]]},"id":"8944c0a360fffff-17d77d06f8716862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6179329,32.847921]},"id":"8f44c0a363b2736-13bfabc7f229c892"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61793320000001,32.847801000000004]},"id":"8f44c0a363b2cdd-17f7abc7cd6c26e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363b2736-13bfabc7f229c892","8f44c0a363b2cdd-17f7abc7cd6c26e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6179329,32.847921],[-83.61793320000001,32.847801000000004]]},"id":"8b44c0a363b2fff-139f2bc7e672d9b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618333,32.8463602]},"id":"8f44c0a360edd00-17ff2acdeba1b8d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61840690000001,32.8459426]},"id":"8f44c0a36053dae-13ff2a9fb34daf6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36053dae-13ff2a9fb34daf6a","8f44c0a360edd00-17ff2acdeba1b8d0"]},"geometry":{"type":"LineString","coordinates":[[-83.618333,32.8463602],[-83.61840690000001,32.8459426]]},"id":"8844c0a361fffff-13ffaab6c627a282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6183688,32.8451624]},"id":"8f44c0a36009648-1397aab7853b37ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61762010000001,32.8450356]},"id":"8f44c0a360e494a-13b76c8b73b58da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360e494a-13b76c8b73b58da3","8f44c0a36009648-1397aab7853b37ad"]},"geometry":{"type":"LineString","coordinates":[[-83.6183688,32.8451624],[-83.6182641,32.845118400000004],[-83.61762010000001,32.8450356]]},"id":"8844c0a361fffff-13d72b9f64051765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62071040000001,32.8453643]},"id":"8f44c0a36063ad0-1397b50006618472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6201351,32.845302000000004]},"id":"8f44c0a36044889-13dfe66792d711ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36044889-13dfe66792d711ae","8f44c0a36063ad0-1397b50006618472"]},"geometry":{"type":"LineString","coordinates":[[-83.62071040000001,32.8453643],[-83.6201351,32.845302000000004]]},"id":"8944c0a3607ffff-13ff35b3d39c9f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618386,32.858015]},"id":"8f44c0a3282d3b6-13f76aacc8644241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61794110000001,32.8591879]},"id":"8f44c0a32872182-13d77bc2d013ded7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32872182-13d77bc2d013ded7","8f44c0a3282d3b6-13f76aacc8644241"]},"geometry":{"type":"LineString","coordinates":[[-83.618386,32.858015],[-83.618193,32.858531],[-83.617981,32.859076],[-83.61794110000001,32.8591879]]},"id":"8844c0a329fffff-13d72b378b442729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61727060000001,32.8596049]},"id":"8f44c0a32856ca5-17d73d65edf83539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61784750000001,32.859911100000005]},"id":"8f44c0a328509ad-17977bfd5c6ea996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a328509ad-17977bfd5c6ea996","8f44c0a32856ca5-17d73d65edf83539"]},"geometry":{"type":"LineString","coordinates":[[-83.61727060000001,32.8596049],[-83.61750930000001,32.8596633],[-83.6176702,32.859706100000004],[-83.6177641,32.8597557],[-83.61784750000001,32.859911100000005]]},"id":"8944c0a3287ffff-1797ec9c20b888ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62733990000001,32.8512229]},"id":"8f44c0a30d9b68c-13df54d09d37a8eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62693780000001,32.8507002]},"id":"8f44c0a30d9a433-1797b5cbe83559e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9a433-1797b5cbe83559e7","8f44c0a30d9b68c-13df54d09d37a8eb"]},"geometry":{"type":"LineString","coordinates":[[-83.62733990000001,32.8512229],[-83.6268716,32.8507423],[-83.62693780000001,32.8507002]]},"id":"8844c0a30dfffff-17b715701fc649f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62720990000001,32.8517529]},"id":"8f44c0a30cb1d50-139f9521dd0ca1ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30cb1d50-139f9521dd0ca1ac","8f44c0a30cb36b1-139fb6a2211d4edd"]},"geometry":{"type":"LineString","coordinates":[[-83.62720990000001,32.8517529],[-83.6270501,32.8518174],[-83.6266394,32.852096200000005],[-83.62659500000001,32.852169]]},"id":"8944c0a30cbffff-139ff5ed6a67aca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30cb1d50-139f9521dd0ca1ac","8f44c0a30cb36b1-139fb6a2211d4edd"]},"geometry":{"type":"LineString","coordinates":[[-83.62659500000001,32.852169],[-83.6266708,32.8521664],[-83.6271122,32.8518668],[-83.62720990000001,32.8517529]]},"id":"8944c0a30cbffff-13bf55d7b693eaba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6259201,32.8501721]},"id":"8f44c0a3636e014-17bf9847fcee9a2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62619310000001,32.849981400000004]},"id":"8f44c0a36361259-17d7779d5806a6ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636e014-17bf9847fcee9a2a","8f44c0a36361259-17d7779d5806a6ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6259201,32.8501721],[-83.62619310000001,32.849981400000004]]},"id":"8a44c0a3636ffff-179717f2ada07a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62490770000001,32.8496517]},"id":"8f44c0a36371a10-17ff5ac0b1d08a05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36344ab5-17bf59ffa6e69424","8f44c0a36371a10-17ff5ac0b1d08a05"]},"geometry":{"type":"LineString","coordinates":[[-83.62490770000001,32.8496517],[-83.62493900000001,32.849684],[-83.6249657,32.849711500000005],[-83.6252166,32.8499701]]},"id":"8944c0a3637ffff-17dfda603c465dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6258919,32.8503759]},"id":"8f44c0a3636e641-17bff8599d9cbd15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6250808,32.849574600000004]},"id":"8f44c0a36362443-17df3a5484017aca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636e641-17bff8599d9cbd15","8f44c0a36362443-17df3a5484017aca"]},"geometry":{"type":"LineString","coordinates":[[-83.6258919,32.8503759],[-83.6250808,32.849574600000004]]},"id":"8944c0a3637ffff-17d799571cff53de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62594,32.8495548]},"id":"8f44c0a36361daa-17bfd83b89ddf3ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6261296,32.8494073]},"id":"8f44c0a36365729-13df97c506d0e661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36361daa-17bfd83b89ddf3ae","8f44c0a36365729-13df97c506d0e661"]},"geometry":{"type":"LineString","coordinates":[[-83.62594,32.8495548],[-83.6261296,32.8494073]]},"id":"8a44c0a36367fff-179fb800400396de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36366141-139f597f3f58f77b","8f44c0a36366ba4-13ff194f79d0f2a2"]},"geometry":{"type":"LineString","coordinates":[[-83.62542210000001,32.8490917],[-83.6254985,32.849043200000004]]},"id":"8b44c0a36366fff-139f396756e56811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36366c70-13dfd9cb896f9896","8f44c0a36366141-139f597f3f58f77b"]},"geometry":{"type":"LineString","coordinates":[[-83.62530000000001,32.848970800000004],[-83.62542210000001,32.8490917]]},"id":"8b44c0a36366fff-13f799a55c8338dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36360aeb-17b7f855dbcdc705","8f44c0a36366ba4-13ff194f79d0f2a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6258979,32.8495134],[-83.6258698,32.849451900000005],[-83.62563510000001,32.8491961],[-83.6254985,32.849043200000004]]},"id":"8a44c0a36367fff-139f18ce2dff47e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7312972,32.810940800000004]},"id":"8f44c0b08c08cf4-17f61703421c50f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73202280000001,32.8111748]},"id":"8f44c0b08c0d243-179e553dce66501d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c08cf4-17f61703421c50f2","8f44c0b08c0d243-179e553dce66501d"]},"geometry":{"type":"LineString","coordinates":[[-83.7312972,32.810940800000004],[-83.7315164,32.8110629],[-83.73171830000001,32.8111744],[-83.73202280000001,32.8111748]]},"id":"8a44c0b08c0ffff-17df7627e4df1852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac08442-139650822481e46d","8f44c0b0ac0d2e4-13bedec467108271"]},"geometry":{"type":"LineString","coordinates":[[-83.7084602,32.816352900000005],[-83.70774700000001,32.8163077]]},"id":"8a44c0b0ac0ffff-139e7fa34b2b4e15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6271785,32.8319634]},"id":"8f44c0ba92e059c-13df35357341d33c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6273656,32.8317323]},"id":"8f44c0ba92e4695-13bfb4c08e0fbfad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e059c-13df35357341d33c","8f44c0ba92e4695-13bfb4c08e0fbfad"]},"geometry":{"type":"LineString","coordinates":[[-83.6271785,32.8319634],[-83.6273656,32.8317323]]},"id":"8a44c0ba92e7fff-1397f4fb0bb772d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626085,32.831802]},"id":"8f44c0ba92f0c41-13f757e0e0f8d52a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6267991,32.8322269]},"id":"8f44c0ba92e2783-13ffd6229ccc2394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92f0c41-13f757e0e0f8d52a","8f44c0ba92e2783-13ffd6229ccc2394"]},"geometry":{"type":"LineString","coordinates":[[-83.626085,32.831802],[-83.62611050000001,32.8318172],[-83.6267991,32.8322269]]},"id":"8944c0ba92fffff-13ff1701cacbf050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643037,32.784321]},"id":"8f44c0b13adc102-17feee7de6ae523b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6413778,32.784481]},"id":"8f44c0b1332e374-17def28ae85ff594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1332e374-17def28ae85ff594","8f44c0b13adc102-17feee7de6ae523b"]},"geometry":{"type":"LineString","coordinates":[[-83.643037,32.784321],[-83.64289910000001,32.784334300000005],[-83.6413778,32.784481]]},"id":"8744c0b13ffffff-17bef08466ea2400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64680410000001,32.8292026]},"id":"8f44c0a349032c1-139fe54b7d5d466d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64640890000001,32.8289752]},"id":"8f44c0a3491c862-13ffe6427cccc0e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a349032c1-139fe54b7d5d466d","8f44c0a3491c862-13ffe6427cccc0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.64680410000001,32.8292026],[-83.64640890000001,32.8289752]]},"id":"8a44c0a34907fff-13d6f5c6f02e9f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64749280000001,32.8293741]},"id":"8f44c0a3490c654-13f6f39d0af7b5e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464741,32.8287952]},"id":"8f44c0a34902223-139fe619b6efdb8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34902223-139fe619b6efdb8a","8f44c0a3490c654-13f6f39d0af7b5e1"]},"geometry":{"type":"LineString","coordinates":[[-83.64749280000001,32.8293741],[-83.6464741,32.8287952]]},"id":"8944c0a3493ffff-13d7f4db5720916f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476227,32.829202200000005]},"id":"8f44c0a3490c158-139fe34bdc5a79ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6465955,32.828636700000004]},"id":"8f44c0a34902b09-13bff5cdd5b3a02d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490c158-139fe34bdc5a79ce","8f44c0a34902b09-13bff5cdd5b3a02d"]},"geometry":{"type":"LineString","coordinates":[[-83.6476227,32.829202200000005],[-83.6465955,32.828636700000004]]},"id":"8944c0a3493ffff-13def48cddebd001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476882,32.8290211]},"id":"8f44c0a3490c919-139ef322eef648bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64684720000001,32.8285477]},"id":"8f44c0a34900002-13f6f53088edb4a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490c919-139ef322eef648bb","8f44c0a34900002-13f6f53088edb4a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6476882,32.8290211],[-83.64774700000001,32.8289288],[-83.6477383,32.828874],[-83.64766010000001,32.828801],[-83.6471082,32.8284906],[-83.6469909,32.8285016],[-83.64684720000001,32.8285477]]},"id":"8944c0a3493ffff-13d6e3eb5a8cf073"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64943380000001,32.841962800000005]},"id":"8f44c0a34ac0936-13b6dedfe1d2b772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6492211,32.8422635]},"id":"8f44c0a34ac0710-13feff64d774496d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac0710-13feff64d774496d","8f44c0a34ac0936-13b6dedfe1d2b772"]},"geometry":{"type":"LineString","coordinates":[[-83.64943380000001,32.841962800000005],[-83.6492211,32.8422635]]},"id":"8a44c0a34ac7fff-1396df22579d66ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6507752,32.8425104]},"id":"8f44c0a34ae8242-139fdb998bb79b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65243240000001,32.8405812]},"id":"8f44c0a34a71c45-17d7d78dcadd2930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a71c45-17d7d78dcadd2930","8f44c0a34ae8242-139fdb998bb79b36"]},"geometry":{"type":"LineString","coordinates":[[-83.6507752,32.8425104],[-83.6508507,32.842374400000004],[-83.65243240000001,32.8405812]]},"id":"8844c0a34bfffff-13bef99bb87d8907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65088730000001,32.840564400000005]},"id":"8f44c0a34a094a3-17dedb5370f2c042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65035440000001,32.8405438]},"id":"8f44c0a34a0a2f4-17bffca08fdb417e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a0a2f4-17bffca08fdb417e","8f44c0a34a094a3-17dedb5370f2c042"]},"geometry":{"type":"LineString","coordinates":[[-83.65088730000001,32.840564400000005],[-83.65051770000001,32.840354600000005],[-83.65035440000001,32.8405438]]},"id":"8a44c0a34a0ffff-1796dc04a8728ac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6590814,32.8395]},"id":"8f44c0b1b6068a2-13bfc7522b3c16a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6589893,32.8401976]},"id":"8f44c0b1b602236-17f7c78bb7312c9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6068a2-13bfc7522b3c16a4","8f44c0b1b602236-17f7c78bb7312c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6590814,32.8395],[-83.65886900000001,32.839505700000004],[-83.6587595,32.8395564],[-83.6587193,32.8401081],[-83.6587528,32.840177600000004],[-83.6588131,32.8401963],[-83.6589893,32.8401976]]},"id":"8944c0b1b63ffff-1797e7f91faf247d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65997060000001,32.8383753]},"id":"8f44c0b1b719231-13f6d52661934d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65921900000001,32.838124]},"id":"8f44c0b1b71aad9-13d7c6fc2f44bc43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b719231-13f6d52661934d31","8f44c0b1b71aad9-13d7c6fc2f44bc43"]},"geometry":{"type":"LineString","coordinates":[[-83.65997060000001,32.8383753],[-83.65920480000001,32.838339600000005],[-83.65921900000001,32.838124]]},"id":"8a44c0b1b71ffff-13d6e6495d223f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609676,32.8425426]},"id":"8f44c0b1b6513b6-139fe2b74f17cbbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601048,32.842418]},"id":"8f44c0b1b652293-13dfc4d282baf8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6513b6-139fe2b74f17cbbb","8f44c0b1b652293-13dfc4d282baf8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6609676,32.8425426],[-83.6601048,32.842418]]},"id":"8a44c0b1b657fff-13f6f3c4e161b7ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66010250000001,32.8425875]},"id":"8f44c0b1b6ec8e1-13bff4d3fb729c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6612453,32.8427786]},"id":"8f44c0b1b65c0b5-13b6e209bbdb25ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65c0b5-13b6e209bbdb25ec","8f44c0b1b6ec8e1-13bff4d3fb729c04"]},"geometry":{"type":"LineString","coordinates":[[-83.66010250000001,32.8425875],[-83.6612453,32.8427786]]},"id":"8844c0b1b7fffff-13f6f36edeb864a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66096010000001,32.8421814]},"id":"8f44c0b1b65561c-13bfe2bbfd46f854"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601096,32.8420567]},"id":"8f44c0b1b652d62-13fff4cf8e897d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65561c-13bfe2bbfd46f854","8f44c0b1b652d62-13fff4cf8e897d7b"]},"geometry":{"type":"LineString","coordinates":[[-83.66096010000001,32.8421814],[-83.6601096,32.8420567]]},"id":"8a44c0b1b657fff-1396f3c5c7b64cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609638,32.842360500000005]},"id":"8f44c0b1b65189a-13bfd2b9aea5127f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601074,32.842223100000005]},"id":"8f44c0b1b652030-13d7f4d0e316fef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65189a-13bfd2b9aea5127f","8f44c0b1b652030-13d7f4d0e316fef1"]},"geometry":{"type":"LineString","coordinates":[[-83.6609638,32.842360500000005],[-83.6601074,32.842223100000005]]},"id":"8a44c0b1b657fff-1396e3c547fb9680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6561901,32.8443929]},"id":"8f44c0a35d0cb6a-17b7de613e2cd575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6556424,32.844146900000005]},"id":"8f44c0a35d01315-1797dfb78ff70c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d0cb6a-17b7de613e2cd575","8f44c0a35d01315-1797dfb78ff70c78"]},"geometry":{"type":"LineString","coordinates":[[-83.6561901,32.8443929],[-83.6556424,32.844146900000005]]},"id":"8944c0a35d3ffff-17d6ff0c616bb926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6562064,32.844214900000004]},"id":"8f44c0a35d2b51e-17b6de5706c84e8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6556424,32.8439615]},"id":"8f44c0a35d018f5-1797ffb7819c68ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d2b51e-17b6de5706c84e8b","8f44c0a35d018f5-1797ffb7819c68ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6562064,32.844214900000004],[-83.6556424,32.8439615]]},"id":"8944c0a35d3ffff-17f7ef07415907b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6545894,32.8446402]},"id":"8f44c0a35d188eb-13bef249acca63fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654857,32.8442944]},"id":"8f44c0a35d1cb4a-17f6d1a265afc659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d188eb-13bef249acca63fc","8f44c0a35d1cb4a-17f6d1a265afc659"]},"geometry":{"type":"LineString","coordinates":[[-83.6545894,32.8446402],[-83.6545983,32.8445989],[-83.654857,32.8442944]]},"id":"8a44c0a35d1ffff-17dfd1fb302ba2c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6549797,32.8444056]},"id":"8f44c0a35d1d996-17bfd155b6831b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6548932,32.844520100000004]},"id":"8f44c0a35d1d1b4-17f7d18bc8b66976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1d996-17bfd155b6831b0f","8f44c0a35d1d1b4-17f7d18bc8b66976"]},"geometry":{"type":"LineString","coordinates":[[-83.6549797,32.8444056],[-83.6548932,32.844520100000004]]},"id":"8b44c0a35d1dfff-17dfd170bf1d217f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6532325,32.843026800000004]},"id":"8f44c0a34a4b04c-17dfd599b1084749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6530036,32.843299300000005]},"id":"8f44c0a35da5c43-17f6d628cbfa5445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da5c43-17f6d628cbfa5445","8f44c0a34a4b04c-17dfd599b1084749"]},"geometry":{"type":"LineString","coordinates":[[-83.6532325,32.843026800000004],[-83.6530936,32.8430459],[-83.65298870000001,32.843170400000005],[-83.6530036,32.843299300000005]]},"id":"8844c0a35dfffff-1797d6010ba151f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65209130000001,32.8433481]},"id":"8f44c0a35da66e6-1796d862f04a8589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65418960000001,32.8409643]},"id":"8f44c0a34a6c98e-17d6f343894b8175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da66e6-1796d862f04a8589","8f44c0a34a6c98e-17d6f343894b8175"]},"geometry":{"type":"LineString","coordinates":[[-83.65209130000001,32.8433481],[-83.65418960000001,32.8409643]]},"id":"8744c0a34ffffff-13bff5d334b182cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64420700000001,32.8401587]},"id":"8f44c0a34063a8d-17dffba2a32add2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6441545,32.840472000000005]},"id":"8f44c0a34045b26-179febc37fd02acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34045b26-179febc37fd02acf","8f44c0a34063a8d-17dffba2a32add2f"]},"geometry":{"type":"LineString","coordinates":[[-83.64420700000001,32.8401587],[-83.64435110000001,32.8402468],[-83.6441545,32.840472000000005]]},"id":"8944c0a3407ffff-17b7eb801ff16061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64476690000001,32.8403058]},"id":"8f44c0a3406c55c-17b7ea44bdc1f578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64489610000001,32.8401793]},"id":"8f44c0a3406cd48-17def9f3fa2cd3d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406cd48-17def9f3fa2cd3d9","8f44c0a3406c55c-17b7ea44bdc1f578"]},"geometry":{"type":"LineString","coordinates":[[-83.64476690000001,32.8403058],[-83.64489610000001,32.8401793]]},"id":"8b44c0a3406cfff-17ffea1c55468024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644428,32.8400697]},"id":"8f44c0a34061716-1797fb188d00f58b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6445655,32.8399372]},"id":"8f44c0a34061100-17d6eac297f576cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34061716-1797fb188d00f58b","8f44c0a34061100-17d6eac297f576cf"]},"geometry":{"type":"LineString","coordinates":[[-83.644428,32.8400697],[-83.6445655,32.8399372]]},"id":"8b44c0a34061fff-17feeaed9ba935e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6357241,32.8350748]},"id":"8f44c0a34cd9b8c-13f7c0587965ec47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6358067,32.8349647]},"id":"8f44c0a34cca4a0-139ff024d3998f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cd9b8c-13f7c0587965ec47","8f44c0a34cca4a0-139ff024d3998f31"]},"geometry":{"type":"LineString","coordinates":[[-83.6357241,32.8350748],[-83.6353191,32.834858000000004],[-83.6353978,32.8347454],[-83.6358067,32.8349647]]},"id":"8a44c0a34cdffff-13f740ce3cc16e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6329297,32.8359175]},"id":"8f44c0a3450bca9-13f7772afbc87bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6334456,32.8353033]},"id":"8f44c0a3450c375-13f795e8819fe1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450c375-13f795e8819fe1b7","8f44c0a3450bca9-13f7772afbc87bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.6329297,32.8359175],[-83.6334456,32.8353033]]},"id":"8a44c0a3450ffff-13b78689caa7e77d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63331600000001,32.835225200000004]},"id":"8f44c0a3450c056-13bfc63983df8b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63280490000001,32.835841300000006]},"id":"8f44c0a3450a308-13d7d778f66a1247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450a308-13d7d778f66a1247","8f44c0a3450c056-13bfc63983df8b39"]},"geometry":{"type":"LineString","coordinates":[[-83.63331600000001,32.835225200000004],[-83.63280490000001,32.835841300000006]]},"id":"8a44c0a3450ffff-139756d93fb101e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6339782,32.8298836]},"id":"8f44c0a34d993ad-17b7449ba2bb724b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633615,32.830334]},"id":"8f44c0a34ca679b-17dfc57ea8cb441c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d993ad-17b7449ba2bb724b","8f44c0a34ca679b-17dfc57ea8cb441c"]},"geometry":{"type":"LineString","coordinates":[[-83.6339782,32.8298836],[-83.633615,32.830334]]},"id":"8844c0a34dfffff-17d7050d2c30d8a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63267330000001,32.8302858]},"id":"8f44c0a34cb0c80-17b7a7cb31f4b270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6324647,32.8305597]},"id":"8f44c0a34cb2a82-17dfd84d9d8889ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb0c80-17b7a7cb31f4b270","8f44c0a34cb2a82-17dfd84d9d8889ee"]},"geometry":{"type":"LineString","coordinates":[[-83.63267330000001,32.8302858],[-83.6324647,32.8305597]]},"id":"8a44c0a34cb7fff-1797480c67907b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6325513,32.8302156]},"id":"8f44c0a34cb631a-1797c8177effcfad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6323335,32.8304836]},"id":"8f44c0a34cb21ad-17bf489f9e450221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb631a-1797c8177effcfad","8f44c0a34cb21ad-17bf489f9e450221"]},"geometry":{"type":"LineString","coordinates":[[-83.6325513,32.8302156],[-83.6323335,32.8304836]]},"id":"8a44c0a34cb7fff-17df885b8106395c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6350716,32.830532500000004]},"id":"8f44c0a34c16648-17dfd1f047b2f59d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63449530000001,32.8304952]},"id":"8f44c0a34ca57a4-17b78358729205d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c16648-17dfd1f047b2f59d","8f44c0a34ca57a4-17b78358729205d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6350716,32.830532500000004],[-83.6346425,32.830276600000005],[-83.6344918,32.8304491],[-83.63449530000001,32.8304952]]},"id":"8844c0a34dfffff-17f7b2b97f0ccb67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6440987,32.8333589]},"id":"8f44c0a348f66e4-17b7fbe65590915e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6439156,32.8332531]},"id":"8f44c0a3488db1c-17fffc58c6b2fdd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3488db1c-17fffc58c6b2fdd9","8f44c0a348f66e4-17b7fbe65590915e"]},"geometry":{"type":"LineString","coordinates":[[-83.6440987,32.8333589],[-83.6441363,32.833313700000005],[-83.6442725,32.8331499],[-83.6440876,32.8330392],[-83.6439532,32.8332063],[-83.6439156,32.8332531]]},"id":"8844c0a349fffff-17bfebda799405cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64508570000001,32.8334691]},"id":"8f44c0a348f505d-17f6f97d726185dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64439820000001,32.8335317]},"id":"8f44c0a348f0454-179ffb2b23a71dc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348f505d-17f6f97d726185dc","8f44c0a348f0454-179ffb2b23a71dc2"]},"geometry":{"type":"LineString","coordinates":[[-83.64508570000001,32.8334691],[-83.64466200000001,32.8332299],[-83.6444388,32.8334853],[-83.64439820000001,32.8335317]]},"id":"8a44c0a348f7fff-17b6ea62ee51b0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6440417,32.833478500000005]},"id":"8f44c0a348f2c74-17fefc09f8c43be1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6438724,32.833376200000004]},"id":"8f44c0a3488dad1-17beec73c2bf0c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3488dad1-17beec73c2bf0c68","8f44c0a348f2c74-17fefc09f8c43be1"]},"geometry":{"type":"LineString","coordinates":[[-83.6440417,32.833478500000005],[-83.6438724,32.833376200000004]]},"id":"8844c0a349fffff-17deec3edb552fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64453540000001,32.8341038]},"id":"8f44c0a348f3201-1796ead56f652abe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64423400000001,32.833437]},"id":"8f44c0a348f2976-17f6eb91c0021848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348f3201-1796ead56f652abe","8f44c0a348f2976-17f6eb91c0021848"]},"geometry":{"type":"LineString","coordinates":[[-83.64453540000001,32.8341038],[-83.64448030000001,32.8340717],[-83.6440615,32.8338276],[-83.6440324,32.8337957],[-83.64402360000001,32.8337565],[-83.64402650000001,32.8337075],[-83.6440615,32.833636500000004],[-83.6441851,32.8334935],[-83.64423400000001,32.833437]]},"id":"8a44c0a348f7fff-17dfeba38bbdb91b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64667560000001,32.8384665]},"id":"8f44c0a34b9b689-13bff59bcb6671b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464167,32.8387356]},"id":"8f44c0a34ab0869-13d7e63d97a7305b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34b9b689-13bff59bcb6671b0","8f44c0a34ab0869-13d7e63d97a7305b"]},"geometry":{"type":"LineString","coordinates":[[-83.64667560000001,32.8384665],[-83.64660330000001,32.8385764],[-83.6464167,32.8387356]]},"id":"8a44c0a34ab7fff-1396e5e700f04b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6452922,32.8399639]},"id":"8f44c0a34a92a68-17d7f8fc6c2fccf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6451808,32.839894]},"id":"8f44c0a34a92b89-17b7e94201f9cb0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a92a68-17d7f8fc6c2fccf6","8f44c0a34a92b89-17b7e94201f9cb0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6452922,32.8399639],[-83.6451808,32.839894]]},"id":"8c44c0a34a92bff-17bfe91f37e04908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64194660000001,32.8400447]},"id":"8f44c0a34056946-1797f12764afc132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64164500000001,32.8406667]},"id":"8f44c0a3405201b-179ef1e3e1e9aeda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3405201b-179ef1e3e1e9aeda","8f44c0a34056946-1797f12764afc132"]},"geometry":{"type":"LineString","coordinates":[[-83.64194660000001,32.8400447],[-83.6417471,32.840547900000004],[-83.64164500000001,32.8406667]]},"id":"8a44c0a34057fff-17def17aec17f09f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6432017,32.8405952]},"id":"8f44c0a3404059e-17deee16fc018283"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6432075,32.8410254]},"id":"8f44c0a34043570-17feee1351d660e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34043570-17feee1351d660e7","8f44c0a3404059e-17deee16fc018283"]},"geometry":{"type":"LineString","coordinates":[[-83.6432017,32.8405952],[-83.6432075,32.8410254]]},"id":"8a44c0a34047fff-17f6fe152036307b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6444374,32.840817200000004]},"id":"8f44c0a3406abb1-17f6eb12ab3e0dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6449243,32.841162600000004]},"id":"8f44c0a340694d9-17bee9e253df2985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340694d9-17bee9e253df2985","8f44c0a3406abb1-17f6eb12ab3e0dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6444374,32.840817200000004],[-83.6449855,32.8409299],[-83.6449243,32.841162600000004]]},"id":"8a44c0a3406ffff-17befa3992e1fcb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5806202,32.8808735]},"id":"8f44c0a16d29a04-13b7f6e06d9de106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5808679,32.8808038]},"id":"8f44c0b896da0f2-1397e64597af8327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d29a04-13b7f6e06d9de106","8f44c0b896da0f2-1397e64597af8327"]},"geometry":{"type":"LineString","coordinates":[[-83.5806202,32.8808735],[-83.5808679,32.8808038]]},"id":"8844c0a16dfffff-139fa6930b6de1f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5817256,32.8791912]},"id":"8f44c0b896c6d42-1797842d88a1960d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5808884,32.8794339]},"id":"8f44c0b896d0802-17bfb638c7b556b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896c6d42-1797842d88a1960d","8f44c0b896d0802-17bfb638c7b556b1"]},"geometry":{"type":"LineString","coordinates":[[-83.5817256,32.8791912],[-83.5808884,32.8794339]]},"id":"8944c0b896fffff-17f7e5332e7a080b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58007590000001,32.8794959]},"id":"8f44c0a16d25352-17d7f834981cbf5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58010630000001,32.8795791]},"id":"8f44c0a16d25248-179ff8219cb9ea7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d25248-179ff8219cb9ea7c","8f44c0a16d25352-17d7f834981cbf5a"]},"geometry":{"type":"LineString","coordinates":[[-83.58007590000001,32.8794959],[-83.58010630000001,32.8795791]]},"id":"8a44c0a16d27fff-17fff82b1326247a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58076150000001,32.8796551]},"id":"8f44c0b896d00d8-17bff68816145223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58094630000001,32.8795601]},"id":"8f44c0b896d0b8c-17ff96149a773bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d0b8c-17ff96149a773bca","8f44c0b896d00d8-17bff68816145223"]},"geometry":{"type":"LineString","coordinates":[[-83.58076150000001,32.8796551],[-83.58094630000001,32.8795601]]},"id":"8b44c0b896d0fff-179fc64e5e094248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58103600000001,32.8805557]},"id":"8f44c0b896da904-17ffd5dc858a939e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5809079,32.8805087]},"id":"8f44c0b896de6f5-17dff62c92f296b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896de6f5-17dff62c92f296b2","8f44c0b896da904-17ffd5dc858a939e"]},"geometry":{"type":"LineString","coordinates":[[-83.58103600000001,32.8805557],[-83.5809079,32.8805087]]},"id":"8b44c0b896defff-17dfa60497fd4c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5806123,32.8797346]},"id":"8f44c0b896d069c-17ffa6e552bcb383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d069c-17ffa6e552bcb383","8f44c0b896de6f5-17dff62c92f296b2"]},"geometry":{"type":"LineString","coordinates":[[-83.5806123,32.8797346],[-83.5809079,32.8805087]]},"id":"8944c0b896fffff-17df9688fef45d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5803719,32.879688800000004]},"id":"8f44c0b896d2159-17df877b97af462a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5807386,32.8806537]},"id":"8f44c0b896dac9b-13bf96966dfc1f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896dac9b-13bf96966dfc1f9a","8f44c0b896d2159-17df877b97af462a"]},"geometry":{"type":"LineString","coordinates":[[-83.5803719,32.879688800000004],[-83.5807386,32.8806537]]},"id":"8944c0b896fffff-17ff97090b60c515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5351119,32.8892399]},"id":"8f44c0aa46f1b56-179ff5fb1e2c0435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5344128,32.889988]},"id":"8f44c0aa46d5242-17f7f7b00fc198bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46f1b56-179ff5fb1e2c0435","8f44c0aa46d5242-17f7f7b00fc198bd"]},"geometry":{"type":"LineString","coordinates":[[-83.5351119,32.8892399],[-83.53449280000001,32.889595400000005],[-83.5344128,32.889988]]},"id":"8944c0aa46fffff-17f7f70b114c007a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53382350000001,32.890382200000005]},"id":"8f44c0aa46d3a8b-17fff9205ea6342b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53450690000001,32.890483200000006]},"id":"8f44c0aa46dc112-13bff77533375466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46d3a8b-17fff9205ea6342b","8f44c0aa46dc112-13bff77533375466"]},"geometry":{"type":"LineString","coordinates":[[-83.53382350000001,32.890382200000005],[-83.53450690000001,32.890483200000006]]},"id":"8944c0aa46fffff-139ff84ac946072b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5344879,32.8902883]},"id":"8f44c0aa46c2688-17bff7811c6205e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53304030000001,32.8900731]},"id":"8f44c0aa0d21b18-17b7fb09d0e29290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c2688-17bff7811c6205e8","8f44c0aa0d21b18-17b7fb09d0e29290"]},"geometry":{"type":"LineString","coordinates":[[-83.5344879,32.8902883],[-83.5344017,32.8901332],[-83.53316240000001,32.8899423],[-83.53304030000001,32.8900731]]},"id":"8844c0aa47fffff-179ff93be154c53d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616338,32.8352097]},"id":"8f44c0a36d42861-13b73facc2949b1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6157714,32.8350403]},"id":"8f44c0a36d550f3-13df310ee5d531a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d42861-13b73facc2949b1b","8f44c0a36d550f3-13df310ee5d531a2"]},"geometry":{"type":"LineString","coordinates":[[-83.616338,32.8352097],[-83.61630070000001,32.8351179],[-83.6162042,32.835031300000004],[-83.6161055,32.834976600000005],[-83.616003,32.834943],[-83.6159341,32.834931000000005],[-83.6158633,32.8349397],[-83.6158243,32.8349605],[-83.6157714,32.8350403]]},"id":"8944c0a36d7ffff-13bf705384eee1d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61586820000001,32.8324572]},"id":"8f44c0ba96d3426-13fff0d2650d3073"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6157326,32.8323325]},"id":"8f44c0ba96d22a1-13bff12727cbd229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96d3426-13fff0d2650d3073","8f44c0ba96d22a1-13bff12727cbd229"]},"geometry":{"type":"LineString","coordinates":[[-83.61586820000001,32.8324572],[-83.6158293,32.8324839],[-83.61576860000001,32.832507400000004],[-83.6157094,32.8324924],[-83.615668,32.832459],[-83.6156583,32.832416800000004],[-83.61568820000001,32.8323637],[-83.6157326,32.8323325]]},"id":"8744c0a36ffffff-13f731271e209218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61530090000001,32.831660500000005]},"id":"8f44c0a36d25d72-139ff234fc9451b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6155219,32.831584]},"id":"8f44c0ba968b21e-13df31aad323e44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d25d72-139ff234fc9451b5","8f44c0ba968b21e-13df31aad323e44a"]},"geometry":{"type":"LineString","coordinates":[[-83.61530090000001,32.831660500000005],[-83.6155219,32.831584]]},"id":"8844c0ba97fffff-13f7f1efe329a94b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176003,32.8336318]},"id":"8f44c0a36d64919-17dfec97da91d752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61747580000001,32.8337639]},"id":"8f44c0a36d6411a-17bf7ce5a7848ba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36d64919-17dfec97da91d752","8f44c0a36d6411a-17bf7ce5a7848ba1"]},"geometry":{"type":"LineString","coordinates":[[-83.6176003,32.8336318],[-83.61747580000001,32.8337639]]},"id":"8b44c0a36d64fff-17973cbeb1fdf96a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63601050000001,32.8222789]},"id":"8f44c0ba9b408a6-13b6ffa5797d7416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63585230000001,32.8220242]},"id":"8f44c0ba9b44489-139720085aa91d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b44489-139720085aa91d3e","8f44c0ba9b408a6-13b6ffa5797d7416"]},"geometry":{"type":"LineString","coordinates":[[-83.63601050000001,32.8222789],[-83.6360507,32.822164400000005],[-83.6360446,32.8221347],[-83.63585230000001,32.8220242]]},"id":"8a44c0ba9b47fff-13deffb6822d184f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6575138,32.866278300000005]},"id":"8f44c0a3191e8c5-179ffb25ea6c6168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6573728,32.8656955]},"id":"8f44c0a31910acd-13b7fb7e09faa5d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31910acd-13b7fb7e09faa5d3","8f44c0a3191e8c5-179ffb25ea6c6168"]},"geometry":{"type":"LineString","coordinates":[[-83.6575138,32.866278300000005],[-83.6573728,32.8656955]]},"id":"8944c0a3193ffff-17dfdb51fd65bd5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65746220000001,32.8679524]},"id":"8f44c0a31831173-13b6cb4625c8913d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65726520000001,32.8678155]},"id":"8f44c0a31831ca6-13d6fbc14f6bae27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31831ca6-13d6fbc14f6bae27","8f44c0a31831173-13b6cb4625c8913d"]},"geometry":{"type":"LineString","coordinates":[[-83.65746220000001,32.8679524],[-83.65726520000001,32.8678155]]},"id":"8b44c0a31831fff-13ffcb83b00ed94a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65696360000001,32.867924200000004]},"id":"8f44c0a31833998-1396ec7dcae5784d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65685040000001,32.8678231]},"id":"8f44c0a31832a6d-13d7fcc4855de5b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31832a6d-13d7fcc4855de5b0","8f44c0a31833998-1396ec7dcae5784d"]},"geometry":{"type":"LineString","coordinates":[[-83.65696360000001,32.867924200000004],[-83.65749740000001,32.867457],[-83.6574738,32.867391600000005],[-83.6574404,32.8673566],[-83.6573848,32.8673402],[-83.6573111,32.867346000000005],[-83.65685040000001,32.8678231]]},"id":"8a44c0a31837fff-13defbeac75be59d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65689760000001,32.8676375]},"id":"8f44c0a3183042d-13f7fca70e4e2db1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65690520000001,32.867429300000005]},"id":"8f44c0a31830db0-17dfdca249f02a78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3183042d-13f7fca70e4e2db1","8f44c0a31830db0-17dfdca249f02a78"]},"geometry":{"type":"LineString","coordinates":[[-83.65689760000001,32.8676375],[-83.65678600000001,32.867540000000005],[-83.65690520000001,32.867429300000005]]},"id":"8a44c0a31837fff-13b6fcc8aa8d5441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6591977,32.867593]},"id":"8f44c0a31956441-13d7e70971a52a16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6589793,32.8674405]},"id":"8f44c0a31825920-17f6d791f6494c97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31825920-17f6d791f6494c97","8f44c0a31956441-13d7e70971a52a16"]},"geometry":{"type":"LineString","coordinates":[[-83.6591977,32.867593],[-83.6589793,32.8674405]]},"id":"8844c0a319fffff-1396c74dbf133464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65867220000001,32.8685294]},"id":"8f44c0a3182e15d-139ee851e61d3bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6582467,32.868461100000005]},"id":"8f44c0a3180590a-13f6f95bd7ddbc89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3182e15d-139ee851e61d3bf5","8f44c0a3180590a-13f6f95bd7ddbc89"]},"geometry":{"type":"LineString","coordinates":[[-83.65867220000001,32.8685294],[-83.6583595,32.8683302],[-83.6582467,32.868461100000005]]},"id":"8944c0a3183ffff-13dfd8ddecd954c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6593352,32.8696082]},"id":"8f44c0a31876b99-17b7e6b38f08bcf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6591614,32.8694695]},"id":"8f44c0a31876c74-17def7202a6275be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31876b99-17b7e6b38f08bcf9","8f44c0a31876c74-17def7202a6275be"]},"geometry":{"type":"LineString","coordinates":[[-83.6593352,32.8696082],[-83.6595803,32.8693566],[-83.659559,32.8693089],[-83.65943580000001,32.8692154],[-83.6591614,32.8694695]]},"id":"8844c0a319fffff-17b7d686d8e18e04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594927,32.868078000000004]},"id":"8f44c0a31953d35-13f6c65113ae1145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65880130000001,32.8688416]},"id":"8f44c0a31828428-13d6c8013787ec22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31953d35-13f6c65113ae1145","8f44c0a31828428-13d6c8013787ec22"]},"geometry":{"type":"LineString","coordinates":[[-83.6594927,32.868078000000004],[-83.6593601,32.8680402],[-83.65870190000001,32.868764],[-83.65880130000001,32.8688416]]},"id":"8844c0a319fffff-13d6f767fb1cc8e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65973290000001,32.8699583]},"id":"8f44c0a31870a11-179ff5bafdbd8413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594711,32.869726400000005]},"id":"8f44c0a31870d11-17ffc65e90f1359c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31870a11-179ff5bafdbd8413","8f44c0a31870d11-17ffc65e90f1359c"]},"geometry":{"type":"LineString","coordinates":[[-83.65973290000001,32.8699583],[-83.65989520000001,32.8698299],[-83.6599259,32.8696052],[-83.65971280000001,32.8695396],[-83.6594711,32.869726400000005]]},"id":"8a44c0a31877fff-17f7e5a5514e4b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601885,32.870085]},"id":"8f44c0a31862512-17dfe49e3eea7111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6603887,32.870345400000005]},"id":"8f44c0a3186266d-17ffe4211ab1fe45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31862512-17dfe49e3eea7111","8f44c0a3186266d-17ffe4211ab1fe45"]},"geometry":{"type":"LineString","coordinates":[[-83.6601885,32.870085],[-83.6602177,32.870138700000005],[-83.6602608,32.8701971],[-83.6603887,32.870345400000005]]},"id":"8b44c0a31862fff-17bed462e6a50695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6603137,32.870571600000005]},"id":"8f44c0a31844156-179fc44ffd284474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6605748,32.870883]},"id":"8f44c0a3184519c-13dfe3acc9be574a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31844156-179fc44ffd284474","8f44c0a3184519c-13dfe3acc9be574a"]},"geometry":{"type":"LineString","coordinates":[[-83.6603137,32.870571600000005],[-83.660639,32.8705334],[-83.66079330000001,32.8707202],[-83.6605748,32.870883]]},"id":"8944c0a3187ffff-17bfd3953c112292"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617791,32.8705295]},"id":"8f44c0a3186c966-17f6f0bc179dc485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66116000000001,32.8708857]},"id":"8f44c0a3186e059-13dfd23f0ccb4f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3186c966-17f6f0bc179dc485","8f44c0a3186e059-13dfd23f0ccb4f6d"]},"geometry":{"type":"LineString","coordinates":[[-83.6617791,32.8705295],[-83.66167610000001,32.8704172],[-83.66125070000001,32.8706624],[-83.6611589,32.8707991],[-83.66116000000001,32.8708857]]},"id":"8944c0a3187ffff-179ed19566e71eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66220720000001,32.8710548]},"id":"8f44c0a3186db5d-13bfffb08b8e5efa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3186c966-17f6f0bc179dc485","8f44c0a3186db5d-13bfffb08b8e5efa"]},"geometry":{"type":"LineString","coordinates":[[-83.6617791,32.8705295],[-83.66220720000001,32.8710548]]},"id":"8744c0a31ffffff-1397e036569444f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b00523-1797fef5cbea4907","8f44c0a31b31046-17ffff0742e1b32d"]},"geometry":{"type":"LineString","coordinates":[[-83.66247800000001,32.872594],[-83.66250600000001,32.873219]]},"id":"8944c0a31b3ffff-17bebefe8c9ef85c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b31150-17d7ff08f7ab3b08","8f44c0a31b31046-17ffff0742e1b32d"]},"geometry":{"type":"LineString","coordinates":[[-83.66247530000001,32.8725309],[-83.66247800000001,32.872594]]},"id":"8c44c0a31b311ff-17f7bf0824fd0d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b00523-1797fef5cbea4907","8f44c0a31b3316a-179fc01ccf04b9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.662034,32.872642],[-83.66250600000001,32.873219]]},"id":"8944c0a31b3ffff-17dfbf894f5125b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b3312e-17fee0380505103f","8f44c0a31b3316a-179fc01ccf04b9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.66199040000001,32.8725894],[-83.662034,32.872642]]},"id":"8c44c0a31b331ff-179ed02a6ee5a3e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627722,32.8724197]},"id":"8f44c0a31b22551-179efe4f6ed2206d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626445,32.8730173]},"id":"8f44c0a31b046a1-1797fe9f38b696ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b22551-179efe4f6ed2206d","8f44c0a31b046a1-1797fe9f38b696ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6627722,32.8724197],[-83.66276400000001,32.8729658],[-83.66271470000001,32.8729832],[-83.6626445,32.8730173]]},"id":"8944c0a31b3ffff-17defe59b0716f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66481440000001,32.874076200000005]},"id":"8f44c0a31b74ab4-139fb95305fda234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6657387,32.8742]},"id":"8f44c0a31b64493-13f7b711583b33a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b74ab4-139fb95305fda234","8f44c0a31b64493-13f7b711583b33a6"]},"geometry":{"type":"LineString","coordinates":[[-83.66481440000001,32.874076200000005],[-83.6649192,32.8741359],[-83.6651669,32.874416000000004],[-83.6652289,32.8744267],[-83.66534,32.8744174],[-83.6657387,32.8742]]},"id":"8944c0a31b7ffff-13b7b83e2d0099a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6659015,32.8738669]},"id":"8f44c0a224d9b51-1796f6ab9c36166a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6657558,32.8736911]},"id":"8f44c0a224d99a9-17bef706a2c5cc1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d9b51-1796f6ab9c36166a","8f44c0a224d99a9-17bef706a2c5cc1b"]},"geometry":{"type":"LineString","coordinates":[[-83.6659015,32.8738669],[-83.66604840000001,32.8737784],[-83.66590860000001,32.8736077],[-83.6657558,32.8736911]]},"id":"8944c0a224fffff-17bef6984e4284ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6658159,32.8734198]},"id":"8f44c0a224dd152-17fff6e11b8b9887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6653067,32.8735687]},"id":"8f44c0a224d80e4-17def81f5b2941ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d80e4-17def81f5b2941ee","8f44c0a224dd152-17fff6e11b8b9887"]},"geometry":{"type":"LineString","coordinates":[[-83.6658159,32.8734198],[-83.6657387,32.873330200000005],[-83.6653067,32.8735687]]},"id":"8a44c0a224dffff-179ef7799235195e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632103,32.873232]},"id":"8f44c0a31b05062-179ebd3d9f98b85d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663217,32.8736108]},"id":"8f44c0a31b01b18-17f6fd396e591ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b05062-179ebd3d9f98b85d","8f44c0a31b01b18-17f6fd396e591ac2"]},"geometry":{"type":"LineString","coordinates":[[-83.6632103,32.873232],[-83.66341650000001,32.873511400000005],[-83.663217,32.8736108]]},"id":"8944c0a31b3ffff-179fbcfc582fe676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66448700000001,32.873435400000005]},"id":"8f44c0a31b2d39c-179fba1fac9612eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6650127,32.8733874]},"id":"8f44c0a224de21a-17ffb8d718d9edd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2d39c-179fba1fac9612eb","8f44c0a224de21a-17ffb8d718d9edd8"]},"geometry":{"type":"LineString","coordinates":[[-83.66448700000001,32.873435400000005],[-83.6647983,32.8734167],[-83.6650127,32.8733874]]},"id":"8844c0a31bfffff-17ffb97b10121acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66462680000001,32.8741077]},"id":"8f44c0a31b7409d-13bff9c84921d5b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66419160000001,32.8738873]},"id":"8f44c0a31b296a0-17b7bad848ad4f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b7409d-13bff9c84921d5b4","8f44c0a31b296a0-17b7bad848ad4f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.66462680000001,32.8741077],[-83.66453460000001,32.8742424],[-83.6644981,32.874261100000005],[-83.6644648,32.874267800000005],[-83.66419160000001,32.8738873]]},"id":"8844c0a31bfffff-13b6ba530dfa7cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66404530000001,32.874016600000004]},"id":"8f44c0a31b2b34d-17f6fb33b5743fb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66329490000001,32.8741775]},"id":"8f44c0a31b089b6-13defd08bef9c20d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2b34d-17f6fb33b5743fb5","8f44c0a31b089b6-13defd08bef9c20d"]},"geometry":{"type":"LineString","coordinates":[[-83.66404530000001,32.874016600000004],[-83.66361500000001,32.874009],[-83.6634451,32.8740903],[-83.66329490000001,32.8741775]]},"id":"8944c0a31b3ffff-139ebc25cf606485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66591740000001,32.8749361]},"id":"8f44c0a31b63876-13b7b6a1a50c0126"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6655891,32.8749163]},"id":"8f44c0a31b63c92-13b6b76ed5c09431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b63876-13b7b6a1a50c0126","8f44c0a31b63c92-13b6b76ed5c09431"]},"geometry":{"type":"LineString","coordinates":[[-83.66591740000001,32.8749361],[-83.6655891,32.8749163]]},"id":"8b44c0a31b63fff-13bef7083936c536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669186,32.8755541]},"id":"8f44c0a31b6d182-13b7f42fe342ccd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663745,32.8757894]},"id":"8f44c0a31b687ac-17def583f72b5604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6d182-13b7f42fe342ccd1","8f44c0a31b687ac-17def583f72b5604"]},"geometry":{"type":"LineString","coordinates":[[-83.6669186,32.8755541],[-83.6663745,32.8757894]]},"id":"8a44c0a31b6ffff-13fef4d9f4697e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6668205,32.875390800000005]},"id":"8f44c0a31b6dd94-13dff46d3291dbed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6662785,32.8756287]},"id":"8f44c0a31b685a1-13f7f5bff3e1903e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6dd94-13dff46d3291dbed","8f44c0a31b685a1-13f7f5bff3e1903e"]},"geometry":{"type":"LineString","coordinates":[[-83.6668205,32.875390800000005],[-83.6662785,32.8756287]]},"id":"8a44c0a31b6ffff-139fb516903668ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667262,32.875234]},"id":"8f44c0a31b6cb96-13fff4a82493feef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661862,32.8754744]},"id":"8f44c0a31b6e3a3-1397b5f9a2bfeea3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6cb96-13fff4a82493feef","8f44c0a31b6e3a3-1397b5f9a2bfeea3"]},"geometry":{"type":"LineString","coordinates":[[-83.6667262,32.875234],[-83.6661862,32.8754744]]},"id":"8a44c0a31b6ffff-13bef550e64507c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67789,32.8896237]},"id":"8f44c0a04bae9b0-179ed966ce447d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6774513,32.8898902]},"id":"8f44c0a04b85166-17b7fa78fcb34869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bae9b0-179ed966ce447d7f","8f44c0a04b85166-17b7fa78fcb34869"]},"geometry":{"type":"LineString","coordinates":[[-83.67789,32.8896237],[-83.6774513,32.8898902]]},"id":"8944c0a04bbffff-17f6b9efd338259c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6777785,32.8894898]},"id":"8f44c0a04ba3b61-17bfb9ac7b0cc937"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6773306,32.889752300000005]},"id":"8f44c0a04b85d54-17dfbac4600c958e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba3b61-17bfb9ac7b0cc937","8f44c0a04b85d54-17dfbac4600c958e"]},"geometry":{"type":"LineString","coordinates":[[-83.6777785,32.8894898],[-83.6773306,32.889752300000005]]},"id":"8944c0a04bbffff-179fba387c1d68a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677661,32.8893433]},"id":"8f44c0a04ba3946-17df99f5e31e395e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677221,32.8896272]},"id":"8f44c0a04b84a2a-17979b08e187e717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba3946-17df99f5e31e395e","8f44c0a04b84a2a-17979b08e187e717"]},"geometry":{"type":"LineString","coordinates":[[-83.677661,32.8893433],[-83.677221,32.8896272]]},"id":"8944c0a04bbffff-17beda7f64078661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6781711,32.889850700000004]},"id":"8f44c0a04bac6a6-179eb8b71d31a090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67766010000001,32.890128600000004]},"id":"8f44c0a04baac08-17def9f6743b73ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bac6a6-179eb8b71d31a090","8f44c0a04baac08-17def9f6743b73ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6781711,32.889850700000004],[-83.67766010000001,32.890128600000004]]},"id":"8a44c0a04baffff-17f79956c0d7b80e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6780349,32.889740700000004]},"id":"8f44c0a04bae868-17d7f90c3af9b1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775528,32.8900061]},"id":"8f44c0a04b85ac4-17ffda398a08c76d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bae868-17d7f90c3af9b1be","8f44c0a04b85ac4-17ffda398a08c76d"]},"geometry":{"type":"LineString","coordinates":[[-83.6780349,32.889740700000004],[-83.6775528,32.8900061]]},"id":"8944c0a04bbffff-17bef9a2e4db32c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67755430000001,32.8892104]},"id":"8f44c0a04ba062d-179e9a389d9aceb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67709090000001,32.889478600000004]},"id":"8f44c0a04b84813-17b6bb5a35f4fbfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b84813-17b6bb5a35f4fbfb","8f44c0a04ba062d-179e9a389d9aceb6"]},"geometry":{"type":"LineString","coordinates":[[-83.67755430000001,32.8892104],[-83.67709090000001,32.889478600000004]]},"id":"8944c0a04bbffff-17f6dac96aa476b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6774329,32.889059100000004]},"id":"8f44c0a04ba0401-17bffa84709c5fe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67697910000001,32.889334000000005]},"id":"8f44c0a04ba26aa-17dfdba01a160c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba0401-17bffa84709c5fe1","8f44c0a04ba26aa-17dfdba01a160c84"]},"geometry":{"type":"LineString","coordinates":[[-83.6774329,32.889059100000004],[-83.67697910000001,32.889334000000005]]},"id":"8a44c0a04ba7fff-1797fb124a7903bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67732690000001,32.888927]},"id":"8f44c0a04ba621b-17dffac6bd22f8ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6768789,32.889204400000004]},"id":"8f44c0a04ba248a-179edbdeb9122d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba621b-17dffac6bd22f8ee","8f44c0a04ba248a-179edbdeb9122d11"]},"geometry":{"type":"LineString","coordinates":[[-83.67732690000001,32.888927],[-83.6768789,32.889204400000004]]},"id":"8944c0a04bbffff-17b69b52b322cb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677451,32.890093900000004]},"id":"8f44c0a04b85202-17b6ba79236c8edc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67671940000001,32.8898548]},"id":"8f44c0a04b86368-179fdc426e7219cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b85202-17b6ba79236c8edc","8f44c0a04b86368-179fdc426e7219cf"]},"geometry":{"type":"LineString","coordinates":[[-83.677451,32.890093900000004],[-83.6771738,32.8897762],[-83.6770681,32.889757],[-83.6769313,32.8897605],[-83.6768193,32.8898006],[-83.67671940000001,32.8898548]]},"id":"8a44c0a04b87fff-179edb4afe63ea57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6811292,32.892416100000005]},"id":"8f44c0a04a2d701-17f6917e4cc58580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68082360000001,32.8921987]},"id":"8f44c0a04a2c668-17deb23d447f0685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2d701-17f6917e4cc58580","8f44c0a04a2c668-17deb23d447f0685"]},"geometry":{"type":"LineString","coordinates":[[-83.6811292,32.892416100000005],[-83.68130310000001,32.892285300000005],[-83.681308,32.8922368],[-83.6813075,32.892208600000004],[-83.6812974,32.892183100000004],[-83.6811861,32.892034],[-83.6811314,32.891999000000006],[-83.68110270000001,32.8919826],[-83.6810669,32.891972200000005],[-83.68082360000001,32.8921987]]},"id":"8a44c0a04a2ffff-17bf91803aa751c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2d701-17f6917e4cc58580","8f44c0a04a2c668-17deb23d447f0685"]},"geometry":{"type":"LineString","coordinates":[[-83.6811292,32.892416100000005],[-83.68082360000001,32.8921987]]},"id":"8a44c0a04a2ffff-179eb1ddc6bd264c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68074490000001,32.891995300000005]},"id":"8f44c0a04a2c54c-13df926e7d3f35be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6808996,32.8918611]},"id":"8f44c0a04a2c8a4-1397b20dc7b15d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2c8a4-1397b20dc7b15d21","8f44c0a04a2c54c-13df926e7d3f35be"]},"geometry":{"type":"LineString","coordinates":[[-83.68074490000001,32.891995300000005],[-83.68041190000001,32.891705900000005],[-83.68054930000001,32.8915906],[-83.6808996,32.8918611]]},"id":"8944c0a04a3ffff-13ded2badea17b3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6801832,32.8914915]},"id":"8f44c0a04a20389-139eb3cd84f347e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800503,32.8914345]},"id":"8f44c0a04a20705-13fe9420982b2a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a20389-139eb3cd84f347e4","8f44c0a04a20705-13fe9420982b2a09"]},"geometry":{"type":"LineString","coordinates":[[-83.6801832,32.8914915],[-83.6803457,32.8912825],[-83.68022020000001,32.891205],[-83.6800503,32.8914345]]},"id":"8b44c0a04a20fff-13bed3b95999e273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6801903,32.8916781]},"id":"8f44c0a04a23865-1396d3c91b50ec91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67987690000001,32.89136]},"id":"8f44c0a04a20481-13de948cf53c49af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a23865-1396d3c91b50ec91","8f44c0a04a20481-13de948cf53c49af"]},"geometry":{"type":"LineString","coordinates":[[-83.6801903,32.8916781],[-83.67978930000001,32.8914753],[-83.67987690000001,32.89136]]},"id":"8a44c0a04a27fff-13bfb45e43bfdab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6789657,32.890841200000004]},"id":"8f44c0a04a34073-1397d6c67e26a568"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6783877,32.8907934]},"id":"8f44c0a04a36c09-13fff82fbfc95c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a34073-1397d6c67e26a568","8f44c0a04a36c09-13fff82fbfc95c04"]},"geometry":{"type":"LineString","coordinates":[[-83.6789657,32.890841200000004],[-83.6787901,32.8907556],[-83.6786623,32.8909326],[-83.6783877,32.8907934]]},"id":"8a44c0a04a37fff-1396f7782afc8b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769177,32.8905583]},"id":"8f44c0a04b83ad3-13d6fbc67ab129f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b8ece3-13befb7b407aa509","8f44c0a04b83ad3-13d6fbc67ab129f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6769177,32.8905583],[-83.67703800000001,32.890699000000005]]},"id":"8944c0a04bbffff-1396fba0df764e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6802083,32.8936463]},"id":"8f44c0a04a09523-17f6f3bdd2abde99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6797916,32.893527]},"id":"8f44c0a04a0ab41-1796f4c24d2b96f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a09523-17f6f3bdd2abde99","8f44c0a04a0ab41-1796f4c24d2b96f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6802083,32.8936463],[-83.6797916,32.893527]]},"id":"8a44c0a04a0ffff-17bfb4401a3a9e70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680107,32.894015700000004]},"id":"8f44c0a04a56ca1-13d7d3fd2842d37f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679924,32.89412]},"id":"8f44c0a04ae5942-139f946f82b7bb05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a56ca1-13d7d3fd2842d37f","8f44c0a04ae5942-139f946f82b7bb05"]},"geometry":{"type":"LineString","coordinates":[[-83.680107,32.894015700000004],[-83.679924,32.89412]]},"id":"8844c0a04bfffff-13fef4365caab3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68093280000001,32.892863000000006]},"id":"8f44c0a04a29780-17f7f1f90aa8e800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6805841,32.8926874]},"id":"8f44c0a04a2bd71-179fb2d2f89dd6ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2bd71-179fb2d2f89dd6ee","8f44c0a04a29780-17f7f1f90aa8e800"]},"geometry":{"type":"LineString","coordinates":[[-83.68093280000001,32.892863000000006],[-83.68083100000001,32.8928888],[-83.6807387,32.8928868],[-83.6806416,32.8928491],[-83.680599,32.892781500000005],[-83.6805841,32.8926874]]},"id":"8a44c0a04a2ffff-17f7d27e7b9b70cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6812453,32.8931016]},"id":"8f44c0a04a74419-179e9135bd5f5f51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6814185,32.8928613]},"id":"8f44c0a04b5a6d0-17f6d0c97299ab85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b5a6d0-17f6d0c97299ab85","8f44c0a04a74419-179e9135bd5f5f51"]},"geometry":{"type":"LineString","coordinates":[[-83.6812453,32.8931016],[-83.6814185,32.8928613]]},"id":"8b44c0a04a74fff-17d7f0ff9ee828ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6812177,32.893148700000005]},"id":"8f44c0a04a744de-17bff146f08d7c0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6811483,32.893745700000004]},"id":"8f44c0a04a73d2a-139f917256f08ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a744de-17bff146f08d7c0b","8f44c0a04a73d2a-139f917256f08ef5"]},"geometry":{"type":"LineString","coordinates":[[-83.6812177,32.893148700000005],[-83.68143470000001,32.8932367],[-83.6811483,32.893745700000004]]},"id":"8a44c0a04a77fff-17deb112a1facbd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67936080000001,32.8934656]},"id":"8f44c0a04a0a50b-17f695cf81a1f27f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6796456,32.8927537]},"id":"8f44c0a04a017a9-17b7951d81922ba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a017a9-17b7951d81922ba6","8f44c0a04a0a50b-17f695cf81a1f27f"]},"geometry":{"type":"LineString","coordinates":[[-83.67936080000001,32.8934656],[-83.67959420000001,32.8933419],[-83.6796537,32.8932783],[-83.67970240000001,32.8932011],[-83.6798593,32.892849000000005],[-83.6796456,32.8927537]]},"id":"8944c0a04a3ffff-1796f509a9e1c176"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67908440000001,32.892667800000005]},"id":"8f44c0a04a02249-17fff67c491b2ed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67823340000001,32.8921183]},"id":"8f44c0a04a10842-17b7f8902c599a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a10842-17b7f8902c599a0b","8f44c0a04a02249-17fff67c491b2ed8"]},"geometry":{"type":"LineString","coordinates":[[-83.67908440000001,32.892667800000005],[-83.6789748,32.8925311],[-83.678534,32.8919656],[-83.67823340000001,32.8921183]]},"id":"8944c0a04a3ffff-17f7b7718f656b6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6781808,32.891671]},"id":"8f44c0a04a14c45-139ef8b10abdc9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6782608,32.891123]},"id":"8f44c0a04a32d04-13b7f87f0fa0479b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a14c45-139ef8b10abdc9fa","8f44c0a04a32d04-13b7f87f0fa0479b"]},"geometry":{"type":"LineString","coordinates":[[-83.6781808,32.891671],[-83.6778146,32.8912071],[-83.6778335,32.8911389],[-83.6779092,32.891100300000005],[-83.6782608,32.891123]]},"id":"8844c0a04bfffff-13b7b91f1945e110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6834362,32.895667200000005]},"id":"8f44c0a05d36645-17d68bdc67d27b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6839095,32.8951018]},"id":"8f44c0a2369a680-13feaab498485a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2369a680-13feaab498485a03","8f44c0a05d36645-17d68bdc67d27b8b"]},"geometry":{"type":"LineString","coordinates":[[-83.6834362,32.895667200000005],[-83.68372020000001,32.895419700000005],[-83.6837797,32.895360600000004],[-83.6839095,32.8951018]]},"id":"8644c0a07ffffff-17beab376e5a828d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6830738,32.8964961]},"id":"8f44c0a05d146a3-17d69cbee7e2ce26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6822442,32.8965125]},"id":"8f44c0a05da51ae-17f6dec560ad76f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05da51ae-17f6dec560ad76f5","8f44c0a05d146a3-17d69cbee7e2ce26"]},"geometry":{"type":"LineString","coordinates":[[-83.6830738,32.8964961],[-83.6822442,32.8965125]]},"id":"8844c0a05dfffff-17dfbdc227d25cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68304570000001,32.897485100000004]},"id":"8f44c0a05dad944-13d6bcd074efb87b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68279360000001,32.897603600000004]},"id":"8f44c0a05dad193-139ecd6e0f9c2526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05dad944-13d6bcd074efb87b","8f44c0a05dad193-139ecd6e0f9c2526"]},"geometry":{"type":"LineString","coordinates":[[-83.68304570000001,32.897485100000004],[-83.68279360000001,32.897603600000004]]},"id":"8b44c0a05dadfff-13f7cd1f4847e383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6830583,32.897924100000004]},"id":"8f44c0a05d1a424-13d69cc89d4b698d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68385,32.897252300000005]},"id":"8f44c0a05d1c992-13bebad9cd07c2e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d1c992-13bebad9cd07c2e9","8f44c0a05d1a424-13d69cc89d4b698d"]},"geometry":{"type":"LineString","coordinates":[[-83.6830583,32.897924100000004],[-83.68370130000001,32.8974999],[-83.68361200000001,32.8974045],[-83.68385,32.897252300000005]]},"id":"8a44c0a05d1ffff-1396dbb82cc38939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69162990000001,32.8955641]},"id":"8f44c0a23641919-179ff7db5f2c7a88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69077440000001,32.8953349]},"id":"8f44c0a2364291e-179679f20fbaced4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23641919-179ff7db5f2c7a88","8f44c0a2364291e-179679f20fbaced4"]},"geometry":{"type":"LineString","coordinates":[[-83.69162990000001,32.8955641],[-83.69092230000001,32.8952418],[-83.6908581,32.895254],[-83.69080620000001,32.895287100000004],[-83.69077440000001,32.8953349]]},"id":"8a44c0a23647fff-179ff8ecb0e7e722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69136060000001,32.8958312]},"id":"8f44c0a23641780-17b6f883a11ddabb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909414,32.8956219]},"id":"8f44c0a23643d14-17b7f989a89d10a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23643d14-17b7f989a89d10a6","8f44c0a23641780-17b6f883a11ddabb"]},"geometry":{"type":"LineString","coordinates":[[-83.69136060000001,32.8958312],[-83.6909414,32.8956219]]},"id":"8a44c0a23647fff-17f77906ac2a3739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913071,32.8959311]},"id":"8f44c0a2364ed36-17f6f8a517f9e86f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69086730000001,32.8957275]},"id":"8f44c0a23643c98-17f7f9b7ff9526cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23643c98-17f7f9b7ff9526cb","8f44c0a2364ed36-17f6f8a517f9e86f"]},"geometry":{"type":"LineString","coordinates":[[-83.6913071,32.8959311],[-83.69086730000001,32.8957275]]},"id":"8a44c0a23647fff-17b7792e8d3ff042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70364380000001,32.8999613]},"id":"8f44c0a2e5094c2-17dfda86a055926f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70348290000001,32.9000007]},"id":"8f44c0a2e50b16c-17f67aeb308405ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5094c2-17dfda86a055926f","8f44c0a2e50b16c-17f67aeb308405ed"]},"geometry":{"type":"LineString","coordinates":[[-83.70364380000001,32.8999613],[-83.70348290000001,32.9000007]]},"id":"8a44c0a2e50ffff-17de7ab8ec0782fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916637,32.9010915]},"id":"8f44c0a05811690-139e77c633d2c228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910539,32.9007749]},"id":"8f44c0a0581205e-13de7943542be0d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05811690-139e77c633d2c228","8f44c0a0581205e-13de7943542be0d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6916637,32.9010915],[-83.69153800000001,32.901052],[-83.6910539,32.9007749]]},"id":"8a44c0a05817fff-13b7f887a9678a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883373,32.9015429]},"id":"8f44c0a05891c82-13be7fe53da2c22b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68784640000001,32.901724]},"id":"8f44c0a0589351d-139f81180fd6580d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05891c82-13be7fe53da2c22b","8f44c0a0589351d-139f81180fd6580d"]},"geometry":{"type":"LineString","coordinates":[[-83.6883373,32.9015429],[-83.68784640000001,32.901724]]},"id":"8a44c0a05897fff-13f6f07e92518902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6879078,32.901854]},"id":"8f44c0a05893710-13fec0f1ae392f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0589351d-139f81180fd6580d","8f44c0a05893710-13fec0f1ae392f1d"]},"geometry":{"type":"LineString","coordinates":[[-83.68784640000001,32.901724],[-83.6879078,32.901854]]},"id":"8b44c0a05893fff-13d6a104dbb82890"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876388,32.901391100000005]},"id":"8f44c0a05892112-13dff199cc397d90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05892112-13dff199cc397d90","8f44c0a05c61b86-139ed267529d45ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6876388,32.901391100000005],[-83.6873099,32.901523700000006]]},"id":"8944c0a05c7ffff-13f6e20097a08960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c618a9-13ffc28cce135aa1","8f44c0a05c6464e-13d7b36dae1f0b77"]},"geometry":{"type":"LineString","coordinates":[[-83.68725,32.901446],[-83.687168,32.901331],[-83.687151,32.901308],[-83.68698900000001,32.901123000000005],[-83.68689020000001,32.9010035]]},"id":"8a44c0a05c67fff-13dfe2fb120865f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c618a9-13ffc28cce135aa1","8f44c0a05c61b86-139ed267529d45ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6873099,32.901523700000006],[-83.68725,32.901446]]},"id":"8b44c0a05c61fff-1396927a12f5d38c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909074,32.9049672]},"id":"8f44c0a058da351-1396f99eede0ad68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909392,32.904120400000004]},"id":"8f44c0a058d1676-13f7798b01b794d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058d1676-13f7798b01b794d3","8f44c0a058da351-1396f99eede0ad68"]},"geometry":{"type":"LineString","coordinates":[[-83.6909074,32.9049672],[-83.6906148,32.904788700000005],[-83.6911177,32.9042416],[-83.6909392,32.904120400000004]]},"id":"8944c0a058fffff-139779b92f15cd81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7048544,32.912546500000005]},"id":"8f44c0a2e6dc812-1797d7920e5ff1bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7048817,32.9135985]},"id":"8f44c0a2e6d96a8-13975780f876f18e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e6d96a8-13975780f876f18e","8f44c0a2e6dc812-1797d7920e5ff1bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7048544,32.912546500000005],[-83.7048817,32.9135985]]},"id":"8a44c0a2e6dffff-17de5789889681d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70488320000001,32.9139442]},"id":"8f44c0a2ad660c2-13ff778004def219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7046138,32.9142024]},"id":"8f44c0a2ad62535-1396d82860f173f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad660c2-13ff778004def219","8f44c0a2ad62535-1396d82860f173f9"]},"geometry":{"type":"LineString","coordinates":[[-83.70488320000001,32.9139442],[-83.7040096,32.913369100000004],[-83.70379030000001,32.9136414],[-83.7046138,32.9142024]]},"id":"8844c0a2adfffff-13f6f902921f10e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70469630000001,32.9147459]},"id":"8f44c0a2ad44028-13f677f4dbf86a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70602190000001,32.914163]},"id":"8f44c0a2ad65a6d-13f7f4b8524bf08a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad65a6d-13f7f4b8524bf08a","8f44c0a2ad44028-13f677f4dbf86a37"]},"geometry":{"type":"LineString","coordinates":[[-83.70469630000001,32.9147459],[-83.70484090000001,32.9145425],[-83.705252,32.9138791],[-83.70602190000001,32.914163]]},"id":"8944c0a2ad7ffff-1397f68dcbd790aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7061724,32.9147319]},"id":"8f44c0a2ad6c94b-13df745a49ca8979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706483,32.914052000000005]},"id":"8f44c0a2a996a6e-13b6d3982db88bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad6c94b-13df745a49ca8979","8f44c0a2a996a6e-13b6d3982db88bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.7061724,32.9147319],[-83.7062133,32.9145638],[-83.706483,32.914052000000005]]},"id":"8a44c0a2a997fff-13977402cafe765d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70655470000001,32.9139417]},"id":"8f44c0a2a99445b-13ffd36b53d3a19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068828,32.9137286]},"id":"8f44c0a2a994940-13fe729e44da6010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a994940-13fe729e44da6010","8f44c0a2a99445b-13ffd36b53d3a19f"]},"geometry":{"type":"LineString","coordinates":[[-83.70655470000001,32.9139417],[-83.706697,32.913668900000005],[-83.7068828,32.9137286]]},"id":"8b44c0a2a994fff-13fe7317177fe4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068919,32.9140395]},"id":"8f44c0a2a99436b-13bef29895fd1fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70758090000001,32.9142961]},"id":"8f44c0a2a986288-13df50e9fc002171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99436b-13bef29895fd1fed","8f44c0a2a986288-13df50e9fc002171"]},"geometry":{"type":"LineString","coordinates":[[-83.7068919,32.9140395],[-83.7070139,32.9139035],[-83.70758090000001,32.9142961]]},"id":"8944c0a2a9bffff-13bfd1c84f418ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7054126,32.915264900000004]},"id":"8f44c0a2ad6a886-17bed6352533f435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad6a886-17bed6352533f435","8f44c0a2ad6eb94-13d6f5b50b1cb191"]},"geometry":{"type":"LineString","coordinates":[[-83.70561760000001,32.9149231],[-83.7054126,32.915264900000004]]},"id":"8a44c0a2ad6ffff-17bfd5f5154ff429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70649680000001,32.9165683]},"id":"8f44c0a2a8b0289-17d7738f89cbfa68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70601380000001,32.916879200000004]},"id":"8f44c0a2a894bae-139fd4bd6b062371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a894bae-139fd4bd6b062371","8f44c0a2a8b0289-17d7738f89cbfa68"]},"geometry":{"type":"LineString","coordinates":[[-83.70649680000001,32.9165683],[-83.70601380000001,32.916879200000004]]},"id":"8944c0a2a8bffff-13be74267a636dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70673790000001,32.916653100000005]},"id":"8f44c0a2a8b1192-139e72f8d5e25f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7062798,32.916936500000006]},"id":"8f44c0a2a8b3753-13bf5417235426de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8b1192-139e72f8d5e25f21","8f44c0a2a8b3753-13bf5417235426de"]},"geometry":{"type":"LineString","coordinates":[[-83.70673790000001,32.916653100000005],[-83.7062798,32.916936500000006]]},"id":"8a44c0a2a8b7fff-13f6d38801491d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70878830000001,32.9153502]},"id":"8f44c0a2a98d51e-17dfedf758cf5a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7089864,32.9152714]},"id":"8f44c0a2a98dd49-17beed7b820e949b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a98dd49-17beed7b820e949b","8f44c0a2a98d51e-17dfedf758cf5a38"]},"geometry":{"type":"LineString","coordinates":[[-83.70878830000001,32.9153502],[-83.7089864,32.9152714]]},"id":"8b44c0a2a98dfff-17d74db9740e70d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7100659,32.916344200000005]},"id":"8f44c0a2a80611c-17df6ad8d8bdb563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096674,32.915910100000005]},"id":"8f44c0a2a833d5e-17bfdbd1e66cf1ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a833d5e-17bfdbd1e66cf1ab","8f44c0a2a80611c-17df6ad8d8bdb563"]},"geometry":{"type":"LineString","coordinates":[[-83.7100659,32.916344200000005],[-83.7096674,32.915910100000005]]},"id":"8944c0a2a83ffff-17d7cb55563eb079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7088145,32.916212900000005]},"id":"8f44c0a2a8168dc-17ff5de6f89b500e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7086761,32.9160368]},"id":"8f44c0a2a816d35-179f4e3d7c2168b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a816d35-179f4e3d7c2168b1","8f44c0a2a8168dc-17ff5de6f89b500e"]},"geometry":{"type":"LineString","coordinates":[[-83.7088145,32.916212900000005],[-83.7086761,32.9160368]]},"id":"8b44c0a2a816fff-17d65e123e8d8123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085457,32.918157400000005]},"id":"8f44c0a2a8f6c20-13be6e8efebb2536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8ab912-13dfff0f26a1f5b8","8f44c0a2a8f6c20-13be6e8efebb2536"]},"geometry":{"type":"LineString","coordinates":[[-83.7083406,32.9178015],[-83.7085457,32.918157400000005]]},"id":"8a44c0a2a8affff-13df7ecf18e1c416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8ab912-13dfff0f26a1f5b8","8f44c0a2a8aa013-139ff033c9d3a88e"]},"geometry":{"type":"LineString","coordinates":[[-83.7083406,32.9178015],[-83.7082343,32.9177569],[-83.708123,32.9177288],[-83.7078724,32.9176826]]},"id":"8a44c0a2a8affff-13becf9fa183fac6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8f6c20-13be6e8efebb2536","8f44c0a2a8a9620-13f6fe4fce7fdad4"]},"geometry":{"type":"LineString","coordinates":[[-83.70864680000001,32.918017500000005],[-83.70861190000001,32.9180463],[-83.70858240000001,32.9180784],[-83.70856020000001,32.9181155],[-83.7085457,32.918157400000005]]},"id":"8a44c0a2a8affff-139f4e74811eeac6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083569,32.9121906]},"id":"8f44c0a2e65d52e-17b76f04f578699c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7080086,32.9128728]},"id":"8f44c0a2e65b334-17d7cfdea3ed8d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e65b334-17d7cfdea3ed8d20","8f44c0a2e65d52e-17b76f04f578699c"]},"geometry":{"type":"LineString","coordinates":[[-83.7083569,32.9121906],[-83.7080086,32.9128728]]},"id":"8a44c0a2e65ffff-17fe5f71dbb95970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70954210000001,32.9134702]},"id":"8f44c0a2a9129a4-13d6ec203d96d782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70996000000001,32.9135677]},"id":"8f44c0a2a910023-1397db1b00a8d97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a910023-1397db1b00a8d97b","8f44c0a2a9129a4-13d6ec203d96d782"]},"geometry":{"type":"LineString","coordinates":[[-83.70954210000001,32.9134702],[-83.709614,32.9135091],[-83.70968380000001,32.913549700000004],[-83.70996000000001,32.9135677]]},"id":"8a44c0a2a917fff-13f6dba1961ccccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71130640000001,32.9147121]},"id":"8f44c0a2a90ac22-13df57d18bec88fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71157740000001,32.9145089]},"id":"8f44c0a2a90e04c-13d6572826ca0433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a90ac22-13df57d18bec88fb","8f44c0a2a90e04c-13d6572826ca0433"]},"geometry":{"type":"LineString","coordinates":[[-83.71130640000001,32.9147121],[-83.71157740000001,32.9145089]]},"id":"8a44c0a2a90ffff-139fd77cd78883dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710232,32.9162242]},"id":"8f44c0a2a806971-17966a7108c27b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7098338,32.9158192]},"id":"8f44c0a2a83029d-17974b69e9fea90c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a806971-17966a7108c27b0e","8f44c0a2a83029d-17974b69e9fea90c"]},"geometry":{"type":"LineString","coordinates":[[-83.710232,32.9162242],[-83.7098338,32.9158192]]},"id":"8944c0a2a83ffff-1797daed73c14bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7103816,32.9161161]},"id":"8f44c0a2a804cb4-17beda138a97f3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7100128,32.915721500000004]},"id":"8f44c0a2a830acc-17d7fafa0d26669c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a830acc-17d7fafa0d26669c","8f44c0a2a804cb4-17beda138a97f3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7103816,32.9161161],[-83.7100128,32.915721500000004]]},"id":"8944c0a2a83ffff-17d74a86c4a00e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5905029,32.903525900000005]},"id":"8f44c0a1051cdb3-17fffebfbe29983d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5900586,32.9038358]},"id":"8f44c0a1051e54e-13d76fd564a7e7c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1051e54e-13d76fd564a7e7c7","8f44c0a1051cdb3-17fffebfbe29983d"]},"geometry":{"type":"LineString","coordinates":[[-83.5905029,32.903525900000005],[-83.59041090000001,32.9036604],[-83.59035130000001,32.9037365],[-83.5903024,32.9037711],[-83.5901846,32.9038045],[-83.5900586,32.9038358]]},"id":"8a44c0a1051ffff-13ffef39221a373e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59044730000001,32.904064500000004]},"id":"8f44c0a10518ce0-13d77ee270ef749d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1051e54e-13d76fd564a7e7c7","8f44c0a10518ce0-13d77ee270ef749d"]},"geometry":{"type":"LineString","coordinates":[[-83.5900586,32.9038358],[-83.5901616,32.9038531],[-83.59031490000001,32.903922900000005],[-83.59044730000001,32.904064500000004]]},"id":"8a44c0a1051ffff-13f76f51fea71f2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7281166,32.8101146]},"id":"8f44c0b08ca38d3-13f7bec72a021341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7283635,32.810243]},"id":"8f44c0b08ca1683-17d7fe2cde501440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08ca1683-17d7fe2cde501440","8f44c0b08ca38d3-13f7bec72a021341"]},"geometry":{"type":"LineString","coordinates":[[-83.7281166,32.8101146],[-83.72830780000001,32.8101944],[-83.7283635,32.810243]]},"id":"8a44c0b08ca7fff-17973e7714a21d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72822760000001,32.807777200000004]},"id":"8f44c0b08d80705-17bede81c18aeb81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d82aed-17fefefd25b68d7c","8f44c0b08d80705-17bede81c18aeb81"]},"geometry":{"type":"LineString","coordinates":[[-83.72822760000001,32.807777200000004],[-83.7280302,32.807883000000004]]},"id":"8a44c0b08d87fff-17dfdebf77509529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727922,32.807381]},"id":"8f44c0b08d86011-17d73f40ca368d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d95b44-17967fbd0c9c0018","8f44c0b08d86011-17d73f40ca368d61"]},"geometry":{"type":"LineString","coordinates":[[-83.7277232,32.8074759],[-83.727922,32.807381]]},"id":"8b44c0b08d86fff-17f6df7eeff479af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7234603,32.8119673]},"id":"8f44c0b0e25c1aa-13f7ba2559e4e9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e25c452-13b73a7d2e2ec264","8f44c0b0e25c1aa-13f7ba2559e4e9af"]},"geometry":{"type":"LineString","coordinates":[[-83.7233198,32.8120403],[-83.7234603,32.8119673]]},"id":"8b44c0b0e25cfff-139e6a513827fc61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186437,32.808783000000005]},"id":"8f44c0b0e2a6210-13b775e7bb13cde9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719728,32.808793200000004]},"id":"8f44c0b0e2164e8-13b7f3420a24a003"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a6210-13b775e7bb13cde9","8f44c0b0e2164e8-13b7f3420a24a003"]},"geometry":{"type":"LineString","coordinates":[[-83.7186437,32.808783000000005],[-83.719728,32.808793200000004]]},"id":"8844c0b0e3fffff-13b6b494e2806eb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71958790000001,32.8086363]},"id":"8f44c0b0e38b2d0-13d7b3999759b6f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71865170000001,32.8086162]},"id":"8f44c0b0e2a6140-13df35e2b67fb431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e38b2d0-13d7b3999759b6f7","8f44c0b0e2a6140-13df35e2b67fb431"]},"geometry":{"type":"LineString","coordinates":[[-83.71958790000001,32.8086363],[-83.71865170000001,32.8086162]]},"id":"8844c0b0e3fffff-13df74be22bb51fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7193323,32.8083112]},"id":"8f44c0b0e38a24e-179eb4395388195d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186671,32.808300100000004]},"id":"8f44c0b0e399775-1797b5d91bf9b97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e38a24e-179eb4395388195d","8f44c0b0e399775-1797b5d91bf9b97b"]},"geometry":{"type":"LineString","coordinates":[[-83.7193323,32.8083112],[-83.7186671,32.808300100000004]]},"id":"8944c0b0e3bffff-179735093bc55b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186594,32.8084579]},"id":"8f44c0b0e2a69ab-17f635dde0fa175f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71945140000001,32.8084647]},"id":"8f44c0b0e38b734-17fe73eeee950a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2a69ab-17f635dde0fa175f","8f44c0b0e38b734-17fe73eeee950a36"]},"geometry":{"type":"LineString","coordinates":[[-83.7186594,32.8084579],[-83.71945140000001,32.8084647]]},"id":"8844c0b0e3fffff-17fe74e6668251c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186025,32.8096801]},"id":"8f44c0b0e285c1c-13f6360170b93498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203398,32.8097252]},"id":"8f44c0b0e21e526-13fe71c3a4e73bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e21e526-13fe71c3a4e73bf0","8f44c0b0e285c1c-13f6360170b93498"]},"geometry":{"type":"LineString","coordinates":[[-83.7186025,32.8096801],[-83.7203398,32.8097252]]},"id":"8844c0b0e3fffff-13f633e29b655a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72028800000001,32.8095719]},"id":"8f44c0b0e213ad4-139e71e4036f52af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186073,32.8095359]},"id":"8f44c0b0e284a65-1397f5fe78c8bd7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e284a65-1397f5fe78c8bd7b","8f44c0b0e213ad4-139e71e4036f52af"]},"geometry":{"type":"LineString","coordinates":[[-83.72028800000001,32.8095719],[-83.7186073,32.8095359]]},"id":"8844c0b0e3fffff-139733f130d5e214"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186145,32.8093871]},"id":"8f44c0b0e2a341e-13bef5f9f9eac95d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72020710000001,32.8094096]},"id":"8f44c0b0e2138f2-13bf321694535fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2138f2-13bf321694535fc5","8f44c0b0e2a341e-13bef5f9f9eac95d"]},"geometry":{"type":"LineString","coordinates":[[-83.7186145,32.8093871],[-83.72020710000001,32.8094096]]},"id":"8844c0b0e3fffff-13b6340846a3584f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201127,32.8092595]},"id":"8f44c0b0e210689-13df32519b7c553b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186219,32.8092338]},"id":"8f44c0b0e2a234a-13df35f553b820d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e210689-13df32519b7c553b","8f44c0b0e2a234a-13df35f553b820d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7201127,32.8092595],[-83.7186219,32.8092338]]},"id":"8844c0b0e3fffff-13d734237535e00f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186303,32.8090603]},"id":"8f44c0b0e2a2a32-13deb5f01f773b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719975,32.8090926]},"id":"8f44c0b0e212869-13f6f2a7a1738add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2a2a32-13deb5f01f773b9e","8f44c0b0e212869-13f6f2a7a1738add"]},"geometry":{"type":"LineString","coordinates":[[-83.7186303,32.8090603],[-83.719975,32.8090926]]},"id":"8844c0b0e3fffff-13fef44be18ecf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7198384,32.808927000000004]},"id":"8f44c0b0e216655-139f72fd0e3e8ede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186375,32.8089111]},"id":"8f44c0b0e2a2940-139775eb905d7dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e216655-139f72fd0e3e8ede","8f44c0b0e2a2940-139775eb905d7dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.7198384,32.808927000000004],[-83.7186375,32.8089111]]},"id":"8844c0b0e3fffff-139674744fe3b9cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71493480000001,32.8144462]},"id":"8f44c0b0a98caeb-1796fef5ca02c82b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713897,32.8142766]},"id":"8f44c0b0a9832b6-179ee17e60add58f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a9832b6-179ee17e60add58f","8f44c0b0a98caeb-1796fef5ca02c82b"]},"geometry":{"type":"LineString","coordinates":[[-83.71493480000001,32.8144462],[-83.7149318,32.814277100000005],[-83.71409600000001,32.814275300000006],[-83.713897,32.8142766]]},"id":"8944c0b0a9bffff-17b6600d7b7b5282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135983,32.8144766]},"id":"8f44c0b0a99d531-1797e2391c670eb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132967,32.8140439]},"id":"8f44c0b0a99cdaa-179f72f5972f0c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a99cdaa-179f72f5972f0c00","8f44c0b0a99d531-1797e2391c670eb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7135983,32.8144766],[-83.7134726,32.8144641],[-83.71337960000001,32.814415100000005],[-83.7133431,32.814365200000005],[-83.7133324,32.8141696],[-83.7132967,32.8140439]]},"id":"8a44c0b0a99ffff-17b7f2bafa6a28f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71397350000001,32.814450300000004]},"id":"8f44c0b0a98e494-1797714e9a6f97bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a9832b6-179ee17e60add58f","8f44c0b0a98e494-1797714e9a6f97bb"]},"geometry":{"type":"LineString","coordinates":[[-83.713897,32.8142766],[-83.7138553,32.8143347],[-83.71385310000001,32.814375500000004],[-83.7138721,32.814413800000004],[-83.71390670000001,32.8144332],[-83.71397350000001,32.814450300000004]]},"id":"8944c0b0a9bffff-17de61833e4c02fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7137575,32.8138316]},"id":"8f44c0b0a982a29-1796c1d591b1a3d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140002,32.8134214]},"id":"8f44c0b0a9846ad-1796613de5804a3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a982a29-1796c1d591b1a3d0","8f44c0b0a9846ad-1796613de5804a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.7137575,32.8138316],[-83.71399840000001,32.8138327],[-83.7140002,32.8134214]]},"id":"8a44c0b0a987fff-17b6415a7b6a85f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71417380000001,32.813049500000005]},"id":"8f44c0b0a9a26e9-139ff0d16001ee00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7137611,32.813052400000004]},"id":"8f44c0b0a9b1763-139fc1d35ccbfe6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a9a26e9-139ff0d16001ee00","8f44c0b0a9b1763-139fc1d35ccbfe6c"]},"geometry":{"type":"LineString","coordinates":[[-83.71417380000001,32.813049500000005],[-83.7137611,32.813052400000004]]},"id":"8944c0b0a9bffff-139ee1525821b3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71671830000001,32.826699600000005]},"id":"8f44c0b0a322649-17ff7a9b1a032b83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a331a08-17d77b368d6180c4","8f44c0b0a322649-17ff7a9b1a032b83"]},"geometry":{"type":"LineString","coordinates":[[-83.71646960000001,32.826635800000005],[-83.71671830000001,32.826699600000005]]},"id":"8944c0b0a33ffff-17df7ae8d6e2db83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7167058,32.8265666]},"id":"8f44c0b0a3220da-179e3aa2ebf97014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a331a08-17d77b368d6180c4","8f44c0b0a3220da-179e3aa2ebf97014"]},"geometry":{"type":"LineString","coordinates":[[-83.71646960000001,32.826635800000005],[-83.716626,32.826607200000005],[-83.7167058,32.8265666]]},"id":"8944c0b0a33ffff-17b6baeb119d23a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7168912,32.826606600000005]},"id":"8f44c0b0a322370-17b73a2f04892238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a322370-17b73a2f04892238","8f44c0b0a3220da-179e3aa2ebf97014"]},"geometry":{"type":"LineString","coordinates":[[-83.7168912,32.826606600000005],[-83.7167058,32.8265666]]},"id":"8b44c0b0a322fff-17beba68f579d206"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a322d4c-13963a87b79657f4","8f44c0b0a3220da-179e3aa2ebf97014"]},"geometry":{"type":"LineString","coordinates":[[-83.7167058,32.8265666],[-83.716738,32.826515],[-83.71675,32.826439],[-83.7167493,32.8263265]]},"id":"8b44c0b0a322fff-13d77a8cc88b374f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71667160000001,32.8268427]},"id":"8f44c0b0a3048d2-17debab844c75892"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716942,32.8267515]},"id":"8f44c0b0a32350e-179fba0f4357e5b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0a32350e-179fba0f4357e5b3","8f44c0b0a3048d2-17debab844c75892"]},"geometry":{"type":"LineString","coordinates":[[-83.71667160000001,32.8268427],[-83.71674630000001,32.826795700000005],[-83.7168013,32.826775600000005],[-83.7168525,32.826764100000005],[-83.716942,32.8267515]]},"id":"8944c0b0a33ffff-17b63a66aed7e21d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201679,32.8276138]},"id":"8f44c0b0aace2d9-17beb22f1f0ea5a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aace2d9-17beb22f1f0ea5a6","8f44c0b0aace65c-179eb27e863b2131"]},"geometry":{"type":"LineString","coordinates":[[-83.7200408,32.8275658],[-83.7201679,32.8276138]]},"id":"8b44c0b0aacefff-179fb256c005ab1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7187895,32.8271816]},"id":"8f44c0b0aade133-179eb58c96f0f3bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718929,32.827349000000005]},"id":"8f44c0b0aade32d-179735356e83ec2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0aade32d-179735356e83ec2f","8f44c0b0aade133-179eb58c96f0f3bd"]},"geometry":{"type":"LineString","coordinates":[[-83.7187895,32.8271816],[-83.71887290000001,32.8272661],[-83.718929,32.827349000000005]]},"id":"8b44c0b0aadefff-17def55e93353dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7190953,32.8272587]},"id":"8f44c0b0aadc798-17deb4cd78615de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0aade32d-179735356e83ec2f","8f44c0b0aadc798-17deb4cd78615de3"]},"geometry":{"type":"LineString","coordinates":[[-83.718929,32.827349000000005],[-83.7189809,32.8273097],[-83.71904040000001,32.827280200000004],[-83.7190953,32.8272587]]},"id":"8a44c0b0aadffff-17f7f50332195f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203724,32.8275695]},"id":"8f44c0b0aac8c19-179ef1af4379d9d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aace2d9-17beb22f1f0ea5a6","8f44c0b0aac8c19-179ef1af4379d9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7203724,32.8275695],[-83.7202898,32.8275645],[-83.7202288,32.827570300000005],[-83.7201679,32.8276138]]},"id":"8a44c0b0aacffff-1796f1f20a3ee897"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69913050000001,32.8147387]},"id":"8f44c0b1d22bd80-17bff58b79e0e9dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69947400000001,32.814262]},"id":"8f44c0b1d22c66a-1797e4b4c373dbb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d22bd80-17bff58b79e0e9dd","8f44c0b1d22c66a-1797e4b4c373dbb9"]},"geometry":{"type":"LineString","coordinates":[[-83.69913050000001,32.8147387],[-83.6993023,32.8145003],[-83.69947400000001,32.814262]]},"id":"8a44c0b1d22ffff-17b6e52012e99902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963231,32.8212929]},"id":"8f44c0b1995db1b-17be7c6613808e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995c72c-17b6eddedd32dd37","8f44c0b1995db1b-17be7c6613808e01"]},"geometry":{"type":"LineString","coordinates":[[-83.6957203,32.8210542],[-83.69621000000001,32.821247],[-83.6963231,32.8212929]]},"id":"8a44c0b1995ffff-17f77d225c15a24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706992,32.806838]},"id":"8f44c0b1db453b1-13f7d25a0263dc8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db453b1-13f7d25a0263dc8e","8f44c0b1db6e030-13fed14a2a4fa2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.706992,32.806838],[-83.7070649,32.8067811],[-83.7071236,32.806743000000004],[-83.7071856,32.8067087],[-83.70725060000001,32.806678600000005],[-83.70742700000001,32.8066188]]},"id":"8944c0b1db7ffff-13b7d1d724547550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70742530000001,32.8069982]},"id":"8f44c0b1db6a8ea-17d7f14b30473125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1db453b1-13f7d25a0263dc8e","8f44c0b1db6a8ea-17d7f14b30473125"]},"geometry":{"type":"LineString","coordinates":[[-83.706992,32.806838],[-83.707087,32.8068088],[-83.70715410000001,32.8068021],[-83.70722380000001,32.8068066],[-83.707256,32.8068156],[-83.70729630000001,32.8068404],[-83.7073579,32.806903500000004],[-83.70742530000001,32.8069982]]},"id":"8944c0b1db7ffff-13fe51c47e3dc249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70742200000001,32.8061887]},"id":"8f44c0b1db6155e-13dff14d4111baf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1db6c575-1396d064cb03df0e","8f44c0b1db6155e-13dff14d4111baf1"]},"geometry":{"type":"LineString","coordinates":[[-83.707794,32.8064781],[-83.7076718,32.8064616],[-83.7075779,32.806432300000004],[-83.7075296,32.806385],[-83.7074894,32.8063219],[-83.70742200000001,32.8061887]]},"id":"8944c0b1db7ffff-13d650ed64598b1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69037900000001,32.871643]},"id":"8f44c0a206b04d6-13befae9213d4d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a22b69470-13be7b49606fc4a7","8f44c0a206b04d6-13befae9213d4d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.69022500000001,32.870858000000005],[-83.69028700000001,32.871132],[-83.690314,32.871324],[-83.69037900000001,32.871643]]},"id":"8844c0a207fffff-13b77b1845cbfff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637974,32.8446092]},"id":"8f44c0a35902550-13befbcea37e4e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66372030000001,32.8445545]},"id":"8f44c0a359025a6-1396bbfed7f83feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a359025a6-1396bbfed7f83feb","8f44c0a35902550-13befbcea37e4e06"]},"geometry":{"type":"LineString","coordinates":[[-83.6637974,32.8446092],[-83.66372030000001,32.8445545]]},"id":"8c44c0a359025ff-1397bbe6be0cafd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631905,32.8452069]},"id":"8f44c0a3591e455-139efd49fcb809f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632692,32.8452508]},"id":"8f44c0a3591e705-13bffd18c59955ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3591e455-139efd49fcb809f1","8f44c0a3591e705-13bffd18c59955ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6631905,32.8452069],[-83.6632692,32.8452508]]},"id":"8b44c0a3591efff-13bebd3167650fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6693826,32.847781000000005]},"id":"8f44c0a264b58a3-17f7ae2befb49cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a264b58a3-17f7ae2befb49cb8","8f44c0a264a6cdd-17dead6306628515"]},"geometry":{"type":"LineString","coordinates":[[-83.66970400000001,32.847732],[-83.6693826,32.847781000000005]]},"id":"8944c0a264bffff-17d7fdc77d2af567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669633,32.854231]},"id":"8f44c0a35b50501-17b6ed8f69dd6458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35b50501-17b6ed8f69dd6458","8f44c0a35b50981-17f7ad068420cebb"]},"geometry":{"type":"LineString","coordinates":[[-83.669852,32.854121],[-83.66978200000001,32.854132],[-83.669633,32.854231]]},"id":"8b44c0a35b50fff-17ffbd4d616fb831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670427,32.855748000000006]},"id":"8f44c0a35b5b84a-13deab9f203ecc95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6707008,32.8555578]},"id":"8f44c0a35b59c2d-13f7aaf40de5ca77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a35b5b84a-13deab9f203ecc95","8f44c0a35b59c2d-13f7aaf40de5ca77"]},"geometry":{"type":"LineString","coordinates":[[-83.670427,32.855748000000006],[-83.6704728,32.8556775],[-83.6705201,32.855640300000005],[-83.6705865,32.8555925],[-83.6707008,32.8555578]]},"id":"8a44c0a35b5ffff-1396ab52953b9801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890515,32.864449900000004]},"id":"8f44c0a20413932-139f7e26d90b7d86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a204102c1-13b77de9c03429af","8f44c0a20413932-139f7e26d90b7d86"]},"geometry":{"type":"LineString","coordinates":[[-83.6890515,32.864449900000004],[-83.6891492,32.864468800000004]]},"id":"8b44c0a20410fff-139f7e0850549e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6941511,32.8714376]},"id":"8f44c0a20606d0b-13bef1b399c86ebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20606d0b-13bef1b399c86ebd","8f44c0a20610583-1397f47a070d8e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.69301440000001,32.8717849],[-83.69354820000001,32.8716233],[-83.6936087,32.8716047],[-83.6938164,32.871541],[-83.69409950000001,32.8714535],[-83.6941511,32.8714376]]},"id":"8944c0a2063ffff-1397f316a9947553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6929365,32.871602700000004]},"id":"8f44c0a206163a2-139ff4aabe421f41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940818,32.871276]},"id":"8f44c0a20633b0d-13d7f1deebddca79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a206163a2-139ff4aabe421f41","8f44c0a20633b0d-13d7f1deebddca79"]},"geometry":{"type":"LineString","coordinates":[[-83.6929365,32.871602700000004],[-83.6940818,32.871276]]},"id":"8944c0a2063ffff-13bff344c68d849e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68995500000001,32.86844]},"id":"8f44c0a204c8404-13d77bf224a92a3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a204c8404-13d77bf224a92a3f","8f44c0a204c90a0-13bf7ac08caff248"]},"geometry":{"type":"LineString","coordinates":[[-83.68995500000001,32.86844],[-83.69023700000001,32.868581],[-83.690312,32.868629],[-83.6903513,32.8686552],[-83.6903965,32.868714700000005],[-83.690444,32.868786]]},"id":"8a44c0a204cffff-13b67b4cd91ddf81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69000220000001,32.8683598]},"id":"8f44c0a204c8c8b-13b6fbd4ae644294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a204c8c8b-13b6fbd4ae644294","8f44c0a204c90a0-13bf7ac08caff248"]},"geometry":{"type":"LineString","coordinates":[[-83.690444,32.868786],[-83.69044720000001,32.8686808],[-83.69041680000001,32.868574100000004],[-83.6903534,32.8685336],[-83.6902704,32.8684916],[-83.69000220000001,32.8683598]]},"id":"8a44c0a204cffff-13967b24f28e48ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57249850000001,32.8057455]},"id":"8f44c0b8526aac1-13d7fab47c42660e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715459,32.804008100000004]},"id":"8f44c0b8535b2f0-179f9d07db4d8cd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8535b2f0-179f9d07db4d8cd6","8f44c0b8526aac1-13d7fab47c42660e"]},"geometry":{"type":"LineString","coordinates":[[-83.57249850000001,32.8057455],[-83.5725336,32.8057127],[-83.57254160000001,32.8055654],[-83.57250210000001,32.8054324],[-83.57244100000001,32.805326300000004],[-83.5715459,32.804008100000004]]},"id":"8944c0b8527ffff-179f9ba7c0a8b993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5696564,32.8080882]},"id":"8f44c0baa595ca3-17ffa1a4c254afd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5705432,32.808030200000005]},"id":"8f44c0baa58441e-17dfff7a83c33bdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa58441e-17dfff7a83c33bdb","8f44c0baa595ca3-17ffa1a4c254afd9"]},"geometry":{"type":"LineString","coordinates":[[-83.5696564,32.8080882],[-83.5705432,32.808030200000005]]},"id":"8944c0baa5bffff-17ffa08fabe9e5f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5696393,32.807899]},"id":"8f44c0baa594b19-179fe1af763e5de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57053350000001,32.8078406]},"id":"8f44c0baa5b1355-17f7ff8094f7ec8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b1355-17f7ff8094f7ec8d","8f44c0baa594b19-179fe1af763e5de7"]},"geometry":{"type":"LineString","coordinates":[[-83.5696393,32.807899],[-83.57053350000001,32.8078406]]},"id":"8944c0baa5bffff-17f7a09802e4ae57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56962340000001,32.8077239]},"id":"8f44c0baa5b22ca-179ff1b96f510ab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5705164,32.8076655]},"id":"8f44c0baa5b1bb3-17f7ff8b4b48f4d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b1bb3-17f7ff8b4b48f4d0","8f44c0baa5b22ca-179ff1b96f510ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.56962340000001,32.8077239],[-83.5705164,32.8076655]]},"id":"8a44c0baa5b7fff-179fb0a25e4c0f8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56960760000001,32.8075482]},"id":"8f44c0baa5b205d-17bfa1c3445578ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5704992,32.8074899]},"id":"8f44c0baa5b1933-179fbf960b52d513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b1933-179fbf960b52d513","8f44c0baa5b205d-17bfa1c3445578ec"]},"geometry":{"type":"LineString","coordinates":[[-83.56960760000001,32.8075482],[-83.5704992,32.8074899]]},"id":"8a44c0baa5b7fff-179ff0aca741b0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5695913,32.807368600000004]},"id":"8f44c0baa5b2883-17bfe1cd75195b98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5704817,32.807310300000005]},"id":"8f44c0baa5b50f6-179fffa0ff6d1e3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b2883-17bfe1cd75195b98","8f44c0baa5b50f6-179fffa0ff6d1e3b"]},"geometry":{"type":"LineString","coordinates":[[-83.5695913,32.807368600000004],[-83.5704817,32.807310300000005]]},"id":"8a44c0baa5b7fff-17bfb0b7372af3f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5695759,32.807197800000004]},"id":"8f44c0baa5b6603-17d7a1d713e0abdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57046480000001,32.8071373]},"id":"8f44c0baa5b5c76-17bfdfab80e56a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b6603-17d7a1d713e0abdd","8f44c0baa5b5c76-17bfdfab80e56a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.5695759,32.807197800000004],[-83.57046480000001,32.8071373]]},"id":"8a44c0baa5b7fff-17bfe0c14df2e4ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67622700000001,32.892691]},"id":"8f44c0a04a84041-179ffd762f755791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6767109,32.892988100000004]},"id":"8f44c0a04a85a03-17d79c47ba078bb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a84041-179ffd762f755791","8f44c0a04a85a03-17d79c47ba078bb1"]},"geometry":{"type":"LineString","coordinates":[[-83.67622700000001,32.892691],[-83.676494,32.89269],[-83.676517,32.892657],[-83.67655500000001,32.892629],[-83.676585,32.89262],[-83.676629,32.89262],[-83.67667900000001,32.892629],[-83.676713,32.892657],[-83.67673500000001,32.892695],[-83.676742,32.892722],[-83.67673900000001,32.892749],[-83.6767272,32.8927689],[-83.6767109,32.892988100000004]]},"id":"8944c0a04abffff-17b79c9cfa623cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099398,32.8266061]},"id":"8f44c0b0a0d899e-17b6db27ad8d606f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099431,32.8271314]},"id":"8f44c0b0a0db843-17ff6b25982f5551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d899e-17b6db27ad8d606f","8f44c0b0a0db843-17ff6b25982f5551"]},"geometry":{"type":"LineString","coordinates":[[-83.7099398,32.8266061],[-83.7099431,32.8271314]]},"id":"8a44c0b0a0dffff-17df4b26a53dfef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096647,32.8271285]},"id":"8f44c0b0a0dbcd1-17ff5bd395c2a431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0db843-17ff6b25982f5551","8f44c0b0a0dbcd1-17ff5bd395c2a431"]},"geometry":{"type":"LineString","coordinates":[[-83.7099431,32.8271314],[-83.7096647,32.8271285]]},"id":"8b44c0b0a0dbfff-17fe4b7c97031a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7204694,32.892093100000004]},"id":"8f44c0a212c389d-17963172a71a70e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72047880000001,32.8913038]},"id":"8f44c0a212c4433-13bef16cc2f50c0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c4433-13bef16cc2f50c0f","8f44c0a212c389d-17963172a71a70e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7204694,32.892093100000004],[-83.72047880000001,32.8913038]]},"id":"8a44c0a212c7fff-139fb16fbf30c8aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72026500000001,32.892090700000004]},"id":"8f44c0a212c3c9b-1796b1f265ff2e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7202675,32.891346]},"id":"8f44c0a212c68f2-13d771f0dc279581"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c68f2-13d771f0dc279581","8f44c0a212c3c9b-1796b1f265ff2e20"]},"geometry":{"type":"LineString","coordinates":[[-83.72026500000001,32.892090700000004],[-83.7202675,32.891346]]},"id":"8a44c0a212c7fff-13be31f19d683ffa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7220441,32.8914795]},"id":"8f44c0a212ec071-1396bd9a7f127715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7220391,32.8921121]},"id":"8f44c0a212e8249-17b63d9d9f41604d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212ec071-1396bd9a7f127715","8f44c0a212e8249-17b63d9d9f41604d"]},"geometry":{"type":"LineString","coordinates":[[-83.7220441,32.8914795],[-83.7220391,32.8921121]]},"id":"8a44c0a212effff-13de6d9c08d0d26f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201201,32.891424900000004]},"id":"8f44c0a212c60b4-13f6b24cff545031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7213717,32.890270900000004]},"id":"8f44c0a212e4c4e-17b77f3ebdece495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c60b4-13f6b24cff545031","8f44c0a212e4c4e-17b77f3ebdece495"]},"geometry":{"type":"LineString","coordinates":[[-83.7201201,32.891424900000004],[-83.7200651,32.8913385],[-83.72000530000001,32.8912454],[-83.7199557,32.8911523],[-83.7199207,32.8910665],[-83.719909,32.890917],[-83.7198973,32.8907319],[-83.71989640000001,32.8903638],[-83.71990650000001,32.8902949],[-83.71992320000001,32.8902118],[-83.7199417,32.8901485],[-83.7199702,32.8901048],[-83.7200255,32.890055600000004],[-83.7200858,32.8900133],[-83.7201512,32.8899795],[-83.7202434,32.8899556],[-83.7203356,32.8899373],[-83.7204798,32.889935900000005],[-83.720629,32.8899429],[-83.72081510000001,32.889958400000005],[-83.72090390000001,32.889966900000005],[-83.7211202,32.8899908],[-83.7212777,32.890034400000005],[-83.7214186,32.8900626],[-83.7213717,32.890270900000004]]},"id":"8844c0a213fffff-17d7719f572deeac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6506952,32.8331767]},"id":"8f44c0b1b490275-17bffbcb86127bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65040420000001,32.8335165]},"id":"8f44c0b1b4930d8-1797dc816d47ff25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b490275-17bffbcb86127bf5","8f44c0b1b4930d8-1797dc816d47ff25"]},"geometry":{"type":"LineString","coordinates":[[-83.6506952,32.8331767],[-83.65040420000001,32.8335165]]},"id":"8a44c0b1b497fff-17bffc2679c6cbdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68849200000001,32.84534]},"id":"8f44c0a2685e0f0-13f7ff848b76a78e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688207,32.844678]},"id":"8f44c0a26850628-13d7c036a8794588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2685e0f0-13f7ff848b76a78e","8f44c0a26850628-13d7c036a8794588"]},"geometry":{"type":"LineString","coordinates":[[-83.68849200000001,32.84534],[-83.688412,32.845049],[-83.6883315,32.844852800000005],[-83.688207,32.844678]]},"id":"8944c0a2687ffff-139f7fcdcdee1c6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68793600000001,32.856776]},"id":"8f44c0a2622d086-17df80e00e3f5b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2622d086-17df80e00e3f5b15","8f44c0a2622d4d8-1796813c0d4bc65e"]},"geometry":{"type":"LineString","coordinates":[[-83.6877888,32.856836],[-83.68782300000001,32.8568477],[-83.68793600000001,32.856776]]},"id":"8b44c0a2622dfff-17f7e10d2db7e01e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69478600000001,32.860759]},"id":"8f44c0a20cc1cb3-17967026c09bdabe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692103,32.859023]},"id":"8f44c0a20c8e588-13df76b3a7a46fdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a20cc1cb3-17967026c09bdabe","8f44c0a20c8e588-13df76b3a7a46fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.69478600000001,32.860759],[-83.694626,32.86059],[-83.69441400000001,32.860391],[-83.6942925,32.8602849],[-83.69416600000001,32.860183],[-83.6940074,32.8600659],[-83.6938423,32.8599553],[-83.6936711,32.859851500000005],[-83.6934942,32.8597546],[-83.693312,32.859665],[-83.6924161,32.859192900000004],[-83.692103,32.859023]]},"id":"8844c0a20dfffff-17de734b5ab98c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660926,32.755937]},"id":"8f44c0b15726836-17bee2d14bc307e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6616042,32.7580801]},"id":"8f44c0b1572b753-17fed129689a0459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b15726836-17bee2d14bc307e5","8f44c0b1572b753-17fed129689a0459"]},"geometry":{"type":"LineString","coordinates":[[-83.660926,32.755937],[-83.661083,32.756196],[-83.661297,32.756601],[-83.66136200000001,32.75677],[-83.66145200000001,32.757027],[-83.66153100000001,32.757314],[-83.661562,32.757499],[-83.66159520000001,32.7577664],[-83.6616042,32.7580801]]},"id":"8944c0b1573ffff-13b7c1b9d5e3a6b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658668,32.772931]},"id":"8f44c0b1111aa6d-13bfe8548be15646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1111899c-13d7d7bcd6e017c6","8f44c0b1111aa6d-13bfe8548be15646"]},"geometry":{"type":"LineString","coordinates":[[-83.658668,32.772931],[-83.6589107,32.7725905]]},"id":"8a44c0b1111ffff-13bfc808af7349b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6277347,32.8476577]},"id":"8f44c0a36a5a59c-179f13d9d82a7994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36aec559-179f554bec1378f3","8f44c0a36a5a59c-179f13d9d82a7994"]},"geometry":{"type":"LineString","coordinates":[[-83.6277347,32.8476577],[-83.627442,32.8473513],[-83.6271426,32.8470485]]},"id":"8a44c0a36aeffff-17dff4920ebe6b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6945099,32.815622000000005]},"id":"8f44c0b1d283722-13f7f0d35952f774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694196,32.8153237]},"id":"8f44c0b1d2820da-13bf719789edea88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2820da-13bf719789edea88","8f44c0b1d283722-13f7f0d35952f774"]},"geometry":{"type":"LineString","coordinates":[[-83.6945099,32.815622000000005],[-83.69436970000001,32.8155415],[-83.69427440000001,32.815468],[-83.6942289,32.8154112],[-83.694196,32.8153237]]},"id":"8a44c0b1d287fff-13977143ab16696d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938155,32.8155851]},"id":"8f44c0b1d2912d9-13def28559c6a3a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2912d9-13def28559c6a3a8","8f44c0b1d2820da-13bf719789edea88"]},"geometry":{"type":"LineString","coordinates":[[-83.694196,32.8153237],[-83.6941359,32.8154144],[-83.6940701,32.8154826],[-83.69403030000001,32.8155061],[-83.6939581,32.8155385],[-83.6938155,32.8155851]]},"id":"8944c0b1d2bffff-139ef20174f74871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69421030000001,32.8151856]},"id":"8f44c0b1d2821ac-13d7718e9755d3b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2820da-13bf719789edea88","8f44c0b1d2821ac-13d7718e9755d3b9"]},"geometry":{"type":"LineString","coordinates":[[-83.694196,32.8153237],[-83.69421030000001,32.8151856]]},"id":"8b44c0b1d282fff-13fe719306992948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e4509-13be7881a5d98411","8f44c0b1d20b796-13dff76ec46cbea0"]},"geometry":{"type":"LineString","coordinates":[[-83.69791740000001,32.8159653],[-83.698121,32.8159769],[-83.6983572,32.8159933]]},"id":"8a44c0b1d2e7fff-13d6e7f83ddd0bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6760108,32.8518221]},"id":"8f44c0a26448306-13d6ddfd43c6ce95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67585070000001,32.8519469]},"id":"8f44c0a2644865b-1396de615c8124c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2644865b-1396de615c8124c9","8f44c0a26448306-13d6ddfd43c6ce95"]},"geometry":{"type":"LineString","coordinates":[[-83.6760108,32.8518221],[-83.67585070000001,32.8519469]]},"id":"8b44c0a26448fff-13ffde2f4766a60d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6754866,32.8520716]},"id":"8f44c0a2644a2de-13f6df44ec4ad9b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6755457,32.8522729]},"id":"8f44c0a267a4b50-13de9f1ffed50bd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2644a2de-13f6df44ec4ad9b8","8f44c0a267a4b50-13de9f1ffed50bd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6754866,32.8520716],[-83.6755467,32.852120400000004],[-83.6755457,32.8522729]]},"id":"8944c0a2647ffff-139fdf25d25ed4c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753934,32.852522400000005]},"id":"8f44c0a267a42cb-13fe9f7f259afffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67576120000001,32.8525256]},"id":"8f44c0a267a58c0-13fe9e9940c8b042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267a58c0-13fe9e9940c8b042","8f44c0a267a42cb-13fe9f7f259afffb"]},"geometry":{"type":"LineString","coordinates":[[-83.6753934,32.852522400000005],[-83.67576120000001,32.8525256]]},"id":"8a44c0a267a7fff-13ff9f0c30d5c888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5720167,32.8104068]},"id":"8f44c0baa4142c4-17bfdbe19f1137a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5718942,32.8119983]},"id":"8f44c0baa41a663-139ffc2e2f9646fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4142c4-17bfdbe19f1137a3","8f44c0baa41a663-139ffc2e2f9646fa"]},"geometry":{"type":"LineString","coordinates":[[-83.5720167,32.8104068],[-83.5719152,32.8109783],[-83.5718942,32.8119983]]},"id":"8944c0baa43ffff-1797dc19bb4936d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5716967,32.812000000000005]},"id":"8f44c0baa4a9a43-139f9ca9959b9db2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5718452,32.8104348]},"id":"8f44c0baa410994-17bfdc4cccdca026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9a43-139f9ca9959b9db2","8f44c0baa410994-17bfdc4cccdca026"]},"geometry":{"type":"LineString","coordinates":[[-83.5716967,32.812000000000005],[-83.57171670000001,32.811044],[-83.5717317,32.810887300000005],[-83.5718452,32.8104348]]},"id":"8844c0baa5fffff-179fdc932f421725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715272,32.812000000000005]},"id":"8f44c0baa4a9049-139f9d138055fb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57142610000001,32.8108318]},"id":"8f44c0baa412315-17b7fd52bb27a5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa412315-17b7fd52bb27a5b5","8f44c0baa4a9049-139f9d138055fb36"]},"geometry":{"type":"LineString","coordinates":[[-83.5715272,32.812000000000005],[-83.5715272,32.8109884],[-83.5715272,32.810935300000004],[-83.5715091,32.8108974],[-83.57142610000001,32.8108318]]},"id":"8844c0baa5fffff-1797fd16f36c116b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57131360000001,32.8109459]},"id":"8f44c0baa41264d-17ffbd990722aba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa41264d-17ffbd990722aba6","8f44c0baa4a9716-139f9d882cba271b"]},"geometry":{"type":"LineString","coordinates":[[-83.5713406,32.812000000000005],[-83.57134070000001,32.8110111],[-83.57131360000001,32.8109459]]},"id":"8944c0baa4bffff-17d79d88a2393cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571695,32.807866600000004]},"id":"8f44c0baa5a10f1-17f7bcaaa92fb393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5731365,32.8094771]},"id":"8f44c0baa4358ec-13f7b925b1768633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a10f1-17f7bcaaa92fb393","8f44c0baa4358ec-13f7b925b1768633"]},"geometry":{"type":"LineString","coordinates":[[-83.571695,32.807866600000004],[-83.5721757,32.808286],[-83.5726704,32.8088521],[-83.57297220000001,32.809350200000004],[-83.5730365,32.8094277],[-83.5731365,32.8094771]]},"id":"8844c0baa5fffff-13dfbad45e3e9193"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715167,32.807975500000005]},"id":"8f44c0baa5a1690-17bfbd1a1fc812b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57311270000001,32.8101292]},"id":"8f44c0baa404d9c-13ffd9349ae1a47b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1690-17bfbd1a1fc812b5","8f44c0baa404d9c-13ffd9349ae1a47b"]},"geometry":{"type":"LineString","coordinates":[[-83.5715167,32.807975500000005],[-83.5719437,32.8083612],[-83.5723657,32.8088099],[-83.57248030000001,32.8089649],[-83.5728828,32.8096321],[-83.57311270000001,32.8101292]]},"id":"8844c0baa5fffff-13bfbaeea87963a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57280440000001,32.810227000000005]},"id":"8f44c0baa406994-17b7f9f546e1b57f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5713242,32.8081271]},"id":"8f44c0baa5a32e1-1797fd9264fe564e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa406994-17b7f9f546e1b57f","8f44c0baa5a32e1-1797fd9264fe564e"]},"geometry":{"type":"LineString","coordinates":[[-83.57280440000001,32.810227000000005],[-83.5726463,32.8096945],[-83.5722719,32.80905],[-83.5717674,32.8084979],[-83.5713242,32.8081271]]},"id":"8844c0baa5fffff-13f7db75b3d70d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57117020000001,32.8082743]},"id":"8f44c0baa5858d0-17f7fdf2ab54ab07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5725541,32.810289600000004]},"id":"8f44c0baa433246-17df9a91beaf9bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5858d0-17f7fdf2ab54ab07","8f44c0baa433246-17df9a91beaf9bf2"]},"geometry":{"type":"LineString","coordinates":[[-83.57117020000001,32.8082743],[-83.5715701,32.8086222],[-83.57189070000001,32.8089539],[-83.57207460000001,32.8091518],[-83.57225840000001,32.8094721],[-83.57241140000001,32.8098557],[-83.5725541,32.810289600000004]]},"id":"8844c0baa5fffff-13b7dbf6ae267db1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5710413,32.8084013]},"id":"8f44c0baa585099-17d7de4332341daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa415d46-1797db3c0555398c","8f44c0baa585099-17d7de4332341daa"]},"geometry":{"type":"LineString","coordinates":[[-83.57228160000001,32.8103525],[-83.5721517,32.809923600000005],[-83.5720464,32.8096205],[-83.5718559,32.8092652],[-83.57169,32.809060200000005],[-83.5711273,32.808458800000004],[-83.5710413,32.8084013]]},"id":"8844c0baa5fffff-13ff9c78d17f924c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5709226,32.8085183]},"id":"8f44c0baa585691-139ffe8d6ed02674"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4142c4-17bfdbe19f1137a3","8f44c0baa585691-139ffe8d6ed02674"]},"geometry":{"type":"LineString","coordinates":[[-83.5709226,32.8085183],[-83.5710134,32.8085934],[-83.5714938,32.8091657],[-83.5716814,32.8094325],[-83.5717824,32.8096823],[-83.5720167,32.8104068]]},"id":"8844c0baa5fffff-13b7fcface7d97d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5657985,32.809392200000005]},"id":"8f44c0b81953c70-13bfab0ff4e22b45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5656931,32.809228700000006]},"id":"8f44c0b81952a0d-13d7fb51d6889e6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81953c70-13bfab0ff4e22b45","8f44c0b81952a0d-13d7fb51d6889e6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5657985,32.809392200000005],[-83.567341,32.808704500000005],[-83.5685014,32.808169500000005],[-83.56840770000001,32.8080049],[-83.5672383,32.8085411],[-83.5656931,32.809228700000006]]},"id":"8944c0b8197ffff-13f7e7c748bda23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56711460000001,32.8083444]},"id":"8f44c0b819718f0-179fe7d96e92e5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56557430000001,32.8090435]},"id":"8f44c0b81952833-13d7bb9c1ea59493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b819718f0-179fe7d96e92e5e6","8f44c0b81952833-13d7bb9c1ea59493"]},"geometry":{"type":"LineString","coordinates":[[-83.56711460000001,32.8083444],[-83.56557430000001,32.8090435]]},"id":"8944c0b8197ffff-13ffe9bac9873a13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5670178,32.8081904]},"id":"8f44c0b819756f2-17bfa815ea592898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5654593,32.8088594]},"id":"8f44c0b81956781-13f7abe3f91cc7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81956781-13f7abe3f91cc7dd","8f44c0b819756f2-17bfa815ea592898"]},"geometry":{"type":"LineString","coordinates":[[-83.5670178,32.8081904],[-83.5667528,32.8083042],[-83.5654593,32.8088594]]},"id":"8944c0b8197ffff-1397b9fce091c0af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5669122,32.8080226]},"id":"8f44c0b8197548e-17d7a857e6607947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56537730000001,32.808714900000005]},"id":"8f44c0b8195658c-1397fc173f9f4610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8197548e-17d7a857e6607947","8f44c0b8195658c-1397fc173f9f4610"]},"geometry":{"type":"LineString","coordinates":[[-83.5669122,32.8080226],[-83.56537730000001,32.808714900000005]]},"id":"8944c0b8197ffff-17bfaa3788c5f2f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56681370000001,32.8078659]},"id":"8f44c0b8197429c-17f7b89577c8b48c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56528030000001,32.808562800000004]},"id":"8f44c0b8190b38a-13b7ec53dd27e063"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8197429c-17f7b89577c8b48c","8f44c0b8190b38a-13b7ec53dd27e063"]},"geometry":{"type":"LineString","coordinates":[[-83.56681370000001,32.8078659],[-83.56528030000001,32.808562800000004]]},"id":"8844c0b819fffff-17dfaa74a3aa6e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5667148,32.8077087]},"id":"8f44c0b81974091-1797f8d344a0c6e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5651776,32.8084016]},"id":"8f44c0b8190b19e-17d7ac940ed38530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8190b19e-17d7ac940ed38530","8f44c0b81974091-1797f8d344a0c6e2"]},"geometry":{"type":"LineString","coordinates":[[-83.5667148,32.8077087],[-83.5651776,32.8084016]]},"id":"8844c0b819fffff-17ffaab3a0f1c152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5663755,32.8071691]},"id":"8f44c0b81929d19-17d7b9a75d117484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5648448,32.807879400000004]},"id":"8f44c0b8190ad21-17ffad6406fc9227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8190ad21-17ffad6406fc9227","8f44c0b81929d19-17d7b9a75d117484"]},"geometry":{"type":"LineString","coordinates":[[-83.5663755,32.8071691],[-83.5648448,32.807879400000004]]},"id":"8944c0b8193ffff-179fbb85b13d6b47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56628140000001,32.8070237]},"id":"8f44c0b81928a26-17f7f9e22a6db635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5647435,32.8077203]},"id":"8f44c0b8191db22-179fbda35882f8b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8191db22-179fbda35882f8b8","8f44c0b81928a26-17f7f9e22a6db635"]},"geometry":{"type":"LineString","coordinates":[[-83.56628140000001,32.8070237],[-83.5647435,32.8077203]]},"id":"8944c0b8193ffff-17bfabc2c05e6b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5661807,32.8068727]},"id":"8f44c0b81928830-1797fa211e8bc4dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5646401,32.8075582]},"id":"8f44c0b8191d930-17b7ede3fa2cc4eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8191d930-17b7ede3fa2cc4eb","8f44c0b81928830-1797fa211e8bc4dd"]},"geometry":{"type":"LineString","coordinates":[[-83.5661807,32.8068727],[-83.5646401,32.8075582]]},"id":"8944c0b8193ffff-17dfbc028de22c54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5660843,32.806727800000004]},"id":"8f44c0b8192c614-13bfea5d548d6171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5645478,32.8074133]},"id":"8f44c0b81903733-17dffe1da4221256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81903733-17dffe1da4221256","8f44c0b8192c614-13bfea5d548d6171"]},"geometry":{"type":"LineString","coordinates":[[-83.5660843,32.806727800000004],[-83.5645478,32.8074133]]},"id":"8944c0b8193ffff-1797ac3d75bfa298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769137,32.889448800000004]},"id":"8f44c0a04b84c15-17b79bc8f0ea2e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6765575,32.8896607]},"id":"8f44c0a04b86101-17b7fca797d38a68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b86101-17b7fca797d38a68","8f44c0a04b84c15-17b79bc8f0ea2e89"]},"geometry":{"type":"LineString","coordinates":[[-83.6769137,32.889448800000004],[-83.6765575,32.8896607]]},"id":"8a44c0a04b87fff-17f7dc384212e6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6782316,32.8880579]},"id":"8f44c0a04848563-13beb8914cdabaa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6757297,32.888634800000005]},"id":"8f44c0a04bb641a-13b6deacf0cf3e43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04848563-13beb8914cdabaa6","8f44c0a04bb641a-13b6deacf0cf3e43"]},"geometry":{"type":"LineString","coordinates":[[-83.6782316,32.8880579],[-83.67811090000001,32.8878629],[-83.6780664,32.8878404],[-83.678016,32.8878355],[-83.6773874,32.887819300000004],[-83.6773325,32.8878131],[-83.67727020000001,32.8878031],[-83.6772258,32.8878068],[-83.6771739,32.887828],[-83.6757297,32.888634800000005]]},"id":"8844c0a049fffff-13d69b99643912aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67883520000001,32.8882211]},"id":"8f44c0a0484992e-13b6b71808ebde17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04848563-13beb8914cdabaa6","8f44c0a0484992e-13b6b71808ebde17"]},"geometry":{"type":"LineString","coordinates":[[-83.67883520000001,32.8882211],[-83.6786996,32.888021300000005],[-83.6786568,32.8879874],[-83.6786139,32.887968400000005],[-83.67856400000001,32.887971400000005],[-83.6784629,32.8879923],[-83.6782316,32.8880579]]},"id":"8a44c0a0484ffff-13b6f7bf57652a77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71138180000001,32.8656511]},"id":"8f44c0a20b51258-1397f7a26d2049b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71150030000001,32.8656062]},"id":"8f44c0a20b5ccac-13ffe75857043c30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20b51258-1397f7a26d2049b9","8f44c0a20b5ccac-13ffe75857043c30"]},"geometry":{"type":"LineString","coordinates":[[-83.71138180000001,32.8656511],[-83.71150030000001,32.8656062]]},"id":"8b44c0a20b5cfff-13fff77d5874910b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7295086,32.8545229]},"id":"8f44c0a2587244a-13dedb6120409ec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2587244a-13dedb6120409ec1","8f44c0a258cbd16-1797ffb8f772529a"]},"geometry":{"type":"LineString","coordinates":[[-83.72772970000001,32.8574846],[-83.727901,32.857362],[-83.72799900000001,32.857312],[-83.728278,32.857199],[-83.72855100000001,32.857124],[-83.728779,32.857079],[-83.72907000000001,32.857044],[-83.72968900000001,32.856961000000005],[-83.729765,32.856944],[-83.72986800000001,32.856904],[-83.72999,32.856813],[-83.73004900000001,32.856706],[-83.730069,32.856572],[-83.730033,32.85635],[-83.729939,32.856001],[-83.7295086,32.8545229]]},"id":"8844c0a259fffff-17ffdbcc77d01d44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57275870000001,32.860191]},"id":"8f44c0b88388124-17b7fa11d1b8ffea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57290830000001,32.8584313]},"id":"8f44c0b883a02c6-13f799b457a162e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b883a02c6-13f799b457a162e3","8f44c0b88388124-17b7fa11d1b8ffea"]},"geometry":{"type":"LineString","coordinates":[[-83.57275870000001,32.860191],[-83.5727956,32.860187700000004],[-83.5728445,32.8601831],[-83.5728869,32.8601789],[-83.5729304,32.860172],[-83.57296070000001,32.8601632],[-83.57299420000001,32.860147000000005],[-83.5730333,32.860128100000004],[-83.5730702,32.8601091],[-83.5730992,32.860084],[-83.57311340000001,32.860069200000005],[-83.5731243,32.8600567],[-83.5731344,32.8600402],[-83.5731398,32.8600231],[-83.5731487,32.8600009],[-83.57315340000001,32.8599856],[-83.57315480000001,32.8599685],[-83.57315480000001,32.8599509],[-83.5731514,32.8599292],[-83.57314530000001,32.859903],[-83.5731365,32.8598791],[-83.57312970000001,32.8598632],[-83.57311680000001,32.8598342],[-83.5731033,32.8598063],[-83.5730904,32.8597784],[-83.5730741,32.859748800000006],[-83.5730565,32.8597169],[-83.5730369,32.8596833],[-83.5730125,32.8596464],[-83.57298870000001,32.859608800000004],[-83.5728701,32.8594521],[-83.5728957,32.859070100000004],[-83.57290400000001,32.8587526],[-83.57290830000001,32.8584313]]},"id":"8944c0b883bffff-17dfb9963ce58b1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57288530000001,32.8564713]},"id":"8f44c0b88043884-179f99c2b539e21a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57327480000001,32.8557694]},"id":"8f44c0b88044a1c-13f7f8cf45e1e622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88043884-179f99c2b539e21a","8f44c0b88044a1c-13f7f8cf45e1e622"]},"geometry":{"type":"LineString","coordinates":[[-83.57288530000001,32.8564713],[-83.5729045,32.8564949],[-83.57293440000001,32.8565313],[-83.5729596,32.856566],[-83.5729845,32.8566],[-83.5730017,32.8566366],[-83.57302010000001,32.8566791],[-83.57303370000001,32.8567211],[-83.57304710000001,32.8567654],[-83.573057,32.8568048],[-83.573063,32.8568492],[-83.5730661,32.8568888],[-83.5730722,32.8569296],[-83.5730772,32.856963],[-83.57308730000001,32.856989],[-83.5731015,32.8570129],[-83.57312200000001,32.8570306],[-83.573142,32.8570384],[-83.5731592,32.8570408],[-83.5731865,32.857039900000004],[-83.57320130000001,32.857037500000004],[-83.57322,32.8570331],[-83.5732404,32.857025300000004],[-83.5732686,32.8570122],[-83.5732917,32.856999300000005],[-83.5733144,32.856985900000005],[-83.5733304,32.856971900000005],[-83.57334060000001,32.8569594],[-83.5733488,32.8569468],[-83.5733522,32.8569334],[-83.5733524,32.8569161],[-83.57335090000001,32.8568992],[-83.5733488,32.856885600000005],[-83.5733438,32.856865500000005],[-83.57333580000001,32.8568453],[-83.5733273,32.8568238],[-83.5733204,32.8567999],[-83.57331620000001,32.8567776],[-83.57331070000001,32.8567471],[-83.5733055,32.8567229],[-83.57329940000001,32.8567012],[-83.5732945,32.856679400000004],[-83.5732917,32.856663600000005],[-83.57328940000001,32.8566458],[-83.57328820000001,32.8566312],[-83.5732902,32.8566178],[-83.57329320000001,32.8566051],[-83.5733014,32.8565887],[-83.57330970000001,32.856577300000005],[-83.5733208,32.8565607],[-83.5733323,32.8565392],[-83.5733459,32.856512800000004],[-83.5733522,32.8564935],[-83.57335830000001,32.856473900000005],[-83.57336430000001,32.8564457],[-83.57336760000001,32.856415600000005],[-83.5733689,32.8563952],[-83.57336860000001,32.8563753],[-83.57336760000001,32.856341],[-83.5733641,32.8563056],[-83.5733517,32.8562067],[-83.5733051,32.8558808],[-83.5732983,32.8558516],[-83.5732923,32.8558255],[-83.57327480000001,32.8557694]]},"id":"8944c0b8807ffff-17d7d8ecd46d690a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56925910000001,32.857817700000005]},"id":"8f44c0b880dd44d-13ffb29d1d7ebdc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56970510000001,32.8581937]},"id":"8f44c0b880ca766-13d7b1865660fbc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b880dd44d-13ffb29d1d7ebdc7","8f44c0b880ca766-13d7b1865660fbc4"]},"geometry":{"type":"LineString","coordinates":[[-83.56925910000001,32.857817700000005],[-83.5689639,32.857976],[-83.56893860000001,32.8579929],[-83.5689241,32.858005500000004],[-83.56891320000001,32.858021300000004],[-83.5689062,32.8580376],[-83.5689007,32.8580569],[-83.56889670000001,32.858093000000004],[-83.5688255,32.8584428],[-83.56882660000001,32.8584581],[-83.56883780000001,32.8584672],[-83.5688511,32.858468800000004],[-83.5688664,32.858468300000006],[-83.56888500000001,32.8584648],[-83.5689126,32.8584593],[-83.5689399,32.8584515],[-83.568965,32.8584455],[-83.56899370000001,32.8584375],[-83.569021,32.8584291],[-83.5690452,32.8584213],[-83.5690792,32.85841],[-83.56970510000001,32.8581937]]},"id":"8744c0b88ffffff-13f7b2f1631cfe4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5717491,32.8574883]},"id":"8f44c0b883b491e-179fbc88d455ceae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57107930000001,32.8584663]},"id":"8f44c0b88394976-13fffe2b72e5f249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88394976-13fffe2b72e5f249","8f44c0b883b491e-179fbc88d455ceae"]},"geometry":{"type":"LineString","coordinates":[[-83.5717491,32.8574883],[-83.5717975,32.857505800000006],[-83.5718446,32.8575196],[-83.5718988,32.8575323],[-83.5719656,32.857547000000004],[-83.571994,32.857559300000005],[-83.5720106,32.8575688],[-83.5720287,32.8575792],[-83.572051,32.857599900000004],[-83.5720654,32.8576178],[-83.5720782,32.8576356],[-83.5720867,32.8576506],[-83.5721043,32.8576951],[-83.5721144,32.8577312],[-83.5721207,32.857768],[-83.5721264,32.857798200000005],[-83.5721238,32.857815],[-83.57211050000001,32.857826],[-83.57209180000001,32.857835],[-83.5720582,32.8578439],[-83.57201900000001,32.857856600000005],[-83.57198790000001,32.857869900000004],[-83.57193880000001,32.857895],[-83.5718257,32.857961100000004],[-83.57160900000001,32.8581013],[-83.5714288,32.858221400000005],[-83.57133060000001,32.858290000000004],[-83.571258,32.858351400000004],[-83.57120730000001,32.8583918],[-83.5711579,32.8584224],[-83.57107930000001,32.8584663]]},"id":"8944c0b883bffff-13d79c9e5339eca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5687607,32.8606208]},"id":"8f44c0b8874e586-17d7a3d4956afff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56676990000001,32.8603564]},"id":"8f44c0b8862c0b3-179fe8b0df8f0fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8862c0b3-179fe8b0df8f0fbb","8f44c0b8874e586-17d7a3d4956afff1"]},"geometry":{"type":"LineString","coordinates":[[-83.5687607,32.8606208],[-83.5686903,32.8606372],[-83.56866330000001,32.8606411],[-83.56864060000001,32.860642500000004],[-83.5686098,32.8606416],[-83.56859,32.8606372],[-83.56855390000001,32.8606239],[-83.56852310000001,32.860608500000005],[-83.5684691,32.8605819],[-83.5684487,32.8605674],[-83.56842060000001,32.8605408],[-83.5683554,32.8604786],[-83.5683183,32.860446100000004],[-83.568278,32.8604135],[-83.56823410000001,32.8603864],[-83.5681964,32.860365800000004],[-83.5681431,32.8603456],[-83.5680645,32.860318400000004],[-83.5679368,32.8602738],[-83.56780780000001,32.860233300000004],[-83.5676545,32.860190100000004],[-83.5675726,32.8601605],[-83.56748590000001,32.8601262],[-83.5673742,32.8600775],[-83.56722350000001,32.8600018],[-83.56702940000001,32.8598925],[-83.5668947,32.859816],[-83.5668236,32.859780300000004],[-83.56674140000001,32.859746200000004],[-83.5667011,32.859731000000004],[-83.56663590000001,32.8597138],[-83.5665895,32.859701],[-83.5664902,32.859685500000005],[-83.5664192,32.859677500000004],[-83.5663693,32.8596732],[-83.56631850000001,32.8596716],[-83.56624260000001,32.8596677],[-83.5661812,32.8596639],[-83.56612360000001,32.8596583],[-83.5660763,32.859650900000005],[-83.5660465,32.859645],[-83.566006,32.8596348],[-83.5659878,32.8596335],[-83.5659761,32.8596372],[-83.5659687,32.8596469],[-83.56597040000001,32.859660500000004],[-83.565976,32.8596723],[-83.5659902,32.8596858],[-83.56602600000001,32.859715800000004],[-83.56622850000001,32.859900200000006],[-83.5663978,32.8600438],[-83.56676990000001,32.8603564]]},"id":"8844c0b887fffff-17f7f7d687ebf60f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5660103,32.8653831]},"id":"8f44c0b8b994bb1-13f7fa8b9e014aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56438,32.8646578]},"id":"8f44c0b886dd3ac-139fae86853afb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8b994bb1-13f7fa8b9e014aac","8f44c0b886dd3ac-139fae86853afb9f"]},"geometry":{"type":"LineString","coordinates":[[-83.5660103,32.8653831],[-83.56597070000001,32.8653837],[-83.5659217,32.865387600000005],[-83.56586390000001,32.865398400000004],[-83.56581320000001,32.8654128],[-83.56575480000001,32.8654342],[-83.5657054,32.86546],[-83.5656537,32.8654905],[-83.5656108,32.865521],[-83.56557190000001,32.8655433],[-83.5655361,32.8655624],[-83.56549290000001,32.8655799],[-83.5654679,32.8655801],[-83.5654449,32.865572],[-83.5653844,32.865537800000006],[-83.5644377,32.8647258],[-83.5643934,32.8646821],[-83.56438,32.8646578]]},"id":"8744c0b8bffffff-1397aca42b060ede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559799,32.860201700000005]},"id":"8f44c0b8ab4a872-17bfb9b5acf05942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5601493,32.8599249]},"id":"8f44c0b8ab4c61c-179fb8dab8f8ab14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab4c61c-179fb8dab8f8ab14","8f44c0b8ab4a872-17bfb9b5acf05942"]},"geometry":{"type":"LineString","coordinates":[[-83.559799,32.860201700000005],[-83.5598487,32.8602016],[-83.55991590000001,32.8602002],[-83.5599677,32.8601941],[-83.5600112,32.8601854],[-83.56005400000001,32.8601728],[-83.56008960000001,32.8601577],[-83.5601156,32.860142],[-83.5601331,32.8601242],[-83.56014540000001,32.860103],[-83.56015500000001,32.860075800000004],[-83.5601563,32.860041800000005],[-83.5601536,32.8599734],[-83.5601493,32.8599249]]},"id":"8a44c0b8ab4ffff-179fb92016f40125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5633944,32.857238]},"id":"8f44c0b887a6353-17fff0ee8d5e0eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5626249,32.857232800000006]},"id":"8f44c0b887b5453-17ffb2cf72bb120c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b887a6353-17fff0ee8d5e0eaa","8f44c0b887b5453-17ffb2cf72bb120c"]},"geometry":{"type":"LineString","coordinates":[[-83.5633944,32.857238],[-83.5634162,32.857205300000004],[-83.56342980000001,32.857176],[-83.5634436,32.8571328],[-83.5634505,32.857090500000005],[-83.5634533,32.8570404],[-83.5634551,32.856983],[-83.56345470000001,32.8567971],[-83.56345320000001,32.8567788],[-83.5634467,32.8567644],[-83.5634373,32.856755],[-83.5634239,32.8567507],[-83.56340920000001,32.8567507],[-83.56339150000001,32.8567513],[-83.56337470000001,32.8567558],[-83.5633535,32.856767500000004],[-83.56330720000001,32.8567939],[-83.5631338,32.8568883],[-83.56303940000001,32.8569426],[-83.5629064,32.8570316],[-83.5626249,32.857232800000006]]},"id":"8744c0b88ffffff-17dff17c9282f388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5618161,32.8580881]},"id":"8f44c0b887955b3-1397b4c8fa633451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b887955b3-1397b4c8fa633451","8f44c0b8ab4a872-17bfb9b5acf05942"]},"geometry":{"type":"LineString","coordinates":[[-83.5618161,32.8580881],[-83.561807,32.8581116],[-83.5617897,32.858145300000004],[-83.56176590000001,32.8581658],[-83.5617404,32.858183100000005],[-83.5617082,32.858203],[-83.5616797,32.8582102],[-83.5616543,32.8582118],[-83.56162160000001,32.8582083],[-83.56156680000001,32.8581963],[-83.5615174,32.8581816],[-83.56141860000001,32.858146000000005],[-83.5612019,32.8580619],[-83.56116270000001,32.8580494],[-83.5611384,32.858046800000004],[-83.561116,32.858047400000004],[-83.56109280000001,32.858051700000004],[-83.5610649,32.858066400000006],[-83.5610468,32.858079700000005],[-83.5610254,32.858094200000004],[-83.5609998,32.8581159],[-83.5609793,32.858135000000004],[-83.560962,32.8581479],[-83.5609197,32.8581724],[-83.5609002,32.8581808],[-83.5608651,32.858192200000005],[-83.56082760000001,32.8582023],[-83.56080010000001,32.858208600000005],[-83.560767,32.8582199],[-83.5607349,32.8582376],[-83.5607083,32.858259000000004],[-83.5606783,32.8582855],[-83.56064740000001,32.8583088],[-83.56061860000001,32.858326600000005],[-83.56059350000001,32.8583346],[-83.5605558,32.8583419],[-83.5605122,32.8583456],[-83.56047260000001,32.858348400000004],[-83.5603813,32.858357000000005],[-83.5603064,32.858372800000005],[-83.5602202,32.858395800000004],[-83.56010900000001,32.858439600000004],[-83.559972,32.8585064],[-83.5599186,32.8585361],[-83.5598638,32.8585785],[-83.5598068,32.8586481],[-83.5597279,32.8587531],[-83.5596603,32.8588285],[-83.55960680000001,32.8588788],[-83.5595796,32.858909700000005],[-83.5595608,32.858953500000005],[-83.55951730000001,32.859035500000005],[-83.55946300000001,32.8591308],[-83.55940600000001,32.859218000000006],[-83.5593309,32.8593086],[-83.5592761,32.859362600000004],[-83.55915730000001,32.8594809],[-83.5591132,32.8595265],[-83.55905840000001,32.8595862],[-83.55900270000001,32.859660000000005],[-83.5589877,32.8596857],[-83.5589774,32.8597169],[-83.5589789,32.8597391],[-83.5589817,32.859758400000004],[-83.55899000000001,32.8597753],[-83.559003,32.8597945],[-83.5590281,32.859813700000004],[-83.5590631,32.8598341],[-83.5590907,32.8598504],[-83.55912500000001,32.8598689],[-83.5591694,32.8598863],[-83.55920420000001,32.8599011],[-83.559262,32.859923300000005],[-83.55929450000001,32.8599376],[-83.5593664,32.859976800000005],[-83.55943810000001,32.860026600000005],[-83.5594994,32.8600708],[-83.55955920000001,32.860115900000004],[-83.55960540000001,32.860148200000005],[-83.5596376,32.8601672],[-83.55966760000001,32.8601777],[-83.5596972,32.8601842],[-83.5597434,32.860192000000005],[-83.559799,32.860201700000005]]},"id":"8644c0b8fffffff-1397b9046fabbce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56176860000001,32.8599656]},"id":"8f44c0b886b4ac5-17b7b4e6a5e52bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5611295,32.8595655]},"id":"8f44c0b8ab69094-17bff676139242e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab69094-17bff676139242e6","8f44c0b886b4ac5-17b7b4e6a5e52bfb"]},"geometry":{"type":"LineString","coordinates":[[-83.56176860000001,32.8599656],[-83.5617156,32.859999800000004],[-83.56167280000001,32.8600347],[-83.5616274,32.8600796],[-83.5615633,32.8601405],[-83.5614998,32.8601958],[-83.5614487,32.860236400000005],[-83.56139780000001,32.8602639],[-83.56136040000001,32.860279500000004],[-83.5613266,32.86029],[-83.56128860000001,32.8602925],[-83.5612646,32.860289],[-83.561227,32.8602791],[-83.5611796,32.8602605],[-83.5611202,32.8602325],[-83.5610975,32.8602171],[-83.56106960000001,32.8601976],[-83.56104420000001,32.8601752],[-83.561025,32.8601526],[-83.56101360000001,32.8601343],[-83.5610025,32.8601072],[-83.56099110000001,32.8600739],[-83.5609867,32.860055800000005],[-83.5609817,32.860024800000005],[-83.56097790000001,32.8599934],[-83.5609781,32.8599641],[-83.5609795,32.8599259],[-83.560986,32.8598833],[-83.5610024,32.8598304],[-83.56102390000001,32.859776100000005],[-83.561064,32.8596979],[-83.56111,32.859606500000005],[-83.5611295,32.8595655]]},"id":"8844c0b887fffff-17dff62b6abf829a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5649947,32.859907]},"id":"8f44c0b8863140e-1797ed06581bba3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56618060000001,32.860855400000005]},"id":"8f44c0b8862a19e-17d7aa212de342e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8863140e-1797ed06581bba3d","8f44c0b8862a19e-17d7aa212de342e9"]},"geometry":{"type":"LineString","coordinates":[[-83.5649947,32.859907],[-83.5652532,32.8599863],[-83.56527820000001,32.8599957],[-83.5653044,32.8600061],[-83.56533060000001,32.8600214],[-83.5653535,32.8600374],[-83.5660601,32.8607425],[-83.56609850000001,32.860783600000005],[-83.56612530000001,32.860810400000005],[-83.56618060000001,32.860855400000005]]},"id":"8944c0b8863ffff-179feb7fc08922bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691359,32.8623068]},"id":"8f44c0b88661b8a-13dfe2ea1bd4a377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5690855,32.8621604]},"id":"8f44c0b88661833-1397e309939f6c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88661833-1397e309939f6c7f","8f44c0b88661b8a-13dfe2ea1bd4a377"]},"geometry":{"type":"LineString","coordinates":[[-83.5691359,32.8623068],[-83.5691195,32.8622901],[-83.5691092,32.8622746],[-83.56909970000001,32.8622527],[-83.5690929,32.8622249],[-83.5690855,32.8621604]]},"id":"8b44c0b88661fff-13b7a2ffb9fb8de0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5687091,32.8628559]},"id":"8f44c0b8866e798-17b7f3f4dbdfaa77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56878680000001,32.8623853]},"id":"8f44c0b886614d9-139ff3c44894f187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886614d9-139ff3c44894f187","8f44c0b8866e798-17b7f3f4dbdfaa77"]},"geometry":{"type":"LineString","coordinates":[[-83.5687091,32.8628559],[-83.56878680000001,32.8623853]]},"id":"8944c0b8867ffff-17b7e3dc8a0a5870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.569607,32.862414]},"id":"8f44c0b88292242-13b7e1c3ad5ba2f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5697402,32.862228300000005]},"id":"8f44c0b88292b4a-13bfb1706195b1de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88292b4a-13bfb1706195b1de","8f44c0b88292242-13b7e1c3ad5ba2f9"]},"geometry":{"type":"LineString","coordinates":[[-83.569607,32.862414],[-83.5696204,32.8623825],[-83.5696503,32.8623355],[-83.5697402,32.862228300000005]]},"id":"8b44c0b88292fff-13f7b19d20cc58b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7367964,32.8038712]},"id":"8f44c0b0c60ca0d-17b78996414a2a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736801,32.8046464]},"id":"8f44c0b0c6090c6-179e0993668be1b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6090c6-179e0993668be1b1","8f44c0b0c60ca0d-17b78996414a2a58"]},"geometry":{"type":"LineString","coordinates":[[-83.7367964,32.8038712],[-83.7368639,32.804034800000004],[-83.736801,32.8046464]]},"id":"8a44c0b0c60ffff-17b6c9801cb3b1f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34486d44-17979333dbec887b","8f44c0a3448685c-17d712d28ddb2e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.628156,32.837888],[-83.62812410000001,32.8378682],[-83.62800030000001,32.837791200000005]]},"id":"8b44c0a34486fff-17b7d30330dd5420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34486d44-17979333dbec887b","8f44c0a344864e3-1397f3a48baafb56"]},"geometry":{"type":"LineString","coordinates":[[-83.62782,32.838003],[-83.62800030000001,32.837791200000005]]},"id":"8b44c0a34486fff-17d7b36c3282bd31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344864e3-1397f3a48baafb56","8f44c0a3449591d-17d7f40e266da4bd"]},"geometry":{"type":"LineString","coordinates":[[-83.627651,32.837899],[-83.6276917,32.8379241],[-83.62782,32.838003]]},"id":"8944c0a344bffff-17f773d95612cfde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3448c804-13ff3049ce3bf3de","8f44c0a34486741-13d71339aa60f014"]},"geometry":{"type":"LineString","coordinates":[[-83.62799100000001,32.838104],[-83.6290397,32.8387151],[-83.629194,32.838805]]},"id":"8944c0a344bffff-13b711c1bbafc43c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629366,32.838904]},"id":"8f44c0a344ab4ce-13bf0fde4bc5ff2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629503,32.838741]},"id":"8f44c0a344abc53-13d72f88a0885b7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344ab4ce-13bf0fde4bc5ff2f","8f44c0a344abc53-13d72f88a0885b7b"]},"geometry":{"type":"LineString","coordinates":[[-83.629366,32.838904],[-83.629503,32.838741]]},"id":"8b44c0a344abfff-139f1fb37c109f46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3448c804-13ff3049ce3bf3de","8f44c0a344ab4ce-13bf0fde4bc5ff2f"]},"geometry":{"type":"LineString","coordinates":[[-83.629194,32.838805],[-83.629366,32.838904]]},"id":"8a44c0a344affff-139f10140a2af61f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344abc53-13d72f88a0885b7b","8f44c0a344aa32b-139f6ff2e90bc5dc"]},"geometry":{"type":"LineString","coordinates":[[-83.629503,32.838741],[-83.629333,32.838623000000005]]},"id":"8a44c0a344affff-13b74fbdc221088f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344aa32b-139f6ff2e90bc5dc","8f44c0a3448685c-17d712d28ddb2e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.629333,32.838623000000005],[-83.628156,32.837888]]},"id":"8944c0a344bffff-13b7b162b5af8f45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62840200000001,32.813192]},"id":"8f44c0ba991ea22-13f71238cdab45a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba991ea22-13f71238cdab45a3","8f44c0ba991c0cb-13f75187e748168c"]},"geometry":{"type":"LineString","coordinates":[[-83.628685,32.813186],[-83.62840200000001,32.813192]]},"id":"8a44c0ba991ffff-13f731e05a195677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6260374,32.8347848]},"id":"8f44c0a369664c8-13bf97fea2c47e4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36975862-17ffd84fb0466859","8f44c0a369664c8-13bf97fea2c47e4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6259077,32.834708400000004],[-83.6260374,32.8347848]]},"id":"8944c0a3697ffff-1397b8273ad17188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6523289,32.8139553]},"id":"8f44c0b1a8eb153-17d6d7ce7d706804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652174,32.814059]},"id":"8f44c0b1a8eb7ad-1796f82f4d20fae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a8eb7ad-1796f82f4d20fae1","8f44c0b1a8eb153-17d6d7ce7d706804"]},"geometry":{"type":"LineString","coordinates":[[-83.6523289,32.8139553],[-83.652174,32.814059]]},"id":"8b44c0b1a8ebfff-17f6d7fee56a58bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6520321,32.8140572]},"id":"8f44c0b1a8ccb56-1797d887f4b1f581"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a8ccb56-1797d887f4b1f581","8f44c0b1a8eb548-17d6d82cbebe778c"]},"geometry":{"type":"LineString","coordinates":[[-83.6520321,32.8140572],[-83.6521781,32.8139533]]},"id":"8944c0b1a8fffff-17f7d85a5f937699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a8eb548-17d6d82cbebe778c","8f44c0b1a8eb153-17d6d7ce7d706804"]},"geometry":{"type":"LineString","coordinates":[[-83.6523289,32.8139553],[-83.6521781,32.8139533]]},"id":"8b44c0b1a8ebfff-17d7f7fd9781fe91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63882070000001,32.820877200000005]},"id":"8f44c0b1a7b1593-17bef8c919b9f452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6390403,32.8205558]},"id":"8f44c0b1a7b54e9-17fff83fdd70262d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7b1593-17bef8c919b9f452","8f44c0b1a7b54e9-17fff83fdd70262d"]},"geometry":{"type":"LineString","coordinates":[[-83.63882070000001,32.820877200000005],[-83.6390403,32.8205558]]},"id":"8a44c0b1a7b7fff-17d7f8847bfbb414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6357473,32.8409187]},"id":"8f44c0a3473664e-17b73049feb260f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6351037,32.8431579]},"id":"8f44c0a347a98b5-179fb1dc3dfb861b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3473664e-17b73049feb260f1","8f44c0a347a98b5-179fb1dc3dfb861b"]},"geometry":{"type":"LineString","coordinates":[[-83.6357473,32.8409187],[-83.6356549,32.841965800000004],[-83.6356064,32.8421413],[-83.6351037,32.8431579]]},"id":"8844c0a347fffff-13f750d1d1bddfe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65806,32.7411715]},"id":"8f44c0b14a5c533-13b6f9d083ea8211"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6582427,32.7405147]},"id":"8f44c0b14a55b5e-1397f95e57df5a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14a5c533-13b6f9d083ea8211","8f44c0b14a55b5e-1397f95e57df5a80"]},"geometry":{"type":"LineString","coordinates":[[-83.65806,32.7411715],[-83.65808360000001,32.7409163],[-83.65808940000001,32.740797300000004],[-83.6582427,32.7405147]]},"id":"8944c0b14a7ffff-13dee9ac60aba43a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65529910000001,32.7420155]},"id":"8f44c0b14ac3756-17bff08e16634165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553968,32.7413788]},"id":"8f44c0b14ac0cc1-17b7d051012d13ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14ac0cc1-17b7d051012d13ad","8f44c0b14ac3756-17bff08e16634165"]},"geometry":{"type":"LineString","coordinates":[[-83.65529910000001,32.7420155],[-83.6549535,32.7419675],[-83.654977,32.7416353],[-83.65507140000001,32.7415163],[-83.6551834,32.7414469],[-83.6553968,32.7413788]]},"id":"8944c0b14afffff-17f6f10b10ec06f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6604635,32.754224300000004]},"id":"8f44c0b150950c3-13fef3f25169dbe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601421,32.7537861]},"id":"8f44c0b1509410a-13fed4bb32bb5428"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1509410a-13fed4bb32bb5428","8f44c0b150950c3-13fef3f25169dbe6"]},"geometry":{"type":"LineString","coordinates":[[-83.6604635,32.754224300000004],[-83.6601421,32.7537861]]},"id":"8a44c0b15097fff-13f7c456c715f8b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6598797,32.7543255]},"id":"8f44c0b15090716-13bff55f3de2221d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6585338,32.7540946]},"id":"8f44c0b15460509-13bfe8a86f6bb3ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15460509-13bfe8a86f6bb3ff","8f44c0b15090716-13bff55f3de2221d"]},"geometry":{"type":"LineString","coordinates":[[-83.6598797,32.7543255],[-83.659625,32.7544531],[-83.6594575,32.7545043],[-83.6586607,32.7546537],[-83.6585338,32.7540946]]},"id":"8844c0b155fffff-179fd75a420c4f7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6602106,32.7547911]},"id":"8f44c0b150916d3-17f6f4906fa6e1d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65862010000001,32.7551232]},"id":"8f44c0b15445364-17b6c87276816c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b150916d3-17f6f4906fa6e1d9","8f44c0b15445364-17b6c87276816c93"]},"geometry":{"type":"LineString","coordinates":[[-83.6602106,32.7547911],[-83.6597366,32.7549482],[-83.65862010000001,32.7551232]]},"id":"8744c0b15ffffff-17dfc67d32aeabff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6573657,32.7741737]},"id":"8f44c0b11014530-17b6db8270554908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6573559,32.7745209]},"id":"8f44c0b11010c26-179fdb889826ae2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11014530-17b6db8270554908","8f44c0b11010c26-179fdb889826ae2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6573657,32.7741737],[-83.6573559,32.7745209]]},"id":"8a44c0b11017fff-179fdb8581dde360"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6569333,32.7765265]},"id":"8f44c0b110f6764-13f7dc90b21e8ef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65744360000001,32.7767239]},"id":"8f44c0b110f0b84-13fefb51c6b13ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110f6764-13f7dc90b21e8ef1","8f44c0b110f0b84-13fefb51c6b13ac5"]},"geometry":{"type":"LineString","coordinates":[[-83.6569333,32.7765265],[-83.65744360000001,32.7767239]]},"id":"8a44c0b110f7fff-13becbf13bb24748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6567066,32.7770074]},"id":"8f44c0b110f2611-139fed1e67b36542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110f2611-139fed1e67b36542","8f44c0b1109d291-139ff0ea12e1b273"]},"geometry":{"type":"LineString","coordinates":[[-83.6567066,32.7770074],[-83.6551519,32.776601500000005]]},"id":"8844c0b111fffff-139ecf0432c54925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6564651,32.7803802]},"id":"8f44c0b1177335a-13dfedb55f5b4139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65548270000001,32.7795536]},"id":"8f44c0b1170d558-13d7d01b50dc789d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170d558-13d7d01b50dc789d","8f44c0b1177335a-13dfedb55f5b4139"]},"geometry":{"type":"LineString","coordinates":[[-83.6564651,32.7803802],[-83.65649450000001,32.7795539],[-83.65548270000001,32.7795536]]},"id":"8844c0b117fffff-13dfce5513d3d96d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6494969,32.7818167]},"id":"8f44c0b116b378d-17dffeb8705ac0d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64921220000001,32.7814417]},"id":"8f44c0b116b20d2-17f7df6a635b02c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116b20d2-17f7df6a635b02c7","8f44c0b116b378d-17dffeb8705ac0d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6494969,32.7818167],[-83.64865730000001,32.7818972],[-83.64851750000001,32.7818642],[-83.6484607,32.781787],[-83.64845190000001,32.7814931],[-83.64921220000001,32.7814417]]},"id":"8744c0b11ffffff-179ff04fc8d55300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6494996,32.7818419]},"id":"8f44c0b116b3610-17fffeb6c3fd9c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6501123,32.782609900000004]},"id":"8f44c0b11683c32-13dffd37dc94e088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11683c32-13dffd37dc94e088","8f44c0b116b3610-17fffeb6c3fd9c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.6494996,32.7818419],[-83.64995060000001,32.781823700000004],[-83.6501429,32.7818458],[-83.6502215,32.7818862],[-83.6503045,32.7819927],[-83.6503045,32.7821507],[-83.6502303,32.7822793],[-83.65011670000001,32.7823895],[-83.6501123,32.782609900000004]]},"id":"8944c0b116bffff-17ffdd5f0ebe49cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64944750000001,32.7808445]},"id":"8f44c0b116b688d-17ffded7545469d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64909200000001,32.7801974]},"id":"8f44c0b13b68085-13f7ffb585811671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116b688d-17ffded7545469d3","8f44c0b13b68085-13f7ffb585811671"]},"geometry":{"type":"LineString","coordinates":[[-83.64944750000001,32.7808445],[-83.64920570000001,32.7808377],[-83.64913580000001,32.780801000000004],[-83.64909200000001,32.7801974]]},"id":"8944c0b13b7ffff-13feff8216b97f7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6537364,32.780313500000005]},"id":"8f44c0b11635871-13bff45ec53b5c97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531429,32.780300700000005]},"id":"8f44c0b116346ed-13b7f5d1b670792c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116346ed-13b7f5d1b670792c","8f44c0b11635871-13bff45ec53b5c97"]},"geometry":{"type":"LineString","coordinates":[[-83.6537364,32.780313500000005],[-83.653728,32.7805952],[-83.6531425,32.7805695],[-83.6531429,32.780300700000005]]},"id":"8a44c0b11637fff-13bef5183e654f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64516850000001,32.7939184]},"id":"8f44c0b1e556cc6-17f7e949be80874f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6447814,32.7933832]},"id":"8f44c0b1e50aa2d-139eea3ba5456d79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e556cc6-17f7e949be80874f","8f44c0b1e50aa2d-139eea3ba5456d79"]},"geometry":{"type":"LineString","coordinates":[[-83.64516850000001,32.7939184],[-83.6447814,32.7933832]]},"id":"8844c0b1e5fffff-13bfe9c2b8b438e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641118,32.7983653]},"id":"8f44c0b1e4d2341-17d6f32d4b9d9290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6408912,32.798312]},"id":"8f44c0b1e4d270d-17b7f3bb0b63a5e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e4d2341-17d6f32d4b9d9290","8f44c0b1e4d270d-17b7f3bb0b63a5e7"]},"geometry":{"type":"LineString","coordinates":[[-83.641118,32.7983653],[-83.6408912,32.798312]]},"id":"8b44c0b1e4d2fff-17b7f374279324bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64064090000001,32.8096113]},"id":"8f44c0b1aca1b34-13b7f45772109930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6406481,32.8090866]},"id":"8f44c0b1aca5836-13fff452f1d47e5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aca1b34-13b7f45772109930","8f44c0b1aca5836-13fff452f1d47e5f"]},"geometry":{"type":"LineString","coordinates":[[-83.64064090000001,32.8096113],[-83.6406481,32.8090866]]},"id":"8a44c0b1aca7fff-1397f4553a38526c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64030770000001,32.808624300000005]},"id":"8f44c0b1ad8a76a-13def527b1b3c902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400503,32.8080512]},"id":"8f44c0b1ad9d818-17fef5c89d6c2302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ad8a76a-13def527b1b3c902","8f44c0b1ad9d818-17fef5c89d6c2302"]},"geometry":{"type":"LineString","coordinates":[[-83.64030770000001,32.808624300000005],[-83.63994120000001,32.8086185],[-83.63994500000001,32.808340300000005],[-83.6400503,32.8080512]]},"id":"8944c0b1adbffff-17def5d4faf9646c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6410682,32.812164700000004]},"id":"8f44c0b1acf36ed-13f6f34c67710239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6405417,32.8115521]},"id":"8f44c0b1acf25b0-17f6f4957e392c15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1acf36ed-13f6f34c67710239","8f44c0b1acf25b0-17f6f4957e392c15"]},"geometry":{"type":"LineString","coordinates":[[-83.6410682,32.812164700000004],[-83.64107270000001,32.8115595],[-83.6405417,32.8115521]]},"id":"8944c0b1acfffff-17def397e45ae0bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65250590000001,32.8149104]},"id":"8f44c0b1abb2668-17b7d75fd6a7f789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65249770000001,32.8154052]},"id":"8f44c0b1ab95594-13ded764f7985288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ab95594-13ded764f7985288","8f44c0b1abb2668-17b7d75fd6a7f789"]},"geometry":{"type":"LineString","coordinates":[[-83.65250590000001,32.8149104],[-83.65249770000001,32.8154052]]},"id":"8944c0b1abbffff-13d7f7626f898bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63899930000001,32.8176432]},"id":"8f44c0b1a472561-17d7f8597c79cf7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63838120000001,32.8172967]},"id":"8f44c0b1a408824-17fef9dbc5ae3638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a472561-17d7f8597c79cf7d","8f44c0b1a408824-17fef9dbc5ae3638"]},"geometry":{"type":"LineString","coordinates":[[-83.63899930000001,32.8176432],[-83.63838120000001,32.8172967]]},"id":"8844c0b1a5fffff-17f6f91a93e41c45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6367774,32.8218517]},"id":"8f44c0ba9b63b00-139ffdc62030b2d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63694240000001,32.8216587]},"id":"8f44c0ba9b61c1a-13b6fd5f0e7870df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b63b00-139ffdc62030b2d0","8f44c0ba9b61c1a-13b6fd5f0e7870df"]},"geometry":{"type":"LineString","coordinates":[[-83.6367774,32.8218517],[-83.6370699,32.8219992],[-83.637206,32.821832],[-83.63694240000001,32.8216587]]},"id":"8944c0ba9b7ffff-139efd2684419afe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6305564,32.8241608]},"id":"8f44c0ba9aa876a-17bf8cf648e62ff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317109,32.8241554]},"id":"8f44c0ba9a1840b-17bf2a24bf9b4638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a1840b-17bf2a24bf9b4638","8f44c0ba9aa876a-17bf8cf648e62ff0"]},"geometry":{"type":"LineString","coordinates":[[-83.6305564,32.8241608],[-83.6309023,32.8243487],[-83.6309511,32.824337],[-83.6310768,32.824395700000004],[-83.63127220000001,32.8241962],[-83.6314049,32.8242813],[-83.6316092,32.8242131],[-83.6317109,32.8241554]]},"id":"8844c0ba9bfffff-17970b8db0d744f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6341137,32.8262866]},"id":"8f44c0ba9a5e21b-13ff2446f4ce8071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63391850000001,32.8265167]},"id":"8f44c0ba9a5a031-13fff4c0fc7caa5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a5a031-13fff4c0fc7caa5c","8f44c0ba9a5e21b-13ff2446f4ce8071"]},"geometry":{"type":"LineString","coordinates":[[-83.6341137,32.8262866],[-83.6337171,32.826060600000005],[-83.6335205,32.8262663],[-83.63391850000001,32.8265167]]},"id":"8844c0ba9bfffff-13dfe51dfe9e6dba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384587,32.827516]},"id":"8f44c0a34d2e558-17fff9ab5fc1a679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63809090000001,32.827279600000004]},"id":"8f44c0a34d237a0-17dffa9131792298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d237a0-17dffa9131792298","8f44c0a34d2e558-17fff9ab5fc1a679"]},"geometry":{"type":"LineString","coordinates":[[-83.6384587,32.827516],[-83.63809090000001,32.827279600000004]]},"id":"8944c0a34d3ffff-17b7fa1e40b67f00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63729400000001,32.82754]},"id":"8f44c0a34d06398-17fefc8341b67421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6362417,32.8275809]},"id":"8f44c0a34d10191-1796ff14ff22f092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d06398-17fefc8341b67421","8f44c0a34d10191-1796ff14ff22f092"]},"geometry":{"type":"LineString","coordinates":[[-83.63729400000001,32.82754],[-83.63712960000001,32.827779],[-83.6370728,32.827812],[-83.63701160000001,32.827812],[-83.6362417,32.8275809]]},"id":"8944c0a34d3ffff-17dffdb0721b966a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6348432,32.8281312]},"id":"8f44c0a34da366a-17ff027f02986cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63491,32.8285958]},"id":"8f44c0a34d8524d-139762554a84ac00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d8524d-139762554a84ac00","8f44c0a34da366a-17ff027f02986cef"]},"geometry":{"type":"LineString","coordinates":[[-83.6348432,32.8281312],[-83.6350378,32.828176500000005],[-83.63491,32.8285958]]},"id":"8944c0a34dbffff-13dfe233e6994f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6342951,32.828684100000004]},"id":"8f44c0a34d8028b-13d793d598404e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63433350000001,32.828557100000005]},"id":"8f44c0a34d8004b-13ff33bd9f07261e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d8028b-13d793d598404e01","8f44c0a34d8004b-13ff33bd9f07261e"]},"geometry":{"type":"LineString","coordinates":[[-83.6342951,32.828684100000004],[-83.63433350000001,32.828557100000005]]},"id":"8c44c0a34d803ff-139fe3c9944dc90d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63206050000001,32.8279859]},"id":"8f44c0ba9365c2c-1797394a3130b858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63187070000001,32.8279407]},"id":"8f44c0ba936430b-17f7f9c0d2987cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9365c2c-1797394a3130b858","8f44c0ba936430b-17f7f9c0d2987cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.63206050000001,32.8279859],[-83.6319362,32.8283733],[-83.6317468,32.828327800000004],[-83.63187070000001,32.8279407]]},"id":"8a44c0ba9367fff-139779b3cb88dbf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6332478,32.828269]},"id":"8f44c0a34d9540a-13d726642b0d8b2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6331021,32.8286614]},"id":"8f44c0a34d91432-13bf66bf3db7724c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d9540a-13d726642b0d8b2b","8f44c0a34d91432-13bf66bf3db7724c"]},"geometry":{"type":"LineString","coordinates":[[-83.6332478,32.828269],[-83.6331021,32.8286614]]},"id":"8a44c0a34d97fff-13bfc691a048a0a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6336125,32.8282009]},"id":"8f44c0a34d95849-139f958036fc328d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6337046,32.828069]},"id":"8f44c0a34d865a5-17d72546a4483fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d865a5-17d72546a4483fe0","8f44c0a34d95849-139f958036fc328d"]},"geometry":{"type":"LineString","coordinates":[[-83.6336125,32.8282009],[-83.63351490000001,32.828163],[-83.6330841,32.828068200000004],[-83.6331224,32.8279337],[-83.6337046,32.828069]]},"id":"8944c0a34dbffff-17bf96228292e70d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6314952,32.827117]},"id":"8f44c0ba9add0c6-17f72aab83a1e6dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6306667,32.828228100000004]},"id":"8f44c0ba93756d5-13bf9cb1507d3e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9add0c6-17f72aab83a1e6dc","8f44c0ba93756d5-13bf9cb1507d3e84"]},"geometry":{"type":"LineString","coordinates":[[-83.6314952,32.827117],[-83.6313918,32.8273138],[-83.6306667,32.828228100000004]]},"id":"8744c0ba9ffffff-17d74ba55a4f2f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63153170000001,32.8300075]},"id":"8f44c0ba934c604-1797ba94bf852302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63184170000001,32.8296445]},"id":"8f44c0ba936a2e1-139fd9d2f4489ffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba934c604-1797ba94bf852302","8f44c0ba936a2e1-139fd9d2f4489ffc"]},"geometry":{"type":"LineString","coordinates":[[-83.63153170000001,32.8300075],[-83.63184170000001,32.8296445]]},"id":"8944c0ba937ffff-17974a33d5d74185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63684090000001,32.829746400000005]},"id":"8f44c0a34c35349-13dffd9e756a055d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6362556,32.8295989]},"id":"8f44c0a34c308d5-1397ff0c44d6b694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c35349-13dffd9e756a055d","8f44c0a34c308d5-1397ff0c44d6b694"]},"geometry":{"type":"LineString","coordinates":[[-83.63684090000001,32.829746400000005],[-83.63690670000001,32.8295623],[-83.6363195,32.8294294],[-83.6362556,32.8295989]]},"id":"8944c0a34c3ffff-13defe31fa3ffa9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6301523,32.8325483]},"id":"8f44c0ba92414b6-13b7bdf2df30c0bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6293198,32.8320576]},"id":"8f44c0ba9255a90-13970ffb22b038b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9255a90-13970ffb22b038b0","8f44c0ba92414b6-13b7bdf2df30c0bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6301523,32.8325483],[-83.6293198,32.8320576]]},"id":"8944c0ba927ffff-139f5ef70e907b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6301229,32.8325837]},"id":"8f44c0ba924386e-13dfde053da11d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62985110000001,32.8329116]},"id":"8f44c0ba92436c9-139fceaf131f7a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba924386e-13dfde053da11d5b","8f44c0ba92436c9-139fceaf131f7a45"]},"geometry":{"type":"LineString","coordinates":[[-83.6301229,32.8325837],[-83.630843,32.8329931],[-83.6305631,32.833345900000005],[-83.62985110000001,32.8329116]]},"id":"8944c0ba927ffff-13d78d4aed44e89e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62254680000001,32.835686100000004]},"id":"8f44c0a36835362-13dff0844de25bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6222115,32.8355073]},"id":"8f44c0a36835519-13f73155d7c7724c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36835362-13dff0844de25bcc","8f44c0a36835519-13f73155d7c7724c"]},"geometry":{"type":"LineString","coordinates":[[-83.62254680000001,32.835686100000004],[-83.62275220000001,32.8354301],[-83.6227628,32.8353945],[-83.6227451,32.8353618],[-83.6227133,32.8353381],[-83.6225048,32.8352401],[-83.6224377,32.8352431],[-83.62238470000001,32.8352787],[-83.6222115,32.8355073]]},"id":"8944c0a3683ffff-13bf708c7f6c7af3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617682,32.8420348]},"id":"8f44c0a36026d84-13dfec64c233480e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6167516,32.8424344]},"id":"8f44c0a3603054c-13dfaeaa412b5855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3603054c-13dfaeaa412b5855","8f44c0a36026d84-13dfec64c233480e"]},"geometry":{"type":"LineString","coordinates":[[-83.617682,32.8420348],[-83.6172959,32.8418109],[-83.6170591,32.8417574],[-83.61693890000001,32.841894],[-83.6168329,32.8418317],[-83.6166527,32.8419831],[-83.6164265,32.842268100000005],[-83.6167516,32.8424344]]},"id":"8844c0a361fffff-13df6e38d99b520e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616979,32.843002000000006]},"id":"8f44c0a36006da1-17bf6e1c2437305a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6173206,32.8425442]},"id":"8f44c0a36035669-139f2d46a4a75ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36006da1-17bf6e1c2437305a","8f44c0a36035669-139f2d46a4a75ccd"]},"geometry":{"type":"LineString","coordinates":[[-83.616979,32.843002000000006],[-83.6170238,32.8428975],[-83.6173206,32.8425442]]},"id":"8a44c0a36037fff-13bffdb88419bca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62936350000001,32.8427424]},"id":"8f44c0a36b739b5-139f0fdfdd42b73e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6296203,32.842896800000005]},"id":"8f44c0a36b714e8-13ff8f3f574c77dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b739b5-139f0fdfdd42b73e","8f44c0a36b714e8-13ff8f3f574c77dd"]},"geometry":{"type":"LineString","coordinates":[[-83.62936350000001,32.8427424],[-83.62971180000001,32.8423411],[-83.6299621,32.842485100000005],[-83.6296203,32.842896800000005]]},"id":"8a44c0a36b77fff-13b74f0c9762860f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63181800000001,32.842258300000005]},"id":"8f44c0a3479691b-13ff79e1c79544df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63156640000001,32.8425808]},"id":"8f44c0a347966a8-13b70a7f0094d919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a347966a8-13b70a7f0094d919","8f44c0a3479691b-13ff79e1c79544df"]},"geometry":{"type":"LineString","coordinates":[[-83.63181800000001,32.842258300000005],[-83.63156640000001,32.8425808]]},"id":"8b44c0a34796fff-13d74a306ba12a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6313561,32.8424575]},"id":"8f44c0a36b658ed-13f7fb02747014e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6311117,32.8427475]},"id":"8f44c0a36b656dd-139f3b9b3cca7869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b656dd-139f3b9b3cca7869","8f44c0a36b658ed-13f7fb02747014e8"]},"geometry":{"type":"LineString","coordinates":[[-83.6313561,32.8424575],[-83.6311117,32.8427475]]},"id":"8a44c0a36b67fff-13d79b4ed85e5d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63101640000001,32.8434468]},"id":"8f44c0a36b6e053-17d74bd6caa63006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6308619,32.8436316]},"id":"8f44c0a36b6ad66-17d7cc375decf6d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6ad66-17d7cc375decf6d7","8f44c0a36b6e053-17d74bd6caa63006"]},"geometry":{"type":"LineString","coordinates":[[-83.63101640000001,32.8434468],[-83.6308619,32.8436316]]},"id":"8a44c0a36b6ffff-179f0c071a23d4e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6323574,32.843661700000006]},"id":"8f44c0a3479e212-17df9890aae46ba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6319725,32.8434402]},"id":"8f44c0a36b6d90d-17df298133b15dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6d90d-17df298133b15dc6","8f44c0a3479e212-17df9890aae46ba9"]},"geometry":{"type":"LineString","coordinates":[[-83.6323574,32.843661700000006],[-83.6319725,32.8434402]]},"id":"8944c0a347bffff-17976908f3d5c41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6292576,32.8437203]},"id":"8f44c0a36b5186c-17ff30220b5dfb40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5186c-17ff30220b5dfb40","8f44c0a36b714e8-13ff8f3f574c77dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6292576,32.8437203],[-83.6293766,32.843589800000004],[-83.6291121,32.8434556],[-83.6296203,32.842896800000005]]},"id":"8944c0a36b7ffff-179f7ff4fb1617c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6296609,32.8441045]},"id":"8f44c0a36b5cb2a-17ff5f25fba21d84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6293007,32.8438869]},"id":"8f44c0a36b51a42-17f750071322f876"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b51a42-17f750071322f876","8f44c0a36b5cb2a-17ff5f25fba21d84"]},"geometry":{"type":"LineString","coordinates":[[-83.6296609,32.8441045],[-83.6293007,32.8438869]]},"id":"8944c0a36b7ffff-17bf5f968992c385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6295319,32.8442584]},"id":"8f44c0a36b5c31d-17df8f769bfd55ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5cb2a-17ff5f25fba21d84","8f44c0a36b5c31d-17df8f769bfd55ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6295319,32.8442584],[-83.630076,32.8446],[-83.6302096,32.8444481],[-83.6296609,32.8441045]]},"id":"8944c0a36b7ffff-1797de8c31c00442"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6275031,32.851135500000005]},"id":"8f44c0a30d9b0eb-1397b46a963fca83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62736410000001,32.850691000000005]},"id":"8f44c0a30d9ab2a-1797f4c17558d4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30d9b0eb-1397b46a963fca83","8f44c0a30d9ab2a-1797f4c17558d4bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6275031,32.851135500000005],[-83.6279037,32.851139100000005],[-83.6280885,32.851084],[-83.62894220000001,32.8504633],[-83.6284456,32.8499943],[-83.6283799,32.8499943],[-83.6282814,32.8500219],[-83.6282034,32.850152900000005],[-83.6275466,32.850573600000004],[-83.62736410000001,32.850691000000005]]},"id":"8844c0a30dfffff-17b7d2ae54ec8eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6216354,32.851224800000004]},"id":"8f44c0a362003b2-13dfa2bdea397100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6211371,32.85159]},"id":"8f44c0a3621c8ec-13b7e3f55607383f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3621c8ec-13b7e3f55607383f","8f44c0a362003b2-13dfa2bdea397100"]},"geometry":{"type":"LineString","coordinates":[[-83.6216354,32.851224800000004],[-83.6215188,32.8516019],[-83.62146580000001,32.8516345],[-83.6214022,32.8516375],[-83.6211371,32.85159]]},"id":"8944c0a3623ffff-1397632f3e4d1ae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61879400000001,32.8547916]},"id":"8f44c0a3292c659-1397e9adccfbe4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6184051,32.854623700000005]},"id":"8f44c0a3292e105-139ffaa0d93a118e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292e105-139ffaa0d93a118e","8f44c0a3292c659-1397e9adccfbe4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.61879400000001,32.8547916],[-83.6184051,32.854623700000005]]},"id":"8a44c0a3292ffff-13d77a2751eae01d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6188927,32.854637100000005]},"id":"8f44c0a3292c05c-13b739701da37829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61849840000001,32.8544714]},"id":"8f44c0a3292e922-13bfaa668e0478c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292e922-13bfaa668e0478c5","8f44c0a3292c05c-13b739701da37829"]},"geometry":{"type":"LineString","coordinates":[[-83.6188927,32.854637100000005],[-83.61849840000001,32.8544714]]},"id":"8a44c0a3292ffff-13f779eb463e3831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6189847,32.8544933]},"id":"8f44c0a3292c850-13df79369fb0138c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618588,32.854325100000004]},"id":"8f44c0a32921330-17f73a2e87d1ff7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32921330-17f73a2e87d1ff7d","8f44c0a3292c850-13df79369fb0138c"]},"geometry":{"type":"LineString","coordinates":[[-83.6189847,32.8544933],[-83.618588,32.854325100000004]]},"id":"8944c0a3293ffff-1397e9b297673d32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61908340000001,32.8543388]},"id":"8f44c0a362d2209-17ffe8f8e84f3bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6186842,32.8541681]},"id":"8f44c0a32921868-17ff39f26dab8158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32921868-17ff39f26dab8158","8f44c0a362d2209-17ffe8f8e84f3bbf"]},"geometry":{"type":"LineString","coordinates":[[-83.61908340000001,32.8543388],[-83.6186842,32.8541681]]},"id":"8844c0a363fffff-17b76975a2871582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61756700000001,32.8560463]},"id":"8f44c0a3290a10c-1797fcacacd5fdc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177718,32.855710200000004]},"id":"8f44c0a3290ea9d-13d7ec2cae7621ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3290ea9d-13d7ec2cae7621ac","8f44c0a3290a10c-1797fcacacd5fdc3"]},"geometry":{"type":"LineString","coordinates":[[-83.61756700000001,32.8560463],[-83.6177718,32.855710200000004]]},"id":"8a44c0a3290ffff-13bffc6ca1ee82f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6168645,32.856629600000005]},"id":"8f44c0a328260b1-1797ae63bc902aea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617017,32.8563922]},"id":"8f44c0a3291964c-17ff2e04615ca733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328260b1-1797ae63bc902aea","8f44c0a3291964c-17ff2e04615ca733"]},"geometry":{"type":"LineString","coordinates":[[-83.6168645,32.856629600000005],[-83.6177684,32.8566258],[-83.617779,32.8563883],[-83.617017,32.8563922]]},"id":"8844c0a329fffff-17bfad1122cbb59e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6185671,32.856983500000005]},"id":"8f44c0a32950c59-17dfba3b9e23f8ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61800170000001,32.856986]},"id":"8f44c0a32952d8e-17f76b9cf4c4021e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32952d8e-17f76b9cf4c4021e","8f44c0a32950c59-17dfba3b9e23f8ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6185671,32.856983500000005],[-83.61856,32.856801000000004],[-83.6180087,32.8568039],[-83.61800170000001,32.856986]]},"id":"8a44c0a32957fff-17976aec36b9054c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178021,32.85776]},"id":"8f44c0a3282c692-13d72c19b67ccc6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177593,32.857910700000005]},"id":"8f44c0a32828cab-13b73c34742a9f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282c692-13d72c19b67ccc6a","8f44c0a32828cab-13b73c34742a9f15"]},"geometry":{"type":"LineString","coordinates":[[-83.6178021,32.85776],[-83.6177593,32.857910700000005]]},"id":"8a44c0a3282ffff-13f72c271676367a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181663,32.857676600000005]},"id":"8f44c0a3282caf3-139feb361faedf74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181748,32.857130500000004]},"id":"8f44c0a32952176-17bfbb30ca1ac395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282caf3-139feb361faedf74","8f44c0a32952176-17bfbb30ca1ac395"]},"geometry":{"type":"LineString","coordinates":[[-83.6181663,32.857676600000005],[-83.618302,32.8576767],[-83.61835500000001,32.857661900000004],[-83.61836910000001,32.8576233],[-83.61837270000001,32.8571364],[-83.6181748,32.857130500000004]]},"id":"8844c0a329fffff-17f7fad1d49a009f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181694,32.857480800000005]},"id":"8f44c0a3282c959-1797ab3426ac7d0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6179503,32.857783000000005]},"id":"8f44c0a3282c646-13d76bbd1504568e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282c646-13d76bbd1504568e","8f44c0a3282c959-1797ab3426ac7d0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6181694,32.857480800000005],[-83.6179592,32.857477800000005],[-83.6179503,32.857783000000005]]},"id":"8b44c0a3282cfff-17dfab9e6759657b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61768000000001,32.858119]},"id":"8f44c0a3282ab64-13b76c660acacbcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61764860000001,32.8589502]},"id":"8f44c0a3280d0e1-13bfec79a2d3a501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282ab64-13b76c660acacbcc","8f44c0a3280d0e1-13bfec79a2d3a501"]},"geometry":{"type":"LineString","coordinates":[[-83.61768000000001,32.858119],[-83.6180334,32.8581754],[-83.61772950000001,32.858893800000004],[-83.61764860000001,32.8589502]]},"id":"8944c0a3283ffff-13f76bf63797ef05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6165247,32.857705200000005]},"id":"8f44c0a32800d2e-13b7ef381033f098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61638310000001,32.858006200000005]},"id":"8f44c0a32800796-13dfef9096140970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32800796-13dfef9096140970","8f44c0a32800d2e-13b7ef381033f098"]},"geometry":{"type":"LineString","coordinates":[[-83.6165247,32.857705200000005],[-83.61649270000001,32.8578311],[-83.6164715,32.857887500000004],[-83.61638310000001,32.858006200000005]]},"id":"8b44c0a32800fff-13972f5b502b4676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6118845,32.8595927]},"id":"8f44c0a3289acac-17bf7a8c39792dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61188800000001,32.8589426]},"id":"8f44c0a32893b94-13b73a8a05e4d522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32893b94-13b73a8a05e4d522","8f44c0a3289acac-17bf7a8c39792dcf"]},"geometry":{"type":"LineString","coordinates":[[-83.6118845,32.8595927],[-83.61188800000001,32.8589426]]},"id":"8944c0a328bffff-13f77a8b2edd10d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61150520000001,32.859589500000006]},"id":"8f44c0a32c6d68d-17bf7b7946dafacf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6115135,32.858948000000005]},"id":"8f44c0a3289359b-13bfbb741808e1f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3289359b-13bfbb741808e1f3","8f44c0a32c6d68d-17bf7b7946dafacf"]},"geometry":{"type":"LineString","coordinates":[[-83.61150520000001,32.859589500000006],[-83.6115135,32.858948000000005]]},"id":"8844c0a32dfffff-13f73b76bc217915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6103331,32.858825200000005]},"id":"8f44c0a32c63546-13dffe55d35f5dcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61035430000001,32.8582617]},"id":"8f44c0a32c6635e-13ffbe48913583c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6635e-13ffbe48913583c7","8f44c0a32c63546-13dffe55d35f5dcc"]},"geometry":{"type":"LineString","coordinates":[[-83.6103331,32.858825200000005],[-83.61035430000001,32.8582617]]},"id":"8a44c0a32c67fff-13bfbe4f3c0c7add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6108626,32.8579497]},"id":"8f44c0a32c64ba5-13bfbd0ae44f3208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6106618,32.8571364]},"id":"8f44c0a32d4e491-17bf7d88600ce8b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c64ba5-13bfbd0ae44f3208","8f44c0a32d4e491-17bf7d88600ce8b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6108626,32.8579497],[-83.61072180000001,32.8579409],[-83.6106724,32.8579201],[-83.61065470000001,32.857884500000004],[-83.6106618,32.8571364]]},"id":"8944c0a32d7ffff-17f77d7d2e15dcbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61265560000001,32.860779]},"id":"8f44c0a32122176-17b7f8aa4cd58a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6127069,32.859827]},"id":"8f44c0a32899c81-17dff88a39a86e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32899c81-17dff88a39a86e66","8f44c0a32122176-17b7f8aa4cd58a94"]},"geometry":{"type":"LineString","coordinates":[[-83.61265560000001,32.860779],[-83.6127069,32.859827]]},"id":"8744c0a32ffffff-17ff789a3711aa78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61162660000001,32.8601461]},"id":"8f44c0a321344b5-17977b2d6a185744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6116267,32.8607758]},"id":"8f44c0a321306f6-17b7fb2d5c70365d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321306f6-17b7fb2d5c70365d","8f44c0a321344b5-17977b2d6a185744"]},"geometry":{"type":"LineString","coordinates":[[-83.61162660000001,32.8601461],[-83.6116267,32.8607758]]},"id":"8a44c0a32137fff-17df3b2d6c12904f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6122253,32.860157300000004]},"id":"8f44c0a3289b785-179f79b7386309a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61222930000001,32.8607777]},"id":"8f44c0a32131831-17b739b4b989dbc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32131831-17b739b4b989dbc6","8f44c0a3289b785-179f79b7386309a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6122253,32.860157300000004],[-83.61222930000001,32.8607777]]},"id":"8944c0a3213ffff-17f739b5f3b8b00c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61204280000001,32.8601539]},"id":"8f44c0a32134b8c-179f3a2943b647fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61204280000001,32.8607771]},"id":"8f44c0a32131c00-17b7ba294090716b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32131c00-17b7ba294090716b","8f44c0a32134b8c-179f3a2943b647fc"]},"geometry":{"type":"LineString","coordinates":[[-83.61204280000001,32.8601539],[-83.61204280000001,32.8607771]]},"id":"8a44c0a32137fff-17dffa29494bc807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6118302,32.8601499]},"id":"8f44c0a32134199-179fbaae2574ce9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6118215,32.8607764]},"id":"8f44c0a321302ad-17b77ab39d3f3a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321302ad-17b77ab39d3f3a03","8f44c0a32134199-179fbaae2574ce9b"]},"geometry":{"type":"LineString","coordinates":[[-83.6118302,32.8601499],[-83.6118215,32.8607764]]},"id":"8a44c0a32137fff-17df7ab0e937fdbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61143100000001,32.8598011]},"id":"8f44c0a32c69561-17bfbba7ab62b646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6114266,32.8607748]},"id":"8f44c0a32132ad6-17b77baa66512cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32132ad6-17b77baa66512cf1","8f44c0a32c69561-17bfbba7ab62b646"]},"geometry":{"type":"LineString","coordinates":[[-83.61143100000001,32.8598011],[-83.6114266,32.8607748]]},"id":"8744c0a32ffffff-17fffba90cc6c512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109539,32.8602519]},"id":"8f44c0a32c4d886-17df7cd1dd0f59f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109668,32.8607724]},"id":"8f44c0a32c49ba1-179ffcc9ca97686a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c49ba1-179ffcc9ca97686a","8f44c0a32c4d886-17df7cd1dd0f59f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6109539,32.8602519],[-83.6109668,32.8607724]]},"id":"8a44c0a32c4ffff-17ff3ccddb9ffe7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6107757,32.8603073]},"id":"8f44c0a32c4d52a-17ff3d413b785765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61077590000001,32.860771400000004]},"id":"8f44c0a32c491aa-179f3d411cf2a9f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c491aa-179f3d411cf2a9f7","8f44c0a32c4d52a-17ff3d413b785765"]},"geometry":{"type":"LineString","coordinates":[[-83.6107757,32.8603073],[-83.61077590000001,32.860771400000004]]},"id":"8a44c0a32c4ffff-179f3d412cd5cba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61055440000001,32.860310500000004]},"id":"8f44c0a32c48918-17ff3dcb80e214aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6105502,32.8607706]},"id":"8f44c0a32c49598-179fbdce2b4fcd50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c49598-179fbdce2b4fcd50","8f44c0a32c48918-17ff3dcb80e214aa"]},"geometry":{"type":"LineString","coordinates":[[-83.61055440000001,32.860310500000004],[-83.6105502,32.8607706]]},"id":"8a44c0a32c4ffff-179ffdccd4340121"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6103463,32.860313500000004]},"id":"8f44c0a32c48c32-17fffe4d9e7b5fde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61035070000001,32.860770200000005]},"id":"8f44c0a32c4b8b0-179f7e4ada4557f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c4b8b0-179f7e4ada4557f2","8f44c0a32c48c32-17fffe4d9e7b5fde"]},"geometry":{"type":"LineString","coordinates":[[-83.6103463,32.860313500000004],[-83.61035070000001,32.860770200000005]]},"id":"8a44c0a32c4ffff-179fbe4c3a1c6d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100206,32.8603182]},"id":"8f44c0a32c4e676-1797ff192c224e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100253,32.8607695]},"id":"8f44c0a32c4a2a9-179fff16399d57a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c4a2a9-179fff16399d57a8","8f44c0a32c4e676-1797ff192c224e05"]},"geometry":{"type":"LineString","coordinates":[[-83.6100206,32.8603182],[-83.6100253,32.8607695]]},"id":"8a44c0a32c4ffff-179fff17b7793bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6101988,32.8603156]},"id":"8f44c0a32c4e22e-17977ea9c37d498e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61019010000001,32.8607698]},"id":"8f44c0a32c4bca3-179f3eaf3a474fb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c4bca3-179f3eaf3a474fb0","8f44c0a32c4e22e-17977ea9c37d498e"]},"geometry":{"type":"LineString","coordinates":[[-83.6101988,32.8603156],[-83.61019010000001,32.8607698]]},"id":"8a44c0a32c4ffff-179f3eac7886a00d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61324660000001,32.8636988]},"id":"8f44c0a321562ad-17d7f738ea87b251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61431800000001,32.863854100000005]},"id":"8f44c0a32142d06-17b7f49b401915cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32142d06-17b7f49b401915cb","8f44c0a321562ad-17d7f738ea87b251"]},"geometry":{"type":"LineString","coordinates":[[-83.61324660000001,32.8636988],[-83.61431800000001,32.863854100000005]]},"id":"8944c0a3217ffff-17f775ea1a2d2d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6135867,32.863561600000004]},"id":"8f44c0a32154605-17ff36645aa70f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143498,32.863692]},"id":"8f44c0a321464ed-17bfb487604bc243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321464ed-17bfb487604bc243","8f44c0a32154605-17ff36645aa70f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.6135867,32.863561600000004],[-83.6143498,32.863692]]},"id":"8944c0a3217ffff-1797f575eac994b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6144213,32.8633279]},"id":"8f44c0a32173b41-17dff45abca0f3a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61366720000001,32.8631868]},"id":"8f44c0a321726c6-1797f63205104fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32173b41-17dff45abca0f3a3","8f44c0a321726c6-1797f63205104fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6144213,32.8633279],[-83.61366720000001,32.8631868]]},"id":"8a44c0a32177fff-17bff5465130554d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61457990000001,32.862971900000005]},"id":"8f44c0a32171d26-17ff73f7961ccc77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61356210000001,32.862810200000006]},"id":"8f44c0a3210d353-179f7673b319920c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32171d26-17ff73f7961ccc77","8f44c0a3210d353-179f7673b319920c"]},"geometry":{"type":"LineString","coordinates":[[-83.61457990000001,32.862971900000005],[-83.61356210000001,32.862810200000006]]},"id":"8844c0a321fffff-17dff535a5a5393a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6142045,32.862335800000004]},"id":"8f44c0a32129268-13fff4e234b0cc24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614703,32.8624287]},"id":"8f44c0a328db794-13bff3aaa95d8f29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328db794-13bff3aaa95d8f29","8f44c0a32129268-13fff4e234b0cc24"]},"geometry":{"type":"LineString","coordinates":[[-83.6142045,32.862335800000004],[-83.614703,32.8624287]]},"id":"8944c0a3217ffff-139ff44670ce3436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6140755,32.8625289]},"id":"8f44c0a32176bae-13ffb532d1895c01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6146598,32.8626206]},"id":"8f44c0a32175c06-17b7f3c5a93e0882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32176bae-13ffb532d1895c01","8f44c0a32175c06-17b7f3c5a93e0882"]},"geometry":{"type":"LineString","coordinates":[[-83.6140755,32.8625289],[-83.6146598,32.8626206]]},"id":"8a44c0a32177fff-1797747c49b667d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614238,32.8621708]},"id":"8f44c0a32129a08-139ff4cd42a93497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6147406,32.8622614]},"id":"8f44c0a328dbcd2-13d7739326b7e3ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32129a08-139ff4cd42a93497","8f44c0a328dbcd2-13d7739326b7e3ba"]},"geometry":{"type":"LineString","coordinates":[[-83.614238,32.8621708],[-83.6147406,32.8622614]]},"id":"8844c0a321fffff-13b7343036ccc9d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6142726,32.8620001]},"id":"8f44c0a328da4a6-139f34b7af5b123f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6147833,32.8620709]},"id":"8f44c0a328daa61-13df737873f7fc59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328da4a6-139f34b7af5b123f","8f44c0a328daa61-13df737873f7fc59"]},"geometry":{"type":"LineString","coordinates":[[-83.6142726,32.8620001],[-83.6147833,32.8620709]]},"id":"8b44c0a328dafff-13b73418140699d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6140544,32.8617585]},"id":"8f44c0a3212d732-13973540054ce29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6148228,32.8618894]},"id":"8f44c0a328d8423-13dff35fc96e8feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3212d732-13973540054ce29d","8f44c0a328d8423-13dff35fc96e8feb"]},"geometry":{"type":"LineString","coordinates":[[-83.6140544,32.8617585],[-83.6148228,32.8618894]]},"id":"8844c0a321fffff-13b7344fe41b3fae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6136269,32.8617274]},"id":"8f44c0a321281b5-13f7b64b3c8b34b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130895,32.8618007]},"id":"8f44c0a3212acf3-13b7779b1b52218c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3212acf3-13b7779b1b52218c","8f44c0a321281b5-13f7b64b3c8b34b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6136269,32.8617274],[-83.61322600000001,32.8615672],[-83.6130895,32.8618007]]},"id":"8a44c0a3212ffff-13df77092bd9f420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6128206,32.8623525]},"id":"8f44c0a3210c49d-13ff7843261874e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6123532,32.8621971]},"id":"8f44c0a32103322-139f396742f79b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32103322-139f396742f79b09","8f44c0a3210c49d-13ff7843261874e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6128206,32.8623525],[-83.6123532,32.8621971]]},"id":"8944c0a3213ffff-13dff8d530917234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61118730000001,32.8653232]},"id":"8f44c0a3201ca69-13bf3c3ff3f8dc8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6111382,32.863666200000004]},"id":"8f44c0a32030a72-17bf7c5eaacb2ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32030a72-17bf7c5eaacb2ed7","8f44c0a3201ca69-13bf3c3ff3f8dc8e"]},"geometry":{"type":"LineString","coordinates":[[-83.61118730000001,32.8653232],[-83.6111382,32.863666200000004]]},"id":"8944c0a3203ffff-13b73c4f5e7bc55c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61137380000001,32.8646685]},"id":"8f44c0a32000554-13b7fbcb6667b4cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6113127,32.8636597]},"id":"8f44c0a3203562a-17bf7bf19e5b83d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32000554-13b7fbcb6667b4cf","8f44c0a3203562a-17bf7bf19e5b83d7"]},"geometry":{"type":"LineString","coordinates":[[-83.61137380000001,32.8646685],[-83.6113127,32.8636597]]},"id":"8944c0a3203ffff-17f7bbde8ca23417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61150450000001,32.8636525]},"id":"8f44c0a32035225-17b7fb79bf198c17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61154880000001,32.8646594]},"id":"8f44c0a3200010c-139f3b5e0a270ba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3200010c-139f3b5e0a270ba0","8f44c0a32035225-17b7fb79bf198c17"]},"geometry":{"type":"LineString","coordinates":[[-83.61150450000001,32.8636525],[-83.61154880000001,32.8646594]]},"id":"8944c0a3203ffff-17f7bb6bec000458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6117476,32.8646491]},"id":"8f44c0a32000b25-1397bae1c79092eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6116945,32.8636454]},"id":"8f44c0a32022d0e-17b77b02f0114643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32000b25-1397bae1c79092eb","8f44c0a32022d0e-17b77b02f0114643"]},"geometry":{"type":"LineString","coordinates":[[-83.6117476,32.8646491],[-83.6116945,32.8636454]]},"id":"8944c0a3203ffff-17df3af2695d7f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61095110000001,32.8636732]},"id":"8f44c0a32030051-17b7fcd39533d1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61101070000001,32.865330300000004]},"id":"8f44c0a3201c331-13bf7cae590111ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32030051-17b7fcd39533d1fa","8f44c0a3201c331-13bf7cae590111ff"]},"geometry":{"type":"LineString","coordinates":[[-83.61095110000001,32.8636732],[-83.61101070000001,32.865330300000004]]},"id":"8944c0a3203ffff-13bfbcc0fad6ad4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6108164,32.865338]},"id":"8f44c0a3201c71c-13d77d27c64e7ffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6107717,32.8636799]},"id":"8f44c0a32030458-17b7fd43bd639b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32030458-17b7fd43bd639b9c","8f44c0a3201c71c-13d77d27c64e7ffb"]},"geometry":{"type":"LineString","coordinates":[[-83.6108164,32.865338],[-83.6107717,32.8636799]]},"id":"8944c0a3203ffff-13bf3d35b6047530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6105936,32.8636866]},"id":"8f44c0a32032ba0-17bf3db302d31c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61063800000001,32.8653451]},"id":"8f44c0a3201ea24-13dfbd97481b9d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32032ba0-17bf3db302d31c34","8f44c0a3201ea24-13dfbd97481b9d72"]},"geometry":{"type":"LineString","coordinates":[[-83.6105936,32.8636866],[-83.61063800000001,32.8653451]]},"id":"8944c0a3203ffff-13d77da52cca6769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61047090000001,32.8653849]},"id":"8f44c0a3201e073-13f7bdffb6b87fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6104023,32.8636937]},"id":"8f44c0a320321aa-17d7be2a9e0603f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a320321aa-17d7be2a9e0603f0","8f44c0a3201e073-13f7bdffb6b87fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.61047090000001,32.8653849],[-83.6104023,32.8636937]]},"id":"8944c0a3203ffff-13d73e1523b43448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6102632,32.865334000000004]},"id":"8f44c0a3201e42e-13d7fe8181af9193"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6101974,32.863701400000004]},"id":"8f44c0a320324a4-17d77eaaaaa011fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a320324a4-17d77eaaaaa011fe","8f44c0a3201e42e-13d7fe8181af9193"]},"geometry":{"type":"LineString","coordinates":[[-83.6102632,32.865334000000004],[-83.6101974,32.863701400000004]]},"id":"8944c0a3203ffff-13d7be96192878af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6120398,32.8660213]},"id":"8f44c0a3200b9b5-17ff7a2b2dce73df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6104828,32.8660531]},"id":"8f44c0a3201b518-17973df8418a436e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3200b9b5-17ff7a2b2dce73df","8f44c0a3201b518-17973df8418a436e"]},"geometry":{"type":"LineString","coordinates":[[-83.6120398,32.8660213],[-83.6104828,32.8660531]]},"id":"8944c0a3203ffff-17ff7c11b00abe89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61205410000001,32.8661953]},"id":"8f44c0a3200b171-17df3a223c0c2e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6104851,32.8662245]},"id":"8f44c0a320f4b6d-17ff7df6d4c9d37d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3200b171-17df3a223c0c2e22","8f44c0a320f4b6d-17ff7df6d4c9d37d"]},"geometry":{"type":"LineString","coordinates":[[-83.61205410000001,32.8661953],[-83.6104851,32.8662245]]},"id":"8844c0a321fffff-17f73c0c8b987671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61269870000001,32.8694221]},"id":"8f44c0a323b3a44-17bff88f50471403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130005,32.869416300000005]},"id":"8f44c0a323b1210-17bf37d2b8201341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a323b3a44-17bff88f50471403","8f44c0a323b1210-17bf37d2b8201341"]},"geometry":{"type":"LineString","coordinates":[[-83.61269870000001,32.8694221],[-83.6130005,32.869416300000005]]},"id":"8a44c0a323b7fff-17bf38310350699c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134231,32.8710815]},"id":"8f44c0a3238a82b-13dff6ca9df99f0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61325310000001,32.8712942]},"id":"8f44c0a3238a0da-13dff734d812f83d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3238a82b-13dff6ca9df99f0d","8f44c0a3238a0da-13dff734d812f83d"]},"geometry":{"type":"LineString","coordinates":[[-83.6134231,32.8710815],[-83.61360140000001,32.871195300000004],[-83.61340990000001,32.871398500000005],[-83.61325310000001,32.8712942]]},"id":"8a44c0a3238ffff-13bf76b3ee89a10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62078740000001,32.8678966]},"id":"8f44c0a32ae140e-139764cfe947d38c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62058710000001,32.8680682]},"id":"8f44c0a32ae3334-13ffa54d16c15c3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae3334-13ffa54d16c15c3d","8f44c0a32ae140e-139764cfe947d38c"]},"geometry":{"type":"LineString","coordinates":[[-83.62078740000001,32.8678966],[-83.62058710000001,32.8680682]]},"id":"8a44c0a32ae7fff-13bf250e83c23256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6215251,32.867261400000004]},"id":"8f44c0a32a56c5c-17f76302d55b8cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae140e-139764cfe947d38c","8f44c0a32a56c5c-17f76302d55b8cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.62078740000001,32.8678966],[-83.6215251,32.867261400000004]]},"id":"8844c0a32bfffff-13bfe3e95335da6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62092460000001,32.868010500000004]},"id":"8f44c0a32ae1773-13dfb47a28ed9e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62166450000001,32.867376400000005]},"id":"8f44c0a32a56149-17bf62abb3421db5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae1773-13dfb47a28ed9e88","8f44c0a32a56149-17bf62abb3421db5"]},"geometry":{"type":"LineString","coordinates":[[-83.62092460000001,32.868010500000004],[-83.62166450000001,32.867376400000005]]},"id":"8844c0a32bfffff-13977392e716d2b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6210655,32.8681275]},"id":"8f44c0a32ae12eb-1397b422146c3977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62182100000001,32.8675055]},"id":"8f44c0a32a50d8d-139ff249e3ec7637"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae12eb-1397b422146c3977","8f44c0a32a50d8d-139ff249e3ec7637"]},"geometry":{"type":"LineString","coordinates":[[-83.6210655,32.8681275],[-83.62182100000001,32.8675055]]},"id":"8844c0a32bfffff-13d7733608bba925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62123600000001,32.868244700000005]},"id":"8f44c0a32aec093-13dff3b78b603f70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62198310000001,32.8676392]},"id":"8f44c0a32a50129-13f7a1e49dcba52a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32a50129-13f7a1e49dcba52a","8f44c0a32aec093-13dff3b78b603f70"]},"geometry":{"type":"LineString","coordinates":[[-83.62123600000001,32.868244700000005],[-83.62198310000001,32.8676392]]},"id":"8844c0a32bfffff-139fe2ce02b17fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6057239,32.878958600000004]},"id":"8f44c0a14d49001-179769969fd28f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14880325-17d7e57dfac170c2","8f44c0a14d49001-179769969fd28f7a"]},"geometry":{"type":"LineString","coordinates":[[-83.60740170000001,32.8799034],[-83.6057239,32.878958600000004]]},"id":"8944c0a148bffff-17bf678a4907f4a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60823620000001,32.8791354]},"id":"8f44c0a148a1562-17f7e374652e3252"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6075974,32.8801088]},"id":"8f44c0a148811ae-17d74503a4809853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a148a1562-17f7e374652e3252","8f44c0a148811ae-17d74503a4809853"]},"geometry":{"type":"LineString","coordinates":[[-83.60823620000001,32.8791354],[-83.60833860000001,32.8792126],[-83.608376,32.8792628],[-83.608376,32.8793507],[-83.6083162,32.8795012],[-83.6081705,32.8797145],[-83.60798000000001,32.8799028],[-83.6078306,32.8799937],[-83.6075974,32.8801088]]},"id":"8944c0a148bffff-17d7c3c96de276ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59872030000001,32.8860256]},"id":"8f44c0a14475c66-17d75aafdd3c3c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59932760000001,32.8853073]},"id":"8f44c0a1455d788-13975934445b9f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14475c66-17d75aafdd3c3c78","8f44c0a1455d788-13975934445b9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.59872030000001,32.8860256],[-83.5987377,32.8853133],[-83.59932760000001,32.8853073]]},"id":"8844c0a145fffff-1797da54773cef39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5908797,32.915553100000004]},"id":"8f44c0a1069d623-17dffdd4366d582a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5910164,32.9163677]},"id":"8f44c0a13d20d34-17dffd7ec51146d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1069d623-17dffdd4366d582a","8f44c0a13d20d34-17dffd7ec51146d7"]},"geometry":{"type":"LineString","coordinates":[[-83.5908797,32.915553100000004],[-83.5910164,32.9163677]]},"id":"8844c0a107fffff-17df6da977e2140d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5915056,32.9191341]},"id":"8f44c0a13d09368-179ffc4d09342aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590593,32.9191428]},"id":"8f44c0a13c24b21-17b76e8764363ca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a13c24b21-17b76e8764363ca7","8f44c0a13d09368-179ffc4d09342aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.5915056,32.9191341],[-83.5908357,32.9190908],[-83.590593,32.9191428]]},"id":"8844c0a13dfffff-179f6d6b516956bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5915083,32.9220355]},"id":"8f44c0a13c702ce-17b77c4b5d176c4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5928823,32.922157600000006]},"id":"8f44c0a13c615a4-17ffe8f099a24bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a13c615a4-17ffe8f099a24bee","8f44c0a13c702ce-17b77c4b5d176c4a"]},"geometry":{"type":"LineString","coordinates":[[-83.5915083,32.9220355],[-83.59189310000001,32.9221049],[-83.5927987,32.922461600000005],[-83.5928545,32.922403200000005],[-83.5928823,32.922157600000006]]},"id":"8944c0a13c7ffff-17b77a5efeaa727b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62688270000001,32.838766500000006]},"id":"8f44c0a3449375b-13f715ee5625ff24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6266028,32.8390946]},"id":"8f44c0a3686d4c2-13b7369d4bbb00ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686d4c2-13b7369d4bbb00ca","8f44c0a3449375b-13f715ee5625ff24"]},"geometry":{"type":"LineString","coordinates":[[-83.62688270000001,32.838766500000006],[-83.62664690000001,32.8390429],[-83.6266028,32.8390946]]},"id":"8844c0a369fffff-13df9645d4bf113c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62548910000001,32.8382602]},"id":"8f44c0a36862a59-13bfb95556b87919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6258088,32.838618600000004]},"id":"8f44c0a3686ed96-139fb88d87d2e612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686ed96-139fb88d87d2e612","8f44c0a36862a59-13bfb95556b87919"]},"geometry":{"type":"LineString","coordinates":[[-83.62548910000001,32.8382602],[-83.62577440000001,32.8384291],[-83.6258117,32.838452600000004],[-83.62583620000001,32.8384723],[-83.6258485,32.8385002],[-83.62585490000001,32.8385346],[-83.6258536,32.8385575],[-83.6258397,32.8385807],[-83.6258088,32.838618600000004]]},"id":"8a44c0a36867fff-139fd8c828b27d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6253322,32.8390828]},"id":"8f44c0a36845685-13bfd9b76da4c18d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6257514,32.8385844]},"id":"8f44c0a3686332c-13f758b16d42e454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":-1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0a36845685-13bfd9b76da4c18d","8f44c0a3686332c-13f758b16d42e454"]},"geometry":{"type":"LineString","coordinates":[[-83.6253322,32.8390828],[-83.62569690000001,32.8386493],[-83.6257514,32.8385844]]},"id":"8944c0a3687ffff-139f193466ab18ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6265049,32.839035700000004]},"id":"8f44c0a36868864-139f56da75e1c07c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6264759,32.839598]},"id":"8f44c0a3686bb4e-13ffd6ec9f7727c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3686bb4e-13ffd6ec9f7727c1","8f44c0a36868864-139f56da75e1c07c"]},"geometry":{"type":"LineString","coordinates":[[-83.6265049,32.839035700000004],[-83.62655450000001,32.839100300000005],[-83.62658040000001,32.8391456],[-83.62659310000001,32.8391832],[-83.6265948,32.839192000000004],[-83.6266013,32.839225400000004],[-83.6265992,32.8392707],[-83.6265886,32.8393189],[-83.6265601,32.8394022],[-83.6265235,32.839487600000005],[-83.6264759,32.839598]]},"id":"8a44c0a3686ffff-13bf76bbbd24e7f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627622,32.839859000000004]},"id":"8f44c0a3449b201-179ff4204995ddf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6274595,32.8398574]},"id":"8f44c0a3449b676-179ff485dd28c11d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449b676-179ff485dd28c11d","8f44c0a3449b201-179ff4204995ddf3"]},"geometry":{"type":"LineString","coordinates":[[-83.627622,32.839859000000004],[-83.6274595,32.8398574]]},"id":"8b44c0a3449bfff-179f74530cb5ab80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6272462,32.840111]},"id":"8f44c0a36b3542c-17bf750b26e24232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6273451,32.8402058]},"id":"8f44c0a36b3572e-17ffb4cd513d70ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b3572e-17ffb4cd513d70ce","8f44c0a36b3542c-17bf750b26e24232"]},"geometry":{"type":"LineString","coordinates":[[-83.6272462,32.840111],[-83.62724920000001,32.8401348],[-83.6272702,32.8401573],[-83.6273451,32.8402058]]},"id":"8b44c0a36b35fff-17dfb4f16e7dc673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6328046,32.8309492]},"id":"8f44c0a34cb3302-17df47792767325b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6324189,32.8306168]},"id":"8f44c0a34cb2316-17ff886a323f6d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb2316-17ff886a323f6d53","8f44c0a34cb3302-17df47792767325b"]},"geometry":{"type":"LineString","coordinates":[[-83.6328046,32.8309492],[-83.6328611,32.8308829],[-83.6324189,32.8306168]]},"id":"8a44c0a34cb7fff-17f7b7ceafe887ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6329295,32.831024400000004]},"id":"8f44c0a34c86ca0-17ff472b12651b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6336496,32.831099]},"id":"8f44c0a34c84a95-17bfe5690c397461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c84a95-17bfe5690c397461","8f44c0a34c86ca0-17ff472b12651b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6329295,32.831024400000004],[-83.6331133,32.8308042],[-83.6336496,32.831099]]},"id":"8944c0a34cbffff-17df56586da92c9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6326306,32.8315021]},"id":"8f44c0a34c952d0-13bfd7e5eab2a91c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6329978,32.8310655]},"id":"8f44c0a34c86c56-1797f7006004fc0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c86c56-1797f7006004fc0e","8f44c0a34c952d0-13bfd7e5eab2a91c"]},"geometry":{"type":"LineString","coordinates":[[-83.6326306,32.8315021],[-83.6329978,32.8310655]]},"id":"8944c0a34cbffff-17b767732126a446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6339329,32.8316357]},"id":"8f44c0a34c81928-13ff54b7f551c814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6333707,32.8322317]},"id":"8f44c0a34c9d94c-13f7d6175eb32a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c9d94c-13f7d6175eb32a7f","8f44c0a34c81928-13ff54b7f551c814"]},"geometry":{"type":"LineString","coordinates":[[-83.6339329,32.8316357],[-83.6338252,32.831764400000004],[-83.633521,32.8315847],[-83.633201,32.8319671],[-83.6334628,32.8321218],[-83.6333707,32.8322317]]},"id":"8944c0a34cbffff-13ff95c9cff49f6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6316645,32.8307006]},"id":"8f44c0ba93494ca-17b7ea41be494992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631791,32.8305474]},"id":"8f44c0ba9349cea-17d729f2a291ad75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba93494ca-17b7ea41be494992","8f44c0ba9349cea-17d729f2a291ad75"]},"geometry":{"type":"LineString","coordinates":[[-83.6316645,32.8307006],[-83.63219260000001,32.8310112],[-83.6323198,32.830858500000005],[-83.631791,32.8305474]]},"id":"8644c0a37ffffff-17f7b95df7f6fd78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62223350000001,32.841616200000004]},"id":"8f44c0a36b96480-13df214816c67e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6214209,32.8407804]},"id":"8f44c0a368dd2b4-17dfe343f0be9f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36b96480-13df214816c67e7d","8f44c0a368dd2b4-17dfe343f0be9f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.62223350000001,32.841616200000004],[-83.62181960000001,32.841164400000004],[-83.62155050000001,32.8409017],[-83.6214209,32.8407804]]},"id":"8744c0a36ffffff-17d7b241bb4887e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6255211,32.8449947]},"id":"8f44c0a36a1e086-139fb94152737ed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36a1e086-139fb94152737ed4","8f44c0a36b8a6dc-17df7c990d48576a"]},"geometry":{"type":"LineString","coordinates":[[-83.6255211,32.8449947],[-83.6251831,32.8446364],[-83.624711,32.8440911],[-83.6244053,32.843735],[-83.62415200000001,32.8434663]]},"id":"8844c0a36bfffff-17bffaee16c219c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6261218,32.8458972]},"id":"8f44c0a36ae6c20-13dfd7c9e8b91304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ae6c20-13dfd7c9e8b91304","8f44c0a36a1e086-139fb94152737ed4"]},"geometry":{"type":"LineString","coordinates":[[-83.6261218,32.8458972],[-83.625732,32.845291800000005],[-83.6255211,32.8449947]]},"id":"8a44c0a36a1ffff-13b7d882cdccc447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ae6c20-13dfd7c9e8b91304","8f44c0a36aee40c-17f7d693a8994be0"]},"geometry":{"type":"LineString","coordinates":[[-83.62661820000001,32.8471581],[-83.6263713,32.846578900000004],[-83.6261218,32.8458972]]},"id":"8944c0a36afffff-17dfd733ef1104e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6302423,32.8503356]},"id":"8f44c0a30c34cd3-17b7cdba9765d8aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"motorway_link","surface":"paved","flags":["isBridge","isLink"]},"subType":"road","connectors":["8f44c0a30c28144-13d7f8dbb70f1add","8f44c0a30c34cd3-17b7cdba9765d8aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6322373,32.8520319],[-83.63091770000001,32.850930000000005],[-83.6302423,32.8503356]]},"id":"8944c0a30c3ffff-13bf8b4e4127a1e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6258244,32.839288100000005]},"id":"8f44c0a3686a0f4-13bf1883c938818a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6255843,32.8395767]},"id":"8f44c0a3684cc8a-13df7919dd7da23b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686a0f4-13bf1883c938818a","8f44c0a3684cc8a-13df7919dd7da23b"]},"geometry":{"type":"LineString","coordinates":[[-83.6258244,32.839288100000005],[-83.6255843,32.8395767]]},"id":"8944c0a3687ffff-139758cec7a18538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6259543,32.8394769]},"id":"8f44c0a3686a2ed-13b7183290f27ffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6257705,32.839688100000004]},"id":"8f44c0a3684c02d-17b718a5799da45e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686a2ed-13b7183290f27ffb","8f44c0a3684c02d-17b718a5799da45e"]},"geometry":{"type":"LineString","coordinates":[[-83.6259543,32.8394769],[-83.6257705,32.839688100000004]]},"id":"8944c0a3687ffff-13f7186c092099a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6259521,32.8397969]},"id":"8f44c0a3684ddb1-17ff1833f33ca4c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62542140000001,32.8404195]},"id":"8f44c0a3684bc08-17ff397fa19ee98b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3684ddb1-17ff1833f33ca4c1","8f44c0a3684bc08-17ff397fa19ee98b"]},"geometry":{"type":"LineString","coordinates":[[-83.6259521,32.8397969],[-83.62542140000001,32.8404195]]},"id":"8a44c0a3684ffff-17bfb8d9d2cbf41a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6250275,32.8375544]},"id":"8f44c0a3695b2b4-17ff9a75dfd558b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62469970000001,32.8379473]},"id":"8f44c0a36870b6e-17f71b42b04bb9db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36870b6e-17f71b42b04bb9db","8f44c0a3695b2b4-17ff9a75dfd558b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6250275,32.8375544],[-83.62469970000001,32.8379473]]},"id":"8944c0a3687ffff-17ff5adc434d80df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6247446,32.8382609]},"id":"8f44c0a36871189-13bf1b26a27e6c0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6245329,32.8387905]},"id":"8f44c0a36846712-13f71baaf9dcabf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36871189-13bf1b26a27e6c0c","8f44c0a36846712-13f71baaf9dcabf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6247446,32.8382609],[-83.62477480000001,32.8382913],[-83.6248968,32.8383665],[-83.6245329,32.8387905]]},"id":"8944c0a3687ffff-13d7bb2919e89a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6235845,32.8387137]},"id":"8f44c0a36850dae-13d71dfbba1cef36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6231829,32.8384829]},"id":"8f44c0a36856c99-13b7def6b1c68c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36856c99-13b7def6b1c68c4d","8f44c0a36850dae-13d71dfbba1cef36"]},"geometry":{"type":"LineString","coordinates":[[-83.6235845,32.8387137],[-83.623478,32.8388451],[-83.6230759,32.8386149],[-83.6231829,32.8384829]]},"id":"8a44c0a36857fff-13bfdeadf85eed16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62481550000001,32.8381799]},"id":"8f44c0a3687188a-13f77afa5bad2076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62438680000001,32.8379302]},"id":"8f44c0a36870188-17df7c0641f15bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3687188a-13f77afa5bad2076","8f44c0a36870188-17df7c0641f15bd6"]},"geometry":{"type":"LineString","coordinates":[[-83.62481550000001,32.8381799],[-83.62438680000001,32.8379302]]},"id":"8a44c0a36877fff-13bf7b804efcd09c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62439090000001,32.8377627]},"id":"8f44c0a36870d70-17f7bc03ba88330c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62409480000001,32.838283600000004]},"id":"8f44c0a36872248-13b75cbcce5b6d68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36870d70-17f7bc03ba88330c","8f44c0a36872248-13b75cbcce5b6d68"]},"geometry":{"type":"LineString","coordinates":[[-83.62439090000001,32.8377627],[-83.62400260000001,32.838229500000004],[-83.62409480000001,32.838283600000004]]},"id":"8a44c0a36877fff-139ffc8aee4502e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6246174,32.8369579]},"id":"8f44c0a3695ac70-17ffbb7622fc3b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62476980000001,32.8370501]},"id":"8f44c0a3695ab96-17b75b16ec15e236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3695ab96-17b75b16ec15e236","8f44c0a3695ac70-17ffbb7622fc3b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6246174,32.8369579],[-83.6243694,32.8372552],[-83.6245231,32.8373457],[-83.62476980000001,32.8370501]]},"id":"8844c0a369fffff-17977ba274ef961d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6238014,32.8364075]},"id":"8f44c0a3682c551-17b7bd74295c6939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6237718,32.8364386]},"id":"8f44c0a3682c408-17b73d86ab49f5c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3682c551-17b7bd74295c6939","8f44c0a3682c408-17b73d86ab49f5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6238014,32.8364075],[-83.6237718,32.8364386]]},"id":"8c44c0a3682c5ff-17bf7d7d69fc8034"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62428700000001,32.8365436]},"id":"8f44c0a369536de-17f7dc44aa197799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62439540000001,32.836614700000005]},"id":"8f44c0a3682d833-17b73c00e1989d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a369536de-17f7dc44aa197799","8f44c0a3682d833-17b73c00e1989d11"]},"geometry":{"type":"LineString","coordinates":[[-83.62428700000001,32.8365436],[-83.62439540000001,32.836614700000005]]},"id":"8b44c0a3682dfff-179f1c22cddd816f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6291367,32.838906]},"id":"8f44c0a3448c176-13bf506d9d5b653c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6289416,32.839142200000005]},"id":"8f44c0a3448c6d4-13dff0e7853e4606"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448c176-13bf506d9d5b653c","8f44c0a3448c6d4-13dff0e7853e4606"]},"geometry":{"type":"LineString","coordinates":[[-83.6291367,32.838906],[-83.6289416,32.839142200000005]]},"id":"8b44c0a3448cfff-139710aa803c25aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6284912,32.8391777]},"id":"8f44c0a3448e633-13f712010c4356a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62858770000001,32.8390651]},"id":"8f44c0a3448e01e-139fb1c4b6f4be80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448e01e-139fb1c4b6f4be80","8f44c0a3448e633-13f712010c4356a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6284912,32.8391777],[-83.6283348,32.8390864],[-83.62864210000001,32.8387145],[-83.6288009,32.838807],[-83.62858770000001,32.8390651]]},"id":"8944c0a344bffff-13d7b1ceed4973d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62878450000001,32.8395856]},"id":"8f44c0a3448bd04-13f71149bf145791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6283757,32.8392239]},"id":"8f44c0a3449da45-1397f2493a3e10a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449da45-1397f2493a3e10a2","8f44c0a3448bd04-13f71149bf145791"]},"geometry":{"type":"LineString","coordinates":[[-83.62878450000001,32.8395856],[-83.6283496,32.8393226],[-83.6283757,32.8392239]]},"id":"8a44c0a3448ffff-13fff1e6f17ce5c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6279854,32.8391031]},"id":"8f44c0a3449d50d-13b7733d2138f85b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628321,32.8391922]},"id":"8f44c0a3449da0e-13ff326b6e17ff5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449d50d-13b7733d2138f85b","8f44c0a3449da0e-13ff326b6e17ff5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6279854,32.8391031],[-83.62821600000001,32.8392326],[-83.628321,32.8391922]]},"id":"8b44c0a3449dfff-13ff32d5c5325c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6286717,32.83972]},"id":"8f44c0a3448b531-17bf11903e5e5875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6276222,32.8397045]},"id":"8f44c0a3449b14d-17bf542027882137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448b531-17bf11903e5e5875","8f44c0a3449b14d-17bf542027882137"]},"geometry":{"type":"LineString","coordinates":[[-83.6286717,32.83972],[-83.6279774,32.8392949],[-83.6276687,32.8396509],[-83.6276222,32.8397045]]},"id":"8944c0a344bffff-13b752ec4c841f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6287537,32.8399152]},"id":"8f44c0a3448b719-17b7115cf1bc5179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6285319,32.8398866]},"id":"8f44c0a36b24bac-17b731e792620c9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b24bac-17b731e792620c9e","8f44c0a3448b719-17b7115cf1bc5179"]},"geometry":{"type":"LineString","coordinates":[[-83.6287537,32.8399152],[-83.628707,32.839944200000005],[-83.6286547,32.8399493],[-83.62860380000001,32.8399299],[-83.6285319,32.8398866]]},"id":"8944c0a344bffff-17bf31a2d6e0cf68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141974,32.7417224]},"id":"8f44c0b04173cc0-17fec0c2a58ec176"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71374870000001,32.7418057]},"id":"8f44c0b04154ce5-17bed1db1c4aa84e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04173cc0-17fec0c2a58ec176","8f44c0b04154ce5-17bed1db1c4aa84e"]},"geometry":{"type":"LineString","coordinates":[[-83.7141974,32.7417224],[-83.71374870000001,32.7418057]]},"id":"8944c0b0417ffff-1796d14ede1b2a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134132,32.7421464]},"id":"8f44c0b041563a9-1797c2acc310edd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129245,32.742125900000005]},"id":"8f44c0b04025142-17f6f3de353f253f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b041563a9-1797c2acc310edd8","8f44c0b04025142-17f6f3de353f253f"]},"geometry":{"type":"LineString","coordinates":[[-83.7134132,32.7421464],[-83.7129245,32.742125900000005]]},"id":"8844c0b041fffff-17ff634587361361"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71330850000001,32.743404600000005]},"id":"8f44c0b0402d689-1397e2ee38496239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129716,32.7432796]},"id":"8f44c0b040281ad-13d7c3c0c170de15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402d689-1397e2ee38496239","8f44c0b040281ad-13d7c3c0c170de15"]},"geometry":{"type":"LineString","coordinates":[[-83.71330850000001,32.743404600000005],[-83.7129716,32.7432796]]},"id":"8a44c0b0402ffff-13fed3577e65f7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71314480000001,32.744473400000004]},"id":"8f44c0b04072176-13bfe35489e13115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134886,32.743800400000005]},"id":"8f44c0b04029343-139f427daf24f847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04072176-13bfe35489e13115","8f44c0b04029343-139f427daf24f847"]},"geometry":{"type":"LineString","coordinates":[[-83.71314480000001,32.744473400000004],[-83.7134886,32.743800400000005]]},"id":"8a44c0b04077fff-13dfd2e9194f81dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7146759,32.7450009]},"id":"8f44c0b04063734-17ffbf979dbef26b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7148923,32.7445478]},"id":"8f44c0b04060019-13de7f10592b7993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04063734-17ffbf979dbef26b","8f44c0b04060019-13de7f10592b7993"]},"geometry":{"type":"LineString","coordinates":[[-83.7146759,32.7450009],[-83.7148923,32.7445478]]},"id":"8a44c0b04067fff-17fe3f53f0201e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7147607,32.743912]},"id":"8f44c0b0415922e-13d73f6297837edc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7142761,32.744863800000005]},"id":"8f44c0b040626db-17b7e09170dc4113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0415922e-13d73f6297837edc","8f44c0b040626db-17b7e09170dc4113"]},"geometry":{"type":"LineString","coordinates":[[-83.7147607,32.743912],[-83.7142761,32.744863800000005]]},"id":"8844c0b041fffff-13fe7ffa0566110f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71409340000001,32.7448008]},"id":"8f44c0b04071af3-17fec103a7fcb7ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145701,32.7438457]},"id":"8f44c0b04159700-13b7bfd9bd7c0181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04159700-13b7bfd9bd7c0181","8f44c0b04071af3-17fec103a7fcb7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.71409340000001,32.7448008],[-83.7145701,32.7438457]]},"id":"8844c0b041fffff-13d6506eab09a4f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71391750000001,32.74474]},"id":"8f44c0b04071011-17d6c1719f78f59a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71439570000001,32.743785]},"id":"8f44c0b0415949d-1397e046be730d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04071011-17d6c1719f78f59a","8f44c0b0415949d-1397e046be730d41"]},"geometry":{"type":"LineString","coordinates":[[-83.71391750000001,32.74474],[-83.71439570000001,32.743785]]},"id":"8844c0b041fffff-13be50dc295378b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140052,32.7439934]},"id":"8f44c0b0415b79b-1397e13acca90d5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713728,32.744674700000004]},"id":"8f44c0b040715a8-17bff1e80de6d6fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0415b79b-1397e13acca90d5c","8f44c0b040715a8-17bff1e80de6d6fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7140052,32.7439934],[-83.71401180000001,32.744085000000005],[-83.713728,32.744674700000004]]},"id":"8a44c0b04077fff-13df7184a8f7e9fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138566,32.7439379]},"id":"8f44c0b04074ba1-13f77197af644d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135205,32.744603000000005]},"id":"8f44c0b04070643-1796e269b65020c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04070643-1796e269b65020c5","8f44c0b04074ba1-13f77197af644d22"]},"geometry":{"type":"LineString","coordinates":[[-83.7138566,32.7439379],[-83.7135205,32.744603000000005]]},"id":"8a44c0b04077fff-13b74200b1f8f277"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7136789,32.743871500000004]},"id":"8f44c0b04074c6a-13b7f206be4b1075"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71333720000001,32.744539800000005]},"id":"8f44c0b04072b58-13df62dc4349fc12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04074c6a-13b7f206be4b1075","8f44c0b04072b58-13df62dc4349fc12"]},"geometry":{"type":"LineString","coordinates":[[-83.7136789,32.743871500000004],[-83.71333720000001,32.744539800000005]]},"id":"8a44c0b04077fff-139ed271854d2269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72115140000001,32.7441844]},"id":"8f44c0b04a01c1c-13ff6fc86f213de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72034570000001,32.743790000000004]},"id":"8f44c0b04a15b6d-1396f1bff27e2069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a01c1c-13ff6fc86f213de6","8f44c0b04a15b6d-1396f1bff27e2069"]},"geometry":{"type":"LineString","coordinates":[[-83.72115140000001,32.7441844],[-83.72095,32.743365000000004],[-83.7205108,32.743448300000004],[-83.72034570000001,32.743790000000004]]},"id":"8944c0b04a3ffff-13b7b09544fab896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7225044,32.744967200000005]},"id":"8f44c0b04a763a5-17f6ac7ac7981c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7218119,32.744939800000004]},"id":"8f44c0b04a0d509-17d76e2b91bb76fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a763a5-17f6ac7ac7981c8a","8f44c0b04a0d509-17d76e2b91bb76fe"]},"geometry":{"type":"LineString","coordinates":[[-83.7225044,32.744967200000005],[-83.72207610000001,32.7449898],[-83.7220265,32.7449898],[-83.7218812,32.7449565],[-83.7218119,32.744939800000004]]},"id":"8844c0b04bfffff-17ff7d545249edbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7232094,32.744071600000005]},"id":"8f44c0b04b5e2ac-13b6eac229fc47f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7231996,32.743088]},"id":"8f44c0b04b554c0-13de2ac84b7173ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04b5e2ac-13b6eac229fc47f5","8f44c0b04b554c0-13de2ac84b7173ce"]},"geometry":{"type":"LineString","coordinates":[[-83.7232094,32.744071600000005],[-83.7231996,32.743088]]},"id":"8944c0b04b7ffff-13976ac535c8bdb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68015580000001,32.7818491]},"id":"8f44c0b1c9a801e-17ffb3dead85ba30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6792898,32.7818442]},"id":"8f44c0b1c9819a5-17feb5fbe80760f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c9a801e-17ffb3dead85ba30","8f44c0b1c9819a5-17feb5fbe80760f5"]},"geometry":{"type":"LineString","coordinates":[[-83.68015580000001,32.7818491],[-83.6792898,32.7818442]]},"id":"8944c0b1c9bffff-17feb4ed46a64771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685894,32.787785]},"id":"8f44c0b1cb3159b-17ffa5dc4f172421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68498910000001,32.787636400000004]},"id":"8f44c0b1c84984a-1796c811d47fc616"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cb3159b-17ffa5dc4f172421","8f44c0b1c84984a-1796c811d47fc616"]},"geometry":{"type":"LineString","coordinates":[[-83.685894,32.787785],[-83.68534480000001,32.7877667],[-83.68520670000001,32.787733],[-83.68498910000001,32.787636400000004]]},"id":"8944c0b1cb3ffff-17d6d6fc3c0ae563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68484190000001,32.7863507]},"id":"8f44c0b1c86a825-13ffb86ddd6ff1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6843698,32.7854082]},"id":"8f44c0b1c862b75-17b6a994eed87a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c862b75-17b6a994eed87a64","8f44c0b1c86a825-13ffb86ddd6ff1c4"]},"geometry":{"type":"LineString","coordinates":[[-83.68484190000001,32.7863507],[-83.68425780000001,32.7863472],[-83.68424440000001,32.7859952],[-83.68431120000001,32.7858716],[-83.6843424,32.7857742],[-83.6843698,32.7854082]]},"id":"8944c0b1c87ffff-13b789845e69727b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6668576,32.786165600000004]},"id":"8f44c0b1c532294-13ffb4560a835780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66632890000001,32.7859488]},"id":"8f44c0b11249c2c-13f6b5a07edffebf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c532294-13ffb4560a835780","8f44c0b11249c2c-13f6b5a07edffebf"]},"geometry":{"type":"LineString","coordinates":[[-83.6668576,32.786165600000004],[-83.666864,32.7859543],[-83.66632890000001,32.7859488]]},"id":"8844c0b1c5fffff-1396f4ca7198030b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6689865,32.7904378]},"id":"8f44c0b1c429b0b-13f7af2379e022f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688596,32.7901103]},"id":"8f44c0b1c42d766-139eff72ce81bef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c429b0b-13f7af2379e022f5","8f44c0b1c42d766-139eff72ce81bef4"]},"geometry":{"type":"LineString","coordinates":[[-83.6689865,32.7904378],[-83.66887750000001,32.790426700000005],[-83.6688596,32.7901103]]},"id":"8a44c0b1c42ffff-139eaf62f7762265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66957070000001,32.790604900000005]},"id":"8f44c0b1c55b1a0-17d6bdb659b3b958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6700369,32.789865500000005]},"id":"8f44c0b1c55cae0-1397fc92f40a26c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55b1a0-17d6bdb659b3b958","8f44c0b1c55cae0-1397fc92f40a26c3"]},"geometry":{"type":"LineString","coordinates":[[-83.66957070000001,32.790604900000005],[-83.6700369,32.789865500000005]]},"id":"8a44c0b1c55ffff-13ffad24a88621cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6694171,32.79055]},"id":"8f44c0b1c55a269-17bfee165ee26696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6698607,32.7897923]},"id":"8f44c0b1c55c023-13d6bd01131a1197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55a269-17bfee165ee26696","8f44c0b1c55c023-13d6bd01131a1197"]},"geometry":{"type":"LineString","coordinates":[[-83.6694171,32.79055],[-83.6698607,32.7897923]]},"id":"8a44c0b1c55ffff-13d7ad8bbcead60e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6692263,32.7904819]},"id":"8f44c0b1c55a74c-1797be8d95cc26e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6696979,32.7897247]},"id":"8f44c0b1c55c52e-13bffd66d7470d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55a74c-1797be8d95cc26e8","8f44c0b1c55c52e-13bffd66d7470d5b"]},"geometry":{"type":"LineString","coordinates":[[-83.6692263,32.7904819],[-83.6696979,32.7897247]]},"id":"8a44c0b1c55ffff-1396bdfa3d5bffb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66918840000001,32.7902335]},"id":"8f44c0b1c55ac50-13f7fea547089654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669212,32.789843000000005]},"id":"8f44c0b1c55e50c-13f7ee9688e40cee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55ac50-13f7fea547089654","8f44c0b1c55e50c-13f7ee9688e40cee"]},"geometry":{"type":"LineString","coordinates":[[-83.66918840000001,32.7902335],[-83.669212,32.789843000000005]]},"id":"8a44c0b1c55ffff-13fffe9dec8e642c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6705141,32.7910679]},"id":"8f44c0b1c46421b-17f7fb68b9d00a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6707875,32.7906082]},"id":"8f44c0b1c54bd8a-17d6aabdd55045ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54bd8a-17d6aabdd55045ac","8f44c0b1c46421b-17f7fb68b9d00a6a"]},"geometry":{"type":"LineString","coordinates":[[-83.6705141,32.7910679],[-83.6707875,32.7906082]]},"id":"8844c0b1c5fffff-17f7fb134c1c8c6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6720641,32.7901102]},"id":"8f44c0b1c0b6173-139ee79ff8bb6b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6717744,32.7905472]},"id":"8f44c0b1c0b2541-17bea8550fba6ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b6173-139ee79ff8bb6b74","8f44c0b1c0b2541-17bea8550fba6ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.6720641,32.7901102],[-83.6717744,32.7905472]]},"id":"8a44c0b1c0b7fff-13b7f7fa81b962c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67157920000001,32.7904554]},"id":"8f44c0b1c54d2d5-13f6a8cf0cd3a8aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67180610000001,32.7901006]},"id":"8f44c0b1c0b6430-1396e84135ddfdb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d2d5-13f6a8cf0cd3a8aa","8f44c0b1c0b6430-1396e84135ddfdb3"]},"geometry":{"type":"LineString","coordinates":[[-83.67157920000001,32.7904554],[-83.67180610000001,32.7901006]]},"id":"8944c0b1c57ffff-1397e8881a79b15e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671407,32.790374400000005]},"id":"8f44c0b1c54d615-13d6a93aac15de3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67157080000001,32.7900918]},"id":"8f44c0b1c54d8a6-139fe8d445fafcd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d8a6-139fe8d445fafcd4","8f44c0b1c54d615-13d6a93aac15de3f"]},"geometry":{"type":"LineString","coordinates":[[-83.671407,32.790374400000005],[-83.67157080000001,32.7900918]]},"id":"8b44c0b1c54dfff-13f7b9077deed325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66823020000001,32.7915593]},"id":"8f44c0b1c409368-17b6b0fc2f769330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66778450000001,32.7915353]},"id":"8f44c0b1c40ba2c-1797b212b8a54d09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c40ba2c-1797b212b8a54d09","8f44c0b1c409368-17b6b0fc2f769330"]},"geometry":{"type":"LineString","coordinates":[[-83.66823020000001,32.7915593],[-83.66778450000001,32.7915353]]},"id":"8844c0b1c5fffff-179fb1876c4cea34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66943450000001,32.7913907]},"id":"8f44c0b1c471812-17bfbe0b7171864e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66972630000001,32.7915975]},"id":"8f44c0b1c46261b-17befd551cdabbed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c471812-17bfbe0b7171864e","8f44c0b1c46261b-17befd551cdabbed"]},"geometry":{"type":"LineString","coordinates":[[-83.66943450000001,32.7913907],[-83.66972630000001,32.7915975]]},"id":"8944c0b1c47ffff-17fffdb04201d019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66905580000001,32.7914284]},"id":"8f44c0b1c4702d1-17d6eef8211f33f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6695739,32.7917663]},"id":"8f44c0b1c444521-17b7fdb455b9d6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4702d1-17d6eef8211f33f1","8f44c0b1c444521-17b7fdb455b9d6f6"]},"geometry":{"type":"LineString","coordinates":[[-83.66905580000001,32.7914284],[-83.6695739,32.7917663]]},"id":"8944c0b1c47ffff-17beee563adac3b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6694818,32.791868400000006]},"id":"8f44c0b1c44448c-17f7ededee2eed4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66894930000001,32.7915718]},"id":"8f44c0b1c4738de-17beef3abfb97c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c44448c-17f7ededee2eed4c","8f44c0b1c4738de-17beef3abfb97c84"]},"geometry":{"type":"LineString","coordinates":[[-83.6694818,32.791868400000006],[-83.66894930000001,32.7915718]]},"id":"8944c0b1c47ffff-179fbe9451cf4391"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6693698,32.7919925]},"id":"8f44c0b1c446a85-17b7fe33e9a0e48a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66892150000001,32.7917332]},"id":"8f44c0b1c4733a2-1797ef4c175d8413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c446a85-17b7fe33e9a0e48a","8f44c0b1c4733a2-1797ef4c175d8413"]},"geometry":{"type":"LineString","coordinates":[[-83.6693698,32.7919925],[-83.66892150000001,32.7917332]]},"id":"8944c0b1c47ffff-17f6fec00ea85961"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6692465,32.792129100000004]},"id":"8f44c0b1c446295-139ebe80f94abc79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66889230000001,32.7919025]},"id":"8f44c0b1c45590b-17ffbf5e501d4ba7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c446295-139ebe80f94abc79","8f44c0b1c45590b-17ffbf5e501d4ba7"]},"geometry":{"type":"LineString","coordinates":[[-83.6692465,32.792129100000004],[-83.66889230000001,32.7919025]]},"id":"8944c0b1c47ffff-17d7eeefa855fdec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66726720000001,32.795032400000004]},"id":"8f44c0b1c790cb6-179ff356083d24a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666057,32.794791000000004]},"id":"8f44c0b1eb65d65-179ef4f3770469d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c790cb6-179ff356083d24a2","8f44c0b1eb65d65-179ef4f3770469d7"]},"geometry":{"type":"LineString","coordinates":[[-83.66726720000001,32.795032400000004],[-83.6666057,32.794791000000004]]},"id":"8744c0b1cffffff-17d7f424b2aaee57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66734770000001,32.794876800000004]},"id":"8f44c0b1c796b45-17beb323bb1086b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666804,32.7946359]},"id":"8f44c0b1c4cb0da-17b7f4c4c62f6076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4cb0da-17b7f4c4c62f6076","8f44c0b1c796b45-17beb323bb1086b7"]},"geometry":{"type":"LineString","coordinates":[[-83.66734770000001,32.794876800000004],[-83.6666804,32.7946359]]},"id":"8744c0b1cffffff-17f6f3f4426f9df5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66742160000001,32.794733900000004]},"id":"8f44c0b1c794555-17f6b2f58266ee70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667544,32.794482200000004]},"id":"8f44c0b1c4cb12e-17d7f49683e5bc4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c794555-17f6b2f58266ee70","8f44c0b1c4cb12e-17d7f49683e5bc4c"]},"geometry":{"type":"LineString","coordinates":[[-83.66742160000001,32.794733900000004],[-83.6667544,32.794482200000004]]},"id":"8744c0b1cffffff-1796b3c60bc99675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666831,32.7943232]},"id":"8f44c0b1c4cb934-17f6b466ab223cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c794d0c-17fff2bf42a6b231","8f44c0b1c4cb934-17f6b466ab223cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6675084,32.794566100000004],[-83.666831,32.7943232]]},"id":"8744c0b1cffffff-17bff392f637de6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66758270000001,32.7944224]},"id":"8f44c0b1c7b2702-17b6b290d890bf28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669045,32.7941705]},"id":"8f44c0b1c4c8041-1796b438bda8cf9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b2702-17b6b290d890bf28","8f44c0b1c4c8041-1796b438bda8cf9d"]},"geometry":{"type":"LineString","coordinates":[[-83.66758270000001,32.7944224],[-83.6669045,32.7941705]]},"id":"8844c0b1c5fffff-17d7f364c2c0ccf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6676987,32.794198200000004]},"id":"8f44c0b1c7b28b3-1797f248579e09ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669993,32.7939737]},"id":"8f44c0b1c4c895c-179fb3fd75c3a566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b28b3-1797f248579e09ff","8f44c0b1c4c895c-179fb3fd75c3a566"]},"geometry":{"type":"LineString","coordinates":[[-83.6676987,32.794198200000004],[-83.6669993,32.7939737]]},"id":"8844c0b1c5fffff-17dff322e3eb6243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66707620000001,32.795382100000005]},"id":"8f44c0b1c792320-17fff3cd6cd845b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66642420000001,32.7951442]},"id":"8f44c0b1eb65683-17f7b564ebec3b8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb65683-17f7b564ebec3b8e","8f44c0b1c792320-17fff3cd6cd845b0"]},"geometry":{"type":"LineString","coordinates":[[-83.66707620000001,32.795382100000005],[-83.66642420000001,32.7951442]]},"id":"8744c0b1cffffff-17bfb499247f0173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669904,32.7955302]},"id":"8f44c0b1c7922d2-13d6f4030e89e9f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663468,32.7952847]},"id":"8f44c0b1eb61cab-17bef595494d1060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7922d2-13d6f4030e89e9f4","8f44c0b1eb61cab-17bef595494d1060"]},"geometry":{"type":"LineString","coordinates":[[-83.6669904,32.7955302],[-83.6663468,32.7952847]]},"id":"8944c0b1eb7ffff-139fb4cc2b8947dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66690460000001,32.7956784]},"id":"8f44c0b1eb6c8de-13b7b438ad9b0f1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66626360000001,32.7954357]},"id":"8f44c0b1eb614f0-139ff5c947c96684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6c8de-13b7b438ad9b0f1a","8f44c0b1eb614f0-139ff5c947c96684"]},"geometry":{"type":"LineString","coordinates":[[-83.66690460000001,32.7956784],[-83.66626360000001,32.7954357]]},"id":"8944c0b1eb7ffff-13f7b500f823de17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6668125,32.7958373]},"id":"8f44c0b1eb6c766-1396f4723ac1adbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66617790000001,32.795591200000004]},"id":"8f44c0b1eb63ac4-13feb5fedefd4fdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6c766-1396f4723ac1adbd","8f44c0b1eb63ac4-13feb5fedefd4fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.6668125,32.7958373],[-83.66617790000001,32.795591200000004]]},"id":"8944c0b1eb7ffff-13dff5388e470416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66667480000001,32.7959644]},"id":"8f44c0b1eb68d28-13f7f4c848b2953f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6660911,32.7957489]},"id":"8f44c0b1eb632eb-13dfb63518af8b6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb68d28-13f7f4c848b2953f","8f44c0b1eb632eb-13dfb63518af8b6f"]},"geometry":{"type":"LineString","coordinates":[[-83.66667480000001,32.7959644],[-83.6660911,32.7957489]]},"id":"8944c0b1eb7ffff-13b6f57ea7dee0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66640310000001,32.7960591]},"id":"8f44c0b1eb6e2d4-13b6f572117975ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66600410000001,32.795906800000004]},"id":"8f44c0b1eb45bb0-13d7f66b7aa98cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6e2d4-13b6f572117975ce","8f44c0b1eb45bb0-13d7f66b7aa98cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.66640310000001,32.7960591],[-83.66600410000001,32.795906800000004]]},"id":"8944c0b1eb7ffff-13f7f5eec14555cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6658992,32.7973755]},"id":"8f44c0b1eb486c9-17d7b6ad0587b837"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661504,32.7974983]},"id":"8f44c0b1eb494e2-17b6f6100a471804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb486c9-17d7b6ad0587b837","8f44c0b1eb494e2-17b6f6100a471804"]},"geometry":{"type":"LineString","coordinates":[[-83.6658992,32.7973755],[-83.6661504,32.7974983]]},"id":"8a44c0b1eb4ffff-17feb65e88b4a98a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66620040000001,32.79741]},"id":"8f44c0b1eb4950c-17fff5f0c56e6eed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66593830000001,32.7973155]},"id":"8f44c0b1eb48671-17b6b69490773cd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4950c-17fff5f0c56e6eed","8f44c0b1eb48671-17b6b69490773cd5"]},"geometry":{"type":"LineString","coordinates":[[-83.66620040000001,32.79741],[-83.66593830000001,32.7973155]]},"id":"8a44c0b1eb4ffff-17dff642a2fd7c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66651420000001,32.7968758]},"id":"8f44c0b1eb4d998-139ff52cab35c9d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6662417,32.7967804]},"id":"8f44c0b1eb4c325-13f7f5d6f019747f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4d998-139ff52cab35c9d4","8f44c0b1eb4c325-13f7f5d6f019747f"]},"geometry":{"type":"LineString","coordinates":[[-83.66651420000001,32.7968758],[-83.6662417,32.7967804]]},"id":"8a44c0b1eb4ffff-1397b581da5537f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66661450000001,32.7967068]},"id":"8f44c0b1eb6b3b3-13b7f4edf08d3f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663394,32.796605500000005]},"id":"8f44c0b1eb6b480-13f6f599ec2272e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6b3b3-13b7f4edf08d3f60","8f44c0b1eb6b480-13f6f599ec2272e8"]},"geometry":{"type":"LineString","coordinates":[[-83.66661450000001,32.7967068],[-83.6663394,32.796605500000005]]},"id":"8b44c0b1eb6bfff-1396b543ff7728bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6656806,32.7972892]},"id":"8f44c0b1eb4aa1a-17b7f735ae3bd4b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66549090000001,32.797624400000004]},"id":"8f44c0b1ea648c8-17f7f7ac3e35dbc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4aa1a-17b7f735ae3bd4b9","8f44c0b1ea648c8-17f7f7ac3e35dbc3"]},"geometry":{"type":"LineString","coordinates":[[-83.6656806,32.7972892],[-83.66549090000001,32.797624400000004]]},"id":"8944c0b1eb7ffff-179eb770face5414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6652645,32.7976259]},"id":"8f44c0b1ea64574-17f6b839b12e83d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6654803,32.7972101]},"id":"8f44c0b1eb4a1aa-17f6f7b2d7ac6a9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ea64574-17f6b839b12e83d5","8f44c0b1eb4a1aa-17f6f7b2d7ac6a9c"]},"geometry":{"type":"LineString","coordinates":[[-83.6652645,32.7976259],[-83.6654803,32.7972101]]},"id":"8944c0b1eb7ffff-17f6f7f64b085df9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6498997,32.8220806]},"id":"8f44c0b1a3accc5-13befdbcbe00f587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64990680000001,32.8215513]},"id":"8f44c0b1a3a5344-17dfddb84ee7140e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a3a5344-17dfddb84ee7140e","8f44c0b1a3accc5-13befdbcbe00f587"]},"geometry":{"type":"LineString","coordinates":[[-83.6498997,32.8220806],[-83.64990680000001,32.8215513]]},"id":"8944c0b1a3bffff-1397ddba7d6e2f43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6505472,32.8220954]},"id":"8f44c0b1a313065-13b7fc2809e0f820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6505704,32.8215631]},"id":"8f44c0b1a310116-17f6fc1980f06a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a313065-13b7fc2809e0f820","8f44c0b1a310116-17f6fc1980f06a32"]},"geometry":{"type":"LineString","coordinates":[[-83.6505472,32.8220954],[-83.6505704,32.8215631]]},"id":"8a44c0b1a317fff-139fdc20c969db18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65039300000001,32.82282]},"id":"8f44c0b1a3a9860-13f6dc886e1c83e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6492535,32.822792]},"id":"8f44c0b1a3aa7a1-13f7df5092a85484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a3aa7a1-13f7df5092a85484","8f44c0b1a3a9860-13f6dc886e1c83e2"]},"geometry":{"type":"LineString","coordinates":[[-83.65039300000001,32.82282],[-83.6492535,32.822792]]},"id":"8a44c0b1a3affff-13ffddec824e557c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65035280000001,32.823556700000005]},"id":"8f44c0b1a230c1a-17d6fca180e5edb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6492382,32.8231343]},"id":"8f44c0b1a38c014-13beff5a24484c22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a38c014-13beff5a24484c22","8f44c0b1a230c1a-17d6fca180e5edb1"]},"geometry":{"type":"LineString","coordinates":[[-83.65035280000001,32.823556700000005],[-83.65009690000001,32.8235565],[-83.6501125,32.8231521],[-83.6492382,32.8231343]]},"id":"8844c0b1a3fffff-179efdc8f7a5bf0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64942,32.824219]},"id":"8f44c0b1a216881-17f6fee889395ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64921430000001,32.8237261]},"id":"8f44c0b1a388215-17bedf691eee1fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a216881-17f6fee889395ac2","8f44c0b1a388215-17bedf691eee1fca"]},"geometry":{"type":"LineString","coordinates":[[-83.64942,32.824219],[-83.6494656,32.8241174],[-83.64948120000001,32.8237304],[-83.64921430000001,32.8237261]]},"id":"8844c0b1a3fffff-1796dee55fd40f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6492199,32.8235873]},"id":"8f44c0b1a38814a-17d6df659b913d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64850320000001,32.823191200000004]},"id":"8f44c0b1a39d961-13dee1258a3e8d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a39d961-13dee1258a3e8d10","8f44c0b1a38814a-17d6df659b913d2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6492199,32.8235873],[-83.64850320000001,32.823191200000004]]},"id":"8944c0b1a3bffff-17def045849ae646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6480758,32.8253289]},"id":"8f44c0b1a285cc3-1396f230a498edc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64813170000001,32.824433500000005]},"id":"8f44c0b1a2a62c4-17f6f20db4372c44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a285cc3-1396f230a498edc3","8f44c0b1a2a62c4-17f6f20db4372c44"]},"geometry":{"type":"LineString","coordinates":[[-83.6480758,32.8253289],[-83.6485342,32.824800100000004],[-83.64855490000001,32.8247523],[-83.64854460000001,32.8247044],[-83.6485135,32.8246653],[-83.64813170000001,32.824433500000005]]},"id":"8944c0b1a2bffff-17fef18c75dea89d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65448950000001,32.8265024]},"id":"8f44c0b1a261786-13f6d2881e08bbbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65449190000001,32.8260759]},"id":"8f44c0b1a260b19-13fff2869cd6e0f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a261786-13f6d2881e08bbbd","8f44c0b1a260b19-13fff2869cd6e0f3"]},"geometry":{"type":"LineString","coordinates":[[-83.65448950000001,32.8265024],[-83.65449190000001,32.8260759]]},"id":"8a44c0b1a267fff-13fed287591e641d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65428390000001,32.826501900000004]},"id":"8f44c0b1a263b91-13f7f3089e27b613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542814,32.8260753]},"id":"8f44c0b1a260031-13ffd30a284d9468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a263b91-13f7f3089e27b613","8f44c0b1a260031-13ffd30a284d9468"]},"geometry":{"type":"LineString","coordinates":[[-83.65428390000001,32.826501900000004],[-83.6542814,32.8260753]]},"id":"8a44c0b1a267fff-13fef3096f249772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553296,32.826606500000004]},"id":"8f44c0b1bc93552-17b7d07b05fa5edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65508910000001,32.826017]},"id":"8f44c0b1bc966a0-13d6f1115a69a23a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc93552-17b7d07b05fa5edf","8f44c0b1bc966a0-13d6f1115a69a23a"]},"geometry":{"type":"LineString","coordinates":[[-83.6553296,32.826606500000004],[-83.6550842,32.8264592],[-83.65508910000001,32.826017]]},"id":"8a44c0b1bc97fff-1397f0f55fe85691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648392,32.8408743]},"id":"8f44c0a34af63b3-179ef16b0b2b82f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6488436,32.8399519]},"id":"8f44c0a34aada70-17dff050c9978f62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34af63b3-179ef16b0b2b82f2","8f44c0a34aada70-17dff050c9978f62"]},"geometry":{"type":"LineString","coordinates":[[-83.648392,32.8408743],[-83.6485459,32.840510800000004],[-83.64894100000001,32.8400047],[-83.6488436,32.8399519]]},"id":"8844c0a34bfffff-17d7f0c1612d6dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64791860000001,32.8415478]},"id":"8f44c0a34a8924b-13bfe292e10bab73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64850700000001,32.8416646]},"id":"8f44c0a34af3631-13fee1232aa192d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8924b-13bfe292e10bab73","8f44c0a34af3631-13fee1232aa192d7"]},"geometry":{"type":"LineString","coordinates":[[-83.64791860000001,32.8415478],[-83.64850700000001,32.8416646]]},"id":"8944c0a34afffff-13d7e1db0ffb13de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69868670000001,32.9132036]},"id":"8f44c0a2ad84096-17b666a0d5439508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698544,32.9130899]},"id":"8f44c0a2adb125e-17df76fa0a8744a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad84096-17b666a0d5439508","8f44c0a2adb125e-17df76fa0a8744a5"]},"geometry":{"type":"LineString","coordinates":[[-83.69868670000001,32.9132036],[-83.6992213,32.9127221],[-83.69908530000001,32.9126161],[-83.698544,32.9130899]]},"id":"8944c0a2adbffff-17d7e6135a87ebed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7034247,32.9173521]},"id":"8f44c0a2ac71c5d-13d75b0f9dd40379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7038198,32.916764900000004]},"id":"8f44c0a2ad5b273-13d65a18ad97cfca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad5b273-13d65a18ad97cfca","8f44c0a2ac71c5d-13d75b0f9dd40379"]},"geometry":{"type":"LineString","coordinates":[[-83.7034247,32.9173521],[-83.7038198,32.916764900000004]]},"id":"8944c0a2ac7ffff-139fda94246ce73b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7039,32.9177425]},"id":"8f44c0a2ac44163-13b759e684848ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70422950000001,32.9172655]},"id":"8f44c0a2ac604e3-139ef918998a0602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac44163-13b759e684848ff7","8f44c0a2ac604e3-139ef918998a0602"]},"geometry":{"type":"LineString","coordinates":[[-83.7039,32.9177425],[-83.70422950000001,32.9172655]]},"id":"8944c0a2ac7ffff-13b6597f81210d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7048972,32.918264400000005]},"id":"8f44c0a2ac68571-13ff57774c2349cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7052371,32.917912]},"id":"8f44c0a2ac6ca90-139f56a2d5cb5350"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac68571-13ff57774c2349cd","8f44c0a2ac6ca90-139f56a2d5cb5350"]},"geometry":{"type":"LineString","coordinates":[[-83.7048972,32.918264400000005],[-83.7052371,32.917912]]},"id":"8a44c0a2ac6ffff-139f770d1ca10286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7050401,32.9183655]},"id":"8f44c0a2ac68053-17be771df9eebed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70539070000001,32.9180188]},"id":"8f44c0a2ac6ddab-13f7d642de3ff87c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6ddab-13f7d642de3ff87c","8f44c0a2ac68053-17be771df9eebed4"]},"geometry":{"type":"LineString","coordinates":[[-83.7050401,32.9183655],[-83.70539070000001,32.9180188]]},"id":"8a44c0a2ac6ffff-13de56b0625a691f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70694490000001,32.9199682]},"id":"8f44c0a2a123aa3-13b672777663739a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70670120000001,32.9201569]},"id":"8f44c0a2a1236c1-139e530fc5588883"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a123aa3-13b672777663739a","8f44c0a2a1236c1-139e530fc5588883"]},"geometry":{"type":"LineString","coordinates":[[-83.70694490000001,32.9199682],[-83.70670120000001,32.9201569]]},"id":"8944c0a2a13ffff-13df72c39cd6de35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71444310000001,32.929263]},"id":"8f44c0a2bd96784-17d760291540fcb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151185,32.9292985]},"id":"8f44c0a2bd942d3-17ffbe82fd9b623c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd96784-17d760291540fcb9","8f44c0a2bd942d3-17ffbe82fd9b623c"]},"geometry":{"type":"LineString","coordinates":[[-83.71444310000001,32.929263],[-83.7151185,32.9292985]]},"id":"8a44c0a2bd97fff-17f6bf560eac2aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151077,32.9294748]},"id":"8f44c0a2bd90bae-17dffe89bf3b81e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71433610000001,32.9294437]},"id":"8f44c0a2bd92ca4-17d6506bfebb2b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd90bae-17dffe89bf3b81e7","8f44c0a2bd92ca4-17d6506bfebb2b12"]},"geometry":{"type":"LineString","coordinates":[[-83.7151077,32.9294748],[-83.71433610000001,32.9294437]]},"id":"8a44c0a2bd97fff-17d63f7ada7b7a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7150761,32.929644]},"id":"8f44c0a2bd90350-17d7be9d714c8a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144356,32.929616700000004]},"id":"8f44c0a2bd92012-17b6702dce6e7720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd90350-17d7be9d714c8a6a","8f44c0a2bd92012-17b6702dce6e7720"]},"geometry":{"type":"LineString","coordinates":[[-83.7150761,32.929644],[-83.7144356,32.929616700000004]]},"id":"8a44c0a2bd97fff-17bf3f65ad52337b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151304,32.9291032]},"id":"8f44c0a2bd94062-17f7be7b85a800b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144083,32.9290722]},"id":"8f44c0a2bd96534-17de603edd464a15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd96534-17de603edd464a15","8f44c0a2bd94062-17f7be7b85a800b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7151304,32.9291032],[-83.7144083,32.9290722]]},"id":"8a44c0a2bd97fff-17f7ff5d2d696482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71514060000001,32.928936300000004]},"id":"8f44c0a2bd94812-179f3e75265423c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71437560000001,32.9288922]},"id":"8f44c0a2aacbaaa-17ffe0534d8254bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aacbaaa-17ffe0534d8254bf","8f44c0a2bd94812-179f3e75265423c8"]},"geometry":{"type":"LineString","coordinates":[[-83.71514060000001,32.928936300000004],[-83.71437560000001,32.9288922]]},"id":"8744c0a2affffff-17ff7f64375114c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71515050000001,32.9287742]},"id":"8f44c0a2bdb275c-17b7fe6effe8e3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144519,32.928724]},"id":"8f44c0a2aac94b5-1796c023948f2713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac94b5-1796c023948f2713","8f44c0a2bdb275c-17b7fe6effe8e3f3"]},"geometry":{"type":"LineString","coordinates":[[-83.71515050000001,32.9287742],[-83.7144519,32.928724]]},"id":"8744c0a2affffff-17963f49472e99be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151618,32.928589200000005]},"id":"8f44c0a2bdb21ae-17b67e67eaef0398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145629,32.928635]},"id":"8f44c0a2aac9c8a-17deffde368e31f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bdb21ae-17b67e67eaef0398","8f44c0a2aac9c8a-17deffde368e31f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7151618,32.928589200000005],[-83.7147896,32.928578],[-83.7145629,32.928635]]},"id":"8844c0a2abfffff-17b67f2463193966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141211,32.9285688]},"id":"8f44c0a2aacaa66-17b7c0f25222af56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7136493,32.9275241]},"id":"8f44c0a2aac06e3-1396d219318901fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac06e3-1396d219318901fb","8f44c0a2aacaa66-17b7c0f25222af56"]},"geometry":{"type":"LineString","coordinates":[[-83.7141211,32.9285688],[-83.7136493,32.9275241]]},"id":"8944c0a2aafffff-13df5185c128fcbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7137704,32.9260518]},"id":"8f44c0a2aaf5850-17fe61cd821fb7c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7131248,32.9245816]},"id":"8f44c0a2aa13185-13f7c36108cc1a67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa13185-13f7c36108cc1a67","8f44c0a2aaf5850-17fe61cd821fb7c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7137704,32.9260518],[-83.7131248,32.9245816]]},"id":"8844c0a2abfffff-17b6f297496fc0d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71292100000001,32.924645600000005]},"id":"8f44c0a2aa1348c-139fc3e06c75c7ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71359460000001,32.9261094]},"id":"8f44c0a2aaf5181-17b6623b6271134e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaf5181-17b6623b6271134e","8f44c0a2aa1348c-139fc3e06c75c7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.71292100000001,32.924645600000005],[-83.71359460000001,32.9261094]]},"id":"8844c0a2abfffff-17def30de16613f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71345210000001,32.9248357]},"id":"8f44c0a2aa1ec0b-17965294735777f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71476030000001,32.924410300000005]},"id":"8f44c0a2aa00ad8-13fe7f62ddfbcb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa00ad8-13fe7f62ddfbcb9f","8f44c0a2aa1ec0b-17965294735777f0"]},"geometry":{"type":"LineString","coordinates":[[-83.71345210000001,32.9248357],[-83.71476030000001,32.924410300000005]]},"id":"8944c0a2aa3ffff-139760fba17f466b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133793,32.924677]},"id":"8f44c0a2aa13a72-13b762c1f8890824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71455540000001,32.9242849]},"id":"8f44c0a2aa0018e-13be3fe2ea2d4ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa0018e-13be3fe2ea2d4ce6","8f44c0a2aa13a72-13b762c1f8890824"]},"geometry":{"type":"LineString","coordinates":[[-83.7133793,32.924677],[-83.71455540000001,32.9242849]]},"id":"8944c0a2aa3ffff-13bee15270710588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135227,32.9249898]},"id":"8f44c0a2aa1e0e4-17f6e2685c52d320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7148944,32.924567700000004]},"id":"8f44c0a2aa011b6-13deff0f0f1f811b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa011b6-13deff0f0f1f811b","8f44c0a2aa1e0e4-17f6e2685c52d320"]},"geometry":{"type":"LineString","coordinates":[[-83.7135227,32.9249898],[-83.7148944,32.924567700000004]]},"id":"8944c0a2aa3ffff-13f6c0bbbbfca76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7136061,32.9251717]},"id":"8f44c0a2aa1e2c5-17de52343608e1b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7149703,32.924733800000006]},"id":"8f44c0a2aa01394-13d6bedf9aa72da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1e2c5-17de52343608e1b2","8f44c0a2aa01394-13d6bedf9aa72da0"]},"geometry":{"type":"LineString","coordinates":[[-83.7136061,32.9251717],[-83.7149703,32.924733800000006]]},"id":"8944c0a2aa3ffff-17dfc089edc14ebf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7136806,32.9253342]},"id":"8f44c0a2aa184c1-17bfe205ace259a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7150447,32.924896700000005]},"id":"8f44c0a2aa0e965-17be7eb11fedb495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa0e965-17be7eb11fedb495","8f44c0a2aa184c1-17bfe205ace259a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7136806,32.9253342],[-83.7150447,32.924896700000005]]},"id":"8944c0a2aa3ffff-17b7705b68f459d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7137637,32.925515700000005]},"id":"8f44c0a2aa1bd64-17bf51d1b7b0d7c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151255,32.9250746]},"id":"8f44c0a2aa0eb68-179fbe7e99c2299c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1bd64-17bf51d1b7b0d7c7","8f44c0a2aa0eb68-179fbe7e99c2299c"]},"geometry":{"type":"LineString","coordinates":[[-83.7137637,32.925515700000005],[-83.7151255,32.9250746]]},"id":"8944c0a2aa3ffff-17b7c02823df34c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71383970000001,32.9256814]},"id":"8f44c0a2aa1b162-1796e1a23b3a9429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151422,32.925256000000005]},"id":"8f44c0a2aa08c2b-179f3e742ad761a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1b162-1796e1a23b3a9429","8f44c0a2aa08c2b-179f3e742ad761a4"]},"geometry":{"type":"LineString","coordinates":[[-83.71383970000001,32.9256814],[-83.7151422,32.925256000000005]]},"id":"8944c0a2aa3ffff-1797f00b31317647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144804,32.925819600000004]},"id":"8f44c0a2aae4cf2-17ff4011c2069f8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144112,32.9256766]},"id":"8f44c0a2aa19af1-1797e03d0da19475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aae4cf2-17ff4011c2069f8f","8f44c0a2aa19af1-1797e03d0da19475"]},"geometry":{"type":"LineString","coordinates":[[-83.7144804,32.925819600000004],[-83.7144112,32.9256766]]},"id":"8944c0a2aa3ffff-17d6d027694e8804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71709820000001,32.9252447]},"id":"8f44c0a2aa75830-1797f9adad3ecc9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71635880000001,32.925006800000006]},"id":"8f44c0a2aa76965-17f77b7bc6959c6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa76965-17f77b7bc6959c6c","8f44c0a2aa75830-1797f9adad3ecc9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71709820000001,32.9252447],[-83.71698760000001,32.925256700000006],[-83.71635880000001,32.925006800000006]]},"id":"8a44c0a2aa77fff-17dffa96a9ff6fcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7171057,32.9254813]},"id":"8f44c0a2aa75331-179ff9a8f05efad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7161282,32.9251084]},"id":"8f44c0a2aa761a4-17b6fc0be8d939de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa75331-179ff9a8f05efad0","8f44c0a2aa761a4-17b6fc0be8d939de"]},"geometry":{"type":"LineString","coordinates":[[-83.7171057,32.9254813],[-83.7161282,32.9251084]]},"id":"8a44c0a2aa77fff-17b77ada755cb148"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7170191,32.9256638]},"id":"8f44c0a2aa71908-179ff9df111c8425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715883,32.925248700000004]},"id":"8f44c0a2aa0db02-179e7ca52dad8c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa0db02-179e7ca52dad8c5e","8f44c0a2aa71908-179ff9df111c8425"]},"geometry":{"type":"LineString","coordinates":[[-83.7170191,32.9256638],[-83.715883,32.925248700000004]]},"id":"8a44c0a2aa77fff-179e3b422df990e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716858,32.9257871]},"id":"8f44c0a2aa711ac-17defa43c2ee9fa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71598920000001,32.9254868]},"id":"8f44c0a2aa72c72-179f7c62c99282a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa72c72-179f7c62c99282a4","8f44c0a2aa711ac-17defa43c2ee9fa0"]},"geometry":{"type":"LineString","coordinates":[[-83.716858,32.9257871],[-83.71598920000001,32.9254868]]},"id":"8a44c0a2aa77fff-17ff3b534c0f877a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7165659,32.925882800000004]},"id":"8f44c0a2aa7384b-1796fafa5ebf2622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160944,32.925692000000005]},"id":"8f44c0a2aa7204a-179fbc2109d99cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa7384b-1796fafa5ebf2622","8f44c0a2aa7204a-179fbc2109d99cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.7165659,32.925882800000004],[-83.7160944,32.925692000000005]]},"id":"8a44c0a2aa77fff-17df3b8db123d5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152471,32.9240258]},"id":"8f44c0a2aa05974-139e3e3291a73eb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71560430000001,32.9239139]},"id":"8f44c0a2aa2e995-13d63d535dc2ba13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa05974-139e3e3291a73eb0","8f44c0a2aa2e995-13d63d535dc2ba13"]},"geometry":{"type":"LineString","coordinates":[[-83.7152471,32.9240258],[-83.71560430000001,32.9239139]]},"id":"8944c0a2aa3ffff-13ff3dc2f0ce0076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71531490000001,32.9241879]},"id":"8f44c0a2aa05b09-13f77e0833467c5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71573810000001,32.924052800000005]},"id":"8f44c0a2aa2eb12-139f3cffb3baafa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa2eb12-139f3cffb3baafa8","8f44c0a2aa05b09-13f77e0833467c5f"]},"geometry":{"type":"LineString","coordinates":[[-83.71531490000001,32.9241879],[-83.71573810000001,32.924052800000005]]},"id":"8a44c0a2aa2ffff-13d77d83fc3a7e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714301,32.924045500000005]},"id":"8f44c0a2aa0604e-139e7081ec6f6248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71458360000001,32.9235095]},"id":"8f44c0a2aa31b05-13df7fd149ae2b3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa31b05-13df7fd149ae2b3d","8f44c0a2aa0604e-139e7081ec6f6248"]},"geometry":{"type":"LineString","coordinates":[[-83.714301,32.924045500000005],[-83.71458360000001,32.9235095]]},"id":"8944c0a2aa3ffff-13f6f029976b8e54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71420690000001,32.9238303]},"id":"8f44c0a2aa06d5e-1397f0bcba77dabd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7143544,32.9235139]},"id":"8f44c0a2aa311a9-13de706083a8ec65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa311a9-13de706083a8ec65","8f44c0a2aa06d5e-1397f0bcba77dabd"]},"geometry":{"type":"LineString","coordinates":[[-83.71420690000001,32.9238303],[-83.7143544,32.9235139]]},"id":"8944c0a2aa3ffff-13bf508e944bf4ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163139,32.9284959]},"id":"8f44c0a2bdb5af3-17f7fb97d4891386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163881,32.9290174]},"id":"8f44c0a2bd84d45-17bffb69746ddfaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd84d45-17bffb69746ddfaf","8f44c0a2bdb5af3-17f7fb97d4891386"]},"geometry":{"type":"LineString","coordinates":[[-83.7163139,32.9284959],[-83.7164075,32.928593400000004],[-83.7163881,32.9290174]]},"id":"8944c0a2bdbffff-17963b690599f62d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71629010000001,32.9296494]},"id":"8f44c0a2bd80009-17d6fba6be4fa50a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163525,32.9292621]},"id":"8f44c0a2bd840d3-17d6fb7fbc1b688e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd840d3-17d6fb7fbc1b688e","8f44c0a2bd80009-17d6fba6be4fa50a"]},"geometry":{"type":"LineString","coordinates":[[-83.71629010000001,32.9296494],[-83.716333,32.929572],[-83.7163525,32.9292621]]},"id":"8a44c0a2bd87fff-17d6bb8a2790d4a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71586620000001,32.929942000000004]},"id":"8f44c0a2bd822c5-13fffcafa2ffc3f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715745,32.9312119]},"id":"8f44c0a2bca6c74-13977cfb6055f64f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd822c5-13fffcafa2ffc3f9","8f44c0a2bca6c74-13977cfb6055f64f"]},"geometry":{"type":"LineString","coordinates":[[-83.71586620000001,32.929942000000004],[-83.715745,32.9312119]]},"id":"8844c0a2bdfffff-139ebcd58a0cabb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160463,32.9299604]},"id":"8f44c0a2bd83cc0-139f7c3f1823682b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7159597,32.931345400000005]},"id":"8f44c0a2bca6a32-13fefc7530fc1a18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bca6a32-13fefc7530fc1a18","8f44c0a2bd83cc0-139f7c3f1823682b"]},"geometry":{"type":"LineString","coordinates":[[-83.7160463,32.9299604],[-83.7159597,32.931345400000005]]},"id":"8844c0a2bdfffff-13be3c5a2b8bfe96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7155711,32.9310945]},"id":"8f44c0a2bd9bad6-13de3d681457137b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71566650000001,32.9299301]},"id":"8f44c0a2bd826c2-13f67d2c7d290c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd826c2-13f67d2c7d290c07","8f44c0a2bd9bad6-13de3d681457137b"]},"geometry":{"type":"LineString","coordinates":[[-83.7155711,32.9310945],[-83.71566650000001,32.9299301]]},"id":"8844c0a2bdfffff-13f63d4a45667367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7153431,32.930910600000004]},"id":"8f44c0a2bd9bce0-13df3df69f8de9d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154283,32.929915900000005]},"id":"8f44c0a2bd91323-13ff7dc15141581d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd91323-13ff7dc15141581d","8f44c0a2bd9bce0-13df3df69f8de9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7153431,32.930910600000004],[-83.7154283,32.929915900000005]]},"id":"8944c0a2bdbffff-13b67ddbf64af2ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71515600000001,32.9307206]},"id":"8f44c0a2bd9aa96-13f67e6b83acb476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152061,32.9299175]},"id":"8f44c0a2bd91711-13fe7e4c3efc140d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd91711-13fe7e4c3efc140d","8f44c0a2bd9aa96-13f67e6b83acb476"]},"geometry":{"type":"LineString","coordinates":[[-83.71515600000001,32.9307206],[-83.7152061,32.9299175]]},"id":"8944c0a2bdbffff-13ff7e5bdf246b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7272451,32.9284582]},"id":"8f44c0a2864d4cb-17de60e7d9271aa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7283522,32.9293272]},"id":"8f44c0a2b906421-17ff9e33e6f75eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b906421-17ff9e33e6f75eec","8f44c0a2864d4cb-17de60e7d9271aa5"]},"geometry":{"type":"LineString","coordinates":[[-83.7272451,32.9284582],[-83.7273967,32.9284841],[-83.72752460000001,32.9285094],[-83.7277766,32.9287493],[-83.7279158,32.9289167],[-83.7283522,32.9293272]]},"id":"8844c0a2b9fffff-17dfdf7ba002bbe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7265158,32.9305199]},"id":"8f44c0a2b9aa959-13f6f2afaa981f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7257561,32.929914000000004]},"id":"8f44c0a2b9848ed-13fe648a75135bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9aa959-13f6f2afaa981f25","8f44c0a2b9848ed-13fe648a75135bea"]},"geometry":{"type":"LineString","coordinates":[[-83.7265158,32.9305199],[-83.7257561,32.929914000000004]]},"id":"8944c0a2b9bffff-13bfb39d1b2f2ad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72674640000001,32.9303219]},"id":"8f44c0a2b9a8d10-13ff321f8f9e7739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72601300000001,32.9296972]},"id":"8f44c0a2b9a3da9-17f6e3e9e8437e8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a3da9-17f6e3e9e8437e8a","8f44c0a2b9a8d10-13ff321f8f9e7739"]},"geometry":{"type":"LineString","coordinates":[[-83.72674640000001,32.9303219],[-83.72601300000001,32.9296972]]},"id":"8944c0a2b9bffff-13be2304b903a551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7268894,32.9301989]},"id":"8f44c0a2b9ac70c-139e71c62af4ad92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72614250000001,32.9295879]},"id":"8f44c0a2b9a0605-17b67398f4d97e94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ac70c-139e71c62af4ad92","8f44c0a2b9a0605-17b67398f4d97e94"]},"geometry":{"type":"LineString","coordinates":[[-83.7268894,32.9301989],[-83.72614250000001,32.9295879]]},"id":"8944c0a2b9bffff-13df62af8a36f54a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270325,32.930075800000004]},"id":"8f44c0a2b9ac162-13d7616cb30b5be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72628130000001,32.929470800000004]},"id":"8f44c0a2b9a0074-17d7634235b469f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ac162-13d7616cb30b5be8","8f44c0a2b9a0074-17d7634235b469f6"]},"geometry":{"type":"LineString","coordinates":[[-83.7270325,32.930075800000004],[-83.72628130000001,32.929470800000004]]},"id":"8944c0a2b9bffff-139672577fbd40f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7271738,32.9299544]},"id":"8f44c0a2b91359e-1397a114618785ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7264351,32.929341]},"id":"8f44c0a2b9a5494-179622e210fd52a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a5494-179622e210fd52a7","8f44c0a2b91359e-1397a114618785ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7271738,32.9299544],[-83.7264351,32.929341]]},"id":"8844c0a2b9fffff-17d7f1fb4202e2d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7273074,32.9298395]},"id":"8f44c0a2b913ca5-13bfb0c0e4362cec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7265758,32.9292223]},"id":"8f44c0a2b9a5c8c-17bff28a24e66b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a5c8c-17bff28a24e66b93","8f44c0a2b913ca5-13bfb0c0e4362cec"]},"geometry":{"type":"LineString","coordinates":[[-83.7273074,32.9298395],[-83.7265758,32.9292223]]},"id":"8844c0a2b9fffff-17fef1a58d9e33b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72744490000001,32.929721300000004]},"id":"8f44c0a2b91061c-17f7f06af640f7a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7267108,32.9291083]},"id":"8f44c0a2864b6c6-17f6b235c4d81fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2864b6c6-17f6b235c4d81fe0","8f44c0a2b91061c-17f7f06af640f7a1"]},"geometry":{"type":"LineString","coordinates":[[-83.72744490000001,32.929721300000004],[-83.7267108,32.9291083]]},"id":"8844c0a2b9fffff-17b661506c7aca5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7275786,32.9296063]},"id":"8f44c0a2b910056-17bff017699df8ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72684410000001,32.928995900000004]},"id":"8f44c0a2864b0cd-17be71e277e8ee50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2864b0cd-17be71e277e8ee50","8f44c0a2b910056-17bff017699df8ef"]},"geometry":{"type":"LineString","coordinates":[[-83.7275786,32.9296063],[-83.72684410000001,32.928995900000004]]},"id":"8844c0a2b9fffff-17ff30fcfdb00c95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7278094,32.929587000000005]},"id":"8f44c0a2b910b5d-179fff872aa761e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b910b5d-179fff872aa761e1","8f44c0a2b9a8d10-13ff321f8f9e7739"]},"geometry":{"type":"LineString","coordinates":[[-83.7278094,32.929587000000005],[-83.7270943,32.930194300000004],[-83.726855,32.930397500000005],[-83.72674640000001,32.9303219]]},"id":"8844c0a2b9fffff-13b720d127723ad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72738650000001,32.9304192]},"id":"8f44c0a2b9ad140-13be208f7914af9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72809550000001,32.929823500000005]},"id":"8f44c0a2b91184d-13b7bed4591491d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ad140-13be208f7914af9a","8f44c0a2b91184d-13b7bed4591491d9"]},"geometry":{"type":"LineString","coordinates":[[-83.72738650000001,32.9304192],[-83.72809550000001,32.929823500000005]]},"id":"8944c0a2b93ffff-13ffffb1eb6a0cab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7272413,32.9303073]},"id":"8f44c0a2b9adc0b-13f630ea3346314c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7279458,32.9296998]},"id":"8f44c0a2b911994-17f67f31ea7b879d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9adc0b-13f630ea3346314c","8f44c0a2b911994-17f67f31ea7b879d"]},"geometry":{"type":"LineString","coordinates":[[-83.7272413,32.9303073],[-83.7279458,32.9296998]]},"id":"8844c0a2b9fffff-13b6600e1bbae177"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72712680000001,32.928740600000005]},"id":"8f44c0a28649511-179ee131c5f07985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7263284,32.9284431]},"id":"8f44c0a2864ac84-17d6f324cd46cd8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28649511-179ee131c5f07985","8f44c0a2864ac84-17d6f324cd46cd8c"]},"geometry":{"type":"LineString","coordinates":[[-83.72712680000001,32.928740600000005],[-83.7267647,32.9284431],[-83.7263284,32.9284431]]},"id":"8a44c0a2864ffff-1797321b315c6a77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6301287,32.8389484]},"id":"8f44c0a344a92e3-13d7ce019688d634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6300389,32.839050400000005]},"id":"8f44c0a344f680e-13978e39b871285a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a92e3-13d7ce019688d634","8f44c0a344f680e-13978e39b871285a"]},"geometry":{"type":"LineString","coordinates":[[-83.6301287,32.8389484],[-83.6300867,32.838996200000004],[-83.6300389,32.839050400000005]]},"id":"8a44c0a344f7fff-13f7ae1daf1f0006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6297669,32.8384275]},"id":"8f44c0a344a814b-13973ee3bf1d5aad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62986070000001,32.838743900000004]},"id":"8f44c0a344a940a-13d7fea910c1f808"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a814b-13973ee3bf1d5aad","8f44c0a344a940a-13d7fea910c1f808"]},"geometry":{"type":"LineString","coordinates":[[-83.6297669,32.8384275],[-83.62984110000001,32.8384702],[-83.6300064,32.8385654],[-83.62986070000001,32.838743900000004]]},"id":"8a44c0a344affff-13ff4e8b8fb07929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6311565,32.8388949]},"id":"8f44c0a344194c6-13b75b7f3335280d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63151810000001,32.839108100000004]},"id":"8f44c0a344e45ac-13bf9a9d32296d69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344194c6-13b75b7f3335280d","8f44c0a344e45ac-13bf9a9d32296d69"]},"geometry":{"type":"LineString","coordinates":[[-83.6311565,32.8388949],[-83.63147120000001,32.8390804],[-83.63151810000001,32.839108100000004]]},"id":"8944c0a3443ffff-13f7fb0e3db8e0e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6309861,32.8391048]},"id":"8f44c0a3441b223-13bf8be9b8fdff0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631338,32.839319200000006]},"id":"8f44c0a344e6a90-13bf8b0dcfd7186f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344e6a90-13bf8b0dcfd7186f","8f44c0a3441b223-13bf8be9b8fdff0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6309861,32.8391048],[-83.6312925,32.8392915],[-83.631338,32.839319200000006]]},"id":"8944c0a344fffff-13ff8b7bcfabc029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63178160000001,32.8387942]},"id":"8f44c0a3440a724-13f769f882c19c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6315106,32.838999300000005]},"id":"8f44c0a34419342-13f79aa1e0fa6ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34419342-13f79aa1e0fa6ba2","8f44c0a3440a724-13f769f882c19c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.63178160000001,32.8387942],[-83.6317496,32.838791400000005],[-83.6317204,32.838791400000005],[-83.6316942,32.8387959],[-83.6316726,32.838810800000005],[-83.6315106,32.838999300000005]]},"id":"8944c0a3443ffff-13b70a54f0351574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538138,32.81892]},"id":"8f44c0b8312da91-13f7ee97c4e80f4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b838d8336-139fec9749d17a20","8f44c0b8312da91-13f7ee97c4e80f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.538138,32.81892],[-83.53856300000001,32.819029],[-83.53875500000001,32.819163],[-83.538797,32.819184],[-83.53895800000001,32.81917]]},"id":"8944c0b838fffff-13d7fd95324fd006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6135957,32.864616500000004]},"id":"8f44c0a3215e41d-1397765ebbedd3bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6135235,32.864851800000004]},"id":"8f44c0a3215ad82-1397768bd002118c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3215e41d-1397765ebbedd3bf","8f44c0a3215ad82-1397768bd002118c"]},"geometry":{"type":"LineString","coordinates":[[-83.6135957,32.864616500000004],[-83.613539,32.864753400000005],[-83.6135235,32.864851800000004]]},"id":"8a44c0a3215ffff-13dfb6798aeadebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6135608,32.8648583]},"id":"8f44c0a3215adab-139f76748df0af1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130861,32.865579600000004]},"id":"8f44c0a3207602e-13df779d318bed7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3207602e-13df779d318bed7e","8f44c0a3215adab-139f76748df0af1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6135608,32.8648583],[-83.6135393,32.8650004],[-83.6135186,32.865138900000005],[-83.613417,32.865303700000005],[-83.6132604,32.8654078],[-83.6131503,32.865487200000004],[-83.6130861,32.865579600000004]]},"id":"8844c0a321fffff-139f76e49855c6d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61323010000001,32.864845100000004]},"id":"8f44c0a3202d621-13973743374f5327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3215ad82-1397768bd002118c","8f44c0a3202d621-13973743374f5327"]},"geometry":{"type":"LineString","coordinates":[[-83.6135235,32.864851800000004],[-83.61323010000001,32.864845100000004]]},"id":"8b44c0a3202dfff-139776e783bb23ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6322303,32.8444643]},"id":"8f44c0a346b4adc-17df38e01e5fc6ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6320036,32.8440913]},"id":"8f44c0a3479a695-17f7196dc0d9580d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3479a695-17f7196dc0d9580d","8f44c0a346b4adc-17df38e01e5fc6ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6322303,32.8444643],[-83.6323631,32.844301],[-83.6320036,32.8440913]]},"id":"8844c0a347fffff-17dfc8e5af3ffe94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6324084,32.843894500000005]},"id":"8f44c0a3479ab05-17ff1870c8fcf640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63260460000001,32.843650000000004]},"id":"8f44c0a34798c24-17d747f628e59e82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3479ab05-17ff1870c8fcf640","8f44c0a34798c24-17d747f628e59e82"]},"geometry":{"type":"LineString","coordinates":[[-83.6324084,32.843894500000005],[-83.63260460000001,32.843650000000004]]},"id":"8a44c0a3479ffff-179fb833776e6ec7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6344456,32.845720400000005]},"id":"8f44c0a346ad918-13df437780d3298f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6341538,32.8455408]},"id":"8f44c0a346acbad-13ff042de5c11fa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346ad918-13df437780d3298f","8f44c0a346acbad-13ff042de5c11fa4"]},"geometry":{"type":"LineString","coordinates":[[-83.6344456,32.845720400000005],[-83.6341538,32.8455408]]},"id":"8a44c0a346affff-13b723d2bea41ca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63484580000001,32.8455092]},"id":"8f44c0a34611601-13df427d6b278271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63472750000001,32.845421200000004]},"id":"8f44c0a346114dc-13b742c75b2a51fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34611601-13df427d6b278271","8f44c0a346114dc-13b742c75b2a51fe"]},"geometry":{"type":"LineString","coordinates":[[-83.63484580000001,32.8455092],[-83.63472750000001,32.845421200000004]]},"id":"8b44c0a34611fff-13bfc2a251b69b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887473,32.8580419]},"id":"8f44c0a26275271-13f67ee4fefde51a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6888862,32.8587209]},"id":"8f44c0a26244380-139efe8e2e4c4948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26244380-139efe8e2e4c4948","8f44c0a26275271-13f67ee4fefde51a"]},"geometry":{"type":"LineString","coordinates":[[-83.6887473,32.8580419],[-83.68920680000001,32.8582726],[-83.6888862,32.8587209]]},"id":"8944c0a2627ffff-13be7e3eebb853b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886503,32.8579935]},"id":"8f44c0a2627538b-13d7ff21952e2a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688315,32.8584734]},"id":"8f44c0a26246d24-1397fff327df5794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2627538b-13d7ff21952e2a37","8f44c0a26246d24-1397fff327df5794"]},"geometry":{"type":"LineString","coordinates":[[-83.6886503,32.8579935],[-83.688315,32.8584734]]},"id":"8a44c0a26277fff-13ffff8a6a6631c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890475,32.8576301]},"id":"8f44c0a26266c46-17f6fe2953422aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68934250000001,32.857777]},"id":"8f44c0a26266b59-13defd70f0aabe1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26266c46-17f6fe2953422aaa","8f44c0a26266b59-13defd70f0aabe1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6890475,32.8576301],[-83.68934250000001,32.857777]]},"id":"8b44c0a26266fff-13b6fdcd262f3f33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881673,32.8571308]},"id":"8f44c0a2635a4c4-17bec04f70aa5393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889269,32.8575412]},"id":"8f44c0a26266d90-17bf7e74bb671f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26266d90-17bf7e74bb671f24","8f44c0a2635a4c4-17bec04f70aa5393"]},"geometry":{"type":"LineString","coordinates":[[-83.6881673,32.8571308],[-83.6889269,32.8575412]]},"id":"8844c0a263fffff-17bf7f621f973b78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5580094,32.815636500000004]},"id":"8f44c0b81030495-13fffe1423fb20cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55989650000001,32.815021]},"id":"8f44c0b8110a38d-17ffb978bb86115a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81030495-13fffe1423fb20cf","8f44c0b8110a38d-17ffb978bb86115a"]},"geometry":{"type":"LineString","coordinates":[[-83.5580094,32.815636500000004],[-83.5586069,32.815835],[-83.5587976,32.8158425],[-83.5589379,32.815806900000005],[-83.55956640000001,32.8154419],[-83.55989650000001,32.815021]]},"id":"8844c0b811fffff-13d7bb975c27e7ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55795350000001,32.8158377]},"id":"8f44c0b81032adc-13ffbe3711fe574d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55808420000001,32.8163344]},"id":"8f44c0b81015983-13b7bde56df6004b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81015983-13b7bde56df6004b","8f44c0b81032adc-13ffbe3711fe574d"]},"geometry":{"type":"LineString","coordinates":[[-83.55795350000001,32.8158377],[-83.5579048,32.8161119],[-83.5579412,32.816242200000005],[-83.55808420000001,32.8163344]]},"id":"8944c0b8103ffff-1397be37fcbb53ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55889300000001,32.815627500000005]},"id":"8f44c0b8103532d-13f7bbebe95af069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55815290000001,32.815338600000004]},"id":"8f44c0b81036b5a-13b7bdba77b470ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036b5a-13b7bdba77b470ee","8f44c0b8103532d-13f7bbebe95af069"]},"geometry":{"type":"LineString","coordinates":[[-83.55889300000001,32.815627500000005],[-83.55815290000001,32.815338600000004]]},"id":"8a44c0b81037fff-139ffcd3232a32f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5589875,32.815448700000005]},"id":"8f44c0b8102648e-13f7fbb0d39df3e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5582352,32.8151705]},"id":"8f44c0b81034425-13dfbd87059b1296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81034425-13dfbd87059b1296","8f44c0b8102648e-13f7fbb0d39df3e2"]},"geometry":{"type":"LineString","coordinates":[[-83.5589875,32.815448700000005],[-83.5582352,32.8151705]]},"id":"8944c0b8103ffff-13b7bc9bebe5d025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55702310000001,32.814704]},"id":"8f44c0b811aa4ee-17b7c07c95f9593e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b811aa4ee-17b7c07c95f9593e","8f44c0b81034425-13dfbd87059b1296"]},"geometry":{"type":"LineString","coordinates":[[-83.5582352,32.8151705],[-83.55702310000001,32.814704]]},"id":"8844c0b811fffff-17b7ff01dec70815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55693380000001,32.8148722]},"id":"8f44c0b8118cdb0-179fe0b46b45a04f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036b5a-13b7bdba77b470ee","8f44c0b8118cdb0-179fe0b46b45a04f"]},"geometry":{"type":"LineString","coordinates":[[-83.55815290000001,32.815338600000004],[-83.55693380000001,32.8148722]]},"id":"8844c0b811fffff-13b7ff3772a631ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55736970000001,32.8152081]},"id":"8f44c0b8118dd00-13f7bfa3f46555c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5568509,32.8150283]},"id":"8f44c0b8118c585-17f7f0e835c72635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8118dd00-13f7bfa3f46555c0","8f44c0b8118c585-17f7f0e835c72635"]},"geometry":{"type":"LineString","coordinates":[[-83.55736970000001,32.8152081],[-83.5568509,32.8150283]]},"id":"8a44c0b8118ffff-13bfe0461cfa8b14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81015983-13b7bde56df6004b","8f44c0b81032adc-13ffbe3711fe574d"]},"geometry":{"type":"LineString","coordinates":[[-83.55808420000001,32.8163344],[-83.5581082,32.8162089],[-83.5580549,32.8160557],[-83.55795350000001,32.8158377]]},"id":"8944c0b8103ffff-1397bdfac105a774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5581537,32.8164709]},"id":"8f44c0b81015b95-13f7fdb9f2c6e4c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81015b95-13f7fdb9f2c6e4c9","8f44c0b81015983-13b7bde56df6004b"]},"geometry":{"type":"LineString","coordinates":[[-83.5581537,32.8164709],[-83.55808420000001,32.8163344]]},"id":"8b44c0b81015fff-13dfbdcfa51a9d86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63469210000001,32.8401099]},"id":"8f44c0a344418ce-17bfb2dd7c44b8df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6347104,32.8399683]},"id":"8f44c0a34441902-17d732d20ba0be50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344418ce-17bfb2dd7c44b8df","8f44c0a34441902-17d732d20ba0be50"]},"geometry":{"type":"LineString","coordinates":[[-83.63469210000001,32.8401099],[-83.63564000000001,32.840162500000005],[-83.6356588,32.840009300000006],[-83.6356105,32.8399755],[-83.6349534,32.839925900000004],[-83.6347104,32.8399683]]},"id":"8944c0a3447ffff-179731982f006220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635565,32.840922]},"id":"8f44c0a34732da5-17bf40bbe8b9e393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6356427,32.8402977]},"id":"8f44c0a34469498-17b7108b5d9cfb1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34732da5-17bf40bbe8b9e393","8f44c0a34469498-17b7108b5d9cfb1b"]},"geometry":{"type":"LineString","coordinates":[[-83.635565,32.840922],[-83.6356427,32.8402977]]},"id":"8744c0a34ffffff-17f730a3aba11fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6646893,32.8297954]},"id":"8f44c0b1b1064b5-13feb9a138cf8f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6641204,32.8300001]},"id":"8f44c0b1b110b86-17febb04c9fa1010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b110b86-17febb04c9fa1010","8f44c0b1b1064b5-13feb9a138cf8f11"]},"geometry":{"type":"LineString","coordinates":[[-83.6646893,32.8297954],[-83.66413580000001,32.829805400000005],[-83.6641204,32.8300001]]},"id":"8944c0b1b13ffff-1797fa7c8c01ba7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639596,32.829495200000004]},"id":"8f44c0b1b114524-13d6bb69400aff76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6641307,32.829128700000005]},"id":"8f44c0b1b132561-13dffafe550b1893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b114524-13d6bb69400aff76","8f44c0b1b132561-13dffafe550b1893"]},"geometry":{"type":"LineString","coordinates":[[-83.6639596,32.829495200000004],[-83.6641341,32.8294924],[-83.6641307,32.829128700000005]]},"id":"8944c0b1b13ffff-13f6fb0e96dd9302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664682,32.8292487]},"id":"8f44c0b1b130668-13bef9a5c2f151b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66468710000001,32.829406]},"id":"8f44c0b1b1338e3-139ef9a292a3b83a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1338e3-139ef9a292a3b83a","8f44c0b1b130668-13bef9a5c2f151b0"]},"geometry":{"type":"LineString","coordinates":[[-83.664682,32.8292487],[-83.66462800000001,32.8292955],[-83.66462800000001,32.8293144],[-83.66462630000001,32.8293589],[-83.66462800000001,32.8293805],[-83.66468710000001,32.829406]]},"id":"8a44c0b1b137fff-13dfb9bcdf80349a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66133760000001,32.827268100000005]},"id":"8f44c0b1bc5459e-17d6d1d00275830b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6619869,32.827117300000005]},"id":"8f44c0b1bc73cc5-17f6d03a31088f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc73cc5-17f6d03a31088f31","8f44c0b1bc5459e-17d6d1d00275830b"]},"geometry":{"type":"LineString","coordinates":[[-83.66133760000001,32.827268100000005],[-83.66197980000001,32.827265700000005],[-83.6619869,32.827117300000005]]},"id":"8944c0b1bc7ffff-17def0e13416cf40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6638559,32.8153263]},"id":"8f44c0b187a5535-13befbaa1ed1e2e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640402,32.8153293]},"id":"8f44c0b187a589b-13befb36e5ef7412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a589b-13befb36e5ef7412","8f44c0b187a5535-13befbaa1ed1e2e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6638559,32.8153263],[-83.6640402,32.8153293]]},"id":"8b44c0b187a5fff-13bffb708a958a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663793,32.8147564]},"id":"8f44c0b1844a0c9-17d6fbd16c4dec4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639969,32.814705000000004]},"id":"8f44c0b1844aa0d-17b6bb51fe64b74e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844aa0d-17b6bb51fe64b74e","8f44c0b1844a0c9-17d6fbd16c4dec4d"]},"geometry":{"type":"LineString","coordinates":[[-83.663793,32.8147564],[-83.66357430000001,32.814751900000005],[-83.66357400000001,32.815004800000004],[-83.6638564,32.8150654],[-83.66394860000001,32.815066800000004],[-83.66398000000001,32.8150424],[-83.663981,32.815006100000005],[-83.6639969,32.814705000000004]]},"id":"8944c0b1847ffff-17b7fbdb098554a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66379020000001,32.8149505]},"id":"8f44c0b187a4821-17d6bbd3222608af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a4821-17d6bbd3222608af","8f44c0b1844a0c9-17d6fbd16c4dec4d"]},"geometry":{"type":"LineString","coordinates":[[-83.663793,32.8147564],[-83.66379020000001,32.8149505]]},"id":"8a44c0b1844ffff-1797fbd241d217fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663402,32.8151722]},"id":"8f44c0b187a6b0e-13debcc5cd370075"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66341080000001,32.814687]},"id":"8f44c0b184598e3-179ffcc04f7581ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184598e3-179ffcc04f7581ca","8f44c0b187a6b0e-13debcc5cd370075"]},"geometry":{"type":"LineString","coordinates":[[-83.663402,32.8151722],[-83.66341080000001,32.814687]]},"id":"8744c0b18ffffff-17b7bcc309f89a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66314480000001,32.815168]},"id":"8f44c0b187a6181-13debd66892fdf00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184598e3-179ffcc04f7581ca","8f44c0b187a6181-13debd66892fdf00"]},"geometry":{"type":"LineString","coordinates":[[-83.66341080000001,32.814687],[-83.66315130000001,32.8146842],[-83.66314480000001,32.815168]]},"id":"8744c0b18ffffff-17fefd47771edb79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662839,32.8151614]},"id":"8f44c0b187b5821-13d7fe25a961bb2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187b5821-13d7fe25a961bb2f","8f44c0b187a6181-13debd66892fdf00"]},"geometry":{"type":"LineString","coordinates":[[-83.662839,32.8151614],[-83.66314480000001,32.815168]]},"id":"8944c0b187bffff-13d7fdc6159b278b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636041,32.8161331]},"id":"8f44c0b187a3349-13b7bc47779aadf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639988,32.8161411]},"id":"8f44c0b187ac59a-13bebb50cd078433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187ac59a-13bebb50cd078433","8f44c0b187a3349-13b7bc47779aadf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6636041,32.8161331],[-83.6639988,32.8161411]]},"id":"8944c0b187bffff-13b7bbcc177bffb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66389450000001,32.814702600000004]},"id":"8f44c0b1844aa91-17b7bb91f92db369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844a0c9-17d6fbd16c4dec4d","8f44c0b1844aa91-17b7bb91f92db369"]},"geometry":{"type":"LineString","coordinates":[[-83.66389450000001,32.814702600000004],[-83.663793,32.8147564]]},"id":"8b44c0b1844afff-17b7fbb1a0f62a54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69856820000001,32.806267600000005]},"id":"8f44c0b1d168396-139f66eae7978d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970414,32.8057588]},"id":"8f44c0b1d146aa8-13df6aa52864ad9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d168396-139f66eae7978d65","8f44c0b1d146aa8-13df6aa52864ad9a"]},"geometry":{"type":"LineString","coordinates":[[-83.69856820000001,32.806267600000005],[-83.69822140000001,32.8062577],[-83.69811030000001,32.806237100000004],[-83.6979821,32.8061889],[-83.69786710000001,32.8061184],[-83.6974811,32.80585],[-83.6974081,32.805817600000005],[-83.6970414,32.8057588]]},"id":"8944c0b1d17ffff-139678cc2415d00c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63683010000001,32.8463342]},"id":"8f44c0a3460d6d3-17defda532adabde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63657500000001,32.846874]},"id":"8f44c0a34656c9d-17b6fe44a4850da4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34656c9d-17b6fe44a4850da4","8f44c0a3460d6d3-17defda532adabde"]},"geometry":{"type":"LineString","coordinates":[[-83.63683010000001,32.8463342],[-83.63657500000001,32.846874]]},"id":"8844c0a347fffff-1797fdf4ee8077f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6399418,32.8366307]},"id":"8f44c0a341a979a-17bef60c67ac2312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63975230000001,32.836266800000004]},"id":"8f44c0a341a80ce-13def682dbfcde39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341a979a-17bef60c67ac2312","8f44c0a341a80ce-13def682dbfcde39"]},"geometry":{"type":"LineString","coordinates":[[-83.6399418,32.8366307],[-83.64005780000001,32.8363588],[-83.63975230000001,32.836266800000004]]},"id":"8a44c0a341affff-179ef606e72671bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63871850000001,32.8363764]},"id":"8f44c0a34181569-179ff908f0b4038e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63953400000001,32.8360055]},"id":"8f44c0a341ae350-13b7f70b49840141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34181569-179ff908f0b4038e","8f44c0a341ae350-13b7f70b49840141"]},"geometry":{"type":"LineString","coordinates":[[-83.63871850000001,32.8363764],[-83.63929350000001,32.8365604],[-83.63953400000001,32.8360055]]},"id":"8944c0a341bffff-179ef7d5bfd92c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63762390000001,32.8363831]},"id":"8f44c0a3419132d-1797fbb519eedc6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637895,32.8360579]},"id":"8f44c0a34182c09-13defb0ba21d95f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419132d-1797fbb519eedc6b","8f44c0a34182c09-13defb0ba21d95f5"]},"geometry":{"type":"LineString","coordinates":[[-83.63762390000001,32.8363831],[-83.637895,32.8360579]]},"id":"8944c0a341bffff-13bffb60690898d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63723750000001,32.8366041]},"id":"8f44c0a3419ecf2-179ffca69c994c94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6365715,32.8360927]},"id":"8f44c0a34192083-13dffe46d57df588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419ecf2-179ffca69c994c94","8f44c0a34192083-13dffe46d57df588"]},"geometry":{"type":"LineString","coordinates":[[-83.63723750000001,32.8366041],[-83.63730310000001,32.8365294],[-83.6365715,32.8360927]]},"id":"8844c0a341fffff-13f7fd4c7d8163ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6371489,32.836058300000005]},"id":"8f44c0a341903b3-13defcddf7c347fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63676500000001,32.8358225]},"id":"8f44c0a3419629e-13b7fdcdefe85726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341903b3-13defcddf7c347fb","8f44c0a3419629e-13b7fdcdefe85726"]},"geometry":{"type":"LineString","coordinates":[[-83.6371489,32.836058300000005],[-83.6372673,32.835911100000004],[-83.6370048,32.8357534],[-83.6368582,32.835717100000004],[-83.63676500000001,32.8358225]]},"id":"8a44c0a34197fff-13bffd17f5b5acbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63725430000001,32.836123]},"id":"8f44c0a3419035a-13f6fc9c1d7102e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63738950000001,32.8359466]},"id":"8f44c0a34190b62-1396fc479225c962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34190b62-1396fc479225c962","8f44c0a3419035a-13f6fc9c1d7102e5"]},"geometry":{"type":"LineString","coordinates":[[-83.63725430000001,32.836123],[-83.63738950000001,32.8359466]]},"id":"8a44c0a34197fff-13bffc71d73c6f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63734600000001,32.836179300000005]},"id":"8f44c0a34191c8b-1396fc62c9688d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63750130000001,32.836002400000005]},"id":"8f44c0a34195603-13b7fc01be64d3e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34195603-13b7fc01be64d3e9","8f44c0a34191c8b-1396fc62c9688d36"]},"geometry":{"type":"LineString","coordinates":[[-83.63734600000001,32.836179300000005],[-83.63750130000001,32.836002400000005]]},"id":"8a44c0a34197fff-13defc323d76128a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63740580000001,32.8451694]},"id":"8f44c0a3462886c-1396fc3d698684c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63732680000001,32.8453429]},"id":"8f44c0a34628322-13f7fc6ec9c14752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3462886c-1396fc3d698684c6","8f44c0a34628322-13f7fc6ec9c14752"]},"geometry":{"type":"LineString","coordinates":[[-83.63740580000001,32.8451694],[-83.63732680000001,32.8453429]]},"id":"8b44c0a34628fff-13bffc5618ac4a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63052110000001,32.840285200000004]},"id":"8f44c0a344c60e4-179f4d0c5b3bcef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299049,32.8399275]},"id":"8f44c0a344f3480-17bfbe8d736abfc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344c60e4-179f4d0c5b3bcef1","8f44c0a344f3480-17bfbe8d736abfc0"]},"geometry":{"type":"LineString","coordinates":[[-83.63052110000001,32.840285200000004],[-83.6299049,32.8399275]]},"id":"8944c0a344fffff-17bf7dccefa6d2e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6448768,32.838504]},"id":"8f44c0a34148d74-13d7ea0004ec974a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446744,32.8383823]},"id":"8f44c0a3414eaa6-13f6fa7e88f9f324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3414eaa6-13f6fa7e88f9f324","8f44c0a34148d74-13d7ea0004ec974a"]},"geometry":{"type":"LineString","coordinates":[[-83.6448768,32.838504],[-83.6450717,32.838214400000005],[-83.645071,32.838192400000004],[-83.6450368,32.8381508],[-83.6449946,32.8381277],[-83.6449322,32.8381198],[-83.64488060000001,32.8381417],[-83.64479270000001,32.8382172],[-83.6446744,32.8383823]]},"id":"8a44c0a3414ffff-13bef9ecefc9c444"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6421681,32.8365327]},"id":"8f44c0a3410ab42-17f6f09cf0ebb29e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6421026,32.8366674]},"id":"8f44c0a3410a368-17d7f0c5e470c992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3410ab42-17f6f09cf0ebb29e","8f44c0a3410a368-17d7f0c5e470c992"]},"geometry":{"type":"LineString","coordinates":[[-83.6421681,32.8365327],[-83.64127500000001,32.836203600000005],[-83.6411865,32.836326400000004],[-83.6421026,32.8366674]]},"id":"8944c0a3413ffff-17bff1e0f1ba147c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627263,32.8394879]},"id":"8f44c0a3449a318-13b7f500a626ddd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6271177,32.839655900000004]},"id":"8f44c0a36b34816-1797f55b72e71bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449a318-13b7f500a626ddd6","8f44c0a36b34816-1797f55b72e71bf7"]},"geometry":{"type":"LineString","coordinates":[[-83.627263,32.8394879],[-83.6271914,32.8395707],[-83.6271177,32.839655900000004]]},"id":"8744c0a36ffffff-13df752e08d42e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6230893,32.838206]},"id":"8f44c0a3680b8eb-1397df313fdbb181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233029,32.8383356]},"id":"8f44c0a3680968c-13d7deabb1a9f9db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3680b8eb-1397df313fdbb181","8f44c0a3680968c-13d7deabb1a9f9db"]},"geometry":{"type":"LineString","coordinates":[[-83.6230893,32.838206],[-83.6233029,32.8383356]]},"id":"8a44c0a3680ffff-13bf5eee7a215c35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63402,32.8388761]},"id":"8f44c0a344756c8-13bf94818df54b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6335134,32.8386872]},"id":"8f44c0a34470cda-13b785be21dbc0ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344756c8-13bf94818df54b73","8f44c0a34470cda-13b785be21dbc0ff"]},"geometry":{"type":"LineString","coordinates":[[-83.63402,32.8388761],[-83.6336206,32.838637],[-83.6335827,32.8386346],[-83.63355510000001,32.8386402],[-83.63353430000001,32.8386553],[-83.6335134,32.8386872]]},"id":"8a44c0a34477fff-13d73521ccf1f59e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622753,32.835796]},"id":"8f44c0a36822134-13b7a0036269db1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36835362-13dff0844de25bcc","8f44c0a36822134-13b7a0036269db1e"]},"geometry":{"type":"LineString","coordinates":[[-83.622753,32.835796],[-83.62254680000001,32.835686100000004]]},"id":"8944c0a3683ffff-13973043d7a5536e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627589,32.8317762]},"id":"8f44c0ba92e428d-13d73434e68ddaf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62736310000001,32.8320732]},"id":"8f44c0ba92e0720-139fd4c21298eae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e0720-139fd4c21298eae2","8f44c0ba92e428d-13d73434e68ddaf6"]},"geometry":{"type":"LineString","coordinates":[[-83.627589,32.8317762],[-83.62736310000001,32.8320732]]},"id":"8a44c0ba92e7fff-13b7f47b74a75733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7271187,32.8317119]},"id":"8f44c0b0bd5a2f1-13bff136da77663a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7264794,32.8316759]},"id":"8f44c0b0bc29731-139772c66ea81cd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc29731-139772c66ea81cd3","8f44c0b0bd5a2f1-13bff136da77663a"]},"geometry":{"type":"LineString","coordinates":[[-83.7271187,32.8317119],[-83.7264794,32.8316759]]},"id":"8844c0b0bdfffff-13b6b1fe96a8aa46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72630410000001,32.8312814]},"id":"8f44c0b0bc28168-179ee333f951b20f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7262434,32.8322822]},"id":"8f44c0b0bc72d18-13966359e89c6146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc72d18-13966359e89c6146","8f44c0b0bc28168-179ee333f951b20f"]},"geometry":{"type":"LineString","coordinates":[[-83.72630410000001,32.8312814],[-83.7262434,32.8322822]]},"id":"8844c0b0bdfffff-13d7a346f5078de5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72742380000001,32.8316271]},"id":"8f44c0b0bd586c8-13f6f0782e3521b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72710090000001,32.8321898]},"id":"8f44c0b0bc75515-13d6a141f3053f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc75515-13d6a141f3053f44","8f44c0b0bd586c8-13f6f0782e3521b4"]},"geometry":{"type":"LineString","coordinates":[[-83.72742380000001,32.8316271],[-83.72739,32.831956500000004],[-83.7272894,32.8320512],[-83.7272774,32.8321841],[-83.72710090000001,32.8321898]]},"id":"8844c0b0bdfffff-13d630b635808169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7279427,32.8317792]},"id":"8f44c0b0bd59040-13d61f33dc96f096"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727846,32.8320354]},"id":"8f44c0b0bc6681e-13f63f704d593352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc6681e-13f63f704d593352","8f44c0b0bd59040-13d61f33dc96f096"]},"geometry":{"type":"LineString","coordinates":[[-83.7279427,32.8317792],[-83.727846,32.8320354]]},"id":"8844c0b0bdfffff-13b61f5210a78989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7280243,32.8328457]},"id":"8f44c0b0bc63131-13f69f00dc1ccbfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270855,32.8326312]},"id":"8f44c0b0bc71ccd-13fea14b9966609b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc71ccd-13fea14b9966609b","8f44c0b0bc63131-13f69f00dc1ccbfa"]},"geometry":{"type":"LineString","coordinates":[[-83.7280243,32.8328457],[-83.72734580000001,32.8328095],[-83.7270855,32.8326312]]},"id":"8944c0b0bc7ffff-13d62031e9a20be4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7283999,32.8324895]},"id":"8f44c0b0bc60b45-1397fe161b09685c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7283087,32.8331747]},"id":"8f44c0b0bc6e1b4-17be3e4f11916a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc6e1b4-17be3e4f11916a3b","8f44c0b0bc60b45-1397fe161b09685c"]},"geometry":{"type":"LineString","coordinates":[[-83.7283999,32.8324895],[-83.7282792,32.832778000000005],[-83.7283221,32.8329042],[-83.7283087,32.8331747]]},"id":"8944c0b0bc7ffff-13f61e46049c6d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73009610000001,32.832628500000006]},"id":"8f44c0b0b895363-13fed9f1f8eb7573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72940580000001,32.8327496]},"id":"8f44c0b0b890759-13b69ba168aa5866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b895363-13fed9f1f8eb7573","8f44c0b0b890759-13b69ba168aa5866"]},"geometry":{"type":"LineString","coordinates":[[-83.73009610000001,32.832628500000006],[-83.7295304,32.8324579],[-83.72940580000001,32.8327496]]},"id":"8a44c0b0b897fff-13d6daee14e32af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7275295,32.8312071]},"id":"8f44c0b0bd58d64-17f670361873884f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727508,32.830727100000004]},"id":"8f44c0b0bd51a5a-17d6704380340bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd58d64-17f670361873884f","8f44c0b0bd51a5a-17d6704380340bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.7275295,32.8312071],[-83.727508,32.830727100000004]]},"id":"8944c0b0bd7ffff-17de703cdea24d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7272774,32.830735000000004]},"id":"8f44c0b0bd510ca-17df60d3a26d0dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd510ca-17df60d3a26d0dc7","8f44c0b0bd51a5a-17d6704380340bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.727508,32.830727100000004],[-83.7272774,32.830735000000004]]},"id":"8b44c0b0bd51fff-17d6f08b90a38074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7277267,32.8312004]},"id":"8f44c0b0bd5c2ce-17fe5fbad1c65759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd58d64-17f670361873884f","8f44c0b0bd5c2ce-17fe5fbad1c65759"]},"geometry":{"type":"LineString","coordinates":[[-83.7275295,32.8312071],[-83.7277267,32.8312004]]},"id":"8a44c0b0bd5ffff-17fe5ff8751c3b40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72664970000001,32.830216]},"id":"8f44c0b0bd562c1-1797225bfca154f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72621360000001,32.8311214]},"id":"8f44c0b0bc28d6a-17bee36c8729fd09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd562c1-1797225bfca154f7","8f44c0b0bc28d6a-17bee36c8729fd09"]},"geometry":{"type":"LineString","coordinates":[[-83.72664970000001,32.830216],[-83.72666720000001,32.8308533],[-83.726521,32.8309626],[-83.7263051,32.830958100000004],[-83.72621360000001,32.8311214]]},"id":"8844c0b0bdfffff-17de629db383550e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6381006,32.825704900000005]},"id":"8f44c0b1a69d789-1397fa8b2294d02a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a69d789-1397fa8b2294d02a","8f44c0b1a69b904-1396fb60f7d379a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6381006,32.825704900000005],[-83.6379989,32.825749],[-83.63790270000001,32.825805],[-83.6378102,32.825870200000004],[-83.6377585,32.8259106]]},"id":"8a44c0b1a69ffff-13befaf95f2ea7d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6422933,32.8419851]},"id":"8f44c0a343b4973-13d6f04eb875312e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6421045,32.8421833]},"id":"8f44c0a343b40f6-13bef0c4bdeb5414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a343b4973-13d6f04eb875312e","8f44c0a343b40f6-13bef0c4bdeb5414"]},"geometry":{"type":"LineString","coordinates":[[-83.6422933,32.8419851],[-83.64222570000001,32.8420867],[-83.6421511,32.8421615],[-83.6421045,32.8421833]]},"id":"8b44c0a343b4fff-1397f083d808aab9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64069760000001,32.7416434]},"id":"8f44c0b147a1389-17d7f43400b5808e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63845040000001,32.741641200000004]},"id":"8f44c0b14794a92-17d7f9b086a3afd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147a1389-17d7f43400b5808e","8f44c0b14794a92-17d7f9b086a3afd9"]},"geometry":{"type":"LineString","coordinates":[[-83.64069760000001,32.7416434],[-83.63845040000001,32.741641200000004]]},"id":"8944c0b147bffff-17d6f6f2422bae20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6665413,32.7535298]},"id":"8f44c0b1502d8f6-13deb51bb8f947ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6658876,32.7523368]},"id":"8f44c0b1510b6ce-17f6b6b445f40503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1510b6ce-17f6b6b445f40503","8f44c0b1502d8f6-13deb51bb8f947ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6665413,32.7535298],[-83.6659224,32.7528178],[-83.66581690000001,32.752672600000004],[-83.66567420000001,32.7524164],[-83.6658876,32.7523368]]},"id":"8844c0b151fffff-13d7b65312f39421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6659745,32.752498700000004]},"id":"8f44c0b150258c8-17d7b67df63539dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1510b6ce-17f6b6b445f40503","8f44c0b150258c8-17d7b67df63539dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6659745,32.752498700000004],[-83.6658876,32.7523368]]},"id":"8b44c0b15025fff-1797b699122b5cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6269135,32.8516433]},"id":"8f44c0a30cb0052-13d715db14d5bda8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62644,32.8511643]},"id":"8f44c0a30cb6ce3-13bfb7030f657bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30cb0052-13d715db14d5bda8","8f44c0a30cb6ce3-13bfb7030f657bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.6269135,32.8516433],[-83.62644,32.8511643]]},"id":"8a44c0a30cb7fff-13bf766f1e2ba356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62675660000001,32.851739200000004]},"id":"8f44c0a30cb0612-1397163d2a595744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6262827,32.8512689]},"id":"8f44c0a30cb6480-13ff17655c4f0247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30cb0612-1397163d2a595744","8f44c0a30cb6480-13ff17655c4f0247"]},"geometry":{"type":"LineString","coordinates":[[-83.62675660000001,32.851739200000004],[-83.6262827,32.8512689]]},"id":"8a44c0a30cb7fff-13ff16d14da7643d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62745240000001,32.8504601]},"id":"8f44c0a30d98cb4-17f7948a46603f71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6265917,32.8498767]},"id":"8f44c0a30d922dc-1797f6a43ee7de37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30d98cb4-17f7948a46603f71","8f44c0a30d922dc-1797f6a43ee7de37"]},"geometry":{"type":"LineString","coordinates":[[-83.62745240000001,32.8504601],[-83.6270554,32.8501612],[-83.6265917,32.8498767]]},"id":"8844c0a30dfffff-17b7f592e5819cc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62695620000001,32.8494422]},"id":"8f44c0a30d90c53-13f775c06997def3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62742510000001,32.849839100000004]},"id":"8f44c0a30d91154-17ff749b56aed685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30d91154-17ff749b56aed685","8f44c0a30d90c53-13f775c06997def3"]},"geometry":{"type":"LineString","coordinates":[[-83.62695620000001,32.8494422],[-83.62742510000001,32.849839100000004]]},"id":"8a44c0a30d97fff-17f7752dd0ab5ef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233871,32.8469719]},"id":"8f44c0a36320961-17ff7e7712288e7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6220902,32.846963]},"id":"8f44c0a36330b22-17f7e1a1aafd9b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36320961-17ff7e7712288e7a","8f44c0a36330b22-17f7e1a1aafd9b4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6233871,32.8469719],[-83.6220902,32.846963]]},"id":"8944c0a3633ffff-17ffb00c63ae9826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233826,32.847135800000004]},"id":"8f44c0a36320a35-17d7fe79ec66cc41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6220935,32.847126700000004]},"id":"8f44c0a36331db5-17df319f97494794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36320a35-17d7fe79ec66cc41","8f44c0a36331db5-17df319f97494794"]},"geometry":{"type":"LineString","coordinates":[[-83.6233826,32.847135800000004],[-83.6220935,32.847126700000004]]},"id":"8944c0a3633ffff-17d7300cb6865085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62339150000001,32.846810600000005]},"id":"8f44c0a36324313-179fbe745e04f8f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62208700000001,32.846799100000005]},"id":"8f44c0a363342e1-179771a3a0894e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36324313-179fbe745e04f8f9","8f44c0a363342e1-179771a3a0894e73"]},"geometry":{"type":"LineString","coordinates":[[-83.62339150000001,32.846810600000005],[-83.62208700000001,32.846799100000005]]},"id":"8944c0a3633ffff-1797300bf3dd8bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62235170000001,32.8466783]},"id":"8f44c0a36a9b6f1-17b7f0fe30f8b4b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233952,32.8466755]},"id":"8f44c0a36324160-17b73e7206c0abc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a9b6f1-17b7f0fe30f8b4b1","8f44c0a36324160-17b73e7206c0abc7"]},"geometry":{"type":"LineString","coordinates":[[-83.62235170000001,32.8466783],[-83.6233952,32.8466755]]},"id":"8744c0a36ffffff-17b71fb81b13572d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62339990000001,32.8465002]},"id":"8f44c0a36324916-17d7be6f1b4f19d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6223478,32.846497400000004]},"id":"8f44c0a36a9b466-17d7e100a7ab991d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36324916-17d7be6f1b4f19d0","8f44c0a36a9b466-17d7e100a7ab991d"]},"geometry":{"type":"LineString","coordinates":[[-83.62339990000001,32.8465002],[-83.6223478,32.846497400000004]]},"id":"8844c0a36bfffff-17d7dfb7e1e6bf39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62340400000001,32.8463508]},"id":"8f44c0a36a8a0dc-17ff5e6c8e48aa70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6223444,32.8463391]},"id":"8f44c0a36a9bca1-17f7f102ca4f9d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a8a0dc-17ff5e6c8e48aa70","8f44c0a36a9bca1-17f7f102ca4f9d0b"]},"geometry":{"type":"LineString","coordinates":[[-83.62340400000001,32.8463508],[-83.6223444,32.8463391]]},"id":"8944c0a36abffff-17f7bfb7a1b70554"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62340950000001,32.8461578]},"id":"8f44c0a36a8ac63-13f7be691a82fbb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62234070000001,32.8461665]},"id":"8f44c0a36a9ab52-13f731051a190c9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a8ac63-13f7be691a82fbb7","8f44c0a36a9ab52-13f731051a190c9d"]},"geometry":{"type":"LineString","coordinates":[[-83.62340950000001,32.8461578],[-83.62234070000001,32.8461665]]},"id":"8944c0a36abffff-13f77fb71fb95fb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6234677,32.8460916]},"id":"8f44c0a36a8a995-13d75e44b87e7874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6223386,32.8460685]},"id":"8f44c0a36a98483-13bff1066733170a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a8a995-13d75e44b87e7874","8f44c0a36a98483-13bff1066733170a"]},"geometry":{"type":"LineString","coordinates":[[-83.6234677,32.8460916],[-83.6223386,32.8460685]]},"id":"8944c0a36abffff-13d71fa58a4b6f55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62338290000001,32.847475]},"id":"8f44c0a3632140d-17b7fe79b647922e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6221003,32.8474694]},"id":"8f44c0a3633178d-17b7619b5ffcb083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632140d-17b7fe79b647922e","8f44c0a3633178d-17b7619b5ffcb083"]},"geometry":{"type":"LineString","coordinates":[[-83.62338290000001,32.847475],[-83.6221003,32.8474694]]},"id":"8944c0a3633ffff-17b7200a8c20ee93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6170383,32.8403392]},"id":"8f44c0a3611012d-17bf2df71fad65ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6174295,32.8398759]},"id":"8f44c0a36133472-179f7d029cada3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36133472-179f7d029cada3db","8f44c0a3611012d-17bf2df71fad65ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6170383,32.8403392],[-83.6174295,32.8398759]]},"id":"8944c0a3613ffff-17bf6d7cdfdc209f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61640030000001,32.8401274]},"id":"8f44c0a361164d1-17b7af85dcc5796c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6166444,32.8398436]},"id":"8f44c0a36c496ee-17976eed492c11f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a361164d1-17b7af85dcc5796c","8f44c0a36c496ee-17976eed492c11f2"]},"geometry":{"type":"LineString","coordinates":[[-83.61640030000001,32.8401274],[-83.6166444,32.8398436]]},"id":"8944c0a3613ffff-17dfff3981580df1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6197377,32.837659900000006]},"id":"8f44c0a368aa59c-17b7775ffcadb632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200515,32.8373257]},"id":"8f44c0a368ae08b-17f7b69bd74aad13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368aa59c-17b7775ffcadb632","8f44c0a368ae08b-17f7b69bd74aad13"]},"geometry":{"type":"LineString","coordinates":[[-83.6197377,32.837659900000006],[-83.6200515,32.8373257]]},"id":"8944c0a368bffff-17df26fde0db8a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61956520000001,32.8375445]},"id":"8f44c0a36885674-17ff77cbc312ff94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61988050000001,32.837215900000004]},"id":"8f44c0a368ae585-179ff706be18882e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36885674-17ff77cbc312ff94","8f44c0a368ae585-179ff706be18882e"]},"geometry":{"type":"LineString","coordinates":[[-83.61956520000001,32.8375445],[-83.61988050000001,32.837215900000004]]},"id":"8944c0a368bffff-1797a7693c543a56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62326390000001,32.8323704]},"id":"8f44c0a36935d6d-13d79ec41ae1253c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6237054,32.832632100000005]},"id":"8f44c0a36922934-13ff1db025408186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36935d6d-13d79ec41ae1253c","8f44c0a36922934-13ff1db025408186"]},"geometry":{"type":"LineString","coordinates":[[-83.62326390000001,32.8323704],[-83.6237054,32.832632100000005]]},"id":"8944c0a3693ffff-139f5e3a161a5c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6188918,32.8283286]},"id":"8f44c0ba96206a2-13ff6970aead30f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177169,32.8292232]},"id":"8f44c0ba9602554-139fac4ef0b7f0ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96206a2-13ff6970aead30f4","8f44c0ba9602554-139fac4ef0b7f0ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6188918,32.8283286],[-83.6182203,32.829067900000005],[-83.6180679,32.8291533],[-83.6178831,32.8291339],[-83.6177169,32.8292232]]},"id":"8944c0ba963ffff-13b7aac4b42bfb81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61545890000001,32.8418492]},"id":"8f44c0a3618c5ad-13fff1d23b77a2a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61543230000001,32.841245900000004]},"id":"8f44c0a36185394-17f7b1e2df80a442"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3618c5ad-13fff1d23b77a2a8","8f44c0a36185394-17f7b1e2df80a442"]},"geometry":{"type":"LineString","coordinates":[[-83.61545890000001,32.8418492],[-83.6152964,32.841832600000004],[-83.6152211,32.8418124],[-83.61515610000001,32.8417808],[-83.61512180000001,32.8417261],[-83.615115,32.8416772],[-83.615115,32.8416341],[-83.61543230000001,32.841245900000004]]},"id":"8944c0a361bffff-13d7324eba239164"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56669670000001,32.813453200000005]},"id":"8f44c0b8184aaa9-179fe8de9a8277d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56521550000001,32.8136688]},"id":"8f44c0b81bb48eb-179fac7c58a1584f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8184aaa9-179fe8de9a8277d7","8f44c0b81bb48eb-179fac7c58a1584f"]},"geometry":{"type":"LineString","coordinates":[[-83.56669670000001,32.813453200000005],[-83.56652460000001,32.813689600000004],[-83.56636370000001,32.8137558],[-83.5656448,32.8138795],[-83.5655557,32.8138738],[-83.5654667,32.8138479],[-83.56530930000001,32.813784600000005],[-83.56521550000001,32.8136688]]},"id":"8744c0b81ffffff-17dfea9f3be96b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56474580000001,32.813737100000004]},"id":"8f44c0b81bb6856-17dfbda1e497a843"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5650251,32.8145528]},"id":"8f44c0b81bb3ba1-17d7acf35632aaf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81bb3ba1-17d7acf35632aaf3","8f44c0b81bb6856-17dfbda1e497a843"]},"geometry":{"type":"LineString","coordinates":[[-83.56474580000001,32.813737100000004],[-83.564919,32.814299600000005],[-83.5650251,32.8145528]]},"id":"8a44c0b81bb7fff-17dfbd500f70945a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564384,32.8144743]},"id":"8f44c0b81bb26c0-1797fe840eab90e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5640317,32.813842]},"id":"8f44c0b818cdcf3-179fef603a65f188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818cdcf3-179fef603a65f188","8f44c0b81bb26c0-1797fe840eab90e3"]},"geometry":{"type":"LineString","coordinates":[[-83.564384,32.8144743],[-83.5641659,32.8145067],[-83.5640317,32.813842]]},"id":"8744c0b81ffffff-179fff1b486d6603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5627695,32.8140281]},"id":"8f44c0b818dd65c-17ffb2751f486332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5625603,32.8148606]},"id":"8f44c0b81166661-1797f2f7dd458efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81166661-1797f2f7dd458efd","8f44c0b818dd65c-17ffb2751f486332"]},"geometry":{"type":"LineString","coordinates":[[-83.5627695,32.8140281],[-83.5629574,32.8148002],[-83.5625603,32.8148606]]},"id":"8744c0b81ffffff-17dfb25051c4dc72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5711236,32.807068]},"id":"8f44c0baa5a6854-17979e0fc9d50973"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5706306,32.807097500000005]},"id":"8f44c0baa5b5919-1797ff43ecdbb7ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b5919-1797ff43ecdbb7ab","8f44c0baa5a6854-17979e0fc9d50973"]},"geometry":{"type":"LineString","coordinates":[[-83.5711236,32.807068],[-83.5706306,32.807097500000005]]},"id":"8944c0baa5bffff-179fdea9df2e3273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5706461,32.8072771]},"id":"8f44c0baa5b5aa6-1797bf3a317ee274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571377,32.8072198]},"id":"8f44c0baa5a460e-17f7fd716704bbb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a460e-17f7fd716704bbb8","8f44c0baa5b5aa6-1797bf3a317ee274"]},"geometry":{"type":"LineString","coordinates":[[-83.5706461,32.8072771],[-83.571377,32.8072198]]},"id":"8944c0baa5bffff-17f7de55cbf46af2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57066160000001,32.807457400000004]},"id":"8f44c0baa5b5262-17f7ff308033df81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715699,32.8074083]},"id":"8f44c0baa5a549d-17d7bcf8d43ad509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a549d-17d7bcf8d43ad509","8f44c0baa5b5262-17f7ff308033df81"]},"geometry":{"type":"LineString","coordinates":[[-83.57066160000001,32.807457400000004],[-83.5715699,32.8074083]]},"id":"8944c0baa5bffff-17f79e14b9c142e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5706763,32.8076275]},"id":"8f44c0baa5a24e2-17dfbf2752ca761c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715782,32.8075709]},"id":"8f44c0baa5a0a5c-17bfdcf3a906bc1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a0a5c-17bfdcf3a906bc1b","8f44c0baa5a24e2-17dfbf2752ca761c"]},"geometry":{"type":"LineString","coordinates":[[-83.5706763,32.8076275],[-83.5715782,32.8075709]]},"id":"8944c0baa5bffff-17df9e0d83479a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5707222,32.8078104]},"id":"8f44c0baa584d2d-17d79f0aa0e27312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57139810000001,32.8077954]},"id":"8f44c0baa5a3959-17dfbd643daa1a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a3959-17dfbd643daa1a81","8f44c0baa584d2d-17d79f0aa0e27312"]},"geometry":{"type":"LineString","coordinates":[[-83.5707222,32.8078104],[-83.57126840000001,32.8077683],[-83.57139810000001,32.8077954]]},"id":"8944c0baa5bffff-17d7fe36d4e7b4be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5638881,32.810028100000004]},"id":"8f44c0b818000db-13bfbfb9fffdaad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5629407,32.8104305]},"id":"8f44c0b8181e831-17b7b20a1c57286e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181e831-17b7b20a1c57286e","8f44c0b818000db-13bfbfb9fffdaad0"]},"geometry":{"type":"LineString","coordinates":[[-83.5638881,32.810028100000004],[-83.5629407,32.8104305]]},"id":"8944c0b8183ffff-17bff0e2042dc877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56120080000001,32.8110185]},"id":"8f44c0b81881b4c-17b7b649813d0414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5617272,32.8100831]},"id":"8f44c0b818a1068-13dff50085a40588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a1068-13dff50085a40588","8f44c0b81881b4c-17b7b649813d0414"]},"geometry":{"type":"LineString","coordinates":[[-83.56120080000001,32.8110185],[-83.5617272,32.8100831]]},"id":"8944c0b818bffff-1797f5a507e291d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56140450000001,32.8110926]},"id":"8f44c0b818aa29a-17d7f5ca3ac8acbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5618484,32.8102571]},"id":"8f44c0b818ac526-17dfb4b4c1defe16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818ac526-17dfb4b4c1defe16","8f44c0b818aa29a-17d7f5ca3ac8acbf"]},"geometry":{"type":"LineString","coordinates":[[-83.56140450000001,32.8110926],[-83.5618484,32.8102571]]},"id":"8a44c0b818affff-17dff53f83724b3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5607483,32.8109667]},"id":"8f44c0b81881426-1797b7645116e45e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56146220000001,32.8097031]},"id":"8f44c0b818a0a36-13f7f5a62db23654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a0a36-13f7f5a62db23654","8f44c0b81881426-1797b7645116e45e"]},"geometry":{"type":"LineString","coordinates":[[-83.5607483,32.8109667],[-83.56146220000001,32.8097031]]},"id":"8944c0b818bffff-17fff6854c1424df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5605352,32.810889]},"id":"8f44c0b81880648-17d7b7e981508f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56130850000001,32.809482700000004]},"id":"8f44c0b818a46ea-13f7b6063e6e0536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a46ea-13f7b6063e6e0536","8f44c0b81880648-17d7b7e981508f30"]},"geometry":{"type":"LineString","coordinates":[[-83.5605352,32.810889],[-83.56130850000001,32.809482700000004]]},"id":"8944c0b818bffff-179fb6f7e841b982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5612153,32.808739200000005]},"id":"8f44c0b8199d2d3-1397b64074f49209"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5601748,32.8106363]},"id":"8f44c0b81882814-17b7b8cac55e2ea5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81882814-17b7b8cac55e2ea5","8f44c0b8199d2d3-1397b64074f49209"]},"geometry":{"type":"LineString","coordinates":[[-83.5612153,32.808739200000005],[-83.5601748,32.8106363]]},"id":"8844c0b819fffff-13f7f785a4fe8b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57459300000001,32.805182]},"id":"8f44c0baac83448-17f7d5976d9562c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5755456,32.8030495]},"id":"8f44c0baad99a5c-13b7f3440b945ff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baad99a5c-13b7f3440b945ff3","8f44c0baac83448-17f7d5976d9562c0"]},"geometry":{"type":"LineString","coordinates":[[-83.57459300000001,32.805182],[-83.5749036,32.8050875],[-83.5751853,32.8049788],[-83.5754948,32.8048042],[-83.5758643,32.804509100000004],[-83.57592430000001,32.804419800000005],[-83.5759012,32.8042995],[-83.5755456,32.8030495]]},"id":"8844c0baadfffff-17d7f35a4e41478e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57327810000001,32.8040979]},"id":"8f44c0baac96820-17d7b8cd3e213567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57293220000001,32.803580700000005]},"id":"8f44c0b853480cd-13fff9a564fcf8f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b853480cd-13fff9a564fcf8f4","8f44c0baac96820-17d7b8cd3e213567"]},"geometry":{"type":"LineString","coordinates":[[-83.57327810000001,32.8040979],[-83.57293220000001,32.803580700000005]]},"id":"8844c0b853fffff-179f993955a35394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56057960000001,32.7981448]},"id":"8f44c0b85735148-17bfb7cdc5202418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56382,32.795581500000004]},"id":"8f44c0b85011d72-13f7ffe48407bbc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85735148-17bfb7cdc5202418","8f44c0b85011d72-13f7ffe48407bbc6"]},"geometry":{"type":"LineString","coordinates":[[-83.56057960000001,32.7981448],[-83.56382,32.795581500000004]]},"id":"8744c0b85ffffff-1397b3d92baf37a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5600883,32.7995818]},"id":"8f44c0b85702759-13bfb900d5d1d974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5614029,32.7998278]},"id":"8f44c0b8570c814-13d7f5cb3ba2054e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8570c814-13d7f5cb3ba2054e","8f44c0b85702759-13bfb900d5d1d974"]},"geometry":{"type":"LineString","coordinates":[[-83.5600883,32.7995818],[-83.5604479,32.7998001],[-83.5609287,32.800060300000005],[-83.56118550000001,32.8000935],[-83.5614687,32.800016],[-83.5614029,32.7998278]]},"id":"8944c0b8573ffff-139ff72d07fd7888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5536727,32.802167000000004]},"id":"8f44c0b80b59325-139fe8aa9ccc9c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5563711,32.8004146]},"id":"8f44c0b85791233-17d7e2141592c16f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85791233-17d7e2141592c16f","8f44c0b80b59325-139fe8aa9ccc9c16"]},"geometry":{"type":"LineString","coordinates":[[-83.5536727,32.802167000000004],[-83.55378280000001,32.802053300000004],[-83.5539277,32.8019425],[-83.5563711,32.8004146]]},"id":"8644c0b87ffffff-17dff5691a121039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5543719,32.8029565]},"id":"8f44c0b80a65251-13f7d6f59168f439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55589690000001,32.802009000000005]},"id":"8f44c0b856b0148-13b7e33c798327bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b856b0148-13b7e33c798327bd","8f44c0b80a65251-13f7d6f59168f439"]},"geometry":{"type":"LineString","coordinates":[[-83.5543719,32.8029565],[-83.55589690000001,32.802009000000005]]},"id":"8644c0b87ffffff-13dfc519016c6f1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55745300000001,32.8014573]},"id":"8f44c0b8578a2e3-17dfff6fe0d6381f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5568564,32.801833200000004]},"id":"8f44c0b856a606c-17bfc0e4c3818095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b856a606c-17bfc0e4c3818095","8f44c0b8578a2e3-17dfff6fe0d6381f"]},"geometry":{"type":"LineString","coordinates":[[-83.55745300000001,32.8014573],[-83.55832720000001,32.8024629],[-83.5576817,32.8028615],[-83.5568564,32.801833200000004]]},"id":"8844c0b857fffff-13dffee4e439e718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5564052,32.8021173]},"id":"8f44c0b856b525a-13ffd1fec07f4d89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55687160000001,32.8035313]},"id":"8f44c0b8568130a-13dfd0db4d033b4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8568130a-13dfd0db4d033b4b","8f44c0b856b525a-13ffd1fec07f4d89"]},"geometry":{"type":"LineString","coordinates":[[-83.5564052,32.8021173],[-83.5573854,32.8031826],[-83.55687160000001,32.8035313]]},"id":"8944c0b856bffff-13bfe0a0b13e315e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55133140000001,32.8067629]},"id":"8f44c0b81d95743-13d7de61e5283332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5519417,32.8074457]},"id":"8f44c0b81d836ab-17ffdce47c0c412c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81d836ab-17ffdce47c0c412c","8f44c0b81d95743-13d7de61e5283332"]},"geometry":{"type":"LineString","coordinates":[[-83.55133140000001,32.8067629],[-83.5519417,32.8074457]]},"id":"8944c0b81dbffff-179ffda32352be4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54787780000001,32.8074953]},"id":"8f44c0b80355616-179fd6d06c4a0aa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.549018,32.8076494]},"id":"8f44c0b80340af1-17fff407cea4c92d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80355616-179fd6d06c4a0aa5","8f44c0b80340af1-17fff407cea4c92d"]},"geometry":{"type":"LineString","coordinates":[[-83.54787780000001,32.8074953],[-83.54905090000001,32.8088174],[-83.54969630000001,32.8084022],[-83.549018,32.8076494]]},"id":"8944c0b8037ffff-17dff4478e1c29b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5456836,32.8088799]},"id":"8f44c0b8020ed0c-13fffc2bcdae21a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5471739,32.810494600000006]},"id":"8f44c0b80255390-17dff8885d118831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80255390-17dff8885d118831","8f44c0b8020ed0c-13fffc2bcdae21a7"]},"geometry":{"type":"LineString","coordinates":[[-83.5456836,32.8088799],[-83.5471739,32.810494600000006]]},"id":"8844c0b803fffff-13f7da5a1398c848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5502477,32.8040758]},"id":"8f44c0b80ae308b-17b7f1073ad7a5b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55169400000001,32.8027506]},"id":"8f44c0b80a0d2ce-13f7ed7f4277cee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80ae308b-17b7f1073ad7a5b3","8f44c0b80a0d2ce-13f7ed7f4277cee5"]},"geometry":{"type":"LineString","coordinates":[[-83.5502477,32.8040758],[-83.5506249,32.8038627],[-83.55062980000001,32.8037724],[-83.5505809,32.803678000000005],[-83.55051750000001,32.803464600000005],[-83.55169400000001,32.8027506]]},"id":"8844c0b80bfffff-1397df7e062ad618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5693445,32.7960421]},"id":"8f44c0b85ab25b0-1397f267b89a7106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5691493,32.795512800000004]},"id":"8f44c0b8514ca65-13dfa2e1b429bc8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8514ca65-13dfa2e1b429bc8a","8f44c0b85ab25b0-1397f267b89a7106"]},"geometry":{"type":"LineString","coordinates":[[-83.5693445,32.7960421],[-83.56945680000001,32.7963253],[-83.5688954,32.796432],[-83.5685098,32.7957015],[-83.5686367,32.7955989],[-83.56908580000001,32.795443],[-83.5691493,32.795512800000004]]},"id":"8744c0b85ffffff-13fff364eb1c7bce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57120060000001,32.797087600000005]},"id":"8f44c0b85a853a0-17b7dddfa7d273ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5708335,32.7971501]},"id":"8f44c0b85a80af4-17dfdec51064287f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85a80af4-17dfdec51064287f","8f44c0b85a853a0-17b7dddfa7d273ca"]},"geometry":{"type":"LineString","coordinates":[[-83.57120060000001,32.797087600000005],[-83.5708335,32.7971501]]},"id":"8a44c0b85a87fff-17b7de5256e43743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55125100000001,32.762776800000005]},"id":"8f44c0ba277496e-13dfce942391911d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5517832,32.762020400000004]},"id":"8f44c0ba20dc0ee-1797cd478612b70f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba20dc0ee-1797cd478612b70f","8f44c0ba277496e-13dfce942391911d"]},"geometry":{"type":"LineString","coordinates":[[-83.55125100000001,32.762776800000005],[-83.55144680000001,32.7625024],[-83.5515434,32.7623662],[-83.5515745,32.7622981],[-83.5515807,32.7622378],[-83.5515091,32.762114700000005],[-83.55145300000001,32.7620152],[-83.55142190000001,32.7619366],[-83.55142500000001,32.761892],[-83.55149660000001,32.7618789],[-83.55167110000001,32.7618999],[-83.5517832,32.762020400000004]]},"id":"8a44c0ba20dffff-1797fdf79583bc74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60685790000001,32.8622406]},"id":"8f44c0a325652b0-13b766d1d9d616f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6068789,32.8604438]},"id":"8f44c0a32cc1025-17d766c4bcb3fb38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a325652b0-13b766d1d9d616f9","8f44c0a32cc1025-17d766c4bcb3fb38"]},"geometry":{"type":"LineString","coordinates":[[-83.60685790000001,32.8622406],[-83.60687630000001,32.8612796],[-83.6068728,32.8612071],[-83.6068789,32.8604438]]},"id":"8744c0a32ffffff-1397e6c997e8b15b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6061748,32.8606861]},"id":"8f44c0a32cdcb6a-17ffd87ccec3b91c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6056638,32.86092]},"id":"8f44c0a32cd8dab-17ff49bc2bf9cb5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cdcb6a-17ffd87ccec3b91c","8f44c0a32cd8dab-17ff49bc2bf9cb5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6061748,32.8606861],[-83.60602990000001,32.8607363],[-83.6056665,32.860783600000005],[-83.6056638,32.86092]]},"id":"8a44c0a32cdffff-179fd93b9a12612b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6076113,32.8619027]},"id":"8f44c0a321944e2-13f774faf134c4f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60745010000001,32.861395800000004]},"id":"8f44c0a32cc9d4c-13b7655fbe5c1b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321944e2-13f774faf134c4f1","8f44c0a32cc9d4c-13b7655fbe5c1b58"]},"geometry":{"type":"LineString","coordinates":[[-83.6076113,32.8619027],[-83.607619,32.8613985],[-83.60745010000001,32.861395800000004]]},"id":"8744c0a32ffffff-139fe505339ab838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6077015,32.8602736]},"id":"8f44c0a32ce8461-17f744c29e69a1fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60850930000001,32.8599452]},"id":"8f44c0a32c532eb-179fc2c9b2781d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c532eb-179fc2c9b2781d11","8f44c0a32ce8461-17f744c29e69a1fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6077015,32.8602736],[-83.6077063,32.8602372],[-83.6077104,32.8600135],[-83.6077226,32.8599777],[-83.6077815,32.8599401],[-83.60850930000001,32.8599452]]},"id":"8844c0a32dfffff-17b7d4071c598363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60767410000001,32.8610205]},"id":"8f44c0a32ccd8e0-13bfd4d3b88e437c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6083133,32.8604512]},"id":"8f44c0a32ce9829-17d7434430718678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ccd8e0-13bfd4d3b88e437c","8f44c0a32ce9829-17d7434430718678"]},"geometry":{"type":"LineString","coordinates":[[-83.60767410000001,32.8610205],[-83.60781940000001,32.8610284],[-83.6083052,32.8610266],[-83.6083133,32.8604512]]},"id":"8844c0a32dfffff-17f7f3af47d09924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7339812,32.9253838]},"id":"8f44c0a28223b6d-17def075ca0a24f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28223b6d-17def075ca0a24f1","8f44c0a28221763-17df900ed7c02976"]},"geometry":{"type":"LineString","coordinates":[[-83.7341459,32.925388000000005],[-83.7339812,32.9253838]]},"id":"8c44c0a282217ff-17de30425cd8a78d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73403280000001,32.9248939]},"id":"8f44c0a28220b23-17beb0558c69831d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28220b23-17beb0558c69831d","8f44c0a28225755-17d6cfd5a1184e95"]},"geometry":{"type":"LineString","coordinates":[[-83.73423740000001,32.924961200000006],[-83.7342076,32.9249449],[-83.7341866,32.9249352],[-83.73403280000001,32.9248939]]},"id":"8a44c0a28227fff-17bf101483a6a29f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876936,32.9014015]},"id":"8f44c0a0589212a-13dff177862717e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0589212a-13dff177862717e8","8f44c0a0589351d-139f81180fd6580d"]},"geometry":{"type":"LineString","coordinates":[[-83.6876936,32.9014015],[-83.6877305,32.901531500000004],[-83.68784640000001,32.901724]]},"id":"8a44c0a05897fff-13b7814e299916e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680694,32.892334500000004]},"id":"8f44c0a04a28c40-17bf928e425d8912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2c668-17deb23d447f0685","8f44c0a04a28c40-17bf928e425d8912"]},"geometry":{"type":"LineString","coordinates":[[-83.68082360000001,32.8921987],[-83.680694,32.892334500000004]]},"id":"8a44c0a04a2ffff-1796b265c722511e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6809928,32.892544900000004]},"id":"8f44c0a04a29d10-17b691d385f910b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a29d10-17b691d385f910b1","8f44c0a04a2d701-17f6917e4cc58580"]},"geometry":{"type":"LineString","coordinates":[[-83.6809928,32.892544900000004],[-83.6811292,32.892416100000005]]},"id":"8a44c0a04a2ffff-179ed1a8e974593a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67524470000001,32.8857237]},"id":"8f44c0a0480adad-179fdfdc193b4b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0480e292-17f6ff5cc15db617","8f44c0a0480adad-179fdfdc193b4b67"]},"geometry":{"type":"LineString","coordinates":[[-83.67544840000001,32.885661500000005],[-83.67524470000001,32.8857237]]},"id":"8a44c0a0480ffff-17f7ff9c7b7dd964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71184310000001,32.926739500000004]},"id":"8f44c0a2aa8b274-13be7682156ed03c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa8aaee-17b6473737b855dc","8f44c0a2aa8b274-13be7682156ed03c"]},"geometry":{"type":"LineString","coordinates":[[-83.7115533,32.9263168],[-83.7116124,32.926443],[-83.7116845,32.9265842],[-83.71172320000001,32.9266631],[-83.7117844,32.9267138],[-83.71184310000001,32.926739500000004]]},"id":"8a44c0a2aa8ffff-13b6f6ea608692d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71188500000001,32.926840500000004]},"id":"8f44c0a2aad651a-13ff5667ecd4dd48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aad651a-13ff5667ecd4dd48","8f44c0a2aa8b274-13be7682156ed03c"]},"geometry":{"type":"LineString","coordinates":[[-83.71188500000001,32.926840500000004],[-83.71184310000001,32.926739500000004]]},"id":"8844c0a2abfffff-13dfc675051ec66d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa8aaee-17b6473737b855dc","8f44c0a2aa8b274-13be7682156ed03c"]},"geometry":{"type":"LineString","coordinates":[[-83.71184310000001,32.926739500000004],[-83.71187610000001,32.9266856],[-83.7118713,32.9266421],[-83.7117041,32.9263272],[-83.71166980000001,32.926304300000005],[-83.7116146,32.926294500000004],[-83.7115533,32.9263168]]},"id":"8a44c0a2aa8ffff-139666b5f640fdd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b92ad0e-17febb0544ed3feb","8f44c0a2b905ce9-17f6dbe5cb41e35b"]},"geometry":{"type":"LineString","coordinates":[[-83.7296556,32.9297035],[-83.72937420000001,32.9294936],[-83.72929640000001,32.929495700000004]]},"id":"8944c0a2b93ffff-179f5b719bfc350f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7294011,32.929923800000005]},"id":"8f44c0a2b901841-13f67ba4532da8d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b90518e-179e5bdac9509bd5","8f44c0a2b901841-13f67ba4532da8d4"]},"geometry":{"type":"LineString","coordinates":[[-83.729314,32.929549300000005],[-83.7293566,32.92962],[-83.7293765,32.9296677],[-83.7293949,32.929737200000005],[-83.7294006,32.9297988],[-83.729405,32.929867200000004],[-83.7294011,32.929923800000005]]},"id":"8a44c0a2b907fff-17ffdbb1853e2242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2b92acaa-1396db34525ac92a","8f44c0a2b901841-13f67ba4532da8d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7294011,32.929923800000005],[-83.72958030000001,32.929767600000005]]},"id":"8944c0a2b93ffff-13d79b6c534a1261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b90518e-179e5bdac9509bd5","8f44c0a2b92acaa-1396db34525ac92a"]},"geometry":{"type":"LineString","coordinates":[[-83.729314,32.929549300000005],[-83.72958030000001,32.929767600000005]]},"id":"8944c0a2b93ffff-17de9b87994b4b28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.755846,32.893015000000005]},"id":"8f44c0b530aa392-17d7fb1443504040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5308c2b2-17ffdb6303dbf680","8f44c0b530aa392-17d7fb1443504040"]},"geometry":{"type":"LineString","coordinates":[[-83.755846,32.893015000000005],[-83.75581700000001,32.893081],[-83.755785,32.893175],[-83.755747,32.893319000000005],[-83.75572000000001,32.893484]]},"id":"8944c0b530bffff-17f7fb42b7f90291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76116300000001,32.907683]},"id":"8f44c0a2d86575a-13b5ee192b87a1e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d86575a-13b5ee192b87a1e6","8f44c0a2d86125e-13f7fdf81882425b"]},"geometry":{"type":"LineString","coordinates":[[-83.76116300000001,32.907683],[-83.7611648,32.9081208],[-83.76121590000001,32.9081915]]},"id":"8944c0a2d87ffff-13ddde15d437ef31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6763123,32.8520798]},"id":"8f44c0a26449070-13f7fd40d6f95b88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6761912,32.8521809]},"id":"8f44c0a26449620-13b79d8c8e5b44ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26449620-13b79d8c8e5b44ba","8f44c0a26449070-13f7fd40d6f95b88"]},"geometry":{"type":"LineString","coordinates":[[-83.6763123,32.8520798],[-83.6761912,32.8521809]]},"id":"8b44c0a26449fff-1397fd66b2572045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67636990000001,32.8523379]},"id":"8f44c0a2671459e-1397bd1cdbf266f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6765125,32.8522406]},"id":"8f44c0a26714cac-13defcc3b226828e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26714cac-13defcc3b226828e","8f44c0a2671459e-1397bd1cdbf266f1"]},"geometry":{"type":"LineString","coordinates":[[-83.67636990000001,32.8523379],[-83.6765125,32.8522406]]},"id":"8b44c0a26714fff-13fedcf0487f62f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67607290000001,32.852736]},"id":"8f44c0a26712995-17969dd674311286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6758214,32.8525869]},"id":"8f44c0a267a5b88-13b6de73a7d8e41d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267a5b88-13b6de73a7d8e41d","8f44c0a26712995-17969dd674311286"]},"geometry":{"type":"LineString","coordinates":[[-83.67607290000001,32.852736],[-83.67600130000001,32.8527475],[-83.6758214,32.8525869]]},"id":"8844c0a267fffff-13dfde294a8108f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7516573,32.799671100000005]},"id":"8f44c0b0ca510a1-13f7f54e318e3be9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7523034,32.7996785]},"id":"8f44c0b0ca4230c-13f7f3ba694971ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved"},"subType":"road","connectors":["8f44c0b0ca510a1-13f7f54e318e3be9","8f44c0b0ca4230c-13f7f3ba694971ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7516573,32.799671100000005],[-83.7519644,32.7996271],[-83.752183,32.799609100000005],[-83.7522393,32.799617000000005],[-83.7523034,32.7996785]]},"id":"8944c0b0ca7ffff-13dde47df22ddf92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7522242,32.7998034]},"id":"8f44c0b0ca422da-13d5e3ebe9a4889f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7526466,32.7996451]},"id":"8f44c0b0ca4066d-13f7f2e3e7982a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca422da-13d5e3ebe9a4889f","8f44c0b0ca4066d-13f7f2e3e7982a86"]},"geometry":{"type":"LineString","coordinates":[[-83.7522242,32.7998034],[-83.75235070000001,32.799732],[-83.75245790000001,32.7996959],[-83.75253260000001,32.7996758],[-83.7526466,32.7996451]]},"id":"8a44c0b0ca47fff-139de36aee12e7e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75284950000001,32.799586600000005]},"id":"8f44c0b0ca41d92-13bde26515de5089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca454f0-13bde234b7dbd63f","8f44c0b0ca41d92-13bde26515de5089"]},"geometry":{"type":"LineString","coordinates":[[-83.75284950000001,32.799586600000005],[-83.7528858,32.7995516],[-83.7529126,32.799511100000004],[-83.7529287,32.799466800000005],[-83.7529336,32.799420600000005],[-83.7529269,32.7993746]]},"id":"8a44c0b0ca47fff-13fff23feb4e2465"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75249020000001,32.799261900000005]},"id":"8f44c0b0ca40d92-13f7f345a801ed77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7524185,32.7994878]},"id":"8f44c0b0ca4048b-13ffe3727b53a46c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca40d92-13f7f345a801ed77","8f44c0b0ca4048b-13ffe3727b53a46c"]},"geometry":{"type":"LineString","coordinates":[[-83.75249020000001,32.799261900000005],[-83.7524539,32.7992968],[-83.7524271,32.7993374],[-83.75241100000001,32.799381700000005],[-83.7524061,32.799427800000004],[-83.75241270000001,32.7994739],[-83.7524185,32.7994878]]},"id":"8a44c0b0ca47fff-13b5f36b6a17c322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca510a1-13f7f54e318e3be9","8f44c0b0ca4048b-13ffe3727b53a46c"]},"geometry":{"type":"LineString","coordinates":[[-83.7516573,32.799671100000005],[-83.75189590000001,32.7996049],[-83.75201270000001,32.7995642],[-83.7521718,32.799504500000005],[-83.7522689,32.7994738],[-83.75233460000001,32.7994727],[-83.7524185,32.7994878]]},"id":"8944c0b0ca7ffff-13bfe4612a84e6ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75295990000001,32.799169400000004]},"id":"8f44c0b0ca4436a-13bde220156b531b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0ca6e488-13f5e11bc1b5bf35","8f44c0b0ca4436a-13bde220156b531b"]},"geometry":{"type":"LineString","coordinates":[[-83.75337640000001,32.7992664],[-83.7531835,32.7992811],[-83.75304940000001,32.7992608],[-83.75298500000001,32.7992202],[-83.75295990000001,32.799169400000004]]},"id":"8944c0b0ca7ffff-13f5e1a8b1584756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75310300000001,32.798964000000005]},"id":"8f44c0b0ca6345e-13bde1c6aeb0a44e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7526931,32.7992033]},"id":"8f44c0b0ca446e5-13dff2c6def168a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca6345e-13bde1c6aeb0a44e","8f44c0b0ca446e5-13dff2c6def168a2"]},"geometry":{"type":"LineString","coordinates":[[-83.75310300000001,32.798964000000005],[-83.7529555,32.7990669],[-83.752875,32.7991255],[-83.7527946,32.7991638],[-83.7526931,32.7992033]]},"id":"8944c0b0ca7ffff-139ff242fb897be4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6297018,32.8419011]},"id":"8f44c0a36b7492b-139f3f0c64f25add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6300683,32.8421214]},"id":"8f44c0a344db399-1397ee27517eaea1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344db399-1397ee27517eaea1","8f44c0a36b7492b-139f3f0c64f25add"]},"geometry":{"type":"LineString","coordinates":[[-83.6297018,32.8419011],[-83.62958950000001,32.842042],[-83.629953,32.8422585],[-83.6300683,32.8421214]]},"id":"8944c0a36b7ffff-1397eed0d64f6a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299958,32.8418209]},"id":"8f44c0a344dbd53-13df1e54a0a2c396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62985330000001,32.8416957]},"id":"8f44c0a344daa18-139fdeadb5ab9fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344daa18-139fdeadb5ab9fe2","8f44c0a344dbd53-13df1e54a0a2c396"]},"geometry":{"type":"LineString","coordinates":[[-83.6299958,32.8418209],[-83.6299735,32.8417655],[-83.62985330000001,32.8416957]]},"id":"8a44c0a344dffff-13bf6e7acd909f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75324850000001,32.880836]},"id":"8f44c0b53d16561-139fe16bbdcd7cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75469890000001,32.8808729]},"id":"8f44c0b53d06883-13b5dde13633e91d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d16561-139fe16bbdcd7cb4","8f44c0b53d06883-13b5dde13633e91d"]},"geometry":{"type":"LineString","coordinates":[[-83.75324850000001,32.880836],[-83.75469890000001,32.8808729]]},"id":"8944c0b53d3ffff-13b7dfa67e545f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7532553,32.8804729]},"id":"8f44c0b52a494f1-17b7f16777f5e27c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7532733,32.879770900000004]},"id":"8f44c0b52a4c3a6-1795f15c3025861c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a4c3a6-1795f15c3025861c","8f44c0b52a494f1-17b7f16777f5e27c"]},"geometry":{"type":"LineString","coordinates":[[-83.7532553,32.8804729],[-83.7532733,32.879770900000004]]},"id":"8a44c0b52a4ffff-17ddf161d57deb24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7552826,32.8828723]},"id":"8f44c0b53d0b4d5-1797fc746f0de8c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75531740000001,32.8817886]},"id":"8f44c0b53d01629-13fdfc5eac70b84a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d01629-13fdfc5eac70b84a","8f44c0b53d0b4d5-1797fc746f0de8c1"]},"geometry":{"type":"LineString","coordinates":[[-83.7552826,32.8828723],[-83.75531740000001,32.8817886]]},"id":"8944c0b53d3ffff-17d5dc698339d0b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75390920000001,32.8817587]},"id":"8f44c0b53d1ed29-13dfffcec86e07b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7533708,32.881737900000005]},"id":"8f44c0b53dacb44-13dff11f4f9b6d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53dacb44-13dff11f4f9b6d78","8f44c0b53d1ed29-13dfffcec86e07b9"]},"geometry":{"type":"LineString","coordinates":[[-83.75390920000001,32.8817587],[-83.7539046,32.881949],[-83.7538806,32.8819766],[-83.7538244,32.8819833],[-83.7534608,32.8819723],[-83.7533949,32.881935600000006],[-83.7533744,32.8818756],[-83.753372,32.8817834],[-83.7533708,32.881737900000005]]},"id":"8844c0b53dfffff-13bfe0745d5112cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.754292,32.8815547]},"id":"8f44c0b53d11a29-13dffedf8f857b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7535469,32.8817453]},"id":"8f44c0b53d13771-13d7f0b133326c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d13771-13d7f0b133326c27","8f44c0b53d11a29-13dffedf8f857b57"]},"geometry":{"type":"LineString","coordinates":[[-83.754292,32.8815547],[-83.7535575,32.8815328],[-83.7535469,32.8817453]]},"id":"8a44c0b53d17fff-13f7fff959fa4610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d16561-139fe16bbdcd7cb4","8f44c0b52a494f1-17b7f16777f5e27c"]},"geometry":{"type":"LineString","coordinates":[[-83.7532553,32.8804729],[-83.75324850000001,32.880836]]},"id":"8844c0b53dfffff-13bdf1699cce4c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7547699,32.8828635]},"id":"8f44c0b53c245b3-179dfdb4ded27ff9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7543107,32.882362900000004]},"id":"8f44c0b53d180eb-17d5ded3deb75c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53c245b3-179dfdb4ded27ff9","8f44c0b53d180eb-17d5ded3deb75c3b"]},"geometry":{"type":"LineString","coordinates":[[-83.7547699,32.8828635],[-83.7543682,32.8828568],[-83.75432520000001,32.882817100000004],[-83.75430800000001,32.882775],[-83.7543107,32.882362900000004]]},"id":"8844c0b53dfffff-17b7de8be659f84a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6404742,32.790911200000004]},"id":"8f44c0b1325a591-179ff4bfa30121f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6411298,32.790791]},"id":"8f44c0b13258ccd-17d6f325e451b373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13258ccd-17d6f325e451b373","8f44c0b1325a591-179ff4bfa30121f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6404742,32.790911200000004],[-83.6411298,32.790791]]},"id":"8944c0b1327ffff-17fff3f2cfce7da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6406187,32.7903577]},"id":"8f44c0b13253353-13b7f4655a5e9d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6407356,32.790335]},"id":"8f44c0b1325edaa-13b7f41c45daf882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1325edaa-13b7f41c45daf882","8f44c0b13253353-13b7f4655a5e9d91"]},"geometry":{"type":"LineString","coordinates":[[-83.6406187,32.7903577],[-83.6407356,32.790335]]},"id":"8a44c0b13257fff-13bef440d4f74b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6425277,32.7912613]},"id":"8f44c0b1324b823-17feffbc3b2e7881"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64153440000001,32.790841300000004]},"id":"8f44c0b1325d786-17f7f2290e2be2ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1324b823-17feffbc3b2e7881","8f44c0b1325d786-17f7f2290e2be2ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6425277,32.7912613],[-83.6425573,32.7911477],[-83.6426062,32.7909784],[-83.6426081,32.7908187],[-83.6420932,32.7904696],[-83.6420148,32.7904758],[-83.64153440000001,32.790841300000004]]},"id":"8944c0b1327ffff-17b7f089caf944c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163903,32.8268014]},"id":"8f44c0b0a33125c-17befb681160f400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7163876,32.8268877]},"id":"8f44c0b0a3044a4-17f6fb69c78bffe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a3044a4-17f6fb69c78bffe6","8f44c0b0a33125c-17befb681160f400"]},"geometry":{"type":"LineString","coordinates":[[-83.7163903,32.8268014],[-83.71641530000001,32.8268089],[-83.7163876,32.8268877]]},"id":"8a44c0b0a307fff-17d7fb60e4b8a6b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71634440000001,32.8308768]},"id":"8f44c0b0a20cd58-17b63b84cadcad27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71734570000001,32.830755]},"id":"8f44c0b0a229106-17d7f912ff8e13d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a229106-17d7f912ff8e13d1","8f44c0b0a20cd58-17b63b84cadcad27"]},"geometry":{"type":"LineString","coordinates":[[-83.71634440000001,32.8308768],[-83.71693210000001,32.8308897],[-83.7171512,32.8308533],[-83.71734570000001,32.830755]]},"id":"8944c0b0a23ffff-179ffa45c70225fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53546920000001,32.827749000000004]},"id":"8f44c0b8376dd74-17fff51bcba2c84b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5350847,32.827553800000004]},"id":"8f44c0b8376c1b5-1797f60c1845f1cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8376c1b5-1797f60c1845f1cd","8f44c0b8376dd74-17fff51bcba2c84b"]},"geometry":{"type":"LineString","coordinates":[[-83.53546920000001,32.827749000000004],[-83.5353484,32.8276562],[-83.5352941,32.827624],[-83.5350847,32.827553800000004]]},"id":"8a44c0b8376ffff-17bff58edd9c1227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5412888,32.8189506]},"id":"8f44c0b83bb6bb5-1397e6e680cdb8b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53909870000001,32.817636]},"id":"8f44c0b838c6d99-17dfec3f5953d8f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83bb6bb5-1397e6e680cdb8b7","8f44c0b838c6d99-17dfec3f5953d8f6"]},"geometry":{"type":"LineString","coordinates":[[-83.5412888,32.8189506],[-83.54025850000001,32.8189234],[-83.5400589,32.8188826],[-83.5398971,32.8188146],[-83.5397191,32.8187285],[-83.5396058,32.818678600000005],[-83.5394332,32.8185335],[-83.5392606,32.8182525],[-83.5391742,32.8179941],[-83.53909870000001,32.817636]]},"id":"8844c0b839fffff-13bffa22d29b00b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5450378,32.818946100000005]},"id":"8f44c0b83b314e5-1397ddbf6a43656f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54529670000001,32.8176541]},"id":"8f44c0b8149ab34-17dfdd1d98f82537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b314e5-1397ddbf6a43656f","8f44c0b8149ab34-17dfdd1d98f82537"]},"geometry":{"type":"LineString","coordinates":[[-83.5450378,32.818946100000005],[-83.54529670000001,32.8176541]]},"id":"8744c0b83ffffff-17ffdd6e83c79918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5462407,32.818995900000004]},"id":"8f44c0b83b23941-13b7facf915fd7f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54643490000001,32.817753800000006]},"id":"8f44c0b8148a89b-179ffa5634e96aa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b23941-13b7facf915fd7f5","8f44c0b8148a89b-179ffa5634e96aa0"]},"geometry":{"type":"LineString","coordinates":[[-83.5462407,32.818995900000004],[-83.54621370000001,32.8187919],[-83.54643490000001,32.817753800000006]]},"id":"8744c0b83ffffff-139fdaa5343a0b1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5532853,32.8412297]},"id":"8f44c0b8e0e86c5-17ffd99cb8ce1858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5524523,32.8414203]},"id":"8f44c0b8e0c1283-13dffba552baab74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e0e86c5-17ffd99cb8ce1858","8f44c0b8e0c1283-13dffba552baab74"]},"geometry":{"type":"LineString","coordinates":[[-83.5532853,32.8412297],[-83.5531606,32.841542600000004],[-83.55291340000001,32.841366900000004],[-83.5528183,32.8413637],[-83.5525939,32.8415331],[-83.5524523,32.8414203]]},"id":"8944c0b8e0fffff-13f7ea80df29bc1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56944,32.84338]},"id":"8f44c0b8c6da926-17bfa22c0d13cae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57031710000001,32.8435931]},"id":"8f44c0b8c6dd2f2-17bfb007db70d8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6da926-17bfa22c0d13cae8","8f44c0b8c6dd2f2-17bfb007db70d8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.56944,32.84338],[-83.5696159,32.8433937],[-83.5697238,32.8434073],[-83.57031710000001,32.8435931]]},"id":"8a44c0b8c6dffff-17dfe11766801f56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5696107,32.8418128]},"id":"8f44c0b8c6f351c-13d7a1c15e6cb759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5693574,32.8418373]},"id":"8f44c0b8c6d48a6-13f7f25faac3aacd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6d48a6-13f7f25faac3aacd","8f44c0b8c6f351c-13d7a1c15e6cb759"]},"geometry":{"type":"LineString","coordinates":[[-83.5696107,32.8418128],[-83.5693574,32.8418373]]},"id":"8944c0b8c6fffff-13dfb2108a8e2b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60644380000001,32.8496412]},"id":"8f44c0b8db5db88-17f7c7d4a5d76af5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6064437,32.8491884]},"id":"8f44c0b8db4310b-13d7c7d4b35704b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8db4310b-13d7c7d4b35704b3","8f44c0b8db5db88-17f7c7d4a5d76af5"]},"geometry":{"type":"LineString","coordinates":[[-83.60644380000001,32.8496412],[-83.6064437,32.8491884]]},"id":"8944c0b8db7ffff-13f747d4a6197960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6773806,32.8508851]},"id":"8f44c0a2609acc5-17ffbaa52c94cd17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67754140000001,32.8509568]},"id":"8f44c0a2609a171-17be9a40adc26d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609a171-17be9a40adc26d14","8f44c0a2609acc5-17ffbaa52c94cd17"]},"geometry":{"type":"LineString","coordinates":[[-83.6773806,32.8508851],[-83.6774178,32.8507887],[-83.6777218,32.850539000000005],[-83.67787270000001,32.850679],[-83.67754140000001,32.8509568]]},"id":"8a44c0a2609ffff-179fb9fe2aa8b9ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6729676,32.8428747]},"id":"8f44c0b1b26d990-13feb56b41412339"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67500650000001,32.842924100000005]},"id":"8f44c0a26c8c58d-179fb070fb689ae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26c8c58d-179fb070fb689ae3","8f44c0b1b26d990-13feb56b41412339"]},"geometry":{"type":"LineString","coordinates":[[-83.6729676,32.8428747],[-83.67500650000001,32.842924100000005]]},"id":"8944c0a26cbffff-13fea2ee1edf412a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6729901,32.842140300000004]},"id":"8f44c0a26c9051a-13b7b55d3566362f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6749929,32.842174400000005]},"id":"8f44c0a26c85119-13b7a079709af107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26c85119-13b7a079709af107","8f44c0a26c9051a-13b7b55d3566362f"]},"geometry":{"type":"LineString","coordinates":[[-83.6729901,32.842140300000004],[-83.6749929,32.842174400000005]]},"id":"8944c0a26cbffff-13bee2eb51f12373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69680430000001,32.8680499]},"id":"8f44c0a200d2c9e-13f77b3959c5a991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6961799,32.868490200000004]},"id":"8f44c0a20723ad9-13f66cbf914cce4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20723ad9-13f66cbf914cce4a","8f44c0a200d2c9e-13f77b3959c5a991"]},"geometry":{"type":"LineString","coordinates":[[-83.69680430000001,32.8680499],[-83.6961799,32.868490200000004]]},"id":"8944c0a2073ffff-13fefbfc75c13e85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69627720000001,32.867983100000004]},"id":"8f44c0a20720aae-13bf7c82c5c072fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69591720000001,32.8682262]},"id":"8f44c0a20723c15-13d76d63c9aff64e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20723c15-13d76d63c9aff64e","8f44c0a20720aae-13bf7c82c5c072fe"]},"geometry":{"type":"LineString","coordinates":[[-83.69627720000001,32.867983100000004],[-83.69591720000001,32.8682262]]},"id":"8a44c0a20727fff-13977cf3400dbc94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69610870000001,32.8678186]},"id":"8f44c0a20720c75-13d6ecec151f7c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957639,32.8680721]},"id":"8f44c0a20722ab2-13f77dc390060296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20722ab2-13f77dc390060296","8f44c0a20720c75-13d6ecec151f7c4e"]},"geometry":{"type":"LineString","coordinates":[[-83.69610870000001,32.8678186],[-83.6957639,32.8680721]]},"id":"8a44c0a20727fff-13b7ed57de928cd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6969404,32.868189300000004]},"id":"8f44c0a200d20a8-13be7ae447286497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962998,32.868610600000004]},"id":"8f44c0a2072ece1-13d7ec74a8bf8d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2072ece1-13d7ec74a8bf8d12","8f44c0a200d20a8-13be7ae447286497"]},"geometry":{"type":"LineString","coordinates":[[-83.6969404,32.868189300000004],[-83.6962998,32.868610600000004]]},"id":"8944c0a2073ffff-13be6bac74e17672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697078,32.8683302]},"id":"8f44c0a200d2205-13966a8e4df9f651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964434,32.8687549]},"id":"8f44c0a2072e045-139ffc1ae31a7fea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2072e045-139ffc1ae31a7fea","8f44c0a200d2205-13966a8e4df9f651"]},"geometry":{"type":"LineString","coordinates":[[-83.697078,32.8683302],[-83.6964434,32.8687549]]},"id":"8744c0a20ffffff-13976b549fa40fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68496250000001,32.905636300000005]},"id":"8f44c0a05183421-17b6b82271ffa5e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6845887,32.9051642]},"id":"8f44c0a0519536b-13ffa90c1d24c06e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05183421-17b6b82271ffa5e2","8f44c0a0519536b-13ffa90c1d24c06e"]},"geometry":{"type":"LineString","coordinates":[[-83.68496250000001,32.905636300000005],[-83.6849933,32.905605200000004],[-83.6849639,32.9054355],[-83.6845887,32.9051642]]},"id":"8944c0a051bffff-1796d86ead45ca12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6848315,32.9049204]},"id":"8f44c0a05186085-13f7c87451dc4423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6845959,32.9047477]},"id":"8f44c0a051b321e-13ffd9079b9bc65e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a051b321e-13ffd9079b9bc65e","8f44c0a05186085-13f7c87451dc4423"]},"geometry":{"type":"LineString","coordinates":[[-83.6848315,32.9049204],[-83.6845959,32.9047477]]},"id":"8944c0a051bffff-13b7d8bdfa5ba38b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68381140000001,32.9052287]},"id":"8f44c0a05190636-17b7faf1ee7abb95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837237,32.9050267]},"id":"8f44c0a05190516-13bfbb28b49d8717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05190636-17b7faf1ee7abb95","8f44c0a05190516-13bfbb28b49d8717"]},"geometry":{"type":"LineString","coordinates":[[-83.68381140000001,32.9052287],[-83.6838817,32.9051625],[-83.6838817,32.9051363],[-83.6837237,32.9050267]]},"id":"8b44c0a05190fff-13f7daead47dd828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837347,32.9048959]},"id":"8f44c0a05196ad9-13d7fb21d0914124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6833781,32.9048541]},"id":"8f44c0a051964c8-13bfdc00b988a734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196ad9-13d7fb21d0914124","8f44c0a051964c8-13bfdc00b988a734"]},"geometry":{"type":"LineString","coordinates":[[-83.6837347,32.9048959],[-83.6833781,32.9048541]]},"id":"8b44c0a05196fff-13deeb914aeeb756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6838293,32.904753500000005]},"id":"8f44c0a051944db-13fefae6b49564dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6834477,32.904706600000004]},"id":"8f44c0a05196cde-13f7abd532ec7a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196cde-13f7abd532ec7a08","8f44c0a051944db-13fefae6b49564dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6838293,32.904753500000005],[-83.6834477,32.904706600000004]]},"id":"8a44c0a05197fff-13f6db5dfa8f08cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6839041,32.9045982]},"id":"8f44c0a0519452e-139feab7fe0fdb2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6835178,32.904558]},"id":"8f44c0a05196d23-1396cba9686b4eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196d23-1396cba9686b4eb5","8f44c0a0519452e-139feab7fe0fdb2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6839041,32.9045982],[-83.6835178,32.904558]]},"id":"8944c0a051bffff-1397db30b8c0eb8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6844702,32.9048759]},"id":"8f44c0a051958a1-13dff956285fcad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68461,32.904973000000005]},"id":"8f44c0a05195b1c-139ea8fecdcadc1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05195b1c-139ea8fecdcadc1c","8f44c0a051958a1-13dff956285fcad8"]},"geometry":{"type":"LineString","coordinates":[[-83.6844702,32.9048759],[-83.68461,32.904973000000005]]},"id":"8b44c0a05195fff-13ffd92a7e5380a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735945,32.8021569]},"id":"8f44c0b0c622cb0-13961baa641b24aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73595180000001,32.8015859]},"id":"8f44c0b0c71ba92-179f3ba625a559fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c71ba92-179f3ba625a559fd","8f44c0b0c622cb0-13961baa641b24aa"]},"geometry":{"type":"LineString","coordinates":[[-83.735945,32.8021569],[-83.7345066,32.802149400000005],[-83.7345157,32.8015707],[-83.73595180000001,32.8015859]]},"id":"8844c0b0c7fffff-17dfadb4b0f11c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7359634,32.8006228]},"id":"8f44c0b0c71c52b-17d74b9eeefe5fd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73597360000001,32.799872400000005]},"id":"8f44c0b0c7158cc-13f64b9884b12b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c71c52b-17d74b9eeefe5fd0","8f44c0b0c7158cc-13f64b9884b12b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.7359634,32.8006228],[-83.734108,32.800607400000004],[-83.7340083,32.8005845],[-83.73395400000001,32.8005465],[-83.7339223,32.800493200000005],[-83.7339359,32.7999601],[-83.7339721,32.7999068],[-83.73405360000001,32.7998649],[-83.73597360000001,32.799872400000005]]},"id":"8844c0b0c7fffff-13d7ee6c5e3c2486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7377677,32.8006949]},"id":"8f44c0b0c72b55a-17f657373ca16d2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7359914,32.7986578]},"id":"8f44c0b0c734488-17ff2b8d609bf1d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c72b55a-17f657373ca16d2b","8f44c0b0c734488-17ff2b8d609bf1d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7377677,32.8006949],[-83.73778610000001,32.7993128],[-83.7379492,32.7991491],[-83.7380036,32.799012000000005],[-83.7380126,32.7988902],[-83.7380036,32.7987988],[-83.73793110000001,32.798722600000005],[-83.7359914,32.7986578]]},"id":"8744c0b0cffffff-13de5814eb6dd6b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73037380000001,32.8032265]},"id":"8f44c0b0eb4b733-13b699446d9eec45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7312203,32.803061500000005]},"id":"8f44c0b0eb49b6a-13bf77335831e783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4b733-13b699446d9eec45","8f44c0b0eb49b6a-13bf77335831e783"]},"geometry":{"type":"LineString","coordinates":[[-83.73037380000001,32.8032265],[-83.7303771,32.8030696],[-83.7312203,32.803061500000005]]},"id":"8a44c0b0eb4ffff-13d618645a9dde2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7311888,32.802394500000005]},"id":"8f44c0b0eb4d935-139e97470d2a1245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73119150000001,32.801816]},"id":"8f44c0b0eb68449-17bf1745515198cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb68449-17bf1745515198cd","8f44c0b0eb4d935-139e97470d2a1245"]},"geometry":{"type":"LineString","coordinates":[[-83.7311888,32.802394500000005],[-83.73119150000001,32.801816]]},"id":"8944c0b0eb7ffff-13f7d7463a7674ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7309876,32.802385900000004]},"id":"8f44c0b0eb4dd30-139737c4cd5661fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7309809,32.801818700000005]},"id":"8f44c0b0eb6aba3-17b6b7c8f6c34ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb6aba3-17b6b7c8f6c34ced","8f44c0b0eb4dd30-139737c4cd5661fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7309876,32.802385900000004],[-83.7309809,32.801818700000005]]},"id":"8944c0b0eb7ffff-13f7f7c6ea72829d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7307861,32.8023773]},"id":"8f44c0b0eb4c314-139fd842b1863c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7307955,32.8018212]},"id":"8f44c0b0eb6a1aa-17b6583cd7721f2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb6a1aa-17b6583cd7721f2f","8f44c0b0eb4c314-139fd842b1863c71"]},"geometry":{"type":"LineString","coordinates":[[-83.7307861,32.8023773],[-83.7307955,32.8018212]]},"id":"8944c0b0eb7ffff-13f6183fcca275e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7301599,32.801743300000005]},"id":"8f44c0b0eb40add-179799ca13d2a80a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7302291,32.8013677]},"id":"8f44c0b0eb44228-1796d99ed8fd7636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb40add-179799ca13d2a80a","8f44c0b0eb44228-1796d99ed8fd7636"]},"geometry":{"type":"LineString","coordinates":[[-83.7301599,32.801743300000005],[-83.7302291,32.8013677]]},"id":"8a44c0b0eb47fff-179e39b47b647da8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7301918,32.8023152]},"id":"8f44c0b0eb4ec5d-13f719b62e0bf71c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7301822,32.8032247]},"id":"8f44c0b0ea64b02-139f79bc28817c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4ec5d-13f719b62e0bf71c","8f44c0b0ea64b02-139f79bc28817c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.7301918,32.8023152],[-83.7301822,32.8032247]]},"id":"8944c0b0eb7ffff-139759b924cccf9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72995560000001,32.8032227]},"id":"8f44c0b0ea641aa-139e3a49c4460ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7299564,32.802332400000004]},"id":"8f44c0b0eb4e596-13f7da494dae832f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4e596-13f7da494dae832f","8f44c0b0ea641aa-139e3a49c4460ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.72995560000001,32.8032227],[-83.7299564,32.802332400000004]]},"id":"8944c0b0eb7ffff-139e1a498e5bbdd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7296936,32.8032203]},"id":"8f44c0b0ea66945-139ebaed8f4c9772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72968940000001,32.802352]},"id":"8f44c0b0eb5dc2e-13fe1af02dcbc82f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb5dc2e-13fe1af02dcbc82f","8f44c0b0ea66945-139ebaed8f4c9772"]},"geometry":{"type":"LineString","coordinates":[[-83.7296936,32.8032203],[-83.72968940000001,32.802352]]},"id":"8844c0b0ebfffff-139f7aeed4a601b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73338430000001,32.803858000000005]},"id":"8f44c0b0c6ae62a-17bf51eadc88f050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73337380000001,32.804677600000005]},"id":"8f44c0b0c68cada-17bf91f163b11745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ae62a-17bf51eadc88f050","8f44c0b0c68cada-17bf91f163b11745"]},"geometry":{"type":"LineString","coordinates":[[-83.73338430000001,32.803858000000005],[-83.73337380000001,32.804677600000005]]},"id":"8944c0b0c6bffff-17bf71ee1de65f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7331971,32.8047835]},"id":"8f44c0b0c68c64d-17ffb25fdb521e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7331992,32.8038572]},"id":"8f44c0b0c685a0d-17bed25e889eb00c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c685a0d-17bed25e889eb00c","8f44c0b0c68c64d-17ffb25fdb521e20"]},"geometry":{"type":"LineString","coordinates":[[-83.7331971,32.8047835],[-83.7331992,32.8038572]]},"id":"8944c0b0c6bffff-17de525f308789fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73299630000001,32.803856200000006]},"id":"8f44c0b0c68500b-17be32dd5e6ad627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7329907,32.8049072]},"id":"8f44c0b0c688cf3-17bf12e0d7e8ba70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c688cf3-17bf12e0d7e8ba70","8f44c0b0c68500b-17be32dd5e6ad627"]},"geometry":{"type":"LineString","coordinates":[[-83.73299630000001,32.803856200000006],[-83.7329907,32.8049072]]},"id":"8944c0b0c6bffff-17f692df1a728710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73280840000001,32.8050165]},"id":"8f44c0b0c68a86c-17ff5352c793b22f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7328129,32.8038867]},"id":"8f44c0b0c6857b6-17bf334ffe5e8d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68a86c-17ff5352c793b22f","8f44c0b0c6857b6-17bf334ffe5e8d35"]},"geometry":{"type":"LineString","coordinates":[[-83.73280840000001,32.8050165],[-83.7328129,32.8038867]]},"id":"8944c0b0c6bffff-179e535168f7b77c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7326251,32.8039009]},"id":"8f44c0b0c680b91-17d613c55dfbb5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7326127,32.8051338]},"id":"8f44c0b0c68a01c-17deb3cd1e3ebb0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68a01c-17deb3cd1e3ebb0f","8f44c0b0c680b91-17d613c55dfbb5b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7326251,32.8039009],[-83.7326127,32.8051338]]},"id":"8944c0b0c6bffff-17d773c938825812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7320433,32.8038953]},"id":"8f44c0b0c6828b3-17d69530f4eeb67c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73203240000001,32.8050592]},"id":"8f44c0b0c699c14-179e1537cd12e851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c699c14-179e1537cd12e851","8f44c0b0c6828b3-17d69530f4eeb67c"]},"geometry":{"type":"LineString","coordinates":[[-83.7320433,32.8038953],[-83.73203240000001,32.8050592]]},"id":"8944c0b0c6bffff-17be553457f4d897"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322173,32.8050657]},"id":"8f44c0b0c699989-179e14c433ae675c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73224160000001,32.8038972]},"id":"8f44c0b0c6804b4-17d7d4b506faf72b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c699989-179e14c433ae675c","8f44c0b0c6804b4-17d7d4b506faf72b"]},"geometry":{"type":"LineString","coordinates":[[-83.7322173,32.8050657],[-83.73224160000001,32.8038972]]},"id":"8944c0b0c6bffff-17b6f4bca276f1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69183310000001,32.819565600000004]},"id":"8f44c0b199ab372-1396f75c5057b8bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917882,32.8197518]},"id":"8f44c0b198364b2-13fef77866b656e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198364b2-13fef77866b656e3","8f44c0b199ab372-1396f75c5057b8bb"]},"geometry":{"type":"LineString","coordinates":[[-83.69183310000001,32.819565600000004],[-83.6917882,32.8197518]]},"id":"8944c0b199bffff-13bef76a5a451a27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917507,32.8189396]},"id":"8f44c0b199a81b6-13ff778fd306a560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a81b6-13ff778fd306a560","8f44c0b199ab372-1396f75c5057b8bb"]},"geometry":{"type":"LineString","coordinates":[[-83.69183310000001,32.819565600000004],[-83.6917507,32.8189396]]},"id":"8a44c0b199affff-13d6f7761041db3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6921995,32.8196543]},"id":"8f44c0b19836876-13bff6775b490ec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6921032,32.8189147]},"id":"8f44c0b199ad418-13fff6b38b3527e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ad418-13fff6b38b3527e2","8f44c0b19836876-13bff6775b490ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.6921995,32.8196543],[-83.6921032,32.8189147]]},"id":"8844c0b199fffff-13d6f69572c19f95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6920197,32.8196108]},"id":"8f44c0b19836d53-13b6f6e7b061f066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69192290000001,32.8189274]},"id":"8f44c0b199a88e3-13f7f7243233e458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19836d53-13b6f6e7b061f066","8f44c0b199a88e3-13f7f7243233e458"]},"geometry":{"type":"LineString","coordinates":[[-83.6920197,32.8196108],[-83.69192290000001,32.8189274]]},"id":"8944c0b199bffff-13df7705fa6ccb12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910963,32.8196537]},"id":"8f44c0b1998c7a8-13bff928da39c54f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910057,32.818879100000004]},"id":"8f44c0b199853b0-13d779617e098e65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199853b0-13d779617e098e65","8f44c0b1998c7a8-13bff928da39c54f"]},"geometry":{"type":"LineString","coordinates":[[-83.6910963,32.8196537],[-83.6910057,32.818879100000004]]},"id":"8944c0b199bffff-13dff9452b306265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6922648,32.8189033]},"id":"8f44c0b199ad0a5-13f6f64e87498970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6924255,32.819945700000005]},"id":"8f44c0b19830d4c-13f675ea102e045b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19830d4c-13f675ea102e045b","8f44c0b199ad0a5-13f6f64e87498970"]},"geometry":{"type":"LineString","coordinates":[[-83.6922648,32.8189033],[-83.6924255,32.819945700000005]]},"id":"8844c0b199fffff-13be761c5784b2cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69259620000001,32.819993700000005]},"id":"8f44c0b19830861-1796757f6e3758aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6924353,32.818906600000005]},"id":"8f44c0b199adb99-13fef5e3f2e34a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199adb99-13fef5e3f2e34a08","8f44c0b19830861-1796757f6e3758aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69259620000001,32.819993700000005],[-83.6924353,32.818906600000005]]},"id":"8844c0b199fffff-13be75b1a369a6ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926064,32.818890100000004]},"id":"8f44c0b1991e794-13de75790400ea9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927818,32.8200252]},"id":"8f44c0b1983546e-17b7f50b6accbf03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1983546e-17b7f50b6accbf03","8f44c0b1991e794-13de75790400ea9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6926064,32.818890100000004],[-83.6927818,32.8200252]]},"id":"8844c0b199fffff-13d7754237f73329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6929489,32.820047800000005]},"id":"8f44c0b19835043-17b7f4a2f2921982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69278410000001,32.8188729]},"id":"8f44c0b1991e0ea-13d7f509ffdb5468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991e0ea-13d7f509ffdb5468","8f44c0b19835043-17b7f4a2f2921982"]},"geometry":{"type":"LineString","coordinates":[[-83.6929489,32.820047800000005],[-83.69278410000001,32.8188729]]},"id":"8844c0b199fffff-13d6f4d670609849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935031,32.8199083]},"id":"8f44c0b19826a84-13def3489e288dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6933314,32.8188248]},"id":"8f44c0b1991c236-13b7f3b3e8d7ce70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19826a84-13def3489e288dc3","8f44c0b1991c236-13b7f3b3e8d7ce70"]},"geometry":{"type":"LineString","coordinates":[[-83.6935031,32.8199083],[-83.6933314,32.8188248]]},"id":"8844c0b199fffff-139e737e3d7a8f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69316280000001,32.8188364]},"id":"8f44c0b1991c600-13bef41d49cdb565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69331530000001,32.8199076]},"id":"8f44c0b19826080-13de73bdf11277ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19826080-13de73bdf11277ad","8f44c0b1991c600-13bef41d49cdb565"]},"geometry":{"type":"LineString","coordinates":[[-83.69316280000001,32.8188364],[-83.69331530000001,32.8199076]]},"id":"8844c0b199fffff-139ff3ed93339c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69183790000001,32.8179256]},"id":"8f44c0b199a5328-1797f7595c9a7b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69123490000001,32.8179912]},"id":"8f44c0b199a00ee-17bef8d23f8ec3bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a5328-1797f7595c9a7b99","8f44c0b199a00ee-17bef8d23f8ec3bf"]},"geometry":{"type":"LineString","coordinates":[[-83.69183790000001,32.8179256],[-83.69123490000001,32.8179912]]},"id":"8a44c0b199a7fff-179e7815c44aa62a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918557,32.8180612]},"id":"8f44c0b199a524b-17de774e343e77cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913222,32.8181153]},"id":"8f44c0b199a020b-17fe789ba1de7b9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a020b-17fe789ba1de7b9b","8f44c0b199a524b-17de774e343e77cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6918557,32.8180612],[-83.6913222,32.8181153]]},"id":"8a44c0b199a7fff-17ff77f4e28e0e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69187360000001,32.8181978]},"id":"8f44c0b199124c5-17bff7430e495f32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69140920000001,32.8182392]},"id":"8f44c0b199a1405-17d7f8654be1b067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a1405-17d7f8654be1b067","8f44c0b199124c5-17bff7430e495f32"]},"geometry":{"type":"LineString","coordinates":[[-83.69187360000001,32.8181978],[-83.69140920000001,32.8182392]]},"id":"8a44c0b199a7fff-17bef7d424553620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69189250000001,32.8183421]},"id":"8f44c0b199acd24-1397f737389d5e85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69148600000001,32.8183882]},"id":"8f44c0b199a1604-13b6f83547ca74ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a1604-13b6f83547ca74ff","8f44c0b199acd24-1397f737389d5e85"]},"geometry":{"type":"LineString","coordinates":[[-83.69189250000001,32.8183421],[-83.69148600000001,32.8183882]]},"id":"8944c0b199bffff-139677b63e77cb97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68916660000001,32.8161031]},"id":"8f44c0b1d6e1226-13967ddeefee2eb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6888923,32.815829300000004]},"id":"8f44c0b1d6e1c90-13f77e8a57da7b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e1c90-13f77e8a57da7b72","8f44c0b1d6e1226-13967ddeefee2eb8"]},"geometry":{"type":"LineString","coordinates":[[-83.68916660000001,32.8161031],[-83.6888923,32.815829300000004]]},"id":"8b44c0b1d6e1fff-13befe34933c456d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898444,32.816198400000005]},"id":"8f44c0b1d653084-13de7c374e220202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69020850000001,32.8158941]},"id":"8f44c0b1d65036e-139ffb53b6a8afdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d653084-13de7c374e220202","8f44c0b1d65036e-139ffb53b6a8afdc"]},"geometry":{"type":"LineString","coordinates":[[-83.6898444,32.816198400000005],[-83.69020850000001,32.8158941]]},"id":"8a44c0b1d657fff-13fefbc58bdafcdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68969600000001,32.816068300000005]},"id":"8f44c0b1d652240-13fefc940b307057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68991820000001,32.815879800000005]},"id":"8f44c0b1d650630-1396fc0923f6ed0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d650630-1396fc0923f6ed0c","8f44c0b1d652240-13fefc940b307057"]},"geometry":{"type":"LineString","coordinates":[[-83.68969600000001,32.816068300000005],[-83.68991820000001,32.815879800000005]]},"id":"8a44c0b1d657fff-13bffc4e9caa5b1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68962450000001,32.8166061]},"id":"8f44c0b1d6ed42e-13defcc0b7ec5761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896145,32.8171405]},"id":"8f44c0b1d6e9728-179efcc6f8a3df4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e9728-179efcc6f8a3df4c","8f44c0b1d6ed42e-13defcc0b7ec5761"]},"geometry":{"type":"LineString","coordinates":[[-83.68962450000001,32.8166061],[-83.6896145,32.8171405]]},"id":"8a44c0b1d6effff-17f7fcc3dd0ed2ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898037,32.8171212]},"id":"8f44c0b1d6e9a8b-179efc50bb5100d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898244,32.8167198]},"id":"8f44c0b1d6ed3b1-1797fc43cfd1270a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ed3b1-1797fc43cfd1270a","8f44c0b1d6e9a8b-179efc50bb5100d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6898037,32.8171212],[-83.6898244,32.8167198]]},"id":"8a44c0b1d6effff-179f7c4a41b7ca20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893905,32.816753]},"id":"8f44c0b1d6e8065-17b6fd52fdc6f1ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68939710000001,32.8171625]},"id":"8f44c0b1d6eba20-17b6fd4ed229b441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6eba20-17b6fd4ed229b441","8f44c0b1d6e8065-17b6fd52fdc6f1ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6893905,32.816753],[-83.68939710000001,32.8171625]]},"id":"8a44c0b1d6effff-17b6fd50e0aed67b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892122,32.817179100000004]},"id":"8f44c0b1d6eb00c-17b6fdc261a8d24d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68920320000001,32.8167326]},"id":"8f44c0b1d6e854b-179ffdc802dd0c64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e854b-179ffdc802dd0c64","8f44c0b1d6eb00c-17b6fdc261a8d24d"]},"geometry":{"type":"LineString","coordinates":[[-83.6892122,32.817179100000004],[-83.68920320000001,32.8167326]]},"id":"8a44c0b1d6effff-17b77dc53e01a929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67231290000001,32.815031600000005]},"id":"8f44c0b18058920-17f6e7047b594996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6716255,32.8150172]},"id":"8f44c0b180edb6c-17ffe8b2180ffb2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18058920-17f6e7047b594996","8f44c0b180edb6c-17ffe8b2180ffb2b"]},"geometry":{"type":"LineString","coordinates":[[-83.67231290000001,32.815031600000005],[-83.6722452,32.8162779],[-83.67219730000001,32.816414800000004],[-83.6719801,32.8164899],[-83.6715712,32.8164792],[-83.6716255,32.8150172]]},"id":"8744c0b18ffffff-1396b7f9da419371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66511820000001,32.816430100000005]},"id":"8f44c0b1871e008-13def895279a769b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663982,32.8164113]},"id":"8f44c0b187a8d90-13d7bb5b4ffda12c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a8d90-13d7bb5b4ffda12c","8f44c0b1871e008-13def895279a769b"]},"geometry":{"type":"LineString","coordinates":[[-83.66511820000001,32.816430100000005],[-83.663982,32.8164113]]},"id":"8844c0b187fffff-13d6f9f83fed515c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66512390000001,32.8162261]},"id":"8f44c0b1871e993-13dff89191f22fbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639942,32.8162152]},"id":"8f44c0b187ac49b-13d6bb53a65874e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187ac49b-13d6bb53a65874e1","8f44c0b1871e993-13dff89191f22fbf"]},"geometry":{"type":"LineString","coordinates":[[-83.66512390000001,32.8162261],[-83.6639942,32.8162152]]},"id":"8844c0b187fffff-13dff9f299c9e179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66512900000001,32.8160462]},"id":"8f44c0b18711706-13fef88e6e48d8d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66400630000001,32.8160219]},"id":"8f44c0b187a120c-13dfbb4c1bef57d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a120c-13dfbb4c1bef57d8","8f44c0b18711706-13fef88e6e48d8d2"]},"geometry":{"type":"LineString","coordinates":[[-83.66512900000001,32.8160462],[-83.66400630000001,32.8160219]]},"id":"8844c0b187fffff-13f7f9ed33802a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651348,32.8158423]},"id":"8f44c0b18711c19-13fff88ac6c98c31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66401660000001,32.8158416]},"id":"8f44c0b187a1b9e-13ffbb45af65298b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18711c19-13fff88ac6c98c31","8f44c0b187a1b9e-13ffbb45af65298b"]},"geometry":{"type":"LineString","coordinates":[[-83.6651348,32.8158423],[-83.66401660000001,32.8158416]]},"id":"8844c0b187fffff-13fff9e83f729d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651392,32.8156837]},"id":"8f44c0b18715696-139ef88805e341ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640248,32.8156625]},"id":"8f44c0b187a1903-13ffbb4083c490f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18715696-139ef88805e341ab","8f44c0b187a1903-13ffbb4083c490f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6651392,32.8156837],[-83.6640248,32.8156625]]},"id":"8844c0b187fffff-1397b9e448d15365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651441,32.8155121]},"id":"8f44c0b18715433-139fb884feb7f6ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66403290000001,32.815488]},"id":"8f44c0b187a50e8-1396bb3b79ddba89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a50e8-1396bb3b79ddba89","8f44c0b18715433-139fb884feb7f6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6651441,32.8155121],[-83.66403290000001,32.815488]]},"id":"8844c0b187fffff-1397b9e035cd0dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66514910000001,32.8153348]},"id":"8f44c0b18714362-13b6f881d3e3381f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a589b-13befb36e5ef7412","8f44c0b18714362-13b6f881d3e3381f"]},"geometry":{"type":"LineString","coordinates":[[-83.66514910000001,32.8153348],[-83.6640402,32.8153293]]},"id":"8844c0b187fffff-13beb9dc6db26b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651545,32.8151418]},"id":"8f44c0b18714848-13b7b87e7badef84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640496,32.815125300000005]},"id":"8f44c0b1844b604-13bffb31090b89f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844b604-13bffb31090b89f4","8f44c0b18714848-13b7b87e7badef84"]},"geometry":{"type":"LineString","coordinates":[[-83.6651545,32.8151418],[-83.6640496,32.815125300000005]]},"id":"8844c0b187fffff-13b6f9d7c7094ef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662592,32.815265100000005]},"id":"8f44c0b187b5562-1396bec005a71508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625954,32.8150738]},"id":"8f44c0b187b4a4a-139fbebde450110d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187b4a4a-139fbebde450110d","8f44c0b187b5562-1396bec005a71508"]},"geometry":{"type":"LineString","coordinates":[[-83.662592,32.815265100000005],[-83.6625954,32.8150738]]},"id":"8a44c0b187b7fff-13defebefb38940e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6614581,32.8153092]},"id":"8f44c0b184cd3a8-13b6c184b7ea0eba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6614548,32.8154539]},"id":"8f44c0b184c9960-13fef186c1c926e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c9960-13fef186c1c926e8","8f44c0b184cd3a8-13b6c184b7ea0eba"]},"geometry":{"type":"LineString","coordinates":[[-83.6614581,32.8153092],[-83.6614548,32.8154539]]},"id":"8a44c0b184cffff-13dff185c3518603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6234639,32.8330627]},"id":"8f44c0a369226d5-13ff3e4717f962a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624424,32.831842]},"id":"8f44c0ba928a8c9-13ff5bef0d2c058c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369226d5-13ff3e4717f962a5","8f44c0ba928a8c9-13ff5bef0d2c058c"]},"geometry":{"type":"LineString","coordinates":[[-83.6234639,32.8330627],[-83.62384800000001,32.832583],[-83.62432100000001,32.831957],[-83.6243567,32.8319172],[-83.624424,32.831842]]},"id":"8744c0ba9ffffff-13ff7d1b4f707e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6222633,32.8335632]},"id":"8f44c0a36910b2e-17b721357f246ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6215537,32.8340823]},"id":"8f44c0a369ac8e9-17f772f0f56109df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36910b2e-17b721357f246ef0","8f44c0a369ac8e9-17f772f0f56109df"]},"geometry":{"type":"LineString","coordinates":[[-83.6222633,32.8335632],[-83.6220907,32.8334536],[-83.6215537,32.8340823]]},"id":"8844c0a369fffff-1797f21d3ef3b0dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61994340000001,32.8393237]},"id":"8f44c0a368d618b-13d776df63eb1698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6219751,32.840127200000005]},"id":"8f44c0a368c10ab-17b7a1e995fb6fbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368c10ab-17b7a1e995fb6fbe","8f44c0a368d618b-13d776df63eb1698"]},"geometry":{"type":"LineString","coordinates":[[-83.61994340000001,32.8393237],[-83.62025460000001,32.8394749],[-83.620751,32.8397554],[-83.62097990000001,32.8399544],[-83.62117190000001,32.840016600000006],[-83.62143800000001,32.840057200000004],[-83.6217481,32.840102300000005],[-83.6219751,32.840127200000005]]},"id":"8944c0a368fffff-17f77476b44c082d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68749000000001,32.83688]},"id":"8f44c0b1929e5a5-17de81f6ca48f6e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876572,32.837022600000005]},"id":"8f44c0b1929e0d0-17b7a18e49f6fae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1929e5a5-17de81f6ca48f6e5","8f44c0b1929e0d0-17b7a18e49f6fae2"]},"geometry":{"type":"LineString","coordinates":[[-83.68749000000001,32.83688],[-83.6875213,32.836949000000004],[-83.6875687,32.836995300000005],[-83.6875751,32.8369992],[-83.6875978,32.837013400000004],[-83.6876572,32.837022600000005]]},"id":"8b44c0b1929efff-1796c1cbb675f6d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687488,32.83625]},"id":"8f44c0b19290050-13d6c1f80f63c1c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1929e5a5-17de81f6ca48f6e5","8f44c0b19290050-13d6c1f80f63c1c5"]},"geometry":{"type":"LineString","coordinates":[[-83.687488,32.83625],[-83.687486,32.836591],[-83.687478,32.836719],[-83.687481,32.836855],[-83.68749000000001,32.83688]]},"id":"8944c0b192bffff-1797a1fa5c6cbcfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876574,32.8369317]},"id":"8f44c0b1929e18e-17fed18e26e2e395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1929e5a5-17de81f6ca48f6e5","8f44c0b1929e18e-17fed18e26e2e395"]},"geometry":{"type":"LineString","coordinates":[[-83.6876574,32.8369317],[-83.6875969,32.8369305],[-83.68757500000001,32.83693],[-83.687543,32.836923],[-83.68751400000001,32.836905],[-83.68749000000001,32.83688]]},"id":"8b44c0b1929efff-17f6d1c5e35fc8c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64915210000001,32.8416439]},"id":"8f44c0a34af12c6-13ffff8ffdff6c38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6483475,32.8422847]},"id":"8f44c0a34ad1c63-13fff186d5cc1792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34af12c6-13ffff8ffdff6c38","8f44c0a34ad1c63-13fff186d5cc1792"]},"geometry":{"type":"LineString","coordinates":[[-83.64915210000001,32.8416439],[-83.649021,32.841891700000005],[-83.64897330000001,32.8419819],[-83.64881360000001,32.842284400000004],[-83.64874060000001,32.8423807],[-83.64870420000001,32.8423913],[-83.6483475,32.8422847]]},"id":"8944c0a34afffff-1397e05fc5568482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626612,32.814139700000005]},"id":"8f44c0b1845e064-17d7fe94c7449ce0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626617,32.8139391]},"id":"8f44c0b1845e9aa-17d7fe947c121759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845e064-17d7fe94c7449ce0","8f44c0b1845e9aa-17d7fe947c121759"]},"geometry":{"type":"LineString","coordinates":[[-83.6626612,32.814139700000005],[-83.6626617,32.8139391]]},"id":"8b44c0b1845efff-1796be94a13853a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626741,32.8136906]},"id":"8f44c0b18451012-17bebe8cbfe1c409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625977,32.8132922]},"id":"8f44c0b184554d6-13b7bebc70a83076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18451012-17bebe8cbfe1c409","8f44c0b184554d6-13b7bebc70a83076"]},"geometry":{"type":"LineString","coordinates":[[-83.6626741,32.8136906],[-83.6626787,32.813409300000004],[-83.662608,32.813343700000004],[-83.6625977,32.8132922]]},"id":"8a44c0b18457fff-17befe958c002c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69771250000001,32.8153536]},"id":"8f44c0b1d21d7a9-13be6901bce5e6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6983962,32.815218]},"id":"8f44c0b1d20e330-13f767566a2789e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d21d7a9-13be6901bce5e6be","8f44c0b1d20e330-13f767566a2789e3"]},"geometry":{"type":"LineString","coordinates":[[-83.69771250000001,32.8153536],[-83.6977578,32.8153997],[-83.6978443,32.8154185],[-83.69819720000001,32.8154197],[-83.6983019,32.8153768],[-83.6983962,32.815218]]},"id":"8944c0b1d23ffff-13def81b4e55445c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d21d7a9-13be6901bce5e6be","8f44c0b1d20e330-13f767566a2789e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6983962,32.815218],[-83.6978594,32.8151929],[-83.6977854,32.815197000000005],[-83.69773830000001,32.815227900000004],[-83.6977075,32.8152819],[-83.69771250000001,32.8153536]]},"id":"8944c0b1d23ffff-13f7f84ae50316d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6984613,32.8151084]},"id":"8f44c0b1d20eba3-13b6e72dbe1ae60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d20eba3-13b6e72dbe1ae60a","8f44c0b1d20e330-13f767566a2789e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6984613,32.8151084],[-83.6983962,32.815218]]},"id":"8b44c0b1d20efff-13d767421536567a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697478,32.8153505]},"id":"8f44c0b1d218b9d-13be799443f62488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d21d7a9-13be6901bce5e6be","8f44c0b1d218b9d-13be799443f62488"]},"geometry":{"type":"LineString","coordinates":[[-83.69771250000001,32.8153536],[-83.697478,32.8153505]]},"id":"8a44c0b1d21ffff-13bf794af1ce3e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6951082,32.82124]},"id":"8f44c0b1995e695-179f6f5d6b1d4225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6952638,32.8210949]},"id":"8f44c0b1995e013-17d67efc2ccbd1bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995e013-17d67efc2ccbd1bc","8f44c0b1995e695-179f6f5d6b1d4225"]},"geometry":{"type":"LineString","coordinates":[[-83.6951082,32.82124],[-83.69515720000001,32.8210732],[-83.6952638,32.8210949]]},"id":"8b44c0b1995efff-17d77f3b6ac41045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68746700000001,32.8215343]},"id":"8f44c0b19c651a3-17d6f20527505926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728630000001,32.8215506]},"id":"8f44c0b19c6558d-17dfa27613ec1d42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c651a3-17d6f20527505926","8f44c0b19c6558d-17dfa27613ec1d42"]},"geometry":{"type":"LineString","coordinates":[[-83.68746700000001,32.8215343],[-83.68728630000001,32.8215506]]},"id":"8b44c0b19c65fff-17de923da4389e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68807120000001,32.8212787]},"id":"8f44c0b19896916-17b7b08b84b6ecd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6880237,32.821052300000005]},"id":"8f44c0b19d490b0-17b7b0a93601a27b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19896916-17b7b08b84b6ecd8","8f44c0b19d490b0-17b7b0a93601a27b"]},"geometry":{"type":"LineString","coordinates":[[-83.68807120000001,32.8212787],[-83.6880237,32.821052300000005]]},"id":"8b44c0b19d49fff-17fef09a6859a023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61625790000001,32.8571369]},"id":"8f44c0a3283119a-17bfbfded4cf7169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6161345,32.8573285]},"id":"8f44c0a32831693-17b7702bf964c642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32831693-17b7702bf964c642","8f44c0a3283119a-17bfbfded4cf7169"]},"geometry":{"type":"LineString","coordinates":[[-83.61625790000001,32.8571369],[-83.6161345,32.8573285]]},"id":"8b44c0a32831fff-17ff700567837b71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61768260000001,32.8546336]},"id":"8f44c0a32904359-13b72c646f5d3eb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176933,32.854450400000005]},"id":"8f44c0a32904b8c-13bfac5db9bc464a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32904b8c-13bfac5db9bc464a","8f44c0a32904359-13b72c646f5d3eb7"]},"geometry":{"type":"LineString","coordinates":[[-83.61768260000001,32.8546336],[-83.6176933,32.854450400000005]]},"id":"8b44c0a32904fff-13ffec611d3293da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7210041,32.8128991]},"id":"8f44c0b0e2ce123-13bff0247fe307fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7207552,32.8132061]},"id":"8f44c0b0e2cadad-13fff0c00d53bd86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2ce123-13bff0247fe307fc","8f44c0b0e2cadad-13fff0c00d53bd86"]},"geometry":{"type":"LineString","coordinates":[[-83.7210041,32.8128991],[-83.7207552,32.8132061]]},"id":"8a44c0b0e2cffff-139ff07243561ee4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72052190000001,32.8135246]},"id":"8f44c0b0e2d9aa5-17d6f151d4cabc2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206168,32.813129]},"id":"8f44c0b0e2dda8e-13dfb116890be388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2dda8e-13dfb116890be388","8f44c0b0e2d9aa5-17d6f151d4cabc2b"]},"geometry":{"type":"LineString","coordinates":[[-83.72052190000001,32.8135246],[-83.7205193,32.8134025],[-83.720529,32.8132819],[-83.72056660000001,32.8131858],[-83.7206168,32.813129]]},"id":"8a44c0b0e2dffff-13d7b145e485ceec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203697,32.8135239]},"id":"8f44c0b0e2d9003-17d671b0f98575c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2d9003-17d671b0f98575c8","8f44c0b0e2d9aa5-17d6f151d4cabc2b"]},"geometry":{"type":"LineString","coordinates":[[-83.72052190000001,32.8135246],[-83.7203697,32.8135239]]},"id":"8b44c0b0e2d9fff-17d6b1816dd45b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7213564,32.813529]},"id":"8f44c0b0e2cb92e-17d7af484a294a46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7211255,32.813527400000005]},"id":"8f44c0b0e2cbd1e-17d6afd89b26ad5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cb92e-17d7af484a294a46","8f44c0b0e2cbd1e-17d6afd89b26ad5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7213564,32.813529],[-83.7211255,32.813527400000005]]},"id":"8a44c0b0e2cffff-17d72f906b4b95b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7211231,32.8136829]},"id":"8f44c0b0e2cb192-17b7ffda18a43499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cb192-17b7ffda18a43499","8f44c0b0e2cbd1e-17d6afd89b26ad5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7211231,32.8136829],[-83.72112460000001,32.8135824],[-83.7211255,32.813527400000005]]},"id":"8b44c0b0e2cbfff-17f73fd95cb56c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917246,32.821072900000004]},"id":"8f44c0b19810028-17b6f7a02e61e1a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69171270000001,32.8207667]},"id":"8f44c0b19814631-17f777a7954e4a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19814631-17f777a7954e4a8f","8f44c0b19810028-17b6f7a02e61e1a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6917246,32.821072900000004],[-83.69171270000001,32.8207667]]},"id":"8a44c0b19817fff-17d6f7a3d19e8643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915475,32.8209511]},"id":"8f44c0b19810c8e-17f6780ed221519c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914115,32.8210268]},"id":"8f44c0b1981296a-1797f863d988f48c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810c8e-17f6780ed221519c","8f44c0b1981296a-1797f863d988f48c"]},"geometry":{"type":"LineString","coordinates":[[-83.6915475,32.8209511],[-83.6914115,32.8210268]]},"id":"8a44c0b19817fff-17fe783958f9b2d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915505,32.821079000000005]},"id":"8f44c0b19810470-17b6780cf0976e3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911924,32.8210968]},"id":"8f44c0b19812c4a-17d7f8eccf4ae234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810470-17b6780cf0976e3d","8f44c0b19812c4a-17d7f8eccf4ae234"]},"geometry":{"type":"LineString","coordinates":[[-83.6915505,32.821079000000005],[-83.69146740000001,32.8211071],[-83.6912578,32.8211145],[-83.6911924,32.8210968]]},"id":"8a44c0b19817fff-17d7787c64383c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71519550000001,32.8162468]},"id":"8f44c0b0a8138cd-13fe7e52d0a65f43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7148781,32.816360800000005]},"id":"8f44c0b0a8134dc-13b7bf193e5ef5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8138cd-13fe7e52d0a65f43","8f44c0b0a8134dc-13b7bf193e5ef5e5"]},"geometry":{"type":"LineString","coordinates":[[-83.71519550000001,32.8162468],[-83.71508920000001,32.8160283],[-83.71506020000001,32.815973400000004],[-83.71502550000001,32.8159445],[-83.71496160000001,32.8159288],[-83.7149076,32.815934500000004],[-83.714748,32.8160021],[-83.7147276,32.816024],[-83.7147188,32.816045],[-83.7147183,32.8160686],[-83.7147456,32.8161275],[-83.7148781,32.816360800000005]]},"id":"8a44c0b0a817fff-13973efd4eb2821c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633348,32.816623]},"id":"8f44c0b1878192c-13d7fcefcdb2dab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628094,32.8163191]},"id":"8f44c0b18780d71-1397fe3821e93d15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b18780d71-1397fe3821e93d15","8f44c0b1878192c-13d7fcefcdb2dab0"]},"geometry":{"type":"LineString","coordinates":[[-83.6633348,32.816623],[-83.66322960000001,32.8165864],[-83.6630808,32.8165361],[-83.6630081,32.816502400000005],[-83.66293660000001,32.816445900000005],[-83.6628094,32.8163191]]},"id":"8a44c0b18787fff-1397fd9eaa502596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6295204,32.8448593]},"id":"8f44c0a36b59509-13d71f7dc96bedf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6297115,32.8446161]},"id":"8f44c0a36b5d62a-13bf1f06573e0814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5d62a-13bf1f06573e0814","8f44c0a36b59509-13d71f7dc96bedf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6295204,32.8448593],[-83.6297115,32.8446161]]},"id":"8a44c0a36b5ffff-13ff1f42124ef460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62933930000001,32.8447759]},"id":"8f44c0a36b5828b-1397ffeefa054caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6295331,32.8445211]},"id":"8f44c0a36b58b23-17f7bf75d7d12b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b58b23-17f7bf75d7d12b57","8f44c0a36b5828b-1397ffeefa054caf"]},"geometry":{"type":"LineString","coordinates":[[-83.62933930000001,32.8447759],[-83.6295331,32.8445211]]},"id":"8b44c0a36b58fff-13d75fb2655b14c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6460076,32.8146998]},"id":"8f44c0b1a1add96-17b7e73d4e933e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456086,32.8142815]},"id":"8f44c0b1a1a1aac-179ff836a841a589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1add96-17b7e73d4e933e47","8f44c0b1a1a1aac-179ff836a841a589"]},"geometry":{"type":"LineString","coordinates":[[-83.6460076,32.8146998],[-83.6458753,32.8147001],[-83.6457867,32.8147016],[-83.64573250000001,32.814702600000004],[-83.6456728,32.814695],[-83.64564370000001,32.814685000000004],[-83.6456216,32.814660100000005],[-83.64561300000001,32.814618800000005],[-83.6456096,32.8144055],[-83.6456086,32.8142815]]},"id":"8944c0b1a1bffff-17def7f5b7c16e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6240489,32.8482031]},"id":"8f44c0a36328b66-13fffcd9737e584e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6240554,32.8483889]},"id":"8f44c0a36329c06-13f71cd56380881a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36328b66-13fffcd9737e584e","8f44c0a36329c06-13f71cd56380881a"]},"geometry":{"type":"LineString","coordinates":[[-83.6240489,32.8482031],[-83.6240554,32.8483889]]},"id":"8a44c0a3632ffff-13bf1cd768292fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62381660000001,32.8483869]},"id":"8f44c0a363282a3-13f7dd6aa4bf8dd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6238191,32.848571400000004]},"id":"8f44c0a3632b843-13d73d6915cb44cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632b843-13d73d6915cb44cb","8f44c0a363282a3-13f7dd6aa4bf8dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.62381660000001,32.8483869],[-83.6238191,32.848571400000004]]},"id":"8a44c0a3632ffff-139f9d69d7113cc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6235991,32.84839]},"id":"8f44c0a3632869e-13f7ddf29293f8a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623604,32.848670500000004]},"id":"8f44c0a3632b085-13971def8c5d9ffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632b085-13971def8c5d9ffb","8f44c0a3632869e-13f7ddf29293f8a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6235991,32.84839],[-83.623604,32.848670500000004]]},"id":"8a44c0a3632ffff-13bf7df112e7167b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62569280000001,32.8482136]},"id":"8f44c0a36addb93-13f798d606bde907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625884,32.848496000000004]},"id":"8f44c0a36aca1b0-13b7185e85d5f3cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36addb93-13f798d606bde907","8f44c0a36aca1b0-13b7185e85d5f3cf"]},"geometry":{"type":"LineString","coordinates":[[-83.62569280000001,32.8482136],[-83.6256972,32.8482982],[-83.62575550000001,32.848409600000004],[-83.625884,32.848496000000004]]},"id":"8944c0a36afffff-13df38acd8c2034e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62558990000001,32.8486196]},"id":"8f44c0a36ad9bb0-13f759165bacc2fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62521170000001,32.8488458]},"id":"8f44c0a36adba5c-1397ba02b477656d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36adba5c-1397ba02b477656d","8f44c0a36ad9bb0-13f759165bacc2fb"]},"geometry":{"type":"LineString","coordinates":[[-83.62558990000001,32.8486196],[-83.6253978,32.8487183],[-83.62521170000001,32.8488458]]},"id":"8a44c0a36adffff-13b7398eccdc78ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6254492,32.8483163]},"id":"8f44c0a36add7a3-13b7b96e418f6c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6250333,32.848401100000004]},"id":"8f44c0a36ad8720-13ffba723b63fe7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ad8720-13ffba723b63fe7f","8f44c0a36add7a3-13b7b96e418f6c83"]},"geometry":{"type":"LineString","coordinates":[[-83.6254492,32.8483163],[-83.62518630000001,32.8483625],[-83.6250333,32.848401100000004]]},"id":"8a44c0a36adffff-13df19f0bbe149c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62489000000001,32.849014100000005]},"id":"8f44c0a36375990-13ffdacbcc1877d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36375990-13ffdacbcc1877d1","8f44c0a36adba5c-1397ba02b477656d"]},"geometry":{"type":"LineString","coordinates":[[-83.62521170000001,32.8488458],[-83.62508550000001,32.8489548],[-83.62489000000001,32.849014100000005]]},"id":"8944c0a3637ffff-13bfba618cf77d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6244594,32.8494134]},"id":"8f44c0a36370313-13f77bd8e9cfd8e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6240235,32.8490632]},"id":"8f44c0a363760cc-139f9ce957227b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36370313-13f77bd8e9cfd8e6","8f44c0a363760cc-139f9ce957227b0e"]},"geometry":{"type":"LineString","coordinates":[[-83.6244594,32.8494134],[-83.6241768,32.848992200000005],[-83.6240235,32.8490632]]},"id":"8a44c0a36377fff-13d77c5347b563e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624032,32.849546100000005]},"id":"8f44c0a36372354-17b75ce4018449fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62367540000001,32.8496261]},"id":"8f44c0a36354da5-17ff5dc2e6bd71a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36354da5-17ff5dc2e6bd71a5","8f44c0a36372354-17b75ce4018449fa"]},"geometry":{"type":"LineString","coordinates":[[-83.624032,32.849546100000005],[-83.6239213,32.849363600000004],[-83.6236461,32.849451800000004],[-83.62367540000001,32.8496261]]},"id":"8944c0a3637ffff-13ff7d6d578d4c98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6231903,32.8495847]},"id":"8f44c0a3630bb2d-17df7ef212d71763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6230793,32.8498518]},"id":"8f44c0a3630b25d-17f77f377740d826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3630bb2d-17df7ef212d71763","8f44c0a3630b25d-17f77f377740d826"]},"geometry":{"type":"LineString","coordinates":[[-83.6231903,32.8495847],[-83.62305070000001,32.8496919],[-83.6230793,32.8498518]]},"id":"8a44c0a3630ffff-179f1f2e5b65aeaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456776,32.8560638]},"id":"8f44c0a30b26a72-179fe80b863ed1cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64532720000001,32.856242300000005]},"id":"8f44c0a30b266d9-179ff8e683f15c10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b266d9-179ff8e683f15c10","8f44c0a30b26a72-179fe80b863ed1cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6456776,32.8560638],[-83.64532720000001,32.856242300000005]]},"id":"8a44c0a30b27fff-17d7f8790a0cdd49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6457555,32.8557038]},"id":"8f44c0a35499365-13bee7dad788fb40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456148,32.8554921]},"id":"8f44c0a3549988a-13bef832c8ddbccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499365-13bee7dad788fb40","8f44c0a3549988a-13bef832c8ddbccd"]},"geometry":{"type":"LineString","coordinates":[[-83.6457555,32.8557038],[-83.6456148,32.8554921]]},"id":"8b44c0a35499fff-13fee806d38c9214"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6452062,32.8549965]},"id":"8f44c0a3549c6f4-1396f9322523d7ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64490880000001,32.8548417]},"id":"8f44c0a3549e88b-13b6f9ec06218fda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549c6f4-1396f9322523d7ff","8f44c0a3549e88b-13b6f9ec06218fda"]},"geometry":{"type":"LineString","coordinates":[[-83.6452062,32.8549965],[-83.64490880000001,32.8548417]]},"id":"8a44c0a3549ffff-13d6f98f1723eaf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64588450000001,32.8552687]},"id":"8f44c0a3548ad96-13bef78a326eb692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456667,32.8550473]},"id":"8f44c0a3549dc40-13b6f81259ebed64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3548ad96-13bef78a326eb692","8f44c0a3549dc40-13b6f81259ebed64"]},"geometry":{"type":"LineString","coordinates":[[-83.64588450000001,32.8552687],[-83.6457834,32.8551595],[-83.645713,32.8550856],[-83.6456667,32.8550473]]},"id":"8b44c0a3549dfff-13fef7ccc02078bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143854,32.863510600000005]},"id":"8f44c0a32146ca8-17df347121d887b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61388170000001,32.863426100000005]},"id":"8f44c0a32154a20-179f75abf5394d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32146ca8-17df347121d887b9","8f44c0a32154a20-179f75abf5394d63"]},"geometry":{"type":"LineString","coordinates":[[-83.6143854,32.863510600000005],[-83.61388170000001,32.863426100000005]]},"id":"8944c0a3217ffff-17b7f50e95f86930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6103892,32.860205900000004]},"id":"8f44c0a32c4c686-17bfbe32ce7b548d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6103963,32.8598099]},"id":"8f44c0a32c41ac5-17d73e2e52068372"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4c686-17bfbe32ce7b548d","8f44c0a32c41ac5-17d73e2e52068372"]},"geometry":{"type":"LineString","coordinates":[[-83.6103892,32.860205900000004],[-83.6103963,32.8598099]]},"id":"8944c0a32c7ffff-17d7fe309c19272e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70875170000001,32.829568900000005]},"id":"8f44c0b0a75e3a0-13f6de0e344f2d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7078381,32.830261300000004]},"id":"8f44c0b0a676d9c-17b75049333a5d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a676d9c-17b75049333a5d8a","8f44c0b0a75e3a0-13f6de0e344f2d0b"]},"geometry":{"type":"LineString","coordinates":[[-83.70875170000001,32.829568900000005],[-83.708747,32.8297102],[-83.7087328,32.8298246],[-83.7083391,32.8304502],[-83.70823060000001,32.830443],[-83.7081689,32.830431700000005],[-83.7081033,32.8304093],[-83.7079915,32.8303572],[-83.7079179,32.8303074],[-83.7078381,32.830261300000004]]},"id":"8844c0b0a7fffff-17de5ee4248bc1ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094297,32.823441100000004]},"id":"8f44c0b0a0a8d66-17fefc6672603cd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70943290000001,32.8236932]},"id":"8f44c0b0a0a80e3-179e4c647088af55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0a8d66-17fefc6672603cd9","8f44c0b0a0a80e3-179e4c647088af55"]},"geometry":{"type":"LineString","coordinates":[[-83.7094297,32.823441100000004],[-83.70943290000001,32.8236932]]},"id":"8b44c0b0a0a8fff-17dfcc657a9eba8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090565,32.8239998]},"id":"8f44c0b0a0ab594-17d7ed4fb39affaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70940080000001,32.823854100000005]},"id":"8f44c0b0a0a864b-17fedc788bf626e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0ab594-17d7ed4fb39affaa","8f44c0b0a0a864b-17fedc788bf626e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7090565,32.8239998],[-83.70905180000001,32.8238527],[-83.70940080000001,32.823854100000005]]},"id":"8a44c0b0a0affff-179fed0586cf63dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687644,32.9007969]},"id":"8f44c0a05896db5-13d691968e85c289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d49604-13beb13436e65383","8f44c0a05896db5-13d691968e85c289"]},"geometry":{"type":"LineString","coordinates":[[-83.6878013,32.9007243],[-83.687644,32.9007969]]},"id":"8a44c0a05d4ffff-13bfe1655d03b499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68742490000001,32.9007424]},"id":"8f44c0a05d4b0e0-13b6821f76183ca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6873578,32.9006605]},"id":"8f44c0a05d4b19c-1396d249673beb5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b0e0-13b6821f76183ca7","8f44c0a05d4b19c-1396d249673beb5f"]},"geometry":{"type":"LineString","coordinates":[[-83.68742490000001,32.9007424],[-83.6873578,32.9006605]]},"id":"8c44c0a05d4b1ff-139ee2346bbe3dc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64741910000001,32.8412529]},"id":"8f44c0a34a8b824-17f7f3cb1f632241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6474323,32.8410758]},"id":"8f44c0a34a883b2-179ee3c2df4d39ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8b824-17f7f3cb1f632241","8f44c0a34a883b2-179ee3c2df4d39ed"]},"geometry":{"type":"LineString","coordinates":[[-83.64741910000001,32.8412529],[-83.6474381,32.841179100000005],[-83.64744540000001,32.8411208],[-83.6474323,32.8410758]]},"id":"8a44c0a34a8ffff-17bff3c0d3b3ecc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478462,32.8404747]},"id":"8f44c0a34aab456-1796f2c02321e92f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a883b2-179ee3c2df4d39ed","8f44c0a34aab456-1796f2c02321e92f"]},"geometry":{"type":"LineString","coordinates":[[-83.6478462,32.8404747],[-83.6476957,32.8406581],[-83.6476909,32.8407216],[-83.64747240000001,32.8410202],[-83.6474323,32.8410758]]},"id":"8944c0a34abffff-17dfe34108ba9375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6472159,32.8410643]},"id":"8f44c0a34a884ca-1797f44a10c43ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64719410000001,32.8411671]},"id":"8f44c0a34a8aa6a-17d7f457bb989315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8aa6a-17d7f457bb989315","8f44c0a34a884ca-1797f44a10c43ae4"]},"geometry":{"type":"LineString","coordinates":[[-83.6472159,32.8410643],[-83.64715960000001,32.8410754],[-83.6471492,32.841131700000005],[-83.64719410000001,32.8411671]]},"id":"8a44c0a34a8ffff-179ee465f67d6b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64689340000001,32.841146]},"id":"8f44c0a34a8a0d4-17b6e513abf10864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64712370000001,32.840976500000004]},"id":"8f44c0a34a88496-17def483bfaad412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a88496-17def483bfaad412","8f44c0a34a8a0d4-17b6e513abf10864"]},"geometry":{"type":"LineString","coordinates":[[-83.64689340000001,32.841146],[-83.6470286,32.8410255],[-83.64712370000001,32.840976500000004]]},"id":"8b44c0a34a8afff-17fef4ceab300aaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6471424,32.8408156]},"id":"8f44c0a34a8e200-17f7e47805ee7d90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6473476,32.840438]},"id":"8f44c0a34a81268-17ffe3f7cb5f22a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8e200-17f7e47805ee7d90","8f44c0a34a81268-17ffe3f7cb5f22a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6471424,32.8408156],[-83.6471343,32.840741200000004],[-83.6473476,32.840438]]},"id":"8a44c0a34a8ffff-17fef4453c1a7ecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64752340000001,32.8402383]},"id":"8f44c0a34aaa78d-17fef389e91eb5cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34aaa78d-17fef389e91eb5cc","8f44c0a34a81268-17ffe3f7cb5f22a2"]},"geometry":{"type":"LineString","coordinates":[[-83.64752340000001,32.8402383],[-83.6474563,32.840316],[-83.64742940000001,32.8403371],[-83.6473922,32.8403593],[-83.6473517,32.8404076],[-83.6473476,32.840438]]},"id":"8944c0a34abffff-17bff3c52a5ed7d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64760600000001,32.8402988]},"id":"8f44c0a34aaa671-17b6e35641067303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34aaa671-17b6e35641067303","8f44c0a34a81268-17ffe3f7cb5f22a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6473476,32.840438],[-83.6474123,32.8404207],[-83.6474941,32.840389900000005],[-83.6475485,32.840358800000004],[-83.64760600000001,32.8402988]]},"id":"8944c0a34abffff-17d7e3a1a586090a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6822885,32.8243296]},"id":"8f44c0b19cd88d8-17b68ea9b56b6ca3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68221150000001,32.824338700000006]},"id":"8f44c0b19cd81ad-17bfbed9d7471b30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cd81ad-17bfbed9d7471b30","8f44c0b19cd88d8-17b68ea9b56b6ca3"]},"geometry":{"type":"LineString","coordinates":[[-83.6822885,32.8243296],[-83.68221150000001,32.824338700000006]]},"id":"8c44c0b19cd81ff-17beeec1ce3c05ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6831056,32.8235647]},"id":"8f44c0b19cc0341-17d7fcab00bbe648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68275580000001,32.8237255]},"id":"8f44c0b19cc3c56-17befd85a18e8067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cc3c56-17befd85a18e8067","8f44c0b19cc0341-17d7fcab00bbe648"]},"geometry":{"type":"LineString","coordinates":[[-83.6831056,32.8235647],[-83.68275580000001,32.8237255]]},"id":"8a44c0b19cc7fff-17febd1854b1a4cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5712305,32.8626045]},"id":"8f44c0b88283166-1797ddccfd818e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5708115,32.8630281]},"id":"8f44c0b8829d58c-17b79ed2dd0913ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88283166-1797ddccfd818e28","8f44c0b8829d58c-17b79ed2dd0913ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5712305,32.8626045],[-83.5708115,32.8630281]]},"id":"8944c0b882bffff-179fbe4fe9300a30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715509,32.8628075]},"id":"8f44c0b8828e998-1797bd04b3ecc010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88283166-1797ddccfd818e28","8f44c0b8828e998-1797bd04b3ecc010"]},"geometry":{"type":"LineString","coordinates":[[-83.5715509,32.8628075],[-83.5712305,32.8626045]]},"id":"8944c0b882bffff-17d7dd68da311bc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57110440000001,32.8632924]},"id":"8f44c0b8829d2c4-17d7de1bc40db7bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829d58c-17b79ed2dd0913ba","8f44c0b8829d2c4-17d7de1bc40db7bf"]},"geometry":{"type":"LineString","coordinates":[[-83.5708115,32.8630281],[-83.57089810000001,32.8631265],[-83.5710402,32.8632532],[-83.57110440000001,32.8632924]]},"id":"8b44c0b8829dfff-17ffde7bb879cddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5706973,32.862909200000004]},"id":"8f44c0b8829c2a2-17d7df1a3f4b4d08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5710768,32.8624925]},"id":"8f44c0b88283c05-13d7de2d0740766a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829c2a2-17d7df1a3f4b4d08","8f44c0b88283c05-13d7de2d0740766a"]},"geometry":{"type":"LineString","coordinates":[[-83.5706973,32.862909200000004],[-83.5705976,32.8628511],[-83.57051080000001,32.8627727],[-83.5704528,32.8626998],[-83.5704517,32.8626419],[-83.5705901,32.8624768],[-83.57080760000001,32.862261700000005],[-83.57086120000001,32.8622243],[-83.57107090000001,32.862369300000005],[-83.5710768,32.8624925]]},"id":"8944c0b882bffff-13dfbf0c799dfec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57056850000001,32.8638519]},"id":"8f44c0b8b9265a4-17b7ff6ab917e622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5699495,32.8633693]},"id":"8f44c0b8829a712-17f7f0ed957841eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829a712-17f7f0ed957841eb","8f44c0b8b9265a4-17b7ff6ab917e622"]},"geometry":{"type":"LineString","coordinates":[[-83.57056850000001,32.8638519],[-83.5701751,32.8635693],[-83.5699495,32.8633693]]},"id":"8844c0b883fffff-1797e02fdd6c3726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5698701,32.8631268]},"id":"8f44c0b8866d34a-17dfe11f3253cab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5696054,32.863303300000005]},"id":"8f44c0b88669134-17dfb1c4afdf638c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8866d34a-17dfe11f3253cab3","8f44c0b88669134-17dfb1c4afdf638c"]},"geometry":{"type":"LineString","coordinates":[[-83.5698701,32.8631268],[-83.5696054,32.863303300000005]]},"id":"8a44c0b8866ffff-1797f171f11e5ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56993580000001,32.8628328]},"id":"8f44c0b8829e4b5-17b7a0f62599044c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56933980000001,32.863277100000005]},"id":"8f44c0b88668253-17bfb26aadf6aa83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88668253-17bfb26aadf6aa83","8f44c0b8829e4b5-17b7a0f62599044c"]},"geometry":{"type":"LineString","coordinates":[[-83.56993580000001,32.8628328],[-83.56933980000001,32.863277100000005]]},"id":"8744c0b88ffffff-17b7e1b06f2a6412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5508748,32.8042218]},"id":"8f44c0b80aec4b0-179fef7f4ffb07cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5503561,32.8041988]},"id":"8f44c0b80ae32ad-1797d0c37f4873ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80aec4b0-179fef7f4ffb07cb","8f44c0b80ae32ad-1797d0c37f4873ee"]},"geometry":{"type":"LineString","coordinates":[[-83.5508748,32.8042218],[-83.5507716,32.8040688],[-83.5506593,32.8040356],[-83.550453,32.8041351],[-83.5503561,32.8041988]]},"id":"8944c0b80afffff-17dff015c5e36b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54386840000001,32.8100253]},"id":"8f44c0b802f6ac3-13bff09a4e1f7c70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5451286,32.8111394]},"id":"8f44c0b802c5c68-17f7fd86a9cae4e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b802f6ac3-13bff09a4e1f7c70","8f44c0b802c5c68-17f7fd86a9cae4e9"]},"geometry":{"type":"LineString","coordinates":[[-83.54386840000001,32.8100253],[-83.5445519,32.810725500000004],[-83.5451286,32.8111394]]},"id":"8944c0b802fffff-17b7df1f1dba7495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55359200000001,32.829692200000004]},"id":"8f44c0b8ed68a12-13bfe8dd0a98dbdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5529346,32.8295393]},"id":"8f44c0b8ed6e6d4-13dfda77ecdcf497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed68a12-13bfe8dd0a98dbdb","8f44c0b8ed6e6d4-13dfda77ecdcf497"]},"geometry":{"type":"LineString","coordinates":[[-83.55359200000001,32.829692200000004],[-83.5529346,32.8295393]]},"id":"8a44c0b8ed6ffff-139fe9aa73ca3c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55366760000001,32.829485000000005]},"id":"8f44c0b8ed6d5b0-13bfe8adc34456a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55297750000001,32.8293085]},"id":"8f44c0b8ed6e56e-13dfda5d1707274f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed6d5b0-13bfe8adc34456a8","8f44c0b8ed6e56e-13dfda5d1707274f"]},"geometry":{"type":"LineString","coordinates":[[-83.55366760000001,32.829485000000005],[-83.55297750000001,32.8293085]]},"id":"8a44c0b8ed6ffff-1397c985618d108c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55374850000001,32.829263600000004]},"id":"8f44c0b8ed6ca00-13b7c87b35e2799b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5530612,32.8291011]},"id":"8f44c0b8ed616f3-13dffa28cc729c97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed616f3-13dffa28cc729c97","8f44c0b8ed6ca00-13b7c87b35e2799b"]},"geometry":{"type":"LineString","coordinates":[[-83.55374850000001,32.829263600000004],[-83.5530612,32.8291011]]},"id":"8944c0b8ed7ffff-13ffc951f8df17a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55627120000001,32.8310112]},"id":"8f44c0b8e8128c4-17f7c2528e149e13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5557155,32.8309228]},"id":"8f44c0b8e8a561d-17bfc3addb5b9b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e8a561d-17bfc3addb5b9b03","8f44c0b8e8128c4-17f7c2528e149e13"]},"geometry":{"type":"LineString","coordinates":[[-83.55627120000001,32.8310112],[-83.5557155,32.8309228]]},"id":"8844c0b8e9fffff-17dfe300203bd852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5569633,32.831177000000004]},"id":"8f44c0b8e811c2b-17dfe0a1f2d8deaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5568406,32.8311614]},"id":"8f44c0b8e810349-17d7e0eea1aef9c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e810349-17d7e0eea1aef9c8","8f44c0b8e811c2b-17dfe0a1f2d8deaa"]},"geometry":{"type":"LineString","coordinates":[[-83.5569633,32.831177000000004],[-83.55704150000001,32.8309462],[-83.55692140000001,32.830908400000006],[-83.5568406,32.8311614]]},"id":"8a44c0b8e817fff-17ffe0abd466155d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55648400000001,32.831135]},"id":"8f44c0b8e810686-17d7e1cd87c3ade9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e810686-17d7e1cd87c3ade9","8f44c0b8e811c2b-17dfe0a1f2d8deaa"]},"geometry":{"type":"LineString","coordinates":[[-83.5569633,32.831177000000004],[-83.55687420000001,32.8313213],[-83.5565974,32.831272600000005],[-83.5565115,32.8312365],[-83.55648400000001,32.831135]]},"id":"8a44c0b8e817fff-1797c13aaf6f96f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5575269,32.8312587]},"id":"8f44c0b8e802050-1797bf41b29d2eb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5572231,32.8312146]},"id":"8f44c0b8e802491-17f7bfff9d4916f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e802050-1797bf41b29d2eb9","8f44c0b8e802491-17f7bfff9d4916f1"]},"geometry":{"type":"LineString","coordinates":[[-83.5575269,32.8312587],[-83.5574643,32.8314295],[-83.55717460000001,32.83137],[-83.5572231,32.8312146]]},"id":"8944c0b8e83ffff-17dfffb748495771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54232540000001,32.8235873]},"id":"8f44c0b83aa848b-17d7f45ea2fc5e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54281540000001,32.8226451]},"id":"8f44c0b83a1211c-139ff32c6a9454ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83aa848b-17d7f45ea2fc5e67","8f44c0b83a1211c-139ff32c6a9454ab"]},"geometry":{"type":"LineString","coordinates":[[-83.54232540000001,32.8235873],[-83.5422107,32.8235401],[-83.54228110000001,32.8232793],[-83.54262750000001,32.8226789],[-83.54281540000001,32.8226451]]},"id":"8844c0b83bfffff-139ff41bf9205362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5421663,32.8238853]},"id":"8f44c0b83aaa2c1-1797f4c2152e25f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54122430000001,32.8235675]},"id":"8f44c0b83a80741-17dff70eda9e2057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83aaa2c1-1797f4c2152e25f3","8f44c0b83a80741-17dff70eda9e2057"]},"geometry":{"type":"LineString","coordinates":[[-83.5421663,32.8238853],[-83.54122430000001,32.8235675]]},"id":"8944c0b83abffff-17bfe5e87bc30f84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5401575,32.822099300000005]},"id":"8f44c0b83ab67a6-13b7f9a99b0bca49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5400204,32.822051]},"id":"8f44c0b83ab649a-1397e9ff42c46885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83ab67a6-13b7f9a99b0bca49","8f44c0b83ab649a-1397e9ff42c46885"]},"geometry":{"type":"LineString","coordinates":[[-83.5401575,32.822099300000005],[-83.5400204,32.822051]]},"id":"8a44c0b83ab7fff-13b7e9d46ff54f95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53933710000001,32.8209905]},"id":"8f44c0b831458cd-17fffbaa583cdb67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5387939,32.82058]},"id":"8f44c0b83144c01-17ffecfddfbe22a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83144c01-17ffecfddfbe22a4","8f44c0b831458cd-17fffbaa583cdb67"]},"geometry":{"type":"LineString","coordinates":[[-83.53933710000001,32.8209905],[-83.5394119,32.820803600000005],[-83.5387939,32.82058]]},"id":"8944c0b8317ffff-17f7fc14ec48c14c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53947240000001,32.8232103]},"id":"8f44c0b83a966cc-13fffb55c0e9c712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5391845,32.8233551]},"id":"8f44c0b83a92596-17d7fc09b47c007d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83a966cc-13fffb55c0e9c712","8f44c0b83a92596-17d7fc09b47c007d"]},"geometry":{"type":"LineString","coordinates":[[-83.53947240000001,32.8232103],[-83.5394141,32.8234237],[-83.5391845,32.8233551]]},"id":"8b44c0b83a92fff-17d7eb96c3fa51c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579181,32.858067000000005]},"id":"8f44c0b88ac1018-1397ea63e45d86cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5796318,32.858060900000005]},"id":"8f44c0b88aea742-1397994a29040abf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88aea742-1397994a29040abf","8f44c0b88ac1018-1397ea63e45d86cb"]},"geometry":{"type":"LineString","coordinates":[[-83.579181,32.858067000000005],[-83.5796318,32.858060900000005]]},"id":"8944c0b88afffff-139789d70f7da54d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5756254,32.8443619]},"id":"8f44c0b88911a5e-179fb312204195b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57698900000001,32.842869]},"id":"8f44c0b88926a48-13ffafbded314196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88911a5e-179fb312204195b0","8f44c0b88926a48-13ffafbded314196"]},"geometry":{"type":"LineString","coordinates":[[-83.5756254,32.8443619],[-83.5757617,32.8442918],[-83.57582280000001,32.8441186],[-83.5763313,32.843678700000005],[-83.57698900000001,32.842869]]},"id":"8944c0b8893ffff-17dfd1607ce7262f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b906c08-13f7e0ce8f430c8b","8f44c0b8b93150e-1397e0bec3207fe6"]},"geometry":{"type":"LineString","coordinates":[[-83.57002440000001,32.864422000000005],[-83.56997940000001,32.8644478],[-83.56990760000001,32.864519900000005],[-83.56989580000001,32.8645694],[-83.56990760000001,32.8646758],[-83.56999920000001,32.864778]]},"id":"8944c0b8b93ffff-13f7f0f46d0b23c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b931c14-13d7a09e847bf4d7","8f44c0b8b93150e-1397e0bec3207fe6"]},"geometry":{"type":"LineString","coordinates":[[-83.570076,32.864317],[-83.57002440000001,32.864422000000005]]},"id":"8b44c0b8b931fff-13f7f0aea0022609"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68845920000001,32.820961100000005]},"id":"8f44c0b198b2460-17feff990ba3b03b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885341,32.821176]},"id":"8f44c0b198949a0-17f77f6a394418d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b2460-17feff990ba3b03b","8f44c0b198949a0-17f77f6a394418d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68845920000001,32.820961100000005],[-83.6885341,32.821176]]},"id":"8a44c0b198b7fff-17bfff81ad417377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882235,32.8210105]},"id":"8f44c0b19d49bb3-179f902c53c18e58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883497,32.8214187]},"id":"8f44c0b19894468-179effdd7715d437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d49bb3-179f902c53c18e58","8f44c0b19894468-179effdd7715d437"]},"geometry":{"type":"LineString","coordinates":[[-83.6882235,32.8210105],[-83.6883497,32.8214187]]},"id":"8944c0b198bffff-179fa004e96a062e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894163,32.821273600000005]},"id":"8f44c0b198b1765-17b67d42d26f4456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892392,32.8213115]},"id":"8f44c0b198b16b3-17d7fdb18b37d7ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b16b3-17d7fdb18b37d7ba","8f44c0b198b1765-17b67d42d26f4456"]},"geometry":{"type":"LineString","coordinates":[[-83.6894163,32.821273600000005],[-83.6892392,32.8213115]]},"id":"8b44c0b198b1fff-17bffd7a3bae5b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65602940000001,32.8268568]},"id":"8f44c0b1bc9c492-17d7cec5a05f2f0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65563010000001,32.826957900000004]},"id":"8f44c0b1bc9e413-1796ffbf3c4185e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc9e413-1796ffbf3c4185e6","8f44c0b1bc9c492-17d7cec5a05f2f0b"]},"geometry":{"type":"LineString","coordinates":[[-83.65602940000001,32.8268568],[-83.65563010000001,32.826957900000004]]},"id":"8b44c0b1bc9efff-17f7ef42655e5d84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71044400000001,32.9255386]},"id":"8f44c0a2aa9c51a-17bfe9ec8eed4f7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71079200000001,32.9263017]},"id":"8f44c0a2aa99192-179ed91303e13349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa99192-179ed91303e13349","8f44c0a2aa9c51a-17bfe9ec8eed4f7e"]},"geometry":{"type":"LineString","coordinates":[[-83.71044400000001,32.9255386],[-83.71079200000001,32.9263017]]},"id":"8a44c0a2aa9ffff-17be697fc6bb26fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70952940000001,32.9265035]},"id":"8f44c0a2a336830-139efc282c12c468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096142,32.9266847]},"id":"8f44c0a2a336a02-139ffbf32669b991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a336a02-139ffbf32669b991","8f44c0a2a336830-139efc282c12c468"]},"geometry":{"type":"LineString","coordinates":[[-83.70952940000001,32.9265035],[-83.7096142,32.9266847]]},"id":"8b44c0a2a336fff-13d75c0daba032d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109054,32.9269947]},"id":"8f44c0a2a326241-13dff8cc2093f73e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71031140000001,32.927192500000004]},"id":"8f44c0a2a33195b-13d75a3f6adb4c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a326241-13dff8cc2093f73e","8f44c0a2a33195b-13d75a3f6adb4c65"]},"geometry":{"type":"LineString","coordinates":[[-83.7109054,32.9269947],[-83.71083270000001,32.9268376],[-83.71022710000001,32.9270312],[-83.71031140000001,32.927192500000004]]},"id":"8944c0a2a33ffff-13be69afbbe23f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71035160000001,32.927697900000005]},"id":"8f44c0a2a30445a-13977a26440de05a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101394,32.9277682]},"id":"8f44c0a2a306ab3-13bf6aaaed424447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a30445a-13977a26440de05a","8f44c0a2a306ab3-13bf6aaaed424447"]},"geometry":{"type":"LineString","coordinates":[[-83.71035160000001,32.927697900000005],[-83.7101394,32.9277682]]},"id":"8a44c0a2a307fff-139f7a689091f472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71016940000001,32.9246578]},"id":"8f44c0a2aa9422d-13976a9829342765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711026,32.9247777]},"id":"8f44c0a2aa86a8d-13f65880c26f7423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa86a8d-13f65880c26f7423","8f44c0a2aa9422d-13976a9829342765"]},"geometry":{"type":"LineString","coordinates":[[-83.71016940000001,32.9246578],[-83.711026,32.9247777]]},"id":"8944c0a2aabffff-13bee98c7672c2b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099759,32.9250437]},"id":"8f44c0a2aa903ae-179e5b111f8fc12a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093481,32.9252528]},"id":"8f44c0a2aa926eb-179f4c9974c6888d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa926eb-179f4c9974c6888d","8f44c0a2aa903ae-179e5b111f8fc12a"]},"geometry":{"type":"LineString","coordinates":[[-83.7099759,32.9250437],[-83.7093481,32.9252528]]},"id":"8a44c0a2aa97fff-17dffbd541601c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099395,32.9252321]},"id":"8f44c0a2aa9382d-17fe5b27def3422b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101521,32.9250832]},"id":"8f44c0a2aa91d8e-17b74aa2f3635047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa9382d-17fe5b27def3422b","8f44c0a2aa91d8e-17b74aa2f3635047"]},"geometry":{"type":"LineString","coordinates":[[-83.7099395,32.9252321],[-83.70995690000001,32.9252807],[-83.7099891,32.9253081],[-83.71003660000001,32.925317],[-83.7100805,32.9253037],[-83.71010580000001,32.9252707],[-83.7101521,32.9250832]]},"id":"8a44c0a2aa97fff-1796cad835466992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6186938,32.8534227]},"id":"8f44c0a3628b0ab-17bf39ec664766c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61884880000001,32.8531707]},"id":"8f44c0a3628b930-179fb98b8b56bb89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3628b930-179fb98b8b56bb89","8f44c0a3628b0ab-17bf39ec664766c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6186938,32.8534227],[-83.61884880000001,32.8531707]]},"id":"8a44c0a3628ffff-17df79bbfa6dd9e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61897400000001,32.852980800000005]},"id":"8f44c0a36288a86-179f293d4e399484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619152,32.8530718]},"id":"8f44c0a36289d00-17d7e8ce01dc302d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36289d00-17d7e8ce01dc302d","8f44c0a36288a86-179f293d4e399484"]},"geometry":{"type":"LineString","coordinates":[[-83.61897400000001,32.852980800000005],[-83.619152,32.8530718]]},"id":"8a44c0a3628ffff-17b77905a1be139b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191082,32.8527823]},"id":"8f44c0a3628d584-179ff8e9660c6270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6192025,32.852577100000005]},"id":"8f44c0a3628ca73-139fb8ae745d3721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3628ca73-139fb8ae745d3721","8f44c0a3628d584-179ff8e9660c6270"]},"geometry":{"type":"LineString","coordinates":[[-83.6191082,32.8527823],[-83.6192025,32.852577100000005]]},"id":"8a44c0a3628ffff-13dff8cbf1dad669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6809314,32.824218300000005]},"id":"8f44c0b19528101-17f6f1f9ee6fe4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6807825,32.8240159]},"id":"8f44c0b1952ea43-17f7f256f0d8159d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19528101-17f6f1f9ee6fe4b0","8f44c0b1952ea43-17f7f256f0d8159d"]},"geometry":{"type":"LineString","coordinates":[[-83.6809314,32.824218300000005],[-83.6807825,32.8240159]]},"id":"8a44c0b1952ffff-17b7b2286ea7d71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6474163,32.8238044]},"id":"8f44c0b1a39a2dd-17dfe3ccd91ec2c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64630620000001,32.8251282]},"id":"8f44c0b1a294690-139fe682a69a0ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a39a2dd-17dfe3ccd91ec2c6","8f44c0b1a294690-139fe682a69a0ecc"]},"geometry":{"type":"LineString","coordinates":[[-83.6474163,32.8238044],[-83.64630620000001,32.8251282]]},"id":"8744c0b1affffff-17fff527c1e95389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476028,32.8250436]},"id":"8f44c0b1a28458d-13f6e358435c0996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a28458d-13f6e358435c0996","8f44c0b1a294690-139fe682a69a0ecc"]},"geometry":{"type":"LineString","coordinates":[[-83.64630620000001,32.8251282],[-83.6471133,32.8256177],[-83.6476028,32.8250436]]},"id":"8944c0b1a2bffff-13b6e4d27321c389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a74a245-17dee8956c398b64","8f44c0b1a294690-139fe682a69a0ecc"]},"geometry":{"type":"LineString","coordinates":[[-83.64545700000001,32.824624],[-83.64630620000001,32.8251282]]},"id":"8844c0b1a7fffff-17fff78c078ff50b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64948460000001,32.824719200000004]},"id":"8f44c0b1a212b2e-179fdec02d3f02d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6496741,32.8246447]},"id":"8f44c0b1a21019b-17fefe49b8fc2636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a212b2e-179fdec02d3f02d3","8f44c0b1a21019b-17fefe49b8fc2636"]},"geometry":{"type":"LineString","coordinates":[[-83.64948460000001,32.824719200000004],[-83.6494799,32.8245899],[-83.6494849,32.8245625],[-83.6495,32.824550900000006],[-83.64952840000001,32.8245549],[-83.6495692,32.8245717],[-83.6496741,32.8246447]]},"id":"8a44c0b1a217fff-17d7de9d57437ba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6895496,32.8207218]},"id":"8f44c0b198b5022-17d77cef8737beec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896097,32.820893500000004]},"id":"8f44c0b198b5211-17d67cc9f9b3188d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b5211-17d67cc9f9b3188d","8f44c0b198b5022-17d77cef8737beec"]},"geometry":{"type":"LineString","coordinates":[[-83.6895496,32.8207218],[-83.6896097,32.820893500000004]]},"id":"8b44c0b198b5fff-179efcdcb30ce20b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897776,32.8208592]},"id":"8f44c0b198a2d85-17bf7c610e1f4f78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897356,32.8206804]},"id":"8f44c0b198b5b33-17bf7c7b4843514a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a2d85-17bf7c610e1f4f78","8f44c0b198b5b33-17bf7c7b4843514a"]},"geometry":{"type":"LineString","coordinates":[[-83.6897776,32.8208592],[-83.6897356,32.8206804]]},"id":"8944c0b198bffff-17f77c6e28b4dfc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689926,32.820638]},"id":"8f44c0b198a6094-17b6fc0446d682a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68998810000001,32.8211985]},"id":"8f44c0b198a2235-17977bdd7a9d430d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a6094-17b6fc0446d682a4","8f44c0b198a2235-17977bdd7a9d430d"]},"geometry":{"type":"LineString","coordinates":[[-83.689926,32.820638],[-83.68998930000001,32.8208587],[-83.68990260000001,32.8208738],[-83.68998810000001,32.8211985]]},"id":"8a44c0b198a7fff-17de7bf562ce84ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.755094,32.7781053]},"id":"8f44c0b2aaf1805-17dfdcea499f8ea1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7528506,32.7782824]},"id":"8f44c0b2a324859-17bfe26465c54583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a324859-17bfe26465c54583","8f44c0b2aaf1805-17dfdcea499f8ea1"]},"geometry":{"type":"LineString","coordinates":[[-83.755094,32.7781053],[-83.75492890000001,32.7781292],[-83.7546885,32.7781656],[-83.7543955,32.7782683],[-83.75384530000001,32.7784369],[-83.7535603,32.7784514],[-83.7532503,32.7784163],[-83.7530033,32.778339800000005],[-83.7528506,32.7782824]]},"id":"8844c0b2abfffff-17d5dfa8754266d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7521674,32.7783776]},"id":"8f44c0b2a3261b4-17f7e40f69b18132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7524896,32.7777395]},"id":"8f44c0b2aa9d2a2-17f7f34604f98a1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2aa9d2a2-17f7f34604f98a1d","8f44c0b2a3261b4-17f7e40f69b18132"]},"geometry":{"type":"LineString","coordinates":[[-83.7521674,32.7783776],[-83.7523273,32.778429800000005],[-83.75265990000001,32.7778107],[-83.7524896,32.7777395]]},"id":"8844c0b2abfffff-17dff353225117ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7522284,32.7785771]},"id":"8f44c0b2a32676d-17f7f3e94858a874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7518132,32.7786427]},"id":"8f44c0b2a335316-179ff4ecc5be7a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a335316-179ff4ecc5be7a37","8f44c0b2a32676d-17f7f3e94858a874"]},"geometry":{"type":"LineString","coordinates":[[-83.7522284,32.7785771],[-83.7521571,32.778677200000004],[-83.7518132,32.7786427]]},"id":"8944c0b2a33ffff-17b5f45f465e52fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837404,32.8222157]},"id":"8f44c0b19ce464e-13fedb1e4901dd49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68341360000001,32.8224113]},"id":"8f44c0b19ce04a6-13f79bea89066c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce464e-13fedb1e4901dd49","8f44c0b19ce04a6-13f79bea89066c83"]},"geometry":{"type":"LineString","coordinates":[[-83.6837404,32.8222157],[-83.683507,32.8222108],[-83.6834518,32.8222383],[-83.68341360000001,32.8224113]]},"id":"8a44c0b19ce7fff-1396eb9fc582ae14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6839212,32.8222205]},"id":"8f44c0b19ce4243-13ffdaad4ee5e7bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce464e-13fedb1e4901dd49","8f44c0b19ce4243-13ffdaad4ee5e7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6837404,32.8222157],[-83.6839212,32.8222205]]},"id":"8a44c0b19ce7fff-13fedae5c61f16b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66265820000001,32.831447700000005]},"id":"8f44c0b1b18cc6b-1396fe96a7062c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66273460000001,32.831448800000004]},"id":"8f44c0b1b18c8f3-1397be66e809c471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18cc6b-1396fe96a7062c4e","8f44c0b1b18c8f3-1397be66e809c471"]},"geometry":{"type":"LineString","coordinates":[[-83.66265820000001,32.831447700000005],[-83.66273460000001,32.831448800000004]]},"id":"8b44c0b1b18cfff-1397be7ec5a4dd5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629755,32.8314575]},"id":"8f44c0b1b1ab456-139efdd05afaa7f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1ab456-139efdd05afaa7f8","8f44c0b1b18c8f3-1397be66e809c471"]},"geometry":{"type":"LineString","coordinates":[[-83.66273460000001,32.831448800000004],[-83.66278410000001,32.831485400000005],[-83.66291000000001,32.831488400000005],[-83.6629755,32.8314575]]},"id":"8944c0b1b1bffff-139ffe1cfff1f1ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631627,32.8316772]},"id":"8f44c0b1b18d92a-1396fd5b5f6cddaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66296390000001,32.831668400000005]},"id":"8f44c0b1b18dd0e-1396fdd7934893a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d92a-1396fd5b5f6cddaf","8f44c0b1b18dd0e-1396fdd7934893a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6631627,32.8316772],[-83.66296390000001,32.831668400000005]]},"id":"8b44c0b1b18dfff-1397bd997efc5750"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1ab456-139efdd05afaa7f8","8f44c0b1b18c8f3-1397be66e809c471"]},"geometry":{"type":"LineString","coordinates":[[-83.6629755,32.8314575],[-83.6629121,32.8314213],[-83.66279150000001,32.8314169],[-83.66273460000001,32.831448800000004]]},"id":"8944c0b1b1bffff-17febe1b67a83f77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639468,32.8315819]},"id":"8f44c0b1b0341a4-13debb7148473a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66370930000001,32.8318257]},"id":"8f44c0b1b036a52-13f7bc05bf10a59a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b036a52-13f7bc05bf10a59a","8f44c0b1b0341a4-13debb7148473a47"]},"geometry":{"type":"LineString","coordinates":[[-83.6639468,32.8315819],[-83.66364490000001,32.8315763],[-83.6636397,32.831684],[-83.66370930000001,32.8318257]]},"id":"8a44c0b1b037fff-13ffbbf6ff355265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630236,32.8320163]},"id":"8f44c0b1b18d2b0-13febdb24c0cbd07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66308520000001,32.8321655]},"id":"8f44c0b1b189948-13d7fd8bc8e198b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d2b0-13febdb24c0cbd07","8f44c0b1b189948-13d7fd8bc8e198b6"]},"geometry":{"type":"LineString","coordinates":[[-83.6630236,32.8320163],[-83.66308520000001,32.8321655]]},"id":"8a44c0b1b18ffff-139efd9f0f4066d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628299,32.8326884]},"id":"8f44c0b1b016176-139efe2b5e9d5d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626044,32.832685000000005]},"id":"8f44c0b1b016519-139ebeb84ad7f118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b016176-139efe2b5e9d5d2c","8f44c0b1b016519-139ebeb84ad7f118"]},"geometry":{"type":"LineString","coordinates":[[-83.6628299,32.8326884],[-83.6626044,32.832685000000005]]},"id":"8b44c0b1b016fff-139fbe71ced6794b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66201360000001,32.8323161]},"id":"8f44c0b1b0a49a1-13b7d0298080b50d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626205,32.8324316]},"id":"8f44c0b1b18ba01-13fffeae3e295d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1b18ba01-13fffeae3e295d3f","8f44c0b1b0a49a1-13b7d0298080b50d"]},"geometry":{"type":"LineString","coordinates":[[-83.66201360000001,32.8323161],[-83.6622748,32.832299],[-83.66241190000001,32.8322966],[-83.66249470000001,32.8323358],[-83.6626205,32.8324316]]},"id":"8a44c0b1b18ffff-13bfff6355a43d1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6623441,32.8327994]},"id":"8f44c0b1b0a510d-13d7bf5af13e89f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6616855,32.8325787]},"id":"8f44c0b1b0a6b2a-13dff0f692c47139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0a510d-13d7bf5af13e89f8","8f44c0b1b0a6b2a-13dff0f692c47139"]},"geometry":{"type":"LineString","coordinates":[[-83.6623441,32.8327994],[-83.6623393,32.8325362],[-83.6621944,32.832447300000005],[-83.6616855,32.8325787]]},"id":"8844c0b1b1fffff-13beffee637eda4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72149490000001,32.813169300000006]},"id":"8f44c0b0e2c8959-13f6fef1b316d561"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7215255,32.8133889]},"id":"8f44c0b0e2c8aeb-13f63ede9cf594a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c8959-13f6fef1b316d561","8f44c0b0e2c8aeb-13f63ede9cf594a4"]},"geometry":{"type":"LineString","coordinates":[[-83.72149490000001,32.813169300000006],[-83.7214397,32.813234900000005],[-83.72144370000001,32.8133329],[-83.72147430000001,32.813371700000005],[-83.7215255,32.8133889]]},"id":"8b44c0b0e2c8fff-13b7ef0576d86e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6321861,32.8345402]},"id":"8f44c0a345028f5-1797a8fbb82d6f4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63248420000001,32.8341859]},"id":"8f44c0a34506b66-17b738416ed2aed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34506b66-17b738416ed2aed0","8f44c0a345028f5-1797a8fbb82d6f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.6321861,32.8345402],[-83.63248420000001,32.8341859]]},"id":"8a44c0a34507fff-17b7f89e95b2907d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63202050000001,32.8344393]},"id":"8f44c0a34502d18-17d7996331376a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34506b66-17b738416ed2aed0","8f44c0a34502d18-17d7996331376a79"]},"geometry":{"type":"LineString","coordinates":[[-83.63202050000001,32.8344393],[-83.6323203,32.8340829],[-83.63248420000001,32.8341859]]},"id":"8a44c0a34507fff-17dff8daf4358c56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63287360000001,32.834758900000004]},"id":"8f44c0a34501c53-139f574e0f9ed429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63240090000001,32.834671]},"id":"8f44c0a345006b1-17f768757943243f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34501c53-139f574e0f9ed429","8f44c0a345006b1-17f768757943243f"]},"geometry":{"type":"LineString","coordinates":[[-83.63287360000001,32.834758900000004],[-83.6327115,32.834661600000004],[-83.63266820000001,32.8346637],[-83.63249300000001,32.834569200000004],[-83.63240090000001,32.834671]]},"id":"8a44c0a34507fff-17df87e8130e93ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6326959,32.8341913]},"id":"8f44c0a345040cb-17bf97bd1b96a0bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63231130000001,32.8339651]},"id":"8f44c0a3453166a-17bf38ad75e25538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345040cb-17bf97bd1b96a0bd","8f44c0a3453166a-17bf38ad75e25538"]},"geometry":{"type":"LineString","coordinates":[[-83.6326959,32.8341913],[-83.63231130000001,32.8339651]]},"id":"8944c0a3453ffff-17f7e8354f6284e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6327562,32.834076200000005]},"id":"8f44c0a34504146-17f7a79767f8e23a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6323969,32.833864600000005]},"id":"8f44c0a345313a5-17ff6877f7e0b6ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345313a5-17ff6877f7e0b6ca","8f44c0a34504146-17f7a79767f8e23a"]},"geometry":{"type":"LineString","coordinates":[[-83.6327562,32.834076200000005],[-83.6323969,32.833864600000005]]},"id":"8944c0a3453ffff-17bf8807a2896a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633148,32.8341738]},"id":"8f44c0a3452366e-17bfa6a281c69ca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6334523,32.834072500000005]},"id":"8f44c0a3452ed36-17ff55e4524f88e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3452366e-17bfa6a281c69ca1","8f44c0a3452ed36-17ff55e4524f88e0"]},"geometry":{"type":"LineString","coordinates":[[-83.633148,32.8341738],[-83.63330780000001,32.833987],[-83.6334523,32.834072500000005]]},"id":"8b44c0a34523fff-17f7664a0a4e68e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633154,32.8344272]},"id":"8f44c0a34505ab6-17df069ec66f1dcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34505ab6-17df069ec66f1dcb","8f44c0a3452366e-17bfa6a281c69ca1"]},"geometry":{"type":"LineString","coordinates":[[-83.633148,32.8341738],[-83.6330131,32.8343404],[-83.633154,32.8344272]]},"id":"8944c0a3453ffff-179736cbd85a2fda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63304140000001,32.8345605]},"id":"8f44c0a3450574c-17b756e527f979aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63289730000001,32.8344788]},"id":"8f44c0a3450545a-17ff473f3c00c977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450574c-17b756e527f979aa","8f44c0a3450545a-17ff473f3c00c977"]},"geometry":{"type":"LineString","coordinates":[[-83.63304140000001,32.8345605],[-83.63289730000001,32.8344788]]},"id":"8b44c0a34505fff-1797d7122e098c3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68076520000001,32.7782384]},"id":"8f44c0b0266166d-179f9261c347555b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67958490000001,32.7782434]},"id":"8f44c0b026444a0-17b6b543798ad96a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0266166d-179f9261c347555b","8f44c0b026444a0-17b6b543798ad96a"]},"geometry":{"type":"LineString","coordinates":[[-83.68076520000001,32.7782384],[-83.67958490000001,32.7782434]]},"id":"8944c0b0267ffff-17b693d2a2802aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7240659,32.8131038]},"id":"8f44c0b085a4013-13bfe8aad8b3995d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7236304,32.8125255]},"id":"8f44c0b0e258a48-13d679bb08ce9ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b085a4013-13bfe8aad8b3995d","8f44c0b0e258a48-13d679bb08ce9ac2"]},"geometry":{"type":"LineString","coordinates":[[-83.7240659,32.8131038],[-83.7236304,32.8125255]]},"id":"8744c0b08ffffff-139f3932eec0d41e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72243160000001,32.8120289]},"id":"8f44c0b0e2edda9-139e3ca842972498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72315350000001,32.8115644]},"id":"8f44c0b0e251891-17ffeae514e03854"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e251891-17ffeae514e03854","8f44c0b0e2edda9-139e3ca842972498"]},"geometry":{"type":"LineString","coordinates":[[-83.72243160000001,32.8120289],[-83.7224896,32.8119698],[-83.7226052,32.8119034],[-83.7227718,32.8117984],[-83.7229298,32.8116877],[-83.72315350000001,32.8115644]]},"id":"8844c0b0e3fffff-13976bcae97c79a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7237479,32.811888700000004]},"id":"8f44c0b0e243412-13d67971959ffada"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25c1aa-13f7ba2559e4e9af","8f44c0b0e243412-13d67971959ffada"]},"geometry":{"type":"LineString","coordinates":[[-83.7237479,32.811888700000004],[-83.7234603,32.8119673]]},"id":"8944c0b0e27ffff-13df29cb7f1bde43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7235196,32.8116385]},"id":"8f44c0b0e242733-17be3a004c5823e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e243412-13d67971959ffada","8f44c0b0e242733-17be3a004c5823e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7237479,32.811888700000004],[-83.72376340000001,32.8117505],[-83.72364920000001,32.8115986],[-83.7235196,32.8116385]]},"id":"8a44c0b0e247fff-17d7a998998d8966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72345130000001,32.8116768]},"id":"8f44c0b0e24279c-17d62a2afc22a931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e243412-13d67971959ffada","8f44c0b0e24279c-17d62a2afc22a931"]},"geometry":{"type":"LineString","coordinates":[[-83.7237479,32.811888700000004],[-83.7235892,32.811842],[-83.72345130000001,32.8116768]]},"id":"8a44c0b0e247fff-139669d797be845b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101308,32.8254062]},"id":"8f44c0b0a0c6528-13d6eab04d50de5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7098665,32.825222700000005]},"id":"8f44c0b0a0f30d3-13d67b5575940b6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c6528-13d6eab04d50de5e","8f44c0b0a0f30d3-13d67b5575940b6f"]},"geometry":{"type":"LineString","coordinates":[[-83.7101308,32.8254062],[-83.70998150000001,32.8253794],[-83.709896,32.825279900000005],[-83.7098665,32.825222700000005]]},"id":"8944c0b0a0fffff-139f7b0eebba4e5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101744,32.8254353]},"id":"8f44c0b0a0c6561-13df5a950bd46970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101107,32.8252301]},"id":"8f44c0b0a0f3aec-13dedabcd72e4d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c6561-13df5a950bd46970","8f44c0b0a0f3aec-13dedabcd72e4d6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7101744,32.8254353],[-83.7102622,32.8254034],[-83.7102694,32.8252369],[-83.7101107,32.8252301]]},"id":"8944c0b0a0fffff-139e6a74737683f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34069311-17dee926c4611099","8f44c0a343164cb-13beebe442deeea9"]},"geometry":{"type":"LineString","coordinates":[[-83.6452244,32.8411848],[-83.6447279,32.8418057],[-83.6444893,32.842095],[-83.64435040000001,32.8422634],[-83.6442241,32.8424166],[-83.644102,32.8425646]]},"id":"8744c0a34ffffff-13ffea83e0ae29e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61541290000001,32.8596037]},"id":"8f44c0a328f434b-17d771eef8d615fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6154322,32.8598115]},"id":"8f44c0a328f54e9-17d731e2ef17b982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f434b-17d771eef8d615fa","8f44c0a328f54e9-17d731e2ef17b982"]},"geometry":{"type":"LineString","coordinates":[[-83.61541290000001,32.8596037],[-83.6154322,32.8598115]]},"id":"8a44c0a328f7fff-179771e8ff573621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61510030000001,32.8601217]},"id":"8f44c0a328f391a-179f32b25ffceb0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f391a-179f32b25ffceb0e","8f44c0a328f54e9-17d731e2ef17b982"]},"geometry":{"type":"LineString","coordinates":[[-83.6154322,32.8598115],[-83.6153177,32.8598261],[-83.61523770000001,32.859850800000004],[-83.6151694,32.859909],[-83.61511560000001,32.860041700000004],[-83.6151088,32.8600748],[-83.61510030000001,32.8601217]]},"id":"8a44c0a328f7fff-179ff26650084e21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61561830000001,32.8596041]},"id":"8f44c0a328f58b6-17d7b16e9ab905bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f58b6-17d7b16e9ab905bf","8f44c0a328f54e9-17d731e2ef17b982"]},"geometry":{"type":"LineString","coordinates":[[-83.6154322,32.8598115],[-83.61549020000001,32.8597665],[-83.6155447,32.8596956],[-83.6155715,32.8596455],[-83.61561830000001,32.8596041]]},"id":"8b44c0a328f5fff-179731a6e86d0c99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61469740000001,32.8600061]},"id":"8f44c0a328f2044-17bff3ae2e669985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61492530000001,32.8600744]},"id":"8f44c0a328f3d06-17ffb31fb5dc96d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f3d06-17ffb31fb5dc96d0","8f44c0a328f2044-17bff3ae2e669985"]},"geometry":{"type":"LineString","coordinates":[[-83.61469740000001,32.8600061],[-83.61492530000001,32.8600744]]},"id":"8a44c0a328f7fff-17d73366e6f5c1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61508330000001,32.8601156]},"id":"8f44c0a328f39a8-179772bcfa2490a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f39a8-179772bcfa2490a4","8f44c0a328f3d06-17ffb31fb5dc96d0"]},"geometry":{"type":"LineString","coordinates":[[-83.61492530000001,32.8600744],[-83.61495710000001,32.8601193],[-83.61504260000001,32.8601381],[-83.61508330000001,32.8601156]]},"id":"8b44c0a328f3fff-179772f215bebb32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f39a8-179772bcfa2490a4","8f44c0a328f3d06-17ffb31fb5dc96d0"]},"geometry":{"type":"LineString","coordinates":[[-83.61492530000001,32.8600744],[-83.61498420000001,32.8600632],[-83.61506030000001,32.8600799],[-83.61508330000001,32.8601156]]},"id":"8b44c0a328f3fff-17ff32e9d7e98a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6151277,32.8601283]},"id":"8f44c0a328f3824-179f32a13a231a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f391a-179f32b25ffceb0e","8f44c0a328f3824-179f32a13a231a7b"]},"geometry":{"type":"LineString","coordinates":[[-83.61510030000001,32.8601217],[-83.6151277,32.8601283]]},"id":"8d44c0a328f393f-179f32a9ce603bae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f39a8-179772bcfa2490a4","8f44c0a328f391a-179f32b25ffceb0e"]},"geometry":{"type":"LineString","coordinates":[[-83.61508330000001,32.8601156],[-83.61510030000001,32.8601217]]},"id":"8c44c0a328f39ff-179732b7a2ffd823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61543060000001,32.8602556]},"id":"8f44c0a328f10d2-17dff1e3e0974c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f10d2-17dff1e3e0974c78","8f44c0a328f54e9-17d731e2ef17b982"]},"geometry":{"type":"LineString","coordinates":[[-83.61543060000001,32.8602556],[-83.61550100000001,32.8601891],[-83.61553640000001,32.860145200000005],[-83.61555320000001,32.8600885],[-83.61555770000001,32.8600396],[-83.61555100000001,32.8599854],[-83.61553810000001,32.8599084],[-83.6155277,32.8598713],[-83.6154322,32.8598115]]},"id":"8a44c0a328f7fff-17dfb1aeb6277007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61532150000001,32.8602057]},"id":"8f44c0a328f1454-17bfb228178ce5b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f1454-17bfb228178ce5b9","8f44c0a328f10d2-17dff1e3e0974c78"]},"geometry":{"type":"LineString","coordinates":[[-83.61532150000001,32.8602057],[-83.61543060000001,32.8602556]]},"id":"8b44c0a328f1fff-17df3205f4644e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f391a-179f32b25ffceb0e","8f44c0a328f10d2-17dff1e3e0974c78"]},"geometry":{"type":"LineString","coordinates":[[-83.61510030000001,32.8601217],[-83.6151402,32.8602441],[-83.6152598,32.8602956],[-83.6153144,32.860304500000005],[-83.61536140000001,32.8602909],[-83.61543060000001,32.8602556]]},"id":"8a44c0a328f7fff-17df725c9ed3c7be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6682981,32.7902301]},"id":"8f44c0b1c428634-13f7f0d1bf62be4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66818020000001,32.7902337]},"id":"8f44c0b1c42ab42-13feb11b643aba22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c428634-13f7f0d1bf62be4d","8f44c0b1c42ab42-13feb11b643aba22"]},"geometry":{"type":"LineString","coordinates":[[-83.6682981,32.7902301],[-83.66818020000001,32.7902337]]},"id":"8a44c0b1c42ffff-13f6f0f69ebfe677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6681375,32.7899204]},"id":"8f44c0b1c42e31b-13b6f1361bdf1d87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6681472,32.7900488]},"id":"8f44c0b1c428594-13f6b130064039de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c428594-13f6b130064039de","8f44c0b1c42e31b-13b6f1361bdf1d87"]},"geometry":{"type":"LineString","coordinates":[[-83.6681375,32.7899204],[-83.6681472,32.7900488]]},"id":"8a44c0b1c42ffff-13def1330e2545c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176772,32.854805500000005]},"id":"8f44c0a329054a9-139f7c67c112557b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6175449,32.8550423]},"id":"8f44c0a32900350-13b77cba700f23c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a329054a9-139f7c67c112557b","8f44c0a32900350-13b77cba700f23c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6176772,32.854805500000005],[-83.61760310000001,32.8548133],[-83.6174919,32.8547839],[-83.61736950000001,32.854773300000005],[-83.617305,32.854788500000005],[-83.617278,32.854832],[-83.61726540000001,32.8548926],[-83.6172605,32.8549323],[-83.61726990000001,32.854970900000005],[-83.6173042,32.8549931],[-83.61744540000001,32.8550188],[-83.6175449,32.8550423]]},"id":"8a44c0a32907fff-13bfad0c8691e41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177066,32.8548707]},"id":"8f44c0a329054cb-13b73c556fa658b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176411,32.8550467]},"id":"8f44c0a32901d8a-13b73c7e50678635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a329054cb-13b73c556fa658b2","8f44c0a32901d8a-13b73c7e50678635"]},"geometry":{"type":"LineString","coordinates":[[-83.6177066,32.8548707],[-83.6176411,32.8550467]]},"id":"8a44c0a32907fff-13ff3c69e39795cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6835897,32.9022783]},"id":"8f44c0a05ce14a5-17f7fb7c74a1becc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683205,32.9024761]},"id":"8f44c0a05ce37a4-17ff9c6ce84ea76e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05ce14a5-17f7fb7c74a1becc","8f44c0a05ce37a4-17ff9c6ce84ea76e"]},"geometry":{"type":"LineString","coordinates":[[-83.6835897,32.9022783],[-83.683205,32.9024761]]},"id":"8a44c0a05ce7fff-17b7cbf4a14dfc65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630533,32.8362192]},"id":"8f44c0b1b0c2ce8-13bfbd9fb79dd08f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631412,32.8360913]},"id":"8f44c0b1b0c66ce-13dfbd68c4741da9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c66ce-13dfbd68c4741da9","8f44c0b1b0c2ce8-13bfbd9fb79dd08f"]},"geometry":{"type":"LineString","coordinates":[[-83.6630533,32.8362192],[-83.6631412,32.8360913]]},"id":"8b44c0b1b0c2fff-1397bd844db37583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66296220000001,32.8360883]},"id":"8f44c0b1b0d5ac9-13dfbdd8a891426f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0d5ac9-13dfbdd8a891426f","8f44c0b1b0c2ce8-13bfbd9fb79dd08f"]},"geometry":{"type":"LineString","coordinates":[[-83.66296220000001,32.8360883],[-83.6630533,32.8362192]]},"id":"8a44c0b1b0c7fff-1396bdbc38ed0517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66269840000001,32.8365017]},"id":"8f44c0b1b0d13a0-17dfbe7d86e0e29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625175,32.8364952]},"id":"8f44c0b1b0d17a1-17dfbeee9aa59198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0d17a1-17dfbeee9aa59198","8f44c0b1b0d13a0-17dfbe7d86e0e29d"]},"geometry":{"type":"LineString","coordinates":[[-83.66269840000001,32.8365017],[-83.6625175,32.8364952]]},"id":"8b44c0b1b0d1fff-17dfbeb604617e45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632865,32.8366208]},"id":"8f44c0b1b0c3411-17bebd0dfa73993e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630691,32.836616500000005]},"id":"8f44c0b1b0dc8a8-17b7fd95da8705e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0dc8a8-17b7fd95da8705e3","8f44c0b1b0c3411-17bebd0dfa73993e"]},"geometry":{"type":"LineString","coordinates":[[-83.6632865,32.8366208],[-83.6630691,32.836616500000005]]},"id":"8944c0b1b0fffff-17b6bd51ea45fbd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66456760000001,32.8267763]},"id":"8f44c0b1b896302-179fb9ed4ce1ff6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6645641,32.826904400000004]},"id":"8f44c0b1b8962ea-17fff9ef79bdc588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b896302-179fb9ed4ce1ff6a","8f44c0b1b8962ea-17fff9ef79bdc588"]},"geometry":{"type":"LineString","coordinates":[[-83.66456760000001,32.8267763],[-83.6639351,32.8267791],[-83.6639049,32.826784],[-83.66388450000001,32.826791],[-83.6638673,32.8267992],[-83.6638542,32.826812700000005],[-83.6638497,32.8268324],[-83.6638513,32.8268554],[-83.6638573,32.8268768],[-83.6638873,32.8268944],[-83.6639126,32.8268979],[-83.6645641,32.826904400000004]]},"id":"8844c0b1bdfffff-17d6fad81a41984b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6318478,32.8323568]},"id":"8f44c0ba926d760-13bf09cf2bc54618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6320979,32.8329307]},"id":"8f44c0a34534132-13b7b932dd79d564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba926d760-13bf09cf2bc54618","8f44c0a34534132-13b7b932dd79d564"]},"geometry":{"type":"LineString","coordinates":[[-83.6318478,32.8323568],[-83.6316247,32.832631400000004],[-83.6320979,32.8329307]]},"id":"8744c0a34ffffff-1397b9e4f1eff9ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68905500000001,32.8631374]},"id":"8f44c0a2058d306-17f6fe24a9bb6008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6888799,32.8630148]},"id":"8f44c0a2058d19e-179e7e9213d02bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2058d306-17f6fe24a9bb6008","8f44c0a2058d19e-179e7e9213d02bf4"]},"geometry":{"type":"LineString","coordinates":[[-83.68905500000001,32.8631374],[-83.6889548,32.863144500000004],[-83.6888799,32.8630148]]},"id":"8b44c0a2058dfff-17d67e64b22daa1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886369,32.8628623]},"id":"8f44c0a2058c38b-17beff29fb131381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886056,32.8625526]},"id":"8f44c0a2058cd68-13f77f3d8b3ef6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2058c38b-17beff29fb131381","8f44c0a2058cd68-13f77f3d8b3ef6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6886369,32.8628623],[-83.6885563,32.8627835],[-83.6886056,32.8625526]]},"id":"8b44c0a2058cfff-17deff49c65c2d1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69795830000001,32.822507800000004]},"id":"8f44c0b0a495094-13b768681c4789aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69810310000001,32.822188100000005]},"id":"8f44c0b0a4b3756-13fff80d9433b09d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b3756-13fff80d9433b09d","8f44c0b0a495094-13b768681c4789aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69795830000001,32.822507800000004],[-83.6979653,32.8224395],[-83.6979902,32.822297400000004],[-83.6979984,32.8222551],[-83.69801120000001,32.8222303],[-83.6980388,32.822182500000004],[-83.69810310000001,32.822188100000005]]},"id":"8944c0b0a4bffff-13bfe84e0b46e9e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6981138,32.8221683]},"id":"8f44c0b0a4b3776-13df7806e398a4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6979944,32.822125]},"id":"8f44c0b0a4b34e8-13d668518c988973"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b34e8-13d668518c988973","8f44c0b0a4b3776-13df7806e398a4a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6981138,32.8221683],[-83.6979944,32.822125]]},"id":"8b44c0b0a4b3fff-13d7f82c37b5ee7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69819290000001,32.8220435]},"id":"8f44c0b0a4b3024-139777d574fc48f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b3776-13df7806e398a4a6","8f44c0b0a4b3024-139777d574fc48f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6981138,32.8221683],[-83.69819290000001,32.8220435]]},"id":"8b44c0b0a4b3fff-13be77ee2c64265a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698068,32.821994100000005]},"id":"8f44c0b0a4b3cc3-13f678238e4f4913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b34e8-13d668518c988973","8f44c0b0a4b3cc3-13f678238e4f4913"]},"geometry":{"type":"LineString","coordinates":[[-83.698068,32.821994100000005],[-83.6979944,32.822125]]},"id":"8b44c0b0a4b3fff-139f683a80b71b0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699118,32.8231089]},"id":"8f44c0b0a48144a-13bf759346129b7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69894690000001,32.823047800000005]},"id":"8f44c0b0a483865-1396e5fe34224259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a483865-1396e5fe34224259","8f44c0b0a48144a-13bf759346129b7b"]},"geometry":{"type":"LineString","coordinates":[[-83.699118,32.8231089],[-83.69894690000001,32.823047800000005]]},"id":"8a44c0b0a487fff-139e65c8cdc300cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298445,32.8436277]},"id":"8f44c0a36b404e4-17d75eb336da7880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62975320000001,32.8433827]},"id":"8f44c0a36b46313-17bf3eec4da941f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b46313-17bf3eec4da941f5","8f44c0a36b404e4-17d75eb336da7880"]},"geometry":{"type":"LineString","coordinates":[[-83.6298445,32.8436277],[-83.6296488,32.8435136],[-83.62975320000001,32.8433827]]},"id":"8a44c0a36b47fff-17ff2efc8e8d441f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62998490000001,32.8434566]},"id":"8f44c0a36b40c2d-17df6e5b79a1f21b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299779,32.8432758]},"id":"8f44c0a36b4479e-17f76e5fd7a0ccaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b4479e-17f76e5fd7a0ccaa","8f44c0a36b40c2d-17df6e5b79a1f21b"]},"geometry":{"type":"LineString","coordinates":[[-83.62998490000001,32.8434566],[-83.6300403,32.843377700000005],[-83.63004690000001,32.8433347],[-83.63002150000001,32.843302300000005],[-83.6299779,32.8432758]]},"id":"8a44c0a36b47fff-179f1e45e0fb8712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6836078,32.8167722]},"id":"8f44c0b19d14b12-17b6ab7122b30cd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68361,32.8157798]},"id":"8f44c0b19d36c23-13d6eb6fc352ce4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d14b12-17b6ab7122b30cd9","8f44c0b19d36c23-13d6eb6fc352ce4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6836078,32.8167722],[-83.68361,32.8157798]]},"id":"8644c0b1fffffff-13fe8b707824e22c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6829795,32.816768]},"id":"8f44c0b19d168b6-17b68cf9d6d88737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68300020000001,32.815779500000005]},"id":"8f44c0b18a4caf6-13d6bcececc77088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4caf6-13d6bcececc77088","8f44c0b19d168b6-17b68cf9d6d88737"]},"geometry":{"type":"LineString","coordinates":[[-83.6829795,32.816768],[-83.68300020000001,32.815779500000005]]},"id":"8644c0b1fffffff-13ffacf35a5a3a3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824654,32.8167646]},"id":"8f44c0b18a4b6f6-17bfee3b29610623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824667,32.815611100000005]},"id":"8f44c0b18a4e930-13defe3a5c1da3d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4b6f6-17bfee3b29610623","8f44c0b18a4e930-13defe3a5c1da3d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6824654,32.8167646],[-83.6824667,32.815611100000005]]},"id":"8944c0b18a7ffff-13d7fe3acf8fdc8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68194120000001,32.8168431]},"id":"8f44c0b19da4686-17deff82ca7b1dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6819301,32.816763800000004]},"id":"8f44c0b19da44c8-17bfef89b38059f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19da4686-17deff82ca7b1dc3","8f44c0b19da44c8-17bfef89b38059f8"]},"geometry":{"type":"LineString","coordinates":[[-83.68194120000001,32.8168431],[-83.6819301,32.816763800000004]]},"id":"8b44c0b19da4fff-17d6bf8632533536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6829958,32.815609800000004]},"id":"8f44c0b18a4c875-13deacefad7d8fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6843035,32.815780000000004]},"id":"8f44c0b19d3485b-13d689be5421e85a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d3485b-13d689be5421e85a","8f44c0b18a4c875-13deacefad7d8fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6829958,32.815609800000004],[-83.6843042,32.8156066],[-83.6843035,32.815780000000004]]},"id":"8644c0b1fffffff-13f7eb26f6f4e553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886958,32.8616546]},"id":"8f44c0a205aed86-13d67f052f75a9fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882925,32.8620771]},"id":"8f44c0a20585756-13deb00137f7a3fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20585756-13deb00137f7a3fd","8f44c0a205aed86-13d67f052f75a9fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6886958,32.8616546],[-83.68863300000001,32.8616806],[-83.6882925,32.8620771]]},"id":"8944c0a205bffff-13d77f884c0dd596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892243,32.8618375]},"id":"8f44c0a205ac71c-13be7dbadaa8799d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68940740000001,32.861983200000005]},"id":"8f44c0a205ac2cc-1397fd48668894dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205ac71c-13be7dbadaa8799d","8f44c0a205ac2cc-1397fd48668894dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6892243,32.8618375],[-83.68926660000001,32.861893900000005],[-83.68940740000001,32.861983200000005]]},"id":"8b44c0a205acfff-13fe7d856661ef09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881479,32.8622454]},"id":"8f44c0a20581c02-13b7e05b9cb675b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20585756-13deb00137f7a3fd","8f44c0a20581c02-13b7e05b9cb675b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6882925,32.8620771],[-83.6881479,32.8622454]]},"id":"8a44c0a20587fff-1396c02e6b9c7d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205ac71c-13be7dbadaa8799d","8f44c0a205aed86-13d67f052f75a9fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6892243,32.8618375],[-83.6892133,32.8618186],[-83.6889915,32.8616662],[-83.68891070000001,32.8616496],[-83.6886958,32.8616546]]},"id":"8944c0a205bffff-13f6fe55ef3afd5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887339,32.8616821]},"id":"8f44c0a205aec32-13d77eed58a6e05d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205aec32-13d77eed58a6e05d","8f44c0a205aed86-13d67f052f75a9fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6887339,32.8616821],[-83.6886958,32.8616546]]},"id":"8c44c0a205aedff-13defef94552a0b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627194,32.8116594]},"id":"8f44c0b1842946e-17b7be70604fec27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66269240000001,32.811501400000004]},"id":"8f44c0b18429c81-17d6fe8146124f8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18429c81-17d6fe8146124f8d","8f44c0b1842946e-17b7be70604fec27"]},"geometry":{"type":"LineString","coordinates":[[-83.6627194,32.8116594],[-83.66269240000001,32.811501400000004]]},"id":"8b44c0b18429fff-1797fe78de0474f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624393,32.81149]},"id":"8f44c0b18428645-17dfff1f7e0313a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624505,32.811261]},"id":"8f44c0b184281aa-17bebf1873e8eebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184281aa-17bebf1873e8eebe","8f44c0b18428645-17dfff1f7e0313a3"]},"geometry":{"type":"LineString","coordinates":[[-83.6624393,32.81149],[-83.6624505,32.811261]]},"id":"8b44c0b18428fff-1797bf1bf7060551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662934,32.8114743]},"id":"8f44c0b18429830-17d7fdea4da22088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18429830-17d7fdea4da22088","8f44c0b18429c81-17d6fe8146124f8d"]},"geometry":{"type":"LineString","coordinates":[[-83.662934,32.8114743],[-83.66282120000001,32.8115071],[-83.66269240000001,32.811501400000004]]},"id":"8b44c0b18429fff-17d6be3505d0aa0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627789,32.8117092]},"id":"8f44c0b18429728-17d6fe4b31d11eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1842946e-17b7be70604fec27","8f44c0b18429728-17d6fe4b31d11eb5"]},"geometry":{"type":"LineString","coordinates":[[-83.6627194,32.8116594],[-83.6627789,32.8117092]]},"id":"8b44c0b18429fff-17d6be5ddade4de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629305,32.811708700000004]},"id":"8f44c0b18429333-17d7fdec7153629d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18429333-17d7fdec7153629d","8f44c0b18429728-17d6fe4b31d11eb5"]},"geometry":{"type":"LineString","coordinates":[[-83.6627789,32.8117092],[-83.6629305,32.811708700000004]]},"id":"8b44c0b18429fff-17d6be1bdb0ae3b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6685688,32.7846696]},"id":"8f44c0b1cc9d8b0-17d6b0288589c356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6678483,32.784673600000005]},"id":"8f44c0b1cc9ead0-17d7b1ead0ebf143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc9d8b0-17d6b0288589c356","8f44c0b1cc9ead0-17d7b1ead0ebf143"]},"geometry":{"type":"LineString","coordinates":[[-83.6685688,32.7846696],[-83.6678483,32.784673600000005]]},"id":"8a44c0b1cc9ffff-17d7f109b1dee7d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6668691,32.7849136]},"id":"8f44c0b1126832b-17ffb44ed35699f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666781,32.7847625]},"id":"8f44c0b1126810c-179eb485e3bf9b0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1126810c-179eb485e3bf9b0c","8f44c0b1126832b-17ffb44ed35699f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6668691,32.7849136],[-83.666781,32.7847625]]},"id":"8b44c0b11268fff-17bff46a639a8976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6670108,32.785149100000005]},"id":"8f44c0b11269090-17feb3f64b1383f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667117,32.7853334]},"id":"8f44c0b11269299-17f7f3b3eafee784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11269090-17feb3f64b1383f6","8f44c0b11269299-17f7f3b3eafee784"]},"geometry":{"type":"LineString","coordinates":[[-83.6670108,32.785149100000005],[-83.667117,32.7853334]]},"id":"8b44c0b11269fff-17b7f3d5134d52ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630427,32.819726700000004]},"id":"8f44c0b186aab0d-13ffbda652d480ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632981,32.8196407]},"id":"8f44c0b186a8000-13b7fd06b1e55e83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186a8000-13b7fd06b1e55e83","8f44c0b186aab0d-13ffbda652d480ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6630427,32.819726700000004],[-83.66305990000001,32.8196644],[-83.6631646,32.8196389],[-83.6632981,32.8196407]]},"id":"8a44c0b186affff-13befd6260abe71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7169396,32.8271415]},"id":"8f44c0b0a305c42-17977a10c4233685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7169295,32.8273862]},"id":"8f44c0b0a30575e-179e7a171c270637"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a305c42-17977a10c4233685","8f44c0b0a30575e-179e7a171c270637"]},"geometry":{"type":"LineString","coordinates":[[-83.7169396,32.8271415],[-83.7169295,32.8273862]]},"id":"8b44c0b0a305fff-17dffa13f38fc13f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71725160000001,32.8280799]},"id":"8f44c0b0a30c3b4-17dff94dc4554e3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71678200000001,32.8281519]},"id":"8f44c0b0a30e055-17fefa73475dcde2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30e055-17fefa73475dcde2","8f44c0b0a30c3b4-17dff94dc4554e3e"]},"geometry":{"type":"LineString","coordinates":[[-83.71725160000001,32.8280799],[-83.71709100000001,32.8280923],[-83.716966,32.8281018],[-83.71678200000001,32.8281519]]},"id":"8a44c0b0a30ffff-17dff9e1a844556b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175227,32.8283834]},"id":"8f44c0b0a30d725-139fb8a45e929f48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175618,32.827911]},"id":"8f44c0b0a32b471-17f6788be8f5439f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30d725-139fb8a45e929f48","8f44c0b0a32b471-17f6788be8f5439f"]},"geometry":{"type":"LineString","coordinates":[[-83.7175227,32.8283834],[-83.7175618,32.827911]]},"id":"8944c0b0a33ffff-17fe38981d9049bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71759730000001,32.828712]},"id":"8f44c0b0a309bb5-13df3875be10391b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7170621,32.8290821]},"id":"8f44c0b0a30b2c5-13d679c43da4acb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30b2c5-13d679c43da4acb5","8f44c0b0a309bb5-13df3875be10391b"]},"geometry":{"type":"LineString","coordinates":[[-83.71759730000001,32.828712],[-83.7175062,32.8291403],[-83.7170621,32.8290821]]},"id":"8844c0b0a3fffff-139f78e6c057879b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6991112,32.8150777]},"id":"8f44c0b1d22b6a3-139ff5978edc427b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69934830000001,32.8154668]},"id":"8f44c0b1d272db6-1396e503522478e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d22b6a3-139ff5978edc427b","8f44c0b1d272db6-1396e503522478e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6991112,32.8150777],[-83.6991186,32.8151521],[-83.6990943,32.815210900000004],[-83.6990643,32.8152884],[-83.69907140000001,32.815362300000004],[-83.6991165,32.8154334],[-83.6991881,32.815455400000005],[-83.69934830000001,32.8154668]]},"id":"8944c0b1d23ffff-13b6758246ec4b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69954580000001,32.8154807]},"id":"8f44c0b1d2729b4-139f7487edb215d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69956810000001,32.815195700000004]},"id":"8f44c0b1d2761b0-13df7479faa46366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2761b0-13df7479faa46366","8f44c0b1d2729b4-139f7487edb215d3"]},"geometry":{"type":"LineString","coordinates":[[-83.69954580000001,32.8154807],[-83.69957790000001,32.815483],[-83.69959750000001,32.815234600000004],[-83.69956810000001,32.815195700000004]]},"id":"8a44c0b1d277fff-13bfe46fb11bb79f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994992,32.8154777]},"id":"8f44c0b1d2766dd-139ff4a50aa63f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2761b0-13df7479faa46366","8f44c0b1d2766dd-139ff4a50aa63f6c"]},"geometry":{"type":"LineString","coordinates":[[-83.6994992,32.8154777],[-83.69952330000001,32.8152296],[-83.69956810000001,32.815195700000004]]},"id":"8a44c0b1d277fff-13bff4998c202444"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721219,32.8270222]},"id":"8f44c0b0aaeb958-17beef9e2e17e4d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72087660000001,32.8268976]},"id":"8f44c0b0aaeaac4-17ff30742aa9557a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeb958-17beef9e2e17e4d3","8f44c0b0aaeaac4-17ff30742aa9557a"]},"geometry":{"type":"LineString","coordinates":[[-83.721219,32.8270222],[-83.72087660000001,32.8268976]]},"id":"8a44c0b0aaeffff-1797f009271c8ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7208277,32.8269869]},"id":"8f44c0b0aaea22d-17b6f092bef55bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205703,32.8269187]},"id":"8f44c0b0aaea7ae-17fe31339f8cdd57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaea7ae-17fe31339f8cdd57","8f44c0b0aaea22d-17b6f092bef55bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.7208277,32.8269869],[-83.720802,32.8269958],[-83.7205703,32.8269187]]},"id":"8b44c0b0aaeafff-179670e329f32c1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7212307,32.8271262]},"id":"8f44c0b0aaebba8-17ffef96daae5717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72116410000001,32.8271095]},"id":"8f44c0b0aaeb8cb-17ff7fc072fdf699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeb8cb-17ff7fc072fdf699","8f44c0b0aaebba8-17ffef96daae5717"]},"geometry":{"type":"LineString","coordinates":[[-83.7212307,32.8271262],[-83.72116410000001,32.8271095]]},"id":"8b44c0b0aaebfff-17f6bfaba2b38ff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7208607,32.826998700000004]},"id":"8f44c0b0aaea264-17be307e1266e076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaea264-17be307e1266e076","8f44c0b0aaea22d-17b6f092bef55bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.7208607,32.826998700000004],[-83.7208277,32.8269869]]},"id":"8d44c0b0aaea37f-17b6b088647f9cc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7204913,32.8273294]},"id":"8f44c0b0aacc706-17fef164fb16acaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72073470000001,32.827417700000005]},"id":"8f44c0b0aacc35d-17b630ccd6e468b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aacc35d-17b630ccd6e468b0","8f44c0b0aacc706-17fef164fb16acaf"]},"geometry":{"type":"LineString","coordinates":[[-83.7204913,32.8273294],[-83.720535,32.8274014],[-83.7206051,32.827437],[-83.72073470000001,32.827417700000005]]},"id":"8b44c0b0aaccfff-17bfb1221ae2d92d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6690829,32.881099400000004]},"id":"8f44c0a226da810-13bfaee73f9f944e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6692558,32.8809926]},"id":"8f44c0a226de271-13feee7b29a59f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226da810-13bfaee73f9f944e","8f44c0a226de271-13feee7b29a59f08"]},"geometry":{"type":"LineString","coordinates":[[-83.6690829,32.881099400000004],[-83.6692558,32.8809926]]},"id":"8a44c0a226dffff-139feeb13b22703d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66961110000001,32.8814176]},"id":"8f44c0a226d9588-1396ad9d11887dd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6701008,32.8811303]},"id":"8f44c0a226dd329-13d6fc6b036bc326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226dd329-13d6fc6b036bc326","8f44c0a226d9588-1396ad9d11887dd5"]},"geometry":{"type":"LineString","coordinates":[[-83.66961110000001,32.8814176],[-83.6697735,32.8814414],[-83.6701204,32.8812425],[-83.6701008,32.8811303]]},"id":"8a44c0a226dffff-13d7ace08cdc3767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66278340000001,32.8103381]},"id":"8f44c0b1855288d-17fffe486f5b4d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627912,32.8099897]},"id":"8f44c0b1855618a-13b7be438c582809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855288d-17fffe486f5b4d98","8f44c0b1855618a-13b7be438c582809"]},"geometry":{"type":"LineString","coordinates":[[-83.66278340000001,32.8103381],[-83.6627912,32.8099897]]},"id":"8a44c0b18557fff-1796fe45f22b000f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614608,32.848475300000004]},"id":"8f44c0a36772c08-139f33e60591b1b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61460600000001,32.8484217]},"id":"8f44c0a36772d19-13f7b3e74439140c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772d19-13f7b3e74439140c","8f44c0a36772c08-139f33e60591b1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.614608,32.848475300000004],[-83.61460600000001,32.8484217]]},"id":"8c44c0a36772dff-139f73e6a46059cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614548,32.8486366]},"id":"8f44c0a36772444-13fff40b8104c0f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61441040000001,32.848513700000005]},"id":"8f44c0a3670d2cc-13b734618d9c5f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772444-13fff40b8104c0f1","8f44c0a3670d2cc-13b734618d9c5f63"]},"geometry":{"type":"LineString","coordinates":[[-83.614548,32.8486366],[-83.6144848,32.8486375],[-83.61441040000001,32.848513700000005]]},"id":"8844c0a367fffff-13f7743d3fc95d08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70970240000001,32.8176567]},"id":"8f44c0b0ac406e2-17df7bbc05f7fe1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7098737,32.817651500000004]},"id":"8f44c0b0ac4021a-17de7b50f1b4a36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4021a-17de7b50f1b4a36c","8f44c0b0ac406e2-17df7bbc05f7fe1a"]},"geometry":{"type":"LineString","coordinates":[[-83.70970240000001,32.8176567],[-83.7098737,32.817651500000004]]},"id":"8b44c0b0ac40fff-17dfdb867498a0ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70719460000001,32.807154600000004]},"id":"8f44c0b1db6a7ac-17b7f1db677d69ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068893,32.8071494]},"id":"8f44c0b1db41173-17b6729a35864e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db41173-17b6729a35864e67","8f44c0b1db6a7ac-17b7f1db677d69ea"]},"geometry":{"type":"LineString","coordinates":[[-83.70719460000001,32.807154600000004],[-83.7068893,32.8071494]]},"id":"8944c0b1db7ffff-17b6523ad30bdfd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70694900000001,32.807095600000004]},"id":"8f44c0b1db418ee-1796d274ecd527da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70682280000001,32.8070194]},"id":"8f44c0b1db41d43-17f772c3c5dcd08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db41d43-17f772c3c5dcd08c","8f44c0b1db418ee-1796d274ecd527da"]},"geometry":{"type":"LineString","coordinates":[[-83.70694900000001,32.807095600000004],[-83.70682280000001,32.8070194]]},"id":"8b44c0b1db41fff-17fef29c54238c67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68562320000001,32.8418192]},"id":"8f44c0a26814495-13df86858cf4bdc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68525500000001,32.8417325]},"id":"8f44c0a26816d91-13b6d76ba9fa4e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26814495-13df86858cf4bdc8","8f44c0a26816d91-13b6d76ba9fa4e9f"]},"geometry":{"type":"LineString","coordinates":[[-83.68562320000001,32.8418192],[-83.68525500000001,32.8417325]]},"id":"8844c0a269fffff-13bff6f89dad8044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864611,32.841402800000004]},"id":"8f44c0a26830744-13d6c479d46c75fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68657490000001,32.841275800000005]},"id":"8f44c0a2683016a-1397e432b902c28d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26830744-13d6c479d46c75fa","8f44c0a2683016a-1397e432b902c28d"]},"geometry":{"type":"LineString","coordinates":[[-83.6864611,32.841402800000004],[-83.68657490000001,32.841275800000005]]},"id":"8b44c0a26830fff-13bf94564c49161c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864499,32.8414402]},"id":"8f44c0a26830759-13fea480d42bcee4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68639250000001,32.8420636]},"id":"8f44c0a26815842-13f7c4a4badad676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26815842-13f7c4a4badad676","8f44c0a26830759-13fea480d42bcee4"]},"geometry":{"type":"LineString","coordinates":[[-83.6864499,32.8414402],[-83.6868834,32.8416489],[-83.68679130000001,32.841891700000005],[-83.6866033,32.841971300000004],[-83.6865075,32.8419417],[-83.68639250000001,32.8420636]]},"id":"8944c0a2683ffff-13b7a3f7c543181d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068112,32.8040206]},"id":"8f44c0b0e4c20db-1796f2cb0aef6f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068172,32.8034326]},"id":"8f44c0b0e4c650c-13b772c74b91c8dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e4c20db-1796f2cb0aef6f6c","8f44c0b0e4c650c-13b772c74b91c8dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7068112,32.8040206],[-83.7068172,32.8034326]]},"id":"8a44c0b0e4c7fff-17df72c92e3b2f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6148064,32.8479179]},"id":"8f44c0a3672961b-13bfb36a0e5c1a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61481830000001,32.8475624]},"id":"8f44c0a36729c36-17dfb3629580d5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36729c36-17dfb3629580d5d9","8f44c0a3672961b-13bfb36a0e5c1a79"]},"geometry":{"type":"LineString","coordinates":[[-83.6148064,32.8479179],[-83.61481830000001,32.8475624]]},"id":"8b44c0a36729fff-17dfb36643f03d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61459590000001,32.8479156]},"id":"8f44c0a3672baf2-13bf73ed99bc7703"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61464570000001,32.8474607]},"id":"8f44c0a3672806c-179ff3ce7c5f6975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3672806c-179ff3ce7c5f6975","8f44c0a3672baf2-13bf73ed99bc7703"]},"geometry":{"type":"LineString","coordinates":[[-83.61459590000001,32.8479156],[-83.6145954,32.847549400000005],[-83.6146045,32.8475099],[-83.61464570000001,32.8474607]]},"id":"8a44c0a3672ffff-17bff3eb07ad6a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6161895,32.847748100000004]},"id":"8f44c0a360d9c55-17d7b0099166377f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6163444,32.847698]},"id":"8f44c0a360d9835-17b76fa8cfaceb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360d9c55-17d7b0099166377f","8f44c0a360d9835-17b76fa8cfaceb36"]},"geometry":{"type":"LineString","coordinates":[[-83.6161895,32.847748100000004],[-83.6162037,32.8477241],[-83.6162295,32.8477057],[-83.6162711,32.8476981],[-83.6163444,32.847698]]},"id":"8b44c0a360d9fff-17bfbfddbccd4684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61580450000001,32.8474953]},"id":"8f44c0a360d8193-17b7b0fa30a5b3c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615808,32.8476115]},"id":"8f44c0a360d8705-17ff30f808ae42d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360d8705-17ff30f808ae42d7","8f44c0a360d8193-17b7b0fa30a5b3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.61580450000001,32.8474953],[-83.615808,32.8476115]]},"id":"8b44c0a360d8fff-17dff0f92f21fda0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6166651,32.8472967]},"id":"8f44c0a360ce423-17bf7ee05255e97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6165314,32.8466284]},"id":"8f44c0a360c0723-1797ef33e20e33ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360ce423-17bf7ee05255e97b","8f44c0a360c0723-1797ef33e20e33ad"]},"geometry":{"type":"LineString","coordinates":[[-83.6166651,32.8472967],[-83.6164207,32.8472694],[-83.6165314,32.8466284]]},"id":"8944c0a360fffff-179f6f4b0296d2af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616765,32.8466576]},"id":"8f44c0a360c0adc-17bf2ea1eada9958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360c0723-1797ef33e20e33ad","8f44c0a360c0adc-17bf2ea1eada9958"]},"geometry":{"type":"LineString","coordinates":[[-83.6165314,32.8466284],[-83.616765,32.8466576]]},"id":"8b44c0a360c0fff-179feeeaecf55b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6162886,32.8465973]},"id":"8f44c0a360c284e-17977fcbae1e819b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6158176,32.8467008]},"id":"8f44c0a360d184c-17d730f209bb03ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360d184c-17d730f209bb03ee","8f44c0a360c284e-17977fcbae1e819b"]},"geometry":{"type":"LineString","coordinates":[[-83.6162886,32.8465973],[-83.6158176,32.8467008]]},"id":"8944c0a360fffff-17b7b05ed35d38d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6163259,32.846410500000005]},"id":"8f44c0a360c621d-179fbfb4566154f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360c621d-179fbfb4566154f6","8f44c0a360c284e-17977fcbae1e819b"]},"geometry":{"type":"LineString","coordinates":[[-83.6163259,32.846410500000005],[-83.6162886,32.8465973]]},"id":"8a44c0a360c7fff-17dfffc003c8aa8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360c0723-1797ef33e20e33ad","8f44c0a360c284e-17977fcbae1e819b"]},"geometry":{"type":"LineString","coordinates":[[-83.6165314,32.8466284],[-83.6162886,32.8465973]]},"id":"8a44c0a360c7fff-179f2f7fc1a00b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6279636,32.831046900000004]},"id":"8f44c0ba920841d-179f534acfecfed5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6274205,32.8316735]},"id":"8f44c0ba92e47ae-1397f49e358bac7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920841d-179f534acfecfed5","8f44c0ba92e47ae-1397f49e358bac7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6279636,32.831046900000004],[-83.6274205,32.8316735]]},"id":"8844c0ba93fffff-17d733f48f13aa0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6278506,32.8309768]},"id":"8f44c0ba920a975-17f79391692da8ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6273074,32.8316028]},"id":"8f44c0ba92e448e-13f7d4e4e9b6810e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e448e-13f7d4e4e9b6810e","8f44c0ba920a975-17f79391692da8ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6278506,32.8309768],[-83.6273074,32.8316028]]},"id":"8844c0ba93fffff-17b7343b25101dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62841610000001,32.8302757]},"id":"8f44c0ba922a3b3-17bf522ffca5f0e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920a975-17f79391692da8ee","8f44c0ba922a3b3-17bf522ffca5f0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6278506,32.8309768],[-83.62841610000001,32.8302757]]},"id":"8944c0ba923ffff-179772e0a1aad352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62863010000001,32.831299900000005]},"id":"8f44c0ba92098e8-17bf71aa38c6cea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6281802,32.8311767]},"id":"8f44c0ba9208398-17df72c3658f34da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92098e8-17bf71aa38c6cea8","8f44c0ba9208398-17df72c3658f34da"]},"geometry":{"type":"LineString","coordinates":[[-83.62863010000001,32.831299900000005],[-83.6282686,32.8310817],[-83.6281802,32.8311767]]},"id":"8a44c0ba920ffff-17df323c3a87759a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6280488,32.8310979]},"id":"8f44c0ba9208736-17bf331581f8d450"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628246,32.8308693]},"id":"8f44c0ba92089a9-179f529a49cfee44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92089a9-179f529a49cfee44","8f44c0ba9208736-17bf331581f8d450"]},"geometry":{"type":"LineString","coordinates":[[-83.6280488,32.8310979],[-83.628246,32.8308693]]},"id":"8b44c0ba9208fff-17f7d2d7e7414ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6281318,32.8307997]},"id":"8f44c0ba920c6f2-17f7d2e1a8227da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6285103,32.8303309]},"id":"8f44c0ba922a22c-17dfd1f511e84ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba922a22c-17dfd1f511e84ba3","8f44c0ba920c6f2-17f7d2e1a8227da0"]},"geometry":{"type":"LineString","coordinates":[[-83.6281318,32.8307997],[-83.6285103,32.8303309]]},"id":"8944c0ba923ffff-17df526b5afc0d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92089a9-179f529a49cfee44","8f44c0ba920c6f2-17f7d2e1a8227da0"]},"geometry":{"type":"LineString","coordinates":[[-83.6281318,32.8307997],[-83.628246,32.8308693]]},"id":"8a44c0ba920ffff-179792bdf7c8a3e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6302833,32.843752300000006]},"id":"8f44c0a36b41d8d-17973da0f0e87931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6304228,32.843645800000004]},"id":"8f44c0a36b45601-17dfad49ccd6f965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b41d8d-17973da0f0e87931","8f44c0a36b45601-17dfad49ccd6f965"]},"geometry":{"type":"LineString","coordinates":[[-83.6302833,32.843752300000006],[-83.6302732,32.8437141],[-83.63030350000001,32.8436709],[-83.63037010000001,32.8436479],[-83.6304228,32.843645800000004]]},"id":"8a44c0a36b47fff-17f7cd8480c486ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6300779,32.8435895]},"id":"8f44c0a36b40150-17bf7e215ca27dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b45601-17dfad49ccd6f965","8f44c0a36b40150-17bf7e215ca27dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.6300779,32.8435895],[-83.63034210000001,32.8436074],[-83.6304228,32.843645800000004]]},"id":"8a44c0a36b47fff-17b78db39c1a3edc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66298450000001,32.8217258]},"id":"8f44c0b186d04e0-13debdcab589974e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627004,32.8217189]},"id":"8f44c0b186d2130-13d6fe7c4c8e97fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186d2130-13d6fe7c4c8e97fc","8f44c0b186d04e0-13debdcab589974e"]},"geometry":{"type":"LineString","coordinates":[[-83.66298450000001,32.8217258],[-83.6627004,32.8217189]]},"id":"8a44c0b186d7fff-13debe238bf4a95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a308d09b5-139ffae53ec08376","8f44c0a3089e915-17f7404ebac78fb4"]},"geometry":{"type":"LineString","coordinates":[[-83.6379565,32.855448800000005],[-83.6377992,32.8552836],[-83.6374747,32.8550263],[-83.6371819,32.8548099],[-83.6368559,32.8545705],[-83.6364831,32.854350700000005],[-83.63598230000001,32.8540802],[-83.6357397,32.853922000000004]]},"id":"8844c0a309fffff-13b7fd84a5406f0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61541720000001,32.8588833]},"id":"8f44c0a3281a8aa-139731ec4480063b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61509570000001,32.8587654]},"id":"8f44c0a328ad315-13bf72b53855a8de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328ad315-13bf72b53855a8de","8f44c0a3281a8aa-139731ec4480063b"]},"geometry":{"type":"LineString","coordinates":[[-83.61541720000001,32.8588833],[-83.6152132,32.8588037],[-83.61509570000001,32.8587654]]},"id":"8944c0a3283ffff-13dff2504703fa5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61480590000001,32.8587184]},"id":"8f44c0a328ad4c0-139f336a5ef67b7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614541,32.8589062]},"id":"8f44c0a328a839a-1397740fe8e3fe8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328a839a-1397740fe8e3fe8f","8f44c0a328ad4c0-139f336a5ef67b7d"]},"geometry":{"type":"LineString","coordinates":[[-83.61480590000001,32.8587184],[-83.6147619,32.858701],[-83.61468470000001,32.8587001],[-83.6146217,32.858715600000004],[-83.6145882,32.8587557],[-83.6145542,32.8588345],[-83.614541,32.8589062]]},"id":"8a44c0a328affff-13b733d290560826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6144309,32.8591828]},"id":"8f44c0a328ab024-13bf7454b38e50fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328ab024-13bf7454b38e50fd","8f44c0a328a839a-1397740fe8e3fe8f"]},"geometry":{"type":"LineString","coordinates":[[-83.614541,32.8589062],[-83.6144309,32.8591828]]},"id":"8a44c0a328affff-13f7f43251fe0a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328ad315-13bf72b53855a8de","8f44c0a328ad4c0-139f336a5ef67b7d"]},"geometry":{"type":"LineString","coordinates":[[-83.61509570000001,32.8587654],[-83.615026,32.8587428],[-83.6149008,32.858725500000006],[-83.61480590000001,32.8587184]]},"id":"8b44c0a328adfff-13b7b30ef36cf5b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881616,32.7857247]},"id":"8f44c0b034aa164-13f7f053008ae296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881738,32.785521700000004]},"id":"8f44c0b034ae66c-17f7904b6973eeea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034ae66c-17f7904b6973eeea","8f44c0b034aa164-13f7f053008ae296"]},"geometry":{"type":"LineString","coordinates":[[-83.6881616,32.7857247],[-83.6881738,32.785521700000004]]},"id":"8a44c0b034affff-13b6804f35f2a127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68776030000001,32.7859276]},"id":"8f44c0b03481af5-13f6c14dd5a071e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878607,32.7858085]},"id":"8f44c0b034aa4c6-139ed10f1e3e6e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03481af5-13f6c14dd5a071e3","8f44c0b034aa4c6-139ed10f1e3e6e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.68776030000001,32.7859276],[-83.6877681,32.7858062],[-83.6878607,32.7858085]]},"id":"8a44c0b03487fff-13bec13dddbfa222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881841,32.786057]},"id":"8f44c0b034ab599-13b7a044f402faf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68838810000001,32.7860585]},"id":"8f44c0b034ab181-13b6ffc57b18b600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034ab599-13b7a044f402faf4","8f44c0b034ab181-13b6ffc57b18b600"]},"geometry":{"type":"LineString","coordinates":[[-83.6881841,32.786057],[-83.68838810000001,32.7860585]]},"id":"8b44c0b034abfff-13b6a0053d829e95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6872153,32.8541874]},"id":"8f44c0a26303b4d-179fa2a27fd0a2f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876537,32.854263]},"id":"8f44c0a2630ccf6-17bee1907179e18d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630ccf6-17bee1907179e18d","8f44c0a26303b4d-179fa2a27fd0a2f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6872153,32.8541874],[-83.6871606,32.8541862],[-83.68711900000001,32.8542715],[-83.68711920000001,32.8543335],[-83.6876416,32.8543429],[-83.6876537,32.854263]]},"id":"8944c0a2633ffff-17d7b250bfa15ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876448,32.8541955]},"id":"8f44c0a2630cd83-1796b1960956a5b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630cd83-1796b1960956a5b8","8f44c0a26303b4d-179fa2a27fd0a2f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6876448,32.8541955],[-83.6872153,32.8541874]]},"id":"8944c0a2633ffff-179fb21c48e532c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687808,32.8542646]},"id":"8f44c0a2630c882-17bfe1300b6dc6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630ccf6-17bee1907179e18d","8f44c0a2630c882-17bfe1300b6dc6f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6876537,32.854263],[-83.687808,32.8542646]]},"id":"8b44c0a2630cfff-17bee16037ee4636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875646,32.8540165]},"id":"8f44c0a26301ba2-17b6d1c82d607cdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68757330000001,32.8536068]},"id":"8f44c0a26305156-17b6c1c2b138383a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26305156-17b6c1c2b138383a","8f44c0a26301ba2-17b6d1c82d607cdf"]},"geometry":{"type":"LineString","coordinates":[[-83.6875646,32.8540165],[-83.68757330000001,32.8536068]]},"id":"8a44c0a26307fff-17b6d1c56bbc102a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687357,32.8535806]},"id":"8f44c0a2630551b-179fe249e980a59c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6873521,32.854013300000005]},"id":"8f44c0a26301195-179ed24cf6b76cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630551b-179fe249e980a59c","8f44c0a26301195-179ed24cf6b76cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.687357,32.8535806],[-83.6873521,32.854013300000005]]},"id":"8a44c0a26307fff-1797a24b6166187d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68721790000001,32.8540113]},"id":"8f44c0a263015a9-179f92a0d99472b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68718150000001,32.8535211]},"id":"8f44c0a26300931-17feb2b79910ca4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26300931-17feb2b79910ca4d","8f44c0a263015a9-179f92a0d99472b0"]},"geometry":{"type":"LineString","coordinates":[[-83.68721790000001,32.8540113],[-83.6871873,32.8539912],[-83.6871737,32.8539643],[-83.68718150000001,32.8535211]]},"id":"8a44c0a26307fff-179f82b8c60c123a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660042,32.7742066]},"id":"8f44c0b11021a0d-17d7e4f9cb769dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66021950000001,32.774524]},"id":"8f44c0b1102c072-179fc48ad8813821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11021a0d-17d7e4f9cb769dac","8f44c0b1102c072-179fc48ad8813821"]},"geometry":{"type":"LineString","coordinates":[[-83.660042,32.7742066],[-83.66021950000001,32.774524]]},"id":"8944c0b1103ffff-17bed4c24f8e808f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7196332,32.825884300000006]},"id":"8f44c0b0aaf100b-13f7b37d492790d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719357,32.825357100000005]},"id":"8f44c0b0aaf0836-13be3429ef0e92d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaf0836-13be3429ef0e92d6","8f44c0b0aaf100b-13f7b37d492790d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7196332,32.825884300000006],[-83.7198393,32.825819],[-83.7198741,32.8258004],[-83.7199052,32.825771200000005],[-83.7199147,32.8257386],[-83.71991200000001,32.825699400000005],[-83.71968310000001,32.8252329],[-83.719357,32.825357100000005]]},"id":"8a44c0b0aaf7fff-139ff346a0adf8a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7187054,32.8266641]},"id":"8f44c0b0aad034b-17df35c1219cc4ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7182659,32.8262544]},"id":"8f44c0b0aad6314-13df36d3d1d17d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad034b-17df35c1219cc4ee","8f44c0b0aad6314-13df36d3d1d17d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.7187054,32.8266641],[-83.7187246,32.826630900000005],[-83.7187418,32.8265899],[-83.7187505,32.8265448],[-83.7187459,32.8264972],[-83.71872950000001,32.8264537],[-83.71855160000001,32.8262726],[-83.7185037,32.8262467],[-83.7184428,32.8262279],[-83.7183869,32.826222800000004],[-83.7183277,32.8262282],[-83.7182659,32.8262544]]},"id":"8a44c0b0aad7fff-13b636102c90ebd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7184915,32.826693500000005]},"id":"8f44c0b0aad065d-17ff7646d0a738ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7182039,32.8269212]},"id":"8f44c0b0aad34ad-17fff6fa90967db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad065d-17ff7646d0a738ba","8f44c0b0aad34ad-17fff6fa90967db4"]},"geometry":{"type":"LineString","coordinates":[[-83.7184915,32.826693500000005],[-83.71843410000001,32.8267083],[-83.71838620000001,32.8268628],[-83.7183572,32.8268855],[-83.7183162,32.8269023],[-83.71827420000001,32.826912400000005],[-83.7182039,32.8269212]]},"id":"8a44c0b0aad7fff-17bf7695aebddef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186058,32.827015800000005]},"id":"8f44c0b0aad3ac1-17b6f5ff69cd5215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad065d-17ff7646d0a738ba","8f44c0b0aad3ac1-17b6f5ff69cd5215"]},"geometry":{"type":"LineString","coordinates":[[-83.7186058,32.827015800000005],[-83.7185582,32.8269816],[-83.7185273,32.8269535],[-83.71849660000001,32.826917200000004],[-83.7184814,32.8268817],[-83.7185218,32.826729300000004],[-83.7184915,32.826693500000005]]},"id":"8a44c0b0aad7fff-17d6f635db8fd1fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7179995,32.826278900000005]},"id":"8f44c0b0a325b6d-13fe777a5eee4d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a325b6d-13fe777a5eee4d35","8f44c0b0aad6314-13df36d3d1d17d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.7182659,32.8262544],[-83.71820140000001,32.8262786],[-83.7179995,32.826278900000005]]},"id":"8b44c0b0aad6fff-13f67726183ca041"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72455910000001,32.8317591]},"id":"8f44c0b0bc1ca65-13df777693bb86dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72333900000001,32.831598500000005]},"id":"8f44c0b0bc13634-13f73a71228c58e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc1ca65-13df777693bb86dd","8f44c0b0bc13634-13f73a71228c58e8"]},"geometry":{"type":"LineString","coordinates":[[-83.72455910000001,32.8317591],[-83.7241242,32.8316834],[-83.72333900000001,32.831598500000005]]},"id":"8944c0b0bc3ffff-1397b8f31e67cee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64782620000001,32.8143497]},"id":"8f44c0b1a1002e5-17def2cca3ab90e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478271,32.8141751]},"id":"8f44c0b1a100a94-17dff2cc1b603264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100a94-17dff2cc1b603264","8f44c0b1a1002e5-17def2cca3ab90e0"]},"geometry":{"type":"LineString","coordinates":[[-83.64782620000001,32.8143497],[-83.6478271,32.8141751]]},"id":"8b44c0b1a100fff-1796e2cc57f78984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64814120000001,32.8143517]},"id":"8f44c0b1a1018a3-17dff207cd9d9c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6481455,32.8141787]},"id":"8f44c0b1a105752-17dff2051f3add41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a105752-17dff2051f3add41","8f44c0b1a1018a3-17dff207cd9d9c71"]},"geometry":{"type":"LineString","coordinates":[[-83.64814120000001,32.8143517],[-83.6481455,32.8141787]]},"id":"8a44c0b1a107fff-1797e2067cdf61e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6485763,32.814222400000006]},"id":"8f44c0b1a12ad4c-17ffe0f7de08f26d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a12ad4c-17ffe0f7de08f26d","8f44c0b1a12b415-179ee099a52670f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6485763,32.814222400000006],[-83.64870400000001,32.814224200000005],[-83.64874110000001,32.8143213],[-83.6487369,32.814649200000005],[-83.64872700000001,32.814686]]},"id":"8a44c0b1a12ffff-17fef0a16a87f1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64777500000001,32.8143493]},"id":"8f44c0b1a10028d-17def2ecac87aa3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476811,32.814611]},"id":"8f44c0b1a103064-17ffe32752012c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a103064-17ffe32752012c77","8f44c0b1a10028d-17def2ecac87aa3d"]},"geometry":{"type":"LineString","coordinates":[[-83.64777500000001,32.8143493],[-83.6477742,32.8145477],[-83.6476811,32.814611]]},"id":"8a44c0b1a107fff-17b7f2f786ad6d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093875,32.8291695]},"id":"8f44c0b0a7422cc-13f6fc80dfd5ffc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70884910000001,32.828884900000006]},"id":"8f44c0b0a75199a-13d75dd155f08dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a75199a-13d75dd155f08dbd","8f44c0b0a7422cc-13f6fc80dfd5ffc9"]},"geometry":{"type":"LineString","coordinates":[[-83.7093875,32.8291695],[-83.70884910000001,32.828884900000006]]},"id":"8944c0b0a77ffff-139e4d291783ed6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7235321,32.830008]},"id":"8f44c0b0bd8d230-179729f8702d4b33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7234284,32.8301411]},"id":"8f44c0b0bd89830-17d63a3941ce83eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd8d230-179729f8702d4b33","8f44c0b0bd89830-17d63a3941ce83eb"]},"geometry":{"type":"LineString","coordinates":[[-83.7235321,32.830008],[-83.7234284,32.8301411]]},"id":"8a44c0b0bd8ffff-17beaa18e587f745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72377250000001,32.8303371]},"id":"8f44c0b0bc3275d-17d6b96232bd4585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7239043,32.8302867]},"id":"8f44c0b0bc32315-17b7390fd4c6e9e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc3275d-17d6b96232bd4585","8f44c0b0bc32315-17b7390fd4c6e9e5"]},"geometry":{"type":"LineString","coordinates":[[-83.72377250000001,32.8303371],[-83.7239043,32.8302867]]},"id":"8b44c0b0bc32fff-17d6f939067df9a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72334310000001,32.8300938]},"id":"8f44c0b0bd8d6c8-17beaa6e9c872529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7233727,32.8298946]},"id":"8f44c0b0bd8d09c-17be2a5c133ed379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd8d09c-17be2a5c133ed379","8f44c0b0bd8d6c8-17beaa6e9c872529"]},"geometry":{"type":"LineString","coordinates":[[-83.72334310000001,32.8300938],[-83.72333490000001,32.8299563],[-83.7233727,32.8298946]]},"id":"8a44c0b0bd8ffff-17fe3a6df09d54ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72365260000001,32.830613400000004]},"id":"8f44c0b0bc1418b-17ff69ad2da86b94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc1418b-17ff69ad2da86b94","8f44c0b0bc3275d-17d6b96232bd4585"]},"geometry":{"type":"LineString","coordinates":[[-83.72377250000001,32.8303371],[-83.7237947,32.830364800000005],[-83.72379790000001,32.830399400000005],[-83.72378950000001,32.8304312],[-83.72365260000001,32.830613400000004]]},"id":"8944c0b0bc3ffff-17bf2974b8aab166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891449,32.8590626]},"id":"8f44c0a26245750-13f67dec7acd5b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896205,32.858412300000005]},"id":"8f44c0a2626140a-13dffcc33352c061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26245750-13f67dec7acd5b69","8f44c0a2626140a-13dffcc33352c061"]},"geometry":{"type":"LineString","coordinates":[[-83.6891449,32.8590626],[-83.6896205,32.858412300000005]]},"id":"8944c0a2627ffff-13b6fd57d34b7141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6108342,32.8594097]},"id":"8f44c0a32c6a921-17df3d1cae2ec5be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6105811,32.8594093]},"id":"8f44c0a32c6ada1-17dffdbad39c610f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6ada1-17dffdbad39c610f","8f44c0a32c6a921-17df3d1cae2ec5be"]},"geometry":{"type":"LineString","coordinates":[[-83.6108342,32.8594097],[-83.6105811,32.8594093]]},"id":"8a44c0a32c6ffff-17dffd6bc5c0aaf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61058050000001,32.8594651]},"id":"8f44c0a32c6ac10-17ffbdbb3a588a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6102887,32.859462900000004]},"id":"8f44c0a32c45662-17ff7e719da2263f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6ac10-17ffbdbb3a588a53","8f44c0a32c45662-17ff7e719da2263f"]},"geometry":{"type":"LineString","coordinates":[[-83.61058050000001,32.8594651],[-83.6102887,32.859462900000004]]},"id":"8944c0a32c7ffff-17ff3e166fc9bbd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6450678,32.814579300000005]},"id":"8f44c0b1a1a32ea-17def988aab4252b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64538250000001,32.8141559]},"id":"8f44c0b1a1a1cec-17dff8c3f7ae35c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1a32ea-17def988aab4252b","8f44c0b1a1a1cec-17dff8c3f7ae35c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6450678,32.814579300000005],[-83.6450635,32.8141756],[-83.6450937,32.814159000000004],[-83.64538250000001,32.8141559]]},"id":"8a44c0b1a1a7fff-179ff95ece66d06c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317324,32.8452317]},"id":"8f44c0a346b30b2-13bfda1746ff821a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63122600000001,32.844931700000004]},"id":"8f44c0a346b2488-13f75b53cedf4ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346b30b2-13bfda1746ff821a","8f44c0a346b2488-13f75b53cedf4ea9"]},"geometry":{"type":"LineString","coordinates":[[-83.6317324,32.8452317],[-83.6316469,32.8453287],[-83.6311283,32.8450578],[-83.63122600000001,32.844931700000004]]},"id":"8944c0a346bffff-13973aeadb6be2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317763,32.8448356]},"id":"8f44c0a346b0452-13b749fbd1c4c044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6313471,32.844581500000004]},"id":"8f44c0a36b4db55-13977b081e4bf4e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b4db55-13977b081e4bf4e7","8f44c0a346b0452-13b749fbd1c4c044"]},"geometry":{"type":"LineString","coordinates":[[-83.6317763,32.8448356],[-83.6313471,32.844581500000004]]},"id":"8a44c0a346b7fff-13f7ea81f4c56d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65285030000001,32.844758]},"id":"8f44c0a35daaaf1-1397d6889f908e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65269210000001,32.8446869]},"id":"8f44c0a35daa023-13dfd6eb78a7a551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35daaaf1-1397d6889f908e3f","8f44c0a35daa023-13dfd6eb78a7a551"]},"geometry":{"type":"LineString","coordinates":[[-83.65285030000001,32.844758],[-83.65269210000001,32.8446869]]},"id":"8b44c0a35daafff-13ffd6ba00497607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7028044,32.8986856]},"id":"8f44c0a2e5006e1-17bedc934fd869b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70267000000001,32.898957]},"id":"8f44c0a2e50346e-17de7ce748f39e03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5006e1-17bedc934fd869b6","8f44c0a2e50346e-17de7ce748f39e03"]},"geometry":{"type":"LineString","coordinates":[[-83.7028044,32.8986856],[-83.7028391,32.8988894],[-83.7027968,32.898958400000005],[-83.70267000000001,32.898957]]},"id":"8a44c0a2e507fff-179f7c99c46cfe82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626856,32.778815900000005]},"id":"8f44c0b11314b91-1797fe858595cc63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66248990000001,32.7784903]},"id":"8f44c0b11049b65-17befeffd26cbe43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11049b65-17befeffd26cbe43","8f44c0b11314b91-1797fe858595cc63"]},"geometry":{"type":"LineString","coordinates":[[-83.6626856,32.778815900000005],[-83.66248990000001,32.7784903]]},"id":"8944c0b1133ffff-17b6bec2b91ba93e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71069390000001,32.8259673]},"id":"8f44c0b0a0c0210-13b7d9505b1836cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7113106,32.826088]},"id":"8f44c0b0a0ea45a-13f747cee30b0013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c0210-13b7d9505b1836cd","8f44c0b0a0ea45a-13f747cee30b0013"]},"geometry":{"type":"LineString","coordinates":[[-83.71069390000001,32.8259673],[-83.711115,32.825983400000005],[-83.7112207,32.8260805],[-83.7113106,32.826088]]},"id":"8944c0b0a0fffff-13bff8899f9325a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099582,32.8263997]},"id":"8f44c0b0a0dc726-13b7db1c27c1bbd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d899e-17b6db27ad8d606f","8f44c0b0a0dc726-13b7db1c27c1bbd9"]},"geometry":{"type":"LineString","coordinates":[[-83.7099582,32.8263997],[-83.7099398,32.8266061]]},"id":"8a44c0b0a0dffff-13f65b21e35d6ab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71056970000001,32.8264298]},"id":"8f44c0b0a0c32f4-13d6e99df1709f81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7104376,32.8266117]},"id":"8f44c0b0a0dd12c-17be59f08b6eda56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c32f4-13d6e99df1709f81","8f44c0b0a0dd12c-17be59f08b6eda56"]},"geometry":{"type":"LineString","coordinates":[[-83.71056970000001,32.8264298],[-83.7105664,32.8265254],[-83.7105398,32.8265728],[-83.7104376,32.8266117]]},"id":"8944c0b0a0fffff-179e59b5d8ed20f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71040470000001,32.8271389]},"id":"8f44c0b0a0d9a85-1797da0512c2c912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7103934,32.8274263]},"id":"8f44c0b0a7644ae-17b77a0c293da235"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a7644ae-17b77a0c293da235","8f44c0b0a0d9a85-1797da0512c2c912"]},"geometry":{"type":"LineString","coordinates":[[-83.71040470000001,32.8271389],[-83.7103934,32.8274263]]},"id":"8844c0b0a7fffff-17dfea089d6c8ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7087209,32.825487700000004]},"id":"8f44c0b0a725b5c-13ffde2174ff9917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70878520000001,32.8256862]},"id":"8f44c0b0a0d2c55-13f7edf947c0f3b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a725b5c-13ffde2174ff9917","8f44c0b0a0d2c55-13f7edf947c0f3b2"]},"geometry":{"type":"LineString","coordinates":[[-83.7087209,32.825487700000004],[-83.70877490000001,32.8255883],[-83.70878520000001,32.8256862]]},"id":"8a44c0b0a0d7fff-13b64e0744785700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70903170000001,32.8255373]},"id":"8f44c0b0a0d621c-139edd5f3903993d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d2c55-13f7edf947c0f3b2","8f44c0b0a0d621c-139edd5f3903993d"]},"geometry":{"type":"LineString","coordinates":[[-83.70878520000001,32.8256862],[-83.708878,32.8256333],[-83.70903170000001,32.8255373]]},"id":"8a44c0b0a0d7fff-13de5dabdaed363a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70957170000001,32.8262069]},"id":"8f44c0b0a0d16e0-13bf5c0db34682fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093724,32.8262006]},"id":"8f44c0b0a0d3ac5-13b76c8a4ed48cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d3ac5-13b76c8a4ed48cbe","8f44c0b0a0d16e0-13bf5c0db34682fd"]},"geometry":{"type":"LineString","coordinates":[[-83.70957170000001,32.8262069],[-83.7093724,32.8262006]]},"id":"8a44c0b0a0d7fff-13bf6c4bfb6200eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093687,32.8263599]},"id":"8f44c0b0a0de530-139efc8c90a21c1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7090215,32.826134200000006]},"id":"8f44c0b0a0d3408-139fed65915bab0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0de530-139efc8c90a21c1e","8f44c0b0a0d3408-139fed65915bab0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7093687,32.8263599],[-83.70911670000001,32.8263533],[-83.7090507,32.8263393],[-83.70901400000001,32.8263197],[-83.70899340000001,32.826289800000005],[-83.7089911,32.826250800000004],[-83.7090215,32.826134200000006]]},"id":"8944c0b0a0fffff-13fecd25ee94156f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083065,32.8254147]},"id":"8f44c0b0a72550e-13de7f247f5234b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7082697,32.8256017]},"id":"8f44c0b0a720b4c-13d75f3b7a67f070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a72550e-13de7f247f5234b3","8f44c0b0a720b4c-13d75f3b7a67f070"]},"geometry":{"type":"LineString","coordinates":[[-83.7083065,32.8254147],[-83.7082697,32.8256017]]},"id":"8b44c0b0a725fff-1396ef2ffdea2a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70773790000001,32.8253028]},"id":"8f44c0b0a726a9e-13965087db1eaaeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7078128,32.8259683]},"id":"8f44c0b0a723182-13b670590b9ae926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a723182-13b670590b9ae926","8f44c0b0a726a9e-13965087db1eaaeb"]},"geometry":{"type":"LineString","coordinates":[[-83.70773790000001,32.8253028],[-83.7077275,32.8254479],[-83.7078128,32.8259683]]},"id":"8a44c0b0a727fff-13d6f078be7c947f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095757,32.826607800000005]},"id":"8f44c0b0a0de2a2-17b7ec0b3cc1aeab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093631,32.826604800000005]},"id":"8f44c0b0a0de695-17b64c9013b7ff9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0de2a2-17b7ec0b3cc1aeab","8f44c0b0a0de695-17b64c9013b7ff9f"]},"geometry":{"type":"LineString","coordinates":[[-83.7095757,32.826607800000005],[-83.7093631,32.826604800000005]]},"id":"8b44c0b0a0defff-17b6fc4da6958605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70471400000001,32.9177477]},"id":"8f44c0a2ac6165c-13be57e9cf169086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70432890000001,32.9174851]},"id":"8f44c0a2ac6399e-139678da71475c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6165c-13be57e9cf169086","8f44c0a2ac6399e-139678da71475c9f"]},"geometry":{"type":"LineString","coordinates":[[-83.70471400000001,32.9177477],[-83.70432890000001,32.9174851]]},"id":"8a44c0a2ac67fff-13f6586216235925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6526893,32.845002900000004]},"id":"8f44c0a35d8c82b-139ed6ed35779d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6525087,32.8449173]},"id":"8f44c0a35d8cd2a-13ffd75e15c5359b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d8cd2a-13ffd75e15c5359b","8f44c0a35d8c82b-139ed6ed35779d9b"]},"geometry":{"type":"LineString","coordinates":[[-83.6526893,32.845002900000004],[-83.6525087,32.8449173]]},"id":"8b44c0a35d8cfff-1396d725a5f264ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7123993,32.8259379]},"id":"8f44c0b0a0ed744-1397752675982ea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71235490000001,32.8261173]},"id":"8f44c0b0a0e98a3-139755423a51ff59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0ed744-1397752675982ea4","8f44c0b0a0e98a3-139755423a51ff59"]},"geometry":{"type":"LineString","coordinates":[[-83.7123993,32.8259379],[-83.71235490000001,32.8261173]]},"id":"8a44c0b0a0effff-13df45345bbd45b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69437570000001,32.8202814]},"id":"8f44c0b19825264-17d7f1273422d008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69368990000001,32.820258100000004]},"id":"8f44c0b19820089-17b772d3dfdc8871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825264-17d7f1273422d008","8f44c0b19820089-17b772d3dfdc8871"]},"geometry":{"type":"LineString","coordinates":[[-83.69437570000001,32.8202814],[-83.69368990000001,32.820258100000004]]},"id":"8a44c0b19827fff-17bef1fd8c47df4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69465050000001,32.8204973]},"id":"8f44c0b1995204c-17def07b70b84219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69448600000001,32.8200616]},"id":"8f44c0b199564dc-17bef0e2429a771d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995204c-17def07b70b84219","8f44c0b199564dc-17bef0e2429a771d"]},"geometry":{"type":"LineString","coordinates":[[-83.69465050000001,32.8204973],[-83.69448600000001,32.8200616]]},"id":"8a44c0b19957fff-17d6f0aee5f524a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69466080000001,32.8200415]},"id":"8f44c0b199560f2-17bff07505f745aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69484080000001,32.820552500000005]},"id":"8f44c0b19953d13-17ff70048cebafcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199560f2-17bff07505f745aa","8f44c0b19953d13-17ff70048cebafcd"]},"geometry":{"type":"LineString","coordinates":[[-83.69466080000001,32.8200415],[-83.69484080000001,32.820552500000005]]},"id":"8a44c0b19957fff-17dff03ccbe03e68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69505600000001,32.8206149]},"id":"8f44c0b19953823-17967f7e0c684431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6948376,32.8200157]},"id":"8f44c0b19956aa0-179ff00689df26cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956aa0-179ff00689df26cf","8f44c0b19953823-17967f7e0c684431"]},"geometry":{"type":"LineString","coordinates":[[-83.69505600000001,32.8206149],[-83.6948376,32.8200157]]},"id":"8a44c0b19957fff-17df7fc240ab0e3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6956904,32.8197655]},"id":"8f44c0b19973156-13977df185da2f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6958901,32.8203089]},"id":"8f44c0b199466c6-17d77d74be7dee16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199466c6-17d77d74be7dee16","8f44c0b19973156-13977df185da2f98"]},"geometry":{"type":"LineString","coordinates":[[-83.6956904,32.8197655],[-83.6958901,32.8203089]]},"id":"8944c0b1997ffff-17bf6db325d85614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69577740000001,32.8204859]},"id":"8f44c0b19942cdb-17d7fdbb20764acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6955255,32.8198047]},"id":"8f44c0b19973462-139ffe5896481676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19973462-139ffe5896481676","8f44c0b19942cdb-17d7fdbb20764acf"]},"geometry":{"type":"LineString","coordinates":[[-83.69577740000001,32.8204859],[-83.6955255,32.8198047]]},"id":"8944c0b1997ffff-17fefe09d93b4aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6953541,32.819882]},"id":"8f44c0b19954a34-13de6ec3bedc6b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6956708,32.820653300000004]},"id":"8f44c0b19951b46-17be7dfdc921a0af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19954a34-13de6ec3bedc6b01","8f44c0b19951b46-17be7dfdc921a0af"]},"geometry":{"type":"LineString","coordinates":[[-83.6953541,32.819882],[-83.6956708,32.820653300000004]]},"id":"8a44c0b19957fff-17bf7e60cf4809ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6954896,32.820704400000004]},"id":"8f44c0b1995106a-17de6e6f05554623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6951873,32.8199348]},"id":"8f44c0b199540e5-13ff6f2bf018f4de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199540e5-13ff6f2bf018f4de","8f44c0b1995106a-17de6e6f05554623"]},"geometry":{"type":"LineString","coordinates":[[-83.6954896,32.820704400000004],[-83.6951873,32.8199348]]},"id":"8a44c0b19957fff-17dfeecd784318d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6950188,32.8199798]},"id":"8f44c0b19954786-17976f95477b25c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69529610000001,32.8206409]},"id":"8f44c0b1995155d-17b6fee7fb671ecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995155d-17b6fee7fb671ecf","8f44c0b19954786-17976f95477b25c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6950188,32.8199798],[-83.69529610000001,32.8206409]]},"id":"8a44c0b19957fff-17d66f3e9359e024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696078,32.8200151]},"id":"8f44c0b1994688d-179f7cff485db690"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963829,32.8197123]},"id":"8f44c0b19971b5b-13f67c40b15d858b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994688d-179f7cff485db690","8f44c0b19971b5b-13f67c40b15d858b"]},"geometry":{"type":"LineString","coordinates":[[-83.696078,32.8200151],[-83.6961632,32.819987600000005],[-83.6963829,32.8197123]]},"id":"8944c0b1997ffff-13df6c98a66245e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6943026,32.8200744]},"id":"8f44c0b19825160-17d6f154ee97e429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825264-17d7f1273422d008","8f44c0b19825160-17d6f154ee97e429"]},"geometry":{"type":"LineString","coordinates":[[-83.6943026,32.8200744],[-83.69437570000001,32.8202814]]},"id":"8b44c0b19825fff-1797713e1052520e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65508290000001,32.743585200000005]},"id":"8f44c0b14362b02-1396d11530d80bce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6550033,32.7435812]},"id":"8f44c0b14362bb2-1396d146f39f534b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14362bb2-1396d146f39f534b","8f44c0b14362b02-1396d11530d80bce"]},"geometry":{"type":"LineString","coordinates":[[-83.65508290000001,32.743585200000005],[-83.6550033,32.7435812]]},"id":"8c44c0b14362bff-1397d12e155d7180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6544398,32.7436311]},"id":"8f44c0b1437189d-13b7f2a72c398c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65505300000001,32.7440522]},"id":"8f44c0b14363792-13bef127ef3948de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b14363792-13bef127ef3948de","8f44c0b1437189d-13b7f2a72c398c8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6544398,32.7436311],[-83.6545766,32.743665400000005],[-83.65469,32.7436876],[-83.6547551,32.7437202],[-83.6548274,32.7437738],[-83.654919,32.743871],[-83.65505300000001,32.7440522]]},"id":"8944c0b1437ffff-1396d1d236caad88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552097,32.7426155]},"id":"8f44c0b14ad9814-17b6f0c5f0cd6036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654644,32.7435421]},"id":"8f44c0b143625b5-13ffd22780ab6967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b14ad9814-17b6f0c5f0cd6036","8f44c0b143625b5-13ffd22780ab6967"]},"geometry":{"type":"LineString","coordinates":[[-83.6552097,32.7426155],[-83.6550406,32.7427453],[-83.6549794,32.742952100000004],[-83.65494100000001,32.7432241],[-83.65489360000001,32.7433783],[-83.6548468,32.7434316],[-83.6547812,32.7434718],[-83.654644,32.7435421]]},"id":"8744c0b14ffffff-13d7f16ae20ca1f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14363792-13bef127ef3948de","8f44c0b14362b02-1396d11530d80bce"]},"geometry":{"type":"LineString","coordinates":[[-83.65505300000001,32.7440522],[-83.65506040000001,32.7438767],[-83.6550747,32.7436765],[-83.65508290000001,32.743585200000005]]},"id":"8944c0b1437ffff-1396f11ff85b2230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6983335,32.817513000000005]},"id":"8f44c0b1d2e8415-1797e77d967b7107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6982153,32.817220400000004]},"id":"8f44c0b1d2ee076-17dee7c775cf35be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ee076-17dee7c775cf35be","8f44c0b1d2e8415-1797e77d967b7107"]},"geometry":{"type":"LineString","coordinates":[[-83.6983335,32.817513000000005],[-83.6984075,32.817507400000004],[-83.6984482,32.8174924],[-83.6984765,32.8174565],[-83.698487,32.817429700000005],[-83.69848920000001,32.817392500000004],[-83.6984821,32.817345100000004],[-83.69846700000001,32.8173107],[-83.6984146,32.8172909],[-83.69828340000001,32.817262500000005],[-83.6982153,32.817220400000004]]},"id":"8a44c0b1d2effff-17b667566eaa4416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6985216,32.817553000000004]},"id":"8f44c0b1d2e801a-179ee70807006222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e801a-179ee70807006222","8f44c0b1d2ee076-17dee7c775cf35be"]},"geometry":{"type":"LineString","coordinates":[[-83.6985216,32.817553000000004],[-83.69859290000001,32.817319000000005],[-83.69858860000001,32.8173053],[-83.6985782,32.817292],[-83.6982153,32.817220400000004]]},"id":"8a44c0b1d2effff-179f772a57dbbdb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107028,32.8743673]},"id":"8f44c0a21caa941-13dfd94ac30cf05a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71044040000001,32.874241600000005]},"id":"8f44c0a21cae693-139749eec59cbc80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21caa941-13dfd94ac30cf05a","8f44c0a21cae693-139749eec59cbc80"]},"geometry":{"type":"LineString","coordinates":[[-83.7107028,32.8743673],[-83.7110518,32.873841],[-83.71105,32.8737864],[-83.7110225,32.873745400000004],[-83.710778,32.873616600000005],[-83.71069030000001,32.873601],[-83.71064670000001,32.8736164],[-83.7106121,32.873635400000005],[-83.7103495,32.8739694],[-83.7102838,32.8740801],[-83.7102819,32.8741289],[-83.7102953,32.8741684],[-83.71034590000001,32.874206],[-83.71044040000001,32.874241600000005]]},"id":"8944c0a21cbffff-17be4956e475935b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71004640000001,32.8744409]},"id":"8f44c0a21c81d61-13ffdae50824cc28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099659,32.874574700000004]},"id":"8f44c0a21c81190-13d77b175058a798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c81190-13d77b175058a798","8f44c0a21c81d61-13ffdae50824cc28"]},"geometry":{"type":"LineString","coordinates":[[-83.71004640000001,32.8744409],[-83.7099659,32.874574700000004]]},"id":"8b44c0a21c81fff-13b76afe38b81dc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6608982,32.777332300000005]},"id":"8f44c0b11042309-13fef2e2af84efd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6603791,32.7775685]},"id":"8f44c0b1105c596-17fed4271ad957de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105c596-17fed4271ad957de","8f44c0b11042309-13fef2e2af84efd8"]},"geometry":{"type":"LineString","coordinates":[[-83.6608982,32.777332300000005],[-83.6603791,32.7775685]]},"id":"8944c0b1107ffff-17b6c384df58b8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601644,32.7780465]},"id":"8f44c0b1105a801-17b7d4ad4450c8fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601924,32.777194200000004]},"id":"8f44c0b11051cf5-1396e49bccfcadc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11051cf5-1396e49bccfcadc4","8f44c0b1105a801-17b7d4ad4450c8fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6601644,32.7780465],[-83.6601924,32.777194200000004]]},"id":"8944c0b1107ffff-179ec4a481798377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65997750000001,32.778044200000004]},"id":"8f44c0b1105ac0e-17b7e5221f39abbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6599882,32.7771903]},"id":"8f44c0b110502d4-139ff51b616ebc0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110502d4-139ff51b616ebc0b","8f44c0b1105ac0e-17b7e5221f39abbe"]},"geometry":{"type":"LineString","coordinates":[[-83.65997750000001,32.778044200000004],[-83.6599882,32.7771903]]},"id":"8944c0b1107ffff-179ed51ecfa0e978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6598249,32.7780423]},"id":"8f44c0b110ed273-17b6f581736d6639"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6598294,32.777186900000004]},"id":"8f44c0b110506c5-139fd57ea9f9d25e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110506c5-139fd57ea9f9d25e","8f44c0b110ed273-17b6f581736d6639"]},"geometry":{"type":"LineString","coordinates":[[-83.6598249,32.7780423],[-83.6598294,32.777186900000004]]},"id":"8944c0b1107ffff-179fe5800e07b98e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6596413,32.7780415]},"id":"8f44c0b110ed642-17b7f5f43278db4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6596543,32.7771841]},"id":"8f44c0b11052aeb-139ed5ec13b9ac32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110ed642-17b7f5f43278db4c","8f44c0b11052aeb-139ed5ec13b9ac32"]},"geometry":{"type":"LineString","coordinates":[[-83.6596413,32.7780415],[-83.6596543,32.7771841]]},"id":"8844c0b111fffff-179ec5f02785cdae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64061810000001,32.8360797]},"id":"8f44c0a3411e718-13d7f465bbb8fe99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64030790000001,32.8359869]},"id":"8f44c0a341ad8f2-139ff5279afb71ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3411e718-13d7f465bbb8fe99","8f44c0a341ad8f2-139ff5279afb71ab"]},"geometry":{"type":"LineString","coordinates":[[-83.64061810000001,32.8360797],[-83.64050610000001,32.8360112],[-83.64030790000001,32.8359869]]},"id":"8944c0a3413ffff-13bef4c33849ea49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64420720000001,32.8574871]},"id":"8f44c0a30b11166-179ffba2834c746d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436391,32.856822300000005]},"id":"8f44c0a30b16b2e-17fffd0599c51b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b11166-179ffba2834c746d","8f44c0a30b16b2e-17fffd0599c51b0b"]},"geometry":{"type":"LineString","coordinates":[[-83.64420720000001,32.8574871],[-83.6443686,32.857391],[-83.6438213,32.8567199],[-83.6436391,32.856822300000005]]},"id":"8a44c0a30b17fff-1797ebfc74eb292e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64446500000001,32.8570986]},"id":"8f44c0a30b15a21-17b6eb0167461851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6440348,32.8565677]},"id":"8f44c0a30b1492e-17defc0e4061e6b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1492e-17defc0e4061e6b8","8f44c0a30b15a21-17b6eb0167461851"]},"geometry":{"type":"LineString","coordinates":[[-83.64446500000001,32.8570986],[-83.6440348,32.8565677]]},"id":"8944c0a30b3ffff-1796eb87d8bc1173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1492e-17defc0e4061e6b8","8f44c0a30b15a21-17b6eb0167461851"]},"geometry":{"type":"LineString","coordinates":[[-83.64446500000001,32.8570986],[-83.6446382,32.8569898],[-83.6442086,32.8564747],[-83.6440348,32.8565677]]},"id":"8944c0a30b3ffff-17deeb2ec8b1b39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436395,32.8560839]},"id":"8f44c0a3084d0c3-17befd055135816d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64415840000001,32.855994100000004]},"id":"8f44c0a30b363b0-13f6fbc10d15ae3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3084d0c3-17befd055135816d","8f44c0a30b363b0-13f6fbc10d15ae3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6436395,32.8560839],[-83.64388840000001,32.8559344],[-83.64415840000001,32.855994100000004]]},"id":"8844c0a30bfffff-13f6ec68778b33bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64425010000001,32.855632400000005]},"id":"8f44c0a30869294-1396eb87b4c1ae6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6444182,32.855845800000004]},"id":"8f44c0a30b344c1-1397eb1ea56b461a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30869294-1396eb87b4c1ae6f","8f44c0a30b344c1-1397eb1ea56b461a"]},"geometry":{"type":"LineString","coordinates":[[-83.64425010000001,32.855632400000005],[-83.6444182,32.855845800000004]]},"id":"8744c0a30ffffff-13d6fb5336938f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6437533,32.8562254]},"id":"8f44c0a3084d2e8-1796ecbe3c34384b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3084d2e8-1796ecbe3c34384b","8f44c0a30b363b0-13f6fbc10d15ae3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6437533,32.8562254],[-83.64415840000001,32.855994100000004]]},"id":"8844c0a30bfffff-17beec3fa9a06363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6959226,32.8385644]},"id":"8f44c0b1926b211-13f6ed60609e5ac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960784,32.8388593]},"id":"8f44c0a24536789-139f7cff04bcb887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a24536789-139f7cff04bcb887","8f44c0b1926b211-13f6ed60609e5ac3"]},"geometry":{"type":"LineString","coordinates":[[-83.6959226,32.8385644],[-83.6960784,32.8388593]]},"id":"8744c0a24ffffff-13d6fd2fb045ddd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372565,32.833508800000004]},"id":"8f44c0b0b8606c8-179f0876b07fdf3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372739,32.8330533]},"id":"8f44c0b0b860d32-13f6586bdcd0c39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b860d32-13f6586bdcd0c39f","8f44c0b0b8606c8-179f0876b07fdf3e"]},"geometry":{"type":"LineString","coordinates":[[-83.7372565,32.833508800000004],[-83.7372739,32.8330533]]},"id":"8a44c0b0b867fff-1796b87149efc548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7371229,32.833503900000004]},"id":"8f44c0b0b863da1-179ff8ca36a3fb6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73681780000001,32.8334927]},"id":"8f44c0b0b86270d-1796f988ecd48440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b863da1-179ff8ca36a3fb6f","8f44c0b0b86270d-1796f988ecd48440"]},"geometry":{"type":"LineString","coordinates":[[-83.7371229,32.833503900000004],[-83.73681780000001,32.8334927]]},"id":"8a44c0b0b867fff-179e792982e10b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73713830000001,32.8330986]},"id":"8f44c0b0b866355-179ea8c09155785f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736835,32.8330986]},"id":"8f44c0b0b8666a2-179ea97e26475ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b866355-179ea8c09155785f","8f44c0b0b8666a2-179ea97e26475ddb"]},"geometry":{"type":"LineString","coordinates":[[-83.73713830000001,32.8330986],[-83.736835,32.8330986]]},"id":"8b44c0b0b866fff-179ea91f6e33a41a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6999887,32.869592700000005]},"id":"8f44c0a200c9b40-17b7737313e7aabf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70010930000001,32.8694246]},"id":"8f44c0a203b2cd9-17be6327b4f23b68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9b40-17b7737313e7aabf","8f44c0a203b2cd9-17be6327b4f23b68"]},"geometry":{"type":"LineString","coordinates":[[-83.6999887,32.869592700000005],[-83.70010930000001,32.8694246]]},"id":"8944c0a203bffff-17f6f34d6433057b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996673,32.869427200000004]},"id":"8f44c0a200c9c23-17d6643bf50acae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69978920000001,32.8692536]},"id":"8f44c0a200cd70c-17d7e3efc160a38b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cd70c-17d7e3efc160a38b","8f44c0a200c9c23-17d6643bf50acae8"]},"geometry":{"type":"LineString","coordinates":[[-83.6996673,32.869427200000004],[-83.69978920000001,32.8692536]]},"id":"8a44c0a200cffff-179fe415ed8abed5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7001293,32.8699758]},"id":"8f44c0a2039405c-1796e31b3ec83037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7000471,32.8700154]},"id":"8f44c0a20394774-17bfe34e9945dadf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20394774-17bfe34e9945dadf","8f44c0a2039405c-1796e31b3ec83037"]},"geometry":{"type":"LineString","coordinates":[[-83.7001293,32.8699758],[-83.70010400000001,32.8700069],[-83.70007700000001,32.8700203],[-83.7000471,32.8700154]]},"id":"8b44c0a20394fff-17bfe33244bbf5e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7005238,32.8698915]},"id":"8f44c0a203b372d-17f67224a075d9b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7006547,32.8697207]},"id":"8f44c0a203b38f1-17f771d2d6bad27f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b372d-17f67224a075d9b4","8f44c0a203b38f1-17f771d2d6bad27f"]},"geometry":{"type":"LineString","coordinates":[[-83.7005238,32.8698915],[-83.7006547,32.8697207]]},"id":"8b44c0a203b3fff-17bef1fbb544e095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701345,32.870323400000004]},"id":"8f44c0a203808a0-17f6602365928d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70148520000001,32.8701541]},"id":"8f44c0a203843a9-17965fcbc6880d26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203808a0-17f6602365928d2a","8f44c0a203843a9-17965fcbc6880d26"]},"geometry":{"type":"LineString","coordinates":[[-83.701345,32.870323400000004],[-83.70148520000001,32.8701541]]},"id":"8a44c0a20387fff-17bf5ff7906bc4db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69939740000001,32.8692529]},"id":"8f44c0a200c8021-17d774e4afdf53b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69950580000001,32.8691029]},"id":"8f44c0a200c890b-13f774a0e44b2556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c890b-13f774a0e44b2556","8f44c0a200c8021-17d774e4afdf53b6"]},"geometry":{"type":"LineString","coordinates":[[-83.69939740000001,32.8692529],[-83.69950580000001,32.8691029]]},"id":"8b44c0a200c8fff-17b674c2cb3190f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70163570000001,32.8699687]},"id":"8f44c0a20384b20-17967f6dbf1f53e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203843a9-17965fcbc6880d26","8f44c0a20384b20-17967f6dbf1f53e3"]},"geometry":{"type":"LineString","coordinates":[[-83.70148520000001,32.8701541],[-83.70163570000001,32.8699687]]},"id":"8b44c0a20384fff-17de7f9cbd0d20bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009701,32.8696186]},"id":"8f44c0a203b1cea-17b7e10dbcb81548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701064,32.869384000000004]},"id":"8f44c0a203b5634-17b760d30bfe8da9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1cea-17b7e10dbcb81548","8f44c0a203b5634-17b760d30bfe8da9"]},"geometry":{"type":"LineString","coordinates":[[-83.7009701,32.8696186],[-83.7010161,32.869453],[-83.701064,32.869384000000004]]},"id":"8a44c0a203b7fff-17fff0f5bd4cbf57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70103660000001,32.8696986]},"id":"8f44c0a203b1033-17ffe0e423b66db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009122,32.8698575]},"id":"8f44c0a203b16ac-17def131ecc445ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1033-17ffe0e423b66db6","8f44c0a203b16ac-17def131ecc445ad"]},"geometry":{"type":"LineString","coordinates":[[-83.70103660000001,32.8696986],[-83.7009122,32.8698575]]},"id":"8b44c0a203b1fff-179f710b0452bd0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7006899,32.869472300000005]},"id":"8f44c0a203b00cb-17de71bcdf34d708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7005443,32.8696604]},"id":"8f44c0a203b3d58-17d7e217ded115a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b00cb-17de71bcdf34d708","8f44c0a203b3d58-17d7e217ded115a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7006899,32.869472300000005],[-83.7005443,32.8696604]]},"id":"8a44c0a203b7fff-179761ea52e9ca1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7006175,32.868883100000005]},"id":"8f44c0a203b4513-13fff1ea1056878a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7005091,32.868503700000005]},"id":"8f44c0a200e98aa-13fef22dda622106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200e98aa-13fef22dda622106","8f44c0a203b4513-13fff1ea1056878a"]},"geometry":{"type":"LineString","coordinates":[[-83.7006175,32.868883100000005],[-83.7004708,32.8687989],[-83.70049990000001,32.868684],[-83.7005091,32.868503700000005]]},"id":"8844c0a201fffff-1396722acfa8a4d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69976630000001,32.8687175]},"id":"8f44c0a200eb411-139673fe17885f3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996281,32.8689018]},"id":"8f44c0a200cca8b-13f7e4547317ae8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200eb411-139673fe17885f3e","8f44c0a200cca8b-13f7e4547317ae8e"]},"geometry":{"type":"LineString","coordinates":[[-83.69976630000001,32.8687175],[-83.6996281,32.8689018]]},"id":"8944c0a200fffff-13be74294c10314f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7007001,32.868929200000004]},"id":"8f44c0a203b454e-139ee1b67c7a08cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b454e-139ee1b67c7a08cb","8f44c0a203b4513-13fff1ea1056878a"]},"geometry":{"type":"LineString","coordinates":[[-83.7006175,32.868883100000005],[-83.7007001,32.868929200000004]]},"id":"8c44c0a203b45ff-13fe71d04a3357b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7013099,32.8697869]},"id":"8f44c0a203b1a4c-17b6f03958435767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70160150000001,32.869949600000005]},"id":"8f44c0a20384869-1796df831fc46dbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1a4c-17b6f03958435767","8f44c0a20384869-1796df831fc46dbf"]},"geometry":{"type":"LineString","coordinates":[[-83.7013099,32.8697869],[-83.70160150000001,32.869949600000005]]},"id":"8944c0a203bffff-17d7ffde3084607e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667109,32.7971237]},"id":"8f44c0b1eb4da5d-17bef4b1b9a73b59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6664365,32.797006700000004]},"id":"8f44c0b1eb4d18c-13f7b55d3f3e9a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4d18c-13f7b55d3f3e9a86","8f44c0b1eb4da5d-17bef4b1b9a73b59"]},"geometry":{"type":"LineString","coordinates":[[-83.6667109,32.7971237],[-83.6664365,32.797006700000004]]},"id":"8b44c0b1eb4dfff-1797f507756e16f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7072878,32.786746400000006]},"id":"8f44c0b03aac84e-13f6d1a12589f211"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70729490000001,32.786592]},"id":"8f44c0b03a122f2-1396519cb5096418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03a122f2-1396519cb5096418","8f44c0b03aac84e-13f6d1a12589f211"]},"geometry":{"type":"LineString","coordinates":[[-83.7072878,32.786746400000006],[-83.70729490000001,32.786592]]},"id":"8944c0b03abffff-13b6519ef412d662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6718646,32.883372300000005]},"id":"8f44c0a04998573-17dfb81ca69006a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67152850000001,32.8825787]},"id":"8f44c0a049915a0-17dfb8eeb054d470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a049915a0-17dfb8eeb054d470","8f44c0a04998573-17dfb81ca69006a9"]},"geometry":{"type":"LineString","coordinates":[[-83.6718646,32.883372300000005],[-83.6719006,32.8833555],[-83.6719284,32.8832514],[-83.67202950000001,32.883202700000005],[-83.6721977,32.883121700000004],[-83.6717605,32.8825738],[-83.6716011,32.882550200000004],[-83.67152850000001,32.8825787]]},"id":"8944c0a049bffff-17b6a7f2e3c77968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67162540000001,32.883059700000004]},"id":"8f44c0a0499e034-179ef8b228c04942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499e034-179ef8b228c04942","8f44c0a04998573-17dfb81ca69006a9"]},"geometry":{"type":"LineString","coordinates":[[-83.6718646,32.883372300000005],[-83.67162540000001,32.883059700000004]]},"id":"8a44c0a0499ffff-17fea8676227d455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67149470000001,32.883203300000005]},"id":"8f44c0a0499e788-17f6b903d2b9874c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6710621,32.8829403]},"id":"8f44c0a04d6ca6b-17bfba123f272269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499e788-17f6b903d2b9874c","8f44c0a04d6ca6b-17bfba123f272269"]},"geometry":{"type":"LineString","coordinates":[[-83.67149470000001,32.883203300000005],[-83.671453,32.883236000000004],[-83.67140640000001,32.8832578],[-83.6713455,32.8832522],[-83.67123670000001,32.883167900000004],[-83.6710621,32.8829403]]},"id":"8844c0a049fffff-17bee996d5fa28e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67123120000001,32.8828558]},"id":"8f44c0a04993774-179ee9a8888c6ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04993774-179ee9a8888c6ab8","8f44c0a0499e788-17f6b903d2b9874c"]},"geometry":{"type":"LineString","coordinates":[[-83.67123120000001,32.8828558],[-83.67149470000001,32.883203300000005]]},"id":"8944c0a049bffff-17f7a956378e1fee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6709611,32.8829113]},"id":"8f44c0a04d6ca1a-17bfba515f12bc82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671334,32.8833694]},"id":"8f44c0a0499ac94-17dfe968496ad0ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6ca1a-17bfba515f12bc82","8f44c0a0499ac94-17dfe968496ad0ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6709611,32.8829113],[-83.67118090000001,32.8832308],[-83.67127310000001,32.883369200000004],[-83.671334,32.8833694]]},"id":"8a44c0a04d6ffff-17deb9e3e16647ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67156960000001,32.8832821]},"id":"8f44c0a0499e651-1797f8d50d5c9945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499e788-17f6b903d2b9874c","8f44c0a0499e651-1797f8d50d5c9945"]},"geometry":{"type":"LineString","coordinates":[[-83.67149470000001,32.883203300000005],[-83.67156960000001,32.8832821]]},"id":"8c44c0a0499e7ff-17feb8ec6140859e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67168860000001,32.8834541]},"id":"8f44c0a0499a84d-17fef88aaf0a8cda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6716019,32.8833384]},"id":"8f44c0a0499a9ad-17b6a8c0d857caed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499a84d-17fef88aaf0a8cda","8f44c0a0499a9ad-17b6a8c0d857caed"]},"geometry":{"type":"LineString","coordinates":[[-83.67168860000001,32.8834541],[-83.6716019,32.8833384]]},"id":"8b44c0a0499afff-17deb8a5bb108324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6714877,32.8835484]},"id":"8f44c0a0499a01a-17bfe90835b22629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499a01a-17bfe90835b22629","8f44c0a0499ac94-17dfe968496ad0ef"]},"geometry":{"type":"LineString","coordinates":[[-83.671334,32.8833694],[-83.6714877,32.8835484]]},"id":"8b44c0a0499afff-1797f9384cc4a7a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67066750000001,32.8825285]},"id":"8f44c0a04d61b09-17befb08d304a388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6ca1a-17bfba515f12bc82","8f44c0a04d61b09-17befb08d304a388"]},"geometry":{"type":"LineString","coordinates":[[-83.6709611,32.8829113],[-83.67066750000001,32.8825285]]},"id":"8944c0a04d7ffff-17b7faad14c32d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6714941,32.882598800000004]},"id":"8f44c0a04991591-17fee9043b309279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671349,32.8826838]},"id":"8f44c0a049938d5-179fe95ee3516f7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a049938d5-179fe95ee3516f7e","8f44c0a04991591-17fee9043b309279"]},"geometry":{"type":"LineString","coordinates":[[-83.6714941,32.882598800000004],[-83.6712466,32.8822771],[-83.6711269,32.882234700000005],[-83.6710279,32.882287000000005],[-83.671349,32.8826838]]},"id":"8a44c0a04997fff-17ffb9a2212d37dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67026960000001,32.882143400000004]},"id":"8f44c0a04d60b36-13dfac0180e4fb53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67008530000001,32.8818988]},"id":"8f44c0a04d64630-13b6ec74b71c8472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d60b36-13dfac0180e4fb53","8f44c0a04d64630-13b6ec74b71c8472"]},"geometry":{"type":"LineString","coordinates":[[-83.67026960000001,32.882143400000004],[-83.67008530000001,32.8818988]]},"id":"8a44c0a04d67fff-13ffbc3b15b204dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670573,32.8817272]},"id":"8f44c0a226cb736-13d7ab43e013f038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67014850000001,32.8818616]},"id":"8f44c0a04d6472d-139fac4d307743b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226cb736-13d7ab43e013f038","8f44c0a04d6472d-139fac4d307743b2"]},"geometry":{"type":"LineString","coordinates":[[-83.670573,32.8817272],[-83.6704076,32.8818161],[-83.6702956,32.881877800000005],[-83.6702169,32.881880100000004],[-83.67014850000001,32.8818616]]},"id":"8744c0a04ffffff-1397abc5704a6ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67055660000001,32.8817076]},"id":"8f44c0a226cb445-13bfeb4e2df9fc54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6472d-139fac4d307743b2","8f44c0a226cb445-13bfeb4e2df9fc54"]},"geometry":{"type":"LineString","coordinates":[[-83.67055660000001,32.8817076],[-83.6702637,32.8818561],[-83.67014850000001,32.8818616]]},"id":"8744c0a04ffffff-13f6bbcadacd28f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67027780000001,32.8825535]},"id":"8f44c0a04d61472-17dffbfc679d088c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6701476,32.8823961]},"id":"8f44c0a04d60218-17ffbc4dcc21d80d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d60218-17ffbc4dcc21d80d","8f44c0a04d61472-17dffbfc679d088c"]},"geometry":{"type":"LineString","coordinates":[[-83.67027780000001,32.8825535],[-83.670754,32.882291],[-83.6709773,32.8821692],[-83.67083140000001,32.881995700000004],[-83.6704572,32.882198200000005],[-83.6704368,32.882257800000005],[-83.6701476,32.8823961]]},"id":"8744c0a04ffffff-1797eb3295af4eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6804532,32.856763300000004]},"id":"8f44c0a266648e8-17d79324ca50317e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6808819,32.8571487]},"id":"8f44c0a26665b1b-17d7f218d9a6ef1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a266648e8-17d79324ca50317e","8f44c0a26665b1b-17d7f218d9a6ef1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6804532,32.856763300000004],[-83.6808819,32.8571487]]},"id":"8a44c0a26667fff-17df929ec157227c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66745110000001,32.796096500000004]},"id":"8f44c0b1eb6db4a-13bef2e31ed7e963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66755280000001,32.7961271]},"id":"8f44c0b1c79e61b-13dff2a3829aef23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79e61b-13dff2a3829aef23","8f44c0b1eb6db4a-13bef2e31ed7e963"]},"geometry":{"type":"LineString","coordinates":[[-83.66745110000001,32.796096500000004],[-83.66755280000001,32.7961271]]},"id":"8a44c0b1c79ffff-13d7f2c35077be91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66729190000001,32.795948]},"id":"8f44c0b1eb6d81d-13dfb3469897c51e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66747790000001,32.7959815]},"id":"8f44c0b1c79e4e6-13f6f2d25f46d0bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d81d-13dfb3469897c51e","8f44c0b1c79e4e6-13f6f2d25f46d0bc"]},"geometry":{"type":"LineString","coordinates":[[-83.66729190000001,32.795948],[-83.66747790000001,32.7959815]]},"id":"8944c0b1c7bffff-13f6b30c7414f489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675046,32.795865400000004]},"id":"8f44c0b1c79e522-13b7f2c1a883c065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6676011,32.7958827]},"id":"8f44c0b1c79eceb-13b6b28559f4fd28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79e522-13b7f2c1a883c065","8f44c0b1c79eceb-13b6b28559f4fd28"]},"geometry":{"type":"LineString","coordinates":[[-83.6675046,32.795865400000004],[-83.6676011,32.7958827]]},"id":"8b44c0b1c79efff-13bff2a3801156d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675417,32.795556000000005]},"id":"8f44c0b1c79148a-13f6b2aa776ed530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66770890000001,32.7953373]},"id":"8f44c0b1c791d1a-17dff241f0125cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79148a-13f6b2aa776ed530","8f44c0b1c791d1a-17dff241f0125cef"]},"geometry":{"type":"LineString","coordinates":[[-83.6675417,32.795556000000005],[-83.6676429,32.795349900000005],[-83.66770890000001,32.7953373]]},"id":"8a44c0b1c797fff-1396b27f0adab31f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74575850000001,32.834476]},"id":"8f44c0b09471272-17fff3b4f9a3781f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09446145-17fdf41ac8fda4ad","8f44c0b09471272-17fff3b4f9a3781f"]},"geometry":{"type":"LineString","coordinates":[[-83.7455956,32.8347076],[-83.74575850000001,32.834476]]},"id":"8a44c0b09447fff-17b7f3e7ddc997ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745607,32.8342094]},"id":"8f44c0b09471c4a-17d5f413ac8137ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74520000000001,32.8337221]},"id":"8f44c0b09470d34-1795f5120754aa8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09470d34-1795f5120754aa8b","8f44c0b09471c4a-17d5f413ac8137ed"]},"geometry":{"type":"LineString","coordinates":[[-83.745607,32.8342094],[-83.7456246,32.8340413],[-83.7456081,32.833932100000006],[-83.7455754,32.833860200000004],[-83.7455316,32.8337941],[-83.745496,32.833750800000004],[-83.74542240000001,32.8337227],[-83.74535,32.833722200000004],[-83.74520000000001,32.8337221]]},"id":"8a44c0b09477fff-17f5f456fc5dd8b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74547790000001,32.834209300000005]},"id":"8f44c0b09471523-17d5f4645b3a264e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451843,32.8342025]},"id":"8f44c0b09473994-17d5f51bd3da7a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471523-17d5f4645b3a264e","8f44c0b09473994-17d5f51bd3da7a06"]},"geometry":{"type":"LineString","coordinates":[[-83.74547790000001,32.834209300000005],[-83.7451843,32.8342025]]},"id":"8a44c0b09477fff-17d7f4c01dc1e14b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.746227,32.834198]},"id":"8f44c0b09462ab0-17bdf29020943226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74605220000001,32.8344311]},"id":"8f44c0b09444984-17dff2fd6674e38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444984-17dff2fd6674e38a","8f44c0b09462ab0-17bdf29020943226"]},"geometry":{"type":"LineString","coordinates":[[-83.746227,32.834198],[-83.74605220000001,32.8344311]]},"id":"8a44c0b09467fff-1797f2c6c784983c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66499010000001,32.8758311]},"id":"8f44c0a31b43d0a-17f6f8e53bfc6c42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6647552,32.8759627]},"id":"8f44c0a31b5c962-17b6b97802af7aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b5c962-17b6b97802af7aa7","8f44c0a31b43d0a-17f6f8e53bfc6c42"]},"geometry":{"type":"LineString","coordinates":[[-83.66499010000001,32.8758311],[-83.6647552,32.8759627]]},"id":"8a44c0a31b47fff-179fb92e93326958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65710920000001,32.8447106]},"id":"8f44c0a35d746c3-13feec22cb653038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65729470000001,32.845106300000005]},"id":"8f44c0a35d71c94-13dffbaed6493026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d71c94-13dffbaed6493026","8f44c0a35d746c3-13feec22cb653038"]},"geometry":{"type":"LineString","coordinates":[[-83.65710920000001,32.8447106],[-83.65699500000001,32.8447539],[-83.6569693,32.8447823],[-83.6569633,32.8448362],[-83.6570992,32.845093500000004],[-83.6571681,32.845124600000005],[-83.65722810000001,32.8451286],[-83.65729470000001,32.845106300000005]]},"id":"8a44c0a35d77fff-13ffdc383bf48a1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6565369,32.8439047]},"id":"8f44c0a35d28053-17f6fd8877c26520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6567014,32.8442555]},"id":"8f44c0a35d29794-17dffd21a26750b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29794-17dffd21a26750b0","8f44c0a35d28053-17f6fd8877c26520"]},"geometry":{"type":"LineString","coordinates":[[-83.6565369,32.8439047],[-83.6567014,32.8442555]]},"id":"8a44c0a35d2ffff-17dedd550bae167a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628448,32.8537939]},"id":"8f44c0a3516abb3-1797be220654cb02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625922,32.8531114]},"id":"8f44c0a35163a82-17febebfe720b6ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3516abb3-1797be220654cb02","8f44c0a35163a82-17febebfe720b6ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6628448,32.8537939],[-83.6628544,32.8537351],[-83.66284420000001,32.853703100000004],[-83.66281980000001,32.853683000000004],[-83.6626734,32.8536001],[-83.662654,32.8535588],[-83.6626366,32.8535088],[-83.66263380000001,32.853301200000004],[-83.6625923,32.853224000000004],[-83.6625922,32.8531114]]},"id":"8944c0a3517ffff-17defe85ce139ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66344090000001,32.8530663]},"id":"8f44c0a3516c935-17defcad7ac235c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66265440000001,32.853073200000004]},"id":"8f44c0a35163a32-17d6fe9906fdf553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3516c935-17defcad7ac235c4","8f44c0a35163a32-17d6fe9906fdf553"]},"geometry":{"type":"LineString","coordinates":[[-83.66344090000001,32.8530663],[-83.66265440000001,32.853073200000004]]},"id":"8944c0a3517ffff-17d6bda33ff4b4c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934658,32.897872]},"id":"8f44c0a05902a6d-13b6735fe72b3f61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6933691,32.897872400000004]},"id":"8f44c0a05902ae3-13b6739c587485cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05902a6d-13b6735fe72b3f61","8f44c0a05902ae3-13b6739c587485cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6934658,32.897872],[-83.6933691,32.897872400000004]]},"id":"8c44c0a05902bff-13b6737e24459eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69469910000001,32.8978622]},"id":"8f44c0a0592ab33-13bff05d1cdfc7ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69463040000001,32.8981307]},"id":"8f44c0a0592a25c-13d7f08807ec14f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0592a25c-13d7f08807ec14f4","8f44c0a0592ab33-13bff05d1cdfc7ba"]},"geometry":{"type":"LineString","coordinates":[[-83.69469910000001,32.8978622],[-83.69463040000001,32.8981307]]},"id":"8b44c0a0592afff-13fff0728d275435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6939833,32.8979543]},"id":"8f44c0a059011a6-13f7721c78821553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69378760000001,32.8982654]},"id":"8f44c0a0590edaa-13b7f296c46225c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059011a6-13f7721c78821553","8f44c0a0590edaa-13b7f296c46225c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6939833,32.8979543],[-83.6939145,32.8982422],[-83.6938897,32.8982657],[-83.69378760000001,32.8982654]]},"id":"8a44c0a05907fff-13dff2448a5861e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71961900000001,32.827024900000005]},"id":"8f44c0b0aac355d-17beb3862cb0762b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7195253,32.8272485]},"id":"8f44c0b0aaddd16-17d673c0b1fd6dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaddd16-17d673c0b1fd6dd1","8f44c0b0aac355d-17beb3862cb0762b"]},"geometry":{"type":"LineString","coordinates":[[-83.71961900000001,32.827024900000005],[-83.7195629,32.8271171],[-83.7195253,32.8272485]]},"id":"8944c0b0aafffff-17fe73a80500ebd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720512,32.826596200000004]},"id":"8f44c0b0aac5add-17beb1580f1504f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72058770000001,32.8264592]},"id":"8f44c0b0aac5b2d-13df3128b4049adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac5b2d-13df3128b4049adc","8f44c0b0aac5add-17beb1580f1504f3"]},"geometry":{"type":"LineString","coordinates":[[-83.720512,32.826596200000004],[-83.72058770000001,32.8264592]]},"id":"8c44c0b0aac5bff-1797f14060ce9385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65238260000001,32.8437415]},"id":"8f44c0a35da3d08-179ef7ace6b1b40d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6521517,32.844044000000004]},"id":"8f44c0a35d84a31-17d7d83d36e2ef24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da3d08-179ef7ace6b1b40d","8f44c0a35d84a31-17d7d83d36e2ef24"]},"geometry":{"type":"LineString","coordinates":[[-83.65238260000001,32.8437415],[-83.6521517,32.844044000000004]]},"id":"8944c0a35dbffff-17ffd7f50173eca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67964260000001,32.854762300000004]},"id":"8f44c0a2677328a-13f6f51f6426caa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67939790000001,32.8545582]},"id":"8f44c0a267734ac-13f6f5b8599d2ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2677328a-13f6f51f6426caa2","8f44c0a267734ac-13f6f5b8599d2ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.67964260000001,32.854762300000004],[-83.67939790000001,32.8545582]]},"id":"8b44c0a26773fff-13b6b56bd628e7f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67990920000001,32.8545263]},"id":"8f44c0a267714c8-13def478ca9c9814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800123,32.854430400000005]},"id":"8f44c0a26771568-13b794385b7090d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26771568-13b794385b7090d4","8f44c0a267714c8-13def478ca9c9814"]},"geometry":{"type":"LineString","coordinates":[[-83.67990920000001,32.8545263],[-83.6800123,32.854430400000005]]},"id":"8c44c0a267715ff-13d794588013a427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6796013,32.855007400000005]},"id":"8f44c0a26755ab2-139fb53932899ba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6801013,32.854496000000005]},"id":"8f44c0a267710e6-13de9400bffbab92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26755ab2-139fb53932899ba5","8f44c0a267710e6-13de9400bffbab92"]},"geometry":{"type":"LineString","coordinates":[[-83.6796013,32.855007400000005],[-83.6800419,32.8546361],[-83.6800707,32.8545272],[-83.6801013,32.854496000000005]]},"id":"8944c0a2677ffff-13f6f48f1d22ce65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680155,32.855316]},"id":"8f44c0a26740793-13de93df258cceeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800292,32.855408100000005]},"id":"8f44c0a26742ac3-1396942dca4daf4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26742ac3-1396942dca4daf4e","8f44c0a26740793-13de93df258cceeb"]},"geometry":{"type":"LineString","coordinates":[[-83.680155,32.855316],[-83.6800292,32.855408100000005]]},"id":"8a44c0a26747fff-13ffd4067a6b6ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68041260000001,32.855534]},"id":"8f44c0a26741496-13d6d33e2dc19ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6802729,32.8556381]},"id":"8f44c0a26743151-1397d3957620224d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26741496-13d6d33e2dc19ba8","8f44c0a26743151-1397d3957620224d"]},"geometry":{"type":"LineString","coordinates":[[-83.68041260000001,32.855534],[-83.6802729,32.8556381]]},"id":"8b44c0a26743fff-13f7d369c81ddf0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680555,32.8554333]},"id":"8f44c0a26741c8b-1397d2e522ca5f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6802852,32.8551604]},"id":"8f44c0a26740186-13ffd38dcfd37a15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26740186-13ffd38dcfd37a15","8f44c0a26741c8b-1397d2e522ca5f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.680555,32.8554333],[-83.6806408,32.8554016],[-83.6808912,32.855218400000005],[-83.6805659,32.8549355],[-83.6802852,32.8551604]]},"id":"8a44c0a26747fff-13f7f2b1f3aff8cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6795965,32.8541283]},"id":"8f44c0a26770429-17f6b53c3336ce0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6792386,32.854076500000005]},"id":"8f44c0a26772d5c-17d7d61be838cffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26772d5c-17d7d61be838cffb","8f44c0a26770429-17f6b53c3336ce0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6795965,32.8541283],[-83.6794126,32.8542338],[-83.6792386,32.854076500000005]]},"id":"8a44c0a26777fff-17feb5b062da7e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6792027,32.854536800000005]},"id":"8f44c0a267548a1-13f7963250101dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6790613,32.854298400000005]},"id":"8f44c0a267724ce-17d6968ab98e7c82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267548a1-13f7963250101dbd","8f44c0a267724ce-17d6968ab98e7c82"]},"geometry":{"type":"LineString","coordinates":[[-83.6792027,32.854536800000005],[-83.6790356,32.8543824],[-83.6790613,32.854298400000005]]},"id":"8944c0a2677ffff-13b69672d29ab0c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69691870000001,32.8162953]},"id":"8f44c0b1d2f54c8-139efaf1d43f13a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964373,32.8166985]},"id":"8f44c0b1d2f31b2-1796fc1eb858a166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f54c8-139efaf1d43f13a6","8f44c0b1d2f31b2-1796fc1eb858a166"]},"geometry":{"type":"LineString","coordinates":[[-83.69691870000001,32.8162953],[-83.6964373,32.8166985]]},"id":"8a44c0b1d2f7fff-1396fb884dce3590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6966726,32.816281000000004]},"id":"8f44c0b1d2f012b-13ffeb8ba5312acb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69626000000001,32.8166211]},"id":"8f44c0b1d2f2272-13d67c8d8e1e7161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f012b-13ffeb8ba5312acb","8f44c0b1d2f2272-13d67c8d8e1e7161"]},"geometry":{"type":"LineString","coordinates":[[-83.6966726,32.816281000000004],[-83.69626000000001,32.8166211]]},"id":"8a44c0b1d2f7fff-13fffc0c925b1df2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964689,32.816265200000004]},"id":"8f44c0b1d2f050c-13f7ec0af901e2ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69608140000001,32.8165482]},"id":"8f44c0b1d2f2709-13b6ecfd23887c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f050c-13f7ec0af901e2ae","8f44c0b1d2f2709-13b6ecfd23887c75"]},"geometry":{"type":"LineString","coordinates":[[-83.6964689,32.816265200000004],[-83.69608140000001,32.8165482]]},"id":"8a44c0b1d2f7fff-13de7c841af26f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69592340000001,32.8164837]},"id":"8f44c0b1d2f24d1-13fe7d5fee4f65c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69621260000001,32.8162453]},"id":"8f44c0b1d2f29a3-13ff7cab24e1e68c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f24d1-13fe7d5fee4f65c5","8f44c0b1d2f29a3-13ff7cab24e1e68c"]},"geometry":{"type":"LineString","coordinates":[[-83.69592340000001,32.8164837],[-83.69621260000001,32.8162453]]},"id":"8b44c0b1d2f2fff-13b7fd058d0cb64a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69770650000001,32.8169534]},"id":"8f44c0b1d2e3712-17b7e90574db72e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69722820000001,32.817314100000004]},"id":"8f44c0b1d2c0c6d-17977a3066120887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e3712-17b7e90574db72e5","8f44c0b1d2c0c6d-17977a3066120887"]},"geometry":{"type":"LineString","coordinates":[[-83.69770650000001,32.8169534],[-83.69722820000001,32.817314100000004]]},"id":"8944c0b1d2fffff-1796e99aeb256186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697136,32.8171574]},"id":"8f44c0b1d2c6a68-17b76a6a0d98d836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c6234-17d7fae56abc3dd1","8f44c0b1d2c6a68-17b76a6a0d98d836"]},"geometry":{"type":"LineString","coordinates":[[-83.697136,32.8171574],[-83.69693860000001,32.817212500000004]]},"id":"8b44c0b1d2c6fff-17b6eaa7bdf3e9e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69742020000001,32.8163661]},"id":"8f44c0b1d2e2d09-13b6f9b86bc53c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69687250000001,32.8168305]},"id":"8f44c0b1d2f16e6-17d77b0eb38f7452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f16e6-17d77b0eb38f7452","8f44c0b1d2e2d09-13b6f9b86bc53c18"]},"geometry":{"type":"LineString","coordinates":[[-83.69742020000001,32.8163661],[-83.69687250000001,32.8168305]]},"id":"8944c0b1d2fffff-13d7fa638ef5c3b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971752,32.8163101]},"id":"8f44c0b1d2f5316-1397fa5182892007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f3060-17beebc802e95d78","8f44c0b1d2f5316-1397fa5182892007"]},"geometry":{"type":"LineString","coordinates":[[-83.69657600000001,32.816791800000004],[-83.6971752,32.8163101]]},"id":"8a44c0b1d2f7fff-13be6b0cc5522671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69183000000001,32.8646431]},"id":"8f44c0a20428276-1397f75e4eeea24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69141760000001,32.8651441]},"id":"8f44c0a2040dd09-13df786002190407"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20428276-1397f75e4eeea24f","8f44c0a2040dd09-13df786002190407"]},"geometry":{"type":"LineString","coordinates":[[-83.69183000000001,32.8646431],[-83.69169520000001,32.8648086],[-83.69159060000001,32.8651143],[-83.69150760000001,32.8651621],[-83.69141760000001,32.8651441]]},"id":"8944c0a2043ffff-13df77d3398673e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916096,32.8644989]},"id":"8f44c0a2042846d-13b7f7e8080d5dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2042846d-13b7f7e8080d5dbe","8f44c0a2040dd09-13df786002190407"]},"geometry":{"type":"LineString","coordinates":[[-83.6916096,32.8644989],[-83.6914715,32.8646356],[-83.69138020000001,32.8649288],[-83.6913437,32.865096],[-83.69141760000001,32.8651441]]},"id":"8944c0a2043ffff-13ff7854d44d8b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74499370000001,32.835372500000005]},"id":"8f44c0b0945131e-139ff592fbc7b8b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451456,32.835511000000004]},"id":"8f44c0b0945ccd3-13f7f53403a7cce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945ccd3-13f7f53403a7cce2","8f44c0b0945131e-139ff592fbc7b8b6"]},"geometry":{"type":"LineString","coordinates":[[-83.74499370000001,32.835372500000005],[-83.7451006,32.8354214],[-83.7451456,32.835511000000004]]},"id":"8944c0b0947ffff-13bff55bb0068d80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7451564,32.835213700000004]},"id":"8f44c0b09451b2c-13bdf52d427de58a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09451b2c-13bdf52d427de58a","8f44c0b0945131e-139ff592fbc7b8b6"]},"geometry":{"type":"LineString","coordinates":[[-83.74499370000001,32.835372500000005],[-83.7450989,32.835308500000004],[-83.7451564,32.835213700000004]]},"id":"8b44c0b09451fff-13f5f55a0b2741a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7442094,32.8351385]},"id":"8f44c0b09452328-139df77d2627016e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7441951,32.8355051]},"id":"8f44c0b094ecb5b-13fff786195c8e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ecb5b-13fff786195c8e20","8f44c0b09452328-139df77d2627016e"]},"geometry":{"type":"LineString","coordinates":[[-83.7442094,32.8351385],[-83.7441951,32.8355051]]},"id":"8844c0b095fffff-13fdf781a2cfbddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7444055,32.8355096]},"id":"8f44c0b0945374e-13f5f7029b1c65fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7444145,32.8351446]},"id":"8f44c0b094506d1-139df6fcf27c6efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945374e-13f5f7029b1c65fa","8f44c0b094506d1-139df6fcf27c6efb"]},"geometry":{"type":"LineString","coordinates":[[-83.7444055,32.8355096],[-83.74440990000001,32.835332900000004],[-83.7444145,32.8351446]]},"id":"8b44c0b09453fff-13fff6ffc6297e9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7446099,32.8355139]},"id":"8f44c0b0945336a-13f5f682d4294e5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74462030000001,32.8351508]},"id":"8f44c0b094502c6-1395f67c5257bd52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945336a-13f5f682d4294e5c","8f44c0b094502c6-1395f67c5257bd52"]},"geometry":{"type":"LineString","coordinates":[[-83.7446099,32.8355139],[-83.74462030000001,32.8351508]]},"id":"8a44c0b09457fff-1397f67f9c640a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74376360000001,32.8354975]},"id":"8f44c0b094ec4e6-13fdf893c52aaa2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74378460000001,32.834501200000005]},"id":"8f44c0b0940b659-17fff886a4cdbfa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ec4e6-13fdf893c52aaa2e","8f44c0b0940b659-17fff886a4cdbfa8"]},"geometry":{"type":"LineString","coordinates":[[-83.74376360000001,32.8354975],[-83.74378460000001,32.834501200000005]]},"id":"8844c0b095fffff-13b7f88d3a22b287"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74359670000001,32.8343944]},"id":"8f44c0b094e4b55-17bdf8fc19b3096a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7435628,32.835494600000004]},"id":"8f44c0b094ee8f1-13fdf91143205e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ee8f1-13fdf91143205e01","8f44c0b094e4b55-17bdf8fc19b3096a"]},"geometry":{"type":"LineString","coordinates":[[-83.74359670000001,32.8343944],[-83.7435628,32.835494600000004]]},"id":"8844c0b095fffff-1395f906a8f2c0fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7433688,32.8350375]},"id":"8f44c0b094e0243-13dff98a8887fd94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74310720000001,32.8354882]},"id":"8f44c0b094c5906-13f5fa2e0270ad8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e0243-13dff98a8887fd94","8f44c0b094c5906-13f5fa2e0270ad8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7433688,32.8350375],[-83.7431529,32.8350321],[-83.74312210000001,32.8350561],[-83.74310720000001,32.8354882]]},"id":"8944c0b094fffff-13b7fa0bd85bbcc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7445689,32.8360657]},"id":"8f44c0b0945acd9-13ddf69c726c3699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74421690000001,32.835505600000005]},"id":"8f44c0b094ecb4a-13fff7787b4f07a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ecb4a-13fff7787b4f07a3","8f44c0b0945acd9-13ddf69c726c3699"]},"geometry":{"type":"LineString","coordinates":[[-83.7445689,32.8360657],[-83.7444574,32.8360636],[-83.7443191,32.8360609],[-83.7442407,32.836031000000006],[-83.7442008,32.8359662],[-83.74421690000001,32.835505600000005]]},"id":"8844c0b095fffff-13dff74e6b6280ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7447279,32.8359116]},"id":"8f44c0b0945e65b-13fdf63916f5f6c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74432250000001,32.835880100000004]},"id":"8f44c0b094ed0eb-13ddf7367526db76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ed0eb-13ddf7367526db76","8f44c0b0945e65b-13fdf63916f5f6c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7447279,32.8359116],[-83.74468300000001,32.8358871],[-83.74432250000001,32.835880100000004]]},"id":"8844c0b095fffff-13ddf6b61058cd92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74481030000001,32.8353711]},"id":"8f44c0b0945171b-139ff6059814b803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945171b-139ff6059814b803","8f44c0b0945131e-139ff592fbc7b8b6"]},"geometry":{"type":"LineString","coordinates":[[-83.74481030000001,32.8353711],[-83.74499370000001,32.835372500000005]]},"id":"8b44c0b09451fff-139ff5cc419a42d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930068,32.8657874]},"id":"8f44c0a20462471-13df747ec467c447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928228,32.8659887]},"id":"8f44c0a20471adb-17def4f1cc63103f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20462471-13df747ec467c447","8f44c0a20471adb-17def4f1cc63103f"]},"geometry":{"type":"LineString","coordinates":[[-83.6930068,32.8657874],[-83.6928228,32.8659887]]},"id":"8944c0a2047ffff-179e74b840ba6adf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928359,32.8656759]},"id":"8f44c0a204752de-139774e99df41f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69265060000001,32.8658753]},"id":"8f44c0a20471015-1796755d60c1c5c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a204752de-139774e99df41f4c","8f44c0a20471015-1796755d60c1c5c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6928359,32.8656759],[-83.69265060000001,32.8658753]]},"id":"8a44c0a20477fff-13d7f52371b1c68f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6929214,32.8664446]},"id":"8f44c0a20440996-17f7f4b424cf4fa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934324,32.8666584]},"id":"8f44c0a2044538c-17fff374c699cdcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2044538c-17fff374c699cdcd","8f44c0a20440996-17f7f4b424cf4fa4"]},"geometry":{"type":"LineString","coordinates":[[-83.6929214,32.8664446],[-83.6933424,32.866701400000004],[-83.6934324,32.8666584]]},"id":"8a44c0a20447fff-17d77415b34b1927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69331650000001,32.8660075]},"id":"8f44c0a20463532-17f6f3bd367ca13e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69371910000001,32.866320200000004]},"id":"8f44c0a2046ec8b-17be72c194a6e97d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2046ec8b-17be72c194a6e97d","8f44c0a20463532-17f6f3bd367ca13e"]},"geometry":{"type":"LineString","coordinates":[[-83.69331650000001,32.8660075],[-83.6937164,32.866256400000005],[-83.69371910000001,32.866320200000004]]},"id":"8944c0a2047ffff-17d6733131c31fb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934568,32.8665983]},"id":"8f44c0a2044504d-17d7f3658ef7bed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936778,32.8663569]},"id":"8f44c0a2046e511-17d772db63e8f46f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2044504d-17d7f3658ef7bed1","8f44c0a2046e511-17d772db63e8f46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6934568,32.8665983],[-83.69358770000001,32.866594500000005],[-83.69369680000001,32.8664768],[-83.6936778,32.8663569]]},"id":"8944c0a2047ffff-17b773012aab8034"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65992250000001,32.7709977]},"id":"8f44c0b11122332-17f7d54475c5e364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65987390000001,32.7712662]},"id":"8f44c0b11104840-179fe562de139636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11122332-17f7d54475c5e364","8f44c0b11104840-179fe562de139636"]},"geometry":{"type":"LineString","coordinates":[[-83.65992250000001,32.7709977],[-83.65987390000001,32.7712662]]},"id":"8944c0b1113ffff-17d7f553a03ed864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71783140000001,32.8064699]},"id":"8f44c0b0e394746-139fb7e3690073a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7178499,32.805422400000005]},"id":"8f44c0b0e3b6594-13ff37d7dfd3d80d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e394746-139fb7e3690073a3","8f44c0b0e3b6594-13ff37d7dfd3d80d"]},"geometry":{"type":"LineString","coordinates":[[-83.71783140000001,32.8064699],[-83.7178499,32.805422400000005]]},"id":"8744c0b0effffff-13d677dda5dd511c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7075289,32.7953722]},"id":"8f44c0b0326e3ac-17f7f10a7663ffac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7057066,32.7953434]},"id":"8f44c0b032553a6-17f7f57d6a808bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0326e3ac-17f7f10a7663ffac","8f44c0b032553a6-17f7f57d6a808bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.7075289,32.7953722],[-83.7057066,32.7953434]]},"id":"8944c0b0327ffff-17fef343f7229798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7065164,32.7941157]},"id":"8f44c0b0327590a-17f6538348a28ad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7064873,32.7948181]},"id":"8f44c0b03244db4-179f53957afd78aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03244db4-179f53957afd78aa","8f44c0b0327590a-17f6538348a28ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.7065164,32.7941157],[-83.7064873,32.7948181]]},"id":"8a44c0b03277fff-17bfd38c6b985158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75520920000001,32.8805092]},"id":"8f44c0b53d22725-17dfdca24d2951de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75521300000001,32.880125400000004]},"id":"8f44c0b53d2679e-17dffc9fec4dda5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d22725-17dfdca24d2951de","8f44c0b53d2679e-17dffc9fec4dda5e"]},"geometry":{"type":"LineString","coordinates":[[-83.75520920000001,32.8805092],[-83.75521300000001,32.880125400000004]]},"id":"8a44c0b53d27fff-17d7dca1126041e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7550551,32.880507]},"id":"8f44c0b53d224dc-17ddfd0294510fc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7550617,32.8801228]},"id":"8f44c0b53d35b88-17dddcfe7c3edb32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d224dc-17ddfd0294510fc1","8f44c0b53d35b88-17dddcfe7c3edb32"]},"geometry":{"type":"LineString","coordinates":[[-83.7550551,32.880507],[-83.7550617,32.8801228]]},"id":"8a44c0b53d37fff-17d5dd0082dfd087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7556157,32.8805031]},"id":"8f44c0b53d206ad-17dffba43d7ec76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d2679e-17dffc9fec4dda5e","8f44c0b53d206ad-17dffba43d7ec76a"]},"geometry":{"type":"LineString","coordinates":[[-83.7556157,32.8805031],[-83.755622,32.8801754],[-83.7556182,32.880152700000004],[-83.7555964,32.8801378],[-83.75521300000001,32.880125400000004]]},"id":"8a44c0b53d27fff-179fdbe5fd38cf0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d2679e-17dffc9fec4dda5e","8f44c0b53d35b88-17dddcfe7c3edb32"]},"geometry":{"type":"LineString","coordinates":[[-83.75521300000001,32.880125400000004],[-83.7550617,32.8801228]]},"id":"8944c0b53d3ffff-17dddccf287c42b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002708,32.823120700000004]},"id":"8f44c0b0a4ab945-13b672c2c345af7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70039,32.8229196]},"id":"8f44c0b0a4a8ac5-13b6e2784a3fca1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4ab945-13b672c2c345af7c","8f44c0b0a4a8ac5-13b6e2784a3fca1b"]},"geometry":{"type":"LineString","coordinates":[[-83.7002708,32.823120700000004],[-83.70039,32.8229196]]},"id":"8a44c0b0a4affff-13f7e29d8ac5cb1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69974280000001,32.8229069]},"id":"8f44c0b0a4aa11d-13bef40cc45f69d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6998478,32.8227057]},"id":"8f44c0b0a4ae298-13bf73cb21ec58db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4aa11d-13bef40cc45f69d1","8f44c0b0a4ae298-13bf73cb21ec58db"]},"geometry":{"type":"LineString","coordinates":[[-83.69974280000001,32.8229069],[-83.6998478,32.8227057]]},"id":"8a44c0b0a4affff-13fff3ebf157bb12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994471,32.8227872]},"id":"8f44c0b0a48521c-13f664c593444b47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69934280000001,32.822977900000005]},"id":"8f44c0b0a4818c5-13df7506c109ab99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4818c5-13df7506c109ab99","8f44c0b0a48521c-13f664c593444b47"]},"geometry":{"type":"LineString","coordinates":[[-83.6994471,32.8227872],[-83.69934280000001,32.822977900000005]]},"id":"8a44c0b0a487fff-139fe4e6340eda47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70014710000001,32.8237109]},"id":"8f44c0b0a48da31-17b773101d3cf1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002921,32.8234571]},"id":"8f44c0b0a4f6c80-1796f2b575b3e590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a48da31-17b773101d3cf1fa","8f44c0b0a4f6c80-1796f2b575b3e590"]},"geometry":{"type":"LineString","coordinates":[[-83.70014710000001,32.8237109],[-83.7002921,32.8234571]]},"id":"8944c0b0a4bffff-17d662e2c108be34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69270370000001,32.8985593]},"id":"8f44c0a0591e25e-13dff53c35768bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927091,32.8982222]},"id":"8f44c0a0591e80d-139ef538d0089209"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e80d-139ef538d0089209","8f44c0a0591e25e-13dff53c35768bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.69270370000001,32.8985593],[-83.6927091,32.8982222]]},"id":"8b44c0a0591efff-13f6753a8196f3ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69229580000001,32.8985475]},"id":"8f44c0a059adacd-13de763b2cc3044f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69230130000001,32.898116800000004]},"id":"8f44c0a05913313-13df7637b9ac065b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059adacd-13de763b2cc3044f","8f44c0a05913313-13df7637b9ac065b"]},"geometry":{"type":"LineString","coordinates":[[-83.69229580000001,32.8985475],[-83.69230130000001,32.898116800000004]]},"id":"8944c0a0593ffff-13d7f639719cbc03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6924065,32.8974344]},"id":"8f44c0a059108a4-13b6f5f5f9b0a05b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6922991,32.8979939]},"id":"8f44c0a05913144-13fe76391f93d801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05913144-13fe76391f93d801","8f44c0a059108a4-13b6f5f5f9b0a05b"]},"geometry":{"type":"LineString","coordinates":[[-83.6924065,32.8974344],[-83.6922972,32.8975827],[-83.6922991,32.8979939]]},"id":"8a44c0a05917fff-13d7f62f41988317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69253540000001,32.898553400000004]},"id":"8f44c0a0591e64a-13dff5a5649d4355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e64a-13dff5a5649d4355","8f44c0a0591ed5c-13f6f5997adf0aed"]},"geometry":{"type":"LineString","coordinates":[[-83.69253540000001,32.898553400000004],[-83.6925456,32.8982252],[-83.6925545,32.8981834]]},"id":"8b44c0a0591efff-13fe75a18b9a194c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69244850000001,32.8985519]},"id":"8f44c0a0591e6d1-13def5dbbe33f5c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e6d1-13def5dbbe33f5c2","8f44c0a0591ed8e-13f6f5d525bab02b"]},"geometry":{"type":"LineString","coordinates":[[-83.69244850000001,32.8985519],[-83.692459,32.8981549]]},"id":"8944c0a0593ffff-13def5d87f6c6085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928816,32.900208400000004]},"id":"8f44c0a05804c5a-17f674cd0a16da43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693084,32.9002162]},"id":"8f44c0a0580485c-17ff744e85906fe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05804c5a-17f674cd0a16da43","8f44c0a0580485c-17ff744e85906fe9"]},"geometry":{"type":"LineString","coordinates":[[-83.6928816,32.900208400000004],[-83.693084,32.9002162]]},"id":"8b44c0a05804fff-17fef48dc3ba0d00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931012,32.899364]},"id":"8f44c0a05826cc9-17d6f443c2fd0c7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928953,32.8993601]},"id":"8f44c0a05835960-17d674c475e1399e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05826cc9-17d6f443c2fd0c7c","8f44c0a05835960-17d674c475e1399e"]},"geometry":{"type":"LineString","coordinates":[[-83.6931012,32.899364],[-83.6928953,32.8993601]]},"id":"8944c0a0583ffff-17d7748420c371e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68268230000001,32.8565683]},"id":"8f44c0a262b198c-17dfbdb390f1c506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6825211,32.8566927]},"id":"8f44c0a262b1565-17befe1853ea46c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b198c-17dfbdb390f1c506","8f44c0a262b1565-17befe1853ea46c7"]},"geometry":{"type":"LineString","coordinates":[[-83.68268230000001,32.8565683],[-83.6825211,32.8566927]]},"id":"8b44c0a262b1fff-17969de5f59ae9cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824036,32.8569089]},"id":"8f44c0a262b3a6c-17b69e61c87714e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68252530000001,32.856807100000005]},"id":"8f44c0a262b1731-17f6fe15b48da249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b3a6c-17b69e61c87714e9","8f44c0a262b1731-17f6fe15b48da249"]},"geometry":{"type":"LineString","coordinates":[[-83.6824036,32.8569089],[-83.68252530000001,32.856807100000005]]},"id":"8a44c0a262b7fff-1796ce3bc2831885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6830917,32.8571618]},"id":"8f44c0a26284305-17deacb3b8e8cdf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6825467,32.8570343]},"id":"8f44c0a262868a0-17fefe085239f2f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26284305-17deacb3b8e8cdf7","8f44c0a262868a0-17fefe085239f2f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6830917,32.8571618],[-83.6829786,32.8572415],[-83.6829086,32.857269],[-83.6828504,32.8572639],[-83.6827815,32.8572161],[-83.6827217,32.857204800000005],[-83.6825467,32.8570343]]},"id":"8a44c0a26287fff-17df8d6477b0cf24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68224070000001,32.8567504]},"id":"8f44c0a262b38e0-17df8ec7974b3f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6823148,32.8566895]},"id":"8f44c0a262b3944-17b6fe9942b37e10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b38e0-17df8ec7974b3f35","8f44c0a262b3944-17b6fe9942b37e10"]},"geometry":{"type":"LineString","coordinates":[[-83.68224070000001,32.8567504],[-83.6823148,32.8566895]]},"id":"8c44c0a262b39ff-17be8eb068ff063d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6828969,32.8567709]},"id":"8f44c0a262b1b49-17dfdd2d730a18ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6830068,32.85669]},"id":"8f44c0a262a2735-17b7cce8cd8463ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b1b49-17dfdd2d730a18ce","8f44c0a262a2735-17b7cce8cd8463ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6828969,32.8567709],[-83.6830068,32.85669]]},"id":"8b44c0a262a2fff-17d68d0b2bdf96f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26285735-1796ec54f49953fe","8f44c0a26284305-17deacb3b8e8cdf7"]},"geometry":{"type":"LineString","coordinates":[[-83.6832433,32.857451000000005],[-83.68326090000001,32.857368300000005],[-83.6831571,32.8572208],[-83.6830917,32.8571618]]},"id":"8a44c0a26287fff-17b6cc712c3b2dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6827765,32.8568627]},"id":"8f44c0a262b1362-1797bd78b4424684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26284305-17deacb3b8e8cdf7","8f44c0a262b1362-1797bd78b4424684"]},"geometry":{"type":"LineString","coordinates":[[-83.6830917,32.8571618],[-83.6827765,32.8568627]]},"id":"8944c0a262bffff-17f6bd1631516aa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6807802,32.856119500000005]},"id":"8f44c0a26748d9a-17d6b25867a454a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68097660000001,32.8559651]},"id":"8f44c0a2674c70e-13f6b1dda67a9f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26748d9a-17d6b25867a454a6","8f44c0a2674c70e-13f6b1dda67a9f08"]},"geometry":{"type":"LineString","coordinates":[[-83.6807802,32.856119500000005],[-83.68097660000001,32.8559651]]},"id":"8a44c0a2674ffff-1796f21b0891751d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70247140000001,32.786902000000005]},"id":"8f44c0b03062c1b-13d7dd6367e40aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7024677,32.786954900000005]},"id":"8f44c0b03062cca-13f6dd65b1a98d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03062c1b-13d7dd6367e40aa3","8f44c0b03062cca-13f6dd65b1a98d61"]},"geometry":{"type":"LineString","coordinates":[[-83.70247140000001,32.786902000000005],[-83.7024677,32.786954900000005]]},"id":"8d44c0b03062cff-13d65d649e57a917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70249100000001,32.786709300000005]},"id":"8f44c0b03075b6b-13df5d572dccef2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70248910000001,32.7867332]},"id":"8f44c0b03066696-13de5d585d230251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03075b6b-13df5d572dccef2f","8f44c0b03066696-13de5d585d230251"]},"geometry":{"type":"LineString","coordinates":[[-83.70249100000001,32.786709300000005],[-83.70248910000001,32.7867332]]},"id":"8c44c0b03075bff-13d6dd57b1e0ccc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7022812,32.786696400000004]},"id":"8f44c0b0307514e-13d75dda4000ef8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7021263,32.7866851]},"id":"8f44c0b030750b6-13be7e3b1b88f2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0307514e-13d75dda4000ef8f","8f44c0b030750b6-13be7e3b1b88f2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.7022812,32.786696400000004],[-83.7021263,32.7866851]]},"id":"8c44c0b030751ff-13d7de0ab90b9aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70250150000001,32.7865727]},"id":"8f44c0b03066400-13f7fd509373ff1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03066400-13f7fd509373ff1f","8f44c0b03075b6b-13df5d572dccef2f"]},"geometry":{"type":"LineString","coordinates":[[-83.70249100000001,32.786709300000005],[-83.70250150000001,32.7865727]]},"id":"8b44c0b03066fff-13b6fd53d8ddc4fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7307837,32.832262400000005]},"id":"8f44c0b0b88456a-139618443dd9aec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73077500000001,32.8317704]},"id":"8f44c0b0b8a25a2-13d69849a6276ca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8a25a2-13d69849a6276ca1","8f44c0b0b88456a-139618443dd9aec1"]},"geometry":{"type":"LineString","coordinates":[[-83.7307837,32.832262400000005],[-83.7308268,32.832192500000005],[-83.7308521,32.832036],[-83.73077500000001,32.8317704]]},"id":"8944c0b0b8bffff-13fe382d685ef78d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7310877,32.8323197]},"id":"8f44c0b0b884a08-13b7d78634ba0721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731108,32.8318545]},"id":"8f44c0b0b8a2ab6-13971779820c9287"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8a2ab6-13971779820c9287","8f44c0b0b884a08-13b7d78634ba0721"]},"geometry":{"type":"LineString","coordinates":[[-83.7310877,32.8323197],[-83.731108,32.8318545]]},"id":"8944c0b0b8bffff-1396777febc0ea2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6593299,32.7732256]},"id":"8f44c0b11119220-13f6c6b6dee87d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65927740000001,32.7734824]},"id":"8f44c0b11026bac-1396c6d7ac7a02fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11119220-13f6c6b6dee87d2d","8f44c0b11026bac-1396c6d7ac7a02fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6593299,32.7732256],[-83.65925940000001,32.7733076],[-83.65927740000001,32.7734824]]},"id":"8844c0b111fffff-13bfd6d7098e1946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659536,32.7732285]},"id":"8f44c0b11024d0b-13f7d63609979098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65969820000001,32.7734729]},"id":"8f44c0b11024a9b-13fed5d0a8325a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11024d0b-13f7d63609979098","8f44c0b11024a9b-13fed5d0a8325a52"]},"geometry":{"type":"LineString","coordinates":[[-83.659536,32.7732285],[-83.6596282,32.773281000000004],[-83.65969820000001,32.7734729]]},"id":"8b44c0b11024fff-13b6c5f7d6a51d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659068,32.7740633]},"id":"8f44c0b1102231e-13ffd75a863c06bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6591447,32.7742789]},"id":"8f44c0b11023418-17f6d72a9653e990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1102231e-13ffd75a863c06bd","8f44c0b11023418-17f6d72a9653e990"]},"geometry":{"type":"LineString","coordinates":[[-83.659068,32.7740633],[-83.6591447,32.7742789]]},"id":"8a44c0b11027fff-17b6f7429afdda9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66024920000001,32.7738624]},"id":"8f44c0b11152d0e-13f6c4784956c087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659464,32.7736974]},"id":"8f44c0b11020d48-139ee6630a6a792c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11020d48-139ee6630a6a792c","8f44c0b11152d0e-13f6c4784956c087"]},"geometry":{"type":"LineString","coordinates":[[-83.66024920000001,32.7738624],[-83.6596552,32.7740809],[-83.659464,32.7736974]]},"id":"8844c0b111fffff-139ff594f142ce87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775764,32.8534175]},"id":"8f44c0a2670344a-17bffa2ac0350b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6774757,32.8533271]},"id":"8f44c0a2670358a-17f7fa69b604e3e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670358a-17f7fa69b604e3e8","8f44c0a2670344a-17bffa2ac0350b07"]},"geometry":{"type":"LineString","coordinates":[[-83.6775764,32.8534175],[-83.6774757,32.8533271]]},"id":"8c44c0a267035ff-179fba4a305eabef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6780485,32.8540827]},"id":"8f44c0a2670ab96-17dfb903b82deec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6783309,32.8538561]},"id":"8f44c0a26708c06-17be98533ca56c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670ab96-17dfb903b82deec5","8f44c0a26708c06-17be98533ca56c81"]},"geometry":{"type":"LineString","coordinates":[[-83.6780485,32.8540827],[-83.6783309,32.8538561]]},"id":"8a44c0a2670ffff-1796f8ab721494ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678044,32.853592]},"id":"8f44c0a2670ec41-179799068369a317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6771769,32.853916600000005]},"id":"8f44c0a2671814a-17f7fb247ec72d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2671814a-17f7fb247ec72d1a","8f44c0a2670ec41-179799068369a317"]},"geometry":{"type":"LineString","coordinates":[[-83.678044,32.853592],[-83.6775413,32.8539917],[-83.6771769,32.853916600000005]]},"id":"8944c0a2673ffff-17bfba07065be8a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677649,32.8529549]},"id":"8f44c0a267004e5-179ed9fd6bd74738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779046,32.8527519]},"id":"8f44c0a267009aa-179ff95daa7ef082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267004e5-179ed9fd6bd74738","8f44c0a267009aa-179ff95daa7ef082"]},"geometry":{"type":"LineString","coordinates":[[-83.677649,32.8529549],[-83.6779046,32.8527519]]},"id":"8b44c0a26700fff-17dff9ad831dd19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70700090000001,32.8060147]},"id":"8f44c0b1db62b49-13ff72547298732c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707206,32.805398100000005]},"id":"8f44c0b1db64562-13ffd1d44196eefd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db62b49-13ff72547298732c","8f44c0b1db64562-13ffd1d44196eefd"]},"geometry":{"type":"LineString","coordinates":[[-83.70700090000001,32.8060147],[-83.70715820000001,32.8059699],[-83.7071853,32.8059498],[-83.7071954,32.8059139],[-83.707206,32.805398100000005]]},"id":"8a44c0b1db67fff-13dff1e93f1efbb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7076918,32.8061956]},"id":"8f44c0b1db61b9d-13f650a4a273eb35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70800960000001,32.806415900000005]},"id":"8f44c0b1db6c818-13ffffde09ab9c19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db6c818-13ffffde09ab9c19","8f44c0b1db61b9d-13f650a4a273eb35"]},"geometry":{"type":"LineString","coordinates":[[-83.7076918,32.8061956],[-83.7076926,32.8062139],[-83.70795820000001,32.806207300000004],[-83.70800960000001,32.806415900000005]]},"id":"8944c0b1db7ffff-1396f0298bcc9d67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70792130000001,32.8056837]},"id":"8f44c0b0e79648c-13b650153e5f680a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7079217,32.8058092]},"id":"8f44c0b1db65a75-13fed014f39aab3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db65a75-13fed014f39aab3e","8f44c0b0e79648c-13b650153e5f680a"]},"geometry":{"type":"LineString","coordinates":[[-83.70792130000001,32.8056837],[-83.7079217,32.8058092]]},"id":"8a44c0b0e797fff-13d7d015147f456d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70766900000001,32.8056804]},"id":"8f44c0b1db65c4d-139e50b2e34afc75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70767090000001,32.8058105]},"id":"8f44c0b1db650e6-13ffd0b1bc01d3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db65c4d-139e50b2e34afc75","8f44c0b1db650e6-13ffd0b1bc01d3a0"]},"geometry":{"type":"LineString","coordinates":[[-83.70766900000001,32.8056804],[-83.70767090000001,32.8058105]]},"id":"8b44c0b1db65fff-13d6f0b24482e7bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73815640000001,32.8336202]},"id":"8f44c0b09492773-17d6a644428e88a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7386846,32.8334692]},"id":"8f44c0b094900ea-17f644fa2edc9f74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492773-17d6a644428e88a2","8f44c0b094900ea-17f644fa2edc9f74"]},"geometry":{"type":"LineString","coordinates":[[-83.73815640000001,32.8336202],[-83.73861980000001,32.8336312],[-83.73865760000001,32.8336251],[-83.7386786,32.833602400000004],[-83.7386846,32.8334692]]},"id":"8a44c0b09497fff-17de957d98a8ddf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7381589,32.8334496]},"id":"8f44c0b094921a3-17fe0642b73a9c94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094921a3-17fe0642b73a9c94","8f44c0b094900ea-17f644fa2edc9f74"]},"geometry":{"type":"LineString","coordinates":[[-83.7386846,32.8334692],[-83.7387025,32.8331342],[-83.73868750000001,32.8331103],[-83.73865950000001,32.8330818],[-83.7382697,32.8330713],[-83.7382345,32.833086900000005],[-83.7382168,32.8331145],[-83.7381589,32.8334496]]},"id":"8a44c0b09497fff-17dfd58d36d6aa12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73809390000001,32.833396400000005]},"id":"8f44c0b09492cf1-17dec66b5e94dca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73761040000001,32.833387200000004]},"id":"8f44c0b0b861da5-17d707998d7366a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492cf1-17dec66b5e94dca6","8f44c0b0b861da5-17d707998d7366a8"]},"geometry":{"type":"LineString","coordinates":[[-83.73809390000001,32.833396400000005],[-83.7380983,32.833152000000005],[-83.7380741,32.833125800000005],[-83.73803840000001,32.8331046],[-83.7376861,32.8330944],[-83.73764700000001,32.8331052],[-83.7376249,32.8331235],[-83.73761040000001,32.833387200000004]]},"id":"8844c0b0b9fffff-17d6c6ffb0ec154f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7375641,32.8335203]},"id":"8f44c0b0b861523-179637b675616997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73756750000001,32.8333864]},"id":"8f44c0b0b861db6-17d687b4544ff5d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861db6-17d687b4544ff5d1","8f44c0b0b861523-179637b675616997"]},"geometry":{"type":"LineString","coordinates":[[-83.7375641,32.8335203],[-83.73756750000001,32.8333864]]},"id":"8a44c0b0b867fff-17fe67b5621809f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7380359,32.833538600000004]},"id":"8f44c0b09492450-17b7a68f9a7d53ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7380373,32.8333954]},"id":"8f44c0b09492c99-17de268eb6f746cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492c99-17de268eb6f746cc","8f44c0b09492450-17b7a68f9a7d53ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7380359,32.833538600000004],[-83.7380373,32.8333954]]},"id":"8b44c0b09492fff-17f6e68f2f5cb2ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492cf1-17dec66b5e94dca6","8f44c0b094921a3-17fe0642b73a9c94"]},"geometry":{"type":"LineString","coordinates":[[-83.7381589,32.8334496],[-83.73809390000001,32.833396400000005]]},"id":"8b44c0b09492fff-17df66570842e152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6681482,32.7925269]},"id":"8f44c0b1c453c49-1397f12f676dfa74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6680968,32.7928103]},"id":"8f44c0b1c453658-13b6f14f8ed634da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c453c49-1397f12f676dfa74","8f44c0b1c453658-13b6f14f8ed634da"]},"geometry":{"type":"LineString","coordinates":[[-83.6681482,32.7925269],[-83.6676922,32.7924553],[-83.6676355,32.7924814],[-83.6675898,32.7927149],[-83.6676391,32.7927478],[-83.6680968,32.7928103]]},"id":"8844c0b1c5fffff-13bef1fdefafedd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668068,32.7927343]},"id":"8f44c0b1c453622-1396f1618a75ecb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c453622-1396f1618a75ecb7","8f44c0b1c453658-13b6f14f8ed634da"]},"geometry":{"type":"LineString","coordinates":[[-83.668068,32.7927343],[-83.6680968,32.7928103]]},"id":"8c44c0b1c4537ff-139eb1588a45b42f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66840780000001,32.7925637]},"id":"8f44c0b1c453b2d-139ef08d2334a2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c453c49-1397f12f676dfa74","8f44c0b1c453b2d-139ef08d2334a2e6"]},"geometry":{"type":"LineString","coordinates":[[-83.66840780000001,32.7925637],[-83.6681482,32.7925269]]},"id":"8a44c0b1c457fff-139ef0de479e09de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66834300000001,32.792848]},"id":"8f44c0b1c45e506-13deb0b5a6a034bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c45e506-13deb0b5a6a034bc","8f44c0b1c453658-13b6f14f8ed634da"]},"geometry":{"type":"LineString","coordinates":[[-83.6680968,32.7928103],[-83.66834300000001,32.792848]]},"id":"8944c0b1c47ffff-13bef1029086342c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095419,32.8052793]},"id":"8f44c0b0e7b11b0-13b7dc205133b025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099354,32.8052863]},"id":"8f44c0b0e7a245c-13b7fb2a6923393d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e7a245c-13b7fb2a6923393d","8f44c0b0e7b11b0-13b7dc205133b025"]},"geometry":{"type":"LineString","coordinates":[[-83.7095419,32.8052793],[-83.7099354,32.8052863]]},"id":"8944c0b0e7bffff-13b7cba5652dbe4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6327242,32.832195500000005]},"id":"8f44c0a34c9c603-13df37ab65614f01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63243220000001,32.8320238]},"id":"8f44c0a34c9e81c-13ffe861e5927638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c9e81c-13ffe861e5927638","8f44c0a34c9c603-13df37ab65614f01"]},"geometry":{"type":"LineString","coordinates":[[-83.6327242,32.832195500000005],[-83.63243220000001,32.8320238]]},"id":"8a44c0a34c9ffff-13b79806ab30c53d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6325463,32.832404100000005]},"id":"8f44c0a34c9852a-13df981a9f6122ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63217540000001,32.8325553]},"id":"8f44c0a34c9a18e-13bf1902679c4861"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c9a18e-13bf1902679c4861","8f44c0a34c9852a-13df981a9f6122ad"]},"geometry":{"type":"LineString","coordinates":[[-83.6325463,32.832404100000005],[-83.6324012,32.832321300000004],[-83.6323665,32.8323285],[-83.63217540000001,32.8325553]]},"id":"8a44c0a34c9ffff-13df789731dbba73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68388850000001,32.822930400000004]},"id":"8f44c0b19ce16a9-13bf8ac1b552e537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837478,32.822736400000004]},"id":"8f44c0b19ce14b6-13d6cb19a6af8ee8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce16a9-13bf8ac1b552e537","8f44c0b19ce14b6-13d6cb19a6af8ee8"]},"geometry":{"type":"LineString","coordinates":[[-83.68388850000001,32.822930400000004],[-83.6837478,32.822736400000004]]},"id":"8a44c0b19ce7fff-13feeaedaccfb871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914608,32.8967748]},"id":"8f44c0a2364bcb3-17967845003122e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364bcb3-17967845003122e6","8f44c0a236496b5-17f677180f6245c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6914608,32.8967748],[-83.69184650000001,32.8969454],[-83.6919424,32.8969571]]},"id":"8a44c0a2364ffff-17d677b077e29027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6920518,32.8962323]},"id":"8f44c0a2364dcb2-17b776d3a048fa24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918594,32.8961449]},"id":"8f44c0a2364c0ce-17fef74be0db98d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364c0ce-17fef74be0db98d8","8f44c0a2364dcb2-17b776d3a048fa24"]},"geometry":{"type":"LineString","coordinates":[[-83.6920518,32.8962323],[-83.6918594,32.8961449]]},"id":"8a44c0a2364ffff-1797f70fcbd3408c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66306630000001,32.8067024]},"id":"8f44c0b18524b22-139fbd979488d04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663275,32.8067046]},"id":"8f44c0b18c8b08b-139efd1526280e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18c8b08b-139efd1526280e0c","8f44c0b18524b22-139fbd979488d04d"]},"geometry":{"type":"LineString","coordinates":[[-83.66306630000001,32.8067024],[-83.663275,32.8067046]]},"id":"8944c0b18cbffff-139fbd56594cdfca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636082,32.8066606]},"id":"8f44c0b18c8bb6a-1396fc44ebaa0b51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18c8bb6a-1396fc44ebaa0b51","8f44c0b18c8b08b-139efd1526280e0c"]},"geometry":{"type":"LineString","coordinates":[[-83.663275,32.8067046],[-83.6634373,32.8067173],[-83.6635315,32.806713],[-83.6635732,32.8067027],[-83.6636082,32.8066606]]},"id":"8a44c0b18c8ffff-13b6bca7a1e04884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637795,32.8066282]},"id":"8f44c0b18c890d8-13febbd9da0fda21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18c8bb6a-1396fc44ebaa0b51","8f44c0b18c890d8-13febbd9da0fda21"]},"geometry":{"type":"LineString","coordinates":[[-83.6636082,32.8066606],[-83.6636352,32.806627500000005],[-83.6637795,32.8066282]]},"id":"8b44c0b18c89fff-13f6fc13299418ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630621,32.806874]},"id":"8f44c0b18525db3-179efd9a3675f0be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66389380000001,32.806803800000004]},"id":"8f44c0b18cd4596-13defb926b9d0cd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd4596-13defb926b9d0cd5","8f44c0b18525db3-179efd9a3675f0be"]},"geometry":{"type":"LineString","coordinates":[[-83.6630621,32.806874],[-83.66318770000001,32.806874300000004],[-83.6634322,32.806929100000005],[-83.66389360000001,32.8069246],[-83.66389380000001,32.806803800000004]]},"id":"8844c0b18dfffff-179ffc7646b159ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663624,32.8073576]},"id":"8f44c0b18cd212d-17b6bc3b036fee47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633965,32.8073544]},"id":"8f44c0b18cd251d-17b6bcc93443a6fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd212d-17b6bc3b036fee47","8f44c0b18cd251d-17b6bcc93443a6fd"]},"geometry":{"type":"LineString","coordinates":[[-83.663624,32.8073576],[-83.6633965,32.8073544]]},"id":"8b44c0b18cd2fff-17b7bc82277462bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633939,32.8074768]},"id":"8f44c0b18cd27b6-1797bccadd5d9103"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636227,32.807479400000005]},"id":"8f44c0b18cd204e-1796bc3bd632b9ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd27b6-1797bccadd5d9103","8f44c0b18cd204e-1796bc3bd632b9ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6633939,32.8074768],[-83.6636227,32.807479400000005]]},"id":"8b44c0b18cd2fff-1797fc835569a64b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68966490000001,32.8565836]},"id":"8f44c0a2634ed9c-17f6fca77aa0857c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894187,32.856912300000005]},"id":"8f44c0a2635da92-17b67d415896171f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2635da92-17b67d415896171f","8f44c0a2634ed9c-17f6fca77aa0857c"]},"geometry":{"type":"LineString","coordinates":[[-83.68966490000001,32.8565836],[-83.6894187,32.856912300000005]]},"id":"8944c0a2637ffff-17dffcf463b4f746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892641,32.8571205]},"id":"8f44c0a26359984-17b67da1f5b6d720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890321,32.8574385]},"id":"8f44c0a263596b4-17ff7e32ffcbedfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26359984-17b67da1f5b6d720","8f44c0a263596b4-17ff7e32ffcbedfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6892641,32.8571205],[-83.6890321,32.8574385]]},"id":"8b44c0a26359fff-1797fdea7e60a2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6657478,32.7982087]},"id":"8f44c0b1ea6529b-17f6f70bac5ef9b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6658768,32.7979811]},"id":"8f44c0b1ea65b82-17d6b6bb0b7504cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ea6529b-17f6f70bac5ef9b3","8f44c0b1ea65b82-17d6b6bb0b7504cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6657478,32.7982087],[-83.6655727,32.798144900000004],[-83.6649871,32.798129800000005],[-83.6649732,32.7978023],[-83.6654441,32.7978232],[-83.6658768,32.7979811]]},"id":"8a44c0b1ea67fff-17d6f80cee299f7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206357,32.81176]},"id":"8f44c0b0e2c4416-17f6310ab8947dae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206431,32.8114009]},"id":"8f44c0b0e2f1ba6-1797b1061711d362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c4416-17f6310ab8947dae","8f44c0b0e2f1ba6-1797b1061711d362"]},"geometry":{"type":"LineString","coordinates":[[-83.7206357,32.81176],[-83.72089310000001,32.8117577],[-83.7209359,32.8117371],[-83.7209531,32.8116957],[-83.7209586,32.8114489],[-83.72095390000001,32.811427800000004],[-83.720943,32.8114178],[-83.7208935,32.811402300000005],[-83.7206431,32.8114009]]},"id":"8944c0b0e2fffff-17973085f40d8fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72015040000001,32.812230400000004]},"id":"8f44c0b0e2c2cc0-139e323a0fdb5e0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201131,32.8120868]},"id":"8f44c0b0e2c2db4-13d672515facfbb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c2cc0-139e323a0fdb5e0d","8f44c0b0e2c2db4-13d672515facfbb5"]},"geometry":{"type":"LineString","coordinates":[[-83.72015040000001,32.812230400000004],[-83.7201199,32.812145],[-83.7201131,32.8120868]]},"id":"8a44c0b0e2c7fff-13ffb24828039b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71953640000001,32.8122366]},"id":"8f44c0b0e2d0352-139ff3b9cc1456fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719531,32.8124249]},"id":"8f44c0b0e2d1485-1397b3bd265f6a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d1485-1397b3bd265f6a2f","8f44c0b0e2d0352-139ff3b9cc1456fc"]},"geometry":{"type":"LineString","coordinates":[[-83.71953640000001,32.8122366],[-83.71958620000001,32.8122976],[-83.71958430000001,32.8123924],[-83.719531,32.8124249]]},"id":"8a44c0b0e2d7fff-13dff3a4c795a3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7198468,32.811450400000005]},"id":"8f44c0b0e2f3c9b-17b6b2f7c621849d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719572,32.811585]},"id":"8f44c0b0e2d4120-179eb3a38d07f6e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d4120-179eb3a38d07f6e0","8f44c0b0e2f3c9b-17b6b2f7c621849d"]},"geometry":{"type":"LineString","coordinates":[[-83.7198468,32.811450400000005],[-83.71972260000001,32.8113799],[-83.7196519,32.8113888],[-83.71957780000001,32.811441300000006],[-83.719572,32.811585]]},"id":"8944c0b0e2fffff-17bf3367c5102c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900595,32.8640983]},"id":"8f44c0a2040605a-17bf7bb0da292160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6902671,32.864235400000005]},"id":"8f44c0a20400cf6-13977b2f1ec38446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2040605a-17bf7bb0da292160","8f44c0a20400cf6-13977b2f1ec38446"]},"geometry":{"type":"LineString","coordinates":[[-83.6900595,32.8640983],[-83.6902671,32.864235400000005]]},"id":"8a44c0a20407fff-17fe7b6ff54a3dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64418470000001,32.8380877]},"id":"8f44c0a341430e6-13befbb093f2a8f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6440003,32.8390231]},"id":"8f44c0a341593ae-1397fc23d4bba7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341430e6-13befbb093f2a8f1","8f44c0a341593ae-1397fc23d4bba7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.64418470000001,32.8380877],[-83.64397790000001,32.8383599],[-83.6439948,32.838450800000004],[-83.6439933,32.8385315],[-83.64396400000001,32.8388186],[-83.6440003,32.8390231]]},"id":"8944c0a3417ffff-13d7fc1a0df2775b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443871,32.8387059]},"id":"8f44c0a3414ac42-13bffb3216417c5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64424910000001,32.8389053]},"id":"8f44c0a3414a790-13bffb88596c7ffa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3414ac42-13bffb3216417c5c","8f44c0a3414a790-13bffb88596c7ffa"]},"geometry":{"type":"LineString","coordinates":[[-83.6443871,32.8387059],[-83.6443338,32.8387619],[-83.64424910000001,32.8389053]]},"id":"8b44c0a3414afff-13ffeb60365751b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b804d9-13b7f232ee82d7ea","8f44c0a30bb341a-17f7f3f0fab248c3"]},"geometry":{"type":"LineString","coordinates":[[-83.64151860000001,32.858124000000004],[-83.64115120000001,32.8577172],[-83.6408049,32.857404100000004]]},"id":"8944c0a30bbffff-13d6f30c4394b6dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6435206,32.8442226]},"id":"8f44c0a3438c86c-17b7ed4fa92b32b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34388a73-13b7fd82fed742cb","8f44c0a3438c86c-17b7ed4fa92b32b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6434385,32.844805900000004],[-83.6435206,32.8442226]]},"id":"8944c0a343bffff-17fffd695bd34d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625126,32.8413209]},"id":"8f44c0b1b660441-13b7bef1af8c2964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625235,32.840987000000005]},"id":"8f44c0b1b666b5b-17d6feead840ad17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b660441-13b7bef1af8c2964","8f44c0b1b666b5b-17d6feead840ad17"]},"geometry":{"type":"LineString","coordinates":[[-83.6625126,32.8413209],[-83.6625235,32.840987000000005]]},"id":"8a44c0b1b667fff-17bffeee4cfa5d97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66262180000001,32.840823400000005]},"id":"8f44c0b1b664551-17febead640b5297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66289040000001,32.840431200000005]},"id":"8f44c0b1b74a00c-17f7be058a637b04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b74a00c-17f7be058a637b04","8f44c0b1b664551-17febead640b5297"]},"geometry":{"type":"LineString","coordinates":[[-83.66262180000001,32.840823400000005],[-83.6626772,32.8408707],[-83.6629425,32.8408741],[-83.6629582,32.840597700000004],[-83.6629535,32.8404588],[-83.66289040000001,32.840431200000005]]},"id":"8844c0b1b7fffff-17b6fe0ded4b2425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6469229,32.8146111]},"id":"8f44c0b1a11c5a5-17fff50132ffaafc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6469347,32.8141674]},"id":"8f44c0b1a11192d-17d6e4f9dd81d5f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11192d-17d6e4f9dd81d5f0","8f44c0b1a11c5a5-17fff50132ffaafc"]},"geometry":{"type":"LineString","coordinates":[[-83.6469229,32.8146111],[-83.6469347,32.8141674]]},"id":"8944c0b1a13ffff-17f7f4fd828c4939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64641920000001,32.814299600000005]},"id":"8f44c0b1a11390a-17bfe63c0d6760f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6462238,32.814296500000005]},"id":"8f44c0b1a113c20-17b7f6b627a7341d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11390a-17bfe63c0d6760f1","8f44c0b1a113c20-17b7f6b627a7341d"]},"geometry":{"type":"LineString","coordinates":[[-83.64641920000001,32.814299600000005],[-83.6462238,32.814296500000005]]},"id":"8b44c0b1a113fff-17bef6791088f5da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6468493,32.81461]},"id":"8f44c0b1a1112ca-17ffe52f37341ecb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64685,32.8146987]},"id":"8f44c0b1a11c493-17b6f52ec8723922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11c493-17b6f52ec8723922","8f44c0b1a1112ca-17ffe52f37341ecb"]},"geometry":{"type":"LineString","coordinates":[[-83.6468493,32.81461],[-83.64685,32.8146987]]},"id":"8a44c0b1a11ffff-1797e52ef850b76e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6469206,32.8146982]},"id":"8f44c0b1a11c41a-17b6e502a96cb03b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11c5a5-17fff50132ffaafc","8f44c0b1a11c41a-17b6e502a96cb03b"]},"geometry":{"type":"LineString","coordinates":[[-83.6469206,32.8146982],[-83.6469229,32.8146111]]},"id":"8c44c0b1a11c5ff-1797f501f8897529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64702460000001,32.8141674]},"id":"8f44c0b1a115259-17d6e4c1ac07cd59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11192d-17d6e4f9dd81d5f0","8f44c0b1a115259-17d6e4c1ac07cd59"]},"geometry":{"type":"LineString","coordinates":[[-83.6469347,32.8141674],[-83.6469703,32.8141674],[-83.64702460000001,32.8141674]]},"id":"8a44c0b1a117fff-17d6e4ddc28b869a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6618146,32.8141181]},"id":"8f44c0b184ec2c2-17b7d0a5e967e492"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661983,32.8141227]},"id":"8f44c0b184edcd4-17bef03caeed9f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184edcd4-17bef03caeed9f0e","8f44c0b184ec2c2-17b7d0a5e967e492"]},"geometry":{"type":"LineString","coordinates":[[-83.6618146,32.8141181],[-83.661983,32.8141227]]},"id":"8a44c0b184effff-17bfc07146b4fa27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6618239,32.813401400000004]},"id":"8f44c0b184521b5-13f7e0a017440ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ec2c2-17b7d0a5e967e492","8f44c0b184521b5-13f7e0a017440ace"]},"geometry":{"type":"LineString","coordinates":[[-83.6618146,32.8141181],[-83.6618239,32.813401400000004]]},"id":"8944c0b184fffff-17d7e0a2f6902d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66200780000001,32.8134044]},"id":"8f44c0b18452bb4-13ffc02d213967da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18452bb4-13ffc02d213967da","8f44c0b184edcd4-17bef03caeed9f0e"]},"geometry":{"type":"LineString","coordinates":[[-83.66200780000001,32.8134044],[-83.661983,32.8141227]]},"id":"8844c0b185fffff-17dec034e0d8738f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66164900000001,32.813396600000004]},"id":"8f44c0b184525a3-13f6e10d6bafd215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6616338,32.8141133]},"id":"8f44c0b184ec6c3-17b6d116e0d25f9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ec6c3-17b6d116e0d25f9f","8f44c0b184525a3-13f6e10d6bafd215"]},"geometry":{"type":"LineString","coordinates":[[-83.66164900000001,32.813396600000004],[-83.6616338,32.8141133]]},"id":"8944c0b184fffff-17d6e11226475cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66145990000001,32.814108700000006]},"id":"8f44c0b184eeac8-17b7f18393eda4dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66148670000001,32.8133921]},"id":"8f44c0b184e19ad-13f6d172d74b628e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e19ad-13f6d172d74b628e","8f44c0b184eeac8-17b7f18393eda4dd"]},"geometry":{"type":"LineString","coordinates":[[-83.66145990000001,32.814108700000006],[-83.66148670000001,32.8133921]]},"id":"8944c0b184fffff-17d6c17b390a08b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66129760000001,32.813386900000005]},"id":"8f44c0b184e1c34-13fed1e90a484a71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6612782,32.8141039]},"id":"8f44c0b184ee396-17bef1f525bbfcf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ee396-17bef1f525bbfcf5","8f44c0b184e1c34-13fed1e90a484a71"]},"geometry":{"type":"LineString","coordinates":[[-83.66129760000001,32.813386900000005],[-83.6612782,32.8141039]]},"id":"8944c0b184fffff-17dee1ef16de8b2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66122440000001,32.8143048]},"id":"8f44c0b184ea813-17bec216c0139df5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609032,32.8139273]},"id":"8f44c0b184c5918-17d6d2df8348e4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ea813-17bec216c0139df5","8f44c0b184c5918-17d6d2df8348e4a1"]},"geometry":{"type":"LineString","coordinates":[[-83.66122440000001,32.8143048],[-83.66110400000001,32.8142313],[-83.6609995,32.8141601],[-83.6609542,32.814056],[-83.6609032,32.8139273]]},"id":"8944c0b184fffff-17d6e28e54a6bcdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66090340000001,32.8139217]},"id":"8f44c0b184c591c-17bfd2df6012e943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6605736,32.8142884]},"id":"8f44c0b184c0a6a-17b6c3ad8b9b94c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c0a6a-17b6c3ad8b9b94c3","8f44c0b184c591c-17bfd2df6012e943"]},"geometry":{"type":"LineString","coordinates":[[-83.66090340000001,32.8139217],[-83.6608372,32.814057500000004],[-83.66078040000001,32.81416],[-83.6606809,32.8142311],[-83.6605736,32.8142884]]},"id":"8a44c0b184c7fff-17bfe335c823ac71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654033,32.844561]},"id":"8f44c0a35d1e652-139ef3a569877094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65472390000001,32.844029500000005]},"id":"8f44c0a35d02298-17bef1f599c2b5cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d02298-17bef1f599c2b5cf","8f44c0a35d1e652-139ef3a569877094"]},"geometry":{"type":"LineString","coordinates":[[-83.654033,32.844561],[-83.65411230000001,32.844464],[-83.6541765,32.844380300000005],[-83.6542203,32.8443094],[-83.6543053,32.8442103],[-83.65448980000001,32.844108],[-83.6546103,32.843977100000004],[-83.65472390000001,32.844029500000005]]},"id":"8944c0a35d3ffff-17b6d2dc2e503ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73317080000001,32.8301928]},"id":"8f44c0b0b9a9449-17f692704cb05532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733169,32.830318000000005]},"id":"8f44c0b0b9a96f1-17d6d2716795da19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b9a9449-17f692704cb05532","8f44c0b0b9a96f1-17d6d2716795da19"]},"geometry":{"type":"LineString","coordinates":[[-83.73317080000001,32.8301928],[-83.733169,32.830318000000005]]},"id":"8c44c0b0b9a97ff-179fb270da29316c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6751011,32.8390578]},"id":"8f44c0a26d86301-139fa035d4636902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6755641,32.8390672]},"id":"8f44c0a26d842ec-13b79f147ae5bb8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d86301-139fa035d4636902","8f44c0a26d842ec-13b79f147ae5bb8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6751011,32.8390578],[-83.6755641,32.8390672]]},"id":"8a44c0a26d87fff-139e9fa524843d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67506850000001,32.838893]},"id":"8f44c0a26d868dc-13b6a04a36f6f11a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6746643,32.8387436]},"id":"8f44c0a26db3380-13d6e146d81f6222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d868dc-13b6a04a36f6f11a","8f44c0a26db3380-13d6e146d81f6222"]},"geometry":{"type":"LineString","coordinates":[[-83.67506850000001,32.838893],[-83.6747983,32.8388062],[-83.6746643,32.8387436]]},"id":"8944c0a26dbffff-139fa0c9eeb68708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67510560000001,32.838925800000005]},"id":"8f44c0a26d86b90-13dea0330ae2bc54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753563,32.8389047]},"id":"8f44c0a26d8444d-13bfff9655c3f2ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d8444d-13bfff9655c3f2ae","8f44c0a26d86b90-13dea0330ae2bc54"]},"geometry":{"type":"LineString","coordinates":[[-83.67510560000001,32.838925800000005],[-83.6753182,32.8389396],[-83.6753563,32.8389047]]},"id":"8a44c0a26d87fff-13dfbfe140eebd96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6750281,32.8386258]},"id":"8f44c0a26db170a-139fa0637921553d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d868dc-13b6a04a36f6f11a","8f44c0a26db170a-139fa0637921553d"]},"geometry":{"type":"LineString","coordinates":[[-83.67506850000001,32.838893],[-83.6750662,32.8388638],[-83.67489710000001,32.838737900000005],[-83.6750281,32.8386258]]},"id":"8944c0a26dbffff-13dee081a907637a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d868dc-13b6a04a36f6f11a","8f44c0a26d86b90-13dea0330ae2bc54"]},"geometry":{"type":"LineString","coordinates":[[-83.67510560000001,32.838925800000005],[-83.67506850000001,32.838893]]},"id":"8b44c0a26d86fff-13bee03ea79c7d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d868dc-13b6a04a36f6f11a","8f44c0a26d8444d-13bfff9655c3f2ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6753563,32.8389047],[-83.67506850000001,32.838893]]},"id":"8a44c0a26d87fff-13b7dff04d7befeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753316,32.8383622]},"id":"8f44c0a26da2591-13feffa5c5d9da64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6752208,32.8382668]},"id":"8f44c0a26db5290-13bedfeb03846671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da2591-13feffa5c5d9da64","8f44c0a26db5290-13bedfeb03846671"]},"geometry":{"type":"LineString","coordinates":[[-83.6753316,32.8383622],[-83.6752208,32.8382668]]},"id":"8a44c0a26db7fff-13de9fc8610d5d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6757616,32.8385029]},"id":"8f44c0a26da2ac0-13d6de990d0ba5ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675471,32.838241000000004]},"id":"8f44c0a26da2d88-139ebf4eaa1ac8b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da2ac0-13d6de990d0ba5ce","8f44c0a26da2d88-139ebf4eaa1ac8b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6757616,32.8385029],[-83.675471,32.838241000000004]]},"id":"8b44c0a26da2fff-13fe9ef3d59cf784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67562380000001,32.838619900000005]},"id":"8f44c0a26da2289-139ffeef24dc77b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da2591-13feffa5c5d9da64","8f44c0a26da2289-139ffeef24dc77b8"]},"geometry":{"type":"LineString","coordinates":[[-83.67562380000001,32.838619900000005],[-83.6753316,32.8383622]]},"id":"8b44c0a26da2fff-13beff4a736e08ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6754665,32.838755400000004]},"id":"8f44c0a26d84c69-13debf517eca03fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6751694,32.838503100000004]},"id":"8f44c0a26db1173-13d6f00b24abbed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26db1173-13d6f00b24abbed8","8f44c0a26d84c69-13debf517eca03fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6754665,32.838755400000004],[-83.6751694,32.838503100000004]]},"id":"8944c0a26dbffff-139fdfae5f90c81b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6758461,32.8378719]},"id":"8f44c0a26da6876-17b7fe6434adb0f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67605060000001,32.8378467]},"id":"8f44c0a26da4555-17b6bde46711718a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da6876-17b7fe6434adb0f7","8f44c0a26da4555-17b6bde46711718a"]},"geometry":{"type":"LineString","coordinates":[[-83.6758461,32.8378719],[-83.67605060000001,32.8378467]]},"id":"8a44c0a26da7fff-17be9e245bf0ee3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67614800000001,32.8378369]},"id":"8f44c0a26da4185-17b69da782b50663"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da4185-17b69da782b50663","8f44c0a26da4555-17b6bde46711718a"]},"geometry":{"type":"LineString","coordinates":[[-83.67614800000001,32.8378369],[-83.67605060000001,32.8378467]]},"id":"8b44c0a26da4fff-17b7bdc5faaf732c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6765773,32.8385156]},"id":"8f44c0a26da1874-13dedc9b30bc2639"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6767583,32.8380547]},"id":"8f44c0a26da596d-13bebc2a1b709740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da1874-13dedc9b30bc2639","8f44c0a26da596d-13bebc2a1b709740"]},"geometry":{"type":"LineString","coordinates":[[-83.6765773,32.8385156],[-83.6767583,32.8380547]]},"id":"8944c0a26dbffff-13bedc62aaab4eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6767138,32.8391146]},"id":"8f44c0a26dac628-13bebc45e3cf09a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6773436,32.8392854]},"id":"8f44c0a26dada26-13bffabc42f34d39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26dada26-13bffabc42f34d39","8f44c0a26dac628-13bebc45e3cf09a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6767138,32.8391146],[-83.6773436,32.8392854]]},"id":"8844c0a26dfffff-13f69b811db4dd0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6767995,32.8389514]},"id":"8f44c0a26dac020-13debc1051011d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6774089,32.8391317]},"id":"8f44c0a26d1e5aa-13dfda937a3dd495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d1e5aa-13dfda937a3dd495","8f44c0a26dac020-13debc1051011d24"]},"geometry":{"type":"LineString","coordinates":[[-83.6767995,32.8389514],[-83.6774089,32.8391317]]},"id":"8844c0a26dfffff-13979b51ee0076cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6772772,32.839442500000004]},"id":"8f44c0a26dad353-139f9ae5c50dae60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26dad353-139f9ae5c50dae60","8f44c0a26dada26-13bffabc42f34d39"]},"geometry":{"type":"LineString","coordinates":[[-83.6772772,32.839442500000004],[-83.6773436,32.8392854]]},"id":"8b44c0a26dadfff-13de9ad10382bdcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67482170000001,32.8391898]},"id":"8f44c0a26d82d0c-13ffa0e475c56737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67439010000001,32.8389864]},"id":"8f44c0a26d95cde-13fea1f23aef77d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d95cde-13fea1f23aef77d6","8f44c0a26d82d0c-13ffa0e475c56737"]},"geometry":{"type":"LineString","coordinates":[[-83.67482170000001,32.8391898],[-83.6748239,32.8390651],[-83.674464,32.839042400000004],[-83.67439010000001,32.8389864]]},"id":"8944c0a26dbffff-139eb15139d26872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7286978,32.919414100000004]},"id":"8f44c0a2801d2d3-17dfdd5be5ef4f87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72878180000001,32.9195616]},"id":"8f44c0a2800a4d2-17b61d276ef5011f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801d2d3-17dfdd5be5ef4f87","8f44c0a2800a4d2-17b61d276ef5011f"]},"geometry":{"type":"LineString","coordinates":[[-83.7286978,32.919414100000004],[-83.72878180000001,32.9195616]]},"id":"8a44c0a2801ffff-17f7fd41a29df97f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72885120000001,32.9194066]},"id":"8f44c0a2800ac9b-17d73cfc03ec462c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2800ac9b-17d73cfc03ec462c","8f44c0a2800a4d2-17b61d276ef5011f"]},"geometry":{"type":"LineString","coordinates":[[-83.72878180000001,32.9195616],[-83.7288079,32.9194892],[-83.72885120000001,32.9194066]]},"id":"8b44c0a2800afff-17f6dd135b24439d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7288439,32.919179]},"id":"8f44c0a2801da35-17b6fd00991928a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7288175,32.9190087]},"id":"8f44c0a2801d970-17de7d111d8ebb5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801d970-17de7d111d8ebb5d","8f44c0a2801da35-17b6fd00991928a4"]},"geometry":{"type":"LineString","coordinates":[[-83.7288439,32.919179],[-83.7288154,32.919082800000005],[-83.7288175,32.9190087]]},"id":"8b44c0a2801dfff-17963d0d0e0fc709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7286916,32.919180100000005]},"id":"8f44c0a2801d02c-17b79d5fce3828a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801d970-17de7d111d8ebb5d","8f44c0a2801d02c-17b79d5fce3828a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7288175,32.9190087],[-83.72875020000001,32.9191145],[-83.7286916,32.919180100000005]]},"id":"8b44c0a2801dfff-17979d365af438ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7290115,32.918169500000005]},"id":"8f44c0a28000822-13bffc97dbdd83cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801d970-17de7d111d8ebb5d","8f44c0a28000822-13bffc97dbdd83cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7288175,32.9190087],[-83.7290213,32.9185377],[-83.7290444,32.9184495],[-83.7290486,32.9183577],[-83.7290339,32.9182237],[-83.7290115,32.918169500000005]]},"id":"8944c0a2803ffff-17de1cb22c1512b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7289085,32.918065]},"id":"8f44c0a280046e6-13febcd830117637"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280046e6-13febcd830117637","8f44c0a28000822-13bffc97dbdd83cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7289085,32.918065],[-83.7290115,32.918169500000005]]},"id":"8a44c0a28007fff-139f5cb8081bfcb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729048,32.9180155]},"id":"8f44c0a28004398-13dfbc81053fd5cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28000822-13bffc97dbdd83cd","8f44c0a28004398-13dfbc81053fd5cb"]},"geometry":{"type":"LineString","coordinates":[[-83.729048,32.9180155],[-83.72902090000001,32.918089],[-83.7290115,32.918169500000005]]},"id":"8a44c0a28007fff-139f3c8f4972ac3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269481,32.922038400000005]},"id":"8f44c0a280de0f1-17b621a172cae08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72729220000001,32.9216745]},"id":"8f44c0a280dcd94-17deb0ca6c30f44c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280dcd94-17deb0ca6c30f44c","8f44c0a280de0f1-17b621a172cae08b"]},"geometry":{"type":"LineString","coordinates":[[-83.7269481,32.922038400000005],[-83.72723210000001,32.9218065],[-83.72729220000001,32.9216745]]},"id":"8a44c0a280dffff-17df712a34292e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72685630000001,32.9219549]},"id":"8f44c0a280de544-17fff1dad5cc4dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280dcd94-17deb0ca6c30f44c","8f44c0a280de544-17fff1dad5cc4dd3"]},"geometry":{"type":"LineString","coordinates":[[-83.72729220000001,32.9216745],[-83.72716700000001,32.9217333],[-83.72685630000001,32.9219549]]},"id":"8a44c0a280dffff-17b761558c316889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72739890000001,32.9215965]},"id":"8f44c0a280c26b1-179ff087b993288a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280dcd94-17deb0ca6c30f44c","8f44c0a280c26b1-179ff087b993288a"]},"geometry":{"type":"LineString","coordinates":[[-83.72729220000001,32.9216745],[-83.72739890000001,32.9215965]]},"id":"8944c0a280fffff-17b630a9006901f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7279956,32.921219]},"id":"8f44c0a280c0c72-13b7ff12c0801cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7283822,32.9210434]},"id":"8f44c0a280c5d91-13d63e21204b46eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a280c5d91-13d63e21204b46eb","8f44c0a280c0c72-13b7ff12c0801cff"]},"geometry":{"type":"LineString","coordinates":[[-83.7279956,32.921219],[-83.728091,32.9212739],[-83.72816250000001,32.9212878],[-83.728223,32.9212797],[-83.7282821,32.9212416],[-83.72834540000001,32.9211735],[-83.72837290000001,32.9211204],[-83.7283822,32.9210434]]},"id":"8a44c0a280c7fff-13b61e825339f3ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72767370000001,32.9213593]},"id":"8f44c0a280c28e0-139f9fdbf77e20a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7275283,32.9212416]},"id":"8f44c0a280c2d2a-13d62036d78224b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c2d2a-13d62036d78224b1","8f44c0a280c28e0-139f9fdbf77e20a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72767370000001,32.9213593],[-83.7276679,32.9213097],[-83.7276446,32.921277700000005],[-83.7275932,32.921249800000005],[-83.7275283,32.9212416]]},"id":"8b44c0a280c2fff-13de3ffd72e129ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6501015,32.8418566]},"id":"8f44c0a34ae326d-13f6fd3e9ee623a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64974190000001,32.8418848]},"id":"8f44c0a34ac5d1d-1396de1f556d7cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac5d1d-1396de1f556d7cfd","8f44c0a34ae326d-13f6fd3e9ee623a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6501015,32.8418566],[-83.649882,32.841725700000005],[-83.64974190000001,32.8418848]]},"id":"8944c0a34afffff-13dffdb62cf1d548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5944633,32.8607068]},"id":"8f44c0b8990c405-17f7e5147c0fa046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5941229,32.8600304]},"id":"8f44c0b89900b00-17df65e9367d10a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990c405-17f7e5147c0fa046","8f44c0b89900b00-17df65e9367d10a5"]},"geometry":{"type":"LineString","coordinates":[[-83.5944633,32.8607068],[-83.5941229,32.8600304]]},"id":"8944c0b8993ffff-17b7657ed33dd6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5942947,32.8599702]},"id":"8f44c0b89905096-17bf657dd9edd566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59462640000001,32.8606536]},"id":"8f44c0b8990c114-17d7e4ae8ce5d9ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89905096-17bf657dd9edd566","8f44c0b8990c114-17d7e4ae8ce5d9ae"]},"geometry":{"type":"LineString","coordinates":[[-83.5942947,32.8599702],[-83.59462640000001,32.8606536]]},"id":"8944c0b8993ffff-17fff51630bc0efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59479040000001,32.8606001]},"id":"8f44c0b8990c95b-17b77448026af33b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5944537,32.8599144]},"id":"8f44c0b89905129-1797e51a7a4c4d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990c95b-17b77448026af33b","8f44c0b89905129-1797e51a7a4c4d3b"]},"geometry":{"type":"LineString","coordinates":[[-83.59479040000001,32.8606001],[-83.5944537,32.8599144]]},"id":"8944c0b8993ffff-17dff4b145e6d4f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59480090000001,32.8597926]},"id":"8f44c0b8992eccd-17bf64417bf96698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5951539,32.8604816]},"id":"8f44c0b8992b8a2-17ff6364d207b999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992b8a2-17ff6364d207b999","8f44c0b8992eccd-17bf64417bf96698"]},"geometry":{"type":"LineString","coordinates":[[-83.59480090000001,32.8597926],[-83.5951539,32.8604816]]},"id":"8a44c0b8992ffff-1797f3d324687a76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59531940000001,32.8604276]},"id":"8f44c0b899282c8-17d762fd64b5d4fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5949775,32.8597307]},"id":"8f44c0b8992e803-1797f3d316b05eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992e803-1797f3d316b05eb5","8f44c0b899282c8-17d762fd64b5d4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.59531940000001,32.8604276],[-83.5949775,32.8597307]]},"id":"8a44c0b8992ffff-17ffe36830bb0428"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5956014,32.8606506]},"id":"8f44c0b899292b4-17d7e24d2e300b8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5954789,32.860375600000005]},"id":"8f44c0b89929cad-17b7e299bc55ab62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899292b4-17d7e24d2e300b8d","8f44c0b89929cad-17b7e299bc55ab62"]},"geometry":{"type":"LineString","coordinates":[[-83.5956014,32.8606506],[-83.5954789,32.860375600000005]]},"id":"8b44c0b89929fff-17fff273752ac5f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59382260000001,32.8609406]},"id":"8f44c0b8991db8b-1397e6a4e7097689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59355790000001,32.8603803]},"id":"8f44c0b89902251-17bff74a5eb4836c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991db8b-1397e6a4e7097689","8f44c0b89902251-17bff74a5eb4836c"]},"geometry":{"type":"LineString","coordinates":[[-83.59382260000001,32.8609406],[-83.59355790000001,32.8603803]]},"id":"8944c0b8993ffff-17dff6f79c5bcb75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5933358,32.8604568]},"id":"8f44c0b8991c8b6-17dfe7d52c5b7b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59359830000001,32.861026100000004]},"id":"8f44c0b8991d70e-13bf773112522811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991d70e-13bf773112522811","8f44c0b8991c8b6-17dfe7d52c5b7b54"]},"geometry":{"type":"LineString","coordinates":[[-83.5933358,32.8604568],[-83.59359830000001,32.861026100000004]]},"id":"8a44c0b8991ffff-179f77831cab3400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5931298,32.8605277]},"id":"8f44c0b8991c515-1797f855e41bd272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5933876,32.8611063]},"id":"8f44c0b89918ae1-13ff77b4c4fb92cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991c515-1797f855e41bd272","8f44c0b89918ae1-13ff77b4c4fb92cc"]},"geometry":{"type":"LineString","coordinates":[[-83.5931298,32.8605277],[-83.5933876,32.8611063]]},"id":"8a44c0b8991ffff-17bfe8055f08eacf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5931449,32.8611987]},"id":"8f44c0b8991875b-13bf784c7dfff8ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59289410000001,32.8606088]},"id":"8f44c0b8991e88d-17bfe8e9335e86db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991e88d-17bfe8e9335e86db","8f44c0b8991875b-13bf784c7dfff8ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5931449,32.8611987],[-83.59289410000001,32.8606088]]},"id":"8a44c0b8991ffff-17f7e89ad1087b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.592477,32.861517]},"id":"8f44c0b89834cdb-13f769ede1f981d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59216930000001,32.8609679]},"id":"8f44c0b899ad695-139ffaae38d28c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89834cdb-13f769ede1f981d3","8f44c0b899ad695-139ffaae38d28c34"]},"geometry":{"type":"LineString","coordinates":[[-83.592477,32.861517],[-83.59216930000001,32.8609679]]},"id":"8844c0b899fffff-13d7fa4e14f68585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5923705,32.8608411]},"id":"8f44c0b899ad008-17dffa307af1b151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59265740000001,32.8614297]},"id":"8f44c0b8983498b-13bff97d24529ca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8983498b-13bff97d24529ca4","8f44c0b899ad008-17dffa307af1b151"]},"geometry":{"type":"LineString","coordinates":[[-83.5923705,32.8608411],[-83.59265740000001,32.8614297]]},"id":"8844c0b899fffff-1397e9d6cc5661f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59285340000001,32.861330800000005]},"id":"8f44c0b8991a271-13ffe902aa674e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59257740000001,32.8607243]},"id":"8f44c0b8991e483-1797f9af28b48332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991a271-13ffe902aa674e19","8f44c0b8991e483-1797f9af28b48332"]},"geometry":{"type":"LineString","coordinates":[[-83.59285340000001,32.861330800000005],[-83.59257740000001,32.8607243]]},"id":"8a44c0b8991ffff-13bf6958e52289e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5921407,32.8614206]},"id":"8f44c0b899a960a-13b7eac01ce45094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5917519,32.8615987]},"id":"8f44c0b8998d903-13b77bb31dca026c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899a960a-13b7eac01ce45094","8f44c0b8998d903-13b77bb31dca026c"]},"geometry":{"type":"LineString","coordinates":[[-83.5921407,32.8614206],[-83.5918626,32.8615821],[-83.5917519,32.8615987]]},"id":"8944c0b899bffff-13f7fb365810dbce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59401700000001,32.860222300000004]},"id":"8f44c0b89900205-17d7f62b6991cd3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89900b00-17df65e9367d10a5","8f44c0b89900205-17d7f62b6991cd3b"]},"geometry":{"type":"LineString","coordinates":[[-83.5941229,32.8600304],[-83.5939484,32.860091600000004],[-83.59401700000001,32.860222300000004]]},"id":"8b44c0b89900fff-17ffe62e76460fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5942991,32.8607603]},"id":"8f44c0b8990e858-1797757b19b03f49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990e858-1797757b19b03f49","8f44c0b89900205-17d7f62b6991cd3b"]},"geometry":{"type":"LineString","coordinates":[[-83.59401700000001,32.860222300000004],[-83.5942991,32.8607603]]},"id":"8944c0b8993ffff-17ff75d344f94e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6855824,32.852573400000004]},"id":"8f44c0a2604d758-139ee69f030287fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858814,32.8522464]},"id":"8f44c0a263365a3-13de85e42a306ea5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a263365a3-13de85e42a306ea5","8f44c0a2604d758-139ee69f030287fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6855824,32.852573400000004],[-83.685703,32.8525432],[-83.68580320000001,32.8524704],[-83.68587000000001,32.852362],[-83.6858814,32.8522464]]},"id":"8944c0a2607ffff-13ded6262cd2b8ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684695,32.852803]},"id":"8f44c0a2604a2a3-17bfe8c9a5ce6072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684719,32.8524231]},"id":"8f44c0a2604e65b-13bef8baa01017ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2604a2a3-17bfe8c9a5ce6072","8f44c0a2604e65b-13bef8baa01017ba"]},"geometry":{"type":"LineString","coordinates":[[-83.684695,32.852803],[-83.684719,32.8524231]]},"id":"8b44c0a2604afff-13b7b8c22a408d6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68463460000001,32.8523231]},"id":"8f44c0a2604e78a-13fff8ef657292e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2604e78a-13fff8ef657292e0","8f44c0a2604e65b-13bef8baa01017ba"]},"geometry":{"type":"LineString","coordinates":[[-83.684719,32.8524231],[-83.68477700000001,32.8523566],[-83.6848427,32.852257200000004],[-83.68485890000001,32.8517391],[-83.6848142,32.8516836],[-83.68470160000001,32.8516585],[-83.684639,32.8516843],[-83.6846143,32.8517701],[-83.6846168,32.8522319],[-83.68463460000001,32.8523231]]},"id":"8944c0a2607ffff-13b698b068db53fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2604e78a-13fff8ef657292e0","8f44c0a2604e65b-13bef8baa01017ba"]},"geometry":{"type":"LineString","coordinates":[[-83.68463460000001,32.8523231],[-83.684719,32.8524231]]},"id":"8c44c0a2604e7ff-139fb8d50b741e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650699,32.881341500000005]},"id":"8f44c0b539202e2-13d7f48f5645411e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76507310000001,32.881035600000004]},"id":"8f44c0b539208f4-1397c48d55f8b954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539202e2-13d7f48f5645411e","8f44c0b539208f4-1397c48d55f8b954"]},"geometry":{"type":"LineString","coordinates":[[-83.7650699,32.881341500000005],[-83.76507310000001,32.881035600000004]]},"id":"8b44c0b53920fff-13f7e48e58e8a2b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649083,32.881338]},"id":"8f44c0b53920653-13d5c4f45fd544ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649095,32.8810329]},"id":"8f44c0b53920ce0-1395d4f39a77e028"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53920653-13d5c4f45fd544ca","8f44c0b53920ce0-1395d4f39a77e028"]},"geometry":{"type":"LineString","coordinates":[[-83.7649083,32.881338],[-83.7649095,32.8810329]]},"id":"8b44c0b53920fff-13f5f4f3f6c2374b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6634282,32.816935]},"id":"8f44c0b1878cda5-179efcb564d8c2d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66311730000001,32.816931700000005]},"id":"8f44c0b18781709-1796fd77b414ed7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18781709-1796fd77b414ed7b","8f44c0b1878cda5-179efcb564d8c2d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6634282,32.816935],[-83.66341340000001,32.8168936],[-83.6633815,32.8168638],[-83.6632737,32.8168542],[-83.6632077,32.816857500000005],[-83.66311730000001,32.816931700000005]]},"id":"8944c0b187bffff-17f6fd11df5b312a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636577,32.8169484]},"id":"8f44c0b1878c906-17b6fc25ff2f1627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6635291,32.8169361]},"id":"8f44c0b187aa6dc-179fbc7654f97978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878c906-17b6fc25ff2f1627","8f44c0b187aa6dc-179fbc7654f97978"]},"geometry":{"type":"LineString","coordinates":[[-83.6636577,32.8169484],[-83.6635291,32.8169361]]},"id":"8a44c0b187affff-179efc4e20e73d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632386,32.8172358]},"id":"8f44c0b1878ebad-17d6fd2be9cb1ad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631996,32.817053300000005]},"id":"8f44c0b1878e923-17f6fd4448411f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878e923-17f6fd4448411f1f","8f44c0b1878ebad-17d6fd2be9cb1ad8"]},"geometry":{"type":"LineString","coordinates":[[-83.6632386,32.8172358],[-83.66328560000001,32.817204700000005],[-83.6634307,32.8172091],[-83.6634937,32.817202300000005],[-83.66352040000001,32.8171766],[-83.6635212,32.817149900000004],[-83.6635122,32.8171174],[-83.6634964,32.8170993],[-83.663454,32.817085],[-83.66323290000001,32.8170775],[-83.6631996,32.817053300000005]]},"id":"8a44c0b1878ffff-179ebcd2bdf5cf1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6638147,32.802350600000004]},"id":"8f44c0b18d815b4-13ffbbc3d282d5bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66400080000001,32.8023699]},"id":"8f44c0b18d811b0-139fbb4f8e9833d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d815b4-13ffbbc3d282d5bd","8f44c0b18d811b0-139fbb4f8e9833d5"]},"geometry":{"type":"LineString","coordinates":[[-83.6638147,32.802350600000004],[-83.66390290000001,32.802371900000004],[-83.66400080000001,32.8023699]]},"id":"8b44c0b18d81fff-1396fb8a10a6d996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639684,32.8019929]},"id":"8f44c0b18d85410-139fbb63ceffa905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640016,32.8024736]},"id":"8f44c0b18d8108e-13debb4f00400a14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d8108e-13debb4f00400a14","8f44c0b18d85410-139fbb63ceffa905"]},"geometry":{"type":"LineString","coordinates":[[-83.6639684,32.8019929],[-83.6642959,32.801994],[-83.66436560000001,32.8020331],[-83.6643633,32.8024852],[-83.6640986,32.8024921],[-83.6640016,32.8024736]]},"id":"8944c0b18dbffff-13b7fab66fc13784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6635466,32.802276500000005]},"id":"8f44c0b18d8068c-13defc6b6df36934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d8068c-13defc6b6df36934","8f44c0b18d815b4-13ffbbc3d282d5bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6635466,32.802276500000005],[-83.6638147,32.802350600000004]]},"id":"8a44c0b18d87fff-13f6bc17adcaa24b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d815b4-13ffbbc3d282d5bd","8f44c0b18d85410-139fbb63ceffa905"]},"geometry":{"type":"LineString","coordinates":[[-83.6639684,32.8019929],[-83.6638147,32.802350600000004]]},"id":"8a44c0b18d87fff-139ffb93dcc69105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68658330000001,32.9037892]},"id":"8f44c0a05c4b0e8-13b6c42d7ba78c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4b0e8-13b6c42d7ba78c28","8f44c0a05c4b4c0-139e94b22f2174d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68637100000001,32.9037729],[-83.68646740000001,32.9037878],[-83.68658330000001,32.9037892]]},"id":"8b44c0a05c4bfff-13b7847008e8355a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68775620000001,32.857175000000005]},"id":"8f44c0a26229551-17d6e150657a25b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6872797,32.8571696]},"id":"8f44c0a2622bcaa-17d7827a37891974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2622bcaa-17d7827a37891974","8f44c0a26229551-17d6e150657a25b8"]},"geometry":{"type":"LineString","coordinates":[[-83.68775620000001,32.857175000000005],[-83.6872797,32.8571696]]},"id":"8a44c0a2622ffff-17d6b1e55b99e1d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741068,32.8353109]},"id":"8f44c0b094d6b2e-13f5ff2884b81006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7410909,32.8350351]},"id":"8f44c0b09489376-13ddff1a35ecdfbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09489376-13ddff1a35ecdfbb","8f44c0b094d6b2e-13f5ff2884b81006"]},"geometry":{"type":"LineString","coordinates":[[-83.741068,32.8353109],[-83.7410909,32.8350351]]},"id":"8944c0b094fffff-139fff216c3a37f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7410249,32.836489300000004]},"id":"8f44c0b0bb2d8d8-17d5ff437d850b96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74079520000001,32.8364861]},"id":"8f44c0b0bb2d50c-17d7ffd30cf414da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bb2d8d8-17d5ff437d850b96","8f44c0b0bb2d50c-17d7ffd30cf414da"]},"geometry":{"type":"LineString","coordinates":[[-83.7410249,32.836489300000004],[-83.74079520000001,32.8364861]]},"id":"8b44c0b0bb2dfff-17d5ff8b407550e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741578,32.836518600000005]},"id":"8f44c0b094dead0-17fdfde9c37037dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094dead0-17fdfde9c37037dd","8f44c0b0bb2d8d8-17d5ff437d850b96"]},"geometry":{"type":"LineString","coordinates":[[-83.7410249,32.836489300000004],[-83.7411206,32.8365166],[-83.741578,32.836518600000005]]},"id":"8944c0b094fffff-17f5fe97913c48ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7419393,32.8355959]},"id":"8f44c0b094d5b4e-13b7fd07fb026524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7410662,32.8355692]},"id":"8f44c0b094d0c8d-1397ff29a802ddce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d5b4e-13b7fd07fb026524","8f44c0b094d0c8d-1397ff29a802ddce"]},"geometry":{"type":"LineString","coordinates":[[-83.7419393,32.8355959],[-83.7410662,32.8355692]]},"id":"8944c0b094fffff-139ffe18d8cac92b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63799010000001,32.8300301]},"id":"8f44c0a34c21850-1796fad0318ab529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63798990000001,32.8298215]},"id":"8f44c0a34c2539a-179efad05b7692c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34c21850-1796fad0318ab529","8f44c0a34c2539a-179efad05b7692c3"]},"geometry":{"type":"LineString","coordinates":[[-83.63799010000001,32.8300301],[-83.63795040000001,32.8299901],[-83.6379424,32.8299405],[-83.6379531,32.8298864],[-83.63798990000001,32.8298215]]},"id":"8a44c0a34c27fff-17d7fae2d12d2630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6369938,32.8297845]},"id":"8f44c0a34c22c44-13f7fd3ee385f01f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34c06ba5-17f7fe3d2e4e5b1d","8f44c0a34c22c44-13f7fd3ee385f01f"]},"geometry":{"type":"LineString","coordinates":[[-83.6369938,32.8297845],[-83.6369312,32.829895400000005],[-83.6366174,32.8302831],[-83.636587,32.83039]]},"id":"8944c0a34c3ffff-17b6fdc3f9e164c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384486,32.830141000000005]},"id":"8f44c0a34d52224-17d6f9b1a7303e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638158,32.829773]},"id":"8f44c0a34c25ac0-13f6fa67414bf515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c25ac0-13f6fa67414bf515","8f44c0a34d52224-17d6f9b1a7303e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6384486,32.830141000000005],[-83.63846000000001,32.8299901],[-83.6382481,32.8299157],[-83.638158,32.829773]]},"id":"8844c0a34dfffff-17dff9f897999a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68759630000001,32.85549]},"id":"8f44c0a2630b2d8-13bfc1b45fe748e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877796,32.8554905]},"id":"8f44c0a26356cd1-13bf9141ca16cb6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630b2d8-13bfc1b45fe748e6","8f44c0a26356cd1-13bf9141ca16cb6b"]},"geometry":{"type":"LineString","coordinates":[[-83.68759630000001,32.85549],[-83.6877796,32.8554905]]},"id":"8844c0a263fffff-13bff17b1a16cbb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68759630000001,32.8554545]},"id":"8f44c0a2630b2f1-13b791b451171450"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6872838,32.8554544]},"id":"8f44c0a26225da6-13b78277a7cafa77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630b2f1-13b791b451171450","8f44c0a26225da6-13b78277a7cafa77"]},"geometry":{"type":"LineString","coordinates":[[-83.68759630000001,32.8554545],[-83.68754890000001,32.855387300000004],[-83.6873539,32.855387900000004],[-83.6872838,32.8554544]]},"id":"8844c0a263fffff-1397c213add96e7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875972,32.8557136]},"id":"8f44c0a26225a1c-13d781b3cd616e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68777610000001,32.855711400000004]},"id":"8f44c0a26356615-13d7a143ff798e2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225a1c-13d781b3cd616e84","8f44c0a26356615-13d7a143ff798e2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6875972,32.8557136],[-83.68777610000001,32.855711400000004]]},"id":"8844c0a263fffff-13d6d17be14de5e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7227618,32.8286297]},"id":"8f44c0b0bd85c02-13b7bbd9eb9a6d04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7219886,32.8281711]},"id":"8f44c0b0bdb1451-1396fdbd2c173105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85c02-13b7bbd9eb9a6d04","8f44c0b0bdb1451-1396fdbd2c173105"]},"geometry":{"type":"LineString","coordinates":[[-83.7227618,32.8286297],[-83.7219886,32.8281711]]},"id":"8944c0b0bdbffff-13966ccb840b36e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7229391,32.8288217]},"id":"8f44c0b0bd85a92-139fbb6b11afae4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72323820000001,32.8284376]},"id":"8f44c0b0bda3a4d-13bfaab02243e512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bda3a4d-13bfaab02243e512","8f44c0b0bd85a92-139fbb6b11afae4e"]},"geometry":{"type":"LineString","coordinates":[[-83.7229391,32.8288217],[-83.72323820000001,32.8284376]]},"id":"8944c0b0bdbffff-13b7ab0d90101e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72280210000001,32.8287418]},"id":"8f44c0b0bd85182-13ffabc0b41ef472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7234584,32.827989]},"id":"8f44c0b0bda56f5-17972a2682072a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bda56f5-17972a2682072a55","8f44c0b0bd85182-13ffabc0b41ef472"]},"geometry":{"type":"LineString","coordinates":[[-83.72280210000001,32.8287418],[-83.7234584,32.827989]]},"id":"8944c0b0bdbffff-13966af3a36f10fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648076,32.859554]},"id":"8f44c0a30b450c5-17b7e2308cace741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6482814,32.859795500000004]},"id":"8f44c0a30b6a42c-17bef1b02a2fc2cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b6a42c-17bef1b02a2fc2cb","8f44c0a30b450c5-17b7e2308cace741"]},"geometry":{"type":"LineString","coordinates":[[-83.648076,32.859554],[-83.6476808,32.859787000000004],[-83.6476696,32.8598268],[-83.6476859,32.859863000000004],[-83.64781690000001,32.860010700000004],[-83.6478596,32.860025400000005],[-83.64790520000001,32.86002],[-83.6482814,32.859795500000004]]},"id":"8944c0a30b7ffff-17d7e292d5dafe0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6484192,32.8593789]},"id":"8f44c0a30b6e55a-17b7f15a024410f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64846580000001,32.858846]},"id":"8f44c0a30b6024e-13fee13ceff43adf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b6024e-13fee13ceff43adf","8f44c0a30b6e55a-17b7f15a024410f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6484192,32.8593789],[-83.648052,32.8589111],[-83.6480434,32.8588765],[-83.64805150000001,32.8588453],[-83.64827980000001,32.858719],[-83.648324,32.8587251],[-83.6483566,32.8587428],[-83.64846580000001,32.858846]]},"id":"8944c0a30b7ffff-13bff1cb98278ce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65611120000001,32.7488709]},"id":"8f44c0b1553199c-17fede928532fcec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558471,32.7489635]},"id":"8f44c0b155315a0-17b6ff3797b0a7b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b155315a0-17b6ff3797b0a7b1","8f44c0b1553199c-17fede928532fcec"]},"geometry":{"type":"LineString","coordinates":[[-83.65611120000001,32.7488709],[-83.6560927,32.748907100000004],[-83.6560553,32.7489499],[-83.6560146,32.7489737],[-83.6559383,32.7489827],[-83.6558471,32.7489635]]},"id":"8b44c0b15531fff-17b6dedbaf5bd6d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553054,32.749307300000005]},"id":"8f44c0b15514a0b-17ffd08a2db85662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552123,32.7491104]},"id":"8f44c0b15514804-1796d0c450dbfda4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15514a0b-17ffd08a2db85662","8f44c0b15514804-1796d0c450dbfda4"]},"geometry":{"type":"LineString","coordinates":[[-83.6553054,32.749307300000005],[-83.6552709,32.7492777],[-83.6552269,32.749216000000004],[-83.6552071,32.7491689],[-83.6552123,32.7491104]]},"id":"8b44c0b15514fff-17d6f0b346df94fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6548305,32.749544400000005]},"id":"8f44c0b15510c86-1397d1b2fed68b78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6543583,32.749691]},"id":"8f44c0b15512524-13fef2da11a9f75e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15510c86-1397d1b2fed68b78","8f44c0b15512524-13fef2da11a9f75e"]},"geometry":{"type":"LineString","coordinates":[[-83.6548305,32.749544400000005],[-83.65476290000001,32.7495856],[-83.6543583,32.749691]]},"id":"8a44c0b15517fff-13d6f24426b3847c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6530099,32.8261094]},"id":"8f44c0b1a27038a-13fef624d56d6910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a27038a-13fef624d56d6910","8f44c0b1a27384e-139ff62320a421a7"]},"geometry":{"type":"LineString","coordinates":[[-83.65301260000001,32.8263355],[-83.6532466,32.8263379],[-83.6532509,32.826112800000004],[-83.6530099,32.8261094]]},"id":"8a44c0b1a277fff-13d7d5c1ed5faaf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7030513,32.8981524]},"id":"8f44c0a2e5043b4-13f75bf8fc8e26d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70318320000001,32.8985426]},"id":"8f44c0a2e505696-13d77ba68f51e5bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e505696-13d77ba68f51e5bf","8f44c0a2e5043b4-13f75bf8fc8e26d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7030513,32.8981524],[-83.70318320000001,32.8985426]]},"id":"8a44c0a2e507fff-13df7bcfcd93c9d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7029612,32.8986011]},"id":"8f44c0a2e5003a1-13fffc314c2263e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e505696-13d77ba68f51e5bf","8f44c0a2e5003a1-13fffc314c2263e4"]},"geometry":{"type":"LineString","coordinates":[[-83.7029612,32.8986011],[-83.7030311,32.898557600000004],[-83.70314490000001,32.8985421],[-83.70318320000001,32.8985426]]},"id":"8a44c0a2e507fff-13df5bee58c66b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7028119,32.8982011]},"id":"8f44c0a2e506b48-13fffc8e9a8349aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e506b48-13fffc8e9a8349aa","8f44c0a2e5043b4-13f75bf8fc8e26d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7030513,32.8981524],[-83.7028119,32.8982011]]},"id":"8b44c0a2e504fff-13f6dc43c5b5c7f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70332950000001,32.898542400000004]},"id":"8f44c0a2e50575a-13d75b4b1056f975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e505696-13d77ba68f51e5bf","8f44c0a2e50575a-13d75b4b1056f975"]},"geometry":{"type":"LineString","coordinates":[[-83.70332950000001,32.898542400000004],[-83.70318320000001,32.8985426]]},"id":"8b44c0a2e505fff-13d75b78d7d063ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7035445,32.898569800000004]},"id":"8f44c0a2e505264-13f67ac4b1a7c168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e505264-13f67ac4b1a7c168","8f44c0a2e50575a-13d75b4b1056f975"]},"geometry":{"type":"LineString","coordinates":[[-83.70332950000001,32.898542400000004],[-83.7035445,32.898569800000004]]},"id":"8b44c0a2e505fff-13dfdb07e70b47c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6874446,32.8754317]},"id":"8f44c0a23da296c-13fed21323f47879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876687,32.875149]},"id":"8f44c0a23da4790-13bea18716766e34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23da4790-13bea18716766e34","8f44c0a23da296c-13fed21323f47879"]},"geometry":{"type":"LineString","coordinates":[[-83.6874446,32.8754317],[-83.6873644,32.875424200000005],[-83.6872683,32.8754079],[-83.6871606,32.8753784],[-83.68707880000001,32.875314200000005],[-83.6870124,32.8751818],[-83.6869767,32.875089800000005],[-83.6869851,32.8750227],[-83.687004,32.8749844],[-83.687043,32.8749634],[-83.6871424,32.8749556],[-83.6872297,32.8749616],[-83.6873523,32.874975],[-83.68746820000001,32.875043500000004],[-83.6876687,32.875149]]},"id":"8944c0a23dbffff-13bef2937c953a42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6218937,32.836609100000004]},"id":"8f44c0a36815a5c-17b7b21c72dadd1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62198430000001,32.8366567]},"id":"8f44c0a36802d2b-17bf71e3da7e4608"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36802d2b-17bf71e3da7e4608","8f44c0a36815a5c-17b7b21c72dadd1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6218937,32.836609100000004],[-83.62198430000001,32.8366567]]},"id":"8a44c0a36807fff-17bfb2002f614f43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6218193,32.8366002]},"id":"8f44c0a36815ad4-179f224af8a541cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815ad4-179f224af8a541cd","8f44c0a36815a5c-17b7b21c72dadd1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6218937,32.836609100000004],[-83.6218193,32.8366002]]},"id":"8c44c0a36815bff-179ff233ba141a6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887196,32.8703366]},"id":"8f44c0a22b40104-17fe7ef64c16faa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68902130000001,32.8693642]},"id":"8f44c0a22b629a8-179efe39bc448789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a22b629a8-179efe39bc448789","8f44c0a22b40104-17fe7ef64c16faa9"]},"geometry":{"type":"LineString","coordinates":[[-83.6887196,32.8703366],[-83.6888538,32.870196400000005],[-83.6889371,32.8700932],[-83.6890389,32.8699542],[-83.6890889,32.869770100000004],[-83.689069,32.8696174],[-83.6890546,32.8694779],[-83.68902130000001,32.8693642]]},"id":"8944c0a22b7ffff-17de7e524779207a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446974,32.8585964]},"id":"8f44c0a30b19189-13deea7025d0cfa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6445808,32.8587094]},"id":"8f44c0a30b19781-1397eab90884b804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b19781-1397eab90884b804","8f44c0a30b19189-13deea7025d0cfa2"]},"geometry":{"type":"LineString","coordinates":[[-83.6446974,32.8585964],[-83.6445808,32.8587094]]},"id":"8b44c0a30b19fff-13f6fa949d135698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443345,32.858506500000004]},"id":"8f44c0a30b1b916-1396fb52fb2fca72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6439187,32.8581499]},"id":"8f44c0a30b1e6ec-13b7fc56d418cc49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1e6ec-13b7fc56d418cc49","8f44c0a30b1b916-1396fb52fb2fca72"]},"geometry":{"type":"LineString","coordinates":[[-83.6443345,32.858506500000004],[-83.6442056,32.8584576],[-83.6439187,32.8581499]]},"id":"8a44c0a30b1ffff-13b7ebdd157ba356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443096,32.858596]},"id":"8f44c0a30b1b8a8-13deeb628cfbde71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436781,32.8583317]},"id":"8f44c0a30b1a5a8-13bffced3fa47a9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1a5a8-13bffced3fa47a9d","8f44c0a30b1b8a8-13deeb628cfbde71"]},"geometry":{"type":"LineString","coordinates":[[-83.6443096,32.858596],[-83.6436781,32.8583317]]},"id":"8944c0a30b3ffff-13fffc27e0e65e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6460187,32.8581106]},"id":"8f44c0a30b0dd98-139fe7365ba25c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6466425,32.858879300000005]},"id":"8f44c0a30b73586-13fff5b07b6d0a14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0dd98-139fe7365ba25c5b","8f44c0a30b73586-13fff5b07b6d0a14"]},"geometry":{"type":"LineString","coordinates":[[-83.6460187,32.8581106],[-83.6466425,32.858879300000005]]},"id":"8844c0a30bfffff-139fe6736dfb74cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6458353,32.8582108]},"id":"8f44c0a30b0892b-13dfe7a8fad1c8ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461115,32.858551]},"id":"8f44c0a30b0998c-13b6e6fc5d49ff34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0998c-13b6e6fc5d49ff34","8f44c0a30b0892b-13dfe7a8fad1c8ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6458353,32.8582108],[-83.6461115,32.858551]]},"id":"8a44c0a30b0ffff-13def752a324752f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6451687,32.858642]},"id":"8f44c0a30b0a743-13ffe9499a3f92e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6455377,32.8590935]},"id":"8f44c0a30a25834-1397f862f4b2ea31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30a25834-1397f862f4b2ea31","8f44c0a30b0a743-13ffe9499a3f92e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6451687,32.858642],[-83.6455377,32.8590935]]},"id":"8844c0a30bfffff-13fee8d64598599c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645357,32.858520500000004]},"id":"8f44c0a30b0aa12-139ff8d3e51f7d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6459086,32.8592494]},"id":"8f44c0a30b56764-13f6e77b2ba36015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b56764-13f6e77b2ba36015","8f44c0a30b0aa12-139ff8d3e51f7d9b"]},"geometry":{"type":"LineString","coordinates":[[-83.645357,32.858520500000004],[-83.6459086,32.8592494]]},"id":"8844c0a30bfffff-1397e8278c16abbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6455064,32.8584241]},"id":"8f44c0a30b084e5-13f7f87681312bef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6463696,32.859443]},"id":"8f44c0a30b50164-17dfe65b0280f7fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b50164-17dfe65b0280f7fd","8f44c0a30b084e5-13f7f87681312bef"]},"geometry":{"type":"LineString","coordinates":[[-83.6455064,32.8584241],[-83.6463696,32.859443]]},"id":"8844c0a30bfffff-13b7e768cf0b4be4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6448946,32.8588234]},"id":"8f44c0a30b1926b-13dee9f4e894ec61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1926b-13dee9f4e894ec61","8f44c0a30a25834-1397f862f4b2ea31"]},"geometry":{"type":"LineString","coordinates":[[-83.6448946,32.8588234],[-83.6455377,32.8590935]]},"id":"8a44c0a30a27fff-13b7f92beca2c3be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70274500000001,32.8708128]},"id":"8f44c0a203a8259-13b65cb8693cc044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7028492,32.8706434]},"id":"8f44c0a203a8a40-17be7c7747ffcd7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203a8259-13b65cb8693cc044","8f44c0a203a8a40-17be7c7747ffcd7a"]},"geometry":{"type":"LineString","coordinates":[[-83.70274500000001,32.8708128],[-83.7028492,32.8706434]]},"id":"8a44c0a203affff-17ff5c97dac16c08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70302480000001,32.8705104]},"id":"8f44c0a203ad08a-17f75c09893fa45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7027022,32.8704721]},"id":"8f44c0a203a881b-17df5cd3277dc874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203ad08a-17f75c09893fa45b","8f44c0a203a881b-17df5cd3277dc874"]},"geometry":{"type":"LineString","coordinates":[[-83.70302480000001,32.8705104],[-83.70301330000001,32.870452900000004],[-83.7030472,32.870400100000005],[-83.70303720000001,32.8703628],[-83.7029064,32.8702984],[-83.702866,32.8703054],[-83.70274640000001,32.8704672],[-83.7027022,32.8704721]]},"id":"8a44c0a203affff-1797dc537c4dfe8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71529620000001,32.8257914]},"id":"8f44c0b0a06b20d-13b7be13e728e160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7149292,32.825928000000005]},"id":"8f44c0b0a04dc88-139f3ef945399bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a04dc88-139f3ef945399bbb","8f44c0b0a06b20d-13b7be13e728e160"]},"geometry":{"type":"LineString","coordinates":[[-83.71529620000001,32.8257914],[-83.7149292,32.825928000000005]]},"id":"8944c0b0a07ffff-13f67e869a000914"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152147,32.825628800000004]},"id":"8f44c0b0a06b02b-13d63e46dd3d2c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71454510000001,32.8258831]},"id":"8f44c0b0a04c681-13f6ffe951dc0857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06b02b-13d63e46dd3d2c3b","8f44c0b0a04c681-13f6ffe951dc0857"]},"geometry":{"type":"LineString","coordinates":[[-83.7152147,32.825628800000004],[-83.71454510000001,32.8258831]]},"id":"8944c0b0a07ffff-13b7bf1811b06e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151362,32.8254724]},"id":"8f44c0b0a06bc76-13f67e77e1b01682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71438140000001,32.825736]},"id":"8f44c0b0a04e840-1397404fa2833fe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06bc76-13f67e77e1b01682","8f44c0b0a04e840-1397404fa2833fe9"]},"geometry":{"type":"LineString","coordinates":[[-83.7151362,32.8254724],[-83.71438140000001,32.825736]]},"id":"8944c0b0a07ffff-13d6bf63c4097556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71505330000001,32.825307200000005]},"id":"8f44c0b0a06aa2d-139f3eabb1c2a914"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71429570000001,32.825575900000004]},"id":"8f44c0b0a041646-13b6f08538c9be92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a041646-13b6f08538c9be92","8f44c0b0a06aa2d-139f3eabb1c2a914"]},"geometry":{"type":"LineString","coordinates":[[-83.71505330000001,32.825307200000005],[-83.71429570000001,32.825575900000004]]},"id":"8944c0b0a07ffff-13df3f987c23b655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7149778,32.8251568]},"id":"8f44c0b0a06a95a-13bf3edae3621649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140669,32.8254662]},"id":"8f44c0b0a043b1c-13fe61143308a3df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a043b1c-13fe61143308a3df","8f44c0b0a06a95a-13bf3edae3621649"]},"geometry":{"type":"LineString","coordinates":[[-83.7149778,32.8251568],[-83.7140669,32.8254662]]},"id":"8944c0b0a07ffff-139fbff786bdbcb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7157596,32.8246692]},"id":"8f44c0b0aa93455-17fe7cf24b3fe0cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71489050000001,32.8249827]},"id":"8f44c0b0a06e753-13be3f1173b092d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa93455-17fe7cf24b3fe0cb","8f44c0b0a06e753-13be3f1173b092d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7157596,32.8246692],[-83.71489050000001,32.8249827]]},"id":"8844c0b0a1fffff-17de7e01e0667469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76594940000001,32.886074300000004]},"id":"8f44c0b53875825-17f5f269a387e365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7665607,32.886082200000004]},"id":"8f44c0b538644de-17fde0eb92a5eb76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538644de-17fde0eb92a5eb76","8f44c0b53875825-17f5f269a387e365"]},"geometry":{"type":"LineString","coordinates":[[-83.76594940000001,32.886074300000004],[-83.7665607,32.886082200000004]]},"id":"8944c0b5387ffff-17f7f1aa9ba42381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76656990000001,32.8854938]},"id":"8f44c0b5395992e-13fde0e5d3312c3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7659524,32.8854844]},"id":"8f44c0b53958630-13f7c267c83d6c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53958630-13f7c267c83d6c88","8f44c0b5395992e-13fde0e5d3312c3c"]},"geometry":{"type":"LineString","coordinates":[[-83.76656990000001,32.8854938],[-83.7659524,32.8854844]]},"id":"8a44c0b5395ffff-13f7f1a6d0c1fc6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672779,32.826085]},"id":"8f44c0b1b943029-13ffa5e1202791f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672774,32.825879]},"id":"8f44c0b1b943994-13fee5e4430b743e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b943029-13ffa5e1202791f8","8f44c0b1b943994-13fee5e4430b743e"]},"geometry":{"type":"LineString","coordinates":[[-83.672779,32.826085],[-83.672774,32.825879]]},"id":"8b44c0b1b943fff-13bee5e2b7137ada"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9444c5-13f6a5d544687c38","8f44c0b1b943994-13fee5e4430b743e"]},"geometry":{"type":"LineString","coordinates":[[-83.672774,32.825879],[-83.672786,32.825747],[-83.672798,32.825252]]},"id":"8a44c0b1b947fff-13beb5da9f48cefc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672801,32.824742]},"id":"8f44c0b1b97195d-17b7e5d368606818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9444c5-13f6a5d544687c38","8f44c0b1b97195d-17b7e5d368606818"]},"geometry":{"type":"LineString","coordinates":[[-83.672798,32.825252],[-83.672801,32.824742]]},"id":"8944c0b1b97ffff-13d7a5d4518e89f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672808,32.824509]},"id":"8f44c0b1b97504e-1796a5cf08146b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b97504e-1796a5cf08146b9e","8f44c0b1b97195d-17b7e5d368606818"]},"geometry":{"type":"LineString","coordinates":[[-83.672801,32.824742],[-83.672808,32.824509]]},"id":"8a44c0b1b977fff-17def5d131169b7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672891,32.82383]},"id":"8f44c0b182db992-17ffe59b21bea815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b97504e-1796a5cf08146b9e","8f44c0b182db992-17ffe59b21bea815"]},"geometry":{"type":"LineString","coordinates":[[-83.672808,32.824509],[-83.672842,32.824157],[-83.672891,32.82383]]},"id":"8844c0b1b9fffff-17d7a5b7d1e6be77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67291300000001,32.823075]},"id":"8f44c0b182dc512-1397e58d69ff5d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182dc512-1397e58d69ff5d21","8f44c0b182db992-17ffe59b21bea815"]},"geometry":{"type":"LineString","coordinates":[[-83.672891,32.82383],[-83.672897,32.823422],[-83.67291300000001,32.823075]]},"id":"8a44c0b182dffff-1797e5961031eae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67293000000001,32.821747]},"id":"8f44c0b182f3d00-13d7e582cbffab6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182f3d00-13d7e582cbffab6a","8f44c0b182dc512-1397e58d69ff5d21"]},"geometry":{"type":"LineString","coordinates":[[-83.67291300000001,32.823075],[-83.67293000000001,32.821747]]},"id":"8944c0b182fffff-13f6e58818eb95fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672955,32.820208]},"id":"8f44c0b182adc70-1796a5732ded5d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182f3d00-13d7e582cbffab6a","8f44c0b182adc70-1796a5732ded5d16"]},"geometry":{"type":"LineString","coordinates":[[-83.67293000000001,32.821747],[-83.672955,32.820208]]},"id":"8844c0b183fffff-17f6f57afd5c444c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65932400000001,32.82201]},"id":"8f44c0b1bd16cd4-13fec6ba853146a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65939300000001,32.820096]},"id":"8f44c0b1aa6e4ee-17d6c68f6c0c4750"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa6e4ee-17d6c68f6c0c4750","8f44c0b1bd16cd4-13fec6ba853146a6"]},"geometry":{"type":"LineString","coordinates":[[-83.65932400000001,32.82201],[-83.65934800000001,32.821312],[-83.659367,32.820749],[-83.65939300000001,32.820096]]},"id":"8644c0b1fffffff-17b6e6a5bd1ee591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659441,32.81895]},"id":"8f44c0b1aa640dd-1397c671617029f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa6e4ee-17d6c68f6c0c4750","8f44c0b1aa640dd-1397c671617029f3"]},"geometry":{"type":"LineString","coordinates":[[-83.65939300000001,32.820096],[-83.659441,32.81895]]},"id":"8944c0b1aa7ffff-13ffe680669c31a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65943800000001,32.817769000000006]},"id":"8f44c0b1ab43302-17b7e67343344e5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa640dd-1397c671617029f3","8f44c0b1ab43302-17b7e67343344e5b"]},"geometry":{"type":"LineString","coordinates":[[-83.659441,32.81895],[-83.65943800000001,32.817769000000006]]},"id":"8844c0b1abfffff-1396f6725cbba394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65943870000001,32.8176785]},"id":"8f44c0b1ab4314d-17ffd672da61e5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab4314d-17ffd672da61e5b5","8f44c0b1ab43302-17b7e67343344e5b"]},"geometry":{"type":"LineString","coordinates":[[-83.65943800000001,32.817769000000006],[-83.65943870000001,32.8176785]]},"id":"8b44c0b1ab43fff-1797e673037c735a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659447,32.816598]},"id":"8f44c0b1ab44db1-13d7c66da0a68a8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab44db1-13d7c66da0a68a8e","8f44c0b1ab4314d-17ffd672da61e5b5"]},"geometry":{"type":"LineString","coordinates":[[-83.65943870000001,32.8176785],[-83.659447,32.816598]]},"id":"8a44c0b1ab47fff-1797f670419e9344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71572400000001,32.793379]},"id":"8f44c0b0ed518e3-1397fd0883ec76f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed58431-1796bd2b8b0bd857","8f44c0b0ed518e3-1397fd0883ec76f1"]},"geometry":{"type":"LineString","coordinates":[[-83.71572400000001,32.793379],[-83.715659,32.793742],[-83.71563,32.793993],[-83.71566800000001,32.794196]]},"id":"8944c0b0ed7ffff-17973d2c6eaa5f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed58431-1796bd2b8b0bd857","8f44c0b0ec75a31-17d77cd4ad23c0de"]},"geometry":{"type":"LineString","coordinates":[[-83.71566800000001,32.794196],[-83.7157,32.794313],[-83.715745,32.794421],[-83.715806,32.794538],[-83.715862,32.79466],[-83.71588600000001,32.79477],[-83.715868,32.794883],[-83.71580200000001,32.795037],[-83.71580700000001,32.79509]]},"id":"8844c0b0edfffff-17be7cd815a20c2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74224070000001,32.8273882]},"id":"8f44c0b08245063-179dfc4b946f0477"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74243,32.828014]},"id":"8f44c0b0824c89b-17b5fbd54088b75b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08245063-179dfc4b946f0477","8f44c0b0824c89b-17b5fbd54088b75b"]},"geometry":{"type":"LineString","coordinates":[[-83.74224070000001,32.8273882],[-83.74225600000001,32.827621],[-83.74227300000001,32.827703],[-83.74243,32.828014]]},"id":"8944c0b0827ffff-17f7fc23ccbec255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74102810000001,32.8284011]},"id":"8f44c0b08258173-1397ff417b835904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08258173-1397ff417b835904","8f44c0b0824c89b-17b5fbd54088b75b"]},"geometry":{"type":"LineString","coordinates":[[-83.74243,32.828014],[-83.742545,32.828255],[-83.742565,32.828327],[-83.742574,32.828401],[-83.74256100000001,32.828477],[-83.742536,32.828536],[-83.742492,32.828609],[-83.74242100000001,32.82868],[-83.742327,32.828742000000005],[-83.74222,32.828787000000005],[-83.742096,32.828803],[-83.741867,32.828806],[-83.74155800000001,32.828798],[-83.741449,32.828788],[-83.74134500000001,32.828749],[-83.741256,32.828693],[-83.74117100000001,32.82862],[-83.74109200000001,32.828539],[-83.741062,32.828471],[-83.74102810000001,32.8284011]]},"id":"8944c0b0827ffff-139dfd07b0017188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7547179,32.8926096]},"id":"8f44c0b53082964-17ddddd551b86ce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7536642,32.888696200000005]},"id":"8f44c0b53ccbd9c-13dfe067e7c6ec93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53ccbd9c-13dfe067e7c6ec93","8f44c0b53082964-17ddddd551b86ce8"]},"geometry":{"type":"LineString","coordinates":[[-83.7547179,32.8926096],[-83.755459,32.891149],[-83.75557,32.890923],[-83.75567810000001,32.8906725],[-83.7556989,32.890521500000006],[-83.7556897,32.890358],[-83.75566950000001,32.890205],[-83.7556282,32.890002100000004],[-83.7551679,32.889031100000004],[-83.75498710000001,32.8888602],[-83.7547691,32.8887657],[-83.7543764,32.888705800000004],[-83.7536642,32.888696200000005]]},"id":"8744c0b53ffffff-179dfcf1a7b2590e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75167880000001,32.888880300000004]},"id":"8f44c0b53576871-17bff540cc13bfc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53ccbd9c-13dfe067e7c6ec93","8f44c0b53576871-17bff540cc13bfc2"]},"geometry":{"type":"LineString","coordinates":[[-83.7536642,32.888696200000005],[-83.75245480000001,32.8886626],[-83.75167880000001,32.888880300000004]]},"id":"8744c0b53ffffff-13d7e2d9eb4ede67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65029600000001,32.824736]},"id":"8f44c0b1a215219-17b6dcc50ca0a94b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65034200000001,32.82426]},"id":"8f44c0b1a233769-17fedca84c622590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a215219-17b6dcc50ca0a94b","8f44c0b1a233769-17fedca84c622590"]},"geometry":{"type":"LineString","coordinates":[[-83.65029600000001,32.824736],[-83.65031900000001,32.824681000000005],[-83.650339,32.82445],[-83.65034200000001,32.82426]]},"id":"8944c0b1a23ffff-1796dcaf3557bfa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a233769-17fedca84c622590","8f44c0b1a230c1a-17d6fca180e5edb1"]},"geometry":{"type":"LineString","coordinates":[[-83.65034200000001,32.82426],[-83.65033000000001,32.824182],[-83.65035280000001,32.823556700000005]]},"id":"8a44c0b1a237fff-179efca90c9b2cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a230c1a-17d6fca180e5edb1","8f44c0b1a3a9860-13f6dc886e1c83e2"]},"geometry":{"type":"LineString","coordinates":[[-83.65035280000001,32.823556700000005],[-83.650377,32.822892],[-83.65039300000001,32.82282]]},"id":"8844c0b1a3fffff-13dedc98b9f93a27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666734,32.789254]},"id":"8f44c0b1c431464-1397f4a342040fa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666387,32.789226]},"id":"8f44c0b1c433890-13f6f57c24e23e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c433890-13f6f57c24e23e19","8f44c0b1c431464-1397f4a342040fa1"]},"geometry":{"type":"LineString","coordinates":[[-83.666734,32.789254],[-83.66656800000001,32.789243],[-83.666387,32.789226]]},"id":"8a44c0b1c437fff-13fff50fc8b5b347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c433890-13f6f57c24e23e19","8f44c0b1c59985b-13defa70e521b48d"]},"geometry":{"type":"LineString","coordinates":[[-83.666387,32.789226],[-83.666278,32.789237],[-83.666143,32.789236],[-83.66462100000001,32.789171],[-83.66453700000001,32.789156000000006],[-83.664445,32.789118],[-83.66439600000001,32.789067],[-83.66436900000001,32.789021000000005],[-83.66435700000001,32.788958]]},"id":"8844c0b1c5fffff-13deb815993ad473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66436300000001,32.788787]},"id":"8f44c0b1c59d28b-17dffa6d26e057e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c59985b-13defa70e521b48d","8f44c0b1c59d28b-17dffa6d26e057e7"]},"geometry":{"type":"LineString","coordinates":[[-83.66435700000001,32.788958],[-83.66435100000001,32.788902],[-83.664353,32.788856],[-83.66436300000001,32.788787]]},"id":"8a44c0b1c59ffff-1397fa721417eb2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665535,32.78876]},"id":"8f44c0b1c58d44b-17dfb790a5b28741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c58d44b-17dfb790a5b28741","8f44c0b1c59d28b-17dffa6d26e057e7"]},"geometry":{"type":"LineString","coordinates":[[-83.66436300000001,32.788787],[-83.66443600000001,32.78875],[-83.664489,32.788733],[-83.66459,32.78873],[-83.664708,32.788731],[-83.66499,32.788744],[-83.665535,32.78876]]},"id":"8944c0b1c5bffff-17d7f902246d931a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c58d44b-17dfb790a5b28741","8f44c0b1c432425-13dfb6c8a85bf3d5"]},"geometry":{"type":"LineString","coordinates":[[-83.665535,32.78876],[-83.66562300000001,32.788826],[-83.66585500000001,32.788988]]},"id":"8844c0b1c5fffff-1396f72d25cf9e03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c433890-13f6f57c24e23e19","8f44c0b1c432425-13dfb6c8a85bf3d5"]},"geometry":{"type":"LineString","coordinates":[[-83.66585500000001,32.788988],[-83.666177,32.789139],[-83.666387,32.789226]]},"id":"8a44c0b1c437fff-13bfb6233253a1e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693893,32.91199]},"id":"8f44c0a0532e370-17bff254e1b98606"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694085,32.912398]},"id":"8f44c0a0532866b-17bef1dce7b1ae00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0532866b-17bef1dce7b1ae00","8f44c0a0532e370-17bff254e1b98606"]},"geometry":{"type":"LineString","coordinates":[[-83.693893,32.91199],[-83.693983,32.912213],[-83.694085,32.912398]]},"id":"8a44c0a0532ffff-17bf721cbc2fbdc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05329a95-179e70a96f0ec387","8f44c0a0532866b-17bef1dce7b1ae00"]},"geometry":{"type":"LineString","coordinates":[[-83.694085,32.912398],[-83.694411,32.912542],[-83.694488,32.912566000000005],[-83.69457700000001,32.912554]]},"id":"8a44c0a0532ffff-17f7714575052f3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05329a95-179e70a96f0ec387","8f44c0a05ada968-17de6f42a54a1543"]},"geometry":{"type":"LineString","coordinates":[[-83.69457700000001,32.912554],[-83.694826,32.912463],[-83.69515100000001,32.912272]]},"id":"8844c0a053fffff-17be7ff24aaf4ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69538200000001,32.91207]},"id":"8f44c0a05ad8d24-17dfeeb2499a108c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ada968-17de6f42a54a1543","8f44c0a05ad8d24-17dfeeb2499a108c"]},"geometry":{"type":"LineString","coordinates":[[-83.69515100000001,32.912272],[-83.69538200000001,32.91207]]},"id":"8a44c0a05adffff-179eeefa74fe9e5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69572600000001,32.911754]},"id":"8f44c0a05adc94a-17966ddb449c9d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05adc94a-17966ddb449c9d20","8f44c0a05ad8d24-17dfeeb2499a108c"]},"geometry":{"type":"LineString","coordinates":[[-83.69538200000001,32.91207],[-83.695464,32.912039],[-83.69572600000001,32.911754]]},"id":"8b44c0a05adcfff-1797fe4106f5a6c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70783800000001,32.78501]},"id":"8f44c0b03a3648a-17b75049474615c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a3648a-17b75049474615c0","8f44c0b03b9da91-17bff3d1a2f2c06a"]},"geometry":{"type":"LineString","coordinates":[[-83.70783800000001,32.78501],[-83.70639100000001,32.785017]]},"id":"8944c0b03bbffff-17bf720d70fa71b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70561000000001,32.785016]},"id":"8f44c0b03b98513-17bf55b9c4419b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b98513-17bf55b9c4419b7a","8f44c0b03b9da91-17bff3d1a2f2c06a"]},"geometry":{"type":"LineString","coordinates":[[-83.70639100000001,32.785017],[-83.70561000000001,32.785016]]},"id":"8a44c0b03b9ffff-17bf54c5bf96de29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70538,32.785012]},"id":"8f44c0b03b9a982-17bed6498f29c6f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b9a982-17bed6498f29c6f0","8f44c0b03b98513-17bf55b9c4419b7a"]},"geometry":{"type":"LineString","coordinates":[[-83.70561000000001,32.785016],[-83.70538,32.785012]]},"id":"8a44c0b03b9ffff-17bfd601afd9fa12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70535600000001,32.786825]},"id":"8f44c0b03a86028-1397f6588f73648f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ab5094-13f6d609cd018ca5","8f44c0b03a86028-1397f6588f73648f"]},"geometry":{"type":"LineString","coordinates":[[-83.70535600000001,32.786825],[-83.70533300000001,32.786436],[-83.705326,32.786188],[-83.705336,32.786143],[-83.70537800000001,32.786076],[-83.705425,32.786012],[-83.705482,32.785956]]},"id":"8944c0b03abffff-13ffd65900fd6c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ab5094-13f6d609cd018ca5","8f44c0b03b98513-17bf55b9c4419b7a"]},"geometry":{"type":"LineString","coordinates":[[-83.705482,32.785956],[-83.705534,32.785904],[-83.705571,32.785857],[-83.705585,32.785798],[-83.70559700000001,32.785687],[-83.70561000000001,32.785016]]},"id":"8844c0b03bfffff-17ded5c62fa2c147"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5477729,32.816735800000004]},"id":"8f44c0b814a8ba3-179ff711fd0cbe18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5476311,32.8193527]},"id":"8f44c0b814d3a49-13fff76a93fbe104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b814a8ba3-179ff711fd0cbe18","8f44c0b814d3a49-13fff76a93fbe104"]},"geometry":{"type":"LineString","coordinates":[[-83.5477729,32.816735800000004],[-83.547759,32.817225],[-83.547635,32.81759],[-83.547736,32.818083],[-83.547965,32.818638],[-83.5476311,32.8193527]]},"id":"8844c0b815fffff-17dff7144d89d672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54505400000001,32.821007]},"id":"8f44c0b83b190f6-179ffdb54e9a8560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b814d3a49-13fff76a93fbe104","8f44c0b83b190f6-179ffdb54e9a8560"]},"geometry":{"type":"LineString","coordinates":[[-83.5476311,32.8193527],[-83.547579,32.8194643],[-83.54736890000001,32.8202037],[-83.5473558,32.8205017],[-83.54718510000001,32.820976300000005],[-83.5467648,32.8213184],[-83.5458849,32.8213956],[-83.5453071,32.821219],[-83.54505400000001,32.821007]]},"id":"8644c0b87ffffff-179ff9c91a2f6fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69909600000001,32.917071]},"id":"8f44c0a2acab813-139765a10a554218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aca9c11-13d764e4475cddaf","8f44c0a2acab813-139765a10a554218"]},"geometry":{"type":"LineString","coordinates":[[-83.69909600000001,32.917071],[-83.699398,32.916946]]},"id":"8a44c0a2acaffff-13fe7542a0b78d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996481,32.916838500000004]},"id":"8f44c0a2acad281-13967447f8ffa04e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aca9c11-13d764e4475cddaf","8f44c0a2acad281-13967447f8ffa04e"]},"geometry":{"type":"LineString","coordinates":[[-83.699398,32.916946],[-83.6996481,32.916838500000004]]},"id":"8a44c0a2acaffff-13b7f4961b2c3834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093538,32.919932100000004]},"id":"8f44c0a2a8c2a4d-139fdc95e019e272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095489,32.9199975]},"id":"8f44c0a2a8c391a-13b67c1bf3de8284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8c391a-13b67c1bf3de8284","8f44c0a2a8c2a4d-139fdc95e019e272"]},"geometry":{"type":"LineString","coordinates":[[-83.7093538,32.919932100000004],[-83.7095489,32.9199975]]},"id":"8a44c0a2a8c7fff-13b64c58fb79d9a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8c391a-13b67c1bf3de8284","8f44c0a2a8c10e1-1397cb29bc2a99da"]},"geometry":{"type":"LineString","coordinates":[[-83.7095489,32.9199975],[-83.7096369,32.920033000000004],[-83.7097438,32.9200687],[-83.70993650000001,32.920117600000005]]},"id":"8a44c0a2a8c7fff-13dfcba3fcc69e30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c5a1a5e-13f6b6b7c91b33ba","8f44c0b1c581295-17ffb903e92cff65"]},"geometry":{"type":"LineString","coordinates":[[-83.66588200000001,32.787152],[-83.665451,32.787186000000005],[-83.665243,32.787222],[-83.665165,32.787253],[-83.66509,32.787311],[-83.66506000000001,32.787349],[-83.664989,32.787478],[-83.664952,32.787563],[-83.664911,32.787697],[-83.66485700000001,32.788001],[-83.66485700000001,32.788049],[-83.664872,32.788127],[-83.664895,32.788173],[-83.664941,32.78822]]},"id":"8944c0b1c5bffff-17bef86feb0abe8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665282,32.788502]},"id":"8f44c0b1c58c76a-17bff82ec9c6a72b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c58c76a-17bff82ec9c6a72b","8f44c0b1c581295-17ffb903e92cff65"]},"geometry":{"type":"LineString","coordinates":[[-83.664941,32.78822],[-83.665282,32.788502]]},"id":"8944c0b1c5bffff-17d7b8995e550991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c58d44b-17dfb790a5b28741","8f44c0b1c58c76a-17bff82ec9c6a72b"]},"geometry":{"type":"LineString","coordinates":[[-83.665282,32.788502],[-83.665535,32.78876]]},"id":"8a44c0b1c58ffff-17fef7dfb990d252"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66431700000001,32.78846]},"id":"8f44c0b1c59dc60-1797ba89e9bc1bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c59dc60-1797ba89e9bc1bd5","8f44c0b1c59d28b-17dffa6d26e057e7"]},"geometry":{"type":"LineString","coordinates":[[-83.66436300000001,32.788787],[-83.664322,32.788749],[-83.66430700000001,32.788728],[-83.664292,32.788674],[-83.66429600000001,32.78853],[-83.66430100000001,32.788494],[-83.66431700000001,32.78846]]},"id":"8b44c0b1c59dfff-17feba90c7219f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662391,32.786445]},"id":"8f44c0b112ce2cb-13bebf3da4bb8d6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112ce2cb-13bebf3da4bb8d6c","8f44c0b1c59dc60-1797ba89e9bc1bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.66431700000001,32.78846],[-83.66428,32.788404],[-83.664253,32.78831],[-83.664246,32.788221],[-83.664224,32.788145],[-83.664187,32.788078],[-83.664128,32.78803],[-83.66404,32.787998],[-83.663921,32.787972],[-83.663408,32.787896],[-83.662746,32.787841],[-83.662598,32.787824],[-83.66249400000001,32.787802],[-83.66243700000001,32.787768],[-83.662413,32.787736],[-83.66239200000001,32.787629],[-83.662357,32.786746],[-83.662361,32.786564000000006],[-83.662369,32.786499],[-83.662391,32.786445]]},"id":"8644c0b1fffffff-1796bd951007ac3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600502,32.801783]},"id":"8f44c0ba8cc2958-179f76564d051c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595743,32.796402]},"id":"8f44c0bae37184c-13f761f4a9bcf330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0bae37184c-13f761f4a9bcf330","8f44c0ba8cc2958-179f76564d051c81"]},"geometry":{"type":"LineString","coordinates":[[-83.600502,32.801783],[-83.600423,32.801684],[-83.600311,32.801523],[-83.600178,32.801358],[-83.599648,32.800765000000006],[-83.59822700000001,32.79927],[-83.597171,32.798146],[-83.596728,32.797683],[-83.59648800000001,32.797455],[-83.59623400000001,32.797185],[-83.59604,32.79694],[-83.596011,32.796891],[-83.59595,32.796787],[-83.595819,32.796551],[-83.595743,32.796402]]},"id":"8644c0bafffffff-13975c3c243121da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59517500000001,32.779735]},"id":"8f44c0bae921d1a-13d76357a29280d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0bae37184c-13f761f4a9bcf330","8f44c0bae921d1a-13d76357a29280d6"]},"geometry":{"type":"LineString","coordinates":[[-83.595743,32.796402],[-83.59572200000001,32.796329],[-83.595674,32.796203000000006],[-83.59563,32.796062],[-83.595605,32.79596],[-83.595599,32.795803],[-83.59558,32.795596],[-83.595596,32.794769],[-83.595673,32.793056],[-83.59574,32.791232],[-83.595714,32.790988],[-83.59571600000001,32.790837],[-83.595701,32.790759],[-83.595691,32.790604],[-83.59570000000001,32.790489],[-83.59573,32.790281],[-83.596433,32.787984],[-83.596934,32.786274],[-83.597257,32.785128],[-83.597272,32.784978],[-83.597272,32.784796],[-83.597188,32.784526],[-83.597144,32.7843],[-83.59713500000001,32.783988],[-83.597155,32.783825],[-83.59710600000001,32.783640000000005],[-83.59703300000001,32.78345],[-83.59673000000001,32.782868],[-83.59532200000001,32.780346],[-83.59521600000001,32.780113],[-83.59517500000001,32.779735]]},"id":"8644c0bafffffff-17b7e0ef09c44eae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61508900000001,32.876458]},"id":"8f44c0a322ca85b-17ff72b961097cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322ddad3-17fff396a483e560","8f44c0a322ca85b-17ff72b961097cc7"]},"geometry":{"type":"LineString","coordinates":[[-83.61508900000001,32.876458],[-83.61473500000001,32.876278]]},"id":"8944c0a322fffff-17b7332804fcde4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613681,32.875888]},"id":"8f44c0a322deceb-17973629604ee35f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322ddad3-17fff396a483e560","8f44c0a322deceb-17973629604ee35f"]},"geometry":{"type":"LineString","coordinates":[[-83.61473500000001,32.876278],[-83.61431400000001,32.876114],[-83.613681,32.875888]]},"id":"8a44c0a322dffff-17ffb4df30839bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688232,32.903452]},"id":"8f44c0a05130a72-17d7802701d3c0a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05135833-17967f4c4ce535a2","8f44c0a05130a72-17d7802701d3c0a1"]},"geometry":{"type":"LineString","coordinates":[[-83.688232,32.903452],[-83.68858200000001,32.903149]]},"id":"8a44c0a05137fff-17f6ffb9acb8d01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05124a69-179efc7e2eb560b3","8f44c0a05135833-17967f4c4ce535a2"]},"geometry":{"type":"LineString","coordinates":[[-83.68858200000001,32.903149],[-83.68973100000001,32.903163]]},"id":"8944c0a0513ffff-179efde537c14a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05124a69-179efc7e2eb560b3","8f44c0a058d4145-17bef9bdc733f4bc"]},"geometry":{"type":"LineString","coordinates":[[-83.68973100000001,32.903163],[-83.69015300000001,32.903157],[-83.690554,32.90318],[-83.690858,32.903188]]},"id":"8844c0a059fffff-17b6fb1deafed4ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0588d359-17d77a2c6b33d257","8f44c0a058d4145-17bef9bdc733f4bc"]},"geometry":{"type":"LineString","coordinates":[[-83.690858,32.903188],[-83.691123,32.903171],[-83.69141900000001,32.903165],[-83.691536,32.903153],[-83.691591,32.903132],[-83.691624,32.903104],[-83.691636,32.903053],[-83.691637,32.902884],[-83.691631,32.902704],[-83.691623,32.902633],[-83.691586,32.902578000000005],[-83.69152100000001,32.902558],[-83.691157,32.902558],[-83.69086300000001,32.902555],[-83.690785,32.902576],[-83.69068100000001,32.902613]]},"id":"8844c0a059fffff-17d6f8ae9ddad853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69030400000001,32.902333]},"id":"8f44c0a0588c25c-17967b18089fbdf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0588d359-17d77a2c6b33d257","8f44c0a0588c25c-17967b18089fbdf6"]},"geometry":{"type":"LineString","coordinates":[[-83.69068100000001,32.902613],[-83.69061500000001,32.902557],[-83.69030400000001,32.902333]]},"id":"8b44c0a0588dfff-17fe7aa121c59b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724592,32.795009]},"id":"8f44c0b0e95ac63-1796a762013b6e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72544,32.795028]},"id":"8f44c0b0e95d78d-179ea5500c0a3db3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e95ac63-1796a762013b6e36","8f44c0b0e95d78d-179ea5500c0a3db3"]},"geometry":{"type":"LineString","coordinates":[[-83.724592,32.795009],[-83.725243,32.795028],[-83.72544,32.795028]]},"id":"8a44c0b0e95ffff-1797f65909d147f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7255361,32.795926900000005]},"id":"8f44c0b0e860d98-13de7513f6bbce85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e95d78d-179ea5500c0a3db3","8f44c0b0e860d98-13de7513f6bbce85"]},"geometry":{"type":"LineString","coordinates":[[-83.72544,32.795028],[-83.725755,32.795039],[-83.72602300000001,32.795057],[-83.726139,32.795077],[-83.726222,32.795121],[-83.72627,32.795175],[-83.72631000000001,32.795273],[-83.726313,32.795364],[-83.726307,32.795526],[-83.726281,32.795733000000006],[-83.726258,32.795789],[-83.726235,32.795817],[-83.72618700000001,32.795856],[-83.726144,32.795878],[-83.72608600000001,32.795893],[-83.725988,32.795903],[-83.7255361,32.795926900000005]]},"id":"8844c0b0e9fffff-13bf33effac9fd60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d68b2c-13dffb23073e3ddf","8f44c0a3699ec4d-13d779681c808ccd"]},"geometry":{"type":"LineString","coordinates":[[-83.61890550000001,32.8350213],[-83.618559,32.835127],[-83.618336,32.835192],[-83.6181968,32.835268500000005]]},"id":"8844c0a369fffff-13976a48a202185b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d68b2c-13dffb23073e3ddf","8f44c0a36d42861-13b73facc2949b1b"]},"geometry":{"type":"LineString","coordinates":[[-83.6181968,32.835268500000005],[-83.61772400000001,32.835476],[-83.61753,32.83553],[-83.617413,32.835547000000005],[-83.61730200000001,32.835554],[-83.617106,32.835532],[-83.616881,32.835461],[-83.616805,32.83542],[-83.61670600000001,32.835361],[-83.616477,32.835237],[-83.616338,32.8352097]]},"id":"8944c0a36d7ffff-13bf2d69d396e6ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d42861-13b73facc2949b1b","8f44c0a36d550f3-13df310ee5d531a2"]},"geometry":{"type":"LineString","coordinates":[[-83.616338,32.8352097],[-83.6160675,32.8351684],[-83.6159267,32.8351302],[-83.6158044,32.835063000000005],[-83.6157714,32.8350403]]},"id":"8944c0a36d7ffff-139ff0630757abcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d11cd4-13f777b30cbb5aa6","8f44c0a36d550f3-13df310ee5d531a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6157714,32.8350403],[-83.6157163,32.835002200000005],[-83.6155415,32.834929800000005],[-83.61517500000001,32.834688],[-83.614794,32.834445],[-83.61426800000001,32.834102],[-83.61413900000001,32.834012],[-83.61403700000001,32.833928],[-83.6130512,32.8330276]]},"id":"8844c0a36dfffff-1797f47f07bf7cca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d11cd4-13f777b30cbb5aa6","8f44c0a36d06489-13f7f684dfcd563e"]},"geometry":{"type":"LineString","coordinates":[[-83.6130512,32.8330276],[-83.613022,32.833001],[-83.612932,32.832910000000005],[-83.612916,32.832876],[-83.61291800000001,32.832836],[-83.61293,32.832788],[-83.612949,32.832751],[-83.612982,32.832721],[-83.61303000000001,32.832701],[-83.613161,32.832673],[-83.6135347,32.8326252]]},"id":"8944c0a36d3ffff-13b7b77dc751e352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d06489-13f7f684dfcd563e","8f44c0a36d242ea-13bfb2cd695c48e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6135347,32.8326252],[-83.613888,32.83258],[-83.61403800000001,32.832557],[-83.614137,32.832527],[-83.614199,32.832498],[-83.61432500000001,32.832423],[-83.61451000000001,32.832285],[-83.6146009,32.832200400000005],[-83.614737,32.832031],[-83.614857,32.831864],[-83.6149165,32.8318176],[-83.61505700000001,32.8317434]]},"id":"8944c0a36d3ffff-139734857eab213b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d25d72-139ff234fc9451b5","8f44c0a36d242ea-13bfb2cd695c48e2"]},"geometry":{"type":"LineString","coordinates":[[-83.61505700000001,32.8317434],[-83.6152321,32.8316839],[-83.61530090000001,32.831660500000005]]},"id":"8a44c0a36d27fff-13b7f2812427e171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58271900000001,32.850181]},"id":"8f44c0b8d4f26c9-17d7a1c0aaed87c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d4f26c9-17d7a1c0aaed87c8","8f44c0b88b22d1d-17dfc6ad4064946e"]},"geometry":{"type":"LineString","coordinates":[[-83.58271900000001,32.850181],[-83.58233200000001,32.850487],[-83.58224,32.850552],[-83.582031,32.850684],[-83.58179700000001,32.8508],[-83.581744,32.850819],[-83.581691,32.850825],[-83.58164000000001,32.850821],[-83.58159,32.8508],[-83.581108,32.850473],[-83.581072,32.850464],[-83.581033,32.85047],[-83.580854,32.850538],[-83.58079400000001,32.850557],[-83.580702,32.850606]]},"id":"8644c0b8fffffff-17b7c42748a25a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58035600000001,32.850718]},"id":"8f44c0b88b31984-1797c7858a5e297e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b22d1d-17dfc6ad4064946e","8f44c0b88b31984-1797c7858a5e297e"]},"geometry":{"type":"LineString","coordinates":[[-83.580702,32.850606],[-83.580601,32.850625],[-83.58035600000001,32.850718]]},"id":"8944c0b88b3ffff-17ffd71a823c4682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64316600000001,32.780048]},"id":"8f44c0b13a14da1-139eee2d411cea07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64358010000001,32.779427000000005]},"id":"8f44c0b13a36062-1397ed2a78ed3e50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13a14da1-139eee2d411cea07","8f44c0b13a36062-1397ed2a78ed3e50"]},"geometry":{"type":"LineString","coordinates":[[-83.64316600000001,32.780048],[-83.6431829,32.779836700000004],[-83.6433334,32.7796502],[-83.64358010000001,32.779427000000005]]},"id":"8944c0b13a3ffff-13b6fdcd20fe4ae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6447866,32.778400000000005]},"id":"8f44c0b13b1c04b-1796ea386681f0b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13b1c04b-1796ea386681f0b3","8f44c0b13a36062-1397ed2a78ed3e50"]},"geometry":{"type":"LineString","coordinates":[[-83.64358010000001,32.779427000000005],[-83.6447866,32.778400000000005]]},"id":"8844c0b13bfffff-17d6fbb17698c4bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6463482,32.7801172]},"id":"8f44c0b13b50681-13b7e6686cd260ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13b1c04b-1796ea386681f0b3","8f44c0b13b50681-13b7e6686cd260ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6447866,32.778400000000005],[-83.64525640000001,32.778796],[-83.6456151,32.7790984],[-83.64623230000001,32.7796186],[-83.6463543,32.7798874],[-83.6463482,32.7801172]]},"id":"8844c0b13bfffff-13f6f806b19c3141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200089,32.8395904]},"id":"8f44c0a368d290d-13ff26b67053eed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a368dd2b4-17dfe343f0be9f5a","8f44c0a368d290d-13ff26b67053eed0"]},"geometry":{"type":"LineString","coordinates":[[-83.6214209,32.8407804],[-83.621274,32.840643],[-83.620942,32.840352],[-83.62042500000001,32.839934],[-83.620163,32.839713],[-83.6200089,32.8395904]]},"id":"8944c0a368fffff-17d764f931d961e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a368d2d36-13bfb747fcea0944","8f44c0a368d290d-13ff26b67053eed0"]},"geometry":{"type":"LineString","coordinates":[[-83.6200089,32.8395904],[-83.619856,32.8395448],[-83.61977610000001,32.839520900000004]]},"id":"8a44c0a368d7fff-13d776ff34aac3e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36125a0e-139f777b27b3eec1","8f44c0a368d2d36-13bfb747fcea0944"]},"geometry":{"type":"LineString","coordinates":[[-83.61977610000001,32.839520900000004],[-83.61969420000001,32.8394709]]},"id":"8b44c0a36125fff-13bff7618b3cafcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2c282d-13fef1a22b5a4a23","8f44c0b0e2c2cc0-139e323a0fdb5e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.7203934,32.812180600000005],[-83.72015040000001,32.812230400000004]]},"id":"8b44c0b0e2c2fff-139e71ee151bd55d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71963840000001,32.812586700000004]},"id":"8f44c0b0e2d16a9-13feb37a0c9cbdd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2d16a9-13feb37a0c9cbdd2","8f44c0b0e2c2cc0-139e323a0fdb5e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.72015040000001,32.812230400000004],[-83.72000750000001,32.8123105],[-83.7198146,32.8124666],[-83.71963840000001,32.812586700000004]]},"id":"8944c0b0e2fffff-139ef2db7b51dd83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71670610000001,32.888952100000004]},"id":"8f44c0a21294471-17ff3aa2b9e2c896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21294471-17ff3aa2b9e2c896","8f44c0a2174945c-13b7fb882fb4504d"]},"geometry":{"type":"LineString","coordinates":[[-83.71670610000001,32.888952100000004],[-83.71648850000001,32.8888599],[-83.71640690000001,32.8887676],[-83.716339,32.8886559]]},"id":"8844c0a217fffff-179f7b239a02314b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71489000000001,32.889219600000004]},"id":"8f44c0a21662d5b-17967f11c7f91e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2174945c-13b7fb882fb4504d","8f44c0a21662d5b-17967f11c7f91e07"]},"geometry":{"type":"LineString","coordinates":[[-83.716339,32.8886559],[-83.71624960000001,32.8885395],[-83.71607440000001,32.8883786],[-83.71591380000001,32.888249900000005],[-83.7158208,32.888176300000005],[-83.71567300000001,32.888105800000005],[-83.7153993,32.8880691],[-83.7152916,32.8880813],[-83.71512560000001,32.8881043],[-83.7148701,32.8881886],[-83.7146785,32.8882591],[-83.7145909,32.8882928],[-83.71444310000001,32.888374],[-83.71439020000001,32.8884314],[-83.7143592,32.888488100000004],[-83.71433180000001,32.8887118],[-83.71433,32.8888911],[-83.7143884,32.889030500000004],[-83.71453070000001,32.889148500000005],[-83.7146146,32.8891845],[-83.71489000000001,32.889219600000004]]},"id":"8844c0a217fffff-13d6be96c2f7442d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624071,32.796596]},"id":"8f44c0badcc04a4-13f79ccbaf2c27e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6226702,32.7965046]},"id":"8f44c0badcd2862-13b76037267230e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badcc04a4-13f79ccbaf2c27e1","8f44c0badcd2862-13b76037267230e1"]},"geometry":{"type":"LineString","coordinates":[[-83.624071,32.796596],[-83.623928,32.797134],[-83.6237,32.797217],[-83.623501,32.797083],[-83.623422,32.79685],[-83.6226702,32.7965046]]},"id":"8944c0badcfffff-139f9e32784adde5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62350470000001,32.7905764]},"id":"8f44c0badda15a4-17bf5e2d96e81c62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badda15a4-17bf5e2d96e81c62","8f44c0badcd2862-13b76037267230e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6226702,32.7965046],[-83.62265570000001,32.795564],[-83.622687,32.794284000000005],[-83.6227247,32.793179800000004],[-83.6227427,32.7924463],[-83.622828,32.791979000000005],[-83.62301330000001,32.7915323],[-83.6232593,32.790968400000004],[-83.6234414,32.7907148],[-83.62350470000001,32.7905764]]},"id":"8844c0baddfffff-13d7dfdd3dba4281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60880200000001,32.843772]},"id":"8f44c0a364081ae-179fc212ce4e1baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608125,32.8440061]},"id":"8f44c0a36419b75-17bfd3b9e3291805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364081ae-179fc212ce4e1baf","8f44c0a36419b75-17bfd3b9e3291805"]},"geometry":{"type":"LineString","coordinates":[[-83.60880200000001,32.843772],[-83.60858800000001,32.843854],[-83.608316,32.843947],[-83.608125,32.8440061]]},"id":"8944c0a3643ffff-17ffd2e5593acfd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6080273,32.8439975]},"id":"8f44c0a36419bae-17bf73f6fa4e4d79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36419bae-17bf73f6fa4e4d79","8f44c0a36419b75-17bfd3b9e3291805"]},"geometry":{"type":"LineString","coordinates":[[-83.608125,32.8440061],[-83.60806960000001,32.8440906],[-83.60800250000001,32.8441494],[-83.6079661,32.8441592],[-83.6079311,32.844146900000005],[-83.6079078,32.844126100000004],[-83.6078918,32.8440979],[-83.60790200000001,32.8440624],[-83.6079311,32.8440306],[-83.60797480000001,32.8440098],[-83.6080273,32.8439975]]},"id":"8a44c0a3641ffff-17df540dfaf29fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36419bae-17bf73f6fa4e4d79","8f44c0a36419b75-17bfd3b9e3291805"]},"geometry":{"type":"LineString","coordinates":[[-83.6080273,32.8439975],[-83.608125,32.8440061]]},"id":"8c44c0a36419bff-17bf63d87c8c8650"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58605700000001,32.84205]},"id":"8f44c0b8dc82331-13ff799a6818710c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586145,32.841952]},"id":"8f44c0b8dc82b1b-13bf796366d237e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dc82331-13ff799a6818710c","8f44c0b8dc82b1b-13bf796366d237e6"]},"geometry":{"type":"LineString","coordinates":[[-83.58605700000001,32.84205],[-83.586145,32.841952]]},"id":"8b44c0b8dc82fff-13dff97eeaaeded3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6885297,32.836958]},"id":"8f44c0b192836c2-17feff6cf4dfb467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1929e18e-17fed18e26e2e395","8f44c0b192836c2-17feff6cf4dfb467"]},"geometry":{"type":"LineString","coordinates":[[-83.6876574,32.8369317],[-83.688376,32.836947],[-83.6885297,32.836958]]},"id":"8a44c0b1929ffff-17f6907d7af554ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690004,32.837303]},"id":"8f44c0b1928daa4-17d67bd381255535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192836c2-17feff6cf4dfb467","8f44c0b1928daa4-17d67bd381255535"]},"geometry":{"type":"LineString","coordinates":[[-83.6885297,32.836958],[-83.68854300000001,32.836959],[-83.68859300000001,32.836962],[-83.688677,32.836981],[-83.688744,32.837007],[-83.689175,32.837234],[-83.68925200000001,32.837266],[-83.689334,32.837283],[-83.6898831,32.8372994],[-83.690004,32.837303]]},"id":"8944c0b192bffff-179ffda8fde15f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628462,32.849041]},"id":"8f44c0a30d84d61-13ffb2134d561218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6279339,32.848347600000004]},"id":"8f44c0a30db42c4-13df535d51a03654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved"},"subType":"road","connectors":["8f44c0a30db42c4-13df535d51a03654","8f44c0a30d84d61-13ffb2134d561218"]},"geometry":{"type":"LineString","coordinates":[[-83.628462,32.849041],[-83.62813390000001,32.848637100000005],[-83.6279339,32.848347600000004]]},"id":"8944c0a30dbffff-13b712bc6f7601a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved"},"subType":"road","connectors":["8f44c0a36a5a59c-179f13d9d82a7994","8f44c0a30db42c4-13df535d51a03654"]},"geometry":{"type":"LineString","coordinates":[[-83.6279339,32.848347600000004],[-83.62787,32.8481605],[-83.627812,32.847954900000005],[-83.6277754,32.8477738],[-83.6277347,32.8476577]]},"id":"8844c0a36bfffff-13f7339db9a9610b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66544,32.84986]},"id":"8f44c0a35842531-17feb7cc0a55e5ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665732,32.849867]},"id":"8f44c0a35842853-17fef7158b14287f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35842853-17fef7158b14287f","8f44c0a35842531-17feb7cc0a55e5ec"]},"geometry":{"type":"LineString","coordinates":[[-83.66544,32.84986],[-83.66547200000001,32.849899],[-83.665503,32.849927],[-83.665542,32.849942],[-83.665586,32.84995],[-83.66563500000001,32.849942],[-83.665682,32.849922],[-83.66571400000001,32.849894],[-83.665732,32.849867]]},"id":"8b44c0a35842fff-179fb7711cafa035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35842853-17fef7158b14287f","8f44c0a3584661e-1797b76305d94f76"]},"geometry":{"type":"LineString","coordinates":[[-83.665732,32.849867],[-83.665743,32.849826],[-83.665745,32.849781],[-83.665726,32.849741],[-83.66568500000001,32.849704],[-83.665642,32.849677],[-83.665608,32.849669]]},"id":"8a44c0a35847fff-17b7b72745f85834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35842531-17feb7cc0a55e5ec","8f44c0a3584661e-1797b76305d94f76"]},"geometry":{"type":"LineString","coordinates":[[-83.665608,32.849669],[-83.665541,32.849677],[-83.665503,32.849691],[-83.665469,32.849719],[-83.665453,32.849746],[-83.66544300000001,32.849777],[-83.66543700000001,32.84982],[-83.66544,32.84986]]},"id":"8a44c0a35847fff-17bef7ac206a392c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35842853-17fef7158b14287f","8f44c0a35840a03-1796b5c22fb457f7"]},"geometry":{"type":"LineString","coordinates":[[-83.665732,32.849867],[-83.66583200000001,32.849925],[-83.66590500000001,32.849955],[-83.665953,32.849966],[-83.666005,32.849967],[-83.66606200000001,32.84995],[-83.666275,32.849869000000005]]},"id":"8a44c0a35847fff-17b7f66dc3ece5f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35840a03-1796b5c22fb457f7","8f44c0a35844585-13beb679e855dd13"]},"geometry":{"type":"LineString","coordinates":[[-83.666275,32.849869000000005],[-83.666296,32.849865],[-83.66656,32.849773],[-83.666611,32.849745],[-83.666632,32.849719],[-83.666633,32.849685],[-83.666617,32.849648],[-83.66640500000001,32.849285],[-83.66638400000001,32.849271],[-83.666357,32.849265],[-83.666303,32.849269],[-83.666137,32.849299],[-83.665981,32.849345]]},"id":"8944c0a3587ffff-17b7f57591508691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35846cdb-13feb75ea81f1c79","8f44c0a35844585-13beb679e855dd13"]},"geometry":{"type":"LineString","coordinates":[[-83.665981,32.849345],[-83.665889,32.849362],[-83.66571300000001,32.849406],[-83.665659,32.849424],[-83.665615,32.849456]]},"id":"8a44c0a35847fff-13d6b6ef2b9745b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665498,32.848712]},"id":"8f44c0a3587011c-13bfb7a7ca042e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35846cdb-13feb75ea81f1c79","8f44c0a3587011c-13bfb7a7ca042e84"]},"geometry":{"type":"LineString","coordinates":[[-83.665615,32.849456],[-83.66556200000001,32.849435],[-83.665519,32.849393],[-83.66549900000001,32.849337000000006],[-83.665498,32.848712]]},"id":"8944c0a3587ffff-13b7b7a10d57fcc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a529b01-17d6f4ed692de424","8f44c0b1a528b4c-17bef5a94fd3766c"]},"geometry":{"type":"LineString","coordinates":[[-83.64040100000001,32.813758],[-83.64029500000001,32.813724],[-83.640219,32.813682],[-83.640178,32.813648],[-83.64010040000001,32.8134882]]},"id":"8a44c0b1a52ffff-1796f55ba05eff83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a528b4c-17bef5a94fd3766c","8f44c0b1a52bc33-17def6dd2cfcd6cf"]},"geometry":{"type":"LineString","coordinates":[[-83.64010040000001,32.8134882],[-83.63994810000001,32.8136254],[-83.6398834,32.8136674],[-83.6397488,32.8137039],[-83.63960780000001,32.8137356]]},"id":"8a44c0b1a52ffff-179ef6395beca0f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56845100000001,32.844501]},"id":"8f44c0b88d7252d-17f7a4962439b48d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56832800000001,32.84407]},"id":"8f44c0b88d0d91a-17d7e4e30a027a65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88d7252d-17f7a4962439b48d","8f44c0b88d0d91a-17d7e4e30a027a65"]},"geometry":{"type":"LineString","coordinates":[[-83.56845100000001,32.844501],[-83.568393,32.844164],[-83.56832800000001,32.84407]]},"id":"8844c0b88dfffff-17dfb4b1e3c1f56d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56786500000001,32.843781]},"id":"8f44c0b88d0cd4b-17b7a604688907ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88d0cd4b-17b7a604688907ff","8f44c0b88d0d91a-17d7e4e30a027a65"]},"geometry":{"type":"LineString","coordinates":[[-83.56832800000001,32.84407],[-83.56786500000001,32.843781]]},"id":"8a44c0b88d0ffff-17fff573b2275199"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739552,32.878813]},"id":"8f44c0b520c62b3-13be22dc05836eba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73955600000001,32.878362]},"id":"8f44c0b520f1602-139642d987c602dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520f1602-139642d987c602dc","8f44c0b520c62b3-13be22dc05836eba"]},"geometry":{"type":"LineString","coordinates":[[-83.739552,32.878813],[-83.739551,32.878431],[-83.73955600000001,32.878362]]},"id":"8944c0b520fffff-139f22dc2b3d6422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739649,32.878078]},"id":"8f44c0b520f1d59-13dec29f6814979a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520f1602-139642d987c602dc","8f44c0b520f1d59-13dec29f6814979a"]},"geometry":{"type":"LineString","coordinates":[[-83.73955600000001,32.878362],[-83.739564,32.878172],[-83.73957300000001,32.878143],[-83.739592,32.87811],[-83.73962300000001,32.878086],[-83.739649,32.878078]]},"id":"8b44c0b520f1fff-13bfc2cd5d5ea6d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741922,32.877404]},"id":"8f44c0b52009a09-13bdfd12cddf5429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200d1a6-17f5fd6366ba55c8","8f44c0b52009a09-13bdfd12cddf5429"]},"geometry":{"type":"LineString","coordinates":[[-83.741922,32.877404],[-83.74176,32.877364],[-83.741697,32.877346],[-83.74156500000001,32.877243],[-83.741528,32.877204],[-83.74150300000001,32.877163],[-83.741495,32.877119],[-83.74151,32.877082],[-83.741539,32.877049],[-83.74168,32.876936],[-83.74173900000001,32.876883],[-83.741766,32.876863],[-83.741793,32.876854]]},"id":"8a44c0b5200ffff-17b7fdb76c768363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74196400000001,32.876821]},"id":"8f44c0b5200d872-17ddfcf88ec3a381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200d1a6-17f5fd6366ba55c8","8f44c0b5200d872-17ddfcf88ec3a381"]},"geometry":{"type":"LineString","coordinates":[[-83.741793,32.876854],[-83.741921,32.876824],[-83.74196400000001,32.876821]]},"id":"8b44c0b5200dfff-17d5fd2e3ef9d53c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740797,32.878075]},"id":"8f44c0b520e0ac6-13ddffd1e0eb9a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740837,32.878374]},"id":"8f44c0b520e145c-1397ffb8e34f4754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520e145c-1397ffb8e34f4754","8f44c0b520e0ac6-13ddffd1e0eb9a75"]},"geometry":{"type":"LineString","coordinates":[[-83.740797,32.878075],[-83.74082100000001,32.878127],[-83.740837,32.878174],[-83.740846,32.878221],[-83.74084500000001,32.878357],[-83.740837,32.878374]]},"id":"8a44c0b520e7fff-13bdffba0c5569b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740836,32.878829]},"id":"8f44c0b520ee0d1-13b5ffb98839011a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520ee0d1-13b5ffb98839011a","8f44c0b520e145c-1397ffb8e34f4754"]},"geometry":{"type":"LineString","coordinates":[[-83.740837,32.878374],[-83.740836,32.878829]]},"id":"8944c0b520fffff-13b5ffb93ab17d09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74035,32.878359]},"id":"8f44c0b520e3505-139e60e94d309172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520c550e-13bf8138da0fa349","8f44c0b520e3505-139e60e94d309172"]},"geometry":{"type":"LineString","coordinates":[[-83.7402227,32.878812],[-83.74024100000001,32.878762],[-83.74030900000001,32.878641],[-83.740336,32.878566],[-83.74034800000001,32.878489],[-83.74035,32.878359]]},"id":"8944c0b520fffff-139f8102e84ba49d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74006800000001,32.878365]},"id":"8f44c0b520c4982-1396219985afcac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520c4982-1396219985afcac4","8f44c0b520e3505-139e60e94d309172"]},"geometry":{"type":"LineString","coordinates":[[-83.74035,32.878359],[-83.740364,32.8777406],[-83.74034830000001,32.8774673],[-83.740077,32.877465],[-83.740064,32.877741],[-83.74006800000001,32.878365]]},"id":"8844c0b521fffff-13d7713fc409c71a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520c4982-1396219985afcac4","8f44c0b520c550e-13bf8138da0fa349"]},"geometry":{"type":"LineString","coordinates":[[-83.74006800000001,32.878365],[-83.74007200000001,32.878512],[-83.740083,32.878571],[-83.74010100000001,32.878627],[-83.740128,32.878683],[-83.74018600000001,32.878768],[-83.7402227,32.878812]]},"id":"8944c0b520fffff-13b6e17d36dcb1a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741971,32.878386]},"id":"8f44c0b52053909-139ffcf429fb4b56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52053909-139ffcf429fb4b56","8f44c0b520e145c-1397ffb8e34f4754"]},"geometry":{"type":"LineString","coordinates":[[-83.741971,32.878386],[-83.74168900000001,32.878394],[-83.74160300000001,32.8784],[-83.741425,32.878407],[-83.741246,32.878402],[-83.740837,32.878374]]},"id":"8844c0b521fffff-13b5fe56a816f4df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520e145c-1397ffb8e34f4754","8f44c0b520e3505-139e60e94d309172"]},"geometry":{"type":"LineString","coordinates":[[-83.740837,32.878374],[-83.740441,32.878355],[-83.74035,32.878359]]},"id":"8a44c0b520e7fff-1396f0511577152d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520c4982-1396219985afcac4","8f44c0b520e3505-139e60e94d309172"]},"geometry":{"type":"LineString","coordinates":[[-83.74035,32.878359],[-83.74006800000001,32.878365]]},"id":"8a44c0b520e7fff-1396414169d430ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520c4982-1396219985afcac4","8f44c0b520f1602-139642d987c602dc"]},"geometry":{"type":"LineString","coordinates":[[-83.74006800000001,32.878365],[-83.739767,32.87836],[-83.73955600000001,32.878362]]},"id":"8944c0b520fffff-1396323984d2279d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520f1602-139642d987c602dc","8f44c0b520d4594-139fa58feccbaded"]},"geometry":{"type":"LineString","coordinates":[[-83.73955600000001,32.878362],[-83.739241,32.87836],[-83.738662,32.878366],[-83.738445,32.878361000000005]]},"id":"8944c0b520fffff-13969434b84b5105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5208b369-139fa68121a5ceb8","8f44c0b520d4594-139fa58feccbaded"]},"geometry":{"type":"LineString","coordinates":[[-83.738445,32.878361000000005],[-83.738059,32.878361000000005]]},"id":"8844c0b521fffff-139fa60882b64bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5208b369-139fa68121a5ceb8","8f44c0b5208084b-17d7c7bb8931a10d"]},"geometry":{"type":"LineString","coordinates":[[-83.738059,32.878361000000005],[-83.73784400000001,32.878363],[-83.737763,32.878355],[-83.73768100000001,32.878342],[-83.737594,32.878318],[-83.737522,32.878287],[-83.737459,32.878245],[-83.73740400000001,32.878197],[-83.737358,32.878144],[-83.73732100000001,32.878087],[-83.737294,32.878024],[-83.73727500000001,32.877958],[-83.737239,32.87775],[-83.737221,32.877482],[-83.737235,32.877338],[-83.73730400000001,32.877018],[-83.73733100000001,32.876942],[-83.737364,32.876877],[-83.737407,32.876815],[-83.73755600000001,32.87663]]},"id":"8944c0b520bffff-13def80bd1bdbd14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5208084b-17d7c7bb8931a10d","8f44c0b52085c96-17dfe76b8c37efa1"]},"geometry":{"type":"LineString","coordinates":[[-83.73755600000001,32.87663],[-83.73759700000001,32.876575],[-83.737684,32.876435]]},"id":"8a44c0b52087fff-179f979276e58f0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737751,32.876236]},"id":"8f44c0b52084b76-17df8741a81231e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52084b76-17df8741a81231e6","8f44c0b52085c96-17dfe76b8c37efa1"]},"geometry":{"type":"LineString","coordinates":[[-83.737684,32.876435],[-83.73771,32.876368],[-83.737751,32.876236]]},"id":"8a44c0b52087fff-179e0755a27f5586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737852,32.87603]},"id":"8f44c0b520a3c8c-17dec70281b0c46f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52084b76-17df8741a81231e6","8f44c0b520a3c8c-17dec70281b0c46f"]},"geometry":{"type":"LineString","coordinates":[[-83.737751,32.876236],[-83.737778,32.876161],[-83.737809,32.876094],[-83.737852,32.87603]]},"id":"8944c0b520bffff-179f5725a1c8ec71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696374,32.898153]},"id":"8f44c0a232d82c3-13f7ec464cfa6707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232d8331-1397ec31a7007251","8f44c0a232d82c3-13f7ec464cfa6707"]},"geometry":{"type":"LineString","coordinates":[[-83.696374,32.898153],[-83.69640700000001,32.898009]]},"id":"8c44c0a232d83ff-13b6ec3bf4aa2254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69649100000001,32.897644]},"id":"8f44c0a232dc214-13b7ebfd23e3732f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232d8331-1397ec31a7007251","8f44c0a232dc214-13b7ebfd23e3732f"]},"geometry":{"type":"LineString","coordinates":[[-83.69640700000001,32.898009],[-83.69649100000001,32.897644]]},"id":"8a44c0a232dffff-1397fc176379b6a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232dc214-13b7ebfd23e3732f","8f44c0a232dc3ad-139e7bf7b9d33ab6"]},"geometry":{"type":"LineString","coordinates":[[-83.69649100000001,32.897644],[-83.6964997,32.8976033]]},"id":"8c44c0a232dc3ff-1396fbfa61e49d52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232dc3ad-139e7bf7b9d33ab6","8f44c0a232dc831-13f7ebe7e6f993a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6964997,32.8976033],[-83.696521,32.897503],[-83.69652500000001,32.89734]]},"id":"8b44c0a232dcfff-13be7bec3466f820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696331,32.896915]},"id":"8f44c0a232d5266-17dfec612ec48898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232d5266-17dfec612ec48898","8f44c0a232dc831-13f7ebe7e6f993a4"]},"geometry":{"type":"LineString","coordinates":[[-83.69652500000001,32.89734],[-83.696628,32.896991],[-83.696628,32.896945],[-83.69660800000001,32.896918],[-83.696574,32.896912],[-83.696399,32.896911],[-83.696331,32.896915]]},"id":"8944c0a232fffff-13befbde2edf2106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69080500000001,32.813680600000005]},"id":"8f44c0b1d62dac2-17b679dee0113e41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69171460000001,32.8137199]},"id":"8f44c0b1d75d4aa-17bef7a667cd1059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62dac2-17b679dee0113e41","8f44c0b1d75d4aa-17bef7a667cd1059"]},"geometry":{"type":"LineString","coordinates":[[-83.69080500000001,32.813680600000005],[-83.69160000000001,32.813716],[-83.69171460000001,32.8137199]]},"id":"8944c0b1d77ffff-17b778c2a46ef443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69186830000001,32.8137251]},"id":"8f44c0b1d75d095-17d677465e17517e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75d095-17d677465e17517e","8f44c0b1d75d4aa-17bef7a667cd1059"]},"geometry":{"type":"LineString","coordinates":[[-83.69171460000001,32.8137199],[-83.69186830000001,32.8137251]]},"id":"8b44c0b1d75dfff-17d6f7765281a564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928553,32.8137678]},"id":"8f44c0b1d74898e-17def4dd775e49f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74898e-17def4dd775e49f7","8f44c0b1d75d095-17d677465e17517e"]},"geometry":{"type":"LineString","coordinates":[[-83.69186830000001,32.8137251],[-83.692515,32.813747],[-83.69279,32.813761],[-83.6928553,32.8137678]]},"id":"8944c0b1d77ffff-17df7611cce0a5eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930415,32.8137946]},"id":"8f44c0b1d74d58b-17fff4691bbffb2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74898e-17def4dd775e49f7","8f44c0b1d74d58b-17fff4691bbffb2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6928553,32.8137678],[-83.6929832,32.8137812],[-83.6930415,32.8137946]]},"id":"8a44c0b1d74ffff-17f7f4a3069b40ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74d58b-17fff4691bbffb2f","8f44c0b1d74d414-17f6745dfcdc7b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6930415,32.8137946],[-83.6930593,32.8137987]]},"id":"8c44c0b1d74d5ff-17fef4638a28a198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6932474,32.8138418]},"id":"8f44c0b1d74d0ad-179f73e868229d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74d0ad-179f73e868229d13","8f44c0b1d74d414-17f6745dfcdc7b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6930593,32.8137987],[-83.6932474,32.8138418]]},"id":"8b44c0b1d74dfff-17fff4233796c6e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934497,32.8138883]},"id":"8f44c0b1d74dae2-17be7369f02b7ac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74d0ad-179f73e868229d13","8f44c0b1d74dae2-17be7369f02b7ac8"]},"geometry":{"type":"LineString","coordinates":[[-83.6932474,32.8138418],[-83.6934497,32.8138883]]},"id":"8b44c0b1d74dfff-179ff3a932598777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69364780000001,32.8139338]},"id":"8f44c0b1d2b66cc-17d6f2ee24e01671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74dae2-17be7369f02b7ac8","8f44c0b1d2b66cc-17d6f2ee24e01671"]},"geometry":{"type":"LineString","coordinates":[[-83.6934497,32.8138883],[-83.69364780000001,32.8139338]]},"id":"8744c0b1dffffff-17b6732c0bc21a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69384210000001,32.8139784]},"id":"8f44c0b1d2b0596-17f6f274b2428c19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b0596-17f6f274b2428c19","8f44c0b1d2b66cc-17d6f2ee24e01671"]},"geometry":{"type":"LineString","coordinates":[[-83.69364780000001,32.8139338],[-83.69384210000001,32.8139784]]},"id":"8a44c0b1d2b7fff-17d6f2b1624f88b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940409,32.814024]},"id":"8f44c0b1d2b019a-17ff71f87f226676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b0596-17f6f274b2428c19","8f44c0b1d2b019a-17ff71f87f226676"]},"geometry":{"type":"LineString","coordinates":[[-83.69384210000001,32.8139784],[-83.6940409,32.814024]]},"id":"8b44c0b1d2b0fff-17fef236929ac332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b019a-17ff71f87f226676","8f44c0b1d2b0028-179ff1b94e6653e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6940409,32.814024],[-83.694142,32.814047200000005]]},"id":"8c44c0b1d2b01ff-179671d8d0492c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b0028-179ff1b94e6653e4","8f44c0b1d2b0add-17d67162da494e7e"]},"geometry":{"type":"LineString","coordinates":[[-83.694142,32.814047200000005],[-83.6942803,32.814140800000004]]},"id":"8b44c0b1d2b0fff-17bef18e14addc3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b1134-179f70e5488c8563","8f44c0b1d2b0add-17d67162da494e7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6942803,32.814140800000004],[-83.6944812,32.8142768]]},"id":"8a44c0b1d2b7fff-17f6f12414e97de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b1134-179f70e5488c8563","8f44c0b1d2b1a03-17fef072829a47ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6944812,32.8142768],[-83.6946648,32.814401100000005]]},"id":"8b44c0b1d2b1fff-17d7f0abe2e794a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2a26ee-17977ffc1519ba8e","8f44c0b1d2b1a03-17fef072829a47ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6946648,32.814401100000005],[-83.6947481,32.8144575],[-83.6948543,32.814466100000004]]},"id":"8944c0b1d2bffff-1796f03a0f649773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2a22ed-179fff7addf7372e","8f44c0b1d2a26ee-17977ffc1519ba8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6948543,32.814466100000004],[-83.6950611,32.8144829]]},"id":"8b44c0b1d2a2fff-1796ffbb7e22d350"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6952062,32.814791400000004]},"id":"8f44c0b1d2a36c5-17deef2025d8a913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2a22ed-179fff7addf7372e","8f44c0b1d2a36c5-17deef2025d8a913"]},"geometry":{"type":"LineString","coordinates":[[-83.6950611,32.8144829],[-83.69519340000001,32.8144936],[-83.69522400000001,32.8146304],[-83.6952062,32.814791400000004]]},"id":"8944c0b1d2bffff-17f7ef2ca056cbe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d285114-17d7ef2b83369180","8f44c0b1d2a36c5-17deef2025d8a913"]},"geometry":{"type":"LineString","coordinates":[[-83.6952062,32.814791400000004],[-83.695188,32.814956200000005]]},"id":"8a44c0b1d287fff-17966f25db7f8cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69517370000001,32.8150852]},"id":"8f44c0b1d2850c0-13966f347ef2b29b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2850c0-13966f347ef2b29b","8f44c0b1d285114-17d7ef2b83369180"]},"geometry":{"type":"LineString","coordinates":[[-83.695188,32.814956200000005],[-83.69517370000001,32.8150852]]},"id":"8c44c0b1d2851ff-17ffff2ffba7bc30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6951569,32.8152376]},"id":"8f44c0b1d285649-13f7ef3ef8f78bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2850c0-13966f347ef2b29b","8f44c0b1d285649-13f7ef3ef8f78bd4"]},"geometry":{"type":"LineString","coordinates":[[-83.69517370000001,32.8150852],[-83.6951569,32.8152376]]},"id":"8b44c0b1d285fff-13d7ef39b53ddaba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71950600000001,32.928851]},"id":"8f44c0a2bd00542-17d7f3cccb7a5edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd00542-17d7f3cccb7a5edf","8f44c0a2bd0e859-179e728b82974c4d"]},"geometry":{"type":"LineString","coordinates":[[-83.71950600000001,32.928851],[-83.719891,32.928683],[-83.720141,32.928556],[-83.72020900000001,32.928547],[-83.720281,32.928551],[-83.72046800000001,32.928720000000006],[-83.720571,32.928806],[-83.72067700000001,32.928871],[-83.72085,32.928955],[-83.72093500000001,32.92898],[-83.7211,32.928993000000006],[-83.72121200000001,32.928987],[-83.72131800000001,32.928972],[-83.721412,32.928942],[-83.721579,32.928907],[-83.721658,32.928905],[-83.72171,32.928911],[-83.721761,32.928924],[-83.722243,32.929138],[-83.722295,32.929167],[-83.72235500000001,32.929229],[-83.722435,32.929322],[-83.72287800000001,32.92989],[-83.72290000000001,32.929933000000005],[-83.722898,32.930031],[-83.722886,32.93011],[-83.722858,32.930174],[-83.722761,32.930267],[-83.722677,32.930311],[-83.722593,32.930338],[-83.722481,32.930348],[-83.722385,32.930342],[-83.72227600000001,32.930311],[-83.72216200000001,32.930265],[-83.721996,32.930146],[-83.721933,32.930085000000005],[-83.72188700000001,32.930028],[-83.721852,32.929977],[-83.72178100000001,32.929806],[-83.721733,32.929729],[-83.72167,32.929678],[-83.721574,32.929644],[-83.72150900000001,32.929648],[-83.721424,32.929665],[-83.721331,32.929691000000005],[-83.72122200000001,32.929713],[-83.721102,32.929718],[-83.721017,32.929709],[-83.72082400000001,32.929616],[-83.72058100000001,32.929509],[-83.7205,32.92949],[-83.720415,32.929479],[-83.72032,32.92949],[-83.72023200000001,32.929507],[-83.72008600000001,32.929564],[-83.72002,32.929575]]},"id":"8844c0a2bdfffff-17b67f1865d9a4dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd00542-17d7f3cccb7a5edf","8f44c0a2bd0e859-179e728b82974c4d"]},"geometry":{"type":"LineString","coordinates":[[-83.72002,32.929575],[-83.71993,32.929566],[-83.719845,32.929547],[-83.719772,32.929508000000006],[-83.71973100000001,32.929474],[-83.71968700000001,32.929405],[-83.71965900000001,32.92934],[-83.719593,32.929079],[-83.71950600000001,32.928851]]},"id":"8944c0a2bd3ffff-17f7f356a0c393b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd00542-17d7f3cccb7a5edf","8f44c0a2bd065ad-17f6f4d8e5ec4232"]},"geometry":{"type":"LineString","coordinates":[[-83.71950600000001,32.928851],[-83.719443,32.928764],[-83.71938300000001,32.92869],[-83.719318,32.928624],[-83.7192,32.928547],[-83.719077,32.928491]]},"id":"8a44c0a2bd07fff-17d634465098b08d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718506,32.928204]},"id":"8f44c0a2bd148ac-17bfb63dcc731fbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd065ad-17f6f4d8e5ec4232","8f44c0a2bd148ac-17bfb63dcc731fbf"]},"geometry":{"type":"LineString","coordinates":[[-83.719077,32.928491],[-83.718506,32.928204]]},"id":"8944c0a2bd3ffff-179f358b52d6c6c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa4e973-13d678a74ef3a2f8","8f44c0a2bd148ac-17bfb63dcc731fbf"]},"geometry":{"type":"LineString","coordinates":[[-83.718506,32.928204],[-83.718455,32.928162],[-83.718412,32.928086],[-83.71837500000001,32.927729],[-83.718345,32.927549],[-83.71829000000001,32.927493000000005],[-83.717905,32.927323],[-83.717691,32.9272],[-83.71759,32.927189000000006],[-83.717518,32.927191]]},"id":"8644c0a2fffffff-13b6b723562ff2c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71725400000001,32.92725]},"id":"8f44c0a2aa4ecf1-13ff794c4dcb7f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa4ecf1-13ff794c4dcb7f76","8f44c0a2aa4e973-13d678a74ef3a2f8"]},"geometry":{"type":"LineString","coordinates":[[-83.717518,32.927191],[-83.717437,32.927197],[-83.717341,32.927208],[-83.717284,32.927225],[-83.71725400000001,32.92725]]},"id":"8b44c0a2aa4efff-13d738fc811a313e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71687100000001,32.9272036]},"id":"8f44c0a2aa436f4-13de7a3bab855be3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa436f4-13de7a3bab855be3","8f44c0a2aa4ecf1-13ff794c4dcb7f76"]},"geometry":{"type":"LineString","coordinates":[[-83.71725400000001,32.92725],[-83.71687100000001,32.9272036]]},"id":"8944c0a2aa7ffff-13def9c3f2dde098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa4ecf1-13ff794c4dcb7f76","8f44c0a2aa4e684-1397b9726983d7a8"]},"geometry":{"type":"LineString","coordinates":[[-83.71725400000001,32.92725],[-83.717208,32.927318],[-83.717208,32.927428],[-83.71719300000001,32.9275]]},"id":"8b44c0a2aa4efff-13b6b965eb814da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa4e684-1397b9726983d7a8","8f44c0a2bd148ac-17bfb63dcc731fbf"]},"geometry":{"type":"LineString","coordinates":[[-83.71719300000001,32.9275],[-83.71715800000001,32.927605],[-83.71713100000001,32.927743],[-83.71711,32.927909],[-83.71709,32.928255],[-83.71709100000001,32.928417],[-83.71710900000001,32.928489],[-83.717161,32.928579],[-83.71721500000001,32.92866],[-83.71727700000001,32.928711],[-83.717336,32.928735],[-83.71742400000001,32.928739],[-83.71776600000001,32.928688],[-83.717875,32.928665],[-83.717948,32.928637],[-83.718034,32.928579],[-83.718506,32.928204]]},"id":"8644c0a2fffffff-179ef8967d1aa256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691557,32.869328]},"id":"8f44c0a2078655a-17967808e32d094a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a207958cd-17bf78980ef0ba4c","8f44c0a2078655a-17967808e32d094a"]},"geometry":{"type":"LineString","coordinates":[[-83.691557,32.869328],[-83.691328,32.869391]]},"id":"8944c0a207bffff-1797f8507db4ba46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a207958cd-17bf78980ef0ba4c","8f44c0a2078655a-17967808e32d094a"]},"geometry":{"type":"LineString","coordinates":[[-83.691328,32.869391],[-83.691372,32.869473],[-83.69140900000001,32.869566],[-83.691426,32.869632],[-83.69143600000001,32.869705],[-83.691432,32.869767],[-83.691421,32.869841],[-83.691371,32.869979],[-83.691373,32.870021],[-83.691383,32.870074],[-83.69141400000001,32.87012],[-83.69146500000001,32.870147],[-83.69155,32.870168],[-83.692148,32.870193],[-83.69232600000001,32.870196],[-83.69244300000001,32.870189],[-83.692564,32.870174],[-83.692812,32.87012],[-83.692892,32.870075],[-83.692953,32.870024],[-83.692993,32.869968],[-83.69301700000001,32.869915],[-83.69302300000001,32.869855],[-83.693008,32.869793],[-83.692959,32.869703],[-83.692912,32.869631000000005],[-83.69286500000001,32.86941],[-83.692824,32.86927],[-83.692789,32.869204],[-83.69275400000001,32.869169],[-83.6927,32.869128],[-83.692645,32.869113],[-83.69259600000001,32.86912],[-83.69254400000001,32.86914],[-83.692486,32.869193],[-83.692434,32.869258],[-83.692373,32.869307],[-83.69230900000001,32.869338],[-83.69226,32.869351],[-83.69220200000001,32.869349],[-83.69205000000001,32.869318],[-83.691947,32.869306],[-83.691832,32.869301],[-83.691692,32.86931],[-83.691557,32.869328]]},"id":"8944c0a207bffff-17fef674a1c245c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6220557,32.791090100000005]},"id":"8f44c0badd95b55-17ff71b739d33f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0bae37184c-13f761f4a9bcf330","8f44c0badd95b55-17ff71b739d33f54"]},"geometry":{"type":"LineString","coordinates":[[-83.595743,32.796402],[-83.597215,32.796033],[-83.59740000000001,32.795969],[-83.59761200000001,32.795878],[-83.59781600000001,32.795763],[-83.597952,32.795654],[-83.598032,32.795547],[-83.598116,32.795347],[-83.598179,32.795141],[-83.598298,32.794721],[-83.59839500000001,32.794479],[-83.59851300000001,32.794237],[-83.59863700000001,32.794001],[-83.598825,32.793774],[-83.59916700000001,32.793402],[-83.599423,32.793186],[-83.599715,32.792986],[-83.59998800000001,32.792853],[-83.60033,32.79271],[-83.600693,32.792581000000006],[-83.60097400000001,32.792488],[-83.601787,32.79235],[-83.602034,32.792276],[-83.602424,32.792093],[-83.603705,32.792188],[-83.604736,32.792206],[-83.605806,32.792265],[-83.60603800000001,32.792264],[-83.60624,32.792322],[-83.606609,32.79245],[-83.60682700000001,32.792482],[-83.607141,32.792482],[-83.60741700000001,32.792474],[-83.607594,32.792459],[-83.60846500000001,32.79233],[-83.611174,32.791877],[-83.612544,32.791783],[-83.61526900000001,32.791579],[-83.6180909,32.791353300000004],[-83.6193027,32.7912977],[-83.61999390000001,32.7912918],[-83.6208636,32.7912918],[-83.6211274,32.7912881],[-83.621429,32.791262700000004],[-83.6216887,32.7912042],[-83.6220557,32.791090100000005]]},"id":"8644c0bafffffff-1397c36d605c217e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6225735,32.790866]},"id":"8f44c0badd84402-17f7607396b8fef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0badd95b55-17ff71b739d33f54","8f44c0badd84402-17f7607396b8fef3"]},"geometry":{"type":"LineString","coordinates":[[-83.6220557,32.791090100000005],[-83.6223045,32.7909791],[-83.6225735,32.790866]]},"id":"8a44c0badd87fff-17bf7115c01bc48d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5702713,32.7981191]},"id":"8f44c0b85a9d685-17bff02478dfcfe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56994900000001,32.798214]},"id":"8f44c0b85a982b6-17f7e0ede4549dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85a982b6-17f7e0ede4549dad","8f44c0b85a9d685-17bff02478dfcfe1"]},"geometry":{"type":"LineString","coordinates":[[-83.5702713,32.7981191],[-83.570186,32.798169],[-83.570081,32.798197],[-83.56994900000001,32.798214]]},"id":"8a44c0b85a9ffff-17dff0864abc6f8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85a982b6-17f7e0ede4549dad","8f44c0b8515acd0-13ffe884939d053d"]},"geometry":{"type":"LineString","coordinates":[[-83.56994900000001,32.798214],[-83.569748,32.798095],[-83.56818100000001,32.79711],[-83.56796100000001,32.796962],[-83.567667,32.796709],[-83.56748800000001,32.796526],[-83.567367,32.796391],[-83.567239,32.796233],[-83.5668407,32.7957982]]},"id":"8744c0b85ffffff-17bfe4ec1135c02f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680485,32.787066]},"id":"8f44c0b1c8c00f6-13bed310e60dfa79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68027400000001,32.78707]},"id":"8f44c0b1c8c048b-13bed394cafe8042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8c00f6-13bed310e60dfa79","8f44c0b1c8c048b-13bed394cafe8042"]},"geometry":{"type":"LineString","coordinates":[[-83.680485,32.787066],[-83.68027400000001,32.78707]]},"id":"8a44c0b1c8c7fff-13bf9352d125ea06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8c048b-13bed394cafe8042","8f44c0b1c8c26b0-17b6d496ea487559"]},"geometry":{"type":"LineString","coordinates":[[-83.68027400000001,32.78707],[-83.680209,32.787135],[-83.680142,32.787176],[-83.68005500000001,32.787211],[-83.679861,32.787278]]},"id":"8b44c0b1c8c2fff-13fed40f4227d9c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d14f1-17b6d5d5ad4448c4","8f44c0b1c8c26b0-17b6d496ea487559"]},"geometry":{"type":"LineString","coordinates":[[-83.679861,32.787278],[-83.67977,32.787293000000005],[-83.679409,32.787294],[-83.67935100000001,32.787278]]},"id":"8944c0b1c8fffff-17bf953694a8fa46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679215,32.787633]},"id":"8f44c0b1c8de58c-179eb62aa978b898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d14f1-17b6d5d5ad4448c4","8f44c0b1c8de58c-179eb62aa978b898"]},"geometry":{"type":"LineString","coordinates":[[-83.67935100000001,32.787278],[-83.679291,32.787315],[-83.679237,32.78736],[-83.679214,32.787405],[-83.679215,32.787633]]},"id":"8944c0b1c8fffff-1796b619ce04b9d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617682,32.820766]},"id":"8f44c0ba9540ba4-17f7ec64cc6f8758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9540ba4-17f7ec64cc6f8758","8f44c0ba9545466-17d76becc2483326"]},"geometry":{"type":"LineString","coordinates":[[-83.617682,32.820766],[-83.617874,32.820722]]},"id":"8a44c0ba9547fff-17f72c28ca801b71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701966,32.89622]},"id":"8f44c0a2326d4ac-17bfde9f4fb5423d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2324e228-13f6e19d82163d14","8f44c0a2326d4ac-17bfde9f4fb5423d"]},"geometry":{"type":"LineString","coordinates":[[-83.701966,32.89622],[-83.701762,32.896315],[-83.70156100000001,32.896393],[-83.701395,32.89645],[-83.70124100000001,32.896531],[-83.70112200000001,32.896625],[-83.70091500000001,32.896818],[-83.700861,32.896863],[-83.700776,32.896934],[-83.700743,32.897024],[-83.70074000000001,32.897134]]},"id":"8944c0a2327ffff-1797f0547ff129c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700766,32.897429]},"id":"8f44c0a2324ab5d-139f618d4bf24880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2324e228-13f6e19d82163d14","8f44c0a2324ab5d-139f618d4bf24880"]},"geometry":{"type":"LineString","coordinates":[[-83.70074000000001,32.897134],[-83.70077500000001,32.89716],[-83.700766,32.897429]]},"id":"8a44c0a2324ffff-13be718b9df578e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69876430000001,32.898697600000006]},"id":"8f44c0a2e5b3709-17b666705768e80f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697361,32.897759]},"id":"8f44c0a232cea93-13ff69dd67535556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2e5b3709-17b666705768e80f","8f44c0a232cea93-13ff69dd67535556"]},"geometry":{"type":"LineString","coordinates":[[-83.69876430000001,32.898697600000006],[-83.698818,32.898477],[-83.69889,32.898215],[-83.69886100000001,32.898147],[-83.69876400000001,32.898107],[-83.697361,32.897759]]},"id":"8544c0a3fffffff-13b6678e13822602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69704300000001,32.8977]},"id":"8f44c0a232ce412-13d6eaa428a24db8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232cea93-13ff69dd67535556","8f44c0a232ce412-13d6eaa428a24db8"]},"geometry":{"type":"LineString","coordinates":[[-83.697361,32.897759],[-83.69704300000001,32.8977]]},"id":"8b44c0a232cefff-13defa40c04b8401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693509,32.897653000000005]},"id":"8f44c0a0590050b-13bf7344e41cf285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0590050b-13bf7344e41cf285","8f44c0a05931a2b-17fe72f2bcc6c8d1"]},"geometry":{"type":"LineString","coordinates":[[-83.693509,32.897653000000005],[-83.69352400000001,32.897553],[-83.693522,32.897475],[-83.693483,32.89741],[-83.69331600000001,32.897275],[-83.69328200000001,32.897218],[-83.693275,32.897157],[-83.69329,32.897091],[-83.69332,32.89705],[-83.69339400000001,32.897029],[-83.69355200000001,32.896994],[-83.6936405,32.896966400000004]]},"id":"8944c0a0593ffff-13b6f377d5aa85ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0592c82b-13bf6f0f61652b0d","8f44c0a05931a2b-17fe72f2bcc6c8d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6936405,32.896966400000004],[-83.693735,32.896937],[-83.693853,32.896915],[-83.694817,32.896912],[-83.694979,32.896929],[-83.695051,32.896973],[-83.695124,32.897052],[-83.69517300000001,32.897132],[-83.695233,32.897253]]},"id":"8944c0a0593ffff-17f770d87b01fedb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0592c82b-13bf6f0f61652b0d","8f44c0a232dc214-13b7ebfd23e3732f"]},"geometry":{"type":"LineString","coordinates":[[-83.695233,32.897253],[-83.695285,32.897295],[-83.695352,32.897323],[-83.695458,32.897336],[-83.695721,32.89736],[-83.69582700000001,32.897382],[-83.69589300000001,32.897427],[-83.69597900000001,32.897511],[-83.69607500000001,32.897585],[-83.69615,32.897626],[-83.69649100000001,32.897644]]},"id":"8744c0a23ffffff-13b7ed87d56d7943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71602,32.917343]},"id":"8f44c0a284b1d5e-13bf7c4f802a119d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28494cdd-13f67ecf8140a08e","8f44c0a284b1d5e-13bf7c4f802a119d"]},"geometry":{"type":"LineString","coordinates":[[-83.71602,32.917343],[-83.715862,32.917505000000006],[-83.715793,32.917547],[-83.71570700000001,32.917558],[-83.71534700000001,32.917561],[-83.71521100000001,32.917575],[-83.715123,32.917592],[-83.715051,32.917614],[-83.714996,32.917639]]},"id":"8944c0a284bffff-13b7bd7f626cb094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28494cdd-13f67ecf8140a08e","8f44c0a284a9033-1796b78ea264dd4e"]},"geometry":{"type":"LineString","coordinates":[[-83.714996,32.917639],[-83.714921,32.91771],[-83.714505,32.918042],[-83.714459,32.918101],[-83.71444100000001,32.918159],[-83.71444100000001,32.918308],[-83.71445,32.918405],[-83.714489,32.918481],[-83.71465500000001,32.918639],[-83.714724,32.918671],[-83.714838,32.918685],[-83.715514,32.918695],[-83.715587,32.918686],[-83.71563400000001,32.918663],[-83.715666,32.918628000000005],[-83.715674,32.918571],[-83.71567900000001,32.918363],[-83.715691,32.918295],[-83.71574100000001,32.918233],[-83.7158,32.918171],[-83.71587500000001,32.918121],[-83.715956,32.918093],[-83.71605600000001,32.918094],[-83.71614100000001,32.918107],[-83.716392,32.918236],[-83.71643200000001,32.918278],[-83.716452,32.918337],[-83.716465,32.918414],[-83.716459,32.918616],[-83.71647800000001,32.918646],[-83.716515,32.918663],[-83.716578,32.918669],[-83.717967,32.918689]]},"id":"8644c0a2fffffff-17f73cb53c74d744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a284ad186-13dff7606caf0c9c","8f44c0a284a9033-1796b78ea264dd4e"]},"geometry":{"type":"LineString","coordinates":[[-83.717967,32.918689],[-83.718002,32.918664],[-83.718022,32.918633],[-83.71804,32.91858],[-83.718046,32.918495],[-83.718041,32.918214]]},"id":"8a44c0a284affff-17f7776455bf3a18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718579,32.917709]},"id":"8f44c0a28411543-13b636102d90d19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a284ad186-13dff7606caf0c9c","8f44c0a28411543-13b636102d90d19d"]},"geometry":{"type":"LineString","coordinates":[[-83.718041,32.918214],[-83.71807700000001,32.918118],[-83.71813900000001,32.918027],[-83.71820600000001,32.917946],[-83.718287,32.917884],[-83.718433,32.91781],[-83.718579,32.917709]]},"id":"8844c0a285fffff-13beb6cd921aa6b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74120400000001,32.876194000000005]},"id":"8f44c0b520018c4-17d5fed38167942b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74116000000001,32.876157]},"id":"8f44c0b52001885-17bffeef0c5fab5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520018c4-17d5fed38167942b","8f44c0b52001885-17bffeef0c5fab5d"]},"geometry":{"type":"LineString","coordinates":[[-83.74120400000001,32.876194000000005],[-83.74116000000001,32.876157]]},"id":"8c44c0b520019ff-17bdfee1468a6fb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520018c4-17d5fed38167942b","8f44c0b52001885-17bffeef0c5fab5d"]},"geometry":{"type":"LineString","coordinates":[[-83.74116000000001,32.876157],[-83.741129,32.876254],[-83.741127,32.876281],[-83.741135,32.876303],[-83.741151,32.876319],[-83.741173,32.87633],[-83.74119800000001,32.876329000000005],[-83.74122200000001,32.876322],[-83.741241,32.876308],[-83.741252,32.876289],[-83.741253,32.876271],[-83.741247,32.876251],[-83.74120400000001,32.876194000000005]]},"id":"8b44c0b52001fff-17f5fedf37b42333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70234640000001,32.9168455]},"id":"8f44c0a2ac0d164-13967db180cb81e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac0d164-13967db180cb81e5","8f44c0a2ac09d95-13b75e90e34c3565"]},"geometry":{"type":"LineString","coordinates":[[-83.70234640000001,32.9168455],[-83.70198900000001,32.917122]]},"id":"8a44c0a2ac0ffff-13dede2135042ad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac0b518-13d6ffd223c582eb","8f44c0a2ac09d95-13b75e90e34c3565"]},"geometry":{"type":"LineString","coordinates":[[-83.70198900000001,32.917122],[-83.70188300000001,32.917205],[-83.70170200000001,32.91729],[-83.701475,32.917377]]},"id":"8a44c0a2ac0ffff-139e5f2c77288304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac0b518-13d6ffd223c582eb","8f44c0a2acf4844-13bfe35ee2484357"]},"geometry":{"type":"LineString","coordinates":[[-83.701475,32.917377],[-83.701327,32.917433],[-83.70116900000001,32.917482],[-83.701068,32.917509],[-83.700964,32.917518],[-83.70068400000001,32.917501],[-83.700512,32.917473],[-83.700203,32.917406],[-83.700096,32.917370000000005],[-83.700021,32.917324]]},"id":"8844c0a2adfffff-1396619a17231423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2acad281-13967447f8ffa04e","8f44c0a2acf4844-13bfe35ee2484357"]},"geometry":{"type":"LineString","coordinates":[[-83.700021,32.917324],[-83.699937,32.917267],[-83.699831,32.917149],[-83.699679,32.916942],[-83.6996481,32.916838500000004]]},"id":"8844c0a2adfffff-13b7f3e3d4a5daa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994816,32.9159007]},"id":"8f44c0a2ac12169-17b7f4b00cc3d95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2acad281-13967447f8ffa04e","8f44c0a2ac12169-17b7f4b00cc3d95f"]},"geometry":{"type":"LineString","coordinates":[[-83.6996481,32.916838500000004],[-83.699639,32.916784],[-83.69961,32.916182],[-83.69959700000001,32.91611],[-83.69956900000001,32.916041],[-83.6994816,32.9159007]]},"id":"8844c0a2adfffff-17d7e4639fee55eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac12169-17b7f4b00cc3d95f","8f44c0a2ac128de-179664c782b8b4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6994816,32.9159007],[-83.699444,32.91584]]},"id":"8b44c0a2ac12fff-17b764bbc375bbcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aca1b6a-17fef56ff46d1ba7","8f44c0a2ac12169-17b7f4b00cc3d95f"]},"geometry":{"type":"LineString","coordinates":[[-83.6994816,32.9159007],[-83.69917450000001,32.9160173]]},"id":"8b44c0a2ac12fff-17de65100727964e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6987522,32.9159628]},"id":"8f44c0a2aca1509-17dee677ef3e7739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2aca1b6a-17fef56ff46d1ba7","8f44c0a2aca1509-17dee677ef3e7739"]},"geometry":{"type":"LineString","coordinates":[[-83.69917450000001,32.9160173],[-83.6988254,32.9161353],[-83.6987522,32.9159628]]},"id":"8a44c0a2aca7fff-179ff60982624128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62663140000001,32.8410998]},"id":"8f44c0a36b150a0-1797768b663fd222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36b3572e-17ffb4cd513d70ce","8f44c0a36b150a0-1797768b663fd222"]},"geometry":{"type":"LineString","coordinates":[[-83.62663140000001,32.8410998],[-83.6273451,32.8402058]]},"id":"8944c0a36b3ffff-179715ac5dacc3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36b3572e-17ffb4cd513d70ce","8f44c0a3449b201-179ff4204995ddf3"]},"geometry":{"type":"LineString","coordinates":[[-83.6273451,32.8402058],[-83.627622,32.839859000000004]]},"id":"8944c0a36b3ffff-17ff5476d94d2feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62770540000001,32.8397546]},"id":"8f44c0a3449bae6-17dfb3ec2a1077d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3449bae6-17dfb3ec2a1077d4","8f44c0a3449b201-179ff4204995ddf3"]},"geometry":{"type":"LineString","coordinates":[[-83.627622,32.839859000000004],[-83.62763650000001,32.839840800000005],[-83.62770540000001,32.8397546]]},"id":"8b44c0a3449bfff-17ff54063359abe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662177,32.786163]},"id":"8f44c0b112ce555-13f7ffc36f154e25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112ce2cb-13bebf3da4bb8d6c","8f44c0b112ce555-13f7ffc36f154e25"]},"geometry":{"type":"LineString","coordinates":[[-83.662177,32.786163],[-83.662294,32.786344],[-83.662391,32.786445]]},"id":"8b44c0b112cefff-13d7bf848ee1ea8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666032,32.786819]},"id":"8f44c0b1c512c10-1397f65a09a50593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112ce2cb-13bebf3da4bb8d6c","8f44c0b1c512c10-1397f65a09a50593"]},"geometry":{"type":"LineString","coordinates":[[-83.662391,32.786445],[-83.66265,32.786524],[-83.662684,32.78653],[-83.662771,32.786537],[-83.66359,32.786561],[-83.66512900000001,32.786583],[-83.665615,32.78669],[-83.666032,32.786819]]},"id":"8644c0b1fffffff-1396fac7deeeb54d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701034,32.916421]},"id":"8f44c0a2ac030dc-17ff60e5c0623f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac030dc-17ff60e5c0623f85","8f44c0a2ac032e0-17d6e0a063f4fde9"]},"geometry":{"type":"LineString","coordinates":[[-83.701034,32.916421],[-83.70114500000001,32.916542]]},"id":"8b44c0a2ac03fff-17b6f0c31f3e84b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ac030dc-17ff60e5c0623f85","8f44c0a2ac032e0-17d6e0a063f4fde9"]},"geometry":{"type":"LineString","coordinates":[[-83.70114500000001,32.916542],[-83.700806,32.916697],[-83.700761,32.916699],[-83.700725,32.916687],[-83.70064400000001,32.916556],[-83.700643,32.916528],[-83.700666,32.916508],[-83.700941,32.916403],[-83.700975,32.916396],[-83.70100400000001,32.916401],[-83.701034,32.916421]]},"id":"8944c0a2ac3ffff-17dee15723ec121f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73800800000001,32.878797]},"id":"8f44c0b520d2c30-13b626a105158bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520d2c30-13b626a105158bb8","8f44c0b520d2d50-139e467cc828066b"]},"geometry":{"type":"LineString","coordinates":[[-83.73800800000001,32.878797],[-83.738066,32.878794]]},"id":"8c44c0b520d2dff-139f368ee4d2eb03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520d2c30-13b626a105158bb8","8f44c0b520d2d50-139e467cc828066b"]},"geometry":{"type":"LineString","coordinates":[[-83.738066,32.878794],[-83.738065,32.878852],[-83.738059,32.8789],[-83.73804100000001,32.878939],[-83.738009,32.878966000000005],[-83.73796800000001,32.878977],[-83.73787300000001,32.878985],[-83.73764,32.878985],[-83.737593,32.878982],[-83.73755600000001,32.878968],[-83.73752900000001,32.878946],[-83.73751200000001,32.878921000000005],[-83.73750600000001,32.878892],[-83.737509,32.878861],[-83.73752,32.878836],[-83.73754000000001,32.878814000000006],[-83.737567,32.878802],[-83.737594,32.878797],[-83.73800800000001,32.878797]]},"id":"8744c0b52ffffff-13df972e76fc7d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6192886,32.8402091]},"id":"8f44c0a3612e899-17ffb878a9ecc452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3612e899-17ffb878a9ecc452","8f44c0a3612892b-17ff275070eaea73"]},"geometry":{"type":"LineString","coordinates":[[-83.6192886,32.8402091],[-83.61976250000001,32.84044]]},"id":"8a44c0a3612ffff-17b7e7e49bc2989d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36165066-13bfb1abf37ad9e0","8f44c0a3612892b-17ff275070eaea73"]},"geometry":{"type":"LineString","coordinates":[[-83.61976250000001,32.84044],[-83.6198536,32.8404906],[-83.620103,32.840611],[-83.62055000000001,32.840811],[-83.620896,32.840988],[-83.62134830000001,32.841274500000004],[-83.6218035,32.8416118],[-83.6220737,32.8417467]]},"id":"8844c0a361fffff-17ffe472c7d05b7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741297,32.878833]},"id":"8f44c0b520ec671-13b7fe99692f9772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520ee0d1-13b5ffb98839011a","8f44c0b520ec671-13b7fe99692f9772"]},"geometry":{"type":"LineString","coordinates":[[-83.741297,32.878833],[-83.740836,32.878829]]},"id":"8a44c0b520effff-13b5ff297348ffae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520ee0d1-13b5ffb98839011a","8f44c0b520ec671-13b7fe99692f9772"]},"geometry":{"type":"LineString","coordinates":[[-83.740836,32.878829],[-83.740835,32.878904],[-83.740842,32.878952000000005],[-83.74086000000001,32.878988],[-83.74089000000001,32.879018],[-83.74092900000001,32.879035],[-83.740975,32.879046],[-83.741258,32.87905],[-83.74130600000001,32.879043],[-83.741349,32.879028000000005],[-83.741383,32.879007],[-83.741404,32.87898],[-83.741414,32.87895],[-83.74141300000001,32.878919],[-83.741404,32.878894],[-83.741387,32.878872],[-83.74136200000001,32.878853],[-83.741331,32.878839],[-83.741297,32.878833]]},"id":"8a44c0b520effff-1797fefc2c4a301e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74070300000001,32.878062]},"id":"8f44c0b520e006a-13d6c00ca2f668da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520e006a-13d6c00ca2f668da","8f44c0b520e0ac6-13ddffd1e0eb9a75"]},"geometry":{"type":"LineString","coordinates":[[-83.74070300000001,32.878062],[-83.740797,32.878075]]},"id":"8b44c0b520e0fff-13ddffef42f61b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520e0ac6-13ddffd1e0eb9a75","8f44c0b520e006a-13d6c00ca2f668da"]},"geometry":{"type":"LineString","coordinates":[[-83.740797,32.878075],[-83.740751,32.877975],[-83.74073,32.877955],[-83.740705,32.877944],[-83.740679,32.877944],[-83.740655,32.877952],[-83.74063600000001,32.877967000000005],[-83.740626,32.877985],[-83.74062500000001,32.878006],[-83.740634,32.878025],[-83.740651,32.878042],[-83.74070300000001,32.878062]]},"id":"8b44c0b520e0fff-13be100e0ab9dafd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580117,32.844852]},"id":"8f44c0b8c2cb0b0-13d7881aea6a5108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c2cb0b0-13d7881aea6a5108","8f44c0b8d596ce5-13dfc738a487d77e"]},"geometry":{"type":"LineString","coordinates":[[-83.580117,32.844852],[-83.58047900000001,32.84507]]},"id":"8644c0b8fffffff-1397a7a9cd535dce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d596ce5-13dfc738a487d77e","8f44c0b8d584c99-13dfe309681a7fff"]},"geometry":{"type":"LineString","coordinates":[[-83.58047900000001,32.84507],[-83.58066000000001,32.845186000000005],[-83.58076000000001,32.845239],[-83.580819,32.845264],[-83.58086,32.845267],[-83.58090100000001,32.845261],[-83.58096,32.845225],[-83.581263,32.844935],[-83.58153700000001,32.844682],[-83.58158200000001,32.844665],[-83.58161700000001,32.844659],[-83.58165600000001,32.844661],[-83.58168500000001,32.844669],[-83.581739,32.844706],[-83.582193,32.845075]]},"id":"8944c0b8d5bffff-139fe519343d2594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56938600000001,32.84218]},"id":"8f44c0b8c6d42e2-13bfa24dc5a76fa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56942400000001,32.842826]},"id":"8f44c0b8c6d17ac-13dfe2360f2964d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6d42e2-13bfa24dc5a76fa5","8f44c0b8c6d17ac-13dfe2360f2964d9"]},"geometry":{"type":"LineString","coordinates":[[-83.56938600000001,32.84218],[-83.56942400000001,32.842826]]},"id":"8a44c0b8c6d7fff-1397e241e629f7d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6da926-17bfa22c0d13cae8","8f44c0b8c6d17ac-13dfe2360f2964d9"]},"geometry":{"type":"LineString","coordinates":[[-83.56942400000001,32.842826],[-83.569449,32.843317],[-83.56944,32.84338]]},"id":"8944c0b8c6fffff-17ffa22da86215e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6da926-17bfa22c0d13cae8","8f44c0b88d0d91a-17d7e4e30a027a65"]},"geometry":{"type":"LineString","coordinates":[[-83.56944,32.84338],[-83.569426,32.843418],[-83.56939,32.843491],[-83.569345,32.843555],[-83.56924400000001,32.843642],[-83.56917800000001,32.843679],[-83.56832800000001,32.84407]]},"id":"8844c0b88dfffff-179ff36bd8cce447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56883900000001,32.842844]},"id":"8f44c0b8c6d34a8-13dfa3a3a759ea6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6d17ac-13dfe2360f2964d9","8f44c0b8c6d34a8-13dfa3a3a759ea6b"]},"geometry":{"type":"LineString","coordinates":[[-83.56883900000001,32.842844],[-83.56942400000001,32.842826]]},"id":"8a44c0b8c6d7fff-13d7e2ecdd833f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.569877,32.842809]},"id":"8f44c0b8c6c268d-13d7a11ae547306f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6c268d-13d7a11ae547306f","8f44c0b8c6d17ac-13dfe2360f2964d9"]},"geometry":{"type":"LineString","coordinates":[[-83.56942400000001,32.842826],[-83.569877,32.842809]]},"id":"8944c0b8c6fffff-13dff1a87d6f41a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76889200000001,32.848819]},"id":"8f44c0b54014d8c-13fffb3a82dbbe5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769422,32.849201]},"id":"8f44c0b540158a3-13dfb9ef46096854"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b540158a3-13dfb9ef46096854","8f44c0b54014d8c-13fffb3a82dbbe5a"]},"geometry":{"type":"LineString","coordinates":[[-83.76889200000001,32.848819],[-83.769422,32.849201]]},"id":"8a44c0b54017fff-13f7fa94e4ebff2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b540158a3-13dfb9ef46096854","8f44c0b54014d8c-13fffb3a82dbbe5a"]},"geometry":{"type":"LineString","coordinates":[[-83.769422,32.849201],[-83.76942700000001,32.849131],[-83.769416,32.848598],[-83.769417,32.848197],[-83.769388,32.848064],[-83.769339,32.847963],[-83.769282,32.847923],[-83.769202,32.847898],[-83.769146,32.847892],[-83.769001,32.847886],[-83.76882,32.847893],[-83.768743,32.847901],[-83.76858,32.84796],[-83.76849800000001,32.84803],[-83.76845700000001,32.848104],[-83.768449,32.848166],[-83.768448,32.848225],[-83.768468,32.848369000000005],[-83.768512,32.848483],[-83.768574,32.848564],[-83.768651,32.84863],[-83.76889200000001,32.848819]]},"id":"8844c0b541fffff-13ddfaf107b6c567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706287,32.824125]},"id":"8f44c0b0a46c20e-17b67412a8414592"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a46c20e-17b67412a8414592","8f44c0b0a46e30e-17d655318b276389"]},"geometry":{"type":"LineString","coordinates":[[-83.706287,32.824125],[-83.70582800000001,32.82417]]},"id":"8a44c0b0a46ffff-17b674a218baada1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a46c20e-17b67412a8414592","8f44c0b0a46e30e-17d655318b276389"]},"geometry":{"type":"LineString","coordinates":[[-83.70582800000001,32.82417],[-83.705723,32.824091],[-83.705639,32.824011],[-83.70557500000001,32.823923],[-83.70553000000001,32.823835],[-83.705517,32.823742],[-83.705533,32.823214],[-83.70555300000001,32.823149],[-83.705589,32.823099],[-83.705651,32.823075],[-83.70650900000001,32.823081],[-83.706584,32.823092],[-83.70663800000001,32.823117],[-83.70668,32.823161],[-83.70669600000001,32.823227],[-83.706698,32.823574],[-83.706692,32.823979],[-83.706647,32.824047],[-83.70658200000001,32.824094],[-83.706478,32.824118],[-83.706287,32.824125]]},"id":"8844c0b0a5fffff-17bf7476a6a64724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76088200000001,32.852165]},"id":"8f44c0b544ea60d-139feec8c8617426"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b544eb51c-13ddee2469d95ac0","8f44c0b544ea60d-139feec8c8617426"]},"geometry":{"type":"LineString","coordinates":[[-83.76088200000001,32.852165],[-83.761145,32.852263]]},"id":"8a44c0b544effff-13bdce76966479b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b544eb51c-13ddee2469d95ac0","8f44c0b544ea60d-139feec8c8617426"]},"geometry":{"type":"LineString","coordinates":[[-83.761145,32.852263],[-83.761458,32.852356],[-83.76195200000001,32.852524],[-83.762179,32.852634],[-83.76244100000001,32.852879],[-83.76268800000001,32.853254],[-83.76272200000001,32.853370000000005],[-83.76270000000001,32.853444],[-83.762597,32.853513],[-83.762254,32.853657000000005],[-83.76213800000001,32.853696],[-83.762051,32.853698],[-83.76194500000001,32.853679],[-83.761643,32.853551],[-83.760796,32.853208],[-83.76070800000001,32.853163],[-83.760625,32.853081],[-83.760503,32.852938],[-83.76017,32.852401],[-83.76015600000001,32.852338],[-83.760153,32.852244],[-83.760192,32.852123],[-83.76025,32.851996],[-83.760368,32.851999],[-83.76088200000001,32.852165]]},"id":"8744c0b54ffffff-17dfdd7cd98c4ba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708093,32.925188]},"id":"8f44c0a2a044834-17f6cfa9e4c7b5b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7083405,32.925724800000005]},"id":"8f44c0a2a0450f5-17b64f0f3e2a8c08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a044834-17f6cfa9e4c7b5b7","8f44c0a2a0450f5-17b64f0f3e2a8c08"]},"geometry":{"type":"LineString","coordinates":[[-83.708093,32.925188],[-83.70808000000001,32.92521],[-83.70810200000001,32.925274],[-83.7083405,32.925724800000005]]},"id":"8944c0a2a07ffff-179f6f66749a5aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a045395-17df4ef961980ce2","8f44c0a2a0450f5-17b64f0f3e2a8c08"]},"geometry":{"type":"LineString","coordinates":[[-83.7083405,32.925724800000005],[-83.70837540000001,32.9257908]]},"id":"8b44c0a2a045fff-17d6ef044eea08bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085524,32.9261253]},"id":"8f44c0a2a06a798-17be5e8ac01a80c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a06a798-17be5e8ac01a80c3","8f44c0a2a045395-17df4ef961980ce2"]},"geometry":{"type":"LineString","coordinates":[[-83.70837540000001,32.9257908],[-83.7085524,32.9261253]]},"id":"8944c0a2a07ffff-17d7dec21fabd89c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7089383,32.9269045]},"id":"8f44c0a2a04d76a-13975d999f31b8da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a06a798-17be5e8ac01a80c3","8f44c0a2a04d76a-13975d999f31b8da"]},"geometry":{"type":"LineString","coordinates":[[-83.7085524,32.9261253],[-83.708793,32.92658],[-83.7089383,32.9269045]]},"id":"8944c0a2a07ffff-139ffe0e4ccd6e61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092978,32.927396800000004]},"id":"8f44c0a2a314800-13d74cb8e983fba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a04d76a-13975d999f31b8da","8f44c0a2a314800-13d74cb8e983fba9"]},"geometry":{"type":"LineString","coordinates":[[-83.7089383,32.9269045],[-83.708995,32.927031],[-83.709096,32.927172],[-83.7092978,32.927396800000004]]},"id":"8844c0a2a3fffff-13b7dd332ae1e73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095529,32.9276623]},"id":"8f44c0a2a315d64-13fefc197dea7aa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a315d64-13fefc197dea7aa5","8f44c0a2a314800-13d74cb8e983fba9"]},"geometry":{"type":"LineString","coordinates":[[-83.7092978,32.927396800000004],[-83.70950900000001,32.927632],[-83.7095529,32.9276623]]},"id":"8a44c0a2a317fff-139ecc6b657ed121"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710059,32.927951]},"id":"8f44c0a2a30628b-13b76add29c0430d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a315d64-13fefc197dea7aa5","8f44c0a2a30628b-13b76add29c0430d"]},"geometry":{"type":"LineString","coordinates":[[-83.7095529,32.9276623],[-83.709648,32.927728],[-83.709929,32.927891],[-83.710059,32.927951]]},"id":"8944c0a2a33ffff-13dfeb7df9423175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a30628b-13b76add29c0430d","8f44c0a2a300a46-1796d97a01411765"]},"geometry":{"type":"LineString","coordinates":[[-83.710059,32.927951],[-83.710188,32.92801],[-83.71043900000001,32.928097],[-83.710569,32.928123],[-83.7106272,32.9281321]]},"id":"8a44c0a2a307fff-13f74a2e5a7503b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109844,32.928116200000005]},"id":"8f44c0a2a305221-179ee89acc5b9ec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a305221-179ee89acc5b9ec0","8f44c0a2a300a46-1796d97a01411765"]},"geometry":{"type":"LineString","coordinates":[[-83.7106272,32.9281321],[-83.710704,32.928144],[-83.71094400000001,32.928125],[-83.7109844,32.928116200000005]]},"id":"8a44c0a2a307fff-1797d90a5c9988ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a32e655-13de47db2d63f750","8f44c0a2a305221-179ee89acc5b9ec0"]},"geometry":{"type":"LineString","coordinates":[[-83.7109844,32.928116200000005],[-83.711173,32.928075],[-83.711291,32.9280448]]},"id":"8944c0a2a33ffff-13f7683ac8a9b9c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707375,32.847405]},"id":"8f44c0a240582aa-17fe716aa830398a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a240582aa-17fe716aa830398a","8f44c0a240ea851-17d6558cc0b8e8db"]},"geometry":{"type":"LineString","coordinates":[[-83.707375,32.847405],[-83.706422,32.847557],[-83.706052,32.847603],[-83.705836,32.847593],[-83.70568200000001,32.84713]]},"id":"8844c0a241fffff-17bed3c9448cab28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70434800000001,32.84547]},"id":"8f44c0a240f4b9a-13d6d8ce81d58a70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a240ea851-17d6558cc0b8e8db","8f44c0a240f4b9a-13d6d8ce81d58a70"]},"geometry":{"type":"LineString","coordinates":[[-83.70568200000001,32.84713],[-83.705352,32.846145],[-83.705213,32.845979],[-83.704992,32.84592],[-83.70462400000001,32.845906],[-83.704451,32.845703],[-83.70434800000001,32.84547]]},"id":"8944c0a240fffff-179ef6eebc91dac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69340100000001,32.912855]},"id":"8f44c0a0530c630-17d67388643a5a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0530c630-17d67388643a5a80","8f44c0a0532b996-17d7f20da42e6495"]},"geometry":{"type":"LineString","coordinates":[[-83.69340100000001,32.912855],[-83.69350800000001,32.912726],[-83.69374400000001,32.912506],[-83.693899,32.912456],[-83.694007,32.912438]]},"id":"8944c0a0533ffff-17b7f2dbebe23603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0532866b-17bef1dce7b1ae00","8f44c0a0532b996-17d7f20da42e6495"]},"geometry":{"type":"LineString","coordinates":[[-83.694007,32.912438],[-83.694085,32.912398]]},"id":"8a44c0a0532ffff-17b771f541a3209a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64092740000001,32.8508875]},"id":"8f44c0a3090a541-17fef3a4648bfa48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64073780000001,32.8511418]},"id":"8f44c0a30824d92-139ff41ae77c24dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3090a541-17fef3a4648bfa48","8f44c0a30824d92-139ff41ae77c24dc"]},"geometry":{"type":"LineString","coordinates":[[-83.64092740000001,32.8508875],[-83.6408145,32.8510389],[-83.64073780000001,32.8511418]]},"id":"8944c0a3093ffff-17def3dfa5404703"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30824199-139ff3d2ee9ce96d","8f44c0a30824d92-139ff41ae77c24dc"]},"geometry":{"type":"LineString","coordinates":[[-83.64073780000001,32.8511418],[-83.6407698,32.8511728],[-83.6408384,32.851293600000005],[-83.640853,32.8513265]]},"id":"8a44c0a30827fff-13d7f3f39423e21c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30824199-139ff3d2ee9ce96d","8f44c0a30820aa2-13bef3a9a6b8facb"]},"geometry":{"type":"LineString","coordinates":[[-83.640853,32.8513265],[-83.6409069,32.851447900000004],[-83.6409215,32.8515336],[-83.6409244,32.851621800000004],[-83.64091900000001,32.8517869]]},"id":"8a44c0a30827fff-139ef3b00776003c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64088790000001,32.852227400000004]},"id":"8f44c0a30823a28-13d6f3bd191dafea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30820aa2-13bef3a9a6b8facb","8f44c0a30823a28-13d6f3bd191dafea"]},"geometry":{"type":"LineString","coordinates":[[-83.64091900000001,32.8517869],[-83.64091850000001,32.8518017],[-83.64088790000001,32.852170300000004],[-83.64088790000001,32.852227400000004]]},"id":"8a44c0a30827fff-13bef3b47f02b348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6408674,32.8524291]},"id":"8f44c0a3082e526-13d6f3c9e5383bad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30823a28-13d6f3bd191dafea","8f44c0a3082e526-13d6f3c9e5383bad"]},"geometry":{"type":"LineString","coordinates":[[-83.64088790000001,32.852227400000004],[-83.64088790000001,32.852349000000004],[-83.6408674,32.8524291]]},"id":"8944c0a3083ffff-1397f3bfabd5cbf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636077,32.8537337]},"id":"8f44c0a308826a3-17ffff7be3768375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308826a3-17ffff7be3768375","8f44c0a3082e526-13d6f3c9e5383bad"]},"geometry":{"type":"LineString","coordinates":[[-83.6408674,32.8524291],[-83.640834,32.8525596],[-83.6407568,32.8527641],[-83.64065620000001,32.8529196],[-83.64047550000001,32.8531008],[-83.64027,32.853269700000006],[-83.6399042,32.853532900000005],[-83.63971760000001,32.8536554],[-83.6395296,32.8537717],[-83.639381,32.8538549],[-83.6392177,32.8539333],[-83.639037,32.8540019],[-83.6388519,32.854070400000005],[-83.6385881,32.8541353],[-83.63832140000001,32.8541778],[-83.6380707,32.8542063],[-83.63792790000001,32.8542161],[-83.63777920000001,32.8542161],[-83.6376554,32.8542039],[-83.6375446,32.8541855],[-83.6369033,32.8540484],[-83.63683920000001,32.8540312],[-83.6366864,32.853979700000004],[-83.63657400000001,32.8539406],[-83.6363524,32.8538451],[-83.636077,32.8537337]]},"id":"8844c0a309fffff-17f6f91fa427c4db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768378,32.85219]},"id":"8f44c0b540d5d99-13bffc7bc2c3683d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5401eb70-17d5fa0fc166dbea","8f44c0b540d5d99-13bffc7bc2c3683d"]},"geometry":{"type":"LineString","coordinates":[[-83.768378,32.85219],[-83.768415,32.852057],[-83.768466,32.85177],[-83.76848000000001,32.851743],[-83.76855,32.851695],[-83.76863,32.851688],[-83.769317,32.8517],[-83.769467,32.851687000000005],[-83.769525,32.85167],[-83.769599,32.851622],[-83.769667,32.851531],[-83.769687,32.851453],[-83.76968500000001,32.85137],[-83.769619,32.851258],[-83.769439,32.851065000000006],[-83.769377,32.850937],[-83.769355,32.850775],[-83.76937000000001,32.850178]]},"id":"8844c0b541fffff-13b5ba8fdb1d685a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b540158a3-13dfb9ef46096854","8f44c0b5401eb70-17d5fa0fc166dbea"]},"geometry":{"type":"LineString","coordinates":[[-83.76937000000001,32.850178],[-83.769402,32.850032],[-83.769512,32.849773],[-83.76954900000001,32.849674],[-83.769569,32.849603],[-83.76957900000001,32.849539],[-83.769564,32.849417],[-83.769503,32.849302],[-83.769422,32.849201]]},"id":"8944c0b5403ffff-179db9c382d8caff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6199538,32.7964878]},"id":"8f44c0bad532313-13bfe6d8e300b8fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad532313-13bfe6d8e300b8fe","8f44c0badd95b55-17ff71b739d33f54"]},"geometry":{"type":"LineString","coordinates":[[-83.6220557,32.791090100000005],[-83.6219038,32.7913786],[-83.6217194,32.791544300000005],[-83.62152,32.791673],[-83.62104450000001,32.791920600000005],[-83.6208984,32.7920552],[-83.62064330000001,32.792326200000005],[-83.6204972,32.7925689],[-83.6204067,32.7928019],[-83.6203703,32.7929641],[-83.6202719,32.7937857],[-83.620226,32.7945136],[-83.6199538,32.7964878]]},"id":"8644c0bafffffff-1397f54e0f88bad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9c59272-1397a31fa76a4343","8f44c0bad532313-13bfe6d8e300b8fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6199538,32.7964878],[-83.618993,32.80427],[-83.618795,32.813315],[-83.61877700000001,32.813786],[-83.61964400000001,32.814925],[-83.620467,32.816875],[-83.62130400000001,32.81796],[-83.62147900000001,32.818537]]},"id":"8644c0bafffffff-17bfa8315f7ddafc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649005,32.854227]},"id":"8f44c0a3541dd09-17b7ffebeaa5ea98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3541dd09-17b7ffebeaa5ea98","8f44c0a35403ca2-17bedfdb0e5d0fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.649005,32.854227],[-83.649032,32.853828]]},"id":"8944c0a3543ffff-17b7ffe3749c3729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64914300000001,32.853084]},"id":"8f44c0a354044b6-17dfdf95a2680684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35403ca2-17bedfdb0e5d0fc5","8f44c0a354044b6-17dfdf95a2680684"]},"geometry":{"type":"LineString","coordinates":[[-83.649032,32.853828],[-83.649046,32.853748],[-83.64906,32.853626000000006],[-83.649061,32.853575],[-83.64904800000001,32.853526],[-83.649001,32.853479],[-83.648942,32.85344],[-83.64888300000001,32.853409],[-83.64886800000001,32.853389],[-83.648874,32.853370000000005],[-83.648902,32.85333],[-83.64914300000001,32.853084]]},"id":"8a44c0a35407fff-17b7ffeb22582dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71467720000001,32.8731668]},"id":"8f44c0a21c2cb30-17f77f96c5d2b12e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c2cb30-17f77f96c5d2b12e","8f44c0a21d526e9-1796fffb6d2427a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7145162,32.8730157],[-83.7145969,32.8730975],[-83.71467720000001,32.8731668]]},"id":"8b44c0a21c2cfff-17b73fca0f5ee260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71481820000001,32.8732722]},"id":"8f44c0a21d536ac-17b73f3ea0e435ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c2cb30-17f77f96c5d2b12e","8f44c0a21d536ac-17b73f3ea0e435ca"]},"geometry":{"type":"LineString","coordinates":[[-83.71467720000001,32.8731668],[-83.71481820000001,32.8732722]]},"id":"8a44c0a21c2ffff-17963f6ab0c9d9f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d536ac-17b73f3ea0e435ca","8f44c0a21c2d946-17f7becb6a474fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.71481820000001,32.8732722],[-83.7150026,32.873397700000005]]},"id":"8a44c0a21c2ffff-17de7f0506b552cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71508770000001,32.873443200000004]},"id":"8f44c0a21d5e4a1-179e3e96345c8e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d5e4a1-179e3e96345c8e59","8f44c0a21c2d946-17f7becb6a474fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.7150026,32.873397700000005],[-83.71508770000001,32.873443200000004]]},"id":"8944c0a21d7ffff-17fffeb0c27cd332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d58cca-17b7bd64e99f581d","8f44c0a21d5e4a1-179e3e96345c8e59"]},"geometry":{"type":"LineString","coordinates":[[-83.71508770000001,32.873443200000004],[-83.715432,32.873627],[-83.7155762,32.8737112]]},"id":"8a44c0a21d5ffff-17f6bdfce8b87af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d58cca-17b7bd64e99f581d","8f44c0a21c60392-13df7bae3402e1b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7155762,32.8737112],[-83.71561510000001,32.873732600000004],[-83.71567680000001,32.8737596],[-83.7157868,32.873754000000005],[-83.7159611,32.873731500000005],[-83.71603300000001,32.873737000000006],[-83.716065,32.873756],[-83.716369,32.874091],[-83.71657970000001,32.874329800000005],[-83.7167233,32.874492000000004],[-83.71674510000001,32.874524900000004],[-83.7167577,32.8745611],[-83.7167606,32.8745988],[-83.7167537,32.874636],[-83.71673840000001,32.874669000000004],[-83.7167154,32.8746987],[-83.7165102,32.8748395],[-83.71627810000001,32.8749782]]},"id":"8844c0a21dfffff-13977b913e2c6b9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c60392-13df7bae3402e1b5","8f44c0a21c606de-139f3c080a750b09"]},"geometry":{"type":"LineString","coordinates":[[-83.71627810000001,32.8749782],[-83.7161998,32.8750256],[-83.7161636,32.875051500000005],[-83.7161344,32.8750835]]},"id":"8a44c0a21c67fff-13fffbdd21794fe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c606de-139f3c080a750b09","8f44c0a21c63726-13b7fc29b72674f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7161344,32.8750835],[-83.71611,32.875118300000004],[-83.7160908,32.8751553],[-83.7160772,32.875194],[-83.7160693,32.8752336],[-83.71606720000001,32.8752738],[-83.7160709,32.875314],[-83.7160805,32.8753534]]},"id":"8b44c0a21c63fff-13f6fc26e3709fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c61463-13defb1afdd34714","8f44c0a21c63726-13b7fc29b72674f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7160805,32.8753534],[-83.71611030000001,32.875466800000005],[-83.716199,32.875408300000004],[-83.7164882,32.8752239],[-83.71651370000001,32.8752079]]},"id":"8a44c0a21c67fff-13b67bb3d7a55b4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c61950-13f7fa721e67ab5d","8f44c0a21c61463-13defb1afdd34714"]},"geometry":{"type":"LineString","coordinates":[[-83.71651370000001,32.8752079],[-83.71678390000001,32.8750397]]},"id":"8b44c0a21c61fff-13be7ac68b66d94c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71709100000001,32.874780900000005]},"id":"8f44c0a2189678b-13d639b221ec6ccf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c61950-13f7fa721e67ab5d","8f44c0a2189678b-13d639b221ec6ccf"]},"geometry":{"type":"LineString","coordinates":[[-83.71678390000001,32.8750397],[-83.7168656,32.8749848],[-83.71698310000001,32.874892700000004],[-83.7170413,32.8748397],[-83.71709100000001,32.874780900000005]]},"id":"8844c0a21dfffff-13b7fa0dd8a844f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2189678b-13d639b221ec6ccf","8f44c0a21896c42-13bf3972d6a8c4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71709100000001,32.874780900000005],[-83.71712670000001,32.8747257],[-83.717155,32.8746674],[-83.7171771,32.8746074],[-83.71719230000001,32.8745458]]},"id":"8b44c0a21896fff-139ef98d75bbfac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71704120000001,32.8741075]},"id":"8f44c0a21d482d0-13bf39d147512fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d482d0-13bf39d147512fc6","8f44c0a21896c42-13bf3972d6a8c4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71719230000001,32.8745458],[-83.7172003,32.8744845],[-83.71719970000001,32.8744229],[-83.7171903,32.8743617],[-83.7171723,32.874302],[-83.717146,32.8742444],[-83.71711180000001,32.874189900000005],[-83.71704120000001,32.8741075]]},"id":"8844c0a21dfffff-13beb98ac5c87f56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70240530000001,32.9281376]},"id":"8f44c0a2a70d864-17965d8cb264cfbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7010508,32.9283505]},"id":"8f44c0a2a71d243-179f70db42bfd542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a71d243-179f70db42bfd542","8f44c0a2a70d864-17965d8cb264cfbb"]},"geometry":{"type":"LineString","coordinates":[[-83.70240530000001,32.9281376],[-83.70132050000001,32.928327800000005],[-83.7012811,32.9283347],[-83.7012388,32.9283394],[-83.701143,32.928347],[-83.70110310000001,32.928348500000006],[-83.7010508,32.9283505]]},"id":"8944c0a2a73ffff-17deff3331a45420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a702b96-13b6718712dcc944","8f44c0a2a71d243-179f70db42bfd542"]},"geometry":{"type":"LineString","coordinates":[[-83.7010508,32.9283505],[-83.700986,32.928180600000005],[-83.70077590000001,32.9273411]]},"id":"8944c0a2a73ffff-13f771368be18d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7005123,32.926287800000004]},"id":"8f44c0a2a730770-1797e22bd044e5a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a702b96-13b6718712dcc944","8f44c0a2a730770-1797e22bd044e5a3"]},"geometry":{"type":"LineString","coordinates":[[-83.70077590000001,32.9273411],[-83.7005123,32.926287800000004]]},"id":"8944c0a2a73ffff-13df71d97f5d3a9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69996110000001,32.9245898]},"id":"8f44c0a2a46ccde-13fee384544d3622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a730770-1797e22bd044e5a3","8f44c0a2a46ccde-13fee384544d3622"]},"geometry":{"type":"LineString","coordinates":[[-83.7005123,32.926287800000004],[-83.70037260000001,32.9256602],[-83.7003648,32.9256252],[-83.70011070000001,32.9250409],[-83.69996110000001,32.9245898]]},"id":"8744c0a2affffff-17ff62c95e3f5306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6126747,32.796038]},"id":"8f44c0ba892178b-1397f89e5be8a43f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0ba892178b-1397f89e5be8a43f","8f44c0bad532313-13bfe6d8e300b8fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6126747,32.796038],[-83.6132815,32.795947000000005],[-83.6137915,32.7959139],[-83.6145443,32.7959277],[-83.6155873,32.7960408],[-83.6165533,32.7961566],[-83.6172798,32.796312400000005],[-83.61807350000001,32.796413],[-83.6187869,32.7965205],[-83.6192412,32.7965412],[-83.61965280000001,32.796502600000004],[-83.6199538,32.7964878]]},"id":"8644c0bafffffff-13f76fbae4be0d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0badcd2862-13b76037267230e1","8f44c0bad532313-13bfe6d8e300b8fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6199538,32.7964878],[-83.6203187,32.7965205],[-83.6209058,32.7965522],[-83.6217455,32.796585300000004],[-83.62234570000001,32.7966336],[-83.6225663,32.7966556],[-83.6226329,32.7965767],[-83.6226702,32.7965046]]},"id":"8744c0badffffff-13dfe370595476ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676857,32.787232]},"id":"8f44c0b1c13165b-17969bec6889dfb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c13165b-17969bec6889dfb6","8f44c0b1c106922-1797dbc148d7e448"]},"geometry":{"type":"LineString","coordinates":[[-83.676857,32.787232],[-83.67692600000001,32.787238]]},"id":"8b44c0b1c131fff-1797fbd6ddf6412c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c13165b-17969bec6889dfb6","8f44c0b1c106922-1797dbc148d7e448"]},"geometry":{"type":"LineString","coordinates":[[-83.67692600000001,32.787238],[-83.676927,32.787311],[-83.676916,32.787584],[-83.676906,32.787625000000006],[-83.67686400000001,32.787656000000005],[-83.676805,32.787667],[-83.676364,32.787598],[-83.676315,32.787579],[-83.67629600000001,32.787546],[-83.67629600000001,32.787512],[-83.67658200000001,32.787328],[-83.676697,32.787262000000005],[-83.676771,32.787235],[-83.676857,32.787232]]},"id":"8944c0b1c13ffff-17bfbc6bbf7cb30f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693033,32.876632]},"id":"8f44c0a23d665ac-17d7746e688f13f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a206c9264-17bf7008ce96cbfd","8f44c0a23d665ac-17d7746e688f13f7"]},"geometry":{"type":"LineString","coordinates":[[-83.693033,32.876632],[-83.69326600000001,32.876596],[-83.693414,32.876576],[-83.69355200000001,32.876551],[-83.69383,32.876449],[-83.693987,32.876413],[-83.69412200000001,32.876391000000005],[-83.694193,32.876384],[-83.694283,32.876388],[-83.694395,32.876403],[-83.694468,32.876426],[-83.694591,32.876493],[-83.694725,32.876544],[-83.694834,32.876559]]},"id":"8744c0a23ffffff-1797723796303bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69627200000001,32.876604]},"id":"8f44c0a23984d15-17d7ec8605216ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a206c9264-17bf7008ce96cbfd","8f44c0a23984d15-17d7ec8605216ddf"]},"geometry":{"type":"LineString","coordinates":[[-83.694834,32.876559],[-83.69498,32.876527],[-83.69512200000001,32.876478],[-83.69538800000001,32.876421],[-83.695493,32.876407],[-83.69563000000001,32.87641],[-83.695751,32.87642],[-83.695862,32.876449],[-83.69627200000001,32.876604]]},"id":"8944c0a239bffff-17f7ee445ddd351e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696364,32.876517]},"id":"8f44c0a239a2630-179f6c4c8d618fac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a239a2630-179f6c4c8d618fac","8f44c0a23984d15-17d7ec8605216ddf"]},"geometry":{"type":"LineString","coordinates":[[-83.69627200000001,32.876604],[-83.696532,32.876785000000005],[-83.696726,32.876927],[-83.69686,32.877046],[-83.696979,32.877159],[-83.697049,32.87724],[-83.69710400000001,32.877325],[-83.697142,32.877417],[-83.697191,32.877495],[-83.697242,32.877542000000005],[-83.69726700000001,32.877557],[-83.6973,32.877577],[-83.69735100000001,32.877589],[-83.69744100000001,32.877586],[-83.697497,32.877561],[-83.69755500000001,32.877516],[-83.697636,32.877428],[-83.697699,32.877335],[-83.69774600000001,32.877228],[-83.69779000000001,32.877104],[-83.69783600000001,32.876952],[-83.69784100000001,32.876927],[-83.697877,32.876754000000005],[-83.697871,32.8767],[-83.697854,32.876657],[-83.69781,32.876595],[-83.69774600000001,32.876553],[-83.697635,32.876513],[-83.697485,32.876483],[-83.697293,32.876458],[-83.697055,32.876457],[-83.696583,32.876444],[-83.696506,32.876455],[-83.69642,32.876481000000005],[-83.696364,32.876517]]},"id":"8844c0a239fffff-17fe6a4b8c6ddff4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a239a2630-179f6c4c8d618fac","8f44c0a23984d15-17d7ec8605216ddf"]},"geometry":{"type":"LineString","coordinates":[[-83.696364,32.876517],[-83.69627200000001,32.876604]]},"id":"8944c0a239bffff-17be7c694b2c8b40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581924,32.851146]},"id":"8f44c0b88b2cd2a-139fc3b18ed32370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b2cd2a-139fc3b18ed32370","8f44c0b88b05806-13dfc5adab224905"]},"geometry":{"type":"LineString","coordinates":[[-83.581924,32.851146],[-83.581208,32.851387],[-83.581111,32.851422]]},"id":"8944c0b88b3ffff-13f7f4afcc231866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580926,32.851979]},"id":"8f44c0b88b01152-13b7e62147f64f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b01152-13b7e62147f64f6a","8f44c0b88b05806-13dfc5adab224905"]},"geometry":{"type":"LineString","coordinates":[[-83.581111,32.851422],[-83.580853,32.851515],[-83.580786,32.851548],[-83.580763,32.851571],[-83.580758,32.851613],[-83.580776,32.851671],[-83.580804,32.851722],[-83.580926,32.851979]]},"id":"8a44c0b88b07fff-13d7a63f143f7b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68360600000001,32.858784]},"id":"8f44c0a2628826e-13d68b7246938ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2628826e-13d68b7246938ade","8f44c0a262a9634-13ffc976c247ca70"]},"geometry":{"type":"LineString","coordinates":[[-83.68360600000001,32.858784],[-83.68386600000001,32.858579],[-83.684224,32.858263],[-83.68441800000001,32.85805]]},"id":"8944c0a262bffff-13f6ea6ce1ec1a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684183,32.857134]},"id":"8f44c0a262ac562-17beca09a5c066a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262ac562-17beca09a5c066a7","8f44c0a262a9634-13ffc976c247ca70"]},"geometry":{"type":"LineString","coordinates":[[-83.68441800000001,32.85805],[-83.68448500000001,32.857998],[-83.68454100000001,32.857931],[-83.68474900000001,32.857661],[-83.68482200000001,32.857574],[-83.684838,32.857537],[-83.68482200000001,32.857494],[-83.684504,32.857323],[-83.684183,32.857134]]},"id":"8a44c0a262affff-17bee914e2ca1dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570368,32.79851]},"id":"8f44c0b85a993a8-179fdfe80aaa73fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570192,32.798387000000005]},"id":"8f44c0b85a9954e-17dfe0560d4f666a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85a9954e-17dfe0560d4f666a","8f44c0b85a993a8-179fdfe80aaa73fb"]},"geometry":{"type":"LineString","coordinates":[[-83.570368,32.79851],[-83.570192,32.798387000000005]]},"id":"8b44c0b85a99fff-17f7f01f08c22c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b85a9954e-17dfe0560d4f666a","8f44c0b85a982b6-17f7e0ede4549dad"]},"geometry":{"type":"LineString","coordinates":[[-83.570192,32.798387000000005],[-83.56994900000001,32.798214]]},"id":"8a44c0b85a9ffff-179ff0a1fa8511f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698879,32.897717]},"id":"8f44c0a2e5b4403-13d76628a1fd8c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69888300000001,32.897211]},"id":"8f44c0a232ed2db-1396e6262edcc473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2e5b4403-13d76628a1fd8c04","8f44c0a232ed2db-1396e6262edcc473"]},"geometry":{"type":"LineString","coordinates":[[-83.698879,32.897717],[-83.69888300000001,32.897211]]},"id":"8844c0a233fffff-13b7662766cc7eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69889400000001,32.896923]},"id":"8f44c0a232ed174-17f6e61f400a2821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232ed174-17f6e61f400a2821","8f44c0a232ed2db-1396e6262edcc473"]},"geometry":{"type":"LineString","coordinates":[[-83.69888300000001,32.897211],[-83.69889400000001,32.896923]]},"id":"8b44c0a232edfff-13bee622b9ce1cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ad3b48-13fe6faba5dd0307","8f44c0a05ad8d24-17dfeeb2499a108c"]},"geometry":{"type":"LineString","coordinates":[[-83.69538200000001,32.91207],[-83.695276,32.911875],[-83.69498300000001,32.91169]]},"id":"8944c0a05afffff-17d67f1f66794f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ad3184-13bff071c424272d","8f44c0a05ad3b48-13fe6faba5dd0307"]},"geometry":{"type":"LineString","coordinates":[[-83.69498300000001,32.91169],[-83.694833,32.911589],[-83.69466600000001,32.911606]]},"id":"8a44c0a05ad7fff-13d6700a31d0511c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ad3184-13bff071c424272d","8f44c0a0532c3a5-17d6f15cce2d7b15"]},"geometry":{"type":"LineString","coordinates":[[-83.69466600000001,32.911606],[-83.69452100000001,32.911765],[-83.69429000000001,32.911854000000005]]},"id":"8744c0a05ffffff-1796f0ddf69c35d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0532e370-17bff254e1b98606","8f44c0a0532c3a5-17d6f15cce2d7b15"]},"geometry":{"type":"LineString","coordinates":[[-83.69429000000001,32.911854000000005],[-83.69400800000001,32.911931],[-83.693893,32.91199]]},"id":"8a44c0a0532ffff-17fff1daf2ce2261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693742,32.911979]},"id":"8f44c0a0532e765-17b6f2b346d0d138"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0532e765-17b6f2b346d0d138","8f44c0a0532e370-17bff254e1b98606"]},"geometry":{"type":"LineString","coordinates":[[-83.693893,32.91199],[-83.693742,32.911979]]},"id":"8b44c0a0532efff-17b6728413425858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8c2755-13b66d57f7e0bd50","8f44c0a2a8c2a4d-139fdc95e019e272"]},"geometry":{"type":"LineString","coordinates":[[-83.7090433,32.9199718],[-83.70916270000001,32.9199684],[-83.7092398,32.9199582],[-83.70931490000001,32.919946200000005],[-83.7093538,32.919932100000004]]},"id":"8b44c0a2a8c2fff-139f4cf6209a0fdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70941900000001,32.9197164]},"id":"8f44c0a2a8c0552-1796cc6d2aeaba8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a8c0552-1796cc6d2aeaba8b","8f44c0a2a8c2a4d-139fdc95e019e272"]},"geometry":{"type":"LineString","coordinates":[[-83.7093538,32.919932100000004],[-83.70939100000001,32.9199049],[-83.7094165,32.9198785],[-83.7094306,32.919843],[-83.7094319,32.9197907],[-83.70941900000001,32.9197164]]},"id":"8a44c0a2a8c7fff-17d67c70b9026e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c58c76a-17bff82ec9c6a72b","8f44c0b1c58e026-1796f94b29cde1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.665282,32.788502],[-83.66516700000001,32.78848],[-83.664827,32.788455]]},"id":"8a44c0b1c58ffff-179ff8bc8639df61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c59dc60-1797ba89e9bc1bd5","8f44c0b1c58e026-1796f94b29cde1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.664827,32.788455],[-83.664716,32.78846],[-83.664455,32.788448],[-83.66435800000001,32.788448],[-83.664337,32.788452],[-83.66431700000001,32.78846]]},"id":"8944c0b1c5bffff-179ff9eb17012fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741155,32.875799]},"id":"8f44c0b52005190-17dffef228e445a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200562c-17bffeec8773cd8e","8f44c0b52005190-17dffef228e445a2"]},"geometry":{"type":"LineString","coordinates":[[-83.741155,32.875799],[-83.74116400000001,32.875980000000006]]},"id":"8b44c0b52005fff-1797feef5d65c50e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200562c-17bffeec8773cd8e","8f44c0b52001885-17bffeef0c5fab5d"]},"geometry":{"type":"LineString","coordinates":[[-83.74116400000001,32.875980000000006],[-83.741166,32.876109],[-83.74116000000001,32.876157]]},"id":"8a44c0b52007fff-17f7feec351573d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6502603,32.828578300000004]},"id":"8f44c0b1a2ce4e4-1397fcdb5ef597a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6495299,32.828027]},"id":"8f44c0b1a2d1b6b-17befea3d918f970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2d1b6b-17befea3d918f970","8f44c0b1a2ce4e4-1397fcdb5ef597a3"]},"geometry":{"type":"LineString","coordinates":[[-83.6502603,32.828578300000004],[-83.6501901,32.8285165],[-83.650056,32.8283294],[-83.6495299,32.828027]]},"id":"8944c0b1a2fffff-13defdb13ffcfa64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648044,32.8271688]},"id":"8f44c0b1a28b616-1796e244878892cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2d1b6b-17befea3d918f970","8f44c0b1a28b616-1796e244878892cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6495299,32.828027],[-83.64928370000001,32.8278819],[-83.64887180000001,32.827639000000005],[-83.6484897,32.8274138],[-83.648044,32.8271688]]},"id":"8844c0b1a3fffff-179fe07281a89343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6114417,32.847694100000005]},"id":"8f44c0a367acb90-17b7fba0fd9a5e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61094130000001,32.847686100000004]},"id":"8f44c0a367ae833-17bffcd9b5454106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367acb90-17b7fba0fd9a5e84","8f44c0a367ae833-17bffcd9b5454106"]},"geometry":{"type":"LineString","coordinates":[[-83.6114417,32.847694100000005],[-83.61094130000001,32.847686100000004]]},"id":"8a44c0a367affff-17bf7c3d5130114c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60943560000001,32.8476775]},"id":"8f44c0a36786561-17b77086c4ed799c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367ae833-17bffcd9b5454106","8f44c0a36786561-17b77086c4ed799c"]},"geometry":{"type":"LineString","coordinates":[[-83.61094130000001,32.847686100000004],[-83.60943560000001,32.8476775]]},"id":"8944c0a367bffff-17bf3eb03e56e353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573884,32.805383]},"id":"8f44c0baac9ea81-13f7f7528998d956"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baac83448-17f7d5976d9562c0","8f44c0baac9ea81-13f7f7528998d956"]},"geometry":{"type":"LineString","coordinates":[[-83.573884,32.805383],[-83.57459300000001,32.805182]]},"id":"8944c0baacbffff-13b79674f41a33e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574352,32.803097]},"id":"8f44c0baacb4c4d-13dfb62e02c01489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baacb4c4d-13dfb62e02c01489","8f44c0baac83448-17f7d5976d9562c0"]},"geometry":{"type":"LineString","coordinates":[[-83.57459300000001,32.805182],[-83.574352,32.803097]]},"id":"8944c0baacbffff-17dfb5e2bd74fc83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3699a748-13f769b724e213db","8f44c0a3699a410-13ff6a32e6b34c11"]},"geometry":{"type":"LineString","coordinates":[[-83.618779,32.835687],[-83.618581,32.835527]]},"id":"8b44c0a3699afff-13bf69f50b2a2975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36d68b2c-13dffb23073e3ddf","8f44c0a3699a410-13ff6a32e6b34c11"]},"geometry":{"type":"LineString","coordinates":[[-83.618581,32.835527],[-83.618493,32.83547],[-83.61844400000001,32.835434],[-83.618335,32.835354],[-83.6181968,32.835268500000005]]},"id":"8a44c0a36d6ffff-13bfaaaa528eb48d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b150d6b6b-13f6ff20c2a4a09c","8f44c0b150d6299-13d7ffc9106df959"]},"geometry":{"type":"LineString","coordinates":[[-83.6624372,32.756230800000004],[-83.6621679,32.756415600000004]]},"id":"8a44c0b150d7fff-139ebf74f1f9d46a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1572b753-17fed129689a0459","8f44c0b150d6299-13d7ffc9106df959"]},"geometry":{"type":"LineString","coordinates":[[-83.6621679,32.756415600000004],[-83.662023,32.756535],[-83.661923,32.75665],[-83.66179000000001,32.756856],[-83.66174500000001,32.75696],[-83.661731,32.757013],[-83.66168900000001,32.757451],[-83.6616042,32.7580801]]},"id":"8744c0b15ffffff-13bee0bf949c8462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36822a06-13f75f96aa3d944c","8f44c0a36822134-13b7a0036269db1e"]},"geometry":{"type":"LineString","coordinates":[[-83.622753,32.835796],[-83.622927,32.835898]]},"id":"8b44c0a36822fff-13d77fcd05a4ec29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6235626,32.8363089]},"id":"8f44c0a3682166b-13f71e09632ed6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36822a06-13f75f96aa3d944c","8f44c0a3682166b-13f71e09632ed6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.622927,32.835898],[-83.6235324,32.8362811],[-83.6235626,32.8363089]]},"id":"8a44c0a36827fff-13f7feceb9265003"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3682c408-17b73d86ab49f5c2","8f44c0a3682166b-13f71e09632ed6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6235626,32.8363089],[-83.6237718,32.8364386]]},"id":"8944c0a3683ffff-179fbdc802493915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624279,32.836753]},"id":"8f44c0a3682d014-17ffbc49a40eaa61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3682c408-17b73d86ab49f5c2","8f44c0a3682d014-17ffbc49a40eaa61"]},"geometry":{"type":"LineString","coordinates":[[-83.6237718,32.8364386],[-83.624279,32.836753]]},"id":"8a44c0a3682ffff-179f7ce82e9d8e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3682d014-17ffbc49a40eaa61","8f44c0a3695ac70-17ffbb7622fc3b34"]},"geometry":{"type":"LineString","coordinates":[[-83.624279,32.836753],[-83.6246174,32.8369579]]},"id":"8844c0a369fffff-17bfbbdfe568db98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3695ab96-17b75b16ec15e236","8f44c0a3695ac70-17ffbb7622fc3b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6246174,32.8369579],[-83.62476980000001,32.8370501]]},"id":"8b44c0a3695afff-17979b468a3caf5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6250102,32.8371957]},"id":"8f44c0a369586dc-179f5a80ae9d1ccf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3695ab96-17b75b16ec15e236","8f44c0a369586dc-179f5a80ae9d1ccf"]},"geometry":{"type":"LineString","coordinates":[[-83.62476980000001,32.8370501],[-83.6250102,32.8371957]]},"id":"8a44c0a3695ffff-17f7dacbc95e74f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625675,32.837581]},"id":"8f44c0a36864518-179738e12525703e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36864518-179738e12525703e","8f44c0a369586dc-179f5a80ae9d1ccf"]},"geometry":{"type":"LineString","coordinates":[[-83.6250102,32.8371957],[-83.625675,32.837581]]},"id":"8944c0a3697ffff-1797d9b0e4ebf66f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625921,32.837747]},"id":"8f44c0a368643a8-17f7f84767f92fd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36864518-179738e12525703e","8f44c0a368643a8-17f7f84767f92fd0"]},"geometry":{"type":"LineString","coordinates":[[-83.625675,32.837581],[-83.625921,32.837747]]},"id":"8b44c0a36864fff-17b718944a33c7f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34491705-13f7d4d305b08fc7","8f44c0a368643a8-17f7f84767f92fd0"]},"geometry":{"type":"LineString","coordinates":[[-83.625921,32.837747],[-83.627336,32.838582]]},"id":"8744c0a36ffffff-13ffd68d377ea19e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62804700000001,32.839033]},"id":"8f44c0a3449dc0a-139fb316a7c695df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34491705-13f7d4d305b08fc7","8f44c0a3449dc0a-139fb316a7c695df"]},"geometry":{"type":"LineString","coordinates":[[-83.627336,32.838582],[-83.62743640000001,32.8386457],[-83.62804700000001,32.839033]]},"id":"8944c0a344bffff-13ffb3f4d98384ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3449dc0a-139fb316a7c695df","8f44c0a3449da0e-13ff326b6e17ff5d"]},"geometry":{"type":"LineString","coordinates":[[-83.62804700000001,32.839033],[-83.628321,32.8391922]]},"id":"8b44c0a3449dfff-13bf72c102814ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3449da45-1397f2493a3e10a2","8f44c0a3449da0e-13ff326b6e17ff5d"]},"geometry":{"type":"LineString","coordinates":[[-83.628321,32.8391922],[-83.6283757,32.8392239]]},"id":"8c44c0a3449dbff-13ff125a46c06f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6288523,32.8395048]},"id":"8f44c0a34488633-13b7911f5172a36d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3449da45-1397f2493a3e10a2","8f44c0a34488633-13b7911f5172a36d"]},"geometry":{"type":"LineString","coordinates":[[-83.6283757,32.8392239],[-83.62848600000001,32.839288],[-83.6288523,32.8395048]]},"id":"8a44c0a3448ffff-13df91b42f47f8e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62967370000001,32.8399925]},"id":"8f44c0a344d41ad-17f75f1df719e548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a344d41ad-17f75f1df719e548","8f44c0a34488633-13b7911f5172a36d"]},"geometry":{"type":"LineString","coordinates":[[-83.6288523,32.8395048],[-83.6294416,32.8398528],[-83.62954660000001,32.8399153],[-83.62967370000001,32.8399925]]},"id":"8844c0a345fffff-17df701e59508b11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6297832,32.840059600000004]},"id":"8f44c0a344d4a94-179f4ed987a04f6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a344d41ad-17f75f1df719e548","8f44c0a344d4a94-179f4ed987a04f6f"]},"geometry":{"type":"LineString","coordinates":[[-83.62967370000001,32.8399925],[-83.6297832,32.840059600000004]]},"id":"8b44c0a344d4fff-17ff5efbb8b3ec4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630396,32.840435]},"id":"8f44c0a344c66f0-17f7ed5a83a94520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a344d4a94-179f4ed987a04f6f","8f44c0a344c66f0-17f7ed5a83a94520"]},"geometry":{"type":"LineString","coordinates":[[-83.6297832,32.840059600000004],[-83.630396,32.840435]]},"id":"8944c0a344fffff-17979e1a00304398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a344c0284-17b7ac20babc1085","8f44c0a344c66f0-17f7ed5a83a94520"]},"geometry":{"type":"LineString","coordinates":[[-83.630396,32.840435],[-83.63089810000001,32.8407418]]},"id":"8a44c0a344c7fff-17d7ccbd99ab22ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a344c0284-17b7ac20babc1085","8f44c0a344cd8a6-13df497047455ca2"]},"geometry":{"type":"LineString","coordinates":[[-83.63089810000001,32.8407418],[-83.63118300000001,32.840916],[-83.6319996,32.84141]]},"id":"8944c0a344fffff-179fcac8bd2c6ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6425413,32.7794078]},"id":"8f44c0b13b8c6da-13ffefb3b0d28fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13a36062-1397ed2a78ed3e50","8f44c0b13b8c6da-13ffefb3b0d28fca"]},"geometry":{"type":"LineString","coordinates":[[-83.64358010000001,32.779427000000005],[-83.6425413,32.7794078]]},"id":"8844c0b13bfffff-13ffee6f19a79f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64244450000001,32.7793196]},"id":"8f44c0b13b8eb5b-13d6eff03698821b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13b8eb5b-13d6eff03698821b","8f44c0b13b8c6da-13ffefb3b0d28fca"]},"geometry":{"type":"LineString","coordinates":[[-83.6425413,32.7794078],[-83.6424338,32.779473],[-83.6423544,32.779460300000004],[-83.6423372,32.779400800000005],[-83.64235330000001,32.7793422],[-83.64244450000001,32.7793196]]},"id":"8a44c0b13b8ffff-13fff00673f045d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13b8eb5b-13d6eff03698821b","8f44c0b13b8c6da-13ffefb3b0d28fca"]},"geometry":{"type":"LineString","coordinates":[[-83.64244450000001,32.7793196],[-83.6425413,32.7794078]]},"id":"8a44c0b13b8ffff-13deffd1f8444024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171205,32.8444601]},"id":"8f44c0a3601d735-17dfbdc3b9f008dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6172935,32.8444802]},"id":"8f44c0a3601d332-17df2d57978ce44b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3601d735-17dfbdc3b9f008dd","8f44c0a3601d332-17df2d57978ce44b"]},"geometry":{"type":"LineString","coordinates":[[-83.6171205,32.8444601],[-83.6172935,32.8444802]]},"id":"8b44c0a3601dfff-17d7ed8da022fde9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36008110-139f2b862d6d7013","8f44c0a3601d332-17df2d57978ce44b"]},"geometry":{"type":"LineString","coordinates":[[-83.6172935,32.8444802],[-83.6180382,32.844565]]},"id":"8944c0a3603ffff-17f7ac6ee3f8ce62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6543582,32.8141084]},"id":"8f44c0b1aba4d1b-17b7d2da2506beb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65442940000001,32.8140085]},"id":"8f44c0b1a84a613-17f7d2ada38edfda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1aba4d1b-17b7d2da2506beb8","8f44c0b1a84a613-17f7d2ada38edfda"]},"geometry":{"type":"LineString","coordinates":[[-83.6543582,32.8141084],[-83.65442940000001,32.8140085]]},"id":"8944c0b1a87ffff-1796d2c3e5c848f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a84e4d2-17bff2a73b6a1ec3","8f44c0b1a84a613-17f7d2ada38edfda"]},"geometry":{"type":"LineString","coordinates":[[-83.65442940000001,32.8140085],[-83.65443970000001,32.813480600000005]]},"id":"8a44c0b1a84ffff-17def2aa64c9bb1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699431,32.840186]},"id":"8f44c0a24cde74c-17de64cfaab59b95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24cde74c-17de64cfaab59b95","8f44c0a24c8d040-13df6584ebf6780f"]},"geometry":{"type":"LineString","coordinates":[[-83.699431,32.840186],[-83.69880500000001,32.839585],[-83.6986,32.839339],[-83.69856200000001,32.839194],[-83.69850500000001,32.838943],[-83.69850000000001,32.838783],[-83.69860200000001,32.838594],[-83.698823,32.838276],[-83.69914100000001,32.838143]]},"id":"8744c0a24ffffff-13d66649936546d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699922,32.838106]},"id":"8f44c0a24cf46d8-13de639ccd63a598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24cf46d8-13de639ccd63a598","8f44c0a24c8d040-13df6584ebf6780f"]},"geometry":{"type":"LineString","coordinates":[[-83.69914100000001,32.838143],[-83.699225,32.838175],[-83.699399,32.83822],[-83.699583,32.838197],[-83.699922,32.838106]]},"id":"8844c0a24dfffff-13f7f49169609f13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66212180000001,32.7585427]},"id":"8f44c0b15770593-179fbfe5ea049b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b15770593-179fbfe5ea049b9c","8f44c0b150d030d-13febea5cb0c7b37"]},"geometry":{"type":"LineString","coordinates":[[-83.66212180000001,32.7585427],[-83.662284,32.757869],[-83.66263400000001,32.756653]]},"id":"8744c0b15ffffff-13bfbf4bcdcc206e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b150d030d-13febea5cb0c7b37","8f44c0b150f0311-1797bcfa42f26a7c"]},"geometry":{"type":"LineString","coordinates":[[-83.66263400000001,32.756653],[-83.662805,32.756330000000005],[-83.662909,32.756165],[-83.66299000000001,32.756054],[-83.663082,32.755938],[-83.663318,32.755673]]},"id":"8944c0b150fffff-13bebde0c0b7c40c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624329,32.8499569]},"id":"8f44c0a358f1753-17b7bf237a5cb24d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663296,32.849818]},"id":"8f44c0a358e06d2-17f6fd080646bb1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358f1753-17b7bf237a5cb24d","8f44c0a358e06d2-17f6fd080646bb1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6624329,32.8499569],[-83.6628556,32.8499661],[-83.66301920000001,32.8499414],[-83.663296,32.849818]]},"id":"8944c0a358fffff-17b7be1044ae1476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358e1da1-17bebc0fee477c66","8f44c0a358e06d2-17f6fd080646bb1d"]},"geometry":{"type":"LineString","coordinates":[[-83.663296,32.849818],[-83.66343900000001,32.849752],[-83.663503,32.849729],[-83.663624,32.849717000000005],[-83.66369300000001,32.849728]]},"id":"8a44c0a358e7fff-17b7fc8e98f4fd54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66395100000001,32.850087]},"id":"8f44c0a358e1351-179efb6ea0bb2d18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358e1da1-17bebc0fee477c66","8f44c0a358e1351-179efb6ea0bb2d18"]},"geometry":{"type":"LineString","coordinates":[[-83.66369300000001,32.849728],[-83.663956,32.849837],[-83.664012,32.849869000000005],[-83.664035,32.849899],[-83.664035,32.849956],[-83.66395100000001,32.850087]]},"id":"8b44c0a358e1fff-1796bb8357a2836a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6288373,32.8146201]},"id":"8f44c0ba9822840-17f79128b30e08c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0ba9822840-17f79128b30e08c3","8f44c0ba991c0cb-13f75187e748168c"]},"geometry":{"type":"LineString","coordinates":[[-83.628685,32.813186],[-83.62869400000001,32.813688],[-83.628731,32.814191],[-83.628746,32.814321],[-83.628797,32.814537],[-83.6288373,32.8146201]]},"id":"8844c0ba99fffff-17b791706e7e23b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0ba9822840-17f79128b30e08c3","8f44c0ba987011e-17976d76a2d87cd0"]},"geometry":{"type":"LineString","coordinates":[[-83.6288373,32.8146201],[-83.628894,32.814737],[-83.62904,32.814946],[-83.629236,32.815168],[-83.62948700000001,32.815424],[-83.629722,32.815677],[-83.62979100000001,32.815758],[-83.62984,32.815834],[-83.629872,32.815885],[-83.63029490000001,32.8166284],[-83.630351,32.816727]]},"id":"8844c0ba99fffff-13f71f3b603e3ef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c433890-13f6f57c24e23e19","8f44c0b1c51849c-17def41f64fbfb7f"]},"geometry":{"type":"LineString","coordinates":[[-83.666387,32.789226],[-83.666607,32.788883000000006],[-83.666697,32.78873],[-83.66673700000001,32.788642],[-83.666841,32.788356],[-83.666908,32.788153],[-83.666945,32.787962]]},"id":"8844c0b1c5fffff-17f6b4b0173f9079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667016,32.787716]},"id":"8f44c0b1c51eadc-17d6b3f3099c48c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c51eadc-17d6b3f3099c48c0","8f44c0b1c51849c-17def41f64fbfb7f"]},"geometry":{"type":"LineString","coordinates":[[-83.666945,32.787962],[-83.666989,32.787837],[-83.667016,32.787716]]},"id":"8a44c0b1c51ffff-1796b406e0195f93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358e1351-179efb6ea0bb2d18","8f44c0a358e06d2-17f6fd080646bb1d"]},"geometry":{"type":"LineString","coordinates":[[-83.663296,32.849818],[-83.66395100000001,32.850087]]},"id":"8944c0a358fffff-17b6fc3b5dda6226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a35842531-17feb7cc0a55e5ec","8f44c0a358e1351-179efb6ea0bb2d18"]},"geometry":{"type":"LineString","coordinates":[[-83.66395100000001,32.850087],[-83.66405,32.850127],[-83.664153,32.85016],[-83.664241,32.850175],[-83.66445200000001,32.850185],[-83.66454300000001,32.850178],[-83.664653,32.850156000000005],[-83.664787,32.850111000000005],[-83.66544,32.84986]]},"id":"8844c0a359fffff-1797b99940a9b712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694238,32.867429]},"id":"8f44c0a207365a0-17df717d49bc2be2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693954,32.867285]},"id":"8f44c0a2046b781-1797722ec9174605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a207365a0-17df717d49bc2be2","8f44c0a2046b781-1797722ec9174605"]},"geometry":{"type":"LineString","coordinates":[[-83.694238,32.867429],[-83.69402000000001,32.867324],[-83.693954,32.867285]]},"id":"8944c0a2047ffff-17b7f1d6c72dec94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69369300000001,32.867074]},"id":"8f44c0a2046a64a-179772d1e3d302fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2046a64a-179772d1e3d302fa","8f44c0a2046b781-1797722ec9174605"]},"geometry":{"type":"LineString","coordinates":[[-83.693954,32.867285],[-83.693821,32.867189],[-83.69369300000001,32.867074]]},"id":"8a44c0a2046ffff-17d77282164fe764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2044e30a-139673e9ebe1093f","8f44c0a2044c345-17dff2954fe73af7"]},"geometry":{"type":"LineString","coordinates":[[-83.693245,32.867517],[-83.693297,32.867541],[-83.693354,32.867562],[-83.69340100000001,32.86757],[-83.693488,32.867565],[-83.693568,32.867537],[-83.69373800000001,32.867458],[-83.69379,32.867427]]},"id":"8a44c0a2044ffff-139ef33d00b8505a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2044c345-17dff2954fe73af7","8f44c0a207365a0-17df717d49bc2be2"]},"geometry":{"type":"LineString","coordinates":[[-83.69379,32.867427],[-83.693971,32.867531],[-83.694079,32.867586],[-83.694117,32.867595],[-83.69415500000001,32.867593],[-83.69418800000001,32.867579],[-83.694213,32.867556],[-83.694229,32.867528],[-83.694237,32.8675],[-83.694238,32.867429]]},"id":"8944c0a2047ffff-139e71f268ef7fb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a207365a0-17df717d49bc2be2","8f44c0a2046b781-1797722ec9174605"]},"geometry":{"type":"LineString","coordinates":[[-83.694238,32.867429],[-83.69422300000001,32.867308],[-83.694202,32.867272],[-83.69417700000001,32.867247],[-83.69412000000001,32.867223],[-83.694086,32.867213],[-83.69405400000001,32.867213],[-83.694023,32.86722],[-83.693996,32.867237],[-83.693954,32.867285]]},"id":"8944c0a2047ffff-17fff1c19c41decc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2044c345-17dff2954fe73af7","8f44c0a2046b781-1797722ec9174605"]},"geometry":{"type":"LineString","coordinates":[[-83.693954,32.867285],[-83.693872,32.867365],[-83.69379,32.867427]]},"id":"8944c0a2047ffff-17b77260a4e2ea82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61399300000001,32.875276]},"id":"8f44c0a322d5290-1397b5666a277fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322d5290-1397b5666a277fed","8f44c0a322deceb-17973629604ee35f"]},"geometry":{"type":"LineString","coordinates":[[-83.61399300000001,32.875276],[-83.613681,32.875888]]},"id":"8944c0a322fffff-13d7f5c7e242c94c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613504,32.876233]},"id":"8f44c0a322dad8b-17dfb69800168951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322deceb-17973629604ee35f","8f44c0a322dad8b-17dfb69800168951"]},"geometry":{"type":"LineString","coordinates":[[-83.613681,32.875888],[-83.613504,32.876233]]},"id":"8a44c0a322dffff-17f7f660b6582e69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61277700000001,32.875092]},"id":"8f44c0a14925303-1397b85e6d2978e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322d2996-13bf77b1e64130e3","8f44c0a14925303-1397b85e6d2978e1"]},"geometry":{"type":"LineString","coordinates":[[-83.61277700000001,32.875092],[-83.61305300000001,32.875127]]},"id":"8844c0a323fffff-139f78082929862f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322d5290-1397b5666a277fed","8f44c0a322d2996-13bf77b1e64130e3"]},"geometry":{"type":"LineString","coordinates":[[-83.61305300000001,32.875127],[-83.613343,32.875162],[-83.613882,32.875236],[-83.61399300000001,32.875276]]},"id":"8a44c0a322d7fff-13d7768a66ab9382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322d5290-1397b5666a277fed","8f44c0a322c10b2-13f7b2ad8ddc5c6b"]},"geometry":{"type":"LineString","coordinates":[[-83.61399300000001,32.875276],[-83.614638,32.875517],[-83.615108,32.875649]]},"id":"8944c0a322fffff-1397340c4519d261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61539900000001,32.875784]},"id":"8f44c0a322ccd91-17d731f7a6074207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a322c10b2-13f7b2ad8ddc5c6b","8f44c0a322ccd91-17d731f7a6074207"]},"geometry":{"type":"LineString","coordinates":[[-83.615108,32.875649],[-83.615239,32.8757],[-83.61539900000001,32.875784]]},"id":"8b44c0a322c1fff-179f725170c764df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695541,32.821709000000006]},"id":"8f44c0b1995bd49-13d66e4eead3670e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1985cd5b-1797efdffa0aba09","8f44c0b1995bd49-13d66e4eead3670e"]},"geometry":{"type":"LineString","coordinates":[[-83.695541,32.821709000000006],[-83.69549,32.821911],[-83.6949214,32.8237271],[-83.6948993,32.8238652]]},"id":"8844c0b199fffff-13f7ef1a07514de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69583990000001,32.825484800000005]},"id":"8f44c0b19ba50d3-13fe6d9411b94c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1985cd5b-1797efdffa0aba09","8f44c0b19ba50d3-13fe6d9411b94c61"]},"geometry":{"type":"LineString","coordinates":[[-83.6948993,32.8238652],[-83.69484630000001,32.8241959],[-83.6952433,32.824421300000004],[-83.6955544,32.8245475],[-83.6958226,32.8252327],[-83.69583990000001,32.825484800000005]]},"id":"8744c0b19ffffff-17dfeeac467e3cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69647710000001,32.8254852]},"id":"8f44c0b19b1622b-13fe6c05dc031d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b1622b-13fe6c05dc031d21","8f44c0b19ba50d3-13fe6d9411b94c61"]},"geometry":{"type":"LineString","coordinates":[[-83.69583990000001,32.825484800000005],[-83.69587630000001,32.8260171],[-83.69611230000001,32.8262244],[-83.69634830000001,32.826260500000004],[-83.69695990000001,32.8262335],[-83.69712080000001,32.8261704],[-83.69719590000001,32.825963],[-83.6970994,32.825620400000005],[-83.69687400000001,32.8254942],[-83.69647710000001,32.8254852]]},"id":"8844c0b19bfffff-139e7bd0ad2e30f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b1622b-13fe6c05dc031d21","8f44c0b19ba50d3-13fe6d9411b94c61"]},"geometry":{"type":"LineString","coordinates":[[-83.69647710000001,32.8254852],[-83.69583990000001,32.825484800000005]]},"id":"8844c0b19bfffff-13fe6cccfaf14dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69689000000001,32.821523]},"id":"8f44c0b199480b0-17dfeb03c498c126"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1986a88e-17d76c2e1c8a2ae3","8f44c0b199480b0-17dfeb03c498c126"]},"geometry":{"type":"LineString","coordinates":[[-83.69689000000001,32.821523],[-83.69676600000001,32.821741],[-83.6965,32.822425],[-83.69647400000001,32.822505],[-83.69647300000001,32.822617],[-83.69653070000001,32.822897600000005],[-83.69635910000001,32.823483700000004],[-83.69641270000001,32.823582800000004]]},"id":"8844c0b199fffff-13deebd270d761a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6963054,32.8238894]},"id":"8f44c0b1986a65c-1796ec712c343426"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1986a65c-1796ec712c343426","8f44c0b1986a88e-17d76c2e1c8a2ae3"]},"geometry":{"type":"LineString","coordinates":[[-83.69641270000001,32.823582800000004],[-83.69616590000001,32.8237],[-83.6963054,32.8238894]]},"id":"8b44c0b1986afff-17b67c8ab0081da7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71806600000001,32.915683]},"id":"8f44c0a285aa2cc-17bff750cd43a13d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71799200000001,32.916086]},"id":"8f44c0a2858c246-17bff77f0a6bc0b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a285aa2cc-17bff750cd43a13d","8f44c0a2858c246-17bff77f0a6bc0b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71806600000001,32.915683],[-83.71807000000001,32.915948],[-83.718064,32.915987],[-83.71804900000001,32.916015],[-83.71799200000001,32.916086]]},"id":"8944c0a285bffff-17b7775672bae577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a285890e3-13b7b73a4ffd5dea","8f44c0a2858c246-17bff77f0a6bc0b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71799200000001,32.916086],[-83.717916,32.916148],[-83.717797,32.916303],[-83.717746,32.916379],[-83.717735,32.916471],[-83.717751,32.916558],[-83.717785,32.916634],[-83.717858,32.916725],[-83.717916,32.916763],[-83.71796400000001,32.916776],[-83.718017,32.916772],[-83.71807700000001,32.916748000000005],[-83.718102,32.916697]]},"id":"8a44c0a2858ffff-17b7b7ceb56d7c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a285890e3-13b7b73a4ffd5dea","8f44c0a2858c246-17bff77f0a6bc0b8"]},"geometry":{"type":"LineString","coordinates":[[-83.718102,32.916697],[-83.71811100000001,32.916635],[-83.71810500000001,32.916223],[-83.71808800000001,32.916171],[-83.718057,32.916125],[-83.71799200000001,32.916086]]},"id":"8a44c0a2858ffff-17de773f12fefac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2858ea0d-1796f87909b32a6d","8f44c0a2858c246-17bff77f0a6bc0b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71799200000001,32.916086],[-83.71783900000001,32.916027],[-83.71759200000001,32.91603]]},"id":"8a44c0a2858ffff-179ef7f9fb0311a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2858ea0d-1796f87909b32a6d","8f44c0a2858e4ea-179ef96d69101cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.71759200000001,32.91603],[-83.717201,32.916043]]},"id":"8b44c0a2858efff-179ef8f33e4782d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71575,32.915732000000006]},"id":"8f44c0a285932ab-17debcf8401ad57a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a285932ab-17debcf8401ad57a","8f44c0a2858e4ea-179ef96d69101cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.717201,32.916043],[-83.717066,32.916052],[-83.71682200000001,32.916050000000006],[-83.71647,32.916038],[-83.716322,32.916013],[-83.716139,32.916005000000006],[-83.715923,32.916001],[-83.715851,32.915991000000005],[-83.71580200000001,32.91597],[-83.71577900000001,32.915925],[-83.71576200000001,32.915872],[-83.71575,32.915732000000006]]},"id":"8944c0a285bffff-17f73b686e7441fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672043,32.825851]},"id":"8f44c0b1b951aa4-13dee7ad2cd87746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67229800000001,32.825861]},"id":"8f44c0b1b942620-13f7a70dcdd6a300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b951aa4-13dee7ad2cd87746","8f44c0b1b942620-13f7a70dcdd6a300"]},"geometry":{"type":"LineString","coordinates":[[-83.672043,32.825851],[-83.67229800000001,32.825861]]},"id":"8944c0b1b97ffff-13f6a75d71d22b14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b943994-13fee5e4430b743e","8f44c0b1b942620-13f7a70dcdd6a300"]},"geometry":{"type":"LineString","coordinates":[[-83.67229800000001,32.825861],[-83.672628,32.825877000000006],[-83.672774,32.825879]]},"id":"8a44c0b1b947fff-13ffe67911903463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679225,32.786499]},"id":"8f44c0b1c8d4096-13dff62461656244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d0841-139fd5cd88c09ffd","8f44c0b1c8d4096-13dff62461656244"]},"geometry":{"type":"LineString","coordinates":[[-83.679225,32.786499],[-83.67922800000001,32.786716000000006],[-83.679253,32.786749],[-83.679364,32.786838]]},"id":"8a44c0b1c8d7fff-13bf9610533a42a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d5a02-139ef497815cbb01","8f44c0b1c8d0841-139fd5cd88c09ffd"]},"geometry":{"type":"LineString","coordinates":[[-83.679364,32.786838],[-83.679417,32.786825],[-83.67976,32.786828],[-83.67986,32.786839]]},"id":"8a44c0b1c8d7fff-1397d532d1e6a957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8d5a02-139ef497815cbb01","8f44c0b1c8c048b-13bed394cafe8042"]},"geometry":{"type":"LineString","coordinates":[[-83.67986,32.786839],[-83.68014500000001,32.786938],[-83.680197,32.786976],[-83.680244,32.787018],[-83.68027400000001,32.78707]]},"id":"8944c0b1c8fffff-13d7b40b56d7218d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697592,32.815027]},"id":"8f44c0b1d21c32a-17ffe94d061c1479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69606750000001,32.8152818]},"id":"8f44c0b1d2a8073-139f6d05d323ebf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2a8073-139f6d05d323ebf4","8f44c0b1d21c32a-17ffe94d061c1479"]},"geometry":{"type":"LineString","coordinates":[[-83.697592,32.815027],[-83.697553,32.815125],[-83.697512,32.815187],[-83.697461,32.815233],[-83.697382,32.815286],[-83.697339,32.815305],[-83.69731200000001,32.815313],[-83.69726800000001,32.815326],[-83.697201,32.815336],[-83.697086,32.81534],[-83.69683500000001,32.815323],[-83.69644500000001,32.815305],[-83.69606750000001,32.8152818]]},"id":"8844c0b1d3fffff-1396eb04ec82c025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d285649-13f7ef3ef8f78bd4","8f44c0b1d2a8073-139f6d05d323ebf4"]},"geometry":{"type":"LineString","coordinates":[[-83.69606750000001,32.8152818],[-83.69595600000001,32.815275],[-83.695256,32.815243],[-83.6951569,32.8152376]]},"id":"8944c0b1d2bffff-13977e2264d9c095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d285649-13f7ef3ef8f78bd4","8f44c0b1d2821ac-13d7718e9755d3b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6951569,32.8152376],[-83.69421030000001,32.8151856]]},"id":"8a44c0b1d287fff-13f77066c97431c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6939601,32.8151718]},"id":"8f44c0b1d282596-13de722af4a6a3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d282596-13de722af4a6a3f3","8f44c0b1d2821ac-13d7718e9755d3b9"]},"geometry":{"type":"LineString","coordinates":[[-83.69421030000001,32.8151856],[-83.6939601,32.8151718]]},"id":"8b44c0b1d282fff-13def1dccddd8e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931567,32.815127700000005]},"id":"8f44c0b1d292b42-13bef4211ecbf3e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d282596-13de722af4a6a3f3","8f44c0b1d292b42-13bef4211ecbf3e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6939601,32.8151718],[-83.6931567,32.815127700000005]]},"id":"8a44c0b1d297fff-13bef3260f5648a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74309930000001,32.927335500000005]},"id":"8f44c0a29c0c172-13b5fa32f2cf457d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c0a2d1-1797fbab96dde090","8f44c0a29c0c172-13b5fa32f2cf457d"]},"geometry":{"type":"LineString","coordinates":[[-83.74309930000001,32.927335500000005],[-83.7428246,32.927714800000004],[-83.7424967,32.9281328]]},"id":"8a44c0a29c0ffff-139ffaece0c639d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7430379,32.9284619]},"id":"8f44c0a29c56cd6-17f5fa5955ddd507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c56cd6-17f5fa5955ddd507","8f44c0a29c0a2d1-1797fbab96dde090"]},"geometry":{"type":"LineString","coordinates":[[-83.7424967,32.9281328],[-83.7416429,32.9292405],[-83.741625,32.9293752],[-83.7417642,32.929477],[-83.7420068,32.929644700000004],[-83.7421745,32.9296657],[-83.7423172,32.9296657],[-83.7424599,32.929608800000004],[-83.7426918,32.9294711],[-83.7431128,32.928962],[-83.7431663,32.928761300000005],[-83.74315920000001,32.9286236],[-83.7430379,32.9284619]]},"id":"8844c0a29dfffff-17dffbfd933d3524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c56cd6-17f5fa5955ddd507","8f44c0a29c0a2d1-1797fbab96dde090"]},"geometry":{"type":"LineString","coordinates":[[-83.7430379,32.9284619],[-83.7424967,32.9281328]]},"id":"8844c0a29dfffff-17fdfb02745d9eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739564,32.876036]},"id":"8f44c0b52010246-17f682d48f7d7169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52010246-17f682d48f7d7169","8f44c0b52010236-17b6e2fc826e33ae"]},"geometry":{"type":"LineString","coordinates":[[-83.739564,32.876036],[-83.7395,32.875963]]},"id":"8c44c0b520103ff-17dfb2e8837a59a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52010246-17f682d48f7d7169","8f44c0b52010236-17b6e2fc826e33ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7395,32.875963],[-83.7395,32.876001],[-83.73949300000001,32.876036],[-83.739462,32.876108],[-83.73942600000001,32.876174],[-83.73941500000001,32.876206],[-83.739412,32.876235],[-83.739422,32.876261],[-83.73944300000001,32.876291],[-83.739681,32.876495000000006],[-83.739715,32.876513],[-83.739748,32.876519],[-83.73978100000001,32.876516],[-83.739811,32.876503],[-83.73983100000001,32.876481000000005],[-83.739841,32.876455],[-83.739841,32.876429],[-83.739818,32.876365],[-83.73977400000001,32.876297],[-83.739564,32.876036]]},"id":"8944c0b5203ffff-17fed2b01de30d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6590834,32.772019900000004]},"id":"8f44c0b11102740-17f6f750ec1a371f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11102740-17f6f750ec1a371f","8f44c0b111068ec-17f7c6a9a7de2e81"]},"geometry":{"type":"LineString","coordinates":[[-83.659351,32.771382],[-83.65918500000001,32.771836],[-83.6590834,32.772019900000004]]},"id":"8a44c0b11107fff-17bec6f6d46dbabe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11102740-17f6f750ec1a371f","8f44c0b1111aa6d-13bfe8548be15646"]},"geometry":{"type":"LineString","coordinates":[[-83.6590834,32.772019900000004],[-83.65896400000001,32.772236],[-83.658786,32.772684000000005],[-83.658668,32.772931]]},"id":"8944c0b1113ffff-139ff7d5815265e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6092545,32.8445302]},"id":"8f44c0a36456b15-17f760f7f343f2c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6080084,32.8449563]},"id":"8f44c0a364e060a-1397f402c68b1aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36456b15-17f760f7f343f2c0","8f44c0a364e060a-1397f402c68b1aa9"]},"geometry":{"type":"LineString","coordinates":[[-83.6092545,32.8445302],[-83.60902560000001,32.8446159],[-83.6088843,32.8446489],[-83.60872690000001,32.844679500000005],[-83.60856000000001,32.84471],[-83.6083888,32.8447395],[-83.6082576,32.8447799],[-83.6081424,32.844841200000005],[-83.6080084,32.8449563]]},"id":"8844c0a365fffff-13ff52881d683f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6079603,32.8449599]},"id":"8f44c0a364e06ab-1397f420d6fa203a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364e06ab-1397f420d6fa203a","8f44c0a364e060a-1397f402c68b1aa9"]},"geometry":{"type":"LineString","coordinates":[[-83.6080084,32.8449563],[-83.60803170000001,32.845007700000004],[-83.6080433,32.8450408],[-83.60804040000001,32.8450689],[-83.6080156,32.845100800000004],[-83.607988,32.845117900000005],[-83.60795590000001,32.8451228],[-83.60791950000001,32.845116700000005],[-83.6078787,32.845100800000004],[-83.60785680000001,32.8450763],[-83.6078466,32.8450469],[-83.60785100000001,32.845015000000004],[-83.60786990000001,32.8449881],[-83.6078918,32.8449759],[-83.60792090000001,32.8449661],[-83.6079603,32.8449599]]},"id":"8a44c0a364e7fff-13bfe42abc5014b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364e06ab-1397f420d6fa203a","8f44c0a364e060a-1397f402c68b1aa9"]},"geometry":{"type":"LineString","coordinates":[[-83.6079603,32.8449599],[-83.6080084,32.8449563]]},"id":"8c44c0a364e07ff-1397d411c4afd2db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739653,32.878008]},"id":"8f44c0b520f56d8-13b7029ce9ef2fb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520f56d8-13b7029ce9ef2fb5","8f44c0b520f1d59-13dec29f6814979a"]},"geometry":{"type":"LineString","coordinates":[[-83.739653,32.878008],[-83.739649,32.878078]]},"id":"8c44c0b520f1dff-13dee29e284c1619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520f56d8-13b7029ce9ef2fb5","8f44c0b520f1d59-13dec29f6814979a"]},"geometry":{"type":"LineString","coordinates":[[-83.739649,32.878078],[-83.73973500000001,32.878061],[-83.73976400000001,32.878045],[-83.73978600000001,32.878026000000006],[-83.739795,32.878],[-83.73979100000001,32.877975],[-83.739772,32.877954],[-83.739745,32.877943],[-83.739715,32.877946],[-83.739689,32.877958],[-83.73966800000001,32.877981000000005],[-83.739653,32.878008]]},"id":"8a44c0b520f7fff-13b7b26d6243d2c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739259,32.878825]},"id":"8f44c0b520d5ae1-13b7a39322a7b9c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520d5ae1-13b7a39322a7b9c7","8f44c0b520c62b3-13be22dc05836eba"]},"geometry":{"type":"LineString","coordinates":[[-83.739259,32.878825],[-83.739552,32.878813]]},"id":"8a44c0b520c7fff-13bfe3379a09848e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520d5ae1-13b7a39322a7b9c7","8f44c0b520c62b3-13be22dc05836eba"]},"geometry":{"type":"LineString","coordinates":[[-83.739552,32.878813],[-83.739545,32.878917],[-83.73952600000001,32.87896],[-83.739492,32.878988],[-83.739451,32.878999],[-83.739247,32.879007],[-83.73913200000001,32.879007],[-83.73908200000001,32.878999],[-83.739041,32.878977],[-83.739016,32.878949],[-83.739007,32.878915],[-83.739012,32.878883],[-83.739029,32.878856],[-83.739056,32.878835],[-83.73909,32.878825],[-83.739259,32.878825]]},"id":"8944c0b520fffff-13f6d395f181e044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669678,32.849915]},"id":"8f44c0a2648e0e3-179eed7344d5daf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2648e0e3-179eed7344d5daf6","8f44c0a2648e083-179fed996c397273"]},"geometry":{"type":"LineString","coordinates":[[-83.669678,32.849915],[-83.669617,32.849891]]},"id":"8c44c0a2648e1ff-1797ed865bc06c1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2648e0e3-179eed7344d5daf6","8f44c0a2648e083-179fed996c397273"]},"geometry":{"type":"LineString","coordinates":[[-83.669617,32.849891],[-83.66955200000001,32.849947],[-83.66950700000001,32.850015],[-83.669488,32.850088],[-83.669498,32.850144],[-83.669532,32.850183],[-83.6696,32.850199],[-83.669663,32.850192],[-83.66972600000001,32.850152],[-83.66977200000001,32.850102],[-83.669784,32.850056],[-83.669774,32.850012],[-83.66974900000001,32.849974],[-83.669678,32.849915]]},"id":"8a44c0a2648ffff-17ffed9120febe62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64970100000001,32.851701000000006]},"id":"8f44c0a35519ce4-13fffe38e6214ad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35519ce4-13fffe38e6214ad5","8f44c0a355a9d4a-13b6e1476cd0f008"]},"geometry":{"type":"LineString","coordinates":[[-83.648449,32.851563],[-83.64970100000001,32.851701000000006]]},"id":"8844c0a355fffff-13dedfc02b2a1e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65080400000001,32.851798]},"id":"8f44c0a355082f4-13b7db878a749f88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35519ce4-13fffe38e6214ad5","8f44c0a355082f4-13b7db878a749f88"]},"geometry":{"type":"LineString","coordinates":[[-83.64970100000001,32.851701000000006],[-83.65080400000001,32.851798]]},"id":"8944c0a3553ffff-1397fce0392a270c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662423,32.851446]},"id":"8f44c0a358dd0a2-13dfff29a067d1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358dd0a2-13dfff29a067d1a8","8f44c0a358c5762-17bebd503f627cf2"]},"geometry":{"type":"LineString","coordinates":[[-83.662423,32.851446],[-83.662518,32.851495],[-83.66255500000001,32.85152],[-83.662757,32.851686],[-83.66287100000001,32.851743],[-83.664337,32.85239],[-83.664389,32.852409],[-83.66444700000001,32.852423],[-83.66453200000001,32.852424],[-83.66459800000001,32.85241],[-83.664631,32.852397],[-83.664681,32.852362],[-83.66473400000001,32.852291],[-83.664983,32.851891],[-83.665003,32.851841],[-83.665012,32.85179],[-83.665011,32.851747],[-83.664978,32.851667],[-83.664945,32.851639],[-83.664866,32.851591],[-83.66482,32.851574],[-83.664755,32.851565],[-83.664388,32.85155],[-83.664292,32.851537],[-83.664212,32.851487],[-83.664129,32.851405],[-83.664016,32.851325],[-83.663891,32.851264],[-83.66377,32.851159],[-83.66371500000001,32.851128],[-83.663494,32.851061],[-83.663431,32.851025],[-83.663392,32.850997],[-83.66335000000001,32.850952],[-83.6633,32.850824],[-83.663256,32.85074],[-83.663227,32.850701],[-83.66318050000001,32.8505826]]},"id":"8744c0a35ffffff-13ffbb89583fac96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662429,32.850806]},"id":"8f44c0a358c2acb-17dfff25ed779808"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a358c2acb-17dfff25ed779808","8f44c0a358c5762-17bebd503f627cf2"]},"geometry":{"type":"LineString","coordinates":[[-83.66318050000001,32.8505826],[-83.6630038,32.850609500000004],[-83.6628014,32.8507112],[-83.6626966,32.8507819],[-83.66253540000001,32.850810700000004],[-83.662429,32.850806]]},"id":"8a44c0a358c7fff-179ffe3a1bd88bb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741832,32.8795939]},"id":"8f44c0b523b4c13-1797fd4b0e08bb55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b523b4c13-1797fd4b0e08bb55","8f44c0b52053909-139ffcf429fb4b56"]},"geometry":{"type":"LineString","coordinates":[[-83.741832,32.8795939],[-83.741826,32.879506],[-83.741833,32.879387],[-83.74184500000001,32.879329000000006],[-83.741894,32.879215],[-83.741923,32.87916],[-83.74194800000001,32.879101],[-83.741968,32.87904],[-83.741991,32.878911],[-83.741996,32.878638],[-83.74196500000001,32.878424],[-83.741971,32.878386]]},"id":"8844c0b521fffff-179ffd0c2b548161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52009a09-13bdfd12cddf5429","8f44c0b52053909-139ffcf429fb4b56"]},"geometry":{"type":"LineString","coordinates":[[-83.741971,32.878386],[-83.741994,32.878256],[-83.741983,32.878107],[-83.74195900000001,32.877958],[-83.74192500000001,32.877809],[-83.74191300000001,32.877733],[-83.741899,32.877504],[-83.741922,32.877404]]},"id":"8944c0b5207ffff-13fdfd042a8347ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52009a09-13bdfd12cddf5429","8f44c0b5200d872-17ddfcf88ec3a381"]},"geometry":{"type":"LineString","coordinates":[[-83.741922,32.877404],[-83.74196900000001,32.877204],[-83.741957,32.876883],[-83.74196400000001,32.876821]]},"id":"8a44c0b5200ffff-1795fcfd26f2ef03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200d872-17ddfcf88ec3a381","8f44c0b52005190-17dffef228e445a2"]},"geometry":{"type":"LineString","coordinates":[[-83.74196400000001,32.876821],[-83.741983,32.876618],[-83.74198000000001,32.876438],[-83.741983,32.876272],[-83.741971,32.876202],[-83.741951,32.876137],[-83.741921,32.876078],[-83.741883,32.876025],[-83.741838,32.875974],[-83.741786,32.875928],[-83.741726,32.875889],[-83.741658,32.875855],[-83.741583,32.875829],[-83.74150300000001,32.875811],[-83.74142,32.875801],[-83.741155,32.875799]]},"id":"8944c0b5203ffff-17b7fd798712494e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52005190-17dffef228e445a2","8f44c0b5200621d-17dfa09a8c1c24cb"]},"geometry":{"type":"LineString","coordinates":[[-83.741155,32.875799],[-83.740476,32.875801]]},"id":"8a44c0b52007fff-17dfffc65d7be78e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5200621d-17dfa09a8c1c24cb","8f44c0b520066e0-17d6410e24685342"]},"geometry":{"type":"LineString","coordinates":[[-83.740476,32.875801],[-83.740291,32.875802]]},"id":"8b44c0b52006fff-17dff0d45ebd2264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520150c3-17d622050adb67c9","8f44c0b520066e0-17d6410e24685342"]},"geometry":{"type":"LineString","coordinates":[[-83.740291,32.875802],[-83.739896,32.875805]]},"id":"8944c0b5203ffff-17d73189940076e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520150c3-17d622050adb67c9","8f44c0b52010172-17de63054e042c3e"]},"geometry":{"type":"LineString","coordinates":[[-83.739896,32.875805],[-83.739486,32.875799]]},"id":"8a44c0b52017fff-17d64285258777e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b520a3c8c-17dec70281b0c46f","8f44c0b52010172-17de63054e042c3e"]},"geometry":{"type":"LineString","coordinates":[[-83.739486,32.875799],[-83.739013,32.875784],[-83.738814,32.875773],[-83.73862000000001,32.875771],[-83.738425,32.87579],[-83.73832800000001,32.875804],[-83.73823200000001,32.875824],[-83.738138,32.87585],[-83.73805,32.875884],[-83.737971,32.875926],[-83.73790500000001,32.875977],[-83.737852,32.87603]]},"id":"8844c0b521fffff-17de5513d5f5dac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52084b76-17df8741a81231e6","8f44c0b520a3c8c-17dec70281b0c46f"]},"geometry":{"type":"LineString","coordinates":[[-83.737852,32.87603],[-83.737706,32.875993],[-83.737651,32.875991],[-83.737627,32.875997000000005],[-83.73758600000001,32.876019],[-83.737567,32.876036],[-83.737543,32.876078],[-83.73754000000001,32.8761],[-83.737543,32.876125],[-83.737566,32.876174],[-83.73758500000001,32.876194000000005],[-83.73768100000001,32.876226],[-83.737751,32.876236]]},"id":"8944c0b520bffff-1796177e19d87ce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76640300000001,32.72294]},"id":"8f44c0b2192d15e-179dc14e2c9f5219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2192d15e-179dc14e2c9f5219","8f44c0b21266058-17bfe2de2feb1f05"]},"geometry":{"type":"LineString","coordinates":[[-83.76640300000001,32.72294],[-83.76648700000001,32.722991],[-83.766564,32.723044],[-83.76658400000001,32.723065000000005],[-83.7666677,32.7231249],[-83.7667383,32.723255],[-83.76647600000001,32.723855],[-83.766343,32.724313],[-83.766284,32.724556],[-83.766233,32.724821],[-83.76609,32.72569],[-83.76603680000001,32.7260787],[-83.76596930000001,32.728164500000005],[-83.76593120000001,32.7295182],[-83.76591,32.730916],[-83.7658997,32.7313023],[-83.76587500000001,32.732214],[-83.765826,32.734496],[-83.765809,32.735642],[-83.765798,32.736794],[-83.765793,32.738006],[-83.765763,32.741419]]},"id":"8544c0b3fffffff-17f5e26846412ee0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76548000000001,32.743344]},"id":"8f44c0b2124ecdb-13ffc38f0e891e0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b21266058-17bfe2de2feb1f05","8f44c0b2124ecdb-13ffc38f0e891e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.765763,32.741419],[-83.76571100000001,32.742182],[-83.76560500000001,32.742787],[-83.76548000000001,32.743344]]},"id":"8944c0b2127ffff-1797f32180938475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76497300000001,32.745171]},"id":"8f44c0b2c5a3442-17f7e4cbef6f8369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2c5a3442-17f7e4cbef6f8369","8f44c0b2124ecdb-13ffc38f0e891e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.76548000000001,32.743344],[-83.76517000000001,32.744549],[-83.76497300000001,32.745171]]},"id":"8744c0b2cffffff-13bff4266198c385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2c5a3442-17f7e4cbef6f8369","8f44c0b2c5992d4-13dfe6add6e844e6"]},"geometry":{"type":"LineString","coordinates":[[-83.76497300000001,32.745171],[-83.7642019,32.747185]]},"id":"8944c0b2c5bffff-17ddc5bcdf99dba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76423650000001,32.7500073]},"id":"8f44c0b2c488649-13b7d698383ec1c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2c488649-13b7d698383ec1c2","8f44c0b2c5992d4-13dfe6add6e844e6"]},"geometry":{"type":"LineString","coordinates":[[-83.7642019,32.747185],[-83.764105,32.74749],[-83.764025,32.747815],[-83.76398800000001,32.748132000000005],[-83.76398300000001,32.748403],[-83.764002,32.748649],[-83.764043,32.748922],[-83.76423650000001,32.7500073]]},"id":"8844c0b2c5fffff-17bdd6fa8f9807c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761519,32.758001]},"id":"8f44c0b2eac1895-17b7ed3aaddde42b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759072,32.76643]},"id":"8f44c0b285a37a1-13dfd33404c229ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b285a37a1-13dfd33404c229ee","8f44c0b2eac1895-17b7ed3aaddde42b"]},"geometry":{"type":"LineString","coordinates":[[-83.761519,32.758001],[-83.76147,32.758146],[-83.76137100000001,32.758383],[-83.761257,32.75864],[-83.76116400000001,32.758837],[-83.760908,32.759343],[-83.759797,32.761404],[-83.75959200000001,32.7618],[-83.75948600000001,32.762060000000005],[-83.75946300000001,32.762126],[-83.759393,32.762378000000005],[-83.759331,32.762712],[-83.75930000000001,32.763027],[-83.759275,32.763648],[-83.75921600000001,32.765081],[-83.75918200000001,32.765616],[-83.75915400000001,32.765904],[-83.759072,32.76643]]},"id":"8644c0b2fffffff-17bdd12fd1bf711a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75851,32.768307]},"id":"8f44c0b284a4d1e-17dff49346c87f78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b284a4d1e-17dff49346c87f78","8f44c0b285a37a1-13dfd33404c229ee"]},"geometry":{"type":"LineString","coordinates":[[-83.759072,32.76643],[-83.758954,32.766972],[-83.75885600000001,32.767327],[-83.758813,32.767467],[-83.758775,32.767588],[-83.758696,32.76782],[-83.758599,32.768082],[-83.75851,32.768307]]},"id":"8944c0b285bffff-139ff3d03dba4397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b284a4d1e-17dff49346c87f78","8f44c0b2ab06c82-1397f9c042fa9997"]},"geometry":{"type":"LineString","coordinates":[[-83.75851,32.768307],[-83.758398,32.768565],[-83.75827600000001,32.768819],[-83.758166,32.769039],[-83.757897,32.769573],[-83.757659,32.770029],[-83.75749900000001,32.770334000000005],[-83.757254,32.77082],[-83.75660400000001,32.772081],[-83.75639000000001,32.772485]]},"id":"8644c0b2fffffff-13fdf720b94fb850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2aa338dd-17dffc16645f8509","8f44c0b2ab06c82-1397f9c042fa9997"]},"geometry":{"type":"LineString","coordinates":[[-83.75639000000001,32.772485],[-83.755865,32.773536],[-83.755758,32.773798],[-83.755668,32.774062],[-83.755595,32.774348],[-83.755525,32.774718],[-83.75543300000001,32.775263]]},"id":"8844c0b2abfffff-13f7db274da32623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75539400000001,32.775499]},"id":"8f44c0b2aa332a8-17fffc2ec99513a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2aa338dd-17dffc16645f8509","8f44c0b2aa332a8-17fffc2ec99513a0"]},"geometry":{"type":"LineString","coordinates":[[-83.75543300000001,32.775263],[-83.75539400000001,32.775499]]},"id":"8b44c0b2aa33fff-17b5fc2299fbbacb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2aa332a8-17fffc2ec99513a0","8f44c0b2aaf1805-17dfdcea499f8ea1"]},"geometry":{"type":"LineString","coordinates":[[-83.75539400000001,32.775499],[-83.7550932,32.7771624],[-83.7550669,32.777379],[-83.7550562,32.7776469],[-83.7550691,32.7778858],[-83.75509000000001,32.778086200000004],[-83.755094,32.7781053]]},"id":"8844c0b2abfffff-139fdcb39446016d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b57351b-13bdf6a7edf407db","8f44c0b2aaf1805-17dfdcea499f8ea1"]},"geometry":{"type":"LineString","coordinates":[[-83.755094,32.7781053],[-83.7551253,32.778255],[-83.755211,32.778531],[-83.755268,32.778698],[-83.75583400000001,32.780057],[-83.75600700000001,32.780492],[-83.75613200000001,32.780839],[-83.756224,32.781115],[-83.756308,32.781422],[-83.756324,32.78148],[-83.756389,32.781748],[-83.756574,32.782641000000005],[-83.75673400000001,32.78341],[-83.756786,32.783681],[-83.757041,32.784925],[-83.757087,32.785224],[-83.757104,32.785556],[-83.75710500000001,32.785832],[-83.75709900000001,32.786105],[-83.757084,32.786364],[-83.757085,32.786707],[-83.757092,32.786842],[-83.75710600000001,32.786986],[-83.75712800000001,32.787146],[-83.757222,32.787533],[-83.757469,32.788331],[-83.757548,32.788573],[-83.7576578,32.7889307]]},"id":"8644c0b2fffffff-13f7d94ef4996b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b46e38b-13b5f411754954b5","8f44c0b2b57351b-13bdf6a7edf407db"]},"geometry":{"type":"LineString","coordinates":[[-83.7576578,32.7889307],[-83.7578,32.789394],[-83.758301,32.790982],[-83.758651,32.792121],[-83.7587089,32.792397300000005],[-83.7587177,32.7925847]]},"id":"8844c0b2b5fffff-17bff5475f050c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75808500000001,32.794165]},"id":"8f44c0b2b44b548-1795f59cefca0566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b46e38b-13b5f411754954b5","8f44c0b2b44b548-1795f59cefca0566"]},"geometry":{"type":"LineString","coordinates":[[-83.7587177,32.7925847],[-83.75866500000001,32.793073],[-83.758584,32.793332],[-83.75847800000001,32.793557],[-83.758325,32.793801],[-83.758114,32.794108],[-83.75808500000001,32.794165]]},"id":"8944c0b2b47ffff-13b7f4a1dd37ad3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639926,32.830831]},"id":"8f44c0a34d5d105-1797f61646db7c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640883,32.829695]},"id":"8f44c0a34d63241-13bff3c0267dd5cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d5d105-1797f61646db7c16","8f44c0a34d63241-13bff3c0267dd5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.639926,32.830831],[-83.640883,32.829695]]},"id":"8944c0a34d7ffff-17b6f4eb348bb018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64184300000001,32.828559000000006]},"id":"8f44c0b1a6c9601-13fff1682af9021e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6c9601-13fff1682af9021e","8f44c0a34d63241-13bff3c0267dd5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.640883,32.829695],[-83.64130800000001,32.829206],[-83.64184300000001,32.828559000000006]]},"id":"8744c0a34ffffff-13def2920587de2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64284400000001,32.82737]},"id":"8f44c0b1a6e984d-1796eef68f066dc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6c9601-13fff1682af9021e","8f44c0b1a6e984d-1796eef68f066dc8"]},"geometry":{"type":"LineString","coordinates":[[-83.64184300000001,32.828559000000006],[-83.64284400000001,32.82737]]},"id":"8844c0b1a7fffff-1797f02f59e506f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6e984d-1796eef68f066dc8","8f44c0b1a651ad3-1797ed4ba213a5ad"]},"geometry":{"type":"LineString","coordinates":[[-83.64284400000001,32.82737],[-83.643527,32.826559]]},"id":"8844c0b1a7fffff-1796fe2119f54b40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64379500000001,32.826251]},"id":"8f44c0b1a642c56-13d6eca42118572a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a651ad3-1797ed4ba213a5ad","8f44c0b1a642c56-13d6eca42118572a"]},"geometry":{"type":"LineString","coordinates":[[-83.643527,32.826559],[-83.64379500000001,32.826251]]},"id":"8944c0b1a67ffff-13b7ecf7e9ad0afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679709,32.843494]},"id":"8f44c0a26c5594e-17ffd4f5eb033753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c5594e-17ffd4f5eb033753","8f44c0a26c51aab-17f69554ee366ff4"]},"geometry":{"type":"LineString","coordinates":[[-83.679709,32.843494],[-83.679653,32.843567],[-83.679636,32.843626],[-83.679598,32.843928000000005],[-83.679557,32.844112]]},"id":"8a44c0a26c57fff-17bed52f4ae23f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680199,32.846618]},"id":"8f44c0a2618596e-1796d3c3a3b67d15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c51aab-17f69554ee366ff4","8f44c0a2618596e-1796d3c3a3b67d15"]},"geometry":{"type":"LineString","coordinates":[[-83.679557,32.844112],[-83.67941,32.844335],[-83.679291,32.844487],[-83.67925600000001,32.844551],[-83.67923400000001,32.844614],[-83.67922,32.844728],[-83.679226,32.844796],[-83.679241,32.844842],[-83.679265,32.84488],[-83.679404,32.845065000000005],[-83.68005600000001,32.845883],[-83.680113,32.845981],[-83.68015000000001,32.84608],[-83.680183,32.846203],[-83.680194,32.846314],[-83.680188,32.846508],[-83.680199,32.846618]]},"id":"8744c0a26ffffff-13ffd4ff174d8b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2618596e-1796d3c3a3b67d15","8f44c0a26181905-179794360fa28030"]},"geometry":{"type":"LineString","coordinates":[[-83.680199,32.846618],[-83.68006550000001,32.8468198],[-83.68003800000001,32.846863],[-83.68001960000001,32.8469064],[-83.6800132,32.8469513],[-83.68001600000001,32.847004000000005]]},"id":"8b44c0a26185fff-1796f40a873de786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c0e84d-13ffb874e7172578","8f44c0a26c31134-17bfda058773e9ad"]},"geometry":{"type":"LineString","coordinates":[[-83.677636,32.840722],[-83.677592,32.840764],[-83.67747800000001,32.841087],[-83.677395,32.84141],[-83.677369,32.841718],[-83.677374,32.841841],[-83.6774,32.841971],[-83.677435,32.842064],[-83.67754000000001,32.842197],[-83.677688,32.842288],[-83.67779800000001,32.842326],[-83.677907,32.84234],[-83.678047,32.842332],[-83.678167,32.842298],[-83.67827700000001,32.842261]]},"id":"8944c0a26c3ffff-13b7da1c8e457486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c5594e-17ffd4f5eb033753","8f44c0a26c0e84d-13ffb874e7172578"]},"geometry":{"type":"LineString","coordinates":[[-83.67827700000001,32.842261],[-83.67845100000001,32.842382],[-83.678645,32.842529],[-83.67883400000001,32.842683],[-83.679083,32.842898000000005],[-83.679304,32.843102],[-83.67943500000001,32.843234],[-83.679561,32.843373],[-83.679709,32.843494]]},"id":"8844c0a26dfffff-13f7d6aa8fcbb642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656598,32.811799]},"id":"8f44c0b18490b93-139eed624391e251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65735400000001,32.811828000000006]},"id":"8f44c0b184866cd-13b6cb89cfd3209d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18490b93-139eed624391e251","8f44c0b184866cd-13b6cb89cfd3209d"]},"geometry":{"type":"LineString","coordinates":[[-83.656598,32.811799],[-83.65735400000001,32.811828000000006]]},"id":"8944c0b184bffff-1397fc760ba0d1b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658164,32.811867]},"id":"8f44c0b1848544c-13bee98f8b21f2b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184866cd-13b6cb89cfd3209d","8f44c0b1848544c-13bee98f8b21f2b5"]},"geometry":{"type":"LineString","coordinates":[[-83.65735400000001,32.811828000000006],[-83.658164,32.811867]]},"id":"8a44c0b18487fff-13befa8ca54e1bc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65909900000001,32.811925]},"id":"8f44c0b184a8c62-13dfe74723eb1575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184a8c62-13dfe74723eb1575","8f44c0b1848544c-13bee98f8b21f2b5"]},"geometry":{"type":"LineString","coordinates":[[-83.658164,32.811867],[-83.658963,32.811890000000005],[-83.659053,32.811901],[-83.65909900000001,32.811925]]},"id":"8944c0b184bffff-13d6c869705240bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69314410000001,32.847103600000004]},"id":"8f44c0a26b2ab33-17bff428f8645232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693118,32.848419]},"id":"8f44c0a26b0905d-13f7f43949e9c02f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b2ab33-17bff428f8645232","8f44c0a26b0905d-13f7f43949e9c02f"]},"geometry":{"type":"LineString","coordinates":[[-83.69314410000001,32.847103600000004],[-83.693127,32.848143],[-83.693118,32.848419]]},"id":"8844c0a26bfffff-17def430030e9bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693088,32.850911]},"id":"8f44c0a26a76a6b-179f744c0a237688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a76a6b-179f744c0a237688","8f44c0a26b0905d-13f7f43949e9c02f"]},"geometry":{"type":"LineString","coordinates":[[-83.693118,32.848419],[-83.693088,32.850911]]},"id":"8844c0a26bfffff-1796f442a3089463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68192900000001,32.841544]},"id":"8f44c0a26d4c0c5-13bf8f8a69bd6365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a268a2822-1397ea496202e4ca","8f44c0a26d4c0c5-13bf8f8a69bd6365"]},"geometry":{"type":"LineString","coordinates":[[-83.68192900000001,32.841544],[-83.68210400000001,32.841568],[-83.682331,32.841653],[-83.68266100000001,32.84176],[-83.68341500000001,32.841943],[-83.683496,32.841962],[-83.684081,32.842095]]},"id":"8744c0a26ffffff-13f6bcec6e0bf054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685839,32.8425071]},"id":"8f44c0a26813964-1396f5fea19f0f34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a268a2822-1397ea496202e4ca","8f44c0a26813964-1396f5fea19f0f34"]},"geometry":{"type":"LineString","coordinates":[[-83.684081,32.842095],[-83.685839,32.8425071]]},"id":"8844c0a269fffff-1396b82404f0a32d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686052,32.842557]},"id":"8f44c0a2681119a-13b6a57984adcde7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a2681119a-13b6a57984adcde7","8f44c0a26813964-1396f5fea19f0f34"]},"geometry":{"type":"LineString","coordinates":[[-83.685839,32.8425071],[-83.686052,32.842557]]},"id":"8a44c0a26817fff-139695bc17bda5b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a2681119a-13b6a57984adcde7","8f44c0a268031ab-13be834c0294d12d"]},"geometry":{"type":"LineString","coordinates":[[-83.686052,32.842557],[-83.68694400000001,32.842768]]},"id":"8944c0a2683ffff-13fe9462c864881c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687551,32.842881000000006]},"id":"8f44c0a26801209-13f6a1d0aeee7a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a26801209-13f6a1d0aeee7a96","8f44c0a268031ab-13be834c0294d12d"]},"geometry":{"type":"LineString","coordinates":[[-83.68694400000001,32.842768],[-83.687273,32.842841],[-83.68744500000001,32.842886],[-83.687551,32.842881000000006]]},"id":"8944c0a2683ffff-13d7d28eca4a5482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662423,32.840291]},"id":"8f44c0b1b75d6ee-179fff29a051d6bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66289110000001,32.8402966]},"id":"8f44c0b1b74a891-17b7fe0514a25edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b75d6ee-179fff29a051d6bd","8f44c0b1b74a891-17b7fe0514a25edf"]},"geometry":{"type":"LineString","coordinates":[[-83.662423,32.840291],[-83.662717,32.840294],[-83.66289110000001,32.8402966]]},"id":"8944c0b1b77ffff-179ffe97520fe888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74a891-17b7fe0514a25edf","8f44c0b1b74a864-17b6fd9ea7cb8843"]},"geometry":{"type":"LineString","coordinates":[[-83.66289110000001,32.8402966],[-83.663055,32.840299]]},"id":"8c44c0b1b74a9ff-17b6bdd1efa142b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74a864-17b6fd9ea7cb8843","8f44c0b1b748b52-17bffc554ceb2500"]},"geometry":{"type":"LineString","coordinates":[[-83.663055,32.840299],[-83.663582,32.84031]]},"id":"8a44c0b1b74ffff-17b6fcf9f282af20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74d71b-17bfbbf5ad820fef","8f44c0b1b748b52-17bffc554ceb2500"]},"geometry":{"type":"LineString","coordinates":[[-83.663582,32.84031],[-83.663735,32.840313]]},"id":"8a44c0b1b74ffff-17bebc257c241a30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665065,32.840344]},"id":"8f44c0b1b2b509e-17bfb8b666c530ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74d71b-17bfbbf5ad820fef","8f44c0b1b2b509e-17bfb8b666c530ac"]},"geometry":{"type":"LineString","coordinates":[[-83.663735,32.840313],[-83.665065,32.840344]]},"id":"8744c0b1bffffff-17b7fa560bc0bd57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2b509e-17bfb8b666c530ac","8f44c0b1b2b5b59-17bfb7e000a24fec"]},"geometry":{"type":"LineString","coordinates":[[-83.665065,32.840344],[-83.665408,32.840345]]},"id":"8b44c0b1b2b5fff-17bff84b36de94b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2b5b59-17bfb7e000a24fec","8f44c0b1b2a5114-17def54662719457"]},"geometry":{"type":"LineString","coordinates":[[-83.665408,32.840345],[-83.665699,32.840347],[-83.66647300000001,32.840359]]},"id":"8a44c0b1b2a7fff-17d7f6933f342ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2142ac-17d6f2cfcffca251","8f44c0b1b2a5114-17def54662719457"]},"geometry":{"type":"LineString","coordinates":[[-83.66647300000001,32.840359],[-83.667482,32.840382000000005]]},"id":"8844c0b1b3fffff-17dfb40b1c4e105c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b215832-17dff1dac967be3b","8f44c0b1b2142ac-17d6f2cfcffca251"]},"geometry":{"type":"LineString","coordinates":[[-83.667482,32.840382000000005],[-83.66787400000001,32.84039]]},"id":"8a44c0b1b217fff-17dff25540714cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669241,32.840425]},"id":"8f44c0b1b223299-17f7ae8463a097fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b215832-17dff1dac967be3b","8f44c0b1b223299-17f7ae8463a097fd"]},"geometry":{"type":"LineString","coordinates":[[-83.66787400000001,32.84039],[-83.668531,32.840421],[-83.669241,32.840425]]},"id":"8944c0b1b23ffff-17ffb02fb26b3c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670438,32.840445]},"id":"8f44c0b1b35371a-17feab9841004997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b223299-17f7ae8463a097fd","8f44c0b1b35371a-17feab9841004997"]},"geometry":{"type":"LineString","coordinates":[[-83.669241,32.840425],[-83.670438,32.840445]]},"id":"8844c0b1b3fffff-17f7ed0e50130c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68648200000001,32.821483]},"id":"8f44c0b19c75b6d-17b6e46cc583d7a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686492,32.819837]},"id":"8f44c0b19d42795-13bea4668b04496d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d42795-13bea4668b04496d","8f44c0b19c75b6d-17b6e46cc583d7a7"]},"geometry":{"type":"LineString","coordinates":[[-83.68648200000001,32.821483],[-83.686464,32.820968],[-83.686492,32.819837]]},"id":"8844c0b19dfffff-17b694704c2f6456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68652900000001,32.818316]},"id":"8f44c0b19d746d4-17f7844f68965f45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d42795-13bea4668b04496d","8f44c0b19d746d4-17f7844f68965f45"]},"geometry":{"type":"LineString","coordinates":[[-83.686492,32.819837],[-83.68652900000001,32.818316]]},"id":"8944c0b19d7ffff-13d6d45af2568680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68655700000001,32.816969]},"id":"8f44c0b1d6d30e4-17bfa43dede6eb97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d746d4-17f7844f68965f45","8f44c0b1d6d30e4-17bfa43dede6eb97"]},"geometry":{"type":"LineString","coordinates":[[-83.68652900000001,32.818316],[-83.68655700000001,32.816969]]},"id":"8744c0b19ffffff-17d69446a4d69061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6866286,32.8157146]},"id":"8f44c0b1d689b1e-139fa41123b9ce8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d6d30e4-17bfa43dede6eb97","8f44c0b1d689b1e-139fa41123b9ce8e"]},"geometry":{"type":"LineString","coordinates":[[-83.68655700000001,32.816969],[-83.686593,32.815792],[-83.68660100000001,32.815751],[-83.6866286,32.8157146]]},"id":"8944c0b1d6fffff-13b6a43147121636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5650717,32.877162600000005]},"id":"8f44c0b8b052cb1-17b7acd639889546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b16ed11-17b7f3db70d4c411","8f44c0b8b052cb1-17b7acd639889546"]},"geometry":{"type":"LineString","coordinates":[[-83.5650717,32.877162600000005],[-83.565326,32.876928],[-83.56537700000001,32.87688],[-83.56760100000001,32.874885],[-83.568291,32.874327],[-83.56874970000001,32.8738869]]},"id":"8844c0b8b1fffff-139ff85b44d58607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56885240000001,32.873783800000005]},"id":"8f44c0b8b161635-17f7e39b43c92048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b16ed11-17b7f3db70d4c411","8f44c0b8b161635-17f7e39b43c92048"]},"geometry":{"type":"LineString","coordinates":[[-83.56874970000001,32.8738869],[-83.56885240000001,32.873783800000005]]},"id":"8a44c0b8b167fff-1797a3bb536f4c42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70847300000001,32.787487]},"id":"8f44c0b03a18375-17b76ebc6dd3fdeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711098,32.787543]},"id":"8f44c0b03a70bb5-17d66853c9fbf05f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a18375-17b76ebc6dd3fdeb","8f44c0b03a70bb5-17d66853c9fbf05f"]},"geometry":{"type":"LineString","coordinates":[[-83.70847300000001,32.787487],[-83.711098,32.787543]]},"id":"8844c0b03bfffff-17d6eb881505556c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714605,32.787616]},"id":"8f44c0b0168615e-17963fc3e4974dbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0168615e-17963fc3e4974dbc","8f44c0b03a70bb5-17d66853c9fbf05f"]},"geometry":{"type":"LineString","coordinates":[[-83.711098,32.787543],[-83.714605,32.787616]]},"id":"8644c0b07ffffff-17ff740bdd8067dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649871,32.84662]},"id":"8f44c0a35cb2770-1797ddceaa5382b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35caad01-17bed92ab7645cae","8f44c0a35cb2770-1797ddceaa5382b1"]},"geometry":{"type":"LineString","coordinates":[[-83.649871,32.84662],[-83.65177170000001,32.847511700000005]]},"id":"8944c0a35cbffff-17befb7cb25d346f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652579,32.847846100000005]},"id":"8f44c0a35ca9cc5-139fd7322914f27d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35caad01-17bed92ab7645cae","8f44c0a35ca9cc5-139fd7322914f27d"]},"geometry":{"type":"LineString","coordinates":[[-83.65177170000001,32.847511700000005],[-83.652579,32.847846100000005]]},"id":"8a44c0a35caffff-17b7d82e6d24f734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72024400000001,32.823534]},"id":"8f44c0b0aa028b6-17b6f1ff8cc53a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720273,32.818478]},"id":"8f44c0b0a86871d-13def1ed617acab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa028b6-17b6f1ff8cc53a00","8f44c0b0a86871d-13def1ed617acab6"]},"geometry":{"type":"LineString","coordinates":[[-83.72024400000001,32.823534],[-83.720218,32.823442],[-83.72020900000001,32.823285000000006],[-83.72023700000001,32.820942],[-83.720273,32.818478]]},"id":"8744c0b0affffff-179ff203015ba2df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203223,32.8145088]},"id":"8f44c0b0a963d93-17be31ce9869c16c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a86871d-13def1ed617acab6","8f44c0b0a963d93-17be31ce9869c16c"]},"geometry":{"type":"LineString","coordinates":[[-83.720273,32.818478],[-83.720304,32.816321],[-83.7203223,32.8145088]]},"id":"8844c0b0a9fffff-139671dca90128d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203236,32.8143797]},"id":"8f44c0b0a962a22-17df71cdcd152ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a962a22-17df71cdcd152ed1","8f44c0b0a963d93-17be31ce9869c16c"]},"geometry":{"type":"LineString","coordinates":[[-83.7203223,32.8145088],[-83.7203236,32.8143797]]},"id":"8b44c0b0a962fff-1797b1ce3a7f2d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203267,32.8140668]},"id":"8f44c0b0a966234-1797f1cbd3dce1f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a962a22-17df71cdcd152ed1","8f44c0b0a966234-1797f1cbd3dce1f9"]},"geometry":{"type":"LineString","coordinates":[[-83.7203236,32.8143797],[-83.7203267,32.8140668]]},"id":"8a44c0b0a967fff-17ffb1ccc768b667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201837,32.813690300000005]},"id":"8f44c0b0e2d969b-17be72253eeeaba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2d969b-17be72253eeeaba9","8f44c0b0a966234-1797f1cbd3dce1f9"]},"geometry":{"type":"LineString","coordinates":[[-83.7203267,32.8140668],[-83.7203279,32.813951800000005],[-83.7202908,32.8137904],[-83.7201837,32.813690300000005]]},"id":"8844c0b0a9fffff-179eb1e327579272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72001540000001,32.813533]},"id":"8f44c0b0e2db853-17de328e6fc159a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2d969b-17be72253eeeaba9","8f44c0b0e2db853-17de328e6fc159a4"]},"geometry":{"type":"LineString","coordinates":[[-83.7201837,32.813690300000005],[-83.72001540000001,32.813533]]},"id":"8a44c0b0e2dffff-17ff7259cd9cde26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2db853-17de328e6fc159a4","8f44c0b0e2db99e-1797b2c8c8819105"]},"geometry":{"type":"LineString","coordinates":[[-83.72001540000001,32.813533],[-83.71992200000001,32.8134457]]},"id":"8c44c0b0e2db9ff-17bef2ab9e3994ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a205ac2cc-1397fd48668894dd","8f44c0a205abd2e-13967e32929777f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6890327,32.8623938],[-83.68911800000001,32.862291],[-83.68940740000001,32.861983200000005]]},"id":"8a44c0a205affff-1396fdbefb85cd5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69042350000001,32.8609023]},"id":"8f44c0a205336c9-17fffacd5abbf7d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a205ac2cc-1397fd48668894dd","8f44c0a205336c9-17fffacd5abbf7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.68940740000001,32.861983200000005],[-83.69042350000001,32.8609023]]},"id":"8844c0a205fffff-13d7fc0ae282a52e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a205315a1-17f7f9e8540d93fc","8f44c0a205336c9-17fffacd5abbf7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.69042350000001,32.8609023],[-83.6907899,32.8604955]]},"id":"8944c0a2053ffff-17f6fa5ad36cbcf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69449800000001,32.887512]},"id":"8f44c0a23008ae9-13f770dac37d7b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2304e9a6-17f76bef639e3006","8f44c0a23008ae9-13f770dac37d7b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.69449800000001,32.887512],[-83.69465600000001,32.887805],[-83.69476200000001,32.887921],[-83.69489200000001,32.888007],[-83.695026,32.888055],[-83.695097,32.88807],[-83.69526900000001,32.888072],[-83.695717,32.88801],[-83.695892,32.888013],[-83.696021,32.888044],[-83.69614700000001,32.888095],[-83.696302,32.888207],[-83.69642400000001,32.888368],[-83.69647300000001,32.888472],[-83.696506,32.888575],[-83.696529,32.888716],[-83.696537,32.888855],[-83.69651300000001,32.88917]]},"id":"8844c0a231fffff-1396edead1374445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696994,32.890296]},"id":"8f44c0a23316d52-17b76ac2c956d749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23316d52-17b76ac2c956d749","8f44c0a2304e9a6-17f76bef639e3006"]},"geometry":{"type":"LineString","coordinates":[[-83.69651300000001,32.88917],[-83.69651400000001,32.889301],[-83.69653000000001,32.889451],[-83.696578,32.889581],[-83.696994,32.890296]]},"id":"8a44c0a2304ffff-17dffb7ab0949b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69812900000001,32.89287]},"id":"8f44c0a232266cb-17ffe7fd6b44b10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23316d52-17b76ac2c956d749","8f44c0a232266cb-17ffe7fd6b44b10c"]},"geometry":{"type":"LineString","coordinates":[[-83.696994,32.890296],[-83.69785900000001,32.891756],[-83.69802200000001,32.892052],[-83.69810000000001,32.892288],[-83.69813400000001,32.89253],[-83.69812900000001,32.89287]]},"id":"8844c0a233fffff-13bff9133eab0c48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701673,32.779924]},"id":"8f44c0b038814c1-13bedf566b856a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702509,32.779978]},"id":"8f44c0b038aa26b-13de5d4be59268d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038814c1-13bedf566b856a84","8f44c0b038aa26b-13de5d4be59268d0"]},"geometry":{"type":"LineString","coordinates":[[-83.701673,32.779924],[-83.702509,32.779978]]},"id":"8944c0b038bffff-13df7e51230d86b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70349900000001,32.779994]},"id":"8f44c0b0381a798-13fe5ae125144ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0381a798-13fe5ae125144ee9","8f44c0b038aa26b-13de5d4be59268d0"]},"geometry":{"type":"LineString","coordinates":[[-83.702509,32.779978],[-83.702904,32.779984],[-83.70349900000001,32.779994]]},"id":"8844c0b039fffff-13f77c168ad55fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038e4799-13d677ee2e946dca","8f44c0b0381a798-13fe5ae125144ee9"]},"geometry":{"type":"LineString","coordinates":[[-83.70349900000001,32.779994],[-83.703596,32.779997],[-83.70373500000001,32.780012],[-83.703834,32.780046],[-83.70393800000001,32.780099],[-83.70399300000001,32.780141],[-83.704181,32.780295],[-83.704266,32.780369],[-83.704435,32.780472],[-83.704514,32.7805],[-83.704707,32.780551]]},"id":"8844c0b039fffff-1397796407205a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038e4799-13d677ee2e946dca","8f44c0b03850954-17f7d4440a3d039d"]},"geometry":{"type":"LineString","coordinates":[[-83.704707,32.780551],[-83.70575500000001,32.780773],[-83.70593500000001,32.780796],[-83.706208,32.780806000000005]]},"id":"8844c0b039fffff-17b6761af7ee9371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70721400000001,32.780146]},"id":"8f44c0b038719aa-13d751cf452ac1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038719aa-13d751cf452ac1fa","8f44c0b03850954-17f7d4440a3d039d"]},"geometry":{"type":"LineString","coordinates":[[-83.706208,32.780806000000005],[-83.706382,32.780807],[-83.706478,32.780786],[-83.706531,32.780771],[-83.70658200000001,32.780749],[-83.70665000000001,32.780703],[-83.706894,32.780473],[-83.70721400000001,32.780146]]},"id":"8944c0b0387ffff-13def2f0fd6aeaf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707823,32.780054]},"id":"8f44c0b03860592-139fd052a95c34a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03860592-139fd052a95c34a7","8f44c0b038719aa-13d751cf452ac1fa"]},"geometry":{"type":"LineString","coordinates":[[-83.70721400000001,32.780146],[-83.70732600000001,32.780102],[-83.707434,32.780068],[-83.707497,32.780057],[-83.707823,32.780054]]},"id":"8944c0b0387ffff-139ed113ddb5575b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68083200000001,32.85217]},"id":"8f44c0a260c280c-139ed2380df4a651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680706,32.852263]},"id":"8f44c0a260c211b-13def286c4c4ac1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260c280c-139ed2380df4a651","8f44c0a260c211b-13def286c4c4ac1e"]},"geometry":{"type":"LineString","coordinates":[[-83.68083200000001,32.85217],[-83.680706,32.852263]]},"id":"8b44c0a260c2fff-13bfd25f6d3ac349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800666,32.852856100000004]},"id":"8f44c0a260de0a8-17df941663bd7b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260de0a8-17df941663bd7b91","8f44c0a260c211b-13def286c4c4ac1e"]},"geometry":{"type":"LineString","coordinates":[[-83.680706,32.852263],[-83.680366,32.852583],[-83.680256,32.85268],[-83.6800666,32.852856100000004]]},"id":"8944c0a260fffff-1396d34e11f688a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53516400000001,32.830964]},"id":"8f44c0b8329e3a3-17dff5da84974519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8329e3a3-17dff5da84974519","8f44c0b83293546-17bff72020afb757"]},"geometry":{"type":"LineString","coordinates":[[-83.53516400000001,32.830964],[-83.534643,32.830503]]},"id":"8944c0b832bffff-17dff67d51abb521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53375100000001,32.829713000000005]},"id":"8f44c0b83664210-13dff94dafbcd8fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83293546-17bff72020afb757","8f44c0b83664210-13dff94dafbcd8fe"]},"geometry":{"type":"LineString","coordinates":[[-83.534643,32.830503],[-83.53375100000001,32.829713000000005]]},"id":"8844c0b837fffff-17d7f836ebdd54be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668445,32.836468]},"id":"8f44c0b1b33662e-17deb075eff66aa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66853900000001,32.835549]},"id":"8f44c0b1b068b75-139eb03b263dbea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b068b75-139eb03b263dbea7","8f44c0b1b33662e-17deb075eff66aa0"]},"geometry":{"type":"LineString","coordinates":[[-83.668445,32.836468],[-83.668502,32.836387],[-83.66851000000001,32.836353],[-83.668519,32.836247],[-83.66853900000001,32.835549]]},"id":"8744c0b1bffffff-13beb046a9738e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668552,32.83493]},"id":"8f44c0b1b06c921-1397f033098b5470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b068b75-139eb03b263dbea7","8f44c0b1b06c921-1397f033098b5470"]},"geometry":{"type":"LineString","coordinates":[[-83.66853900000001,32.835549],[-83.668552,32.83493]]},"id":"8944c0b1b07ffff-13deb03716672215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66857800000001,32.8343]},"id":"8f44c0b1ba96083-17ffb022c116f7ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b06c921-1397f033098b5470","8f44c0b1ba96083-17ffb022c116f7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.668552,32.83493],[-83.66857800000001,32.8343]]},"id":"8a44c0b1ba97fff-17d6f02ae0c91de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668597,32.833671]},"id":"8f44c0b1b148369-17f6f016e0b86e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba96083-17ffb022c116f7ca","8f44c0b1b148369-17f6f016e0b86e20"]},"geometry":{"type":"LineString","coordinates":[[-83.66857800000001,32.8343],[-83.668597,32.833671]]},"id":"8844c0b1b1fffff-17bef01cd5df10fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668632,32.832393]},"id":"8f44c0b1b16e6f6-13d7b00104587760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b148369-17f6f016e0b86e20","8f44c0b1b16e6f6-13d7b00104587760"]},"geometry":{"type":"LineString","coordinates":[[-83.668597,32.833671],[-83.668632,32.832393]]},"id":"8944c0b1b17ffff-13f7b00bf586839b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668664,32.831747]},"id":"8f44c0b1b161588-13d7efed0e770cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b161588-13d7efed0e770cc2","8f44c0b1b16e6f6-13d7b00104587760"]},"geometry":{"type":"LineString","coordinates":[[-83.668632,32.832393],[-83.668664,32.831747]]},"id":"8944c0b1b17ffff-139feff70c27e44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668598,32.830495]},"id":"8f44c0b1b8ca530-17b7f01640a144ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b161588-13d7efed0e770cc2","8f44c0b1b8ca530-17b7f01640a144ba"]},"geometry":{"type":"LineString","coordinates":[[-83.668664,32.831747],[-83.668638,32.83135],[-83.668598,32.830495]]},"id":"8744c0b1bffffff-17beb00337b1dcec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667832,32.836937]},"id":"8f44c0b1b049706-17ffb1f50479fcea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66890000000001,32.836869]},"id":"8f44c0b1b333920-17d7af5988eaba42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b049706-17ffb1f50479fcea","8f44c0b1b333920-17d7af5988eaba42"]},"geometry":{"type":"LineString","coordinates":[[-83.667832,32.836937],[-83.667878,32.836927],[-83.66797700000001,32.836879],[-83.66803800000001,32.836866],[-83.668132,32.836858],[-83.668305,32.836851],[-83.66890000000001,32.836869]]},"id":"8844c0b1b3fffff-17d6b0aabc8ef2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669053,32.83684]},"id":"8f44c0b1b331c96-17b7aef9ecb7a1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b333920-17d7af5988eaba42","8f44c0b1b331c96-17b7aef9ecb7a1fa"]},"geometry":{"type":"LineString","coordinates":[[-83.66890000000001,32.836869],[-83.669053,32.83684]]},"id":"8c44c0b1b3303ff-17bebf29b5719356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667714,32.839951]},"id":"8f44c0b1b23234a-17dff23ecc10a245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66773900000001,32.839025]},"id":"8f44c0b1b3a970d-1396b22f26d14b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b23234a-17dff23ecc10a245","8f44c0b1b3a970d-1396b22f26d14b42"]},"geometry":{"type":"LineString","coordinates":[[-83.667714,32.839951],[-83.66773900000001,32.839025]]},"id":"8844c0b1b3fffff-13beb236fd463254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66776800000001,32.838056]},"id":"8f44c0b1b313495-13bfb21d0dee8b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b313495-13bfb21d0dee8b13","8f44c0b1b3a970d-1396b22f26d14b42"]},"geometry":{"type":"LineString","coordinates":[[-83.66773900000001,32.839025],[-83.66776800000001,32.838056]]},"id":"8944c0b1b3bffff-13d7f22613a989bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667795,32.837465]},"id":"8f44c0b1b316294-17b7b20c228ed0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b313495-13bfb21d0dee8b13","8f44c0b1b316294-17b7b20c228ed0eb"]},"geometry":{"type":"LineString","coordinates":[[-83.66776800000001,32.838056],[-83.667795,32.837465]]},"id":"8a44c0b1b317fff-17f6f2149ebb9d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b049706-17ffb1f50479fcea","8f44c0b1b316294-17b7b20c228ed0eb"]},"geometry":{"type":"LineString","coordinates":[[-83.667795,32.837465],[-83.667805,32.837203],[-83.667806,32.837065],[-83.667832,32.836937]]},"id":"8844c0b1b3fffff-1796b2053322b5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68053,32.785296]},"id":"8f44c0b1c81b893-17de92f4c3372091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8c00f6-13bed310e60dfa79","8f44c0b1c81b893-17de92f4c3372091"]},"geometry":{"type":"LineString","coordinates":[[-83.68053,32.785296],[-83.680507,32.786532],[-83.680485,32.787066]]},"id":"8844c0b1c9fffff-1397b300366e03f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680507,32.788103]},"id":"8f44c0b1c8cacab-17b6f30322a04d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8c00f6-13bed310e60dfa79","8f44c0b1c8cacab-17b6f30322a04d19"]},"geometry":{"type":"LineString","coordinates":[[-83.680485,32.787066],[-83.680486,32.787298],[-83.680503,32.787407],[-83.680497,32.787819],[-83.680507,32.788103]]},"id":"8944c0b1c8fffff-17f6b30996967df7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682283,32.787771]},"id":"8f44c0b1cbb44b6-17f6eead26924990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cbb44b6-17f6eead26924990","8f44c0b1c8cacab-17b6f30322a04d19"]},"geometry":{"type":"LineString","coordinates":[[-83.682283,32.787771],[-83.682135,32.787774],[-83.681886,32.787824],[-83.68166500000001,32.787877],[-83.681016,32.788017],[-83.680756,32.788066],[-83.680507,32.788103]]},"id":"8844c0b1c9fffff-17de90d811f018cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67813000000001,32.788089]},"id":"8f44c0b1c12a32c-17bfb8d0c789d8b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8cacab-17b6f30322a04d19","8f44c0b1c12a32c-17bfb8d0c789d8b4"]},"geometry":{"type":"LineString","coordinates":[[-83.680507,32.788103],[-83.680401,32.788119],[-83.68001000000001,32.788127],[-83.67813000000001,32.788089]]},"id":"8744c0b1cffffff-17bfb5e996288e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76719200000001,32.799627]},"id":"8f44c0b2b2ad376-13d7ff61001078bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2ad376-13d7ff61001078bf","8f44c0b2b20e962-13bdbadfea51f1ce"]},"geometry":{"type":"LineString","coordinates":[[-83.76719200000001,32.799627],[-83.76747800000001,32.79956],[-83.767812,32.799462000000005],[-83.768068,32.799401],[-83.76825000000001,32.799374],[-83.768574,32.799351],[-83.76903700000001,32.799348]]},"id":"8944c0b2b23ffff-13dffd24f5a2c7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76973500000001,32.799371]},"id":"8f44c0b2b22b722-13b7f92ba6c4102f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b20e962-13bdbadfea51f1ce","8f44c0b2b22b722-13b7f92ba6c4102f"]},"geometry":{"type":"LineString","coordinates":[[-83.76903700000001,32.799348],[-83.76973500000001,32.799371]]},"id":"8944c0b2b23ffff-13bfba05c7609a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446514,32.825622100000004]},"id":"8f44c0b1a6622c3-13dffa8cef33be2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64478720000001,32.8254232]},"id":"8f44c0b1a662a0c-13d7ea38024b888a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a662a0c-13d7ea38024b888a","8f44c0b1a6622c3-13dffa8cef33be2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6446514,32.825622100000004],[-83.64478720000001,32.8254232]]},"id":"8b44c0b1a662fff-139ffa62756c7a05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a74a245-17dee8956c398b64","8f44c0b1a662a0c-13d7ea38024b888a"]},"geometry":{"type":"LineString","coordinates":[[-83.64478720000001,32.8254232],[-83.644962,32.825218],[-83.64545700000001,32.824624]]},"id":"8844c0b1a7fffff-13def9663b8c091b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645967,32.82405]},"id":"8f44c0b1a74c213-17f7e756a82393e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a74a245-17dee8956c398b64","8f44c0b1a74c213-17f7e756a82393e4"]},"geometry":{"type":"LineString","coordinates":[[-83.64545700000001,32.824624],[-83.645492,32.824584],[-83.645967,32.82405]]},"id":"8a44c0b1a74ffff-17bef7f6218f1271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a74c213-17f7e756a82393e4","8f44c0b1a768b96-17bee5c2e1be9902"]},"geometry":{"type":"LineString","coordinates":[[-83.645967,32.82405],[-83.646378,32.823587],[-83.646613,32.823313]]},"id":"8944c0b1a77ffff-1797e68bd071768f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64705400000001,32.822789]},"id":"8f44c0b1a393199-13f7e4af4f290b76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a768b96-17bee5c2e1be9902","8f44c0b1a393199-13f7e4af4f290b76"]},"geometry":{"type":"LineString","coordinates":[[-83.646613,32.823313],[-83.64705400000001,32.822789]]},"id":"8844c0b1a3fffff-1396e5391993fad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654666,32.80049]},"id":"8f44c0b1e3a2088-17f6d219c1c2cbb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3a2088-17f6d219c1c2cbb4","8f44c0b1e384385-17b7f2240017f924"]},"geometry":{"type":"LineString","coordinates":[[-83.654666,32.80049],[-83.6546496,32.8009846]]},"id":"8944c0b1e3bffff-179ed21ee0ab6f17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e384385-17b7f2240017f924","8f44c0b1e3842ac-17ded22542dcae62"]},"geometry":{"type":"LineString","coordinates":[[-83.6546496,32.8009846],[-83.6546476,32.8010433]]},"id":"8c44c0b1e3843ff-17bfd224a7df7667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654632,32.801699]},"id":"8f44c0b1e3814dd-17f7f22f09f388c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3814dd-17f7f22f09f388c0","8f44c0b1e3842ac-17ded22542dcae62"]},"geometry":{"type":"LineString","coordinates":[[-83.6546476,32.8010433],[-83.654632,32.801699]]},"id":"8a44c0b1e387fff-179fd22a27e400d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65089300000001,32.801634]},"id":"8f44c0b1e746850-17bfdb4fed589794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e746850-17bfdb4fed589794","8f44c0b1e744b59-17d6d9da8685b539"]},"geometry":{"type":"LineString","coordinates":[[-83.65089300000001,32.801634],[-83.65103,32.801643],[-83.6514904,32.8016488]]},"id":"8a44c0b1e747fff-17d7fa954abfb598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65201590000001,32.8016565]},"id":"8f44c0b1e76ec24-17dfd8921b3f5bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e744b59-17d6d9da8685b539","8f44c0b1e76ec24-17dfd8921b3f5bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6514904,32.8016488],[-83.65190700000001,32.801654],[-83.65201590000001,32.8016565]]},"id":"8944c0b1e77ffff-17def9364167af72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653046,32.8016786]},"id":"8f44c0b1e3930e1-17dff60e412a2122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3930e1-17dff60e412a2122","8f44c0b1e76ec24-17dfd8921b3f5bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.65201590000001,32.8016565],[-83.652883,32.801676],[-83.653046,32.8016786]]},"id":"8744c0b1effffff-17d6d7503bc741d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3930e1-17dff60e412a2122","8f44c0b1e39c96d-17f7f383c17677ac"]},"geometry":{"type":"LineString","coordinates":[[-83.653046,32.8016786],[-83.6540868,32.8016954]]},"id":"8944c0b1e3bffff-17def4c901656429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3814dd-17f7f22f09f388c0","8f44c0b1e39c96d-17f7f383c17677ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6540868,32.8016954],[-83.654307,32.801699],[-83.654632,32.801699]]},"id":"8a44c0b1e387fff-17f7f2d967a15d45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553042,32.801718300000005]},"id":"8f44c0b1e3aa66d-17f7f08aea895b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3aa66d-17f7f08aea895b72","8f44c0b1e3814dd-17f7f22f09f388c0"]},"geometry":{"type":"LineString","coordinates":[[-83.654632,32.801699],[-83.65492300000001,32.801709],[-83.6553042,32.801718300000005]]},"id":"8944c0b1e3bffff-17fef15cf3bace1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66668200000001,32.890732]},"id":"8f44c0a0419b7aa-13d7b4c3cca50e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66745300000001,32.891184]},"id":"8f44c0a040a0ce1-13deb2e1e7480c54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040a0ce1-13deb2e1e7480c54","8f44c0a0419b7aa-13d7b4c3cca50e36"]},"geometry":{"type":"LineString","coordinates":[[-83.66668200000001,32.890732],[-83.66698500000001,32.890863],[-83.66709,32.890923],[-83.66745300000001,32.891184]]},"id":"8944c0a040bffff-13d6b3cba2aa1eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668459,32.891855]},"id":"8f44c0a04013498-1397f06d23e30972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040a0ce1-13deb2e1e7480c54","8f44c0a04013498-1397f06d23e30972"]},"geometry":{"type":"LineString","coordinates":[[-83.66745300000001,32.891184],[-83.66754900000001,32.89123],[-83.667899,32.891455],[-83.66833700000001,32.891768],[-83.668459,32.891855]]},"id":"8944c0a040bffff-13beb1a3219f82b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66996900000001,32.892944]},"id":"8f44c0a04019362-17beacbd67d68610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04019362-17beacbd67d68610","8f44c0a04013498-1397f06d23e30972"]},"geometry":{"type":"LineString","coordinates":[[-83.668459,32.891855],[-83.66878700000001,32.892096],[-83.66905200000001,32.892299],[-83.669211,32.892426],[-83.669538,32.892701],[-83.669781,32.892847],[-83.66996900000001,32.892944]]},"id":"8844c0a041fffff-17f6fe9c4fcc83c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba969d14a-17df73679a65ee14","8f44c0a36d25d72-139ff234fc9451b5"]},"geometry":{"type":"LineString","coordinates":[[-83.61530090000001,32.831660500000005],[-83.6151428,32.8313798],[-83.6149812,32.8310851],[-83.6148103,32.8307686]]},"id":"8844c0ba97fffff-17f7b2cf68af6405"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba969d14a-17df73679a65ee14","8f44c0ba969dd59-179733a0c5881b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6148103,32.8307686],[-83.6147342,32.830641400000005],[-83.6147188,32.8306194]]},"id":"8b44c0ba969dfff-17bfb383cc87ef9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba969dd59-179733a0c5881b34","8f44c0ba969ca45-17b7f3da158f1b5f"]},"geometry":{"type":"LineString","coordinates":[[-83.6147188,32.8306194],[-83.61465960000001,32.8305347],[-83.6146271,32.8304988]]},"id":"8a44c0ba969ffff-17dfb3bc6b03fc5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba969cbb6-17fff42b2aea0088","8f44c0ba969ca45-17b7f3da158f1b5f"]},"geometry":{"type":"LineString","coordinates":[[-83.6146271,32.8304988],[-83.6145759,32.8304424],[-83.6144974,32.830380500000004]]},"id":"8b44c0ba969cfff-179f3401118e0858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba969cbb6-17fff42b2aea0088","8f44c0ba969cd51-17b7b486fb2bded7"]},"geometry":{"type":"LineString","coordinates":[[-83.6144974,32.830380500000004],[-83.6144481,32.8303415],[-83.6143505,32.8302714]]},"id":"8b44c0ba969cfff-17df7458bce98390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61417920000001,32.830148300000005]},"id":"8f44c0ba9691aa9-17dfb4f20fdf809c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9691aa9-17dfb4f20fdf809c","8f44c0ba969cd51-17b7b486fb2bded7"]},"geometry":{"type":"LineString","coordinates":[[-83.6143505,32.8302714],[-83.61417920000001,32.830148300000005]]},"id":"8944c0ba96bffff-179734bc77c91aae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6128807,32.829019200000005]},"id":"8f44c0babb4bc52-139f381d95baae0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9691aa9-17dfb4f20fdf809c","8f44c0babb4bc52-139f381d95baae0f"]},"geometry":{"type":"LineString","coordinates":[[-83.61417920000001,32.830148300000005],[-83.613838,32.829903],[-83.613398,32.829544],[-83.61327920000001,32.8294444],[-83.61304480000001,32.829236200000004],[-83.612961,32.829149300000005],[-83.61291010000001,32.829077500000004],[-83.6128807,32.829019200000005]]},"id":"8644c0bafffffff-139f769a519bf90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb48712-13ffb7f5d7427981","8f44c0babb4bc52-139f381d95baae0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6128807,32.829019200000005],[-83.6128697,32.8289585],[-83.61287610000001,32.8288838],[-83.61290840000001,32.828816800000006],[-83.61294430000001,32.828772300000004]]},"id":"8a44c0babb4ffff-13df7817a863bef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb48188-13bfb7bf32971977","8f44c0babb48712-13ffb7f5d7427981"]},"geometry":{"type":"LineString","coordinates":[[-83.61294430000001,32.828772300000004],[-83.61295580000001,32.828758],[-83.61303170000001,32.8286715]]},"id":"8b44c0babb48fff-13df37dabebecf59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb4898b-13f7377ebfc43d38","8f44c0babb48188-13bfb7bf32971977"]},"geometry":{"type":"LineString","coordinates":[[-83.61303170000001,32.8286715],[-83.6130852,32.8286104],[-83.6131349,32.8285458]]},"id":"8b44c0babb48fff-139ff79e55076022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb4898b-13f7377ebfc43d38","8f44c0babb4c769-1397375efb408de2"]},"geometry":{"type":"LineString","coordinates":[[-83.6131349,32.8285458],[-83.613169,32.8284745],[-83.6131857,32.8283987]]},"id":"8a44c0babb4ffff-13d7376c39518d4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61282340000001,32.827752000000004]},"id":"8f44c0babb41d62-179738416597f652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb4c769-1397375efb408de2","8f44c0babb41d62-179738416597f652"]},"geometry":{"type":"LineString","coordinates":[[-83.6131857,32.8283987],[-83.6131829,32.8283196],[-83.6131649,32.828238],[-83.613117,32.8281419],[-83.6130552,32.8280428],[-83.61282340000001,32.827752000000004]]},"id":"8944c0babb7ffff-17d7f7b8edf1143f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61370840000001,32.8264171]},"id":"8f44c0babb65880-13bfb61842e1646f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb65880-13bfb61842e1646f","8f44c0babb41d62-179738416597f652"]},"geometry":{"type":"LineString","coordinates":[[-83.61282340000001,32.827752000000004],[-83.61279520000001,32.8277166],[-83.6126715,32.8275321],[-83.612413,32.827129],[-83.61227000000001,32.82688],[-83.61220900000001,32.826746],[-83.612198,32.826653],[-83.612238,32.826531],[-83.6123944,32.8264565],[-83.6124557,32.8264372],[-83.6124728,32.826433900000005],[-83.61256900000001,32.826432100000005],[-83.61279010000001,32.826442400000005],[-83.61293280000001,32.8264512],[-83.61318700000001,32.826458],[-83.61340100000001,32.826466],[-83.613544,32.826458],[-83.61361000000001,32.826445],[-83.61370840000001,32.8264171]]},"id":"8944c0babb7ffff-17bf388230661aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72073110000001,32.813679400000005]},"id":"8f44c0b0a964d4c-17b7b0cf1f505c1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2d969b-17be72253eeeaba9","8f44c0b0a964d4c-17b7b0cf1f505c1e"]},"geometry":{"type":"LineString","coordinates":[[-83.7201837,32.813690300000005],[-83.7203211,32.8136772],[-83.72073110000001,32.813679400000005]]},"id":"8944c0b0e2fffff-17b7f17a4d45d747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a964d4c-17b7b0cf1f505c1e","8f44c0b0e2cb192-17b7ffda18a43499"]},"geometry":{"type":"LineString","coordinates":[[-83.72073110000001,32.813679400000005],[-83.7211231,32.8136829]]},"id":"8944c0b0e2fffff-17b6f05496715f5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72157750000001,32.813687]},"id":"8f44c0b0e2c9449-17be6ebe1412fa5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2cb192-17b7ffda18a43499","8f44c0b0e2c9449-17be6ebe1412fa5f"]},"geometry":{"type":"LineString","coordinates":[[-83.7211231,32.8136829],[-83.72157750000001,32.813687]]},"id":"8a44c0b0e2cffff-17bf2f4c142cdf5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72169000000001,32.813688]},"id":"8f44c0b0e2c90c5-17bf2e77c50afc9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2c9449-17be6ebe1412fa5f","8f44c0b0e2c90c5-17bf2e77c50afc9e"]},"geometry":{"type":"LineString","coordinates":[[-83.72157750000001,32.813687],[-83.72169000000001,32.813688]]},"id":"8b44c0b0e2c9fff-17bebe9aeec11bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7223692,32.813683600000005]},"id":"8f44c0b085b3cb0-17be6ccf4582ae7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b085b3cb0-17be6ccf4582ae7e","8f44c0b0e2c90c5-17bf2e77c50afc9e"]},"geometry":{"type":"LineString","coordinates":[[-83.72169000000001,32.813688],[-83.721835,32.81369],[-83.7223692,32.813683600000005]]},"id":"8944c0b085bffff-17bebda386296af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65863800000001,32.786147]},"id":"8f44c0b1e90056d-13ffe867447f87f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65926,32.786164]},"id":"8f44c0b1e9053a5-13fec6e2892036af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e90056d-13ffe867447f87f3","8f44c0b1e9053a5-13fec6e2892036af"]},"geometry":{"type":"LineString","coordinates":[[-83.65863800000001,32.786147],[-83.65926,32.786164]]},"id":"8a44c0b1e907fff-13f7f7a4e2cd07c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e9053a5-13fec6e2892036af","8f44c0b1e928819-1396e4c36762f4ec"]},"geometry":{"type":"LineString","coordinates":[[-83.65926,32.786164],[-83.66012900000001,32.786183]]},"id":"8944c0b1e93ffff-13fef5d2fd593ce1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e928819-1396e4c36762f4ec","8f44c0b112d8d76-1396c1e0a3a23ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.66012900000001,32.786183],[-83.66131100000001,32.786212]]},"id":"8744c0b11ffffff-139ff352092b3306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112d8d76-1396c1e0a3a23ab2","8f44c0b112ce555-13f7ffc36f154e25"]},"geometry":{"type":"LineString","coordinates":[[-83.66131100000001,32.786212],[-83.661798,32.786222],[-83.661906,32.786212],[-83.662177,32.786163]]},"id":"8944c0b112fffff-1397d0d1149eb827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666054,32.785747]},"id":"8f44c0b1124810b-13f7f64c4e8d757d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1124810b-13f7f64c4e8d757d","8f44c0b112ce555-13f7ffc36f154e25"]},"geometry":{"type":"LineString","coordinates":[[-83.662177,32.786163],[-83.66226900000001,32.786154],[-83.662621,32.786155],[-83.66387,32.786189],[-83.664091,32.786184],[-83.66419400000001,32.786158],[-83.66432,32.786088],[-83.664455,32.785988],[-83.66453800000001,32.785921],[-83.664602,32.785877],[-83.66471800000001,32.785829],[-83.66483000000001,32.785812],[-83.666054,32.785747]]},"id":"8844c0b113fffff-139fbb028d9db503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66633200000001,32.7857302]},"id":"8f44c0b1124d4e9-13fff59e875bf7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1124810b-13f7f64c4e8d757d","8f44c0b1124d4e9-13fff59e875bf7d2"]},"geometry":{"type":"LineString","coordinates":[[-83.666054,32.785747],[-83.66633200000001,32.7857302]]},"id":"8a44c0b1124ffff-13feb5f5629978b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66705,32.785674]},"id":"8f44c0b1c5363ac-13d6f3ddcb14327e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c5363ac-13d6f3ddcb14327e","8f44c0b1124d4e9-13fff59e875bf7d2"]},"geometry":{"type":"LineString","coordinates":[[-83.66633200000001,32.7857302],[-83.66688,32.785697],[-83.66705,32.785674]]},"id":"8844c0b1c5fffff-13def4bdd5a91f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683181,32.858387]},"id":"8f44c0a2628e31b-13dfec7be9e7c3ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68191900000001,32.859414]},"id":"8f44c0a229353b4-17dfcf90a51d9adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a229353b4-17dfcf90a51d9adb","8f44c0a2628e31b-13dfec7be9e7c3ed"]},"geometry":{"type":"LineString","coordinates":[[-83.683181,32.858387],[-83.68191900000001,32.859414]]},"id":"8744c0a26ffffff-139ede064053a838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68098,32.86018]},"id":"8f44c0a2291426c-17be91db8e410f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a229353b4-17dfcf90a51d9adb","8f44c0a2291426c-17be91db8e410f54"]},"geometry":{"type":"LineString","coordinates":[[-83.68191900000001,32.859414],[-83.68098,32.86018]]},"id":"8944c0a2293ffff-17bfb0b61e985a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a343b4973-13d6f04eb875312e","8f44c0a340e9013-13dff1a06350ff01"]},"geometry":{"type":"LineString","coordinates":[[-83.64175300000001,32.84183],[-83.6422933,32.8419851]]},"id":"8844c0a341fffff-1396f0f792a0423a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647362,32.843415]},"id":"8f44c0a3432bb33-17bee3eecf6fa296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34371c4d-1796e1cf01f03241","8f44c0a3432bb33-17bee3eecf6fa296"]},"geometry":{"type":"LineString","coordinates":[[-83.647362,32.843415],[-83.64770800000001,32.843528],[-83.648193,32.843685],[-83.64832200000001,32.843739],[-83.648392,32.843815],[-83.648413,32.843876],[-83.648409,32.843952],[-83.64836000000001,32.844076],[-83.64823200000001,32.844369]]},"id":"8844c0a343fffff-179ff2423404d6ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6479175,32.8450715]},"id":"8f44c0a34342d36-13dff2939c2d797b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34371c4d-1796e1cf01f03241","8f44c0a34342d36-13dff2939c2d797b"]},"geometry":{"type":"LineString","coordinates":[[-83.64823200000001,32.844369],[-83.6479175,32.8450715]]},"id":"8944c0a3437ffff-13fef2314045e711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745879,32.929564]},"id":"8f44c0a29c6b409-1795f369afb486cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c6b409-1795f369afb486cd","8f44c0a29c6c662-17d7f284e6906329"]},"geometry":{"type":"LineString","coordinates":[[-83.745879,32.929564],[-83.74608400000001,32.929378],[-83.74615800000001,32.929301],[-83.746205,32.929236],[-83.746235,32.929142],[-83.746267,32.928973],[-83.74626900000001,32.928913],[-83.746261,32.928883],[-83.746245,32.928857]]},"id":"8a44c0a29c6ffff-17d7f2c6f980d3bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745289,32.929141]},"id":"8f44c0a29c419ac-179df4da61e97d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c6c662-17d7f284e6906329","8f44c0a29c419ac-179df4da61e97d66"]},"geometry":{"type":"LineString","coordinates":[[-83.746245,32.928857],[-83.74622000000001,32.928831],[-83.746178,32.928798],[-83.746053,32.928739],[-83.745953,32.928704],[-83.745851,32.928685],[-83.745756,32.928693],[-83.745669,32.928725],[-83.74564000000001,32.928741],[-83.745571,32.92879],[-83.745484,32.928883],[-83.745374,32.929022],[-83.745289,32.929141]]},"id":"8944c0a29c7ffff-17d7f3c7b2737eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659603,32.862502]},"id":"8f44c0a352855a1-13d7c60c25f7d544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658603,32.862976]},"id":"8f44c0a35291a5e-1796c87d2a73132a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35291a5e-1796c87d2a73132a","8f44c0a352855a1-13d7c60c25f7d544"]},"geometry":{"type":"LineString","coordinates":[[-83.659603,32.862502],[-83.658603,32.862976]]},"id":"8944c0a352bffff-17ffe744a813050d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35291a5e-1796c87d2a73132a","8f44c0a31930520-13dfca98857a397f"]},"geometry":{"type":"LineString","coordinates":[[-83.658603,32.862976],[-83.658208,32.863155],[-83.658089,32.863233],[-83.658009,32.863295],[-83.657936,32.863377],[-83.65790100000001,32.863464],[-83.65774,32.86453]]},"id":"8744c0a35ffffff-179ef9f6bf9e2de0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65725300000001,32.865406]},"id":"8f44c0a319109ac-13fecbc8e470ddd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31930520-13dfca98857a397f","8f44c0a319109ac-13fecbc8e470ddd0"]},"geometry":{"type":"LineString","coordinates":[[-83.65774,32.86453],[-83.657672,32.864901],[-83.65764300000001,32.865001],[-83.657548,32.86513],[-83.657393,32.865285],[-83.65725300000001,32.865406]]},"id":"8944c0a3193ffff-13f7cb049b7082ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54663910000001,32.8162845]},"id":"8f44c0b81484a50-1397d9d6947d4fd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b814a4142-13f7f8744ae79bd1","8f44c0b81484a50-1397d9d6947d4fd0"]},"geometry":{"type":"LineString","coordinates":[[-83.54663910000001,32.8162845],[-83.54707,32.815465],[-83.547206,32.815241]]},"id":"8844c0b815fffff-13bfd928d4593045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54612200000001,32.813578]},"id":"8f44c0b8159569e-17f7db19c28bd216"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b814a4142-13f7f8744ae79bd1","8f44c0b8159569e-17f7db19c28bd216"]},"geometry":{"type":"LineString","coordinates":[[-83.547206,32.815241],[-83.547161,32.815013],[-83.547095,32.814776],[-83.54703500000001,32.814642],[-83.54696600000001,32.814542],[-83.54682100000001,32.814375000000005],[-83.546687,32.814202],[-83.546361,32.813815000000005],[-83.54612200000001,32.813578]]},"id":"8944c0b815bffff-17dff98be26d3282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658083,32.813683600000005]},"id":"8f44c0b1ab25d1d-17bec9c2239afbc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65814300000001,32.813129]},"id":"8f44c0b1848ab52-13dfe99caf520208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848ab52-13dfe99caf520208","8f44c0b1ab25d1d-17bec9c2239afbc0"]},"geometry":{"type":"LineString","coordinates":[[-83.658083,32.813683600000005],[-83.65814300000001,32.813129]]},"id":"8844c0b185fffff-13fef9af615c9e8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658157,32.812477]},"id":"8f44c0b1848e931-13b6e993e1fda564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848ab52-13dfe99caf520208","8f44c0b1848e931-13b6e993e1fda564"]},"geometry":{"type":"LineString","coordinates":[[-83.65814300000001,32.813129],[-83.658157,32.812477]]},"id":"8a44c0b1848ffff-1397e99846a18093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848e931-13b6e993e1fda564","8f44c0b1848544c-13bee98f8b21f2b5"]},"geometry":{"type":"LineString","coordinates":[[-83.658157,32.812477],[-83.658164,32.811867]]},"id":"8944c0b184bffff-13f7c991babc85ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64159640000001,32.8399367]},"id":"8f44c0a3400baf5-17d6f2024fd5bd7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64215630000001,32.8386866]},"id":"8f44c0a340286c1-13b7f0a453c42447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3400baf5-17d6f2024fd5bd7f","8f44c0a340286c1-13b7f0a453c42447"]},"geometry":{"type":"LineString","coordinates":[[-83.64159640000001,32.8399367],[-83.64215630000001,32.8386866]]},"id":"8944c0a3403ffff-13bff153455df149"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340286c1-13b7f0a453c42447","8f44c0a34028cce-1397f09aa1fa0ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.64215630000001,32.8386866],[-83.6421127,32.838523900000006],[-83.6421718,32.838402200000004]]},"id":"8a44c0a3402ffff-13def0afc5bff34c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64281480000001,32.8372678]},"id":"8f44c0a34156ac1-17beef08cd0b4a41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34028cce-1397f09aa1fa0ff7","8f44c0a34156ac1-17beef08cd0b4a41"]},"geometry":{"type":"LineString","coordinates":[[-83.6421718,32.838402200000004],[-83.64230590000001,32.8382129],[-83.6425258,32.8381588],[-83.64264920000001,32.837956000000005],[-83.6426706,32.8375684],[-83.64281480000001,32.8372678]]},"id":"8844c0a341fffff-17bfefa87e6f95c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595652,32.852418]},"id":"8f44c0b8d05b076-13bf622d81664b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d05b076-13bf622d81664b43","8f44c0b8d3b406e-139fe33ea0673e0e"]},"geometry":{"type":"LineString","coordinates":[[-83.595652,32.852418],[-83.59521500000001,32.852547]]},"id":"8944c0b8d3bffff-13f7f2b618676a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.594768,32.852669]},"id":"8f44c0b8d3b6a98-13d764560adc0259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3b406e-139fe33ea0673e0e","8f44c0b8d3b6a98-13d764560adc0259"]},"geometry":{"type":"LineString","coordinates":[[-83.59521500000001,32.852547],[-83.594768,32.852669]]},"id":"8a44c0b8d3b7fff-13b763ca56b4816b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63920800000001,32.848554]},"id":"8f44c0a34648a0c-13def7d70b525499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30932241-13bff5ed066d9bde","8f44c0a34648a0c-13def7d70b525499"]},"geometry":{"type":"LineString","coordinates":[[-83.63920800000001,32.848554],[-83.639387,32.848627],[-83.639992,32.848947]]},"id":"8844c0a309fffff-13d6f6e008fd5f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30932241-13bff5ed066d9bde","8f44c0a30904711-13def3a0e5051127"]},"geometry":{"type":"LineString","coordinates":[[-83.639992,32.848947],[-83.640882,32.849438],[-83.640933,32.849373]]},"id":"8944c0a3093ffff-13f7f4c0cea52bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7475807,32.885841]},"id":"8f44c0b52240aa2-17d7ef421c540fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.749767,32.885556]},"id":"8f44c0b53c9e991-17b5e9ebae9c5c39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53c9e991-17b5e9ebae9c5c39","8f44c0b52240aa2-17d7ef421c540fed"]},"geometry":{"type":"LineString","coordinates":[[-83.7475807,32.885841],[-83.74811000000001,32.885837],[-83.748406,32.885813],[-83.74852200000001,32.885795],[-83.748766,32.885731],[-83.74910600000001,32.885624],[-83.74931000000001,32.885582],[-83.749497,32.885556],[-83.74956200000001,32.885551],[-83.749767,32.885556]]},"id":"8744c0b53ffffff-1797ec94d673935c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75097600000001,32.8852841]},"id":"8f44c0b53c8026e-13f7f6f80b3147e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53c9e991-17b5e9ebae9c5c39","8f44c0b53c8026e-13f7f6f80b3147e2"]},"geometry":{"type":"LineString","coordinates":[[-83.749767,32.885556],[-83.74993400000001,32.885562],[-83.750112,32.885551],[-83.75023800000001,32.885536],[-83.75037,32.885506],[-83.750539,32.885447],[-83.75084700000001,32.88533],[-83.75097600000001,32.8852841]]},"id":"8944c0b53cbffff-13ffe86c27dd56dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66952,32.845259]},"id":"8f44c0a265b3c21-13beedd60e6abb96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b273749-13b6eba6a5e01353","8f44c0a265b3c21-13beedd60e6abb96"]},"geometry":{"type":"LineString","coordinates":[[-83.66952,32.845259],[-83.66975500000001,32.844949],[-83.66987800000001,32.844771],[-83.670028,32.844515],[-83.670156,32.844262],[-83.67027300000001,32.843915],[-83.670339,32.843594],[-83.67040200000001,32.842894],[-83.670415,32.842554]]},"id":"8544c0a3fffffff-1797ec5266bd351c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b273749-13b6eba6a5e01353","8f44c0b1b276b76-13deaba1aa457157"]},"geometry":{"type":"LineString","coordinates":[[-83.670415,32.842554],[-83.670423,32.841617]]},"id":"8a44c0b1b277fff-13fffba420a82cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b276b76-13deaba1aa457157","8f44c0b1b35371a-17feab9841004997"]},"geometry":{"type":"LineString","coordinates":[[-83.670423,32.841617],[-83.670438,32.840445]]},"id":"8844c0b1b3fffff-17feeb9cf442de22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670455,32.839092]},"id":"8f44c0b1b309100-13b6ab8da490605d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b309100-13b6ab8da490605d","8f44c0b1b35371a-17feab9841004997"]},"geometry":{"type":"LineString","coordinates":[[-83.670438,32.840445],[-83.670455,32.839092]]},"id":"8844c0b1b3fffff-17d7fb92f38ac4b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b309100-13b6ab8da490605d","8f44c0b1b30dce2-1397eb8d0e7f1331"]},"geometry":{"type":"LineString","coordinates":[[-83.670455,32.839092],[-83.670456,32.838611]]},"id":"8a44c0b1b30ffff-139ebb8d5b56b98f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67047500000001,32.838073]},"id":"8f44c0b1b32aadb-13b7ab8122ce9710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b32aadb-13b7ab8122ce9710","8f44c0b1b30dce2-1397eb8d0e7f1331"]},"geometry":{"type":"LineString","coordinates":[[-83.670456,32.838611],[-83.67045900000001,32.838333],[-83.67047500000001,32.838073]]},"id":"8944c0b1b33ffff-13dfbb893fecb35c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670505,32.837522]},"id":"8f44c0b1b32e143-17dfeb6e6274096e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b32e143-17dfeb6e6274096e","8f44c0b1b32aadb-13b7ab8122ce9710"]},"geometry":{"type":"LineString","coordinates":[[-83.67047500000001,32.838073],[-83.670505,32.837522]]},"id":"8a44c0b1b32ffff-1797fb77c03abcdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67054300000001,32.836902]},"id":"8f44c0b1b321d75-17d7eb56ab5fa815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b321d75-17d7eb56ab5fa815","8f44c0b1b32e143-17dfeb6e6274096e"]},"geometry":{"type":"LineString","coordinates":[[-83.670505,32.837522],[-83.67054200000001,32.837102],[-83.67054300000001,32.836902]]},"id":"8944c0b1b33ffff-179fbb5f017f62c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670923,32.836892]},"id":"8f44c0b1bad2cd5-17d7aa6920c9f86b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba89cf6-13b7a9d6e2282fde","8f44c0b1bad2cd5-17d7aa6920c9f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.670923,32.836892],[-83.670929,32.836553],[-83.670995,32.836288],[-83.67115700000001,32.836005]]},"id":"8844c0b1bbfffff-17b7aa402342dae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671261,32.834774]},"id":"8f44c0b1baaa835-13b7e995e3f243e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baaa835-13b7e995e3f243e3","8f44c0b1ba89cf6-13b7a9d6e2282fde"]},"geometry":{"type":"LineString","coordinates":[[-83.67115700000001,32.836005],[-83.671234,32.835686],[-83.67125300000001,32.835383],[-83.671261,32.834774]]},"id":"8944c0b1babffff-13beb9a4a498e738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65543600000001,32.817518]},"id":"8f44c0b1aa332ab-1796d0388943b905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655119,32.81751]},"id":"8f44c0b1aa14aec-17ffd0fea22712b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa332ab-1796d0388943b905","8f44c0b1aa14aec-17ffd0fea22712b7"]},"geometry":{"type":"LineString","coordinates":[[-83.65543600000001,32.817518],[-83.655119,32.81751]]},"id":"8944c0b1aa3ffff-1796d09b942c5b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa140ec-17f7d177ebc75edf","8f44c0b1aa14aec-17ffd0fea22712b7"]},"geometry":{"type":"LineString","coordinates":[[-83.655119,32.81751],[-83.654925,32.817496000000006]]},"id":"8b44c0b1aa14fff-17fff13b4db9e535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa140ec-17f7d177ebc75edf","8f44c0b1aaa5d46-17fef3e66b068a37"]},"geometry":{"type":"LineString","coordinates":[[-83.654925,32.817496000000006],[-83.653929,32.817473]]},"id":"8844c0b1abfffff-17ffd2af25cb3f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65341500000001,32.817451000000005]},"id":"8f44c0b1aaa46b4-17def527a251d63b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aaa46b4-17def527a251d63b","8f44c0b1aaa5d46-17fef3e66b068a37"]},"geometry":{"type":"LineString","coordinates":[[-83.653929,32.817473],[-83.65341500000001,32.817451000000005]]},"id":"8a44c0b1aaa7fff-17f7d4870f494f3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647451,32.809345]},"id":"8f44c0b1ad6bb10-1396e3b724e3822f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a99b09d-139ee11c4dfdbb7f","8f44c0b1ad6bb10-1396e3b724e3822f"]},"geometry":{"type":"LineString","coordinates":[[-83.647451,32.809345],[-83.647777,32.809469],[-83.64851800000001,32.809540000000005]]},"id":"8844c0b1a9fffff-13f6e26e3f622af9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649613,32.809616000000005]},"id":"8f44c0b1a98b496-13bede6fe68e8cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a99b09d-139ee11c4dfdbb7f","8f44c0b1a98b496-13bede6fe68e8cb0"]},"geometry":{"type":"LineString","coordinates":[[-83.64851800000001,32.809540000000005],[-83.649613,32.809616000000005]]},"id":"8844c0b1a9fffff-13b6dfc617968641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6808737,32.7573187]},"id":"8f44c0b06689ba4-139eb21df34441bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06783a6c-139fd268400eefc5","8f44c0b06689ba4-139eb21df34441bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6808737,32.7573187],[-83.680693,32.7568885],[-83.68066710000001,32.756607200000005],[-83.6805884,32.753943],[-83.6807261,32.753463100000005],[-83.6807548,32.7534269]]},"id":"8844c0b067fffff-17de92a6c657a013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06783a6c-139fd268400eefc5","8f44c0b06785370-13f7d140aae6acc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6807548,32.7534269],[-83.68096220000001,32.753165200000005],[-83.6812278,32.7529501]]},"id":"8a44c0b06787fff-13feb1dcb6d7c544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68307300000001,32.7528725]},"id":"8f44c0b0671ea1d-13b7dcbf61f03ead"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0671ea1d-13b7dcbf61f03ead","8f44c0b06785370-13f7d140aae6acc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6812278,32.7529501],[-83.68155250000001,32.7528591],[-83.6818575,32.752850800000004],[-83.6829397,32.7528839],[-83.68307300000001,32.7528725]]},"id":"8844c0b067fffff-13b79f0318e169ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0608db8c-13ffc5824baacc8a","8f44c0b0671ea1d-13b7dcbf61f03ead"]},"geometry":{"type":"LineString","coordinates":[[-83.68307300000001,32.7528725],[-83.6840023,32.7527929],[-83.6843958,32.7526936],[-83.6847106,32.7525033],[-83.6850845,32.7521889],[-83.68531080000001,32.7520399],[-83.6856551,32.7519075],[-83.68564400000001,32.751696],[-83.685642,32.751106],[-83.68566600000001,32.751018],[-83.685705,32.750906],[-83.68576800000001,32.750787],[-83.685851,32.750663],[-83.68591,32.750543],[-83.685961,32.750425],[-83.686006,32.750276],[-83.68603800000001,32.75013]]},"id":"8744c0b06ffffff-17df982c44a1cb3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0608db8c-13ffc5824baacc8a","8f44c0b060a1648-1796c5f90276f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.68603800000001,32.75013],[-83.686034,32.750003],[-83.686025,32.749907],[-83.68594300000001,32.749372],[-83.685877,32.748986],[-83.68584800000001,32.74873]]},"id":"8944c0b060bffff-17dff5b9db1af848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b060a5568-17f6a5cc0b86f4f8","8f44c0b060a1648-1796c5f90276f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.68584800000001,32.74873],[-83.68583000000001,32.748627],[-83.685844,32.748426],[-83.685861,32.748268],[-83.685896,32.748131],[-83.68592000000001,32.748061]]},"id":"8a44c0b060a7fff-17d7b5f33e212a40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b060a5568-17f6a5cc0b86f4f8","8f44c0b061810a0-139fe5aec893e2ef"]},"geometry":{"type":"LineString","coordinates":[[-83.68592000000001,32.748061],[-83.68594800000001,32.747980000000005],[-83.68600400000001,32.747847],[-83.68612,32.74765],[-83.68622400000001,32.747459],[-83.686254,32.747272],[-83.68624700000001,32.747078],[-83.68621800000001,32.746969],[-83.686188,32.74689],[-83.68611700000001,32.746743],[-83.6859668,32.746463]]},"id":"8844c0b061fffff-13fe954ba8c385e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69315300000001,32.897585]},"id":"8f44c0a05902d2c-13fef423652a25c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69314490000001,32.897862700000005]},"id":"8f44c0a059020d0-13be74287126c597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a059020d0-13be74287126c597","8f44c0a05902d2c-13fef423652a25c0"]},"geometry":{"type":"LineString","coordinates":[[-83.69315300000001,32.897585],[-83.69314490000001,32.897862700000005]]},"id":"8b44c0a05902fff-13d77425e1f8ecd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05902666-13fff42a5ad08648","8f44c0a059020d0-13be74287126c597"]},"geometry":{"type":"LineString","coordinates":[[-83.69314490000001,32.897862700000005],[-83.6931419,32.8979641]]},"id":"8b44c0a05902fff-13dff4296af930d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931339,32.8982401]},"id":"8f44c0a0591c15d-139e742f52bad039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0591c15d-139e742f52bad039","8f44c0a05902666-13fff42a5ad08648"]},"geometry":{"type":"LineString","coordinates":[[-83.6931419,32.8979641],[-83.6931339,32.8982401]]},"id":"8944c0a0593ffff-13d7f42cdc56fa64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931201,32.8987135]},"id":"8f44c0a05918a1b-17bff437f436fc13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0591c15d-139e742f52bad039","8f44c0a05918a1b-17bff437f436fc13"]},"geometry":{"type":"LineString","coordinates":[[-83.6931339,32.8982401],[-83.6931201,32.8987135]]},"id":"8a44c0a0591ffff-13be7433ad4df85d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05826cc9-17d6f443c2fd0c7c","8f44c0a05918a1b-17bff437f436fc13"]},"geometry":{"type":"LineString","coordinates":[[-83.6931201,32.8987135],[-83.6931012,32.899364]]},"id":"8844c0a059fffff-179f743de9297b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0580485c-17ff744e85906fe9","8f44c0a05826cc9-17d6f443c2fd0c7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6931012,32.899364],[-83.693095,32.899577],[-83.693073,32.900031000000006],[-83.693082,32.900207],[-83.693084,32.9002162]]},"id":"8944c0a0583ffff-17f6f44d2ce71e31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0580c064-13def3068a15567b","8f44c0a0580485c-17ff744e85906fe9"]},"geometry":{"type":"LineString","coordinates":[[-83.693084,32.9002162],[-83.69311,32.900337],[-83.693162,32.90044],[-83.69321500000001,32.90053],[-83.693489,32.900841],[-83.693551,32.90092],[-83.69359800000001,32.901038],[-83.69363,32.901199000000005],[-83.693619,32.901283],[-83.6936088,32.901393]]},"id":"8944c0a0583ffff-13d673880259795d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0580c064-13def3068a15567b","8f44c0a05852cdb-1797f37dbd0c2231"]},"geometry":{"type":"LineString","coordinates":[[-83.6936088,32.901393],[-83.693431,32.902814],[-83.6934181,32.9029407]]},"id":"8844c0a059fffff-17be7342f2a0b5ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693405,32.903258]},"id":"8f44c0a058ecd45-17de7385e38216fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a058ecd45-17de7385e38216fd","8f44c0a05852cdb-1797f37dbd0c2231"]},"geometry":{"type":"LineString","coordinates":[[-83.6934181,32.9029407],[-83.693397,32.903148],[-83.693405,32.903258]]},"id":"8944c0a058fffff-17f77385b476654c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a058ecd45-17de7385e38216fd","8f44c0a058ec14a-17df7351243fb1e0"]},"geometry":{"type":"LineString","coordinates":[[-83.693405,32.903258],[-83.6934894,32.903439]]},"id":"8b44c0a058ecfff-1796f36b88f0567b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a058ed50e-13fe730526001dff","8f44c0a058ec14a-17df7351243fb1e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6934894,32.903439],[-83.693611,32.903699700000004]]},"id":"8a44c0a058effff-139ef32b232df944"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69382900000001,32.905034]},"id":"8f44c0a05bb072b-13be727ce21e6940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a058ed50e-13fe730526001dff","8f44c0a05bb072b-13be727ce21e6940"]},"geometry":{"type":"LineString","coordinates":[[-83.693611,32.903699700000004],[-83.693841,32.904193],[-83.69383900000001,32.904755],[-83.69382900000001,32.905034]]},"id":"8744c0a05ffffff-1397f292ccab200d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688344,32.787833]},"id":"8f44c0b034d0624-179fffe1058c8472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686323,32.787796]},"id":"8f44c0b1cb31ba9-17f684d027fc70c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b034d0624-179fffe1058c8472","8f44c0b1cb31ba9-17f684d027fc70c2"]},"geometry":{"type":"LineString","coordinates":[[-83.688344,32.787833],[-83.686323,32.787796]]},"id":"8544c0b3fffffff-179692589a5aa7d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cb3159b-17ffa5dc4f172421","8f44c0b1cb31ba9-17f684d027fc70c2"]},"geometry":{"type":"LineString","coordinates":[[-83.686323,32.787796],[-83.685894,32.787785]]},"id":"8b44c0b1cb31fff-17f7955632110f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.578604,32.863154]},"id":"8f44c0b89c92605-17ffcbcc890451f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.578366,32.863132]},"id":"8f44c0b88261aa5-17f78c614ecf090a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c92605-17ffcbcc890451f6","8f44c0b88261aa5-17f78c614ecf090a"]},"geometry":{"type":"LineString","coordinates":[[-83.578604,32.863154],[-83.578366,32.863132]]},"id":"8944c0b8827ffff-17ffec16e7c718a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.577208,32.863214]},"id":"8f44c0b88244c73-1797cf350b8ea04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88244c73-1797cf350b8ea04a","8f44c0b88261aa5-17f78c614ecf090a"]},"geometry":{"type":"LineString","coordinates":[[-83.578366,32.863132],[-83.57827900000001,32.863146],[-83.57732100000001,32.863172],[-83.57726100000001,32.863185],[-83.577208,32.863214]]},"id":"8944c0b8827ffff-17f7edcd646d1b26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57514400000001,32.86453]},"id":"8f44c0b882e888b-13dfd43f0df566f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88244c73-1797cf350b8ea04a","8f44c0b882e888b-13dfd43f0df566f0"]},"geometry":{"type":"LineString","coordinates":[[-83.577208,32.863214],[-83.577183,32.863247],[-83.57709100000001,32.863321],[-83.576555,32.863681],[-83.57624700000001,32.86385],[-83.575726,32.864176],[-83.575349,32.864396],[-83.57514400000001,32.86453]]},"id":"8844c0b883fffff-17bf91b27927944a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574174,32.865159000000006]},"id":"8f44c0b882ce844-13d7f69d40fad998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882ce844-13d7f69d40fad998","8f44c0b882e888b-13dfd43f0df566f0"]},"geometry":{"type":"LineString","coordinates":[[-83.57514400000001,32.86453],[-83.57499,32.864629],[-83.57477800000001,32.864708],[-83.574399,32.864964],[-83.574312,32.865032],[-83.57421500000001,32.865116],[-83.574174,32.865159000000006]]},"id":"8944c0b882fffff-139795781a9ea459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6291434,32.8296798]},"id":"8f44c0ba922caa8-13b7f0696c8616dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62989060000001,32.830103]},"id":"8f44c0ba935e2d8-17bf6e9669a89d9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba922caa8-13b7f0696c8616dc","8f44c0ba935e2d8-17bf6e9669a89d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.6291434,32.8296798],[-83.62989060000001,32.830103]]},"id":"8844c0ba93fffff-17bf2f7feb27a9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6306344,32.830575700000004]},"id":"8f44c0ba9359069-17f7dcc58c5ed62b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9359069-17f7dcc58c5ed62b","8f44c0ba935e2d8-17bf6e9669a89d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.62989060000001,32.830103],[-83.6306344,32.830575700000004]]},"id":"8a44c0ba935ffff-17d72dadfb230c6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631393,32.831029]},"id":"8f44c0ba926582e-17972aeb61c9b9e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9359069-17f7dcc58c5ed62b","8f44c0ba926582e-17972aeb61c9b9e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6306344,32.830575700000004],[-83.631393,32.831029]]},"id":"8844c0ba93fffff-17f78bd87f77a239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6322164,32.831525]},"id":"8f44c0a34c90225-13b728e8c824c3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c90225-13b728e8c824c3b7","8f44c0ba926582e-17972aeb61c9b9e2"]},"geometry":{"type":"LineString","coordinates":[[-83.631393,32.831029],[-83.6322164,32.831525]]},"id":"8644c0a37ffffff-179f29ea14a0741b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632919,32.831967]},"id":"8f44c0a34c9c8c5-13df6731a33e91a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c90225-13b728e8c824c3b7","8f44c0a34c9c8c5-13df6731a33e91a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6322164,32.831525],[-83.632919,32.831967]]},"id":"8944c0a34cbffff-13d7480d34f9b87e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c9d94c-13f7d6175eb32a7f","8f44c0a34c9c8c5-13df6731a33e91a4"]},"geometry":{"type":"LineString","coordinates":[[-83.632919,32.831967],[-83.6333707,32.8322317]]},"id":"8a44c0a34c9ffff-139f26a4794994ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63365950000001,32.8324009]},"id":"8f44c0a34c8e769-13df9562d387cd94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c9d94c-13f7d6175eb32a7f","8f44c0a34c8e769-13df9562d387cd94"]},"geometry":{"type":"LineString","coordinates":[[-83.6333707,32.8322317],[-83.63365950000001,32.8324009]]},"id":"8944c0a34cbffff-13b7b5bd1617fa20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63446,32.832878]},"id":"8f44c0a34c89166-1397c36e85a56c0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c89166-1397c36e85a56c0e","8f44c0a34c8e769-13df9562d387cd94"]},"geometry":{"type":"LineString","coordinates":[[-83.63365950000001,32.8324009],[-83.63446,32.832878]]},"id":"8a44c0a34c8ffff-13ffa468b02eb120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2261190c-17b7ac19af6b2870","8f44c0a22621a5a-17b6a6efc5734344"]},"geometry":{"type":"LineString","coordinates":[[-83.672346,32.876576],[-83.67175200000001,32.876762],[-83.671339,32.87688],[-83.670231,32.877164]]},"id":"8944c0a2263ffff-17f7a98271353f6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66647300000001,32.892032]},"id":"8f44c0a040863b3-13f6b5466e714e2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040863b3-13f6b5466e714e2f","8f44c0a040a0ce1-13deb2e1e7480c54"]},"geometry":{"type":"LineString","coordinates":[[-83.66647300000001,32.892032],[-83.666679,32.891889],[-83.66739000000001,32.891205],[-83.66745300000001,32.891184]]},"id":"8944c0a040bffff-13f7f4124c8c694f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667761,32.890883]},"id":"8f44c0a040a4ab3-13b7f221636c2a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040a0ce1-13deb2e1e7480c54","8f44c0a040a4ab3-13b7f221636c2a3b"]},"geometry":{"type":"LineString","coordinates":[[-83.66745300000001,32.891184],[-83.667761,32.890883]]},"id":"8a44c0a040a7fff-13fff281ab7f3a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66711400000001,32.872287]},"id":"8f44c0a224ee85a-13bff3b5cfc9475d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668704,32.872092]},"id":"8f44c0a22442693-13d7afd408632c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22442693-13d7afd408632c5e","8f44c0a224ee85a-13bff3b5cfc9475d"]},"geometry":{"type":"LineString","coordinates":[[-83.66711400000001,32.872287],[-83.667631,32.872287],[-83.667913,32.872282000000006],[-83.668115,32.872258],[-83.668704,32.872092]]},"id":"8844c0a225fffff-139ff1c0675e2edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22442693-13d7afd408632c5e","8f44c0a2209a322-139fa89edb221b94"]},"geometry":{"type":"LineString","coordinates":[[-83.668704,32.872092],[-83.669075,32.871996],[-83.669407,32.87193],[-83.66947,32.871924],[-83.669577,32.871928000000004],[-83.66991700000001,32.871957],[-83.66998500000001,32.871967000000005],[-83.670399,32.872141],[-83.6707025,32.872268500000004],[-83.6709065,32.8723509],[-83.6711039,32.8723978],[-83.6713656,32.8723545],[-83.67165630000001,32.872241800000005]]},"id":"8744c0a22ffffff-13deec32a28183ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67348050000001,32.8740948]},"id":"8f44c0a2272d416-13b7e42abcb11b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2272d416-13b7e42abcb11b73","8f44c0a2209a322-139fa89edb221b94"]},"geometry":{"type":"LineString","coordinates":[[-83.67165630000001,32.872241800000005],[-83.6717002,32.872224800000005],[-83.67215060000001,32.8720951],[-83.672348,32.8720951],[-83.67297,32.872084300000004],[-83.67315020000001,32.8721456],[-83.67332610000001,32.87225],[-83.67348480000001,32.8724122],[-83.67352340000001,32.872574300000004],[-83.6735148,32.8738138],[-83.67348050000001,32.8740948]]},"id":"8744c0a22ffffff-17b7b546d21dd113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60750270000001,32.853932400000005]},"id":"8f44c0a32d15af2-17ffc53edf9c7c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607467,32.85541]},"id":"8f44c0a32d1b8ec-1397455526181524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d15af2-17ffc53edf9c7c9c","8f44c0a32d1b8ec-1397455526181524"]},"geometry":{"type":"LineString","coordinates":[[-83.60750270000001,32.853932400000005],[-83.6075204,32.8540293],[-83.607467,32.85541]]},"id":"8944c0a32d3ffff-13bf5543b09bfdc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d1b8ec-1397455526181524","8f44c0a32c22474-1797e5642c43ec14"]},"geometry":{"type":"LineString","coordinates":[[-83.607467,32.85541],[-83.6074471,32.856107300000005],[-83.607443,32.856251]]},"id":"8844c0a32dfffff-139f555ca8d59574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607438,32.856737]},"id":"8f44c0a32c040f3-17d7e567457d46fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c040f3-17d7e567457d46fd","8f44c0a32c22474-1797e5642c43ec14"]},"geometry":{"type":"LineString","coordinates":[[-83.607443,32.856251],[-83.607438,32.856737]]},"id":"8944c0a32c3ffff-17bfc565bc96111d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c040f3-17d7e567457d46fd","8f44c0a32c0e421-13ffc576e4756187"]},"geometry":{"type":"LineString","coordinates":[[-83.607438,32.856737],[-83.60741300000001,32.857846]]},"id":"8944c0a32c3ffff-179f756f1273463b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60741300000001,32.858258]},"id":"8f44c0a32c0a180-13ff4576e945e656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c0e421-13ffc576e4756187","8f44c0a32c0a180-13ff4576e945e656"]},"geometry":{"type":"LineString","coordinates":[[-83.60741300000001,32.857846],[-83.60741300000001,32.858258]]},"id":"8a44c0a32c0ffff-13ffc576ecb6070d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607403,32.858674]},"id":"8f44c0a32ce48de-13ff457d2961386f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c0a180-13ff4576e945e656","8f44c0a32ce48de-13ff457d2961386f"]},"geometry":{"type":"LineString","coordinates":[[-83.60741300000001,32.858258],[-83.607403,32.858674]]},"id":"8944c0a32c3ffff-13ff457a0e1f19df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60738900000001,32.859578]},"id":"8f44c0a32ce1796-17b74585eda02163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ce1796-17b74585eda02163","8f44c0a32ce48de-13ff457d2961386f"]},"geometry":{"type":"LineString","coordinates":[[-83.607403,32.858674],[-83.60738900000001,32.859578]]},"id":"8a44c0a32ce7fff-139fc581861dd2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72044500000001,32.85897]},"id":"8f44c0a25199a30-13be7181e3a25f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71974200000001,32.859614]},"id":"8f44c0a250b5313-17def339427bf3c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25199a30-13be7181e3a25f6a","8f44c0a250b5313-17def339427bf3c3"]},"geometry":{"type":"LineString","coordinates":[[-83.72044500000001,32.85897],[-83.72037800000001,32.859081],[-83.720309,32.85918],[-83.72023800000001,32.85926],[-83.720095,32.859391],[-83.72005,32.859425],[-83.71974200000001,32.859614]]},"id":"8844c0a251fffff-17973248caf9a9ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7192007,32.859926]},"id":"8f44c0a250b382b-179ff48b96949d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250b5313-17def339427bf3c3","8f44c0a250b382b-179ff48b96949d35"]},"geometry":{"type":"LineString","coordinates":[[-83.71974200000001,32.859614],[-83.719402,32.859817],[-83.7192007,32.859926]]},"id":"8a44c0a250b7fff-17bff3e1778d48a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2e90e6ed-17bdf3de05f25766","8f44c0b2c5a3442-17f7e4cbef6f8369"]},"geometry":{"type":"LineString","coordinates":[[-83.76497300000001,32.745171],[-83.76464800000001,32.745136],[-83.763682,32.745125],[-83.76292600000001,32.745131],[-83.7613,32.745116],[-83.760643,32.745117],[-83.759349,32.745103],[-83.75880000000001,32.745103]]},"id":"8644c0b2fffffff-17d5dc546f7dd218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757182,32.743222]},"id":"8f44c0b216498ca-13b5d7d14a8a5d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b216498ca-13b5d7d14a8a5d1a","8f44c0b2e90e6ed-17bdf3de05f25766"]},"geometry":{"type":"LineString","coordinates":[[-83.75880000000001,32.745103],[-83.757963,32.745098],[-83.757655,32.745078],[-83.75743700000001,32.744999],[-83.757282,32.744906],[-83.75721100000001,32.744805],[-83.75717,32.744639],[-83.757182,32.743222]]},"id":"8944c0b2e93ffff-13f5f6d5f45159d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34860301-13dedf11c08311ea","8f44c0a348652e2-13d7fe016ff1f90b"]},"geometry":{"type":"LineString","coordinates":[[-83.649354,32.832986000000005],[-83.6494339,32.8330009],[-83.64951520000001,32.8330087],[-83.64959710000001,32.8330094],[-83.64966220000001,32.833004800000005],[-83.6497265,32.8329958],[-83.64978980000001,32.832982300000005]]},"id":"8a44c0a34867fff-13d7de8979badb38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650326,32.832794]},"id":"8f44c0b1b496372-13d6dcb24f775490"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b1b496372-13d6dcb24f775490","8f44c0a348652e2-13d7fe016ff1f90b"]},"geometry":{"type":"LineString","coordinates":[[-83.64978980000001,32.832982300000005],[-83.650024,32.832904],[-83.65013780000001,32.8328626],[-83.650326,32.832794]]},"id":"8844c0a349fffff-139efd59712b0a63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65184500000001,32.832751]},"id":"8f44c0b1b4847a6-13b7f8fceed91a07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b1b496372-13d6dcb24f775490","8f44c0b1b4847a6-13b7f8fceed91a07"]},"geometry":{"type":"LineString","coordinates":[[-83.650326,32.832794],[-83.6503666,32.8327741],[-83.6504098,32.8327587],[-83.65045500000001,32.832748],[-83.6505106,32.8327417],[-83.65056410000001,32.8327426],[-83.65093350000001,32.832740900000005],[-83.6511943,32.8327438],[-83.6517326,32.8327497],[-83.65184500000001,32.832751]]},"id":"8944c0b1b4bffff-13b6fada22912559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e806688-17bf6ddb850f8782","8f44c0b0e81504b-17bfee808309687d"]},"geometry":{"type":"LineString","coordinates":[[-83.721676,32.794646],[-83.72194,32.794642]]},"id":"8944c0b0e83ffff-17beae2e0b8ede0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695176,32.836253]},"id":"8f44c0b1935938e-13d66f330e3039c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695901,32.836298]},"id":"8f44c0b1934b194-13de6d6de7805976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1935938e-13d66f330e3039c2","8f44c0b1934b194-13de6d6de7805976"]},"geometry":{"type":"LineString","coordinates":[[-83.695176,32.836253],[-83.695363,32.83626],[-83.69582700000001,32.836266],[-83.69587200000001,32.836274],[-83.695901,32.836298]]},"id":"8944c0b1937ffff-13de6e4dc8ce583f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69676100000001,32.836314]},"id":"8f44c0a24cb269d-13fe6b546c7378c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1934b194-13de6d6de7805976","8f44c0a24cb269d-13fe6b546c7378c5"]},"geometry":{"type":"LineString","coordinates":[[-83.695901,32.836298],[-83.69676100000001,32.836314]]},"id":"8644c0a27ffffff-13f76c612b198601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69704,32.836306]},"id":"8f44c0a24cb220c-13f76aa60cad1579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24cb220c-13f76aa60cad1579","8f44c0a24cb269d-13fe6b546c7378c5"]},"geometry":{"type":"LineString","coordinates":[[-83.69676100000001,32.836314],[-83.69704,32.836306]]},"id":"8b44c0a24cb2fff-13f7eafd3fd4ad59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698676,32.885661]},"id":"8f44c0a2316d4eb-17f666a787e4f177"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698395,32.884326]},"id":"8f44c0a2316592a-139fe7572de6f0dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2316d4eb-17f666a787e4f177","8f44c0a2316592a-139fe7572de6f0dd"]},"geometry":{"type":"LineString","coordinates":[[-83.698676,32.885661],[-83.698699,32.885458],[-83.698684,32.885305],[-83.69863000000001,32.885123],[-83.69848800000001,32.884875],[-83.698436,32.884793],[-83.698385,32.884633],[-83.698367,32.884524],[-83.698372,32.884413],[-83.698395,32.884326]]},"id":"8944c0a2317ffff-13bf76fc40800d6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2316592a-139fe7572de6f0dd","8f44c0a238c8309-17df66c6cdb4cd30"]},"geometry":{"type":"LineString","coordinates":[[-83.698395,32.884326],[-83.69847800000001,32.88405],[-83.698626,32.883781]]},"id":"8744c0a23ffffff-13f7e717f2c0f65c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69986150000001,32.882830500000004]},"id":"8f44c0a2385a513-17ff73c2917ca8eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2385a513-17ff73c2917ca8eb","8f44c0a238c8309-17df66c6cdb4cd30"]},"geometry":{"type":"LineString","coordinates":[[-83.698626,32.883781],[-83.698926,32.883294],[-83.699022,32.883179000000005],[-83.699135,32.88308],[-83.699263,32.883015],[-83.69986150000001,32.882830500000004]]},"id":"8844c0a239fffff-17df6579ed6ce541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.551338,32.805313000000005]},"id":"8f44c0b81db681e-13bfee5dce38a78f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80ae32ad-1797d0c37f4873ee","8f44c0b81db681e-13bfee5dce38a78f"]},"geometry":{"type":"LineString","coordinates":[[-83.551338,32.805313000000005],[-83.5503561,32.8041988]]},"id":"8944c0b80afffff-17dfff90abe32a27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80ae308b-17b7f1073ad7a5b3","8f44c0b80ae32ad-1797d0c37f4873ee"]},"geometry":{"type":"LineString","coordinates":[[-83.5503561,32.8041988],[-83.5502477,32.8040758]]},"id":"8b44c0b80ae3fff-17dfd0e558171561"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.549727,32.803485]},"id":"8f44c0b80af5376-13d7f24cac7e7902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80ae308b-17b7f1073ad7a5b3","8f44c0b80af5376-13d7f24cac7e7902"]},"geometry":{"type":"LineString","coordinates":[[-83.5502477,32.8040758],[-83.549727,32.803485]]},"id":"8944c0b80afffff-17ffd1a9e29b0592"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7166275,32.8271042]},"id":"8f44c0b0a30429c-17fe3ad3db88810c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a30429c-17fe3ad3db88810c","8f44c0b0a3048d2-17debab844c75892"]},"geometry":{"type":"LineString","coordinates":[[-83.71667160000001,32.8268427],[-83.7166437,32.8269958],[-83.7166275,32.8271042]]},"id":"8b44c0b0a304fff-179e7ac6b56c9819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a30429c-17fe3ad3db88810c","8f44c0b0a30e055-17fefa73475dcde2"]},"geometry":{"type":"LineString","coordinates":[[-83.7166275,32.8271042],[-83.7166141,32.8271942],[-83.7165994,32.8274051],[-83.71662,32.827586100000005],[-83.71665250000001,32.8277846],[-83.71678200000001,32.8281519]]},"id":"8944c0b0a33ffff-17b7bac34bd6d2b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716819,32.829216]},"id":"8f44c0b0a225c59-13963a5c2a8ea591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a225c59-13963a5c2a8ea591","8f44c0b0a30e055-17fefa73475dcde2"]},"geometry":{"type":"LineString","coordinates":[[-83.71678200000001,32.8281519],[-83.716831,32.828291],[-83.71686100000001,32.828432],[-83.716875,32.828559000000006],[-83.716874,32.828781],[-83.716819,32.829216]]},"id":"8844c0b0a3fffff-13d73a493e18567c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a225c59-13963a5c2a8ea591","8f44c0b0a20cd58-17b63b84cadcad27"]},"geometry":{"type":"LineString","coordinates":[[-83.716819,32.829216],[-83.716684,32.829617],[-83.716532,32.829835],[-83.716454,32.830002],[-83.71640000000001,32.8304689],[-83.71634440000001,32.8308768]]},"id":"8944c0b0a23ffff-1796fb12dc2812a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151238,32.831230600000005]},"id":"8f44c0b0a21d496-17ff3e7fabe36951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a21d496-17ff3e7fabe36951","8f44c0b0a20cd58-17b63b84cadcad27"]},"geometry":{"type":"LineString","coordinates":[[-83.71634440000001,32.8308768],[-83.71627240000001,32.831403800000004],[-83.71623840000001,32.8314953],[-83.7161549,32.831538900000005],[-83.7151127,32.8315107],[-83.7151238,32.831230600000005]]},"id":"8944c0b0a23ffff-17fefcdcb6ced75e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619366,32.848385]},"id":"8f44c0a36384b86-13f7a8484cf1d550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6193665,32.8486739]},"id":"8f44c0a363855a3-13973847f6106a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36384b86-13f7a8484cf1d550","8f44c0a363855a3-13973847f6106a04"]},"geometry":{"type":"LineString","coordinates":[[-83.619366,32.848385],[-83.6193665,32.8486739]]},"id":"8a44c0a36387fff-13bff84820f4c656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61936700000001,32.848978]},"id":"8f44c0a36381da8-13d76847a1f5e24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36381da8-13d76847a1f5e24f","8f44c0a363855a3-13973847f6106a04"]},"geometry":{"type":"LineString","coordinates":[[-83.6193665,32.8486739],[-83.61936700000001,32.848978]]},"id":"8a44c0a36387fff-13f76847cd60dde7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619354,32.849688]},"id":"8f44c0a3638e0cd-179f284fc33ad132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619375,32.850363]},"id":"8f44c0a3638b41e-17b7e842a63a5412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3638b41e-17b7e842a63a5412","8f44c0a3638e0cd-179f284fc33ad132"]},"geometry":{"type":"LineString","coordinates":[[-83.619354,32.849688],[-83.619375,32.850363]]},"id":"8a44c0a3638ffff-17f7f849319f5276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61937900000001,32.851072]},"id":"8f44c0a362a199b-17f728402ae41725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3638b41e-17b7e842a63a5412","8f44c0a362a199b-17f728402ae41725"]},"geometry":{"type":"LineString","coordinates":[[-83.619375,32.850363],[-83.61937900000001,32.851072]]},"id":"8844c0a363fffff-179778416772d967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7112944,32.874329100000004]},"id":"8f44c0a21cad4e0-13b7f7d9089d26b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712451,32.872855]},"id":"8f44c0a21c33bb1-179e65062e34d36b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c33bb1-179e65062e34d36b","8f44c0a21cad4e0-13b7f7d9089d26b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7112944,32.874329100000004],[-83.711647,32.873865],[-83.712451,32.872855]]},"id":"8844c0a21dfffff-17ff5671d934b281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c33bb1-179e65062e34d36b","8f44c0a21c356b6-17be4455433434c6"]},"geometry":{"type":"LineString","coordinates":[[-83.712451,32.872855],[-83.71273400000001,32.87249]]},"id":"8a44c0a21c37fff-17be54adb4322a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135068,32.871514600000005]},"id":"8f44c0a21d1d78b-13dee2724a00a659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21d1d78b-13dee2724a00a659","8f44c0a21c356b6-17be4455433434c6"]},"geometry":{"type":"LineString","coordinates":[[-83.71273400000001,32.87249],[-83.713423,32.871615000000006],[-83.7135068,32.871514600000005]]},"id":"8844c0a21dfffff-139ec3649ae34a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21d05805-17d7c010cc3cec6e","8f44c0a21d1d78b-13dee2724a00a659"]},"geometry":{"type":"LineString","coordinates":[[-83.7135068,32.871514600000005],[-83.71370200000001,32.87126],[-83.714178,32.870661000000005],[-83.714482,32.870278]]},"id":"8944c0a21d3ffff-13d761429051f06b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25618b1b-13977888a0bfa33b","8f44c0a21d05805-17d7c010cc3cec6e"]},"geometry":{"type":"LineString","coordinates":[[-83.714482,32.870278],[-83.71468800000001,32.870022],[-83.715068,32.869563],[-83.71562300000001,32.868885],[-83.71584,32.868651],[-83.71593,32.868561],[-83.71622400000001,32.86834],[-83.71652900000001,32.868155],[-83.71694400000001,32.867962],[-83.717567,32.867714]]},"id":"8644c0a27ffffff-13d77ca30ab3b467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71889200000001,32.867116]},"id":"8f44c0a2562a75c-179fb54c831f1fbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25618b1b-13977888a0bfa33b","8f44c0a2562a75c-179fb54c831f1fbc"]},"geometry":{"type":"LineString","coordinates":[[-83.717567,32.867714],[-83.717932,32.867565],[-83.718261,32.867421],[-83.71862200000001,32.867251],[-83.71889200000001,32.867116]]},"id":"8944c0a2563ffff-17def6e7af169bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2562a75c-179fb54c831f1fbc","8f44c0a25392554-13ffab932621ca76"]},"geometry":{"type":"LineString","coordinates":[[-83.71889200000001,32.867116],[-83.72011400000001,32.866538000000006],[-83.72156700000001,32.865851],[-83.72208300000001,32.865606],[-83.722875,32.865225]]},"id":"8744c0a25ffffff-17de306f290416f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac35849-17d77174a8ab40bb","8f44c0b0ad73295-17d6eb264cdae164"]},"geometry":{"type":"LineString","coordinates":[[-83.70735900000001,32.813935],[-83.70994200000001,32.813963]]},"id":"8844c0b0adfffff-17de6e4d708c9dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad44b09-17fe4890684ec3dd","8f44c0b0ad73295-17d6eb264cdae164"]},"geometry":{"type":"LineString","coordinates":[[-83.70994200000001,32.813963],[-83.71100100000001,32.813994]]},"id":"8944c0b0ad7ffff-17f6d9db5590cac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad6c8d5-179e45b7a262416d","8f44c0b0ad44b09-17fe4890684ec3dd"]},"geometry":{"type":"LineString","coordinates":[[-83.71100100000001,32.813994],[-83.71171000000001,32.814034],[-83.71216700000001,32.814042]]},"id":"8944c0b0ad7ffff-17fee724233b9298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad6c8d5-179e45b7a262416d","8f44c0b0a99cdaa-179f72f5972f0c00"]},"geometry":{"type":"LineString","coordinates":[[-83.71216700000001,32.814042],[-83.71322500000001,32.814062],[-83.7132967,32.8140439]]},"id":"8844c0b0a9fffff-179ed455feaa570c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668304,32.886364]},"id":"8f44c0a04c40692-179fb0ce0ed7f1e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66716600000001,32.886423]},"id":"8f44c0a04c538e6-17bef3954ca7ada8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c40692-179fb0ce0ed7f1e2","8f44c0a04c538e6-17bef3954ca7ada8"]},"geometry":{"type":"LineString","coordinates":[[-83.668304,32.886364],[-83.66771200000001,32.886381],[-83.66744800000001,32.8864],[-83.66716600000001,32.886423]]},"id":"8944c0a04c7ffff-17b7b231efeb907f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c538e6-17bef3954ca7ada8","8f44c0a045359b2-17ffd0ec8fc484f2"]},"geometry":{"type":"LineString","coordinates":[[-83.66716600000001,32.886423],[-83.666376,32.886491],[-83.66615200000001,32.886467],[-83.665738,32.886406],[-83.665547,32.886386],[-83.663317,32.886378],[-83.662239,32.886372],[-83.66192600000001,32.886353],[-83.6617016,32.8862961]]},"id":"8744c0a04ffffff-17bffa41325abf25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c9a666-17ffe1aea4618c04","8f44c0a045359b2-17ffd0ec8fc484f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6617016,32.8862961],[-83.661544,32.886133],[-83.661427,32.885983],[-83.66139100000001,32.885903]]},"id":"8744c0a04ffffff-17ffc1555da2ef0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65918,32.756431]},"id":"8f44c0b157324a9-13f7e714815a081d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659226,32.753408]},"id":"8f44c0b1554bd0e-1396c6f7c5f617d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b157324a9-13f7e714815a081d","8f44c0b1554bd0e-1396c6f7c5f617d9"]},"geometry":{"type":"LineString","coordinates":[[-83.65918,32.756431],[-83.65914400000001,32.756328],[-83.65910000000001,32.756258],[-83.658769,32.755797],[-83.65821700000001,32.755014],[-83.657463,32.753934],[-83.657407,32.753779],[-83.65882500000001,32.753529],[-83.659085,32.75347],[-83.659226,32.753408]]},"id":"8744c0b15ffffff-17dff93a8015c468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659459,32.75331]},"id":"8f44c0b15548389-13d6c6662353a874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15548389-13d6c6662353a874","8f44c0b1554bd0e-1396c6f7c5f617d9"]},"geometry":{"type":"LineString","coordinates":[[-83.659226,32.753408],[-83.659459,32.75331]]},"id":"8a44c0b1554ffff-13f7e6aef0b7a75c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649973,32.842022]},"id":"8f44c0a34ac584b-13d7dd8ee3268087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34ac584b-13d7dd8ee3268087","8f44c0a34ae326d-13f6fd3e9ee623a7"]},"geometry":{"type":"LineString","coordinates":[[-83.649973,32.842022],[-83.6501015,32.8418566]]},"id":"8944c0a34afffff-13b6dd66ceec3791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650861,32.840879]},"id":"8f44c0a34a56c83-179ffb63e158c930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a56c83-179ffb63e158c930","8f44c0a34ae326d-13f6fd3e9ee623a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6501015,32.8418566],[-83.650861,32.840879]]},"id":"8844c0a34bfffff-13befc5136904c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651047,32.8406369]},"id":"8f44c0a34a09731-17f6daefa3170d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a09731-17f6daefa3170d20","8f44c0a34a56c83-179ffb63e158c930"]},"geometry":{"type":"LineString","coordinates":[[-83.650861,32.840879],[-83.651047,32.8406369]]},"id":"8a44c0a34a0ffff-17d7db29c114570d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a09731-17f6daefa3170d20","8f44c0a34a091a9-17bfdac25f414b96"]},"geometry":{"type":"LineString","coordinates":[[-83.651047,32.8406369],[-83.65111950000001,32.840542500000005]]},"id":"8b44c0a34a09fff-17dedad90558337a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65145000000001,32.8401124]},"id":"8f44c0a34a0db1c-17bed9f3c7e32e48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a0db1c-17bed9f3c7e32e48","8f44c0a34a091a9-17bfdac25f414b96"]},"geometry":{"type":"LineString","coordinates":[[-83.65111950000001,32.840542500000005],[-83.65145000000001,32.8401124]]},"id":"8944c0a34a3ffff-17b6fa5b189b510b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a0db1c-17bed9f3c7e32e48","8f44c0a34a76c35-1797f97b24be445c"]},"geometry":{"type":"LineString","coordinates":[[-83.65145000000001,32.8401124],[-83.651577,32.839947],[-83.651643,32.839861]]},"id":"8944c0a34a3ffff-17dff9b773eac5d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a76c35-1797f97b24be445c","8f44c0a34a2995a-139fd89a6f187135"]},"geometry":{"type":"LineString","coordinates":[[-83.651643,32.839861],[-83.65170400000001,32.839778],[-83.6520026,32.839474800000005]]},"id":"8a44c0a34a2ffff-1796d90d9df9853f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65297500000001,32.838569]},"id":"8f44c0a34b42098-13fff63aaf1fa10a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b42098-13fff63aaf1fa10a","8f44c0a34a2995a-139fd89a6f187135"]},"geometry":{"type":"LineString","coordinates":[[-83.6520026,32.839474800000005],[-83.652455,32.839064],[-83.65297500000001,32.838569]]},"id":"8844c0a34bfffff-1396f768ee29dfb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65415200000001,32.837536]},"id":"8f44c0a34b60711-17f6d35b0a13721b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b60711-17f6d35b0a13721b","8f44c0a34b42098-13fff63aaf1fa10a"]},"geometry":{"type":"LineString","coordinates":[[-83.65297500000001,32.838569],[-83.653209,32.838366],[-83.653653,32.83798],[-83.65415200000001,32.837536]]},"id":"8944c0a34b7ffff-13b7f4c9e30cd4b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654911,32.836865]},"id":"8f44c0b1b4cb129-17d6f180aeb487ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b60711-17f6d35b0a13721b","8f44c0b1b4cb129-17d6f180aeb487ee"]},"geometry":{"type":"LineString","coordinates":[[-83.65415200000001,32.837536],[-83.65452,32.837213000000006],[-83.654829,32.836948],[-83.654911,32.836865]]},"id":"8744c0b1bffffff-1797d26c9f80d766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4cd498-179ed0d605b1b395","8f44c0b1b4cb129-17d6f180aeb487ee"]},"geometry":{"type":"LineString","coordinates":[[-83.654911,32.836865],[-83.655011,32.836765],[-83.65509300000001,32.836644],[-83.65515,32.83652],[-83.655184,32.836394]]},"id":"8a44c0b1b4cffff-17b6f11b6884e0d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65520500000001,32.835926]},"id":"8f44c0b1b4cc80e-13f7d0c8e65d8257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4cc80e-13f7d0c8e65d8257","8f44c0b1b4cd498-179ed0d605b1b395"]},"geometry":{"type":"LineString","coordinates":[[-83.655184,32.836394],[-83.65519900000001,32.836292],[-83.65520500000001,32.835926]]},"id":"8a44c0b1b4cffff-139ed0cc3db2aac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655107,32.834812]},"id":"8f44c0b1b4e3bb3-13bfd10621ee8814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4cc80e-13f7d0c8e65d8257","8f44c0b1b4e3bb3-13bfd10621ee8814"]},"geometry":{"type":"LineString","coordinates":[[-83.65520500000001,32.835926],[-83.655107,32.834812]]},"id":"8944c0b1b4fffff-139ff0e78cc92453"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4e3bb3-13bfd10621ee8814","8f44c0b1b4e3930-17d6d1102a907680"]},"geometry":{"type":"LineString","coordinates":[[-83.655107,32.834812],[-83.655091,32.834638000000005]]},"id":"8a44c0b1b4e7fff-1397f10b21bd399f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4e4c94-17f7d12baeda15d9","8f44c0b1b4e3930-17d6d1102a907680"]},"geometry":{"type":"LineString","coordinates":[[-83.655091,32.834638000000005],[-83.65504700000001,32.833846]]},"id":"8a44c0b1b4e7fff-17dfd11de5b0671f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654973,32.832721]},"id":"8f44c0b1b40352c-13b6f159e7b30563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4e4c94-17f7d12baeda15d9","8f44c0b1b40352c-13b6f159e7b30563"]},"geometry":{"type":"LineString","coordinates":[[-83.65504700000001,32.833846],[-83.655026,32.833607],[-83.654973,32.832721]]},"id":"8944c0b1b43ffff-1796d14462ff1f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63578700000001,32.818669]},"id":"8f44c0b1a4f22da-13d720312b2f6ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636768,32.819246]},"id":"8f44c0b1a4c0d53-13befdcc0f11261b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4f22da-13d720312b2f6ec4","8f44c0b1a4c0d53-13befdcc0f11261b"]},"geometry":{"type":"LineString","coordinates":[[-83.63578700000001,32.818669],[-83.63589230000001,32.8186945],[-83.636768,32.819246]]},"id":"8944c0b1a4fffff-13fffefab321c547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7b6cb4-17defa4587e98851","8f44c0b1a4c0d53-13befdcc0f11261b"]},"geometry":{"type":"LineString","coordinates":[[-83.636768,32.819246],[-83.63821200000001,32.82011]]},"id":"8944c0b1a4fffff-13defc08c1f97621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688719,32.85042]},"id":"8f44c0a26aae52a-17defef6a53fee2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688675,32.852855000000005]},"id":"8f44c0a26ad28ae-17de7f122db8d33a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aae52a-17defef6a53fee2d","8f44c0a26ad28ae-17de7f122db8d33a"]},"geometry":{"type":"LineString","coordinates":[[-83.688719,32.85042],[-83.68870000000001,32.851627],[-83.688675,32.852855000000005]]},"id":"8844c0a26bfffff-13d77f0382b44a71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26ad28ae-17de7f122db8d33a","8f44c0a26373585-13d67f2da7b53438"]},"geometry":{"type":"LineString","coordinates":[[-83.688675,32.852855000000005],[-83.688631,32.855303]]},"id":"8744c0a26ffffff-17d77f1fe2c8e692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63655200000001,32.837231]},"id":"8f44c0a34569414-17b7fe530072c7fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635867,32.836758]},"id":"8f44c0a3456e682-17ffffff29f3c52e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34569414-17b7fe530072c7fa","8f44c0a3456e682-17ffffff29f3c52e"]},"geometry":{"type":"LineString","coordinates":[[-83.63655200000001,32.837231],[-83.636482,32.837141],[-83.63605000000001,32.836869],[-83.635867,32.836758]]},"id":"8a44c0a3456ffff-179eff21822f0039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635135,32.836325]},"id":"8f44c0a34544194-13ff21c8a23465eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34544194-13ff21c8a23465eb","8f44c0a3456e682-17ffffff29f3c52e"]},"geometry":{"type":"LineString","coordinates":[[-83.635867,32.836758],[-83.635135,32.836325]]},"id":"8944c0a3457ffff-17f770e3eeebb3cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34544194-13ff21c8a23465eb","8f44c0a345704d3-139f13ee31f718cb"]},"geometry":{"type":"LineString","coordinates":[[-83.635135,32.836325],[-83.6343983,32.8358733],[-83.63425570000001,32.835784100000005]]},"id":"8944c0a3457ffff-13d772dbad24e27a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63466700000001,32.836925]},"id":"8f44c0a3454215d-17f722ed2f10e5b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3454066a-179f91faeb033fba","8f44c0a3454215d-17f722ed2f10e5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.63466700000001,32.836925],[-83.634878,32.836978],[-83.6350546,32.8370089]]},"id":"8a44c0a34547fff-1797927474eba3b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3454066a-179f91faeb033fba","8f44c0a3456a230-17feffaca4507189"]},"geometry":{"type":"LineString","coordinates":[[-83.6350546,32.8370089],[-83.63561,32.837106],[-83.635999,32.837169]]},"id":"8944c0a3457ffff-17df80d3e45acfc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34569414-17b7fe530072c7fa","8f44c0a3456a230-17feffaca4507189"]},"geometry":{"type":"LineString","coordinates":[[-83.635999,32.837169],[-83.636183,32.837199000000005],[-83.636425,32.837232],[-83.63655200000001,32.837231]]},"id":"8a44c0a3456ffff-1797ff0040d62704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637596,32.837426]},"id":"8f44c0a3419b11e-179ffbc68869367d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419b11e-179ffbc68869367d","8f44c0a34569414-17b7fe530072c7fa"]},"geometry":{"type":"LineString","coordinates":[[-83.63655200000001,32.837231],[-83.636753,32.837293],[-83.637414,32.837401],[-83.637596,32.837426]]},"id":"8844c0a341fffff-17fefd0e907c1835"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638254,32.837535]},"id":"8f44c0a3419934d-17f7fa2b4af5e4bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419934d-17f7fa2b4af5e4bb","8f44c0a3419b11e-179ffbc68869367d"]},"geometry":{"type":"LineString","coordinates":[[-83.637596,32.837426],[-83.638254,32.837535]]},"id":"8944c0a341bffff-17d7faf8ecfc1b2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68021300000001,32.830357]},"id":"8f44c0b1945a974-17dfb3baebd5b1ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68026300000001,32.829268]},"id":"8f44c0b19455446-13b6939ba77843a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19455446-13b6939ba77843a8","8f44c0b1945a974-17dfb3baebd5b1ec"]},"geometry":{"type":"LineString","coordinates":[[-83.68021300000001,32.830357],[-83.68026300000001,32.829268]]},"id":"8944c0b1947ffff-179ed3ab4811b0dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680311,32.82817]},"id":"8f44c0b19476391-1396d37daad1f338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19476391-1396d37daad1f338","8f44c0b19455446-13b6939ba77843a8"]},"geometry":{"type":"LineString","coordinates":[[-83.68026300000001,32.829268],[-83.680311,32.82817]]},"id":"8944c0b1947ffff-13dff38cac04afdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72390800000001,32.889293]},"id":"8f44c0a2135bc6e-17d6290d82fce245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723493,32.886279]},"id":"8f44c0a2132b074-17f66a10e65f67cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2132b074-17f66a10e65f67cb","8f44c0a2135bc6e-17d6290d82fce245"]},"geometry":{"type":"LineString","coordinates":[[-83.72390800000001,32.889293],[-83.724067,32.888876],[-83.72412,32.888683],[-83.724131,32.888599],[-83.72414,32.888382],[-83.72414400000001,32.888022],[-83.724135,32.887895],[-83.724119,32.887802],[-83.72408200000001,32.88767],[-83.724036,32.887559],[-83.723994,32.887486],[-83.72392500000001,32.887368],[-83.723844,32.887262],[-83.72378300000001,32.887172],[-83.72371700000001,32.887059],[-83.72366500000001,32.886955],[-83.723619,32.886845],[-83.723578,32.886722],[-83.723551,32.886608],[-83.723493,32.886279]]},"id":"8844c0a213fffff-139f6906a6f2a0db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72319470000001,32.8851555]},"id":"8f44c0a213217a3-13b63acb5f60e808"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2132b074-17f66a10e65f67cb","8f44c0a213217a3-13b63acb5f60e808"]},"geometry":{"type":"LineString","coordinates":[[-83.723493,32.886279],[-83.72346,32.886108],[-83.72339500000001,32.88572],[-83.72336800000001,32.885601],[-83.723342,32.885517],[-83.723298,32.885399],[-83.723242,32.885271],[-83.72319470000001,32.8851555]]},"id":"8944c0a2133ffff-17966a5cafceee90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694333,32.841945]},"id":"8f44c0a2458819a-13b7f141e8d50c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2458819a-13b7f141e8d50c7f","8f44c0a2458b8b5-13ff714b4c2dd429"]},"geometry":{"type":"LineString","coordinates":[[-83.694333,32.841945],[-83.69431800000001,32.842255]]},"id":"8a44c0a2458ffff-139ef14693fe3a3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694281,32.843032]},"id":"8f44c0a244a5255-17df71626a6e4dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2458b8b5-13ff714b4c2dd429","8f44c0a244a5255-17df71626a6e4dfc"]},"geometry":{"type":"LineString","coordinates":[[-83.69431800000001,32.842255],[-83.694281,32.843032]]},"id":"8844c0a245fffff-13de7156d8375f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a304460d9-179fd3688ad136d3","8f44c0a3056e184-13bf0e2a018d94ed"]},"geometry":{"type":"LineString","coordinates":[[-83.630064,32.85772],[-83.630082,32.85783],[-83.630092,32.858024],[-83.630092,32.858136],[-83.630076,32.858269],[-83.630032,32.858415],[-83.629991,32.858531],[-83.629676,32.859122],[-83.62958300000001,32.859313],[-83.62943800000001,32.859554],[-83.62935200000001,32.859713],[-83.629259,32.859845],[-83.629097,32.859994],[-83.62886200000001,32.860166],[-83.628532,32.86038],[-83.628144,32.86061],[-83.627916,32.860774]]},"id":"8844c0a305fffff-17dff008c4d6d228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a304460d9-179fd3688ad136d3","8f44c0a32b29cea-17b71ef60a942b75"]},"geometry":{"type":"LineString","coordinates":[[-83.627916,32.860774],[-83.627739,32.860912],[-83.627604,32.860988],[-83.627474,32.86103],[-83.62737,32.861049],[-83.62725300000001,32.861044],[-83.62711900000001,32.861019],[-83.626721,32.860863],[-83.626582,32.86083],[-83.626491,32.860818],[-83.62629600000001,32.860813],[-83.62618300000001,32.860839],[-83.62607,32.860889],[-83.62589600000001,32.861002],[-83.62516400000001,32.861603],[-83.624746,32.861922],[-83.62439300000001,32.86217],[-83.62396700000001,32.862436],[-83.62366700000001,32.862609],[-83.623378,32.862744],[-83.62318400000001,32.862848]]},"id":"8644c0a37ffffff-139f59476d04a975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622444,32.863213]},"id":"8f44c0a32b0cad6-179720c480493902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b29cea-17b71ef60a942b75","8f44c0a32b0cad6-179720c480493902"]},"geometry":{"type":"LineString","coordinates":[[-83.62318400000001,32.862848],[-83.622444,32.863213]]},"id":"8944c0a32b3ffff-17b71fdd47451a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66254400000001,32.834162]},"id":"8f44c0b1b0a8354-17b7fede0335bb57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664057,32.834187]},"id":"8f44c0b1b01d6a3-17b6fb2c65e33bc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0a8354-17b7fede0335bb57","8f44c0b1b01d6a3-17b6fb2c65e33bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.66254400000001,32.834162],[-83.66327100000001,32.834182000000006],[-83.664057,32.834187]]},"id":"8844c0b1b1fffff-17b7bd054e355871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66558,32.834232]},"id":"8f44c0b1b00d3a4-17d7b77488e1381b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b01d6a3-17b6fb2c65e33bc7","8f44c0b1b00d3a4-17d7b77488e1381b"]},"geometry":{"type":"LineString","coordinates":[[-83.664057,32.834187],[-83.664837,32.834204],[-83.66558,32.834232]]},"id":"8944c0b1b03ffff-17d7b95068731f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667077,32.834257]},"id":"8f44c0b1b075b56-17f6b3ccea63d166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b075b56-17f6b3ccea63d166","8f44c0b1b00d3a4-17d7b77488e1381b"]},"geometry":{"type":"LineString","coordinates":[[-83.66558,32.834232],[-83.667077,32.834257]]},"id":"8844c0b1b1fffff-17def5a0bdc849a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667832,32.834277]},"id":"8f44c0b1b060921-17ffb1f50be499f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b075b56-17f6b3ccea63d166","8f44c0b1b060921-17ffb1f50be499f4"]},"geometry":{"type":"LineString","coordinates":[[-83.667077,32.834257],[-83.667178,32.834262],[-83.667832,32.834277]]},"id":"8a44c0b1b067fff-17ffb2e0f9327776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba96083-17ffb022c116f7ca","8f44c0b1b060921-17ffb1f50be499f4"]},"geometry":{"type":"LineString","coordinates":[[-83.667832,32.834277],[-83.66857800000001,32.8343]]},"id":"8844c0b1b1fffff-17f6f10bed0df922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba94236-17ffae9fe3b28132","8f44c0b1ba96083-17ffb022c116f7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.66857800000001,32.8343],[-83.66919700000001,32.834297]]},"id":"8a44c0b1ba97fff-17febf615d2ce0e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657279,32.830686]},"id":"8f44c0b1b5724d4-17becbb8a1117dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657289,32.829938]},"id":"8f44c0b1b52b052-17d7cbb26175b61a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b52b052-17d7cbb26175b61a","8f44c0b1b5724d4-17becbb8a1117dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.657279,32.830686],[-83.65728200000001,32.830097],[-83.657289,32.829938]]},"id":"8844c0b1b5fffff-17d6fbb70bb47ac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65731000000001,32.828651]},"id":"8f44c0b1b521ba0-13b6eba542b7f37a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b52b052-17d7cbb26175b61a","8f44c0b1b521ba0-13b6eba542b7f37a"]},"geometry":{"type":"LineString","coordinates":[[-83.657289,32.829938],[-83.65731000000001,32.828651]]},"id":"8944c0b1b53ffff-13d7dbabd73597d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657313,32.828336]},"id":"8f44c0b1b525058-13fecba3675bf4fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b525058-13fecba3675bf4fb","8f44c0b1b521ba0-13b6eba542b7f37a"]},"geometry":{"type":"LineString","coordinates":[[-83.65731000000001,32.828651],[-83.657313,32.828336]]},"id":"8a44c0b1b527fff-13d6fba4511402dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68485700000001,32.859962]},"id":"8f44c0a262c20dc-17b6c86462721825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683892,32.860833]},"id":"8f44c0a262da4b6-17d6aabf868417e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262c20dc-17b6c86462721825","8f44c0a262da4b6-17d6aabf868417e5"]},"geometry":{"type":"LineString","coordinates":[[-83.68485700000001,32.859962],[-83.68436200000001,32.860404],[-83.683892,32.860833]]},"id":"8744c0a26ffffff-17b7a992ba597bb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681942,32.8626]},"id":"8f44c0a22820066-17978f8241a2e7ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22820066-17978f8241a2e7ab","8f44c0a262da4b6-17d6aabf868417e5"]},"geometry":{"type":"LineString","coordinates":[[-83.683892,32.860833],[-83.681942,32.8626]]},"id":"8844c0a229fffff-13fedd20e62bf295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734391,32.747591]},"id":"8f44c0b23669330-13de6f75aaeb3d56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b23669330-13de6f75aaeb3d56","8f44c0b05830a23-17f750a9cb25c515"]},"geometry":{"type":"LineString","coordinates":[[-83.734391,32.747591],[-83.734418,32.748164],[-83.734415,32.7489],[-83.73438800000001,32.749066],[-83.734311,32.749611],[-83.73394800000001,32.751133],[-83.73389800000001,32.751314]]},"id":"8644c0b07ffffff-17dfefc6e60551ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b05830a23-17f750a9cb25c515","8f44c0b05806c25-17df50bbe071c034"]},"geometry":{"type":"LineString","coordinates":[[-83.73389800000001,32.751314],[-83.73386,32.751646],[-83.73385300000001,32.751787],[-83.733869,32.75189]]},"id":"8a44c0b05837fff-179750bb15267c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b05806c25-17df50bbe071c034","8f44c0b0580a6a8-13d76fc28ce8683d"]},"geometry":{"type":"LineString","coordinates":[[-83.733869,32.75189],[-83.733891,32.752027000000005],[-83.734268,32.753743]]},"id":"8944c0b0583ffff-139ed041795036d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73467600000001,32.755587000000006]},"id":"8f44c0b058e8735-17d7eec3866b450c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b058e8735-17d7eec3866b450c","8f44c0b0580a6a8-13d76fc28ce8683d"]},"geometry":{"type":"LineString","coordinates":[[-83.734268,32.753743],[-83.73467600000001,32.755587000000006]]},"id":"8844c0b059fffff-1797af430a62db98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703793,32.77834]},"id":"8f44c0b03814321-17deda2961eaff87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70672900000001,32.777895]},"id":"8f44c0b03950519-17de72fe612e7e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03814321-17deda2961eaff87","8f44c0b03950519-17de72fe612e7e72"]},"geometry":{"type":"LineString","coordinates":[[-83.703793,32.77834],[-83.70442700000001,32.777974],[-83.704516,32.777935],[-83.70468100000001,32.777892],[-83.704881,32.777882000000005],[-83.70672900000001,32.777895]]},"id":"8844c0b039fffff-17fed6ad27f0c6dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70780500000001,32.777894]},"id":"8f44c0b03946674-17d7d05de1278a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03946674-17d7d05de1278a36","8f44c0b03950519-17de72fe612e7e72"]},"geometry":{"type":"LineString","coordinates":[[-83.70672900000001,32.777895],[-83.70780500000001,32.777894]]},"id":"8944c0b0397ffff-17de51ae22c21757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6569638,32.813089600000005]},"id":"8f44c0b184986f1-13b7cc7da3d3cca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6573,32.813097]},"id":"8f44c0b18499c81-13bfebab8b9c268b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184986f1-13b7cc7da3d3cca9","8f44c0b18499c81-13bfebab8b9c268b"]},"geometry":{"type":"LineString","coordinates":[[-83.6569638,32.813089600000005],[-83.6573,32.813097]]},"id":"8a44c0b1849ffff-13b7dc14930d1e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848ab52-13dfe99caf520208","8f44c0b18499c81-13bfebab8b9c268b"]},"geometry":{"type":"LineString","coordinates":[[-83.6573,32.813097],[-83.65814300000001,32.813129]]},"id":"8944c0b184bffff-13d7eaa41f43fb61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65895400000001,32.81316]},"id":"8f44c0b18489964-13f7c7a1c92c7aff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848ab52-13dfe99caf520208","8f44c0b18489964-13f7c7a1c92c7aff"]},"geometry":{"type":"LineString","coordinates":[[-83.65814300000001,32.813129],[-83.65895400000001,32.81316]]},"id":"8a44c0b1848ffff-13d7d89f37b3d874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db60b68-17ff652a023556c2","8f44c0a364d9ad4-17df66114756ff11"]},"geometry":{"type":"LineString","coordinates":[[-83.607166,32.847127],[-83.60753600000001,32.8478182]]},"id":"8844c0b8dbfffff-17b7659daf668dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db60b68-17ff652a023556c2","8f44c0b8db6110a-13b754ebb3cefaf6"]},"geometry":{"type":"LineString","coordinates":[[-83.60753600000001,32.8478182],[-83.6075804,32.8479027],[-83.6076113,32.847982800000004],[-83.6076357,32.8481077]]},"id":"8a44c0b8db67fff-13d7c504cddbafad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680231,32.8519]},"id":"8f44c0a260d5cd8-13f793afad861450"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260d5cd8-13f793afad861450","8f44c0a260c211b-13def286c4c4ac1e"]},"geometry":{"type":"LineString","coordinates":[[-83.680706,32.852263],[-83.680529,32.852134],[-83.680231,32.8519]]},"id":"8944c0a260fffff-13feb31c2ff58fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679377,32.851247]},"id":"8f44c0a26089595-13dff5c560010d9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260d5cd8-13f793afad861450","8f44c0a26089595-13dff5c560010d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.680231,32.8519],[-83.67982500000001,32.851585],[-83.679377,32.851247]]},"id":"8844c0a261fffff-13be94b9db13e86e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25a096e4-13f71244688d5060","8f44c0a25a01d9c-17fed3d648075424"]},"geometry":{"type":"LineString","coordinates":[[-83.733241,32.862344],[-83.73316100000001,32.862341],[-83.73303,32.862325000000006],[-83.732882,32.862298],[-83.73282800000001,32.862277],[-83.732732,32.862222],[-83.732681,32.86217],[-83.732646,32.862114000000005],[-83.732618,32.862052000000006],[-83.73259800000001,32.861986],[-83.73258200000001,32.861866],[-83.73257600000001,32.861406],[-83.73258600000001,32.861066],[-83.73259800000001,32.860894]]},"id":"8844c0a25bfffff-139633940c6a1659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25a01d9c-17fed3d648075424","8f44c0b56484768-13960ff3ec8309e6"]},"geometry":{"type":"LineString","coordinates":[[-83.73259800000001,32.860894],[-83.732584,32.860664],[-83.732515,32.860404],[-83.732387,32.860022],[-83.732297,32.859588],[-83.732274,32.859364],[-83.732259,32.858792],[-83.73226600000001,32.858506000000006],[-83.732304,32.856924],[-83.732319,32.856582],[-83.73236800000001,32.856445],[-83.732459,32.856327],[-83.732597,32.856197],[-83.73297000000001,32.855911],[-83.733152,32.855826],[-83.73334,32.855763],[-83.73382500000001,32.85564],[-83.734032,32.855558],[-83.734083,32.855524],[-83.734154,32.855428],[-83.734182,32.855286],[-83.73419,32.855027],[-83.734189,32.854400000000005]]},"id":"8444c0bffffffff-17f6d343d67665ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7326512,32.853028200000004]},"id":"8f44c0a2596b732-17b6b3b5045cd797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2596b732-17b6b3b5045cd797","8f44c0b56484768-13960ff3ec8309e6"]},"geometry":{"type":"LineString","coordinates":[[-83.734189,32.854400000000005],[-83.734198,32.853389],[-83.734177,32.853279],[-83.73413400000001,32.853195],[-83.734094,32.853156000000006],[-83.734008,32.853101],[-83.733907,32.853054],[-83.73380800000001,32.853039],[-83.73296500000001,32.853031],[-83.7326987,32.8530287],[-83.7326512,32.853028200000004]]},"id":"8444c0bffffffff-1797b10207bdf68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7020588,32.811921600000005]},"id":"8f44c0b1dad9b8b-13df5e6541c56627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad9652b-1396fc2d0e4680d8","8f44c0b1dad9b8b-13df5e6541c56627"]},"geometry":{"type":"LineString","coordinates":[[-83.7020588,32.811921600000005],[-83.702968,32.812395]]},"id":"8744c0b1dffffff-13fefd49205a6988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad80462-13dfd80c28a1b870","8f44c0b0ad9652b-1396fc2d0e4680d8"]},"geometry":{"type":"LineString","coordinates":[[-83.702968,32.812395],[-83.703191,32.812492],[-83.70389700000001,32.81284],[-83.704068,32.812916],[-83.704183,32.812945],[-83.704374,32.812953],[-83.704464,32.812951000000005],[-83.704659,32.812918]]},"id":"8944c0b0adbffff-13dffa272533d973"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad80462-13dfd80c28a1b870","8f44c0b0adae7a4-13f7d5bba3be1887"]},"geometry":{"type":"LineString","coordinates":[[-83.704659,32.812918],[-83.70509,32.812841],[-83.705607,32.812758]]},"id":"8944c0b0adbffff-139676e42f433751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707367,32.812464]},"id":"8f44c0b0ad11ace-13be516fa2a22827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0adae7a4-13f7d5bba3be1887","8f44c0b0ad11ace-13be516fa2a22827"]},"geometry":{"type":"LineString","coordinates":[[-83.705607,32.812758],[-83.707096,32.812517],[-83.707367,32.812464]]},"id":"8844c0b0adfffff-139e539530a7a910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732048,32.884362]},"id":"8f44c0b5269d0ae-13b6552e0420a3e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5269d0ae-13b6552e0420a3e1","8f44c0b52686141-17d7d52a4fa5f0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.732048,32.884362],[-83.732336,32.883814],[-83.73236,32.883753],[-83.732371,32.883699],[-83.732375,32.883643],[-83.732366,32.883591],[-83.732338,32.883521],[-83.73230500000001,32.883459],[-83.73224,32.883369],[-83.732146,32.883253],[-83.732054,32.883158]]},"id":"8944c0b526bffff-17b7b4ba23042f3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73034,32.883513]},"id":"8f44c0b526924e2-17b7b959886d8b90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52686141-17d7d52a4fa5f0d4","8f44c0b526924e2-17b7b959886d8b90"]},"geometry":{"type":"LineString","coordinates":[[-83.732054,32.883158],[-83.732011,32.88308],[-83.73174300000001,32.882745],[-83.731662,32.882635],[-83.7315729,32.8825384],[-83.731514,32.882582],[-83.73134800000001,32.882688],[-83.730984,32.88289],[-83.73075200000001,32.883031],[-83.730669,32.883094],[-83.73062800000001,32.883139],[-83.73034,32.883513]]},"id":"8544c0a3fffffff-17bf5737aa2fb6ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65908,32.7915591]},"id":"8f44c0b1e850283-17b6f7530b7939e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e80db31-13b7c7288d29964a","8f44c0b1e850283-17b6f7530b7939e0"]},"geometry":{"type":"LineString","coordinates":[[-83.65908,32.7915591],[-83.65911,32.791276],[-83.659148,32.790124]]},"id":"8844c0b1e9fffff-17f6d738903d0edb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65920100000001,32.788697]},"id":"8f44c0b1e82cdab-17b7e7076105e0e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e80db31-13b7c7288d29964a","8f44c0b1e82cdab-17b7e7076105e0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.659148,32.790124],[-83.659192,32.789031],[-83.65920100000001,32.788697]]},"id":"8944c0b1e83ffff-13f7e716ef4e6af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65922300000001,32.787424]},"id":"8f44c0b1e908608-179ec6f9ad6ab014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e908608-179ec6f9ad6ab014","8f44c0b1e82cdab-17b7e7076105e0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.65920100000001,32.788697],[-83.659226,32.787599],[-83.65922300000001,32.787424]]},"id":"8844c0b1e9fffff-179fd6feaf6f704a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e908608-179ec6f9ad6ab014","8f44c0b1e9053a5-13fec6e2892036af"]},"geometry":{"type":"LineString","coordinates":[[-83.65922300000001,32.787424],[-83.65924100000001,32.787149],[-83.659256,32.7866],[-83.65926,32.786164]]},"id":"8944c0b1e93ffff-1396e6e9e3c0f8e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737029,32.910545]},"id":"8f44c0a28946316-13b6a904e265d3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28946316-13b6a904e265d3bc","8f44c0a2895370b-13d6ec0284ad9b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.737029,32.910545],[-83.7369,32.910691],[-83.73675700000001,32.910795],[-83.736525,32.910953],[-83.736327,32.911047],[-83.73615600000001,32.911111000000005],[-83.73598600000001,32.911169],[-83.735804,32.911211]]},"id":"8944c0a2897ffff-139fca6c4c5a5cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2882c494-13bf4daf4a9ad868","8f44c0a2895370b-13d6ec0284ad9b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.735804,32.911211],[-83.735118,32.911202]]},"id":"8844c0a289fffff-13d61cd8e5991cf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28805d21-13b70f714da80f44","8f44c0a2882c494-13bf4daf4a9ad868"]},"geometry":{"type":"LineString","coordinates":[[-83.735118,32.911202],[-83.734398,32.911192]]},"id":"8944c0a2883ffff-13be2e9040940540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73290300000001,32.911121]},"id":"8f44c0a28814342-139eb317aca5031c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28814342-139eb317aca5031c","8f44c0a28805d21-13b70f714da80f44"]},"geometry":{"type":"LineString","coordinates":[[-83.734398,32.911192],[-83.733958,32.911171],[-83.73290300000001,32.911121]]},"id":"8944c0a2883ffff-13b6d1447507d7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73111800000001,32.910854]},"id":"8f44c0a288a6866-13f7d7734c452f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28814342-139eb317aca5031c","8f44c0a288a6866-13f7d7734c452f5b"]},"geometry":{"type":"LineString","coordinates":[[-83.73290300000001,32.911121],[-83.73272,32.911111000000005],[-83.732585,32.911074],[-83.73242900000001,32.910990000000005],[-83.73223700000001,32.910863],[-83.73206300000001,32.910756],[-83.731954,32.910702],[-83.731848,32.910674],[-83.731712,32.910676],[-83.73157,32.910688],[-83.73147200000001,32.910722],[-83.73111800000001,32.910854]]},"id":"8844c0a289fffff-13f715423a4386ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72882700000001,32.912025]},"id":"8f44c0a288966ec-17bfbd0b26000255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a288966ec-17bfbd0b26000255","8f44c0a288a6866-13f7d7734c452f5b"]},"geometry":{"type":"LineString","coordinates":[[-83.73111800000001,32.910854],[-83.730839,32.910944],[-83.730613,32.911002],[-83.730275,32.911080000000005],[-83.729967,32.911187000000005],[-83.729765,32.911257],[-83.729172,32.911472],[-83.729083,32.911523],[-83.729016,32.911571],[-83.72896700000001,32.911638],[-83.728916,32.911732],[-83.72882700000001,32.912025]]},"id":"8944c0a288bffff-13f7ba8f62bd3888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727558,32.913784]},"id":"8f44c0a28c4e149-139f202448b43ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28c4e149-139f202448b43ea8","8f44c0a288966ec-17bfbd0b26000255"]},"geometry":{"type":"LineString","coordinates":[[-83.72882700000001,32.912025],[-83.72878200000001,32.912208],[-83.728735,32.912349],[-83.72869100000001,32.912438],[-83.72864100000001,32.912495],[-83.72857300000001,32.912563],[-83.727894,32.913092],[-83.72778500000001,32.913209],[-83.727697,32.913324],[-83.727603,32.913465],[-83.727559,32.913576],[-83.72754,32.913671],[-83.727558,32.913784]]},"id":"8844c0a28dfffff-17f71ea85ea4eaf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721911,32.919235]},"id":"8f44c0a28471668-17dfededab4d7b0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723892,32.917333]},"id":"8f44c0a2854c846-13b729178a841a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28471668-17dfededab4d7b0d","8f44c0a2854c846-13b729178a841a5f"]},"geometry":{"type":"LineString","coordinates":[[-83.721911,32.919235],[-83.72205500000001,32.918973],[-83.722178,32.918794000000005],[-83.722312,32.91863],[-83.722402,32.918534],[-83.722536,32.918411],[-83.723535,32.91762],[-83.72372700000001,32.917460000000005],[-83.723892,32.917333]]},"id":"8844c0a285fffff-13f67badee3c3c52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72426800000001,32.917039]},"id":"8f44c0a28568628-13ff682c82c67d5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2854c846-13b729178a841a5f","8f44c0a28568628-13ff682c82c67d5a"]},"geometry":{"type":"LineString","coordinates":[[-83.723892,32.917333],[-83.72426800000001,32.917039]]},"id":"8944c0a2857ffff-13df68a2053c947c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109335,32.848945400000005]},"id":"8f44c0a3678d1a4-13bffcde96e11db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61010060000001,32.848945]},"id":"8f44c0a3678e74e-13bfbee728e61fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3678e74e-13bfbee728e61fc7","8f44c0a3678d1a4-13bffcde96e11db9"]},"geometry":{"type":"LineString","coordinates":[[-83.6109335,32.848945400000005],[-83.61010060000001,32.848945]]},"id":"8a44c0a3678ffff-13bffde2e309906c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6092077,32.8489479]},"id":"8f44c0a3679812e-13d771153c46db66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3679812e-13d771153c46db66","8f44c0a3678e74e-13bfbee728e61fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.61010060000001,32.848945],[-83.6092077,32.8489479]]},"id":"8944c0a367bffff-13bfbffe271d94de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71886900000001,32.833561]},"id":"8f44c0b0a24891e-17bfb55aebc92633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71763,32.833058]},"id":"8f44c0b0a25c8a5-13f7786143248b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a24891e-17bfb55aebc92633","8f44c0b0a25c8a5-13f7786143248b74"]},"geometry":{"type":"LineString","coordinates":[[-83.71886900000001,32.833561],[-83.718529,32.833263],[-83.71835800000001,32.833163],[-83.718254,32.833123],[-83.718085,32.833074],[-83.717844,32.833061],[-83.71763,32.833058]]},"id":"8944c0b0a27ffff-17d776c530fd293e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7161193,32.833051000000005]},"id":"8f44c0b0a2ec555-13f6fc117aaca608"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2ec555-13f6fc117aaca608","8f44c0b0a25c8a5-13f7786143248b74"]},"geometry":{"type":"LineString","coordinates":[[-83.71763,32.833058],[-83.71701200000001,32.833072],[-83.71678,32.833066],[-83.7161193,32.833051000000005]]},"id":"8844c0b0a3fffff-13fe7a3950079cc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71610460000001,32.833266300000005]},"id":"8f44c0b0a2ec68d-17f77c1aa627380b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2ec555-13f6fc117aaca608","8f44c0b0a2ec68d-17f77c1aa627380b"]},"geometry":{"type":"LineString","coordinates":[[-83.7161193,32.833051000000005],[-83.7151346,32.8330387],[-83.7149923,32.8330422],[-83.7149869,32.833208400000004],[-83.71493810000001,32.835172],[-83.7151297,32.8351983],[-83.71607350000001,32.8352062],[-83.7160849,32.8350949],[-83.71610460000001,32.833266300000005]]},"id":"8644c0b0fffffff-17b63d8c9429000c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2ec555-13f6fc117aaca608","8f44c0b0a2ec68d-17f77c1aa627380b"]},"geometry":{"type":"LineString","coordinates":[[-83.71610460000001,32.833266300000005],[-83.7161193,32.833051000000005]]},"id":"8b44c0b0a2ecfff-17b63c1616d48dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716139,32.832625]},"id":"8f44c0b0a2524a4-13f6bc052bfc2f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2ec555-13f6fc117aaca608","8f44c0b0a2524a4-13f6bc052bfc2f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.7161193,32.833051000000005],[-83.716139,32.832625]]},"id":"8944c0b0a2fffff-13fffc0b51c7b8ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64260300000001,32.81107]},"id":"8f44c0b1ace4c1e-17d6ef8d2d132c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64318800000001,32.811078]},"id":"8f44c0b1ac0b035-17dfee1f82458a40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac0b035-17dfee1f82458a40","8f44c0b1ace4c1e-17d6ef8d2d132c00"]},"geometry":{"type":"LineString","coordinates":[[-83.64260300000001,32.81107],[-83.64318800000001,32.811078]]},"id":"8944c0b1ac3ffff-17dfeed657ae1f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64610060000001,32.8111635]},"id":"8f44c0b1ac615ad-1797f7032ea367f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac0b035-17dfee1f82458a40","8f44c0b1ac615ad-1797f7032ea367f4"]},"geometry":{"type":"LineString","coordinates":[[-83.64318800000001,32.811078],[-83.64394800000001,32.811084],[-83.644902,32.811104],[-83.64610060000001,32.8111635]]},"id":"8844c0b1adfffff-17dfea9111b39f71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699212,32.840556]},"id":"8f44c0a24cda710-17d7e55889e1fb44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70081300000001,32.840853]},"id":"8f44c0a24ccb51e-17ff616fe90dbaf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ccb51e-17ff616fe90dbaf1","8f44c0a24cda710-17d7e55889e1fb44"]},"geometry":{"type":"LineString","coordinates":[[-83.699212,32.840556],[-83.699318,32.840587],[-83.699375,32.840598],[-83.699702,32.840656],[-83.700131,32.840736],[-83.700552,32.840811],[-83.70081300000001,32.840853]]},"id":"8944c0a24cfffff-17b763654fcb6f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64301300000001,32.785303]},"id":"8f44c0b13adba55-17deee8ceebba3d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644467,32.78511]},"id":"8f44c0b13ac9cad-17f7eb00235e4481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13ac9cad-17f7eb00235e4481","8f44c0b13adba55-17deee8ceebba3d2"]},"geometry":{"type":"LineString","coordinates":[[-83.64301300000001,32.785303],[-83.643336,32.785269],[-83.644467,32.78511]]},"id":"8744c0b13ffffff-17b6fcc636eb2be1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645898,32.784903]},"id":"8f44c0b1edb5542-17f6e781c4fa8daf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13ac9cad-17f7eb00235e4481","8f44c0b1edb5542-17f6e781c4fa8daf"]},"geometry":{"type":"LineString","coordinates":[[-83.644467,32.78511],[-83.645898,32.784903]]},"id":"8744c0b13ffffff-17b7f940fea6c08e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13a4b7ac-17f7e3fdc14a3040","8f44c0b1edb5542-17f6e781c4fa8daf"]},"geometry":{"type":"LineString","coordinates":[[-83.645898,32.784903],[-83.647338,32.784697]]},"id":"8844c0b1edfffff-17b6e5bfcd14cde8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648781,32.784492]},"id":"8f44c0b1ed306c4-17f7e077e83bd7bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13a4b7ac-17f7e3fdc14a3040","8f44c0b1ed306c4-17f7e077e83bd7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.647338,32.784697],[-83.648781,32.784492]]},"id":"8844c0b1edfffff-17b7f23adac627af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64996500000001,32.784315]},"id":"8f44c0b1ed205b4-17f6fd93e65c5f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ed205b4-17f6fd93e65c5f28","8f44c0b1ed306c4-17f7e077e83bd7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.648781,32.784492],[-83.64996500000001,32.784315]]},"id":"8944c0b1ed3ffff-17beff05e8663a71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59992700000001,32.869135]},"id":"8f44c0b89b7399d-179f77bda3dda15c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59731000000001,32.870134]},"id":"8f44c0b89a04c73-17ffde2147b70109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89a04c73-17ffde2147b70109","8f44c0b89b7399d-179f77bda3dda15c"]},"geometry":{"type":"LineString","coordinates":[[-83.59992700000001,32.869135],[-83.59968,32.869197],[-83.59731000000001,32.870134]]},"id":"8844c0b89bfffff-17bfdaf2520d1d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89a1574c-17b760668d3967c2","8f44c0b89a04c73-17ffde2147b70109"]},"geometry":{"type":"LineString","coordinates":[[-83.59731000000001,32.870134],[-83.596879,32.87032],[-83.59673000000001,32.870399],[-83.59638000000001,32.870607]]},"id":"8944c0b89a3ffff-17977f48800f1594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595494,32.871167]},"id":"8f44c0b89aacaf5-13ff62904a5e2f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89aacaf5-13ff62904a5e2f10","8f44c0b89a1574c-17b760668d3967c2"]},"geometry":{"type":"LineString","coordinates":[[-83.59638000000001,32.870607],[-83.595494,32.871167]]},"id":"8844c0b89bfffff-13d7617b6dc1449a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89aacaf5-13ff62904a5e2f10","8f44c0b89aaa7a1-13df64c40c4887cc"]},"geometry":{"type":"LineString","coordinates":[[-83.595494,32.871167],[-83.594592,32.87173]]},"id":"8a44c0b89aaffff-13bf73aa2b09a8a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89a9d076-13df6703055b5937","8f44c0b89aaa7a1-13df64c40c4887cc"]},"geometry":{"type":"LineString","coordinates":[[-83.594592,32.87173],[-83.59367200000001,32.872309]]},"id":"8944c0b89abffff-139775e3845ea37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59223800000001,32.873207]},"id":"8f44c0b8933634a-17ff6a834d842043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89a9d076-13df6703055b5937","8f44c0b8933634a-17ff6a834d842043"]},"geometry":{"type":"LineString","coordinates":[[-83.59367200000001,32.872309],[-83.59223800000001,32.873207]]},"id":"8744c0b89ffffff-17f7e8c32d6200b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928706,32.9034178]},"id":"8f44c0a058eec54-17be74d3eac95c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058ecd45-17de7385e38216fd","8f44c0a058eec54-17be74d3eac95c36"]},"geometry":{"type":"LineString","coordinates":[[-83.693405,32.903258],[-83.6928706,32.9034178]]},"id":"8a44c0a058effff-179e742cee5e563d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058ee525-17df7506e2f421c9","8f44c0a058eec54-17be74d3eac95c36"]},"geometry":{"type":"LineString","coordinates":[[-83.6928706,32.9034178],[-83.692789,32.9034422]]},"id":"8c44c0a058eedff-17d7f4ed6f815cbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058c542a-13d67643015c054a","8f44c0a058ee525-17df7506e2f421c9"]},"geometry":{"type":"LineString","coordinates":[[-83.692789,32.9034422],[-83.69272600000001,32.903461],[-83.69231230000001,32.903611500000004],[-83.6922832,32.9036288]]},"id":"8944c0a058fffff-139775a616545ce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058c542a-13d67643015c054a","8f44c0a058c03b0-13bef6f68a0bf649"]},"geometry":{"type":"LineString","coordinates":[[-83.6922832,32.9036288],[-83.69207680000001,32.9037517],[-83.691996,32.9038319]]},"id":"8a44c0a058c7fff-13fef6a0628c3ce0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058c0673-13f7772d3d224fed","8f44c0a058c03b0-13bef6f68a0bf649"]},"geometry":{"type":"LineString","coordinates":[[-83.691996,32.9038319],[-83.69190850000001,32.9039188]]},"id":"8b44c0a058c0fff-13de7711dc133ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058c3420-139777be1b9d845e","8f44c0a058c0673-13f7772d3d224fed"]},"geometry":{"type":"LineString","coordinates":[[-83.69190850000001,32.9039188],[-83.6916767,32.904149000000004]]},"id":"8a44c0a058c7fff-13bf7775aa8f65fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058c3420-139777be1b9d845e","8f44c0a058da351-1396f99eede0ad68"]},"geometry":{"type":"LineString","coordinates":[[-83.6916767,32.904149000000004],[-83.6909074,32.9049672]]},"id":"8944c0a058fffff-1396f8ae8b288cdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a0517410e-17b67a32d3458558","8f44c0a058da351-1396f99eede0ad68"]},"geometry":{"type":"LineString","coordinates":[[-83.6909074,32.9049672],[-83.6906707,32.905216100000004]]},"id":"8844c0a051fffff-13d679e8db9859c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69327200000001,32.834265]},"id":"8f44c0b19225d31-17f7f3d90edf88c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19225d31-17f7f3d90edf88c5","8f44c0b1930e175-17f7f3cb4f45e505"]},"geometry":{"type":"LineString","coordinates":[[-83.69327200000001,32.834265],[-83.69329400000001,32.833267]]},"id":"8844c0b193fffff-17bff3d22a45ffbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69311900000001,32.831252]},"id":"8f44c0b193264ae-179ef438a7685998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b193264ae-179ef438a7685998","8f44c0b1930e175-17f7f3cb4f45e505"]},"geometry":{"type":"LineString","coordinates":[[-83.69329400000001,32.833267],[-83.693297,32.833067],[-83.693309,32.832894],[-83.693341,32.832695],[-83.69336600000001,32.832389],[-83.693359,32.832268],[-83.69330000000001,32.832044],[-83.69314200000001,32.831637],[-83.693123,32.831573],[-83.693118,32.83148],[-83.69311900000001,32.831252]]},"id":"8944c0b1933ffff-13fe73dc47630395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69314200000001,32.830238]},"id":"8f44c0b19a9c6e5-1796f42a4ac19401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b193264ae-179ef438a7685998","8f44c0b19a9c6e5-1796f42a4ac19401"]},"geometry":{"type":"LineString","coordinates":[[-83.69311900000001,32.831252],[-83.69314200000001,32.830238]]},"id":"8744c0b19ffffff-17dff4317899279e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a95944-13f6f41965def3e5","8f44c0b19a9c6e5-1796f42a4ac19401"]},"geometry":{"type":"LineString","coordinates":[[-83.69314200000001,32.830238],[-83.69316900000001,32.82914]]},"id":"8944c0b19abffff-13bff421dc3ea926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b9b04e-1796725126a0af41","8f44c0b19a95944-13f6f41965def3e5"]},"geometry":{"type":"LineString","coordinates":[[-83.69316900000001,32.82914],[-83.69317600000001,32.828622],[-83.693211,32.828429],[-83.693297,32.828196000000005],[-83.69331700000001,32.828152],[-83.69336600000001,32.828088],[-83.693437,32.828034],[-83.693532,32.827989],[-83.693662,32.827962],[-83.693899,32.827959]]},"id":"8944c0b19abffff-139773a6a3d4b975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b9b04e-1796725126a0af41","8f44c0b19aa1b1c-13beef5b0d4f81ee"]},"geometry":{"type":"LineString","coordinates":[[-83.693899,32.827959],[-83.69403600000001,32.827959],[-83.69413,32.827973],[-83.69427800000001,32.828041],[-83.69440800000001,32.828152],[-83.694614,32.828344],[-83.69511200000001,32.828843]]},"id":"8844c0b19bfffff-13f670bcc57c8408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695392,32.830273000000005]},"id":"8f44c0b19af6892-17beeeac0e9d72a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19af6892-17beeeac0e9d72a8","8f44c0b19aa1b1c-13beef5b0d4f81ee"]},"geometry":{"type":"LineString","coordinates":[[-83.69511200000001,32.828843],[-83.695199,32.828978],[-83.69530800000001,32.829183],[-83.69539800000001,32.829385],[-83.695414,32.829561000000005],[-83.695392,32.830273000000005]]},"id":"8944c0b19abffff-13df7ec87b522e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6092131,32.8481139]},"id":"8f44c0a36782430-13b77111dbfa0b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60921400000001,32.848231600000005]},"id":"8f44c0a36791b65-1397c11148b0f488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36791b65-1397c11148b0f488","8f44c0a36782430-13b77111dbfa0b4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6092131,32.8481139],[-83.60921400000001,32.848231600000005]]},"id":"8b44c0a36782fff-13df4111802a687c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36791b65-1397c11148b0f488","8f44c0a3679812e-13d771153c46db66"]},"geometry":{"type":"LineString","coordinates":[[-83.60921400000001,32.848231600000005],[-83.6092077,32.8489479]]},"id":"8944c0a367bffff-13f7e1133e24d07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6091888,32.8496402]},"id":"8f44c0a3679b244-17f76121084a856b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3679812e-13d771153c46db66","8f44c0a3679b244-17f76121084a856b"]},"geometry":{"type":"LineString","coordinates":[[-83.6092077,32.8489479],[-83.6091888,32.8496402]]},"id":"8a44c0a3679ffff-139fd11b2f2e083f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6091622,32.8510719]},"id":"8f44c0a36680b9b-17fff131a3ac305b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3679b244-17f76121084a856b","8f44c0a36680b9b-17fff131a3ac305b"]},"geometry":{"type":"LineString","coordinates":[[-83.6091888,32.8496402],[-83.6091622,32.8510719]]},"id":"8944c0a366bffff-17b7d1295192baef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60921370000001,32.8518099]},"id":"8f44c0a3668e19b-13bf711175ef6087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36680b9b-17fff131a3ac305b","8f44c0a3668e19b-13bf711175ef6087"]},"geometry":{"type":"LineString","coordinates":[[-83.6091622,32.8510719],[-83.6091865,32.851416900000004],[-83.60921370000001,32.8518099]]},"id":"8944c0a366bffff-13d7d12171fd4475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6091911,32.8525796]},"id":"8f44c0a32d24875-139f411f9c07c5f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d24875-139f411f9c07c5f5","8f44c0a3668e19b-13bf711175ef6087"]},"geometry":{"type":"LineString","coordinates":[[-83.60921370000001,32.8518099],[-83.6091911,32.8525796]]},"id":"8a44c0a3668ffff-13bfc11889c86931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.609138,32.853917]},"id":"8f44c0a32d2e0f5-17f76140c3eac93f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d2e0f5-17f76140c3eac93f","8f44c0a32d24875-139f411f9c07c5f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6091911,32.8525796],[-83.609138,32.853917]]},"id":"8644c0a37ffffff-17d771303b5c35a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.609156,32.855397]},"id":"8f44c0a32d09c6d-13ff613580587036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d2e0f5-17f76140c3eac93f","8f44c0a32d09c6d-13ff613580587036"]},"geometry":{"type":"LineString","coordinates":[[-83.609138,32.853917],[-83.60912,32.854349],[-83.609125,32.854723],[-83.609156,32.855397]]},"id":"8944c0a32d3ffff-13b7f1442130107b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60915800000001,32.856779]},"id":"8f44c0a32d53711-17dfe1344bf53795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d53711-17dfe1344bf53795","8f44c0a32d09c6d-13ff613580587036"]},"geometry":{"type":"LineString","coordinates":[[-83.609156,32.855397],[-83.60915700000001,32.8561118],[-83.60915800000001,32.856779]]},"id":"8844c0a32dfffff-17bf4134e66a949c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60916,32.858266]},"id":"8f44c0a32c70560-139741330f20a409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d53711-17dfe1344bf53795","8f44c0a32c70560-139741330f20a409"]},"geometry":{"type":"LineString","coordinates":[[-83.60915800000001,32.856779],[-83.60916,32.858266]]},"id":"8844c0a32dfffff-17bfd133a2471d67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60915700000001,32.85958]},"id":"8f44c0a32c424db-17b7c134e06580de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c70560-139741330f20a409","8f44c0a32c424db-17b7c134e06580de"]},"geometry":{"type":"LineString","coordinates":[[-83.60916,32.858266],[-83.60915800000001,32.85898],[-83.60915700000001,32.85958]]},"id":"8944c0a32c7ffff-139fe1341878af36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71957300000001,32.833325]},"id":"8f44c0b0b536d94-179e33a2e9a2a6d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a26e551-13fe750b80228691","8f44c0b0b536d94-179e33a2e9a2a6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.71957300000001,32.833325],[-83.71956300000001,32.833044],[-83.71955,32.832917],[-83.719503,32.832804],[-83.71945600000001,32.832735],[-83.719344,32.832625],[-83.71919100000001,32.832534],[-83.718996,32.832423]]},"id":"8a44c0b0a26ffff-13d73410a373dc78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7182987,32.8317302]},"id":"8f44c0b0a262cdb-13b776bf5f10523d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a26e551-13fe750b80228691","8f44c0b0a262cdb-13b776bf5f10523d"]},"geometry":{"type":"LineString","coordinates":[[-83.718996,32.832423],[-83.71879600000001,32.832301],[-83.71866800000001,32.832203],[-83.718511,32.832054],[-83.718384,32.831892],[-83.7182987,32.8317302]]},"id":"8944c0b0a27ffff-13b6b5fd016b1b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72328,32.860780000000005]},"id":"8f44c0a2500e732-17b7aa960c4d18e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72159900000001,32.8618]},"id":"8f44c0a250f0cc6-13b72eb0a879735c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2500e732-17b7aa960c4d18e3","8f44c0a250f0cc6-13b72eb0a879735c"]},"geometry":{"type":"LineString","coordinates":[[-83.72328,32.860780000000005],[-83.722578,32.86121],[-83.72159900000001,32.8618]]},"id":"8844c0a251fffff-13f73ca2c9482c3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720522,32.862446000000006]},"id":"8f44c0a250d6cc4-13b6f151cc1e1dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250d6cc4-13b6f151cc1e1dfc","8f44c0a250f0cc6-13b72eb0a879735c"]},"geometry":{"type":"LineString","coordinates":[[-83.72159900000001,32.8618],[-83.721362,32.86195],[-83.721069,32.862119],[-83.720522,32.862446000000006]]},"id":"8944c0a250fffff-13fff000870154a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71996890000001,32.8626993]},"id":"8f44c0a257254e8-17d732ab7254c303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250d6cc4-13b6f151cc1e1dfc","8f44c0a257254e8-17d732ab7254c303"]},"geometry":{"type":"LineString","coordinates":[[-83.720522,32.862446000000006],[-83.72039600000001,32.862526],[-83.720139,32.862674000000005],[-83.71996890000001,32.8626993]]},"id":"8844c0a251fffff-1796f1f9171661cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62855710000001,32.8303582]},"id":"8f44c0ba922a264-17dff1d7d3872051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba922caa8-13b7f0696c8616dc","8f44c0ba922a264-17dff1d7d3872051"]},"geometry":{"type":"LineString","coordinates":[[-83.62855710000001,32.8303582],[-83.6291434,32.8296798]]},"id":"8a44c0ba922ffff-179ff120a80350cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6292341,32.8287952]},"id":"8f44c0ba935601d-139f1030b0e7a62d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba922caa8-13b7f0696c8616dc","8f44c0ba935601d-139f1030b0e7a62d"]},"geometry":{"type":"LineString","coordinates":[[-83.6291434,32.8296798],[-83.6291241,32.8295726],[-83.62911240000001,32.8294133],[-83.6290836,32.8291406],[-83.6290943,32.828991900000005],[-83.6292341,32.8287952]]},"id":"8844c0ba93fffff-1397b0773ef07b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719074,32.919649]},"id":"8f44c0a284e2024-17deb4dacee6f015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a287b4a25-13fe2ffbec1e9207","8f44c0a284e2024-17deb4dacee6f015"]},"geometry":{"type":"LineString","coordinates":[[-83.719074,32.919649],[-83.71955,32.919824000000006],[-83.719644,32.919863],[-83.71974,32.919919],[-83.719879,32.920062],[-83.71991700000001,32.920111],[-83.720482,32.920952],[-83.720577,32.921073],[-83.720678,32.921154],[-83.720814,32.921225],[-83.721069,32.921312]]},"id":"8844c0a285fffff-13def25ad676a4c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a287b4a25-13fe2ffbec1e9207","8f44c0a2844a655-139eed2aa7a326e8"]},"geometry":{"type":"LineString","coordinates":[[-83.721069,32.921312],[-83.721179,32.921349],[-83.72127800000001,32.921369],[-83.721395,32.921379],[-83.72152600000001,32.921373],[-83.721641,32.921353],[-83.72201000000001,32.92125],[-83.722132,32.921203000000006],[-83.722223,32.921179]]},"id":"8744c0a28ffffff-13ff2e915080fab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2844a655-139eed2aa7a326e8","8f44c0a28711b36-17b7b907dd3fc2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.722223,32.921179],[-83.72232100000001,32.92116],[-83.72242,32.921152],[-83.72252,32.921155],[-83.72264700000001,32.921173],[-83.72274200000001,32.921199],[-83.722845,32.921241],[-83.72291700000001,32.92128],[-83.723004,32.921343],[-83.723408,32.921734],[-83.72391710000001,32.9222235]]},"id":"8844c0a287fffff-17973af2fff45721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684725,32.886412]},"id":"8f44c0a2340e39c-17b788b6ebbc50fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2340e39c-17b788b6ebbc50fb","8f44c0a234cc81d-17d7a97129865341"]},"geometry":{"type":"LineString","coordinates":[[-83.684725,32.886412],[-83.6849,32.886823],[-83.684939,32.886938],[-83.68495100000001,32.887014],[-83.68495,32.887065],[-83.684938,32.887129],[-83.68486200000001,32.887239],[-83.68483,32.887265],[-83.684607,32.887411],[-83.68450200000001,32.887499000000005],[-83.68447900000001,32.887554],[-83.684469,32.887611],[-83.684477,32.887728],[-83.684503,32.887853],[-83.68454200000001,32.887985],[-83.68457400000001,32.888077],[-83.684594,32.888224],[-83.684594,32.888298],[-83.684577,32.888388],[-83.68452900000001,32.888717],[-83.684478,32.888965],[-83.684427,32.889093]]},"id":"8844c0a235fffff-13f6d8e4a1485ce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68440100000001,32.889159]},"id":"8f44c0a234cc8d8-17fee9816bd6ad49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a234cc8d8-17fee9816bd6ad49","8f44c0a234cc81d-17d7a97129865341"]},"geometry":{"type":"LineString","coordinates":[[-83.684427,32.889093],[-83.68440100000001,32.889159]]},"id":"8b44c0a234ccfff-17d7c979470007a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720155,32.926766]},"id":"8f44c0a2869d09b-13bef237287f446d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869d09b-13bef237287f446d","8f44c0a2869b94d-139eb2fe8759b6b7"]},"geometry":{"type":"LineString","coordinates":[[-83.720155,32.926766],[-83.719836,32.927124]]},"id":"8a44c0a2869ffff-13beb29ad0f9d391"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719389,32.927582]},"id":"8f44c0a2bd35c89-13bef415e058635f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd35c89-13bef415e058635f","8f44c0a2869b94d-139eb2fe8759b6b7"]},"geometry":{"type":"LineString","coordinates":[[-83.719836,32.927124],[-83.71973200000001,32.927253],[-83.719677,32.927287],[-83.719605,32.927324],[-83.719389,32.927582]]},"id":"8644c0a2fffffff-13bef38c5a634f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71948400000001,32.927647]},"id":"8f44c0a2bd351aa-13f773da8545c468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd35c89-13bef415e058635f","8f44c0a2bd351aa-13f773da8545c468"]},"geometry":{"type":"LineString","coordinates":[[-83.71948400000001,32.927647],[-83.719389,32.927582]]},"id":"8b44c0a2bd35fff-13df33f83db6cb49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd35c89-13bef415e058635f","8f44c0a2bd351aa-13f773da8545c468"]},"geometry":{"type":"LineString","coordinates":[[-83.719389,32.927582],[-83.719333,32.927605],[-83.719279,32.927653],[-83.719164,32.927782],[-83.719139,32.92783],[-83.719171,32.927874],[-83.71926500000001,32.927934],[-83.719322,32.927942],[-83.71935900000001,32.927919],[-83.719479,32.927779],[-83.71950600000001,32.927736],[-83.719509,32.927694],[-83.71948400000001,32.927647]]},"id":"8a44c0a2bd37fff-13bfb441e46e942b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71477,32.862648]},"id":"8f44c0a254e900d-17b73f5cceb89de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715873,32.862059]},"id":"8f44c0a2545c059-13d6fcab6c3de9c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254e900d-17b73f5cceb89de1","8f44c0a2545c059-13d6fcab6c3de9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.71477,32.862648],[-83.714965,32.862409],[-83.71503200000001,32.862347],[-83.715163,32.862247],[-83.715344,32.862157],[-83.71552000000001,32.862085],[-83.71563400000001,32.862063],[-83.715873,32.862059]]},"id":"8844c0a255fffff-13befe23ac791fb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2547408e-17b67ca48e73e9a8","8f44c0a2545c059-13d6fcab6c3de9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.715873,32.862059],[-83.71605600000001,32.862071],[-83.716251,32.862068],[-83.716324,32.862054],[-83.71685400000001,32.861869],[-83.716952,32.861821],[-83.717017,32.861766],[-83.71706400000001,32.861713],[-83.71710900000001,32.861634],[-83.717129,32.861564],[-83.71712600000001,32.861493],[-83.717122,32.86141],[-83.717028,32.861218],[-83.716785,32.86081],[-83.716401,32.86019],[-83.71633200000001,32.860104],[-83.716221,32.860021],[-83.716187,32.860008],[-83.71601000000001,32.859963],[-83.715884,32.859959]]},"id":"8944c0a2547ffff-139ffae342a9f7a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2547408e-17b67ca48e73e9a8","8f44c0a2545c059-13d6fcab6c3de9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.715884,32.859959],[-83.71570100000001,32.860035],[-83.715592,32.860121],[-83.71553,32.860207],[-83.715311,32.860799],[-83.71513900000001,32.861255],[-83.7151147,32.8613915],[-83.715276,32.861462],[-83.71541,32.861497],[-83.715449,32.861507],[-83.71563900000001,32.861573],[-83.71569600000001,32.861612],[-83.71577400000001,32.861686],[-83.71582500000001,32.861765000000005],[-83.71585300000001,32.86187],[-83.715873,32.862059]]},"id":"8944c0a2547ffff-13be3d9f85a84725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600854,32.850735]},"id":"8f44c0b8daab501-179f757a41ecf38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8daab501-179f757a41ecf38a","8f44c0b8da9db72-139f580584ea2969"]},"geometry":{"type":"LineString","coordinates":[[-83.600854,32.850735],[-83.600555,32.850828],[-83.5999,32.851056],[-83.599838,32.851089],[-83.599812,32.851112]]},"id":"8944c0b8dabffff-179fd6c3e23df11f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da9dd9d-179fd8eb89ae5a52","8f44c0b8da9db72-139f580584ea2969"]},"geometry":{"type":"LineString","coordinates":[[-83.599812,32.851112],[-83.59973400000001,32.851107],[-83.599671,32.851112],[-83.599579,32.851110000000006],[-83.59948800000001,32.851098],[-83.599435,32.851025],[-83.599444,32.850942]]},"id":"8b44c0b8da9dfff-17f7789625ebeefa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662411,32.802973]},"id":"8f44c0b18d9ad10-1396bf31242d4593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66015300000001,32.801879]},"id":"8f44c0b1e3719b4-17d6e4b46518a82f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3719b4-17d6e4b46518a82f","8f44c0b18d9ad10-1396bf31242d4593"]},"geometry":{"type":"LineString","coordinates":[[-83.662411,32.802973],[-83.6624,32.802698],[-83.66238200000001,32.802452],[-83.662356,32.802214],[-83.662328,32.802126],[-83.66225800000001,32.802042],[-83.662166,32.801993],[-83.66212,32.80198],[-83.661983,32.801966],[-83.66168300000001,32.801943],[-83.66133400000001,32.801921],[-83.660668,32.801903],[-83.66015300000001,32.801879]]},"id":"8744c0b1effffff-13f7e13bacdecf95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65973000000001,32.801864]},"id":"8f44c0b1e370764-17dfc5bcc5357d87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3719b4-17d6e4b46518a82f","8f44c0b1e370764-17dfc5bcc5357d87"]},"geometry":{"type":"LineString","coordinates":[[-83.66015300000001,32.801879],[-83.659844,32.801871000000006],[-83.65973000000001,32.801864]]},"id":"8a44c0b1e377fff-17d6e538a0694be9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7216047,32.8228369]},"id":"8f44c0b0aa21530-13973ead17a60d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72163300000001,32.818491]},"id":"8f44c0b084980a0-13f6ee9b62800dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa21530-13973ead17a60d1a","8f44c0b084980a0-13f6ee9b62800dc7"]},"geometry":{"type":"LineString","coordinates":[[-83.7216047,32.8228369],[-83.72159,32.822772],[-83.72158200000001,32.822643],[-83.72159400000001,32.82193],[-83.721609,32.820284],[-83.72163300000001,32.818491]]},"id":"8744c0b0affffff-17b7beabca3858b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c90c5-17bf2e77c50afc9e","8f44c0b084980a0-13f6ee9b62800dc7"]},"geometry":{"type":"LineString","coordinates":[[-83.72163300000001,32.818491],[-83.72168,32.81425],[-83.72169000000001,32.813688]]},"id":"8644c0b0fffffff-1397fe8aaf356e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6429705,32.8361108]},"id":"8f44c0a3410d910-13ffeea771261dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643236,32.836239]},"id":"8f44c0a3417646e-13bfee018f1f5246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3417646e-13bfee018f1f5246","8f44c0a3410d910-13ffeea771261dd4"]},"geometry":{"type":"LineString","coordinates":[[-83.6429705,32.8361108],[-83.643011,32.836154],[-83.643236,32.836239]]},"id":"8944c0a3413ffff-1396ee5830c178d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643483,32.83632]},"id":"8f44c0a3417630d-13feed6729764d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3417646e-13bfee018f1f5246","8f44c0a3417630d-13feed6729764d5e"]},"geometry":{"type":"LineString","coordinates":[[-83.643236,32.836239],[-83.643483,32.83632]]},"id":"8b44c0a34176fff-13d6fdb4538ba5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6416104,32.8338106]},"id":"8f44c0a34134b6c-17dff1f982d61ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6424063,32.8351567]},"id":"8f44c0a341058ed-1396f00816f64d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34134b6c-17dff1f982d61ecc","8f44c0a341058ed-1396f00816f64d36"]},"geometry":{"type":"LineString","coordinates":[[-83.6416104,32.8338106],[-83.64237290000001,32.835100100000005],[-83.6424063,32.8351567]]},"id":"8944c0a3413ffff-17f6f100cd200e76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a341058ed-1396f00816f64d36","8f44c0a3410d910-13ffeea771261dd4"]},"geometry":{"type":"LineString","coordinates":[[-83.6424063,32.8351567],[-83.6429705,32.8361108]]},"id":"8944c0a3413ffff-13bfef57c70db04c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673327,32.806041]},"id":"8f44c0b188a80b5-13ffa48aab1cfb80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67336,32.804003]},"id":"8f44c0b1898840d-1797e4760a8b6dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188a80b5-13ffa48aab1cfb80","8f44c0b1898840d-1797e4760a8b6dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.673327,32.806041],[-83.67336,32.804003]]},"id":"8844c0b189fffff-1796e4805d21d140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67337,32.802436]},"id":"8f44c0b189a37b4-13b6a46fc58d80a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189a37b4-13b6a46fc58d80a7","8f44c0b1898840d-1797e4760a8b6dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.67336,32.804003],[-83.67336800000001,32.803334],[-83.67337,32.802436]]},"id":"8944c0b189bffff-139eb471bb006e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.566111,32.821682]},"id":"8f44c0b81ada068-13bfea4ca1600cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56540000000001,32.819882]},"id":"8f44c0b81a8baeb-13dfec090f501d54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81ada068-13bfea4ca1600cc8","8f44c0b81a8baeb-13dfec090f501d54"]},"geometry":{"type":"LineString","coordinates":[[-83.566111,32.821682],[-83.56560400000001,32.820552],[-83.56540000000001,32.819882]]},"id":"8744c0b81ffffff-1797fb3b5ef260cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.565117,32.818058]},"id":"8f44c0b81a85ce2-17d7ecb9e93e083c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81a85ce2-17d7ecb9e93e083c","8f44c0b81a8baeb-13dfec090f501d54"]},"geometry":{"type":"LineString","coordinates":[[-83.56540000000001,32.819882],[-83.565117,32.818058]]},"id":"8944c0b81abffff-1397ec6173ce10ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56317700000001,32.819532]},"id":"8f44c0b81069321-13ffb17666b0b7f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8106639b-17d7f4ed47b2ca46","8f44c0b81069321-13ffb17666b0b7f2"]},"geometry":{"type":"LineString","coordinates":[[-83.56317700000001,32.819532],[-83.5626,32.818892000000005],[-83.562464,32.818689],[-83.56241100000001,32.818641],[-83.56236,32.818579],[-83.561858,32.817962],[-83.56175800000001,32.817855]]},"id":"8944c0b8107ffff-13f7f33538eb6541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560883,32.816858]},"id":"8f44c0b8115ad86-17fff710206e26e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8115ad86-17fff710206e26e6","8f44c0b8106639b-17d7f4ed47b2ca46"]},"geometry":{"type":"LineString","coordinates":[[-83.56175800000001,32.817855],[-83.560883,32.816858]]},"id":"8844c0b811fffff-179ff5febbb2f44d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62539500000001,32.838372]},"id":"8f44c0a36862240-13ff99902d863651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36862240-13ff99902d863651","8f44c0a36862a59-13bfb95556b87919"]},"geometry":{"type":"LineString","coordinates":[[-83.62539500000001,32.838372],[-83.62548910000001,32.8382602]]},"id":"8b44c0a36862fff-13df9972cec80d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36862a59-13bfb95556b87919","8f44c0a368643a8-17f7f84767f92fd0"]},"geometry":{"type":"LineString","coordinates":[[-83.62548910000001,32.8382602],[-83.625921,32.837747]]},"id":"8a44c0a36867fff-139f58ce5334e5ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626423,32.837159]},"id":"8f44c0a369480d5-17ff770da1302c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a369480d5-17ff770da1302c05","8f44c0a368643a8-17f7f84767f92fd0"]},"geometry":{"type":"LineString","coordinates":[[-83.625921,32.837747],[-83.6263545,32.8372392],[-83.626423,32.837159]]},"id":"8844c0a369fffff-17b737aa86457f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62658900000001,32.836948]},"id":"8f44c0a36948821-17f796a5e328a8ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36948821-17f796a5e328a8ef","8f44c0a369480d5-17ff770da1302c05"]},"geometry":{"type":"LineString","coordinates":[[-83.626423,32.837159],[-83.62658900000001,32.836948]]},"id":"8b44c0a36948fff-17b776d9c021cc69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36948821-17f796a5e328a8ef","8f44c0a3694cacc-17ff56388a0ca51e"]},"geometry":{"type":"LineString","coordinates":[[-83.62658900000001,32.836948],[-83.62676400000001,32.836754]]},"id":"8a44c0a3694ffff-17b7f66f3fb94e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62707800000001,32.836380000000005]},"id":"8f44c0a3696b993-179795744603d82b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694cacc-17ff56388a0ca51e","8f44c0a3696b993-179795744603d82b"]},"geometry":{"type":"LineString","coordinates":[[-83.62676400000001,32.836754],[-83.62707800000001,32.836380000000005]]},"id":"8944c0a3697ffff-179775d66fc913fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3696d585-139f34970ee38e61","8f44c0a3696b993-179795744603d82b"]},"geometry":{"type":"LineString","coordinates":[[-83.62707800000001,32.836380000000005],[-83.627432,32.835957]]},"id":"8a44c0a3696ffff-139f5505aa96d7e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627632,32.835729]},"id":"8f44c0a345936a1-13ffb41a0b22a73b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345936a1-13ffb41a0b22a73b","8f44c0a3696d585-139f34970ee38e61"]},"geometry":{"type":"LineString","coordinates":[[-83.627432,32.835957],[-83.6275445,32.8358288],[-83.627632,32.835729]]},"id":"8a44c0a3696ffff-13d7f4588ba87f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345936a1-13ffb41a0b22a73b","8f44c0a345938ab-13df93980aad51a7"]},"geometry":{"type":"LineString","coordinates":[[-83.627632,32.835729],[-83.62784,32.835476]]},"id":"8b44c0a34593fff-13bf93d9028b5337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62814300000001,32.835118]},"id":"8f44c0a34590b29-13ffd2daa55713e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34590b29-13ffd2daa55713e4","8f44c0a345938ab-13df93980aad51a7"]},"geometry":{"type":"LineString","coordinates":[[-83.62784,32.835476],[-83.62814300000001,32.835118]]},"id":"8a44c0a34597fff-13ffb339519dc04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b38c9-17b7b1b7f8a2ee5d","8f44c0a34590b29-13ffd2daa55713e4"]},"geometry":{"type":"LineString","coordinates":[[-83.62814300000001,32.835118],[-83.62860810000001,32.834569]]},"id":"8944c0a345bffff-13d73249484d2cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b1d90-179771315c12c9a5","8f44c0a345b38c9-17b7b1b7f8a2ee5d"]},"geometry":{"type":"LineString","coordinates":[[-83.62860810000001,32.834569],[-83.62882350000001,32.8343095]]},"id":"8a44c0a345b7fff-17d79174ac9b9413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629309,32.833748]},"id":"8f44c0ba925b311-17b79001e2bed204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b1d90-179771315c12c9a5","8f44c0ba925b311-17b79001e2bed204"]},"geometry":{"type":"LineString","coordinates":[[-83.62882350000001,32.8343095],[-83.629309,32.833748]]},"id":"8944c0a345bffff-17d710999a0c4c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62970200000001,32.833056]},"id":"8f44c0ba925d575-13f70f0c4b777bb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba925d575-13f70f0c4b777bb1","8f44c0ba925b311-17b79001e2bed204"]},"geometry":{"type":"LineString","coordinates":[[-83.629309,32.833748],[-83.629686,32.8333],[-83.62972900000001,32.833196],[-83.62970200000001,32.833056]]},"id":"8a44c0ba925ffff-17d73f6360f9ea99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64036300000001,32.819954]},"id":"8f44c0b1a44a313-13f7f5052b208afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641018,32.819463]},"id":"8f44c0b1a44c353-13d6f36bc65d907e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a44a313-13f7f5052b208afd","8f44c0b1a44c353-13d6f36bc65d907e"]},"geometry":{"type":"LineString","coordinates":[[-83.64036300000001,32.819954],[-83.641018,32.819463]]},"id":"8a44c0b1a44ffff-13dff438776a54c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641891,32.818803]},"id":"8f44c0b1a46d621-13b7f14a2e09e870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a46d621-13b7f14a2e09e870","8f44c0b1a44c353-13d6f36bc65d907e"]},"geometry":{"type":"LineString","coordinates":[[-83.641018,32.819463],[-83.641891,32.818803]]},"id":"8944c0b1a47ffff-13f6f25afa615eab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642801,32.818108]},"id":"8f44c0b1a091b0d-17f7ef116074b60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a091b0d-17f7ef116074b60a","8f44c0b1a46d621-13b7f14a2e09e870"]},"geometry":{"type":"LineString","coordinates":[[-83.641891,32.818803],[-83.642525,32.81833],[-83.642801,32.818108]]},"id":"8744c0b1affffff-13d6f02c1a37f969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629045,32.833596]},"id":"8f44c0ba925b519-17d790a6e5ccf743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba925d575-13f70f0c4b777bb1","8f44c0ba925b519-17d790a6e5ccf743"]},"geometry":{"type":"LineString","coordinates":[[-83.62970200000001,32.833056],[-83.62953300000001,32.833063],[-83.62942600000001,32.833143],[-83.629045,32.833596]]},"id":"8a44c0ba925ffff-17ff7febe9b4430b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba925b519-17d790a6e5ccf743","8f44c0a345b018a-17b731cb35324274"]},"geometry":{"type":"LineString","coordinates":[[-83.629045,32.833596],[-83.6285773,32.834161800000004]]},"id":"8844c0ba93fffff-17f751391bd01a34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b018a-17b731cb35324274","8f44c0a345b3d95-17d7925b8c65e0fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6285773,32.834161800000004],[-83.62834640000001,32.834412]]},"id":"8a44c0a345b7fff-17f7521350b71901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627888,32.834961]},"id":"8f44c0a34590d75-139fb37a020ed3cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34590d75-139fb37a020ed3cf","8f44c0a345b3d95-17d7925b8c65e0fa"]},"geometry":{"type":"LineString","coordinates":[[-83.62834640000001,32.834412],[-83.627888,32.834961]]},"id":"8944c0a345bffff-17ff12eacd045d23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34590d75-139fb37a020ed3cf","8f44c0a34592af0-13ff3437642dd3d7"]},"geometry":{"type":"LineString","coordinates":[[-83.627888,32.834961],[-83.62758500000001,32.835317]]},"id":"8a44c0a34597fff-139ff3d8b67ed9f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6273625,32.8355854]},"id":"8f44c0a3696c8ab-13b7f4c27bdf1532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34592af0-13ff3437642dd3d7","8f44c0a3696c8ab-13b7f4c27bdf1532"]},"geometry":{"type":"LineString","coordinates":[[-83.62758500000001,32.835317],[-83.62744950000001,32.8354804],[-83.6273625,32.8355854]]},"id":"8844c0a345fffff-13df147cf17eb07d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3696c636-13bf1535c530a421","8f44c0a3696c8ab-13b7f4c27bdf1532"]},"geometry":{"type":"LineString","coordinates":[[-83.6273625,32.8355854],[-83.627178,32.835808]]},"id":"8b44c0a3696cfff-13f774fc1087ce6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3696c636-13bf1535c530a421","8f44c0a3696aab4-13b7f6180c60a871"]},"geometry":{"type":"LineString","coordinates":[[-83.627178,32.835808],[-83.626816,32.836235]]},"id":"8a44c0a3696ffff-13b775a6e2ccc537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694c196-17b756e00e4c1b81","8f44c0a3696aab4-13b7f6180c60a871"]},"geometry":{"type":"LineString","coordinates":[[-83.626816,32.836235],[-83.626496,32.83661]]},"id":"8944c0a3697ffff-17bf167c00523974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62633500000001,32.83679]},"id":"8f44c0a3694eb5e-1797d744a3200829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694c196-17b756e00e4c1b81","8f44c0a3694eb5e-1797d744a3200829"]},"geometry":{"type":"LineString","coordinates":[[-83.626496,32.83661],[-83.62641550000001,32.8367],[-83.62633500000001,32.83679]]},"id":"8a44c0a3694ffff-17df971256575a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62616600000001,32.836995]},"id":"8f44c0a3694e2c3-1797f7ae4cb86369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694e2c3-1797f7ae4cb86369","8f44c0a3694eb5e-1797d744a3200829"]},"geometry":{"type":"LineString","coordinates":[[-83.62633500000001,32.83679],[-83.62623,32.836925],[-83.62616600000001,32.836995]]},"id":"8b44c0a3694efff-17d7d77844f6187f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36864518-179738e12525703e","8f44c0a3694e2c3-1797f7ae4cb86369"]},"geometry":{"type":"LineString","coordinates":[[-83.62616600000001,32.836995],[-83.625759,32.837474],[-83.625675,32.837581]]},"id":"8944c0a3697ffff-17df3848cf391b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625138,32.838213]},"id":"8f44c0a3686244c-139f3a30c8f34181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36864518-179738e12525703e","8f44c0a3686244c-139f3a30c8f34181"]},"geometry":{"type":"LineString","coordinates":[[-83.625675,32.837581],[-83.625138,32.838213]]},"id":"8a44c0a36867fff-17d7b988fd86478d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62421900000001,32.83955]},"id":"8f44c0a3685c406-13dfdc6f2652d075"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6247539,32.8389236]},"id":"8f44c0a368462ec-13d75b20d500e925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a368462ec-13d75b20d500e925","8f44c0a3685c406-13dfdc6f2652d075"]},"geometry":{"type":"LineString","coordinates":[[-83.62421900000001,32.83955],[-83.6247539,32.8389236]]},"id":"8944c0a3687ffff-139f1bc7f3af50b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6248602,32.8387991]},"id":"8f44c0a36846ae9-13ff7ade6d21efb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a368462ec-13d75b20d500e925","8f44c0a36846ae9-13ff7ade6d21efb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6247539,32.8389236],[-83.6248602,32.8387991]]},"id":"8b44c0a36846fff-13b77affaedf7ebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62528300000001,32.838304]},"id":"8f44c0a36862399-13d719d62ccfe9d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36862399-13d719d62ccfe9d7","8f44c0a36846ae9-13ff7ade6d21efb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6248602,32.8387991],[-83.6252243,32.8383727],[-83.62528300000001,32.838304]]},"id":"8944c0a3687ffff-13dfba5a48580632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676726,32.837915]},"id":"8f44c0b1ba4b389-17d6fc3e46ff6bb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677761,32.835889]},"id":"8f44c0b1ba6cbb0-13deb9b760008d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba6cbb0-13deb9b760008d16","8f44c0b1ba4b389-17d6fc3e46ff6bb5"]},"geometry":{"type":"LineString","coordinates":[[-83.676726,32.837915],[-83.677761,32.835889]]},"id":"8944c0b1ba7ffff-17d7dafada9b744f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67860900000001,32.834224]},"id":"8f44c0b196b6393-17de97a5673e3a1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b196b6393-17de97a5673e3a1f","8f44c0b1ba6cbb0-13deb9b760008d16"]},"geometry":{"type":"LineString","coordinates":[[-83.677761,32.835889],[-83.67860900000001,32.834224]]},"id":"8644c0b1fffffff-13d6d8ae6224de30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679107,32.833213]},"id":"8f44c0b1979e4d9-17d6b66e2de3024f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1979e4d9-17d6b66e2de3024f","8f44c0b196b6393-17de97a5673e3a1f"]},"geometry":{"type":"LineString","coordinates":[[-83.67860900000001,32.834224],[-83.679107,32.833213]]},"id":"8844c0b197fffff-17969709c8562702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679985,32.831586]},"id":"8f44c0b197b1c94-13dfd4496bad25dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1979e4d9-17d6b66e2de3024f","8f44c0b197b1c94-13dfd4496bad25dc"]},"geometry":{"type":"LineString","coordinates":[[-83.679107,32.833213],[-83.679985,32.831586]]},"id":"8944c0b197bffff-13dfb55bc76d4bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557412,32.824162]},"id":"8f44c0b8174a255-17bfff898694e8a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.555813,32.825161]},"id":"8f44c0b81673a2a-13bfe370e78c2452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81673a2a-13bfe370e78c2452","8f44c0b8174a255-17bfff898694e8a6"]},"geometry":{"type":"LineString","coordinates":[[-83.557412,32.824162],[-83.555813,32.825161]]},"id":"8844c0b817fffff-17f7f17d369fdbad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55451500000001,32.825961]},"id":"8f44c0b81652293-13b7e69c25cc2ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81652293-13b7e69c25cc2ab2","8f44c0b81673a2a-13bfe370e78c2452"]},"geometry":{"type":"LineString","coordinates":[[-83.555813,32.825161],[-83.55451500000001,32.825961]]},"id":"8844c0b817fffff-13b7e5068249f93b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74660300000001,32.8489]},"id":"8f44c0b56892289-13b7f1a527394b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56892289-13b7f1a527394b0f","8f44c0b56c76268-1395f779a2d07171"]},"geometry":{"type":"LineString","coordinates":[[-83.74660300000001,32.8489],[-83.74602,32.848892],[-83.745744,32.848869],[-83.74557200000001,32.848813],[-83.74542100000001,32.848698],[-83.74519400000001,32.848452],[-83.74507,32.848343],[-83.744973,32.848295],[-83.744864,32.848263],[-83.744641,32.848245],[-83.74421500000001,32.848239]]},"id":"8944c0b56c7ffff-13f7f49509810659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74230700000001,32.848225]},"id":"8f44c0b56c1d2f0-13fdfc222dc46d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56c1d2f0-13fdfc222dc46d5f","8f44c0b56c76268-1395f779a2d07171"]},"geometry":{"type":"LineString","coordinates":[[-83.74421500000001,32.848239],[-83.74336000000001,32.848222],[-83.74230700000001,32.848225]]},"id":"8844c0b56dfffff-13fdf9cde8c8b6dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69819530000001,32.8898908]},"id":"8f44c0a23330048-17b7e7d3f8586e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23330048-17b7e7d3f8586e8d","8f44c0a23316d52-17b76ac2c956d749"]},"geometry":{"type":"LineString","coordinates":[[-83.69819530000001,32.8898908],[-83.6979804,32.8899026],[-83.69777090000001,32.8899757],[-83.696994,32.890296]]},"id":"8944c0a2333ffff-17b669502b4e4265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695942,32.89061]},"id":"8f44c0a233a052b-13f76d544ee34d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a233a052b-13f76d544ee34d1c","8f44c0a23316d52-17b76ac2c956d749"]},"geometry":{"type":"LineString","coordinates":[[-83.696994,32.890296],[-83.696522,32.890475],[-83.696261,32.890549],[-83.696109,32.890582],[-83.695942,32.89061]]},"id":"8844c0a233fffff-13b6fc07b0c067a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6949975,32.890636300000004]},"id":"8f44c0a233b0a5c-1397ffa2980de7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a233a052b-13f76d544ee34d1c","8f44c0a233b0a5c-1397ffa2980de7e4"]},"geometry":{"type":"LineString","coordinates":[[-83.695942,32.89061],[-83.69563600000001,32.890631],[-83.69547100000001,32.890636],[-83.695181,32.890638],[-83.6949975,32.890636300000004]]},"id":"8944c0a233bffff-13967e7b4f5ebcf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694444,32.890631]},"id":"8f44c0a233b2bae-139670fc8592f3c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a233b2bae-139670fc8592f3c5","8f44c0a233b0a5c-1397ffa2980de7e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6949975,32.890636300000004],[-83.694444,32.890631]]},"id":"8a44c0a233b7fff-1396704f9bd23fc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693133,32.890647]},"id":"8f44c0a230caadd-139e742fe772e87b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230caadd-139e742fe772e87b","8f44c0a233b2bae-139670fc8592f3c5"]},"geometry":{"type":"LineString","coordinates":[[-83.694444,32.890631],[-83.69345600000001,32.890622],[-83.693133,32.890647]]},"id":"8844c0a231fffff-1396f2967964dffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69248900000001,32.89077]},"id":"8f44c0a230d9392-13df75c260577559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230caadd-139e742fe772e87b","8f44c0a230d9392-13df75c260577559"]},"geometry":{"type":"LineString","coordinates":[[-83.693133,32.890647],[-83.69296200000001,32.890673],[-83.692763,32.890709],[-83.69248900000001,32.89077]]},"id":"8944c0a230fffff-13b7f4f9b65961fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690852,32.890912]},"id":"8f44c0a2377651e-13b679c18ed8def7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230d9392-13df75c260577559","8f44c0a2377651e-13b679c18ed8def7"]},"geometry":{"type":"LineString","coordinates":[[-83.69248900000001,32.89077],[-83.691997,32.890928],[-83.691866,32.890955000000005],[-83.69171700000001,32.890977],[-83.69155500000001,32.890991],[-83.69139100000001,32.890993],[-83.69124400000001,32.890988],[-83.691005,32.890949],[-83.690852,32.890912]]},"id":"8844c0a237fffff-13d677be31ad9b7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688096,32.890406]},"id":"8f44c0a23713155-17f7c07c01a31b55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23713155-17f7c07c01a31b55","8f44c0a2377651e-13b679c18ed8def7"]},"geometry":{"type":"LineString","coordinates":[[-83.690852,32.890912],[-83.690672,32.890853],[-83.690478,32.890777],[-83.69015800000001,32.890597],[-83.68995100000001,32.890497],[-83.689755,32.890423000000006],[-83.689552,32.890369],[-83.689279,32.890341],[-83.68906100000001,32.890337],[-83.688096,32.890406]]},"id":"8944c0a2373ffff-13bffd0c4c832b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685871,32.891244]},"id":"8f44c0a23783555-139785eaa524b9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23713155-17f7c07c01a31b55","8f44c0a23783555-139785eaa524b9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.688096,32.890406],[-83.687765,32.890431],[-83.68742400000001,32.890473],[-83.68722700000001,32.890515],[-83.687061,32.890577],[-83.68678600000001,32.890704],[-83.686552,32.890849],[-83.685871,32.891244]]},"id":"8844c0a237fffff-13b6d34ad311672f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67237800000001,32.838152]},"id":"8f44c0b1bad9c1c-13f7a6dbccb24e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b32aadb-13b7ab8122ce9710","8f44c0b1bad9c1c-13f7a6dbccb24e01"]},"geometry":{"type":"LineString","coordinates":[[-83.67047500000001,32.838073],[-83.67237800000001,32.838152]]},"id":"8844c0b1b3fffff-13def92e7accb6e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db0546-13fea15d89e0797d","8f44c0b1bad9c1c-13f7a6dbccb24e01"]},"geometry":{"type":"LineString","coordinates":[[-83.67237800000001,32.838152],[-83.67249600000001,32.83814],[-83.673073,32.838154],[-83.673533,32.838161],[-83.673938,32.838167],[-83.674628,32.838164]]},"id":"8744c0b1bffffff-13fea41cd01c72f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722324,32.895429]},"id":"8f44c0a2c59b161-17bf2ceb8c6ed58c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722295,32.896647]},"id":"8f44c0a2c4840a0-17b66cfdaab8116e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c4840a0-17b66cfdaab8116e","8f44c0a2c59b161-17bf2ceb8c6ed58c"]},"geometry":{"type":"LineString","coordinates":[[-83.722324,32.895429],[-83.722295,32.896647]]},"id":"8844c0a2c5fffff-17b7ecf49095b5eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722283,32.897801]},"id":"8f44c0a2c48e422-1397ad052d447b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c4840a0-17b66cfdaab8116e","8f44c0a2c48e422-1397ad052d447b5e"]},"geometry":{"type":"LineString","coordinates":[[-83.722295,32.896647],[-83.722283,32.897801]]},"id":"8944c0a2c4bffff-139f2d01657131e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72227600000001,32.898898]},"id":"8f44c0a2eb242f0-17b76d0982f26756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2eb242f0-17b76d0982f26756","8f44c0a2c48e422-1397ad052d447b5e"]},"geometry":{"type":"LineString","coordinates":[[-83.722283,32.897801],[-83.72227600000001,32.898898]]},"id":"8844c0a2c5fffff-13de7d075311f854"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642993,32.785697]},"id":"8f44c0b133666a4-13d6ee996bd28161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1330b8f4-139ff3e6b185edc6","8f44c0b133666a4-13d6ee996bd28161"]},"geometry":{"type":"LineString","coordinates":[[-83.642993,32.785697],[-83.6428722,32.7857129],[-83.642469,32.785766],[-83.6413603,32.7859197],[-83.6413083,32.7859269],[-83.64128600000001,32.78593],[-83.6408213,32.785992300000004]]},"id":"8844c0b133fffff-13b6f1401f84a4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63938200000001,32.786205]},"id":"8f44c0b132359a4-1396f76a421d82d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1330b8f4-139ff3e6b185edc6","8f44c0b132359a4-1396f76a421d82d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6408213,32.785992300000004],[-83.6407664,32.785999600000004],[-83.63956200000001,32.786161],[-83.63938200000001,32.786205]]},"id":"8844c0b133fffff-13def5a979e94977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651582,32.856158]},"id":"8f44c0a35443cf1-17ded9a142ee191c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653087,32.856195]},"id":"8f44c0a3546b9a8-17f7f5f4aed3aad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3546b9a8-17f7f5f4aed3aad5","8f44c0a35443cf1-17ded9a142ee191c"]},"geometry":{"type":"LineString","coordinates":[[-83.651582,32.856158],[-83.652613,32.856163],[-83.65284700000001,32.856169],[-83.65294700000001,32.856175],[-83.653087,32.856195]]},"id":"8944c0a3547ffff-17ded7ca839f6a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654245,32.856824]},"id":"8f44c0a3573588e-17ffd320e04acb4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3546b9a8-17f7f5f4aed3aad5","8f44c0a3573588e-17ffd320e04acb4e"]},"geometry":{"type":"LineString","coordinates":[[-83.653087,32.856195],[-83.653208,32.856243],[-83.65333700000001,32.856307],[-83.65403900000001,32.856778000000006],[-83.654148,32.856806],[-83.654245,32.856824]]},"id":"8744c0a35ffffff-17bfd48d299f4f37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35724272-17bed098c5c81dec","8f44c0a3573588e-17ffd320e04acb4e"]},"geometry":{"type":"LineString","coordinates":[[-83.654245,32.856824],[-83.65441600000001,32.856852],[-83.654655,32.856876],[-83.655282,32.8569]]},"id":"8944c0a3573ffff-179ed1dd87153f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35724272-17bed098c5c81dec","8f44c0a350d5d20-17b7cceccc9f1848"]},"geometry":{"type":"LineString","coordinates":[[-83.655282,32.8569],[-83.656019,32.856899],[-83.65678600000001,32.856918]]},"id":"8844c0a351fffff-17bfdec2be6c5717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65751300000001,32.856915]},"id":"8f44c0a350c694d-17b7eb2665d42aef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350d5d20-17b7cceccc9f1848","8f44c0a350c694d-17b7eb2665d42aef"]},"geometry":{"type":"LineString","coordinates":[[-83.65678600000001,32.856918],[-83.657008,32.856912],[-83.65751300000001,32.856915]]},"id":"8944c0a350fffff-17b7cc099546aaf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658798,32.859316]},"id":"8f44c0a35390d31-1796c8034d6fd6ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35390d31-1796c8034d6fd6ce","8f44c0a350c694d-17b7eb2665d42aef"]},"geometry":{"type":"LineString","coordinates":[[-83.65751300000001,32.856915],[-83.657954,32.857049],[-83.65819300000001,32.857135],[-83.658259,32.857165],[-83.65844200000001,32.857264],[-83.65859,32.857365],[-83.65869400000001,32.857467],[-83.658777,32.857562],[-83.65889200000001,32.857757],[-83.65892600000001,32.857843],[-83.65895900000001,32.857947],[-83.65898700000001,32.858088],[-83.65899200000001,32.858213],[-83.65898700000001,32.858293],[-83.658973,32.858385000000006],[-83.658816,32.858932],[-83.65878000000001,32.859093],[-83.658781,32.859192],[-83.658798,32.859316]]},"id":"8744c0a35ffffff-139ed88d2c96b1ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659029,32.860537]},"id":"8f44c0a3539a9b0-179fe772e1327392"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35390d31-1796c8034d6fd6ce","8f44c0a3539a9b0-179fe772e1327392"]},"geometry":{"type":"LineString","coordinates":[[-83.658798,32.859316],[-83.65884700000001,32.859578],[-83.65895400000001,32.859948],[-83.658995,32.860189000000005],[-83.659029,32.860537]]},"id":"8944c0a353bffff-179ed7b10c68ef27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658867,32.861324]},"id":"8f44c0a352b42b3-13f7c7d82d66b399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3539a9b0-179fe772e1327392","8f44c0a352b42b3-13f7c7d82d66b399"]},"geometry":{"type":"LineString","coordinates":[[-83.659029,32.860537],[-83.65902100000001,32.860763],[-83.658979,32.860992],[-83.65893700000001,32.861137],[-83.658867,32.861324]]},"id":"8844c0a353fffff-1396f794a9a18ede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670686,32.858798]},"id":"8f44c0a35a4bc2c-13deeafd4018733e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35a4bc2c-13deeafd4018733e","8f44c0a35a4081b-17b6abd080a97ad5"]},"geometry":{"type":"LineString","coordinates":[[-83.670348,32.857329],[-83.670337,32.857526],[-83.67035200000001,32.857642000000006],[-83.670399,32.857746],[-83.670474,32.857863],[-83.670703,32.858246],[-83.670761,32.858365],[-83.670777,32.85849],[-83.67076800000001,32.858566],[-83.670686,32.858798]]},"id":"8944c0a35a7ffff-1396fb46fe4a189e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670338,32.860068000000005]},"id":"8f44c0a22daed72-17f6abd6cb2472ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22daed72-17f6abd6cb2472ed","8f44c0a35a4bc2c-13deeafd4018733e"]},"geometry":{"type":"LineString","coordinates":[[-83.670686,32.858798],[-83.67057000000001,32.859021000000006],[-83.670507,32.85915],[-83.670437,32.859349],[-83.670389,32.859586],[-83.670377,32.859738],[-83.670338,32.860068000000005]]},"id":"8844c0a22dfffff-17dfeb8b1fed4878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651368,32.817334]},"id":"8f44c0b1a14d8d6-1797da27075d46cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a14d8d6-1797da27075d46cd","8f44c0b1aab4206-17b6f7bba029ff87"]},"geometry":{"type":"LineString","coordinates":[[-83.651368,32.817334],[-83.651588,32.817346],[-83.652359,32.817357]]},"id":"8744c0b1affffff-179fd8f16be6f3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65272,32.816505]},"id":"8f44c0b1ab98cb5-139ff6da036462b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aab4206-17b6f7bba029ff87","8f44c0b1ab98cb5-139ff6da036462b0"]},"geometry":{"type":"LineString","coordinates":[[-83.652359,32.817357],[-83.652513,32.817194],[-83.65263,32.817055],[-83.652714,32.816854],[-83.65272,32.816505]]},"id":"8844c0b1abfffff-17bfd71ba3128162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662687,32.823107]},"id":"8f44c0b1bd29636-13bffe84ae69c617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664163,32.823081]},"id":"8f44c0b186d9109-139fbaea2ff5143f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd29636-13bffe84ae69c617","8f44c0b186d9109-139fbaea2ff5143f"]},"geometry":{"type":"LineString","coordinates":[[-83.662687,32.823107],[-83.664163,32.823081]]},"id":"8844c0b1bdfffff-13b7fcb76063e4a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186ca794-139fba44877afdc2","8f44c0b186d9109-139fbaea2ff5143f"]},"geometry":{"type":"LineString","coordinates":[[-83.664163,32.823081],[-83.664428,32.823081]]},"id":"8944c0b186fffff-139fba975e7ba7f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66551100000001,32.823137]},"id":"8f44c0b186c98d4-13beb79fac12c755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186c98d4-13beb79fac12c755","8f44c0b186ca794-139fba44877afdc2"]},"geometry":{"type":"LineString","coordinates":[[-83.664428,32.823081],[-83.66551100000001,32.823137]]},"id":"8a44c0b186cffff-13bfb8f2148e201d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186c9853-13bff77b69215b83","8f44c0b186c98d4-13beb79fac12c755"]},"geometry":{"type":"LineString","coordinates":[[-83.66551100000001,32.823137],[-83.665569,32.823138]]},"id":"8c44c0b186c99ff-13bef78d8ee90f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666509,32.823171]},"id":"8f44c0b1b9b022a-13d7f52fe7c3c916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186c9853-13bff77b69215b83","8f44c0b1b9b022a-13d7f52fe7c3c916"]},"geometry":{"type":"LineString","coordinates":[[-83.665569,32.823138],[-83.666509,32.823171]]},"id":"8944c0b1b9bffff-13d7b655a43620e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666837,32.823189]},"id":"8f44c0b1b9b1814-13dfb462e109090d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9b1814-13dfb462e109090d","8f44c0b1b9b022a-13d7f52fe7c3c916"]},"geometry":{"type":"LineString","coordinates":[[-83.666509,32.823171],[-83.666837,32.823189]]},"id":"8a44c0b1b9b7fff-13d7b4c96fdfceae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9a2118-13f6f363ecb2c31a","8f44c0b1b9b1814-13dfb462e109090d"]},"geometry":{"type":"LineString","coordinates":[[-83.666837,32.823189],[-83.66724500000001,32.823195000000005]]},"id":"8944c0b1b9bffff-13dfb3e3664e229a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66811600000001,32.823208]},"id":"8f44c0b1b9a5652-13ffb143889a8b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9a5652-13ffb143889a8b79","8f44c0b1b9a2118-13f6f363ecb2c31a"]},"geometry":{"type":"LineString","coordinates":[[-83.66724500000001,32.823195000000005],[-83.66765000000001,32.823205],[-83.66811600000001,32.823208]]},"id":"8a44c0b1b9a7fff-13f6b253ba6cf838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668367,32.823206]},"id":"8f44c0b1b912c92-13f7f0a6a27ec883"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9a5652-13ffb143889a8b79","8f44c0b1b912c92-13f7f0a6a27ec883"]},"geometry":{"type":"LineString","coordinates":[[-83.66811600000001,32.823208],[-83.668367,32.823206]]},"id":"8a44c0b1b9a7fff-13fef0f51d6e7d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b915549-13beee17040f607d","8f44c0b1b912c92-13f7f0a6a27ec883"]},"geometry":{"type":"LineString","coordinates":[[-83.668367,32.823206],[-83.66857800000001,32.823203],[-83.669416,32.823134]]},"id":"8844c0b1b9fffff-13d6ff5ea8224ba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9064cd-13b7ad1a849b0610","8f44c0b1b915549-13beee17040f607d"]},"geometry":{"type":"LineString","coordinates":[[-83.669416,32.823134],[-83.66982,32.823093]]},"id":"8944c0b1b93ffff-13bffd98c99c42df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67055400000001,32.823059]},"id":"8f44c0b1b904230-139feb4fc059f151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9064cd-13b7ad1a849b0610","8f44c0b1b904230-139feb4fc059f151"]},"geometry":{"type":"LineString","coordinates":[[-83.66982,32.823093],[-83.669959,32.823081],[-83.670286,32.823062],[-83.67055400000001,32.823059]]},"id":"8a44c0b1b907fff-1397ac35556c5a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670606,32.823057]},"id":"8f44c0b1b904350-139eab2f412d096f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b904350-139eab2f412d096f","8f44c0b1b904230-139feb4fc059f151"]},"geometry":{"type":"LineString","coordinates":[[-83.67055400000001,32.823059],[-83.670606,32.823057]]},"id":"8c44c0b1b9043ff-139feb3f8a5677f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67134800000001,32.823057]},"id":"8f44c0b1b92e120-139ea95f894db62c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b92e120-139ea95f894db62c","8f44c0b1b904350-139eab2f412d096f"]},"geometry":{"type":"LineString","coordinates":[[-83.670606,32.823057],[-83.67134800000001,32.823057]]},"id":"8944c0b1b93ffff-139eaa4765f6d8c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672143,32.823072]},"id":"8f44c0b182d3613-1396a76eab169ecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b92e120-139ea95f894db62c","8f44c0b182d3613-1396a76eab169ecf"]},"geometry":{"type":"LineString","coordinates":[[-83.67134800000001,32.823057],[-83.672143,32.823072]]},"id":"8a44c0b1b92ffff-139ff86711a2eaf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182dc512-1397e58d69ff5d21","8f44c0b182d3613-1396a76eab169ecf"]},"geometry":{"type":"LineString","coordinates":[[-83.672143,32.823072],[-83.67291300000001,32.823075]]},"id":"8944c0b182fffff-1396f67e00e0440c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673669,32.823073]},"id":"8f44c0b182c3065-1396a3b4e1d4cff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182dc512-1397e58d69ff5d21","8f44c0b182c3065-1396a3b4e1d4cff0"]},"geometry":{"type":"LineString","coordinates":[[-83.67291300000001,32.823075],[-83.673669,32.823073]]},"id":"8944c0b182fffff-1397e4a12f5e7451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674448,32.823078]},"id":"8f44c0b182cc992-1397e1ce0f1591a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182cc992-1397e1ce0f1591a6","8f44c0b182c3065-1396a3b4e1d4cff0"]},"geometry":{"type":"LineString","coordinates":[[-83.673669,32.823073],[-83.674448,32.823078]]},"id":"8944c0b182fffff-1396b2c17502ca34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661021,32.822021]},"id":"8f44c0b1bd31259-1397e295ee36c2b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661029,32.821416]},"id":"8f44c0b1bd350ec-179fc290e76adef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd31259-1397e295ee36c2b4","8f44c0b1bd350ec-179fc290e76adef5"]},"geometry":{"type":"LineString","coordinates":[[-83.661021,32.822021],[-83.661029,32.821416]]},"id":"8944c0b1bd3ffff-13d6d2936eba0f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66104800000001,32.820786000000005]},"id":"8f44c0b1869bc03-17ffc28509cdbf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1869bc03-17ffc28509cdbf37","8f44c0b1bd350ec-179fc290e76adef5"]},"geometry":{"type":"LineString","coordinates":[[-83.661029,32.821416],[-83.66104800000001,32.820786000000005]]},"id":"8644c0b1fffffff-17d6e28aff01537e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66106900000001,32.820135]},"id":"8f44c0b1869ebac-17fee277e75fe6c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1869bc03-17ffc28509cdbf37","8f44c0b1869ebac-17fee277e75fe6c9"]},"geometry":{"type":"LineString","coordinates":[[-83.66104800000001,32.820786000000005],[-83.66106900000001,32.820135]]},"id":"8a44c0b1869ffff-17b7d27e738d63d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66108700000001,32.818982000000005]},"id":"8f44c0b186b379e-1397c26ca0e216e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186b379e-1397c26ca0e216e0","8f44c0b1869ebac-17fee277e75fe6c9"]},"geometry":{"type":"LineString","coordinates":[[-83.66106900000001,32.820135],[-83.66108700000001,32.818982000000005]]},"id":"8944c0b186bffff-1396d2724657c1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66109300000001,32.817805]},"id":"8f44c0b1ab69755-17bee268edbfbf51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab69755-17bee268edbfbf51","8f44c0b186b379e-1397c26ca0e216e0"]},"geometry":{"type":"LineString","coordinates":[[-83.66108700000001,32.818982000000005],[-83.66109300000001,32.817805]]},"id":"8844c0b187fffff-13b7f26ac2fa5e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661118,32.816616]},"id":"8f44c0b1879231b-13d7c25940e03704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1879231b-13d7c25940e03704","8f44c0b1ab69755-17bee268edbfbf51"]},"geometry":{"type":"LineString","coordinates":[[-83.66109300000001,32.817805],[-83.661118,32.816616]]},"id":"8844c0b187fffff-17d6d261101a61c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661141,32.815455]},"id":"8f44c0b184c9d8b-13ffe24ae736f463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1879231b-13d7c25940e03704","8f44c0b184c9d8b-13ffe24ae736f463"]},"geometry":{"type":"LineString","coordinates":[[-83.661118,32.816616],[-83.661141,32.815455]]},"id":"8744c0b18ffffff-13f6f25218a301f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65772000000001,32.806989]},"id":"8f44c0b1e2e9cce-17d6eaa50fac9d9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658162,32.807008]},"id":"8f44c0b1e25a45d-17dec990c4359cdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e25a45d-17dec990c4359cdf","8f44c0b1e2e9cce-17d6eaa50fac9d9a"]},"geometry":{"type":"LineString","coordinates":[[-83.65772000000001,32.806989],[-83.657874,32.807004],[-83.65799100000001,32.807010000000005],[-83.658162,32.807008]]},"id":"8844c0b1e3fffff-17dfda1b056a3862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e25a45d-17dec990c4359cdf","8f44c0b1e259898-1796e7210831a2a1"]},"geometry":{"type":"LineString","coordinates":[[-83.658162,32.807008],[-83.65894,32.807014],[-83.65908,32.807018],[-83.659119,32.807024000000006],[-83.659152,32.807046],[-83.65916,32.807073]]},"id":"8a44c0b1e25ffff-17dff850c4827a87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67364500000001,32.823867]},"id":"8f44c0b182ca4cd-1796e3c3e2cee051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182ca4cd-1796e3c3e2cee051","8f44c0b182c3065-1396a3b4e1d4cff0"]},"geometry":{"type":"LineString","coordinates":[[-83.67364500000001,32.823867],[-83.673653,32.823439],[-83.673651,32.823144],[-83.673669,32.823073]]},"id":"8944c0b182fffff-179ea3c01f26f827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673708,32.82175]},"id":"8f44c0b182e2481-13dfe39c8c5d0534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182e2481-13dfe39c8c5d0534","8f44c0b182c3065-1396a3b4e1d4cff0"]},"geometry":{"type":"LineString","coordinates":[[-83.673669,32.823073],[-83.673708,32.82175]]},"id":"8944c0b182fffff-13f7b3a8ba3fe7f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67376200000001,32.8202]},"id":"8f44c0b1821c4cb-1797a37acc699204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182e2481-13dfe39c8c5d0534","8f44c0b1821c4cb-1797a37acc699204"]},"geometry":{"type":"LineString","coordinates":[[-83.673708,32.82175],[-83.67369000000001,32.821624],[-83.673747,32.821071],[-83.67376200000001,32.820725],[-83.67376200000001,32.8202]]},"id":"8844c0b183fffff-17f6b388c9e79ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693814,32.743637]},"id":"8f44c0b068e5a40-13b772864e80f1f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0680c6c9-17f6f2792820ecc2","8f44c0b068e5a40-13b772864e80f1f2"]},"geometry":{"type":"LineString","coordinates":[[-83.693814,32.743637],[-83.693835,32.742507]]},"id":"8844c0b069fffff-13d6727fb46789d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69383900000001,32.740791]},"id":"8f44c0b06820600-13b67276a8245a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0680c6c9-17f6f2792820ecc2","8f44c0b06820600-13b67276a8245a9e"]},"geometry":{"type":"LineString","coordinates":[[-83.693835,32.742507],[-83.69382300000001,32.741591],[-83.693827,32.741416],[-83.69383900000001,32.740791]]},"id":"8944c0b0683ffff-17def27c43f2c9b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b069313ad-13bf7251254861e0","8f44c0b06820600-13b67276a8245a9e"]},"geometry":{"type":"LineString","coordinates":[[-83.69383900000001,32.740791],[-83.693898,32.738019],[-83.693899,32.737944]]},"id":"8844c0b069fffff-17bef263bac287f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b069313ad-13bf7251254861e0","8f44c0b3176956c-13df721caf71c96b"]},"geometry":{"type":"LineString","coordinates":[[-83.693899,32.737944],[-83.693934,32.736372],[-83.693945,32.735643],[-83.693983,32.733688]]},"id":"8744c0b31ffffff-179f723613ca0ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694004,32.732404]},"id":"8f44c0b31392885-17bef20f8d5ae129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b31392885-17bef20f8d5ae129","8f44c0b3176956c-13df721caf71c96b"]},"geometry":{"type":"LineString","coordinates":[[-83.693983,32.733688],[-83.694004,32.732404]]},"id":"8844c0b313fffff-17dff2161a3d94c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67849000000001,32.877115]},"id":"8f44c0a223894d3-1796f7efccfc686b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a223894d3-1796f7efccfc686b","8f44c0a223a8589-17bed701adc40aa7"]},"geometry":{"type":"LineString","coordinates":[[-83.678871,32.875738000000005],[-83.678672,32.876491],[-83.67849000000001,32.877115]]},"id":"8944c0a223bffff-17d7d776065cf115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692677,32.805811]},"id":"8f44c0b1d03255b-13fff54ce44fb1d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d03255b-13fff54ce44fb1d0","8f44c0b1dc4b8d5-13df75122456af9c"]},"geometry":{"type":"LineString","coordinates":[[-83.692677,32.805811],[-83.692704,32.804549],[-83.69277100000001,32.802917]]},"id":"8844c0b1d1fffff-17f77533e0e68104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692795,32.80218]},"id":"8f44c0b1dc4c45c-1396f503228f0275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc4c45c-1396f503228f0275","8f44c0b1dc4b8d5-13df75122456af9c"]},"geometry":{"type":"LineString","coordinates":[[-83.69277100000001,32.802917],[-83.692795,32.80218]]},"id":"8a44c0b1dc4ffff-13fef50aaec3e7bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc45620-17fef57136896f16","8f44c0b1dc4c45c-1396f503228f0275"]},"geometry":{"type":"LineString","coordinates":[[-83.692795,32.80218],[-83.6926189,32.8014987]]},"id":"8944c0b1dc7ffff-17bff53a3365139a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc44c19-1797f65070434139","8f44c0b1dc45620-17fef57136896f16"]},"geometry":{"type":"LineString","coordinates":[[-83.6926189,32.8014987],[-83.6922617,32.8009246]]},"id":"8a44c0b1dc47fff-17b775e0d884d153"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917633,32.800592300000005]},"id":"8f44c0b1dc70246-17b67787fc6521ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc44c19-1797f65070434139","8f44c0b1dc70246-17b67787fc6521ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6922617,32.8009246],[-83.6917633,32.800592300000005]]},"id":"8944c0b1dc7ffff-179e76ec3d437c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556847,32.834629]},"id":"8f44c0b8e8c37b0-17dfe0eaa8e7d247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e8c9d21-13f7fe0102fb2012","8f44c0b8e8c37b0-17dfe0eaa8e7d247"]},"geometry":{"type":"LineString","coordinates":[[-83.55804,32.83531],[-83.557967,32.835285],[-83.55790400000001,32.835276],[-83.557568,32.835265],[-83.55731800000001,32.835261],[-83.557101,32.835257],[-83.55705800000001,32.835251],[-83.55699800000001,32.835233],[-83.556933,32.835202],[-83.556905,32.835172],[-83.55688500000001,32.835132],[-83.55686800000001,32.835082],[-83.556866,32.834986],[-83.55687400000001,32.834805],[-83.55687300000001,32.83473],[-83.556847,32.834629]]},"id":"8944c0b8e8fffff-139fbfe0830503dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55571900000001,32.83287]},"id":"8f44c0b8e88d052-13ffc3abacbc029f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e8c37b0-17dfe0eaa8e7d247","8f44c0b8e88d052-13ffc3abacbc029f"]},"geometry":{"type":"LineString","coordinates":[[-83.556847,32.834629],[-83.556866,32.83457],[-83.556855,32.83438],[-83.556844,32.834175],[-83.55683900000001,32.83411],[-83.55680100000001,32.833579],[-83.556793,32.833516],[-83.556774,32.83343],[-83.556759,32.833391],[-83.556736,32.833354],[-83.556706,32.83332],[-83.556667,32.833287],[-83.556606,32.833246],[-83.55651300000001,32.833196],[-83.556424,32.833159],[-83.556207,32.833083],[-83.55597900000001,32.832987],[-83.55571900000001,32.83287]]},"id":"8844c0b8e9fffff-17b7f1a35c4ed34b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18a5a68c-139fd261e11eacfa","8f44c0b19d86846-17feb1a2a6858b03"]},"geometry":{"type":"LineString","coordinates":[[-83.681071,32.817681],[-83.681076,32.817072],[-83.68107,32.816893],[-83.681049,32.816789],[-83.680982,32.816608],[-83.680902,32.816471],[-83.68076500000001,32.816322]]},"id":"8744c0b18ffffff-17bff1c4986dc457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18a5a68c-139fd261e11eacfa","8f44c0b18aea571-13dfb58467d00426"]},"geometry":{"type":"LineString","coordinates":[[-83.68076500000001,32.816322],[-83.680645,32.816226],[-83.680497,32.816136],[-83.68035900000001,32.816077],[-83.680266,32.816048],[-83.68011100000001,32.816018],[-83.67982400000001,32.816],[-83.67948100000001,32.815989]]},"id":"8844c0b18bfffff-13fe93e2eed12c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669555,32.821719]},"id":"8f44c0b186692d6-13d6edc0209fac56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669852,32.821727]},"id":"8f44c0b1b934c40-13dfed06860fd65a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b934c40-13dfed06860fd65a","8f44c0b186692d6-13d6edc0209fac56"]},"geometry":{"type":"LineString","coordinates":[[-83.669555,32.821719],[-83.669852,32.821727]]},"id":"8a44c0b1b937fff-13deed635ad8b4c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670625,32.821745]},"id":"8f44c0b1829bb4e-13d6ab236837475e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b934c40-13dfed06860fd65a","8f44c0b1829bb4e-13d6ab236837475e"]},"geometry":{"type":"LineString","coordinates":[[-83.669852,32.821727],[-83.670625,32.821745]]},"id":"8744c0b18ffffff-13d7ac14fe09c219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67138800000001,32.821745]},"id":"8f44c0b1828a2c3-13d6a9468aed5a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1828a2c3-13d6a9468aed5a43","8f44c0b1829bb4e-13d6ab236837475e"]},"geometry":{"type":"LineString","coordinates":[[-83.670625,32.821745],[-83.67138800000001,32.821745]]},"id":"8944c0b182bffff-13d6aa34fb1346b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67215900000001,32.821739]},"id":"8f44c0b18289000-13d6e764a1675db5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18289000-13d6e764a1675db5","8f44c0b1828a2c3-13d6a9468aed5a43"]},"geometry":{"type":"LineString","coordinates":[[-83.67138800000001,32.821745],[-83.67215900000001,32.821739]]},"id":"8a44c0b1828ffff-13d6e855970f36f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182f3d00-13d7e582cbffab6a","8f44c0b18289000-13d6e764a1675db5"]},"geometry":{"type":"LineString","coordinates":[[-83.67215900000001,32.821739],[-83.67293000000001,32.821747]]},"id":"8844c0b183fffff-13d7e673b37423ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182f3d00-13d7e582cbffab6a","8f44c0b182e2481-13dfe39c8c5d0534"]},"geometry":{"type":"LineString","coordinates":[[-83.67293000000001,32.821747],[-83.673708,32.82175]]},"id":"8a44c0b182f7fff-13def48fa1a96833"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6744836,32.82175]},"id":"8f44c0b182e0385-13dfe1b7c9715195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182e0385-13dfe1b7c9715195","8f44c0b182e2481-13dfe39c8c5d0534"]},"geometry":{"type":"LineString","coordinates":[[-83.673708,32.82175],[-83.6744836,32.82175]]},"id":"8944c0b182fffff-13dfe2aa29f066c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638379,32.779958]},"id":"8f44c0b1315dd6e-13d7f9dd28150c7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6417792,32.780016700000004]},"id":"8f44c0b13aa4c93-13f6f190047efbcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13aa4c93-13f6f190047efbcc","8f44c0b1315dd6e-13d7f9dd28150c7c"]},"geometry":{"type":"LineString","coordinates":[[-83.638379,32.779958],[-83.63861200000001,32.779953],[-83.63926210000001,32.7799563],[-83.639588,32.779958],[-83.6417792,32.780016700000004]]},"id":"8744c0b13ffffff-13dff5b6822558a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13aa4c93-13f6f190047efbcc","8f44c0b13b8bb55-1396ff5ca8cdc1cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6417792,32.780016700000004],[-83.642538,32.780037],[-83.6426806,32.7800395]]},"id":"8944c0b13bbffff-13fff0765b818ec2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13a14da1-139eee2d411cea07","8f44c0b13b8bb55-1396ff5ca8cdc1cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6426806,32.7800395],[-83.64316600000001,32.780048]]},"id":"8844c0b13bfffff-1397eec4fd1fef0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13a14da1-139eee2d411cea07","8f44c0b13b50681-13b7e6686cd260ec"]},"geometry":{"type":"LineString","coordinates":[[-83.64316600000001,32.780048],[-83.643342,32.780051],[-83.6461537,32.780113400000005],[-83.6463482,32.7801172]]},"id":"8844c0b13bfffff-139fea4adcac823c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13b68085-13f7ffb585811671","8f44c0b13b50681-13b7e6686cd260ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6463482,32.7801172],[-83.64769000000001,32.780161],[-83.64909200000001,32.7801974]]},"id":"8944c0b13b7ffff-13dfe30f0144bbac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13b68b48-13fedee7e66ca498","8f44c0b13b68085-13f7ffb585811671"]},"geometry":{"type":"LineString","coordinates":[[-83.64909200000001,32.7801974],[-83.649421,32.780206]]},"id":"8a44c0b13b6ffff-13fedf4eb6dfd5bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612644,32.842256]},"id":"8f44c0a3656aa72-13ff38b18796d894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611849,32.842298]},"id":"8f44c0a3654156a-13977aa264f0ff6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3654156a-13977aa264f0ff6e","8f44c0a3656aa72-13ff38b18796d894"]},"geometry":{"type":"LineString","coordinates":[[-83.612644,32.842256],[-83.61260200000001,32.84225],[-83.612407,32.842269],[-83.611849,32.842298]]},"id":"8944c0a3657ffff-13f7b9a9b98ad5af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5236c25d-17bde9a6467f4dc1","8f44c0b52a5b5b6-17fde5ea09271f06"]},"geometry":{"type":"LineString","coordinates":[[-83.75140800000001,32.880346],[-83.75138600000001,32.881254000000006],[-83.751373,32.881468000000005],[-83.751349,32.881618],[-83.75131300000001,32.881729],[-83.751259,32.88185],[-83.75120000000001,32.881948],[-83.75110400000001,32.882069],[-83.751001,32.882176],[-83.750877,32.882272],[-83.750786,32.882334],[-83.750754,32.882351],[-83.750659,32.882402],[-83.750473,32.882475],[-83.75023200000001,32.882548],[-83.750056,32.882615],[-83.749914,32.882683],[-83.74987800000001,32.882708]]},"id":"8744c0b52ffffff-13dff6f41f304dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5236c25d-17bde9a6467f4dc1","8f44c0b5236b0e3-17f5ea9282323059"]},"geometry":{"type":"LineString","coordinates":[[-83.74987800000001,32.882708],[-83.749834,32.882738],[-83.74974900000001,32.882809],[-83.74970300000001,32.882859],[-83.749663,32.88291],[-83.749623,32.88297],[-83.749566,32.883087],[-83.749531,32.883209],[-83.74950000000001,32.883405]]},"id":"8a44c0b5236ffff-17f7ea3ee5a8fd9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.749775,32.884596]},"id":"8f44c0b53c94af0-13dde9e6ae6de110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5236b0e3-17f5ea9282323059","8f44c0b53c94af0-13dde9e6ae6de110"]},"geometry":{"type":"LineString","coordinates":[[-83.74950000000001,32.883405],[-83.74951200000001,32.883547],[-83.74954000000001,32.88366],[-83.74957,32.883754],[-83.749634,32.883957],[-83.74972600000001,32.884284],[-83.749756,32.884439],[-83.749775,32.884596]]},"id":"8644c0b57ffffff-13d7fa3ac992f962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53c9e991-17b5e9ebae9c5c39","8f44c0b53c94af0-13dde9e6ae6de110"]},"geometry":{"type":"LineString","coordinates":[[-83.749775,32.884596],[-83.74978,32.88469],[-83.749767,32.885556]]},"id":"8944c0b53cbffff-13f5f9e7574e093d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74943300000001,32.886888]},"id":"8f44c0b535308a5-17f5eabc6f30d12c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53c9e991-17b5e9ebae9c5c39","8f44c0b535308a5-17f5eabc6f30d12c"]},"geometry":{"type":"LineString","coordinates":[[-83.749767,32.885556],[-83.749757,32.885878000000005],[-83.74973200000001,32.886229],[-83.749705,32.886381],[-83.749672,32.886491],[-83.74959600000001,32.886659],[-83.749502,32.886805],[-83.74943300000001,32.886888]]},"id":"8744c0b53ffffff-17d5fa21381cf58e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5225b0ae-13d5f1bb0d7bc4e9","8f44c0b535308a5-17f5eabc6f30d12c"]},"geometry":{"type":"LineString","coordinates":[[-83.74943300000001,32.886888],[-83.749345,32.886967],[-83.74927100000001,32.887019],[-83.749171,32.887081],[-83.74902800000001,32.887152],[-83.74879200000001,32.887234],[-83.748636,32.887265],[-83.74849900000001,32.887276],[-83.74656800000001,32.887245]]},"id":"8744c0b53ffffff-13bffe22cc095fa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70186000000001,32.872112]},"id":"8f44c0a2038b226-13de5ee18b11043f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2038b226-13de5ee18b11043f","8f44c0a2029d333-13ff62b30c8515eb"]},"geometry":{"type":"LineString","coordinates":[[-83.70186000000001,32.872112],[-83.70175800000001,32.872374],[-83.701687,32.872512],[-83.701014,32.873395],[-83.700586,32.874051],[-83.70041900000001,32.87428],[-83.70029600000001,32.874437]]},"id":"8844c0a203fffff-17bee0b7be41ee93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a239294d6-17bfe0e162989166","8f44c0a2029d333-13ff62b30c8515eb"]},"geometry":{"type":"LineString","coordinates":[[-83.70029600000001,32.874437],[-83.70013800000001,32.874737],[-83.700055,32.874993],[-83.70000800000001,32.875166],[-83.699966,32.875658],[-83.699962,32.87594],[-83.700035,32.876192],[-83.700117,32.876348],[-83.700221,32.876472],[-83.700331,32.87659],[-83.700416,32.876663],[-83.70054,32.876752],[-83.70074500000001,32.876869],[-83.700884,32.876936],[-83.701041,32.876998]]},"id":"8644c0a27ffffff-17ff72db8891ce43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a239294d6-17bfe0e162989166","8f44c0a23929a4e-17d6ffb6adbc1bd7"]},"geometry":{"type":"LineString","coordinates":[[-83.701041,32.876998],[-83.701228,32.877042],[-83.70136600000001,32.877046],[-83.701519,32.877041000000006]]},"id":"8b44c0a23929fff-17d6704cf406bfab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705127,32.876849]},"id":"8f44c0a215b54a5-17def6e7a146e3be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23929a4e-17d6ffb6adbc1bd7","8f44c0a215b54a5-17def6e7a146e3be"]},"geometry":{"type":"LineString","coordinates":[[-83.701519,32.877041000000006],[-83.70179300000001,32.877012],[-83.702239,32.876959],[-83.702499,32.876913],[-83.70279500000001,32.876837],[-83.70308,32.876744],[-83.70338600000001,32.87662],[-83.70359400000001,32.876542],[-83.703766,32.876491],[-83.70391400000001,32.876461],[-83.704121,32.876434],[-83.704305,32.876438],[-83.704448,32.876463],[-83.704604,32.87651],[-83.70475900000001,32.876579],[-83.70486000000001,32.87664],[-83.70499500000001,32.876734],[-83.705127,32.876849]]},"id":"8644c0a27ffffff-179e7b34ba1f1b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707099,32.875287]},"id":"8f44c0a2026a08e-139e721726c6f9c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2026a08e-139e721726c6f9c3","8f44c0a215b54a5-17def6e7a146e3be"]},"geometry":{"type":"LineString","coordinates":[[-83.705127,32.876849],[-83.705381,32.877217],[-83.70550700000001,32.87747],[-83.705743,32.877806],[-83.705898,32.877983],[-83.706057,32.878121],[-83.706224,32.878186],[-83.706292,32.878202],[-83.70638600000001,32.878214],[-83.706501,32.87821],[-83.70657800000001,32.878193],[-83.70675800000001,32.878103],[-83.706883,32.877997],[-83.70697700000001,32.877786],[-83.707012,32.877609],[-83.707029,32.877291],[-83.707048,32.876756],[-83.707063,32.875908],[-83.70709000000001,32.875523],[-83.707099,32.875287]]},"id":"8744c0a21ffffff-17be539020546ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70716900000001,32.87398]},"id":"8f44c0a20260853-17dfd1eb64f6c499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2026a08e-139e721726c6f9c3","8f44c0a20260853-17dfd1eb64f6c499"]},"geometry":{"type":"LineString","coordinates":[[-83.707099,32.875287],[-83.707131,32.874822],[-83.70716900000001,32.87398]]},"id":"8944c0a2027ffff-13f651ff1e2f17cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709703,32.821531]},"id":"8f44c0b0a188bb5-17d6ebbba66db819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707762,32.821451]},"id":"8f44c0b0a19a892-179ef078c372c6ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a19a892-179ef078c372c6ac","8f44c0b0a188bb5-17d6ebbba66db819"]},"geometry":{"type":"LineString","coordinates":[[-83.709703,32.821531],[-83.707762,32.821451]]},"id":"8944c0b0a1bffff-17b7ee1a31c63a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706648,32.821444]},"id":"8f44c0b0a56ab19-179ed3310e580b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a56ab19-179ed3310e580b57","8f44c0b0a19a892-179ef078c372c6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.707762,32.821451],[-83.706648,32.821444]]},"id":"8744c0b0affffff-179ef1d4e5a7dedc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656948,32.8102]},"id":"8f44c0b1a969763-17b7cc878d19a7e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65719700000001,32.810205]},"id":"8f44c0b184b4d84-17beebebef41bc58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a969763-17b7cc878d19a7e6","8f44c0b184b4d84-17beebebef41bc58"]},"geometry":{"type":"LineString","coordinates":[[-83.656948,32.8102],[-83.65719700000001,32.810205]]},"id":"8b44c0b1a969fff-17bedc39bc7fd8b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653305,32.800466]},"id":"8f44c0b1e3b2604-17f7d56c67462061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65332000000001,32.799259]},"id":"8f44c0b1e0e8383-13f6f56304692cf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0e8383-13f6f56304692cf6","8f44c0b1e3b2604-17f7d56c67462061"]},"geometry":{"type":"LineString","coordinates":[[-83.653305,32.800466],[-83.65332000000001,32.799259]]},"id":"8844c0b1e1fffff-13fed567b2dabf5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56754400000001,32.868568]},"id":"8f44c0b8b8accf0-13b7a6cd04183bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56718000000001,32.868848]},"id":"8f44c0b8b8ae0ee-13d7a7b08e78b0ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8accf0-13b7a6cd04183bfd","8f44c0b8b8ae0ee-13d7a7b08e78b0ab"]},"geometry":{"type":"LineString","coordinates":[[-83.56754400000001,32.868568],[-83.56718000000001,32.868848]]},"id":"8a44c0b8b8affff-13ffa73ecc1fadc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56658800000001,32.869503]},"id":"8f44c0b8b881282-17ffe922892e3c47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b881282-17ffe922892e3c47","8f44c0b8b8ae0ee-13d7a7b08e78b0ab"]},"geometry":{"type":"LineString","coordinates":[[-83.56718000000001,32.868848],[-83.566781,32.869157],[-83.566659,32.869264],[-83.566603,32.869346],[-83.566592,32.869379],[-83.56658800000001,32.869503]]},"id":"8944c0b8b8bffff-179fe88af7e308dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56597500000001,32.870193]},"id":"8f44c0b8b899856-179faaa1a50293b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b899856-179faaa1a50293b2","8f44c0b8b881282-17ffe922892e3c47"]},"geometry":{"type":"LineString","coordinates":[[-83.56658800000001,32.869503],[-83.56653200000001,32.869624],[-83.566407,32.869749],[-83.566314,32.869822],[-83.56597500000001,32.870193]]},"id":"8944c0b8b8bffff-17dfe9dac0197861"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878152,32.8428752]},"id":"8f44c0a2680cd4d-13ff812b883a1d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2680cd4d-13ff812b883a1d57","8f44c0a26801209-13f6a1d0aeee7a96"]},"geometry":{"type":"LineString","coordinates":[[-83.687551,32.842881000000006],[-83.6878152,32.8428752]]},"id":"8a44c0a2680ffff-13fed17e13b55487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2680cd4d-13ff812b883a1d57","8f44c0a2695a280-13fefda0c42b370c"]},"geometry":{"type":"LineString","coordinates":[[-83.6878152,32.8428752],[-83.688097,32.842869],[-83.689266,32.842875]]},"id":"8844c0a269fffff-13ff7f662afd823e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689588,32.842877]},"id":"8f44c0a2695bd5d-13fe7cd786380a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2695bd5d-13fe7cd786380a91","8f44c0a2695a280-13fefda0c42b370c"]},"geometry":{"type":"LineString","coordinates":[[-83.689266,32.842875],[-83.689588,32.842877]]},"id":"8a44c0a2695ffff-13fffd3c222634a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69018200000001,32.842883]},"id":"8f44c0a269598cb-13f7fb64499a6370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2695bd5d-13fe7cd786380a91","8f44c0a269598cb-13f7fb64499a6370"]},"geometry":{"type":"LineString","coordinates":[[-83.689588,32.842877],[-83.69018200000001,32.842883]]},"id":"8a44c0a2695ffff-13f67c1de6182727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691659,32.842934]},"id":"8f44c0a244b24a8-1797f7c92f19fe82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a244b24a8-1797f7c92f19fe82","8f44c0a269598cb-13f7fb64499a6370"]},"geometry":{"type":"LineString","coordinates":[[-83.69018200000001,32.842883],[-83.69103100000001,32.842899],[-83.691659,32.842934]]},"id":"8844c0a269fffff-13fff9969bc4380f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692324,32.842976]},"id":"8f44c0a244b0759-17be762985e484d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a244b0759-17be762985e484d8","8f44c0a244b24a8-1797f7c92f19fe82"]},"geometry":{"type":"LineString","coordinates":[[-83.691659,32.842934],[-83.692324,32.842976]]},"id":"8944c0a244bffff-179ef6f9597978a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692964,32.843017]},"id":"8f44c0a244a24a4-17d7f4998cc97a8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a244b0759-17be762985e484d8","8f44c0a244a24a4-17d7f4998cc97a8a"]},"geometry":{"type":"LineString","coordinates":[[-83.692324,32.842976],[-83.692964,32.843017]]},"id":"8a44c0a244b7fff-17bef561846203a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69424000000001,32.843032]},"id":"8f44c0a244a52e6-17df717c097e0851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a244a52e6-17df717c097e0851","8f44c0a244a24a4-17d7f4998cc97a8a"]},"geometry":{"type":"LineString","coordinates":[[-83.692964,32.843017],[-83.69352900000001,32.84303],[-83.69424000000001,32.843032]]},"id":"8944c0a244bffff-17de730acfab401b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a244a52e6-17df717c097e0851","8f44c0a244a5255-17df71626a6e4dfc"]},"geometry":{"type":"LineString","coordinates":[[-83.69424000000001,32.843032],[-83.694281,32.843032]]},"id":"8c44c0a244a53ff-17df716f34b888bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696978,32.843089]},"id":"8f44c0a24405a1c-17f6eaccc012daba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a24405a1c-17f6eaccc012daba","8f44c0a244a5255-17df71626a6e4dfc"]},"geometry":{"type":"LineString","coordinates":[[-83.694281,32.843032],[-83.694775,32.843032],[-83.695429,32.843038],[-83.6960521,32.8430569],[-83.696548,32.843072],[-83.69672270000001,32.843079200000005],[-83.696978,32.843089]]},"id":"8844c0a245fffff-17de6e17763d24e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70285600000001,32.788715]},"id":"8f44c0b0304c69a-17b6fc730e5186b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70085300000001,32.788701]},"id":"8f44c0b030ed336-17be6156e387df5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030ed336-17be6156e387df5f","8f44c0b0304c69a-17b6fc730e5186b6"]},"geometry":{"type":"LineString","coordinates":[[-83.70285600000001,32.788715],[-83.70085300000001,32.788701]]},"id":"8944c0b0307ffff-17bedee4f5009dea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700372,32.788694]},"id":"8f44c0b030e88d9-17b7e283825757b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030e88d9-17b7e283825757b1","8f44c0b030ed336-17be6156e387df5f"]},"geometry":{"type":"LineString","coordinates":[[-83.70085300000001,32.788701],[-83.700372,32.788694]]},"id":"8a44c0b030effff-17b7f1ed3e7675ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647231,32.801706]},"id":"8f44c0b1e63015c-17fee440abea4b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649415,32.80172]},"id":"8f44c0b1e756762-17f7deeba1e51eb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e63015c-17fee440abea4b39","8f44c0b1e756762-17f7deeba1e51eb2"]},"geometry":{"type":"LineString","coordinates":[[-83.647231,32.801706],[-83.647462,32.801704],[-83.649089,32.801721],[-83.649415,32.80172]]},"id":"8844c0b1e7fffff-17fef1962d5dc9c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650864,32.801701]},"id":"8f44c0b1e746b92-17f7fb620fd3f013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e756762-17f7deeba1e51eb2","8f44c0b1e746b92-17f7fb620fd3f013"]},"geometry":{"type":"LineString","coordinates":[[-83.649415,32.80172],[-83.649528,32.801721],[-83.650531,32.801699],[-83.650864,32.801701]]},"id":"8944c0b1e77ffff-17ffdd26d06314f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698069,32.8689264]},"id":"8f44c0a200dc6c1-13976822e41a368f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6977525,32.869117200000005]},"id":"8f44c0a200da94e-13fe68e8b048b43a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a200dc6c1-13976822e41a368f","8f44c0a200da94e-13fe68e8b048b43a"]},"geometry":{"type":"LineString","coordinates":[[-83.698069,32.8689264],[-83.697939,32.868988],[-83.6977525,32.869117200000005]]},"id":"8a44c0a200dffff-13bee888095893c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a200da026-17d7f950b2fa53de","8f44c0a200da94e-13fe68e8b048b43a"]},"geometry":{"type":"LineString","coordinates":[[-83.6977525,32.869117200000005],[-83.697711,32.869146],[-83.69758610000001,32.869235100000004]]},"id":"8b44c0a200dafff-17b6f91ccf3f1b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6966874,32.869876000000005]},"id":"8f44c0a2070db18-17deeb826736d263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a200da026-17d7f950b2fa53de","8f44c0a2070db18-17deeb826736d263"]},"geometry":{"type":"LineString","coordinates":[[-83.69758610000001,32.869235100000004],[-83.6966874,32.869876000000005]]},"id":"8844c0a207fffff-17966a69929e8585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a2070db18-17deeb826736d263","8f44c0a20610583-1397f47a070d8e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6966874,32.869876000000005],[-83.696264,32.870178],[-83.696195,32.870243],[-83.696126,32.870334],[-83.696082,32.870415],[-83.696053,32.870483],[-83.696042,32.870507],[-83.696019,32.870607],[-83.69601800000001,32.870711],[-83.696082,32.871651],[-83.696055,32.871724],[-83.69600600000001,32.871749],[-83.6959199,32.871774200000004],[-83.69574920000001,32.871828300000004],[-83.6952947,32.8719606],[-83.695171,32.8719966],[-83.69507850000001,32.872024200000006],[-83.693837,32.872394],[-83.69377700000001,32.872404],[-83.69364900000001,32.872399],[-83.69353000000001,32.872346],[-83.69346,32.872293],[-83.693253,32.87209],[-83.693173,32.872023],[-83.69308600000001,32.871923],[-83.693048,32.871868],[-83.69301440000001,32.8717849]]},"id":"8844c0a207fffff-13f76f5b70f7682d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6153628,32.868568]},"id":"8f44c0a3231499a-13b7320e485af560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3231499a-13b7320e485af560","8f44c0a32315343-17b7f0dfa76eb359"]},"geometry":{"type":"LineString","coordinates":[[-83.6153628,32.868568],[-83.615847,32.869206000000005]]},"id":"8a44c0a32317fff-13ff7176fc42b8a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32315343-17b7f0dfa76eb359","8f44c0a32303674-17d7efa4a2d14986"]},"geometry":{"type":"LineString","coordinates":[[-83.615847,32.869206000000005],[-83.616068,32.869510000000005],[-83.61635100000001,32.86987]]},"id":"8944c0a3233ffff-1797b0441bb28a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61718900000001,32.870946]},"id":"8f44c0a3230b36b-13f76d98ef2d2eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32303674-17d7efa4a2d14986","8f44c0a3230b36b-13f76d98ef2d2eef"]},"geometry":{"type":"LineString","coordinates":[[-83.61635100000001,32.86987],[-83.61676800000001,32.870399],[-83.61718900000001,32.870946]]},"id":"8944c0a3233ffff-17b76e9dccdd80d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67864680000001,32.7820215]},"id":"8f44c0b1c983c1d-17dff78dc5e9a93f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67830500000001,32.782536]},"id":"8f44c0b1c998944-139f98636357df33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c983c1d-17dff78dc5e9a93f","8f44c0b1c998944-139f98636357df33"]},"geometry":{"type":"LineString","coordinates":[[-83.67864680000001,32.7820215],[-83.678483,32.782283],[-83.67830500000001,32.782536]]},"id":"8944c0b1c9bffff-17ffb7f67d97f91e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668818,32.839047]},"id":"8f44c0b1b31b86c-1396ef8cca80dc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668879,32.837488]},"id":"8f44c0b1b315b29-17d6af66a391e3c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b31b86c-1396ef8cca80dc1e","8f44c0b1b315b29-17d6af66a391e3c1"]},"geometry":{"type":"LineString","coordinates":[[-83.668818,32.839047],[-83.668879,32.837488]]},"id":"8944c0b1b33ffff-13bfbf79bbd46931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b333920-17d7af5988eaba42","8f44c0b1b315b29-17d6af66a391e3c1"]},"geometry":{"type":"LineString","coordinates":[[-83.668879,32.837488],[-83.66888200000001,32.837259],[-83.66890000000001,32.836869]]},"id":"8944c0b1b33ffff-1796af619cc26b90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57038,32.869797000000005]},"id":"8f44c0b8b8096a4-17b7bfe08c86c384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56942000000001,32.870652]},"id":"8f44c0b8b8e38e2-17bfa2388946a9d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8e38e2-17bfa2388946a9d3","8f44c0b8b8096a4-17b7bfe08c86c384"]},"geometry":{"type":"LineString","coordinates":[[-83.57038,32.869797000000005],[-83.570181,32.869984],[-83.569755,32.870351],[-83.56942000000001,32.870652]]},"id":"8844c0b8b9fffff-17b7b10bdb2adbe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568425,32.871118]},"id":"8f44c0b8b8c6213-13f7e4a66582de7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8e38e2-17bfa2388946a9d3","8f44c0b8b8c6213-13f7e4a66582de7d"]},"geometry":{"type":"LineString","coordinates":[[-83.56942000000001,32.870652],[-83.56934000000001,32.870722],[-83.56926100000001,32.870773],[-83.569165,32.870821],[-83.568645,32.870984],[-83.56852400000001,32.87104],[-83.568425,32.871118]]},"id":"8944c0b8b8fffff-13d7f36d0860aef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56773700000001,32.871702]},"id":"8f44c0b8b8d164d-13dfe65461058165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8c6213-13f7e4a66582de7d","8f44c0b8b8d164d-13dfe65461058165"]},"geometry":{"type":"LineString","coordinates":[[-83.568425,32.871118],[-83.56773700000001,32.871702]]},"id":"8944c0b8b8fffff-1397e57d6a5b3633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57382000000001,32.866598]},"id":"8f44c0b8b960a1a-17d7d77a8c3aa4fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572473,32.867753]},"id":"8f44c0b8b94239c-13bfbac46e7e08fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b960a1a-17d7d77a8c3aa4fc","8f44c0b8b94239c-13bfbac46e7e08fe"]},"geometry":{"type":"LineString","coordinates":[[-83.57382000000001,32.866598],[-83.572473,32.867753]]},"id":"8944c0b8b97ffff-17d7b91f7578ab9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570231,32.86967]},"id":"8f44c0b8b80b865-17d7e03daadab9a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b94239c-13bfbac46e7e08fe","8f44c0b8b80b865-17d7e03daadab9a1"]},"geometry":{"type":"LineString","coordinates":[[-83.572473,32.867753],[-83.570231,32.86967]]},"id":"8844c0b8b9fffff-1397bd810f7a3514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646212,32.814703]},"id":"8f44c0b1a1ad9b0-17b7e6bd8f082c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64641830000001,32.8147016]},"id":"8f44c0b1a113258-17b6e63c9ffae7ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1ad9b0-17b7e6bd8f082c3b","8f44c0b1a113258-17b6e63c9ffae7ee"]},"geometry":{"type":"LineString","coordinates":[[-83.646212,32.814703],[-83.64641830000001,32.8147016]]},"id":"8944c0b1a13ffff-17b6f67d041f0dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a11c493-17b6f52ec8723922","8f44c0b1a113258-17b6e63c9ffae7ee"]},"geometry":{"type":"LineString","coordinates":[[-83.64641830000001,32.8147016],[-83.64685,32.8146987]]},"id":"8b44c0b1a11efff-17b7e5b5ac0249b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a11c493-17b6f52ec8723922","8f44c0b1a11c41a-17b6e502a96cb03b"]},"geometry":{"type":"LineString","coordinates":[[-83.64685,32.8146987],[-83.6469206,32.8146982]]},"id":"8a44c0b1a11ffff-17b6f518ba1f6eee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a11c41a-17b6e502a96cb03b","8f44c0b1a12b415-179ee099a52670f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6469206,32.8146982],[-83.64739800000001,32.814695],[-83.6476811,32.8146931],[-83.64872700000001,32.814686]]},"id":"8944c0b1a13ffff-179ef2ce2fff7a4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64948600000001,32.814681]},"id":"8f44c0b1a129314-1797febf400cba8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a129314-1797febf400cba8b","8f44c0b1a12b415-179ee099a52670f4"]},"geometry":{"type":"LineString","coordinates":[[-83.64872700000001,32.814686],[-83.64948600000001,32.814681]]},"id":"8a44c0b1a12ffff-179fffac74d2553b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66399100000001,32.846717000000005]},"id":"8f44c0a35822a11-17debb55ab7fb3e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35919651-139fbb5504feb44f","8f44c0a35822a11-17debb55ab7fb3e3"]},"geometry":{"type":"LineString","coordinates":[[-83.66399200000001,32.846024],[-83.66399100000001,32.846717000000005]]},"id":"8844c0a359fffff-17f7bb55546a91ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35804b6b-17dfbb58ca3b27ec","8f44c0a35822a11-17debb55ab7fb3e3"]},"geometry":{"type":"LineString","coordinates":[[-83.66399100000001,32.846717000000005],[-83.66398600000001,32.847144]]},"id":"8944c0a3583ffff-17d7bb573681841d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35804b6b-17dfbb58ca3b27ec","8f44c0a3580562b-17f7fb5aa462438f"]},"geometry":{"type":"LineString","coordinates":[[-83.66398600000001,32.847144],[-83.663983,32.847603]]},"id":"8a44c0a35807fff-17fefb59bc2d6691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3580562b-17f7fb5aa462438f","8f44c0a35801046-13d6bb5c81947a9f"]},"geometry":{"type":"LineString","coordinates":[[-83.663983,32.847603],[-83.66398000000001,32.847924]]},"id":"8a44c0a35807fff-17debb5b9b7541fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663973,32.84879]},"id":"8f44c0a35808696-13dffb60e7df5c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35801046-13d6bb5c81947a9f","8f44c0a35808696-13dffb60e7df5c34"]},"geometry":{"type":"LineString","coordinates":[[-83.66398000000001,32.847924],[-83.663973,32.84879]]},"id":"8944c0a3583ffff-13dfbb5eb820eb22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689183,32.88344]},"id":"8f44c0a23ccb2a1-17f67dd4a225ba40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689266,32.884591]},"id":"8f44c0a2356c393-13d77da0c1571bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2356c393-13d77da0c1571bd0","8f44c0a23ccb2a1-17f67dd4a225ba40"]},"geometry":{"type":"LineString","coordinates":[[-83.689183,32.88344],[-83.689223,32.883832000000005],[-83.68925300000001,32.884265],[-83.689266,32.884591]]},"id":"8744c0a23ffffff-13df7db5fd1fa5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691226,32.887532]},"id":"8f44c0a230aa2de-13f7f8d7c977cb66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2356c393-13d77da0c1571bd0","8f44c0a230aa2de-13f7f8d7c977cb66"]},"geometry":{"type":"LineString","coordinates":[[-83.689266,32.884591],[-83.689293,32.885117],[-83.68931900000001,32.885295],[-83.68933700000001,32.885365],[-83.689391,32.885529000000005],[-83.689491,32.885728],[-83.68966900000001,32.885973],[-83.689743,32.8861],[-83.68997300000001,32.886397],[-83.690099,32.886513],[-83.690436,32.886684],[-83.69060300000001,32.886755],[-83.690827,32.886961],[-83.69104,32.887264],[-83.69112700000001,32.887405],[-83.691226,32.887532]]},"id":"8844c0a231fffff-17b67bc17b76c6e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63936100000001,32.847195]},"id":"8f44c0a3466e034-17fef777652b39a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64000700000001,32.847544]},"id":"8f44c0a34668b61-17d7f5e3a9f13faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34668b61-17d7f5e3a9f13faa","8f44c0a3466e034-17fef777652b39a9"]},"geometry":{"type":"LineString","coordinates":[[-83.63936100000001,32.847195],[-83.64000700000001,32.847544]]},"id":"8a44c0a3466ffff-17f7f6ad8ed787cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34668b61-17d7f5e3a9f13faa","8f44c0a3429b500-13fff410cf2c7d10"]},"geometry":{"type":"LineString","coordinates":[[-83.64000700000001,32.847544],[-83.640754,32.848025]]},"id":"8744c0a34ffffff-17fff4fa350583a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64162300000001,32.848534]},"id":"8f44c0a309246de-13bff1f1a03fe8b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3429b500-13fff410cf2c7d10","8f44c0a309246de-13bff1f1a03fe8b9"]},"geometry":{"type":"LineString","coordinates":[[-83.640754,32.848025],[-83.64162300000001,32.848534]]},"id":"8844c0a343fffff-139ef30137f5cbf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65508200000001,32.793098]},"id":"8f44c0b1e128ab2-13f6d115cb2d266e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8dd018-13f6ecfbcfa49b9d","8f44c0b1e128ab2-13f6d115cb2d266e"]},"geometry":{"type":"LineString","coordinates":[[-83.65508200000001,32.793098],[-83.656058,32.793111],[-83.656384,32.793112],[-83.656762,32.793121]]},"id":"8744c0b1effffff-13feef08c0f7e3e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65805,32.793146]},"id":"8f44c0b1e8cd1a2-1396c9d6cfff2706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8dd018-13f6ecfbcfa49b9d","8f44c0b1e8cd1a2-1396c9d6cfff2706"]},"geometry":{"type":"LineString","coordinates":[[-83.656762,32.793121],[-83.657742,32.793137],[-83.65805,32.793146]]},"id":"8944c0b1e8fffff-13ffcb694b5cc052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8cd1a2-1396c9d6cfff2706","8f44c0b1e8cdb31-1396e938acb81aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.65805,32.793146],[-83.658303,32.793149]]},"id":"8b44c0b1e8cdfff-1397f987b1c1d5f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66001800000001,32.793174]},"id":"8f44c0b1eba6bb3-1397c508c5b24576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eba6bb3-1397c508c5b24576","8f44c0b1e8cdb31-1396e938acb81aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.658303,32.793149],[-83.66001800000001,32.793174]]},"id":"8744c0b1effffff-139ff720b6d9c6a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661152,32.793197]},"id":"8f44c0b1eb16c0d-13b6e2440fd63d1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eba6bb3-1397c508c5b24576","8f44c0b1eb16c0d-13b6e2440fd63d1e"]},"geometry":{"type":"LineString","coordinates":[[-83.66001800000001,32.793174],[-83.661152,32.793197]]},"id":"8844c0b1ebfffff-139ef3a66a8e38d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eb16c0d-13b6e2440fd63d1e","8f44c0b1eb26449-1397bd6b65c966bb"]},"geometry":{"type":"LineString","coordinates":[[-83.661152,32.793197],[-83.66284230000001,32.7932453],[-83.66293830000001,32.7932147],[-83.66298180000001,32.7931514],[-83.6629975,32.7929504],[-83.66303570000001,32.7927715],[-83.6630873,32.7926322],[-83.663137,32.792536000000005]]},"id":"8944c0b1eb3ffff-13f7ff654c2b3142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66367360000001,32.7914912]},"id":"8f44c0b1c49d94b-17febc1c06ab23b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c49d94b-17febc1c06ab23b0","8f44c0b1eb26449-1397bd6b65c966bb"]},"geometry":{"type":"LineString","coordinates":[[-83.663137,32.792536000000005],[-83.66323100000001,32.792341],[-83.663318,32.792111000000006],[-83.663382,32.792015],[-83.66362840000001,32.791767300000004],[-83.6636919,32.791641600000005],[-83.66367360000001,32.7914912]]},"id":"8744c0b1effffff-17befcb631b5ede1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.537374,32.811678]},"id":"8f44c0b839b0105-17d7f075469c33c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.536597,32.810713]},"id":"8f44c0b806e87b4-17f7f25ae3190e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b806e87b4-17f7f25ae3190e72","8f44c0b839b0105-17d7f075469c33c7"]},"geometry":{"type":"LineString","coordinates":[[-83.537374,32.811678],[-83.537163,32.81136],[-83.537003,32.811086],[-83.53679100000001,32.810879],[-83.536597,32.810713]]},"id":"8844c0b807fffff-1797f154f475994a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53545000000001,32.809655]},"id":"8f44c0b806e24a5-13d7f527c15b8d86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b806e24a5-13d7f527c15b8d86","8f44c0b806e87b4-17f7f25ae3190e72"]},"geometry":{"type":"LineString","coordinates":[[-83.536597,32.810713],[-83.536468,32.810603],[-83.536146,32.810294],[-83.535813,32.809984],[-83.53545000000001,32.809655]]},"id":"8944c0b806fffff-179ff3c1021330d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539384,32.815326]},"id":"8f44c0b83811096-13bfeb8d0d701546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53853600000001,32.815095]},"id":"8f44c0b8381254a-139fed9f0afd55f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b83811096-13bfeb8d0d701546","8f44c0b8381254a-139fed9f0afd55f4"]},"geometry":{"type":"LineString","coordinates":[[-83.539384,32.815326],[-83.53853600000001,32.815095]]},"id":"8a44c0b83817fff-13f7fc9602b93bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.537462,32.814805]},"id":"8f44c0b838a290a-17f7f03e4f8d2c0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8381254a-139fed9f0afd55f4","8f44c0b838a290a-17f7f03e4f8d2c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.53853600000001,32.815095],[-83.537462,32.814805]]},"id":"8944c0b838bffff-17bfeeeea07a1bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.536704,32.814518]},"id":"8f44c0b838b42e4-17b7f2180109f30f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b838b42e4-17b7f2180109f30f","8f44c0b838a290a-17f7f03e4f8d2c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.537462,32.814805],[-83.53695400000001,32.81467],[-83.536862,32.814631],[-83.536788,32.814587],[-83.536704,32.814518]]},"id":"8944c0b838bffff-179ff1334f6100b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b838b42e4-17b7f2180109f30f","8f44c0b839b0105-17d7f075469c33c7"]},"geometry":{"type":"LineString","coordinates":[[-83.536704,32.814518],[-83.536637,32.814436],[-83.53659300000001,32.814358],[-83.536567,32.814285000000005],[-83.536552,32.814197],[-83.536558,32.81374],[-83.536612,32.813302],[-83.53670500000001,32.812978],[-83.536809,32.812722],[-83.53688100000001,32.812491],[-83.53712800000001,32.812021],[-83.537231,32.811833],[-83.537374,32.811678]]},"id":"8744c0b83ffffff-13b7f1e1d05c820f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69435,32.831272000000006]},"id":"8f44c0b1932592d-179f713746b2a8f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696409,32.831798]},"id":"8f44c0b19ac0142-13f7ec306b10ecfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ac0142-13f7ec306b10ecfb","8f44c0b1932592d-179f713746b2a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.69435,32.831272000000006],[-83.694339,32.832046000000005],[-83.694359,32.832112],[-83.694387,32.832153000000005],[-83.694427,32.832195],[-83.694506,32.832247],[-83.694568,32.832271],[-83.694635,32.832279],[-83.695683,32.832295],[-83.695744,32.83229],[-83.69580500000001,32.832275],[-83.695873,32.832247],[-83.69610700000001,32.832059],[-83.696409,32.831798]]},"id":"8744c0b19ffffff-1397ff52391291ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69682800000001,32.830294]},"id":"8f44c0b19ae6931-17b7eb2a8f28053e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ac0142-13f7ec306b10ecfb","8f44c0b19ae6931-17b7eb2a8f28053e"]},"geometry":{"type":"LineString","coordinates":[[-83.696409,32.831798],[-83.69654200000001,32.831697000000005],[-83.696657,32.8316],[-83.696731,32.831496],[-83.696741,32.831443],[-83.696763,32.831249],[-83.696782,32.830875],[-83.69682800000001,32.830294]]},"id":"8844c0b19bfffff-17bffb68b6f8a767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698158,32.830142]},"id":"8f44c0b19a0911c-17d6e7eb408f119b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a0911c-17d6e7eb408f119b","8f44c0b19ae6931-17b7eb2a8f28053e"]},"geometry":{"type":"LineString","coordinates":[[-83.69682800000001,32.830294],[-83.696893,32.829538],[-83.696948,32.829403],[-83.696999,32.829334],[-83.69718800000001,32.82918],[-83.697333,32.829079],[-83.697451,32.829036],[-83.69759,32.829044],[-83.697704,32.829093],[-83.697906,32.829268],[-83.69800500000001,32.829369],[-83.698085,32.829459],[-83.69814000000001,32.829558],[-83.698172,32.829703],[-83.698176,32.829835],[-83.698158,32.830142]]},"id":"8944c0b19a3ffff-13d77996483af657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670091,32.853915]},"id":"8f44c0a35b54a1b-17f6ec712201234a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35b54a1b-17f6ec712201234a","8f44c0a35b50981-17f7ad068420cebb"]},"geometry":{"type":"LineString","coordinates":[[-83.669852,32.854121],[-83.670022,32.853988],[-83.670091,32.853915]]},"id":"8a44c0a35b57fff-17b7acb9a78e3848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657696,32.838068]},"id":"8f44c0b1b7aa660-13b6cab409fd0d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b7aa660-13b6cab409fd0d7a","8f44c0b1b71aad9-13d7c6fc2f44bc43"]},"geometry":{"type":"LineString","coordinates":[[-83.657696,32.838068],[-83.65921900000001,32.838124]]},"id":"8844c0b1b7fffff-13d6c8d81efe3e24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66000700000001,32.838158]},"id":"8f44c0b1b7198ec-13fec50faac1c32c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b71aad9-13d7c6fc2f44bc43","8f44c0b1b7198ec-13fec50faac1c32c"]},"geometry":{"type":"LineString","coordinates":[[-83.65921900000001,32.838124],[-83.66000700000001,32.838158]]},"id":"8a44c0b1b71ffff-13dee605ec7e71c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66708100000001,32.869306]},"id":"8f44c0a224042e0-17f6f3ca6449d150"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66377,32.87109]},"id":"8f44c0a2248e052-13dffbdfc5fbb965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a224042e0-17f6f3ca6449d150","8f44c0a2248e052-13dffbdfc5fbb965"]},"geometry":{"type":"LineString","coordinates":[[-83.66708100000001,32.869306],[-83.66679900000001,32.869444],[-83.666542,32.86958],[-83.666392,32.869628],[-83.66618700000001,32.869667],[-83.665907,32.869687],[-83.66557,32.869674],[-83.665288,32.869681],[-83.665052,32.869695],[-83.66480800000001,32.869734],[-83.664501,32.869802],[-83.664091,32.869911],[-83.663977,32.869963000000006],[-83.663866,32.870007],[-83.66378200000001,32.870064],[-83.66367100000001,32.870213],[-83.663639,32.870333],[-83.663638,32.870466],[-83.663674,32.870624],[-83.66372000000001,32.87079],[-83.663748,32.87099],[-83.66377,32.87109]]},"id":"8844c0a225fffff-17fff8d1d7768bec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663707,32.872988]},"id":"8f44c0a31b2e8f4-17f7bc0723bc0323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b2e8f4-17f7bc0723bc0323","8f44c0a2248e052-13dffbdfc5fbb965"]},"geometry":{"type":"LineString","coordinates":[[-83.66377,32.87109],[-83.66379900000001,32.871178],[-83.663835,32.871343],[-83.663818,32.871572],[-83.663683,32.872521],[-83.663683,32.872766],[-83.663707,32.872988]]},"id":"8644c0a37ffffff-139efbeb03dfca53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61932320000001,32.8518664]},"id":"8f44c0a362ae252-13f7a863030f0be1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6185035,32.8518155]},"id":"8f44c0a362854d2-13d7ba635441f7bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362ae252-13f7a863030f0be1","8f44c0a362854d2-13d7ba635441f7bc"]},"geometry":{"type":"LineString","coordinates":[[-83.61932320000001,32.8518664],[-83.6185035,32.8518155]]},"id":"8944c0a362bffff-13d7a96322dac916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177045,32.8517936]},"id":"8f44c0a36282d1b-13b72c56bb359744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362854d2-13d7ba635441f7bc","8f44c0a36282d1b-13b72c56bb359744"]},"geometry":{"type":"LineString","coordinates":[[-83.6185035,32.8518155],[-83.6177045,32.8517936]]},"id":"8a44c0a36287fff-13bfeb5d0553bc8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660358,32.829306]},"id":"8f44c0b1bccca09-13dec43442381c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66036600000001,32.828702]},"id":"8f44c0b1bcea81c-13d6c42f4f433195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bcea81c-13d6c42f4f433195","8f44c0b1bccca09-13dec43442381c8a"]},"geometry":{"type":"LineString","coordinates":[[-83.660358,32.829306],[-83.66036600000001,32.828702]]},"id":"8944c0b1bcfffff-139fc431c63c0440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660413,32.8258195]},"id":"8f44c0b1bc015a6-13dff411ebae1bab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bcea81c-13d6c42f4f433195","8f44c0b1bc015a6-13dff411ebae1bab"]},"geometry":{"type":"LineString","coordinates":[[-83.66036600000001,32.828702],[-83.660386,32.827441],[-83.660413,32.8258195]]},"id":"8844c0b1bdfffff-17dff420c5066f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660424,32.8245266]},"id":"8f44c0b1bc22da9-17b7e40b05fb86e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc22da9-17b7e40b05fb86e7","8f44c0b1bc015a6-13dff411ebae1bab"]},"geometry":{"type":"LineString","coordinates":[[-83.660413,32.8258195],[-83.660424,32.8245266]]},"id":"8944c0b1bc3ffff-13b7f40e7d745d9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66042900000001,32.823936]},"id":"8f44c0b1bd1bb81-17b6c407ea987a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc22da9-17b7e40b05fb86e7","8f44c0b1bd1bb81-17b6c407ea987a0b"]},"geometry":{"type":"LineString","coordinates":[[-83.660424,32.8245266],[-83.66042900000001,32.823936]]},"id":"8844c0b1bdfffff-17fed4097aa17b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66987200000001,32.825187]},"id":"8f44c0b1b826396-13bfecfa01ba3f5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67046,32.825198]},"id":"8f44c0b1b8242ed-13d6eb8a809e9af2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8242ed-13d6eb8a809e9af2","8f44c0b1b826396-13bfecfa01ba3f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.66987200000001,32.825187],[-83.67046,32.825198]]},"id":"8a44c0b1b827fff-13d7fc424a19b751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67233300000001,32.825158]},"id":"8f44c0b1b946c94-13bfe6f7efdc4848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8242ed-13d6eb8a809e9af2","8f44c0b1b946c94-13bfe6f7efdc4848"]},"geometry":{"type":"LineString","coordinates":[[-83.67046,32.825198],[-83.671879,32.825201],[-83.671932,32.82519],[-83.672032,32.825159],[-83.67214200000001,32.825153],[-83.67233300000001,32.825158]]},"id":"8844c0b1b9fffff-13d6e940057beb78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69309000000001,32.892832]},"id":"8f44c0a2376bcc6-17f6744ac7ccb272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230d9392-13df75c260577559","8f44c0a2376bcc6-17f6744ac7ccb272"]},"geometry":{"type":"LineString","coordinates":[[-83.69248900000001,32.89077],[-83.69288900000001,32.891702],[-83.69301700000001,32.892034],[-83.69305100000001,32.892142],[-83.69308600000001,32.892364],[-83.69309100000001,32.892542],[-83.69309000000001,32.892832]]},"id":"8844c0a237fffff-13d7f4d0dd5c462c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69307500000001,32.893922]},"id":"8f44c0a2374930b-139f745420de7f1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2376bcc6-17f6744ac7ccb272","8f44c0a2374930b-139f745420de7f1a"]},"geometry":{"type":"LineString","coordinates":[[-83.69309000000001,32.892832],[-83.69307500000001,32.893922]]},"id":"8844c0a237fffff-17bef44f731e8bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693061,32.895015]},"id":"8f44c0a23293018-13be745cec6be8e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23293018-13be745cec6be8e2","8f44c0a2374930b-139f745420de7f1a"]},"geometry":{"type":"LineString","coordinates":[[-83.69307500000001,32.893922],[-83.693061,32.895015]]},"id":"8944c0a232bffff-13f6f4588388af2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693055,32.89607]},"id":"8f44c0a05934c89-17dff460aee423f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23293018-13be745cec6be8e2","8f44c0a05934c89-17dff460aee423f3"]},"geometry":{"type":"LineString","coordinates":[[-83.693061,32.895015],[-83.693055,32.89607]]},"id":"8744c0a23ffffff-1796745ecbafafa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68090000000001,32.842709]},"id":"8f44c0a26c66341-1397b20d885b101c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c46d0b-1796945c21b34dfa","8f44c0a26c66341-1397b20d885b101c"]},"geometry":{"type":"LineString","coordinates":[[-83.68090000000001,32.842709],[-83.680717,32.842809],[-83.68048,32.842957000000006],[-83.680154,32.843183],[-83.679955,32.843344]]},"id":"8944c0a26c7ffff-17d7d33b7aedd493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c46d0b-1796945c21b34dfa","8f44c0a26c5594e-17ffd4f5eb033753"]},"geometry":{"type":"LineString","coordinates":[[-83.679955,32.843344],[-83.679709,32.843494]]},"id":"8944c0a26c7ffff-17d6f4a90a64dbca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687982,32.835029]},"id":"8f44c0b192b6371-13d7a0c34cd02a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192b0513-1397a0c2a1dfa0c2","8f44c0b192b6371-13d7a0c34cd02a2e"]},"geometry":{"type":"LineString","coordinates":[[-83.687982,32.835029],[-83.68800300000001,32.835017],[-83.688063,32.835009],[-83.68810400000001,32.835017],[-83.68813700000001,32.835062],[-83.68813700000001,32.835107],[-83.68811000000001,32.83514],[-83.68806400000001,32.835161],[-83.688023,32.835168],[-83.687983,32.835161]]},"id":"8a44c0b192b7fff-13fec089c0dff88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192b0513-1397a0c2a1dfa0c2","8f44c0b192b6371-13d7a0c34cd02a2e"]},"geometry":{"type":"LineString","coordinates":[[-83.687983,32.835161],[-83.68795700000001,32.835129],[-83.687942,32.835099],[-83.687959,32.835042],[-83.687982,32.835029]]},"id":"8a44c0b192b7fff-13ff90d1ef3dd44d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682041,32.825454]},"id":"8f44c0b195752f1-13f6cf44655894ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683366,32.825319]},"id":"8f44c0b195658db-1396ec084f1639d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b195752f1-13f6cf44655894ef","8f44c0b195658db-1396ec084f1639d5"]},"geometry":{"type":"LineString","coordinates":[[-83.682041,32.825454],[-83.682529,32.825408],[-83.683366,32.825319]]},"id":"8944c0b1957ffff-13bfbda635d722fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b195658db-1396ec084f1639d5","8f44c0b191b3136-13bee8aec588519e"]},"geometry":{"type":"LineString","coordinates":[[-83.683366,32.825319],[-83.68356,32.8253],[-83.684398,32.825055],[-83.68473800000001,32.824951]]},"id":"8744c0b19ffffff-13be8a5955685098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68516000000001,32.824852]},"id":"8f44c0b191b1c5a-17fe87a70737d547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b191b1c5a-17fe87a70737d547","8f44c0b191b3136-13bee8aec588519e"]},"geometry":{"type":"LineString","coordinates":[[-83.68473800000001,32.824951],[-83.68516000000001,32.824852]]},"id":"8a44c0b191b7fff-139ff82ae74e317c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670309,32.802483]},"id":"8f44c0b18d646cb-13dfebe8eb7f72cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18996b56-13d7e91207f27bc9","8f44c0b18d646cb-13dfebe8eb7f72cb"]},"geometry":{"type":"LineString","coordinates":[[-83.670309,32.802483],[-83.67095400000001,32.80247],[-83.67147200000001,32.802466]]},"id":"8744c0b18ffffff-13dffa7d7976e49f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189a37b4-13b6a46fc58d80a7","8f44c0b18996b56-13d7e91207f27bc9"]},"geometry":{"type":"LineString","coordinates":[[-83.67147200000001,32.802466],[-83.67309900000001,32.802438],[-83.67337,32.802436]]},"id":"8944c0b189bffff-13bfb6c0e3c3faaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67435400000001,32.802424]},"id":"8f44c0b189acd40-13bfa208c5c77c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189a37b4-13b6a46fc58d80a7","8f44c0b189acd40-13bfa208c5c77c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.67337,32.802436],[-83.67435400000001,32.802424]]},"id":"8944c0b189bffff-13bee33c436ca731"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62375800000001,32.87276]},"id":"8f44c0a33c142f2-17f71d8f4fe0f2e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33c142f2-17f71d8f4fe0f2e7","8f44c0a33c12112-17979f2d0514e485"]},"geometry":{"type":"LineString","coordinates":[[-83.62375800000001,32.87276],[-83.623429,32.872863],[-83.62324000000001,32.87295],[-83.623096,32.873044]]},"id":"8a44c0a33c17fff-17bfde63aa7c15b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a223b2c81-13bf9cabae9abb7b","8f44c0a220598c5-179f9847e204cce5"]},"geometry":{"type":"LineString","coordinates":[[-83.67834900000001,32.873848],[-83.676551,32.87454]]},"id":"8844c0a221fffff-13f7da79c97e0a1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67499600000001,32.875228]},"id":"8f44c0a22760d80-13ffa0778d6bcead"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22760d80-13ffa0778d6bcead","8f44c0a223b2c81-13bf9cabae9abb7b"]},"geometry":{"type":"LineString","coordinates":[[-83.676551,32.87454],[-83.67652600000001,32.874615],[-83.67646400000001,32.874718],[-83.676197,32.875109],[-83.67614300000001,32.875163],[-83.676044,32.875211],[-83.675979,32.875228],[-83.675855,32.875237000000006],[-83.67499600000001,32.875228]]},"id":"8744c0a22ffffff-139fde4c618522fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673364,32.875244]},"id":"8f44c0a2277299e-13f7a47382a5b60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22760d80-13ffa0778d6bcead","8f44c0a2277299e-13f7a47382a5b60a"]},"geometry":{"type":"LineString","coordinates":[[-83.67499600000001,32.875228],[-83.673364,32.875244]]},"id":"8944c0a2277ffff-13fea27584e910f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2277299e-13f7a47382a5b60a","8f44c0a2271b0a2-139eea4089cd3c5b"]},"geometry":{"type":"LineString","coordinates":[[-83.673364,32.875244],[-83.672938,32.875242],[-83.672148,32.875247],[-83.67187,32.875268000000005],[-83.67139800000001,32.875330000000005],[-83.671239,32.875369],[-83.67108800000001,32.875439],[-83.67098800000001,32.875511]]},"id":"8844c0a227fffff-139fe76683ff0132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2271b0a2-139eea4089cd3c5b","8f44c0a2278bc14-17dfaf53e2ea5387"]},"geometry":{"type":"LineString","coordinates":[[-83.67098800000001,32.875511],[-83.670392,32.875933],[-83.670337,32.875964],[-83.67027,32.875987],[-83.670191,32.876004],[-83.670134,32.876005],[-83.670085,32.876002],[-83.66965,32.875884],[-83.669566,32.87587],[-83.66951300000001,32.875869],[-83.66945000000001,32.875886],[-83.668909,32.876204]]},"id":"8844c0a227fffff-179ebcc0b219a448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2278bc14-17dfaf53e2ea5387","8f44c0a226a412a-17d7f02906a59d35"]},"geometry":{"type":"LineString","coordinates":[[-83.668909,32.876204],[-83.66856800000001,32.876418]]},"id":"8944c0a227bffff-179eefbe787ea849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a226b5281-17f7b2874aadaa34","8f44c0a226a412a-17d7f02906a59d35"]},"geometry":{"type":"LineString","coordinates":[[-83.66856800000001,32.876418],[-83.66827500000001,32.876565],[-83.667989,32.876693],[-83.667598,32.87686]]},"id":"8844c0a227fffff-17dff15648956984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666161,32.8776388]},"id":"8f44c0a22696245-13def60968e59cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22696245-13def60968e59cfb","8f44c0a226b5281-17f7b2874aadaa34"]},"geometry":{"type":"LineString","coordinates":[[-83.667598,32.87686],[-83.66722700000001,32.877018],[-83.666937,32.877158],[-83.666161,32.8776388]]},"id":"8944c0a226bffff-17dfb4509dc2861a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668068,32.867908]},"id":"8f44c0a2250bcab-139eb161875e856e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669083,32.867125]},"id":"8f44c0a2252baf1-17b7aee72b345a6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2252baf1-17b7aee72b345a6f","8f44c0a2250bcab-139eb161875e856e"]},"geometry":{"type":"LineString","coordinates":[[-83.668068,32.867908],[-83.66825100000001,32.867781],[-83.66861,32.867544],[-83.66877600000001,32.867424],[-83.668891,32.867322],[-83.669083,32.867125]]},"id":"8944c0a2253ffff-13b6b019b185d8da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2252baf1-17b7aee72b345a6f","8f44c0a221a6819-17fee2c4efdf811a"]},"geometry":{"type":"LineString","coordinates":[[-83.669083,32.867125],[-83.66936700000001,32.866822],[-83.66950700000001,32.866704],[-83.66959800000001,32.866639],[-83.66978300000001,32.866543],[-83.66998600000001,32.86647],[-83.670123,32.866445],[-83.67026800000001,32.86643],[-83.67202900000001,32.866415],[-83.672317,32.866422],[-83.67256300000001,32.866446],[-83.672803,32.866484],[-83.672993,32.866532],[-83.673285,32.866621],[-83.673429,32.866658],[-83.67353100000001,32.866675],[-83.673625,32.866681],[-83.673857,32.86668],[-83.674053,32.86665]]},"id":"8744c0a22ffffff-17b7a90d185fdf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61307000000001,32.843082]},"id":"8f44c0a360b665b-17ff77a741f77674"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360b665b-17ff77a741f77674","8f44c0a3656aa72-13ff38b18796d894"]},"geometry":{"type":"LineString","coordinates":[[-83.612644,32.842256],[-83.612661,32.842275],[-83.61296800000001,32.842871],[-83.61307000000001,32.843082]]},"id":"8744c0a36ffffff-13ff7829835d9734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360b665b-17ff77a741f77674","8f44c0a360b30e8-17ff36dfedddb36a"]},"geometry":{"type":"LineString","coordinates":[[-83.61307000000001,32.843082],[-83.61338900000001,32.843693]]},"id":"8a44c0a360b7fff-17bf374391cce868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613842,32.84462]},"id":"8f44c0a36083cd2-13bfb5c4c3b9775b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360b30e8-17ff36dfedddb36a","8f44c0a36083cd2-13bfb5c4c3b9775b"]},"geometry":{"type":"LineString","coordinates":[[-83.61338900000001,32.843693],[-83.613842,32.84462]]},"id":"8944c0a360bffff-179ff6525eaa9c45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614447,32.845395]},"id":"8f44c0a3608848b-1397f44aad94145f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36083cd2-13bfb5c4c3b9775b","8f44c0a3608848b-1397f44aad94145f"]},"geometry":{"type":"LineString","coordinates":[[-83.613842,32.84462],[-83.613995,32.844929],[-83.61409400000001,32.845092],[-83.614168,32.845184],[-83.61422900000001,32.845239],[-83.614447,32.845395]]},"id":"8944c0a360bffff-13b7b52206d9647b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62760920000001,32.8327089]},"id":"8f44c0ba92ee1b0-139f1428449aa90e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62773510000001,32.832785900000005]},"id":"8f44c0ba92ee159-13df33d99bde3259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92ee1b0-139f1428449aa90e","8f44c0ba92ee159-13df33d99bde3259"]},"geometry":{"type":"LineString","coordinates":[[-83.62760920000001,32.8327089],[-83.62773510000001,32.832785900000005]]},"id":"8c44c0ba92ee1ff-13b73400ef5798f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62836700000001,32.833177]},"id":"8f44c0ba92ed6f2-17bfb24ea9fc8226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92ee159-13df33d99bde3259","8f44c0ba92ed6f2-17bfb24ea9fc8226"]},"geometry":{"type":"LineString","coordinates":[[-83.62773510000001,32.832785900000005],[-83.62836700000001,32.833177]]},"id":"8a44c0ba92effff-13d7731415aa0368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba925b519-17d790a6e5ccf743","8f44c0ba92ed6f2-17bfb24ea9fc8226"]},"geometry":{"type":"LineString","coordinates":[[-83.62836700000001,32.833177],[-83.629045,32.833596]]},"id":"8844c0ba93fffff-17d7917ac277db57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba925b519-17d790a6e5ccf743","8f44c0ba925b311-17b79001e2bed204"]},"geometry":{"type":"LineString","coordinates":[[-83.629045,32.833596],[-83.629309,32.833748]]},"id":"8b44c0ba925bfff-17f710546deeb438"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629981,32.8341371]},"id":"8f44c0a345a0998-1797be5de3e8e63d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345a0998-1797be5de3e8e63d","8f44c0ba925b311-17b79001e2bed204"]},"geometry":{"type":"LineString","coordinates":[[-83.629309,32.833748],[-83.629981,32.8341371]]},"id":"8944c0a345bffff-179f2f2fe7e0fa46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345a0998-1797be5de3e8e63d","8f44c0a34512722-17bf2c9aa1fe04a0"]},"geometry":{"type":"LineString","coordinates":[[-83.629981,32.8341371],[-83.63070300000001,32.834581]]},"id":"8944c0a345bffff-17b77d7c43353dea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631444,32.8350157]},"id":"8f44c0a3451ec2c-13bfdacb8daa5856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34512722-17bf2c9aa1fe04a0","8f44c0a3451ec2c-13bfdacb8daa5856"]},"geometry":{"type":"LineString","coordinates":[[-83.63070300000001,32.834581],[-83.631444,32.8350157]]},"id":"8844c0a345fffff-13b70bb31833fa50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632225,32.8354872]},"id":"8f44c0a3451d71e-13f788e361334b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3451ec2c-13bfdacb8daa5856","8f44c0a3451d71e-13f788e361334b64"]},"geometry":{"type":"LineString","coordinates":[[-83.631444,32.8350157],[-83.632225,32.8354872]]},"id":"8a44c0a3451ffff-13d729d77871864b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450a308-13d7d778f66a1247","8f44c0a3451d71e-13f788e361334b64"]},"geometry":{"type":"LineString","coordinates":[[-83.632225,32.8354872],[-83.63280490000001,32.835841300000006]]},"id":"8944c0a3453ffff-13d7382e3feb7768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450a308-13d7d778f66a1247","8f44c0a3450bca9-13f7772afbc87bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.63280490000001,32.835841300000006],[-83.6329297,32.8359175]]},"id":"8a44c0a3450ffff-13dfa751ff7d7b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6330483,32.8359899]},"id":"8f44c0a3450b111-139fb6e0db6608e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450b111-139fb6e0db6608e3","8f44c0a3450bca9-13f7772afbc87bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.6329297,32.8359175],[-83.6330483,32.8359899]]},"id":"8b44c0a3450bfff-13971705e51ad4b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6332127,32.8360977]},"id":"8f44c0a3450baf4-13f7167a1be9f218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450b111-139fb6e0db6608e3","8f44c0a3450baf4-13f7167a1be9f218"]},"geometry":{"type":"LineString","coordinates":[[-83.6330483,32.8359899],[-83.6332127,32.8360977]]},"id":"8b44c0a3450bfff-13bf66ad7614293f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6337939,32.836434100000005]},"id":"8f44c0a3455460a-17b7550edb575d89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450baf4-13f7167a1be9f218","8f44c0a3455460a-17b7550edb575d89"]},"geometry":{"type":"LineString","coordinates":[[-83.6332127,32.8360977],[-83.6337939,32.836434100000005]]},"id":"8844c0a345fffff-13df35c479a842d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634568,32.836937]},"id":"8f44c0a345420a8-17ffa32b0ba8d04c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345420a8-17ffa32b0ba8d04c","8f44c0a3455460a-17b7550edb575d89"]},"geometry":{"type":"LineString","coordinates":[[-83.6337939,32.836434100000005],[-83.634479,32.836859000000004],[-83.634568,32.836937]]},"id":"8944c0a3457ffff-17df3419cb294d75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71772630000001,32.9256933]},"id":"8f44c0a2aa60716-179e78251c657fa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71770790000001,32.925758300000005]},"id":"8f44c0a2aa60616-17d6f830926a37f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa60716-179e78251c657fa8","8f44c0a2aa60616-17d6f830926a37f2"]},"geometry":{"type":"LineString","coordinates":[[-83.71772630000001,32.9256933],[-83.71770790000001,32.925758300000005]]},"id":"8c44c0a2aa607ff-17b6b82adf4583d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718332,32.925781]},"id":"8f44c0a2aa6190b-17d736aa854932db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa6190b-17d736aa854932db","8f44c0a2aa60616-17d6f830926a37f2"]},"geometry":{"type":"LineString","coordinates":[[-83.71770790000001,32.925758300000005],[-83.71769,32.925811],[-83.71768,32.925922],[-83.71769400000001,32.925956],[-83.717736,32.925976],[-83.717808,32.925995],[-83.71790700000001,32.926008],[-83.71801400000001,32.926009],[-83.718038,32.926011],[-83.718125,32.926009],[-83.71819,32.925986],[-83.718287,32.925897],[-83.718309,32.925851],[-83.718332,32.925781]]},"id":"8a44c0a2aa67fff-17bef78900b755e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bd8a969-17defc00a69ef13c","8f44c0b0bca6b0b-17fe2d71ec2cdbc9"]},"geometry":{"type":"LineString","coordinates":[[-83.7226998,32.8299407],[-83.72247700000001,32.830164],[-83.722262,32.830391],[-83.72218500000001,32.830489],[-83.722109,32.830605000000006]]},"id":"8844c0b0bdfffff-17b63cc119dd8f71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723966,32.834294]},"id":"8f44c0b0bcc070e-17ffe8e945f9ba7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bca6b0b-17fe2d71ec2cdbc9","8f44c0b0bcc070e-17ffe8e945f9ba7e"]},"geometry":{"type":"LineString","coordinates":[[-83.722109,32.830605000000006],[-83.722009,32.830819000000005],[-83.72196500000001,32.830967],[-83.721924,32.831184],[-83.721919,32.831373],[-83.72192600000001,32.831463],[-83.72196000000001,32.831629],[-83.722064,32.831986],[-83.72218600000001,32.832327],[-83.72232100000001,32.832635],[-83.722401,32.83278],[-83.72252300000001,32.832954],[-83.722671,32.833143],[-83.72282600000001,32.833323],[-83.723009,32.833508],[-83.72349100000001,32.833885],[-83.72376700000001,32.834106000000006],[-83.723966,32.834294]]},"id":"8844c0b0bdfffff-13f6fc4192a30412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72460500000001,32.835434]},"id":"8f44c0b0bcc875d-13d66759e92657a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcc070e-17ffe8e945f9ba7e","8f44c0b0bcc875d-13d66759e92657a5"]},"geometry":{"type":"LineString","coordinates":[[-83.723966,32.834294],[-83.724067,32.83442],[-83.724332,32.834791],[-83.724508,32.835161],[-83.72456700000001,32.835307],[-83.72460500000001,32.835434]]},"id":"8944c0b0bcfffff-13d6a808e0119b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7248115,32.838023500000006]},"id":"8f44c0b0b0b68d0-1396b6d8d4ee2a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b0b68d0-1396b6d8d4ee2a08","8f44c0b0bcc875d-13d66759e92657a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72460500000001,32.835434],[-83.724649,32.835616],[-83.724677,32.835832],[-83.724698,32.835988],[-83.724839,32.837472000000005],[-83.724845,32.837631],[-83.724844,32.837747],[-83.7248115,32.838023500000006]]},"id":"8744c0b0bffffff-17fff6f9c84f2450"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701879,32.743957]},"id":"8f44c0b044e6d19-13ff7ed5acd01bc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b045a914a-13bedf55c570cc22","8f44c0b044e6d19-13ff7ed5acd01bc6"]},"geometry":{"type":"LineString","coordinates":[[-83.701879,32.743957],[-83.701924,32.743467],[-83.70201,32.743004],[-83.70208600000001,32.741483],[-83.702067,32.741303],[-83.70202400000001,32.741144000000006],[-83.701914,32.740915],[-83.70167400000001,32.74058]]},"id":"8844c0b045fffff-17b65e952d3b12c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701476,32.738038]},"id":"8f44c0b31248822-13ffdfd18695347a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b31248822-13ffdfd18695347a","8f44c0b045a914a-13bedf55c570cc22"]},"geometry":{"type":"LineString","coordinates":[[-83.70167400000001,32.74058],[-83.701497,32.740282],[-83.70144,32.74017],[-83.70139900000001,32.74002],[-83.701392,32.739815],[-83.70143900000001,32.739357000000005],[-83.701465,32.739026],[-83.701474,32.738832],[-83.701476,32.738038]]},"id":"8744c0b04ffffff-17b75fd7ce476fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72502890000001,32.8133846]},"id":"8f44c0b08516335-13ff6650ffe6b51f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08450688-13f6f1fc1c5d67e5","8f44c0b08516335-13ff6650ffe6b51f"]},"geometry":{"type":"LineString","coordinates":[[-83.72680310000001,32.8191277],[-83.72656400000001,32.818826],[-83.72646900000001,32.818693],[-83.726391,32.818561],[-83.726352,32.818474],[-83.726308,32.818361],[-83.726267,32.81821],[-83.72624300000001,32.818035],[-83.72623700000001,32.817093],[-83.72624400000001,32.815165],[-83.726242,32.814752],[-83.726236,32.814515],[-83.72621600000001,32.81429],[-83.72618800000001,32.814188],[-83.726155,32.814121],[-83.726133,32.814076],[-83.726061,32.813961],[-83.725954,32.813847],[-83.725823,32.813754],[-83.72570800000001,32.813684],[-83.725576,32.813622],[-83.725204,32.813465],[-83.72502890000001,32.8133846]]},"id":"8844c0b085fffff-13f6e3915b7b04c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72450660000001,32.813110300000005]},"id":"8f44c0b0e24b750-13d7f7976256fb55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08516335-13ff6650ffe6b51f","8f44c0b0e24b750-13d7f7976256fb55"]},"geometry":{"type":"LineString","coordinates":[[-83.72502890000001,32.8133846],[-83.72476400000001,32.813263],[-83.724552,32.813142],[-83.72450660000001,32.813110300000005]]},"id":"8844c0b085fffff-139ea6f6c0114b1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7242581,32.8129271]},"id":"8f44c0b085a4971-13df7832bce001ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b085a4971-13df7832bce001ed","8f44c0b0e24b750-13d7f7976256fb55"]},"geometry":{"type":"LineString","coordinates":[[-83.72450660000001,32.813110300000005],[-83.7244462,32.813068200000004],[-83.724321,32.812981],[-83.7242581,32.8129271]]},"id":"8a44c0b0e24ffff-139e37e63a913b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72383020000001,32.812441]},"id":"8f44c0b0e25d760-139fa93e29f75704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b085a4971-13df7832bce001ed","8f44c0b0e25d760-139fa93e29f75704"]},"geometry":{"type":"LineString","coordinates":[[-83.7242581,32.8129271],[-83.72416700000001,32.812849],[-83.724095,32.81277],[-83.72383020000001,32.812441]]},"id":"8944c0b0e27ffff-13be38bd389c1e8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7237594,32.812351500000005]},"id":"8f44c0b0e25d090-13f7b96a6220a9d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e25d090-13f7b96a6220a9d9","8f44c0b0e25d760-139fa93e29f75704"]},"geometry":{"type":"LineString","coordinates":[[-83.72383020000001,32.812441],[-83.72379400000001,32.812396],[-83.7237594,32.812351500000005]]},"id":"8b44c0b0e25dfff-1397e9546c30b6c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723601,32.8121481]},"id":"8f44c0b0e25c221-13feb9cd6da8f22e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e25c221-13feb9cd6da8f22e","8f44c0b0e25d090-13f7b96a6220a9d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7237594,32.812351500000005],[-83.723601,32.8121481]]},"id":"8a44c0b0e25ffff-13be299bed12dbfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e25c221-13feb9cd6da8f22e","8f44c0b0e25c1aa-13f7ba2559e4e9af"]},"geometry":{"type":"LineString","coordinates":[[-83.723601,32.8121481],[-83.7234603,32.8119673]]},"id":"8b44c0b0e25cfff-13b639f96c42125d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72330020000001,32.811761600000004]},"id":"8f44c0b0e251ac2-17f72a8961dfc1a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e251ac2-17f72a8961dfc1a1","8f44c0b0e25c1aa-13f7ba2559e4e9af"]},"geometry":{"type":"LineString","coordinates":[[-83.7234603,32.8119673],[-83.72330020000001,32.811761600000004]]},"id":"8944c0b0e27ffff-13b77a576c6ed5c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3601a6d0-13bff03d252ef57f","8f44c0a3601e324-17dfef4c8a6f2a63"]},"geometry":{"type":"LineString","coordinates":[[-83.61649200000001,32.844254],[-83.616107,32.844814]]},"id":"8a44c0a3601ffff-17ffefc4d37175d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615318,32.845979]},"id":"8f44c0a360d456c-1397f22a4434764f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3601a6d0-13bff03d252ef57f","8f44c0a360d456c-1397f22a4434764f"]},"geometry":{"type":"LineString","coordinates":[[-83.616107,32.844814],[-83.615318,32.845979]]},"id":"8944c0a360fffff-1397f133b26483ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.540959,32.83383]},"id":"8f44c0b8e5b56db-17d7e7b4a74bb253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b9d95a05b-17dff222b1afa34e","8f44c0b8e5b56db-17d7e7b4a74bb253"]},"geometry":{"type":"LineString","coordinates":[[-83.540959,32.83383],[-83.54082600000001,32.833979],[-83.54074100000001,32.834088],[-83.540183,32.834846],[-83.540008,32.835044],[-83.53988600000001,32.835147],[-83.53974000000001,32.835245],[-83.539581,32.835333],[-83.539474,32.835375],[-83.539347,32.835417],[-83.539236,32.835448],[-83.53854700000001,32.835555],[-83.538319,32.8356],[-83.53819800000001,32.835633],[-83.53805200000001,32.83569],[-83.53790400000001,32.835763],[-83.537824,32.835811],[-83.537728,32.835881],[-83.537704,32.8359],[-83.537587,32.835994],[-83.53728100000001,32.836269],[-83.537074,32.836441],[-83.536933,32.836543],[-83.536727,32.836664],[-83.5366869,32.8366844]]},"id":"8544c0bbfffffff-13b7fca61818e2e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53483800000001,32.837169]},"id":"8f44c0b9d80e223-17fff6a64d7a19a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b9d95a05b-17dff222b1afa34e","8f44c0b9d80e223-17fff6a64d7a19a1"]},"geometry":{"type":"LineString","coordinates":[[-83.5366869,32.8366844],[-83.536578,32.83674],[-83.53641,32.836807],[-83.536195,32.836872],[-83.536046,32.836909],[-83.535313,32.837063],[-83.53483800000001,32.837169]]},"id":"8844c0b9d9fffff-17fff45e75fda7f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b9d80e223-17fff6a64d7a19a1","8f44c0b9d819cea-17bff893b58b0a76"]},"geometry":{"type":"LineString","coordinates":[[-83.53483800000001,32.837169],[-83.534647,32.837211],[-83.534496,32.83726],[-83.534329,32.837328],[-83.534155,32.837418],[-83.53404850000001,32.8374777]]},"id":"8944c0b9d83ffff-17d7f7a2b5dad332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.504991,32.837449]},"id":"8f44c0b9c6de129-17bdbf84aff03a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b9d819cea-17bff893b58b0a76","8f44c0b9c6de129-17bdbf84aff03a0d"]},"geometry":{"type":"LineString","coordinates":[[-83.53404850000001,32.8374777],[-83.5338473,32.837590500000005],[-83.532796,32.83818],[-83.5326058,32.838284200000004],[-83.532148,32.838535],[-83.53196200000001,32.838627],[-83.531794,32.838689],[-83.531616,32.838730000000005],[-83.53139800000001,32.838755],[-83.53112,32.838752],[-83.530946,32.838738],[-83.5286248,32.838451400000004],[-83.528424,32.838426600000005],[-83.5276056,32.838325600000005],[-83.52696440000001,32.838246500000004],[-83.5265162,32.8381911],[-83.52633700000001,32.838169],[-83.525886,32.838099],[-83.52541400000001,32.838011],[-83.52519000000001,32.837963],[-83.524845,32.837902],[-83.52455900000001,32.837864],[-83.524296,32.837848],[-83.52409,32.837843],[-83.5239145,32.8378497],[-83.523882,32.837851],[-83.522654,32.837967],[-83.52185800000001,32.83804],[-83.5216839,32.8380493],[-83.521652,32.838051],[-83.521365,32.838048],[-83.521106,32.838023],[-83.52092680000001,32.8379934],[-83.520888,32.837987000000005],[-83.520644,32.837933],[-83.52017430000001,32.8378071],[-83.520047,32.837773],[-83.51979820000001,32.8377031],[-83.51927500000001,32.837556],[-83.51903200000001,32.837455],[-83.51890900000001,32.837397],[-83.51872800000001,32.837299],[-83.518528,32.837172],[-83.5177925,32.8365432],[-83.517156,32.835999],[-83.5167253,32.8356307],[-83.51653160000001,32.8354711],[-83.516237,32.835234],[-83.51594100000001,32.835079],[-83.515617,32.834984],[-83.51525500000001,32.834955],[-83.51495700000001,32.834975],[-83.51490790000001,32.834980300000005],[-83.513526,32.83513],[-83.513046,32.835178],[-83.512753,32.835192],[-83.512386,32.835172],[-83.51209700000001,32.835133],[-83.510993,32.834899],[-83.50904100000001,32.834486000000005],[-83.508857,32.834463],[-83.50860200000001,32.83446],[-83.508363,32.834491],[-83.508126,32.834555],[-83.50781,32.834691],[-83.50694200000001,32.835116],[-83.50674000000001,32.835237],[-83.50656400000001,32.835374],[-83.50653600000001,32.835402],[-83.50637400000001,32.835561000000006],[-83.50621000000001,32.835777],[-83.504991,32.837449]]},"id":"8644c0b9fffffff-179dfd2c8832affe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154de045-13b7f4b9a6308a5d","8f44c0b154ddd0b-13b6d2f52d9e6644"]},"geometry":{"type":"LineString","coordinates":[[-83.65431500000001,32.756538],[-83.653591,32.756543]]},"id":"8a44c0b154dffff-13b7d3d7695bd6ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154de045-13b7f4b9a6308a5d","8f44c0b10b2d403-13def684647d16e6"]},"geometry":{"type":"LineString","coordinates":[[-83.653591,32.756543],[-83.65285700000001,32.756605]]},"id":"8644c0b17ffffff-13bed59f059de07b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652106,32.756104]},"id":"8f44c0b10b23a60-1397d859cd2ec76b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b23a60-1397d859cd2ec76b","8f44c0b10b2d403-13def684647d16e6"]},"geometry":{"type":"LineString","coordinates":[[-83.65285700000001,32.756605],[-83.652106,32.756104]]},"id":"8944c0b10b3ffff-13b7d76f15239905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651521,32.756124]},"id":"8f44c0b10b04ba2-13b7d9c76423f6c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b23a60-1397d859cd2ec76b","8f44c0b10b04ba2-13b7d9c76423f6c1"]},"geometry":{"type":"LineString","coordinates":[[-83.652106,32.756104],[-83.651521,32.756124]]},"id":"8944c0b10b3ffff-139fd91098a55ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65643,32.756681]},"id":"8f44c0b157b44dc-13ffedcb40a91886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b157b44dc-13ffedcb40a91886","8f44c0b154e8222-139ecece0d383166"]},"geometry":{"type":"LineString","coordinates":[[-83.65643,32.756681],[-83.65638700000001,32.756602],[-83.65601600000001,32.75611]]},"id":"8844c0b155fffff-13dfce4994505f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65536800000001,32.755364]},"id":"8f44c0b154e3aa9-17d6d06305735cb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154e3aa9-17d6d06305735cb1","8f44c0b154e8222-139ecece0d383166"]},"geometry":{"type":"LineString","coordinates":[[-83.65601600000001,32.75611],[-83.655641,32.755602],[-83.655579,32.755505],[-83.65549700000001,32.755426],[-83.655465,32.755408],[-83.65536800000001,32.755364]]},"id":"8944c0b154fffff-179fff8acb884998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672301,32.746288]},"id":"8f44c0b15951a34-139ea70be0a72f20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67310640000001,32.7463637]},"id":"8f44c0b15943950-13dff514879b5cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15951a34-139ea70be0a72f20","8f44c0b15943950-13dff514879b5cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.672301,32.746288],[-83.67245910000001,32.7463345],[-83.67310640000001,32.7463637]]},"id":"8944c0b1597ffff-13bfe611d84f849d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67335820000001,32.746377]},"id":"8f44c0b15941193-13d7a47729a9c4ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15941193-13d7a47729a9c4ee","8f44c0b15943950-13dff514879b5cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.67310640000001,32.7463637],[-83.67335820000001,32.746377]]},"id":"8a44c0b15947fff-13d7a4c5d9d09973"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67391810000001,32.746400300000005]},"id":"8f44c0b1596a0c9-13f6b31931dfe59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15941193-13d7a47729a9c4ee","8f44c0b1596a0c9-13f6b31931dfe59f"]},"geometry":{"type":"LineString","coordinates":[[-83.67335820000001,32.746377],[-83.67391810000001,32.746400300000005]]},"id":"8944c0b1597ffff-13def3c820240ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67432070000001,32.7464171]},"id":"8f44c0b1596b9b4-13feb21d96dc31f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1596b9b4-13feb21d96dc31f3","8f44c0b1596a0c9-13f6b31931dfe59f"]},"geometry":{"type":"LineString","coordinates":[[-83.67391810000001,32.746400300000005],[-83.67432070000001,32.7464171]]},"id":"8a44c0b1596ffff-13fff29b6b45a4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6747388,32.7464345]},"id":"8f44c0b15969c4c-13ffb11846378952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1596b9b4-13feb21d96dc31f3","8f44c0b15969c4c-13ffb11846378952"]},"geometry":{"type":"LineString","coordinates":[[-83.67432070000001,32.7464171],[-83.6747388,32.7464345]]},"id":"8a44c0b1596ffff-13f6a19afee258b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06598284-13979ea8af8503b4","8f44c0b15969c4c-13ffb11846378952"]},"geometry":{"type":"LineString","coordinates":[[-83.6747388,32.7464345],[-83.67573660000001,32.746476]]},"id":"8844c0b065fffff-13969fe07b862982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677442,32.746547]},"id":"8f44c0b065899b5-13bffa7ecefd7181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06598284-13979ea8af8503b4","8f44c0b065899b5-13bffa7ecefd7181"]},"geometry":{"type":"LineString","coordinates":[[-83.67573660000001,32.746476],[-83.677442,32.746547]]},"id":"8944c0b065bffff-13bfbc93ba7d34b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680559,32.747028]},"id":"8f44c0b06552210-13fe92e2aa83dc50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b065899b5-13bffa7ecefd7181","8f44c0b06552210-13fe92e2aa83dc50"]},"geometry":{"type":"LineString","coordinates":[[-83.677442,32.746547],[-83.67768600000001,32.746563],[-83.677896,32.746585],[-83.67815,32.746626],[-83.67943100000001,32.746888000000006],[-83.679738,32.746938],[-83.67994900000001,32.746968],[-83.680559,32.747028]]},"id":"8844c0b065fffff-13dfb6b153d86b6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06552210-13fe92e2aa83dc50","8f44c0b0656c382-1397ab10246fb07f"]},"geometry":{"type":"LineString","coordinates":[[-83.680559,32.747028],[-83.681509,32.747093],[-83.681914,32.747112],[-83.682218,32.747107],[-83.682461,32.747086],[-83.682651,32.74705],[-83.68293800000001,32.746979],[-83.68316,32.746906],[-83.683763,32.746677000000005]]},"id":"8944c0b0657ffff-13dfeeec24b4b6de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0656c382-1397ab10246fb07f","8f44c0b06180d45-17d6d67681f28a81"]},"geometry":{"type":"LineString","coordinates":[[-83.683763,32.746677000000005],[-83.684838,32.746268],[-83.6856472,32.745966100000004]]},"id":"8844c0b061fffff-13b698c3b01e3e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06180d45-17d6d67681f28a81","8f44c0b06180930-17be962ac786762e"]},"geometry":{"type":"LineString","coordinates":[[-83.6856472,32.745966100000004],[-83.6857684,32.7459209]]},"id":"8a44c0b06187fff-17d6b650a571d507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687593,32.745238]},"id":"8f44c0b06110563-179fc1b66dedb99f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06110563-179fc1b66dedb99f","8f44c0b06180930-17be962ac786762e"]},"geometry":{"type":"LineString","coordinates":[[-83.6857684,32.7459209],[-83.686576,32.745618],[-83.68694500000001,32.745477],[-83.687593,32.745238]]},"id":"8844c0b061fffff-17f683f0d84f156b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68971900000001,32.744433]},"id":"8f44c0b0612001c-1396fc85ae42fc07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06110563-179fc1b66dedb99f","8f44c0b0612001c-1396fc85ae42fc07"]},"geometry":{"type":"LineString","coordinates":[[-83.687593,32.745238],[-83.687887,32.74512],[-83.68821000000001,32.744996],[-83.68971900000001,32.744433]]},"id":"8944c0b0613ffff-179fff1ef4c47192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69023700000001,32.744245]},"id":"8f44c0b06125104-13b77b41e6ddeaca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0612001c-1396fc85ae42fc07","8f44c0b06125104-13b77b41e6ddeaca"]},"geometry":{"type":"LineString","coordinates":[[-83.68971900000001,32.744433],[-83.69023700000001,32.744245]]},"id":"8a44c0b06127fff-13dffbe3c9e55d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69109800000001,32.743915]},"id":"8f44c0b068d4d19-13d6f927c56e6697"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06125104-13b77b41e6ddeaca","8f44c0b068d4d19-13d6f927c56e6697"]},"geometry":{"type":"LineString","coordinates":[[-83.69023700000001,32.744245],[-83.690303,32.744214],[-83.69109800000001,32.743915]]},"id":"8844c0b069fffff-13be7a357f11f4e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b068e5a40-13b772864e80f1f2","8f44c0b068d4d19-13d6f927c56e6697"]},"geometry":{"type":"LineString","coordinates":[[-83.69109800000001,32.743915],[-83.69130700000001,32.743843000000005],[-83.69158200000001,32.743763],[-83.69174600000001,32.743727],[-83.691939,32.743691000000005],[-83.69225,32.743662],[-83.69246600000001,32.743654],[-83.69343900000001,32.743646000000005],[-83.693814,32.743637]]},"id":"8944c0b068fffff-13def5de5d8ad5a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b068e5a40-13b772864e80f1f2","8f44c0b06846af5-13b66e52a674b8c6"]},"geometry":{"type":"LineString","coordinates":[[-83.693814,32.743637],[-83.695535,32.743639]]},"id":"8844c0b069fffff-13b7f06c7d1f211b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69702600000001,32.743713]},"id":"8f44c0b0686c789-13d6eaaec241fb40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b06846af5-13b66e52a674b8c6","8f44c0b0686c789-13d6eaaec241fb40"]},"geometry":{"type":"LineString","coordinates":[[-83.695535,32.743639],[-83.69702600000001,32.743713]]},"id":"8944c0b0687ffff-13bfec80b9189108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0686c789-13d6eaaec241fb40","8f44c0b044e6d19-13ff7ed5acd01bc6"]},"geometry":{"type":"LineString","coordinates":[[-83.69702600000001,32.743713],[-83.701879,32.743957]]},"id":"8644c0b07ffffff-13b6e4c23a1cbedd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04454872-13b679f1c0926a7d","8f44c0b044e6d19-13ff7ed5acd01bc6"]},"geometry":{"type":"LineString","coordinates":[[-83.701879,32.743957],[-83.70388200000001,32.744045]]},"id":"8844c0b045fffff-139efc63bc3e7f92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72702000000001,32.74421]},"id":"8f44c0b236a656e-139f61748f3dc62b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b236a656e-139f61748f3dc62b","8f44c0b238c67b1-139f249228e28d57"]},"geometry":{"type":"LineString","coordinates":[[-83.72702000000001,32.74421],[-83.72711070000001,32.7439984],[-83.727196,32.743817],[-83.72729600000001,32.743684],[-83.72737400000001,32.743609],[-83.72763300000001,32.743406],[-83.72811300000001,32.743063],[-83.73012100000001,32.741568],[-83.730383,32.741363],[-83.73053300000001,32.741239],[-83.730755,32.741040000000005],[-83.73099900000001,32.740791],[-83.73171400000001,32.739993000000005],[-83.73201900000001,32.739652],[-83.732318,32.739296],[-83.73254700000001,32.738974],[-83.732687,32.738732],[-83.73317300000001,32.73778],[-83.733428,32.737266000000005],[-83.7335556,32.7370253],[-83.7336526,32.7368824],[-83.73376300000001,32.736735],[-83.734001,32.7364801],[-83.73410360000001,32.736388600000005],[-83.734217,32.736296],[-83.734319,32.736221],[-83.73451370000001,32.736098600000005],[-83.7351943,32.735690000000005],[-83.73553600000001,32.735484],[-83.7358827,32.735294100000004],[-83.7360582,32.7352064],[-83.73620720000001,32.7351407],[-83.7364361,32.7350451],[-83.73669100000001,32.734951],[-83.73704000000001,32.734828],[-83.73783,32.734571],[-83.73808700000001,32.734468],[-83.738308,32.734356000000005],[-83.738523,32.734225],[-83.738724,32.734077],[-83.73885100000001,32.733973]]},"id":"8744c0b23ffffff-17b713a010d183ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759084,32.723613]},"id":"8f44c0b21d61973-13d7f32c8f0bb575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b238c67b1-139f249228e28d57","8f44c0b21d61973-13d7f32c8f0bb575"]},"geometry":{"type":"LineString","coordinates":[[-83.73885100000001,32.733973],[-83.739348,32.733486],[-83.739817,32.733022000000005],[-83.74029300000001,32.732534],[-83.74051100000001,32.732284],[-83.740627,32.732141],[-83.740813,32.731898],[-83.740933,32.731729],[-83.74111500000001,32.731447],[-83.741268,32.731163],[-83.741594,32.73046],[-83.74174000000001,32.730244],[-83.741827,32.730134],[-83.741974,32.729979],[-83.742165,32.729821],[-83.742321,32.729711],[-83.74257100000001,32.729577],[-83.74279,32.729491],[-83.743423,32.729276],[-83.7439241,32.7291165],[-83.744206,32.729017],[-83.744364,32.728977],[-83.744511,32.728949],[-83.744681,32.728926],[-83.745057,32.728887],[-83.745225,32.728882],[-83.745962,32.728875],[-83.74626500000001,32.728862],[-83.74634,32.728855],[-83.746661,32.728809000000005],[-83.74677700000001,32.728789],[-83.74693500000001,32.728755],[-83.747335,32.728633],[-83.747883,32.72845],[-83.74802700000001,32.728405],[-83.748333,32.728326],[-83.748559,32.728271],[-83.74874600000001,32.728236],[-83.74890900000001,32.728209],[-83.74906700000001,32.728191],[-83.749643,32.728147],[-83.74974,32.728133],[-83.750072,32.728054],[-83.75023,32.727995],[-83.750359,32.727938],[-83.75049800000001,32.727859],[-83.750674,32.727725],[-83.750876,32.727556],[-83.75176300000001,32.726771],[-83.752002,32.726585],[-83.75211300000001,32.726509],[-83.752362,32.726351],[-83.75248900000001,32.726277],[-83.75278,32.726134],[-83.752887,32.726084],[-83.753068,32.72601],[-83.75355,32.725845],[-83.753935,32.725735],[-83.75425700000001,32.725644],[-83.75457800000001,32.725572],[-83.754991,32.725507],[-83.755954,32.725385],[-83.75621000000001,32.725352],[-83.756521,32.725302],[-83.756833,32.725222],[-83.75689600000001,32.7252],[-83.7569885,32.725160800000005],[-83.757047,32.725136],[-83.757188,32.725068],[-83.75732400000001,32.724992],[-83.75740800000001,32.724936],[-83.757525,32.724851],[-83.757672,32.724728],[-83.757779,32.724624],[-83.757941,32.724438],[-83.75815800000001,32.724144],[-83.75826500000001,32.724016],[-83.75836500000001,32.723906],[-83.758595,32.723782],[-83.75873800000001,32.723717],[-83.759084,32.723613]]},"id":"8644c0b27ffffff-13ffecf3de78e353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757821,32.875247]},"id":"8f44c0b507ae244-13f5f641e7ba708d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5070c1b4-139dff211bc3bc99","8f44c0b507ae244-13f5f641e7ba708d"]},"geometry":{"type":"LineString","coordinates":[[-83.7607407,32.8750991],[-83.7605949,32.875227800000005],[-83.76038150000001,32.875289],[-83.757821,32.875247]]},"id":"8844c0b507fffff-13fdd2a12f9c2240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.756546,32.875242]},"id":"8f44c0b5078042e-13f7d95ec91cc418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b507ae244-13f5f641e7ba708d","8f44c0b5078042e-13f7d95ec91cc418"]},"geometry":{"type":"LineString","coordinates":[[-83.757821,32.875247],[-83.756546,32.875242]]},"id":"8944c0b507bffff-13f7d7d0526ea6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562385,32.832808]},"id":"8f44c0b8c493d43-13dfb3656a64195b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561591,32.834293]},"id":"8f44c0b8e84d123-17ffb555a3bf208a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e84d123-17ffb555a3bf208a","8f44c0b8c493d43-13dfb3656a64195b"]},"geometry":{"type":"LineString","coordinates":[[-83.562385,32.832808],[-83.56228800000001,32.832863],[-83.562239,32.832912],[-83.562196,32.832985],[-83.561867,32.83372],[-83.56168500000001,32.834117],[-83.561591,32.834293]]},"id":"8744c0b8effffff-179fb46fd74f88a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e84d123-17ffb555a3bf208a","8f44c0b8eba58dc-13dff6ffe7cad071"]},"geometry":{"type":"LineString","coordinates":[[-83.561591,32.834293],[-83.56138100000001,32.834631],[-83.561047,32.835092],[-83.56090900000001,32.835271]]},"id":"8844c0b8ebfffff-13bfb62487333d15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb8576c-17bfb8f209651704","8f44c0b8eba58dc-13dff6ffe7cad071"]},"geometry":{"type":"LineString","coordinates":[[-83.56090900000001,32.835271],[-83.560365,32.836008],[-83.56022300000001,32.836222],[-83.560112,32.836424]]},"id":"8944c0b8ebbffff-13bff801540f63dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55998500000001,32.83749]},"id":"8f44c0b8eb884a3-17d7f94163c9e480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb884a3-17d7f94163c9e480","8f44c0b8eb8576c-17bfb8f209651704"]},"geometry":{"type":"LineString","coordinates":[[-83.560112,32.836424],[-83.560028,32.836712],[-83.56000300000001,32.836838],[-83.55998500000001,32.837055],[-83.55998500000001,32.83749]]},"id":"8944c0b8ebbffff-17f7b92f412f82e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559996,32.838703]},"id":"8f44c0b8eaa1850-13bff93a849d97a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb884a3-17d7f94163c9e480","8f44c0b8eaa1850-13bff93a849d97a4"]},"geometry":{"type":"LineString","coordinates":[[-83.55998500000001,32.83749],[-83.559996,32.838703]]},"id":"8844c0b8ebfffff-13d7f93df9028723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560016,32.841718]},"id":"8f44c0b8ead0381-139ff92e06ad8ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eaa1850-13bff93a849d97a4","8f44c0b8ead0381-139ff92e06ad8ebe"]},"geometry":{"type":"LineString","coordinates":[[-83.559996,32.838703],[-83.560016,32.841718]]},"id":"8844c0b8ebfffff-17ffb9344dc77f4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648222,32.84075]},"id":"8f44c0a34af6552-17bee1d549af2f8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34aada70-17dff050c9978f62","8f44c0a34af6552-17bee1d549af2f8f"]},"geometry":{"type":"LineString","coordinates":[[-83.648222,32.84075],[-83.6488436,32.8399519]]},"id":"8844c0a34bfffff-17d7e113002ab15e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.601419,32.885939]},"id":"8f44c0a140b3569-179ff419218a4217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60261700000001,32.884777]},"id":"8f44c0a14199ce0-13bff12c647ea186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a14199ce0-13bff12c647ea186","8f44c0a140b3569-179ff419218a4217"]},"geometry":{"type":"LineString","coordinates":[[-83.601419,32.885939],[-83.60261700000001,32.884777]]},"id":"8844c0a141fffff-13b7d2a2c747d083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a14181141-139fdf078ff28094","8f44c0a14199ce0-13bff12c647ea186"]},"geometry":{"type":"LineString","coordinates":[[-83.60261700000001,32.884777],[-83.602902,32.88449],[-83.60349520000001,32.8839101]]},"id":"8944c0a141bffff-13bfd01ad5e94b78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623526,32.849702]},"id":"8f44c0a36309208-1797de2041b513f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62349540000001,32.8497119]},"id":"8f44c0a363092f5-179ffe336f6a18a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a363092f5-179ffe336f6a18a3","8f44c0a36309208-1797de2041b513f9"]},"geometry":{"type":"LineString","coordinates":[[-83.623526,32.849702],[-83.62349540000001,32.8497119]]},"id":"8c44c0a363093ff-179fde29df0307e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6232986,32.849775900000004]},"id":"8f44c0a36356d63-17d7feae66b1676b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a363092f5-179ffe336f6a18a3","8f44c0a36356d63-17d7feae66b1676b"]},"geometry":{"type":"LineString","coordinates":[[-83.62349540000001,32.8497119],[-83.6232986,32.849775900000004]]},"id":"8a44c0a36357fff-17b7fe70e8785257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36356d63-17d7feae66b1676b","8f44c0a3630b25d-17f77f377740d826"]},"geometry":{"type":"LineString","coordinates":[[-83.6232986,32.849775900000004],[-83.62317200000001,32.849817],[-83.6230793,32.8498518]]},"id":"8b44c0a36356fff-17dffef335ca9c6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3630b25d-17f77f377740d826","8f44c0a36220710-17ff2148632d449b"]},"geometry":{"type":"LineString","coordinates":[[-83.6230793,32.8498518],[-83.62289200000001,32.849922],[-83.622579,32.85006],[-83.6222991,32.8502097],[-83.62223300000001,32.850245]]},"id":"8844c0a363fffff-17fff043573d8c2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6214592,32.8507577]},"id":"8f44c0a36206b06-17bfb32c0d1c6c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36206b06-17bfb32c0d1c6c7d","8f44c0a36220710-17ff2148632d449b"]},"geometry":{"type":"LineString","coordinates":[[-83.62223300000001,32.850245],[-83.6214592,32.8507577]]},"id":"8944c0a3623ffff-179f623a365ee008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36206b06-17bfb32c0d1c6c7d","8f44c0a36206149-17d7a36e62bfd005"]},"geometry":{"type":"LineString","coordinates":[[-83.6214592,32.8507577],[-83.621353,32.850828]]},"id":"8b44c0a36206fff-17d7b34d3b5889e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701676,32.819595]},"id":"8f44c0b0a5ad870-1396ff548a1ef40b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a546cf1-179f56dd026cb19f","8f44c0b0a5ad870-1396ff548a1ef40b"]},"geometry":{"type":"LineString","coordinates":[[-83.701676,32.819595],[-83.701974,32.819705],[-83.702318,32.819828],[-83.70258100000001,32.819913],[-83.70317800000001,32.820055],[-83.703682,32.820182],[-83.70425,32.820318],[-83.704569,32.820407],[-83.704712,32.82047],[-83.704823,32.820532],[-83.70498500000001,32.820656],[-83.70505,32.820710000000005],[-83.705144,32.820808]]},"id":"8844c0b0a5fffff-17fe5b0077fcced0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705437,32.822187]},"id":"8f44c0b0a55d049-13fef625e8dd0827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a55d049-13fef625e8dd0827","8f44c0b0a546cf1-179f56dd026cb19f"]},"geometry":{"type":"LineString","coordinates":[[-83.705144,32.820808],[-83.70527700000001,32.820952000000005],[-83.70534,32.821033],[-83.705377,32.821092],[-83.70541300000001,32.821167],[-83.705447,32.821261],[-83.705472,32.821399],[-83.705478,32.821472],[-83.705437,32.822187]]},"id":"8944c0b0a57ffff-17b7d6399b9ce8e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604149,32.854425]},"id":"8f44c0a32d9592b-139fed6ee77e5a33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d95862-13df6d6769c36048","8f44c0a32d9592b-139fed6ee77e5a33"]},"geometry":{"type":"LineString","coordinates":[[-83.604149,32.854425],[-83.604161,32.854501]]},"id":"8c44c0a32d959ff-13b76d6b25141825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d95862-13df6d6769c36048","8f44c0a32d91acc-13df4da18281a2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.604161,32.854501],[-83.60406800000001,32.855136]]},"id":"8a44c0a32d97fff-1397dd847e72f26c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d91acc-13df4da18281a2c2","8f44c0a32d98553-13ff6ddece6a02ff"]},"geometry":{"type":"LineString","coordinates":[[-83.60406800000001,32.855136],[-83.60397,32.855781]]},"id":"8944c0a32dbffff-13b7ddc02166827f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d9b603-17ff4e134bdf61b4","8f44c0a32d98553-13ff6ddece6a02ff"]},"geometry":{"type":"LineString","coordinates":[[-83.60397,32.855781],[-83.603886,32.856384000000006]]},"id":"8844c0a32dfffff-17bfddf9092821ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60370800000001,32.857509]},"id":"8f44c0a32c86145-17b76e828d0cc332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d9b603-17ff4e134bdf61b4","8f44c0a32c86145-17b76e828d0cc332"]},"geometry":{"type":"LineString","coordinates":[[-83.603886,32.856384000000006],[-83.60370800000001,32.857509]]},"id":"8944c0a32cbffff-17d7de4aeb4695d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603513,32.858651]},"id":"8f44c0a32c9d584-13f7eefc6d0840a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c86145-17b76e828d0cc332","8f44c0a32c9d584-13f7eefc6d0840a6"]},"geometry":{"type":"LineString","coordinates":[[-83.60370800000001,32.857509],[-83.60365,32.857735000000005],[-83.603547,32.857977000000005],[-83.603525,32.858064],[-83.603509,32.858389],[-83.603513,32.858651]]},"id":"8944c0a32cbffff-1397feda41f5011b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603505,32.859561]},"id":"8f44c0a32526035-17bfef016eaf48cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32526035-17bfef016eaf48cc","8f44c0a32c9d584-13f7eefc6d0840a6"]},"geometry":{"type":"LineString","coordinates":[[-83.603513,32.858651],[-83.60350940000001,32.8590614],[-83.603505,32.859561]]},"id":"8844c0a32dfffff-139f4efee8d68b5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632762,32.834891]},"id":"8f44c0a34501452-13ffe793cc1cd39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34501452-13ffe793cc1cd39f","8f44c0a3451d71e-13f788e361334b64"]},"geometry":{"type":"LineString","coordinates":[[-83.632225,32.8354872],[-83.6324101,32.835289100000004],[-83.632762,32.834891]]},"id":"8944c0a3453ffff-13bf483a78255541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34501452-13ffe793cc1cd39f","8f44c0a34501c53-139f574e0f9ed429"]},"geometry":{"type":"LineString","coordinates":[[-83.632762,32.834891],[-83.63287360000001,32.834758900000004]]},"id":"8b44c0a34501fff-13d79770e90eea63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3450574c-17b756e527f979aa","8f44c0a34501c53-139f574e0f9ed429"]},"geometry":{"type":"LineString","coordinates":[[-83.63287360000001,32.834758900000004],[-83.63304140000001,32.8345605]]},"id":"8a44c0a34507fff-17df571996fbc3bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3450574c-17b756e527f979aa","8f44c0a34505ab6-17df069ec66f1dcb"]},"geometry":{"type":"LineString","coordinates":[[-83.63304140000001,32.8345605],[-83.633154,32.8344272]]},"id":"8b44c0a34505fff-17f7b6c1fc2378f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6332934,32.8342623]},"id":"8f44c0a3452e583-17f7f647a8f16bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34505ab6-17df069ec66f1dcb","8f44c0a3452e583-17f7f647a8f16bfd"]},"geometry":{"type":"LineString","coordinates":[[-83.633154,32.8344272],[-83.6332934,32.8342623]]},"id":"8944c0a3453ffff-179f8673302224ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3452e583-17f7f647a8f16bfd","8f44c0a3452ed36-17ff55e4524f88e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6332934,32.8342623],[-83.6334523,32.834072500000005]]},"id":"8944c0a3453ffff-17bfa6160e84266a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3452531b-17bf04e087df49e5","8f44c0a3452ed36-17ff55e4524f88e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6334523,32.834072500000005],[-83.633868,32.833576]]},"id":"8a44c0a34527fff-17d7356273f7f1d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c89166-1397c36e85a56c0e","8f44c0a3452531b-17bf04e087df49e5"]},"geometry":{"type":"LineString","coordinates":[[-83.633868,32.833576],[-83.6341256,32.8332706],[-83.63446,32.832878]]},"id":"8844c0a34dfffff-17dfa427c65e2fa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634978,32.832271]},"id":"8f44c0a34cf6c6c-139f622ac912ef65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c89166-1397c36e85a56c0e","8f44c0a34cf6c6c-139f622ac912ef65"]},"geometry":{"type":"LineString","coordinates":[[-83.63446,32.832878],[-83.634978,32.832271]]},"id":"8844c0a34dfffff-13d712ccab4d7f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63550500000001,32.831643]},"id":"8f44c0a34c1ad1d-1397e0e16364efc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34cf6c6c-139f622ac912ef65","8f44c0a34c1ad1d-1397e0e16364efc3"]},"geometry":{"type":"LineString","coordinates":[[-83.634978,32.832271],[-83.63550500000001,32.831643]]},"id":"8844c0a34dfffff-13d7218610747edb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63609100000001,32.830955]},"id":"8f44c0a34c11b66-17d6ff7326d18c56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c1ad1d-1397e0e16364efc3","8f44c0a34c11b66-17d6ff7326d18c56"]},"geometry":{"type":"LineString","coordinates":[[-83.63550500000001,32.831643],[-83.63609100000001,32.830955]]},"id":"8944c0a34c3ffff-17bfe02a4119b948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c06ba5-17f7fe3d2e4e5b1d","8f44c0a34c11b66-17d6ff7326d18c56"]},"geometry":{"type":"LineString","coordinates":[[-83.63609100000001,32.830955],[-83.63632700000001,32.830674],[-83.636587,32.83039]]},"id":"8944c0a34c3ffff-17b6feda0a522b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63802700000001,32.827993]},"id":"8f44c0a34d01121-1797fab926654337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34d1d84d-13fffbdb22d87f40","8f44c0a34d01121-1797fab926654337"]},"geometry":{"type":"LineString","coordinates":[[-83.637563,32.828533],[-83.63802700000001,32.827993]]},"id":"8944c0a34d3ffff-13d6fb4a2ff4f66f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34d2e558-17fff9ab5fc1a679","8f44c0a34d01121-1797fab926654337"]},"geometry":{"type":"LineString","coordinates":[[-83.63802700000001,32.827993],[-83.6384587,32.827516]]},"id":"8944c0a34d3ffff-1796fa323d211d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34d2e558-17fff9ab5fc1a679","8f44c0b1a6d2caa-17d7f8360a568f91"]},"geometry":{"type":"LineString","coordinates":[[-83.6384587,32.827516],[-83.63905600000001,32.826856]]},"id":"8944c0a34d3ffff-179ff8f0bdbeb520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6415257,32.824136800000005]},"id":"8f44c0b1a602af5-17bff22e7ddd11cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6004da-17f7f1fc473746b8","8f44c0b1a602af5-17bff22e7ddd11cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6415257,32.824136800000005],[-83.64160600000001,32.824041]]},"id":"8c44c0b1a602bff-179ff215537165dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641976,32.823545]},"id":"8f44c0b1a60402a-17bff1150a5460c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6004da-17f7f1fc473746b8","8f44c0b1a60402a-17bff1150a5460c6"]},"geometry":{"type":"LineString","coordinates":[[-83.64160600000001,32.824041],[-83.641976,32.823545]]},"id":"8a44c0b1a607fff-17d6f188a1a94c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62721,32.841454]},"id":"8f44c0a36b02a1e-13f7d521c18feec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62781100000001,32.840747]},"id":"8f44c0a36b04943-17bff3aa2f88a5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b04943-17bff3aa2f88a5d9","8f44c0a36b02a1e-13f7d521c18feec3"]},"geometry":{"type":"LineString","coordinates":[[-83.62721,32.841454],[-83.62781100000001,32.840747]]},"id":"8944c0a36b3ffff-1797d465f40c45d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628325,32.840133]},"id":"8f44c0a36b2464b-17bf3268ebd60613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b04943-17bff3aa2f88a5d9","8f44c0a36b2464b-17bf3268ebd60613"]},"geometry":{"type":"LineString","coordinates":[[-83.62781100000001,32.840747],[-83.6282585,32.8402125],[-83.628325,32.840133]]},"id":"8a44c0a36b27fff-17ff13098797d1ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b2464b-17bf3268ebd60613","8f44c0a36b24bac-17b731e792620c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.628325,32.840133],[-83.6284102,32.8400315],[-83.6285319,32.8398866]]},"id":"8b44c0a36b24fff-17ff32284f578d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b24bac-17b731e792620c9e","8f44c0a3448b531-17bf11903e5e5875"]},"geometry":{"type":"LineString","coordinates":[[-83.6285319,32.8398866],[-83.6286717,32.83972]]},"id":"8944c0a344bffff-17ff11bbe3d2d3f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3448b531-17bf11903e5e5875","8f44c0a3448bd04-13f71149bf145791"]},"geometry":{"type":"LineString","coordinates":[[-83.6286717,32.83972],[-83.62878450000001,32.8395856]]},"id":"8b44c0a3448bfff-179f116cf3eea777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3448bd04-13f71149bf145791","8f44c0a34488633-13b7911f5172a36d"]},"geometry":{"type":"LineString","coordinates":[[-83.62878450000001,32.8395856],[-83.6288523,32.8395048]]},"id":"8a44c0a3448ffff-13dfd13482dc5fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62891350000001,32.8394332]},"id":"8f44c0a344880d6-1397d0f91f57a6a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34488633-13b7911f5172a36d","8f44c0a344880d6-1397d0f91f57a6a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6288523,32.8395048],[-83.62891350000001,32.8394332]]},"id":"8b44c0a34488fff-139f310c33aa30fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62901000000001,32.839320400000005]},"id":"8f44c0a34488128-13bf50bcc67def59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34488128-13bf50bcc67def59","8f44c0a344880d6-1397d0f91f57a6a1"]},"geometry":{"type":"LineString","coordinates":[[-83.62891350000001,32.8394332],[-83.62901000000001,32.839320400000005]]},"id":"8c44c0a344881ff-13f790daff42e828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62909040000001,32.8392263]},"id":"8f44c0a34488820-1397708a807d73ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34488128-13bf50bcc67def59","8f44c0a34488820-1397708a807d73ee"]},"geometry":{"type":"LineString","coordinates":[[-83.62901000000001,32.839320400000005],[-83.62909040000001,32.8392263]]},"id":"8b44c0a34488fff-13b7d0a3a15abc30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344ab4ce-13bf0fde4bc5ff2f","8f44c0a34488820-1397708a807d73ee"]},"geometry":{"type":"LineString","coordinates":[[-83.62909040000001,32.8392263],[-83.629366,32.838904]]},"id":"8944c0a344bffff-139fd034699cfdd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65032500000001,32.855201]},"id":"8f44c0a354092ca-1396fcb2e4fa95c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a354092ca-1396fcb2e4fa95c2","8f44c0a3542b78e-1796fca484f663d4"]},"geometry":{"type":"LineString","coordinates":[[-83.65034800000001,32.854205],[-83.650328,32.854222],[-83.650311,32.854255],[-83.65030700000001,32.854611000000006],[-83.65030800000001,32.85514],[-83.65032500000001,32.855201]]},"id":"8844c0a355fffff-13dedcbc6b442174"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650284,32.856734]},"id":"8f44c0a354ed2a0-17d6dccc801edc68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a354ed2a0-17d6dccc801edc68","8f44c0a354092ca-1396fcb2e4fa95c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65032500000001,32.855201],[-83.650284,32.856734]]},"id":"8844c0a355fffff-13f7fcbfb88a48a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672876,32.85725]},"id":"8f44c0a2669c470-1797e5a48cd74621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2669c470-1797e5a48cd74621","8f44c0a35a4081b-17b6abd080a97ad5"]},"geometry":{"type":"LineString","coordinates":[[-83.670348,32.857329],[-83.672876,32.85725]]},"id":"8644c0a27ffffff-179ff8ba82012556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26681270-17ffa29f64f23b39","8f44c0a2669c470-1797e5a48cd74621"]},"geometry":{"type":"LineString","coordinates":[[-83.672876,32.85725],[-83.674113,32.857205]]},"id":"8944c0a266bffff-17f7b421fdb4f9e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67770700000001,32.85736]},"id":"8f44c0a266094a1-17de99d92a95673b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26681270-17ffa29f64f23b39","8f44c0a266094a1-17de99d92a95673b"]},"geometry":{"type":"LineString","coordinates":[[-83.674113,32.857205],[-83.67437600000001,32.857201],[-83.674558,32.857188],[-83.674795,32.85716],[-83.675324,32.857061],[-83.675442,32.857042],[-83.67558600000001,32.857025],[-83.67580000000001,32.857025],[-83.675977,32.857035],[-83.676173,32.857065],[-83.677366,32.857308],[-83.67770700000001,32.85736]]},"id":"8844c0a267fffff-17dfde3980ea10e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679384,32.857698]},"id":"8f44c0a2667125c-139fd5c10258a337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2667125c-139fd5c10258a337","8f44c0a266094a1-17de99d92a95673b"]},"geometry":{"type":"LineString","coordinates":[[-83.67770700000001,32.85736],[-83.677925,32.857411],[-83.679066,32.857649],[-83.679384,32.857698]]},"id":"8844c0a267fffff-17bfd7ce2a3566c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67332800000001,32.849442]},"id":"8f44c0a264080b0-13f7e48a00547064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67218220000001,32.8504099]},"id":"8f44c0a264e2c63-17d6b756267c3d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a264e2c63-17d6b756267c3d58","8f44c0a264080b0-13f7e48a00547064"]},"geometry":{"type":"LineString","coordinates":[[-83.67332800000001,32.849442],[-83.67218220000001,32.8504099]]},"id":"8844c0a265fffff-17b7e5f0145bfb35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35b280ae-13d7acfb419d7a90","8f44c0a264e2c63-17d6b756267c3d58"]},"geometry":{"type":"LineString","coordinates":[[-83.67218220000001,32.8504099],[-83.671046,32.851359],[-83.66987,32.852252]]},"id":"8644c0a27ffffff-139eea220b10a6a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35b280ae-13d7acfb419d7a90","8f44c0a35b50501-17b6ed8f69dd6458"]},"geometry":{"type":"LineString","coordinates":[[-83.66987,32.852252],[-83.669759,32.852372],[-83.66967700000001,32.852477],[-83.669611,32.852584],[-83.669572,32.852666],[-83.66952300000001,32.852848],[-83.669393,32.853507],[-83.669371,32.853651],[-83.669368,32.853749],[-83.66939,32.853859],[-83.669431,32.853966],[-83.66948400000001,32.854065],[-83.66956,32.854155],[-83.669633,32.854231]]},"id":"8844c0a35bfffff-17b7add68bcb8159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35b50088-17fead4e663b1ca8","8f44c0a35b50501-17b6ed8f69dd6458"]},"geometry":{"type":"LineString","coordinates":[[-83.669633,32.854231],[-83.66973700000001,32.854337]]},"id":"8b44c0a35b50fff-17d7ad6eecbcd647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6704344,32.855543700000005]},"id":"8f44c0a35b582a1-13defb9a8fd829b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35b582a1-13defb9a8fd829b8","8f44c0a35b50088-17fead4e663b1ca8"]},"geometry":{"type":"LineString","coordinates":[[-83.66973700000001,32.854337],[-83.67008700000001,32.854678],[-83.67028400000001,32.854898],[-83.670354,32.855012],[-83.67040700000001,32.855127],[-83.67043500000001,32.8553269],[-83.6704344,32.855543700000005]]},"id":"8944c0a35b7ffff-13d6ac3190c7f061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64839500000001,32.820194]},"id":"8f44c0b1a05e314-179fe1692debdde7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a05e314-179fe1692debdde7","8f44c0b1a076759-17b6e16885bb17b1"]},"geometry":{"type":"LineString","coordinates":[[-83.64839500000001,32.820194],[-83.64838,32.820076],[-83.648396,32.818205]]},"id":"8944c0b1a07ffff-139ff16d802af939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648409,32.816456]},"id":"8f44c0b1a1520a9-13ffe1606d43ecac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1520a9-13ffe1606d43ecac","8f44c0b1a076759-17b6e16885bb17b1"]},"geometry":{"type":"LineString","coordinates":[[-83.648396,32.818205],[-83.648407,32.817188],[-83.648409,32.816456]]},"id":"8844c0b1a1fffff-179ff16368e12d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6732439,32.7894823]},"id":"8f44c0b1c198b8d-1396f4be97b64e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67250370000001,32.790351]},"id":"8f44c0b1c0b0870-13b7e68d317c882b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c198b8d-1396f4be97b64e00","8f44c0b1c0b0870-13b7e68d317c882b"]},"geometry":{"type":"LineString","coordinates":[[-83.6732439,32.7894823],[-83.673051,32.789733000000005],[-83.672846,32.789986],[-83.672685,32.790166],[-83.67250370000001,32.790351]]},"id":"8844c0b1c1fffff-13b7e59f266635d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67173360000001,32.7910294]},"id":"8f44c0b1c0940f4-17dfe86e83139ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c0b0870-13b7e68d317c882b","8f44c0b1c0940f4-17dfe86e83139ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.67250370000001,32.790351],[-83.67229400000001,32.790565],[-83.672173,32.790675],[-83.67189,32.790909],[-83.67173360000001,32.7910294]]},"id":"8944c0b1c0bffff-179ef777bb34caf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c096294-17fea98a0f101550","8f44c0b1c0940f4-17dfe86e83139ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.67173360000001,32.7910294],[-83.67166800000001,32.79108],[-83.671588,32.791127],[-83.67147100000001,32.791188000000005],[-83.67128000000001,32.791265]]},"id":"8a44c0b1c097fff-17bee8f84109fb9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c096294-17fea98a0f101550","8f44c0b1c46571e-1797aaf664f8fb0b"]},"geometry":{"type":"LineString","coordinates":[[-83.67128000000001,32.791265],[-83.67113,32.791296],[-83.67095400000001,32.791314],[-83.670776,32.79132],[-83.670697,32.791305]]},"id":"8844c0b1c5fffff-1796ba3fdc392d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67041400000001,32.791248]},"id":"8f44c0b1c4608c1-17f6aba74f763d56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c46571e-1797aaf664f8fb0b","8f44c0b1c4608c1-17f6aba74f763d56"]},"geometry":{"type":"LineString","coordinates":[[-83.670697,32.791305],[-83.67047000000001,32.791268],[-83.67041400000001,32.791248]]},"id":"8a44c0b1c467fff-17f6eb4f816c8c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67016530000001,32.791133200000004]},"id":"8f44c0b1c460d9e-179eec42b58ad3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c460d9e-179eec42b58ad3a0","8f44c0b1c4608c1-17f6aba74f763d56"]},"geometry":{"type":"LineString","coordinates":[[-83.67041400000001,32.791248],[-83.67027,32.791184],[-83.67016530000001,32.791133200000004]]},"id":"8a44c0b1c467fff-17beebf54f3d127d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670136,32.791119]},"id":"8f44c0b1c466360-1797ec550f69c44f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c460d9e-179eec42b58ad3a0","8f44c0b1c466360-1797ec550f69c44f"]},"geometry":{"type":"LineString","coordinates":[[-83.67016530000001,32.791133200000004],[-83.670136,32.791119]]},"id":"8b44c0b1c466fff-1797fc4bde5c35bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67003430000001,32.7910618]},"id":"8f44c0b1c46604d-17ffac949ff774c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c46604d-17ffac949ff774c2","8f44c0b1c466360-1797ec550f69c44f"]},"geometry":{"type":"LineString","coordinates":[[-83.670136,32.791119],[-83.67003430000001,32.7910618]]},"id":"8c44c0b1c4663ff-17ffac74db716652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6696436,32.7908631]},"id":"8f44c0b1c55b289-17f7fd88c572c4be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c46604d-17ffac949ff774c2","8f44c0b1c55b289-17f7fd88c572c4be"]},"geometry":{"type":"LineString","coordinates":[[-83.67003430000001,32.7910618],[-83.670001,32.791043],[-83.669751,32.790913],[-83.6696436,32.7908631]]},"id":"8944c0b1c47ffff-17bead0df2dc1b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6689698,32.7906551]},"id":"8f44c0b1c474c9d-17ffff2deca5f22c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c474c9d-17ffff2deca5f22c","8f44c0b1c55b289-17f7fd88c572c4be"]},"geometry":{"type":"LineString","coordinates":[[-83.6696436,32.7908631],[-83.66960900000001,32.790847],[-83.66944000000001,32.790779],[-83.669228,32.790712],[-83.66902300000001,32.790664],[-83.6689698,32.7906551]]},"id":"8944c0b1c47ffff-17b7be58ae6f0b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668619,32.790619]},"id":"8f44c0b1c42968d-17def0092747f807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c42968d-17def0092747f807","8f44c0b1c474c9d-17ffff2deca5f22c"]},"geometry":{"type":"LineString","coordinates":[[-83.6689698,32.7906551],[-83.66883800000001,32.790633],[-83.668619,32.790619]]},"id":"8844c0b1c5fffff-17f7af9b3c3de65b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65814200000001,32.808546]},"id":"8f44c0b18586552-139fc99d405b2a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185a36e3-13b6e72a63822516","8f44c0b18586552-139fc99d405b2a09"]},"geometry":{"type":"LineString","coordinates":[[-83.65814200000001,32.808546],[-83.65914500000001,32.808557]]},"id":"8a44c0b18587fff-13b6f863d8d85925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65965,32.808569]},"id":"8f44c0b185ae880-13bfe5eec5425356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185ae880-13bfe5eec5425356","8f44c0b185a36e3-13b6e72a63822516"]},"geometry":{"type":"LineString","coordinates":[[-83.65914500000001,32.808557],[-83.65965,32.808569]]},"id":"8944c0b185bffff-13b7e68c98243699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634969,32.860857]},"id":"8f44c0a3000a6a6-17d7a2306583e69e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634544,32.861905]},"id":"8f44c0a300e2243-13f7a33a095d8968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3000a6a6-17d7a2306583e69e","8f44c0a300e2243-13f7a33a095d8968"]},"geometry":{"type":"LineString","coordinates":[[-83.634969,32.860857],[-83.634521,32.86149],[-83.634483,32.861598],[-83.6345,32.861759],[-83.634544,32.861905]]},"id":"8844c0a301fffff-139f02f1c6ac2f96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635146,32.868595]},"id":"8f44c0a3029c652-13b7e1c1c68bc891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3029c652-13b7e1c1c68bc891","8f44c0a30286673-1397411e0c85c53d"]},"geometry":{"type":"LineString","coordinates":[[-83.635408,32.867714],[-83.635339,32.867739],[-83.635278,32.867792],[-83.635253,32.867834],[-83.635146,32.868595]]},"id":"8944c0a302bffff-139f119066ed2d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634865,32.868646000000005]},"id":"8f44c0a3029e225-13d7c2716b5e2943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3029c652-13b7e1c1c68bc891","8f44c0a3029e225-13d7c2716b5e2943"]},"geometry":{"type":"LineString","coordinates":[[-83.635146,32.868595],[-83.635096,32.868654],[-83.635046,32.868679],[-83.635,32.868689],[-83.63495800000001,32.868685],[-83.63493000000001,32.868677000000005],[-83.634865,32.868646000000005]]},"id":"8a44c0a3029ffff-13f7b214506f91e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635109,32.869034]},"id":"8f44c0a3029829b-13df41d8eaa8d81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3029c652-13b7e1c1c68bc891","8f44c0a3029829b-13df41d8eaa8d81d"]},"geometry":{"type":"LineString","coordinates":[[-83.635146,32.868595],[-83.635125,32.868693],[-83.635109,32.869034]]},"id":"8a44c0a3029ffff-13d791d14a4800a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633262,32.86987]},"id":"8f44c0a30649cb3-17d7c65b44f123a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3029829b-13df41d8eaa8d81d","8f44c0a30649cb3-17d7c65b44f123a4"]},"geometry":{"type":"LineString","coordinates":[[-83.635109,32.869034],[-83.635085,32.869231],[-83.63504,32.869373],[-83.634968,32.869504],[-83.634618,32.869922],[-83.63458,32.86995],[-83.63447400000001,32.869984],[-83.634172,32.870009],[-83.634096,32.870004],[-83.63394000000001,32.869981],[-83.633747,32.869932],[-83.633543,32.869892],[-83.633262,32.86987]]},"id":"8744c0a30ffffff-179f33aa97496fb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30649cb3-17d7c65b44f123a4","8f44c0a33981599-13d7aa15a05c990d"]},"geometry":{"type":"LineString","coordinates":[[-83.633262,32.86987],[-83.632858,32.869901],[-83.63250500000001,32.86996],[-83.63225200000001,32.870021],[-83.632067,32.870078],[-83.631935,32.870133],[-83.63180100000001,32.870219],[-83.631718,32.8703],[-83.63162000000001,32.87044],[-83.63155400000001,32.870559],[-83.631523,32.870713],[-83.631532,32.870942],[-83.63159800000001,32.87137],[-83.631608,32.871494000000006],[-83.631658,32.871689],[-83.631703,32.871843000000005],[-83.631735,32.871921]]},"id":"8644c0a37ffffff-1797f96220a36acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632496,32.874803]},"id":"8f44c0a338ad62e-13dfe83a0960c234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a338ad62e-13dfe83a0960c234","8f44c0a33981599-13d7aa15a05c990d"]},"geometry":{"type":"LineString","coordinates":[[-83.631735,32.871921],[-83.63191,32.872314],[-83.63208,32.87266],[-83.63217900000001,32.872923],[-83.63240900000001,32.873593],[-83.632433,32.873717],[-83.632461,32.874034],[-83.632481,32.8744],[-83.632496,32.874803]]},"id":"8844c0a339fffff-17df08d8a0651a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630786,32.875866]},"id":"8f44c0a3388a092-17ff4c66c33a03e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a338ad62e-13dfe83a0960c234","8f44c0a3388a092-17ff4c66c33a03e5"]},"geometry":{"type":"LineString","coordinates":[[-83.632496,32.874803],[-83.632519,32.87509],[-83.632519,32.875284],[-83.63252700000001,32.875583],[-83.632517,32.875667],[-83.63249900000001,32.875736],[-83.632458,32.875791],[-83.63239800000001,32.875849],[-83.632355,32.875875],[-83.63229700000001,32.875898],[-83.632203,32.875909],[-83.63205400000001,32.875906],[-83.63135100000001,32.875861],[-83.630786,32.875866]]},"id":"8844c0a339fffff-13ff598765bb5ba7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662048,32.781869]},"id":"8f44c0b1123379d-17fee01400ca891d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1123379d-17fee01400ca891d","8f44c0b112235a0-17debd0626c83c25"]},"geometry":{"type":"LineString","coordinates":[[-83.662048,32.781869],[-83.662495,32.781864],[-83.662901,32.781846],[-83.663155,32.781818],[-83.66329900000001,32.781792]]},"id":"8944c0b1123ffff-17fffe8c2c676bd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11223c51-17bfbc9fabfed6e8","8f44c0b112235a0-17debd0626c83c25"]},"geometry":{"type":"LineString","coordinates":[[-83.66329900000001,32.781792],[-83.66346300000001,32.781768]]},"id":"8b44c0b11223fff-17d6bcd2e8875a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66463,32.781455]},"id":"8f44c0b1135292c-17fff9c64781f8ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1135292c-17fff9c64781f8ba","8f44c0b11223c51-17bfbc9fabfed6e8"]},"geometry":{"type":"LineString","coordinates":[[-83.66346300000001,32.781768],[-83.66361,32.781742],[-83.663762,32.781709],[-83.663994,32.781649],[-83.66463,32.781455]]},"id":"8844c0b113fffff-17f7fb30ec4bdb64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6459487,32.8440859]},"id":"8f44c0a3430a555-17f7f7621de3b9b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6462746,32.8430702]},"id":"8f44c0a34301d0b-17f6e6966fbb28f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34301d0b-17f6e6966fbb28f2","8f44c0a3430a555-17f7f7621de3b9b1"]},"geometry":{"type":"LineString","coordinates":[[-83.6459487,32.8440859],[-83.6462746,32.8430702]]},"id":"8944c0a3433ffff-17b6f6fc4139e0cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a8a0d4-17b6e513abf10864","8f44c0a34301d0b-17f6e6966fbb28f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6462746,32.8430702],[-83.64689340000001,32.841146]]},"id":"8744c0a34ffffff-139ff5d5081ee165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65159600000001,32.854326]},"id":"8f44c0a35474b41-17f7d998819a760a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3554b8d9-17d6d5a865cb841f","8f44c0a35474b41-17f7d998819a760a"]},"geometry":{"type":"LineString","coordinates":[[-83.65159600000001,32.854326],[-83.65280700000001,32.8543],[-83.653209,32.854276]]},"id":"8844c0a355fffff-17d7d7a05869fc0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65430900000001,32.854252]},"id":"8f44c0a350b3d83-17b7d2f8e6875123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350b3d83-17b7d2f8e6875123","8f44c0a3554b8d9-17d6d5a865cb841f"]},"geometry":{"type":"LineString","coordinates":[[-83.653209,32.854276],[-83.65350500000001,32.854262],[-83.65430900000001,32.854252]]},"id":"8744c0a35ffffff-17bef450b7e0e1ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6420224,32.836842700000005]},"id":"8f44c0a3410b484-17b6f0f80995c724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3410b484-17b6f0f80995c724","8f44c0a3410a368-17d7f0c5e470c992"]},"geometry":{"type":"LineString","coordinates":[[-83.6420224,32.836842700000005],[-83.6421026,32.8366674]]},"id":"8a44c0a3410ffff-17fff0def84ef7f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3410ab42-17f6f09cf0ebb29e","8f44c0a3410a368-17d7f0c5e470c992"]},"geometry":{"type":"LineString","coordinates":[[-83.6421026,32.8366674],[-83.6421681,32.8365327]]},"id":"8b44c0a3410afff-179ff0b17f7b6f9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3410ab42-17f6f09cf0ebb29e","8f44c0a3410d910-13ffeea771261dd4"]},"geometry":{"type":"LineString","coordinates":[[-83.6421681,32.8365327],[-83.6421907,32.8364917],[-83.6422211,32.836455400000006],[-83.6422557,32.836426200000005],[-83.6423321,32.8363819],[-83.6429705,32.8361108]]},"id":"8a44c0a3410ffff-13dfefae5b7c077c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2851c250-13f5cd5943092219","8f44c0b285a37a1-13dfd33404c229ee"]},"geometry":{"type":"LineString","coordinates":[[-83.759072,32.76643],[-83.75941800000001,32.766489],[-83.759709,32.766546000000005],[-83.76025100000001,32.766664],[-83.760543,32.766731],[-83.76088100000001,32.766804],[-83.76128700000001,32.766877],[-83.76147,32.766882]]},"id":"8844c0b285fffff-13dfd04763b6e664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b28575032-13b7c656e76fade8","8f44c0b2851c250-13f5cd5943092219"]},"geometry":{"type":"LineString","coordinates":[[-83.76147,32.766882],[-83.761795,32.766866],[-83.76214900000001,32.766835],[-83.76243000000001,32.766806],[-83.76276,32.766779],[-83.763053,32.766771],[-83.763385,32.766786],[-83.76360600000001,32.766815],[-83.763886,32.766893],[-83.76415,32.767055],[-83.764341,32.76721]]},"id":"8844c0b285fffff-13dde9bc841eea85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760524,32.76945]},"id":"8f44c0b284026e6-13bfcfa8884314bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b28575032-13b7c656e76fade8","8f44c0b284026e6-13bfcfa8884314bf"]},"geometry":{"type":"LineString","coordinates":[[-83.764341,32.76721],[-83.764532,32.767381],[-83.76468100000001,32.767611],[-83.76473,32.767882],[-83.764694,32.768701],[-83.76468,32.768915],[-83.76463600000001,32.769092],[-83.764561,32.76925],[-83.76443400000001,32.769387],[-83.764272,32.769509],[-83.764077,32.769593],[-83.76388100000001,32.76964],[-83.76346600000001,32.769638],[-83.761516,32.769571],[-83.76114100000001,32.769561],[-83.760818,32.769526],[-83.76075900000001,32.769515000000006],[-83.760524,32.76945]]},"id":"8844c0b285fffff-17dff8e08abd3daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b284a4d1e-17dff49346c87f78","8f44c0b284026e6-13bfcfa8884314bf"]},"geometry":{"type":"LineString","coordinates":[[-83.760524,32.76945],[-83.760166,32.769289],[-83.759898,32.769114],[-83.759703,32.768974],[-83.759511,32.768838],[-83.75920500000001,32.76863],[-83.75896300000001,32.768483],[-83.758852,32.768425],[-83.75851,32.768307]]},"id":"8844c0b285fffff-17bfd218db77e0ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581021,32.84004]},"id":"8f44c0b8c205d55-179785e5e45bbddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58097000000001,32.840175]},"id":"8f44c0b8c20556d-17d7e605c48902c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8c205d55-179785e5e45bbddf","8f44c0b8c20556d-17d7e605c48902c2"]},"geometry":{"type":"LineString","coordinates":[[-83.581021,32.84004],[-83.58097000000001,32.840175]]},"id":"8b44c0b8c205fff-17bfb5f5d32d996b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b88926a48-13ffafbded314196","8f44c0b8c20556d-17d7e605c48902c2"]},"geometry":{"type":"LineString","coordinates":[[-83.58097000000001,32.840175],[-83.58091,32.840263],[-83.58086200000001,32.840297],[-83.58071000000001,32.840361],[-83.580492,32.840441000000006],[-83.580343,32.840483],[-83.57976500000001,32.840694],[-83.57941100000001,32.840831],[-83.579075,32.840983],[-83.57889700000001,32.841084],[-83.578614,32.841262],[-83.578269,32.84151],[-83.57818800000001,32.841583],[-83.57810400000001,32.841659],[-83.577878,32.841884],[-83.577577,32.842200000000005],[-83.577409,32.84237],[-83.57698900000001,32.842869]]},"id":"8844c0b8c3fffff-13b7db3468c56a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61394100000001,32.841983]},"id":"8f44c0a3619e314-13bf7586e7c5dc72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3619e314-13bf7586e7c5dc72","8f44c0a360a4932-13f772da8d512171"]},"geometry":{"type":"LineString","coordinates":[[-83.61394100000001,32.841983],[-83.615036,32.842658]]},"id":"8944c0a361bffff-13977430b95273e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360a4932-13f772da8d512171","8f44c0a36011cac-17b7af978db63dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.615036,32.842658],[-83.615216,32.842746000000005],[-83.615531,32.842945],[-83.615606,32.84301],[-83.615702,32.843103],[-83.61584400000001,32.843259],[-83.61615,32.843446],[-83.616372,32.843604]]},"id":"8844c0a361fffff-1797713458f35ea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61430650000001,32.8589111]},"id":"8f44c0a328aab4a-139774a275b3605c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612515,32.858932]},"id":"8f44c0a32891a6e-13b7b902225d9a1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328aab4a-139774a275b3605c","8f44c0a32891a6e-13b7b902225d9a1c"]},"geometry":{"type":"LineString","coordinates":[[-83.61430650000001,32.8589111],[-83.612515,32.858932]]},"id":"8944c0a328bffff-139f36d241d32ae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32891a6e-13b7b902225d9a1c","8f44c0a32893b94-13b73a8a05e4d522"]},"geometry":{"type":"LineString","coordinates":[[-83.612515,32.858932],[-83.612155,32.8589428],[-83.61188800000001,32.8589426]]},"id":"8a44c0a32897fff-13b779c61d741de0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32893b94-13b73a8a05e4d522","8f44c0a3289359b-13bfbb741808e1f3"]},"geometry":{"type":"LineString","coordinates":[[-83.61188800000001,32.8589426],[-83.6116765,32.858942400000004],[-83.6115135,32.858948000000005]]},"id":"8b44c0a32893fff-13b7faff18c31620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61084600000001,32.858995]},"id":"8f44c0a32c6e994-13d7fd1547fc0a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3289359b-13bfbb741808e1f3","8f44c0a32c6e994-13d7fd1547fc0a64"]},"geometry":{"type":"LineString","coordinates":[[-83.6115135,32.858948000000005],[-83.6114239,32.858951000000005],[-83.6111163,32.8589739],[-83.61084600000001,32.858995]]},"id":"8844c0a32dfffff-13bf3c44ca2e343a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6107903,32.8589946]},"id":"8f44c0a32c6ed74-13d7bd381243f5f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c6ed74-13d7bd381243f5f0","8f44c0a32c6e994-13d7fd1547fc0a64"]},"geometry":{"type":"LineString","coordinates":[[-83.61084600000001,32.858995],[-83.6107903,32.8589946]]},"id":"8b44c0a32c6efff-13d7fd26b0e6f2c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610045,32.858989]},"id":"8f44c0a32c44064-13d73f09e3360187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c6ed74-13d7bd381243f5f0","8f44c0a32c44064-13d73f09e3360187"]},"geometry":{"type":"LineString","coordinates":[[-83.6107903,32.8589946],[-83.610045,32.858989]]},"id":"8944c0a32c7ffff-13d7fe210845eec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71059600000001,32.837882]},"id":"8f44c0a2480e59c-17be498d8f47c8a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2483530e-13dfc9900272fe19","8f44c0a2480e59c-17be498d8f47c8a9"]},"geometry":{"type":"LineString","coordinates":[[-83.71059600000001,32.837882],[-83.710588,32.836537],[-83.710592,32.836092]]},"id":"8944c0a2483ffff-179ee99054c3ed42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71016,32.835186]},"id":"8f44c0a2491a56c-13b74a9e0a180590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2483530e-13dfc9900272fe19","8f44c0a2491a56c-13b74a9e0a180590"]},"geometry":{"type":"LineString","coordinates":[[-83.710592,32.836092],[-83.710589,32.835833],[-83.71057,32.835679],[-83.710541,32.835548],[-83.710516,32.83549],[-83.710479,32.835436],[-83.710425,32.835369],[-83.71028700000001,32.835259],[-83.710229,32.835219],[-83.71016,32.835186]]},"id":"8844c0a249fffff-139ff9d7fba132ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7236824,32.8797937]},"id":"8f44c0a21b82a2b-179f399a829f951c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72500500000001,32.878476]},"id":"8f44c0a21ba5c8b-13d7a65fee8a5418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21b82a2b-179f399a829f951c","8f44c0a21ba5c8b-13d7a65fee8a5418"]},"geometry":{"type":"LineString","coordinates":[[-83.7236824,32.8797937],[-83.723895,32.879541],[-83.724303,32.879081],[-83.724506,32.878895],[-83.72500500000001,32.878476]]},"id":"8944c0a21bbffff-17f6e80d71055a4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21b34322-13ffa1a4a0eb25d2","8f44c0a21ba5c8b-13d7a65fee8a5418"]},"geometry":{"type":"LineString","coordinates":[[-83.72500500000001,32.878476],[-83.72590100000001,32.87776],[-83.72600200000001,32.877685],[-83.726055,32.877651],[-83.726174,32.877588],[-83.726276,32.877542000000005],[-83.72636700000001,32.877509],[-83.72648500000001,32.877479],[-83.72655200000001,32.877468],[-83.726606,32.877464],[-83.726657,32.87746],[-83.726753,32.87746],[-83.72685200000001,32.877467],[-83.726943,32.877481]]},"id":"8844c0a21bfffff-13d6e42395b399f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72879900000001,32.879713]},"id":"8f44c0a21b76ce9-17debd1ca29f819b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21b76ce9-17debd1ca29f819b","8f44c0a21b34322-13ffa1a4a0eb25d2"]},"geometry":{"type":"LineString","coordinates":[[-83.726943,32.877481],[-83.727096,32.877522],[-83.727227,32.877567],[-83.72734600000001,32.877616],[-83.72743600000001,32.877676],[-83.7275,32.877727],[-83.727625,32.877857],[-83.72774600000001,32.878047],[-83.727807,32.878166],[-83.727923,32.878379],[-83.728012,32.878511],[-83.72812,32.87865],[-83.728183,32.878717],[-83.728311,32.878839],[-83.728497,32.87899],[-83.72856800000001,32.879055],[-83.72864700000001,32.879149000000005],[-83.72870300000001,32.879247],[-83.728728,32.879302],[-83.72875300000001,32.879357],[-83.728786,32.87951],[-83.72879900000001,32.879713]]},"id":"8944c0a21b3ffff-13d7ff0658752152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667653,32.804079]},"id":"8f44c0b18c2c000-17b7f264eb636917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c2c000-17b7f264eb636917","8f44c0b18d729a4-13d7f02b89030131"]},"geometry":{"type":"LineString","coordinates":[[-83.667653,32.804079],[-83.66761600000001,32.80339],[-83.66760500000001,32.803348],[-83.667567,32.803275],[-83.667512,32.803223],[-83.667462,32.803157],[-83.667434,32.803102],[-83.66742500000001,32.803051],[-83.667412,32.802909],[-83.667404,32.80274],[-83.667404,32.802600000000005],[-83.66741900000001,32.802546],[-83.66744,32.802523],[-83.667467,32.802506],[-83.66752100000001,32.802487],[-83.668564,32.802467]]},"id":"8844c0b18dfffff-13ffb238f81f1e2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66944000000001,32.80239]},"id":"8f44c0b18d75116-1397ee08011ac651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d75116-1397ee08011ac651","8f44c0b18d729a4-13d7f02b89030131"]},"geometry":{"type":"LineString","coordinates":[[-83.668564,32.802467],[-83.668632,32.802467],[-83.669008,32.802399],[-83.66944000000001,32.80239]]},"id":"8a44c0b18d77fff-13b6af1a87e66a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696273,32.847141]},"id":"8f44c0a244c896b-17d76c8569d8f06e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a247b672a-17dfead6c056a015","8f44c0a244c896b-17d76c8569d8f06e"]},"geometry":{"type":"LineString","coordinates":[[-83.696273,32.847141],[-83.69660300000001,32.847152],[-83.696962,32.847155]]},"id":"8844c0a245fffff-17defbae1d204ebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a247b672a-17dfead6c056a015","8f44c0a247b63b5-17f6ea9846d73e22"]},"geometry":{"type":"LineString","coordinates":[[-83.696962,32.847155],[-83.697062,32.847156000000005]]},"id":"8b44c0a247b6fff-17f67ab78c59190c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a247a6b61-17fee6c6c707653e","8f44c0a247b63b5-17f6ea9846d73e22"]},"geometry":{"type":"LineString","coordinates":[[-83.697062,32.847156000000005],[-83.697883,32.847163],[-83.698626,32.847172]]},"id":"8944c0a247bffff-17f778af893bbf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706934,32.848402]},"id":"8f44c0a243b1c73-13ff527e4ad23329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a247a6b61-17fee6c6c707653e","8f44c0a243b1c73-13ff527e4ad23329"]},"geometry":{"type":"LineString","coordinates":[[-83.698626,32.847172],[-83.698738,32.847175],[-83.698876,32.847177],[-83.699667,32.847183],[-83.70029000000001,32.847192],[-83.701285,32.847228],[-83.70235500000001,32.847341],[-83.703041,32.847457],[-83.703748,32.847613],[-83.705788,32.84817],[-83.70592280000001,32.8482068],[-83.706129,32.848263],[-83.70635300000001,32.848318],[-83.706545,32.848357],[-83.706726,32.848384],[-83.706934,32.848402]]},"id":"8744c0a24ffffff-17ffdc90e0bd454f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a24af3725-17fee34a67eefe22","8f44c0a243b1c73-13ff527e4ad23329"]},"geometry":{"type":"LineString","coordinates":[[-83.706934,32.848402],[-83.707192,32.848405],[-83.70745000000001,32.848394],[-83.707603,32.848374],[-83.707791,32.848346],[-83.70795100000001,32.848315],[-83.708122,32.848272],[-83.708279,32.848222],[-83.70841800000001,32.84817],[-83.708787,32.848005],[-83.70941400000001,32.847654],[-83.709777,32.847478],[-83.71003400000001,32.847382],[-83.71024700000001,32.847324],[-83.71027000000001,32.847318],[-83.71058500000001,32.847254],[-83.710885,32.847231],[-83.712613,32.847203],[-83.713161,32.847201000000005]]},"id":"8744c0a24ffffff-179feaf8b8c790d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25c32d8d-13d73807ef272f04","8f44c0a24af3725-17fee34a67eefe22"]},"geometry":{"type":"LineString","coordinates":[[-83.713161,32.847201000000005],[-83.71349400000001,32.847206],[-83.71369700000001,32.847234],[-83.71386700000001,32.847265],[-83.71418200000001,32.847351],[-83.71449700000001,32.847487],[-83.7146305,32.847556700000005],[-83.714679,32.847582],[-83.714792,32.847661],[-83.71490800000001,32.847752],[-83.71523,32.848058],[-83.71553800000001,32.848371],[-83.71731000000001,32.850214],[-83.717449,32.850398000000006],[-83.717571,32.850599],[-83.717646,32.850743],[-83.71772800000001,32.851008],[-83.71777300000001,32.851205]]},"id":"8644c0a27ffffff-13f6fcea12bb22e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25c32d8d-13d73807ef272f04","8f44c0a25c02684-13b7b6b0ca1d63a7"]},"geometry":{"type":"LineString","coordinates":[[-83.71777300000001,32.851205],[-83.71784000000001,32.851478],[-83.717888,32.851706],[-83.717921,32.851827],[-83.717967,32.851948],[-83.717994,32.852016],[-83.71809300000001,32.852232],[-83.718159,32.852362],[-83.718243,32.852513],[-83.718322,32.852617]]},"id":"8944c0a25c3ffff-139ff77ca4d60c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25c02684-13b7b6b0ca1d63a7","8f44c0a25c1daf6-17d77555eb290743"]},"geometry":{"type":"LineString","coordinates":[[-83.718322,32.852617],[-83.718877,32.853282]]},"id":"8944c0a25c3ffff-179776035920733f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72012120000001,32.8547985]},"id":"8f44c0a25c539ab-139f324c4af90fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25c539ab-139f324c4af90fff","8f44c0a25c1daf6-17d77555eb290743"]},"geometry":{"type":"LineString","coordinates":[[-83.718877,32.853282],[-83.71984,32.854438],[-83.72012120000001,32.8547985]]},"id":"8844c0a25dfffff-17bef3ce50350f9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a251124ee-17d72db10ddf76b8","8f44c0a25c539ab-139f324c4af90fff"]},"geometry":{"type":"LineString","coordinates":[[-83.72012120000001,32.8547985],[-83.72064300000001,32.855397],[-83.72191000000001,32.856865],[-83.722008,32.856965]]},"id":"8744c0a25ffffff-13bf7fffe0b638c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72168500000001,32.859614]},"id":"8f44c0a25010db4-17deee7ae42f8d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25010db4-17deee7ae42f8d5f","8f44c0a251124ee-17d72db10ddf76b8"]},"geometry":{"type":"LineString","coordinates":[[-83.722008,32.856965],[-83.72222400000001,32.857294],[-83.722301,32.85746],[-83.72237700000001,32.857695],[-83.722409,32.857917],[-83.722408,32.85812],[-83.722378,32.858314],[-83.722284,32.858617],[-83.72221,32.858769],[-83.721979,32.859172],[-83.721829,32.859415000000006],[-83.721795,32.85947],[-83.72168500000001,32.859614]]},"id":"8844c0a251fffff-139ffd450916dcb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5663584,32.8672768]},"id":"8f44c0b8b99b854-1797a9b20f193c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b886dbdb2-139fb083448f9299","8f44c0b8b99b854-1797a9b20f193c09"]},"geometry":{"type":"LineString","coordinates":[[-83.5663584,32.8672768],[-83.56356600000001,32.864869]]},"id":"8744c0b8bffffff-179fbd1aa8564df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56233800000001,32.863802]},"id":"8f44c0b8bd2115b-1797f382ce192ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd2115b-1797f382ce192ad0","8f44c0b886dbdb2-139fb083448f9299"]},"geometry":{"type":"LineString","coordinates":[[-83.56356600000001,32.864869],[-83.56233800000001,32.863802]]},"id":"8844c0b8bdfffff-13d7b203010cdeba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd2115b-1797f382ce192ad0","8f44c0b8869b568-1797f678e1ef66d1"]},"geometry":{"type":"LineString","coordinates":[[-83.56233800000001,32.863802],[-83.561452,32.863028],[-83.561186,32.862806],[-83.561125,32.862779]]},"id":"8644c0b8fffffff-17bfb4f985ddd9c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56073760000001,32.8622875]},"id":"8f44c0b8869adaa-13d7b76b0789c008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8869b568-1797f678e1ef66d1","8f44c0b8869adaa-13d7b76b0789c008"]},"geometry":{"type":"LineString","coordinates":[[-83.561125,32.862779],[-83.56093940000001,32.862477000000005],[-83.56073760000001,32.8622875]]},"id":"8a44c0b8869ffff-13f7b6e7fc048fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574444,32.867131]},"id":"8f44c0b8b96c8d5-17b7f5f488c6e3de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57311,32.868284]},"id":"8f44c0b8b94e0a2-13f799364b140988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b94e0a2-13f799364b140988","8f44c0b8b96c8d5-17b7f5f488c6e3de"]},"geometry":{"type":"LineString","coordinates":[[-83.574444,32.867131],[-83.57311,32.868284]]},"id":"8944c0b8b97ffff-139fb795667f3b86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570884,32.870193]},"id":"8f44c0b8b85429a-179fbea582da598d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b94e0a2-13f799364b140988","8f44c0b8b85429a-179fbea582da598d"]},"geometry":{"type":"LineString","coordinates":[[-83.57311,32.868284],[-83.570884,32.870193]]},"id":"8844c0b8b9fffff-17df9bedebd46f4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71335040000001,32.8129134]},"id":"8f44c0b0a9b38a3-13d6e2d4055da762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a99cdaa-179f72f5972f0c00","8f44c0b0a9b38a3-13d6e2d4055da762"]},"geometry":{"type":"LineString","coordinates":[[-83.7132967,32.8140439],[-83.71332500000001,32.814003],[-83.713346,32.81382],[-83.71335040000001,32.8129134]]},"id":"8944c0b0a9bffff-17bf52d7b41cdf9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712531,32.810876]},"id":"8f44c0b0e6e1772-17dfc4d423e4d8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a9b38a3-13d6e2d4055da762","8f44c0b0e6e1772-17dfc4d423e4d8c8"]},"geometry":{"type":"LineString","coordinates":[[-83.71335040000001,32.8129134],[-83.713351,32.812797],[-83.71334,32.81252],[-83.713313,32.812313],[-83.713274,32.812153],[-83.713251,32.812087000000005],[-83.71321900000001,32.811994],[-83.71316300000001,32.811864],[-83.713035,32.811646],[-83.71294900000001,32.811511],[-83.71278000000001,32.811248],[-83.712531,32.810876]]},"id":"8644c0b0fffffff-13bf6385b2fbef53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360e355e-13976de5d5150a1a","8f44c0a360c4954-13ff2e5be3aeacbd"]},"geometry":{"type":"LineString","coordinates":[[-83.616877,32.845968],[-83.6170659,32.8460118]]},"id":"8a44c0a360e7fff-1397be20e2e3c206"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61783100000001,32.8460016]},"id":"8f44c0a360e1ad0-139f2c07a5696604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360e355e-13976de5d5150a1a","8f44c0a360e1ad0-139f2c07a5696604"]},"geometry":{"type":"LineString","coordinates":[[-83.6170659,32.8460118],[-83.61739890000001,32.8460424],[-83.6175202,32.846052400000005],[-83.617632,32.8460473],[-83.6177947,32.8460131],[-83.61783100000001,32.8460016]]},"id":"8a44c0a360e7fff-13b7fcf5bba3b819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181341,32.8458458]},"id":"8f44c0a360520a9-13bfab4a3242f256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360520a9-13bfab4a3242f256","8f44c0a360e1ad0-139f2c07a5696604"]},"geometry":{"type":"LineString","coordinates":[[-83.61783100000001,32.8460016],[-83.6179451,32.8459653],[-83.618063,32.8459021],[-83.6181341,32.8458458]]},"id":"8944c0a360fffff-13f7bba52bd5573d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618313,32.845777500000004]},"id":"8f44c0a36052ba3-1397fada6bdc0378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360520a9-13bfab4a3242f256","8f44c0a36052ba3-1397fada6bdc0378"]},"geometry":{"type":"LineString","coordinates":[[-83.6181341,32.8458458],[-83.6182175,32.8457997],[-83.618313,32.845777500000004]]},"id":"8b44c0a36052fff-13976b13cb392b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6187981,32.8458271]},"id":"8f44c0a36050375-13b7f9ab32670870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36050375-13b7f9ab32670870","8f44c0a36052ba3-1397fada6bdc0378"]},"geometry":{"type":"LineString","coordinates":[[-83.618313,32.845777500000004],[-83.6184126,32.8457809],[-83.61864030000001,32.8458099],[-83.6187981,32.8458271]]},"id":"8a44c0a36057fff-1397ea42b524a9be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618954,32.845844500000005]},"id":"8f44c0a36051d0d-13bff949ce12d5fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36050375-13b7f9ab32670870","8f44c0a36051d0d-13bff949ce12d5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6187981,32.8458271],[-83.618954,32.845844500000005]]},"id":"8a44c0a36057fff-13b7697a79ecd43c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191771,32.8458684]},"id":"8f44c0a36051962-13bfe8be51640da9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36051962-13bfe8be51640da9","8f44c0a36051d0d-13bff949ce12d5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.618954,32.845844500000005],[-83.6191771,32.8458684]]},"id":"8b44c0a36051fff-13b76904128149a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6193528,32.8458877]},"id":"8f44c0a36042573-13d7f8508af94847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36042573-13d7f8508af94847","8f44c0a36051962-13bfe8be51640da9"]},"geometry":{"type":"LineString","coordinates":[[-83.6191771,32.8458684],[-83.6192359,32.845874800000004],[-83.6193528,32.8458877]]},"id":"8944c0a3607ffff-13d7e88763c4d65f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6195392,32.845908300000005]},"id":"8f44c0a36042173-13d7b7dc07fb529e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36042573-13d7f8508af94847","8f44c0a36042173-13d7b7dc07fb529e"]},"geometry":{"type":"LineString","coordinates":[[-83.6193528,32.8458877],[-83.6195392,32.845908300000005]]},"id":"8b44c0a36042fff-13df681645e44d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6199709,32.8459574]},"id":"8f44c0a3604039a-13f766ce359ccca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36042173-13d7b7dc07fb529e","8f44c0a3604039a-13f766ce359ccca0"]},"geometry":{"type":"LineString","coordinates":[[-83.6195392,32.845908300000005],[-83.6198538,32.8459431],[-83.6199709,32.8459574]]},"id":"8a44c0a36047fff-13f7e7551e4e412f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200951,32.8459726]},"id":"8f44c0a36040351-13ffe6809f5c8ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3604039a-13f766ce359ccca0","8f44c0a36040351-13ffe6809f5c8ec5"]},"geometry":{"type":"LineString","coordinates":[[-83.6199709,32.8459574],[-83.6200951,32.8459726]]},"id":"8c44c0a360403ff-13ff26a76cd4da19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206923,32.8460466]},"id":"8f44c0a3606a54b-13bf250b5b9092ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3606a54b-13bf250b5b9092ee","8f44c0a36040351-13ffe6809f5c8ec5"]},"geometry":{"type":"LineString","coordinates":[[-83.6200951,32.8459726],[-83.6205041,32.846022500000004],[-83.6206923,32.8460466]]},"id":"8944c0a3607ffff-1397e5c5f92a3bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733394,32.901403]},"id":"8f44c0a2c0d95aa-13d6f1e4c100329b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.732113,32.903508]},"id":"8f44c0a2c751709-17f695056d9028a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c751709-17f695056d9028a0","8f44c0a2c0d95aa-13d6f1e4c100329b"]},"geometry":{"type":"LineString","coordinates":[[-83.733394,32.901403],[-83.733738,32.901629],[-83.73385,32.901713],[-83.73391600000001,32.901784],[-83.73394800000001,32.901834],[-83.73398,32.901899],[-83.733987,32.901922],[-83.734004,32.901975],[-83.73400600000001,32.902079],[-83.73380200000001,32.90359],[-83.73288500000001,32.903548],[-83.732113,32.903508]]},"id":"8844c0a2c7fffff-17f671a940a2c004"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730179,32.902777]},"id":"8f44c0a2c62638b-17bfb9be298573c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c751709-17f695056d9028a0","8f44c0a2c62638b-17bfb9be298573c4"]},"geometry":{"type":"LineString","coordinates":[[-83.732113,32.903508],[-83.73153900000001,32.903478],[-83.73124,32.903433],[-83.731037,32.903374],[-83.73094,32.903328],[-83.73071300000001,32.903219],[-83.73052700000001,32.903083],[-83.730316,32.902901],[-83.730179,32.902777]]},"id":"8844c0a2c7fffff-17feb785db2a0dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.592822,32.85864]},"id":"8f44c0b8993655e-13ff69164dd8ed10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8993655e-13ff69164dd8ed10","8f44c0b8d293b71-17d7e73966c26092"]},"geometry":{"type":"LineString","coordinates":[[-83.593585,32.857348],[-83.593096,32.858201],[-83.592985,32.858387],[-83.592822,32.85864]]},"id":"8744c0b8dffffff-13dff82401c3c11f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59226100000001,32.859578]},"id":"8f44c0b89916103-17b76a74e5b7cf45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89916103-17b76a74e5b7cf45","8f44c0b8993655e-13ff69164dd8ed10"]},"geometry":{"type":"LineString","coordinates":[[-83.592822,32.85864],[-83.59226100000001,32.859578]]},"id":"8844c0b899fffff-139f69c59bfee3d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558383,32.825254]},"id":"8f44c0b81293874-13f7fd2aa9890eb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556787,32.826261]},"id":"8f44c0b81641220-13dfe110263c7e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81641220-13dfe110263c7e79","8f44c0b81293874-13f7fd2aa9890eb0"]},"geometry":{"type":"LineString","coordinates":[[-83.558383,32.825254],[-83.556787,32.826261]]},"id":"8744c0b81ffffff-13b7ff1d64019900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556279,32.826566]},"id":"8f44c0b8164e49e-179fc24da136603f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8164e49e-179fc24da136603f","8f44c0b81641220-13dfe110263c7e79"]},"geometry":{"type":"LineString","coordinates":[[-83.556787,32.826261],[-83.556279,32.826566]]},"id":"8944c0b8167ffff-13bff1aee338eab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642313,32.840632]},"id":"8f44c0a34050add-17f7f042654f3bc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340e9013-13dff1a06350ff01","8f44c0a34050add-17f7f042654f3bc0"]},"geometry":{"type":"LineString","coordinates":[[-83.64175300000001,32.84183],[-83.642313,32.840632]]},"id":"8844c0a341fffff-17fff0f16b60d357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64247900000001,32.840209]},"id":"8f44c0a34055db3-17feefdaa545b015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34055db3-17feefdaa545b015","8f44c0a34050add-17f7f042654f3bc0"]},"geometry":{"type":"LineString","coordinates":[[-83.642313,32.840632],[-83.64247900000001,32.840209]]},"id":"8a44c0a34057fff-17fef00e8c3f3f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6430345,32.8389693]},"id":"8f44c0a34074999-13f7fe7f7236ce4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34055db3-17feefdaa545b015","8f44c0a34074999-13f7fe7f7236ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.64247900000001,32.840209],[-83.6430345,32.8389693]]},"id":"8944c0a3407ffff-13f7ef2d19941535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643585,32.837727]},"id":"8f44c0a34142485-17dfed27604af5fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34142485-17dfed27604af5fb","8f44c0a34074999-13f7fe7f7236ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6430345,32.8389693],[-83.643585,32.837727]]},"id":"8844c0a341fffff-13dfedd37d25a12f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58630600000001,32.865022]},"id":"8f44c0b89c43064-13fff8fecf96994a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89c43064-13fff8fecf96994a","8f44c0b89c4a188-13bf78ace35da677"]},"geometry":{"type":"LineString","coordinates":[[-83.58630600000001,32.865022],[-83.58636100000001,32.865398],[-83.586387,32.865547],[-83.586437,32.865738]]},"id":"8944c0b89c7ffff-13dff8db077d75f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586725,32.866923]},"id":"8f44c0b891a1b80-17b7f7f8e07be5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89c4a188-13bf78ace35da677","8f44c0b891a1b80-17b7f7f8e07be5ad"]},"geometry":{"type":"LineString","coordinates":[[-83.586437,32.865738],[-83.586725,32.866923]]},"id":"8744c0b89ffffff-17b7f852ea8e848c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b891a1b8b-17b777f483ccd30b","8f44c0b891a1b80-17b7f7f8e07be5ad"]},"geometry":{"type":"LineString","coordinates":[[-83.586725,32.866923],[-83.58673200000001,32.866954]]},"id":"8d44c0b891a1bbf-17bff7f6b3c7033a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b891a1b8b-17b777f483ccd30b","8f44c0b891a9732-13fff71a6c2fa40a"]},"geometry":{"type":"LineString","coordinates":[[-83.58673200000001,32.866954],[-83.58708100000001,32.868094]]},"id":"8944c0b891bffff-139ff7877de0dc95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.587269,32.868876]},"id":"8f44c0b89030784-13f7f6a4eda3cbcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89030784-13f7f6a4eda3cbcf","8f44c0b891a9732-13fff71a6c2fa40a"]},"geometry":{"type":"LineString","coordinates":[[-83.58708100000001,32.868094],[-83.58718900000001,32.868468],[-83.587237,32.868671],[-83.587269,32.868876]]},"id":"8844c0b891fffff-13f7f6d902a08543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.587272,32.869128]},"id":"8f44c0b89033c41-179776a30d1115da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89030784-13f7f6a4eda3cbcf","8f44c0b89033c41-179776a30d1115da"]},"geometry":{"type":"LineString","coordinates":[[-83.587269,32.868876],[-83.587272,32.869128]]},"id":"8a44c0b89037fff-13b776a3fc4b021e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.587163,32.869808]},"id":"8f44c0b89015749-17bf76e7277c50bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89033c41-179776a30d1115da","8f44c0b89015749-17bf76e7277c50bf"]},"geometry":{"type":"LineString","coordinates":[[-83.587272,32.869128],[-83.587264,32.869315],[-83.58724000000001,32.86947],[-83.587163,32.869808]]},"id":"8944c0b8903ffff-17dff6bca7e35598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8901e456-17fff7e1c1e97b50","8f44c0b89015749-17bf76e7277c50bf"]},"geometry":{"type":"LineString","coordinates":[[-83.587163,32.869808],[-83.587074,32.870026],[-83.58699800000001,32.870174],[-83.58676200000001,32.870545]]},"id":"8944c0b8903ffff-179f775b018f0c98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58584400000001,32.871856]},"id":"8f44c0b890f2586-13bf7a1f8fb1a004"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8901e456-17fff7e1c1e97b50","8f44c0b890f2586-13bf7a1f8fb1a004"]},"geometry":{"type":"LineString","coordinates":[[-83.58676200000001,32.870545],[-83.58584400000001,32.871856]]},"id":"8844c0b891fffff-13977900a4fcfc63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68625300000001,32.878424]},"id":"8f44c0a23ca2d82-13b784fbee8ec78e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68284100000001,32.878659]},"id":"8f44c0a2235b05c-13dfed506e5f099f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2235b05c-13dfed506e5f099f","8f44c0a23ca2d82-13b784fbee8ec78e"]},"geometry":{"type":"LineString","coordinates":[[-83.68625300000001,32.878424],[-83.685961,32.878262],[-83.685832,32.878228],[-83.68574500000001,32.878216],[-83.685603,32.878207],[-83.68537400000001,32.878203],[-83.684926,32.878228],[-83.684668,32.878267],[-83.68444000000001,32.878313],[-83.683216,32.878582],[-83.68284100000001,32.878659]]},"id":"8644c0a27ffffff-1396a91ed6044ffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681708,32.880274]},"id":"8f44c0a22251ca5-17bfd01483b608f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2235b05c-13dfed506e5f099f","8f44c0a22251ca5-17bfd01483b608f0"]},"geometry":{"type":"LineString","coordinates":[[-83.68284100000001,32.878659],[-83.682665,32.878721],[-83.68241300000001,32.878836],[-83.68209300000001,32.878993],[-83.68195800000001,32.879103],[-83.68185700000001,32.879202],[-83.681781,32.879315000000005],[-83.681689,32.879492],[-83.681645,32.879637],[-83.68163600000001,32.879717],[-83.681635,32.879852],[-83.68164800000001,32.87999],[-83.681672,32.880153],[-83.681708,32.880274]]},"id":"8944c0a2227ffff-17dfbf5868c4ac2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72123140000001,32.8929015]},"id":"8f44c0a212c8068-179f7f966b71e7d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72412800000001,32.892922]},"id":"8f44c0a2c5a550d-179e6884062f230a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a212c8068-179f7f966b71e7d4","8f44c0a2c5a550d-179e6884062f230a"]},"geometry":{"type":"LineString","coordinates":[[-83.72123140000001,32.8929015],[-83.722239,32.892895],[-83.72289400000001,32.89291],[-83.72412800000001,32.892922]]},"id":"8644c0a2fffffff-1796ec0d3470bf5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72520700000001,32.892933]},"id":"8f44c0a2c514661-17b725e1a9f3a25e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c514661-17b725e1a9f3a25e","8f44c0a2c5a550d-179e6884062f230a"]},"geometry":{"type":"LineString","coordinates":[[-83.72412800000001,32.892922],[-83.72520700000001,32.892933]]},"id":"8844c0a2c5fffff-179fb732d980cad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659717,32.798623]},"id":"8f44c0b1ea8d770-17f7e5c4eae22319"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea8d770-17f7e5c4eae22319","8f44c0b1ead2821-13f7e63b068091bb"]},"geometry":{"type":"LineString","coordinates":[[-83.65952800000001,32.799669],[-83.65957300000001,32.799491],[-83.65970800000001,32.798859],[-83.659723,32.798723],[-83.659717,32.798623]]},"id":"8844c0b1ebfffff-13bff5f3b3fc1a8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666961,32.830942]},"id":"8f44c0b1b1768c5-17def415644cd359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666922,32.830024]},"id":"8f44c0b1b12dc93-179fb42dc9f8fd55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1768c5-17def415644cd359","8f44c0b1b12dc93-179fb42dc9f8fd55"]},"geometry":{"type":"LineString","coordinates":[[-83.666961,32.830942],[-83.666931,32.830882],[-83.66691900000001,32.83083],[-83.666911,32.830759],[-83.666922,32.830024]]},"id":"8844c0b1b1fffff-17bef42fa3fe0620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666943,32.829371]},"id":"8f44c0b1b8d2163-13f6f420a02a1d17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b12dc93-179fb42dc9f8fd55","8f44c0b1b8d2163-13f6f420a02a1d17"]},"geometry":{"type":"LineString","coordinates":[[-83.666922,32.830024],[-83.666943,32.829371]]},"id":"8744c0b1bffffff-13d6f4273c8ef34f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666956,32.828716]},"id":"8f44c0b1b889689-13dfb418881f1ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b889689-13dfb418881f1ea8","8f44c0b1b8d2163-13f6f420a02a1d17"]},"geometry":{"type":"LineString","coordinates":[[-83.666943,32.829371],[-83.666956,32.828716]]},"id":"8944c0b1b8fffff-13beb41c9ccaf246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66695800000001,32.828063]},"id":"8f44c0b1b888969-17d7f4174a712e5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b888969-17d7f4174a712e5b","8f44c0b1b889689-13dfb418881f1ea8"]},"geometry":{"type":"LineString","coordinates":[[-83.666956,32.828716],[-83.666953,32.828524],[-83.66695800000001,32.828063]]},"id":"8a44c0b1b88ffff-139ff41906aa9be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666981,32.82739]},"id":"8f44c0b1b8aa0e2-179ef408e9051f09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b888969-17d7f4174a712e5b","8f44c0b1b8aa0e2-179ef408e9051f09"]},"geometry":{"type":"LineString","coordinates":[[-83.66695800000001,32.828063],[-83.66696900000001,32.827506],[-83.666981,32.82739]]},"id":"8944c0b1b8bffff-17f6f41290553c8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666994,32.826741000000005]},"id":"8f44c0b1b8aed89-179fb400cf757adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8aed89-179fb400cf757adb","8f44c0b1b8aa0e2-179ef408e9051f09"]},"geometry":{"type":"LineString","coordinates":[[-83.666981,32.82739],[-83.666977,32.827236],[-83.666994,32.826741000000005]]},"id":"8944c0b1b8bffff-17d7f407031e9e61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667045,32.825982]},"id":"8f44c0b1b8a0971-13bef3e0e24df8f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8aed89-179fb400cf757adb","8f44c0b1b8a0971-13bef3e0e24df8f6"]},"geometry":{"type":"LineString","coordinates":[[-83.666994,32.826741000000005],[-83.667045,32.826027],[-83.667045,32.825982]]},"id":"8a44c0b1b8a7fff-139eb3efe075f2dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66672200000001,32.825975]},"id":"8f44c0b1b8a0d98-13bef4aac7e1270a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66678200000001,32.824576]},"id":"8f44c0b1b983734-17d6b48547aa1bac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b983734-17d6b48547aa1bac","8f44c0b1b8a0d98-13bef4aac7e1270a"]},"geometry":{"type":"LineString","coordinates":[[-83.66672200000001,32.825975],[-83.666759,32.82489],[-83.66678200000001,32.824576]]},"id":"8844c0b1b9fffff-13f7b49b05474fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b983734-17d6b48547aa1bac","8f44c0b1b9b1814-13dfb462e109090d"]},"geometry":{"type":"LineString","coordinates":[[-83.66678200000001,32.824576],[-83.666797,32.823987],[-83.666821,32.823301],[-83.666837,32.823189]]},"id":"8944c0b1b9bffff-179ef4788a027021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694559,32.884897]},"id":"8f44c0a2302410a-1396f0b4a0156578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2300699e-17d6f39bcb9477af","8f44c0a2302410a-1396f0b4a0156578"]},"geometry":{"type":"LineString","coordinates":[[-83.694559,32.884897],[-83.694333,32.884988],[-83.69427300000001,32.885005],[-83.69419900000001,32.885005],[-83.693979,32.884954],[-83.693854,32.884938000000005],[-83.69373800000001,32.884936],[-83.69363,32.884963],[-83.69354700000001,32.88501],[-83.69347,32.885061],[-83.693397,32.885137],[-83.693347,32.885202],[-83.693324,32.885257],[-83.693313,32.885322],[-83.69331100000001,32.885392],[-83.69331600000001,32.885458],[-83.693368,32.885587],[-83.693391,32.885655],[-83.69340100000001,32.885711],[-83.69339500000001,32.885765],[-83.69337,32.885841]]},"id":"8844c0a231fffff-13bff2b80eb7c6c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69346,32.886356]},"id":"8f44c0a2300048d-1796f36388930146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2300048d-1796f36388930146","8f44c0a2300699e-17d6f39bcb9477af"]},"geometry":{"type":"LineString","coordinates":[[-83.69337,32.885841],[-83.693354,32.885942],[-83.69336100000001,32.886032],[-83.693374,32.8861],[-83.693433,32.886285],[-83.69346,32.886356]]},"id":"8a44c0a23007fff-17f7f38fc769ce77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73536800000001,32.867306]},"id":"8f44c0b52c32cda-17964d13013f544b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73568900000001,32.865113]},"id":"8f44c0b52d129a5-13b7ac4a68967802"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52d129a5-13b7ac4a68967802","8f44c0b52c32cda-17964d13013f544b"]},"geometry":{"type":"LineString","coordinates":[[-83.73536800000001,32.867306],[-83.735303,32.867224],[-83.73518,32.867049],[-83.73487700000001,32.866599],[-83.73484400000001,32.866529],[-83.73482,32.866446],[-83.734809,32.866356],[-83.734813,32.866289],[-83.73483,32.866218],[-83.734858,32.866151],[-83.734913,32.866065],[-83.735006,32.865952],[-83.7351,32.865875],[-83.735337,32.86573],[-83.73548500000001,32.865614],[-83.73559800000001,32.865491],[-83.73567800000001,32.865329],[-83.73568800000001,32.865229],[-83.73568900000001,32.865113]]},"id":"8844c0b52dfffff-17de3d858b574327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73574500000001,32.862989]},"id":"8f44c0a25a6e618-179e2c2760d19ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25a6e618-179e2c2760d19ecc","8f44c0b52d129a5-13b7ac4a68967802"]},"geometry":{"type":"LineString","coordinates":[[-83.73568900000001,32.865113],[-83.73569900000001,32.864966],[-83.735708,32.864696],[-83.73574500000001,32.862989]]},"id":"8644c0b57ffffff-17b60c363208a4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628887,32.82245]},"id":"8f44c0ba9ab4a98-139f5109ad548bab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630256,32.82327]},"id":"8f44c0ba9aa10b3-179fcdb20ec91dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9ab4a98-139f5109ad548bab","8f44c0ba9aa10b3-179fcdb20ec91dfc"]},"geometry":{"type":"LineString","coordinates":[[-83.628887,32.82245],[-83.62949300000001,32.822811],[-83.629542,32.82284],[-83.629914,32.823067],[-83.630256,32.82327]]},"id":"8944c0ba9abffff-139f5f5db47b70bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6309538,32.8236877]},"id":"8f44c0ba9aaca49-1797dbfdedaecd66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9aaca49-1797dbfdedaecd66","8f44c0ba9aa10b3-179fcdb20ec91dfc"]},"geometry":{"type":"LineString","coordinates":[[-83.630256,32.82327],[-83.6309538,32.8236877]]},"id":"8944c0ba9abffff-17975cd7f03f369d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a1840b-17bf2a24bf9b4638","8f44c0ba9aaca49-1797dbfdedaecd66"]},"geometry":{"type":"LineString","coordinates":[[-83.6309538,32.8236877],[-83.6316532,32.824119800000005],[-83.6316912,32.8241433],[-83.6317109,32.8241554]]},"id":"8844c0ba9bfffff-17b70b1156727682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63241380000001,32.8245784]},"id":"8f44c0ba9a19ad9-17d7886d6a6ca4f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a1840b-17bf2a24bf9b4638","8f44c0ba9a19ad9-17d7886d6a6ca4f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6317109,32.8241554],[-83.6317289,32.824166600000005],[-83.63178110000001,32.8241989],[-83.6318354,32.8242324],[-83.6319445,32.8242998],[-83.63197810000001,32.8243205],[-83.63241380000001,32.8245784]]},"id":"8a44c0ba9a1ffff-17bf5949abcf849c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63377700000001,32.825409]},"id":"8f44c0ba9a500c2-13dfa5196b8104bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a500c2-13dfa5196b8104bb","8f44c0ba9a19ad9-17d7886d6a6ca4f4"]},"geometry":{"type":"LineString","coordinates":[[-83.63241380000001,32.8245784],[-83.63299400000001,32.824935],[-83.633633,32.825321],[-83.63377700000001,32.825409]]},"id":"8844c0ba9bfffff-13d7b6c3c4412cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634507,32.825823]},"id":"8f44c0ba9a5cd40-13df63512d011f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a500c2-13dfa5196b8104bb","8f44c0ba9a5cd40-13df63512d011f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.63377700000001,32.825409],[-83.634507,32.825823]]},"id":"8944c0ba9a7ffff-13df043546cb23e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6352184,32.826241100000004]},"id":"8f44c0ba9a4e446-13d7b1948ca8e0c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a4e446-13d7b1948ca8e0c3","8f44c0ba9a5cd40-13df63512d011f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.634507,32.825823],[-83.6352184,32.826241100000004]]},"id":"8944c0ba9a7ffff-13df1272dadf46ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63594,32.82667]},"id":"8f44c0ba9a49d80-17deffd18c5e38c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a4e446-13d7b1948ca8e0c3","8f44c0ba9a49d80-17deffd18c5e38c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6352184,32.826241100000004],[-83.635339,32.826312],[-83.63594,32.82667]]},"id":"8a44c0ba9a4ffff-13d790b2edab4754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636626,32.827121000000005]},"id":"8f44c0a34d14b34-17f6fe24caf7a370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a49d80-17deffd18c5e38c6","8f44c0a34d14b34-17f6fe24caf7a370"]},"geometry":{"type":"LineString","coordinates":[[-83.63594,32.82667],[-83.636626,32.827121000000005]]},"id":"8844c0a34dfffff-17fffefb2841a570"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d06398-17fefc8341b67421","8f44c0a34d14b34-17f6fe24caf7a370"]},"geometry":{"type":"LineString","coordinates":[[-83.636626,32.827121000000005],[-83.63678300000001,32.827227],[-83.63729400000001,32.82754]]},"id":"8944c0a34d3ffff-17fffd551341d683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d06398-17fefc8341b67421","8f44c0a34d01121-1797fab926654337"]},"geometry":{"type":"LineString","coordinates":[[-83.63729400000001,32.82754],[-83.63802700000001,32.827993]]},"id":"8a44c0a34d07fff-179efb9e34a44e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7289554,32.9292263]},"id":"8f44c0a2b90418e-17be7cbae1d53c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b905ce9-17f6dbe5cb41e35b","8f44c0a2b90418e-17be7cbae1d53c04"]},"geometry":{"type":"LineString","coordinates":[[-83.72929640000001,32.929495700000004],[-83.7289554,32.9292263]]},"id":"8a44c0a2b907fff-1796bc505f7a9bce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72727540000001,32.9281712]},"id":"8f44c0a2864dd90-17bf20d4e999797f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2864dd90-17bf20d4e999797f","8f44c0a2b90418e-17be7cbae1d53c04"]},"geometry":{"type":"LineString","coordinates":[[-83.7289554,32.9292263],[-83.728671,32.928986],[-83.727986,32.928437],[-83.72761200000001,32.928248],[-83.727377,32.928196],[-83.72727540000001,32.9281712]]},"id":"8744c0a28ffffff-17d6beae5fd700e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7263284,32.9281422]},"id":"8f44c0a2864e4b3-179ee324c36e098e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2864dd90-17bf20d4e999797f","8f44c0a2864e4b3-179ee324c36e098e"]},"geometry":{"type":"LineString","coordinates":[[-83.72727540000001,32.9281712],[-83.7272071,32.928154500000005],[-83.72659,32.928144],[-83.7263284,32.9281422]]},"id":"8a44c0a2864ffff-179ee1fc4113a23f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7248867,32.9300817]},"id":"8f44c0a2b9864b3-13d736a9d30c7c52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b9864b3-13d736a9d30c7c52","8f44c0a2864e4b3-179ee324c36e098e"]},"geometry":{"type":"LineString","coordinates":[[-83.7263284,32.9281422],[-83.725588,32.928137],[-83.725305,32.928185],[-83.725238,32.92824],[-83.725138,32.928312000000005],[-83.72505100000001,32.928393],[-83.72501600000001,32.928435],[-83.724985,32.928483],[-83.72496000000001,32.928531],[-83.72494,32.928587],[-83.7249,32.928761],[-83.72490400000001,32.928835],[-83.72489300000001,32.929516],[-83.7248867,32.9300817]]},"id":"8644c0a2fffffff-179ef5ccebdcff64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7260976,32.9317027]},"id":"8f44c0a2b988669-17de33b50b0b9294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b9864b3-13d736a9d30c7c52","8f44c0a2b988669-17de33b50b0b9294"]},"geometry":{"type":"LineString","coordinates":[[-83.7248867,32.9300817],[-83.724883,32.930416],[-83.72489,32.930531],[-83.724901,32.930616],[-83.724929,32.930709],[-83.725032,32.930843],[-83.725132,32.93094],[-83.7256236,32.9313097],[-83.7257464,32.9314108],[-83.7258923,32.9315352],[-83.7260976,32.9317027]]},"id":"8944c0a2b9bffff-1397f599258cc254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7267108,32.9322365]},"id":"8f44c0a2b814712-1797f235ca9f5a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2b988669-17de33b50b0b9294","8f44c0a2b814712-1797f235ca9f5a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.7260976,32.9317027],[-83.72622580000001,32.9318073],[-83.72653840000001,32.9320879],[-83.7267108,32.9322365]]},"id":"8844c0a2b9fffff-17f672f4dea89572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655815,32.830681000000006]},"id":"8f44c0b1b519a91-17b7ef4baf019f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b50a61e-17bfeeaba691b56f","8f44c0b1b519a91-17b7ef4baf019f76"]},"geometry":{"type":"LineString","coordinates":[[-83.655815,32.830681000000006],[-83.655865,32.830691],[-83.65607100000001,32.830691]]},"id":"8944c0b1b53ffff-17bfcefbec0730ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b509106-17becc4ccd791190","8f44c0b1b50a61e-17bfeeaba691b56f"]},"geometry":{"type":"LineString","coordinates":[[-83.65607100000001,32.830691],[-83.657042,32.830686]]},"id":"8a44c0b1b50ffff-17bedd7c3b60f921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b509106-17becc4ccd791190","8f44c0b1b5724d4-17becbb8a1117dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.657042,32.830686],[-83.657279,32.830686]]},"id":"8a44c0b1b50ffff-17becc02b07a798e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594,32.830686]},"id":"8f44c0b1b560a96-17bec68b0eb78889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b560a96-17bec68b0eb78889","8f44c0b1b5724d4-17becbb8a1117dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.657279,32.830686],[-83.65851500000001,32.830686],[-83.6594,32.830686]]},"id":"8944c0b1b57ffff-17bec921dbb66241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b560a96-17bec68b0eb78889","8f44c0b1b19299e-17b7c4a5633ca56b"]},"geometry":{"type":"LineString","coordinates":[[-83.6594,32.830686],[-83.659881,32.830688],[-83.660154,32.830694],[-83.660177,32.830706]]},"id":"8744c0b1bffffff-17bec5975b864b20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67422900000001,32.839177]},"id":"8f44c0a26d90a23-13f7a256ef517fd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d90a23-13f7a256ef517fd2","8f44c0a26d95cde-13fea1f23aef77d6"]},"geometry":{"type":"LineString","coordinates":[[-83.67422900000001,32.839177],[-83.67428500000001,32.839087],[-83.67439010000001,32.8389864]]},"id":"8a44c0a26d97fff-13b7b2284f3aedbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d95cde-13fea1f23aef77d6","8f44c0a26db3642-1397a17f43fcbe42"]},"geometry":{"type":"LineString","coordinates":[[-83.67439010000001,32.8389864],[-83.67447100000001,32.838909],[-83.674574,32.838821]]},"id":"8a44c0a26d97fff-13bea1b974fd50c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db3380-13d6e146d81f6222","8f44c0a26db3642-1397a17f43fcbe42"]},"geometry":{"type":"LineString","coordinates":[[-83.674574,32.838821],[-83.6746643,32.8387436]]},"id":"8b44c0a26db3fff-13fef163013404ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6749212,32.8385235]},"id":"8f44c0a26db1403-13dfb0a647484048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db3380-13d6e146d81f6222","8f44c0a26db1403-13dfb0a647484048"]},"geometry":{"type":"LineString","coordinates":[[-83.6746643,32.8387436],[-83.6749212,32.8385235]]},"id":"8a44c0a26db7fff-1396a0f6962b3044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db1403-13dfb0a647484048","8f44c0a26db5290-13bedfeb03846671"]},"geometry":{"type":"LineString","coordinates":[[-83.6749212,32.8385235],[-83.6752208,32.8382668]]},"id":"8a44c0a26db7fff-13ffa048aff3db3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6755049,32.8380233]},"id":"8f44c0a26da64f1-13969f3977c4d9a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26da64f1-13969f3977c4d9a4","8f44c0a26db5290-13bedfeb03846671"]},"geometry":{"type":"LineString","coordinates":[[-83.6752208,32.8382668],[-83.6755049,32.8380233]]},"id":"8944c0a26dbffff-13f6bf924e72d9c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67576360000001,32.8378017]},"id":"8f44c0a26da6980-179e9e97cabaa1d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26da6980-179e9e97cabaa1d6","8f44c0a26da64f1-13969f3977c4d9a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6755049,32.8380233],[-83.67576360000001,32.8378017]]},"id":"8b44c0a26da6fff-17dfdee8a989a39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675978,32.837618]},"id":"8f44c0b1ba59a89-1797de11cb3f7568"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26da6980-179e9e97cabaa1d6","8f44c0b1ba59a89-1797de11cb3f7568"]},"geometry":{"type":"LineString","coordinates":[[-83.67576360000001,32.8378017],[-83.675978,32.837618]]},"id":"8744c0b1bffffff-17d6be54c03bf641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724114,32.894154]},"id":"8f44c0a2c5a8494-139e688ccc9833ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c5a8494-139e688ccc9833ff","8f44c0a2c51e245-139f2529eea0fd43"]},"geometry":{"type":"LineString","coordinates":[[-83.724114,32.894154],[-83.72550100000001,32.894152000000005]]},"id":"8844c0a2c5fffff-139fa6db57a8fb5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72646200000001,32.894156]},"id":"8f44c0a2c51db66-139fa2d14a9dd894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c51db66-139fa2d14a9dd894","8f44c0a2c51e245-139f2529eea0fd43"]},"geometry":{"type":"LineString","coordinates":[[-83.72550100000001,32.894152000000005],[-83.725898,32.894151],[-83.72646200000001,32.894156]]},"id":"8944c0a2c53ffff-139f73fd990838a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68624100000001,32.852829]},"id":"8f44c0a26332a4c-17bea50365ce153c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68621300000001,32.855258]},"id":"8f44c0a2631b76c-13bec514eb058ea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2631b76c-13bec514eb058ea0","8f44c0a26332a4c-17bea50365ce153c"]},"geometry":{"type":"LineString","coordinates":[[-83.68624100000001,32.852829],[-83.68622500000001,32.854208],[-83.68621300000001,32.855258]]},"id":"8844c0a263fffff-17b7b50c34679134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686181,32.857504]},"id":"8f44c0a2620e4b3-17b68528e1c6181c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2631b76c-13bec514eb058ea0","8f44c0a2620e4b3-17b68528e1c6181c"]},"geometry":{"type":"LineString","coordinates":[[-83.68621300000001,32.855258],[-83.686189,32.856937],[-83.686181,32.857504]]},"id":"8944c0a2623ffff-17f6a51ee0c45911"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622731,32.848201]},"id":"8f44c0a36300a49-13ffa0112804898f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36300a49-13ffa0112804898f","8f44c0a3630e0e9-13bf20162513077b"]},"geometry":{"type":"LineString","coordinates":[[-83.622731,32.848201],[-83.62272300000001,32.848944]]},"id":"8944c0a3633ffff-13d7f013a919081a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62272,32.849224]},"id":"8f44c0a3630a85e-13ff20180898353c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3630a85e-13ff20180898353c","8f44c0a3630e0e9-13bf20162513077b"]},"geometry":{"type":"LineString","coordinates":[[-83.62272300000001,32.848944],[-83.62272,32.849224]]},"id":"8a44c0a3630ffff-1397a017199a0429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6408205,32.8323411]},"id":"8f44c0a348920f0-13b7f3e73e52eeaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64135,32.831696]},"id":"8f44c0a34894cca-13b6f29c43f70331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34894cca-13b6f29c43f70331","8f44c0a348920f0-13b7f3e73e52eeaf"]},"geometry":{"type":"LineString","coordinates":[[-83.6408205,32.8323411],[-83.6413086,32.8317465],[-83.64135,32.831696]]},"id":"8a44c0a34897fff-13fff341b0fbf644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6415786,32.8314295]},"id":"8f44c0a348b2394-17fff20d64b077c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348b2394-17fff20d64b077c9","8f44c0a34894cca-13b6f29c43f70331"]},"geometry":{"type":"LineString","coordinates":[[-83.64135,32.831696],[-83.6415786,32.8314295]]},"id":"8944c0a348bffff-13def254d285b9b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64208140000001,32.8308282]},"id":"8f44c0a348b409a-1797f0d32ae7ae70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348b2394-17fff20d64b077c9","8f44c0a348b409a-1797f0d32ae7ae70"]},"geometry":{"type":"LineString","coordinates":[[-83.6415786,32.8314295],[-83.64208140000001,32.8308282]]},"id":"8a44c0a348b7fff-17bff1704a5a9d54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642323,32.830551]},"id":"8f44c0a3499a288-17d6f03c2871d434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348b409a-1797f0d32ae7ae70","8f44c0a3499a288-17d6f03c2871d434"]},"geometry":{"type":"LineString","coordinates":[[-83.64208140000001,32.8308282],[-83.642323,32.830551]]},"id":"8844c0a349fffff-17bff087af7baec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643281,32.829416]},"id":"8f44c0a34982b4a-1397ede56ac24a8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34982b4a-1397ede56ac24a8e","8f44c0a3499a288-17d6f03c2871d434"]},"geometry":{"type":"LineString","coordinates":[[-83.642323,32.830551],[-83.643281,32.829416]]},"id":"8944c0a349bffff-17f7ff10c7b17b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64427400000001,32.828229]},"id":"8f44c0a349a08d6-13bfeb78c34114c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34982b4a-1397ede56ac24a8e","8f44c0a349a08d6-13bfeb78c34114c3"]},"geometry":{"type":"LineString","coordinates":[[-83.643281,32.829416],[-83.64427400000001,32.828229]]},"id":"8944c0a349bffff-139efcaf11136137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645093,32.827252]},"id":"8f44c0b1a648840-17dee978e24723ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a648840-17dee978e24723ee","8f44c0a349a08d6-13bfeb78c34114c3"]},"geometry":{"type":"LineString","coordinates":[[-83.64427400000001,32.828229],[-83.645093,32.827252]]},"id":"8644c0b1fffffff-17fffa78dad5dbe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7168285,32.8997333]},"id":"8f44c0a2ebb2c1a-17bf7a5637e2d1ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711872,32.899687]},"id":"8f44c0a2e103509-17b6667002c88e41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e103509-17b6667002c88e41","8f44c0a2ebb2c1a-17bf7a5637e2d1ee"]},"geometry":{"type":"LineString","coordinates":[[-83.7168285,32.8997333],[-83.712749,32.899679],[-83.711872,32.899687]]},"id":"8744c0a2effffff-17bfd0631ac44b2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e103509-17b6667002c88e41","8f44c0a2e11e522-179e48d0ce568848"]},"geometry":{"type":"LineString","coordinates":[[-83.711872,32.899687],[-83.71167000000001,32.899701],[-83.71145,32.899729],[-83.711224,32.899772],[-83.710898,32.899856]]},"id":"8944c0a2e13ffff-17df67a2658ceae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653299,32.805553]},"id":"8f44c0b1e299120-13def5702401ca8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2aa572-17d6d2ebcc779d11","8f44c0b1e299120-13def5702401ca8a"]},"geometry":{"type":"LineString","coordinates":[[-83.653299,32.805553],[-83.65333100000001,32.804516],[-83.653349,32.804504],[-83.65337500000001,32.804485],[-83.653468,32.804474],[-83.65433,32.80451]]},"id":"8944c0b1e2bffff-17f7d4c8bb21617c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2aa572-17d6d2ebcc779d11","8f44c0b1e2c656b-1397ef97400910c7"]},"geometry":{"type":"LineString","coordinates":[[-83.65433,32.80451],[-83.655236,32.804533],[-83.655361,32.804543],[-83.65542,32.804561],[-83.655493,32.804589],[-83.65557000000001,32.804642],[-83.65561600000001,32.804688],[-83.655675,32.804771],[-83.655697,32.804839],[-83.655697,32.804934],[-83.655652,32.805151],[-83.655636,32.805259],[-83.655635,32.805383],[-83.65567300000001,32.805788],[-83.65569400000001,32.805945],[-83.655703,32.806182],[-83.65569400000001,32.806275]]},"id":"8844c0b1e3fffff-1797f06570f0ee66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698171,32.826912]},"id":"8f44c0b19b0a119-17f667e321216ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69983400000001,32.826971]},"id":"8f44c0b19b70463-179ee3d3c66afe15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b0a119-17f667e321216ddb","8f44c0b19b70463-179ee3d3c66afe15"]},"geometry":{"type":"LineString","coordinates":[[-83.698171,32.826912],[-83.699717,32.826974],[-83.69983400000001,32.826971]]},"id":"8844c0b19bfffff-179ef5db799e8192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70111100000001,32.82703]},"id":"8f44c0b19b60425-17bfe0b5ae3d0c62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b60425-17bfe0b5ae3d0c62","8f44c0b19b70463-179ee3d3c66afe15"]},"geometry":{"type":"LineString","coordinates":[[-83.69983400000001,32.826971],[-83.70111100000001,32.82703]]},"id":"8944c0b19b7ffff-17bf7244b6c499a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71613,32.795735]},"id":"8f44c0b0ec6341e-13d67c0ac0c5388f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec75a31-17d77cd4ad23c0de","8f44c0b0ec6341e-13d67c0ac0c5388f"]},"geometry":{"type":"LineString","coordinates":[[-83.71580700000001,32.79509],[-83.71585900000001,32.795159000000005],[-83.715973,32.795267],[-83.716054,32.795374],[-83.716087,32.795436],[-83.716113,32.795526],[-83.71612800000001,32.79564],[-83.71613,32.795735]]},"id":"8944c0b0ec7ffff-17fefc4fdadb9b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71616110000001,32.7962332]},"id":"8f44c0b0ec450d2-139ffbf75973b2c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec6341e-13d67c0ac0c5388f","8f44c0b0ec450d2-139ffbf75973b2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.71613,32.795735],[-83.71612300000001,32.795892],[-83.71611200000001,32.79601],[-83.716109,32.79612],[-83.71616110000001,32.7962332]]},"id":"8944c0b0ec7ffff-13f6bc0f213b7ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641197,32.81837]},"id":"8f44c0b1a46e8d4-139ff2fbe5286196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a46e8d4-139ff2fbe5286196","8f44c0b1a46d621-13b7f14a2e09e870"]},"geometry":{"type":"LineString","coordinates":[[-83.641197,32.81837],[-83.641891,32.818803]]},"id":"8a44c0b1a46ffff-13b6f223088e9e15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64255,32.819204]},"id":"8f44c0b1a09bc8c-13b6efae4900b24b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a09bc8c-13b6efae4900b24b","8f44c0b1a46d621-13b7f14a2e09e870"]},"geometry":{"type":"LineString","coordinates":[[-83.641891,32.818803],[-83.64255,32.819204]]},"id":"8744c0b1affffff-13b7f07c3660c5e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64362700000001,32.819846000000005]},"id":"8f44c0b1a7254b5-13b7ed0d2dcaa94b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a09bc8c-13b6efae4900b24b","8f44c0b1a7254b5-13b7ed0d2dcaa94b"]},"geometry":{"type":"LineString","coordinates":[[-83.64255,32.819204],[-83.64362700000001,32.819846000000005]]},"id":"8844c0b1a1fffff-13ffee5db8722109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644592,32.809579]},"id":"8f44c0b1ac2d145-13b6eab203cf4d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644631,32.808549]},"id":"8f44c0b1ad50d8c-139fea99a2f10019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac2d145-13b6eab203cf4d5f","8f44c0b1ad50d8c-139fea99a2f10019"]},"geometry":{"type":"LineString","coordinates":[[-83.644592,32.809579],[-83.644619,32.808869],[-83.644631,32.808549]]},"id":"8944c0b1ad7ffff-13f7eaa5cdd3b084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64466200000001,32.807536]},"id":"8f44c0b1ad0d02e-17b6ea864041f3e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad0d02e-17b6ea864041f3e0","8f44c0b1ad50d8c-139fea99a2f10019"]},"geometry":{"type":"LineString","coordinates":[[-83.644631,32.808549],[-83.64466200000001,32.807536]]},"id":"8844c0b1adfffff-17f6fa8ff7d45b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a275b24-13bfd48310258f63","8f44c0b1a2665b3-13f7f483412c1813"]},"geometry":{"type":"LineString","coordinates":[[-83.65367830000001,32.825798],[-83.653678,32.825685]]},"id":"8c44c0b1a2665ff-139ef483327e8dcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653689,32.8249609]},"id":"8f44c0b1a35811e-13b6d47c6b8f7769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a2665b3-13f7f483412c1813","8f44c0b1a35811e-13b6d47c6b8f7769"]},"geometry":{"type":"LineString","coordinates":[[-83.653678,32.825685],[-83.65367930000001,32.825600800000004],[-83.653689,32.8249609]]},"id":"8844c0b1a3fffff-1396f47fd092733c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653699,32.824303]},"id":"8f44c0b1a351a44-1797f4762f97d2e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a351a44-1797f4762f97d2e3","8f44c0b1a35811e-13b6d47c6b8f7769"]},"geometry":{"type":"LineString","coordinates":[[-83.653689,32.8249609],[-83.653699,32.824303]]},"id":"8944c0b1a37ffff-17f7d47948009572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653723,32.822864]},"id":"8f44c0b1a370cc1-1396d4672daa2b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a351a44-1797f4762f97d2e3","8f44c0b1a370cc1-1396d4672daa2b01"]},"geometry":{"type":"LineString","coordinates":[[-83.653699,32.824303],[-83.653723,32.822864]]},"id":"8944c0b1a37ffff-17d7f46ea99101a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65376830000001,32.8213887]},"id":"8f44c0b1aad30d2-17f7f44ad70b69eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1aad30d2-17f7f44ad70b69eb","8f44c0b1a370cc1-1396d4672daa2b01"]},"geometry":{"type":"LineString","coordinates":[[-83.653723,32.822864],[-83.65376830000001,32.8213887]]},"id":"8744c0b1affffff-13d7d4590baa417c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6537912,32.8206403]},"id":"8f44c0b1aad6aec-17b6f43c8aae5b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1aad30d2-17f7f44ad70b69eb","8f44c0b1aad6aec-17b6f43c8aae5b42"]},"geometry":{"type":"LineString","coordinates":[[-83.65376830000001,32.8213887],[-83.6537912,32.8206403]]},"id":"8a44c0b1aad7fff-179ed443aa6416bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653811,32.819995]},"id":"8f44c0b1aa89800-1796f430231c4720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1aad6aec-17b6f43c8aae5b42","8f44c0b1aa89800-1796f430231c4720"]},"geometry":{"type":"LineString","coordinates":[[-83.6537912,32.8206403],[-83.653811,32.819995]]},"id":"8844c0b1abfffff-17ded4365b7c3d1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708297,32.829619]},"id":"8f44c0b0a62d061-139fef2a6d48ca57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a62d061-139fef2a6d48ca57","8f44c0b0a70bc8b-1797f0dccb4da421"]},"geometry":{"type":"LineString","coordinates":[[-83.708297,32.829619],[-83.70780400000001,32.829309],[-83.707712,32.829237],[-83.707648,32.829155],[-83.707611,32.829062],[-83.707598,32.828964],[-83.707604,32.828327],[-83.70760200000001,32.827961]]},"id":"8844c0b0a7fffff-13df50824a8b90df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707622,32.826559]},"id":"8f44c0b0a70578d-179770d04d6188a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a70578d-179770d04d6188a3","8f44c0b0a70bc8b-1797f0dccb4da421"]},"geometry":{"type":"LineString","coordinates":[[-83.70760200000001,32.827961],[-83.70761200000001,32.827636000000005],[-83.707622,32.826559]]},"id":"8944c0b0a73ffff-17dfd0d4d4cc0812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70756540000001,32.826122000000005]},"id":"8f44c0b0a704a33-139650f3a2f0415e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a704a33-139650f3a2f0415e","8f44c0b0a70578d-179770d04d6188a3"]},"geometry":{"type":"LineString","coordinates":[[-83.707622,32.826559],[-83.70762400000001,32.826234],[-83.70756540000001,32.826122000000005]]},"id":"8a44c0b0a707fff-139fd0d4951dd128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2356c393-13d77da0c1571bd0","8f44c0a230aa2de-13f7f8d7c977cb66"]},"geometry":{"type":"LineString","coordinates":[[-83.689266,32.884591],[-83.68981000000001,32.884577],[-83.69067600000001,32.884572],[-83.690747,32.884579],[-83.690837,32.884608],[-83.690906,32.884669],[-83.690949,32.884746],[-83.69101400000001,32.884898],[-83.69152100000001,32.886159],[-83.69184,32.886908000000005],[-83.691872,32.887029000000005],[-83.691868,32.887151],[-83.69185300000001,32.887205],[-83.691775,32.887327],[-83.691714,32.887383],[-83.69152700000001,32.887469],[-83.691226,32.887532]]},"id":"8844c0a231fffff-17fe795a23a8992c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687764,32.886329]},"id":"8f44c0a23464c5a-1797a14b8c1993d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23464c5a-1797a14b8c1993d0","8f44c0a230aa2de-13f7f8d7c977cb66"]},"geometry":{"type":"LineString","coordinates":[[-83.691226,32.887532],[-83.691016,32.887597],[-83.69080500000001,32.887636],[-83.690593,32.887665000000005],[-83.690374,32.887687],[-83.690155,32.88769],[-83.68997,32.887659],[-83.689828,32.8876],[-83.68966,32.887464],[-83.68950000000001,32.887327],[-83.689362,32.88723],[-83.68924100000001,32.887158],[-83.68894,32.887],[-83.688484,32.886736],[-83.68809200000001,32.886484],[-83.687945,32.886398],[-83.687764,32.886329]]},"id":"8744c0a23ffffff-13b67d2de5bbab96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58731800000001,32.873147]},"id":"8f44c0b890c1516-17d7f6864e4bc6fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586825,32.873117]},"id":"8f44c0b890c2329-17d777ba664ee867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890c2329-17d777ba664ee867","8f44c0b890c1516-17d7f6864e4bc6fe"]},"geometry":{"type":"LineString","coordinates":[[-83.58731800000001,32.873147],[-83.586825,32.873117]]},"id":"8a44c0b890c7fff-17dff7205f634345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5859922,32.8735386]},"id":"8f44c0b890de54d-17dff9c2e87ad421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890c2329-17d777ba664ee867","8f44c0b890de54d-17dff9c2e87ad421"]},"geometry":{"type":"LineString","coordinates":[[-83.586825,32.873117],[-83.58660300000001,32.873145],[-83.586478,32.87317],[-83.58635000000001,32.873207],[-83.58626100000001,32.873244],[-83.586178,32.873292],[-83.586098,32.873356],[-83.586056,32.873405000000005],[-83.58602,32.873466],[-83.5859922,32.8735386]]},"id":"8944c0b890fffff-179778dd6d698cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769569,32.859676]},"id":"8f44c0b50930d43-17f5b99360580eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50930d43-17f5b99360580eec","8f44c0b5466b2cc-17ddbb13cb9d6e66"]},"geometry":{"type":"LineString","coordinates":[[-83.769569,32.859676],[-83.76902600000001,32.859448],[-83.76895400000001,32.859413]]},"id":"8744c0b54ffffff-17b5fa541b94d810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76817000000001,32.858964]},"id":"8f44c0b54641aa4-13b5bcfdc60e5308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b54641aa4-13b5bcfdc60e5308","8f44c0b5466b2cc-17ddbb13cb9d6e66"]},"geometry":{"type":"LineString","coordinates":[[-83.76895400000001,32.859413],[-83.768434,32.85913],[-83.768234,32.859012],[-83.76817000000001,32.858964]]},"id":"8944c0b5467ffff-13d5fc0b4cf1a775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66918700000001,32.843099]},"id":"8f44c0b1b25245a-17feeea621d99efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b25245a-17feeea621d99efb","8f44c0b1b20c6c6-13deee91852dc206"]},"geometry":{"type":"LineString","coordinates":[[-83.66918700000001,32.843099],[-83.66922000000001,32.841614]]},"id":"8844c0b1b3fffff-13befe9bdc0741ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b223299-17f7ae8463a097fd","8f44c0b1b20c6c6-13deee91852dc206"]},"geometry":{"type":"LineString","coordinates":[[-83.66922000000001,32.841614],[-83.669241,32.840425]]},"id":"8944c0b1b23ffff-17f7be8afbc937e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67373900000001,32.890625]},"id":"8f44c0a0414096c-1396a3892e6462b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6740985,32.889760700000004]},"id":"8f44c0a04160508-17f6f2a87a466b17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0414096c-1396a3892e6462b0","8f44c0a04160508-17f6f2a87a466b17"]},"geometry":{"type":"LineString","coordinates":[[-83.67373900000001,32.890625],[-83.6738277,32.890472200000005],[-83.67388600000001,32.890304],[-83.6740985,32.889760700000004]]},"id":"8944c0a0417ffff-17f7b313826cf9b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67385180000001,32.889466500000005]},"id":"8f44c0a0416618a-17beb342a7870910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416618a-17beb342a7870910","8f44c0a04160508-17f6f2a87a466b17"]},"geometry":{"type":"LineString","coordinates":[[-83.6740985,32.889760700000004],[-83.6741282,32.8897317],[-83.674192,32.8896721],[-83.6739776,32.8894067],[-83.67385180000001,32.889466500000005]]},"id":"8a44c0a04167fff-17f6f2c16d38b8bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416618a-17beb342a7870910","8f44c0a04160508-17f6f2a87a466b17"]},"geometry":{"type":"LineString","coordinates":[[-83.67385180000001,32.889466500000005],[-83.6740985,32.889760700000004]]},"id":"8a44c0a04167fff-179ea2f5992bf61d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65595,32.781036]},"id":"8f44c0b11751554-17f7cef74767bf8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1162100b-17ded1ccef4c0923","8f44c0b11751554-17f7cef74767bf8e"]},"geometry":{"type":"LineString","coordinates":[[-83.65478900000001,32.780996],[-83.654978,32.781028],[-83.65595,32.781036]]},"id":"8844c0b117fffff-17fef062c6992a77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65906000000001,32.781041]},"id":"8f44c0b1139aca6-17f6e75f8eb41a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1139aca6-17f6e75f8eb41a6e","8f44c0b11751554-17f7cef74767bf8e"]},"geometry":{"type":"LineString","coordinates":[[-83.65595,32.781036],[-83.65906000000001,32.781041]]},"id":"8744c0b11ffffff-17f7db2b6f910eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644076,32.815689]},"id":"8f44c0b1a19d1b4-139febf485dec5ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a19d1b4-139febf485dec5ab","8f44c0b1a18e381-13d6ea8785bd2e17"]},"geometry":{"type":"LineString","coordinates":[[-83.644076,32.815689],[-83.644211,32.815717],[-83.64466,32.815773]]},"id":"8944c0b1a1bffff-13beeb3e7c32b42f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646196,32.815764]},"id":"8f44c0b1a036b44-13bee6c78dcbcf86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a036b44-13bee6c78dcbcf86","8f44c0b1a18e381-13d6ea8785bd2e17"]},"geometry":{"type":"LineString","coordinates":[[-83.64466,32.815773],[-83.64488800000001,32.815784],[-83.646196,32.815764]]},"id":"8844c0b1a1fffff-13d7f8a7960da52d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68977500000001,32.824171]},"id":"8f44c0b19121cad-17d6fc62a6e2f53d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b198c27ae-17d6780707256503","8f44c0b19121cad-17d6fc62a6e2f53d"]},"geometry":{"type":"LineString","coordinates":[[-83.68977500000001,32.824171],[-83.69053000000001,32.824205],[-83.690639,32.824229],[-83.690803,32.824309],[-83.69088400000001,32.824345],[-83.690995,32.824374],[-83.69109300000001,32.824387],[-83.69156000000001,32.824407]]},"id":"8744c0b19ffffff-1796fa33b9dd4dd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692456,32.824451]},"id":"8f44c0b198c1ce8-17f7f5d70bc0571f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b198c1ce8-17f7f5d70bc0571f","8f44c0b198c27ae-17d6780707256503"]},"geometry":{"type":"LineString","coordinates":[[-83.69156000000001,32.824407],[-83.692456,32.824451]]},"id":"8a44c0b198c7fff-17f676ef0bd70a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707265,32.891725]},"id":"8f44c0a2ed1524b-13b671af6b142dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71189700000001,32.891773]},"id":"8f44c0a216cc6a8-13de6660679af7b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216cc6a8-13de6660679af7b7","8f44c0a2ed1524b-13b671af6b142dac"]},"geometry":{"type":"LineString","coordinates":[[-83.707265,32.891725],[-83.711263,32.891765],[-83.71189700000001,32.891773]]},"id":"8744c0a2effffff-13befc07ecc2fb04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713572,32.891343]},"id":"8f44c0a2165aa93-13d7624987098276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216cc6a8-13de6660679af7b7","8f44c0a2165aa93-13d7624987098276"]},"geometry":{"type":"LineString","coordinates":[[-83.71189700000001,32.891773],[-83.71318600000001,32.891786],[-83.71331,32.891779],[-83.71334800000001,32.89177],[-83.713448,32.89172],[-83.71352300000001,32.891648],[-83.71354600000001,32.891606],[-83.713571,32.891523],[-83.713572,32.891343]]},"id":"8844c0a217fffff-13b65405ea3d9259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6335906,32.773206300000005]},"id":"8f44c0b13d5b76a-13d7f58dec1a553b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6311888,32.773148400000004]},"id":"8f44c0b13c0e551-13b7cb6b0ee48c85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13c0e551-13b7cb6b0ee48c85","8f44c0b13d5b76a-13d7f58dec1a553b"]},"geometry":{"type":"LineString","coordinates":[[-83.6335906,32.773206300000005],[-83.6328434,32.7731883],[-83.6311888,32.773148400000004]]},"id":"8844c0b13dfffff-13d7e87c714509e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13c0e551-13b7cb6b0ee48c85","8f44c0b13c04735-17ff6b95039b57f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6311888,32.773148400000004],[-83.6311829,32.7730509],[-83.6311799,32.773001900000004],[-83.63117480000001,32.772916800000004],[-83.6311216,32.7720374]]},"id":"8944c0b13c3ffff-13d79b80024b83e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13c04735-17ff6b95039b57f1","8f44c0b13c32ca5-179f8e9810115ca4"]},"geometry":{"type":"LineString","coordinates":[[-83.6311216,32.7720374],[-83.63109440000001,32.7715868],[-83.63108220000001,32.771385],[-83.6310799,32.7713466],[-83.63107860000001,32.771325600000004],[-83.6309696,32.7712535],[-83.6298879,32.771276]]},"id":"8944c0b13c3ffff-17ff0c916eca36aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b13c36499-17978ea1af5d30c4","8f44c0b13c32ca5-179f8e9810115ca4"]},"geometry":{"type":"LineString","coordinates":[[-83.6298879,32.771276],[-83.629875,32.771160300000005],[-83.6298726,32.7710312]]},"id":"8a44c0b13c37fff-17d72e9ea22c3149"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626261,32.7700848]},"id":"8f44c0b12361c29-13b71772e8cafb8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b12361c29-13b71772e8cafb8c","8f44c0b13c36499-17978ea1af5d30c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6298726,32.7710312],[-83.6298699,32.7708826],[-83.6298694,32.7708567],[-83.6297749,32.7706037],[-83.6283377,32.7692246],[-83.62689970000001,32.7692975],[-83.6264012,32.769632900000005],[-83.626261,32.7700848]]},"id":"8644c0b17ffffff-13f7d2d26546a436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62614470000001,32.7704594]},"id":"8f44c0b1236ed2b-13b737bb969a7e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b12361c29-13b71772e8cafb8c","8f44c0b1236ed2b-13b737bb969a7e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.626261,32.7700848],[-83.62614470000001,32.7704594]]},"id":"8a44c0b12367fff-13bf179746eb4fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b12308b26-139f1e1f6209c1fc","8f44c0b1236ed2b-13b737bb969a7e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.62614470000001,32.7704594],[-83.6256177,32.7704834],[-83.6250194,32.770710900000005],[-83.6236598,32.7697017],[-83.6235274,32.769600000000004]]},"id":"8844c0b123fffff-13d75b1448266c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b123088c4-13977e6bcb20f751","8f44c0b12308b26-139f1e1f6209c1fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6235274,32.769600000000004],[-83.62340520000001,32.769587800000004]]},"id":"8b44c0b12308fff-13973e459e8aa553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.598382,32.768498]},"id":"8f44c0ba116ad72-17d75b834e5b9342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b123088c4-13977e6bcb20f751","8f44c0ba116ad72-17d75b834e5b9342"]},"geometry":{"type":"LineString","coordinates":[[-83.62340520000001,32.769587800000004],[-83.6227971,32.768998100000005],[-83.6213575,32.7689205],[-83.6211624,32.768910000000005],[-83.6151717,32.7686506],[-83.6081956,32.7683632],[-83.6077152,32.768388900000005],[-83.60735650000001,32.7685367],[-83.603316,32.767986],[-83.602891,32.768062],[-83.601929,32.768315],[-83.600542,32.768707],[-83.598382,32.768498]]},"id":"8444c0bffffffff-17973ccd882f3cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30904711-13def3a0e5051127","8f44c0a309246de-13bff1f1a03fe8b9"]},"geometry":{"type":"LineString","coordinates":[[-83.640933,32.849373],[-83.6411058,32.849152100000005],[-83.64162300000001,32.848534]]},"id":"8944c0a3093ffff-13d6f2cafe29160c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641839,32.84827]},"id":"8f44c0a309248d9-139ef16aa80d36a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a309248d9-139ef16aa80d36a5","8f44c0a309246de-13bff1f1a03fe8b9"]},"geometry":{"type":"LineString","coordinates":[[-83.64162300000001,32.848534],[-83.64178700000001,32.84834],[-83.641839,32.84827]]},"id":"8a44c0a30927fff-13fef1ad2665b396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64377,32.800593]},"id":"8f44c0b1e793d20-17b6ecb3cb61fb13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643772,32.80021]},"id":"8f44c0b1e79636d-13d7ecb28e302e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e793d20-17b6ecb3cb61fb13","8f44c0b1e79636d-13d7ecb28e302e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.64377,32.800593],[-83.643772,32.80021]]},"id":"8a44c0b1e797fff-17befcb32ab14fd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64378,32.79918]},"id":"8f44c0b1e4cd18e-13bfecad84493330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4cd18e-13bfecad84493330","8f44c0b1e79636d-13d7ecb28e302e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.643772,32.80021],[-83.64378,32.79918]]},"id":"8744c0b1effffff-1397ecb005a65408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64378,32.798748]},"id":"8f44c0b1e4eb421-13b7ecad89f147b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4eb421-13b7ecad89f147b4","8f44c0b1e4cd18e-13bfecad84493330"]},"geometry":{"type":"LineString","coordinates":[[-83.64378,32.79918],[-83.64378,32.798748]]},"id":"8944c0b1e4fffff-13beecad81faad9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61830760000001,32.841292]},"id":"8f44c0a3610e48d-139faaddc037f78d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6171173,32.8405623]},"id":"8f44c0a3611035a-17d77dc5bbf08538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3611035a-17d77dc5bbf08538","8f44c0a3610e48d-139faaddc037f78d"]},"geometry":{"type":"LineString","coordinates":[[-83.61830760000001,32.841292],[-83.6171173,32.8405623]]},"id":"8944c0a3613ffff-17bfac51cb5313bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61677370000001,32.8403517]},"id":"8f44c0a361105ab-17d7fe9c76bf58b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3611035a-17d77dc5bbf08538","8f44c0a361105ab-17d7fe9c76bf58b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6171173,32.8405623],[-83.61677370000001,32.8403517]]},"id":"8b44c0a36110fff-1797ae311e471e45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a361164d1-17b7af85dcc5796c","8f44c0a361105ab-17d7fe9c76bf58b4"]},"geometry":{"type":"LineString","coordinates":[[-83.61677370000001,32.8403517],[-83.61660180000001,32.840246300000004],[-83.61640030000001,32.8401274]]},"id":"8a44c0a36117fff-17ff6f10d1bdbbe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6152608,32.8411434]},"id":"8f44c0a3618542b-17b7b24e09e9cf66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3618542b-17b7b24e09e9cf66","8f44c0a361164d1-17b7af85dcc5796c"]},"geometry":{"type":"LineString","coordinates":[[-83.61640030000001,32.8401274],[-83.6163502,32.8400978],[-83.6162317,32.840066],[-83.61613510000001,32.840093100000004],[-83.6158001,32.8404775],[-83.6152608,32.8411434]]},"id":"8844c0a361fffff-17bff1021fdb225d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61480370000001,32.8417077]},"id":"8f44c0a3618301a-1397736bb77e319d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3618542b-17b7b24e09e9cf66","8f44c0a3618301a-1397736bb77e319d"]},"geometry":{"type":"LineString","coordinates":[[-83.6152608,32.8411434],[-83.61480370000001,32.8417077]]},"id":"8a44c0a36187fff-13f732dcd5473d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70758400000001,32.887057]},"id":"8f44c0a23b6b318-17def0e80c3dacf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b6b318-17def0e80c3dacf2","8f44c0a2169052b-13d6d17f47c11e49"]},"geometry":{"type":"LineString","coordinates":[[-83.70758400000001,32.887057],[-83.707508,32.887166],[-83.707454,32.887268],[-83.707442,32.887301],[-83.707413,32.887382],[-83.70739,32.887493],[-83.70736500000001,32.887732],[-83.70736000000001,32.887893000000005],[-83.70734200000001,32.8885]]},"id":"8744c0a21ffffff-1396515e75c8dc77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707311,32.889747]},"id":"8f44c0a2169a496-17dff192abd3018c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2169a496-17dff192abd3018c","8f44c0a2169052b-13d6d17f47c11e49"]},"geometry":{"type":"LineString","coordinates":[[-83.70734200000001,32.8885],[-83.707311,32.889747]]},"id":"8844c0a23bfffff-17d67188fabf8166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70728100000001,32.890794]},"id":"8f44c0a2ed30609-13fe51a5616b6d70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed30609-13fe51a5616b6d70","8f44c0a2169a496-17dff192abd3018c"]},"geometry":{"type":"LineString","coordinates":[[-83.707311,32.889747],[-83.707306,32.889908000000005],[-83.70728100000001,32.890794]]},"id":"8644c0a27ffffff-17b7519c2e16a2d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed1524b-13b671af6b142dac","8f44c0a2ed30609-13fe51a5616b6d70"]},"geometry":{"type":"LineString","coordinates":[[-83.70728100000001,32.890794],[-83.707265,32.891725]]},"id":"8944c0a2ed3ffff-139f71aa63e44a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70724,32.892719]},"id":"8f44c0a2ed180e0-179f71bf042b9266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed180e0-179f71bf042b9266","8f44c0a2ed1524b-13b671af6b142dac"]},"geometry":{"type":"LineString","coordinates":[[-83.707265,32.891725],[-83.70724700000001,32.892431],[-83.70724,32.892719]]},"id":"8944c0a2ed3ffff-17f6d1b74d6770a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed180e0-179f71bf042b9266","8f44c0a2ec2250d-13d7f1d1ca7388b3"]},"geometry":{"type":"LineString","coordinates":[[-83.70724,32.892719],[-83.70721,32.893811]]},"id":"8844c0a2edfffff-17f6f1c86d7e5891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70718400000001,32.894909000000006]},"id":"8f44c0a2ec00218-13f671e20c421600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec00218-13f671e20c421600","8f44c0a2ec2250d-13d7f1d1ca7388b3"]},"geometry":{"type":"LineString","coordinates":[[-83.70721,32.893811],[-83.70718400000001,32.894909000000006]]},"id":"8944c0a2ec3ffff-139f51d9efc6a42b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707154,32.896006]},"id":"8f44c0a2ec0a701-17b7d1f4ccaa10dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec0a701-17b7d1f4ccaa10dc","8f44c0a2ec00218-13f671e20c421600"]},"geometry":{"type":"LineString","coordinates":[[-83.70718400000001,32.894909000000006],[-83.707154,32.896006]]},"id":"8944c0a2ec3ffff-17def1eb68b8bbb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec0a701-17b7d1f4ccaa10dc","8f44c0a2ece158c-13be5208cfe91d50"]},"geometry":{"type":"LineString","coordinates":[[-83.707154,32.896006],[-83.707147,32.896364000000005],[-83.707122,32.897072]]},"id":"8844c0a2edfffff-17f6f1fd9edca718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ecea76c-13d6d216856d2823","8f44c0a2ece158c-13be5208cfe91d50"]},"geometry":{"type":"LineString","coordinates":[[-83.707122,32.897072],[-83.70710000000001,32.8981]]},"id":"8944c0a2ecfffff-13ff520faa42697c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640225,32.847285]},"id":"8f44c0a3466dd69-17b7f55b61471b4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342980c8-17d7f35d69d16c4c","8f44c0a3466dd69-17b7f55b61471b4d"]},"geometry":{"type":"LineString","coordinates":[[-83.640225,32.847285],[-83.641041,32.847747000000005]]},"id":"8944c0a342bffff-17d7f45c60331373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a309248d9-139ef16aa80d36a5","8f44c0a342980c8-17d7f35d69d16c4c"]},"geometry":{"type":"LineString","coordinates":[[-83.641041,32.847747000000005],[-83.641715,32.848146],[-83.641811,32.848207],[-83.641839,32.84827]]},"id":"8944c0a342bffff-13fef25a85fcdddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688011,32.829434]},"id":"8f44c0b190e499d-139ec0b127625ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190e499d-139ec0b127625ec5","8f44c0b1901b5a6-13d6a36e6faf877c"]},"geometry":{"type":"LineString","coordinates":[[-83.688011,32.829434],[-83.687915,32.829383],[-83.68782300000001,32.829348],[-83.687728,32.829321],[-83.68763,32.829307],[-83.68688900000001,32.829293]]},"id":"8944c0b1903ffff-13d79209f39658f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ab54b-13b7e6580fafdd2f","8f44c0b1901b5a6-13d6a36e6faf877c"]},"geometry":{"type":"LineString","coordinates":[[-83.68688900000001,32.829293],[-83.68569600000001,32.829267]]},"id":"8844c0b191fffff-13be84e33fb75403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684562,32.8298019]},"id":"8f44c0b1908ac99-1796b91cc4abd5ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ab54b-13b7e6580fafdd2f","8f44c0b1908ac99-1796b91cc4abd5ac"]},"geometry":{"type":"LineString","coordinates":[[-83.68569600000001,32.829267],[-83.685406,32.829248],[-83.68517700000001,32.829251],[-83.685063,32.829262],[-83.684955,32.82929],[-83.68486100000001,32.829337],[-83.684774,32.829411],[-83.68471600000001,32.829483],[-83.684617,32.829675],[-83.684562,32.8298019]]},"id":"8944c0b190bffff-13fef7f109a939c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730501,32.89304]},"id":"8f44c0a2ccccd44-17f618f4e06dea01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2ccccd44-17f618f4e06dea01","8f44c0a2cc5aa40-17bef4d0ea6044b6"]},"geometry":{"type":"LineString","coordinates":[[-83.730501,32.89304],[-83.730693,32.892995],[-83.73088,32.892966],[-83.731015,32.89295],[-83.73111700000001,32.892946],[-83.73138200000001,32.892947],[-83.732197,32.892971]]},"id":"8844c0a2cdfffff-17b776e4e724db01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc5aa40-17bef4d0ea6044b6","8f44c0a2cc4a550-17d63289ca80c132"]},"geometry":{"type":"LineString","coordinates":[[-83.732197,32.892971],[-83.73313,32.892989]]},"id":"8944c0a2cc7ffff-17d693ad5a51ecfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73389800000001,32.89434]},"id":"8f44c0a2c1ac92a-139690a9c6cd1f19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc4a550-17d63289ca80c132","8f44c0a2c1ac92a-139690a9c6cd1f19"]},"geometry":{"type":"LineString","coordinates":[[-83.73313,32.892989],[-83.733271,32.892995],[-83.733365,32.893012],[-83.733485,32.893054],[-83.733551,32.893089],[-83.73362,32.893138],[-83.733682,32.893195],[-83.733721,32.89325],[-83.733767,32.893364000000005],[-83.733789,32.893504],[-83.73389800000001,32.89434]]},"id":"8744c0a2cffffff-1796f130a563bae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734047,32.895584]},"id":"8f44c0a2c036943-179e104ca22e40ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c1ac92a-139690a9c6cd1f19","8f44c0a2c036943-179e104ca22e40ab"]},"geometry":{"type":"LineString","coordinates":[[-83.73389800000001,32.89434],[-83.733963,32.894948],[-83.734047,32.895584]]},"id":"8844c0a2c1fffff-1397907dac39c6da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65992800000001,32.853769]},"id":"8f44c0a3515268c-1797e5410b4fcba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660088,32.85593]},"id":"8f44c0a35073581-13dec4dd00ff8263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35073581-13dec4dd00ff8263","8f44c0a3515268c-1797e5410b4fcba3"]},"geometry":{"type":"LineString","coordinates":[[-83.65992800000001,32.853769],[-83.659968,32.854118],[-83.660116,32.854838],[-83.66013600000001,32.85514],[-83.660088,32.85593]]},"id":"8844c0a351fffff-13b7d4ec1e165558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35043730-17b7c31249c88e65","8f44c0a35073581-13dec4dd00ff8263"]},"geometry":{"type":"LineString","coordinates":[[-83.660088,32.85593],[-83.660228,32.856128000000005],[-83.66032,32.856257],[-83.66047300000001,32.85656],[-83.66049000000001,32.856641],[-83.660453,32.856938],[-83.66045700000001,32.857017],[-83.660482,32.857082000000005],[-83.66051800000001,32.857129],[-83.66056800000001,32.857168],[-83.660663,32.857196],[-83.660739,32.857187],[-83.660803,32.857151],[-83.66082200000001,32.857126]]},"id":"8944c0a3507ffff-179ff404ba99b303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25b4a54d-13b78c186cfdd920","8f44c0a25b4a12b-13970bc407801917"]},"geometry":{"type":"LineString","coordinates":[[-83.735769,32.861196],[-83.735904,32.861160000000005]]},"id":"8b44c0a25b4afff-139e4bee38450fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5645a0ea-17df64ce2e4d53f0","8f44c0a25b4a12b-13970bc407801917"]},"geometry":{"type":"LineString","coordinates":[[-83.735904,32.861160000000005],[-83.73617200000001,32.861078],[-83.736424,32.860995],[-83.736683,32.8609],[-83.73680200000001,32.860833],[-83.73688,32.860771],[-83.73693200000001,32.860717],[-83.73698900000001,32.860639],[-83.737047,32.860521],[-83.737077,32.860391],[-83.73717,32.859858],[-83.737255,32.85942],[-83.737305,32.85925],[-83.737368,32.859112],[-83.73742100000001,32.85902],[-83.737508,32.858914],[-83.73762400000001,32.858804],[-83.73799600000001,32.858508],[-83.738427,32.858199],[-83.73857000000001,32.858085],[-83.738684,32.857973],[-83.738742,32.857906],[-83.73880600000001,32.857779],[-83.73882,32.857733],[-83.738821,32.857671],[-83.738798,32.857536],[-83.73875500000001,32.857391]]},"id":"8644c0b57ffffff-17de47e8cbfca0a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b564ee4a3-17d6485407d51765","8f44c0b5645a0ea-17df64ce2e4d53f0"]},"geometry":{"type":"LineString","coordinates":[[-83.73875500000001,32.857391],[-83.738675,32.857303],[-83.738574,32.857225],[-83.738366,32.857137],[-83.73777100000001,32.85692],[-83.737312,32.856762]]},"id":"8844c0b565fffff-17ff468209f919bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69971100000001,32.838783]},"id":"8f44c0a24cf346d-13ff6420a6459dc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70116,32.838876]},"id":"8f44c0a24ce3029-13bfe09708c31cc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ce3029-13bfe09708c31cc1","8f44c0a24cf346d-13ff6420a6459dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.69971100000001,32.838783],[-83.69985000000001,32.838813],[-83.700231,32.838894],[-83.70037900000001,32.838929],[-83.700501,32.838952],[-83.700625,32.838962],[-83.700748,32.838962],[-83.70086500000001,32.838949],[-83.70116,32.838876]]},"id":"8944c0a24cfffff-13be725c1a266ecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702376,32.838603]},"id":"8f44c0a24c504cc-13fefd9f0fcbdc8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c504cc-13fefd9f0fcbdc8c","8f44c0a24ce3029-13bfe09708c31cc1"]},"geometry":{"type":"LineString","coordinates":[[-83.70116,32.838876],[-83.702117,32.838623000000005],[-83.70220400000001,32.838608],[-83.702284,32.838602],[-83.702376,32.838603]]},"id":"8844c0a24dfffff-13de5f1cdae27c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702725,32.838628]},"id":"8f44c0a24c50ad1-139edcc4eb38aa03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c504cc-13fefd9f0fcbdc8c","8f44c0a24c50ad1-139edcc4eb38aa03"]},"geometry":{"type":"LineString","coordinates":[[-83.702376,32.838603],[-83.702725,32.838628]]},"id":"8b44c0a24c50fff-1396fd31fdb48ef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62237,32.830542]},"id":"8f44c0ba9292d5e-17d7e0f2cca14c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba975b951-13b7a449c8480ab4","8f44c0ba9292d5e-17d7e0f2cca14c27"]},"geometry":{"type":"LineString","coordinates":[[-83.62237,32.830542],[-83.62167500000001,32.830094],[-83.6214937,32.8299931],[-83.621002,32.829673]]},"id":"8844c0ba97fffff-17d7229e30d33a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba975b951-13b7a449c8480ab4","8f44c0ba962c556-139727a52c05e3ef"]},"geometry":{"type":"LineString","coordinates":[[-83.621002,32.829673],[-83.620125,32.829119],[-83.61962700000001,32.8288]]},"id":"8844c0ba97fffff-13b775f7d6343c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba96206a2-13ff6970aead30f4","8f44c0ba962c556-139727a52c05e3ef"]},"geometry":{"type":"LineString","coordinates":[[-83.61962700000001,32.8288],[-83.6188918,32.8283286]]},"id":"8944c0ba963ffff-13ffb88aeb5822f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651582,32.855243]},"id":"8f44c0a35471286-139ef9a14e756bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35471286-139ef9a14e756bc3","8f44c0a354092ca-1396fcb2e4fa95c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65032500000001,32.855201],[-83.65037000000001,32.855227],[-83.650778,32.855244],[-83.651582,32.855243]]},"id":"8944c0a3547ffff-139edb2c36a0055f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35461a4d-13b6f5ce8295216f","8f44c0a35471286-139ef9a14e756bc3"]},"geometry":{"type":"LineString","coordinates":[[-83.651582,32.855243],[-83.65202000000001,32.855246],[-83.65271100000001,32.855257],[-83.653148,32.855271]]},"id":"8944c0a3547ffff-13b7f7b7d2872452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65318400000001,32.855272]},"id":"8f44c0a3546cd26-13b7d5b80d8d09d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35461a4d-13b6f5ce8295216f","8f44c0a3546cd26-13b7d5b80d8d09d5"]},"geometry":{"type":"LineString","coordinates":[[-83.653148,32.855271],[-83.65318400000001,32.855272]]},"id":"8944c0a3547ffff-13b6f5c34e131d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65427700000001,32.855294]},"id":"8f44c0a35091140-13bed30ce07db25f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3546cd26-13b7d5b80d8d09d5","8f44c0a35091140-13bed30ce07db25f"]},"geometry":{"type":"LineString","coordinates":[[-83.65318400000001,32.855272],[-83.65427700000001,32.855294]]},"id":"8a44c0a35097fff-13b7f462787c7736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22daed72-17f6abd6cb2472ed","8f44c0a22d94023-1797f0fc4e733bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.66823000000001,32.85991],[-83.668374,32.859947000000005],[-83.66851000000001,32.859977],[-83.66871400000001,32.86],[-83.66945000000001,32.860008],[-83.66986200000001,32.860025],[-83.67008600000001,32.860039],[-83.670338,32.860068000000005]]},"id":"8944c0a22dbffff-17bfae6b5037f1c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22daed72-17f6abd6cb2472ed","8f44c0a22d1e551-179fe8db06acb910"]},"geometry":{"type":"LineString","coordinates":[[-83.670338,32.860068000000005],[-83.67067200000001,32.860129],[-83.67156,32.860339]]},"id":"8844c0a22dfffff-17b7fa581fb35c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67311600000001,32.860733]},"id":"8f44c0a22d085b3-1796a50e8331a6d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d085b3-1796a50e8331a6d0","8f44c0a22d1e551-179fe8db06acb910"]},"geometry":{"type":"LineString","coordinates":[[-83.67156,32.860339],[-83.67207400000001,32.860486],[-83.67311600000001,32.860733]]},"id":"8944c0a22d3ffff-179ff6f610256d4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d085b3-1796a50e8331a6d0","8f44c0a22d0d6ee-17ffe38109f923f6"]},"geometry":{"type":"LineString","coordinates":[[-83.67311600000001,32.860733],[-83.67375200000001,32.860899]]},"id":"8a44c0a22d0ffff-17bea447cf1e33a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67444900000001,32.861148]},"id":"8f44c0a22d73da3-139fa1cd6c37b2f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d0d6ee-17ffe38109f923f6","8f44c0a22d73da3-139fa1cd6c37b2f2"]},"geometry":{"type":"LineString","coordinates":[[-83.67375200000001,32.860899],[-83.67389800000001,32.860934],[-83.674104,32.860993],[-83.67430300000001,32.861072],[-83.67444900000001,32.861148]]},"id":"8844c0a22dfffff-13b6f2a34da808bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65216600000001,32.814891]},"id":"8f44c0b1a8c9324-179ef83446d668db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8c9324-179ef83446d668db","8f44c0b1a8d9225-17fffb6fc898300f"]},"geometry":{"type":"LineString","coordinates":[[-83.65084200000001,32.814847],[-83.65216600000001,32.814891]]},"id":"8744c0b1affffff-179ff9d2027e5526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8c9324-179ef83446d668db","8f44c0b1abb2668-17b7d75fd6a7f789"]},"geometry":{"type":"LineString","coordinates":[[-83.65216600000001,32.814891],[-83.65250590000001,32.8149104]]},"id":"8944c0b1abbffff-17b6f7ca0f7d18f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707361,32.813048]},"id":"8f44c0b0ad18ce9-139f51736d4f540b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad18ce9-139f51736d4f540b","8f44c0b0ad28ac3-13fe6be586723c86"]},"geometry":{"type":"LineString","coordinates":[[-83.707361,32.813048],[-83.707623,32.813054],[-83.70793900000001,32.813038],[-83.708207,32.81299],[-83.708374,32.812944],[-83.708573,32.812865],[-83.709636,32.812359]]},"id":"8944c0b0ad3ffff-139e4e9b84f7ee32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ad28ac3-13fe6be586723c86","8f44c0b0e6de835-13dec9ba83d91466"]},"geometry":{"type":"LineString","coordinates":[[-83.709636,32.812359],[-83.70985900000001,32.81226],[-83.710205,32.812083],[-83.710524,32.811902]]},"id":"8744c0b0affffff-13f77acd28431905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e6c0103-17ffc74ca787d727","8f44c0b0e6de835-13dec9ba83d91466"]},"geometry":{"type":"LineString","coordinates":[[-83.710524,32.811902],[-83.71074800000001,32.811769000000005],[-83.71101,32.811624],[-83.71151900000001,32.811366]]},"id":"8944c0b0e6fffff-17b6c886075b59d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e6c0103-17ffc74ca787d727","8f44c0b0e6e1772-17dfc4d423e4d8c8"]},"geometry":{"type":"LineString","coordinates":[[-83.71151900000001,32.811366],[-83.712294,32.810981000000005],[-83.712531,32.810876]]},"id":"8944c0b0e6fffff-17f66611967864e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715525,32.809458]},"id":"8f44c0b0e660d26-13d77d84e4b8b9aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e660d26-13d77d84e4b8b9aa","8f44c0b0e6e1772-17dfc4d423e4d8c8"]},"geometry":{"type":"LineString","coordinates":[[-83.712531,32.810876],[-83.714988,32.809668],[-83.715367,32.809478],[-83.715525,32.809458]]},"id":"8844c0b0e7fffff-17966130ad085deb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb884a3-17d7f94163c9e480","8f44c0b8eb9a315-17fffcd3cde2ce60"]},"geometry":{"type":"LineString","coordinates":[[-83.55998500000001,32.83749],[-83.559492,32.837499],[-83.559196,32.837508],[-83.558738,32.837566],[-83.55852200000001,32.837578]]},"id":"8944c0b8ebbffff-17dfbb0b1b980cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eb9a315-17fffcd3cde2ce60","8f44c0b8e16bc41-179fbf6ea9aaa0c5"]},"geometry":{"type":"LineString","coordinates":[[-83.55852200000001,32.837578],[-83.557455,32.8376]]},"id":"8744c0b8effffff-1797be213dee7e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e16bc41-179fbf6ea9aaa0c5","8f44c0b8e143a70-179fc20ac0aba284"]},"geometry":{"type":"LineString","coordinates":[[-83.557455,32.8376],[-83.556386,32.83762]]},"id":"8944c0b8e17ffff-1797c0bcbceed7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.555205,32.837566]},"id":"8f44c0b8e1516c0-17f7c4ece628365b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e1516c0-17f7c4ece628365b","8f44c0b8e143a70-179fc20ac0aba284"]},"geometry":{"type":"LineString","coordinates":[[-83.556386,32.83762],[-83.555901,32.837628],[-83.555205,32.837566]]},"id":"8944c0b8e17ffff-1797d37c28b15f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9655c1b-17bfa6f3a6c57a59","8f44c0ba964ccd8-13f76333099d31b0"]},"geometry":{"type":"LineString","coordinates":[[-83.621448,32.832026],[-83.62132600000001,32.831925000000005],[-83.621232,32.831854],[-83.620917,32.831637],[-83.620697,32.831528],[-83.620548,32.831474],[-83.620367,32.831387],[-83.619961,32.831142],[-83.619911,32.831097]]},"id":"8944c0ba967ffff-13d7b50d7e5e6354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6185298,32.8301874]},"id":"8f44c0ba960a98d-17f72a52e7cd270e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9655c1b-17bfa6f3a6c57a59","8f44c0ba960a98d-17f72a52e7cd270e"]},"geometry":{"type":"LineString","coordinates":[[-83.619911,32.831097],[-83.6185298,32.8301874]]},"id":"8844c0ba97fffff-179f68a345be4bad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a30628b-13b76add29c0430d","8f44c0a2a30265b-17b6eb5fc10a92c0"]},"geometry":{"type":"LineString","coordinates":[[-83.710059,32.927951],[-83.70990900000001,32.928192],[-83.70986,32.928313],[-83.70985,32.928395]]},"id":"8a44c0a2a307fff-17b7cb29c33e1178"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a30265b-17b6eb5fc10a92c0","8f44c0a2a31cacb-17974b12ec85bf66"]},"geometry":{"type":"LineString","coordinates":[[-83.70985,32.928395],[-83.70986900000001,32.928509000000005],[-83.709917,32.928631],[-83.709973,32.928724800000005]]},"id":"8944c0a2a33ffff-17b74b41b6056536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7106955,32.9301328]},"id":"8f44c0a2a225772-13f7494f5b8151d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a225772-13f7494f5b8151d4","8f44c0a2a31cacb-17974b12ec85bf66"]},"geometry":{"type":"LineString","coordinates":[[-83.709973,32.928724800000005],[-83.710165,32.929046],[-83.71033800000001,32.929349],[-83.71056700000001,32.929847],[-83.7106955,32.9301328]]},"id":"8844c0a2a3fffff-17b6ea2566e4cd87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71127650000001,32.931429900000005]},"id":"8f44c0a2a2298aa-179ff7e43db5056b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a2298aa-179ff7e43db5056b","8f44c0a2a225772-13f7494f5b8151d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7106955,32.9301328],[-83.71127650000001,32.931429900000005]]},"id":"8944c0a2a23ffff-139e6899c66e65f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65079700000001,32.793035]},"id":"8f44c0b1e1a3c13-13befb8be6eb690e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653957,32.793083]},"id":"8f44c0b1e101d00-13def3d4e02078f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e101d00-13def3d4e02078f7","8f44c0b1e1a3c13-13befb8be6eb690e"]},"geometry":{"type":"LineString","coordinates":[[-83.65079700000001,32.793035],[-83.653957,32.793083]]},"id":"8844c0b1e1fffff-13dff7b06309c3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e101d00-13def3d4e02078f7","8f44c0b1e128ab2-13f6d115cb2d266e"]},"geometry":{"type":"LineString","coordinates":[[-83.653957,32.793083],[-83.65508200000001,32.793098]]},"id":"8944c0b1e13ffff-13f7d27552ce40b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67239500000001,32.837555]},"id":"8f44c0b1badca10-17ffe6d12c0b6912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673552,32.837564]},"id":"8f44c0b1bacc136-17f7a3fe0adcf474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1badca10-17ffe6d12c0b6912","8f44c0b1bacc136-17f7a3fe0adcf474"]},"geometry":{"type":"LineString","coordinates":[[-83.67239500000001,32.837555],[-83.673552,32.837564]]},"id":"8944c0b1bafffff-17f6b56790cd1354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674729,32.83757]},"id":"8f44c0a26db4d82-17ffe11e6c35297c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db4d82-17ffe11e6c35297c","8f44c0b1bacc136-17f7a3fe0adcf474"]},"geometry":{"type":"LineString","coordinates":[[-83.673552,32.837564],[-83.674729,32.83757]]},"id":"8944c0b1bafffff-17f7e28e32413191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70104,32.894665]},"id":"8f44c0a23359265-13dfe0e20b1a5cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69664900000001,32.895031]},"id":"8f44c0a2321a01a-13d66b9a63f4f872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23359265-13dfe0e20b1a5cac","8f44c0a2321a01a-13d66b9a63f4f872"]},"geometry":{"type":"LineString","coordinates":[[-83.70104,32.894665],[-83.700857,32.894741],[-83.70038600000001,32.894936],[-83.700086,32.895023],[-83.69981100000001,32.895052],[-83.699416,32.895055],[-83.69717800000001,32.89504],[-83.69664900000001,32.895031]]},"id":"8844c0a233fffff-13b6662d736fb1ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23293018-13be745cec6be8e2","8f44c0a2321a01a-13d66b9a63f4f872"]},"geometry":{"type":"LineString","coordinates":[[-83.69664900000001,32.895031],[-83.693779,32.895014],[-83.693061,32.895015]]},"id":"8744c0a23ffffff-13be7ffba084302c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692305,32.895007]},"id":"8f44c0a236612dd-13b7763566b2814e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23293018-13be745cec6be8e2","8f44c0a236612dd-13b7763566b2814e"]},"geometry":{"type":"LineString","coordinates":[[-83.693061,32.895015],[-83.692305,32.895007]]},"id":"8844c0a237fffff-13b7f549242205c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695763,32.781736]},"id":"8f44c0b03ccca62-17bf6dc42a7567e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ccca62-17bf6dc42a7567e4","8f44c0b03ceb274-17b7ece28271587f"]},"geometry":{"type":"LineString","coordinates":[[-83.695763,32.781736],[-83.69612400000001,32.78175]]},"id":"8944c0b03cfffff-17bf6d53546c4687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69758,32.781725]},"id":"8f44c0b03c5bb4b-17b669548bcc920e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ceb274-17b7ece28271587f","8f44c0b03c5bb4b-17b669548bcc920e"]},"geometry":{"type":"LineString","coordinates":[[-83.69612400000001,32.78175],[-83.69648000000001,32.781747],[-83.69758,32.781725]]},"id":"8844c0b03dfffff-17befb1b87226c43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7454484,32.8183908]},"id":"8f44c0b08a28cc0-13b7f476ccb04765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74381360000001,32.8183613]},"id":"8f44c0b08a028a8-1397f874837bd508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a028a8-1397f874837bd508","8f44c0b08a28cc0-13b7f476ccb04765"]},"geometry":{"type":"LineString","coordinates":[[-83.7454484,32.8183908],[-83.74381360000001,32.8183613]]},"id":"8944c0b08a3ffff-139df675ad12b88d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7433524,32.8183458]},"id":"8f44c0b08a15641-139ff994c9dfc7c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a028a8-1397f874837bd508","8f44c0b08a15641-139ff994c9dfc7c7"]},"geometry":{"type":"LineString","coordinates":[[-83.74381360000001,32.8183613],[-83.7433524,32.8183458]]},"id":"8944c0b08a3ffff-139ff904a8169b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65061100000001,32.842408]},"id":"8f44c0a34ae8775-13dfdc00205a1a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34ae8775-13dfdc00205a1a47","8f44c0a34361688-13fefef28806fe62"]},"geometry":{"type":"LineString","coordinates":[[-83.65061100000001,32.842408],[-83.65028000000001,32.842871],[-83.650059,32.843226],[-83.64986400000001,32.843649],[-83.64981200000001,32.843773],[-83.649404,32.844743]]},"id":"8744c0a34ffffff-179fdd9c4553971a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6491,32.845478]},"id":"8f44c0a3436a4d5-13d7dfb08acb701d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3436a4d5-13d7dfb08acb701d","8f44c0a34361688-13fefef28806fe62"]},"geometry":{"type":"LineString","coordinates":[[-83.649404,32.844743],[-83.64922,32.845202],[-83.6491,32.845478]]},"id":"8944c0a3437ffff-13f6ff4ffdba4425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639437,32.821247]},"id":"8f44c0b1a784033-179ff747e2f0e267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7b1593-17bef8c919b9f452","8f44c0b1a784033-179ff747e2f0e267"]},"geometry":{"type":"LineString","coordinates":[[-83.63882070000001,32.820877200000005],[-83.63887700000001,32.820912],[-83.639437,32.821247]]},"id":"8944c0b1a7bffff-17bef808ac71cde5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640898,32.822108]},"id":"8f44c0b1a7a956a-13bff3b6cc0f1287"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a784033-179ff747e2f0e267","8f44c0b1a7a956a-13bff3b6cc0f1287"]},"geometry":{"type":"LineString","coordinates":[[-83.639437,32.821247],[-83.63987300000001,32.8215],[-83.640898,32.822108]]},"id":"8944c0b1a7bffff-13bff57ec0cb3db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36206149-17d7a36e62bfd005","8f44c0a36235d8c-17bfa359209835c6"]},"geometry":{"type":"LineString","coordinates":[[-83.621353,32.850828],[-83.62124800000001,32.850704],[-83.621229,32.850662],[-83.62121900000001,32.850597],[-83.621232,32.850538],[-83.621324,32.850278],[-83.62136600000001,32.850113],[-83.62138800000001,32.849946],[-83.621387,32.849761]]},"id":"8944c0a3623ffff-1797f385531796ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621194,32.84919]},"id":"8f44c0a3631a0b1-13d7e3d1cb398bae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3631a0b1-13d7e3d1cb398bae","8f44c0a36235d8c-17bfa359209835c6"]},"geometry":{"type":"LineString","coordinates":[[-83.621387,32.849761],[-83.621289,32.849448],[-83.621194,32.84919]]},"id":"8844c0a363fffff-179f739343e990ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62066970000001,32.852033]},"id":"8f44c0a362185a3-13dfa5197a57e15b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3621aaf4-13d7e5517ccdd5c8","8f44c0a362185a3-13dfa5197a57e15b"]},"geometry":{"type":"LineString","coordinates":[[-83.62066970000001,32.852033],[-83.6206233,32.852144800000005],[-83.62058010000001,32.8522588]]},"id":"8a44c0a3621ffff-139f25360b18624d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6205261,32.852401300000004]},"id":"8f44c0a3621a256-13bff57332be3850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3621a256-13bff57332be3850","8f44c0a3621aaf4-13d7e5517ccdd5c8"]},"geometry":{"type":"LineString","coordinates":[[-83.62058010000001,32.8522588],[-83.6205261,32.852401300000004]]},"id":"8b44c0a3621afff-139775625bb8f220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620455,32.852589]},"id":"8f44c0a362f4ba4-13b7259fa4e77655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3621a256-13bff57332be3850","8f44c0a362f4ba4-13b7259fa4e77655"]},"geometry":{"type":"LineString","coordinates":[[-83.6205261,32.852401300000004],[-83.620455,32.852589]]},"id":"8844c0a363fffff-13ffa5897c600000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620366,32.8528247]},"id":"8f44c0a362f421b-17b775d7490caef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362f421b-17b775d7490caef2","8f44c0a362f4ba4-13b7259fa4e77655"]},"geometry":{"type":"LineString","coordinates":[[-83.620455,32.852589],[-83.620366,32.8528247]]},"id":"8b44c0a362f4fff-13fff5bb71830a8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362f421b-17b775d7490caef2","8f44c0a362f3290-17df369fa50701cd"]},"geometry":{"type":"LineString","coordinates":[[-83.620366,32.8528247],[-83.62004540000001,32.853673900000004]]},"id":"8a44c0a362f7fff-17d7f63b7acb35d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61988910000001,32.8540867]},"id":"8f44c0a362d5758-17df37015e970e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362f3290-17df369fa50701cd","8f44c0a362d5758-17df37015e970e08"]},"geometry":{"type":"LineString","coordinates":[[-83.62004540000001,32.853673900000004],[-83.619911,32.85403],[-83.61988910000001,32.8540867]]},"id":"8944c0a362fffff-17df66d060ab8947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6194669,32.8551827]},"id":"8f44c0a362da560-13ff3809323bbbaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362d5758-17df37015e970e08","8f44c0a362da560-13ff3809323bbbaa"]},"geometry":{"type":"LineString","coordinates":[[-83.61988910000001,32.8540867],[-83.6194669,32.8551827]]},"id":"8944c0a362fffff-13b7b7854c8e1908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619241,32.855769]},"id":"8f44c0a32976b45-13f7a89665cc2732"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362da560-13ff3809323bbbaa","8f44c0a32976b45-13f7a89665cc2732"]},"geometry":{"type":"LineString","coordinates":[[-83.6194669,32.8551827],[-83.619241,32.855769]]},"id":"8844c0a329fffff-13b7784fd4f7611b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619088,32.856183]},"id":"8f44c0a32972b72-17ff68f60244fa3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32972b72-17ff68f60244fa3e","8f44c0a32976b45-13f7a89665cc2732"]},"geometry":{"type":"LineString","coordinates":[[-83.619241,32.855769],[-83.619088,32.856183]]},"id":"8a44c0a32977fff-13ff28c6320b5706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61886000000001,32.856786]},"id":"8f44c0a32954353-17f7698489f735eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32972b72-17ff68f60244fa3e","8f44c0a32954353-17f7698489f735eb"]},"geometry":{"type":"LineString","coordinates":[[-83.619088,32.856183],[-83.61886000000001,32.856786]]},"id":"8944c0a3297ffff-17b7f93d4cdae96c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6187811,32.8569825]},"id":"8f44c0a3295086a-17df39b5d2d07534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32954353-17f7698489f735eb","8f44c0a3295086a-17df39b5d2d07534"]},"geometry":{"type":"LineString","coordinates":[[-83.61886000000001,32.856786],[-83.6187811,32.8569825]]},"id":"8a44c0a32957fff-17b7b99d2682e2b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3295086a-17df39b5d2d07534","8f44c0a3282d3b6-13f76aacc8644241"]},"geometry":{"type":"LineString","coordinates":[[-83.6187811,32.8569825],[-83.618713,32.857152],[-83.618386,32.858015]]},"id":"8844c0a329fffff-17b76a323e49aec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65527230000001,32.7421845]},"id":"8f44c0b14add8b0-179fd09ed05d4caa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14ace475-17becfdb6f5522c2","8f44c0b14add8b0-179fd09ed05d4caa"]},"geometry":{"type":"LineString","coordinates":[[-83.65527230000001,32.7421845],[-83.65545900000001,32.742196],[-83.655585,32.742234]]},"id":"8944c0b14afffff-17b7d03c2b5201f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65574500000001,32.742767]},"id":"8f44c0b14aca374-1797ef7765f98925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14ace475-17becfdb6f5522c2","8f44c0b14aca374-1797ef7765f98925"]},"geometry":{"type":"LineString","coordinates":[[-83.655585,32.742234],[-83.655613,32.742261],[-83.655641,32.742317],[-83.65574500000001,32.742767]]},"id":"8a44c0b14acffff-17deffa0819b4cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662452,32.848878]},"id":"8f44c0a3581a2ca-1396ff178809bda4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3581a2ca-1396ff178809bda4","8f44c0a35808696-13dffb60e7df5c34"]},"geometry":{"type":"LineString","coordinates":[[-83.662452,32.848878],[-83.663973,32.84879]]},"id":"8944c0a3583ffff-13fffd3c3b36676c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3587011c-13bfb7a7ca042e84","8f44c0a35808696-13dffb60e7df5c34"]},"geometry":{"type":"LineString","coordinates":[[-83.663973,32.84879],[-83.66473500000001,32.848748],[-83.665188,32.848714],[-83.665498,32.848712]]},"id":"8844c0a359fffff-13d6f984657c7446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66562400000001,32.848706]},"id":"8f44c0a35870bb5-13bff7590c354762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35870bb5-13bff7590c354762","8f44c0a3587011c-13bfb7a7ca042e84"]},"geometry":{"type":"LineString","coordinates":[[-83.665498,32.848712],[-83.66562400000001,32.848706]]},"id":"8b44c0a35870fff-13bfb7806ec7656c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5260b746-13d74b3266835f59","8f44c0b526e8541-17f66b6280c00df3"]},"geometry":{"type":"LineString","coordinates":[[-83.73606000000001,32.885863],[-83.73621800000001,32.885534],[-83.736242,32.885463],[-83.736258,32.885393],[-83.73627,32.885305],[-83.73627,32.885221],[-83.736254,32.885102],[-83.736231,32.885007],[-83.736171,32.884816],[-83.73614900000001,32.884732],[-83.73613200000001,32.884639],[-83.736124,32.884486],[-83.736137,32.884386]]},"id":"8844c0b527fffff-139e4b133ad3ff2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5260b746-13d74b3266835f59","8f44c0b5260d55c-179fa9f12bc3d81b"]},"geometry":{"type":"LineString","coordinates":[[-83.736137,32.884386],[-83.73617300000001,32.884254],[-83.736213,32.884174],[-83.73627900000001,32.884071],[-83.736393,32.883924],[-83.736478,32.883828],[-83.73654900000001,32.883769],[-83.73665100000001,32.883705]]},"id":"8a44c0b5260ffff-13de1aad3cf2aefd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737944,32.883601]},"id":"8f44c0b52674ae9-17dea6c90a5d49ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52674ae9-17dea6c90a5d49ef","8f44c0b5260d55c-179fa9f12bc3d81b"]},"geometry":{"type":"LineString","coordinates":[[-83.73665100000001,32.883705],[-83.73670200000001,32.883685],[-83.73676900000001,32.883665],[-83.736879,32.883643],[-83.73698300000001,32.883631],[-83.73736600000001,32.883622],[-83.73759700000001,32.883622],[-83.737809,32.883614],[-83.737944,32.883601]]},"id":"8844c0b527fffff-17ff685f61d165e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52674ae9-17dea6c90a5d49ef","8f44c0b5275b900-17f685d182271d60"]},"geometry":{"type":"LineString","coordinates":[[-83.737944,32.883601],[-83.738094,32.88351],[-83.738155,32.883457],[-83.73820400000001,32.883392],[-83.738257,32.883311],[-83.73834000000001,32.883204]]},"id":"8844c0b527fffff-17fe364280bef02a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b527412eb-17dee2f3cead2484","8f44c0b5275b900-17f685d182271d60"]},"geometry":{"type":"LineString","coordinates":[[-83.73834000000001,32.883204],[-83.73840700000001,32.883142],[-83.738467,32.883103000000006],[-83.738579,32.88304],[-83.73880700000001,32.882925],[-83.739514,32.882555]]},"id":"8944c0b5277ffff-17963467b09e7508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b527412eb-17dee2f3cead2484","8f44c0b52774219-13b785052ab2c731"]},"geometry":{"type":"LineString","coordinates":[[-83.739514,32.882555],[-83.739733,32.882443],[-83.739868,32.882368],[-83.739934,32.882317],[-83.739976,32.882272],[-83.740014,32.882223],[-83.74003300000001,32.88219],[-83.74007,32.8821],[-83.740083,32.882008],[-83.74008400000001,32.881839],[-83.74006800000001,32.881329],[-83.74006,32.881245],[-83.740052,32.881216],[-83.740018,32.881144],[-83.739992,32.881103],[-83.739935,32.881037],[-83.73988800000001,32.880994],[-83.739829,32.880958],[-83.73974100000001,32.880916],[-83.739669,32.880898],[-83.73958800000001,32.880885],[-83.739158,32.880881],[-83.73906000000001,32.880874],[-83.739001,32.880861],[-83.73894700000001,32.880842],[-83.738906,32.880826],[-83.738776,32.880761],[-83.738724,32.880725000000005],[-83.738667,32.880668]]},"id":"8944c0b5277ffff-139fc28b9f50c00a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738556,32.8795566]},"id":"8f44c0b520de590-17fee54a833e5bc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52774219-13b785052ab2c731","8f44c0b520de590-17fee54a833e5bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.738667,32.880668],[-83.738623,32.880608],[-83.73857600000001,32.880501],[-83.738551,32.880415],[-83.738544,32.880336],[-83.738552,32.879855],[-83.738556,32.8795566]]},"id":"8844c0b527fffff-17df754684c0a3e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53ccbd9c-13dfe067e7c6ec93","8f44c0b5356e868-17bde07e1311b9da"]},"geometry":{"type":"LineString","coordinates":[[-83.7536642,32.888696200000005],[-83.75362870000001,32.890101]]},"id":"8744c0b53ffffff-1797e07300784567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7534845,32.8904273]},"id":"8f44c0b5356a929-1395f0d83d1b35bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5356e868-17bde07e1311b9da","8f44c0b5356a929-1395f0d83d1b35bd"]},"geometry":{"type":"LineString","coordinates":[[-83.75362870000001,32.890101],[-83.75358650000001,32.8902996],[-83.7534845,32.8904273]]},"id":"8b44c0b5356efff-17b5f09f6e88198b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6497483,32.840134400000004]},"id":"8f44c0a34a18b6d-17bede1b57da0b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a18b6d-17bede1b57da0b18","8f44c0a34a0a41a-17dfdd4cf599f953"]},"geometry":{"type":"LineString","coordinates":[[-83.6497483,32.840134400000004],[-83.6500785,32.840361200000004]]},"id":"8a44c0a34a1ffff-1796fdb42bbc4d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a0a2f4-17bffca08fdb417e","8f44c0a34a0a41a-17dfdd4cf599f953"]},"geometry":{"type":"LineString","coordinates":[[-83.6500785,32.840361200000004],[-83.65035440000001,32.8405438]]},"id":"8b44c0a34a0afff-1796dcf6baf4320e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65070730000001,32.8407773]},"id":"8f44c0a34a0b3a1-17dfdbc3f514ed35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a0a2f4-17bffca08fdb417e","8f44c0a34a0b3a1-17dfdbc3f514ed35"]},"geometry":{"type":"LineString","coordinates":[[-83.65035440000001,32.8405438],[-83.65070730000001,32.8407773]]},"id":"8a44c0a34a0ffff-1796fc323900f6a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a0b3a1-17dfdbc3f514ed35","8f44c0a34a56c83-179ffb63e158c930"]},"geometry":{"type":"LineString","coordinates":[[-83.65070730000001,32.8407773],[-83.650861,32.840879]]},"id":"8a44c0a34a0ffff-17fffb93e1a07d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150cc25d-139fb9aac72af2fc","8f44c0b150cc626-13defa38afb8f06f"]},"geometry":{"type":"LineString","coordinates":[[-83.664674,32.757528],[-83.664602,32.757523],[-83.664539,32.757513],[-83.66449300000001,32.757488],[-83.66446,32.75745],[-83.66444700000001,32.757422000000005]]},"id":"8a44c0b150cffff-13fef9fa2a1cc2f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150cc626-13defa38afb8f06f","8f44c0b150c1a1e-13dffa70ee81aecb"]},"geometry":{"type":"LineString","coordinates":[[-83.66444700000001,32.757422000000005],[-83.664438,32.757402],[-83.66439000000001,32.757213],[-83.66435700000001,32.75701]]},"id":"8944c0b150fffff-13defa58aa16b8ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150c5c5c-13febaace16f4273","8f44c0b150c1a1e-13dffa70ee81aecb"]},"geometry":{"type":"LineString","coordinates":[[-83.66435700000001,32.75701],[-83.66426100000001,32.756452]]},"id":"8a44c0b150c7fff-139efa8ee119c03f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150c5c5c-13febaace16f4273","8f44c0b150e28f3-179fbaf38edbc984"]},"geometry":{"type":"LineString","coordinates":[[-83.66426100000001,32.756452],[-83.66414800000001,32.755701]]},"id":"8944c0b150fffff-1397fad036d56d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663953,32.755235]},"id":"8f44c0b1501b251-17f7fb6d6501146a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150e28f3-179fbaf38edbc984","8f44c0b1501b251-17f7fb6d6501146a"]},"geometry":{"type":"LineString","coordinates":[[-83.66414800000001,32.755701],[-83.664118,32.755544],[-83.66404700000001,32.755356],[-83.66401900000001,32.755315],[-83.663953,32.755235]]},"id":"8944c0b150fffff-1796fb21caf95655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668423,32.864517]},"id":"8f44c0a22c9d201-13d7b083a3f97e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668315,32.863813]},"id":"8f44c0a22c83c89-179fb0c72c6f8b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c9d201-13d7b083a3f97e26","8f44c0a22c83c89-179fb0c72c6f8b01"]},"geometry":{"type":"LineString","coordinates":[[-83.668423,32.864517],[-83.66834300000001,32.86428],[-83.66830300000001,32.864108],[-83.66829100000001,32.863965],[-83.668294,32.863885],[-83.668315,32.863813]]},"id":"8944c0a22cbffff-17ffb0bbb7aa129b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c1d118-17f7e8892d270f0c","8f44c0a22c83c89-179fb0c72c6f8b01"]},"geometry":{"type":"LineString","coordinates":[[-83.668315,32.863813],[-83.66832600000001,32.863673],[-83.66835800000001,32.863425],[-83.668405,32.863278],[-83.668451,32.863194],[-83.668524,32.863124],[-83.668631,32.863076],[-83.66875300000001,32.863064],[-83.66890500000001,32.863067],[-83.669137,32.86309],[-83.669312,32.863135],[-83.669483,32.8632],[-83.66963100000001,32.863247],[-83.670088,32.863339],[-83.671035,32.863484],[-83.67130200000001,32.863517],[-83.67148800000001,32.863549],[-83.67169100000001,32.863571]]},"id":"8844c0a22dfffff-17f7fd34cfcd8bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672206,32.864486]},"id":"8f44c0a22ce5d02-13bfe74744ae6274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c1d118-17f7e8892d270f0c","8f44c0a22ce5d02-13bfe74744ae6274"]},"geometry":{"type":"LineString","coordinates":[[-83.67169100000001,32.863571],[-83.671869,32.863577],[-83.671925,32.863584],[-83.67203400000001,32.863615],[-83.67213600000001,32.863667],[-83.6722,32.863711],[-83.672247,32.863763],[-83.672297,32.863872],[-83.67231600000001,32.863936],[-83.67231600000001,32.864013],[-83.672292,32.864158],[-83.67224200000001,32.864334],[-83.672206,32.864486]]},"id":"8844c0a22dfffff-17d6f76d70dc8485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba96d22a1-13bff12727cbd229","8f44c0a36d25d72-139ff234fc9451b5"]},"geometry":{"type":"LineString","coordinates":[[-83.61530090000001,32.831660500000005],[-83.61539060000001,32.831822100000004],[-83.6155147,32.8320245],[-83.6156606,32.832234500000006],[-83.61571550000001,32.8323118],[-83.6157326,32.8323325]]},"id":"8944c0a36d3ffff-13f771b37f63a97c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6157787,32.832372]},"id":"8f44c0ba96d22e0-13dfb10a57daa9cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba96d22e0-13dfb10a57daa9cf","8f44c0ba96d22a1-13bff12727cbd229"]},"geometry":{"type":"LineString","coordinates":[[-83.6157326,32.8323325],[-83.6157787,32.832372]]},"id":"8c44c0ba96d23ff-13bf3118bed1b11d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba96d3426-13fff0d2650d3073","8f44c0ba96d22e0-13dfb10a57daa9cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6157787,32.832372],[-83.61586820000001,32.8324572]]},"id":"8a44c0ba96d7fff-13f730ee5fcd1ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6163349,32.8328671]},"id":"8f44c0ba96de099-13ffffaeb16124be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba96d3426-13fff0d2650d3073","8f44c0ba96de099-13ffffaeb16124be"]},"geometry":{"type":"LineString","coordinates":[[-83.61586820000001,32.8324572],[-83.61597180000001,32.8325558],[-83.616257,32.832804],[-83.6163349,32.8328671]]},"id":"8944c0ba96fffff-13ffb0423fe1377b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36d6411a-17bf7ce5a7848ba1","8f44c0ba96de099-13ffffaeb16124be"]},"geometry":{"type":"LineString","coordinates":[[-83.6163349,32.8328671],[-83.616557,32.833047],[-83.61676200000001,32.833235],[-83.61696900000001,32.833408],[-83.61729960000001,32.8336508],[-83.61747580000001,32.8337639]]},"id":"8944c0ba96fffff-179ffe50d58828c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61827600000001,32.8342775]},"id":"8f44c0a369929a8-17ff7af1893ab619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a369929a8-17ff7af1893ab619","8f44c0a36d6411a-17bf7ce5a7848ba1"]},"geometry":{"type":"LineString","coordinates":[[-83.61747580000001,32.8337639],[-83.6175606,32.833818300000004],[-83.61784200000001,32.834007],[-83.61827600000001,32.8342775]]},"id":"8744c0a36ffffff-17d7abec92ff47aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717253,32.895338]},"id":"8f44c0a2e82e085-1796794ce7b5c76b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e82e085-1796794ce7b5c76b","8f44c0a2c59b161-17bf2ceb8c6ed58c"]},"geometry":{"type":"LineString","coordinates":[[-83.717253,32.895338],[-83.719299,32.895349],[-83.720433,32.895359],[-83.721073,32.89537],[-83.721765,32.895398],[-83.722324,32.895429]]},"id":"8644c0a2fffffff-1797331bd4aeca52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72408200000001,32.895246]},"id":"8f44c0a2c58d65b-13dee8a0c13df476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c58d65b-13dee8a0c13df476","8f44c0a2c59b161-17bf2ceb8c6ed58c"]},"geometry":{"type":"LineString","coordinates":[[-83.722324,32.895429],[-83.72408200000001,32.895246]]},"id":"8944c0a2c5bffff-1797fac621ae39d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c58d65b-13dee8a0c13df476","8f44c0a2c42405e-13bea2d326fa14af"]},"geometry":{"type":"LineString","coordinates":[[-83.72408200000001,32.895246],[-83.725493,32.895088],[-83.726202,32.895012],[-83.726459,32.894993]]},"id":"8844c0a2c5fffff-13f6a5ba46201c6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647796,32.776133]},"id":"8f44c0b114f2ae1-13ffe2df84ab0d2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1149b133-13dfe8e467e919fa","8f44c0b114f2ae1-13ffe2df84ab0d2e"]},"geometry":{"type":"LineString","coordinates":[[-83.647796,32.776133],[-83.64747,32.776121],[-83.646499,32.77611],[-83.64533060000001,32.776089]]},"id":"8844c0b115fffff-13fee5e1e2f440de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644222,32.776069]},"id":"8f44c0b1386ba2a-13d7eb99440ea086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1149b133-13dfe8e467e919fa","8f44c0b1386ba2a-13d7eb99440ea086"]},"geometry":{"type":"LineString","coordinates":[[-83.64533060000001,32.776089],[-83.644222,32.776069]]},"id":"8744c0b13ffffff-13dfea3edc929a9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1386ba2a-13d7eb99440ea086","8f44c0b1384cc43-13deed5f01a5791a"]},"geometry":{"type":"LineString","coordinates":[[-83.644222,32.776069],[-83.643496,32.7760586]]},"id":"8944c0b1387ffff-13dfec7c28df9f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1384eda3-13d7febf14d773e6","8f44c0b1384cc43-13deed5f01a5791a"]},"geometry":{"type":"LineString","coordinates":[[-83.643496,32.7760586],[-83.6429327,32.776050500000004]]},"id":"8944c0b1387ffff-13deee0f1a89ebf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1384eda3-13d7febf14d773e6","8f44c0b138c0d94-13bef79f4ecfc72c"]},"geometry":{"type":"LineString","coordinates":[[-83.6429327,32.776050500000004],[-83.6403805,32.7760138],[-83.639628,32.776003],[-83.639505,32.776006],[-83.63939,32.776015],[-83.6392972,32.776029900000005]]},"id":"8844c0b139fffff-13b7f32fad34c991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b138c2da3-1396f8b3eedec49d","8f44c0b138c0d94-13bef79f4ecfc72c"]},"geometry":{"type":"LineString","coordinates":[[-83.6392972,32.776029900000005],[-83.639184,32.776048],[-83.63904000000001,32.776086],[-83.6388546,32.776141700000004]]},"id":"8a44c0b138c7fff-13dff82a758187f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b138d1d08-13dff9b28a917a83","8f44c0b138c2da3-1396f8b3eedec49d"]},"geometry":{"type":"LineString","coordinates":[[-83.6388546,32.776141700000004],[-83.6384472,32.7762642]]},"id":"8944c0b138fffff-13b6f9333ca9aa3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63701400000001,32.776727]},"id":"8f44c0b1312e180-13fefd324ff74c95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b138d1d08-13dff9b28a917a83","8f44c0b1312e180-13fefd324ff74c95"]},"geometry":{"type":"LineString","coordinates":[[-83.6384472,32.7762642],[-83.638255,32.776322],[-83.637504,32.776553],[-83.63724900000001,32.776643],[-83.63701400000001,32.776727]]},"id":"8744c0b13ffffff-13dffb73fc86d94c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13105baa-13bffddf63413342","8f44c0b1312e180-13fefd324ff74c95"]},"geometry":{"type":"LineString","coordinates":[[-83.63701400000001,32.776727],[-83.63673700000001,32.776857]]},"id":"8944c0b1313ffff-1397fd88d0e537d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706728,32.782004]},"id":"8f44c0b038588d8-17d6d2ff06ce95a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038588d8-17d6d2ff06ce95a8","8f44c0b03b849a4-13f7d300eb8ff3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.706728,32.782004],[-83.706725,32.783468]]},"id":"8744c0b03ffffff-139e52fff196a78a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038588d8-17d6d2ff06ce95a8","8f44c0b03b849a4-13f7d300eb8ff3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.706725,32.783468],[-83.706012,32.783458],[-83.70590800000001,32.783426],[-83.705814,32.783367000000005],[-83.705754,32.783298],[-83.70572800000001,32.783206],[-83.70572100000001,32.78197],[-83.70572700000001,32.781891],[-83.70578300000001,32.781801],[-83.705843,32.781748],[-83.705894,32.78172],[-83.706006,32.781686],[-83.706415,32.781688],[-83.70651000000001,32.781715000000005],[-83.70656500000001,32.781743],[-83.70660000000001,32.781765],[-83.70663800000001,32.781799],[-83.706687,32.781863],[-83.706702,32.781891],[-83.70672,32.781943000000005],[-83.706728,32.782004]]},"id":"8744c0b03ffffff-13b774aaae262499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688888,32.793275]},"id":"8f44c0b1ca6148b-13d6fe8d07cbecaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68804300000001,32.793069]},"id":"8f44c0b1ca71b21-13d6a09d28ffb97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca6148b-13d6fe8d07cbecaf","8f44c0b1ca71b21-13d6a09d28ffb97b"]},"geometry":{"type":"LineString","coordinates":[[-83.688888,32.793275],[-83.68804300000001,32.793069]]},"id":"8944c0b1ca7ffff-1396ff951de27e35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68556000000001,32.794373]},"id":"8f44c0b1caee561-1797a6ad07b4aa0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1caee561-1797a6ad07b4aa0d","8f44c0b1ca71b21-13d6a09d28ffb97b"]},"geometry":{"type":"LineString","coordinates":[[-83.68804300000001,32.793069],[-83.68776600000001,32.793011],[-83.68761400000001,32.792994],[-83.68755900000001,32.793],[-83.687402,32.793031],[-83.68734400000001,32.793049],[-83.687229,32.793123],[-83.687183,32.793162],[-83.687116,32.79325],[-83.68706200000001,32.79334],[-83.686829,32.793675],[-83.686667,32.793922],[-83.686541,32.794103],[-83.68643700000001,32.79421],[-83.686367,32.794264000000005],[-83.68631900000001,32.794292],[-83.686231,32.79433],[-83.686136,32.794354000000006],[-83.686006,32.794365],[-83.68556000000001,32.794373]]},"id":"8844c0b1cbfffff-13dfc39ff64916b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682806,32.794632]},"id":"8f44c0b1cad2094-17b78d66451d3c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1caee561-1797a6ad07b4aa0d","8f44c0b1cad2094-17b78d66451d3c75"]},"geometry":{"type":"LineString","coordinates":[[-83.68556000000001,32.794373],[-83.68384300000001,32.794362],[-83.683672,32.794371000000005],[-83.683547,32.794387],[-83.683412,32.794414],[-83.683296,32.794452],[-83.682806,32.794632]]},"id":"8844c0b1cbfffff-1797aa1376477540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646164,32.812725]},"id":"8f44c0b1ac4dc8c-13d7e6db8c9acef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac4dc8c-13d7e6db8c9acef1","8f44c0b1a134326-13d7e3eb03dc9b55"]},"geometry":{"type":"LineString","coordinates":[[-83.646164,32.812725],[-83.64632800000001,32.812708],[-83.647368,32.812706]]},"id":"8744c0b1affffff-13d6f5638959601b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1241a3-13bfe11105620ac1","8f44c0b1a134326-13d7e3eb03dc9b55"]},"geometry":{"type":"LineString","coordinates":[[-83.647368,32.812706],[-83.64764600000001,32.812703],[-83.64853600000001,32.812697]]},"id":"8744c0b1affffff-13d6f27e01ca644c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64941400000001,32.812697]},"id":"8f44c0b1a88961e-13bffeec45e9839e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a88961e-13bffeec45e9839e","8f44c0b1a1241a3-13bfe11105620ac1"]},"geometry":{"type":"LineString","coordinates":[[-83.64853600000001,32.812697],[-83.64941400000001,32.812697]]},"id":"8844c0b1a9fffff-13bffffea4f1cb95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.592855,32.859681]},"id":"8f44c0b8991435e-17f7e901a2413cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8991435e-17f7e901a2413cff","8f44c0b89916103-17b76a74e5b7cf45"]},"geometry":{"type":"LineString","coordinates":[[-83.592855,32.859681],[-83.59226100000001,32.859578]]},"id":"8a44c0b89917fff-17d779bb42481059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89916103-17b76a74e5b7cf45","8f44c0b89916516-179f6aff0583002b"]},"geometry":{"type":"LineString","coordinates":[[-83.59226100000001,32.859578],[-83.59204000000001,32.859543]]},"id":"8b44c0b89916fff-17bf7ab9fb15aece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590277,32.859219]},"id":"8f44c0b899b4b36-13d7ef4ce215d87b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b899b4b36-13d7ef4ce215d87b","8f44c0b89916516-179f6aff0583002b"]},"geometry":{"type":"LineString","coordinates":[[-83.59204000000001,32.859543],[-83.590277,32.859219]]},"id":"8644c0b8fffffff-17bf6d25fe56e2ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.588397,32.858891]},"id":"8f44c0b8d6c10f5-1397f3e3e09947e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6c10f5-1397f3e3e09947e2","8f44c0b899b4b36-13d7ef4ce215d87b"]},"geometry":{"type":"LineString","coordinates":[[-83.590277,32.859219],[-83.58889500000001,32.858981],[-83.58883700000001,32.85897],[-83.588397,32.858891]]},"id":"8844c0b8d7fffff-13ff71989a6f3c96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69878650000001,32.8140264]},"id":"8f44c0b1d223276-17fee66270ecbac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d21c32a-17ffe94d061c1479","8f44c0b1d223276-17fee66270ecbac8"]},"geometry":{"type":"LineString","coordinates":[[-83.69878650000001,32.8140264],[-83.69874300000001,32.81401],[-83.698564,32.813955],[-83.698486,32.813943],[-83.698356,32.813937],[-83.698267,32.813950000000006],[-83.698183,32.813969],[-83.69807700000001,32.814011],[-83.69798,32.814064],[-83.697912,32.81411],[-83.697843,32.814179],[-83.697787,32.814262],[-83.69774600000001,32.814365],[-83.697632,32.814923],[-83.697592,32.815027]]},"id":"8944c0b1d23ffff-179e784188e7e596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3546b9a8-17f7f5f4aed3aad5","8f44c0a3546cd26-13b7d5b80d8d09d5"]},"geometry":{"type":"LineString","coordinates":[[-83.65318400000001,32.855272],[-83.65318500000001,32.855662],[-83.653175,32.855804],[-83.653087,32.856195]]},"id":"8944c0a3547ffff-13d7f5c68d86852a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35711c6a-13f6d554acb48315","8f44c0a3546b9a8-17f7f5f4aed3aad5"]},"geometry":{"type":"LineString","coordinates":[[-83.653087,32.856195],[-83.653343,32.858224]]},"id":"8744c0a35ffffff-17fff5a4ac7524ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689975,32.850445]},"id":"8f44c0a26a1335d-17fe7be5a320337c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689954,32.851692]},"id":"8f44c0a26af0922-13f7fbf2ccfe4755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26af0922-13f7fbf2ccfe4755","8f44c0a26a1335d-17fe7be5a320337c"]},"geometry":{"type":"LineString","coordinates":[[-83.689975,32.850445],[-83.689954,32.851692]]},"id":"8844c0a26bfffff-17fffbec325b443c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689943,32.852873]},"id":"8f44c0a26ac66c3-17d7fbf9afcfd179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26af0922-13f7fbf2ccfe4755","8f44c0a26ac66c3-17d7fbf9afcfd179"]},"geometry":{"type":"LineString","coordinates":[[-83.689954,32.851692],[-83.689943,32.852873]]},"id":"8944c0a26afffff-13f6fbf63400312e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68994400000001,32.852992]},"id":"8f44c0a26ac2c6d-17b67bf904500247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26ac2c6d-17b67bf904500247","8f44c0a26ac66c3-17d7fbf9afcfd179"]},"geometry":{"type":"LineString","coordinates":[[-83.689943,32.852873],[-83.68994400000001,32.852992]]},"id":"8b44c0a26ac2fff-17fefbf95e8a2093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26adc272-17f6fbffe09519d0","8f44c0a26ac2c6d-17b67bf904500247"]},"geometry":{"type":"LineString","coordinates":[[-83.68994400000001,32.852992],[-83.68993300000001,32.853713]]},"id":"8944c0a26afffff-17977bfc727b253b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689896,32.855313]},"id":"8f44c0a26362202-13defc170a5b2437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26362202-13defc170a5b2437","8f44c0a26adc272-17f6fbffe09519d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68993300000001,32.853713],[-83.68992300000001,32.854137],[-83.689896,32.855313]]},"id":"8744c0a26ffffff-13d6fc0b80bac5df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689886,32.856343]},"id":"8f44c0a263410a1-17de7c1d4a442b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a263410a1-17de7c1d4a442b16","8f44c0a26362202-13defc170a5b2437"]},"geometry":{"type":"LineString","coordinates":[[-83.689896,32.855313],[-83.689886,32.856343]]},"id":"8944c0a2637ffff-139efc1a26c28946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898711,32.8565891]},"id":"8f44c0a2634e985-17fe7c269f699794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a263410a1-17de7c1d4a442b16","8f44c0a2634e985-17fe7c269f699794"]},"geometry":{"type":"LineString","coordinates":[[-83.689886,32.856343],[-83.6898711,32.8565891]]},"id":"8944c0a2637ffff-179f7c21fbe2b488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68976500000001,32.857816]},"id":"8f44c0a26265cb3-13f77c68e529b1ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26265cb3-13f77c68e529b1ad","8f44c0a2634e985-17fe7c269f699794"]},"geometry":{"type":"LineString","coordinates":[[-83.6898711,32.8565891],[-83.689806,32.857661],[-83.68976500000001,32.857816]]},"id":"8844c0a263fffff-17fefc3f3486a2f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac0b035-17dfee1f82458a40","8f44c0b1ac0ea65-179fee0ea5b5ed9a"]},"geometry":{"type":"LineString","coordinates":[[-83.64318800000001,32.811078],[-83.64321500000001,32.810389]]},"id":"8a44c0b1ac0ffff-17f6fe17180aacb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643237,32.80957]},"id":"8f44c0b1ac053a2-139fee00eca29462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac0ea65-179fee0ea5b5ed9a","8f44c0b1ac053a2-139fee00eca29462"]},"geometry":{"type":"LineString","coordinates":[[-83.64321500000001,32.810389],[-83.643237,32.80957]]},"id":"8944c0b1ac3ffff-139ffe07c20ea80f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64327800000001,32.808537]},"id":"8f44c0b1ac20505-1397ede746ba5a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac20505-1397ede746ba5a12","8f44c0b1ac053a2-139fee00eca29462"]},"geometry":{"type":"LineString","coordinates":[[-83.643237,32.80957],[-83.64326100000001,32.808957],[-83.64327800000001,32.808537]]},"id":"8944c0b1ac3ffff-13defdf430fd4b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643285,32.807513]},"id":"8f44c0b1ad1d0da-1797ede2e77015bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac20505-1397ede746ba5a12","8f44c0b1ad1d0da-1797ede2e77015bd"]},"geometry":{"type":"LineString","coordinates":[[-83.64327800000001,32.808537],[-83.643285,32.807513]]},"id":"8844c0b1adfffff-17d7ede519cd581e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5690507,32.806710200000005]},"id":"8f44c0b852eb4b3-13b7e31f5a37264a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8525a513-13ffa09840d51a03","8f44c0b852eb4b3-13b7e31f5a37264a"]},"geometry":{"type":"LineString","coordinates":[[-83.5690507,32.806710200000005],[-83.569237,32.80669],[-83.570086,32.806444]]},"id":"8a44c0b852effff-13d7f1da2f10d071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570166,32.806423]},"id":"8f44c0b8525acc2-13ffe06647c7952d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8525a513-13ffa09840d51a03","8f44c0b8525acc2-13ffe06647c7952d"]},"geometry":{"type":"LineString","coordinates":[[-83.570086,32.806444],[-83.570166,32.806423]]},"id":"8b44c0b8525afff-13f7f07f470580cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8525acc2-13ffe06647c7952d","8f44c0b8526aac1-13d7fab47c42660e"]},"geometry":{"type":"LineString","coordinates":[[-83.570166,32.806423],[-83.57208680000001,32.8058793],[-83.57213180000001,32.8058666],[-83.57249850000001,32.8057455]]},"id":"8944c0b8527ffff-139fdd8c16a52e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0d16ca-13b7ef2fcaca85d4","8f44c0b8e0c3d6d-17d7dcce4a501a0e"]},"geometry":{"type":"LineString","coordinates":[[-83.55197720000001,32.8411745],[-83.551828,32.841191],[-83.55159400000001,32.84122],[-83.55100200000001,32.841347]]},"id":"8944c0b8e0fffff-17f7de002cc5603d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0d16ca-13b7ef2fcaca85d4","8f44c0b8e72a924-13fff2606921d489"]},"geometry":{"type":"LineString","coordinates":[[-83.55100200000001,32.841347],[-83.550166,32.84153],[-83.5496954,32.841641]]},"id":"8744c0b8effffff-139fd0c87e90c680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e703529-13d7d56024846c6e","8f44c0b8e72a924-13fff2606921d489"]},"geometry":{"type":"LineString","coordinates":[[-83.5496954,32.841641],[-83.54945400000001,32.841698],[-83.5492,32.841766],[-83.54886,32.841873],[-83.548467,32.84201]]},"id":"8944c0b8e73ffff-13d7d3e2b8db9958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e703529-13d7d56024846c6e","8f44c0b8e71e692-13f7d7e520a0c00c"]},"geometry":{"type":"LineString","coordinates":[[-83.548467,32.84201],[-83.54743500000001,32.842446]]},"id":"8944c0b8e73ffff-13dfd6a2a1de8877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a240582aa-17fe716aa830398a","8f44c0a243b1c73-13ff527e4ad23329"]},"geometry":{"type":"LineString","coordinates":[[-83.706934,32.848402],[-83.70698900000001,32.848261],[-83.707015,32.84823],[-83.707088,32.848169],[-83.70729200000001,32.848052],[-83.70735900000001,32.848008],[-83.707418,32.847962],[-83.707486,32.847872],[-83.707503,32.847794],[-83.70750000000001,32.847732],[-83.707496,32.847709],[-83.70748800000001,32.847651],[-83.707448,32.847538],[-83.707375,32.847405]]},"id":"8744c0a24ffffff-13d6f19c7932aed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2405404c-13ff527dab72b188","8f44c0a240582aa-17fe716aa830398a"]},"geometry":{"type":"LineString","coordinates":[[-83.707375,32.847405],[-83.70735300000001,32.847365],[-83.707119,32.846466],[-83.70711100000001,32.846435],[-83.70706,32.846282],[-83.707008,32.846153],[-83.706935,32.845768]]},"id":"8944c0a2407ffff-17fe71fa3214b248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706783,32.844436]},"id":"8f44c0a2402b120-17bed2dcac4601e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2405404c-13ff527dab72b188","8f44c0a2402b120-17bed2dcac4601e2"]},"geometry":{"type":"LineString","coordinates":[[-83.706935,32.845768],[-83.70692600000001,32.845719],[-83.70693100000001,32.845663],[-83.70694300000001,32.845616],[-83.70698200000001,32.845577],[-83.70703300000001,32.845551],[-83.70733800000001,32.845458],[-83.70741000000001,32.845436],[-83.70768500000001,32.845363],[-83.707724,32.845348],[-83.707744,32.845328],[-83.70776400000001,32.845255],[-83.70776400000001,32.845215],[-83.70775300000001,32.845169],[-83.70761300000001,32.84485],[-83.70750100000001,32.844475],[-83.707454,32.844332],[-83.70743200000001,32.844285],[-83.707392,32.844251],[-83.70733,32.844236],[-83.707249,32.844242],[-83.70716800000001,32.844268],[-83.707013,32.844332],[-83.706783,32.844436]]},"id":"8844c0a241fffff-13f65170d7c623ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73738900000001,32.773791]},"id":"8f44c0b2a431284-13d76823ecd2f034"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737409,32.769737]},"id":"8f44c0b2a536d11-13dfa81765e23110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a431284-13d76823ecd2f034","8f44c0b2a536d11-13dfa81765e23110"]},"geometry":{"type":"LineString","coordinates":[[-83.73738900000001,32.773791],[-83.737409,32.769737]]},"id":"8744c0b2affffff-17d6881daa6f8000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73742800000001,32.76565]},"id":"8f44c0b0536338b-17f7480b86f373b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0536338b-17f7480b86f373b7","8f44c0b2a536d11-13dfa81765e23110"]},"geometry":{"type":"LineString","coordinates":[[-83.737409,32.769737],[-83.73742800000001,32.76565]]},"id":"8844c0b053fffff-17f6781178200d9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62788,32.823617]},"id":"8f44c0ba9a90d0b-17ffb37f0e5be49e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a90d0b-17ffb37f0e5be49e","8f44c0ba9a824a8-17f731dcec11f37b"]},"geometry":{"type":"LineString","coordinates":[[-83.62788,32.823617],[-83.628026,32.823696000000005],[-83.628478,32.823988],[-83.628549,32.824021]]},"id":"8a44c0ba9a97fff-17f7d2add34cf910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62924600000001,32.824432]},"id":"8f44c0ba9a83305-17f7102949b0c8a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a83305-17f7102949b0c8a2","8f44c0ba9a824a8-17f731dcec11f37b"]},"geometry":{"type":"LineString","coordinates":[[-83.628549,32.824021],[-83.62924600000001,32.824432]]},"id":"8944c0ba9abffff-17f791031013b811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299712,32.8248575]},"id":"8f44c0ba9a8882e-17fffe64084217be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a83305-17f7102949b0c8a2","8f44c0ba9a8882e-17fffe64084217be"]},"geometry":{"type":"LineString","coordinates":[[-83.62924600000001,32.824432],[-83.6299712,32.8248575]]},"id":"8944c0ba9abffff-17ff0f46af9578b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61198300000001,32.842551]},"id":"8f44c0a3654e92d-13b77a4ea2cc9375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3654e92d-13b77a4ea2cc9375","8f44c0a3654156a-13977aa264f0ff6e"]},"geometry":{"type":"LineString","coordinates":[[-83.611849,32.842298],[-83.61198300000001,32.842551]]},"id":"8b44c0a36541fff-13d77a788f238c13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61238900000001,32.843334]},"id":"8f44c0a3654952a-179ff950e4c11c0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3654e92d-13b77a4ea2cc9375","8f44c0a3654952a-179ff950e4c11c0f"]},"geometry":{"type":"LineString","coordinates":[[-83.61198300000001,32.842551],[-83.61238900000001,32.843334]]},"id":"8a44c0a3654ffff-179739cfcbafb612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a83056d-17ff7ba5371ba366","8f44c0a2a832b23-17bffc12ac733e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.7097389,32.9156051],[-83.70961100000001,32.915666],[-83.70956380000001,32.9156831]]},"id":"8a44c0a2a837fff-1796ebdb8fb1bf99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092432,32.915769600000004]},"id":"8f44c0a2a83246d-17f64cdb07e2712c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a83246d-17f64cdb07e2712c","8f44c0a2a832b23-17bffc12ac733e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.70956380000001,32.9156831],[-83.70947000000001,32.915717],[-83.7092432,32.915769600000004]]},"id":"8b44c0a2a832fff-17df7c7619cd4643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7081205,32.9159184]},"id":"8f44c0a2a98b4b4-17d74f98baf35e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a83246d-17f64cdb07e2712c","8f44c0a2a98b4b4-17d74f98baf35e53"]},"geometry":{"type":"LineString","coordinates":[[-83.7092432,32.915769600000004],[-83.70911500000001,32.915787],[-83.708411,32.915851],[-83.7081205,32.9159184]]},"id":"8844c0a2a9fffff-179ece3b303a2024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a98b4b4-17d74f98baf35e53","8f44c0a2a8a48e2-17dfefea4e1ccbd9"]},"geometry":{"type":"LineString","coordinates":[[-83.7081205,32.9159184],[-83.70799000000001,32.915961]]},"id":"8944c0a2a9bffff-17de5fc1892fd9cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a2ce0-17b771cce557817f","8f44c0a2a8a6ade-1797d0ed7c768753"]},"geometry":{"type":"LineString","coordinates":[[-83.70721780000001,32.9164819],[-83.70734470000001,32.9164356],[-83.7075753,32.9162525]]},"id":"8a44c0a2a8a7fff-17f7d158a2b785b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a48e2-17dfefea4e1ccbd9","8f44c0a2a8a6ade-1797d0ed7c768753"]},"geometry":{"type":"LineString","coordinates":[[-83.7075753,32.9162525],[-83.70799000000001,32.915961]]},"id":"8a44c0a2a8a7fff-17b6f06bdce839fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.535337,32.803538]},"id":"8f44c0b804495b0-13f7f56e69bdcae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8073211b-13d7f3a4ebe531c3","8f44c0b804495b0-13f7f56e69bdcae3"]},"geometry":{"type":"LineString","coordinates":[[-83.535337,32.803538],[-83.53574900000001,32.803477],[-83.53606900000001,32.803483]]},"id":"8844c0b807fffff-13dff48a4e05237a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.544548,32.804727]},"id":"8f44c0b80316cab-17dffef18f056656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b80316cab-17dffef18f056656","8f44c0b8073211b-13d7f3a4ebe531c3"]},"geometry":{"type":"LineString","coordinates":[[-83.53606900000001,32.803483],[-83.53627,32.803492],[-83.536478,32.803527],[-83.536567,32.803551],[-83.53667200000001,32.803587],[-83.53679500000001,32.803607],[-83.53719000000001,32.803638],[-83.537374,32.803641],[-83.541949,32.803883],[-83.542861,32.803917000000006],[-83.543779,32.804004],[-83.543951,32.804025],[-83.544038,32.80404],[-83.544112,32.804076],[-83.54418000000001,32.804122],[-83.544233,32.804186],[-83.544548,32.804727]]},"id":"8744c0b80ffffff-179ff8e62e9117c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684292,32.880164]},"id":"8f44c0a22268962-17f689c582fedd5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22251ca5-17bfd01483b608f0","8f44c0a22268962-17f689c582fedd5c"]},"geometry":{"type":"LineString","coordinates":[[-83.684292,32.880164],[-83.68391700000001,32.880063],[-83.68361900000001,32.880014],[-83.683372,32.880004],[-83.682895,32.880024],[-83.682581,32.880052],[-83.682265,32.880107],[-83.682012,32.880167],[-83.681708,32.880274]]},"id":"8944c0a2227ffff-17d79cefd41601a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681263,32.880522]},"id":"8f44c0a2225356b-17d6d12aa8c9341d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22251ca5-17bfd01483b608f0","8f44c0a2225356b-17d6d12aa8c9341d"]},"geometry":{"type":"LineString","coordinates":[[-83.681708,32.880274],[-83.681382,32.880446],[-83.681263,32.880522]]},"id":"8a44c0a22257fff-1796f0a0e97ab1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2225356b-17d6d12aa8c9341d","8f44c0a222dd22e-13f6b5f6c0af3cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.681263,32.880522],[-83.68111300000001,32.880668],[-83.681036,32.880785],[-83.680977,32.88093],[-83.68096200000001,32.880992],[-83.68089400000001,32.881146],[-83.680817,32.881258],[-83.680762,32.881309],[-83.68065,32.881397],[-83.680515,32.88148],[-83.680423,32.881521],[-83.67966100000001,32.881821],[-83.679298,32.881981]]},"id":"8844c0a223fffff-13f693480f93617f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04974280-179798d2a3b6899d","8f44c0a222dd22e-13f6b5f6c0af3cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.679298,32.881981],[-83.678803,32.882253],[-83.678127,32.882648]]},"id":"8644c0a27ffffff-17b6b766054402f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67553600000001,32.883619]},"id":"8f44c0a04826640-17f7ff2605effe86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04974280-179798d2a3b6899d","8f44c0a04826640-17f7ff2605effe86"]},"geometry":{"type":"LineString","coordinates":[[-83.678127,32.882648],[-83.677637,32.882939],[-83.677307,32.883102],[-83.677046,32.883195],[-83.67664,32.883316],[-83.676156,32.883446],[-83.67553600000001,32.883619]]},"id":"8844c0a049fffff-17f7bbe9a3460a85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721109,32.894119]},"id":"8f44c0a2c5927b0-139e6fe2e3327032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c5927b0-139e6fe2e3327032","8f44c0a212c8068-179f7f966b71e7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.721109,32.894119],[-83.72123140000001,32.8929015]]},"id":"8644c0a2fffffff-179fffbcabd2ede6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721286,32.892267600000004]},"id":"8f44c0a212ccd6b-17976f744d1b7169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a212c8068-179f7f966b71e7d4","8f44c0a212ccd6b-17976f744d1b7169"]},"geometry":{"type":"LineString","coordinates":[[-83.72123140000001,32.8929015],[-83.721286,32.892267600000004]]},"id":"8a44c0a212cffff-17df6f8555f73279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6610618,32.8461696]},"id":"8f44c0a3599db5b-13fec27c67b1d06b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a359b19a3-17f6c2e365bee153","8f44c0a3599db5b-13fec27c67b1d06b"]},"geometry":{"type":"LineString","coordinates":[[-83.6610618,32.8461696],[-83.660897,32.844324]]},"id":"8944c0a359bffff-13b7c2afe33efb65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660818,32.843456]},"id":"8f44c0b1b65a224-17dec314cdfde25e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b65a224-17dec314cdfde25e","8f44c0a359b19a3-17f6c2e365bee153"]},"geometry":{"type":"LineString","coordinates":[[-83.660897,32.844324],[-83.660818,32.843456]]},"id":"8644c0a37ffffff-17f7c2fc1ae81f70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65478200000001,32.824302]},"id":"8f44c0b1a341102-1796d1d14707a9cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654809,32.822879]},"id":"8f44c0b1a366399-139ff1c065914007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a341102-1796d1d14707a9cb","8f44c0b1a366399-139ff1c065914007"]},"geometry":{"type":"LineString","coordinates":[[-83.65478200000001,32.824302],[-83.654809,32.822879]]},"id":"8944c0b1a37ffff-17ded1c8df005d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654812,32.820012000000006]},"id":"8f44c0b1aaf0ad3-179fd1be8ce81a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aaf0ad3-179fd1be8ce81a36","8f44c0b1a366399-139ff1c065914007"]},"geometry":{"type":"LineString","coordinates":[[-83.654809,32.822879],[-83.654836,32.822785],[-83.654842,32.822629],[-83.654825,32.8208813],[-83.654812,32.820012000000006]]},"id":"8744c0b1affffff-179ef1b3f845da82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636655,32.825761]},"id":"8f44c0ba9a69c85-13b6fe12af643a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a69c85-13b6fe12af643a7f","8f44c0ba9a49d80-17deffd18c5e38c6"]},"geometry":{"type":"LineString","coordinates":[[-83.636655,32.825761],[-83.63594,32.82667]]},"id":"8944c0ba9a7ffff-13d6fef21b440cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a49d80-17deffd18c5e38c6","8f44c0ba9a4b6e3-179700eac2ec8308"]},"geometry":{"type":"LineString","coordinates":[[-83.63594,32.82667],[-83.635799,32.826816],[-83.635552,32.827121000000005],[-83.63551500000001,32.827159],[-83.63549,32.827168]]},"id":"8944c0ba9a7ffff-17ff205d95c9c635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63687800000001,32.82553]},"id":"8f44c0ba9a6d0d1-1396fd8742b76282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63785800000001,32.824363000000005]},"id":"8f44c0b1a6864b5-17befb22c4efd9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a6d0d1-1396fd8742b76282","8f44c0b1a6864b5-17befb22c4efd9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.63687800000001,32.82553],[-83.63785800000001,32.824363000000005]]},"id":"8444c0bffffffff-13b7fc5509489618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638801,32.823211]},"id":"8f44c0b1a6a6d2b-13fef8d56a1e98a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a6a6d2b-13fef8d56a1e98a2","8f44c0b1a6864b5-17befb22c4efd9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.63785800000001,32.824363000000005],[-83.638801,32.823211]]},"id":"8944c0b1a6bffff-17d6f9fc14657c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62728700000001,32.837360100000005]},"id":"8f44c0a344b20e2-17f714f1a4796303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6277591,32.836780000000005]},"id":"8f44c0a344b455b-179f93ca94452d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344b455b-179f93ca94452d49","8f44c0a344b20e2-17f714f1a4796303"]},"geometry":{"type":"LineString","coordinates":[[-83.62728700000001,32.837360100000005],[-83.6277591,32.836780000000005]]},"id":"8a44c0a344b7fff-17d7d45e1c289cae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62829980000001,32.8361388]},"id":"8f44c0a3459e24d-13ffd278ae41a605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3459e24d-13ffd278ae41a605","8f44c0a344b455b-179f93ca94452d49"]},"geometry":{"type":"LineString","coordinates":[[-83.6277591,32.836780000000005],[-83.62829980000001,32.8361388]]},"id":"8844c0a345fffff-17d733219e21661a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6288164,32.835532900000004]},"id":"8f44c0a34582202-13971135ca8f1792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3459e24d-13ffd278ae41a605","8f44c0a34582202-13971135ca8f1792"]},"geometry":{"type":"LineString","coordinates":[[-83.62829980000001,32.8361388],[-83.6288164,32.835532900000004]]},"id":"8944c0a345bffff-13bf71d7377ba006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6292294,32.834924400000006]},"id":"8f44c0a34584713-1397d033a06d3e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34582202-13971135ca8f1792","8f44c0a34584713-1397d033a06d3e3f"]},"geometry":{"type":"LineString","coordinates":[[-83.6288164,32.835532900000004],[-83.6292294,32.834924400000006]]},"id":"8a44c0a34587fff-13d7f0b4bb1d1841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5754249,32.868003200000004]},"id":"8f44c0b8959bd71-13d7938f77813962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5741409,32.869109200000004]},"id":"8f44c0b89494c11-13ffd6b1f3d06ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8959bd71-13d7938f77813962","8f44c0b89494c11-13ffd6b1f3d06ace"]},"geometry":{"type":"LineString","coordinates":[[-83.5754249,32.868003200000004],[-83.5751499,32.868225200000005],[-83.5745699,32.868726200000005],[-83.57439090000001,32.8688862],[-83.5741409,32.869109200000004]]},"id":"8644c0b8fffffff-139ff523d7ba0cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b843734-13bfbc3c1794fc40","8f44c0b89494c11-13ffd6b1f3d06ace"]},"geometry":{"type":"LineString","coordinates":[[-83.5741409,32.869109200000004],[-83.5734319,32.869694200000005],[-83.5728369,32.870206200000005],[-83.5725079,32.8705212],[-83.5723169,32.8706732],[-83.5718719,32.871028200000005]]},"id":"8844c0b8b9fffff-17d7f976c83c70ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b85ca69-13ffdc85bfb6b6c3","8f44c0b8b843734-13bfbc3c1794fc40"]},"geometry":{"type":"LineString","coordinates":[[-83.5718719,32.871028200000005],[-83.5717541,32.871156500000005]]},"id":"8944c0b8b87ffff-13d7dc60ef334f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b85ca69-13ffdc85bfb6b6c3","8f44c0b8bbb4955-13df9e9239332899"]},"geometry":{"type":"LineString","coordinates":[[-83.5717541,32.871156500000005],[-83.5715569,32.8713712],[-83.571337,32.8715552],[-83.57094690000001,32.871870200000004],[-83.5709149,32.8718992]]},"id":"8a44c0b8b85ffff-13f7fd85612b3bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5694509,32.8732312]},"id":"8f44c0b8bb9671a-179fa22531c2bdb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb9671a-179fa22531c2bdb4","8f44c0b8bbb4955-13df9e9239332899"]},"geometry":{"type":"LineString","coordinates":[[-83.5709149,32.8718992],[-83.5701779,32.872570200000006],[-83.5694509,32.8732312]]},"id":"8944c0b8bbbffff-17fff05ba2ad2bf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb9671a-179fa22531c2bdb4","8f44c0b8b161635-17f7e39b43c92048"]},"geometry":{"type":"LineString","coordinates":[[-83.5694509,32.8732312],[-83.56885240000001,32.873783800000005]]},"id":"8744c0b8bffffff-17b7b2e0314c8d95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68518900000001,32.81695]},"id":"8f44c0b19d23742-17b7c794ec0c9875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19da4686-17deff82ca7b1dc3","8f44c0b19d23742-17b7c794ec0c9875"]},"geometry":{"type":"LineString","coordinates":[[-83.68194120000001,32.8168431],[-83.6820378,32.816960300000005],[-83.683575,32.816977],[-83.684515,32.816977],[-83.68518900000001,32.81695]]},"id":"8844c0b19dfffff-17bedb9c36a5d206"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d6d30e4-17bfa43dede6eb97","8f44c0b19d23742-17b7c794ec0c9875"]},"geometry":{"type":"LineString","coordinates":[[-83.68518900000001,32.81695],[-83.68655700000001,32.816969]]},"id":"8744c0b19ffffff-17b7b5e96b0deab5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687917,32.817003]},"id":"8f44c0b1d6c312b-17d6e0ebeeff3f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d6d30e4-17bfa43dede6eb97","8f44c0b1d6c312b-17d6e0ebeeff3f35"]},"geometry":{"type":"LineString","coordinates":[[-83.68655700000001,32.816969],[-83.687917,32.817003]]},"id":"8944c0b1d6fffff-17bec294e8c0a99c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605939,32.853219]},"id":"8f44c0b8da4a25d-17bfe9102544f42d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605101,32.853245]},"id":"8f44c0b8da5ba64-17bf6b1be5d0867f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da4a25d-17bfe9102544f42d","8f44c0b8da5ba64-17bf6b1be5d0867f"]},"geometry":{"type":"LineString","coordinates":[[-83.605939,32.853219],[-83.60562900000001,32.853231],[-83.605101,32.853245]]},"id":"8944c0b8da7ffff-17b7ca160ec31699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60463800000001,32.853239]},"id":"8f44c0b8da5b4f1-17bf6c3d40ebfe1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da5b4f1-17bf6c3d40ebfe1b","8f44c0b8da5ba64-17bf6b1be5d0867f"]},"geometry":{"type":"LineString","coordinates":[[-83.605101,32.853245],[-83.60463800000001,32.853239]]},"id":"8b44c0b8da5bfff-17bf4bac904db023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60463100000001,32.853786]},"id":"8f44c0a32db5601-17974c41afc7f0d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32db5601-17974c41afc7f0d5","8f44c0b8da5ba64-17bf6b1be5d0867f"]},"geometry":{"type":"LineString","coordinates":[[-83.605101,32.853245],[-83.605013,32.853329],[-83.604877,32.853485],[-83.60463100000001,32.853786]]},"id":"8744c0b8dffffff-17f75bb23080a3ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d9592b-139fed6ee77e5a33","8f44c0a32db5601-17974c41afc7f0d5"]},"geometry":{"type":"LineString","coordinates":[[-83.60463100000001,32.853786],[-83.60437900000001,32.854095],[-83.604149,32.854425]]},"id":"8944c0a32dbffff-17d76cdc00997f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672173,32.84848]},"id":"8f44c0a26402472-139ea75be8adcae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6710899,32.8494467]},"id":"8f44c0a264a9c43-13feba00d089d983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26402472-139ea75be8adcae6","8f44c0a264a9c43-13feba00d089d983"]},"geometry":{"type":"LineString","coordinates":[[-83.672173,32.84848],[-83.6710899,32.8494467]]},"id":"8844c0a265fffff-13dea8ae54673586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67018300000001,32.850248]},"id":"8f44c0a26488a89-17ffac37a0af3da7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26488a89-17ffac37a0af3da7","8f44c0a264a9c43-13feba00d089d983"]},"geometry":{"type":"LineString","coordinates":[[-83.6710899,32.8494467],[-83.67018300000001,32.850248]]},"id":"8944c0a264bffff-17f6ab1c4d4bad71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68695600000001,32.834097]},"id":"8f44c0b1976acb1-17fea34483c47557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1976acb1-17fea34483c47557","8f44c0b1939d084-17bf7d7e65f68117"]},"geometry":{"type":"LineString","coordinates":[[-83.68695600000001,32.834097],[-83.68791200000001,32.834124],[-83.689321,32.834165]]},"id":"8744c0b19ffffff-1797c06175bab1ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69152100000001,32.834203]},"id":"8f44c0b192346a1-17d6f81f610a6857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192346a1-17d6f81f610a6857","8f44c0b1939d084-17bf7d7e65f68117"]},"geometry":{"type":"LineString","coordinates":[[-83.689321,32.834165],[-83.69108,32.834187],[-83.69152100000001,32.834203]]},"id":"8844c0b193fffff-17b67acedb634123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19225d31-17f7f3d90edf88c5","8f44c0b192346a1-17d6f81f610a6857"]},"geometry":{"type":"LineString","coordinates":[[-83.69152100000001,32.834203],[-83.691918,32.834169],[-83.692172,32.834147],[-83.69235900000001,32.834158],[-83.69274100000001,32.834252],[-83.692947,32.834269],[-83.69327200000001,32.834265]]},"id":"8944c0b1923ffff-17d6f5fbf328c8d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19225d31-17f7f3d90edf88c5","8f44c0b19360518-17d7ed184202d4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.69327200000001,32.834265],[-83.695256,32.834294],[-83.69548300000001,32.834263],[-83.695577,32.834221],[-83.695767,32.834097],[-83.696038,32.833804]]},"id":"8844c0b193fffff-17de704ccfd25682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19360cd5-17b76cec8e178337","8f44c0b19360518-17d7ed184202d4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.696038,32.833804],[-83.69610800000001,32.833768]]},"id":"8b44c0b19360fff-17be6d0261efdf1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ac0142-13f7ec306b10ecfb","8f44c0b19360cd5-17b76cec8e178337"]},"geometry":{"type":"LineString","coordinates":[[-83.69610800000001,32.833768],[-83.69637800000001,32.833599],[-83.696516,32.833486],[-83.696556,32.833402],[-83.69659700000001,32.833269],[-83.69664200000001,32.832945],[-83.69668,32.832729],[-83.69674300000001,32.83232],[-83.696751,32.832239],[-83.696751,32.832164],[-83.696735,32.832112],[-83.69669300000001,32.832051],[-83.696409,32.831798]]},"id":"8744c0b19ffffff-13deebc9d713ea32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c365409-179df96c61b110af","8f44c0a2c3700ae-1795fd87ffe3a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7417345,32.9029187],[-83.74341700000001,32.902925]]},"id":"8944c0a2c37ffff-1797fb7a2081c5ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dd9584c-1797f563ed2e29c0","8f44c0a2c365409-179df96c61b110af"]},"geometry":{"type":"LineString","coordinates":[[-83.74341700000001,32.902925],[-83.744544,32.902945],[-83.745069,32.902949]]},"id":"8744c0a2cffffff-1795f7682a4f3d81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64944100000001,32.800378]},"id":"8f44c0b1e70c8c9-17bededb6d6378fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e70c8c9-17bededb6d6378fd","8f44c0b1e756762-17f7deeba1e51eb2"]},"geometry":{"type":"LineString","coordinates":[[-83.649415,32.80172],[-83.64944100000001,32.800378]]},"id":"8844c0b1e7fffff-17dffee38333af94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649462,32.799306]},"id":"8f44c0b1e723a41-139edece46155aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e70c8c9-17bededb6d6378fd","8f44c0b1e723a41-139edece46155aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.64944100000001,32.800378],[-83.649462,32.799306]]},"id":"8944c0b1e73ffff-13dfded4d894942c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64948700000001,32.797952]},"id":"8f44c0b1e08a091-17d6debea5fc5355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e08a091-17d6debea5fc5355","8f44c0b1e723a41-139edece46155aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.649462,32.799306],[-83.64948700000001,32.797952]]},"id":"8744c0b1effffff-17f7fec6779ea143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64950900000001,32.797068]},"id":"8f44c0b1e083860-1797deb0e99e96bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e08a091-17d6debea5fc5355","8f44c0b1e083860-1797deb0e99e96bb"]},"geometry":{"type":"LineString","coordinates":[[-83.64948700000001,32.797952],[-83.64950900000001,32.797068]]},"id":"8944c0b1e0bffff-17bfdeb7cfa7b8be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649539,32.795844]},"id":"8f44c0b1e0a2425-139ede9e20bc9f3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0a2425-139ede9e20bc9f3a","8f44c0b1e083860-1797deb0e99e96bb"]},"geometry":{"type":"LineString","coordinates":[[-83.64950900000001,32.797068],[-83.649539,32.795844]]},"id":"8944c0b1e0bffff-139fdea78b542615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64954,32.795628]},"id":"8f44c0b1e0b5aee-1397de9d8084c9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0a2425-139ede9e20bc9f3a","8f44c0b1e0b5aee-1397de9d8084c9ba"]},"geometry":{"type":"LineString","coordinates":[[-83.649539,32.795844],[-83.64954,32.795628]]},"id":"8a44c0b1e0a7fff-13d7de9dd99fa77f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64956400000001,32.794232]},"id":"8f44c0b1e19c553-17bfde8e83518258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0b5aee-1397de9d8084c9ba","8f44c0b1e19c553-17bfde8e83518258"]},"geometry":{"type":"LineString","coordinates":[[-83.64954,32.795628],[-83.64956400000001,32.794232]]},"id":"8844c0b1e1fffff-17dfde9601ff106c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e1b311e-13b6fe80290059a4","8f44c0b1e19c553-17bfde8e83518258"]},"geometry":{"type":"LineString","coordinates":[[-83.64956400000001,32.794232],[-83.64958700000001,32.793019]]},"id":"8944c0b1e1bffff-13bffe8755fbf3cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649443,32.791703000000005]},"id":"8f44c0b1ece9d55-17fefeda25d85dd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e1b311e-13b6fe80290059a4","8f44c0b1ece9d55-17fefeda25d85dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.64958700000001,32.793019],[-83.649595,32.792264],[-83.649603,32.791891],[-83.6496,32.791832],[-83.64958200000001,32.791797],[-83.64956400000001,32.791777],[-83.649522,32.791742],[-83.649443,32.791703000000005]]},"id":"8744c0b1effffff-1397fe81b82e65a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729529,32.795173000000005]},"id":"8f44c0b0c4a5130-17f73b5469084589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4a352c-13d6fd24290ff839","8f44c0b0c4a5130-17f73b5469084589"]},"geometry":{"type":"LineString","coordinates":[[-83.729529,32.795173000000005],[-83.72878700000001,32.795707]]},"id":"8a44c0b0c4a7fff-139e1c3c4659f430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728041,32.796245]},"id":"8f44c0b0c4862ca-13973ef6684a4741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4a352c-13d6fd24290ff839","8f44c0b0c4862ca-13973ef6684a4741"]},"geometry":{"type":"LineString","coordinates":[[-83.72878700000001,32.795707],[-83.728041,32.796245]]},"id":"8944c0b0c4bffff-13ff1e0d4ce2c345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72771200000001,32.796486]},"id":"8f44c0b0c48244e-13bfdfc40573447e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c48244e-13bfdfc40573447e","8f44c0b0c4862ca-13973ef6684a4741"]},"geometry":{"type":"LineString","coordinates":[[-83.728041,32.796245],[-83.72771200000001,32.796486]]},"id":"8a44c0b0c487fff-13f67f5d3f95fe7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682737,32.85796]},"id":"8f44c0a2628300a-13d78d91634be839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68141100000001,32.859039]},"id":"8f44c0a2293446e-13f7f0ce2448dd28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2293446e-13f7f0ce2448dd28","8f44c0a2628300a-13d78d91634be839"]},"geometry":{"type":"LineString","coordinates":[[-83.682737,32.85796],[-83.681578,32.85891],[-83.68141100000001,32.859039]]},"id":"8744c0a26ffffff-13978f2ebc856201"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680513,32.85976]},"id":"8f44c0a266493ac-17b692ff65ca84b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266493ac-17b692ff65ca84b5","8f44c0a2293446e-13f7f0ce2448dd28"]},"geometry":{"type":"LineString","coordinates":[[-83.68141100000001,32.859039],[-83.680513,32.85976]]},"id":"8944c0a2293ffff-17d6b1e6c0946412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66941700000001,32.803283]},"id":"8f44c0b18d46b00-13d7ee166e72b2f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d75116-1397ee08011ac651","8f44c0b18d46b00-13d7ee166e72b2f7"]},"geometry":{"type":"LineString","coordinates":[[-83.66941700000001,32.803283],[-83.66943500000001,32.802599],[-83.66944000000001,32.80239]]},"id":"8944c0b18d7ffff-13befe0f1ef4f473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66934,32.80151]},"id":"8f44c0b1c6da900-17ffee4689ed20b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d75116-1397ee08011ac651","8f44c0b1c6da900-17ffee4689ed20b2"]},"geometry":{"type":"LineString","coordinates":[[-83.66944000000001,32.80239],[-83.669444,32.802335],[-83.66944000000001,32.80225],[-83.669424,32.802224],[-83.669386,32.802191],[-83.669358,32.802157],[-83.66933200000001,32.802114],[-83.66932200000001,32.802083],[-83.66931600000001,32.80182],[-83.66932200000001,32.801659],[-83.669318,32.801566],[-83.66934,32.80151]]},"id":"8844c0b18dfffff-139eae3fadbf0a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669042,32.801066]},"id":"8f44c0b1c6d33ab-17deef00c8570431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6d33ab-17deef00c8570431","8f44c0b1c6da900-17ffee4689ed20b2"]},"geometry":{"type":"LineString","coordinates":[[-83.66934,32.80151],[-83.669196,32.801308],[-83.669042,32.801066]]},"id":"8944c0b1c6fffff-17f6eea576cf62b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668413,32.800072]},"id":"8f44c0b18d25925-13ffb089ec4d6548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d25925-13ffb089ec4d6548","8f44c0b1c6d33ab-17deef00c8570431"]},"geometry":{"type":"LineString","coordinates":[[-83.669042,32.801066],[-83.66857,32.800313],[-83.668413,32.800072]]},"id":"8844c0b1c7fffff-17b7afc45245a8ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66794700000001,32.799022]},"id":"8f44c0b1c68e510-13def1ad2fb58e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d25925-13ffb089ec4d6548","8f44c0b1c68e510-13def1ad2fb58e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.668413,32.800072],[-83.668301,32.799883],[-83.66803800000001,32.799466],[-83.66801500000001,32.79941],[-83.667967,32.799225],[-83.66794700000001,32.799022]]},"id":"8a44c0b1c68ffff-13bff13a207bdff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66994100000001,32.796808]},"id":"8f44c0b1c789a5d-13f7acceeec99b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c789a5d-13f7acceeec99b7a","8f44c0b1c68e510-13def1ad2fb58e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.66794700000001,32.799022],[-83.66793200000001,32.7986],[-83.667938,32.798533],[-83.66795300000001,32.798468],[-83.66800500000001,32.798371],[-83.668041,32.798323],[-83.66932100000001,32.796975],[-83.66938900000001,32.796923],[-83.66945000000001,32.796884],[-83.66952400000001,32.79685],[-83.66961400000001,32.796819],[-83.66971500000001,32.796807],[-83.66994100000001,32.796808]]},"id":"8844c0b1c7fffff-17bebfd0c78fdf42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c789a5d-13f7acceeec99b7a","8f44c0b1c631189-1396ea3860bc9264"]},"geometry":{"type":"LineString","coordinates":[[-83.66994100000001,32.796808],[-83.671001,32.796827]]},"id":"8944c0b1c63ffff-13fefb83a1fb7e58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67202400000001,32.796839]},"id":"8f44c0b1c6202d6-139ee7b9082e389e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6202d6-139ee7b9082e389e","8f44c0b1c631189-1396ea3860bc9264"]},"geometry":{"type":"LineString","coordinates":[[-83.671001,32.796827],[-83.67202400000001,32.796839]]},"id":"8944c0b1c63ffff-1396a8f8b422e100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c621862-139ea689e7175366","8f44c0b1c6202d6-139ee7b9082e389e"]},"geometry":{"type":"LineString","coordinates":[[-83.67202400000001,32.796839],[-83.672509,32.796849]]},"id":"8a44c0b1c627fff-139fa7217ebba4cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c621862-139ea689e7175366","8f44c0b1c752a2c-1397a53aea668514"]},"geometry":{"type":"LineString","coordinates":[[-83.672509,32.796849],[-83.673045,32.79686]]},"id":"8844c0b1c7fffff-1396b5e26b7299dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673355,32.796866]},"id":"8f44c0b1c75038c-139fe47925aa7725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c75038c-139fe47925aa7725","8f44c0b1c752a2c-1397a53aea668514"]},"geometry":{"type":"LineString","coordinates":[[-83.673045,32.79686],[-83.673355,32.796866]]},"id":"8a44c0b1c757fff-1397e4da0a4ea294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76781600000001,32.866895]},"id":"8f44c0b508d5340-1795fddb09e324bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b508d5340-1795fddb09e324bd","8f44c0b50111726-13bde6eec5bc87b0"]},"geometry":{"type":"LineString","coordinates":[[-83.76781600000001,32.866895],[-83.767826,32.866978],[-83.767818,32.867077],[-83.76781100000001,32.867111],[-83.767767,32.867221],[-83.767719,32.867295],[-83.767691,32.867328],[-83.767633,32.867379],[-83.767537,32.867444],[-83.76741100000001,32.8675],[-83.767227,32.867561],[-83.767064,32.867606],[-83.766564,32.867776],[-83.766239,32.86788],[-83.765989,32.867949],[-83.765765,32.867993000000006],[-83.765544,32.868018],[-83.76522,32.868017],[-83.764098,32.867989]]},"id":"8744c0b50ffffff-13bff1f278f93a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76176500000001,32.868383]},"id":"8f44c0b50180132-13b7eca0e4b64dde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50180132-13b7eca0e4b64dde","8f44c0b50111726-13bde6eec5bc87b0"]},"geometry":{"type":"LineString","coordinates":[[-83.764098,32.867989],[-83.763738,32.867986],[-83.763451,32.867994],[-83.76324100000001,32.868009],[-83.762985,32.86804],[-83.762738,32.868084],[-83.762544,32.868129],[-83.762321,32.868192],[-83.76201900000001,32.868287],[-83.76176500000001,32.868383]]},"id":"8844c0b501fffff-1397e9d0fd2cf1c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660185,32.821396]},"id":"8f44c0b1bd32908-17fec4a06d7e474d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd32908-17fec4a06d7e474d","8f44c0b1bd350ec-179fc290e76adef5"]},"geometry":{"type":"LineString","coordinates":[[-83.660185,32.821396],[-83.661029,32.821416]]},"id":"8a44c0b1bd37fff-1796c398a6baf16b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661838,32.821426]},"id":"8f44c0b1bd20d4e-179fc0974d3151b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd20d4e-179fc0974d3151b1","8f44c0b1bd350ec-179fc290e76adef5"]},"geometry":{"type":"LineString","coordinates":[[-83.661029,32.821416],[-83.661838,32.821426]]},"id":"8944c0b1bd3ffff-179ee1941c7ceb25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662705,32.821432]},"id":"8f44c0b186d6732-1797be7969c01212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd20d4e-179fc0974d3151b1","8f44c0b186d6732-1797be7969c01212"]},"geometry":{"type":"LineString","coordinates":[[-83.661838,32.821426],[-83.662705,32.821432]]},"id":"8844c0b187fffff-1797bf8851622d90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74529100000001,32.830644]},"id":"8f44c0b0950d133-1795f4d92e1ce2ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745315,32.827871]},"id":"8f44c0b09c8ab85-17dff4ca285190cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0950d133-1795f4d92e1ce2ab","8f44c0b09c8ab85-17dff4ca285190cd"]},"geometry":{"type":"LineString","coordinates":[[-83.74529100000001,32.830644],[-83.745315,32.827871]]},"id":"8744c0b09ffffff-13bdf4d1a4fd8764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09c8e281-17d7f4cb60a24451","8f44c0b09c8ab85-17dff4ca285190cd"]},"geometry":{"type":"LineString","coordinates":[[-83.745315,32.827871],[-83.74531300000001,32.827652]]},"id":"8a44c0b09c8ffff-1797f4cac85121bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74533770000001,32.825377100000004]},"id":"8f44c0b09ca6193-13b5f4bbf5c7e3ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09c8e281-17d7f4cb60a24451","8f44c0b09ca6193-13b5f4bbf5c7e3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.74531300000001,32.827652],[-83.74533770000001,32.825377100000004]]},"id":"8944c0b09cbffff-13fff4c3bffb95b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08a53354-17ddf47e73e08df0","8f44c0b09ca6193-13b5f4bbf5c7e3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.74533770000001,32.825377100000004],[-83.74534580000001,32.8246315],[-83.74535300000001,32.823969000000005],[-83.74536400000001,32.823573700000004],[-83.745418,32.82163],[-83.7454361,32.8211099]]},"id":"8644c0b0fffffff-13fff4a338d6a060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08a53354-17ddf47e73e08df0","8f44c0b08a28cc0-13b7f476ccb04765"]},"geometry":{"type":"LineString","coordinates":[[-83.7454361,32.8211099],[-83.745439,32.820563],[-83.74544800000001,32.819418],[-83.7454484,32.8183908]]},"id":"8844c0b08bfffff-13fdf4797757de27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74327500000001,32.861552]},"id":"8f44c0b5662d42d-1397f9c52ff709a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5662d42d-1397f9c52ff709a6","8f44c0b56628142-13ddfa6fb6494402"]},"geometry":{"type":"LineString","coordinates":[[-83.74327500000001,32.861552],[-83.743161,32.861599000000005],[-83.7430021,32.861658000000006]]},"id":"8a44c0b5662ffff-13b7fa1a21af136c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b566287a6-13fdfaf12371649c","8f44c0b56628142-13ddfa6fb6494402"]},"geometry":{"type":"LineString","coordinates":[[-83.7430021,32.861658000000006],[-83.742795,32.861735]]},"id":"8b44c0b56628fff-13f5fab06ea17a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75162900000001,32.907491]},"id":"8f44c0a2dc6ecf5-13bde55fe27939a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dd6a91c-13bde3128f82f1d2","8f44c0a2dc6ecf5-13bde55fe27939a4"]},"geometry":{"type":"LineString","coordinates":[[-83.75162900000001,32.907491],[-83.75159400000001,32.906972],[-83.751593,32.906816],[-83.751615,32.90666],[-83.75167,32.906456],[-83.751726,32.906298],[-83.7518756,32.9059173],[-83.751908,32.905835],[-83.75202320000001,32.905567600000005],[-83.7520757,32.9054458],[-83.752179,32.905206],[-83.75223100000001,32.905121],[-83.752308,32.90502],[-83.75230970000001,32.9050184],[-83.752391,32.904942000000005],[-83.752521,32.904851],[-83.752572,32.904822]]},"id":"8844c0a2ddfffff-17bdf4bb00176de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75373400000001,32.904998]},"id":"8f44c0a2d99ac70-1397e03c432d28ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dd6a91c-13bde3128f82f1d2","8f44c0a2d99ac70-1397e03c432d28ae"]},"geometry":{"type":"LineString","coordinates":[[-83.752572,32.904822],[-83.752627,32.904801],[-83.75272500000001,32.904783],[-83.752851,32.904773],[-83.752959,32.904776000000005],[-83.75308700000001,32.904791],[-83.75325000000001,32.904828],[-83.753352,32.904857],[-83.75373400000001,32.904998]]},"id":"8744c0a2dffffff-13b7e1a399ebb04f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559021,32.86731]},"id":"8f44c0b8bc10036-1797fb9beba35a78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bcad102-139ffc21aa677c25","8f44c0b8bc10036-1797fb9beba35a78"]},"geometry":{"type":"LineString","coordinates":[[-83.559021,32.86731],[-83.558807,32.868143]]},"id":"8944c0b8bc3ffff-139fbbdec477bde3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557974,32.869262]},"id":"8f44c0b8bc8d71e-17dffe2a4c466cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc8d71e-17dffe2a4c466cb4","8f44c0b8bcad102-139ffc21aa677c25"]},"geometry":{"type":"LineString","coordinates":[[-83.558807,32.868143],[-83.558762,32.868346],[-83.55869,32.868538],[-83.558588,32.868706],[-83.55852,32.868795],[-83.55842200000001,32.868899],[-83.558322,32.868988],[-83.557974,32.869262]]},"id":"8844c0b8bdfffff-139fbcf22ad8cc6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6532213,32.831030600000005]},"id":"8f44c0b1b588c1c-1796f5a0b1c2e51b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65319810000001,32.830884000000005]},"id":"8f44c0b1b58ea75-17b6d5af345af631"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b588c1c-1796f5a0b1c2e51b","8f44c0b1b58ea75-17b6d5af345af631"]},"geometry":{"type":"LineString","coordinates":[[-83.6532213,32.831030600000005],[-83.65319810000001,32.830884000000005]]},"id":"8a44c0b1b58ffff-17d6d5a7f87ffa4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531255,32.830426200000005]},"id":"8f44c0b1b58115a-179ef5dc94a1e66c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b58115a-179ef5dc94a1e66c","8f44c0b1b58ea75-17b6d5af345af631"]},"geometry":{"type":"LineString","coordinates":[[-83.65319810000001,32.830884000000005],[-83.6531255,32.830426200000005]]},"id":"8944c0b1b5bffff-1797f5c5e7f82e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b8d25a-13bee04aee34f1c2","8f44c0a34a161a6-139fe1408298666a"]},"geometry":{"type":"LineString","coordinates":[[-83.64846,32.838648],[-83.648472,32.838623000000005],[-83.648853,32.838081]]},"id":"8844c0a34bfffff-13ffe0c6e23e9ba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649887,32.836759]},"id":"8f44c0a34b1e199-17fefdc4a4bb391a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b1e199-17fefdc4a4bb391a","8f44c0a34b8d25a-13bee04aee34f1c2"]},"geometry":{"type":"LineString","coordinates":[[-83.648853,32.838081],[-83.64922700000001,32.837578],[-83.6496,32.837111],[-83.649887,32.836759]]},"id":"8844c0a34bfffff-179edf0bfe4c2d6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650864,32.83558]},"id":"8f44c0a34b312e2-139fdb620dfd110d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b312e2-139fdb620dfd110d","8f44c0a34b1e199-17fefdc4a4bb391a"]},"geometry":{"type":"LineString","coordinates":[[-83.649887,32.836759],[-83.650864,32.83558]]},"id":"8944c0a34b3ffff-139ffc935565d32b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65164700000001,32.834638000000005]},"id":"8f44c0b1b49924a-17d6d978a628ad7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b312e2-139fdb620dfd110d","8f44c0b1b49924a-17d6d978a628ad7c"]},"geometry":{"type":"LineString","coordinates":[[-83.650864,32.83558],[-83.65164700000001,32.834638000000005]]},"id":"8744c0a34ffffff-13f7fa6d5d00b587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b49924a-17d6d978a628ad7c","8f44c0b1b48a6a6-17dff9096880a9f6"]},"geometry":{"type":"LineString","coordinates":[[-83.65164700000001,32.834638000000005],[-83.651825,32.834431]]},"id":"8944c0b1b4bffff-1796d941056c981b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65314400000001,32.832755]},"id":"8f44c0b1b4ac424-13b7f5d1023568c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4ac424-13b7f5d1023568c0","8f44c0b1b48a6a6-17dff9096880a9f6"]},"geometry":{"type":"LineString","coordinates":[[-83.651825,32.834431],[-83.65284600000001,32.833196],[-83.65308900000001,32.832897],[-83.653114,32.832853],[-83.65314400000001,32.832755]]},"id":"8944c0b1b4bffff-17dfd7603cd50ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665615,32.798443]},"id":"8f44c0b1ea61011-17f6f75ea8c7f590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665901,32.798574]},"id":"8f44c0b1ea6cd1a-17d6f6abe3fa3497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea61011-17f6f75ea8c7f590","8f44c0b1ea6cd1a-17d6f6abe3fa3497"]},"geometry":{"type":"LineString","coordinates":[[-83.665615,32.798443],[-83.665901,32.798574]]},"id":"8944c0b1ea7ffff-179ff70543ca617b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66662500000001,32.798869]},"id":"8f44c0b1c69326a-13ffb4e76c3d2512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c69326a-13ffb4e76c3d2512","8f44c0b1ea6cd1a-17d6f6abe3fa3497"]},"geometry":{"type":"LineString","coordinates":[[-83.665901,32.798574],[-83.66662500000001,32.798869]]},"id":"8644c0b1fffffff-13b6f5c9a70df8f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c69326a-13ffb4e76c3d2512","8f44c0b1c68e510-13def1ad2fb58e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.66662500000001,32.798869],[-83.66706900000001,32.79901],[-83.667248,32.799056],[-83.667375,32.799054000000005],[-83.66786900000001,32.79903],[-83.66794700000001,32.799022]]},"id":"8944c0b1c6bffff-13d6b34eda897dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c68e510-13def1ad2fb58e9b","8f44c0b1c6ab05b-13bfaec24ee3f85f"]},"geometry":{"type":"LineString","coordinates":[[-83.66794700000001,32.799022],[-83.668272,32.799011],[-83.66914200000001,32.798969]]},"id":"8944c0b1c6bffff-13dff037ae5f513a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c61b523-139fec03c6e12a71","8f44c0b1c6ab05b-13bfaec24ee3f85f"]},"geometry":{"type":"LineString","coordinates":[[-83.66914200000001,32.798969],[-83.66946700000001,32.798958],[-83.67026600000001,32.798918]]},"id":"8844c0b1c7fffff-13beed62ff3c4bae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c608902-179ee7dac22d96e1","8f44c0b1c61b523-139fec03c6e12a71"]},"geometry":{"type":"LineString","coordinates":[[-83.67026600000001,32.798918],[-83.67106600000001,32.798876],[-83.67120200000001,32.798859],[-83.671531,32.798737],[-83.671873,32.798594],[-83.67191000000001,32.798574],[-83.671942,32.798535],[-83.67197,32.798487]]},"id":"8944c0b1c63ffff-13d7a9d945b45e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c62a603-17dfe7cb2da8efbc","8f44c0b1c608902-179ee7dac22d96e1"]},"geometry":{"type":"LineString","coordinates":[[-83.67197,32.798487],[-83.67198900000001,32.798425],[-83.67199500000001,32.797967]]},"id":"8944c0b1c63ffff-17fea7ce094e50df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c62a603-17dfe7cb2da8efbc","8f44c0b1c6202d6-139ee7b9082e389e"]},"geometry":{"type":"LineString","coordinates":[[-83.67199500000001,32.797967],[-83.67201,32.797694],[-83.67202400000001,32.796839]]},"id":"8944c0b1c63ffff-17fef7bf95493673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66961500000001,32.793509]},"id":"8f44c0b1c44a46c-13f7ad9aa39e5863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6202d6-139ee7b9082e389e","8f44c0b1c44a46c-13f7ad9aa39e5863"]},"geometry":{"type":"LineString","coordinates":[[-83.67202400000001,32.796839],[-83.67202800000001,32.796318],[-83.67201100000001,32.796187],[-83.67197300000001,32.796038],[-83.67191700000001,32.795885000000006],[-83.671884,32.795807],[-83.67173700000001,32.795578],[-83.67095400000001,32.794707],[-83.67046900000001,32.794174000000005],[-83.67019300000001,32.793909],[-83.669949,32.793725],[-83.66978200000001,32.793612],[-83.66961500000001,32.793509]]},"id":"8744c0b1cffffff-1797e9f85f9cd304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76619600000001,32.868983]},"id":"8f44c0b50109804-13bfe1cf8f629ccf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50109804-13bfe1cf8f629ccf","8f44c0b50036954-179fe86f2e0244f8"]},"geometry":{"type":"LineString","coordinates":[[-83.76619600000001,32.868983],[-83.76579500000001,32.869093],[-83.76562200000001,32.869131],[-83.765369,32.869171],[-83.765136,32.869177],[-83.763694,32.869163],[-83.76348300000001,32.869169]]},"id":"8844c0b501fffff-179fc51a26890321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762467,32.869421]},"id":"8f44c0b5018881c-17bdeaea22c4f1b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5018881c-17bdeaea22c4f1b1","8f44c0b50036954-179fe86f2e0244f8"]},"geometry":{"type":"LineString","coordinates":[[-83.76348300000001,32.869169],[-83.763329,32.86918],[-83.763221,32.869196],[-83.76299300000001,32.869239],[-83.76277800000001,32.8693],[-83.762634,32.869349],[-83.762467,32.869421]]},"id":"8944c0b501bffff-17ddc9b18e0da5e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b500a4558-17d7ccf228508f62","8f44c0b5018881c-17bdeaea22c4f1b1"]},"geometry":{"type":"LineString","coordinates":[[-83.762467,32.869421],[-83.762304,32.869508],[-83.762026,32.869686],[-83.76191700000001,32.869768],[-83.761843,32.869835],[-83.761635,32.870078]]},"id":"8844c0b501fffff-17f5fbfeaa58953a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76063500000001,32.870806]},"id":"8f44c0b500b172c-139dcf632f6d37fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b500a4558-17d7ccf228508f62","8f44c0b500b172c-139dcf632f6d37fb"]},"geometry":{"type":"LineString","coordinates":[[-83.761635,32.870078],[-83.761318,32.870403],[-83.76120900000001,32.870495000000005],[-83.761148,32.870538],[-83.76091100000001,32.870679],[-83.76063500000001,32.870806]]},"id":"8944c0b500bffff-17d5ee17e9d0f70f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660307,32.815438]},"id":"8f44c0b184ca445-13f6c45428d8f836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184ca445-13f6c45428d8f836","8f44c0b184c9d8b-13ffe24ae736f463"]},"geometry":{"type":"LineString","coordinates":[[-83.660307,32.815438],[-83.66072700000001,32.815455],[-83.661141,32.815455]]},"id":"8a44c0b184cffff-13fef34f96e8eebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184c9960-13fef186c1c926e8","8f44c0b184c9d8b-13ffe24ae736f463"]},"geometry":{"type":"LineString","coordinates":[[-83.661141,32.815455],[-83.6614548,32.8154539]]},"id":"8b44c0b184c9fff-13ffd1e8d694f4d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661973,32.815452]},"id":"8f44c0b187b2b24-13ffc042efd257aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184c9960-13fef186c1c926e8","8f44c0b187b2b24-13ffc042efd257aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6614548,32.8154539],[-83.661973,32.815452]]},"id":"8844c0b185fffff-13fee0e4d437edee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662829,32.815458]},"id":"8f44c0b187b5353-13fffe2be710d460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b187b2b24-13ffc042efd257aa","8f44c0b187b5353-13fffe2be710d460"]},"geometry":{"type":"LineString","coordinates":[[-83.661973,32.815452],[-83.662829,32.815458]]},"id":"8a44c0b187b7fff-13ffff376fe526a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642865,32.79139]},"id":"8f44c0b132490d9-17beeee96980f47f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644346,32.790723]},"id":"8f44c0b1ec9b6e4-179feb4bc36c7ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b132490d9-17beeee96980f47f","8f44c0b1ec9b6e4-179feb4bc36c7ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.642865,32.79139],[-83.64295510000001,32.791378900000005],[-83.644346,32.790723]]},"id":"8944c0b1e53ffff-17f6fd183ceb0d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64579400000001,32.790058]},"id":"8f44c0b1ec88c30-13fee7c2cd9968ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec9b6e4-179feb4bc36c7ba2","8f44c0b1ec88c30-13fee7c2cd9968ba"]},"geometry":{"type":"LineString","coordinates":[[-83.644346,32.790723],[-83.64579400000001,32.790058]]},"id":"8744c0b1effffff-13def987468d6b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648714,32.788198]},"id":"8f44c0b1ec009a0-17ffe0a1c5cf8c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec009a0-17ffe0a1c5cf8c05","8f44c0b1ec88c30-13fee7c2cd9968ba"]},"geometry":{"type":"LineString","coordinates":[[-83.64579400000001,32.790058],[-83.646747,32.789627],[-83.64696400000001,32.789523],[-83.647085,32.789448],[-83.647304,32.789333],[-83.64752100000001,32.7892],[-83.647858,32.788978],[-83.64798300000001,32.78889],[-83.64818100000001,32.78873],[-83.64839500000001,32.788542],[-83.64853600000001,32.788401],[-83.648623,32.788306],[-83.648714,32.788198]]},"id":"8844c0b1edfffff-13fff4033fce73a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec009a0-17ffe0a1c5cf8c05","8f44c0b1ed205b4-17f6fd93e65c5f28"]},"geometry":{"type":"LineString","coordinates":[[-83.648714,32.788198],[-83.648809,32.788103],[-83.64883800000001,32.78808],[-83.64896800000001,32.787934],[-83.649116,32.78774],[-83.649248,32.787545],[-83.649392,32.78729],[-83.64952000000001,32.787044],[-83.649614,32.786834],[-83.649696,32.786622],[-83.649821,32.786243],[-83.649917,32.785891],[-83.649994,32.78542],[-83.65002000000001,32.785136],[-83.650028,32.784726],[-83.649997,32.784498],[-83.64996500000001,32.784315]]},"id":"8844c0b1edfffff-13fffe60b620e4d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64976800000001,32.783346]},"id":"8f44c0b11698aa1-1397de0f058144a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11698aa1-1397de0f058144a5","8f44c0b1ed205b4-17f6fd93e65c5f28"]},"geometry":{"type":"LineString","coordinates":[[-83.64996500000001,32.784315],[-83.649804,32.783503],[-83.64976800000001,32.783346]]},"id":"8644c0b17ffffff-13d7ddd032bac269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11698aa1-1397de0f058144a5","8f44c0b116b3610-17fffeb6c3fd9c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.64976800000001,32.783346],[-83.64971600000001,32.783042],[-83.649606,32.782519],[-83.649557,32.782266],[-83.64951400000001,32.781978],[-83.6494996,32.7818419]]},"id":"8944c0b116bffff-13d7fe67aeb96c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116b3610-17fffeb6c3fd9c7d","8f44c0b116b378d-17dffeb8705ac0d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6494996,32.7818419],[-83.6494969,32.7818167]]},"id":"8c44c0b116b37ff-17f7deb7a4aaaca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64947790000001,32.7815584]},"id":"8f44c0b116b3c85-17bedec45702e2a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116b3c85-17bedec45702e2a6","8f44c0b116b378d-17dffeb8705ac0d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6494969,32.7818167],[-83.649494,32.781789],[-83.64947790000001,32.7815584]]},"id":"8b44c0b116b3fff-179edebeac2ce1ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64946060000001,32.7811619]},"id":"8f44c0b116b62c0-17d6fecf2bd06c11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116b3c85-17bedec45702e2a6","8f44c0b116b62c0-17d6fecf2bd06c11"]},"geometry":{"type":"LineString","coordinates":[[-83.64947790000001,32.7815584],[-83.649476,32.781532],[-83.64946060000001,32.7811619]]},"id":"8a44c0b116b7fff-17befec9f86bcdd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116b688d-17ffded7545469d3","8f44c0b116b62c0-17d6fecf2bd06c11"]},"geometry":{"type":"LineString","coordinates":[[-83.64946060000001,32.7811619],[-83.64944750000001,32.7808445]]},"id":"8b44c0b116b6fff-17dfded3409937f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116b688d-17ffded7545469d3","8f44c0b13b68b48-13fedee7e66ca498"]},"geometry":{"type":"LineString","coordinates":[[-83.64944750000001,32.7808445],[-83.649421,32.780206]]},"id":"8944c0b13b7ffff-13b6dedf96f4492f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2acd68-13f7e4f8c19723cb","8f44c0b8e2a08ce-1397c689672d1c41"]},"geometry":{"type":"LineString","coordinates":[[-83.555186,32.845733],[-83.554545,32.845186000000005]]},"id":"8944c0b8e2bffff-13bff5c11408d5aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e39bb99-13b7e831c5ce878a","8f44c0b8e2a08ce-1397c689672d1c41"]},"geometry":{"type":"LineString","coordinates":[[-83.554545,32.845186000000005],[-83.554376,32.84503],[-83.553866,32.844597]]},"id":"8844c0b8e3fffff-13d7c75c1326aabd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553273,32.844084]},"id":"8f44c0b8e39adab-17f7c9a467f7b61b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e39bb99-13b7e831c5ce878a","8f44c0b8e39adab-17f7c9a467f7b61b"]},"geometry":{"type":"LineString","coordinates":[[-83.553866,32.844597],[-83.553273,32.844084]]},"id":"8a44c0b8e39ffff-1797d8eb1c76862e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.552408,32.843345]},"id":"8f44c0b8e761a9a-1797ebc10c1df58c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e39adab-17f7c9a467f7b61b","8f44c0b8e761a9a-1797ebc10c1df58c"]},"geometry":{"type":"LineString","coordinates":[[-83.553273,32.844084],[-83.552408,32.843345]]},"id":"8744c0b8effffff-17ffdab2b9dc7782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e298248-1797c9ece8def13f","8f44c0b8e65d790-13bff1be21e1236f"]},"geometry":{"type":"LineString","coordinates":[[-83.54995500000001,32.847915],[-83.550182,32.848103],[-83.55031100000001,32.848222],[-83.550376,32.848264],[-83.55043900000001,32.848295],[-83.550511,32.848315],[-83.55058000000001,32.848325],[-83.550645,32.848323],[-83.550719,32.848308],[-83.55078900000001,32.848286],[-83.550872,32.848236],[-83.551367,32.847827],[-83.551456,32.847752],[-83.551564,32.847669],[-83.55163,32.84763],[-83.551698,32.8476],[-83.55184200000001,32.847562],[-83.55193600000001,32.847551],[-83.552014,32.847552],[-83.552575,32.84761],[-83.55265800000001,32.847614],[-83.552757,32.847606],[-83.552858,32.847582],[-83.55296,32.847547],[-83.553137,32.847434],[-83.553157,32.847414]]},"id":"8744c0b8effffff-1397fdf6ca1ea3a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e298248-1797c9ece8def13f","8f44c0b8e299d88-17dfe9b54260fd1b"]},"geometry":{"type":"LineString","coordinates":[[-83.553157,32.847414],[-83.553211,32.8473648],[-83.553246,32.847333]]},"id":"8b44c0b8e299fff-17fff9d113dec985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e299d88-17dfe9b54260fd1b","8f44c0b8e28ecad-179fe83b2c38ead8"]},"geometry":{"type":"LineString","coordinates":[[-83.553246,32.847333],[-83.55385100000001,32.846839]]},"id":"8944c0b8e2bffff-17b7c8f8398830a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2aad62-17bfe681e7131d5f","8f44c0b8e28ecad-179fe83b2c38ead8"]},"geometry":{"type":"LineString","coordinates":[[-83.55385100000001,32.846839],[-83.554557,32.846251]]},"id":"8944c0b8e2bffff-17f7e75e8d09e7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2acd68-13f7e4f8c19723cb","8f44c0b8e2aad62-17bfe681e7131d5f"]},"geometry":{"type":"LineString","coordinates":[[-83.554557,32.846251],[-83.555186,32.845733]]},"id":"8a44c0b8e2affff-139fc5bd561df272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700829,32.790612]},"id":"8f44c0b03395869-17d6e165e1017f5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03395869-17d6e165e1017f5d","8f44c0b033b468e-13d6e15b4b204c77"]},"geometry":{"type":"LineString","coordinates":[[-83.700829,32.790612],[-83.700846,32.789566]]},"id":"8944c0b033bffff-139fe16093fc5cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030ed336-17be6156e387df5f","8f44c0b033b468e-13d6e15b4b204c77"]},"geometry":{"type":"LineString","coordinates":[[-83.700846,32.789566],[-83.70085300000001,32.788701]]},"id":"8844c0b031fffff-13be71591bf2ddb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7017038,32.787839000000005]},"id":"8f44c0b03042ca2-179f7f43246f7fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030ed336-17be6156e387df5f","8f44c0b03042ca2-179f7f43246f7fed"]},"geometry":{"type":"LineString","coordinates":[[-83.70085300000001,32.788701],[-83.70086500000001,32.788058],[-83.700874,32.787987],[-83.70089200000001,32.787934],[-83.700963,32.787874],[-83.70107300000001,32.787838],[-83.701374,32.787836],[-83.7017038,32.787839000000005]]},"id":"8944c0b0307ffff-17b6e0c71becece4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68783400000001,32.821092]},"id":"8f44c0b19d4bb26-17be811fc9ee6d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687825,32.819856]},"id":"8f44c0b19d6a42b-13be81256f90ac3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d6a42b-13be81256f90ac3b","8f44c0b19d4bb26-17be811fc9ee6d9d"]},"geometry":{"type":"LineString","coordinates":[[-83.68783400000001,32.821092],[-83.68781100000001,32.820974],[-83.687825,32.819856]]},"id":"8944c0b19d7ffff-17bee1298948a82a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68787400000001,32.818331]},"id":"8f44c0b19d647ad-1396e106cdb6ca64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d6a42b-13be81256f90ac3b","8f44c0b19d647ad-1396e106cdb6ca64"]},"geometry":{"type":"LineString","coordinates":[[-83.687825,32.819856],[-83.68787400000001,32.818331]]},"id":"8944c0b19d7ffff-13dff1161d8891db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d647ad-1396e106cdb6ca64","8f44c0b1d6c312b-17d6e0ebeeff3f35"]},"geometry":{"type":"LineString","coordinates":[[-83.68787400000001,32.818331],[-83.687917,32.817003]]},"id":"8744c0b19ffffff-17f7e0f954affb61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d6c312b-17d6e0ebeeff3f35","8f44c0b1d6c4522-139f90d6cffeb9cc"]},"geometry":{"type":"LineString","coordinates":[[-83.687917,32.817003],[-83.687934,32.816509],[-83.68795080000001,32.816091300000004]]},"id":"8a44c0b1d6c7fff-13b7f0e1cf62abc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595872,32.763097]},"id":"8f44c0ba18801b1-13b7e1a4008acf26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56797200000001,32.781323]},"id":"8f44c0ba375a903-17b7e5c18f7e4142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba375a903-17b7e5c18f7e4142","8f44c0ba18801b1-13b7e1a4008acf26"]},"geometry":{"type":"LineString","coordinates":[[-83.595872,32.763097],[-83.595887,32.763711],[-83.595883,32.763793],[-83.59579500000001,32.764038],[-83.59565500000001,32.764311],[-83.595374,32.764802],[-83.595033,32.765293],[-83.594823,32.765554],[-83.594739,32.765636],[-83.594379,32.765819],[-83.593761,32.76606],[-83.593681,32.766087],[-83.592411,32.766514],[-83.592206,32.766606],[-83.591958,32.766758],[-83.59172000000001,32.766924],[-83.59159600000001,32.767131],[-83.59155000000001,32.767353],[-83.591541,32.767654],[-83.59155200000001,32.767735],[-83.591549,32.768197],[-83.59151,32.768374],[-83.59142200000001,32.768631],[-83.591299,32.768877],[-83.591092,32.769226],[-83.590867,32.769561],[-83.59060000000001,32.769917],[-83.59039700000001,32.770092000000005],[-83.59036300000001,32.770121],[-83.589448,32.770609],[-83.58900700000001,32.770786],[-83.588615,32.770941],[-83.58807900000001,32.771175],[-83.587998,32.771212000000006],[-83.58763900000001,32.771425],[-83.587165,32.77183],[-83.58686700000001,32.772095],[-83.58660900000001,32.772436],[-83.58630600000001,32.772736],[-83.58611900000001,32.772886],[-83.58569,32.773049],[-83.58525200000001,32.773242],[-83.584508,32.773615],[-83.58411600000001,32.773881],[-83.583905,32.774091],[-83.58333800000001,32.774602],[-83.58302400000001,32.77485],[-83.582836,32.774963],[-83.58265700000001,32.775078],[-83.58238300000001,32.775222],[-83.582272,32.7753],[-83.582026,32.775472],[-83.58176300000001,32.775689],[-83.581698,32.775751],[-83.581552,32.775893],[-83.58123,32.776162],[-83.57947200000001,32.777535],[-83.578945,32.777934],[-83.57886,32.778008],[-83.578636,32.778351],[-83.57851000000001,32.778508],[-83.578235,32.778751],[-83.57749600000001,32.779257],[-83.576672,32.779808],[-83.57628700000001,32.78002],[-83.576013,32.780122],[-83.57574500000001,32.780192],[-83.574995,32.780378],[-83.57446900000001,32.780498],[-83.574261,32.780524],[-83.57379,32.780566],[-83.573473,32.780642],[-83.57298300000001,32.780766],[-83.57259900000001,32.78085],[-83.572264,32.780901],[-83.571154,32.781047],[-83.569861,32.781205],[-83.569495,32.781239],[-83.568313,32.781298],[-83.56797200000001,32.781323]]},"id":"8644c0ba7ffffff-13d7c04cf78a075f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56701600000001,32.781364]},"id":"8f44c0ba36280c1-17d7a81706a3e2b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba375a903-17b7e5c18f7e4142","8f44c0ba36280c1-17d7a81706a3e2b3"]},"geometry":{"type":"LineString","coordinates":[[-83.56797200000001,32.781323],[-83.56701600000001,32.781364]]},"id":"8844c0ba37fffff-17b7b6ec4f411e46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba3601528-17fffac5a7c344c0","8f44c0ba36280c1-17d7a81706a3e2b3"]},"geometry":{"type":"LineString","coordinates":[[-83.56701600000001,32.781364],[-83.566142,32.781405],[-83.5659174,32.781430300000004]]},"id":"8944c0ba363ffff-17d7b96ea9d08d23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71729500000001,32.894074]},"id":"8f44c0a2e8248cc-13fe7932a886adda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c5927b0-139e6fe2e3327032","8f44c0a2e8248cc-13fe7932a886adda"]},"geometry":{"type":"LineString","coordinates":[[-83.71729500000001,32.894074],[-83.71973200000001,32.894098],[-83.721109,32.894119]]},"id":"8744c0a2effffff-13fef48acad1b2e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72411100000001,32.894022]},"id":"8f44c0a2c5ae219-13dfe88eafff836a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c5927b0-139e6fe2e3327032","8f44c0a2c5ae219-13dfe88eafff836a"]},"geometry":{"type":"LineString","coordinates":[[-83.721109,32.894119],[-83.72154300000001,32.894118],[-83.721942,32.894103],[-83.72308600000001,32.894029],[-83.72411100000001,32.894022]]},"id":"8844c0a2c5fffff-13f73c38eefe45dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70965600000001,32.827412]},"id":"8f44c0b0a0db6d5-17becbd9032f33a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a7644ae-17b77a0c293da235","8f44c0b0a0db6d5-17becbd9032f33a0"]},"geometry":{"type":"LineString","coordinates":[[-83.70965600000001,32.827412],[-83.7103934,32.8274263]]},"id":"8944c0b0a77ffff-17b74af296ab56b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71128900000001,32.827439000000005]},"id":"8f44c0b0a0cbacb-17bf67dc60b7cca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a7644ae-17b77a0c293da235","8f44c0b0a0cbacb-17bf67dc60b7cca6"]},"geometry":{"type":"LineString","coordinates":[[-83.7103934,32.8274263],[-83.710842,32.827435],[-83.71128900000001,32.827439000000005]]},"id":"8744c0b0affffff-17be68f444e75637"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61778500000001,32.853824]},"id":"8f44c0a32922904-17bf2c24611afa74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616837,32.853915]},"id":"8f44c0a32930395-17f7ee74e716f22c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32922904-17bf2c24611afa74","8f44c0a32930395-17f7ee74e716f22c"]},"geometry":{"type":"LineString","coordinates":[[-83.61778500000001,32.853824],[-83.617485,32.853895],[-83.61732500000001,32.853914],[-83.616837,32.853915]]},"id":"8944c0a3293ffff-17d77d4adfaf8fbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61600100000001,32.853915]},"id":"8f44c0a36649872-17f7f07f6ee96770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32930395-17f7ee74e716f22c","8f44c0a36649872-17f7f07f6ee96770"]},"geometry":{"type":"LineString","coordinates":[[-83.616837,32.853915],[-83.61600100000001,32.853915]]},"id":"8944c0a3293ffff-17f7ef7a205f6818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3664989c-17f730c9c59504b0","8f44c0a36649872-17f7f07f6ee96770"]},"geometry":{"type":"LineString","coordinates":[[-83.61600100000001,32.853915],[-83.615882,32.853917]]},"id":"8c44c0a366499ff-17f7b0a497564e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3664989c-17f730c9c59504b0","8f44c0a3664a300-17df32a1aac95d79"]},"geometry":{"type":"LineString","coordinates":[[-83.615882,32.853917],[-83.615127,32.853901]]},"id":"8a44c0a3664ffff-17df31b5b18957bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143007,32.8539029]},"id":"8f44c0a366594a3-17df74a613476bf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3664a300-17df32a1aac95d79","8f44c0a366594a3-17df74a613476bf9"]},"geometry":{"type":"LineString","coordinates":[[-83.615127,32.853901],[-83.6143007,32.8539029]]},"id":"8944c0a3667ffff-17dff3a3ed26c274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3665b8f0-17f735094e9a5b44","8f44c0a366594a3-17df74a613476bf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6143007,32.8539029],[-83.614142,32.853917]]},"id":"8a44c0a3665ffff-17dff4d7a32a1f14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3665a2c9-17ffb5df8494f883","8f44c0a3665b8f0-17f735094e9a5b44"]},"geometry":{"type":"LineString","coordinates":[[-83.614142,32.853917],[-83.61393960000001,32.8539315],[-83.6137992,32.8539368]]},"id":"8b44c0a3665bfff-17ff357457d7c1eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3665a2c9-17ffb5df8494f883","8f44c0a366e9342-17ffb6edc7a48aed"]},"geometry":{"type":"LineString","coordinates":[[-83.6137992,32.8539368],[-83.61336680000001,32.8539371]]},"id":"8844c0a367fffff-17ffb666ab661e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e92b6-17ff7749387f17e9","8f44c0a366e9342-17ffb6edc7a48aed"]},"geometry":{"type":"LineString","coordinates":[[-83.61336680000001,32.8539371],[-83.61322050000001,32.853938]]},"id":"8c44c0a366e93ff-17ff371b8161da16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61256800000001,32.8539358]},"id":"8f44c0a366eb4e1-17fff8e10536261e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e92b6-17ff7749387f17e9","8f44c0a366eb4e1-17fff8e10536261e"]},"geometry":{"type":"LineString","coordinates":[[-83.61322050000001,32.853938],[-83.61256800000001,32.8539358]]},"id":"8a44c0a366effff-17ffb81515d31eab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6117471,32.8539332]},"id":"8f44c0a366ced54-17ff7ae21c96ea57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366ced54-17ff7ae21c96ea57","8f44c0a366eb4e1-17fff8e10536261e"]},"geometry":{"type":"LineString","coordinates":[[-83.61256800000001,32.8539358],[-83.6117471,32.8539332]]},"id":"8944c0a366fffff-17ff39e184f3fa70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61089650000001,32.853928]},"id":"8f44c0a366dc088-17ff3cf5b10bf2b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366dc088-17ff3cf5b10bf2b7","8f44c0a366ced54-17ff7ae21c96ea57"]},"geometry":{"type":"LineString","coordinates":[[-83.6117471,32.8539332],[-83.61089650000001,32.853928]]},"id":"8944c0a366fffff-17ffbbebe2b76641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61001470000001,32.8539199]},"id":"8f44c0a32d2d993-17f7ff1cd783f5b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d2d993-17f7ff1cd783f5b8","8f44c0a366dc088-17ff3cf5b10bf2b7"]},"geometry":{"type":"LineString","coordinates":[[-83.61089650000001,32.853928],[-83.61001470000001,32.8539199]]},"id":"8944c0a366fffff-17f7be094fdc2460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d2e0f5-17f76140c3eac93f","8f44c0a32d2d993-17f7ff1cd783f5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.61001470000001,32.8539199],[-83.609138,32.853917]]},"id":"8a44c0a32d2ffff-17f7502ecf888902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60831300000001,32.853924]},"id":"8f44c0a32d00824-17f7c34469e843a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d2e0f5-17f76140c3eac93f","8f44c0a32d00824-17f7c34469e843a7"]},"geometry":{"type":"LineString","coordinates":[[-83.609138,32.853917],[-83.60831300000001,32.853924]]},"id":"8944c0a32d3ffff-17f752429e615947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d00824-17f7c34469e843a7","8f44c0a32d15af2-17ffc53edf9c7c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.60831300000001,32.853924],[-83.60750270000001,32.853932400000005]]},"id":"8944c0a32d3ffff-17ff6441a286d91b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606133,32.85389]},"id":"8f44c0a32da5226-17d74896eeb4c8ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d15af2-17ffc53edf9c7c9c","8f44c0a32da5226-17d74896eeb4c8ab"]},"geometry":{"type":"LineString","coordinates":[[-83.60750270000001,32.853932400000005],[-83.606133,32.85389]]},"id":"8844c0a32dfffff-17dfc6eae6e38827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60597200000001,32.853879]},"id":"8f44c0a32da5752-17df68fb8fd0b5eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32da5752-17df68fb8fd0b5eb","8f44c0a32da5226-17d74896eeb4c8ab"]},"geometry":{"type":"LineString","coordinates":[[-83.606133,32.85389],[-83.60597200000001,32.853879]]},"id":"8b44c0a32da5fff-17dfd8c93015ec17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32da5752-17df68fb8fd0b5eb","8f44c0a32db5601-17974c41afc7f0d5"]},"geometry":{"type":"LineString","coordinates":[[-83.60597200000001,32.853879],[-83.605377,32.85387],[-83.605051,32.853848],[-83.604782,32.853814],[-83.60463100000001,32.853786]]},"id":"8944c0a32dbffff-17bf7a9fb75e9dde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686577,32.828319]},"id":"8f44c0b19013075-13f7e43160309350"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1918d915-13f7a40c812cf69a","8f44c0b19013075-13f7e43160309350"]},"geometry":{"type":"LineString","coordinates":[[-83.686577,32.828319],[-83.686615,32.827261],[-83.68663600000001,32.826473]]},"id":"8844c0b191fffff-17b6941da502499e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689712,32.824894]},"id":"8f44c0b1912e674-1396fc8a0b35ec35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1912e674-1396fc8a0b35ec35","8f44c0b1918d915-13f7a40c812cf69a"]},"geometry":{"type":"LineString","coordinates":[[-83.68663600000001,32.826473],[-83.686662,32.825871],[-83.68667500000001,32.825758],[-83.686733,32.82555],[-83.686814,32.825449],[-83.68692300000001,32.82536],[-83.68753000000001,32.824975],[-83.687746,32.824865],[-83.687904,32.824845],[-83.689712,32.824894]]},"id":"8844c0b191fffff-13d7b12d0ef22fdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711127,32.786633]},"id":"8f44c0b03b5acec-139fe841a9b4a589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a70bb5-17d66853c9fbf05f","8f44c0b03b5acec-139fe841a9b4a589"]},"geometry":{"type":"LineString","coordinates":[[-83.711127,32.786633],[-83.711098,32.787543]]},"id":"8844c0b03bfffff-13be484ab83fcefa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71108100000001,32.78846]},"id":"8f44c0b03a467a9-1797c85e64151eae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a70bb5-17d66853c9fbf05f","8f44c0b03a467a9-1797c85e64151eae"]},"geometry":{"type":"LineString","coordinates":[[-83.711098,32.787543],[-83.71108100000001,32.78846]]},"id":"8944c0b03a7ffff-17f6f8591e01d83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711375,32.789642]},"id":"8f44c0b03a5d3a1-13f647a6a4a41aaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a467a9-1797c85e64151eae","8f44c0b03a5d3a1-13f647a6a4a41aaf"]},"geometry":{"type":"LineString","coordinates":[[-83.71108100000001,32.78846],[-83.71109100000001,32.788524],[-83.711357,32.788986],[-83.71138300000001,32.789045],[-83.711403,32.789116],[-83.71140700000001,32.789175],[-83.71139600000001,32.789282],[-83.711375,32.789642]]},"id":"8944c0b03a7ffff-13fe67d315e5ffbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74397660000001,32.9279748]},"id":"8f44c0a29c72b00-13b5f80eaa443ff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c72b00-13b5f80eaa443ff1","8f44c0a29c74265-13fdf6b3d99fd744"]},"geometry":{"type":"LineString","coordinates":[[-83.74397660000001,32.9279748],[-83.7442568,32.9278405],[-83.74435000000001,32.927784],[-83.744422,32.927743],[-83.74453150000001,32.9276623]]},"id":"8a44c0a29c77fff-13d5f75d6dc54092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74530100000001,32.9268]},"id":"8f44c0a29d5d556-13d7f4d2e612e577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29d5d556-13d7f4d2e612e577","8f44c0a29c74265-13fdf6b3d99fd744"]},"geometry":{"type":"LineString","coordinates":[[-83.74453150000001,32.9276623],[-83.74470600000001,32.927481],[-83.74530100000001,32.9268]]},"id":"8844c0a29dfffff-13f5f5c134545b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74625800000001,32.925711]},"id":"8f44c0a29d45832-17bdf27ccd2728b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29d5d556-13d7f4d2e612e577","8f44c0a29d45832-17bdf27ccd2728b3"]},"geometry":{"type":"LineString","coordinates":[[-83.74530100000001,32.9268],[-83.74625800000001,32.925711]]},"id":"8944c0a29d7ffff-17fdf3a7d887ef0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759943,32.753971]},"id":"8f44c0b2eb8b11b-13dff113a0a70342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757962,32.754391000000005]},"id":"8f44c0b2eab019c-13f7f5e9c221a757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2eb8b11b-13dff113a0a70342","8f44c0b2eab019c-13f7f5e9c221a757"]},"geometry":{"type":"LineString","coordinates":[[-83.759943,32.753971],[-83.75970000000001,32.753954],[-83.759417,32.75397],[-83.75905200000001,32.754022],[-83.758874,32.754063],[-83.75859200000001,32.754147],[-83.758339,32.754239000000005],[-83.757962,32.754391000000005]]},"id":"8844c0b2ebfffff-13bff3889961a6db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757503,32.757526]},"id":"8f44c0b2e335688-139dd708afcb9baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e335688-139dd708afcb9baf","8f44c0b2eab019c-13f7f5e9c221a757"]},"geometry":{"type":"LineString","coordinates":[[-83.757962,32.754391000000005],[-83.757884,32.754421],[-83.757299,32.754676],[-83.75718,32.754755],[-83.757102,32.754844],[-83.75702100000001,32.75498],[-83.756906,32.755212],[-83.756764,32.755553],[-83.75674400000001,32.755694000000005],[-83.75676100000001,32.755826],[-83.756799,32.755913],[-83.756873,32.756006],[-83.756915,32.756048],[-83.75703200000001,32.75612],[-83.757199,32.756185],[-83.757383,32.756267],[-83.757495,32.756349],[-83.757564,32.75645],[-83.757603,32.756632],[-83.75758,32.756898],[-83.757565,32.75701],[-83.75754,32.757283],[-83.757503,32.757526]]},"id":"8744c0b2effffff-17d5f79852479311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.602512,32.884692]},"id":"8f44c0a14198363-1397d16e0e387c60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a14198363-1397d16e0e387c60","8f44c0a14199ce0-13bff12c647ea186"]},"geometry":{"type":"LineString","coordinates":[[-83.602512,32.884692],[-83.60261700000001,32.884777]]},"id":"8a44c0a1419ffff-139f514d3bf409ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6013314,32.887157200000004]},"id":"8f44c0a1409c493-139f544fe7b18fbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1409c493-139f544fe7b18fbc","8f44c0a14199ce0-13bff12c647ea186"]},"geometry":{"type":"LineString","coordinates":[[-83.60261700000001,32.884777],[-83.602664,32.884842],[-83.60268900000001,32.884923],[-83.602694,32.884971],[-83.60268,32.885038],[-83.60253200000001,32.885458],[-83.602438,32.88568],[-83.60230100000001,32.886058000000006],[-83.60222300000001,32.886215],[-83.60216600000001,32.886305],[-83.60207600000001,32.886414],[-83.60198700000001,32.886511],[-83.601528,32.886989],[-83.6013314,32.887157200000004]]},"id":"8844c0a141fffff-17d7723f511a855d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63420500000001,32.84666]},"id":"8f44c0a346f68e4-17bf840de2a39032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346f68e4-17bf840de2a39032","8f44c0a346f4735-17df235be034bc1e"]},"geometry":{"type":"LineString","coordinates":[[-83.63420500000001,32.84666],[-83.63448980000001,32.8467106]]},"id":"8a44c0a346f7fff-17bf53b4ec522427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635642,32.847009]},"id":"8f44c0a346e0d81-1797a08bc3fc181a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346e0d81-1797a08bc3fc181a","8f44c0a346f4735-17df235be034bc1e"]},"geometry":{"type":"LineString","coordinates":[[-83.63448980000001,32.8467106],[-83.634791,32.846764],[-83.635642,32.847009]]},"id":"8944c0a346fffff-17b721f221cd125e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34651511-17f7fc992e8d0a6b","8f44c0a346e0d81-1797a08bc3fc181a"]},"geometry":{"type":"LineString","coordinates":[[-83.635642,32.847009],[-83.637259,32.847577]]},"id":"8844c0a347fffff-17b6fe927bcb9624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662695,32.822057]},"id":"8f44c0b1bd2c90a-139fbe7fa73f8324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66183000000001,32.822037]},"id":"8f44c0b1bd23a94-139fe09c41acf623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd23a94-139fe09c41acf623","8f44c0b1bd2c90a-139fbe7fa73f8324"]},"geometry":{"type":"LineString","coordinates":[[-83.662695,32.822057],[-83.66183000000001,32.822037]]},"id":"8944c0b1bd3ffff-1397ff8df24d49c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd31259-1397e295ee36c2b4","8f44c0b1bd23a94-139fe09c41acf623"]},"geometry":{"type":"LineString","coordinates":[[-83.66183000000001,32.822037],[-83.661021,32.822021]]},"id":"8944c0b1bd3ffff-139ee1991a277858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66014700000001,32.822021]},"id":"8f44c0b1bd14a2e-1397e4b82e209a10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd31259-1397e295ee36c2b4","8f44c0b1bd14a2e-1397e4b82e209a10"]},"geometry":{"type":"LineString","coordinates":[[-83.661021,32.822021],[-83.660444,32.822013000000005],[-83.66014700000001,32.822021]]},"id":"8944c0b1bd3ffff-1396e3a7011a823f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd16846-1397c60c28c0015e","8f44c0b1bd14a2e-1397e4b82e209a10"]},"geometry":{"type":"LineString","coordinates":[[-83.66014700000001,32.822021],[-83.659603,32.822018]]},"id":"8a44c0b1bd17fff-1396f5622f78a1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd16846-1397c60c28c0015e","8f44c0b1bd16cd4-13fec6ba853146a6"]},"geometry":{"type":"LineString","coordinates":[[-83.659603,32.822018],[-83.65932400000001,32.82201]]},"id":"8b44c0b1bd16fff-13fec6635d4bcfed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657059,32.821962]},"id":"8f44c0b1bdb6a4e-13decc4222b9f3d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bdb6a4e-13decc4222b9f3d5","8f44c0b1bd16cd4-13fec6ba853146a6"]},"geometry":{"type":"LineString","coordinates":[[-83.65932400000001,32.82201],[-83.65815400000001,32.821984],[-83.657059,32.821962]]},"id":"8644c0b1fffffff-13fee97e5c2628c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73861600000001,32.769734]},"id":"8f44c0b2ac9ba32-13dfc5250510b97f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2ac9ba32-13dfc5250510b97f","8f44c0b2a536d11-13dfa81765e23110"]},"geometry":{"type":"LineString","coordinates":[[-83.73861600000001,32.769734],[-83.737409,32.769737]]},"id":"8744c0b2affffff-13deb69e3ece3953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736214,32.769741]},"id":"8f44c0b0524e88a-13f62b024e91d7b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0524e88a-13f62b024e91d7b2","8f44c0b2a536d11-13dfa81765e23110"]},"geometry":{"type":"LineString","coordinates":[[-83.737409,32.769737],[-83.736214,32.769741]]},"id":"8944c0b0527ffff-13dee98cde44e69e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.588814,32.854188]},"id":"8f44c0b8d635882-179ff2df454fd14c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d635882-179ff2df454fd14c","8f44c0b8d6000a3-13d7f2caa7f03a91"]},"geometry":{"type":"LineString","coordinates":[[-83.588814,32.854188],[-83.58879400000001,32.854236],[-83.588812,32.85474],[-83.588847,32.855505]]},"id":"8944c0b8d63ffff-13b7f2dc8d3b6836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6c10f5-1397f3e3e09947e2","8f44c0b8d6000a3-13d7f2caa7f03a91"]},"geometry":{"type":"LineString","coordinates":[[-83.588847,32.855505],[-83.58888300000001,32.856482],[-83.588892,32.856906],[-83.588879,32.857033],[-83.58883700000001,32.857194],[-83.588763,32.857337],[-83.588552,32.857629],[-83.58851,32.857756],[-83.58848300000001,32.857908],[-83.588503,32.858351],[-83.588497,32.858569],[-83.588468,32.858727],[-83.588397,32.858891]]},"id":"8844c0b8d7fffff-17ff73231a89241c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.587151,32.859157]},"id":"8f44c0b8d6dea34-13bf76eea0c3a28c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6dea34-13bf76eea0c3a28c","8f44c0b8d6c10f5-1397f3e3e09947e2"]},"geometry":{"type":"LineString","coordinates":[[-83.588397,32.858891],[-83.588306,32.85899],[-83.58824200000001,32.859048],[-83.588138,32.859108],[-83.58801700000001,32.859153],[-83.58784200000001,32.859174],[-83.587151,32.859157]]},"id":"8944c0b8d6fffff-13977553f5fc3994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.4876978,32.6833595]},"id":"8f44c08ec64d050-17fbf9bced95277b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b85074d9b-13dfa8e33fcaa2ad","8f44c08ec64d050-17fbf9bced95277b"]},"geometry":{"type":"LineString","coordinates":[[-83.4876978,32.6833595],[-83.489186,32.684907],[-83.49035,32.686011],[-83.49190300000001,32.687360000000005],[-83.493779,32.688887],[-83.49743000000001,32.691970000000005],[-83.502223,32.695947000000004],[-83.50295600000001,32.696538000000004],[-83.515428,32.70694],[-83.5197088,32.7104811],[-83.5260027,32.7157155],[-83.526824,32.716407700000005],[-83.5282509,32.717624],[-83.5287679,32.7180229],[-83.5292493,32.718425700000004],[-83.5301261,32.719169900000004],[-83.53142000000001,32.720404200000004],[-83.5319178,32.720974600000005],[-83.532615,32.721866],[-83.53317600000001,32.7226957],[-83.53384870000001,32.7238307],[-83.53437910000001,32.724805],[-83.5381734,32.7314389],[-83.54266100000001,32.739303],[-83.54478200000001,32.742979000000005],[-83.54912680000001,32.7506482],[-83.55018530000001,32.752462300000005],[-83.5512176,32.754342300000005],[-83.5523137,32.7562243],[-83.5532874,32.7579817],[-83.5538233,32.758876300000004],[-83.55431630000001,32.759807],[-83.5547167,32.760772200000005],[-83.5550291,32.7614886],[-83.5552301,32.761996],[-83.5555593,32.7627254],[-83.5557981,32.7633886],[-83.5559594,32.763916800000004],[-83.55648740000001,32.765978000000004],[-83.5566318,32.766556900000005],[-83.556848,32.7678042],[-83.55718200000001,32.770269],[-83.5576412,32.773182000000006],[-83.55787240000001,32.7754895],[-83.55800550000001,32.776381900000004],[-83.55856700000001,32.780287],[-83.55868600000001,32.78118],[-83.5590609,32.7838475],[-83.55916780000001,32.784367],[-83.5592762,32.7847924],[-83.55948000000001,32.785446],[-83.55958000000001,32.785686000000005],[-83.559973,32.786437],[-83.56021600000001,32.78683],[-83.564194,32.792538],[-83.56668930000001,32.7961584]]},"id":"8344c0fffffffff-17d7f8c8ba19f9c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6396009,32.8236962]},"id":"8f44c0b1a6a5722-179ef6e1756f630b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640023,32.8232]},"id":"8f44c0b1a78bb56-13f6f5d9a04a78ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a78bb56-13f6f5d9a04a78ad","8f44c0b1a6a5722-179ef6e1756f630b"]},"geometry":{"type":"LineString","coordinates":[[-83.6396009,32.8236962],[-83.63967000000001,32.823631],[-83.640023,32.8232]]},"id":"8844c0b1a7fffff-1797f65b2ce801ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640313,32.822843]},"id":"8f44c0b1a78d656-1396f5246e924ed3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a78d656-1396f5246e924ed3","8f44c0b1a78bb56-13f6f5d9a04a78ad"]},"geometry":{"type":"LineString","coordinates":[[-83.640023,32.8232],[-83.640313,32.822843]]},"id":"8a44c0b1a78ffff-13f6f57f060d952a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640459,32.822654]},"id":"8f44c0b1a78d142-139ef4c927347cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a78d656-1396f5246e924ed3","8f44c0b1a78d142-139ef4c927347cb0"]},"geometry":{"type":"LineString","coordinates":[[-83.640313,32.822843],[-83.640459,32.822654]]},"id":"8b44c0b1a78dfff-13dff4f6ce749969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640613,32.822466]},"id":"8f44c0b1a7ab2eb-139ff468e09c70af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7ab2eb-139ff468e09c70af","8f44c0b1a78d142-139ef4c927347cb0"]},"geometry":{"type":"LineString","coordinates":[[-83.640459,32.822654],[-83.640613,32.822466]]},"id":"8944c0b1a7bffff-13d6f4990aad97eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7ab2eb-139ff468e09c70af","8f44c0b1a7a956a-13bff3b6cc0f1287"]},"geometry":{"type":"LineString","coordinates":[[-83.640613,32.822466],[-83.640799,32.822232],[-83.640898,32.822108]]},"id":"8a44c0b1a7affff-13bff40febdaf3e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64118900000001,32.821756]},"id":"8f44c0b1a7ad04c-13dff300ebe79131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7ad04c-13dff300ebe79131","8f44c0b1a7a956a-13bff3b6cc0f1287"]},"geometry":{"type":"LineString","coordinates":[[-83.640898,32.822108],[-83.64118900000001,32.821756]]},"id":"8a44c0b1a7affff-13dff35bd770c1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64199830000001,32.8209654]},"id":"8f44c0b1a702516-17fff1071dadc036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a702516-17fff1071dadc036","8f44c0b1a7ad04c-13dff300ebe79131"]},"geometry":{"type":"LineString","coordinates":[[-83.64118900000001,32.821756],[-83.641841,32.821084],[-83.64199830000001,32.8209654]]},"id":"8944c0b1a73ffff-17f6f2093cec337a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642155,32.820881]},"id":"8f44c0b1a702d56-17bef0a52e250697"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a702516-17fff1071dadc036","8f44c0b1a702d56-17bef0a52e250697"]},"geometry":{"type":"LineString","coordinates":[[-83.64199830000001,32.8209654],[-83.642155,32.820881]]},"id":"8b44c0b1a702fff-17d7f0d61c38c306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64270300000001,32.820495]},"id":"8f44c0b1a70456a-17dfef4eac37cf63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a70456a-17dfef4eac37cf63","8f44c0b1a702d56-17bef0a52e250697"]},"geometry":{"type":"LineString","coordinates":[[-83.642155,32.820881],[-83.64270300000001,32.820495]]},"id":"8a44c0b1a707fff-17d6eff9e2997899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a722363-179eee5a4a7b68d1","8f44c0b1a70456a-17dfef4eac37cf63"]},"geometry":{"type":"LineString","coordinates":[[-83.64270300000001,32.820495],[-83.643094,32.820219]]},"id":"8944c0b1a73ffff-17f7eed47f1ab01b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64325000000001,32.82011]},"id":"8f44c0b1a7206a0-17deedf8c116ebb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7206a0-17deedf8c116ebb0","8f44c0b1a722363-179eee5a4a7b68d1"]},"geometry":{"type":"LineString","coordinates":[[-83.643094,32.820219],[-83.64325000000001,32.82011]]},"id":"8a44c0b1a727fff-17fefe298e45c611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7206a0-17deedf8c116ebb0","8f44c0b1a7254b5-13b7ed0d2dcaa94b"]},"geometry":{"type":"LineString","coordinates":[[-83.64325000000001,32.82011],[-83.64362700000001,32.819846000000005]]},"id":"8a44c0b1a727fff-1796ed82f788e08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644727,32.819074]},"id":"8f44c0b1a08d276-13d7ea5da112faac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a08d276-13d7ea5da112faac","8f44c0b1a7254b5-13b7ed0d2dcaa94b"]},"geometry":{"type":"LineString","coordinates":[[-83.64362700000001,32.819846000000005],[-83.6447014,32.819092000000005],[-83.644727,32.819074]]},"id":"8844c0b1a1fffff-13d6ebb566e2f330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a08d276-13d7ea5da112faac","8f44c0b1a0f2d36-139ff9ff457b3aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.644727,32.819074],[-83.644878,32.8189851]]},"id":"8844c0b1a1fffff-13b7fa2e7dcd3c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0f2d36-139ff9ff457b3aa8","8f44c0b1a0f6062-13bee959ad44bc66"]},"geometry":{"type":"LineString","coordinates":[[-83.644878,32.8189851],[-83.645143,32.818829]]},"id":"8a44c0b1a0f7fff-13fef9ac78a384d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0f6062-13bee959ad44bc66","8f44c0b1a0f4429-13dee8b182a9f65c"]},"geometry":{"type":"LineString","coordinates":[[-83.645143,32.818829],[-83.64541200000001,32.8186848]]},"id":"8a44c0b1a0f7fff-139ff90590295678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646072,32.818246]},"id":"8f44c0b1a01871d-17dfe7150623acd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a01871d-17dfe7150623acd2","8f44c0b1a0f4429-13dee8b182a9f65c"]},"geometry":{"type":"LineString","coordinates":[[-83.64541200000001,32.8186848],[-83.645447,32.818666],[-83.64584,32.818436000000005],[-83.64601900000001,32.818302],[-83.646072,32.818246]]},"id":"8844c0b1a1fffff-13dfe7dcfa1867cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a01871d-17dfe7150623acd2","8f44c0b1a0180a9-17b7e6ed025e5210"]},"geometry":{"type":"LineString","coordinates":[[-83.646072,32.818246],[-83.646136,32.818178]]},"id":"8b44c0b1a018fff-17b6e70103ab8621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64618,32.81763]},"id":"8f44c0b1a01ccc0-17dee6d18506a96a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a01ccc0-17dee6d18506a96a","8f44c0b1a0180a9-17b7e6ed025e5210"]},"geometry":{"type":"LineString","coordinates":[[-83.646136,32.818178],[-83.646172,32.818021],[-83.64618,32.81763]]},"id":"8a44c0b1a01ffff-17f6e6d80b8cfc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64619300000001,32.816429]},"id":"8f44c0b1a033898-13dee6c96c549bc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a033898-13dee6c96c549bc4","8f44c0b1a01ccc0-17dee6d18506a96a"]},"geometry":{"type":"LineString","coordinates":[[-83.64618,32.81763],[-83.64619300000001,32.816429]]},"id":"8944c0b1a03ffff-17d7f6cd7353a06e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36215840-17d7e4708cc6a234","8f44c0a3621194a-13dfe4b269f4f4f4"]},"geometry":{"type":"LineString","coordinates":[[-83.62083460000001,32.851220600000005],[-83.6208479,32.851165300000005],[-83.62089420000001,32.850973],[-83.62094,32.850822]]},"id":"8a44c0a36217fff-17dfe4932db6be26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57729400000001,32.861579]},"id":"8f44c0b88358886-1397eeff419598a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57837,32.861586]},"id":"8f44c0b8834ead3-139fcc5ec5d8093d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8834ead3-139fcc5ec5d8093d","8f44c0b88358886-1397eeff419598a3"]},"geometry":{"type":"LineString","coordinates":[[-83.57729400000001,32.861579],[-83.57837,32.861586]]},"id":"8944c0b8837ffff-139f9daf0ea74065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579789,32.861632]},"id":"8f44c0b89cb6b5d-13bf88e7e31215f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8834ead3-139fcc5ec5d8093d","8f44c0b89cb6b5d-13bf88e7e31215f0"]},"geometry":{"type":"LineString","coordinates":[[-83.57837,32.861586],[-83.579789,32.861632]]},"id":"8644c0b8fffffff-13bfaaa35bba2a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec009a0-17ffe0a1c5cf8c05","8f44c0b1ed306c4-17f7e077e83bd7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.648781,32.784492],[-83.648785,32.784579],[-83.648696,32.787867],[-83.648714,32.788198]]},"id":"8844c0b1edfffff-13fff092926f7588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649561,32.788831]},"id":"8f44c0b1ec2a2e2-17fffe90659df91f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec2a2e2-17fffe90659df91f","8f44c0b1ec009a0-17ffe0a1c5cf8c05"]},"geometry":{"type":"LineString","coordinates":[[-83.648714,32.788198],[-83.64877,32.788305],[-83.649423,32.788728],[-83.649561,32.788831]]},"id":"8944c0b1ec3ffff-17bedfa3fb6f63eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574353,32.863546]},"id":"8f44c0b882e0473-17f7d62d64107c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882e0473-17f7d62d64107c0d","8f44c0b882e1622-17f7d52dcb76fedb"]},"geometry":{"type":"LineString","coordinates":[[-83.574353,32.863546],[-83.57467700000001,32.863903],[-83.574762,32.863982]]},"id":"8a44c0b882e7fff-17ffd5af5c3ab7d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882e1622-17f7d52dcb76fedb","8f44c0b882e888b-13dfd43f0df566f0"]},"geometry":{"type":"LineString","coordinates":[[-83.574762,32.863982],[-83.57486300000001,32.86413],[-83.575018,32.864322],[-83.57514400000001,32.86453]]},"id":"8944c0b882fffff-139fd4b3b9cbf1dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708933,32.833092]},"id":"8f44c0b0a64a46a-179ecd9cea900c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a64a46a-179ecd9cea900c71","8f44c0a24916ce0-17d6ebc46838974f"]},"geometry":{"type":"LineString","coordinates":[[-83.708933,32.833092],[-83.709,32.833123],[-83.709242,32.833284],[-83.709586,32.833533],[-83.70968900000001,32.833595]]},"id":"8744c0b0affffff-17b6fcaf02fa2152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71056200000001,32.833672]},"id":"8f44c0a2493368a-17f749a2c88bf5a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2493368a-17f749a2c88bf5a6","8f44c0a24916ce0-17d6ebc46838974f"]},"geometry":{"type":"LineString","coordinates":[[-83.70968900000001,32.833595],[-83.709773,32.833632],[-83.709821,32.833647],[-83.709928,32.833671],[-83.710069,32.83368],[-83.71034,32.833682],[-83.71056200000001,32.833672]]},"id":"8a44c0a24917fff-17f7fab6bcccbd27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7118992,32.833670500000004]},"id":"8f44c0a2492345b-17f6565f05a8cff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2493368a-17f749a2c88bf5a6","8f44c0a2492345b-17f6565f05a8cff3"]},"geometry":{"type":"LineString","coordinates":[[-83.71056200000001,32.833672],[-83.710907,32.833672],[-83.711167,32.833672],[-83.7118992,32.833670500000004]]},"id":"8944c0a2493ffff-17f6c800e3dd2b17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71343040000001,32.8336674]},"id":"8f44c0b0a2d38da-17f662a20a081851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2492345b-17f6565f05a8cff3","8f44c0b0a2d38da-17f662a20a081851"]},"geometry":{"type":"LineString","coordinates":[[-83.7118992,32.833670500000004],[-83.71343040000001,32.8336674]]},"id":"8744c0b0affffff-17f764808ae0566c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.563542,32.845871]},"id":"8f44c0b88ca0d8e-13bff0924d8c86f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88ca0d8e-13bff0924d8c86f1","8f44c0b88d88ad2-1397ae2aa5656640"]},"geometry":{"type":"LineString","coordinates":[[-83.564527,32.845165],[-83.563542,32.845871]]},"id":"8844c0b88dfffff-13f7ef5e7714bfea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88ca0d8e-13bff0924d8c86f1","8f44c0b88cb1a2d-17d7f20e4a07e238"]},"geometry":{"type":"LineString","coordinates":[[-83.563542,32.845871],[-83.562934,32.846291]]},"id":"8944c0b88cbffff-13d7b150407848a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56263100000001,32.846518]},"id":"8f44c0b88c86982-17d7f2cba67035b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88c86982-17d7f2cba67035b6","8f44c0b88cb1a2d-17d7f20e4a07e238"]},"geometry":{"type":"LineString","coordinates":[[-83.562934,32.846291],[-83.56263100000001,32.846518]]},"id":"8944c0b88cbffff-179ff26cfc8a2977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686723,32.872104]},"id":"8f44c0a22a767b3-13df83d62bfe8ea5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ae350e-17dfa839ee7017c1","8f44c0a22a767b3-13df83d62bfe8ea5"]},"geometry":{"type":"LineString","coordinates":[[-83.686723,32.872104],[-83.686676,32.872245],[-83.686356,32.872767],[-83.686194,32.872974],[-83.68603300000001,32.873125],[-83.68589700000001,32.873224],[-83.685603,32.873393],[-83.68536800000001,32.873486],[-83.68513,32.873545],[-83.684925,32.873573]]},"id":"8844c0a22bfffff-1796e5b0a382fcd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ad465d-17978c57a4d93c12","8f44c0a22ae350e-17dfa839ee7017c1"]},"geometry":{"type":"LineString","coordinates":[[-83.684925,32.873573],[-83.684011,32.873661000000006],[-83.68359500000001,32.873731],[-83.68339,32.873784],[-83.683239,32.873832]]},"id":"8944c0a22afffff-179eca4c5c0d973b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ad465d-17978c57a4d93c12","8f44c0a22323c20-13fed031eaa4a6c2"]},"geometry":{"type":"LineString","coordinates":[[-83.683239,32.873832],[-83.682918,32.873899],[-83.681661,32.874206]]},"id":"8744c0a22ffffff-17f7be456cfba3de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22304d50-13bef14c67f2d277","8f44c0a22323c20-13fed031eaa4a6c2"]},"geometry":{"type":"LineString","coordinates":[[-83.681661,32.874206],[-83.68120900000001,32.874315]]},"id":"8944c0a2233ffff-139ed0bf29c58144"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707524,32.906115]},"id":"8f44c0a2e705742-17d7f10d810ed218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7071183,32.9120879]},"id":"8f44c0a2e6ed1b2-17f6f20b1db5fc6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e705742-17d7f10d810ed218","8f44c0a2e6ed1b2-17f6f20b1db5fc6f"]},"geometry":{"type":"LineString","coordinates":[[-83.707524,32.906115],[-83.7075125,32.90627],[-83.70750100000001,32.906425],[-83.707459,32.90746],[-83.707425,32.907871],[-83.707324,32.90882],[-83.70732000000001,32.908994],[-83.70733100000001,32.909197],[-83.70743200000001,32.909816],[-83.707453,32.910044],[-83.707452,32.91024],[-83.70741600000001,32.910545],[-83.707183,32.911862],[-83.707144,32.912013],[-83.7071183,32.9120879]]},"id":"8844c0a2e7fffff-17b7516486328eea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7064783,32.913318100000005]},"id":"8f44c0a2e6cd29d-17f7d39b1d5cb8d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e6ed1b2-17f6f20b1db5fc6f","8f44c0a2e6cd29d-17f7d39b1d5cb8d8"]},"geometry":{"type":"LineString","coordinates":[[-83.7071183,32.9120879],[-83.707108,32.912118],[-83.707002,32.912353],[-83.7064783,32.913318100000005]]},"id":"8944c0a2e6fffff-17fe52cd89a21d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad65a6d-13f7f4b8524bf08a","8f44c0a2e6cd29d-17f7d39b1d5cb8d8"]},"geometry":{"type":"LineString","coordinates":[[-83.7064783,32.913318100000005],[-83.706131,32.913958],[-83.70602190000001,32.914163]]},"id":"8744c0a2affffff-13fff42a11e3c5ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad65a6d-13f7f4b8524bf08a","8f44c0a2ad6eb94-13d6f5b50b1cb191"]},"geometry":{"type":"LineString","coordinates":[[-83.70602190000001,32.914163],[-83.70561760000001,32.9149231]]},"id":"8944c0a2ad7ffff-13f77536afd6e3a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694354,32.787869]},"id":"8f44c0b0346b2dc-17b67134cf3b29fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0308a4a4-17d66c5b8538f078","8f44c0b0346b2dc-17b67134cf3b29fc"]},"geometry":{"type":"LineString","coordinates":[[-83.694354,32.787869],[-83.694614,32.787664],[-83.69478000000001,32.78754],[-83.69484200000001,32.7875],[-83.69490900000001,32.787467],[-83.69499,32.787439],[-83.695052,32.787425],[-83.695116,32.787416],[-83.69518000000001,32.787415],[-83.695228,32.787419],[-83.69535400000001,32.787445000000005],[-83.695509,32.787488],[-83.69565,32.787512],[-83.695741,32.787522],[-83.695948,32.787521000000005],[-83.69634,32.787511]]},"id":"8744c0b03ffffff-17d67ee54467b0d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69749300000001,32.787458]},"id":"8f44c0b0308d75c-17b7698aea5f1805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0308a4a4-17d66c5b8538f078","8f44c0b0308d75c-17b7698aea5f1805"]},"geometry":{"type":"LineString","coordinates":[[-83.69634,32.787511],[-83.69749300000001,32.787458]]},"id":"8944c0b030bffff-17b7faf33a1df02f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57748000000001,32.852603]},"id":"8f44c0b88b81c72-13bfee8b0c92b0f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b8aa0a-17b78e860b8b64e7","8f44c0b88b81c72-13bfee8b0c92b0f3"]},"geometry":{"type":"LineString","coordinates":[[-83.57748000000001,32.852603],[-83.577499,32.852745],[-83.5775,32.853302],[-83.577488,32.853644]]},"id":"8944c0b88bbffff-17f7ee80dad45ee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a818e1-13bff035435c95ef","8f44c0b88b8aa0a-17b78e860b8b64e7"]},"geometry":{"type":"LineString","coordinates":[[-83.577488,32.853644],[-83.57742900000001,32.853961000000005],[-83.57735500000001,32.854176],[-83.576845,32.85532],[-83.576808,32.855476],[-83.57679800000001,32.855671]]},"id":"8844c0b88bfffff-13b7df615b12fd5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65847020000001,32.751991000000004]},"id":"8f44c0b1554292e-179ee8d021a7b885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1554292e-179ee8d021a7b885","8f44c0b15421673-17fecdb064727875"]},"geometry":{"type":"LineString","coordinates":[[-83.65847020000001,32.751991000000004],[-83.658162,32.752115],[-83.657674,32.752181],[-83.656473,32.752356]]},"id":"8844c0b155fffff-179ffb3b008bad54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653204,32.752834]},"id":"8f44c0b154a1899-139fd5ab8a95312b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154a1899-139fd5ab8a95312b","8f44c0b15421673-17fecdb064727875"]},"geometry":{"type":"LineString","coordinates":[[-83.656473,32.752356],[-83.656351,32.752374],[-83.65491200000001,32.752572],[-83.653204,32.752834]]},"id":"8844c0b155fffff-1796d1ae73c38caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60593420000001,32.8482329]},"id":"8f44c0b8db73301-1397d913261a5677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60592770000001,32.8489343]},"id":"8f44c0b8db4244e-13b7f91739e62d6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db73301-1397d913261a5677","8f44c0b8db4244e-13b7f91739e62d6c"]},"geometry":{"type":"LineString","coordinates":[[-83.60593420000001,32.8482329],[-83.60592770000001,32.8489343]]},"id":"8944c0b8db7ffff-13dfc9152088b508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60592000000001,32.849648]},"id":"8f44c0b8db588e4-17f7491c0947e643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db588e4-17f7491c0947e643","8f44c0b8db4244e-13b7f91739e62d6c"]},"geometry":{"type":"LineString","coordinates":[[-83.60592770000001,32.8489343],[-83.6059268,32.849034100000004],[-83.60592000000001,32.849648]]},"id":"8944c0b8db7ffff-139749199102c8f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605924,32.850367]},"id":"8f44c0b8da66cac-17b769198fd10ca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db588e4-17f7491c0947e643","8f44c0b8da66cac-17b769198fd10ca1"]},"geometry":{"type":"LineString","coordinates":[[-83.60592000000001,32.849648],[-83.605924,32.850367]]},"id":"8a44c0b8db5ffff-17d7f91ac8572418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605928,32.851055]},"id":"8f44c0b8da62392-17f7691702f2b7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da62392-17f7691702f2b7dd","8f44c0b8da66cac-17b769198fd10ca1"]},"geometry":{"type":"LineString","coordinates":[[-83.605924,32.850367],[-83.605928,32.851055]]},"id":"8944c0b8da7ffff-179f691845eddae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605924,32.851771]},"id":"8f44c0b8da40b29-13b7e91980be960f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da40b29-13b7e91980be960f","8f44c0b8da62392-17f7691702f2b7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.605928,32.851055],[-83.605924,32.851771]]},"id":"8944c0b8da7ffff-13d7691846c158eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605911,32.852497]},"id":"8f44c0b8da4e116-13ffe921ada800cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da40b29-13b7e91980be960f","8f44c0b8da4e116-13ffe921ada800cb"]},"geometry":{"type":"LineString","coordinates":[[-83.605924,32.851771],[-83.605911,32.852497]]},"id":"8944c0b8da7ffff-1397c91d9e18e5f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da4a25d-17bfe9102544f42d","8f44c0b8da4e116-13ffe921ada800cb"]},"geometry":{"type":"LineString","coordinates":[[-83.605911,32.852497],[-83.605939,32.853219]]},"id":"8a44c0b8da4ffff-17df4918e791ce44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32da5752-17df68fb8fd0b5eb","8f44c0b8da4a25d-17bfe9102544f42d"]},"geometry":{"type":"LineString","coordinates":[[-83.605939,32.853219],[-83.60597200000001,32.853879]]},"id":"8844c0a32dfffff-17ff6905d53e49f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32dac55d-13df688d83b4f517","8f44c0a32da5226-17d74896eeb4c8ab"]},"geometry":{"type":"LineString","coordinates":[[-83.606133,32.85389],[-83.606148,32.854501]]},"id":"8944c0a32dbffff-179778923539bc9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32dac55d-13df688d83b4f517","8f44c0a32da829c-13dfe8856794999e"]},"geometry":{"type":"LineString","coordinates":[[-83.606148,32.854501],[-83.606161,32.855131]]},"id":"8a44c0a32daffff-139748897cefc7a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32da829c-13dfe8856794999e","8f44c0a32c3648c-13d7688c49bf0ff4"]},"geometry":{"type":"LineString","coordinates":[[-83.606161,32.855131],[-83.606171,32.855416000000005],[-83.60615,32.855717]]},"id":"8944c0a32dbffff-139758840a3602a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c327a0-17ffc895a0a1110b","8f44c0a32c3648c-13d7688c49bf0ff4"]},"geometry":{"type":"LineString","coordinates":[[-83.60615,32.855717],[-83.60613500000001,32.856214]]},"id":"8a44c0a32c37fff-13f77890f2d970cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c327a0-17ffc895a0a1110b","8f44c0a32c14d42-17f7c89a075577d0"]},"geometry":{"type":"LineString","coordinates":[[-83.60613500000001,32.856214],[-83.606128,32.856406]]},"id":"8944c0a32c3ffff-17bfc897df7eb86b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60610700000001,32.857008]},"id":"8f44c0a32c10148-17ff48a728f897e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c10148-17ff48a728f897e9","8f44c0a32c14d42-17f7c89a075577d0"]},"geometry":{"type":"LineString","coordinates":[[-83.606128,32.856406],[-83.60610700000001,32.857008]]},"id":"8a44c0a32c17fff-17b7e8a099909901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642942,32.788013]},"id":"8f44c0b1334a10d-17feeeb943ae7f49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64439700000001,32.788038]},"id":"8f44c0b1ecb2948-179feb2be42e9c47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ecb2948-179feb2be42e9c47","8f44c0b1334a10d-17feeeb943ae7f49"]},"geometry":{"type":"LineString","coordinates":[[-83.642942,32.788013],[-83.64439700000001,32.788038]]},"id":"8644c0b17ffffff-1797fcf29f8f8c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64582800000001,32.788058]},"id":"8f44c0b1eca626d-179ee7ad83be0a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ecb2948-179feb2be42e9c47","8f44c0b1eca626d-179ee7ad83be0a55"]},"geometry":{"type":"LineString","coordinates":[[-83.64439700000001,32.788038],[-83.64582800000001,32.788058]]},"id":"8944c0b1ecbffff-1796e96cbc550e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec10d03-17bfe42dee3b0b43","8f44c0b1eca626d-179ee7ad83be0a55"]},"geometry":{"type":"LineString","coordinates":[[-83.64582800000001,32.788058],[-83.647261,32.788089]]},"id":"8844c0b1edfffff-17b7f5edb157ef8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec10d03-17bfe42dee3b0b43","8f44c0b1ec009a0-17ffe0a1c5cf8c05"]},"geometry":{"type":"LineString","coordinates":[[-83.647261,32.788089],[-83.647833,32.788103],[-83.64848500000001,32.788108],[-83.64856400000001,32.788114],[-83.64865800000001,32.788137],[-83.648714,32.788198]]},"id":"8944c0b1ec3ffff-17b6f25f32dae098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.566811,32.831029]},"id":"8f44c0b8c431c8e-1797a8972ca66000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8c431c8e-1797a8972ca66000","8f44c0b8c59ba70-179fef47aba26ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.566811,32.831029],[-83.56666,32.831057],[-83.564071,32.831074]]},"id":"8844c0b8c5fffff-1797abeea3217967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56327,32.831079]},"id":"8f44c0b8c4b4565-17b7f13c470bc1c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8c4b4565-17b7f13c470bc1c5","8f44c0b8c59ba70-179fef47aba26ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.564071,32.831074],[-83.56327,32.831079]]},"id":"8844c0b8c5fffff-179ff041f8e8b2c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7179066,32.9257684]},"id":"8f44c0a2aa60214-17df77b462ff3191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa61c31-17d7f7322a33a8dd","8f44c0a2aa60214-17df77b462ff3191"]},"geometry":{"type":"LineString","coordinates":[[-83.7179066,32.9257684],[-83.71811500000001,32.925779]]},"id":"8a44c0a2aa67fff-17d6b7734899c48f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa61c31-17d7f7322a33a8dd","8f44c0a2aa6190b-17d736aa854932db"]},"geometry":{"type":"LineString","coordinates":[[-83.71811500000001,32.925779],[-83.718332,32.925781]]},"id":"8b44c0a2aa61fff-17d6b6ee500aa624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28692a28-179e7545a8a1743e","8f44c0a2aa6190b-17d736aa854932db"]},"geometry":{"type":"LineString","coordinates":[[-83.718332,32.925781],[-83.718483,32.925784],[-83.718609,32.9258],[-83.71890300000001,32.925863]]},"id":"8844c0a2abfffff-17f775f728b47209"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869064a-17d634c441b77665","8f44c0a28692a28-179e7545a8a1743e"]},"geometry":{"type":"LineString","coordinates":[[-83.71890300000001,32.925863],[-83.71911,32.925952]]},"id":"8a44c0a28697fff-17b63504f5a9979c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869064a-17d634c441b77665","8f44c0a28693943-17f63485c2b68014"]},"geometry":{"type":"LineString","coordinates":[[-83.71911,32.925952],[-83.71921,32.926032]]},"id":"8a44c0a28697fff-17df34a50bcb67b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a286917b6-17b6b43162c1ffb1","8f44c0a28693943-17f63485c2b68014"]},"geometry":{"type":"LineString","coordinates":[[-83.71921,32.926032],[-83.719345,32.926132]]},"id":"8a44c0a28697fff-1797745b96264b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719721,32.926502]},"id":"8f44c0a2869c79d-1397f346696365a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869c79d-1397f346696365a1","8f44c0a286917b6-17b6b43162c1ffb1"]},"geometry":{"type":"LineString","coordinates":[[-83.719345,32.926132],[-83.719571,32.926381],[-83.71964600000001,32.926457],[-83.719721,32.926502]]},"id":"8944c0a286bffff-17bff3c09cae87ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869d09b-13bef237287f446d","8f44c0a2869c79d-1397f346696365a1"]},"geometry":{"type":"LineString","coordinates":[[-83.719721,32.926502],[-83.719886,32.926589],[-83.719909,32.926605],[-83.720155,32.926766]]},"id":"8a44c0a2869ffff-13f772bd0748b1e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678853,32.840083]},"id":"8f44c0a26c24843-179ff70cee2873c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68113500000001,32.841549]},"id":"8f44c0a26d5d95c-13b6b17aa6556cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d5d95c-13b6b17aa6556cc2","8f44c0a26c24843-179ff70cee2873c6"]},"geometry":{"type":"LineString","coordinates":[[-83.678853,32.840083],[-83.678977,32.840397],[-83.67906,32.840581],[-83.67913300000001,32.840728],[-83.67917800000001,32.840764],[-83.67929500000001,32.840812],[-83.680451,32.841185],[-83.68062,32.841247],[-83.680879,32.841377],[-83.68113500000001,32.841549]]},"id":"8844c0a26dfffff-17b6d4943c38583c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682775,32.843184]},"id":"8f44c0a26891d49-17be8d79a406c753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d5d95c-13b6b17aa6556cc2","8f44c0a26891d49-17be8d79a406c753"]},"geometry":{"type":"LineString","coordinates":[[-83.68113500000001,32.841549],[-83.681263,32.841664],[-83.68145,32.841856],[-83.681556,32.841991],[-83.68172100000001,32.842261],[-83.681911,32.842584],[-83.68199600000001,32.842705],[-83.68210300000001,32.842826],[-83.682187,32.8429],[-83.68231200000001,32.842989],[-83.68240200000001,32.843041],[-83.68258300000001,32.843099],[-83.682775,32.843184]]},"id":"8744c0a26ffffff-13f6bf9fab567e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70626100000001,32.904584]},"id":"8f44c0a2e736854-13975422ea692e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e79496d-17f6fcbdcfd176f4","8f44c0a2e736854-13975422ea692e0f"]},"geometry":{"type":"LineString","coordinates":[[-83.70626100000001,32.904584],[-83.7031597,32.906229100000004],[-83.70301590000001,32.906120300000005],[-83.70289650000001,32.9060964],[-83.7027364,32.906142200000005]]},"id":"8844c0a2e7fffff-17def86d17f6f334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e79496d-17f6fcbdcfd176f4","8f44c0a05b652ec-17dedf5c16fb0ddb"]},"geometry":{"type":"LineString","coordinates":[[-83.7027364,32.906142200000005],[-83.70270590000001,32.9061509],[-83.7025325,32.906243700000005],[-83.70235050000001,32.906291],[-83.702201,32.9063492],[-83.7020645,32.9064165],[-83.7019171,32.906507500000004],[-83.7016639,32.9067176]]},"id":"8744c0a2effffff-17967e19844efac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762034,32.817121]},"id":"8f44c0b0d313c08-179debf8c955520f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d313c08-179debf8c955520f","8f44c0b0d32ad66-17bde63defff9204"]},"geometry":{"type":"LineString","coordinates":[[-83.762034,32.817121],[-83.76219900000001,32.817098],[-83.76401200000001,32.816989],[-83.764381,32.816961]]},"id":"8944c0b0d33ffff-17dde91b9ddd956d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0dace8aa-17d5bf5b6dd30792","8f44c0b0d32ad66-17bde63defff9204"]},"geometry":{"type":"LineString","coordinates":[[-83.764381,32.816961],[-83.765324,32.816904],[-83.766456,32.816834],[-83.76680400000001,32.81682],[-83.767117,32.81682],[-83.767201,32.816828]]},"id":"8744c0b0dffffff-17f5f2ccc80ad55c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769073,32.819367]},"id":"8f44c0b72d9d46c-139dfac96ca16df2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0dace8aa-17d5bf5b6dd30792","8f44c0b72d9d46c-139dfac96ca16df2"]},"geometry":{"type":"LineString","coordinates":[[-83.767201,32.816828],[-83.767449,32.816895],[-83.76760200000001,32.816944],[-83.767778,32.817016],[-83.767897,32.817071],[-83.767992,32.817124],[-83.76807000000001,32.817174],[-83.768206,32.817282],[-83.768258,32.817330000000005],[-83.768376,32.817453],[-83.768489,32.817601],[-83.76854800000001,32.817691],[-83.768629,32.817856],[-83.768715,32.818111],[-83.76900900000001,32.819131],[-83.769073,32.819367]]},"id":"8444c0bffffffff-17dfbc6f4146242c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76917200000001,32.819733]},"id":"8f44c0b72d99b94-13fdba8b80a4cf7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72d99b94-13fdba8b80a4cf7f","8f44c0b72d9d46c-139dfac96ca16df2"]},"geometry":{"type":"LineString","coordinates":[[-83.769073,32.819367],[-83.76910500000001,32.819474],[-83.76917200000001,32.819733]]},"id":"8a44c0b72d9ffff-13ffbaa99db4d68f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092506,32.7801052]},"id":"8f44c0b01490c9c-13bfccd66f895278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71057900000001,32.780118]},"id":"8f44c0b01480db6-13b7c9982860c4c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01480db6-13b7c9982860c4c9","8f44c0b01490c9c-13bfccd66f895278"]},"geometry":{"type":"LineString","coordinates":[[-83.7092506,32.7801052],[-83.71057900000001,32.780118]]},"id":"8944c0b014bffff-13b7cb37453972e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714083,32.780074]},"id":"8f44c0b01403a9c-139e410a24cd526c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01403a9c-139e410a24cd526c","8f44c0b01480db6-13b7c9982860c4c9"]},"geometry":{"type":"LineString","coordinates":[[-83.71057900000001,32.780118],[-83.71375,32.780172],[-83.713847,32.780163],[-83.713966,32.78013],[-83.714083,32.780074]]},"id":"8844c0b015fffff-13d6554bf64be6c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66677,32.867494]},"id":"8f44c0a225184ab-1397f48ccb69ae60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667401,32.867288]},"id":"8f44c0a2251dcee-1797b30268993e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2251dcee-1797b30268993e90","8f44c0a225184ab-1397f48ccb69ae60"]},"geometry":{"type":"LineString","coordinates":[[-83.66677,32.867494],[-83.66699200000001,32.86737],[-83.667106,32.867322],[-83.66716500000001,32.867306],[-83.667316,32.867286],[-83.667401,32.867288]]},"id":"8a44c0a2251ffff-17b6b3cdb037e741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2251dcee-1797b30268993e90","8f44c0a2250bcab-139eb161875e856e"]},"geometry":{"type":"LineString","coordinates":[[-83.667401,32.867288],[-83.66755500000001,32.867337],[-83.66759900000001,32.867355],[-83.667662,32.867389],[-83.66772900000001,32.86744],[-83.667788,32.867497],[-83.667893,32.867689],[-83.667945,32.867769],[-83.668068,32.867908]]},"id":"8944c0a2253ffff-13bfb21bcab9cd8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225560f1-13d7b03ee0a3b0b4","8f44c0a2250bcab-139eb161875e856e"]},"geometry":{"type":"LineString","coordinates":[[-83.668068,32.867908],[-83.66853300000001,32.868405]]},"id":"8844c0a225fffff-13b7f0d036e10201"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66897200000001,32.868873]},"id":"8f44c0a225502f4-13f7af2c823c3460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225560f1-13d7b03ee0a3b0b4","8f44c0a225502f4-13f7af2c823c3460"]},"geometry":{"type":"LineString","coordinates":[[-83.66853300000001,32.868405],[-83.66897200000001,32.868873]]},"id":"8a44c0a22557fff-13d7efb5b103b986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673651,32.869467]},"id":"8f44c0a2218a659-17dee3c026b29652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225502f4-13f7af2c823c3460","8f44c0a2218a659-17dee3c026b29652"]},"geometry":{"type":"LineString","coordinates":[[-83.66897200000001,32.868873],[-83.66936100000001,32.869293],[-83.669551,32.869473],[-83.66973800000001,32.869624],[-83.669956,32.869763],[-83.67005900000001,32.869819],[-83.670331,32.869943],[-83.670437,32.869988],[-83.67059400000001,32.87004],[-83.670771,32.870081],[-83.67131900000001,32.870185],[-83.671862,32.87028],[-83.67211400000001,32.870311],[-83.672272,32.870312000000006],[-83.672399,32.870295],[-83.67255300000001,32.870261],[-83.672696,32.870218],[-83.672809,32.870175],[-83.672962,32.870102],[-83.67312000000001,32.870013],[-83.67337400000001,32.869804],[-83.673477,32.869687],[-83.673651,32.869467]]},"id":"8744c0a22ffffff-17dfe987f51f0c85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2218a659-17dee3c026b29652","8f44c0a2218c303-13d6a1e66f228bac"]},"geometry":{"type":"LineString","coordinates":[[-83.673651,32.869467],[-83.673805,32.869307],[-83.67425,32.868954],[-83.67440900000001,32.868816]]},"id":"8a44c0a2218ffff-179fe2d6aedcbc20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67528800000001,32.868010000000005]},"id":"8f44c0a221ad564-13dedfc10b772077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a221ad564-13dedfc10b772077","8f44c0a2218c303-13d6a1e66f228bac"]},"geometry":{"type":"LineString","coordinates":[[-83.67440900000001,32.868816],[-83.67466300000001,32.868575],[-83.67528800000001,32.868010000000005]]},"id":"8944c0a221bffff-13d6e0d4f67489cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57062900000001,32.777341]},"id":"8f44c0ba30c5b5b-13ffbf44e46a9240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba36280c1-17d7a81706a3e2b3","8f44c0ba30c5b5b-13ffbf44e46a9240"]},"geometry":{"type":"LineString","coordinates":[[-83.56701600000001,32.781364],[-83.567065,32.780926],[-83.567155,32.78031],[-83.567176,32.780254],[-83.567222,32.780198],[-83.567256,32.780163],[-83.5679753,32.7795612],[-83.57062900000001,32.777341]]},"id":"8744c0ba3ffffff-13f7b46124f1cd9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57541400000001,32.773353]},"id":"8f44c0ba316c444-13b7b39640960767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba316c444-13b7b39640960767","8f44c0ba30c5b5b-13ffbf44e46a9240"]},"geometry":{"type":"LineString","coordinates":[[-83.57062900000001,32.777341],[-83.573177,32.775213],[-83.57541400000001,32.773353]]},"id":"8844c0ba31fffff-179f996e4adcfb15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5600108,32.8345776]},"id":"8f44c0b8e859cf1-17bfb9314d41c445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e859cf1-17bfb9314d41c445","8f44c0b8e859786-13b7f952e6143764"]},"geometry":{"type":"LineString","coordinates":[[-83.5600108,32.8345776],[-83.55995700000001,32.834775]]},"id":"8b44c0b8e859fff-17ffb9421b68bae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55941890000001,32.8355831]},"id":"8f44c0b8ebb1104-139ffaa3398e430e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e859786-13b7f952e6143764","8f44c0b8ebb1104-139ffaa3398e430e"]},"geometry":{"type":"LineString","coordinates":[[-83.55995700000001,32.834775],[-83.55988500000001,32.834819],[-83.559565,32.835253],[-83.559499,32.835371],[-83.55941890000001,32.8355831]]},"id":"8744c0b8effffff-1397fa1036e763d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584958,32.869073]},"id":"8f44c0b8919969b-13f7fc49481b61e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89033c41-179776a30d1115da","8f44c0b8919969b-13f7fc49481b61e6"]},"geometry":{"type":"LineString","coordinates":[[-83.587272,32.869128],[-83.584958,32.869073]]},"id":"8844c0b891fffff-13f7f9762220d40a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8954eb9e-13f7e243e1a69509","8f44c0b8919969b-13f7fc49481b61e6"]},"geometry":{"type":"LineString","coordinates":[[-83.584958,32.869073],[-83.582509,32.869075]]},"id":"8744c0b89ffffff-13f77f46942510c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573812,32.852933]},"id":"8f44c0b881446d8-17ffb77f8a9be246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b88063a13-13b7f7ae6b1c7a26","8f44c0b881446d8-17ffb77f8a9be246"]},"geometry":{"type":"LineString","coordinates":[[-83.573812,32.852933],[-83.573795,32.85421],[-83.57377600000001,32.855071],[-83.57373700000001,32.855659]]},"id":"8844c0b881fffff-17dfd78ebc61021d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b88063a13-13b7f7ae6b1c7a26","8f44c0b8806a48b-17ff981a85b3e5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.57373700000001,32.855659],[-83.573667,32.855812],[-83.573614,32.855998],[-83.5736,32.856116],[-83.573564,32.85642]]},"id":"8944c0b8807ffff-179fb7f3e5579d02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574319,32.861154]},"id":"8f44c0b8820615e-139fd642abcca4ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b8820615e-139fd642abcca4ac","8f44c0b8806a48b-17ff981a85b3e5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.573564,32.85642],[-83.573518,32.856853],[-83.573446,32.857641],[-83.573437,32.857837],[-83.57342700000001,32.858258],[-83.57342,32.858917000000005],[-83.573431,32.859197],[-83.57346600000001,32.859426],[-83.573552,32.859705000000005],[-83.573682,32.859989],[-83.574077,32.860753],[-83.574217,32.861006],[-83.574319,32.861154]]},"id":"8744c0b88ffffff-13ffd7fa69e626f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668402,32.88405]},"id":"8f44c0a04d5e258-13f7f090cfd3c698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669695,32.8844634]},"id":"8f44c0a04d4aa58-13f7ad68afa6f452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d5e258-13f7f090cfd3c698","8f44c0a04d4aa58-13f7ad68afa6f452"]},"geometry":{"type":"LineString","coordinates":[[-83.668402,32.88405],[-83.66890500000001,32.884197],[-83.669695,32.8844634]]},"id":"8944c0a04d7ffff-13f6aefb738be3eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669684,32.885086]},"id":"8f44c0a04c651ae-13feed6f8b4807a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c651ae-13feed6f8b4807a0","8f44c0a04d4aa58-13f7ad68afa6f452"]},"geometry":{"type":"LineString","coordinates":[[-83.669695,32.8844634],[-83.66977200000001,32.884514],[-83.66993000000001,32.88468],[-83.67010300000001,32.884891],[-83.67015,32.885016],[-83.670139,32.885132],[-83.670027,32.88519],[-83.669948,32.885194000000006],[-83.669842,32.885194000000006],[-83.669768,32.885180000000005],[-83.66970500000001,32.885122],[-83.669684,32.885086]]},"id":"8844c0a04dfffff-1397bccb3f0a8168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c651ae-13feed6f8b4807a0","8f44c0a04d4aa58-13f7ad68afa6f452"]},"geometry":{"type":"LineString","coordinates":[[-83.669684,32.885086],[-83.669695,32.8844634]]},"id":"8844c0a04dfffff-13bebd6c10a73a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739123,32.901333]},"id":"8f44c0a2c315831-13b723e8280754e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c315831-13b723e8280754e5","8f44c0a2c3146aa-139e85692f59657f"]},"geometry":{"type":"LineString","coordinates":[[-83.739123,32.901333],[-83.738507,32.901316]]},"id":"8a44c0a2c317fff-139fd4a8a74d17f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c3146aa-139e85692f59657f","8f44c0a2c316491-139646e20407e8d1"]},"geometry":{"type":"LineString","coordinates":[[-83.738507,32.901316],[-83.737904,32.901274]]},"id":"8a44c0a2c317fff-139f6625930e39f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737262,32.901246]},"id":"8f44c0a2c3a46ed-13fec8734582a99c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c3a46ed-13fec8734582a99c","8f44c0a2c316491-139646e20407e8d1"]},"geometry":{"type":"LineString","coordinates":[[-83.737904,32.901274],[-83.737262,32.901246]]},"id":"8944c0a2c3bffff-13f787aaa4b10a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e86400b-13b7e21485c3c906","8f44c0b1e80db31-13b7c7288d29964a"]},"geometry":{"type":"LineString","coordinates":[[-83.659148,32.790124],[-83.65960000000001,32.790132],[-83.66122800000001,32.790121]]},"id":"8844c0b1e9fffff-13b7c49e8942b7b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663291,32.790104]},"id":"8f44c0b1c4b3b6a-1397bd0b27a07942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e86400b-13b7e21485c3c906","8f44c0b1c4b3b6a-1397bd0b27a07942"]},"geometry":{"type":"LineString","coordinates":[[-83.66122800000001,32.790121],[-83.663291,32.790104]]},"id":"8744c0b1effffff-139eff8fdd5576b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557758,32.827364]},"id":"8f44c0b8e914824-179fbeb14810b3a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e914824-179fbeb14810b3a9","8f44c0b81641220-13dfe110263c7e79"]},"geometry":{"type":"LineString","coordinates":[[-83.557758,32.827364],[-83.556787,32.826261]]},"id":"8744c0b81ffffff-17b7ffe0b31f6385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81641220-13dfe110263c7e79","8f44c0b81673a2a-13bfe370e78c2452"]},"geometry":{"type":"LineString","coordinates":[[-83.556787,32.826261],[-83.555813,32.825161]]},"id":"8944c0b8167ffff-1397e24085c42e27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5358765,32.8191239]},"id":"8f44c0b8310222c-13f7f41d3ba8ff00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5362166,32.8181974]},"id":"8f44c0b83131ae9-17bff348a4204a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b83131ae9-17bff348a4204a00","8f44c0b8310222c-13f7f41d3ba8ff00"]},"geometry":{"type":"LineString","coordinates":[[-83.5358765,32.8191239],[-83.5362166,32.8181974]]},"id":"8944c0b8313ffff-13dff3b2e2c38256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b83131ae9-17bff348a4204a00","8f44c0b838a290a-17f7f03e4f8d2c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.5362166,32.8181974],[-83.537462,32.814805]]},"id":"8744c0b83ffffff-139ff1c379116c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538842,32.811621]},"id":"8f44c0b839a42f0-179fecdfc1e5df2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b839a42f0-179fecdfc1e5df2e","8f44c0b838a290a-17f7f03e4f8d2c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.537462,32.814805],[-83.537599,32.814433],[-83.537704,32.814095],[-83.53773600000001,32.813677000000006],[-83.53775800000001,32.813541],[-83.537886,32.813074],[-83.537936,32.812945],[-83.53802800000001,32.812758],[-83.53810100000001,32.812637],[-83.53872000000001,32.811773],[-83.538796,32.811673],[-83.538842,32.811621]]},"id":"8844c0b839fffff-13dffee814ca2d51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71450300000001,32.88721]},"id":"8f44c0a21751d0e-13be4003a4ae034e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714518,32.885685]},"id":"8f44c0a21776c51-17f73ffa4cfda322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21751d0e-13be4003a4ae034e","8f44c0a21776c51-17f73ffa4cfda322"]},"geometry":{"type":"LineString","coordinates":[[-83.71450300000001,32.88721],[-83.714527,32.886359],[-83.71453100000001,32.885913],[-83.714526,32.885768],[-83.714518,32.885685]]},"id":"8844c0a217fffff-17dfbff88b3008b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716448,32.882793]},"id":"8f44c0a2101b2ca-17f7bb4409f092b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2101b2ca-17f7bb4409f092b0","8f44c0a21776c51-17f73ffa4cfda322"]},"geometry":{"type":"LineString","coordinates":[[-83.714518,32.885685],[-83.714495,32.885494],[-83.714481,32.885419],[-83.714398,32.884991],[-83.714382,32.884869],[-83.714387,32.884591],[-83.714427,32.884397],[-83.71447400000001,32.884259],[-83.714546,32.88411],[-83.714667,32.883926],[-83.714731,32.883842],[-83.71482,32.883744],[-83.71491,32.883662],[-83.715007,32.883583],[-83.71512700000001,32.883501],[-83.715255,32.883429],[-83.71539200000001,32.883359],[-83.71557100000001,32.883291],[-83.715766,32.883229],[-83.715936,32.883153],[-83.71611800000001,32.883059],[-83.716448,32.882793]]},"id":"8744c0a21ffffff-13d77eb475eb1356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71764200000001,32.882053]},"id":"8f44c0a2100e368-13973859cd0a6ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2100e368-13973859cd0a6ac0","8f44c0a2101b2ca-17f7bb4409f092b0"]},"geometry":{"type":"LineString","coordinates":[[-83.716448,32.882793],[-83.716786,32.882548],[-83.716874,32.882477],[-83.717005,32.882371],[-83.71712500000001,32.882286],[-83.71724300000001,32.882213],[-83.717375,32.88214],[-83.717498,32.882088],[-83.71764200000001,32.882053]]},"id":"8844c0a211fffff-17f639db8f5a4d67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722671,32.883535]},"id":"8f44c0a21a9d400-17b76c12a105d4f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2100e368-13973859cd0a6ac0","8f44c0a21a9d400-17b76c12a105d4f8"]},"geometry":{"type":"LineString","coordinates":[[-83.71764200000001,32.882053],[-83.71809,32.881973],[-83.718174,32.881966000000006],[-83.71827,32.881965],[-83.718362,32.88197],[-83.71856600000001,32.882005],[-83.71872300000001,32.882046],[-83.722058,32.882801],[-83.72217,32.882832],[-83.722345,32.88291],[-83.722418,32.882956],[-83.722485,32.883015],[-83.72254000000001,32.883082],[-83.722578,32.883155],[-83.72262400000001,32.883291],[-83.722671,32.883535]]},"id":"8744c0a21ffffff-1796f1c1e9423300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74545400000001,32.911229]},"id":"8f44c0a2d5542e4-13dff47348b83823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d58a84c-139fff6162cea19e","8f44c0a2d5542e4-13dff47348b83823"]},"geometry":{"type":"LineString","coordinates":[[-83.74545400000001,32.911229],[-83.743605,32.911208],[-83.74229600000001,32.911175],[-83.740977,32.911155]]},"id":"8844c0a2d5fffff-13bdf9ea5d20a560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738944,32.911099]},"id":"8f44c0a28969c72-13fee45801c0e19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a28969c72-13fee45801c0e19d","8f44c0a2d58a84c-139fff6162cea19e"]},"geometry":{"type":"LineString","coordinates":[[-83.740977,32.911155],[-83.738944,32.911099]]},"id":"8844c0a2d5fffff-139e61dcb15e273b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64628900000001,32.8574219]},"id":"8f44c0a30b2854a-17f6f68d6144efff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647228,32.857861]},"id":"8f44c0a30b74932-1397e4428473dd4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30b2854a-17f6f68d6144efff","8f44c0a30b74932-1397e4428473dd4e"]},"geometry":{"type":"LineString","coordinates":[[-83.64628900000001,32.8574219],[-83.64636730000001,32.8573906],[-83.646438,32.8573917],[-83.64654300000001,32.857436],[-83.646583,32.85745],[-83.647228,32.857861]]},"id":"8844c0a30bfffff-17d6e560ea116938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649465,32.859581]},"id":"8f44c0a30b6d171-17b6fecc6f87e0a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30b6d171-17b6fecc6f87e0a6","8f44c0a30b74932-1397e4428473dd4e"]},"geometry":{"type":"LineString","coordinates":[[-83.647228,32.857861],[-83.64829900000001,32.858553],[-83.64885500000001,32.858925],[-83.649146,32.859124],[-83.649214,32.859191],[-83.64927,32.859262],[-83.649465,32.859581]]},"id":"8744c0a35ffffff-13f7f15f4ee9edb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a356069a1-17bed5b8aa1f487d","8f44c0a30b6d171-17b6fecc6f87e0a6"]},"geometry":{"type":"LineString","coordinates":[[-83.649465,32.859581],[-83.64954200000001,32.859721],[-83.649606,32.859824],[-83.64970600000001,32.859938],[-83.64975700000001,32.859983],[-83.64989800000001,32.860072],[-83.650007,32.860121],[-83.650163,32.860169],[-83.650298,32.860205],[-83.65074800000001,32.860307],[-83.65097200000001,32.860366],[-83.651532,32.86054],[-83.651911,32.860663],[-83.652106,32.860709],[-83.652251,32.860726],[-83.652426,32.860733],[-83.652736,32.860706],[-83.653183,32.860618]]},"id":"8844c0a357fffff-17befa82ec049888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656557,32.86005]},"id":"8f44c0a35746163-17dfcd7bea5793ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a356069a1-17bed5b8aa1f487d","8f44c0a35746163-17dfcd7bea5793ec"]},"geometry":{"type":"LineString","coordinates":[[-83.653183,32.860618],[-83.654577,32.860303],[-83.65539100000001,32.860115],[-83.655665,32.860059],[-83.65589,32.860028],[-83.65609400000001,32.860023000000005],[-83.656333,32.860031],[-83.656557,32.86005]]},"id":"8844c0a357fffff-17dfd19ed4362163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657114,32.86014]},"id":"8f44c0a3574434b-1797cc1fc1832353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35746163-17dfcd7bea5793ec","8f44c0a3574434b-1797cc1fc1832353"]},"geometry":{"type":"LineString","coordinates":[[-83.656557,32.86005],[-83.6568,32.86008],[-83.657114,32.86014]]},"id":"8a44c0a35747fff-17f6dccd61d8066c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3574434b-1797cc1fc1832353","8f44c0a352b42b3-13f7c7d82d66b399"]},"geometry":{"type":"LineString","coordinates":[[-83.657114,32.86014],[-83.657505,32.860294],[-83.65777800000001,32.860419],[-83.65789500000001,32.860481],[-83.6581,32.86061],[-83.658429,32.860857],[-83.658635,32.861061],[-83.658867,32.861324]]},"id":"8744c0a35ffffff-17d6c9d7113342e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a352855a1-13d7c60c25f7d544","8f44c0a352b42b3-13f7c7d82d66b399"]},"geometry":{"type":"LineString","coordinates":[[-83.658867,32.861324],[-83.659603,32.862502]]},"id":"8944c0a352bffff-13f7e6f220b7fb3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a352d582b-139fe24b809ed599","8f44c0a352855a1-13d7c60c25f7d544"]},"geometry":{"type":"LineString","coordinates":[[-83.659603,32.862502],[-83.660621,32.864002],[-83.6608298,32.864297300000004],[-83.6609526,32.8644502],[-83.66108150000001,32.864595],[-83.66114,32.864629]]},"id":"8844c0a353fffff-17fef43b5174b7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66605700000001,32.831184]},"id":"8f44c0b1b108ba0-17f6b64a68ceec61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b12a65c-17f6f63bf6fb0306","8f44c0b1b108ba0-17f6b64a68ceec61"]},"geometry":{"type":"LineString","coordinates":[[-83.66605700000001,32.831184],[-83.6660801,32.8305671]]},"id":"8944c0b1b13ffff-17b7f6433af33ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66610100000001,32.83001]},"id":"8f44c0b1b12e7b0-1796f62eec5c2264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b12a65c-17f6f63bf6fb0306","8f44c0b1b12e7b0-1796f62eec5c2264"]},"geometry":{"type":"LineString","coordinates":[[-83.6660801,32.8305671],[-83.66610100000001,32.83001]]},"id":"8a44c0b1b12ffff-17b6f63562e3da08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66611,32.829351]},"id":"8f44c0b1b12021d-13fef6294af44b2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b12e7b0-1796f62eec5c2264","8f44c0b1b12021d-13fef6294af44b2a"]},"geometry":{"type":"LineString","coordinates":[[-83.66610100000001,32.83001],[-83.66611,32.829351]]},"id":"8944c0b1b13ffff-13b6f62c1b8a874a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666122,32.828679]},"id":"8f44c0b1b1241a5-13d6f621c6924bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1241a5-13d6f621c6924bea","8f44c0b1b12021d-13fef6294af44b2a"]},"geometry":{"type":"LineString","coordinates":[[-83.66611,32.829351],[-83.666122,32.828679]]},"id":"8a44c0b1b127fff-1396f6258b2de811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666138,32.828043]},"id":"8f44c0b1b89da46-17b6f617ce073d77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1241a5-13d6f621c6924bea","8f44c0b1b89da46-17b6f617ce073d77"]},"geometry":{"type":"LineString","coordinates":[[-83.666122,32.828679],[-83.666138,32.828043]]},"id":"8944c0b1b8bffff-13ffb61cc0e8b7fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666137,32.827326]},"id":"8f44c0b1b883936-17f6f61862a4c45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b883936-17f6f61862a4c45b","8f44c0b1b89da46-17b6f617ce073d77"]},"geometry":{"type":"LineString","coordinates":[[-83.666138,32.828043],[-83.66613600000001,32.827396],[-83.666137,32.827326]]},"id":"8944c0b1b8bffff-17d6f61863f54250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66615,32.8267]},"id":"8f44c0b1b884460-17ffb6104c855339"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b883936-17f6f61862a4c45b","8f44c0b1b884460-17ffb6104c855339"]},"geometry":{"type":"LineString","coordinates":[[-83.666137,32.827326],[-83.66615,32.8267]]},"id":"8a44c0b1b887fff-17b7b614532ad4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666171,32.825975]},"id":"8f44c0b1b8b5a8c-13bef6032d5db516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b884460-17ffb6104c855339","8f44c0b1b8b5a8c-13bef6032d5db516"]},"geometry":{"type":"LineString","coordinates":[[-83.66615,32.8267],[-83.66616300000001,32.826437],[-83.666167,32.826195000000006],[-83.666171,32.825975]]},"id":"8944c0b1b8bffff-139fb60819e51b6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702914,32.859161]},"id":"8f44c0a208ad4c0-13bffc4ec32ae64b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702577,32.860384]},"id":"8f44c0a208f2423-17be5d21654dccf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208ad4c0-13bffc4ec32ae64b","8f44c0a208f2423-17be5d21654dccf2"]},"geometry":{"type":"LineString","coordinates":[[-83.702914,32.859161],[-83.70293600000001,32.859242],[-83.702949,32.859308],[-83.70295,32.859451],[-83.70292900000001,32.859558],[-83.702876,32.859732],[-83.70262500000001,32.860262],[-83.702577,32.860384]]},"id":"8844c0a209fffff-17b67c8c50150918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208d0b0d-13dedcbc20a2116a","8f44c0a208f2423-17be5d21654dccf2"]},"geometry":{"type":"LineString","coordinates":[[-83.702577,32.860384],[-83.702579,32.860467],[-83.70258700000001,32.860549],[-83.702627,32.860791],[-83.70273900000001,32.861252]]},"id":"8944c0a208fffff-17bedcf847739273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70278400000001,32.86204]},"id":"8f44c0a208de029-13b75ca002e6f9d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208de029-13b75ca002e6f9d3","8f44c0a208d0b0d-13dedcbc20a2116a"]},"geometry":{"type":"LineString","coordinates":[[-83.70273900000001,32.861252],[-83.702807,32.861508],[-83.702827,32.861613000000006],[-83.702837,32.8617],[-83.70283900000001,32.861778],[-83.70283,32.861863],[-83.702808,32.861967],[-83.70278400000001,32.86204]]},"id":"8944c0a208fffff-13d67c921a5bb261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76731600000001,32.818691]},"id":"8f44c0b0d361360-13f5ff138376cac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d361360-13f5ff138376cac3","8f44c0b0d346295-13d7e30127664bbc"]},"geometry":{"type":"LineString","coordinates":[[-83.76731600000001,32.818691],[-83.767162,32.818742],[-83.76693,32.81884],[-83.766721,32.818908],[-83.766452,32.818973],[-83.766166,32.819013000000005],[-83.765707,32.819057]]},"id":"8944c0b0d37ffff-13f7d1034bcd9633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d3506f2-13d5c5b3cc4224de","8f44c0b0d346295-13d7e30127664bbc"]},"geometry":{"type":"LineString","coordinates":[[-83.765707,32.819057],[-83.76531,32.819091],[-83.7651,32.819117],[-83.76491800000001,32.819159],[-83.764706,32.819231],[-83.76460200000001,32.819284]]},"id":"8944c0b0d37ffff-13f5f4604e19a105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.764262,32.819864]},"id":"8f44c0b0d22c25e-13bfc6884c99600e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d3506f2-13d5c5b3cc4224de","8f44c0b0d22c25e-13bfc6884c99600e"]},"geometry":{"type":"LineString","coordinates":[[-83.76460200000001,32.819284],[-83.76456200000001,32.819315],[-83.764483,32.819397],[-83.76439900000001,32.81951],[-83.76434,32.81962],[-83.76430900000001,32.819699],[-83.764262,32.819864]]},"id":"8844c0b0d3fffff-13fdd632eeef6ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706528,32.749958]},"id":"8f44c0b04600196-1397d37c05b66fe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70914400000001,32.751908]},"id":"8f44c0b04644469-17d6cd1907f3d14f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04600196-1397d37c05b66fe4","8f44c0b04644469-17d6cd1907f3d14f"]},"geometry":{"type":"LineString","coordinates":[[-83.706528,32.749958],[-83.706506,32.750388],[-83.706496,32.750751],[-83.706518,32.750875],[-83.70656100000001,32.750964],[-83.706621,32.751033],[-83.706686,32.7511],[-83.70676800000001,32.751156],[-83.70692100000001,32.75122],[-83.707052,32.751268],[-83.70761800000001,32.751477],[-83.708578,32.751831],[-83.70868700000001,32.75186],[-83.708813,32.75188],[-83.70914400000001,32.751908]]},"id":"8844c0b047fffff-17bef132aab3d5bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710381,32.751863]},"id":"8f44c0b04661269-17be6a13eec81e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04644469-17d6cd1907f3d14f","8f44c0b04661269-17be6a13eec81e2a"]},"geometry":{"type":"LineString","coordinates":[[-83.70914400000001,32.751908],[-83.710381,32.751863]]},"id":"8944c0b0467ffff-17de7b9678e8a0dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76629100000001,32.767479]},"id":"8f44c0b281905a0-13dfe1942d84b4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76701200000001,32.767522]},"id":"8f44c0b281950ed-13f5ffd1808a6a90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b281905a0-13dfe1942d84b4bf","8f44c0b281950ed-13f5ffd1808a6a90"]},"geometry":{"type":"LineString","coordinates":[[-83.76629100000001,32.767479],[-83.76638100000001,32.767508],[-83.766408,32.767513],[-83.76701200000001,32.767522]]},"id":"8a44c0b28197fff-13f5d0b425b2a0f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.772951,32.767412]},"id":"8f44c0b2812906c-13b5b151aab2e993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b281950ed-13f5ffd1808a6a90","8f44c0b2812906c-13b5b151aab2e993"]},"geometry":{"type":"LineString","coordinates":[[-83.76701200000001,32.767522],[-83.76732700000001,32.767521],[-83.772532,32.767531000000005],[-83.77262300000001,32.767485],[-83.772951,32.767412]]},"id":"8844c0b281fffff-13f5b88c3d5b0f39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77417600000001,32.766831]},"id":"8f44c0b288dddb5-13d5ee5402490be6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b2812906c-13b5b151aab2e993","8f44c0b288dddb5-13d5ee5402490be6"]},"geometry":{"type":"LineString","coordinates":[[-83.772951,32.767412],[-83.773201,32.767342],[-83.77347900000001,32.767234],[-83.773814,32.767063],[-83.77417600000001,32.766831]]},"id":"8744c0b28ffffff-1397efc81f85c35c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640659,32.800358]},"id":"8f44c0badb72795-179ff44c2daa9c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64141500000001,32.800345]},"id":"8f44c0badb7020d-1797f273a4306bff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb7020d-1797f273a4306bff","8f44c0badb72795-179ff44c2daa9c9f"]},"geometry":{"type":"LineString","coordinates":[[-83.640659,32.800358],[-83.640952,32.800347],[-83.640984,32.800345],[-83.64141500000001,32.800345]]},"id":"8a44c0badb77fff-179ff35ff42f50be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb7020d-1797f273a4306bff","8f44c0badb62183-179ef0cc81e9fa6e"]},"geometry":{"type":"LineString","coordinates":[[-83.64141500000001,32.800345],[-83.642092,32.800356]]},"id":"8944c0badb7ffff-179ff1a01613c9cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642741,32.800371000000005]},"id":"8f44c0badb6032e-17b7ef36e4916db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb6032e-17b7ef36e4916db4","8f44c0badb62183-179ef0cc81e9fa6e"]},"geometry":{"type":"LineString","coordinates":[[-83.642092,32.800356],[-83.64240000000001,32.800367],[-83.642741,32.800371000000005]]},"id":"8a44c0badb67fff-17b6f001bd4116b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657251,32.870109]},"id":"8f44c0a318190dc-17feebca2aef9cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a318e3ba2-1396cb14e64427d3","8f44c0a318190dc-17feebca2aef9cd8"]},"geometry":{"type":"LineString","coordinates":[[-83.657251,32.870109],[-83.65754100000001,32.871178]]},"id":"8844c0a319fffff-17befb6f815028d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658342,32.873939]},"id":"8f44c0a31b9578d-17d7e9204d8a3604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a318e3ba2-1396cb14e64427d3","8f44c0a31b9578d-17d7e9204d8a3604"]},"geometry":{"type":"LineString","coordinates":[[-83.65754100000001,32.871178],[-83.65817,32.873395],[-83.658342,32.873939]]},"id":"8744c0a31ffffff-17f6da1eab36b7be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71457000000001,32.789048]},"id":"8f44c0b01699996-13973fd9ceeccb94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717439,32.789111000000005]},"id":"8f44c0b016f5321-13be78d8a443daf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016f5321-13be78d8a443daf8","8f44c0b01699996-13973fd9ceeccb94"]},"geometry":{"type":"LineString","coordinates":[[-83.71457000000001,32.789048],[-83.717439,32.789111000000005]]},"id":"8844c0b017fffff-1396bc5934e8dddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7185793,32.7875972]},"id":"8f44c0b0160172c-17fe760ff8d3bed5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016f5321-13be78d8a443daf8","8f44c0b0160172c-17fe760ff8d3bed5"]},"geometry":{"type":"LineString","coordinates":[[-83.717439,32.789111000000005],[-83.717832,32.789116],[-83.717965,32.789099],[-83.718016,32.789088],[-83.718154,32.789028],[-83.71826700000001,32.78896],[-83.718342,32.788894],[-83.718404,32.788834],[-83.71844700000001,32.788778],[-83.718528,32.788649],[-83.71856000000001,32.788584],[-83.718598,32.788457],[-83.718607,32.788387],[-83.718613,32.788044],[-83.71861600000001,32.787866],[-83.71860500000001,32.787748],[-83.7185793,32.7875972]]},"id":"8844c0b017fffff-17fef6c185735860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7123275,32.8312803]},"id":"8f44c0b0a2802a3-179e7553593d5275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2802a3-179e7553593d5275","8f44c0b0a2d38da-17f662a20a081851"]},"geometry":{"type":"LineString","coordinates":[[-83.7123275,32.8312803],[-83.7135092,32.8313878],[-83.7136064,32.831378900000004],[-83.7135781,32.8319381],[-83.7134403,32.8328896],[-83.71343040000001,32.8335516],[-83.71343040000001,32.8336674]]},"id":"8844c0b0a3fffff-139f72ec312dc48b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2d38da-17f662a20a081851","8f44c0a249452c1-17fe7ffa43e3b3a3"]},"geometry":{"type":"LineString","coordinates":[[-83.71343040000001,32.8336674],[-83.71343,32.834183],[-83.713426,32.834991],[-83.713436,32.835172],[-83.71346700000001,32.835354],[-83.713509,32.835507],[-83.71366900000001,32.835817],[-83.713786,32.83599],[-83.713807,32.836011],[-83.71406400000001,32.836263],[-83.714257,32.836409],[-83.714518,32.836551]]},"id":"8644c0b0fffffff-13d7720f6c01d4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2496865d-17ff7e3b61047a94","8f44c0a249452c1-17fe7ffa43e3b3a3"]},"geometry":{"type":"LineString","coordinates":[[-83.714518,32.836551],[-83.71462100000001,32.83661],[-83.714815,32.836665],[-83.715072,32.83672],[-83.71523300000001,32.836751]]},"id":"8944c0a2497ffff-17d67f1ed135247e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2496865d-17ff7e3b61047a94","8f44c0b0b58a594-179ff97bcf81fcce"]},"geometry":{"type":"LineString","coordinates":[[-83.71523300000001,32.836751],[-83.715416,32.836785],[-83.715852,32.836809],[-83.715942,32.836813],[-83.71694600000001,32.836804],[-83.717178,32.836806]]},"id":"8644c0b0fffffff-179f3bdc9c57633a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72085200000001,32.835456]},"id":"8f44c0b0b50169b-13d630838acc25d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b50169b-13d630838acc25d3","8f44c0b0b58a594-179ff97bcf81fcce"]},"geometry":{"type":"LineString","coordinates":[[-83.717178,32.836806],[-83.717448,32.836799],[-83.71753500000001,32.836793],[-83.717662,32.836768],[-83.717803,32.836729000000005],[-83.717949,32.836678],[-83.718073,32.836624],[-83.718242,32.836517],[-83.718387,32.836405],[-83.71897200000001,32.835794],[-83.71906800000001,32.835704],[-83.719233,32.835585],[-83.719386,32.835507],[-83.71958000000001,32.835439],[-83.719763,32.835388],[-83.71986000000001,32.835369],[-83.719976,32.835365],[-83.720144,32.835371],[-83.72085200000001,32.835456]]},"id":"8844c0b0b5fffff-13973515263a5d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70378000000001,32.880774]},"id":"8f44c0a21495c6b-13f7da318b245a8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a21495c6b-13f7da318b245a8a","8f44c0a238700e8-139e61c26ddc531c"]},"geometry":{"type":"LineString","coordinates":[[-83.70378000000001,32.880774],[-83.70340200000001,32.880772],[-83.701914,32.880713],[-83.70179,32.880713],[-83.701513,32.880729],[-83.700863,32.880808],[-83.700681,32.880813]]},"id":"8744c0a23ffffff-13f67dfaf0c48f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2380d0d0-17ff63f268b445ca","8f44c0a238700e8-139e61c26ddc531c"]},"geometry":{"type":"LineString","coordinates":[[-83.700681,32.880813],[-83.70047500000001,32.880786],[-83.700365,32.880761],[-83.699785,32.880584]]},"id":"8844c0a239fffff-13dff2dc7fed386c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698966,32.8803463]},"id":"8f44c0a2380e0f1-17fe75f2434813d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2380d0d0-17ff63f268b445ca","8f44c0a2380e0f1-17fe75f2434813d0"]},"geometry":{"type":"LineString","coordinates":[[-83.699785,32.880584],[-83.698966,32.8803463]]},"id":"8a44c0a2380ffff-17b6e4f25eca47d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65677600000001,32.812441]},"id":"8f44c0b1849e8a3-139fecf30b08c7c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65732700000001,32.812457]},"id":"8f44c0b1849cb98-13bfeb9aad01712c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1849e8a3-139fecf30b08c7c7","8f44c0b1849cb98-13bfeb9aad01712c"]},"geometry":{"type":"LineString","coordinates":[[-83.65677600000001,32.812441],[-83.65732700000001,32.812457]]},"id":"8a44c0b1849ffff-13b6ec46db110eb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848e931-13b6e993e1fda564","8f44c0b1849cb98-13bfeb9aad01712c"]},"geometry":{"type":"LineString","coordinates":[[-83.65732700000001,32.812457],[-83.658157,32.812477]]},"id":"8944c0b184bffff-13bfea9747154a8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658986,32.81252]},"id":"8f44c0b184ab0f5-13d7c78dc6fa5c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1848e931-13b6e993e1fda564","8f44c0b184ab0f5-13d7c78dc6fa5c50"]},"geometry":{"type":"LineString","coordinates":[[-83.658157,32.812477],[-83.658986,32.81252]]},"id":"8944c0b184bffff-13d7d890d8654df8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89545d64-13df81f3e2aad37e","8f44c0b8919969b-13f7fc49481b61e6"]},"geometry":{"type":"LineString","coordinates":[[-83.584958,32.869073],[-83.585018,32.868451],[-83.585025,32.868254],[-83.584992,32.868183],[-83.584917,32.868107],[-83.584812,32.868065],[-83.584441,32.868054],[-83.584075,32.868052],[-83.582637,32.868032]]},"id":"8744c0b89ffffff-13d7fe4186c34397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89546493-13dfa4b5893829a3","8f44c0b89545d64-13df81f3e2aad37e"]},"geometry":{"type":"LineString","coordinates":[[-83.582637,32.868032],[-83.581508,32.868009]]},"id":"8944c0b8957ffff-13d7d354bbe25411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150cc25d-139fb9aac72af2fc","8f44c0b1505b6a1-13f7b5f38091bcb4"]},"geometry":{"type":"LineString","coordinates":[[-83.664674,32.757528],[-83.664782,32.757541],[-83.664958,32.757542],[-83.66514400000001,32.757528],[-83.66576,32.757471],[-83.665828,32.757475],[-83.66600000000001,32.757517],[-83.66605200000001,32.75752],[-83.666098,32.757508],[-83.666196,32.757461]]},"id":"8844c0b151fffff-1397f7caf0e546ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1505b6a1-13f7b5f38091bcb4","8f44c0b15059561-13beb4ac0583b6aa"]},"geometry":{"type":"LineString","coordinates":[[-83.666196,32.757461],[-83.66672000000001,32.757165]]},"id":"8844c0b151fffff-139eb54fcd203d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66771800000001,32.756673]},"id":"8f44c0b1504eb6d-13feb23c49c4cf3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15059561-13beb4ac0583b6aa","8f44c0b1504eb6d-13feb23c49c4cf3f"]},"geometry":{"type":"LineString","coordinates":[[-83.66672000000001,32.757165],[-83.666784,32.757134],[-83.667512,32.756725],[-83.66761100000001,32.756679000000005],[-83.66771800000001,32.756673]]},"id":"8944c0b1507ffff-1396b3784910e952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668445,32.756706]},"id":"8f44c0b1506b2d9-139ff075e12280e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1506b2d9-139ff075e12280e8","8f44c0b1504eb6d-13feb23c49c4cf3f"]},"geometry":{"type":"LineString","coordinates":[[-83.66771800000001,32.756673],[-83.66782900000001,32.756678],[-83.66802200000001,32.756697],[-83.668193,32.756709],[-83.668445,32.756706]]},"id":"8a44c0b1504ffff-1397b15935a9d48d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67236700000001,32.839129]},"id":"8f44c0b1b362b86-13d7a6e2a6f49c56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b36610a-13b6a6dd0503130f","8f44c0b1b362b86-13d7a6e2a6f49c56"]},"geometry":{"type":"LineString","coordinates":[[-83.67236700000001,32.839129],[-83.672376,32.838692]]},"id":"8a44c0b1b367fff-13bfb6dfd0a108b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b36610a-13b6a6dd0503130f","8f44c0b1bad9c1c-13f7a6dbccb24e01"]},"geometry":{"type":"LineString","coordinates":[[-83.672376,32.838692],[-83.67237800000001,32.838152]]},"id":"8844c0b1b3fffff-139fe6dc6865f1fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1badca10-17ffe6d12c0b6912","8f44c0b1bad9c1c-13f7a6dbccb24e01"]},"geometry":{"type":"LineString","coordinates":[[-83.67237800000001,32.838152],[-83.67238900000001,32.838026],[-83.67239500000001,32.837555]]},"id":"8a44c0b1badffff-17beb6d421a8c1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67240600000001,32.836899]},"id":"8f44c0b1bac29b5-17d7e6ca499e1729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1badca10-17ffe6d12c0b6912","8f44c0b1bac29b5-17d7e6ca499e1729"]},"geometry":{"type":"LineString","coordinates":[[-83.67239500000001,32.837555],[-83.67240600000001,32.836899]]},"id":"8944c0b1bafffff-17b6e6cdb6b8436b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67241200000001,32.836464]},"id":"8f44c0b1bac6d03-17d6a6c68e93552c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bac29b5-17d7e6ca499e1729","8f44c0b1bac6d03-17d6a6c68e93552c"]},"geometry":{"type":"LineString","coordinates":[[-83.67240600000001,32.836899],[-83.67242,32.836772],[-83.67242200000001,32.836652],[-83.67241200000001,32.836464]]},"id":"8944c0b1bafffff-17deb6c377381032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baf022d-13dfe6e7061681c4","8f44c0b1bac6d03-17d6a6c68e93552c"]},"geometry":{"type":"LineString","coordinates":[[-83.67241200000001,32.836464],[-83.672359,32.836329],[-83.67235000000001,32.836239],[-83.67236000000001,32.83607]]},"id":"8a44c0b1baf7fff-13def6e3680700c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672548,32.834753]},"id":"8f44c0b1ba1e75e-139ea671835d2ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba1e75e-139ea671835d2ef0","8f44c0b1baf022d-13dfe6e7061681c4"]},"geometry":{"type":"LineString","coordinates":[[-83.67236000000001,32.83607],[-83.672447,32.835714],[-83.672469,32.835547000000005],[-83.672548,32.834753]]},"id":"8844c0b1bbfffff-13b6b6a045afc0dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6726019,32.833434000000004]},"id":"8f44c0b1ba14ab5-17f6e64fd659f8cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba14ab5-17f6e64fd659f8cc","8f44c0b1ba1e75e-139ea671835d2ef0"]},"geometry":{"type":"LineString","coordinates":[[-83.672548,32.834753],[-83.672584,32.834193],[-83.6726019,32.833434000000004]]},"id":"8944c0b1ba3ffff-17fea65c93dece01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6726225,32.832560900000004]},"id":"8f44c0b1ba3654b-13beb642fded0b86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba14ab5-17f6e64fd659f8cc","8f44c0b1ba3654b-13beb642fded0b86"]},"geometry":{"type":"LineString","coordinates":[[-83.6726019,32.833434000000004],[-83.6726225,32.832560900000004]]},"id":"8844c0b1bbfffff-13dff6496557718f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67258600000001,32.831826]},"id":"8f44c0b1bba8a94-13f7e659c2f4154f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba3654b-13beb642fded0b86","8f44c0b1bba8a94-13f7e659c2f4154f"]},"geometry":{"type":"LineString","coordinates":[[-83.6726225,32.832560900000004],[-83.672628,32.832138],[-83.67262500000001,32.831924],[-83.67258600000001,32.831826]]},"id":"8944c0b1bbbffff-13d6e642c6069f50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730806,32.913612]},"id":"8f44c0a2888a205-139f983643d7a883"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2888a205-139f983643d7a883","8f44c0a288a6866-13f7d7734c452f5b"]},"geometry":{"type":"LineString","coordinates":[[-83.73111800000001,32.910854],[-83.731271,32.91124],[-83.73130900000001,32.911451],[-83.731317,32.911645],[-83.731268,32.911873],[-83.730924,32.91283],[-83.730873,32.913001],[-83.730835,32.913218],[-83.730816,32.9133],[-83.730806,32.913612]]},"id":"8944c0a288bffff-17beb78781f8ed06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7287482,32.915223000000005]},"id":"8f44c0a28115685-179e7d3c6fb8dac6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2888a205-139f983643d7a883","8f44c0a28115685-179e7d3c6fb8dac6"]},"geometry":{"type":"LineString","coordinates":[[-83.730806,32.913612],[-83.730772,32.91406],[-83.730734,32.914211],[-83.73067800000001,32.914367],[-83.730591,32.914535],[-83.73049800000001,32.914673],[-83.730395,32.914808],[-83.730288,32.914904],[-83.730191,32.914973],[-83.73007700000001,32.915011],[-83.729932,32.915048],[-83.729685,32.91509],[-83.729392,32.915129],[-83.728972,32.91519],[-83.7287482,32.915223000000005]]},"id":"8744c0a28ffffff-13d77a08cca28392"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6865633,32.9036836]},"id":"8f44c0a05c4b11a-13f6c439fae88916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c4b0e8-13b6c42d7ba78c28","8f44c0a05c4b11a-13f6c439fae88916"]},"geometry":{"type":"LineString","coordinates":[[-83.6865633,32.9036836],[-83.68658330000001,32.9037892]]},"id":"8c44c0a05c4b1ff-1397c433bdd391bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c4b0e8-13b6c42d7ba78c28","8f44c0a051a594e-13b7e40d7a419caa"]},"geometry":{"type":"LineString","coordinates":[[-83.68658330000001,32.9037892],[-83.68663450000001,32.904015]]},"id":"8844c0a051fffff-13fed41d74df1fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8e38e2-17bfa2388946a9d3","8f44c0b8b8ae0ee-13d7a7b08e78b0ab"]},"geometry":{"type":"LineString","coordinates":[[-83.56718000000001,32.868848],[-83.56942000000001,32.870652]]},"id":"8844c0b8b9fffff-179fe4f48094fa8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8e38e2-17bfa2388946a9d3","8f44c0b8b8e9930-13d7bf8f4d73204c"]},"geometry":{"type":"LineString","coordinates":[[-83.56942000000001,32.870652],[-83.569771,32.870927],[-83.570289,32.871342],[-83.57045600000001,32.871480000000005],[-83.57051,32.871509]]},"id":"8944c0b8b8fffff-13dfb0e49a3028c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69127300000001,32.778447]},"id":"8f44c0b03c95506-17b778ba6f3dc5ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691269,32.779049]},"id":"8f44c0b03c91728-139ff8bcefde6137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c95506-17b778ba6f3dc5ce","8f44c0b03c91728-139ff8bcefde6137"]},"geometry":{"type":"LineString","coordinates":[[-83.69127300000001,32.778447],[-83.691269,32.779049]]},"id":"8a44c0b03c97fff-17dff8bba7462059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b035359a1-13df786f6dd34f91","8f44c0b03c91728-139ff8bcefde6137"]},"geometry":{"type":"LineString","coordinates":[[-83.691269,32.779049],[-83.69126700000001,32.780112],[-83.691277,32.780251],[-83.691293,32.780288],[-83.691348,32.780358],[-83.691393,32.780389]]},"id":"8744c0b03ffffff-13df78b85a749516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69297200000001,32.780555]},"id":"8f44c0b03cd6554-13d6f4948f2251a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03cd6554-13d6f4948f2251a4","8f44c0b035359a1-13df786f6dd34f91"]},"geometry":{"type":"LineString","coordinates":[[-83.691393,32.780389],[-83.691483,32.780431],[-83.691536,32.780444],[-83.691632,32.780455],[-83.692683,32.780465],[-83.692801,32.780487],[-83.69289900000001,32.780516],[-83.69297200000001,32.780555]]},"id":"8744c0b03ffffff-139ff680da9c3ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682218,32.848247]},"id":"8f44c0a26022186-139eeed5cce3ec93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68155900000001,32.84894]},"id":"8f44c0a260067a9-13bf9071a511ea33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26022186-139eeed5cce3ec93","8f44c0a260067a9-13bf9071a511ea33"]},"geometry":{"type":"LineString","coordinates":[[-83.682218,32.848247],[-83.68155900000001,32.84894]]},"id":"8944c0a2603ffff-13f6ffa3bb78c1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681646,32.850675]},"id":"8f44c0a26019649-17f7f03b43d0b50e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26019649-17f7f03b43d0b50e","8f44c0a260067a9-13bf9071a511ea33"]},"geometry":{"type":"LineString","coordinates":[[-83.68155900000001,32.84894],[-83.681323,32.849193],[-83.68127700000001,32.849257],[-83.681247,32.849323000000005],[-83.681235,32.849376],[-83.681239,32.849444000000005],[-83.68132,32.849756],[-83.681379,32.84995],[-83.681449,32.850147],[-83.68151300000001,32.850299],[-83.681646,32.850675]]},"id":"8944c0a2603ffff-17d6d0d001282b51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26019649-17f7f03b43d0b50e","8f44c0a260e8932-13ffade02dfb5eaf"]},"geometry":{"type":"LineString","coordinates":[[-83.681646,32.850675],[-83.68173300000001,32.850873],[-83.681802,32.851],[-83.682001,32.851281],[-83.68261100000001,32.852089]]},"id":"8844c0a261fffff-13bfdf1e4961a990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682618,32.85278]},"id":"8f44c0a260eba70-179f8ddbcfba1b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260eba70-179f8ddbcfba1b46","8f44c0a260e8932-13ffade02dfb5eaf"]},"geometry":{"type":"LineString","coordinates":[[-83.68261100000001,32.852089],[-83.68263,32.852198],[-83.68263800000001,32.852308],[-83.682618,32.85278]]},"id":"8a44c0a260effff-13d7add5ab1664b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8115ad86-17fff710206e26e6","8f44c0b81b98565-13b7ad968af14f28"]},"geometry":{"type":"LineString","coordinates":[[-83.56476400000001,32.816164],[-83.564735,32.816183],[-83.56455700000001,32.816204],[-83.564335,32.816243],[-83.562076,32.816553],[-83.56131400000001,32.81665],[-83.561152,32.816702],[-83.56102100000001,32.816768],[-83.560883,32.816858]]},"id":"8744c0b81ffffff-13ffb25e69a762b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55960300000001,32.81765]},"id":"8f44c0b81008956-17d7fa30231fb829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8115ad86-17fff710206e26e6","8f44c0b81008956-17d7fa30231fb829"]},"geometry":{"type":"LineString","coordinates":[[-83.560883,32.816858],[-83.55960300000001,32.81765]]},"id":"8844c0b811fffff-17dff8a02a8b0bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709953,32.749924]},"id":"8f44c0b047432e9-13fecb1f664dcf4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708843,32.74993]},"id":"8f44c0b0475e0ae-13964dd523660b11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b047432e9-13fecb1f664dcf4e","8f44c0b0475e0ae-13964dd523660b11"]},"geometry":{"type":"LineString","coordinates":[[-83.709953,32.749924],[-83.709782,32.74991],[-83.709376,32.749903],[-83.708972,32.74991],[-83.708843,32.74993]]},"id":"8944c0b0477ffff-13f7dc7a8825c641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04600196-1397d37c05b66fe4","8f44c0b0475e0ae-13964dd523660b11"]},"geometry":{"type":"LineString","coordinates":[[-83.708843,32.74993],[-83.70872700000001,32.74996],[-83.708573,32.749986],[-83.708409,32.749983],[-83.708195,32.749983],[-83.70784300000001,32.749986],[-83.706528,32.749958]]},"id":"8844c0b047fffff-139e50a6e3818df0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70456800000001,32.749929]},"id":"8f44c0b046125b1-1397f8450875fd9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b046125b1-1397f8450875fd9d","8f44c0b04600196-1397d37c05b66fe4"]},"geometry":{"type":"LineString","coordinates":[[-83.706528,32.749958],[-83.70456800000001,32.749929]]},"id":"8844c0b047fffff-139ef5e081c007ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702329,32.74992]},"id":"8f44c0b046b2342-13fe5dbc610a9254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b046b2342-13fe5dbc610a9254","8f44c0b046125b1-1397f8450875fd9d"]},"geometry":{"type":"LineString","coordinates":[[-83.70456800000001,32.749929],[-83.702329,32.74992]]},"id":"8944c0b046bffff-13fedb00bd26093c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667754,32.82967]},"id":"8f44c0b1b8d1040-13bff225ca64ca2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66932800000001,32.829245]},"id":"8f44c0b1b8c5b14-13b6ae4e047d8c42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8c5b14-13b6ae4e047d8c42","8f44c0b1b8d1040-13bff225ca64ca2c"]},"geometry":{"type":"LineString","coordinates":[[-83.667754,32.82967],[-83.668214,32.829555],[-83.66932800000001,32.829245]]},"id":"8944c0b1b8fffff-13bfb0393eadb572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670845,32.828823]},"id":"8f44c0b1b8515ab-139eea99e7217e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8515ab-139eea99e7217e87","8f44c0b1b8c5b14-13b6ae4e047d8c42"]},"geometry":{"type":"LineString","coordinates":[[-83.66932800000001,32.829245],[-83.670845,32.828823]]},"id":"8844c0b1b9fffff-13b6ec73f5ef3819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696223,32.886738]},"id":"8f44c0a231586e6-17976ca4a1114c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a231586e6-17976ca4a1114c8f","8f44c0a23008ae9-13f770dac37d7b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.696223,32.886738],[-83.69582600000001,32.88695],[-83.69548800000001,32.887116],[-83.695012,32.887318],[-83.69449800000001,32.887512]]},"id":"8844c0a231fffff-13966eb8e9e64d32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693528,32.888288]},"id":"8f44c0a230e0c42-13de7339057387f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a230e0c42-13de7339057387f9","8f44c0a23008ae9-13f770dac37d7b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.69449800000001,32.887512],[-83.693989,32.887715],[-83.693848,32.887797],[-83.69376600000001,32.887864],[-83.69373200000001,32.887891],[-83.693667,32.887971],[-83.69360400000001,32.888083],[-83.693528,32.888288]]},"id":"8844c0a231fffff-13b6f23a08a9e351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a230e0c42-13de7339057387f9","8f44c0a230e9506-17dff137e1b01489"]},"geometry":{"type":"LineString","coordinates":[[-83.693528,32.888288],[-83.69352900000001,32.888461],[-83.693568,32.888633],[-83.69365,32.888787],[-83.693971,32.889173],[-83.694238,32.889524],[-83.694349,32.889721]]},"id":"8944c0a230fffff-179ff26055f04189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a233b2bae-139670fc8592f3c5","8f44c0a230e9506-17dff137e1b01489"]},"geometry":{"type":"LineString","coordinates":[[-83.694349,32.889721],[-83.694411,32.889919],[-83.69444100000001,32.890062],[-83.694455,32.890236],[-83.694444,32.890631]]},"id":"8844c0a231fffff-17f771055c58d995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65919500000001,32.797584]},"id":"8f44c0b1ea852a4-17dec70b248762ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659204,32.796525]},"id":"8f44c0b1eaa0434-13d6e7058e3dd24b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eaa0434-13d6e7058e3dd24b","8f44c0b1ea852a4-17dec70b248762ae"]},"geometry":{"type":"LineString","coordinates":[[-83.65919500000001,32.797584],[-83.659211,32.796597000000006],[-83.659204,32.796525]]},"id":"8944c0b1eabffff-179ef705f38a1cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659777,32.795288]},"id":"8f44c0b1eb8e001-17bfc59f68351135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eaa0434-13d6e7058e3dd24b","8f44c0b1eb8e001-17bfc59f68351135"]},"geometry":{"type":"LineString","coordinates":[[-83.659204,32.796525],[-83.65923000000001,32.796452],[-83.65974800000001,32.795413],[-83.659777,32.795288]]},"id":"8844c0b1ebfffff-13d7e64cfa322a1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eba6bb3-1397c508c5b24576","8f44c0b1eb8e001-17bfc59f68351135"]},"geometry":{"type":"LineString","coordinates":[[-83.659777,32.795288],[-83.659751,32.794604],[-83.65977600000001,32.79428],[-83.659818,32.794108],[-83.66001800000001,32.793174]]},"id":"8944c0b1ebbffff-17b6d57af8a18e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660542,32.796723]},"id":"8f44c0b1ea104e1-13bfe3c14ede1ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea852a4-17dec70b248762ae","8f44c0b1ea104e1-13bfe3c14ede1ba8"]},"geometry":{"type":"LineString","coordinates":[[-83.65919500000001,32.797584],[-83.659193,32.797742],[-83.65921300000001,32.797789],[-83.65926,32.797829],[-83.659327,32.797856],[-83.659458,32.79786],[-83.65953300000001,32.797849],[-83.65959000000001,32.797826],[-83.659643,32.797796000000005],[-83.66006300000001,32.797502],[-83.66016900000001,32.797414],[-83.66023700000001,32.797334],[-83.660301,32.797235],[-83.66035600000001,32.797136],[-83.660542,32.796723]]},"id":"8844c0b1ebfffff-1796e54f499dfde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea14186-13fec3264bf257e9","8f44c0b1ea104e1-13bfe3c14ede1ba8"]},"geometry":{"type":"LineString","coordinates":[[-83.660542,32.796723],[-83.66079,32.796202]]},"id":"8a44c0b1ea17fff-139fd373cb3f5e38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea14186-13fec3264bf257e9","8f44c0b1ebaba2b-17d6c2c7eb35f4cc"]},"geometry":{"type":"LineString","coordinates":[[-83.66079,32.796202],[-83.660908,32.795941],[-83.660981,32.795793],[-83.661017,32.795667],[-83.66103100000001,32.795567000000005],[-83.66102500000001,32.795416],[-83.66098600000001,32.795251],[-83.66094100000001,32.795088]]},"id":"8844c0b1ebfffff-13b7d2be4b4e141a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eb16c0d-13b6e2440fd63d1e","8f44c0b1ebaba2b-17d6c2c7eb35f4cc"]},"geometry":{"type":"LineString","coordinates":[[-83.66094100000001,32.795088],[-83.66088900000001,32.794814],[-83.660886,32.794753],[-83.660898,32.794589],[-83.660928,32.79441],[-83.66103100000001,32.793899],[-83.66107600000001,32.793613],[-83.661152,32.793197]]},"id":"8844c0b1ebfffff-17f6f2a6a155b5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7548469,32.8797878]},"id":"8f44c0b5069b790-179ffd84be944dc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52b4d292-179fde9348984eac","8f44c0b5069b790-179ffd84be944dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.7548469,32.8797878],[-83.754867,32.878079],[-83.75485900000001,32.877954],[-83.75484,32.877851],[-83.75480200000001,32.877716],[-83.754759,32.877609],[-83.754661,32.87744],[-83.754552,32.877293],[-83.75441400000001,32.877156]]},"id":"8644c0b57ffffff-13b7dda2d590cde7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52b4d292-179fde9348984eac","8f44c0b52b4e55b-17b7e0e64af7ac05"]},"geometry":{"type":"LineString","coordinates":[[-83.75441400000001,32.877156],[-83.75435300000001,32.877105],[-83.75427,32.877046],[-83.75413800000001,32.876969],[-83.75397500000001,32.876893],[-83.753887,32.87686],[-83.753759,32.876821],[-83.753521,32.876767],[-83.753462,32.876759]]},"id":"8a44c0b52b4ffff-1797ffb0c72c04bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a2ad66-17bde755c71e7446","8f44c0b52b4e55b-17b7e0e64af7ac05"]},"geometry":{"type":"LineString","coordinates":[[-83.753462,32.876759],[-83.75272700000001,32.876624],[-83.75254500000001,32.876603],[-83.752396,32.876601],[-83.75217,32.876613],[-83.75207900000001,32.876627],[-83.75187100000001,32.876672],[-83.751508,32.876773],[-83.75136,32.876801],[-83.751267,32.87681],[-83.75110500000001,32.876812],[-83.751022,32.876804],[-83.750921,32.87679],[-83.750826,32.87677]]},"id":"8844c0b52bfffff-1795e41e41130d08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a2ad66-17bde755c71e7446","8f44c0b52a306cd-1797eb10c839d127"]},"geometry":{"type":"LineString","coordinates":[[-83.750826,32.87677],[-83.750714,32.876739],[-83.75062000000001,32.8767],[-83.75056000000001,32.876668],[-83.74929800000001,32.875889]]},"id":"8944c0b52a3ffff-17b7f9397f9bcc16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52a306cd-1797eb10c839d127","8f44c0b52b8da56-1395ec606b7e051a"]},"geometry":{"type":"LineString","coordinates":[[-83.74929800000001,32.875889],[-83.748976,32.875687],[-83.74889900000001,32.875625],[-83.748761,32.875501]]},"id":"8a44c0b52a37fff-1797fbbd85b2cc30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74609000000001,32.874215]},"id":"8f44c0b52b90c0c-13f5f2e5caf1b9a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52b90c0c-13f5f2e5caf1b9a6","8f44c0b52b8da56-1395ec606b7e051a"]},"geometry":{"type":"LineString","coordinates":[[-83.748761,32.875501],[-83.748564,32.875279],[-83.74829700000001,32.874893],[-83.74818300000001,32.874743],[-83.74808200000001,32.874642],[-83.747966,32.874544],[-83.74789600000001,32.874496],[-83.7477501,32.874408200000005],[-83.747687,32.874378],[-83.747516,32.874313],[-83.74734500000001,32.874267],[-83.747146,32.874239],[-83.74692200000001,32.874228],[-83.74641100000001,32.874217],[-83.74609000000001,32.874215]]},"id":"8944c0b52bbffff-13ddef492ec0d2b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.802862,32.800022000000006]},"id":"8f44c0b74183194-13dde84b42f973df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77850600000001,32.771842]},"id":"8f44c0b28a1aab5-1795e3c1cb108d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b74183194-13dde84b42f973df","8f44c0b28a1aab5-1795e3c1cb108d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.802862,32.800022000000006],[-83.800635,32.798992000000005],[-83.79968000000001,32.798547],[-83.79931300000001,32.798370000000006],[-83.799073,32.798223],[-83.79888100000001,32.798087],[-83.79865600000001,32.797888],[-83.79854200000001,32.797772],[-83.79836,32.797556],[-83.798192,32.797324],[-83.79703400000001,32.795538],[-83.793733,32.790484],[-83.79359600000001,32.790267],[-83.79338800000001,32.789971],[-83.79265000000001,32.788829],[-83.79176000000001,32.787475],[-83.791599,32.787236],[-83.79148500000001,32.787081],[-83.79130500000001,32.786852],[-83.79112,32.786626000000005],[-83.790738,32.786181],[-83.79068290000001,32.7861125],[-83.790616,32.786043],[-83.789868,32.785165],[-83.789772,32.785054],[-83.789474,32.784709],[-83.789321,32.784526],[-83.789286,32.784484],[-83.78919900000001,32.784385],[-83.78826400000001,32.783289],[-83.786697,32.781452],[-83.78425,32.778591],[-83.78248,32.776499],[-83.782431,32.776442],[-83.78210100000001,32.776055],[-83.781784,32.775681],[-83.781384,32.775207],[-83.780707,32.77443],[-83.78012700000001,32.773742],[-83.77850600000001,32.771842]]},"id":"8444c0bffffffff-139fb6a695f714c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b28a1aab5-1795e3c1cb108d8b","8f44c0b288dddb5-13d5ee5402490be6"]},"geometry":{"type":"LineString","coordinates":[[-83.77850600000001,32.771842],[-83.77717100000001,32.770299],[-83.776976,32.770063],[-83.775447,32.768284],[-83.775069,32.767836],[-83.774488,32.767173],[-83.77417600000001,32.766831]]},"id":"8744c0b28ffffff-13f5a907b0375d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b28d2bad3-1397bc8f229d01f6","8f44c0b288dddb5-13d5ee5402490be6"]},"geometry":{"type":"LineString","coordinates":[[-83.77417600000001,32.766831],[-83.773977,32.766607],[-83.77362500000001,32.766232],[-83.773432,32.766012],[-83.77311800000001,32.765631],[-83.772518,32.764854],[-83.77214400000001,32.764404],[-83.770492,32.762459],[-83.77007300000001,32.761966],[-83.76938200000001,32.761161],[-83.768617,32.760269],[-83.768347,32.759965]]},"id":"8744c0b28ffffff-13f5f56dbdd48c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b28d2bad3-1397bc8f229d01f6","8f44c0b2eac1895-17b7ed3aaddde42b"]},"geometry":{"type":"LineString","coordinates":[[-83.768347,32.759965],[-83.768096,32.759683],[-83.767885,32.759473],[-83.76783,32.759423000000005],[-83.76755800000001,32.759199],[-83.76729900000001,32.759033],[-83.767196,32.758972],[-83.766884,32.75882],[-83.76657,32.758701],[-83.76626300000001,32.758609],[-83.765997,32.758547],[-83.765591,32.758485],[-83.76519300000001,32.758439],[-83.763176,32.758198],[-83.76253100000001,32.758125],[-83.761887,32.758049],[-83.761519,32.758001]]},"id":"8644c0b2fffffff-17bdf47c43f42b90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662435,32.853782]},"id":"8f44c0a3514196e-179fff2228792db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3514196e-179fff2228792db6","8f44c0a3516abb3-1797be220654cb02"]},"geometry":{"type":"LineString","coordinates":[[-83.662435,32.853782],[-83.662636,32.853791],[-83.6628448,32.8537939]]},"id":"8944c0a3517ffff-1796fea212334831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66343930000001,32.853802200000004]},"id":"8f44c0a35168a43-179efcae76dcc2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3516abb3-1797be220654cb02","8f44c0a35168a43-179efcae76dcc2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6628448,32.8537939],[-83.66343930000001,32.853802200000004]]},"id":"8a44c0a3516ffff-1797fd684635efbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664381,32.853834]},"id":"8f44c0a35b9855a-17befa61e6ed617f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35b9855a-17befa61e6ed617f","8f44c0a35168a43-179efcae76dcc2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66343930000001,32.853802200000004],[-83.66406900000001,32.853811],[-83.664381,32.853834]]},"id":"8844c0a35bfffff-17b6fb8805f90a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35a2bd73-13dfef4c65e75b21","8f44c0a35b9855a-17befa61e6ed617f"]},"geometry":{"type":"LineString","coordinates":[[-83.664381,32.853834],[-83.664619,32.853896],[-83.664827,32.853965],[-83.665014,32.854041],[-83.66522,32.854145],[-83.66565200000001,32.854444],[-83.666173,32.854837],[-83.666331,32.854951],[-83.666475,32.85504],[-83.66676500000001,32.855178],[-83.66706,32.855292],[-83.667249,32.855353],[-83.667275,32.855362],[-83.667409,32.855393],[-83.667596,32.855430000000005],[-83.667877,32.855465],[-83.66835,32.855494],[-83.66892100000001,32.855519]]},"id":"8844c0a35bfffff-13beb4feada4b4d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35a2bd73-13dfef4c65e75b21","8f44c0a35b582a1-13defb9a8fd829b8"]},"geometry":{"type":"LineString","coordinates":[[-83.66892100000001,32.855519],[-83.6704344,32.855543700000005]]},"id":"8844c0a35bfffff-13d7ad737d2344aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35b582a1-13defb9a8fd829b8","8f44c0a35b59c2d-13f7aaf40de5ca77"]},"geometry":{"type":"LineString","coordinates":[[-83.6704344,32.855543700000005],[-83.6707008,32.8555578]]},"id":"8a44c0a35b5ffff-13dfeb474a3fd40f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a266a3bae-17dea1f6084e2c4e","8f44c0a35b59c2d-13f7aaf40de5ca77"]},"geometry":{"type":"LineString","coordinates":[[-83.6707008,32.8555578],[-83.670922,32.855559],[-83.671317,32.855552],[-83.672758,32.855514],[-83.67311000000001,32.855558],[-83.673372,32.855629],[-83.673742,32.855746],[-83.673913,32.855812],[-83.674059,32.855887],[-83.674284,32.856071],[-83.674384,32.856128000000005]]},"id":"8644c0a27ffffff-1396f6541846557b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a266a3bae-17dea1f6084e2c4e","8f44c0a2661e9b0-17fefe28e5a2f807"]},"geometry":{"type":"LineString","coordinates":[[-83.674384,32.856128000000005],[-83.67448200000001,32.856158],[-83.67594100000001,32.856395]]},"id":"8844c0a267fffff-179fe010608ac38b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677705,32.856672]},"id":"8f44c0a2660c0ee-179e99da60010754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2661e9b0-17fefe28e5a2f807","8f44c0a2660c0ee-179e99da60010754"]},"geometry":{"type":"LineString","coordinates":[[-83.67594100000001,32.856395],[-83.67662800000001,32.856506],[-83.677244,32.856614],[-83.67752300000001,32.856668],[-83.677705,32.856672]]},"id":"8944c0a2663ffff-17defc01e8aaa8f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678662,32.856184]},"id":"8f44c0a2662d6dd-17ff9784450d9da6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2662d6dd-17ff9784450d9da6","8f44c0a2660c0ee-179e99da60010754"]},"geometry":{"type":"LineString","coordinates":[[-83.677705,32.856672],[-83.678027,32.856485],[-83.67835500000001,32.856316],[-83.678662,32.856184]]},"id":"8944c0a2663ffff-17ffb8b35bee2328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671548,32.890925]},"id":"8f44c0a04152695-13bea8e28c4d28e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04152695-13bea8e28c4d28e3","8f44c0a04019362-17beacbd67d68610"]},"geometry":{"type":"LineString","coordinates":[[-83.671548,32.890925],[-83.670276,32.892561],[-83.66996900000001,32.892944]]},"id":"8944c0a0403ffff-13b6bace8ded7711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66908500000001,32.893994]},"id":"8f44c0a040c6935-13beeee5eae1221b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04019362-17beacbd67d68610","8f44c0a040c6935-13beeee5eae1221b"]},"geometry":{"type":"LineString","coordinates":[[-83.66996900000001,32.892944],[-83.669703,32.893304],[-83.6695,32.893565],[-83.669318,32.893771],[-83.66908500000001,32.893994]]},"id":"8844c0a041fffff-17feedc60d7108d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636487,32.811183]},"id":"8f44c0bad241922-179ffe7ba51b70ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637376,32.81121]},"id":"8f44c0bad268066-179efc50060a3678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad268066-179efc50060a3678","8f44c0bad241922-179ffe7ba51b70ea"]},"geometry":{"type":"LineString","coordinates":[[-83.636487,32.811183],[-83.637376,32.81121]]},"id":"8944c0bad27ffff-1797fd65d423d49d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63834800000001,32.811238]},"id":"8f44c0b1ac9a961-17bff9f08546e76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad268066-179efc50060a3678","8f44c0b1ac9a961-17bff9f08546e76c"]},"geometry":{"type":"LineString","coordinates":[[-83.637376,32.81121],[-83.63834800000001,32.811238]]},"id":"8744c0b1affffff-17b7fb2047eee1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639284,32.811272]},"id":"8f44c0b1ac9dac0-17d7f7a78c694938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac9dac0-17d7f7a78c694938","8f44c0b1ac9a961-17bff9f08546e76c"]},"geometry":{"type":"LineString","coordinates":[[-83.63834800000001,32.811238],[-83.639284,32.811272]]},"id":"8a44c0b1ac9ffff-17bef8cc0edc10e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64019400000001,32.811293]},"id":"8f44c0b1ac8d4a0-17d6f56ec1f55326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac9dac0-17d7f7a78c694938","8f44c0b1ac8d4a0-17d6f56ec1f55326"]},"geometry":{"type":"LineString","coordinates":[[-83.639284,32.811272],[-83.64019400000001,32.811293]]},"id":"8944c0b1acbffff-17dff68b283ebc24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64054440000001,32.8113016]},"id":"8f44c0b1ac8db9a-17d7f493c17e3576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac8db9a-17d7f493c17e3576","8f44c0b1ac8d4a0-17d6f56ec1f55326"]},"geometry":{"type":"LineString","coordinates":[[-83.64019400000001,32.811293],[-83.64054440000001,32.8113016]]},"id":"8b44c0b1ac8dfff-17d6f5014aa8c08d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64121300000001,32.811318]},"id":"8f44c0b1acf0d01-17f7f2f1e50f6d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac8db9a-17d7f493c17e3576","8f44c0b1acf0d01-17f7f2f1e50f6d3f"]},"geometry":{"type":"LineString","coordinates":[[-83.64054440000001,32.8113016],[-83.64121300000001,32.811318]]},"id":"8844c0b1adfffff-17def3c2d5709972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acf0d01-17f7f2f1e50f6d3f","8f44c0b1ace64f5-17fff0f5c401cb56"]},"geometry":{"type":"LineString","coordinates":[[-83.64121300000001,32.811318],[-83.642026,32.81134]]},"id":"8944c0b1acfffff-17fef1f3da4ea551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64216400000001,32.811344000000005]},"id":"8f44c0b1ace6083-17f6f09f8346c0b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace64f5-17fff0f5c401cb56","8f44c0b1ace6083-17f6f09f8346c0b2"]},"geometry":{"type":"LineString","coordinates":[[-83.642026,32.81134],[-83.64216400000001,32.811344000000005]]},"id":"8b44c0b1ace6fff-17f6f0caa9d096e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64260200000001,32.811354]},"id":"8f44c0b1ace4602-17feef8dce7a479a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace4602-17feef8dce7a479a","8f44c0b1ace6083-17f6f09f8346c0b2"]},"geometry":{"type":"LineString","coordinates":[[-83.64216400000001,32.811344000000005],[-83.64260200000001,32.811354]]},"id":"8a44c0b1ace7fff-17f7f016a6896d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62040300000001,32.849707]},"id":"8f44c0a362364b1-179fe5c02cd22a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3638e0cd-179f284fc33ad132","8f44c0a362364b1-179fe5c02cd22a04"]},"geometry":{"type":"LineString","coordinates":[[-83.62040300000001,32.849707],[-83.619354,32.849688]]},"id":"8944c0a363bffff-1797f707fc7e7de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61769100000001,32.84966]},"id":"8f44c0a3676da89-17ffac5f2913b12d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3638e0cd-179f284fc33ad132","8f44c0a3676da89-17ffac5f2913b12d"]},"geometry":{"type":"LineString","coordinates":[[-83.619354,32.849688],[-83.61769100000001,32.84966]]},"id":"8944c0a363bffff-17976a577f504e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67014,32.890068]},"id":"8f44c0a0411b660-17b6ac528df3b657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0411b660-17b6ac528df3b657","8f44c0a04013498-1397f06d23e30972"]},"geometry":{"type":"LineString","coordinates":[[-83.668459,32.891855],[-83.66874200000001,32.891595],[-83.66888,32.891454],[-83.669065,32.891264],[-83.669188,32.891111],[-83.66927600000001,32.890977],[-83.669345,32.89085],[-83.669437,32.890724],[-83.669542,32.890604],[-83.67014,32.890068]]},"id":"8844c0a041fffff-13deee63c3bb3e03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673422,32.888039]},"id":"8f44c0a048d10ea-13b6e44f456a2730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0411b660-17b6ac528df3b657","8f44c0a048d10ea-13b6e44f456a2730"]},"geometry":{"type":"LineString","coordinates":[[-83.67014,32.890068],[-83.670376,32.889865],[-83.67055900000001,32.889727],[-83.670749,32.889603],[-83.671003,32.889456],[-83.672864,32.88835],[-83.673422,32.888039]]},"id":"8744c0a04ffffff-1797a8607ead379a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.534873,32.828162]},"id":"8f44c0b8376878c-1397f69063d80788"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8376c1b5-1797f60c1845f1cd","8f44c0b8376878c-1397f69063d80788"]},"geometry":{"type":"LineString","coordinates":[[-83.534873,32.828162],[-83.5350847,32.827553800000004]]},"id":"8a44c0b8376ffff-17d7f64e49f3c246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b830e8873-139ff3cc4b5ad154","8f44c0b8376c1b5-1797f60c1845f1cd"]},"geometry":{"type":"LineString","coordinates":[[-83.5350847,32.827553800000004],[-83.535633,32.825978],[-83.536006,32.824925]]},"id":"8744c0b83ffffff-13dff4ed47cb291c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b830e8873-139ff3cc4b5ad154","8f44c0b8312da91-13f7ee97c4e80f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.536006,32.824925],[-83.536761,32.822788],[-83.53727500000001,32.821309],[-83.537846,32.819707],[-83.53795500000001,32.819439],[-83.538138,32.81892]]},"id":"8844c0b831fffff-13d7f135c649a274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8312d851-13b7ee7eea50cc50","8f44c0b8312da91-13f7ee97c4e80f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.538138,32.81892],[-83.5381778,32.8187972]]},"id":"8b44c0b8312dfff-13dfee8b5eb440d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8312d851-13b7ee7eea50cc50","8f44c0b838d32db-13f7ee6a9bf7fdb4"]},"geometry":{"type":"LineString","coordinates":[[-83.5381778,32.8187972],[-83.5382103,32.8186972]]},"id":"8c44c0b8312d9ff-1397ee74cd9fd7a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b83811096-13bfeb8d0d701546","8f44c0b838d32db-13f7ee6a9bf7fdb4"]},"geometry":{"type":"LineString","coordinates":[[-83.5382103,32.8186972],[-83.53829350000001,32.818440800000005],[-83.5383595,32.8182372],[-83.53840600000001,32.818094],[-83.539384,32.815326]]},"id":"8744c0b83ffffff-17d7ecffc6117c85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54064740000001,32.8118491]},"id":"8f44c0b83915b1b-13bff87762fa017e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b83811096-13bfeb8d0d701546","8f44c0b83915b1b-13bff87762fa017e"]},"geometry":{"type":"LineString","coordinates":[[-83.539384,32.815326],[-83.539921,32.813796],[-83.539985,32.813525],[-83.54004,32.813432],[-83.540496,32.812179],[-83.54064740000001,32.8118491]]},"id":"8844c0b839fffff-17f7fa0dc5aa3dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665361,32.839897]},"id":"8f44c0b1b39b148-17b7b7fd62622c98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665401,32.838968]},"id":"8f44c0b1b39c575-13f7b7e46c671801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b39b148-17b7b7fd62622c98","8f44c0b1b39c575-13f7b7e46c671801"]},"geometry":{"type":"LineString","coordinates":[[-83.665361,32.839897],[-83.665401,32.838968]]},"id":"8a44c0b1b39ffff-1397f7f0ed8aed32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66543200000001,32.837992]},"id":"8f44c0b1b3b32a3-1397b7d1034ccb63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b39c575-13f7b7e46c671801","8f44c0b1b3b32a3-1397b7d1034ccb63"]},"geometry":{"type":"LineString","coordinates":[[-83.665401,32.838968],[-83.66543200000001,32.837992]]},"id":"8944c0b1b3bffff-13b6b7dab40bd1d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66552,32.836135]},"id":"8f44c0b1b0ed8e8-13fef79a0d8da387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0ed8e8-13fef79a0d8da387","8f44c0b1b3b32a3-1397b7d1034ccb63"]},"geometry":{"type":"LineString","coordinates":[[-83.66543200000001,32.837992],[-83.66546000000001,32.837397],[-83.66546100000001,32.837082],[-83.66547700000001,32.83662],[-83.66552,32.836135]]},"id":"8744c0b1bffffff-17bef7ba9add91d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66554000000001,32.835486]},"id":"8f44c0b1b050602-13f6f78d823bf593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0ed8e8-13fef79a0d8da387","8f44c0b1b050602-13f6f78d823bf593"]},"geometry":{"type":"LineString","coordinates":[[-83.66552,32.836135],[-83.66554000000001,32.835486]]},"id":"8944c0b1b07ffff-13bfb793c5d48403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665564,32.834856]},"id":"8f44c0b1b0545a9-13dfb77e8e5cff9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0545a9-13dfb77e8e5cff9d","8f44c0b1b050602-13f6f78d823bf593"]},"geometry":{"type":"LineString","coordinates":[[-83.66554000000001,32.835486],[-83.665564,32.834856]]},"id":"8a44c0b1b057fff-139ff786063bdd53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0545a9-13dfb77e8e5cff9d","8f44c0b1b00d3a4-17d7b77488e1381b"]},"geometry":{"type":"LineString","coordinates":[[-83.665564,32.834856],[-83.66558,32.834232]]},"id":"8844c0b1b1fffff-1796b779848eb116"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66560100000001,32.833602]},"id":"8f44c0b1b02bc54-17dff7676231b397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b02bc54-17dff7676231b397","8f44c0b1b00d3a4-17d7b77488e1381b"]},"geometry":{"type":"LineString","coordinates":[[-83.66558,32.834232],[-83.66560100000001,32.833602]]},"id":"8944c0b1b03ffff-179eb76df8918fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665632,32.832331]},"id":"8f44c0b1b021910-13bef75404034627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b02bc54-17dff7676231b397","8f44c0b1b021910-13bef75404034627"]},"geometry":{"type":"LineString","coordinates":[[-83.66560100000001,32.833602],[-83.665632,32.832331]]},"id":"8944c0b1b03ffff-13beb75dbd86e0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665626,32.831955]},"id":"8f44c0b1b025d5b-13d7f757c218540b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b025d5b-13d7f757c218540b","8f44c0b1b021910-13bef75404034627"]},"geometry":{"type":"LineString","coordinates":[[-83.665632,32.832331],[-83.665626,32.831955]]},"id":"8a44c0b1b027fff-13bff755ef5718e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66218,32.86036]},"id":"8f44c0a352341a6-179fbfc183fa0e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3530b306-1796bb082053342f","8f44c0a352341a6-179fbfc183fa0e28"]},"geometry":{"type":"LineString","coordinates":[[-83.66218,32.86036],[-83.66279700000001,32.860382],[-83.66329400000001,32.860399],[-83.663722,32.860418],[-83.663893,32.860441],[-83.664017,32.860473],[-83.66411500000001,32.860528]]},"id":"8844c0a353fffff-17b7bd5f4c70d9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3530b306-1796bb082053342f","8f44c0a22d94023-1797f0fc4e733bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.66411500000001,32.860528],[-83.664375,32.86043],[-83.664564,32.860324],[-83.664744,32.860188],[-83.664866,32.860038],[-83.664944,32.859904],[-83.66514000000001,32.859476],[-83.665238,32.859204000000005],[-83.66530200000001,32.85897],[-83.66531,32.858904],[-83.665367,32.858651],[-83.66538700000001,32.85851],[-83.665424,32.858376],[-83.665501,32.85824],[-83.66556800000001,32.85814],[-83.665671,32.858096],[-83.66586600000001,32.858038],[-83.665987,32.858019],[-83.66611,32.858013],[-83.666256,32.858022000000005],[-83.66674900000001,32.858069],[-83.66699200000001,32.858112000000006],[-83.667246,32.858145],[-83.66751500000001,32.858193],[-83.667736,32.858249],[-83.667883,32.858303],[-83.668042,32.858398],[-83.66816200000001,32.858528],[-83.668272,32.858694],[-83.668338,32.85884],[-83.66838100000001,32.859085],[-83.668383,32.859234],[-83.668361,32.859402],[-83.66828500000001,32.85978],[-83.66823000000001,32.85991]]},"id":"8744c0a35ffffff-1396b56f90582dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636401,32.812024]},"id":"8f44c0bad24e26c-139ffeb1611aff49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637343,32.812066]},"id":"8f44c0bad24db4e-13b7fc64a6492a93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad24e26c-139ffeb1611aff49","8f44c0bad24db4e-13b7fc64a6492a93"]},"geometry":{"type":"LineString","coordinates":[[-83.636401,32.812024],[-83.637343,32.812066]]},"id":"8944c0bad27ffff-13befd8b0c122e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638305,32.812089]},"id":"8f44c0b1a535ccc-13d7fa0b6adc65bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad24db4e-13b7fc64a6492a93","8f44c0b1a535ccc-13d7fa0b6adc65bf"]},"geometry":{"type":"LineString","coordinates":[[-83.637343,32.812066],[-83.638305,32.812089]]},"id":"8a44c0b1a537fff-13befb3804505301"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63924,32.812117]},"id":"8f44c0b1a524619-13d7f7c3082b22c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a524619-13d7f7c3082b22c6","8f44c0b1a535ccc-13d7fa0b6adc65bf"]},"geometry":{"type":"LineString","coordinates":[[-83.638305,32.812089],[-83.63924,32.812117]]},"id":"8944c0b1a53ffff-13def8e73d4b264e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640162,32.812137]},"id":"8f44c0b1acd61ab-13f7f582c132b73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a524619-13d7f7c3082b22c6","8f44c0b1acd61ab-13f7f582c132b73d"]},"geometry":{"type":"LineString","coordinates":[[-83.63924,32.812117],[-83.640162,32.812137]]},"id":"8844c0b1adfffff-13dff6a2e9c7a55b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acd61ab-13f7f582c132b73d","8f44c0b1acf36ed-13f6f34c67710239"]},"geometry":{"type":"LineString","coordinates":[[-83.640162,32.812137],[-83.6410682,32.812164700000004]]},"id":"8a44c0b1acd7fff-13fef4679cc83a62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641175,32.812168]},"id":"8f44c0b1acd5925-13f7f309a9271839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acf36ed-13f6f34c67710239","8f44c0b1acd5925-13f7f309a9271839"]},"geometry":{"type":"LineString","coordinates":[[-83.6410682,32.812164700000004],[-83.641175,32.812168]]},"id":"8b44c0b1acf3fff-13f7f32b0f2b3908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642128,32.812199]},"id":"8f44c0b1acc4aa1-139ef0b60224275d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acd5925-13f7f309a9271839","8f44c0b1acc4aa1-139ef0b60224275d"]},"geometry":{"type":"LineString","coordinates":[[-83.641175,32.812168],[-83.642128,32.812199]]},"id":"8944c0b1acfffff-13fef1dfda71ae55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642595,32.812206]},"id":"8f44c0b1ace3354-139eef9221845357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace3354-139eef9221845357","8f44c0b1acc4aa1-139ef0b60224275d"]},"geometry":{"type":"LineString","coordinates":[[-83.642128,32.812199],[-83.642595,32.812206]]},"id":"8944c0b1acfffff-139ef0241336eb32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a354c2b32-17f7e2024f1806fe","8f44c0a30b74932-1397e4428473dd4e"]},"geometry":{"type":"LineString","coordinates":[[-83.647228,32.857861],[-83.647312,32.857714],[-83.64738,32.857537],[-83.647434,32.857414],[-83.647582,32.856969],[-83.64764000000001,32.856859],[-83.647694,32.856794],[-83.647806,32.856699],[-83.64798900000001,32.856641],[-83.64815,32.856614]]},"id":"8944c0a354fffff-17bee35dd7af0f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a354c2b32-17f7e2024f1806fe","8f44c0a357a3c28-13d7d9d0c73bdf36"]},"geometry":{"type":"LineString","coordinates":[[-83.64815,32.856614],[-83.64900200000001,32.856603],[-83.649162,32.856617],[-83.649299,32.856668],[-83.64937900000001,32.856707],[-83.649439,32.856755],[-83.649494,32.856814],[-83.64954900000001,32.856943],[-83.64966100000001,32.857511],[-83.649721,32.857788],[-83.649743,32.857911],[-83.64979600000001,32.858054],[-83.64985800000001,32.858188000000006],[-83.649972,32.858351],[-83.650057,32.858415],[-83.650135,32.858455],[-83.650253,32.858477],[-83.650334,32.858489],[-83.65055500000001,32.858449],[-83.65075900000001,32.858395],[-83.651488,32.858182],[-83.65150600000001,32.858172]]},"id":"8744c0a35ffffff-17dffdfbe98dbc2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67870900000001,32.870165]},"id":"8f44c0a2215c455-179fb766e8fc9ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67810700000001,32.869611]},"id":"8f44c0a22150746-17b6f8df2f7db6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22150746-17b6f8df2f7db6be","8f44c0a2215c455-179fb766e8fc9ea8"]},"geometry":{"type":"LineString","coordinates":[[-83.67870900000001,32.870165],[-83.67810700000001,32.869611]]},"id":"8944c0a2217ffff-17f698230adc3612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67739900000001,32.869295]},"id":"8f44c0a22025a96-17fffa99a7ae5e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22150746-17b6f8df2f7db6be","8f44c0a22025a96-17fffa99a7ae5e99"]},"geometry":{"type":"LineString","coordinates":[[-83.67810700000001,32.869611],[-83.67803500000001,32.869556],[-83.677863,32.86945],[-83.677728,32.869388],[-83.67756700000001,32.869332],[-83.67739900000001,32.869295]]},"id":"8844c0a221fffff-17bfd9b435f7f8b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61771370000001,32.8486391]},"id":"8f44c0a36390cee-13ff7c50fda6d9d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363855a3-13973847f6106a04","8f44c0a36390cee-13ff7c50fda6d9d0"]},"geometry":{"type":"LineString","coordinates":[[-83.61771370000001,32.8486391],[-83.6189117,32.8486391],[-83.6193665,32.8486739]]},"id":"8944c0a363bffff-13977a4c294faf0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6205358,32.8486221]},"id":"8f44c0a363ac0ca-13f7f56d24f479a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363855a3-13973847f6106a04","8f44c0a363ac0ca-13f7f56d24f479a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6193665,32.8486739],[-83.6205358,32.8486221]]},"id":"8944c0a363bffff-139726da94ff8040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678117,32.788865]},"id":"8f44c0b1c10d636-1396b8d8ebe0dfc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c10d636-1396b8d8ebe0dfc0","8f44c0b1c12a32c-17bfb8d0c789d8b4"]},"geometry":{"type":"LineString","coordinates":[[-83.678117,32.788865],[-83.67813000000001,32.788089]]},"id":"8944c0b1c13ffff-179eb8d4d25684cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67800600000001,32.785487]},"id":"8f44c0b1c88e4a0-17d7f91e4e60a972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c88e4a0-17d7f91e4e60a972","8f44c0b1c12a32c-17bfb8d0c789d8b4"]},"geometry":{"type":"LineString","coordinates":[[-83.67813000000001,32.788089],[-83.67815800000001,32.786064],[-83.678151,32.785935],[-83.67811400000001,32.78571],[-83.678071,32.785604],[-83.67800600000001,32.785487]]},"id":"8744c0b1cffffff-13f698cd166de670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674193,32.865115]},"id":"8f44c0a22c42b0d-13bee26d64d2d88c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c42b0d-13bee26d64d2d88c","8f44c0a221a6819-17fee2c4efdf811a"]},"geometry":{"type":"LineString","coordinates":[[-83.674193,32.865115],[-83.67409500000001,32.865209],[-83.674081,32.865229],[-83.67406100000001,32.865307],[-83.674053,32.86665]]},"id":"8744c0a22ffffff-179ef2bd00c8f6fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a221ad564-13dedfc10b772077","8f44c0a221a6819-17fee2c4efdf811a"]},"geometry":{"type":"LineString","coordinates":[[-83.674053,32.86665],[-83.674065,32.866765],[-83.674131,32.866923],[-83.67420800000001,32.86706],[-83.674251,32.867123],[-83.6743,32.867181],[-83.6744,32.867275],[-83.67457800000001,32.867432],[-83.67488300000001,32.867631],[-83.67502,32.867734],[-83.67517500000001,32.867877],[-83.67528800000001,32.868010000000005]]},"id":"8944c0a221bffff-17bfe1714dc2e48f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675756,32.869951]},"id":"8f44c0a22006106-1797fe9c8e1832cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a221ad564-13dedfc10b772077","8f44c0a22006106-1797fe9c8e1832cf"]},"geometry":{"type":"LineString","coordinates":[[-83.67528800000001,32.868010000000005],[-83.675403,32.86818],[-83.675498,32.868335],[-83.675605,32.8686],[-83.675658,32.868772],[-83.67568700000001,32.868906],[-83.675723,32.869134],[-83.67575500000001,32.869389000000005],[-83.675756,32.869951]]},"id":"8844c0a221fffff-1397fee8a14649ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2201c2a3-13b7ff256cdf596d","8f44c0a22006106-1797fe9c8e1832cf"]},"geometry":{"type":"LineString","coordinates":[[-83.675756,32.869951],[-83.675728,32.870195],[-83.675689,32.870431],[-83.675577,32.870924],[-83.675537,32.871043]]},"id":"8944c0a2203ffff-17defed5aa3fbeef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a220f1471-1797e0bf69fd4f44","8f44c0a2201c2a3-13b7ff256cdf596d"]},"geometry":{"type":"LineString","coordinates":[[-83.675537,32.871043],[-83.67542,32.871436],[-83.675279,32.871719],[-83.674988,32.872329],[-83.674931,32.872459],[-83.674881,32.87263]]},"id":"8844c0a221fffff-13b7dfed2bc75198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a220f1471-1797e0bf69fd4f44","8f44c0a220dd1ae-13dea07fd2c1d2d1"]},"geometry":{"type":"LineString","coordinates":[[-83.674881,32.87263],[-83.67492200000001,32.872995],[-83.674985,32.873388],[-83.674991,32.873576],[-83.6749827,32.874182600000005]]},"id":"8944c0a220fffff-17f6a08f066180c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22760d80-13ffa0778d6bcead","8f44c0a220dd1ae-13dea07fd2c1d2d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6749827,32.874182600000005],[-83.674987,32.874535],[-83.675005,32.875041],[-83.67499600000001,32.875228]]},"id":"8744c0a22ffffff-13b6e07963f75abb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67502400000001,32.875954]},"id":"8f44c0a22763394-17bfe066077af06d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22763394-17bfe066077af06d","8f44c0a22760d80-13ffa0778d6bcead"]},"geometry":{"type":"LineString","coordinates":[[-83.67499600000001,32.875228],[-83.67500100000001,32.875813],[-83.67502400000001,32.875954]]},"id":"8a44c0a22767fff-13def0744cdac2f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698035,32.796335]},"id":"8f44c0b1d916d18-13df68382fac6e77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d9304f6-13d665ef2799b73c","8f44c0b1d916d18-13df68382fac6e77"]},"geometry":{"type":"LineString","coordinates":[[-83.698035,32.796335],[-83.698321,32.796208],[-83.69864100000001,32.796053],[-83.698971,32.795904]]},"id":"8944c0b1d93ffff-13d6f7138ff796a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d922c1b-13ffe394af383866","8f44c0b1d9304f6-13d665ef2799b73c"]},"geometry":{"type":"LineString","coordinates":[[-83.698971,32.795904],[-83.69903500000001,32.795885000000006],[-83.69911300000001,32.795856],[-83.69918200000001,32.795836],[-83.699256,32.795828],[-83.699376,32.795841],[-83.699545,32.795875],[-83.69993500000001,32.795977]]},"id":"8944c0b1d93ffff-13b764c2304ba200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701846,32.796284]},"id":"8f44c0b032d0280-13bfdeea47b859ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032d0280-13bfdeea47b859ca","8f44c0b1d922c1b-13ffe394af383866"]},"geometry":{"type":"LineString","coordinates":[[-83.69993500000001,32.795977],[-83.70064,32.796138],[-83.70074600000001,32.796163],[-83.70090300000001,32.796201],[-83.70110600000001,32.796239],[-83.70133600000001,32.796259],[-83.701846,32.796284]]},"id":"8744c0b03ffffff-13f7e142ea4543ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665982,32.810406]},"id":"8f44c0b18568950-17b7f6794c219e57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66599000000001,32.809736]},"id":"8f44c0b1819209a-1397b67448f55f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1819209a-1397b67448f55f36","8f44c0b18568950-17b7f6794c219e57"]},"geometry":{"type":"LineString","coordinates":[[-83.665982,32.810406],[-83.66599000000001,32.809736]]},"id":"8944c0b1857ffff-13d6f676c24908a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666009,32.808877]},"id":"8f44c0b18ccb84b-13feb6686e997a77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18ccb84b-13feb6686e997a77","8f44c0b1819209a-1397b67448f55f36"]},"geometry":{"type":"LineString","coordinates":[[-83.66599000000001,32.809736],[-83.666009,32.808877]]},"id":"8744c0b18ffffff-13feb66e5f23f824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696554,32.789471]},"id":"8f44c0b0372a81d-139f6bd5c66eaddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0372a81d-139f6bd5c66eaddc","8f44c0b030d636c-17d669908e96e982"]},"geometry":{"type":"LineString","coordinates":[[-83.696554,32.789471],[-83.69674400000001,32.789344],[-83.69726700000001,32.789018],[-83.69737,32.788933],[-83.69744100000001,32.788829],[-83.697466,32.788772],[-83.69747500000001,32.78873],[-83.697485,32.788624],[-83.697484,32.788327]]},"id":"8744c0b03ffffff-13defa5a3bbe5282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030d636c-17d669908e96e982","8f44c0b0308d75c-17b7698aea5f1805"]},"geometry":{"type":"LineString","coordinates":[[-83.697484,32.788327],[-83.69749300000001,32.787458]]},"id":"8844c0b031fffff-17b6f98dbd9cfded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697511,32.786147]},"id":"8f44c0b030ae149-13ffe97fa091a621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030ae149-13ffe97fa091a621","8f44c0b0308d75c-17b7698aea5f1805"]},"geometry":{"type":"LineString","coordinates":[[-83.69749300000001,32.787458],[-83.697511,32.786147]]},"id":"8944c0b030bffff-1397f9854e5fe8f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680817,32.83503]},"id":"8f44c0b196accb6-13d7d241616d879f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679708,32.83462]},"id":"8f44c0b196a256c-17d794f68093c066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b196accb6-13d7d241616d879f","8f44c0b196a256c-17d794f68093c066"]},"geometry":{"type":"LineString","coordinates":[[-83.680817,32.83503],[-83.679708,32.83462]]},"id":"8944c0b196bffff-13d7b39bfccee5d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b196a256c-17d794f68093c066","8f44c0b196b6393-17de97a5673e3a1f"]},"geometry":{"type":"LineString","coordinates":[[-83.679708,32.83462],[-83.67860900000001,32.834224]]},"id":"8944c0b196bffff-17dfd64df2504189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693589,32.856389]},"id":"8f44c0a20d88062-17ff7312e71e3a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20cac9b4-13df731d87b062f1","8f44c0a20d88062-17ff7312e71e3a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.693589,32.856389],[-83.693588,32.857014],[-83.693572,32.857768]]},"id":"8844c0a20dfffff-179e731610ef187c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693556,32.859067]},"id":"8f44c0a20cf6ce0-13f6f3278849baca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20cf6ce0-13f6f3278849baca","8f44c0a20cac9b4-13df731d87b062f1"]},"geometry":{"type":"LineString","coordinates":[[-83.693572,32.857768],[-83.69356900000001,32.858432],[-83.693556,32.859067]]},"id":"8944c0a20cbffff-13def320e730aa30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584417,32.860799]},"id":"8f44c0b89d192c8-17bf7d9b63652fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d0325e-1797fced0878fa2b","8f44c0b89d192c8-17bf7d9b63652fb1"]},"geometry":{"type":"LineString","coordinates":[[-83.584417,32.860799],[-83.584451,32.860666],[-83.584624,32.86041],[-83.584705,32.860281],[-83.584743,32.860197],[-83.584759,32.860079],[-83.58474700000001,32.859979],[-83.58469600000001,32.859913]]},"id":"8944c0b89d3ffff-179f7d1ac6b98156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58297900000001,32.859985]},"id":"8f44c0b89dad421-17b7a11e255816c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d0325e-1797fced0878fa2b","8f44c0b89dad421-17b7a11e255816c0"]},"geometry":{"type":"LineString","coordinates":[[-83.58469600000001,32.859913],[-83.58464500000001,32.85989],[-83.584564,32.859882],[-83.58297900000001,32.859985]]},"id":"8844c0b89dfffff-17977f041208ba8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a249a26cd-17dfcf512920f207","8f44c0a24980288-13fe6f9544b17d33"]},"geometry":{"type":"LineString","coordinates":[[-83.70812600000001,32.835085],[-83.70818100000001,32.834643],[-83.708219,32.834395],[-83.708235,32.834246]]},"id":"8944c0a249bffff-17f7ef7351f52cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a249a26cd-17dfcf512920f207","8f44c0b0a64a46a-179ecd9cea900c71"]},"geometry":{"type":"LineString","coordinates":[[-83.708235,32.834246],[-83.708303,32.833823],[-83.70833900000001,32.833747],[-83.70839600000001,32.833675],[-83.708656,32.833419],[-83.70883900000001,32.833222],[-83.708933,32.833092]]},"id":"8644c0b0fffffff-17defea64651ba56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709103,32.831367]},"id":"8f44c0b0a64412e-17d66d32a56c8244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a64412e-17d66d32a56c8244","8f44c0b0a64a46a-179ecd9cea900c71"]},"geometry":{"type":"LineString","coordinates":[[-83.708933,32.833092],[-83.708976,32.833033],[-83.70907700000001,32.83279],[-83.70912600000001,32.832631],[-83.70916000000001,32.832469],[-83.709176,32.83231],[-83.709174,32.83214],[-83.709164,32.832039],[-83.709118,32.831783],[-83.709089,32.831546],[-83.709084,32.831442],[-83.709103,32.831367]]},"id":"8944c0b0a67ffff-13fecd2e55668fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674541,32.83084]},"id":"8f44c0b1bb0089e-179fa193ebcd4a8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb0089e-179fa193ebcd4a8e","8f44c0b1bb28900-179ffe14ef2f7d5c"]},"geometry":{"type":"LineString","coordinates":[[-83.674541,32.83084],[-83.674744,32.830834],[-83.675973,32.830863]]},"id":"8944c0b1bb3ffff-179fdfd46704a5b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677408,32.830897]},"id":"8f44c0b194dc22c-17beba940b0d71de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb28900-179ffe14ef2f7d5c","8f44c0b194dc22c-17beba940b0d71de"]},"geometry":{"type":"LineString","coordinates":[[-83.675973,32.830863],[-83.677408,32.830897]]},"id":"8644c0b1fffffff-17b69c5476b7048b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633018,32.865349]},"id":"8f44c0a307463a1-13df26f3c32a052b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63348900000001,32.866493000000006]},"id":"8f44c0a3074e629-179725cd6d437aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3074e629-179725cd6d437aa3","8f44c0a307463a1-13df26f3c32a052b"]},"geometry":{"type":"LineString","coordinates":[[-83.633018,32.865349],[-83.63311,32.865684],[-83.63328200000001,32.866078],[-83.63339900000001,32.866321],[-83.63348900000001,32.866493000000006]]},"id":"8944c0a3077ffff-17b7966fc0f2b424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3074e629-179725cd6d437aa3","8f44c0a3029e225-13d7c2716b5e2943"]},"geometry":{"type":"LineString","coordinates":[[-83.63348900000001,32.866493000000006],[-83.633668,32.86685],[-83.63386100000001,32.86721],[-83.634236,32.867843],[-83.63441800000001,32.868096],[-83.634662,32.868411],[-83.634865,32.868646000000005]]},"id":"8744c0a30ffffff-13df843ebb4ff8cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3029829b-13df41d8eaa8d81d","8f44c0a3029e225-13d7c2716b5e2943"]},"geometry":{"type":"LineString","coordinates":[[-83.634865,32.868646000000005],[-83.634991,32.86882],[-83.635109,32.869034]]},"id":"8a44c0a3029ffff-13dfa22176ca894e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636224,32.871166]},"id":"8f44c0a3392860d-13feff200ff34f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3029829b-13df41d8eaa8d81d","8f44c0a3392860d-13feff200ff34f9a"]},"geometry":{"type":"LineString","coordinates":[[-83.635109,32.869034],[-83.63526800000001,32.869228],[-83.63567300000001,32.869625],[-83.636053,32.869973],[-83.636155,32.870102],[-83.636212,32.870215],[-83.63624200000001,32.870319],[-83.636279,32.870519],[-83.636273,32.870838],[-83.636257,32.870947],[-83.636224,32.871166]]},"id":"8744c0a30ffffff-17b6fff1291355a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b0d540-17b76086a963dac4","8f44c0a32b0cad6-179720c480493902"]},"geometry":{"type":"LineString","coordinates":[[-83.622444,32.863213],[-83.622518,32.863357],[-83.62254300000001,32.863442]]},"id":"8a44c0a32b0ffff-17df70a27325c739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b0d540-17b76086a963dac4","8f44c0a32b44c49-13bf3c7a61db4758"]},"geometry":{"type":"LineString","coordinates":[[-83.62254300000001,32.863442],[-83.62279600000001,32.863644],[-83.622899,32.863712],[-83.623062,32.863793],[-83.623558,32.864013],[-83.624201,32.864269]]},"id":"8844c0a32bfffff-17d71e8fe90d9142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625623,32.864635]},"id":"8f44c0a32b6c20e-139ff901ae70fe96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b6c20e-139ff901ae70fe96","8f44c0a32b44c49-13bf3c7a61db4758"]},"geometry":{"type":"LineString","coordinates":[[-83.624201,32.864269],[-83.62440000000001,32.8643],[-83.624702,32.864376],[-83.625623,32.864635]]},"id":"8944c0a32b7ffff-1397dabc4d8024cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626804,32.864966]},"id":"8f44c0a30798166-13dfd61f83156987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b6c20e-139ff901ae70fe96","8f44c0a30798166-13dfd61f83156987"]},"geometry":{"type":"LineString","coordinates":[[-83.625623,32.864635],[-83.626804,32.864966]]},"id":"8844c0a307fffff-13f7579096a86d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62760200000001,32.865073]},"id":"8f44c0a3078a99b-139fb42cc86b020a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3078a99b-139fb42cc86b020a","8f44c0a30798166-13dfd61f83156987"]},"geometry":{"type":"LineString","coordinates":[[-83.626804,32.864966],[-83.627064,32.865036],[-83.62727500000001,32.865077],[-83.62760200000001,32.865073]]},"id":"8944c0a307bffff-139f7528240ecdbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632948,32.86513]},"id":"8f44c0a30746c60-13d7471f87f58c35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3078a99b-139fb42cc86b020a","8f44c0a30746c60-13d7471f87f58c35"]},"geometry":{"type":"LineString","coordinates":[[-83.62760200000001,32.865073],[-83.62824400000001,32.86466],[-83.628495,32.864539],[-83.628697,32.864497],[-83.62891,32.864496],[-83.62926,32.864544],[-83.62963900000001,32.864607],[-83.630368,32.864714],[-83.631218,32.864849],[-83.632778,32.865088],[-83.632948,32.86513]]},"id":"8844c0a307fffff-13f77dc893e41b94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736692,32.910255]},"id":"8f44c0a2897331b-13ff69d7878eaa61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2897331b-13ff69d7878eaa61","8f44c0a28975aec-17fe881801ac1c94"]},"geometry":{"type":"LineString","coordinates":[[-83.736692,32.910255],[-83.73719700000001,32.909837],[-83.737408,32.909668]]},"id":"8944c0a2897ffff-17b738f862c0cbb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737582,32.909101]},"id":"8f44c0a2c2d94d5-179e27ab40184f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28975aec-17fe881801ac1c94","8f44c0a2c2d94d5-179e27ab40184f98"]},"geometry":{"type":"LineString","coordinates":[[-83.737408,32.909668],[-83.73747200000001,32.909596],[-83.73752,32.909515],[-83.737539,32.90946],[-83.73755,32.909412],[-83.737582,32.909101]]},"id":"8844c0a289fffff-17d7f7cbb0492c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656003,32.8408]},"id":"8f44c0b1b680774-17deced621d19f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a76c35-1797f97b24be445c","8f44c0b1b680774-17deced621d19f58"]},"geometry":{"type":"LineString","coordinates":[[-83.651643,32.839861],[-83.65218300000001,32.840058],[-83.65237300000001,32.840131],[-83.65290800000001,32.840313],[-83.65320600000001,32.840403],[-83.65348800000001,32.840468],[-83.653625,32.840494],[-83.65462000000001,32.840621],[-83.65540100000001,32.840733],[-83.656003,32.8408]]},"id":"8644c0a37ffffff-17fef4392b2987bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659046,32.84131]},"id":"8f44c0b1b6190e1-139ec76849cd4be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6190e1-139ec76849cd4be8","8f44c0b1b680774-17deced621d19f58"]},"geometry":{"type":"LineString","coordinates":[[-83.656003,32.8408],[-83.659046,32.84131]]},"id":"8844c0b1b7fffff-17ffeb1f3edc530f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b67349d-13dec2cb087a77fa","8f44c0b1b6190e1-139ec76849cd4be8"]},"geometry":{"type":"LineString","coordinates":[[-83.659046,32.84131],[-83.659661,32.841417],[-83.660024,32.841485],[-83.660936,32.841614]]},"id":"8844c0b1b7fffff-13fef51a6ce927f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29d5d556-13d7f4d2e612e577","8f44c0a29d52a5d-17fdf7ab0810d911"]},"geometry":{"type":"LineString","coordinates":[[-83.74530100000001,32.9268],[-83.74413600000001,32.926051]]},"id":"8944c0a29d7ffff-17f7f63ef111f770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29d52a5d-17fdf7ab0810d911","8f44c0a29c043b0-17ddfbba676ad475"]},"geometry":{"type":"LineString","coordinates":[[-83.74413600000001,32.926051],[-83.743808,32.925849],[-83.74362500000001,32.925741],[-83.743488,32.925666],[-83.743345,32.925632],[-83.74298200000001,32.925595],[-83.742856,32.925603],[-83.74277500000001,32.925627],[-83.742683,32.925672],[-83.742576,32.925739],[-83.742552,32.925759],[-83.74248700000001,32.925885],[-83.742456,32.925995],[-83.74244800000001,32.926067],[-83.74248100000001,32.926311000000005],[-83.742473,32.9263763]]},"id":"8844c0a29dfffff-17fdfa25d074a168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7421929,32.9267483]},"id":"8f44c0a29c00440-13b5fc6976635e50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c00440-13b5fc6976635e50","8f44c0a29c043b0-17ddfbba676ad475"]},"geometry":{"type":"LineString","coordinates":[[-83.742473,32.9263763],[-83.742469,32.926422],[-83.742446,32.926477000000006],[-83.742396,32.926541],[-83.742327,32.926609],[-83.7421929,32.9267483]]},"id":"8a44c0a29c07fff-13d5fc056041e20a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731671,32.798327]},"id":"8f44c0b0c4eecde-17be7619abea0bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731019,32.797845]},"id":"8f44c0b0c4e270d-17ff37b125b0ae72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4eecde-17be7619abea0bd1","8f44c0b0c4e270d-17ff37b125b0ae72"]},"geometry":{"type":"LineString","coordinates":[[-83.731671,32.798327],[-83.73161400000001,32.798228],[-83.731572,32.798183],[-83.731454,32.798099],[-83.731019,32.797845]]},"id":"8944c0b0c4fffff-179676d7089b4087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4f514e-17f6183be1b07097","8f44c0b0c4e270d-17ff37b125b0ae72"]},"geometry":{"type":"LineString","coordinates":[[-83.731019,32.797845],[-83.730991,32.797756],[-83.73083000000001,32.797469],[-83.73079700000001,32.797424]]},"id":"8944c0b0c4fffff-17f6b7f08434a880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4f514e-17f6183be1b07097","8f44c0b0c4a5130-17f73b5469084589"]},"geometry":{"type":"LineString","coordinates":[[-83.73079700000001,32.797424],[-83.730761,32.797317],[-83.730289,32.796368],[-83.730044,32.795762],[-83.729893,32.795537],[-83.72969,32.795327],[-83.729529,32.795173000000005]]},"id":"8844c0b0c5fffff-139e799f3a1f3248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4a5130-17f73b5469084589","8f44c0b0c5a6903-17d69b0785b89bbe"]},"geometry":{"type":"LineString","coordinates":[[-83.729529,32.795173000000005],[-83.729206,32.79484],[-83.72877100000001,32.794449],[-83.728649,32.794278000000006],[-83.728617,32.794198],[-83.728598,32.794099],[-83.728565,32.793802],[-83.72861,32.792958],[-83.728638,32.792882],[-83.728682,32.7928],[-83.72873600000001,32.792723],[-83.729273,32.792198],[-83.729652,32.791812]]},"id":"8844c0b0c5fffff-13df3cc8e3e0cedc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c5a6903-17d69b0785b89bbe","8f44c0b012ccc2d-179e60b22e5ddca9"]},"geometry":{"type":"LineString","coordinates":[[-83.729652,32.791812],[-83.730137,32.791356],[-83.730254,32.79123],[-83.730293,32.791175],[-83.730315,32.791128],[-83.730327,32.790976],[-83.730316,32.790929000000006],[-83.730253,32.790808000000006],[-83.73021700000001,32.790757],[-83.73011500000001,32.790664],[-83.730074,32.790635],[-83.729982,32.790598],[-83.729921,32.790591],[-83.72805100000001,32.790619],[-83.727654,32.790644],[-83.727564,32.790675],[-83.727462,32.79074],[-83.72739100000001,32.790815],[-83.72734700000001,32.790922],[-83.72733500000001,32.790988],[-83.727327,32.791201],[-83.727331,32.791514]]},"id":"8644c0b0fffffff-17969cc2ff68724a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4862ca-13973ef6684a4741","8f44c0b012ccc2d-179e60b22e5ddca9"]},"geometry":{"type":"LineString","coordinates":[[-83.727331,32.791514],[-83.72733600000001,32.792339000000005],[-83.727323,32.792889],[-83.72732500000001,32.793439],[-83.727293,32.794331],[-83.72728500000001,32.795157],[-83.727299,32.795344],[-83.727339,32.795468],[-83.727367,32.795524],[-83.727438,32.795631],[-83.72758400000001,32.795786],[-83.72799400000001,32.796189000000005],[-83.728041,32.796245]]},"id":"8644c0b0fffffff-1797308d2cc6d244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728711,32.797829]},"id":"8f44c0b0c48b56b-17f73d53a4573895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4862ca-13973ef6684a4741","8f44c0b0c48b56b-17f73d53a4573895"]},"geometry":{"type":"LineString","coordinates":[[-83.728041,32.796245],[-83.728543,32.796735000000005],[-83.72859700000001,32.796801],[-83.72868000000001,32.796943],[-83.728706,32.797044],[-83.72871400000001,32.797148],[-83.728711,32.797829]]},"id":"8944c0b0c4bffff-13dfddbfe543c100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a300f0813-1397c56be86be2c0","8f44c0a300e2243-13f7a33a095d8968"]},"geometry":{"type":"LineString","coordinates":[[-83.634544,32.861905],[-83.634038,32.86198],[-83.63375,32.862012],[-83.633677,32.861902],[-83.63371000000001,32.861584],[-83.633711,32.861434],[-83.633645,32.861342]]},"id":"8944c0a300fffff-13b744b637ffa29b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63362000000001,32.860982]},"id":"8f44c0a300f4194-13b7c57b81234825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a300f4194-13b7c57b81234825","8f44c0a300f0813-1397c56be86be2c0"]},"geometry":{"type":"LineString","coordinates":[[-83.633645,32.861342],[-83.63362000000001,32.860982]]},"id":"8a44c0a300f7fff-13974573b6c75ca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60864310000001,32.8434558]},"id":"8f44c0a3640eb13-17d7e276186284ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364081ae-179fc212ce4e1baf","8f44c0a3640eb13-17d7e276186284ab"]},"geometry":{"type":"LineString","coordinates":[[-83.60864310000001,32.8434558],[-83.60880200000001,32.843772]]},"id":"8a44c0a3640ffff-17bff244622c7d81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364081ae-179fc212ce4e1baf","8f44c0a36456b15-17f760f7f343f2c0"]},"geometry":{"type":"LineString","coordinates":[[-83.60880200000001,32.843772],[-83.6092545,32.8445302]]},"id":"8844c0a365fffff-179f71855da6fa74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61005460000001,32.846082700000004]},"id":"8f44c0a364583a2-13d7bf03e795d6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36456b15-17f760f7f343f2c0","8f44c0a364583a2-13d7bf03e795d6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6092545,32.8445302],[-83.60949930000001,32.845024800000004],[-83.61005460000001,32.846082700000004]]},"id":"8944c0a3647ffff-13dfd0006970c549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a238d8220-179e6a0ba8aab32a","8f44c0a2316592a-139fe7572de6f0dd"]},"geometry":{"type":"LineString","coordinates":[[-83.698395,32.884326],[-83.69793700000001,32.884307],[-83.69782000000001,32.884292],[-83.697725,32.884259],[-83.69763800000001,32.884217],[-83.69757,32.884166],[-83.697507,32.884109],[-83.69744,32.884],[-83.69738000000001,32.883887],[-83.697287,32.883674]]},"id":"8844c0a231fffff-13bef8ec4528daac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69637150000001,32.884360300000004]},"id":"8f44c0a23170c00-13b77c47d02c2d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a238d8220-179e6a0ba8aab32a","8f44c0a23170c00-13b77c47d02c2d66"]},"geometry":{"type":"LineString","coordinates":[[-83.697287,32.883674],[-83.697232,32.883612],[-83.697145,32.883533],[-83.69708,32.883485],[-83.69700900000001,32.883453],[-83.696916,32.883432],[-83.696731,32.883432],[-83.69664900000001,32.88344],[-83.696561,32.88347],[-83.696493,32.883502],[-83.696422,32.883555],[-83.69636200000001,32.883606],[-83.696315,32.883674],[-83.696284,32.883761],[-83.696279,32.883844],[-83.696281,32.883927],[-83.69630500000001,32.884065],[-83.696347,32.884226000000005],[-83.69637150000001,32.884360300000004]]},"id":"8844c0a231fffff-179e7bb07fbeffc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648165,32.8483563]},"id":"8f44c0a342452d1-13def1f8e6965852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647362,32.849597]},"id":"8f44c0a34259334-17d6e3eec6bb9518"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342452d1-13def1f8e6965852","8f44c0a34259334-17d6e3eec6bb9518"]},"geometry":{"type":"LineString","coordinates":[[-83.648165,32.8483563],[-83.648093,32.848523],[-83.647362,32.849597]]},"id":"8944c0a3427ffff-13d6f2eb9bb8f15c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646529,32.850749]},"id":"8f44c0a3558691e-17b6e5f76738658d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3558691e-17b6e5f76738658d","8f44c0a34259334-17d6e3eec6bb9518"]},"geometry":{"type":"LineString","coordinates":[[-83.647362,32.849597],[-83.64699,32.85015],[-83.646625,32.850704],[-83.64659300000001,32.850734],[-83.646568,32.850748],[-83.646529,32.850749]]},"id":"8744c0a35ffffff-17dff4e9dd464ab1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67200600000001,32.824564]},"id":"8f44c0b1b97049c-17bea7c447e43a78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b976aa6-17ffa7b18a373685","8f44c0b1b97049c-17bea7c447e43a78"]},"geometry":{"type":"LineString","coordinates":[[-83.67200600000001,32.824564],[-83.672036,32.824233]]},"id":"8a44c0b1b977fff-17d7b7bae5a831c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b976aa6-17ffa7b18a373685","8f44c0b182d3613-1396a76eab169ecf"]},"geometry":{"type":"LineString","coordinates":[[-83.672036,32.824233],[-83.672154,32.823710000000005],[-83.672143,32.823072]]},"id":"8844c0b1b9fffff-1797b77a7f8b1536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18289000-13d6e764a1675db5","8f44c0b182d3613-1396a76eab169ecf"]},"geometry":{"type":"LineString","coordinates":[[-83.672143,32.823072],[-83.67215900000001,32.821739]]},"id":"8744c0b18ffffff-13f7f769a56b6de5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672172,32.820211]},"id":"8f44c0b182ae394-1797e75c8118d66f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182ae394-1797e75c8118d66f","8f44c0b18289000-13d6e764a1675db5"]},"geometry":{"type":"LineString","coordinates":[[-83.67215900000001,32.821739],[-83.672172,32.820211]]},"id":"8944c0b182bffff-17f7e76095f53519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67236100000001,32.829405]},"id":"8f44c0b1b84e16c-139ea6e66ef75eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b84e16c-139ea6e66ef75eb3","8f44c0b1b959d13-1797a6cae7bf2347"]},"geometry":{"type":"LineString","coordinates":[[-83.67236100000001,32.829405],[-83.672348,32.829276],[-83.67234900000001,32.82835],[-83.67240500000001,32.826729]]},"id":"8844c0b1b9fffff-17d7f6e33d86f797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b959d13-1797a6cae7bf2347","8f44c0b1b95d4de-179fa6cb8a22cc15"]},"geometry":{"type":"LineString","coordinates":[[-83.67240500000001,32.826729],[-83.672404,32.826565]]},"id":"8a44c0b1b95ffff-17dee6cb3ccf38d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67240000000001,32.826081]},"id":"8f44c0b1b95c855-13fea6ce0c4cf7e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b95c855-13fea6ce0c4cf7e9","8f44c0b1b95d4de-179fa6cb8a22cc15"]},"geometry":{"type":"LineString","coordinates":[[-83.672404,32.826565],[-83.67240000000001,32.826081]]},"id":"8a44c0b1b95ffff-1397e6ccc051a8d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67228700000001,32.826076]},"id":"8f44c0b1b95c898-13ffa714a2655f59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b942620-13f7a70dcdd6a300","8f44c0b1b95c898-13ffa714a2655f59"]},"geometry":{"type":"LineString","coordinates":[[-83.67228700000001,32.826076],[-83.67229800000001,32.825861]]},"id":"8944c0b1b97ffff-13b6f71130593189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b942620-13f7a70dcdd6a300","8f44c0b1b946c94-13bfe6f7efdc4848"]},"geometry":{"type":"LineString","coordinates":[[-83.67229800000001,32.825861],[-83.67231600000001,32.825615],[-83.67233300000001,32.825158]]},"id":"8944c0b1b97ffff-1397b70101d507b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b97195d-17b7e5d368606818","8f44c0b1b946c94-13bfe6f7efdc4848"]},"geometry":{"type":"LineString","coordinates":[[-83.67233300000001,32.825158],[-83.67234900000001,32.824812],[-83.672357,32.824787],[-83.672397,32.824747],[-83.67242200000001,32.824737],[-83.672576,32.824739],[-83.672801,32.824742]]},"id":"8a44c0b1b977fff-17feb6a30fc9e638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69410710000001,32.8471151]},"id":"8f44c0a244dacb0-17d6f1cf182fed99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694079,32.848433]},"id":"8f44c0a26b7395d-13fef1e0a95e592c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b7395d-13fef1e0a95e592c","8f44c0a244dacb0-17d6f1cf182fed99"]},"geometry":{"type":"LineString","coordinates":[[-83.69410710000001,32.8471151],[-83.694079,32.848433]]},"id":"8844c0a26bfffff-17f6f1d7d15ab4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694068,32.850034]},"id":"8f44c0a26b58946-17f771e78dbb7c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b58946-17f771e78dbb7c50","8f44c0a26b7395d-13fef1e0a95e592c"]},"geometry":{"type":"LineString","coordinates":[[-83.694079,32.848433],[-83.69407000000001,32.849182],[-83.694068,32.850034]]},"id":"8944c0a26b7ffff-13f6f1e54c21b44b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68305500000001,32.84384]},"id":"8f44c0a2689c651-17de8ccaa491aca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2688e544-17d6ead6adeda4b0","8f44c0a2689c651-17de8ccaa491aca2"]},"geometry":{"type":"LineString","coordinates":[[-83.68305500000001,32.84384],[-83.683317,32.843826],[-83.68385500000001,32.843831]]},"id":"8944c0a268bffff-17d7cbd0b55c3a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685354,32.843826]},"id":"8f44c0a268f6988-17bfc72dc550d1c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2688e544-17d6ead6adeda4b0","8f44c0a268f6988-17bfc72dc550d1c6"]},"geometry":{"type":"LineString","coordinates":[[-83.68385500000001,32.843831],[-83.685354,32.843826]]},"id":"8944c0a268bffff-17d6d90234b737e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687916,32.843829]},"id":"8f44c0a2680944e-17d7a0ec86c00213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2680944e-17d7a0ec86c00213","8f44c0a268f6988-17bfc72dc550d1c6"]},"geometry":{"type":"LineString","coordinates":[[-83.685354,32.843826],[-83.687916,32.843829]]},"id":"8844c0a269fffff-17d6b40d286dfdc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d25925-13ffb089ec4d6548","8f44c0b1c6f185c-13beebdee40de340"]},"geometry":{"type":"LineString","coordinates":[[-83.668413,32.800072],[-83.668813,32.799894],[-83.66891100000001,32.799857],[-83.668971,32.799839],[-83.669047,32.799824],[-83.669132,32.799813],[-83.66932200000001,32.799807],[-83.670325,32.79979]]},"id":"8844c0b1c7fffff-13f7fe3f2e334d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6e89b1-1796a84dcf4c4a9a","8f44c0b1c6f185c-13beebdee40de340"]},"geometry":{"type":"LineString","coordinates":[[-83.670325,32.79979],[-83.67068400000001,32.799784],[-83.67075200000001,32.799785],[-83.67087500000001,32.799798],[-83.670945,32.799811000000005],[-83.67102200000001,32.799833],[-83.67116,32.799886],[-83.67129100000001,32.799957],[-83.67143200000001,32.800075],[-83.671507,32.800159],[-83.67178600000001,32.800545]]},"id":"8944c0b1c6fffff-13d6b9e215aebcb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671997,32.801597]},"id":"8f44c0b189b63b3-17b6a7c9e486270a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6e89b1-1796a84dcf4c4a9a","8f44c0b189b63b3-17b6a7c9e486270a"]},"geometry":{"type":"LineString","coordinates":[[-83.67178600000001,32.800545],[-83.671867,32.8007],[-83.671902,32.800778],[-83.671968,32.800956],[-83.67198400000001,32.801022],[-83.671997,32.801194],[-83.672003,32.801434],[-83.671997,32.801597]]},"id":"8844c0b1c7fffff-17d7f7e7e4294fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697326,32.786121]},"id":"8f44c0b030ae54d-13dfe9f344399c8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030ae54d-13dfe9f344399c8d","8f44c0b0318ad4c-179f69b744477e5f"]},"geometry":{"type":"LineString","coordinates":[[-83.697326,32.786121],[-83.697354,32.785916],[-83.69736800000001,32.785671],[-83.697422,32.784354]]},"id":"8844c0b031fffff-17b7f9cf1bec70e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69760500000001,32.782477]},"id":"8f44c0b031a2066-13fe6944ec00d253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b031a2066-13fe6944ec00d253","8f44c0b0318ad4c-179f69b744477e5f"]},"geometry":{"type":"LineString","coordinates":[[-83.697422,32.784354],[-83.69744100000001,32.784112],[-83.69747100000001,32.783378],[-83.69750300000001,32.783157],[-83.697591,32.782811],[-83.697602,32.782715],[-83.69760500000001,32.782477]]},"id":"8944c0b031bffff-13d76986ee8bf0bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b031a2066-13fe6944ec00d253","8f44c0b03c5bb4b-17b669548bcc920e"]},"geometry":{"type":"LineString","coordinates":[[-83.69760500000001,32.782477],[-83.69758,32.781725]]},"id":"8744c0b03ffffff-179f694cb6b0a1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697573,32.780631]},"id":"8f44c0b03c426c9-13f66958ed20f7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c5bb4b-17b669548bcc920e","8f44c0b03c426c9-13f66958ed20f7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.69758,32.781725],[-83.69757700000001,32.781249],[-83.697573,32.780631]]},"id":"8944c0b03c7ffff-17de6956b867ce42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69760000000001,32.779516]},"id":"8f44c0b03c73959-13bfe948046b89d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c73959-13bfe948046b89d3","8f44c0b03c426c9-13f66958ed20f7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.697573,32.780631],[-83.697587,32.780482],[-83.697596,32.780273],[-83.69760000000001,32.779516]]},"id":"8944c0b03c7ffff-139e694b8a6f982c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658816,32.828677]},"id":"8f44c0b1bcc2555-13d7e7f80fb5e662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65881610000001,32.827932700000005]},"id":"8f44c0b1bcf316c-17f7f7f7f2ff2c17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bcc2555-13d7e7f80fb5e662","8f44c0b1bcf316c-17f7f7f7f2ff2c17"]},"geometry":{"type":"LineString","coordinates":[[-83.658816,32.828677],[-83.65881610000001,32.827932700000005]]},"id":"8944c0b1bcfffff-13ded7f7f266662b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75760500000001,32.865327]},"id":"8f44c0b50c89093-13bdf6c8e3dd43cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50c89093-13bdf6c8e3dd43cd","8f44c0b50c89075-13d7f670245ddd94"]},"geometry":{"type":"LineString","coordinates":[[-83.75760500000001,32.865327],[-83.75774700000001,32.865335]]},"id":"8c44c0b50c891ff-13bff69c8732de2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50c89093-13bdf6c8e3dd43cd","8f44c0b50c89075-13d7f670245ddd94"]},"geometry":{"type":"LineString","coordinates":[[-83.75774700000001,32.865335],[-83.75766300000001,32.865229],[-83.757627,32.865166],[-83.75752200000001,32.86507],[-83.75742500000001,32.864964],[-83.75735,32.864891],[-83.75727300000001,32.864797],[-83.75713,32.864648],[-83.756939,32.864434],[-83.756828,32.864328],[-83.75681,32.864314],[-83.75673300000001,32.864286],[-83.75664400000001,32.864275],[-83.75659200000001,32.864283],[-83.756539,32.864314],[-83.756521,32.864347],[-83.756516,32.864413],[-83.756523,32.864466],[-83.756557,32.864558],[-83.75658800000001,32.864618],[-83.756617,32.864655],[-83.75671100000001,32.864745],[-83.75685,32.8649],[-83.756996,32.865051],[-83.75703,32.865111],[-83.757092,32.865187],[-83.75717200000001,32.86526],[-83.75729600000001,32.865332],[-83.757355,32.865344],[-83.757429,32.865347],[-83.75760500000001,32.865327]]},"id":"8844c0b50dfffff-139df8182bf914e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b883936-17f6f61862a4c45b","8f44c0b1b8aa0e2-179ef408e9051f09"]},"geometry":{"type":"LineString","coordinates":[[-83.666137,32.827326],[-83.666981,32.82739]]},"id":"8944c0b1b8bffff-179ef510af43b405"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66777900000001,32.827416]},"id":"8f44c0b1b8a9c29-17bfb2162acf639b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8a9c29-17bfb2162acf639b","8f44c0b1b8aa0e2-179ef408e9051f09"]},"geometry":{"type":"LineString","coordinates":[[-83.666981,32.82739],[-83.66777900000001,32.827416]]},"id":"8a44c0b1b8affff-17b6f30f89df6097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649056,32.849292000000005]},"id":"8f44c0a355366f0-1397dfcc00701cbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35530d5e-1397feae6ae1da4e","8f44c0a355366f0-1397dfcc00701cbc"]},"geometry":{"type":"LineString","coordinates":[[-83.649056,32.849292000000005],[-83.649513,32.849283]]},"id":"8a44c0a35537fff-1396ff3d33c98cfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650412,32.849308]},"id":"8f44c0a35526702-13b7dc7c8998c00e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35526702-13b7dc7c8998c00e","8f44c0a35530d5e-1397feae6ae1da4e"]},"geometry":{"type":"LineString","coordinates":[[-83.649513,32.849283],[-83.64999,32.849289],[-83.650412,32.849308]]},"id":"8944c0a3553ffff-1397fd9569162617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65147,32.849325]},"id":"8f44c0a3552580c-13bef9e7441983d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35526702-13b7dc7c8998c00e","8f44c0a3552580c-13bef9e7441983d3"]},"geometry":{"type":"LineString","coordinates":[[-83.650412,32.849308],[-83.65147,32.849325]]},"id":"8a44c0a35527fff-13b6db31e5ff70b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653186,32.849347]},"id":"8f44c0a35cc688e-13bff5b6cb88932d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cc688e-13bff5b6cb88932d","8f44c0a3552580c-13bef9e7441983d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65147,32.849325],[-83.65309400000001,32.849352],[-83.653186,32.849347]]},"id":"8844c0a35dfffff-13b6f7cefac52f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cc4ae8-13fef4258503c12f","8f44c0a35cc688e-13bff5b6cb88932d"]},"geometry":{"type":"LineString","coordinates":[[-83.653186,32.849347],[-83.65325800000001,32.849345],[-83.653828,32.849431]]},"id":"8a44c0a35cc7fff-13d6d4edf194ae9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654374,32.849505]},"id":"8f44c0a35ceecc8-179ef2d042c4393f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cc4ae8-13fef4258503c12f","8f44c0a35ceecc8-179ef2d042c4393f"]},"geometry":{"type":"LineString","coordinates":[[-83.653828,32.849431],[-83.65405700000001,32.849452],[-83.654374,32.849505]]},"id":"8944c0a35cfffff-1796f37a88f4a7e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716936,32.898923]},"id":"8f44c0a2e8e95b1-17d6fa130b80a6a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e8e95b1-17d6fa130b80a6a2","8f44c0a2eb242f0-17b76d0982f26756"]},"geometry":{"type":"LineString","coordinates":[[-83.716936,32.898923],[-83.71804300000001,32.898943],[-83.718462,32.898961],[-83.718601,32.899005],[-83.718711,32.899059],[-83.71879100000001,32.899118],[-83.71885,32.899184000000005],[-83.718974,32.899357],[-83.719054,32.899478],[-83.71915800000001,32.899599],[-83.719262,32.899673],[-83.71937700000001,32.899717],[-83.71955700000001,32.899727],[-83.720256,32.89974],[-83.720377,32.899676],[-83.720394,32.898983],[-83.720405,32.898916],[-83.72046900000001,32.898873],[-83.720518,32.898868],[-83.72070000000001,32.898866000000005],[-83.72227600000001,32.898898]]},"id":"8744c0a2effffff-17de7367b5753784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2eb242f0-17b76d0982f26756","8f44c0a2c4e0046-139625262b5f3e2a"]},"geometry":{"type":"LineString","coordinates":[[-83.72227600000001,32.898898],[-83.725148,32.898944],[-83.725216,32.89893],[-83.72528600000001,32.898907],[-83.72536600000001,32.898857],[-83.725415,32.898815],[-83.725452,32.898769],[-83.725475,32.898722],[-83.725502,32.898623],[-83.72550700000001,32.898432]]},"id":"8844c0a2c5fffff-17bfb8b782643259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c4e0046-139625262b5f3e2a","8f44c0a2c48e422-1397ad052d447b5e"]},"geometry":{"type":"LineString","coordinates":[[-83.72550700000001,32.898432],[-83.72551100000001,32.898167],[-83.725502,32.898111],[-83.725474,32.898046],[-83.725436,32.89799],[-83.72538800000001,32.897944],[-83.725344,32.897914],[-83.72527600000001,32.897883],[-83.72518600000001,32.897855],[-83.72509600000001,32.897850000000005],[-83.722283,32.897801]]},"id":"8844c0a2c5fffff-13b768a0d59fdcbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721721,32.897806]},"id":"8f44c0a2c49c20b-139eee646e579a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c48e422-1397ad052d447b5e","8f44c0a2c49c20b-139eee646e579a79"]},"geometry":{"type":"LineString","coordinates":[[-83.722283,32.897801],[-83.721721,32.897806]]},"id":"8944c0a2c4bffff-13973db4cd526515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66275800000001,32.818644]},"id":"8f44c0b186a03a5-13d6be584dca7659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631912,32.8186449]},"id":"8f44c0b186a5299-13d7bd4988eecf16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186a5299-13d7bd4988eecf16","8f44c0b186a03a5-13d6be584dca7659"]},"geometry":{"type":"LineString","coordinates":[[-83.66275800000001,32.818644],[-83.6631912,32.8186449]]},"id":"8a44c0b186a7fff-13d6fdd0ec170ba4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186a5299-13d7bd4988eecf16","8f44c0b18605a32-13dff6780f5636b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6631912,32.8186449],[-83.663745,32.818646],[-83.66502600000001,32.81866],[-83.66598400000001,32.818678000000006]]},"id":"8844c0b187fffff-13deb9e0c245e302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66661,32.818689]},"id":"8f44c0b18628d28-13f6b4f0c413ba8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18628d28-13f6b4f0c413ba8c","8f44c0b18605a32-13dff6780f5636b3"]},"geometry":{"type":"LineString","coordinates":[[-83.66598400000001,32.818678000000006],[-83.66661,32.818689]]},"id":"8944c0b1863ffff-13dfb5b46ca64401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd2115b-1797f382ce192ad0","8f44c0b8bd1d929-13bfb67ac3e489b2"]},"geometry":{"type":"LineString","coordinates":[[-83.56233800000001,32.863802],[-83.56207300000001,32.863971],[-83.56183200000001,32.864232],[-83.561536,32.86468],[-83.561367,32.864866],[-83.56112200000001,32.865100000000005]]},"id":"8944c0b8bd3ffff-139ff509773ac7aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560704,32.867972]},"id":"8f44c0b8bc01669-13b7b7800fb0d43a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd1d929-13bfb67ac3e489b2","8f44c0b8bc01669-13b7b7800fb0d43a"]},"geometry":{"type":"LineString","coordinates":[[-83.56112200000001,32.865100000000005],[-83.560975,32.865251],[-83.560917,32.865358],[-83.56081800000001,32.865619],[-83.56076800000001,32.865809],[-83.56075100000001,32.86611],[-83.56076200000001,32.866363],[-83.56080100000001,32.866632],[-83.560861,32.866939],[-83.560967,32.867378],[-83.560991,32.867523000000006],[-83.56098700000001,32.867601],[-83.560973,32.867641],[-83.560929,32.867734],[-83.56084100000001,32.867835],[-83.560704,32.867972]]},"id":"8844c0b8bdfffff-17b7b71d8df897f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76013300000001,32.855334]},"id":"8f44c0b56b4c829-13d7d09ce0d33723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5479922c-13dfeb1909961929","8f44c0b56b4c829-13d7d09ce0d33723"]},"geometry":{"type":"LineString","coordinates":[[-83.76013300000001,32.855334],[-83.76036900000001,32.855269],[-83.760649,32.855182],[-83.76080400000001,32.855126],[-83.760937,32.855063],[-83.76107,32.854985],[-83.76119200000001,32.85492],[-83.761307,32.854878],[-83.761443,32.85485],[-83.76159700000001,32.854829],[-83.76176600000001,32.854836],[-83.761887,32.854866],[-83.762016,32.854915000000005],[-83.762113,32.854973],[-83.762184,32.855034],[-83.76232300000001,32.855196],[-83.762369,32.855303],[-83.76239100000001,32.855379],[-83.762397,32.855446],[-83.762392,32.855517]]},"id":"8744c0b54ffffff-13b7dd85cd3aa44d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b54684a5b-17d5cbb9a04493d7","8f44c0b5479922c-13dfeb1909961929"]},"geometry":{"type":"LineString","coordinates":[[-83.762392,32.855517],[-83.762377,32.85566],[-83.762135,32.856758]]},"id":"8844c0b547fffff-17dfeb64e9b84c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b54684a5b-17d5cbb9a04493d7","8f44c0b5469d530-1397ed972aed32f2"]},"geometry":{"type":"LineString","coordinates":[[-83.762135,32.856758],[-83.762094,32.856868],[-83.76203500000001,32.856983],[-83.761953,32.857097],[-83.76186200000001,32.857199],[-83.76165400000001,32.857414],[-83.76155800000001,32.857505],[-83.761488,32.857602],[-83.76142700000001,32.857701],[-83.761387,32.857784],[-83.76137100000001,32.857867]]},"id":"8944c0b546bffff-17bddcaaf170f463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66243200000001,32.871098]},"id":"8f44c0a2249e291-13d6ff240d711878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2249e291-13d6ff240d711878","8f44c0a2248e052-13dffbdfc5fbb965"]},"geometry":{"type":"LineString","coordinates":[[-83.66243200000001,32.871098],[-83.663065,32.871088],[-83.66377,32.87109]]},"id":"8944c0a224bffff-13dffd81e7138995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66686800000001,32.870995]},"id":"8f44c0a224e4d45-1397f44f810fe814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a224e4d45-1397f44f810fe814","8f44c0a2248e052-13dffbdfc5fbb965"]},"geometry":{"type":"LineString","coordinates":[[-83.66377,32.87109],[-83.66686800000001,32.870995]]},"id":"8844c0a225fffff-13b7b817a181bff9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54107780000001,32.820782200000004]},"id":"8f44c0b83b91676-17ffe76a632d2655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b9459a-13bfe8798e06591e","8f44c0b83b91676-17ffe76a632d2655"]},"geometry":{"type":"LineString","coordinates":[[-83.540644,32.81983],[-83.540683,32.820017],[-83.54085900000001,32.820541],[-83.540971,32.820687],[-83.54107780000001,32.820782200000004]]},"id":"8a44c0b83b97fff-17f7e81188b76bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5427114,32.821667500000004]},"id":"8f44c0b83b88286-13b7f36d60ddaa7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b88286-13b7f36d60ddaa7f","8f44c0b83b91676-17ffe76a632d2655"]},"geometry":{"type":"LineString","coordinates":[[-83.54107780000001,32.820782200000004],[-83.541201,32.820892],[-83.54167000000001,32.821323],[-83.54194100000001,32.821489],[-83.542158,32.821568],[-83.542281,32.821595],[-83.5427114,32.821667500000004]]},"id":"8944c0b83bbffff-17d7f58e985c4c01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b88286-13b7f36d60ddaa7f","8f44c0b83b190f6-179ffdb54e9a8560"]},"geometry":{"type":"LineString","coordinates":[[-83.5427114,32.821667500000004],[-83.543023,32.82172],[-83.543135,32.821733],[-83.54328100000001,32.821738],[-83.543422,32.821733],[-83.54352,32.821723],[-83.54365700000001,32.821696],[-83.543796,32.821663],[-83.543951,32.821607],[-83.54418000000001,32.821496],[-83.54505400000001,32.821007]]},"id":"8844c0b83bfffff-17d7e07aae485bce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62881900000001,32.82855]},"id":"8f44c0ba930b70d-13f7d1342338266b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba930b70d-13f7d1342338266b","8f44c0ba935601d-139f1030b0e7a62d"]},"geometry":{"type":"LineString","coordinates":[[-83.62881900000001,32.82855],[-83.6292341,32.8287952]]},"id":"8844c0ba93fffff-13d770b26f4b4549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6295576,32.828986300000004]},"id":"8f44c0ba9350c71-13977f66891f82d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9350c71-13977f66891f82d2","8f44c0ba935601d-139f1030b0e7a62d"]},"geometry":{"type":"LineString","coordinates":[[-83.6292341,32.8287952],[-83.6295576,32.828986300000004]]},"id":"8a44c0ba9357fff-13dfcfcb9faa280c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63040000000001,32.8295]},"id":"8f44c0ba9342663-13d78d580418ded6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9342663-13d78d580418ded6","8f44c0ba9350c71-13977f66891f82d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6295576,32.828986300000004],[-83.63040000000001,32.8295]]},"id":"8944c0ba937ffff-13b70e5f40bfed25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63113220000001,32.829936100000005]},"id":"8f44c0ba934e1a8-17d71b8e608b59bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba934e1a8-17d71b8e608b59bb","8f44c0ba9342663-13d78d580418ded6"]},"geometry":{"type":"LineString","coordinates":[[-83.63040000000001,32.8295],[-83.63113220000001,32.829936100000005]]},"id":"8944c0ba937ffff-13dfdc73321aa04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6314358,32.8301199]},"id":"8f44c0ba9348d19-17dffad0aec7e500"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba934e1a8-17d71b8e608b59bb","8f44c0ba9348d19-17dffad0aec7e500"]},"geometry":{"type":"LineString","coordinates":[[-83.63113220000001,32.829936100000005],[-83.6314358,32.8301199]]},"id":"8a44c0ba934ffff-179f8b2f81ff60db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63190820000001,32.8304057]},"id":"8f44c0ba934d6ed-17ff99a96d07f78c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9348d19-17dffad0aec7e500","8f44c0ba934d6ed-17ff99a96d07f78c"]},"geometry":{"type":"LineString","coordinates":[[-83.6314358,32.8301199],[-83.63190820000001,32.8304057]]},"id":"8a44c0ba934ffff-17b74a3d04afb239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898d3c12-17976e592ad04e07","8f44c0b89832818-139feae4267104d0"]},"geometry":{"type":"LineString","coordinates":[[-83.592083,32.861995],[-83.592298,32.862307],[-83.592376,32.862454],[-83.592456,32.862685],[-83.59251,32.862948],[-83.5926,32.863615],[-83.59262000000001,32.863816],[-83.59261500000001,32.864053000000006],[-83.59259700000001,32.864167],[-83.592557,32.864294],[-83.592472,32.864454],[-83.592399,32.864547],[-83.590815,32.866149],[-83.59066700000001,32.86628]]},"id":"8844c0b899fffff-13bf7b04a7c8296f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898d3c12-17976e592ad04e07","8f44c0b891a1b80-17b7f7f8e07be5ad"]},"geometry":{"type":"LineString","coordinates":[[-83.59066700000001,32.86628],[-83.588558,32.866521],[-83.58827500000001,32.866556],[-83.58799400000001,32.866601],[-83.586905,32.866875],[-83.586725,32.866923]]},"id":"8744c0b89ffffff-17b7732feb37da09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625425,32.865291]},"id":"8f44c0a32b6bb86-13b7f97d653e8e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b6c20e-139ff901ae70fe96","8f44c0a32b6bb86-13b7f97d653e8e63"]},"geometry":{"type":"LineString","coordinates":[[-83.625623,32.864635],[-83.62559800000001,32.864744],[-83.625425,32.865291]]},"id":"8a44c0a32b6ffff-13df993d43ddab49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b4b0a5-17975bae05a24e6b","8f44c0a32b6bb86-13b7f97d653e8e63"]},"geometry":{"type":"LineString","coordinates":[[-83.625425,32.865291],[-83.625338,32.865453],[-83.62452800000001,32.86629]]},"id":"8944c0a32b7ffff-13f73a8aac20c3c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622613,32.868236]},"id":"8f44c0a32a5cc40-13d7a05ae49c0ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a5cc40-13d7a05ae49c0ed9","8f44c0a32b4b0a5-17975bae05a24e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.62452800000001,32.86629],[-83.622613,32.868236]]},"id":"8844c0a32bfffff-17f77e0473ed9927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621773,32.869101]},"id":"8f44c0a33db4d95-13f72267e657f233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a5cc40-13d7a05ae49c0ed9","8f44c0a33db4d95-13f72267e657f233"]},"geometry":{"type":"LineString","coordinates":[[-83.622613,32.868236],[-83.621773,32.869101]]},"id":"8844c0a32bfffff-13f7f1616de95b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72082710000001,32.8355618]},"id":"8f44c0b0b50ec1c-1396309310692c5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b50ec1c-1396309310692c5f","8f44c0b0b50169b-13d630838acc25d3"]},"geometry":{"type":"LineString","coordinates":[[-83.72082710000001,32.8355618],[-83.72085200000001,32.835456]]},"id":"8b44c0b0b50efff-13f7308b49b95afa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b504b09-17fe301082baf0c2","8f44c0b0b50169b-13d630838acc25d3"]},"geometry":{"type":"LineString","coordinates":[[-83.72085200000001,32.835456],[-83.72093500000001,32.835048],[-83.72103600000001,32.834496]]},"id":"8a44c0b0b507fff-13b670489e9093e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72112700000001,32.833522]},"id":"8f44c0b0b52681e-17976fd7ae784ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b52681e-17976fd7ae784ddf","8f44c0b0b504b09-17fe301082baf0c2"]},"geometry":{"type":"LineString","coordinates":[[-83.72103600000001,32.834496],[-83.72105900000001,32.834394],[-83.721079,32.834218],[-83.72108100000001,32.834127],[-83.72107100000001,32.833882],[-83.721079,32.833748],[-83.72112700000001,32.833522]]},"id":"8944c0b0b53ffff-17d77ff6179a89e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b52681e-17976fd7ae784ddf","8f44c0b0bc9676b-13ff72f98c7085e1"]},"geometry":{"type":"LineString","coordinates":[[-83.72112700000001,32.833522],[-83.72117700000001,32.833328],[-83.721182,32.83314],[-83.72116000000001,32.832969],[-83.721119,32.832836],[-83.72110400000001,32.832789000000005],[-83.721027,32.832625],[-83.720945,32.832493],[-83.720821,32.832344],[-83.720678,32.83222],[-83.720661,32.832206],[-83.720501,32.832093],[-83.720481,32.832082],[-83.72034500000001,32.832008],[-83.72003500000001,32.831784],[-83.71984400000001,32.831615]]},"id":"8744c0b0bffffff-13ff30d95b6c27e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bc9676b-13ff72f98c7085e1","8f44c0b0a36e610-13fe72f84b0c4b2d"]},"geometry":{"type":"LineString","coordinates":[[-83.71984400000001,32.831615],[-83.71968700000001,32.831449],[-83.71955,32.831283],[-83.719465,32.831142],[-83.719381,32.830958],[-83.719334,32.83081],[-83.719311,32.83063],[-83.719317,32.830505],[-83.71933700000001,32.830334],[-83.719419,32.830091],[-83.719537,32.829869],[-83.719656,32.829734],[-83.719846,32.829562]]},"id":"8844c0b0a3fffff-17fff3ce1164fa54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a36e610-13fe72f84b0c4b2d","8f44c0b0bd94846-13b67f5d0d01f53c"]},"geometry":{"type":"LineString","coordinates":[[-83.719846,32.829562],[-83.719958,32.829493],[-83.720172,32.82938],[-83.720296,32.829306],[-83.720487,32.829168],[-83.720973,32.828632],[-83.7212279,32.828335700000004],[-83.7213232,32.8282471]]},"id":"8744c0b0affffff-13f63110078a5fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681689,32.856974]},"id":"8f44c0a26294076-17ded02062cdc762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6820984,32.856659400000005]},"id":"8f44c0a262b3d72-1796af2081560ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262b3d72-1796af2081560ab8","8f44c0a26294076-17ded02062cdc762"]},"geometry":{"type":"LineString","coordinates":[[-83.681689,32.856974],[-83.6820984,32.856659400000005]]},"id":"8944c0a262bffff-17f6ffa072cffbff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824744,32.8563704]},"id":"8f44c0a262b0b05-17df8e3583265d06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262b0b05-17df8e3583265d06","8f44c0a262b3d72-1796af2081560ab8"]},"geometry":{"type":"LineString","coordinates":[[-83.6820984,32.856659400000005],[-83.6824744,32.8563704]]},"id":"8a44c0a262b7fff-17bfdeab0d88b461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682743,32.856164]},"id":"8f44c0a262b5d4d-17de8d8dadcbeaf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262b0b05-17df8e3583265d06","8f44c0a262b5d4d-17de8d8dadcbeaf7"]},"geometry":{"type":"LineString","coordinates":[[-83.6824744,32.8563704],[-83.682743,32.856164]]},"id":"8a44c0a262b7fff-179f8de19707aaaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663629,32.863543]},"id":"8f44c0a35209668-17f6fc37e786585e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35209668-17f6fc37e786585e","8f44c0a35264621-17f6f67bc5fe9e4e"]},"geometry":{"type":"LineString","coordinates":[[-83.663629,32.863543],[-83.66370900000001,32.863355],[-83.663769,32.863231],[-83.663852,32.863099000000005],[-83.66392900000001,32.863027],[-83.663967,32.862997],[-83.66400300000001,32.862976],[-83.66405800000001,32.862955],[-83.66409,32.862951],[-83.66461600000001,32.86294],[-83.665395,32.862943],[-83.66597800000001,32.862954]]},"id":"8844c0a353fffff-179ef9a916e0ef8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66139100000001,32.864451]},"id":"8f44c0a352c6da9-139fe1aea6923645"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66195900000001,32.864258]},"id":"8f44c0a352e2613-13b7c04bae279b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a352c6da9-139fe1aea6923645","8f44c0a352e2613-13b7c04bae279b15"]},"geometry":{"type":"LineString","coordinates":[[-83.66139100000001,32.864451],[-83.66195900000001,32.864258]]},"id":"8944c0a352fffff-13dfd0fd27dbedf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35209668-17f6fc37e786585e","8f44c0a352e2613-13b7c04bae279b15"]},"geometry":{"type":"LineString","coordinates":[[-83.66195900000001,32.864258],[-83.662181,32.864137],[-83.662368,32.863999],[-83.66258300000001,32.863751],[-83.66282100000001,32.863599],[-83.662997,32.863542],[-83.663205,32.863509],[-83.663399,32.863509],[-83.663497,32.863518],[-83.663629,32.863543]]},"id":"8844c0a353fffff-17febe5c890d6c9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68429400000001,32.840657]},"id":"8f44c0a269836a2-1796a9c44dd5c50b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684323,32.838814]},"id":"8f44c0a269b552c-1396c9b22dc0bb2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a269b552c-1396c9b22dc0bb2c","8f44c0a269836a2-1796a9c44dd5c50b"]},"geometry":{"type":"LineString","coordinates":[[-83.68429400000001,32.840657],[-83.684323,32.838814]]},"id":"8944c0a269bffff-17d6b9bb3107f9f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682832,32.836007]},"id":"8f44c0b1960a4c4-13beed560e51a7d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a269b552c-1396c9b22dc0bb2c","8f44c0b1960a4c4-13beed560e51a7d6"]},"geometry":{"type":"LineString","coordinates":[[-83.684323,32.838814],[-83.68432100000001,32.83861],[-83.684313,32.83842],[-83.68426500000001,32.838296],[-83.684032,32.837929],[-83.68396800000001,32.837774],[-83.68393300000001,32.83764],[-83.68392,32.837511],[-83.68384800000001,32.837038],[-83.68379300000001,32.836788],[-83.683698,32.836661],[-83.68363400000001,32.83659],[-83.683445,32.836408],[-83.683143,32.836194],[-83.682832,32.836007]]},"id":"8844c0b197fffff-17d6eaff675390bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681748,32.83568]},"id":"8f44c0b1961a99c-13de8ffb83f2b2d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1960a4c4-13beed560e51a7d6","8f44c0b1961a99c-13de8ffb83f2b2d7"]},"geometry":{"type":"LineString","coordinates":[[-83.682832,32.836007],[-83.68270100000001,32.83598],[-83.682124,32.835820000000005],[-83.681748,32.83568]]},"id":"8a44c0b1961ffff-13dfbeab8552252f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677087,32.781232]},"id":"8f44c0b1c996565-17fe9b5cadeb8e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6802478,32.7795694]},"id":"8f44c0b02648d2a-13def3a52b10b188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c996565-17fe9b5cadeb8e7f","8f44c0b02648d2a-13def3a52b10b188"]},"geometry":{"type":"LineString","coordinates":[[-83.677087,32.781232],[-83.677206,32.78112],[-83.67729,32.781075],[-83.677389,32.781047],[-83.677519,32.781018],[-83.67773100000001,32.780983],[-83.678064,32.780904],[-83.678177,32.780866],[-83.67842300000001,32.78074],[-83.67866000000001,32.780597],[-83.6802478,32.7795694]]},"id":"8644c0b07ffffff-139eb76ccb6efb77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683649,32.77707]},"id":"8f44c0b022a07ae-13d6cb576c8c4cfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b022a07ae-13d6cb576c8c4cfa","8f44c0b02648d2a-13def3a52b10b188"]},"geometry":{"type":"LineString","coordinates":[[-83.6802478,32.7795694],[-83.6804903,32.7794125],[-83.6808578,32.7791748],[-83.68332600000001,32.777578000000005],[-83.68351600000001,32.777388],[-83.683593,32.777254],[-83.683649,32.77707]]},"id":"8744c0b02ffffff-1797ef47c8ee46e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702208,32.882261]},"id":"8f44c0a2386a253-17977e0802b4ff27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704096,32.883704]},"id":"8f44c0a23b04a01-179f596c0cc8757e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b04a01-179f596c0cc8757e","8f44c0a2386a253-17977e0802b4ff27"]},"geometry":{"type":"LineString","coordinates":[[-83.702208,32.882261],[-83.70237900000001,32.882486],[-83.702667,32.882714],[-83.704096,32.883704]]},"id":"8744c0a23ffffff-17ff5bcd978d2990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70649200000001,32.884362]},"id":"8f44c0a214d8064-13b653928d7a111c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b04a01-179f596c0cc8757e","8f44c0a214d8064-13b653928d7a111c"]},"geometry":{"type":"LineString","coordinates":[[-83.704096,32.883704],[-83.704554,32.884014],[-83.704813,32.8842],[-83.70499600000001,32.884306],[-83.705133,32.884357],[-83.70527100000001,32.884396],[-83.705432,32.884425],[-83.705591,32.884437000000005],[-83.70622300000001,32.884431],[-83.70635100000001,32.884403],[-83.70649200000001,32.884362]]},"id":"8644c0a27ffffff-13ffd69f006b11d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72774000000001,32.922765000000005]},"id":"8f44c0a280d938c-17fe3fb284096538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c8882-17de5d67ad20d812","8f44c0a280d938c-17fe3fb284096538"]},"geometry":{"type":"LineString","coordinates":[[-83.72774000000001,32.922765000000005],[-83.727945,32.922586],[-83.728064,32.922508],[-83.728173,32.922452],[-83.728316,32.922401],[-83.728679,32.922314]]},"id":"8944c0a280fffff-17df5e9d3ed95a93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c8882-17de5d67ad20d812","8f44c0a280ebb0b-17dfdb79409ec95d"]},"geometry":{"type":"LineString","coordinates":[[-83.728679,32.922314],[-83.728773,32.922292],[-83.728864,32.922263],[-83.72906,32.922187],[-83.72930500000001,32.922033],[-83.72940100000001,32.921947],[-83.72947,32.921878]]},"id":"8944c0a280fffff-17ff3c626ad248cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2805e831-13f7b91ceffdc952","8f44c0a280ebb0b-17dfdb79409ec95d"]},"geometry":{"type":"LineString","coordinates":[[-83.72947,32.921878],[-83.729965,32.921383],[-83.730124,32.921265000000005],[-83.730311,32.92116],[-83.73043700000001,32.921097]]},"id":"8844c0a281fffff-13d6da5ab640660d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731498,32.920563]},"id":"8f44c0a28040166-1397f685cb787240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2805e831-13f7b91ceffdc952","8f44c0a28040166-1397f685cb787240"]},"geometry":{"type":"LineString","coordinates":[[-83.73043700000001,32.921097],[-83.731498,32.920563]]},"id":"8944c0a2807ffff-13bed7d15a786adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73256500000001,32.920029]},"id":"8f44c0a28061048-13de33eae3f1224e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28061048-13de33eae3f1224e","8f44c0a28040166-1397f685cb787240"]},"geometry":{"type":"LineString","coordinates":[[-83.731498,32.920563],[-83.73211900000001,32.920247],[-83.73256500000001,32.920029]]},"id":"8944c0a2807ffff-13ffb538fb12d5a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635829,32.846581]},"id":"8f44c0a346e4d0a-17ff2016eb981045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636048,32.846048]},"id":"8f44c0a3460e605-13beff8e0c792057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3460e605-13beff8e0c792057","8f44c0a346e4d0a-17ff2016eb981045"]},"geometry":{"type":"LineString","coordinates":[[-83.635829,32.846581],[-83.636048,32.846048]]},"id":"8944c0a3463ffff-17d6ffd2721ff84a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63629900000001,32.845484]},"id":"8f44c0a3460115a-13dffef12e78b2f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3460115a-13dffef12e78b2f9","8f44c0a3460e605-13beff8e0c792057"]},"geometry":{"type":"LineString","coordinates":[[-83.636048,32.846048],[-83.63629900000001,32.845484]]},"id":"8944c0a3463ffff-13ffff3f96873258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636561,32.844865]},"id":"8f44c0a34605966-13defe4d6796e18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a34605966-13defe4d6796e18f","8f44c0a3460115a-13dffef12e78b2f9"]},"geometry":{"type":"LineString","coordinates":[[-83.63629900000001,32.845484],[-83.636561,32.844865]]},"id":"8a44c0a34607fff-139efe9f4d088c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636814,32.844301]},"id":"8f44c0a34621d96-17fefdaf4baab447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a34621d96-17fefdaf4baab447","8f44c0a34605966-13defe4d6796e18f"]},"geometry":{"type":"LineString","coordinates":[[-83.636561,32.844865],[-83.636814,32.844301]]},"id":"8944c0a3463ffff-139efdfe529ebc56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a34621d96-17fefdaf4baab447","8f44c0a34625dab-17f6fd428fb89661"]},"geometry":{"type":"LineString","coordinates":[[-83.636814,32.844301],[-83.636988,32.843885]]},"id":"8a44c0a34627fff-17f6fd78ee1f7c57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a34708185-179efc7da73b2379","8f44c0a34625dab-17f6fd428fb89661"]},"geometry":{"type":"LineString","coordinates":[[-83.636988,32.843885],[-83.637303,32.843159]]},"id":"8844c0a347fffff-1797fce0147fbc9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637797,32.842024]},"id":"8f44c0a3472e31c-13dffb48e8636950"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3472e31c-13dffb48e8636950","8f44c0a34708185-179efc7da73b2379"]},"geometry":{"type":"LineString","coordinates":[[-83.637303,32.843159],[-83.637797,32.842024]]},"id":"8944c0a3473ffff-13bffbe34a4a3783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63823500000001,32.8408595]},"id":"8f44c0a340d6514-1797fa3722a77c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3472e31c-13dffb48e8636950","8f44c0a340d6514-1797fa3722a77c90"]},"geometry":{"type":"LineString","coordinates":[[-83.637797,32.842024],[-83.63817300000001,32.841161],[-83.63823500000001,32.8408595]]},"id":"8744c0a34ffffff-13f7fab1aa27bc00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0a2425-139ede9e20bc9f3a","8f44c0b1e0a0048-139ffce1cd1e128d"]},"geometry":{"type":"LineString","coordinates":[[-83.649539,32.795844],[-83.65025,32.795845]]},"id":"8a44c0b1e0a7fff-139eddbff6e9a44b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652932,32.795941]},"id":"8f44c0b1e0008eb-13d7f65580a27d51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0a0048-139ffce1cd1e128d","8f44c0b1e0008eb-13d7f65580a27d51"]},"geometry":{"type":"LineString","coordinates":[[-83.65025,32.795845],[-83.650901,32.795842],[-83.651241,32.795845],[-83.651594,32.795856],[-83.652077,32.795885000000006],[-83.652725,32.795930000000006],[-83.652932,32.795941]]},"id":"8844c0b1e1fffff-13bff99b3e085e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6286264,32.8412463]},"id":"8f44c0a36b2e346-17f7f1ac823a4b20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b04943-17bff3aa2f88a5d9","8f44c0a36b2e346-17f7f1ac823a4b20"]},"geometry":{"type":"LineString","coordinates":[[-83.62781100000001,32.840747],[-83.6286264,32.8412463]]},"id":"8944c0a36b3ffff-17d7f2ab52214d89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b2e346-17f7f1ac823a4b20","8f44c0a36b28111-13d77127fc6c99cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6286264,32.8412463],[-83.6288385,32.841381500000004]]},"id":"8a44c0a36b2ffff-139f316a4c038d62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629339,32.841683]},"id":"8f44c0a36b2985c-1397efef24dc1471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b28111-13d77127fc6c99cb","8f44c0a36b2985c-1397efef24dc1471"]},"geometry":{"type":"LineString","coordinates":[[-83.6288385,32.841381500000004],[-83.629339,32.841683]]},"id":"8a44c0a36b2ffff-13b7b08b96f29180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b2985c-1397efef24dc1471","8f44c0a36b7492b-139f3f0c64f25add"]},"geometry":{"type":"LineString","coordinates":[[-83.629339,32.841683],[-83.6297018,32.8419011]]},"id":"8844c0a36bfffff-13df1f7dc17b9dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298534,32.8419922]},"id":"8f44c0a344db40a-13d72eadaf9c1675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b7492b-139f3f0c64f25add","8f44c0a344db40a-13d72eadaf9c1675"]},"geometry":{"type":"LineString","coordinates":[[-83.6297018,32.8419011],[-83.6298534,32.8419922]]},"id":"8a44c0a344dffff-13bfbedd0afb12c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63001,32.842086300000005]},"id":"8f44c0a344db762-13fffe4bc2d3dd48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344db762-13fffe4bc2d3dd48","8f44c0a344db40a-13d72eadaf9c1675"]},"geometry":{"type":"LineString","coordinates":[[-83.6298534,32.8419922],[-83.63001,32.842086300000005]]},"id":"8b44c0a344dbfff-13f79e7cbee9e83a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344db762-13fffe4bc2d3dd48","8f44c0a344db399-1397ee27517eaea1"]},"geometry":{"type":"LineString","coordinates":[[-83.63001,32.842086300000005],[-83.6300683,32.8421214]]},"id":"8b44c0a344dbfff-139ffe3997c3fa8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63090670000001,32.8426226]},"id":"8f44c0a36b60b8c-13df2c1b52ce0ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344db399-1397ee27517eaea1","8f44c0a36b60b8c-13df2c1b52ce0ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.6300683,32.8421214],[-83.630076,32.842126],[-83.63090670000001,32.8426226]]},"id":"8944c0a36b7ffff-13b78d215f663c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b656dd-139f3b9b3cca7869","8f44c0a36b60b8c-13df2c1b52ce0ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.63090670000001,32.8426226],[-83.6311117,32.8427475]]},"id":"8a44c0a36b67fff-13f73bdb424adf84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6317205,32.8431183]},"id":"8f44c0a34793585-1797fa1ebade473b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b656dd-139f3b9b3cca7869","8f44c0a34793585-1797fa1ebade473b"]},"geometry":{"type":"LineString","coordinates":[[-83.6311117,32.8427475],[-83.6317205,32.8431183]]},"id":"8744c0a34ffffff-17971adcf817ff95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632447,32.843553]},"id":"8f44c0a3479ea8c-1797a858a1149429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3479ea8c-1797a858a1149429","8f44c0a34793585-1797fa1ebade473b"]},"geometry":{"type":"LineString","coordinates":[[-83.6317205,32.8431183],[-83.6319254,32.843242700000005],[-83.632447,32.843553]]},"id":"8944c0a347bffff-179f393bee46906d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34798c24-17d747f628e59e82","8f44c0a3479ea8c-1797a858a1149429"]},"geometry":{"type":"LineString","coordinates":[[-83.632447,32.843553],[-83.63260460000001,32.843650000000004]]},"id":"8a44c0a3479ffff-17b7f827619e9b9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6327871,32.8437624]},"id":"8f44c0a347988e8-1797878414cffb86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a347988e8-1797878414cffb86","8f44c0a34798c24-17d747f628e59e82"]},"geometry":{"type":"LineString","coordinates":[[-83.63260460000001,32.843650000000004],[-83.6327871,32.8437624]]},"id":"8b44c0a34798fff-17f767bd20bd8e71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34799909-17b78694ba989ffe","8f44c0a347988e8-1797878414cffb86"]},"geometry":{"type":"LineString","coordinates":[[-83.6327871,32.8437624],[-83.6331701,32.8439896]]},"id":"8a44c0a3479ffff-17df870c68a42743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633881,32.8444]},"id":"8f44c0a3478b00c-17b704d8632b55cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34799909-17b78694ba989ffe","8f44c0a3478b00c-17b704d8632b55cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6331701,32.8439896],[-83.633881,32.8444]]},"id":"8944c0a347bffff-17b7c5b69c0435d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635047,32.84509]},"id":"8f44c0a34615296-13d741ffa9e92d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3478b00c-17b704d8632b55cc","8f44c0a34615296-13d741ffa9e92d4c"]},"geometry":{"type":"LineString","coordinates":[[-83.633881,32.8444],[-83.634516,32.844783],[-83.635047,32.84509]]},"id":"8844c0a347fffff-13ff536d0b2b4894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3460115a-13dffef12e78b2f9","8f44c0a34615296-13d741ffa9e92d4c"]},"geometry":{"type":"LineString","coordinates":[[-83.635047,32.84509],[-83.63629900000001,32.845484]]},"id":"8944c0a3463ffff-13d76078612b9296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637966,32.8460133]},"id":"8f44c0a346743b1-1396fadf4a115f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3460115a-13dffef12e78b2f9","8f44c0a346743b1-1396fadf4a115f6c"]},"geometry":{"type":"LineString","coordinates":[[-83.63629900000001,32.845484],[-83.637105,32.845744],[-83.637966,32.8460133]]},"id":"8844c0a347fffff-13f6fce899c7a41e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6239608,32.8384457]},"id":"8f44c0a36854ba2-139f9d1088a91de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6243793,32.838698]},"id":"8f44c0a36846494-13bf5c0af16f8735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36846494-13bf5c0af16f8735","8f44c0a36854ba2-139f9d1088a91de6"]},"geometry":{"type":"LineString","coordinates":[[-83.6239608,32.8384457],[-83.6243793,32.838698]]},"id":"8944c0a3687ffff-13ff7c8dc5068f62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36846494-13bf5c0af16f8735","8f44c0a36846712-13f71baaf9dcabf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6243793,32.838698],[-83.6245329,32.8387905]]},"id":"8a44c0a36847fff-13d73bdafec4e82a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36846712-13f71baaf9dcabf9","8f44c0a368462ec-13d75b20d500e925"]},"geometry":{"type":"LineString","coordinates":[[-83.6245329,32.8387905],[-83.6247539,32.8389236]]},"id":"8b44c0a36846fff-139fbb65e44d05e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6254359,32.8393316]},"id":"8f44c0a36841171-13d759769ccc11b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841171-13d759769ccc11b0","8f44c0a368462ec-13d75b20d500e925"]},"geometry":{"type":"LineString","coordinates":[[-83.6247539,32.8389236],[-83.6254359,32.8393316]]},"id":"8a44c0a36847fff-13d7da4bb20049ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62555370000001,32.8394023]},"id":"8f44c0a36841a19-13f7792cf9e614c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841a19-13f7792cf9e614c0","8f44c0a36841171-13d759769ccc11b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6254359,32.8393316],[-83.62555370000001,32.8394023]]},"id":"8b44c0a36841fff-13df7951c8f385c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6320034,32.8530302]},"id":"8f44c0a30c0d31e-17b7e96de4208137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c0950a-17f7ca538e2ed4b8","8f44c0a30c0d31e-17b7e96de4208137"]},"geometry":{"type":"LineString","coordinates":[[-83.6320034,32.8530302],[-83.631636,32.853302]]},"id":"8a44c0a30c0ffff-179fd9e0be43223e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c0950a-17f7ca538e2ed4b8","8f44c0a30ce2250-17d72d76a27c5f8c"]},"geometry":{"type":"LineString","coordinates":[[-83.631636,32.853302],[-83.630351,32.854301]]},"id":"8844c0a30dfffff-179ffbe51b238d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629401,32.854987]},"id":"8f44c0a30cc2cdc-13ffefc867ff410d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30cc2cdc-13ffefc867ff410d","8f44c0a30ce2250-17d72d76a27c5f8c"]},"geometry":{"type":"LineString","coordinates":[[-83.630351,32.854301],[-83.630188,32.854422],[-83.629401,32.854987]]},"id":"8944c0a30cfffff-13bf3e9f0634bf53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72712560000001,32.8315397]},"id":"8f44c0b0bd5a065-13d671328e6d9899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd5a2f1-13bff136da77663a","8f44c0b0bd5a065-13d671328e6d9899"]},"geometry":{"type":"LineString","coordinates":[[-83.72712560000001,32.8315397],[-83.727123,32.831629],[-83.7271187,32.8317119]]},"id":"8b44c0b0bd5afff-13f621346c7eea49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2802a3-179e7553593d5275","8f44c0a2492345b-17f6565f05a8cff3"]},"geometry":{"type":"LineString","coordinates":[[-83.7118992,32.833670500000004],[-83.71177610000001,32.8331006],[-83.7117367,32.8329351],[-83.7117515,32.8327407],[-83.7123275,32.8312803]]},"id":"8744c0b0affffff-1396663ecba05843"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71245900000001,32.830297]},"id":"8f44c0b0a2a2098-17b7e50124d0b5b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2802a3-179e7553593d5275","8f44c0b0a2a2098-17b7e50124d0b5b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7123275,32.8312803],[-83.7124555,32.8309658],[-83.71248510000001,32.8306349],[-83.71245900000001,32.830297]]},"id":"8944c0b0a2bffff-17ffe50a4419f275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712494,32.828533]},"id":"8f44c0b0a39cc51-13ff64eb4a3f088e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2a2098-17b7e50124d0b5b1","8f44c0b0a39cc51-13ff64eb4a3f088e"]},"geometry":{"type":"LineString","coordinates":[[-83.71245900000001,32.830297],[-83.712463,32.829891],[-83.712494,32.828533]]},"id":"8844c0b0a3fffff-139664f774a7f558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7127,32.826894]},"id":"8f44c0b0a3b0875-17fec46a804e11ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a3b0875-17fec46a804e11ad","8f44c0b0a39cc51-13ff64eb4a3f088e"]},"geometry":{"type":"LineString","coordinates":[[-83.712494,32.828533],[-83.712497,32.828235],[-83.71250900000001,32.827813],[-83.712512,32.82755],[-83.71252600000001,32.827436],[-83.712587,32.827233],[-83.7127,32.826894]]},"id":"8944c0b0a3bffff-17f764cdf0e9dd12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a3b0875-17fec46a804e11ad","8f44c0b0a05a305-13dec3e82c34f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.7127,32.826894],[-83.712771,32.826648],[-83.7129086,32.826238000000004]]},"id":"8844c0b0a1fffff-179f642b6437f9b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66684400000001,32.867911]},"id":"8f44c0a2251b016-139ef45e8134556a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2251b016-139ef45e8134556a","8f44c0a224042e0-17f6f3ca6449d150"]},"geometry":{"type":"LineString","coordinates":[[-83.66684400000001,32.867911],[-83.666989,32.867959],[-83.66716500000001,32.868045],[-83.667304,32.868138],[-83.667377,32.868228],[-83.667398,32.86827],[-83.667404,32.868398],[-83.667383,32.868456],[-83.66731700000001,32.868561],[-83.66723300000001,32.868659],[-83.667174,32.868744],[-83.667152,32.868823],[-83.66714,32.868983],[-83.667122,32.869143],[-83.66708100000001,32.869306]]},"id":"8944c0a2243ffff-13fff3835db8b983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a224e4d45-1397f44f810fe814","8f44c0a224042e0-17f6f3ca6449d150"]},"geometry":{"type":"LineString","coordinates":[[-83.66708100000001,32.869306],[-83.667038,32.869438],[-83.66698000000001,32.86957],[-83.666824,32.86988],[-83.666735,32.870071],[-83.666712,32.870134],[-83.666686,32.870286],[-83.666685,32.870466],[-83.666718,32.87064],[-83.666792,32.870838],[-83.66686800000001,32.870995]]},"id":"8944c0a2243ffff-1796b46e3d169b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a224e4d45-1397f44f810fe814","8f44c0a224ee85a-13bff3b5cfc9475d"]},"geometry":{"type":"LineString","coordinates":[[-83.66686800000001,32.870995],[-83.666971,32.871177],[-83.66705400000001,32.87149],[-83.667073,32.871597],[-83.66711500000001,32.871989],[-83.66711400000001,32.872287]]},"id":"8844c0a225fffff-139fb3de638cb59b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7292429,32.832150500000004]},"id":"8f44c0b0b89695b-13be1c07377983c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72917360000001,32.832683800000005]},"id":"8f44c0b0b892b1d-139f7c32898ab135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b892b1d-139f7c32898ab135","8f44c0b0b89695b-13be1c07377983c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7292429,32.832150500000004],[-83.7292256,32.8322802],[-83.7291716,32.8324519],[-83.7291716,32.8326334],[-83.72917360000001,32.832683800000005]]},"id":"8a44c0b0b897fff-13f61c24b04a3b38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b892b1d-139f7c32898ab135","8f44c0b0b124868-17def7dff7d383a1"]},"geometry":{"type":"LineString","coordinates":[[-83.72917360000001,32.832683800000005],[-83.72919470000001,32.8328246],[-83.7292487,32.8330579],[-83.7293451,32.833252300000005],[-83.72949170000001,32.8334354],[-83.7296845,32.833629900000005],[-83.730074,32.8338243],[-83.73084340000001,32.834200200000005],[-83.7309441,32.834251]]},"id":"8944c0b0b8bffff-17de7a6f87ed2b47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b8c3d9c-13df52d30c6c3138","8f44c0b0b124868-17def7dff7d383a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7309441,32.834251],[-83.7311713,32.834365500000004],[-83.7315299,32.834514500000004],[-83.73221450000001,32.8348613],[-83.73263100000001,32.8350525],[-83.73301280000001,32.8352404]]},"id":"8844c0b0b9fffff-13963558b54ac7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56095,32.784205]},"id":"8f44c0b85d33841-17b7b6e645419bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85d33841-17b7b6e645419bd5","8f44c0b85d20635-17fff40929d34944"]},"geometry":{"type":"LineString","coordinates":[[-83.56095,32.784205],[-83.56114600000001,32.784104],[-83.561288,32.784079000000006],[-83.562123,32.78409]]},"id":"8944c0b85d3ffff-17fff57e4734361c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba36d5273-179fef1dcc68b6d3","8f44c0b85d20635-17fff40929d34944"]},"geometry":{"type":"LineString","coordinates":[[-83.562123,32.78409],[-83.564138,32.784171]]},"id":"8744c0b85ffffff-1797b19371aa7b78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567368,32.783669]},"id":"8f44c0ba3651b9a-13f7a73b0a02d924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba3651b9a-13f7a73b0a02d924","8f44c0ba36d5273-179fef1dcc68b6d3"]},"geometry":{"type":"LineString","coordinates":[[-83.564138,32.784171],[-83.565678,32.784219],[-83.565881,32.784213],[-83.566124,32.784185],[-83.566229,32.784169],[-83.566328,32.784149],[-83.56666200000001,32.784032],[-83.566815,32.783968],[-83.567071,32.783835],[-83.567368,32.783669]]},"id":"8844c0ba37fffff-17f7eb13f15205c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675313,32.811031]},"id":"8f44c0b1816c328-17beffb161829362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67609800000001,32.810246]},"id":"8f44c0b18b95424-17d7ddc6cbf4c529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1816c328-17beffb161829362","8f44c0b18b95424-17d7ddc6cbf4c529"]},"geometry":{"type":"LineString","coordinates":[[-83.675313,32.811031],[-83.67609800000001,32.810246]]},"id":"8844c0b18bfffff-17bf9ebc13e53e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677361,32.810954]},"id":"8f44c0b18b81622-17fedab168f95361"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18b81622-17fedab168f95361","8f44c0b18b95424-17d7ddc6cbf4c529"]},"geometry":{"type":"LineString","coordinates":[[-83.67609800000001,32.810246],[-83.676311,32.810118],[-83.677261,32.809587],[-83.677323,32.809565],[-83.67739900000001,32.809578],[-83.677447,32.809638],[-83.67747700000001,32.809689],[-83.67755700000001,32.809849],[-83.67762400000001,32.810039],[-83.67764000000001,32.810189],[-83.677633,32.810378],[-83.677591,32.810556000000005],[-83.67750600000001,32.810737],[-83.67744400000001,32.810845],[-83.677361,32.810954]]},"id":"8944c0b18bbffff-13dffb36ee9bc962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65532280000001,32.8300124]},"id":"8f44c0b1b51c6a4-1797d07f449496bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655752,32.829929]},"id":"8f44c0b1b503692-17d7ef730f5952bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b51c6a4-1797d07f449496bd","8f44c0b1b503692-17d7ef730f5952bb"]},"geometry":{"type":"LineString","coordinates":[[-83.65532280000001,32.8300124],[-83.655561,32.829985],[-83.65564900000001,32.829974],[-83.655752,32.829929]]},"id":"8a44c0b1b51ffff-17f7cff724468bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b52b052-17d7cbb26175b61a","8f44c0b1b503692-17d7ef730f5952bb"]},"geometry":{"type":"LineString","coordinates":[[-83.655752,32.829929],[-83.657289,32.829938]]},"id":"8944c0b1b53ffff-17d6fd92b8d73670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50109804-13bfe1cf8f629ccf","8f44c0b5002b31c-139de34fe6e28233"]},"geometry":{"type":"LineString","coordinates":[[-83.76619600000001,32.868983],[-83.766261,32.869134],[-83.766661,32.870136],[-83.766698,32.870241],[-83.766709,32.870298000000005],[-83.76671300000001,32.870406],[-83.766682,32.870544],[-83.76665700000001,32.870613],[-83.766621,32.870688],[-83.76654500000001,32.870787],[-83.76648,32.870852],[-83.766407,32.870905],[-83.766333,32.87095],[-83.765861,32.871208],[-83.76568400000001,32.871316],[-83.76558100000001,32.871395]]},"id":"8844c0b501fffff-17f7c16fb6a82f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76575100000001,32.872625]},"id":"8f44c0b50054342-179fe2e5acb0479f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50054342-179fe2e5acb0479f","8f44c0b5002b31c-139de34fe6e28233"]},"geometry":{"type":"LineString","coordinates":[[-83.76558100000001,32.871395],[-83.76549200000001,32.871543],[-83.765439,32.871667],[-83.76542,32.871763],[-83.765411,32.871844],[-83.765416,32.871913],[-83.765432,32.872006],[-83.76545700000001,32.872073],[-83.765505,32.872169],[-83.76575100000001,32.872625]]},"id":"8844c0b501fffff-1395f372485abe0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70039,32.889088]},"id":"8f44c0a23a89d80-17d66278400e7838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23a89d80-17d66278400e7838","8f44c0a23a8534a-13f7e2e822941cd4"]},"geometry":{"type":"LineString","coordinates":[[-83.70039,32.889088],[-83.700355,32.889004],[-83.700255,32.888579],[-83.70020000000001,32.88837],[-83.70017,32.888218],[-83.70016100000001,32.888139],[-83.700165,32.888078],[-83.70019,32.887991],[-83.70021100000001,32.887939]]},"id":"8944c0a23abffff-13dff2d06a294889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70183300000001,32.888368]},"id":"8f44c0a23a1a22e-13fe5ef26c5fced8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23a1a22e-13fe5ef26c5fced8","8f44c0a23a8534a-13f7e2e822941cd4"]},"geometry":{"type":"LineString","coordinates":[[-83.70021100000001,32.887939],[-83.70027900000001,32.887861],[-83.700343,32.887813],[-83.700429,32.887765],[-83.700507,32.887737],[-83.70058,32.887726],[-83.70066800000001,32.887724],[-83.70075700000001,32.887729],[-83.70082000000001,32.887743],[-83.700916,32.88779],[-83.701133,32.887925],[-83.701316,32.88803],[-83.70183300000001,32.888368]]},"id":"8844c0a23bfffff-13fef0ea23eb5bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ae2826-17de5d766ecaaab3","8f44c0a23a1a22e-13fe5ef26c5fced8"]},"geometry":{"type":"LineString","coordinates":[[-83.70183300000001,32.888368],[-83.70189900000001,32.888416],[-83.70199000000001,32.888491],[-83.702134,32.888635],[-83.702246,32.888769],[-83.70231600000001,32.888874],[-83.70236600000001,32.888961],[-83.70244100000001,32.889136]]},"id":"8844c0a23bfffff-13df7e1c24b80d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702628,32.89056]},"id":"8f44c0a23ac1ae3-13de5d018a8349ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ac1ae3-13de5d018a8349ab","8f44c0a23ae2826-17de5d766ecaaab3"]},"geometry":{"type":"LineString","coordinates":[[-83.70244100000001,32.889136],[-83.70252,32.889325],[-83.702658,32.889699],[-83.702686,32.88984],[-83.70269400000001,32.889958],[-83.702685,32.890096],[-83.70262100000001,32.890473],[-83.702628,32.89056]]},"id":"8944c0a23afffff-17967d079239ef3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70394200000001,32.892474]},"id":"8f44c0a2ed82506-179659cc41f0cd0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ac1ae3-13de5d018a8349ab","8f44c0a2ed82506-179659cc41f0cd0d"]},"geometry":{"type":"LineString","coordinates":[[-83.702628,32.89056],[-83.70265300000001,32.890625],[-83.70273300000001,32.890763],[-83.70303,32.891207],[-83.703101,32.89132],[-83.70342600000001,32.891806],[-83.703595,32.892051],[-83.703742,32.892225],[-83.70383000000001,32.892314],[-83.703905,32.8924],[-83.70394200000001,32.892474]]},"id":"8744c0a23ffffff-13bfdb7716334a19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704386,32.893445]},"id":"8f44c0a2ed9d39d-17f778b6c585f433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed9d39d-17f778b6c585f433","8f44c0a2ed82506-179659cc41f0cd0d"]},"geometry":{"type":"LineString","coordinates":[[-83.70394200000001,32.892474],[-83.70412300000001,32.89287],[-83.704386,32.893445]]},"id":"8944c0a2edbffff-17b7f9418ef0a39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70452,32.894861]},"id":"8f44c0a2eca384c-13de78630aadaf50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed9d39d-17f778b6c585f433","8f44c0a2eca384c-13de78630aadaf50"]},"geometry":{"type":"LineString","coordinates":[[-83.704386,32.893445],[-83.704496,32.893711],[-83.70452,32.893811],[-83.70454000000001,32.893926],[-83.704548,32.894075],[-83.70454600000001,32.894257],[-83.704532,32.894503],[-83.70452,32.894861]]},"id":"8844c0a2edfffff-1397d8664d960ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76944300000001,32.831313]},"id":"8f44c0b727a4999-17b7b9e22d264583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77319800000001,32.837369]},"id":"8f44c0b726429a9-17ffb0b74deca124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b727a4999-17b7b9e22d264583","8f44c0b726429a9-17ffb0b74deca124"]},"geometry":{"type":"LineString","coordinates":[[-83.76944300000001,32.831313],[-83.769464,32.831491],[-83.76968400000001,32.832729],[-83.76971300000001,32.832865000000005],[-83.769785,32.833112],[-83.769805,32.83316],[-83.769929,32.833409],[-83.769969,32.833474],[-83.77013600000001,32.83371],[-83.770312,32.833899],[-83.771073,32.834604],[-83.77151500000001,32.83502],[-83.77171700000001,32.835234],[-83.771828,32.835365],[-83.77191300000001,32.835473],[-83.772002,32.835597],[-83.773027,32.837135],[-83.77319800000001,32.837369]]},"id":"8844c0b727fffff-17dfb5f798af91f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.78115100000001,32.851304]},"id":"8f44c0b54a76ad3-13959d4ca485f577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b726429a9-17ffb0b74deca124","8f44c0b54a76ad3-13959d4ca485f577"]},"geometry":{"type":"LineString","coordinates":[[-83.77319800000001,32.837369],[-83.77323600000001,32.837418],[-83.77342,32.837623],[-83.773555,32.837755],[-83.77372700000001,32.837899],[-83.77397300000001,32.838079],[-83.77517300000001,32.838879],[-83.775535,32.839131],[-83.775698,32.839256],[-83.77583200000001,32.83939],[-83.775908,32.839485],[-83.775999,32.839619],[-83.776126,32.839874],[-83.77618100000001,32.840057],[-83.77620200000001,32.8402],[-83.776207,32.840409],[-83.77618600000001,32.8406],[-83.776014,32.841679],[-83.775965,32.841951],[-83.77587700000001,32.842495],[-83.775845,32.84277],[-83.775861,32.843037],[-83.775937,32.843311],[-83.776007,32.843466],[-83.776173,32.843694],[-83.77621,32.843735],[-83.776427,32.843941],[-83.77666,32.844135],[-83.777343,32.84469],[-83.777803,32.845056],[-83.7783113,32.8454664],[-83.779335,32.846293],[-83.779526,32.846463],[-83.779677,32.846642],[-83.77979400000001,32.846817],[-83.77993500000001,32.847099],[-83.78062100000001,32.848616],[-83.78085,32.849134],[-83.7809,32.84929],[-83.780956,32.849549],[-83.781031,32.850209],[-83.78105400000001,32.850484],[-83.78115100000001,32.851304]]},"id":"8544c0b7fffffff-17bde61d410fbdce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633142,32.827513]},"id":"8f44c0a34db2085-17ffa6a64ad8ae2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633516,32.826991]},"id":"8f44c0a34db6b34-17b765bc80af3ab5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34db2085-17ffa6a64ad8ae2f","8f44c0a34db6b34-17b765bc80af3ab5"]},"geometry":{"type":"LineString","coordinates":[[-83.633142,32.827513],[-83.633154,32.827419],[-83.63332700000001,32.827202],[-83.63349500000001,32.827025],[-83.633516,32.826991]]},"id":"8a44c0a34db7fff-17d7d63f5a964eee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a5a031-13fff4c0fc7caa5c","8f44c0a34db6b34-17b765bc80af3ab5"]},"geometry":{"type":"LineString","coordinates":[[-83.633516,32.826991],[-83.63391850000001,32.8265167]]},"id":"8844c0ba9bfffff-1797353ec31f6a46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a5a031-13fff4c0fc7caa5c","8f44c0ba9a5e21b-13ff2446f4ce8071"]},"geometry":{"type":"LineString","coordinates":[[-83.63391850000001,32.8265167],[-83.6341137,32.8262866]]},"id":"8a44c0ba9a5ffff-13b71483f2ecbf5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a5e21b-13ff2446f4ce8071","8f44c0ba9a5cd40-13df63512d011f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.6341137,32.8262866],[-83.634507,32.825823]]},"id":"8a44c0ba9a5ffff-13df43cc16fb71de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63539800000001,32.824772]},"id":"8f44c0ba9a622aa-17bf8124495865e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a5cd40-13df63512d011f6e","8f44c0ba9a622aa-17bf8124495865e4"]},"geometry":{"type":"LineString","coordinates":[[-83.634507,32.825823],[-83.63539800000001,32.824772]]},"id":"8944c0ba9a7ffff-1397f23abb1992ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62669500000001,32.835184500000004]},"id":"8f44c0a36960221-13b75663ab50fbf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6272174,32.8345597]},"id":"8f44c0ba92cb051-179fd51d2bd2a296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92cb051-179fd51d2bd2a296","8f44c0a36960221-13b75663ab50fbf2"]},"geometry":{"type":"LineString","coordinates":[[-83.62669500000001,32.835184500000004],[-83.6272174,32.8345597]]},"id":"8644c0a37ffffff-13f715c0612bdc34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62767360000001,32.834008600000004]},"id":"8f44c0ba92cd46b-17d7740008a7ac5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92cb051-179fd51d2bd2a296","8f44c0ba92cd46b-17d7740008a7ac5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6272174,32.8345597],[-83.62767360000001,32.834008600000004]]},"id":"8a44c0ba92cffff-17f7b48e9de0b797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62344870000001,32.8390439]},"id":"8f44c0a36852a2d-13977e5096ff39c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36854ba2-139f9d1088a91de6","8f44c0a36852a2d-13977e5096ff39c9"]},"geometry":{"type":"LineString","coordinates":[[-83.62344870000001,32.8390439],[-83.6239608,32.8384457]]},"id":"8a44c0a36857fff-13d79db08c7ea544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36872248-13b75cbcce5b6d68","8f44c0a36854ba2-139f9d1088a91de6"]},"geometry":{"type":"LineString","coordinates":[[-83.6239608,32.8384457],[-83.62409480000001,32.838283600000004]]},"id":"8944c0a3687ffff-13fffce6af2ba9f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36872248-13b75cbcce5b6d68","8f44c0a36870188-17df7c0641f15bd6"]},"geometry":{"type":"LineString","coordinates":[[-83.62409480000001,32.838283600000004],[-83.62438680000001,32.8379302]]},"id":"8a44c0a36877fff-13dfdc618c395e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62448090000001,32.8378164]},"id":"8f44c0a368708a1-17975bcb7106c73b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36870188-17df7c0641f15bd6","8f44c0a368708a1-17975bcb7106c73b"]},"geometry":{"type":"LineString","coordinates":[[-83.62438680000001,32.8379302],[-83.62448090000001,32.8378164]]},"id":"8b44c0a36870fff-17b7dbe8e0e6bb3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a369586dc-179f5a80ae9d1ccf","8f44c0a368708a1-17975bcb7106c73b"]},"geometry":{"type":"LineString","coordinates":[[-83.62448090000001,32.8378164],[-83.6250102,32.8371957]]},"id":"8844c0a369fffff-17d75b261e9875b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62550200000001,32.836596]},"id":"8f44c0a3695ca71-179f994d4586bed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a369586dc-179f5a80ae9d1ccf","8f44c0a3695ca71-179f994d4586bed6"]},"geometry":{"type":"LineString","coordinates":[[-83.6250102,32.8371957],[-83.62550200000001,32.836596]]},"id":"8a44c0a3695ffff-17d7f9e6fe2334fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625675,32.836385]},"id":"8f44c0a369431b3-1797b8e129012c15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a369431b3-1797b8e129012c15","8f44c0a3695ca71-179f994d4586bed6"]},"geometry":{"type":"LineString","coordinates":[[-83.62550200000001,32.836596],[-83.625675,32.836385]]},"id":"8944c0a3697ffff-17d79917392f5c35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63558900000001,32.824562]},"id":"8f44c0ba9a62b0c-17b740ace487d78e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63643900000001,32.823499000000005]},"id":"8f44c0ba9b4855d-179efe99ad835ca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a62b0c-17b740ace487d78e","8f44c0ba9b4855d-179efe99ad835ca0"]},"geometry":{"type":"LineString","coordinates":[[-83.63558900000001,32.824562],[-83.63643900000001,32.823499000000005]]},"id":"8844c0ba9bfffff-17ffffa34230f7af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63747500000001,32.822417]},"id":"8f44c0ba9b68948-13fefc122e11c92b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b4855d-179efe99ad835ca0","8f44c0ba9b68948-13fefc122e11c92b"]},"geometry":{"type":"LineString","coordinates":[[-83.63643900000001,32.823499000000005],[-83.63747500000001,32.822417]]},"id":"8944c0ba9b7ffff-13defd55e0116ab1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637866,32.821914]},"id":"8f44c0b1a793c4c-13d6fb1dc69332e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a793c4c-13d6fb1dc69332e8","8f44c0ba9b68948-13fefc122e11c92b"]},"geometry":{"type":"LineString","coordinates":[[-83.63747500000001,32.822417],[-83.637738,32.822069],[-83.637866,32.821914]]},"id":"8844c0b1a7fffff-13defb996f9732ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63818300000001,32.821582]},"id":"8f44c0b1a790a33-17f6fa57aee9868c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a793c4c-13d6fb1dc69332e8","8f44c0b1a790a33-17f6fa57aee9868c"]},"geometry":{"type":"LineString","coordinates":[[-83.637866,32.821914],[-83.63801000000001,32.821742],[-83.63818300000001,32.821582]]},"id":"8a44c0b1a797fff-13d7fabe05d42f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638423,32.82121]},"id":"8f44c0b1a7b3698-179ef9c1a828f6b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a7b3698-179ef9c1a828f6b5","8f44c0b1a790a33-17f6fa57aee9868c"]},"geometry":{"type":"LineString","coordinates":[[-83.63818300000001,32.821582],[-83.638298,32.821427],[-83.638423,32.82121]]},"id":"8a44c0b1a797fff-17fefa0958c039f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a7b3698-179ef9c1a828f6b5","8f44c0b1a7b1593-17bef8c919b9f452"]},"geometry":{"type":"LineString","coordinates":[[-83.638423,32.82121],[-83.63845900000001,32.821137],[-83.638574,32.820994],[-83.63869740000001,32.8208892],[-83.63882070000001,32.820877200000005]]},"id":"8944c0b1a7bffff-1797f9563254f59d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68120300000001,32.862464]},"id":"8f44c0a22835ad8-13d69150206f892b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22823c43-17dfd0080cebcf51","8f44c0a22835ad8-13d69150206f892b"]},"geometry":{"type":"LineString","coordinates":[[-83.68120300000001,32.862464],[-83.68127000000001,32.862561],[-83.68155800000001,32.862771],[-83.681728,32.862918]]},"id":"8944c0a2283ffff-17d7f0b0fc0c5363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22823c43-17dfd0080cebcf51","8f44c0a22876929-1396ad3c6a3a98b3"]},"geometry":{"type":"LineString","coordinates":[[-83.681728,32.862918],[-83.68191300000001,32.863093],[-83.682089,32.86327],[-83.68232300000001,32.86354],[-83.682749,32.864067],[-83.682873,32.864237]]},"id":"8944c0a2283ffff-17fefe954920bc5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2286a392-17df893d4e1d7061","8f44c0a22876929-1396ad3c6a3a98b3"]},"geometry":{"type":"LineString","coordinates":[[-83.682873,32.864237],[-83.683003,32.864372],[-83.68351700000001,32.864967],[-83.683953,32.865504],[-83.68451,32.866168]]},"id":"8844c0a229fffff-13ffcb38756d46fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684685,32.866402]},"id":"8f44c0a2286b4e4-17dfc8cfeebc81a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2286a392-17df893d4e1d7061","8f44c0a2286b4e4-17dfc8cfeebc81a7"]},"geometry":{"type":"LineString","coordinates":[[-83.68451,32.866168],[-83.684685,32.866402]]},"id":"8a44c0a2286ffff-1796a9069a77ec77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2286b4e4-17dfc8cfeebc81a7","8f44c0a22b33d09-1797e70348a37a11"]},"geometry":{"type":"LineString","coordinates":[[-83.684685,32.866402],[-83.685073,32.866852],[-83.68520600000001,32.867019],[-83.685326,32.867161],[-83.685422,32.867283]]},"id":"8744c0a22ffffff-17fed7e778b2803f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22b33d09-1797e70348a37a11","8f44c0a22b33365-13d7a677ef98b84e"]},"geometry":{"type":"LineString","coordinates":[[-83.685422,32.867283],[-83.68560500000001,32.867516],[-83.68564500000001,32.867589]]},"id":"8b44c0a22b33fff-17f7b6bace6ec865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22b35292-1797857a29284879","8f44c0a22b33365-13d7a677ef98b84e"]},"geometry":{"type":"LineString","coordinates":[[-83.68564500000001,32.867589],[-83.686051,32.8671]]},"id":"8a44c0a22b37fff-17bed5f90654d1f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22b35b16-1796e504aaa34328","8f44c0a22b35292-1797857a29284879"]},"geometry":{"type":"LineString","coordinates":[[-83.686051,32.8671],[-83.68615600000001,32.866964],[-83.686239,32.866875]]},"id":"8b44c0a22b35fff-17dfe540f048022d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686829,32.866729]},"id":"8f44c0a22b24419-17bfa393e1658540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22b24419-17bfa393e1658540","8f44c0a22b35b16-1796e504aaa34328"]},"geometry":{"type":"LineString","coordinates":[[-83.686239,32.866875],[-83.686346,32.866838],[-83.686453,32.866791],[-83.686507,32.866777],[-83.686829,32.866729]]},"id":"8944c0a22b3ffff-17dfb44ecb182dde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603076,32.85438]},"id":"8f44c0a32d960b6-1397d00d8602b87e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d92750-13f7d04980a3b472","8f44c0a32d960b6-1397d00d8602b87e"]},"geometry":{"type":"LineString","coordinates":[[-83.603076,32.85438],[-83.60298,32.854942]]},"id":"8a44c0a32d97fff-13b7702b8896a14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.602686,32.856617]},"id":"8f44c0b8d34da8b-17fff1014d898689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d92750-13f7d04980a3b472","8f44c0b8d34da8b-17fff1014d898689"]},"geometry":{"type":"LineString","coordinates":[[-83.60298,32.854942],[-83.60289300000001,32.85544],[-83.602686,32.856617]]},"id":"8944c0b8d37ffff-13ff70a548fe7d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657571,32.843577]},"id":"8f44c0b1b6de8ce-17b7eb022918027c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601,32.842776]},"id":"8f44c0b1b6ec303-13bfc4d58409ff23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6de8ce-17b7eb022918027c","8f44c0b1b6ec303-13bfc4d58409ff23"]},"geometry":{"type":"LineString","coordinates":[[-83.657571,32.843577],[-83.65757500000001,32.843196],[-83.657593,32.843142],[-83.657618,32.843086],[-83.65765,32.843035],[-83.657734,32.842948],[-83.65784000000001,32.842883],[-83.657893,32.842866],[-83.657956,32.84285],[-83.658028,32.842843],[-83.65865500000001,32.842858],[-83.6588978,32.8428175],[-83.6589659,32.8427871],[-83.65907320000001,32.8427783],[-83.6591875,32.8428184],[-83.6594086,32.842803100000005],[-83.6597505,32.842768],[-83.6601,32.842776]]},"id":"8944c0b1b6fffff-1797d8727849e1de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b65c0b5-13b6e209bbdb25ec","8f44c0b1b6ec303-13bfc4d58409ff23"]},"geometry":{"type":"LineString","coordinates":[[-83.6601,32.842776],[-83.6612453,32.8427786]]},"id":"8844c0b1b7fffff-13bfd36f94dee689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661658,32.842661]},"id":"8f44c0b1b643551-13f7e107c951772f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b65c0b5-13b6e209bbdb25ec","8f44c0b1b643551-13f7e107c951772f"]},"geometry":{"type":"LineString","coordinates":[[-83.6612453,32.8427786],[-83.66144600000001,32.842779],[-83.66149300000001,32.842768],[-83.661541,32.842745],[-83.661589,32.842698],[-83.66161000000001,32.842678],[-83.661658,32.842661]]},"id":"8944c0b1b67ffff-139ec182df66631b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662396,32.842647]},"id":"8f44c0b1b641324-13deff3a8f0b6253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b643551-13f7e107c951772f","8f44c0b1b641324-13deff3a8f0b6253"]},"geometry":{"type":"LineString","coordinates":[[-83.661658,32.842661],[-83.66183600000001,32.842661],[-83.662396,32.842647]]},"id":"8a44c0b1b647fff-13f7d0212acfd91b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698772,32.780147]},"id":"8f44c0b03c45b84-13d7e66b8c1552c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c45b84-13d7e66b8c1552c2","8f44c0b03c6c2dc-13fee4480a1790a6"]},"geometry":{"type":"LineString","coordinates":[[-83.698772,32.780147],[-83.69964800000001,32.780203]]},"id":"8944c0b03c7ffff-13df6559c2c538c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0389e335-139fe2216b6c64df","8f44c0b03c6c2dc-13fee4480a1790a6"]},"geometry":{"type":"LineString","coordinates":[[-83.69964800000001,32.780203],[-83.700529,32.780262]]},"id":"8744c0b03ffffff-13ff7334b5f1e828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0389e335-139fe2216b6c64df","8f44c0b038814c1-13bedf566b856a84"]},"geometry":{"type":"LineString","coordinates":[[-83.700529,32.780262],[-83.70120100000001,32.780301],[-83.701351,32.780279],[-83.70147300000001,32.780223],[-83.70154600000001,32.780161],[-83.70159500000001,32.780093],[-83.701673,32.779924]]},"id":"8944c0b038bffff-13fee092c28b1c17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6394887,32.84256]},"id":"8f44c0a340d8252-13bef7279f58f289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340d8252-13bef7279f58f289","8f44c0a3472e31c-13dffb48e8636950"]},"geometry":{"type":"LineString","coordinates":[[-83.637797,32.842024],[-83.6394887,32.84256]]},"id":"8844c0a347fffff-1396f93848a0abcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640331,32.842855]},"id":"8f44c0a340cb59c-13f6f5192138e702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340d8252-13bef7279f58f289","8f44c0a340cb59c-13f6f5192138e702"]},"geometry":{"type":"LineString","coordinates":[[-83.6394887,32.84256],[-83.640331,32.842855]]},"id":"8944c0a340fffff-1396f6205dbb8622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64115600000001,32.8431]},"id":"8f44c0a343944b5-17fff31588f215f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340cb59c-13f6f5192138e702","8f44c0a343944b5-17fff31588f215f1"]},"geometry":{"type":"LineString","coordinates":[[-83.640331,32.842855],[-83.64115600000001,32.8431]]},"id":"8744c0a34ffffff-17bef4175b6bc8d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64289600000001,32.8436107]},"id":"8f44c0a343854c5-17befed6043bf5b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a343854c5-17befed6043bf5b0","8f44c0a343944b5-17fff31588f215f1"]},"geometry":{"type":"LineString","coordinates":[[-83.64115600000001,32.8431],[-83.641744,32.843293],[-83.642066,32.843383],[-83.642347,32.84346],[-83.642375,32.843469],[-83.64289600000001,32.8436107]]},"id":"8944c0a343bffff-179ff0f7a0bc0f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64414760000001,32.843958400000005]},"id":"8f44c0a343a9ca3-1796ebc7c44d009e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34224846-17dee6f8ceda0e1d","8f44c0a343a9ca3-1796ebc7c44d009e"]},"geometry":{"type":"LineString","coordinates":[[-83.64414760000001,32.843958400000005],[-83.6441758,32.843958400000005],[-83.6441927,32.8439604],[-83.6442111,32.8439636],[-83.6461172,32.8444548]]},"id":"8844c0a343fffff-17bfe95fc6bf581f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34224846-17dee6f8ceda0e1d","8f44c0a34356894-13bee5427ac58dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6461172,32.8444548],[-83.64681850000001,32.844637]]},"id":"8844c0a343fffff-1397f61d9a55b1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34342d36-13dff2939c2d797b","8f44c0a34356c4d-13dee550807b6bbe"]},"geometry":{"type":"LineString","coordinates":[[-83.64679600000001,32.844686],[-83.6479175,32.8450715]]},"id":"8944c0a3437ffff-13d7e3f210b0dadf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6479857,32.845095]},"id":"8f44c0a343466d1-13dee268f0c690a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34342d36-13dff2939c2d797b","8f44c0a343466d1-13dee268f0c690a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6479175,32.8450715],[-83.6479857,32.845095]]},"id":"8a44c0a34347fff-13d7f27e4b9e06c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3436a4d5-13d7dfb08acb701d","8f44c0a343466d1-13dee268f0c690a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6479857,32.845095],[-83.6491,32.845478]]},"id":"8a44c0a34347fff-13d6f10cbdaa240a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636761,32.773099]},"id":"8f44c0b138b1888-1396fdd06ac3779b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63690050000001,32.7729018]},"id":"8f44c0b138b5232-1397fd793bb60038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b138b1888-1396fdd06ac3779b","8f44c0b138b5232-1397fd793bb60038"]},"geometry":{"type":"LineString","coordinates":[[-83.636761,32.773099],[-83.636807,32.77302],[-83.63683300000001,32.772976],[-83.63690050000001,32.7729018]]},"id":"8a44c0b138b7fff-13d6fda7ed182190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1398a791-17fefb69d02769c1","8f44c0b138b5232-1397fd793bb60038"]},"geometry":{"type":"LineString","coordinates":[[-83.63690050000001,32.7729018],[-83.63693400000001,32.772865],[-83.63708000000001,32.772722],[-83.637155,32.772661],[-83.637236,32.772595],[-83.63760500000001,32.772325],[-83.63774430000001,32.772218800000005]]},"id":"8844c0b139fffff-13befc77e7442c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63823950000001,32.7714687]},"id":"8f44c0b139812e3-1797fa34562f663a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b139812e3-1797fa34562f663a","8f44c0b1398a791-17fefb69d02769c1"]},"geometry":{"type":"LineString","coordinates":[[-83.63774430000001,32.772218800000005],[-83.63784100000001,32.772145],[-83.637938,32.772045],[-83.638057,32.771884],[-83.638141,32.771732],[-83.63823950000001,32.7714687]]},"id":"8a44c0b1398ffff-1797fab5da364a87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b139812e3-1797fa34562f663a","8f44c0b139aa4b3-17dff9e310850d12"]},"geometry":{"type":"LineString","coordinates":[[-83.63823950000001,32.7714687],[-83.638282,32.771355],[-83.63831,32.771307],[-83.63836950000001,32.7711422]]},"id":"8b44c0b13981fff-17b6fa0b05ff7508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572871,32.8658]},"id":"8f44c0b882dbc53-13f799cba86a19aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57182,32.867212]},"id":"8f44c0b8b9542cc-17d79c5c8c2565be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b9542cc-17d79c5c8c2565be","8f44c0b882dbc53-13f799cba86a19aa"]},"geometry":{"type":"LineString","coordinates":[[-83.572871,32.8658],[-83.572827,32.865875],[-83.572604,32.866379],[-83.572535,32.8665],[-83.57244,32.866636],[-83.57233500000001,32.86676],[-83.572236,32.866856],[-83.57198000000001,32.867078],[-83.57182,32.867212]]},"id":"8844c0b8b9fffff-17bffae795894e1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b9542cc-17d79c5c8c2565be","8f44c0b8b82c115-13fffe544c49eca6"]},"geometry":{"type":"LineString","coordinates":[[-83.57182,32.867212],[-83.57129900000001,32.867651],[-83.571014,32.867883]]},"id":"8844c0b8b9fffff-13bfbd579087c478"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b82c115-13fffe544c49eca6","8f44c0b8b801298-13bfe0f6aa05c835"]},"geometry":{"type":"LineString","coordinates":[[-83.571014,32.867883],[-83.569935,32.868775]]},"id":"8944c0b8b83ffff-1397bfa576045b26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707583,32.793041]},"id":"8f44c0b0334ed45-13d6f0e8a1f15d09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703479,32.794069]},"id":"8f44c0b0321d491-17d77aeda67f2683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0334ed45-13d6f0e8a1f15d09","8f44c0b0321d491-17d77aeda67f2683"]},"geometry":{"type":"LineString","coordinates":[[-83.707583,32.793041],[-83.706946,32.793016],[-83.70595700000001,32.792966],[-83.70524400000001,32.79292],[-83.70434300000001,32.792896],[-83.70388200000001,32.792887],[-83.70368,32.79289],[-83.70347600000001,32.792918],[-83.703418,32.792941],[-83.703362,32.792972],[-83.703298,32.793027],[-83.70324600000001,32.793104],[-83.70321,32.793176],[-83.703202,32.793244],[-83.703207,32.793301],[-83.703226,32.79337],[-83.703473,32.793976],[-83.703479,32.794069]]},"id":"8844c0b033fffff-13d6773c170e2a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703242,32.798119]},"id":"8f44c0b1d965591-17be7b81c9dcdcad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d965591-17be7b81c9dcdcad","8f44c0b0321d491-17d77aeda67f2683"]},"geometry":{"type":"LineString","coordinates":[[-83.703479,32.794069],[-83.70346,32.794893],[-83.703429,32.795572],[-83.70335200000001,32.796216],[-83.70331800000001,32.796543],[-83.70328,32.797088],[-83.703242,32.798119]]},"id":"8544c0b3fffffff-13b6fb345b9b3c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73979800000001,32.887174]},"id":"8f44c0a2c915702-1397c24246a97e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c915702-1397c24246a97e26","8f44c0a2c933146-17d76195cbd8e9bf"]},"geometry":{"type":"LineString","coordinates":[[-83.73979800000001,32.887174],[-83.740074,32.886639]]},"id":"8944c0a2c93ffff-17fe91ec0329d56b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c933146-17d76195cbd8e9bf","8f44c0b52658969-17dfc76228e673c5"]},"geometry":{"type":"LineString","coordinates":[[-83.740074,32.886639],[-83.740114,32.886553],[-83.740137,32.886465],[-83.74014000000001,32.886339],[-83.74013500000001,32.886232],[-83.74012,32.886165000000005],[-83.740082,32.886077],[-83.74002300000001,32.886003],[-83.739846,32.885841],[-83.73976900000001,32.885776],[-83.73970700000001,32.885724],[-83.739631,32.885654],[-83.739563,32.885599],[-83.739509,32.885567],[-83.73943600000001,32.885537],[-83.73841900000001,32.88525],[-83.738297,32.885238],[-83.738185,32.885249],[-83.738123,32.885268],[-83.738066,32.885295],[-83.738003,32.885334],[-83.737943,32.885392],[-83.73789000000001,32.885475],[-83.737699,32.885862]]},"id":"8744c0b52ffffff-17f684162f1c1189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737452,32.88633]},"id":"8f44c0b5265b8f4-179647fc8a986f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5265b8f4-179647fc8a986f97","8f44c0b52658969-17dfc76228e673c5"]},"geometry":{"type":"LineString","coordinates":[[-83.737699,32.885862],[-83.737578,32.886083],[-83.737452,32.88633]]},"id":"8a44c0b5265ffff-17f777b06f5b7b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81bb26c0-1797fe840eab90e3","8f44c0b81b98565-13b7ad968af14f28"]},"geometry":{"type":"LineString","coordinates":[[-83.56476400000001,32.816164],[-83.564487,32.815648],[-83.56447700000001,32.81563],[-83.56444,32.815578],[-83.56439800000001,32.815475],[-83.564385,32.815395],[-83.564386,32.814653],[-83.56439400000001,32.814526],[-83.564384,32.8144743]]},"id":"8944c0b81bbffff-13b7be4dcb77ca0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5642447,32.813810000000004]},"id":"8f44c0b818cd802-17f7eedb154ebc6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81bb26c0-1797fe840eab90e3","8f44c0b818cd802-17f7eedb154ebc6b"]},"geometry":{"type":"LineString","coordinates":[[-83.564384,32.8144743],[-83.564323,32.81416],[-83.564282,32.814003],[-83.5642447,32.813810000000004]]},"id":"8744c0b81ffffff-17d7eeaf06970e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64470890000001,32.8406631]},"id":"8f44c0a34068cec-1796fa68f11a3d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6449302,32.8403979]},"id":"8f44c0a3406c05a-17f6f9dea8845d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3406c05a-17f6f9dea8845d4b","8f44c0a34068cec-1796fa68f11a3d3a"]},"geometry":{"type":"LineString","coordinates":[[-83.64470890000001,32.8406631],[-83.6449302,32.8403979]]},"id":"8a44c0a3406ffff-17b7fa23cc05a551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3406c05a-17f6f9dea8845d4b","8f44c0a34a92a68-17d7f8fc6c2fccf6"]},"geometry":{"type":"LineString","coordinates":[[-83.6449302,32.8403979],[-83.6452922,32.8399639]]},"id":"8844c0a341fffff-17dff96d8a6da638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64560060000001,32.8395942]},"id":"8f44c0a34a90911-13fee83badaf9b76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a92a68-17d7f8fc6c2fccf6","8f44c0a34a90911-13fee83badaf9b76"]},"geometry":{"type":"LineString","coordinates":[[-83.6452922,32.8399639],[-83.64560060000001,32.8395942]]},"id":"8a44c0a34a97fff-17dff89c0b9af620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64596420000001,32.8391581]},"id":"8f44c0a34ab3cd2-13dff7586258ee29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34ab3cd2-13dff7586258ee29","8f44c0a34a90911-13fee83badaf9b76"]},"geometry":{"type":"LineString","coordinates":[[-83.64560060000001,32.8395942],[-83.64596420000001,32.8391581]]},"id":"8944c0a34abffff-13f6e7ca05508b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664786,32.808801]},"id":"8f44c0b18cdbb66-13beb964cb57b2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b18cdbb66-13beb964cb57b2e6","8f44c0b18cd9c01-13bfb90d44615736"]},"geometry":{"type":"LineString","coordinates":[[-83.664786,32.808801],[-83.66492600000001,32.808568]]},"id":"8b44c0b18cd9fff-13f7f93901f39636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665537,32.806103]},"id":"8f44c0b18ce6406-13b6f78f60f320a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b18ce6406-13b6f78f60f320a5","8f44c0b18cd9c01-13bfb90d44615736"]},"geometry":{"type":"LineString","coordinates":[[-83.66492600000001,32.808568],[-83.665148,32.808219],[-83.665745,32.807222],[-83.66583700000001,32.807048],[-83.665875,32.80695],[-83.665907,32.806815],[-83.665908,32.806674],[-83.665885,32.806576],[-83.665857,32.806496],[-83.665812,32.806406],[-83.66573100000001,32.806289],[-83.665537,32.806103]]},"id":"8944c0b18cfffff-17b6f789827efd1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665047,32.804115]},"id":"8f44c0b18c10954-17dff8c1a95be1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b18c10954-17dff8c1a95be1c4","8f44c0b18ce6406-13b6f78f60f320a5"]},"geometry":{"type":"LineString","coordinates":[[-83.665537,32.806103],[-83.66541000000001,32.805991],[-83.66516100000001,32.805695],[-83.665098,32.805557],[-83.665056,32.805432],[-83.66505000000001,32.805321],[-83.66503700000001,32.8052],[-83.665047,32.804115]]},"id":"8844c0b18dfffff-17def88eb601fad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66511700000001,32.801403]},"id":"8f44c0b18d1245c-17bef895ea7e4342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b18d1245c-17bef895ea7e4342","8f44c0b18c10954-17dff8c1a95be1c4"]},"geometry":{"type":"LineString","coordinates":[[-83.665047,32.804115],[-83.665045,32.803524],[-83.66505400000001,32.802692],[-83.66506700000001,32.802002],[-83.66508800000001,32.801629000000005],[-83.66511700000001,32.801403]]},"id":"8844c0b18dfffff-13ffb8b9ac700030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66548200000001,32.800717]},"id":"8f44c0b18d16914-1796b7b1c81b9e77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b18d1245c-17bef895ea7e4342","8f44c0b18d16914-1796b7b1c81b9e77"]},"geometry":{"type":"LineString","coordinates":[[-83.66511700000001,32.801403],[-83.66520700000001,32.801159000000006],[-83.665255,32.801068],[-83.66533600000001,32.800928],[-83.66548200000001,32.800717]]},"id":"8a44c0b18d17fff-17d6b830232d0ce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c69326a-13ffb4e76c3d2512","8f44c0b18d16914-1796b7b1c81b9e77"]},"geometry":{"type":"LineString","coordinates":[[-83.66548200000001,32.800717],[-83.66584900000001,32.800202],[-83.66607,32.799866],[-83.666292,32.7995],[-83.666393,32.799324],[-83.66652500000001,32.799073],[-83.66662500000001,32.798869]]},"id":"8644c0b1fffffff-13dff63a5f655c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673772,32.7969614]},"id":"8f44c0b1c6b475e-13d6f3114c520a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c69326a-13ffb4e76c3d2512","8f44c0b1c6b475e-13d6f3114c520a97"]},"geometry":{"type":"LineString","coordinates":[[-83.66662500000001,32.798869],[-83.666841,32.798439],[-83.66707600000001,32.797919],[-83.66714,32.797765000000005],[-83.667232,32.797504],[-83.667354,32.797086],[-83.6673772,32.7969614]]},"id":"8944c0b1c6bffff-17b7b3e157fe8f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c6b475e-13d6f3114c520a97","8f44c0b1c6b4113-13dff2f36450ee92"]},"geometry":{"type":"LineString","coordinates":[[-83.6673772,32.7969614],[-83.667387,32.796909],[-83.66742500000001,32.796774]]},"id":"8b44c0b1c6b4fff-139eb3036c9bac69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66749610000001,32.7964144]},"id":"8f44c0b1c79a081-13ffb2c6fc7c3e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c79a081-13ffb2c6fc7c3e1b","8f44c0b1c6b4113-13dff2f36450ee92"]},"geometry":{"type":"LineString","coordinates":[[-83.66742500000001,32.796774],[-83.66749610000001,32.7964144]]},"id":"8844c0b1c7fffff-13fff2dd2f6e71da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c79e61b-13dff2a3829aef23","8f44c0b1c79a081-13ffb2c6fc7c3e1b"]},"geometry":{"type":"LineString","coordinates":[[-83.66749610000001,32.7964144],[-83.66755280000001,32.7961271]]},"id":"8a44c0b1c79ffff-13b7f2b5402b218f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c79e61b-13dff2a3829aef23","8f44c0b1c79eceb-13b6b28559f4fd28"]},"geometry":{"type":"LineString","coordinates":[[-83.66755280000001,32.7961271],[-83.6676011,32.7958827]]},"id":"8b44c0b1c79efff-13ffb29469eafbaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667662,32.7955747]},"id":"8f44c0b1c79144e-13f6b25f4a7664b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c79eceb-13b6b28559f4fd28","8f44c0b1c79144e-13f6b25f4a7664b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6676011,32.7958827],[-83.667662,32.7955747]]},"id":"8944c0b1c7bffff-13d6f27248943100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c791d1a-17dff241f0125cef","8f44c0b1c79144e-13f6b25f4a7664b2"]},"geometry":{"type":"LineString","coordinates":[[-83.667662,32.7955747],[-83.66770890000001,32.7953373]]},"id":"8b44c0b1c791fff-13beb25099f874d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c791d1a-17dff241f0125cef","8f44c0b1c7b3c29-17f6f1956ab1e033"]},"geometry":{"type":"LineString","coordinates":[[-83.66770890000001,32.7953373],[-83.667721,32.795276],[-83.667793,32.794966],[-83.66788700000001,32.794721],[-83.667985,32.794522]]},"id":"8944c0b1c7bffff-17def1f96b811407"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c45839e-139faf5f33e628b4","8f44c0b1c7b3c29-17f6f1956ab1e033"]},"geometry":{"type":"LineString","coordinates":[[-83.667985,32.794522],[-83.66813400000001,32.794277],[-83.668311,32.794044],[-83.668655,32.793643],[-83.66889090000001,32.793385]]},"id":"8744c0b1cffffff-17f6f0877d7f05bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c458ab0-13d7bf210e88af1a","8f44c0b1c45839e-139faf5f33e628b4"]},"geometry":{"type":"LineString","coordinates":[[-83.66889090000001,32.793385],[-83.6689904,32.7932761]]},"id":"8b44c0b1c458fff-13f7af402aad0b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c458ab0-13d7bf210e88af1a","8f44c0b1c461174-17d6aad86e3feaf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6689904,32.7932761],[-83.669252,32.79299],[-83.67025500000001,32.791908],[-83.67036800000001,32.791808],[-83.67063,32.791652],[-83.67074500000001,32.791604]]},"id":"8944c0b1c47ffff-13bfed15572f42ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698835,32.778768]},"id":"8f44c0b03c64c9d-17fe66442c2707d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c64c9d-17fe66442c2707d3","8f44c0b03d4ba71-17966423c62dc220"]},"geometry":{"type":"LineString","coordinates":[[-83.698835,32.778768],[-83.699706,32.778829]]},"id":"8944c0b03d7ffff-17ff7533f234eb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038b341e-17b7e1ff04f8bc2a","8f44c0b03d4ba71-17966423c62dc220"]},"geometry":{"type":"LineString","coordinates":[[-83.699706,32.778829],[-83.700584,32.778892]]},"id":"8744c0b03ffffff-17b7f3116a3cefca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038b341e-17b7e1ff04f8bc2a","8f44c0b038814c1-13bedf566b856a84"]},"geometry":{"type":"LineString","coordinates":[[-83.700584,32.778892],[-83.70072400000001,32.7789],[-83.70089200000001,32.778972],[-83.70153,32.779612],[-83.701606,32.77971],[-83.701625,32.779753],[-83.701673,32.779924]]},"id":"8944c0b038bffff-13d6e07b69aca63a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b28575032-13b7c656e76fade8","8f44c0b28404c66-1797edfbc3e241b6"]},"geometry":{"type":"LineString","coordinates":[[-83.764341,32.76721],[-83.763903,32.767581],[-83.763633,32.76777],[-83.763557,32.767814],[-83.76328600000001,32.767939000000005],[-83.763041,32.768014],[-83.76272300000001,32.768071],[-83.762298,32.768141],[-83.76199000000001,32.768222],[-83.761795,32.768276],[-83.761516,32.768402],[-83.76121,32.768599]]},"id":"8844c0b285fffff-1795ca0ee42cce85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b284026e6-13bfcfa8884314bf","8f44c0b28404c66-1797edfbc3e241b6"]},"geometry":{"type":"LineString","coordinates":[[-83.76121,32.768599],[-83.761043,32.768738],[-83.76098,32.768804],[-83.760838,32.768952],[-83.760664,32.769202],[-83.760624,32.769273000000005],[-83.760524,32.76945]]},"id":"8a44c0b28407fff-1795dee5e744f0e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74451780000001,32.9134327]},"id":"8f44c0a2d472d85-13bff6bc6964319e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d472d85-13bff6bc6964319e","8f44c0a2d41aa11-13bdfc77239f3921"]},"geometry":{"type":"LineString","coordinates":[[-83.74451780000001,32.9134327],[-83.742171,32.913429]]},"id":"8844c0a2d5fffff-13bff999c026a56b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740796,32.913431]},"id":"8f44c0a2d4aa352-13bfffd285cd7431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d41aa11-13bdfc77239f3921","8f44c0a2d4aa352-13bfffd285cd7431"]},"geometry":{"type":"LineString","coordinates":[[-83.742171,32.913429],[-83.740796,32.913431]]},"id":"8844c0a2d5fffff-13bdfe24da17d449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6743957,32.8245681]},"id":"8f44c0b1959679d-17bfb1eeb3c4ac9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b97504e-1796a5cf08146b9e","8f44c0b1959679d-17bfb1eeb3c4ac9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6743957,32.8245681],[-83.672808,32.824509]]},"id":"8644c0b1fffffff-17bea3ded3c42711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b97049c-17bea7c447e43a78","8f44c0b1b97504e-1796a5cf08146b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.672808,32.824509],[-83.67200600000001,32.824564]]},"id":"8a44c0b1b977fff-17b7f6c9a6256125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670669,32.824545]},"id":"8f44c0b1b90aa22-17beab07e5eab002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b97049c-17bea7c447e43a78","8f44c0b1b90aa22-17beab07e5eab002"]},"geometry":{"type":"LineString","coordinates":[[-83.67200600000001,32.824564],[-83.670669,32.824545]]},"id":"8844c0b1b9fffff-17b6b96614f98ada"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670495,32.824579]},"id":"8f44c0b1b90a009-17d7eb74aa0094a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b90aa22-17beab07e5eab002","8f44c0b1b90a009-17d7eb74aa0094a8"]},"geometry":{"type":"LineString","coordinates":[[-83.670669,32.824545],[-83.670564,32.824548],[-83.67054200000001,32.824554],[-83.670495,32.824579]]},"id":"8b44c0b1b90afff-17b7bb3fb48de4d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662671,32.824531]},"id":"8f44c0b1bd55cd3-17b7fe8ea89f4cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66406900000001,32.824545]},"id":"8f44c0b1bd45d09-17bebb24e1645ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd55cd3-17b7fe8ea89f4cfd","8f44c0b1bd45d09-17bebb24e1645ebe"]},"geometry":{"type":"LineString","coordinates":[[-83.662671,32.824531],[-83.66406900000001,32.824545]]},"id":"8944c0b1bd7ffff-17befcd9c85602b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665462,32.824557]},"id":"8f44c0b1b993601-17b6b7be42bff703"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b993601-17b6b7be42bff703","8f44c0b1bd45d09-17bebb24e1645ebe"]},"geometry":{"type":"LineString","coordinates":[[-83.66406900000001,32.824545],[-83.665462,32.824557]]},"id":"8744c0b1bffffff-17b6f9719ff9e326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b983734-17d6b48547aa1bac","8f44c0b1b993601-17b6b7be42bff703"]},"geometry":{"type":"LineString","coordinates":[[-83.665462,32.824557],[-83.66678200000001,32.824576]]},"id":"8944c0b1b9bffff-17beb621c383f244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668046,32.824626]},"id":"8f44c0b1b9ab42d-17dff16f4ed3a0e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b983734-17d6b48547aa1bac","8f44c0b1b9ab42d-17dff16f4ed3a0e2"]},"geometry":{"type":"LineString","coordinates":[[-83.66678200000001,32.824576],[-83.668046,32.824626]]},"id":"8944c0b1b9bffff-17dfb2fa46b0e320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6239826,32.8495586]},"id":"8f44c0a36372231-17bf3d02e031e759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62397700000001,32.8496766]},"id":"8f44c0a36354965-1797fd066a8beca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36372231-17bf3d02e031e759","8f44c0a36354965-1797fd066a8beca6"]},"geometry":{"type":"LineString","coordinates":[[-83.6239826,32.8495586],[-83.62397700000001,32.8496766]]},"id":"8a44c0a36377fff-17f71d04ad030a99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36354965-1797fd066a8beca6","8f44c0a36354234-17bfbd5024551ebc"]},"geometry":{"type":"LineString","coordinates":[[-83.62397700000001,32.8496766],[-83.6239547,32.8498151],[-83.62385900000001,32.8499691]]},"id":"8b44c0a36354fff-17f7bd2225c8ebef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623502,32.850957]},"id":"8f44c0a3622d9ac-17bf3e2f4703b5bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3622d9ac-17bf3e2f4703b5bb","8f44c0a36354234-17bfbd5024551ebc"]},"geometry":{"type":"LineString","coordinates":[[-83.62385900000001,32.8499691],[-83.623714,32.850195],[-83.62366800000001,32.85031],[-83.62356700000001,32.850673],[-83.623502,32.850957]]},"id":"8944c0a3637ffff-17ff9dd53bace321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623192,32.853167]},"id":"8f44c0a3625556e-179f7ef10e9fbb8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3625556e-179f7ef10e9fbb8f","8f44c0a3622d9ac-17bf3e2f4703b5bb"]},"geometry":{"type":"LineString","coordinates":[[-83.623502,32.850957],[-83.623351,32.851627],[-83.623237,32.852379],[-83.623199,32.852814],[-83.623192,32.853167]]},"id":"8844c0a363fffff-13d75eaad18f856f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3625556e-179f7ef10e9fbb8f","8f44c0a3625546c-17bf9ef2e60552fa"]},"geometry":{"type":"LineString","coordinates":[[-83.623192,32.853167],[-83.62318900000001,32.85322]]},"id":"8c44c0a362555ff-179ffef1f2904825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3625ea8e-17dffefbc71576ad","8f44c0a3625546c-17bf9ef2e60552fa"]},"geometry":{"type":"LineString","coordinates":[[-83.62318900000001,32.85322],[-83.6231748,32.8541103]]},"id":"8944c0a3627ffff-17d7bef75b33f4f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3625ea8e-17dffefbc71576ad","8f44c0a3625b61a-13ffff046a176487"]},"geometry":{"type":"LineString","coordinates":[[-83.6231748,32.8541103],[-83.62316100000001,32.854979]]},"id":"8844c0a363fffff-13ff7f001f2d8c21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36354cf5-17bf9dc270aa1d92","8f44c0a36309208-1797de2041b513f9"]},"geometry":{"type":"LineString","coordinates":[[-83.623526,32.849702],[-83.62367610000001,32.8497304]]},"id":"8a44c0a36357fff-17b7bdf1639e06b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36354cf5-17bf9dc270aa1d92","8f44c0a36354965-1797fd066a8beca6"]},"geometry":{"type":"LineString","coordinates":[[-83.62367610000001,32.8497304],[-83.6238356,32.8497056],[-83.62397700000001,32.8496766]]},"id":"8b44c0a36354fff-179fdd643ac025e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62407440000001,32.8496564]},"id":"8f44c0a36373515-17ff5cc985eec282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36373515-17ff5cc985eec282","8f44c0a36354965-1797fd066a8beca6"]},"geometry":{"type":"LineString","coordinates":[[-83.62397700000001,32.8496766],[-83.62407440000001,32.8496564]]},"id":"8a44c0a36377fff-17979ce7f950aa08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36373515-17ff5cc985eec282","8f44c0a36371ca9-179f9b7209493f94"]},"geometry":{"type":"LineString","coordinates":[[-83.62407440000001,32.8496564],[-83.624391,32.849583],[-83.624531,32.849542],[-83.62462400000001,32.849508]]},"id":"8a44c0a36377fff-17d7fc1ca444c566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65400500000001,32.782621]},"id":"8f44c0b1160a964-13d6f3b6ea154628"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65417400000001,32.782700000000006]},"id":"8f44c0b11608464-1397d34d44fa72c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1160a964-13d6f3b6ea154628","8f44c0b11608464-1397d34d44fa72c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65400500000001,32.782621],[-83.65417400000001,32.782700000000006]]},"id":"8a44c0b1160ffff-13fed3821ff3e8d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65592600000001,32.782739]},"id":"8f44c0b11675453-139fef0644bc76de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11608464-1397d34d44fa72c2","8f44c0b11675453-139fef0644bc76de"]},"geometry":{"type":"LineString","coordinates":[[-83.65417400000001,32.782700000000006],[-83.65429900000001,32.782705],[-83.655285,32.782729],[-83.65592600000001,32.782739]]},"id":"8844c0b117fffff-1397f129dbcaa7d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658973,32.782804]},"id":"8f44c0b112864a5-13d6c795e2f5fa1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112864a5-13d6c795e2f5fa1c","8f44c0b11675453-139fef0644bc76de"]},"geometry":{"type":"LineString","coordinates":[[-83.65592600000001,32.782739],[-83.658973,32.782804]]},"id":"8744c0b11ffffff-13b6fb4e13db2a48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a14925303-1397b85e6d2978e1","8f44c0a3238a619-13977760043d08f7"]},"geometry":{"type":"LineString","coordinates":[[-83.613184,32.8713749],[-83.61305700000001,32.87155],[-83.61294500000001,32.871761],[-83.61288300000001,32.871893],[-83.61283300000001,32.872031],[-83.612786,32.872295],[-83.61278,32.872492],[-83.61288300000001,32.873845],[-83.61289500000001,32.874149],[-83.61289000000001,32.874336],[-83.61287700000001,32.874518],[-83.612857,32.874688],[-83.61281000000001,32.87494],[-83.61277700000001,32.875092]]},"id":"8844c0a323fffff-17f7b825149c26b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a14925303-1397b85e6d2978e1","8f44c0a1492e92a-13ff78dac6bc48be"]},"geometry":{"type":"LineString","coordinates":[[-83.61277700000001,32.875092],[-83.612578,32.875666]]},"id":"8944c0a1493ffff-13d7f89c9e7e42a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60131270000001,32.8858693]},"id":"8f44c0a140b3533-17f7545b97bcc371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a140b3533-17f7545b97bcc371","8f44c0a140b3569-179ff419218a4217"]},"geometry":{"type":"LineString","coordinates":[[-83.60131270000001,32.8858693],[-83.601419,32.885939]]},"id":"8b44c0a140b3fff-17ff543a56921264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60083610000001,32.887827800000004]},"id":"8f44c0a1409a6b1-13bf758575b8ac9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1409a6b1-13bf758575b8ac9d","8f44c0a140b3569-179ff419218a4217"]},"geometry":{"type":"LineString","coordinates":[[-83.601419,32.885939],[-83.601465,32.885987],[-83.601517,32.886071],[-83.60153100000001,32.886127],[-83.601526,32.886181],[-83.601505,32.886259],[-83.60132200000001,32.886583],[-83.601156,32.886939000000005],[-83.601083,32.88711],[-83.60093900000001,32.887496],[-83.60092300000001,32.88754],[-83.600865,32.887725],[-83.60083610000001,32.887827800000004]]},"id":"8944c0a140bffff-17d7f4a2292a102e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6787687,32.8518385]},"id":"8f44c0a267254b1-13df97419c35bcfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267254b1-13df97419c35bcfe","8f44c0a26089595-13dff5c560010d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.6787687,32.8518385],[-83.679377,32.851247]]},"id":"8844c0a261fffff-1396d6837f29705a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67968400000001,32.850879]},"id":"8f44c0a2608d0b5-17f7f5058aef1c7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26089595-13dff5c560010d9c","8f44c0a2608d0b5-17f7f5058aef1c7e"]},"geometry":{"type":"LineString","coordinates":[[-83.679377,32.851247],[-83.679595,32.851063],[-83.679671,32.850991],[-83.67968400000001,32.850879]]},"id":"8a44c0a2608ffff-17f6f5534e59aaf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2608d0b5-17f7f5058aef1c7e","8f44c0a2608ddae-17fed524c9023faa"]},"geometry":{"type":"LineString","coordinates":[[-83.67968400000001,32.850879],[-83.67968900000001,32.85083],[-83.679685,32.85078],[-83.679665,32.850729],[-83.67963400000001,32.850682]]},"id":"8b44c0a2608dfff-17b7950bf6629651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260ab019-17fed493cf87f6f9","8f44c0a2608ddae-17fed524c9023faa"]},"geometry":{"type":"LineString","coordinates":[[-83.67963400000001,32.850682],[-83.679866,32.850478]]},"id":"8944c0a260bffff-17be94dc4017debe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680034,32.850323]},"id":"8f44c0a260ab958-179ff42acea92bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260ab958-179ff42acea92bde","8f44c0a260ab019-17fed493cf87f6f9"]},"geometry":{"type":"LineString","coordinates":[[-83.679866,32.850478],[-83.680034,32.850323]]},"id":"8b44c0a260abfff-17ded45f4d59f1c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65814900000001,32.78737]},"id":"8f44c0b1e91824c-17fec998ed746dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e908608-179ec6f9ad6ab014","8f44c0b1e91824c-17fec998ed746dcf"]},"geometry":{"type":"LineString","coordinates":[[-83.65814900000001,32.78737],[-83.658251,32.787383000000005],[-83.65922300000001,32.787424]]},"id":"8944c0b1e93ffff-17ffd849724d9205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660176,32.787481]},"id":"8f44c0b1e97202c-17bfe4a606477400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e908608-179ec6f9ad6ab014","8f44c0b1e97202c-17bfe4a606477400"]},"geometry":{"type":"LineString","coordinates":[[-83.65922300000001,32.787424],[-83.65986500000001,32.787463],[-83.660176,32.787481]]},"id":"8844c0b1e9fffff-179ec5cfdb820997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.715607,32.783696]},"id":"8f44c0b017b5188-13f63d51aca2986f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b014dc6de-13bf64e00c02321f","8f44c0b017b5188-13f63d51aca2986f"]},"geometry":{"type":"LineString","coordinates":[[-83.712512,32.783381],[-83.71502500000001,32.783423],[-83.715131,32.783429000000005],[-83.715182,32.783437],[-83.715283,32.783462],[-83.715384,32.783509],[-83.715446,32.783555],[-83.715607,32.783696]]},"id":"8744c0b01ffffff-13df410205244776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b017b5188-13f63d51aca2986f","8f44c0b017a3c89-17d7fbce2a02293f"]},"geometry":{"type":"LineString","coordinates":[[-83.715607,32.783696],[-83.716227,32.784262000000005]]},"id":"8944c0b017bffff-17b6fc8fea6853a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717591,32.785767]},"id":"8f44c0b01636b60-13967879aa17771d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01636b60-13967879aa17771d","8f44c0b017a3c89-17d7fbce2a02293f"]},"geometry":{"type":"LineString","coordinates":[[-83.716227,32.784262000000005],[-83.716396,32.784391],[-83.717009,32.78493],[-83.717177,32.785082],[-83.717324,32.785238],[-83.717399,32.785344],[-83.71746800000001,32.785458000000006],[-83.717608,32.785721],[-83.71760900000001,32.785744],[-83.717591,32.785767]]},"id":"8844c0b017fffff-179f79f066e440b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657503,32.853734]},"id":"8f44c0a3501484d-17ffcb2ca70fec7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3501484d-17ffcb2ca70fec7b","8f44c0a35011c28-139ecb27a104a172"]},"geometry":{"type":"LineString","coordinates":[[-83.657503,32.853734],[-83.657511,32.854416]]},"id":"8a44c0a35017fff-17d6eb2a2406a334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3501bc95-1397eb27a868ddbb","8f44c0a35011c28-139ecb27a104a172"]},"geometry":{"type":"LineString","coordinates":[[-83.657511,32.854416],[-83.657511,32.855609]]},"id":"8944c0a3503ffff-139edb27a011ca01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65750600000001,32.855725]},"id":"8f44c0a3501b423-13deeb2ac44932f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3501bc95-1397eb27a868ddbb","8f44c0a3501b423-13deeb2ac44932f4"]},"geometry":{"type":"LineString","coordinates":[[-83.657511,32.855609],[-83.65750600000001,32.855725]]},"id":"8b44c0a3501bfff-13b7eb293fe46097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3501b423-13deeb2ac44932f4","8f44c0a350f5646-17deeb2a2c0ea2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65750600000001,32.855725],[-83.65750100000001,32.856147],[-83.65750700000001,32.856369]]},"id":"8944c0a350fffff-1797eb2c349a47d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a350f5646-17deeb2a2c0ea2c2","8f44c0a350c694d-17b7eb2665d42aef"]},"geometry":{"type":"LineString","coordinates":[[-83.65750700000001,32.856369],[-83.65751300000001,32.856915]]},"id":"8944c0a350fffff-179fcb284bfa3836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a350dd171-13dfdb2ff311c9ab","8f44c0a350c694d-17b7eb2665d42aef"]},"geometry":{"type":"LineString","coordinates":[[-83.65751300000001,32.856915],[-83.657514,32.858109],[-83.65749770000001,32.858214100000005]]},"id":"8944c0a350fffff-17defb26771c42fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a350dd171-13dfdb2ff311c9ab","8f44c0a3574434b-1797cc1fc1832353"]},"geometry":{"type":"LineString","coordinates":[[-83.65749770000001,32.858214100000005],[-83.6574932,32.8585054],[-83.6574234,32.8587848],[-83.6572625,32.8594109],[-83.6571445,32.859798500000004],[-83.657114,32.86014]]},"id":"8744c0a35ffffff-13befba134a0cb75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656947,32.861986]},"id":"8f44c0a35664bb3-1397cc88280243e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35664bb3-1397cc88280243e1","8f44c0a3574434b-1797cc1fc1832353"]},"geometry":{"type":"LineString","coordinates":[[-83.657114,32.86014],[-83.6571478,32.8604298],[-83.65714390000001,32.8607686],[-83.65706630000001,32.861312500000004],[-83.656947,32.861986]]},"id":"8944c0a3577ffff-13d7ec34cf4ea5eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656502,32.865004]},"id":"8f44c0a3564b05c-13f7cd9e42f3aa3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35664bb3-1397cc88280243e1","8f44c0a3564b05c-13f7cd9e42f3aa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.656947,32.861986],[-83.65681040000001,32.8629069],[-83.65663590000001,32.8640094],[-83.656502,32.865004]]},"id":"8744c0a35ffffff-17d7fd161eb2fc48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656059,32.8671157]},"id":"8f44c0a3198ca2e-179fdeb32f127410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3198ca2e-179fdeb32f127410","8f44c0a3564b05c-13f7cd9e42f3aa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.656502,32.865004],[-83.6561933,32.8668392],[-83.6561815,32.866965900000004],[-83.6561473,32.8670342],[-83.656059,32.8671157]]},"id":"8844c0a319fffff-1797fe10f3aae7e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64720000000001,32.802704]},"id":"8f44c0b1e602d1a-13dee45405096e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e63015c-17fee440abea4b39","8f44c0b1e602d1a-13dee45405096e22"]},"geometry":{"type":"LineString","coordinates":[[-83.64720000000001,32.802704],[-83.647231,32.801706]]},"id":"8944c0b1e63ffff-13b6e44a5ad77a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e63015c-17fee440abea4b39","8f44c0b1e63408a-17f6e441ee7a2448"]},"geometry":{"type":"LineString","coordinates":[[-83.647231,32.801706],[-83.64722900000001,32.801316]]},"id":"8a44c0b1e637fff-17f6e4414c575246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64726,32.800337]},"id":"8f44c0b1e7132cb-1796e42e8ecad4e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7132cb-1796e42e8ecad4e2","8f44c0b1e63408a-17f6e441ee7a2448"]},"geometry":{"type":"LineString","coordinates":[[-83.64722900000001,32.801316],[-83.647249,32.800493],[-83.64726,32.800337]]},"id":"8844c0b1e7fffff-17d6e43a15c59705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647261,32.800305]},"id":"8f44c0b1e7132ea-13fee42defe37889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7132ea-13fee42defe37889","8f44c0b1e7132cb-1796e42e8ecad4e2"]},"geometry":{"type":"LineString","coordinates":[[-83.64726,32.800337],[-83.647261,32.800305]]},"id":"8d44c0b1e7132ff-179ee42e38eb8754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64727400000001,32.799263]},"id":"8f44c0b1e71445c-13f7e425cc2ffd4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7132ea-13fee42defe37889","8f44c0b1e71445c-13f7e425cc2ffd4a"]},"geometry":{"type":"LineString","coordinates":[[-83.647261,32.800305],[-83.64727400000001,32.799263]]},"id":"8a44c0b1e717fff-13bfe429d90cc069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e71445c-13f7e425cc2ffd4a","8f44c0b1e44d808-17b7e4180528ddb6"]},"geometry":{"type":"LineString","coordinates":[[-83.64727400000001,32.799263],[-83.64729600000001,32.798344]]},"id":"8844c0b1e7fffff-13d6f41ee87ec5f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647306,32.79791]},"id":"8f44c0b1e46b892-17b7e411c8315d4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e44d808-17b7e4180528ddb6","8f44c0b1e46b892-17b7e411c8315d4e"]},"geometry":{"type":"LineString","coordinates":[[-83.64729600000001,32.798344],[-83.647306,32.79791]]},"id":"8944c0b1e47ffff-17bfe414e722a149"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64732500000001,32.797027]},"id":"8f44c0b1e461262-13ffe405ef8d3a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e46b892-17b7e411c8315d4e","8f44c0b1e461262-13ffe405ef8d3a53"]},"geometry":{"type":"LineString","coordinates":[[-83.647306,32.79791],[-83.64732500000001,32.797027]]},"id":"8a44c0b1e46ffff-1797f40bd3a46ef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64736,32.795589]},"id":"8f44c0b1e5484ee-13ffe3f00044c667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e5484ee-13ffe3f00044c667","8f44c0b1e461262-13ffe405ef8d3a53"]},"geometry":{"type":"LineString","coordinates":[[-83.64732500000001,32.797027],[-83.64736,32.795589]]},"id":"8844c0b1e5fffff-13bee3faf415f0cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64738100000001,32.794188000000005]},"id":"8f44c0b1e545d52-179fe3e2e44fd9d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e5484ee-13ffe3f00044c667","8f44c0b1e545d52-179fe3e2e44fd9d2"]},"geometry":{"type":"LineString","coordinates":[[-83.64736,32.795589],[-83.64738100000001,32.794188000000005]]},"id":"8944c0b1e57ffff-17d7f3e97c8d762e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e545d52-179fe3e2e44fd9d2","8f44c0b1e5669ad-139ee3d2adab180e"]},"geometry":{"type":"LineString","coordinates":[[-83.64738100000001,32.794188000000005],[-83.647407,32.792983]]},"id":"8944c0b1e57ffff-1396f3dacdc9d8b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647283,32.792844]},"id":"8f44c0b1ecd978a-13d7e4202fea02b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ecd978a-13d7e4202fea02b7","8f44c0b1e5669ad-139ee3d2adab180e"]},"geometry":{"type":"LineString","coordinates":[[-83.647407,32.792983],[-83.647283,32.792844]]},"id":"8844c0b1e5fffff-13f6f3f962a0806d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68962900000001,32.825577]},"id":"8f44c0b1910cb92-13b7fcbdecc677c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1910cb92-13b7fcbdecc677c7","8f44c0b19176d29-13df7b03d6d5a2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.68962900000001,32.825577],[-83.690306,32.825622],[-83.6903363,32.825624000000005]]},"id":"8944c0b1913ffff-13d67be0ee4adc03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19164c4c-139f769969d5ba6b","8f44c0b19176d29-13df7b03d6d5a2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6903363,32.825624000000005],[-83.69214500000001,32.825743]]},"id":"8844c0b191fffff-13f678ceacf86305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69310800000001,32.826366]},"id":"8f44c0b19b904b1-139ef43f87a41d54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19164c4c-139f769969d5ba6b","8f44c0b19b904b1-139ef43f87a41d54"]},"geometry":{"type":"LineString","coordinates":[[-83.69214500000001,32.825743],[-83.693118,32.825809],[-83.69321500000001,32.825822],[-83.69331100000001,32.82587],[-83.693359,32.825923],[-83.693382,32.825988],[-83.69338,32.826068],[-83.69328900000001,32.826206],[-83.69310800000001,32.826366]]},"id":"8744c0b19ffffff-13ff74b087b25581"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662245,32.867455]},"id":"8f44c0a31961ad8-17ffff98e6ae2d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662975,32.867447]},"id":"8f44c0a225938ae-17fefdd0ab7a8c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225938ae-17fefdd0ab7a8c34","8f44c0a31961ad8-17ffff98e6ae2d8a"]},"geometry":{"type":"LineString","coordinates":[[-83.662245,32.867455],[-83.662975,32.867447]]},"id":"8644c0a37ffffff-17fefeb4c065e4f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225938ae-17fefdd0ab7a8c34","8f44c0a2259161d-13defd09e1874d97"]},"geometry":{"type":"LineString","coordinates":[[-83.662975,32.867447],[-83.66307300000001,32.867486],[-83.663194,32.867545],[-83.66329300000001,32.867623]]},"id":"8a44c0a22597fff-139fbd69a0dd730d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2251b016-139ef45e8134556a","8f44c0a2259161d-13defd09e1874d97"]},"geometry":{"type":"LineString","coordinates":[[-83.66329300000001,32.867623],[-83.663399,32.867739],[-83.663487,32.867918],[-83.663571,32.868112],[-83.66366500000001,32.868253],[-83.663756,32.868341],[-83.663876,32.868425],[-83.663965,32.868468],[-83.664029,32.868484],[-83.664088,32.868487],[-83.66418,32.868476],[-83.66431100000001,32.868448],[-83.665119,32.868113],[-83.665203,32.868088],[-83.665442,32.868048],[-83.665565,32.868035],[-83.665754,32.868029],[-83.66584900000001,32.868031],[-83.666016,32.868043],[-83.66642900000001,32.868091],[-83.666531,32.868091],[-83.666583,32.868082],[-83.66666400000001,32.868053],[-83.666757,32.867993000000006],[-83.66684400000001,32.867911]]},"id":"8844c0a225fffff-139ff90e93ea4dc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2251b016-139ef45e8134556a","8f44c0a225184ab-1397f48ccb69ae60"]},"geometry":{"type":"LineString","coordinates":[[-83.66684400000001,32.867911],[-83.66685700000001,32.867877],[-83.66687200000001,32.867772],[-83.66685700000001,32.867663],[-83.66681600000001,32.867562],[-83.66677,32.867494]]},"id":"8a44c0a2251ffff-1396f45f082a3eb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11698aa1-1397de0f058144a5","8f44c0b13adc102-17feee7de6ae523b"]},"geometry":{"type":"LineString","coordinates":[[-83.643037,32.784321],[-83.643358,32.784266],[-83.644318,32.784131],[-83.648115,32.783582],[-83.64845100000001,32.78354],[-83.64976800000001,32.783346]]},"id":"8644c0b17ffffff-13d6f646ca4f7c44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65060700000001,32.783226]},"id":"8f44c0b1168e382-13dedc02a6f5c071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11698aa1-1397de0f058144a5","8f44c0b1168e382-13dedc02a6f5c071"]},"geometry":{"type":"LineString","coordinates":[[-83.64976800000001,32.783346],[-83.65060700000001,32.783226]]},"id":"8944c0b116bffff-13f7dd08da139917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644186,32.836264]},"id":"8f44c0a34175d41-13dfebafcb986fd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3416621a-17dfea5696465023","8f44c0a34175d41-13dfebafcb986fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.644186,32.836264],[-83.6447383,32.8364982]]},"id":"8944c0a3417ffff-1796fb0321184e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71340860000001,32.856901]},"id":"8f44c0a255ada2e-17bf62afa2e2b694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7135903,32.856905000000005]},"id":"8f44c0a2551e623-17bfe23e1c752365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2551e623-17bfe23e1c752365","8f44c0a255ada2e-17bf62afa2e2b694"]},"geometry":{"type":"LineString","coordinates":[[-83.71340860000001,32.856901],[-83.7135903,32.856905000000005]]},"id":"8a44c0a2551ffff-17be6276e8b61219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7142527,32.857545]},"id":"8f44c0a25519788-17bfe0a0126453a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2551e623-17bfe23e1c752365","8f44c0a25519788-17bfe0a0126453a7"]},"geometry":{"type":"LineString","coordinates":[[-83.7135903,32.856905000000005],[-83.713729,32.85691],[-83.71393300000001,32.856901],[-83.714037,32.856938],[-83.714067,32.856971],[-83.71413100000001,32.85703],[-83.714168,32.857427],[-83.7142527,32.857545]]},"id":"8a44c0a2551ffff-17bef134328ba440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b960a1a-17d7d77a8c3aa4fc","8f44c0b882dbc53-13f799cba86a19aa"]},"geometry":{"type":"LineString","coordinates":[[-83.572871,32.8658],[-83.57292000000001,32.865831],[-83.573133,32.866006],[-83.57382000000001,32.866598]]},"id":"8844c0b8b9fffff-17dfd8a0bf946aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b960a1a-17d7d77a8c3aa4fc","8f44c0b8b96c8d5-17b7f5f488c6e3de"]},"geometry":{"type":"LineString","coordinates":[[-83.57382000000001,32.866598],[-83.574444,32.867131]]},"id":"8944c0b8b97ffff-17ffd6b78df0935d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57512100000001,32.867697]},"id":"8f44c0b8959a998-1397b44d6592fd60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b96c8d5-17b7f5f488c6e3de","8f44c0b8959a998-1397b44d6592fd60"]},"geometry":{"type":"LineString","coordinates":[[-83.574444,32.867131],[-83.57512100000001,32.867697]]},"id":"8844c0b895fffff-17d7d520f23e2fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572393,32.865634]},"id":"8f44c0b882da4cc-13ffdaf6622be4fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b92d736-13bfdba1a6029e87","8f44c0b882da4cc-13ffdaf6622be4fb"]},"geometry":{"type":"LineString","coordinates":[[-83.572119,32.865302],[-83.572393,32.865634]]},"id":"8844c0b8b9fffff-13979b4c044b32fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57286500000001,32.865748]},"id":"8f44c0b882dbc05-13d799cf64ea5f50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882dbc05-13d799cf64ea5f50","8f44c0b882da4cc-13ffdaf6622be4fb"]},"geometry":{"type":"LineString","coordinates":[[-83.572393,32.865634],[-83.57286500000001,32.865748]]},"id":"8a44c0b882dffff-13b7fa62e470594e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd20d4e-179fc0974d3151b1","8f44c0b1bd23a94-139fe09c41acf623"]},"geometry":{"type":"LineString","coordinates":[[-83.66183000000001,32.822037],[-83.661838,32.821426]]},"id":"8a44c0b1bd27fff-13def099c65efbdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66186,32.820798]},"id":"8f44c0b18699b74-1796c08983bb481a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd20d4e-179fc0974d3151b1","8f44c0b18699b74-1796c08983bb481a"]},"geometry":{"type":"LineString","coordinates":[[-83.661838,32.821426],[-83.66186,32.820798]]},"id":"8844c0b187fffff-17dfc0906b117dba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66185800000001,32.820177]},"id":"8f44c0b1869d922-1796e08acd570676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18699b74-1796c08983bb481a","8f44c0b1869d922-1796e08acd570676"]},"geometry":{"type":"LineString","coordinates":[[-83.66186,32.820798],[-83.66185800000001,32.820177]]},"id":"8a44c0b1869ffff-17d6f08a2c73c6d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661901,32.818997]},"id":"8f44c0b186b1249-13b7e06fe8387f91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1869d922-1796e08acd570676","8f44c0b186b1249-13b7e06fe8387f91"]},"geometry":{"type":"LineString","coordinates":[[-83.66185800000001,32.820177],[-83.661901,32.818997]]},"id":"8944c0b186bffff-1397e07d52b76924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66191400000001,32.817808]},"id":"8f44c0b1879bcec-17bec067c8fb60db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186b1249-13b7e06fe8387f91","8f44c0b1879bcec-17bec067c8fb60db"]},"geometry":{"type":"LineString","coordinates":[[-83.661901,32.818997],[-83.66191400000001,32.817808]]},"id":"8844c0b187fffff-13bfd06bd3e9b199"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66194800000001,32.816626]},"id":"8f44c0b187918f1-13d7c052860d25eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b187918f1-13d7c052860d25eb","8f44c0b1879bcec-17bec067c8fb60db"]},"geometry":{"type":"LineString","coordinates":[[-83.66191400000001,32.817808],[-83.66194800000001,32.816626]]},"id":"8944c0b187bffff-17dee05d27d2e1f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b187b2b24-13ffc042efd257aa","8f44c0b187918f1-13d7c052860d25eb"]},"geometry":{"type":"LineString","coordinates":[[-83.66194800000001,32.816626],[-83.661973,32.815452]]},"id":"8944c0b187bffff-13fee04ab03a8df7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69270900000001,32.885935]},"id":"8f44c0a23015d98-179f7538e87bd1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23015d98-179f7538e87bd1be","8f44c0a23033293-17f6749706d1fbfe"]},"geometry":{"type":"LineString","coordinates":[[-83.69270900000001,32.885935],[-83.69296800000001,32.885866]]},"id":"8944c0a2303ffff-17f7f4e7f7211aef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23015d98-179f7538e87bd1be","8f44c0a23033293-17f6749706d1fbfe"]},"geometry":{"type":"LineString","coordinates":[[-83.69296800000001,32.885866],[-83.692839,32.885541],[-83.69280900000001,32.885512],[-83.692783,32.885499],[-83.692755,32.885494],[-83.692723,32.885499],[-83.692575,32.885543000000006],[-83.692554,32.885551],[-83.692536,32.885574000000005],[-83.692532,32.885598],[-83.692662,32.885916],[-83.69268500000001,32.885931],[-83.69270900000001,32.885935]]},"id":"8944c0a2303ffff-17ff752f7465fba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60002200000001,32.855586]},"id":"8f44c0b8d3506a5-13f7578241fbf5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.598669,32.855604]},"id":"8f44c0b8d223d52-1397dacfee1385d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3506a5-13f7578241fbf5e5","8f44c0b8d223d52-1397dacfee1385d6"]},"geometry":{"type":"LineString","coordinates":[[-83.60002200000001,32.855586],[-83.59941500000001,32.855628],[-83.599153,32.855625],[-83.599095,32.855623],[-83.598669,32.855604]]},"id":"8844c0b8d3fffff-13977928f31cd364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db4d82-17ffe11e6c35297c","8f44c0a26db0546-13fea15d89e0797d"]},"geometry":{"type":"LineString","coordinates":[[-83.674628,32.838164],[-83.67469700000001,32.838153000000005],[-83.67471300000001,32.838101],[-83.674729,32.83757]]},"id":"8a44c0a26db7fff-17d7f12825dbe672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674744,32.836971000000005]},"id":"8f44c0b1baedb96-1796e1150231d685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26db4d82-17ffe11e6c35297c","8f44c0b1baedb96-1796e1150231d685"]},"geometry":{"type":"LineString","coordinates":[[-83.674729,32.83757],[-83.674744,32.836971000000005]]},"id":"8844c0b1bbfffff-17beb119bb227207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22591c02-1797fcfcc9f27a00","8f44c0a225938ae-17fefdd0ab7a8c34"]},"geometry":{"type":"LineString","coordinates":[[-83.662975,32.867447],[-83.663081,32.867432],[-83.66313600000001,32.867417],[-83.663227,32.867379],[-83.663314,32.867314]]},"id":"8a44c0a22597fff-17defd61f1485e09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22591c02-1797fcfcc9f27a00","8f44c0a225184ab-1397f48ccb69ae60"]},"geometry":{"type":"LineString","coordinates":[[-83.663314,32.867314],[-83.66337800000001,32.867232],[-83.663413,32.867158],[-83.663435,32.867058],[-83.663454,32.866914],[-83.66347,32.866839],[-83.663494,32.866788],[-83.663528,32.866736],[-83.66359100000001,32.866664],[-83.663667,32.866605],[-83.66380000000001,32.866543],[-83.663886,32.866526],[-83.664045,32.866515],[-83.664156,32.866522],[-83.664331,32.866563],[-83.664617,32.866692],[-83.664668,32.866709],[-83.664777,32.866735000000006],[-83.66486900000001,32.866751],[-83.664923,32.866753],[-83.66506600000001,32.86675],[-83.665435,32.866712],[-83.665603,32.866706],[-83.665727,32.866731],[-83.665902,32.86679],[-83.66610800000001,32.866915],[-83.666362,32.867097],[-83.666584,32.867295],[-83.666686,32.867395],[-83.66677,32.867494]]},"id":"8844c0a225fffff-17fef902e95ac34c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72915300000001,32.887766]},"id":"8f44c0a2cdab420-1397dc3f699ec26b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cdab420-1397dc3f699ec26b","8f44c0a2cd832ab-13d6deee43bc077a"]},"geometry":{"type":"LineString","coordinates":[[-83.72915300000001,32.887766],[-83.729051,32.887824],[-83.728893,32.887829],[-83.728696,32.887796],[-83.728616,32.887791],[-83.728536,32.887802],[-83.72836600000001,32.887842],[-83.728111,32.887872],[-83.728054,32.88787]]},"id":"8944c0a2cdbffff-13be7d930f07a091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269414,32.888082700000005]},"id":"8f44c0a2cd9e6e0-13dfb1a5ac667fae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cd9e6e0-13dfb1a5ac667fae","8f44c0a2cd832ab-13d6deee43bc077a"]},"geometry":{"type":"LineString","coordinates":[[-83.728054,32.88787],[-83.72787500000001,32.887862000000005],[-83.727686,32.887869],[-83.727506,32.887929],[-83.72730200000001,32.888042],[-83.72720500000001,32.888084],[-83.72709400000001,32.8881],[-83.7269414,32.888082700000005]]},"id":"8944c0a2cdbffff-1397f04c755be357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729083,32.886836]},"id":"8f44c0a2cda16dd-17d69c6b24cd4bb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cd85306-13be7d544ae79793","8f44c0a2cda16dd-17d69c6b24cd4bb2"]},"geometry":{"type":"LineString","coordinates":[[-83.729083,32.886836],[-83.728972,32.886888],[-83.72882200000001,32.887045],[-83.728773,32.887113],[-83.728734,32.887181000000005],[-83.72871,32.887239]]},"id":"8944c0a2cdbffff-17befcef86762e11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cd85306-13be7d544ae79793","8f44c0a2cdab420-1397dc3f699ec26b"]},"geometry":{"type":"LineString","coordinates":[[-83.72871,32.887239],[-83.72870300000001,32.887307],[-83.728735,32.887365],[-83.72894600000001,32.887558],[-83.72915300000001,32.887766]]},"id":"8944c0a2cdbffff-13fe7cdc14b256b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729436,32.888146]},"id":"8f44c0a2cc3648e-13f75b8e8df33f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc3648e-13f75b8e8df33f27","8f44c0a2cdab420-1397dc3f699ec26b"]},"geometry":{"type":"LineString","coordinates":[[-83.72915300000001,32.887766],[-83.729436,32.888146]]},"id":"8944c0a2cdbffff-13fe9be6fa46808a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636014,32.816103000000005]},"id":"8f44c0b1a4162a3-1396ffa34332e0cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63760500000001,32.817059]},"id":"8f44c0b1a4032d9-17f7fbc0e86bdcfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4032d9-17f7fbc0e86bdcfa","8f44c0b1a4162a3-1396ffa34332e0cc"]},"geometry":{"type":"LineString","coordinates":[[-83.636014,32.816103000000005],[-83.63614630000001,32.8161821],[-83.637383,32.816922000000005],[-83.63760500000001,32.817059]]},"id":"8944c0b1a43ffff-13befdb19a470f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638249,32.817456]},"id":"8f44c0b1a408033-17defa2e66ec64c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4032d9-17f7fbc0e86bdcfa","8f44c0b1a408033-17defa2e66ec64c3"]},"geometry":{"type":"LineString","coordinates":[[-83.63760500000001,32.817059],[-83.638249,32.817456]]},"id":"8944c0b1a43ffff-17f7faf7a33105ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638856,32.817812]},"id":"8f44c0b1a409b58-17bef8b30f6e10b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a409b58-17bef8b30f6e10b4","8f44c0b1a408033-17defa2e66ec64c3"]},"geometry":{"type":"LineString","coordinates":[[-83.638249,32.817456],[-83.63848,32.817579],[-83.638856,32.817812]]},"id":"8a44c0b1a40ffff-17def96f08c6f2ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639555,32.818246]},"id":"8f44c0b1a4465b6-17dff6fe2d73af43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4465b6-17dff6fe2d73af43","8f44c0b1a409b58-17bef8b30f6e10b4"]},"geometry":{"type":"LineString","coordinates":[[-83.638856,32.817812],[-83.639465,32.81816],[-83.639555,32.818246]]},"id":"8944c0b1a47ffff-17bff7d3c4aacdef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400105,32.8185261]},"id":"8f44c0b1a440c82-13fef5e179500aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4465b6-17dff6fe2d73af43","8f44c0b1a440c82-13fef5e179500aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.639555,32.818246],[-83.6400105,32.8185261]]},"id":"8944c0b1a47ffff-13b7f66fdda50fe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640527,32.818852]},"id":"8f44c0b1a441d4b-13d6f49ea552a471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a441d4b-13d6f49ea552a471","8f44c0b1a440c82-13fef5e179500aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.6400105,32.8185261],[-83.640038,32.818543000000005],[-83.640527,32.818852]]},"id":"8a44c0b1a447fff-13f6f53ff90c65b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73084,32.906715000000005]},"id":"8f44c0a2c653293-17def82103c2267e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730587,32.908248]},"id":"8f44c0a289b2b09-139718bf29a40ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a289b2b09-139718bf29a40ed0","8f44c0a2c653293-17def82103c2267e"]},"geometry":{"type":"LineString","coordinates":[[-83.73084,32.906715000000005],[-83.73079600000001,32.907609],[-83.73078500000001,32.90776],[-83.73075700000001,32.907874],[-83.730705,32.908011],[-83.730587,32.908248]]},"id":"8844c0a2c7fffff-13b73849bef26c06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73038100000001,32.908715]},"id":"8f44c0a28994aa3-17bef93feb3e3be4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28994aa3-17bef93feb3e3be4","8f44c0a289b2b09-139718bf29a40ed0"]},"geometry":{"type":"LineString","coordinates":[[-83.730587,32.908248],[-83.730511,32.908433],[-83.73038100000001,32.908715]]},"id":"8944c0a289bffff-179f98fe05537f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65630900000001,32.800525]},"id":"8f44c0b1e3104d9-179eee16e3347c0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656304,32.799324]},"id":"8f44c0b1e04d730-139fce1a0ee930f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e04d730-139fce1a0ee930f6","8f44c0b1e3104d9-179eee16e3347c0c"]},"geometry":{"type":"LineString","coordinates":[[-83.65630900000001,32.800525],[-83.656304,32.799324]]},"id":"8844c0b1e3fffff-1396de187e4bf229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656278,32.798735]},"id":"8f44c0b1e06a25a-13bfee2a4b3a763e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e04d730-139fce1a0ee930f6","8f44c0b1e06a25a-13bfee2a4b3a763e"]},"geometry":{"type":"LineString","coordinates":[[-83.656304,32.799324],[-83.656288,32.799099000000005],[-83.65629,32.798764000000006],[-83.656278,32.798735]]},"id":"8944c0b1e07ffff-13f6de21e7109c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6383541,32.816218]},"id":"8f44c0b1a405b04-13def9ecb33af707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63898800000001,32.816566]},"id":"8f44c0b1a4280eb-13b7f86083dee1ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4280eb-13b7f86083dee1ca","8f44c0b1a405b04-13def9ecb33af707"]},"geometry":{"type":"LineString","coordinates":[[-83.6383541,32.816218],[-83.63898800000001,32.816566]]},"id":"8a44c0b1a42ffff-13d7f926a8137e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63961,32.816924]},"id":"8f44c0b1a474d14-1797f6dbca83a1c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4280eb-13b7f86083dee1ca","8f44c0b1a474d14-1797f6dbca83a1c3"]},"geometry":{"type":"LineString","coordinates":[[-83.63898800000001,32.816566],[-83.63961,32.816924]]},"id":"8844c0b1a5fffff-17b7f79e217433d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639913,32.817079]},"id":"8f44c0b1a474b26-17f6f61e67023950"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a474d14-1797f6dbca83a1c3","8f44c0b1a474b26-17f6f61e67023950"]},"geometry":{"type":"LineString","coordinates":[[-83.63961,32.816924],[-83.639913,32.817079]]},"id":"8b44c0b1a474fff-17d7f67d14edef1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.770295,32.877907]},"id":"8f44c0b50353548-13f7f7cda60fd589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50354089-17fdb714a358a257","8f44c0b50353548-13f7f7cda60fd589"]},"geometry":{"type":"LineString","coordinates":[[-83.770295,32.877907],[-83.770325,32.877618000000005],[-83.77034,32.877539],[-83.770364,32.877466000000005],[-83.77039900000001,32.877390000000005],[-83.77059100000001,32.877096]]},"id":"8a44c0b50357fff-13fff78e773ce153"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50354089-17fdb714a358a257","8f44c0b50a9c084-1797b9bca941733f"]},"geometry":{"type":"LineString","coordinates":[[-83.77059100000001,32.877096],[-83.77104100000001,32.876596],[-83.77135700000001,32.876247],[-83.771482,32.876083],[-83.771557,32.875957],[-83.77162700000001,32.875822],[-83.77167800000001,32.875684],[-83.77169400000001,32.875607],[-83.771704,32.875459],[-83.77170100000001,32.875324],[-83.77168400000001,32.875152],[-83.77163900000001,32.87489],[-83.771628,32.874755],[-83.77162700000001,32.874692],[-83.771635,32.874585],[-83.77169,32.874311],[-83.771827,32.87399],[-83.771859,32.873899],[-83.77188100000001,32.873795],[-83.77189200000001,32.873719],[-83.771894,32.87363],[-83.771883,32.873531],[-83.77184600000001,32.873413],[-83.7718,32.873316],[-83.77173300000001,32.873227],[-83.771658,32.873145],[-83.77149100000001,32.873019],[-83.77138400000001,32.872963],[-83.77123,32.872911],[-83.771012,32.872874],[-83.770841,32.872853],[-83.770176,32.872805],[-83.76989,32.872791],[-83.769705,32.872802],[-83.769503,32.872836]]},"id":"8744c0b50ffffff-13f7f591f8bac588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76912,32.872999]},"id":"8f44c0b50a9e05e-17fdfaac083fac21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50a9e05e-17fdfaac083fac21","8f44c0b50a9c084-1797b9bca941733f"]},"geometry":{"type":"LineString","coordinates":[[-83.769503,32.872836],[-83.76934100000001,32.872889],[-83.76924000000001,32.872931],[-83.76912,32.872999]]},"id":"8a44c0b50a9ffff-17d5ba36bb701933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5006995b-17d7bbd442ae4d8b","8f44c0b50a9e05e-17fdfaac083fac21"]},"geometry":{"type":"LineString","coordinates":[[-83.76912,32.872999],[-83.768935,32.873116],[-83.768825,32.873201],[-83.768646,32.873348]]},"id":"8744c0b50ffffff-17f5bb434be7346a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5006995b-17d7bbd442ae4d8b","8f44c0b50048892-17fdbeddc83e5b01"]},"geometry":{"type":"LineString","coordinates":[[-83.768646,32.873348],[-83.768315,32.873638],[-83.768209,32.873714],[-83.768005,32.873832],[-83.767728,32.873928],[-83.767402,32.873997]]},"id":"8944c0b5007ffff-17dfbd422e676021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5005934a-139fc0d304898c18","8f44c0b50048892-17fdbeddc83e5b01"]},"geometry":{"type":"LineString","coordinates":[[-83.767402,32.873997],[-83.767097,32.874077],[-83.76698,32.874122],[-83.766839,32.874198],[-83.76672400000001,32.874308],[-83.766666,32.87438],[-83.76660000000001,32.874494]]},"id":"8944c0b5007ffff-13dffff3e19cf043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.765923,32.876358]},"id":"8f44c0b50383811-17bfc27a276a32b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5005934a-139fc0d304898c18","8f44c0b50383811-17bfc27a276a32b5"]},"geometry":{"type":"LineString","coordinates":[[-83.76660000000001,32.874494],[-83.76655500000001,32.874809],[-83.766526,32.875379],[-83.766503,32.875579],[-83.766496,32.875602],[-83.76645,32.875765],[-83.766373,32.875898],[-83.766277,32.876013],[-83.766191,32.876106],[-83.765923,32.876358]]},"id":"8844c0b503fffff-139fc14aa3daa93f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643967,32.824661]},"id":"8f44c0b1a6748c5-17f7ec38aa3837c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6748c5-17f7ec38aa3837c7","8f44c0b1a758d60-17f6eb00c7022bd6"]},"geometry":{"type":"LineString","coordinates":[[-83.643967,32.824661],[-83.644153,32.824404],[-83.64446600000001,32.824013]]},"id":"8844c0b1a7fffff-17befb9f1d302aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64494900000001,32.823431]},"id":"8f44c0b1a742a59-17f6e9d2e7b775bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a742a59-17f6e9d2e7b775bd","8f44c0b1a758d60-17f6eb00c7022bd6"]},"geometry":{"type":"LineString","coordinates":[[-83.64446600000001,32.824013],[-83.64494900000001,32.823431]]},"id":"8944c0b1a77ffff-17beea69d2fdca71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718743,32.806488]},"id":"8f44c0b0e386124-139735a9a2841868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e386124-139735a9a2841868","8f44c0b0e05e49e-17d7362068c1570c"]},"geometry":{"type":"LineString","coordinates":[[-83.718743,32.806488],[-83.718776,32.805134],[-83.71875700000001,32.804948],[-83.718736,32.804834],[-83.71867900000001,32.804707],[-83.718613,32.804603],[-83.718553,32.804533]]},"id":"8744c0b0effffff-13b735ab0549e6fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e0ec0ca-17f6b786841968ef","8f44c0b0e05e49e-17d7362068c1570c"]},"geometry":{"type":"LineString","coordinates":[[-83.718553,32.804533],[-83.71846400000001,32.804474],[-83.718413,32.804454],[-83.718265,32.804411],[-83.718181,32.804391],[-83.71811000000001,32.804383],[-83.71798000000001,32.804385]]},"id":"8844c0b0e1fffff-179f76ce06ce0385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175225,32.8046183]},"id":"8f44c0b0e0ea922-179678a4745ea58d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e0ea922-179678a4745ea58d","8f44c0b0e0ec0ca-17f6b786841968ef"]},"geometry":{"type":"LineString","coordinates":[[-83.71798000000001,32.804385],[-83.71786,32.804433],[-83.7175225,32.8046183]]},"id":"8a44c0b0e0effff-17be381719be7ce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66272000000001,32.828302]},"id":"8f44c0b1bc4315a-13defe70066d68fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc4cd6c-13fffc784435af6f","8f44c0b1bc4315a-13defe70066d68fe"]},"geometry":{"type":"LineString","coordinates":[[-83.66272000000001,32.828302],[-83.663526,32.828338]]},"id":"8944c0b1bc7ffff-13f6bd742ac8746c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66391200000001,32.828356]},"id":"8f44c0b1bc6b194-13febb870723db73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc4cd6c-13fffc784435af6f","8f44c0b1bc6b194-13febb870723db73"]},"geometry":{"type":"LineString","coordinates":[[-83.663526,32.828338],[-83.66391200000001,32.828356]]},"id":"8944c0b1bc7ffff-13f6fbffa98397bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66438120000001,32.8282796]},"id":"8f44c0b1bc69568-13defa61cf0a74b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc69568-13defa61cf0a74b6","8f44c0b1bc6b194-13febb870723db73"]},"geometry":{"type":"LineString","coordinates":[[-83.66391200000001,32.828356],[-83.66438120000001,32.8282796]]},"id":"8a44c0b1bc6ffff-13f6baf464696bc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63655,32.848582]},"id":"8f44c0a346e9422-13dffe5449d3342a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6372499,32.8475965]},"id":"8f44c0a346515a9-17f7fc9edc20d904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346e9422-13dffe5449d3342a","8f44c0a346515a9-17f7fc9edc20d904"]},"geometry":{"type":"LineString","coordinates":[[-83.63655,32.848582],[-83.63672100000001,32.84836],[-83.6367949,32.848275900000004],[-83.637009,32.848014],[-83.637144,32.847824],[-83.6372499,32.8475965]]},"id":"8844c0a347fffff-13b6fd6c0e23d7c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34651511-17f7fc992e8d0a6b","8f44c0a346515a9-17f7fc9edc20d904"]},"geometry":{"type":"LineString","coordinates":[[-83.6372499,32.8475965],[-83.637259,32.847577]]},"id":"8c44c0a346515ff-17fffc9c08805dcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68238500000001,32.797189]},"id":"8f44c0b1c356b0e-17f7ae6d61b64add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c356b0e-17f7ae6d61b64add","8f44c0b1c3ad24b-13dfb46dab977022"]},"geometry":{"type":"LineString","coordinates":[[-83.679927,32.796357],[-83.679878,32.796394],[-83.679844,32.796439],[-83.679826,32.79649],[-83.67981300000001,32.79656],[-83.679809,32.796734],[-83.67980800000001,32.796908],[-83.67982,32.796965],[-83.679844,32.797015],[-83.67988100000001,32.797054],[-83.67992100000001,32.797086],[-83.67997600000001,32.797119],[-83.680046,32.79714],[-83.680126,32.797148],[-83.68238500000001,32.797189]]},"id":"8844c0b1c3fffff-179fd23d5eeda1e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685512,32.797237]},"id":"8f44c0b1dd93480-1797a6cb042d2e43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd93480-1797a6cb042d2e43","8f44c0b1c356b0e-17f7ae6d61b64add"]},"geometry":{"type":"LineString","coordinates":[[-83.68238500000001,32.797189],[-83.685512,32.797237]]},"id":"8744c0b1cffffff-17f6aa9c303b70f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd1a42a-17977dd0e20cca2e","8f44c0b1dd93480-1797a6cb042d2e43"]},"geometry":{"type":"LineString","coordinates":[[-83.685512,32.797237],[-83.68606600000001,32.79724],[-83.686345,32.797202],[-83.689189,32.79724]]},"id":"8844c0b1ddfffff-17fec24e7f671c6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd7574a-17f774b00924f613","8f44c0b1dd1a42a-17977dd0e20cca2e"]},"geometry":{"type":"LineString","coordinates":[[-83.689189,32.79724],[-83.68961,32.797251],[-83.690437,32.797262],[-83.6910376,32.797279700000004],[-83.691049,32.79728],[-83.6912978,32.7972976],[-83.6913883,32.797304000000004],[-83.69140200000001,32.797305],[-83.69175270000001,32.797348],[-83.691997,32.797378],[-83.69225580000001,32.7973982],[-83.69243300000001,32.797412],[-83.6924972,32.7974125],[-83.6927302,32.7974144],[-83.69292800000001,32.797416000000005]]},"id":"8844c0b1ddfffff-17bff93fc5c0460f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69592800000001,32.796433]},"id":"8f44c0b1d9b0913-139eed5d0f8ba258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd7574a-17f774b00924f613","8f44c0b1d9b0913-139eed5d0f8ba258"]},"geometry":{"type":"LineString","coordinates":[[-83.69292800000001,32.797416000000005],[-83.69467,32.797429],[-83.69551600000001,32.797431],[-83.695599,32.797418],[-83.695672,32.797399],[-83.69572500000001,32.797373],[-83.69578800000001,32.797324],[-83.69585500000001,32.797246],[-83.69590500000001,32.797154],[-83.69591700000001,32.797103],[-83.69592200000001,32.796985],[-83.69592800000001,32.796433]]},"id":"8744c0b1dffffff-17b670407c70eafc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e556cc6-17f7e949be80874f","8f44c0b1e55658d-179fe98cee7306be"]},"geometry":{"type":"LineString","coordinates":[[-83.645061,32.793973],[-83.64516850000001,32.7939184]]},"id":"8b44c0b1e556fff-17fef96b53b8bedc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e556cc6-17f7e949be80874f","8f44c0b1ecd978a-13d7e4202fea02b7"]},"geometry":{"type":"LineString","coordinates":[[-83.64516850000001,32.7939184],[-83.647283,32.792844]]},"id":"8844c0b1e5fffff-1397e6b4e3d3fc6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ecd978a-13d7e4202fea02b7","8f44c0b1ece9d55-17fefeda25d85dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.647283,32.792844],[-83.647411,32.792783],[-83.647968,32.792498],[-83.64826400000001,32.792354],[-83.64906,32.791943],[-83.649207,32.791855000000005],[-83.649443,32.791703000000005]]},"id":"8944c0b1ecfffff-13fff17736a322ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64962,32.791579]},"id":"8f44c0b1eced399-17b6fe6b89cfd298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eced399-17b6fe6b89cfd298","8f44c0b1ece9d55-17fefeda25d85dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.649443,32.791703000000005],[-83.64962,32.791579]]},"id":"8a44c0b1eceffff-17d7fea2d4a565fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eced399-17b6fe6b89cfd298","8f44c0b1ec51869-17d7dc8b8dd0caf0"]},"geometry":{"type":"LineString","coordinates":[[-83.64962,32.791579],[-83.64986400000001,32.79137],[-83.64992380000001,32.791314],[-83.6499531,32.791286500000005],[-83.650101,32.791148],[-83.65025200000001,32.790985],[-83.650388,32.790822]]},"id":"8844c0b1edfffff-17dedd734a1a417c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651559,32.789111000000005]},"id":"8f44c0b1ed5962b-13bef9afab77a5c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ec51869-17d7dc8b8dd0caf0","8f44c0b1ed5962b-13bef9afab77a5c3"]},"geometry":{"type":"LineString","coordinates":[[-83.650388,32.790822],[-83.650597,32.790529],[-83.65084200000001,32.790154],[-83.65119800000001,32.789624],[-83.651559,32.789111000000005]]},"id":"8844c0b1edfffff-13d6fb1e83f5c618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65231,32.78785]},"id":"8f44c0b1ed41c29-1796d7da422bb8c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ed41c29-1796d7da422bb8c2","8f44c0b1ed5962b-13bef9afab77a5c3"]},"geometry":{"type":"LineString","coordinates":[[-83.651559,32.789111000000005],[-83.651854,32.78867],[-83.65212000000001,32.788223],[-83.65231,32.78785]]},"id":"8944c0b1ed7ffff-17b6d8bad8576986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652697,32.786579]},"id":"8f44c0b1ed60c44-13fff6e868b1e901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ed60c44-13fff6e868b1e901","8f44c0b1ed41c29-1796d7da422bb8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65231,32.78785],[-83.65234500000001,32.787746],[-83.65244600000001,32.787492],[-83.65258700000001,32.787073],[-83.65264,32.78685],[-83.652697,32.786579]]},"id":"8944c0b1ed7ffff-179ef75442561d1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652969,32.785283]},"id":"8f44c0b116cecf2-17d7f63e678d1836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ed60c44-13fff6e868b1e901","8f44c0b116cecf2-17d7f63e678d1836"]},"geometry":{"type":"LineString","coordinates":[[-83.652697,32.786579],[-83.652907,32.785553],[-83.652969,32.785283]]},"id":"8744c0b1effffff-13f6d695011bc959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653351,32.784003000000006]},"id":"8f44c0b116e3cc4-17b7f54fa537543f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b116e3cc4-17b7f54fa537543f","8f44c0b116cecf2-17d7f63e678d1836"]},"geometry":{"type":"LineString","coordinates":[[-83.652969,32.785283],[-83.653052,32.784937],[-83.653142,32.784605],[-83.653351,32.784003000000006]]},"id":"8944c0b116fffff-17bff5d045dd4f7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b116e3cc4-17b7f54fa537543f","8f44c0b1160a964-13d6f3b6ea154628"]},"geometry":{"type":"LineString","coordinates":[[-83.653351,32.784003000000006],[-83.653508,32.783627],[-83.653749,32.783126],[-83.65400500000001,32.782621]]},"id":"8844c0b117fffff-13fef489d387236a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65412900000001,32.782345]},"id":"8f44c0b1160eb18-13b7f3696a648a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1160eb18-13b7f3696a648a52","8f44c0b1160a964-13d6f3b6ea154628"]},"geometry":{"type":"LineString","coordinates":[[-83.65400500000001,32.782621],[-83.65412900000001,32.782345]]},"id":"8b44c0b1160efff-13fff390249a5e2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654419,32.7817369]},"id":"8f44c0b1162acd5-17bfd2b42d103643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1160eb18-13b7f3696a648a52","8f44c0b1162acd5-17bfd2b42d103643"]},"geometry":{"type":"LineString","coordinates":[[-83.65412900000001,32.782345],[-83.654166,32.782265],[-83.654419,32.7817369]]},"id":"8944c0b1163ffff-17f7f30f1dff0111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1162100b-17ded1ccef4c0923","8f44c0b1162acd5-17bfd2b42d103643"]},"geometry":{"type":"LineString","coordinates":[[-83.654419,32.7817369],[-83.654532,32.781501],[-83.65478900000001,32.780996]]},"id":"8944c0b1163ffff-17d7f241b41d97c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624516,32.8364714]},"id":"8f44c0a36953222-17dfbbb581ddf774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36951554-13973b1b1bd4b288","8f44c0a36953222-17dfbbb581ddf774"]},"geometry":{"type":"LineString","coordinates":[[-83.62476310000001,32.8361778],[-83.624516,32.8364714]]},"id":"8a44c0a36957fff-13fffb68489fea84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3682d833-17b73c00e1989d11","8f44c0a36953222-17dfbbb581ddf774"]},"geometry":{"type":"LineString","coordinates":[[-83.624516,32.8364714],[-83.62439540000001,32.836614700000005]]},"id":"8944c0a3697ffff-17f77bdb3ba54e9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3682d014-17ffbc49a40eaa61","8f44c0a3682d833-17b73c00e1989d11"]},"geometry":{"type":"LineString","coordinates":[[-83.62439540000001,32.836614700000005],[-83.624279,32.836753]]},"id":"8b44c0a3682dfff-17df7c2540ff70df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623745,32.837378]},"id":"8f44c0a3682b3a6-17975d9766be45dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3682d014-17ffbc49a40eaa61","8f44c0a3682b3a6-17975d9766be45dd"]},"geometry":{"type":"LineString","coordinates":[[-83.624279,32.836753],[-83.623745,32.837378]]},"id":"8a44c0a3682ffff-17bffcf080f43adf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62324500000001,32.838003]},"id":"8f44c0a36808359-1397fecfebc7923b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36808359-1397fecfebc7923b","8f44c0a3682b3a6-17975d9766be45dd"]},"geometry":{"type":"LineString","coordinates":[[-83.623745,32.837378],[-83.62324500000001,32.838003]]},"id":"8944c0a3683ffff-17d79e33ae5bd542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3680b8eb-1397df313fdbb181","8f44c0a36808359-1397fecfebc7923b"]},"geometry":{"type":"LineString","coordinates":[[-83.62324500000001,32.838003],[-83.6230893,32.838206]]},"id":"8a44c0a3680ffff-13d75f0096c64e93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6227456,32.838654000000005]},"id":"8f44c0a368e5562-139fe00807ac807c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3680b8eb-1397df313fdbb181","8f44c0a368e5562-139fe00807ac807c"]},"geometry":{"type":"LineString","coordinates":[[-83.6230893,32.838206],[-83.6227456,32.838654000000005]]},"id":"8844c0a369fffff-1397df9ca41979af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673237,32.744573]},"id":"8f44c0b332dbadb-13fea4c2e2d0c5dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1592b0e4-13f7e8590420b92e","8f44c0b332dbadb-13fea4c2e2d0c5dd"]},"geometry":{"type":"LineString","coordinates":[[-83.673237,32.744573],[-83.673012,32.744539],[-83.67228200000001,32.74445],[-83.671768,32.744383]]},"id":"8844c0b159fffff-13b7f68dd071b64a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67082,32.744332]},"id":"8f44c0b159016c5-13d7aaa9846051da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1592b0e4-13f7e8590420b92e","8f44c0b159016c5-13d7aaa9846051da"]},"geometry":{"type":"LineString","coordinates":[[-83.671768,32.744383],[-83.670986,32.744287],[-83.670896,32.744295],[-83.67085,32.74431],[-83.67082,32.744332]]},"id":"8944c0b1593ffff-13d7f983dd3463a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66776800000001,32.849787]},"id":"8f44c0a3586dcdb-17def21d057ab6a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667298,32.850327]},"id":"8f44c0a3586b106-179ef342c03aae6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3586b106-179ef342c03aae6d","8f44c0a3586dcdb-17def21d057ab6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.66776800000001,32.849787],[-83.667544,32.850142000000005],[-83.667298,32.850327]]},"id":"8a44c0a3586ffff-1797b2a12004e72a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3586b106-179ef342c03aae6d","8f44c0a35baec60-13fff5fce822ef65"]},"geometry":{"type":"LineString","coordinates":[[-83.667298,32.850327],[-83.66708700000001,32.850423],[-83.666972,32.85052],[-83.666939,32.850566],[-83.666905,32.850701],[-83.6669,32.850809000000005],[-83.666865,32.851132],[-83.66682800000001,32.851322],[-83.66677100000001,32.851528],[-83.666718,32.851661],[-83.666617,32.85188],[-83.666526,32.852050000000006],[-83.666374,32.852279],[-83.66622100000001,32.852466],[-83.66618100000001,32.85253]]},"id":"8744c0a35ffffff-13bfb49dfba1524c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66583800000001,32.852845]},"id":"8f44c0a35b85323-17d6b6d3459baede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35baec60-13fff5fce822ef65","8f44c0a35b85323-17d6b6d3459baede"]},"geometry":{"type":"LineString","coordinates":[[-83.66618100000001,32.85253],[-83.66601100000001,32.852673],[-83.665879,32.852776],[-83.66583800000001,32.852845]]},"id":"8944c0a35bbffff-13dfb66d048f8241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35b9855a-17befa61e6ed617f","8f44c0a35b85323-17d6b6d3459baede"]},"geometry":{"type":"LineString","coordinates":[[-83.66583800000001,32.852845],[-83.665557,32.852973],[-83.664731,32.853417],[-83.66463300000001,32.85349],[-83.66453,32.853591],[-83.664437,32.853709],[-83.664381,32.853834]]},"id":"8944c0a35bbffff-17dfb8bed8089e4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662479,32.846699]},"id":"8f44c0a35832763-17d6ff06aec4b440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35832763-17d6ff06aec4b440","8f44c0a35822a11-17debb55ab7fb3e3"]},"geometry":{"type":"LineString","coordinates":[[-83.662479,32.846699],[-83.66399100000001,32.846717000000005]]},"id":"8944c0a3583ffff-17debd2e2175430f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665165,32.846657]},"id":"8f44c0a359528b4-17beb877ec595c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a359528b4-17beb877ec595c66","8f44c0a35822a11-17debb55ab7fb3e3"]},"geometry":{"type":"LineString","coordinates":[[-83.66399100000001,32.846717000000005],[-83.664304,32.846702],[-83.664569,32.846699],[-83.66482400000001,32.846687],[-83.664962,32.846674],[-83.665035,32.846676],[-83.665119,32.846668],[-83.665165,32.846657]]},"id":"8844c0a359fffff-17bfb9e6368d48f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666894,32.84689]},"id":"8f44c0a359400d3-17bef43f4c25cca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a359528b4-17beb877ec595c66","8f44c0a359400d3-17bef43f4c25cca4"]},"geometry":{"type":"LineString","coordinates":[[-83.665165,32.846657],[-83.66523600000001,32.846646],[-83.665352,32.846657],[-83.665491,32.846682],[-83.66584,32.846728],[-83.666093,32.846767],[-83.666325,32.846795],[-83.666604,32.846835],[-83.666894,32.84689]]},"id":"8944c0a3597ffff-17f7b65b02b26650"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684736,32.88186]},"id":"8f44c0a23533b8b-139e88b009e818e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68776600000001,32.88362]},"id":"8f44c0a23575066-17f6814a4031ed94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23533b8b-139e88b009e818e8","8f44c0a23575066-17f6814a4031ed94"]},"geometry":{"type":"LineString","coordinates":[[-83.684736,32.88186],[-83.685422,32.882328],[-83.68555900000001,32.882436000000006],[-83.68568400000001,32.882551],[-83.685832,32.882697],[-83.685961,32.882879],[-83.68611800000001,32.883117],[-83.686181,32.883195],[-83.68635090000001,32.8833573],[-83.6864312,32.8834188],[-83.68653900000001,32.883478000000004],[-83.6866973,32.8835234],[-83.6868724,32.883553],[-83.68709000000001,32.883574],[-83.68741200000001,32.883606],[-83.68762100000001,32.883622],[-83.68776600000001,32.88362]]},"id":"8844c0a235fffff-17d7f530e39d6b2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23ccb2a1-17f67dd4a225ba40","8f44c0a23575066-17f6814a4031ed94"]},"geometry":{"type":"LineString","coordinates":[[-83.68776600000001,32.88362],[-83.687889,32.883589],[-83.68812600000001,32.883525],[-83.688483,32.88337],[-83.68865100000001,32.883346],[-83.688744,32.883346],[-83.68892100000001,32.883356],[-83.689054,32.88338],[-83.689183,32.88344]]},"id":"8744c0a23ffffff-17f67f905f85f73a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68678200000001,32.880916]},"id":"8f44c0a23c8b843-13de83b141da8d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23ccb2a1-17f67dd4a225ba40","8f44c0a23c8b843-13de83b141da8d48"]},"geometry":{"type":"LineString","coordinates":[[-83.689183,32.88344],[-83.689351,32.883452000000005],[-83.689569,32.883446],[-83.68979,32.8834],[-83.689971,32.883316],[-83.69004100000001,32.883268],[-83.690146,32.883156],[-83.69023700000001,32.883007],[-83.69026500000001,32.882937000000005],[-83.690286,32.882866],[-83.690297,32.882706],[-83.69025900000001,32.882523],[-83.690183,32.882368],[-83.69006300000001,32.882247],[-83.689907,32.882145],[-83.689749,32.882092],[-83.689642,32.882067],[-83.68943300000001,32.882042000000006],[-83.689154,32.882075],[-83.68840300000001,32.882291],[-83.68824500000001,32.882325],[-83.68808200000001,32.882345],[-83.687995,32.882348],[-83.68777100000001,32.882329],[-83.687483,32.882238],[-83.68722100000001,32.882089],[-83.687081,32.881982],[-83.687008,32.881895],[-83.686904,32.881739],[-83.686867,32.881646],[-83.686835,32.881542],[-83.686813,32.881433],[-83.68678200000001,32.880916]]},"id":"8744c0a23ffffff-17d7fefdd9a8bafa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.559369,32.826366]},"id":"8f44c0b8129915b-139ffac26a61babb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8129915b-139ffac26a61babb","8f44c0b8e914824-179fbeb14810b3a9"]},"geometry":{"type":"LineString","coordinates":[[-83.559369,32.826366],[-83.559189,32.826462],[-83.557758,32.827364]]},"id":"8744c0b81ffffff-17d7bcbbe3ca1981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.557433,32.827561]},"id":"8f44c0b8e9144e2-179fbf7c67a08fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e914824-179fbeb14810b3a9","8f44c0b8e9144e2-179fbf7c67a08fd1"]},"geometry":{"type":"LineString","coordinates":[[-83.557758,32.827364],[-83.557433,32.827561]]},"id":"8b44c0b8e914fff-17dfbf16dbe78658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.537608,32.805509]},"id":"8f44c0b80708cda-13b7efe30bda298a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b80708cda-13b7efe30bda298a","8f44c0b806266c2-13f7f28741a2dcf3"]},"geometry":{"type":"LineString","coordinates":[[-83.537608,32.805509],[-83.53722,32.805844],[-83.536754,32.806229],[-83.53652600000001,32.806426]]},"id":"8844c0b807fffff-13d7f134c5d7506c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5352905,32.8074832]},"id":"8f44c0b8061568b-1797f58b728ddcfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8061568b-1797f58b728ddcfb","8f44c0b806266c2-13f7f28741a2dcf3"]},"geometry":{"type":"LineString","coordinates":[[-83.53652600000001,32.806426],[-83.5352905,32.8074832]]},"id":"8944c0b8063ffff-17bff4096714ad83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b064c6019-139e99ca20212439","8f44c0b065899b5-13bffa7ecefd7181"]},"geometry":{"type":"LineString","coordinates":[[-83.677442,32.746547],[-83.677446,32.746675],[-83.677442,32.747995],[-83.677435,32.748342],[-83.67743200000001,32.748908],[-83.677435,32.749052],[-83.677448,32.749145],[-83.677485,32.749269000000005],[-83.67751700000001,32.749349],[-83.67760200000001,32.749502],[-83.67767,32.749678],[-83.67770300000001,32.749819],[-83.67773100000001,32.750011],[-83.67773100000001,32.750352]]},"id":"8844c0b065fffff-17ffba56869b8e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b064c6019-139e99ca20212439","8f44c0b15b66c71-17b6fa292ab43f21"]},"geometry":{"type":"LineString","coordinates":[[-83.67773100000001,32.750352],[-83.677673,32.751175],[-83.67757900000001,32.752263]]},"id":"8744c0b06ffffff-17dff9f7504fd81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d25925-13ffb089ec4d6548","8f44c0b18d20183-17b6b236ab33fa32"]},"geometry":{"type":"LineString","coordinates":[[-83.668413,32.800072],[-83.668227,32.800162],[-83.667831,32.80034],[-83.667786,32.800354],[-83.667727,32.800365]]},"id":"8844c0b1c7fffff-13def15e00902823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d20183-17b6b236ab33fa32","8f44c0b18d20471-17d7f26a86c446a1"]},"geometry":{"type":"LineString","coordinates":[[-83.667727,32.800365],[-83.66764400000001,32.800418]]},"id":"8b44c0b18d20fff-17b6b2509d6f08d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6d33ab-17deef00c8570431","8f44c0b18d20471-17d7f26a86c446a1"]},"geometry":{"type":"LineString","coordinates":[[-83.66764400000001,32.800418],[-83.66758,32.800477],[-83.667529,32.800544],[-83.667485,32.800629],[-83.667472,32.800713],[-83.667451,32.801341],[-83.667471,32.801405],[-83.6675,32.801465],[-83.667528,32.801504],[-83.667607,32.801564],[-83.667662,32.801594],[-83.66772900000001,32.801614],[-83.66778500000001,32.801626],[-83.667834,32.801629000000005],[-83.66788700000001,32.801627],[-83.667939,32.801616],[-83.668012,32.801592],[-83.668315,32.801411],[-83.668446,32.801341],[-83.668678,32.801231],[-83.669042,32.801066]]},"id":"8744c0b18ffffff-17beb1a5ca15c337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670868,32.801616]},"id":"8f44c0b1c6c8525-17b6aa8b8b18ed02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6c8525-17b6aa8b8b18ed02","8f44c0b1c6d33ab-17deef00c8570431"]},"geometry":{"type":"LineString","coordinates":[[-83.669042,32.801066],[-83.66935500000001,32.800928],[-83.669881,32.800689000000006],[-83.670034,32.800634],[-83.670119,32.800617],[-83.67022300000001,32.800614],[-83.670316,32.80062],[-83.670409,32.800638],[-83.6705,32.800663],[-83.670572,32.800699],[-83.67066000000001,32.800763],[-83.670713,32.800810000000006],[-83.67076200000001,32.800865],[-83.670803,32.800928],[-83.670833,32.800992],[-83.67085300000001,32.801059],[-83.670862,32.801122],[-83.670868,32.801616]]},"id":"8944c0b1c6fffff-17f7fc35bb6adc00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645038,32.822665]},"id":"8f44c0b1a7712e4-1397e99b487f1f7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7712e4-1397e99b487f1f7e","8f44c0b1a7626b0-13bfe916c501e206"]},"geometry":{"type":"LineString","coordinates":[[-83.645038,32.822665],[-83.64525,32.822501]]},"id":"8944c0b1a77ffff-13f6e9590c179572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64586200000001,32.822057]},"id":"8f44c0b1a760d0c-139fe7984fb23e16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7626b0-13bfe916c501e206","8f44c0b1a760d0c-139fe7984fb23e16"]},"geometry":{"type":"LineString","coordinates":[[-83.64525,32.822501],[-83.64572600000001,32.822152],[-83.64586200000001,32.822057]]},"id":"8a44c0b1a767fff-13b7e8581fd0ba51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64612600000001,32.821849]},"id":"8f44c0b1a764149-1397e6f346a62730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a764149-1397e6f346a62730","8f44c0b1a760d0c-139fe7984fb23e16"]},"geometry":{"type":"LineString","coordinates":[[-83.64586200000001,32.822057],[-83.64612600000001,32.821849]]},"id":"8a44c0b1a767fff-13dee745cba6bce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a764149-1397e6f346a62730","8f44c0b1a0c8291-17bee5b48e301e55"]},"geometry":{"type":"LineString","coordinates":[[-83.64612600000001,32.821849],[-83.646636,32.821466]]},"id":"8944c0b1a0fffff-139ff653e5317299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0cd466-17ffe4d7eb5573ba","8f44c0b1a0c8291-17bee5b48e301e55"]},"geometry":{"type":"LineString","coordinates":[[-83.646636,32.821466],[-83.646989,32.821193]]},"id":"8a44c0b1a0cffff-17d6f5463a5edf13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0cd466-17ffe4d7eb5573ba","8f44c0b1a0e96b5-17ffe37d039fbfcd"]},"geometry":{"type":"LineString","coordinates":[[-83.646989,32.821193],[-83.64754400000001,32.820777]]},"id":"8944c0b1a0fffff-17ffe42a7e43b803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648325,32.820238]},"id":"8f44c0b1a05e39a-17bee194e5988c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0e96b5-17ffe37d039fbfcd","8f44c0b1a05e39a-17bee194e5988c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.64754400000001,32.820777],[-83.64792200000001,32.820507],[-83.648325,32.820238]]},"id":"8844c0b1a1fffff-17dfe28a47f1b437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a05e314-179fe1692debdde7","8f44c0b1a05e39a-17bee194e5988c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.648325,32.820238],[-83.64839500000001,32.820194]]},"id":"8c44c0b1a05e3ff-179fe17f03412acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649354,32.819929]},"id":"8f44c0b1a043065-13f7ff11cbd29b8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a05e314-179fe1692debdde7","8f44c0b1a043065-13f7ff11cbd29b8e"]},"geometry":{"type":"LineString","coordinates":[[-83.64839500000001,32.820194],[-83.648751,32.819949],[-83.648863,32.819904],[-83.648953,32.819899],[-83.649354,32.819929]]},"id":"8944c0b1a07ffff-1797f04b55fc359a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d643150-13dfecb8e4e20399","8f44c0b8993655e-13ff69164dd8ed10"]},"geometry":{"type":"LineString","coordinates":[[-83.592822,32.85864],[-83.59264900000001,32.858534],[-83.592488,32.858449],[-83.59234400000001,32.858396],[-83.592184,32.858348],[-83.591847,32.858286],[-83.591333,32.858206]]},"id":"8944c0b8d67ffff-13bf6adb2463fe8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d643150-13dfecb8e4e20399","8f44c0b899b4b36-13d7ef4ce215d87b"]},"geometry":{"type":"LineString","coordinates":[[-83.591333,32.858206],[-83.59119100000001,32.858181],[-83.590996,32.858141],[-83.590846,32.858103],[-83.590754,32.858086],[-83.59069600000001,32.858086],[-83.59062800000001,32.858103],[-83.59058200000001,32.858137],[-83.590536,32.858241],[-83.59038000000001,32.85886],[-83.590277,32.859219]]},"id":"8844c0b8d7fffff-13f7fe69a0157ff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726304,32.903917]},"id":"8f44c0a2c6b1b99-13f6233404171e42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c6b1b99-13f6233404171e42","8f44c0a2c686ac0-13b66366a75ae065"]},"geometry":{"type":"LineString","coordinates":[[-83.726304,32.903917],[-83.726308,32.904107],[-83.726292,32.904183],[-83.726223,32.904423]]},"id":"8944c0a2c6bffff-1397e341f7f274bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c6805a9-13bfa3700088451c","8f44c0a2c686ac0-13b66366a75ae065"]},"geometry":{"type":"LineString","coordinates":[[-83.726223,32.904423],[-83.72620500000001,32.904549],[-83.726208,32.90462]]},"id":"8a44c0a2c687fff-13fff36dfb7ed288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c6805a9-13bfa3700088451c","8f44c0a2c69d894-1796e37fae703b07"]},"geometry":{"type":"LineString","coordinates":[[-83.726208,32.90462],[-83.726253,32.904756],[-83.72628200000001,32.904899],[-83.726291,32.905036],[-83.726276,32.905137],[-83.72623,32.905285],[-83.726183,32.905406]]},"id":"8944c0a2c6bffff-13b663537678817c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c69d894-1796e37fae703b07","8f44c0a2c69d0e8-1797e38367ce59a5"]},"geometry":{"type":"LineString","coordinates":[[-83.726183,32.905406],[-83.726177,32.905603]]},"id":"8b44c0a2c69dfff-17d67381825c611c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d26b74-17f723818c105e7c","8f44c0a2c69d0e8-1797e38367ce59a5"]},"geometry":{"type":"LineString","coordinates":[[-83.726177,32.905603],[-83.72622100000001,32.905724],[-83.72624300000001,32.905817],[-83.726264,32.90596],[-83.72626500000001,32.906056],[-83.726241,32.906167],[-83.72618,32.906373]]},"id":"8844c0a2c7fffff-1796336132e5b1d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d2634d-17ffe3af22a50dc6","8f44c0a28d26b74-17f723818c105e7c"]},"geometry":{"type":"LineString","coordinates":[[-83.72618,32.906373],[-83.726169,32.90646],[-83.726156,32.906505],[-83.72613600000001,32.906537],[-83.726107,32.906563000000006]]},"id":"8a44c0a28d27fff-17b6a38fee27e98a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58141900000001,32.859499]},"id":"8f44c0b89d841a6-1797e4ed233ef6c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.581657,32.861669]},"id":"8f44c0b89d8b685-13dfa45863abebea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d8b685-13dfa45863abebea","8f44c0b89d841a6-1797e4ed233ef6c6"]},"geometry":{"type":"LineString","coordinates":[[-83.58141900000001,32.859499],[-83.581675,32.860377],[-83.58170600000001,32.860568],[-83.581715,32.860748],[-83.581705,32.861145],[-83.581693,32.86141],[-83.581657,32.861669]]},"id":"8944c0b89dbffff-17b78465dd42a563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580994,32.863171]},"id":"8f44c0b89c8190d-17ffe5f6ca7d2046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d8b685-13dfa45863abebea","8f44c0b89c8190d-17ffe5f6ca7d2046"]},"geometry":{"type":"LineString","coordinates":[[-83.581657,32.861669],[-83.581632,32.861728],[-83.58161100000001,32.861763],[-83.581551,32.861843],[-83.58144700000001,32.86196],[-83.58117700000001,32.86222],[-83.581125,32.862288],[-83.58108,32.862361],[-83.58104200000001,32.862432000000005],[-83.581021,32.862499],[-83.581007,32.862591],[-83.58099200000001,32.862914],[-83.580994,32.863171]]},"id":"8844c0b89dfffff-1397d57565803457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.580967,32.864869]},"id":"8f44c0b89525809-139fa607adb80194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c8190d-17ffe5f6ca7d2046","8f44c0b89525809-139fa607adb80194"]},"geometry":{"type":"LineString","coordinates":[[-83.580994,32.863171],[-83.580971,32.86361],[-83.580943,32.864606],[-83.58093500000001,32.86475],[-83.580937,32.864814],[-83.580949,32.864845],[-83.580967,32.864869]]},"id":"8844c0b89dfffff-179ff60b663e676b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1b6341-1397c242c982dd3c","8f44c0b1b1b31aa-17fee227e475df55"]},"geometry":{"type":"LineString","coordinates":[[-83.661197,32.830199],[-83.661181,32.83018],[-83.66115400000001,32.829624]]},"id":"8a44c0b1b1b7fff-17def239c92d0055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661134,32.828716]},"id":"8f44c0b1bced718-13dfc24f460266c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bced718-13dfc24f460266c6","8f44c0b1b1b6341-1397c242c982dd3c"]},"geometry":{"type":"LineString","coordinates":[[-83.66115400000001,32.829624],[-83.661141,32.829568],[-83.661118,32.829206],[-83.66113,32.829003],[-83.661134,32.828716]]},"id":"8844c0b1bdfffff-13f7c251ab1c1572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66118900000001,32.827123]},"id":"8f44c0b1bc0975c-17f7e22ce4f08349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bced718-13dfc24f460266c6","8f44c0b1bc0975c-17f7e22ce4f08349"]},"geometry":{"type":"LineString","coordinates":[[-83.661134,32.828716],[-83.661153,32.828628],[-83.66119400000001,32.827858],[-83.66118900000001,32.827123]]},"id":"8844c0b1bdfffff-17fef23279c70433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b182c75-1797c1950aefa687","8f44c0b1b19cae0-13b6c1572168fb31"]},"geometry":{"type":"LineString","coordinates":[[-83.66153100000001,32.831488],[-83.661432,32.83086]]},"id":"8944c0b1b1bffff-17dfc17610fe13d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b182c75-1797c1950aefa687","8f44c0b1b1b31aa-17fee227e475df55"]},"geometry":{"type":"LineString","coordinates":[[-83.661432,32.83086],[-83.661197,32.830247],[-83.66118200000001,32.830216],[-83.661197,32.830199]]},"id":"8944c0b1b1bffff-17d7e1e4b3367edc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67459600000001,32.836399]},"id":"8f44c0b1ba53d9a-179fe1718a497ad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1ba53d9a-179fe1718a497ad8","8f44c0b1baedb96-1796e1150231d685"]},"geometry":{"type":"LineString","coordinates":[[-83.674744,32.836971000000005],[-83.67474200000001,32.836725],[-83.67473000000001,32.836658],[-83.67470200000001,32.836584],[-83.67459600000001,32.836399]]},"id":"8944c0b1ba7ffff-17deb12d00074672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1ba53d9a-179fe1718a497ad8","8f44c0b1ba562d5-13b6a18083667a6d"]},"geometry":{"type":"LineString","coordinates":[[-83.67459600000001,32.836399],[-83.674571,32.836304000000005],[-83.67457200000001,32.836029]]},"id":"8a44c0b1ba57fff-13bea17ede696a3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1ba562d5-13b6a18083667a6d","8f44c0b1ba0d452-13bee177c7d75de1"]},"geometry":{"type":"LineString","coordinates":[[-83.67457200000001,32.836029],[-83.674586,32.834983]]},"id":"8844c0b1bbfffff-13ffe17c2c29bafa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1ba2a14a-17d7a17042713e62","8f44c0b1ba0d452-13bee177c7d75de1"]},"geometry":{"type":"LineString","coordinates":[[-83.674586,32.834983],[-83.674598,32.834204]]},"id":"8944c0b1ba3ffff-17b6f17409e50b51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674626,32.833152000000005]},"id":"8f44c0b1ba21d9d-17b6a15eca61f487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1ba21d9d-17b6a15eca61f487","8f44c0b1ba2a14a-17d7a17042713e62"]},"geometry":{"type":"LineString","coordinates":[[-83.674598,32.834204],[-83.674626,32.833152000000005]]},"id":"8944c0b1ba3ffff-17fee1678c2ca1ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1ba21d9d-17b6a15eca61f487","8f44c0b1ba24300-13ffe15c40538ade"]},"geometry":{"type":"LineString","coordinates":[[-83.674626,32.833152000000005],[-83.67463000000001,32.832662]]},"id":"8a44c0b1ba27fff-1396e15d8f36974b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674628,32.831851]},"id":"8f44c0b1bb0e612-1396e15d8f1ba41a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1bb0e612-1396e15d8f1ba41a","8f44c0b1ba24300-13ffe15c40538ade"]},"geometry":{"type":"LineString","coordinates":[[-83.67463000000001,32.832662],[-83.674628,32.831851]]},"id":"8844c0b1bbfffff-1396f15ce4ca47b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1bb0089e-179fa193ebcd4a8e","8f44c0b1bb0e612-1396e15d8f1ba41a"]},"geometry":{"type":"LineString","coordinates":[[-83.674628,32.831851],[-83.67463500000001,32.831674],[-83.674541,32.83084]]},"id":"8944c0b1bb3ffff-17d6b171c21cd998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67426,32.828604]},"id":"8f44c0b1949e0f6-1397a243825f3056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1bb0089e-179fa193ebcd4a8e","8f44c0b1949e0f6-1397a243825f3056"]},"geometry":{"type":"LineString","coordinates":[[-83.674541,32.83084],[-83.67426,32.828604]]},"id":"8744c0b1bffffff-13d6e1ebb86d602e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690431,32.791277]},"id":"8f44c0b1cb69553-17f67ac8ac638cd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cb69553-17f67ac8ac638cd3","8f44c0b1ca6c373-13df7cbc03b099eb"]},"geometry":{"type":"LineString","coordinates":[[-83.690431,32.791277],[-83.69033800000001,32.79141],[-83.690274,32.791521],[-83.690229,32.79162],[-83.69019200000001,32.791722],[-83.69016500000001,32.791826],[-83.690163,32.791885],[-83.69014800000001,32.791953],[-83.690126,32.792009],[-83.69009000000001,32.79207],[-83.69005700000001,32.792111000000006],[-83.690027,32.792141],[-83.68995600000001,32.792177],[-83.68990000000001,32.792211],[-83.68984900000001,32.79225],[-83.689784,32.79231],[-83.68973600000001,32.792368],[-83.68968500000001,32.79245],[-83.689648,32.792537],[-83.68961800000001,32.792625],[-83.689586,32.792749],[-83.689566,32.792876],[-83.689559,32.793042],[-83.689566,32.793152],[-83.689583,32.793261],[-83.68961900000001,32.793404],[-83.689632,32.793695]]},"id":"8644c0b1fffffff-13defc2b462f796b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688767,32.794803]},"id":"8f44c0b1ca48824-179ffed8a3f57d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca48824-179ffed8a3f57d53","8f44c0b1ca6c373-13df7cbc03b099eb"]},"geometry":{"type":"LineString","coordinates":[[-83.689632,32.793695],[-83.689637,32.793801],[-83.689593,32.79392],[-83.689566,32.793978],[-83.68949,32.794103],[-83.689429,32.794181],[-83.689361,32.794255],[-83.68924600000001,32.794356],[-83.688767,32.794803]]},"id":"8944c0b1ca7ffff-17df7d9ca13ad786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3525dc0a-13deb926447882da","8f44c0a352e2613-13b7c04bae279b15"]},"geometry":{"type":"LineString","coordinates":[[-83.66195900000001,32.864258],[-83.662058,32.864382],[-83.662132,32.864454],[-83.662243,32.864538],[-83.66234200000001,32.864592],[-83.66247,32.864642],[-83.66252800000001,32.86466],[-83.66268500000001,32.864686],[-83.66280300000001,32.86469],[-83.66321400000001,32.864669],[-83.66349600000001,32.864662],[-83.66386700000001,32.864703],[-83.664682,32.864879],[-83.66488600000001,32.864964]]},"id":"8844c0a353fffff-13befcd6be6c0e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66718,32.864707]},"id":"8f44c0a22c9a6b3-13bff38c89e4ad88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c9a6b3-13bff38c89e4ad88","8f44c0a3525dc0a-13deb926447882da"]},"geometry":{"type":"LineString","coordinates":[[-83.66488600000001,32.864964],[-83.665007,32.865069000000005],[-83.665081,32.865181],[-83.66522,32.865412],[-83.66526800000001,32.865451],[-83.665317,32.865481],[-83.665445,32.865522],[-83.665564,32.865533],[-83.66568500000001,32.865524],[-83.665947,32.865484],[-83.66617600000001,32.865439],[-83.666363,32.865387000000005],[-83.66648400000001,32.865347],[-83.666561,32.865322],[-83.66682,32.865198],[-83.667005,32.865074],[-83.667108,32.864956],[-83.667175,32.864815],[-83.66718,32.864707]]},"id":"8744c0a22ffffff-139ff645f8e6766a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18499c81-13bfebab8b9c268b","8f44c0b1849cb98-13bfeb9aad01712c"]},"geometry":{"type":"LineString","coordinates":[[-83.6573,32.813097],[-83.65732700000001,32.812457]]},"id":"8a44c0b1849ffff-13f7eba31c37e36e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184866cd-13b6cb89cfd3209d","8f44c0b1849cb98-13bfeb9aad01712c"]},"geometry":{"type":"LineString","coordinates":[[-83.65732700000001,32.812457],[-83.65735400000001,32.811828000000006]]},"id":"8944c0b184bffff-13f7db923f40974c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6393989,32.8307708]},"id":"8f44c0a34d5c6d1-17dff75fb34591dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d5c6d1-17dff75fb34591dd","8f44c0a34d5171a-17def82e82dbe002"]},"geometry":{"type":"LineString","coordinates":[[-83.63906800000001,32.830334],[-83.6393989,32.8307708]]},"id":"8944c0a34d7ffff-17d7f7c71076fe3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d58b8e-17f7f6fbe5255ddb","8f44c0a34d5c6d1-17dff75fb34591dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6393989,32.8307708],[-83.6395586,32.8309816]]},"id":"8b44c0a34d58fff-17b7f72ddabc6b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6399817,32.831540000000004]},"id":"8f44c0a34c64524-13d6f5f377033962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d58b8e-17f7f6fbe5255ddb","8f44c0a34c64524-13d6f5f377033962"]},"geometry":{"type":"LineString","coordinates":[[-83.6395586,32.8309816],[-83.6399817,32.831540000000004]]},"id":"8944c0a34d7ffff-1796f677b3e2416f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640512,32.83224]},"id":"8f44c0a34c61909-13f6f4a8003bc40b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c64524-13d6f5f377033962","8f44c0a34c61909-13f6f4a8003bc40b"]},"geometry":{"type":"LineString","coordinates":[[-83.6399817,32.831540000000004],[-83.640512,32.83224]]},"id":"8a44c0a34c67fff-139ff54db02239f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c61909-13f6f4a8003bc40b","8f44c0a348920f0-13b7f3e73e52eeaf"]},"geometry":{"type":"LineString","coordinates":[[-83.640512,32.83224],[-83.6408205,32.8323411]]},"id":"8944c0a34c7ffff-1397f4479285de84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348920f0-13b7f3e73e52eeaf","8f44c0a34891221-13fff18465b5eaaf"]},"geometry":{"type":"LineString","coordinates":[[-83.6408205,32.8323411],[-83.6417978,32.8326614]]},"id":"8a44c0a34897fff-139ff2b5cfa0a9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64250630000001,32.832886300000006]},"id":"8f44c0a34883748-139fffc99e638763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34891221-13fff18465b5eaaf","8f44c0a34883748-139fffc99e638763"]},"geometry":{"type":"LineString","coordinates":[[-83.6417978,32.8326614],[-83.64250630000001,32.832886300000006]]},"id":"8944c0a348bffff-13d7f0a6f6eba22f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682967,32.838805]},"id":"8f44c0b196cd4e5-13ffad01abe353fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a269b552c-1396c9b22dc0bb2c","8f44c0b196cd4e5-13ffad01abe353fc"]},"geometry":{"type":"LineString","coordinates":[[-83.682967,32.838805],[-83.684323,32.838814]]},"id":"8844c0b197fffff-13fffb59eb0fc870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68569000000001,32.838818]},"id":"8f44c0a269a5d1a-1397c65bc3fcce23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a269b552c-1396c9b22dc0bb2c","8f44c0a269a5d1a-1397c65bc3fcce23"]},"geometry":{"type":"LineString","coordinates":[[-83.684323,32.838814],[-83.68569000000001,32.838818]]},"id":"8944c0a269bffff-13968806fd4296d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686797,32.838844]},"id":"8f44c0a26914045-139783a7e71f6c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a269a5d1a-1397c65bc3fcce23","8f44c0a26914045-139783a7e71f6c88"]},"geometry":{"type":"LineString","coordinates":[[-83.68569000000001,32.838818],[-83.686435,32.838828],[-83.686797,32.838844]]},"id":"8844c0a269fffff-139f9501ca108627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26933759-139782b929d58d1c","8f44c0a26914045-139783a7e71f6c88"]},"geometry":{"type":"LineString","coordinates":[[-83.686797,32.838844],[-83.687179,32.838844]]},"id":"8944c0a2693ffff-1397833089320e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685308,32.860346]},"id":"8f44c0a262c3236-1796c74a881569f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687405,32.859191]},"id":"8f44c0a26253919-13d6e22bed36bdef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262c3236-1796c74a881569f0","8f44c0a26253919-13d6e22bed36bdef"]},"geometry":{"type":"LineString","coordinates":[[-83.685308,32.860346],[-83.685709,32.859823],[-83.686014,32.859397],[-83.686288,32.859003],[-83.68637600000001,32.858897],[-83.686429,32.858856],[-83.68652800000001,32.858814],[-83.686583,32.858809],[-83.68663600000001,32.858817],[-83.68674100000001,32.858852],[-83.687405,32.859191]]},"id":"8844c0a263fffff-17bff4fccb2ccade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68900400000001,32.860172]},"id":"8f44c0a2624a84a-17b7fe4482686e9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2624a84a-17b7fe4482686e9c","8f44c0a26253919-13d6e22bed36bdef"]},"geometry":{"type":"LineString","coordinates":[[-83.687405,32.859191],[-83.68856600000001,32.859783],[-83.68881,32.85993],[-83.68900400000001,32.860172]]},"id":"8944c0a2627ffff-17d7a021178dc133"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2624a84a-17b7fe4482686e9c","8f44c0a205336c9-17fffacd5abbf7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.68900400000001,32.860172],[-83.689124,32.860208],[-83.689341,32.860315],[-83.69042350000001,32.8609023]]},"id":"8744c0a20ffffff-17977c8528fac3d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69816300000001,32.827119]},"id":"8f44c0b19b0a282-17f767e822304172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b0a282-17f767e822304172","8f44c0b19b0a119-17f667e321216ddb"]},"geometry":{"type":"LineString","coordinates":[[-83.69816300000001,32.827119],[-83.698171,32.826912]]},"id":"8b44c0b19b0afff-17b6f7e5a8f140f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69816900000001,32.825549]},"id":"8f44c0b19b00904-13b667e4640eebaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b00904-13b667e4640eebaf","8f44c0b19b0a119-17f667e321216ddb"]},"geometry":{"type":"LineString","coordinates":[[-83.698171,32.826912],[-83.69816900000001,32.825549]]},"id":"8944c0b19b3ffff-13de77e3c01d9849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698625,32.823996]},"id":"8f44c0b0a499b92-17d7e6c76097f6f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b00904-13b667e4640eebaf","8f44c0b0a499b92-17d7e6c76097f6f9"]},"geometry":{"type":"LineString","coordinates":[[-83.69816900000001,32.825549],[-83.69816800000001,32.825169],[-83.698178,32.824958],[-83.698193,32.82486],[-83.698211,32.824784],[-83.69827000000001,32.824647],[-83.698352,32.82448],[-83.698625,32.823996]]},"id":"8744c0b19ffffff-17bee791b7dafabe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69907280000001,32.8231902]},"id":"8f44c0b0a4816b1-13dfe5af87a55418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a4816b1-13dfe5af87a55418","8f44c0b0a499b92-17d7e6c76097f6f9"]},"geometry":{"type":"LineString","coordinates":[[-83.698625,32.823996],[-83.69907280000001,32.8231902]]},"id":"8944c0b0a4bffff-17dff63b728e79ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a4816b1-13dfe5af87a55418","8f44c0b0a48144a-13bf759346129b7b"]},"geometry":{"type":"LineString","coordinates":[[-83.69907280000001,32.8231902],[-83.699118,32.8231089]]},"id":"8b44c0b0a481fff-13d675a16cd84f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69932440000001,32.8227375]},"id":"8f44c0b0a485746-13d6f5124b07d9d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a485746-13d6f5124b07d9d7","8f44c0b0a48144a-13bf759346129b7b"]},"geometry":{"type":"LineString","coordinates":[[-83.699118,32.8231089],[-83.69932440000001,32.8227375]]},"id":"8a44c0b0a487fff-13b76552c832355d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699433,32.822542]},"id":"8f44c0b0a4858d0-13dee4ce64869f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a485746-13d6f5124b07d9d7","8f44c0b0a4858d0-13dee4ce64869f97"]},"geometry":{"type":"LineString","coordinates":[[-83.69932440000001,32.8227375],[-83.699433,32.822542]]},"id":"8b44c0b0a485fff-1397e4f05b4af40f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67472240000001,32.890568900000005]},"id":"8f44c0a0416eb50-13dfb122808db7de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6747048,32.890517700000004]},"id":"8f44c0a0416eb04-13bfb12d8c80cfc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416eb50-13dfb122808db7de","8f44c0a0416eb04-13bfb12d8c80cfc0"]},"geometry":{"type":"LineString","coordinates":[[-83.67472240000001,32.890568900000005],[-83.6747849,32.890574300000004],[-83.6749195,32.890499600000005],[-83.6748077,32.8903492],[-83.674734,32.8903972],[-83.6747048,32.890517700000004]]},"id":"8a44c0a0416ffff-139ff0ed7f715655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416eb50-13dfb122808db7de","8f44c0a0416eb04-13bfb12d8c80cfc0"]},"geometry":{"type":"LineString","coordinates":[[-83.6747048,32.890517700000004],[-83.67472240000001,32.890568900000005]]},"id":"8c44c0a0416ebff-13dfb12802278df9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674357,32.89098]},"id":"8f44c0a0416a030-13dea206e9ee4b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416a030-13dea206e9ee4b5e","8f44c0a0416eb50-13dfb122808db7de"]},"geometry":{"type":"LineString","coordinates":[[-83.67472240000001,32.890568900000005],[-83.674357,32.89098]]},"id":"8a44c0a0416ffff-13deb194b5b3ff8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64387,32.840558]},"id":"8f44c0a34045082-17d6ec754d44b659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34045082-17d6ec754d44b659","8f44c0a34063a8d-17dffba2a32add2f"]},"geometry":{"type":"LineString","coordinates":[[-83.64387,32.840558],[-83.64420700000001,32.8401587]]},"id":"8944c0a3407ffff-17deec0bf3247831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443361,32.8400057]},"id":"8f44c0a34061418-17fffb51f277cace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34061418-17fffb51f277cace","8f44c0a34063a8d-17dffba2a32add2f"]},"geometry":{"type":"LineString","coordinates":[[-83.64420700000001,32.8401587],[-83.6443361,32.8400057]]},"id":"8a44c0a34067fff-179feb7a4ad54e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443914,32.8399401]},"id":"8f44c0a3406150c-17d6fb2f62583b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34061418-17fffb51f277cace","8f44c0a3406150c-17d6fb2f62583b8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6443361,32.8400057],[-83.6443914,32.8399401]]},"id":"8c44c0a340615ff-17d7fb40b983cd7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64474600000001,32.83952]},"id":"8f44c0a340658d9-13beea51cf154a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3406150c-17d6fb2f62583b8f","8f44c0a340658d9-13beea51cf154a9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6443914,32.8399401],[-83.64474600000001,32.83952]]},"id":"8a44c0a34067fff-17bffac0948d7718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6453882,32.8388116]},"id":"8f44c0a34149922-1397e8c06e7315ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340658d9-13beea51cf154a9e","8f44c0a34149922-1397e8c06e7315ed"]},"geometry":{"type":"LineString","coordinates":[[-83.64474600000001,32.83952],[-83.6453882,32.8388116]]},"id":"8844c0a341fffff-13dee9891106dc9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643387,32.824346000000006]},"id":"8f44c0b1a629cda-17b6eda32018c9f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6748c5-17f7ec38aa3837c7","8f44c0b1a629cda-17b6eda32018c9f6"]},"geometry":{"type":"LineString","coordinates":[[-83.643387,32.824346000000006],[-83.64350900000001,32.824409],[-83.643967,32.824661]]},"id":"8844c0b1a7fffff-1797eced796e4512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6447878,32.8251244]},"id":"8f44c0b1a666203-1396ea37a1ff285a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a6748c5-17f7ec38aa3837c7","8f44c0b1a666203-1396ea37a1ff285a"]},"geometry":{"type":"LineString","coordinates":[[-83.643967,32.824661],[-83.6445111,32.824957600000005],[-83.6447878,32.8251244]]},"id":"8944c0b1a67ffff-1397fb36b0765b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63045600000001,32.826877]},"id":"8f44c0ba9ade4d4-17df2d350572ef00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0ba9add0c6-17f72aab83a1e6dc","8f44c0ba9ade4d4-17df2d350572ef00"]},"geometry":{"type":"LineString","coordinates":[[-83.63045600000001,32.826877],[-83.6314952,32.827117]]},"id":"8a44c0ba9adffff-17bf2bf048daeff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632192,32.827278]},"id":"8f44c0ba9ac842b-17dfc8f80893dfcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0ba9ac842b-17dfc8f80893dfcb","8f44c0ba9add0c6-17f72aab83a1e6dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6314952,32.827117],[-83.632192,32.827278]]},"id":"8944c0ba9afffff-17b779d1c54db4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667484,32.80977]},"id":"8f44c0b18182164-139ef2ce8d83ec8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18182164-139ef2ce8d83ec8f","8f44c0b1819209a-1397b67448f55f36"]},"geometry":{"type":"LineString","coordinates":[[-83.66599000000001,32.809736],[-83.667484,32.80977]]},"id":"8844c0b181fffff-139fb4a1618e7916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b181a8a26-13b7ae26a70085e8","8f44c0b18182164-139ef2ce8d83ec8f"]},"geometry":{"type":"LineString","coordinates":[[-83.667484,32.80977],[-83.669391,32.809813000000005]]},"id":"8944c0b181bffff-13b7b07a970f5db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67097000000001,32.81145]},"id":"8f44c0b18023015-17b6ea4bccab53cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b181a8a26-13b7ae26a70085e8","8f44c0b18023015-17b6ea4bccab53cf"]},"geometry":{"type":"LineString","coordinates":[[-83.669391,32.809813000000005],[-83.669943,32.809823],[-83.670226,32.809838],[-83.670302,32.809851],[-83.67045300000001,32.809903000000006],[-83.670591,32.809996000000005],[-83.670719,32.810100000000006],[-83.67082400000001,32.810197],[-83.670893,32.810288],[-83.670941,32.810391],[-83.67096000000001,32.810588],[-83.67097000000001,32.81145]]},"id":"8844c0b181fffff-17feab6aba04ce64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67099800000001,32.812542]},"id":"8f44c0b1800ccc6-13deea3a4a5c8d0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1800ccc6-13deea3a4a5c8d0f","8f44c0b18023015-17b6ea4bccab53cf"]},"geometry":{"type":"LineString","coordinates":[[-83.67097000000001,32.81145],[-83.67099800000001,32.812542]]},"id":"8944c0b1803ffff-139faa430e781cc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670986,32.812993]},"id":"8f44c0b18008130-13feaa41c6e10e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1800ccc6-13deea3a4a5c8d0f","8f44c0b18008130-13feaa41c6e10e0f"]},"geometry":{"type":"LineString","coordinates":[[-83.67099800000001,32.812542],[-83.670986,32.812993]]},"id":"8a44c0b1800ffff-13ffba3e0df5f3e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67295,32.858896]},"id":"8f44c0a22d2209d-139ea57646f9a4a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35a4bc2c-13deeafd4018733e","8f44c0a22d2209d-139ea57646f9a4a9"]},"geometry":{"type":"LineString","coordinates":[[-83.670686,32.858798],[-83.670821,32.858823],[-83.671593,32.858856],[-83.67295,32.858896]]},"id":"8844c0a22dfffff-13f7e83a7f901bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675424,32.85898]},"id":"8f44c0a266d525c-13be9f6c0ac77253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266d525c-13be9f6c0ac77253","8f44c0a22d2209d-139ea57646f9a4a9"]},"geometry":{"type":"LineString","coordinates":[[-83.67295,32.858896],[-83.673299,32.858915],[-83.67456800000001,32.858953],[-83.675424,32.85898]]},"id":"8744c0a22ffffff-13b6e271364fd086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636322,32.812879]},"id":"8f44c0b1a5a5d5b-13b7fee2c222cac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63729000000001,32.812907]},"id":"8f44c0b1a514766-13d6fc85c0fe92c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a514766-13d6fc85c0fe92c3","8f44c0b1a5a5d5b-13b7fee2c222cac4"]},"geometry":{"type":"LineString","coordinates":[[-83.636322,32.812879],[-83.63729000000001,32.812907]]},"id":"8844c0b1a5fffff-13befdb446fdf7df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a514766-13d6fc85c0fe92c3","8f44c0b1a5068e2-13d7fa2dc99fdb62"]},"geometry":{"type":"LineString","coordinates":[[-83.63729000000001,32.812907],[-83.63825,32.812936]]},"id":"8944c0b1a53ffff-13dffb59c3f7f357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68719200000001,32.821278]},"id":"8f44c0b19c6415a-17b6c2b1020138d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c6415a-17b6c2b1020138d9","8f44c0b19c6558d-17dfa27613ec1d42"]},"geometry":{"type":"LineString","coordinates":[[-83.68719200000001,32.821278],[-83.68728630000001,32.8215506]]},"id":"8a44c0b19c67fff-1797f293853fb825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6873673,32.822049]},"id":"8f44c0b19c61018-1396a243769f76ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c61018-1396a243769f76ce","8f44c0b19c6558d-17dfa27613ec1d42"]},"geometry":{"type":"LineString","coordinates":[[-83.68728630000001,32.8215506],[-83.687292,32.821567],[-83.68734500000001,32.821869],[-83.6873673,32.822049]]},"id":"8a44c0b19c67fff-13fee25a2eed10f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c61018-1396a243769f76ce","8f44c0b19c4e6dc-17f6e49a64318993"]},"geometry":{"type":"LineString","coordinates":[[-83.6873673,32.822049],[-83.687381,32.822159],[-83.687386,32.822363],[-83.687353,32.822437],[-83.68728300000001,32.822502],[-83.687218,32.822538],[-83.687145,32.822563],[-83.68701800000001,32.822591],[-83.686661,32.822592],[-83.686571,32.822614],[-83.68649500000001,32.822657],[-83.686383,32.82273],[-83.686277,32.822839],[-83.68622,32.822929],[-83.68617900000001,32.823037],[-83.68615700000001,32.823151],[-83.686141,32.823262],[-83.68614500000001,32.823359],[-83.68617,32.823439],[-83.686228,32.823504],[-83.68640900000001,32.823639]]},"id":"8944c0b19c7ffff-13ffa3f51b1ada60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686581,32.824879]},"id":"8f44c0b191a1983-17ffe42eebd1a2a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c4e6dc-17f6e49a64318993","8f44c0b191a1983-17ffe42eebd1a2a1"]},"geometry":{"type":"LineString","coordinates":[[-83.68640900000001,32.823639],[-83.68648400000001,32.823624],[-83.687174,32.823697],[-83.687273,32.823735],[-83.687324,32.823797],[-83.687313,32.824388],[-83.687291,32.824454],[-83.687246,32.824512],[-83.686581,32.824879]]},"id":"8744c0b19ffffff-17bff31c478dd6b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68654000000001,32.82495]},"id":"8f44c0b191a1c6d-13bfc448818ed8cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b191a1c6d-13bfc448818ed8cd","8f44c0b191a1983-17ffe42eebd1a2a1"]},"geometry":{"type":"LineString","coordinates":[[-83.68654000000001,32.82495],[-83.686581,32.824879]]},"id":"8b44c0b191a1fff-1397943bb53b899b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b191a1c6d-13bfc448818ed8cd","8f44c0b191a1983-17ffe42eebd1a2a1"]},"geometry":{"type":"LineString","coordinates":[[-83.686581,32.824879],[-83.686504,32.824832],[-83.68646000000001,32.824787],[-83.686401,32.824776],[-83.686346,32.824775],[-83.686318,32.824789],[-83.68630900000001,32.824812],[-83.686305,32.824954000000005],[-83.68630800000001,32.82502],[-83.68632600000001,32.825063],[-83.686352,32.825085],[-83.68638100000001,32.825085],[-83.68643300000001,32.825055],[-83.68654000000001,32.82495]]},"id":"8a44c0b191a7fff-1396f49f25fdb82f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720562,32.884985]},"id":"8f44c0a21049613-13bfb138c77fde24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72194,32.886454]},"id":"8f44c0a2131dc0b-17d7eddb8afe56ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2131dc0b-17d7eddb8afe56ee","8f44c0a21049613-13bfb138c77fde24"]},"geometry":{"type":"LineString","coordinates":[[-83.720562,32.884985],[-83.720646,32.885027],[-83.72077800000001,32.885073000000006],[-83.72088400000001,32.885105],[-83.72095,32.88512],[-83.721283,32.885154],[-83.721339,32.885165],[-83.72143000000001,32.885192],[-83.721511,32.885221],[-83.72161600000001,32.885270000000006],[-83.721703,32.885326],[-83.721784,32.885399],[-83.72185300000001,32.88548],[-83.721908,32.885579],[-83.721952,32.885686],[-83.72197,32.885779],[-83.721968,32.885939],[-83.72194,32.886454]]},"id":"8944c0a2133ffff-13ffaedc919b8e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722164,32.8876344]},"id":"8f44c0a212208b1-13b7ad4f8f513233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2131dc0b-17d7eddb8afe56ee","8f44c0a212208b1-13b7ad4f8f513233"]},"geometry":{"type":"LineString","coordinates":[[-83.72194,32.886454],[-83.72193700000001,32.886642],[-83.72194400000001,32.886736],[-83.721984,32.886901],[-83.722102,32.887172],[-83.72214500000001,32.887317],[-83.722161,32.887427],[-83.722166,32.887534],[-83.722164,32.8876344]]},"id":"8844c0a213fffff-17d6fd97a2286af3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2252baf1-17b7aee72b345a6f","8f44c0a22544c59-13feabe5ccec3e96"]},"geometry":{"type":"LineString","coordinates":[[-83.669083,32.867125],[-83.66919700000001,32.867205000000006],[-83.66946300000001,32.867406],[-83.669629,32.867554000000005],[-83.670314,32.868288]]},"id":"8844c0a225fffff-13fefd57e1520433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22544c59-13feabe5ccec3e96","8f44c0a2218a659-17dee3c026b29652"]},"geometry":{"type":"LineString","coordinates":[[-83.670314,32.868288],[-83.67054,32.868533],[-83.67064500000001,32.868625],[-83.670733,32.868688],[-83.670902,32.868781000000006],[-83.67098100000001,32.868817],[-83.671097,32.868851],[-83.67156800000001,32.868951],[-83.672731,32.869169],[-83.672943,32.869211],[-83.673097,32.86925],[-83.673354,32.869338],[-83.673651,32.869467]]},"id":"8744c0a22ffffff-13bef7f897e38822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3074e629-179725cd6d437aa3","8f44c0a3076d95e-139f2174ea5511de"]},"geometry":{"type":"LineString","coordinates":[[-83.63526900000001,32.865453],[-83.634777,32.865662],[-83.634432,32.865817],[-83.634258,32.865904],[-83.634118,32.865996],[-83.63378900000001,32.866261],[-83.63358600000001,32.866453],[-83.63348900000001,32.866493000000006]]},"id":"8744c0a30ffffff-17bfe3b64bd2c86c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667263,32.863456]},"id":"8f44c0a22c903b6-17beb358a5d383b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c9a6b3-13bff38c89e4ad88","8f44c0a22c903b6-17beb358a5d383b9"]},"geometry":{"type":"LineString","coordinates":[[-83.667263,32.863456],[-83.66722200000001,32.863638],[-83.667198,32.863763],[-83.66718900000001,32.863917],[-83.667197,32.864331],[-83.66718,32.864707]]},"id":"8944c0a22cbffff-17b7f37f851818ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699346,32.77291]},"id":"8f44c0b006f4668-139ee504cc81269a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b006c2b26-17f664746e9e4f8b","8f44c0b006f4668-139ee504cc81269a"]},"geometry":{"type":"LineString","coordinates":[[-83.699346,32.77291],[-83.69915,32.773131],[-83.698935,32.773359],[-83.698807,32.773522],[-83.698784,32.773603],[-83.698784,32.773646],[-83.698791,32.773705],[-83.698817,32.773774],[-83.69884300000001,32.773806],[-83.698873,32.773835000000005],[-83.698981,32.77391],[-83.699414,32.774168],[-83.699577,32.774272]]},"id":"8944c0b006fffff-13fef5a4b506a8d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701576,32.775502]},"id":"8f44c0b039b04cd-17f6df93077a55bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b006c2b26-17f664746e9e4f8b","8f44c0b039b04cd-17f6df93077a55bb"]},"geometry":{"type":"LineString","coordinates":[[-83.699577,32.774272],[-83.70125900000001,32.775311],[-83.701576,32.775502]]},"id":"8844c0b007fffff-17f7720445fe2b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702466,32.775815]},"id":"8f44c0b039a26ad-13b67d66cc390cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b039a26ad-13b67d66cc390cb8","8f44c0b039b04cd-17f6df93077a55bb"]},"geometry":{"type":"LineString","coordinates":[[-83.701576,32.775502],[-83.701767,32.775624],[-83.70190500000001,32.775703],[-83.701977,32.775739],[-83.70211,32.775782],[-83.702174,32.775799],[-83.702247,32.775807],[-83.702381,32.775815],[-83.702466,32.775815]]},"id":"8944c0b039bffff-17f7fe878b569cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134559,32.8563703]},"id":"8f44c0a25513851-17df72921a861c55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a255ada2e-17bf62afa2e2b694","8f44c0a25513851-17df72921a861c55"]},"geometry":{"type":"LineString","coordinates":[[-83.7134559,32.8563703],[-83.71342800000001,32.8564572],[-83.71341650000001,32.856693],[-83.71340860000001,32.856901]]},"id":"8944c0a2553ffff-179672a7678c9ec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713498,32.858147]},"id":"8f44c0a25430ae3-13b7e277cac517c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25430ae3-13b7e277cac517c0","8f44c0a255ada2e-17bf62afa2e2b694"]},"geometry":{"type":"LineString","coordinates":[[-83.71340860000001,32.856901],[-83.7134169,32.858015200000004],[-83.713498,32.858147]]},"id":"8844c0a255fffff-17b6d2a9a17c3a4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d9592b-139fed6ee77e5a33","8f44c0a32d960b6-1397d00d8602b87e"]},"geometry":{"type":"LineString","coordinates":[[-83.604149,32.854425],[-83.604095,32.854399],[-83.603684,32.854388],[-83.603076,32.85438]]},"id":"8a44c0a32d97fff-139f4ebc791a0b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600823,32.854363]},"id":"8f44c0b8d370c09-17fff58da70b8407"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d370c09-17fff58da70b8407","8f44c0a32d960b6-1397d00d8602b87e"]},"geometry":{"type":"LineString","coordinates":[[-83.603076,32.85438],[-83.602967,32.85438],[-83.601996,32.854371],[-83.6015,32.854366],[-83.60120400000001,32.854365],[-83.600823,32.854363]]},"id":"8744c0b8dffffff-17ffd2cd9332e8be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d25bc9a-13b5f580b5c5c296","8f44c0a299769a9-17f5ff6903558322"]},"geometry":{"type":"LineString","coordinates":[[-83.7581301,32.9242906],[-83.757603,32.924442],[-83.75739,32.924526],[-83.757064,32.92467],[-83.75581100000001,32.925188],[-83.75559100000001,32.925258],[-83.755432,32.925296],[-83.755155,32.925331],[-83.755031,32.925340000000006],[-83.75484800000001,32.925342],[-83.754689,32.925334],[-83.75448800000001,32.925305],[-83.75436400000001,32.925277],[-83.754194,32.925227],[-83.75407200000001,32.925187]]},"id":"8644c0a2fffffff-17d5fa686c72f1b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.753178,32.919745]},"id":"8f44c0a2d39bcc5-179de197cdc788f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d39bcc5-179de197cdc788f4","8f44c0a299769a9-17f5ff6903558322"]},"geometry":{"type":"LineString","coordinates":[[-83.75407200000001,32.925187],[-83.75400300000001,32.925153],[-83.75392000000001,32.925119],[-83.75363800000001,32.924964],[-83.75351,32.924878],[-83.75341900000001,32.924805],[-83.7533626,32.9247517],[-83.753275,32.924661],[-83.753178,32.924545],[-83.753079,32.92441],[-83.752987,32.924259],[-83.75293,32.924145],[-83.75290700000001,32.924099000000005],[-83.75286700000001,32.923983],[-83.752831,32.923826000000005],[-83.752812,32.92365],[-83.75281000000001,32.92351],[-83.752831,32.923011],[-83.75285500000001,32.9226],[-83.75292200000001,32.922173],[-83.753003,32.921774],[-83.753011,32.921735000000005],[-83.75306300000001,32.921446],[-83.753111,32.921058],[-83.7531258,32.920926300000005],[-83.753144,32.920729],[-83.75316000000001,32.920468],[-83.753178,32.919745]]},"id":"8644c0a2fffffff-17d7e1c6fe80104e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d39bcc5-179de197cdc788f4","8f44c0a2d01b343-13bfe50f4e174b08"]},"geometry":{"type":"LineString","coordinates":[[-83.753178,32.919745],[-83.753192,32.919277],[-83.75322600000001,32.918914],[-83.75325000000001,32.918747],[-83.75330100000001,32.918494],[-83.75330500000001,32.918405],[-83.75330100000001,32.91837],[-83.75327100000001,32.918266],[-83.75325500000001,32.918217],[-83.75318100000001,32.91799],[-83.753147,32.917822],[-83.753133,32.917639],[-83.753183,32.916826],[-83.753186,32.916427],[-83.75318100000001,32.916291],[-83.75318700000001,32.915757],[-83.75316500000001,32.915581],[-83.75313200000001,32.915461],[-83.753082,32.915346],[-83.752987,32.915191],[-83.75295100000001,32.915149],[-83.752864,32.915064],[-83.752733,32.914955],[-83.752554,32.914834],[-83.75246100000001,32.914789],[-83.752297,32.914735],[-83.752179,32.914713],[-83.751998,32.914693],[-83.75175800000001,32.914681]]},"id":"8744c0a2dffffff-139df20217a6e618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d01b343-13bfe50f4e174b08","8f44c0a2d44572c-13fff2c2c4d48ba4"]},"geometry":{"type":"LineString","coordinates":[[-83.75175800000001,32.914681],[-83.75051900000001,32.914664],[-83.74614600000001,32.914577]]},"id":"8744c0a2dffffff-139debe91aa2887d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74536900000001,32.914614]},"id":"8f44c0a2d442854-1395f4a86d09b855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d442854-1395f4a86d09b855","8f44c0a2d44572c-13fff2c2c4d48ba4"]},"geometry":{"type":"LineString","coordinates":[[-83.74614600000001,32.914577],[-83.745816,32.914605],[-83.745563,32.914605],[-83.74536900000001,32.914614]]},"id":"8a44c0a2d447fff-139df3b5632174eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663807,32.839865]},"id":"8f44c0b1b76b780-1797bbc8a4f17ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66384500000001,32.838939]},"id":"8f44c0b1b76e8ed-13d6fbb0e09db6d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b76e8ed-13d6fbb0e09db6d1","8f44c0b1b76b780-1797bbc8a4f17ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.663807,32.839865],[-83.66384500000001,32.838939]]},"id":"8a44c0b1b76ffff-13f6fbbccba1697f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663876,32.837947]},"id":"8f44c0b1b765d1e-17f6fb9d8a49f100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b765d1e-17f6fb9d8a49f100","8f44c0b1b76e8ed-13d6fbb0e09db6d1"]},"geometry":{"type":"LineString","coordinates":[[-83.66384500000001,32.838939],[-83.663876,32.837947]]},"id":"8944c0b1b77ffff-139efba7387f4b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66394100000001,32.836105]},"id":"8f44c0b1b0c5470-13f7bb74efc6a26a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b765d1e-17f6fb9d8a49f100","8f44c0b1b0c5470-13f7bb74efc6a26a"]},"geometry":{"type":"LineString","coordinates":[[-83.663876,32.837947],[-83.66394100000001,32.836105]]},"id":"8744c0b1bffffff-17b7fb89363754d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663971,32.835468]},"id":"8f44c0b1b0e2356-13d7bb622abf9bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0c5470-13f7bb74efc6a26a","8f44c0b1b0e2356-13d7bb622abf9bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.66394100000001,32.836105],[-83.663971,32.835468]]},"id":"8944c0b1b0fffff-139ebb6b8567089e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66400700000001,32.834825]},"id":"8f44c0b1b0e6120-13d7bb4ba2444a20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0e6120-13d7bb4ba2444a20","8f44c0b1b0e2356-13d7bb622abf9bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.663971,32.835468],[-83.66400700000001,32.834825]]},"id":"8a44c0b1b0e7fff-139ebb56ea97f2ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b01d6a3-17b6fb2c65e33bc7","8f44c0b1b0e6120-13d7bb4ba2444a20"]},"geometry":{"type":"LineString","coordinates":[[-83.66400700000001,32.834825],[-83.664057,32.834187]]},"id":"8844c0b1b1fffff-17fefb3c09b8ebd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66409900000001,32.833564]},"id":"8f44c0b1b00358a-17b7bb122dbbec75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b00358a-17b7bb122dbbec75","8f44c0b1b01d6a3-17b6fb2c65e33bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.664057,32.834187],[-83.66409900000001,32.833564]]},"id":"8944c0b1b03ffff-17f6bb1f45345681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66415,32.832302]},"id":"8f44c0b1b031c56-139efaf2420b9fa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b00358a-17b7bb122dbbec75","8f44c0b1b031c56-139efaf2420b9fa6"]},"geometry":{"type":"LineString","coordinates":[[-83.66409900000001,32.833564],[-83.66415,32.832302]]},"id":"8944c0b1b03ffff-13b7bb0234e9e989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66408,32.831729]},"id":"8f44c0b1b034335-13b6bb1e03056771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b031c56-139efaf2420b9fa6","8f44c0b1b034335-13b6bb1e03056771"]},"geometry":{"type":"LineString","coordinates":[[-83.66415,32.832302],[-83.664153,32.831901],[-83.664129,32.831811],[-83.66408,32.831729]]},"id":"8a44c0b1b037fff-13f7baf72362bc05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668209,32.887672]},"id":"8f44c0a04c59211-13dfb10964b4c6c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669228,32.888277]},"id":"8f44c0a041166ca-13d7ae8c8f5e045d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041166ca-13d7ae8c8f5e045d","8f44c0a04c59211-13dfb10964b4c6c4"]},"geometry":{"type":"LineString","coordinates":[[-83.668209,32.887672],[-83.66864000000001,32.88792],[-83.669228,32.888277]]},"id":"8744c0a04ffffff-1396efc9ee97f442"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041166ca-13d7ae8c8f5e045d","8f44c0a04899c83-17d7e95b2f29cf89"]},"geometry":{"type":"LineString","coordinates":[[-83.669228,32.888277],[-83.669612,32.888513],[-83.66975500000001,32.888564],[-83.669853,32.888574000000006],[-83.670011,32.888556],[-83.67013100000001,32.888503],[-83.671576,32.887655],[-83.67173600000001,32.887558],[-83.67183,32.887468000000005],[-83.671857,32.887414],[-83.671867,32.887368],[-83.67186500000001,32.887301],[-83.67184900000001,32.887247],[-83.671813,32.887185],[-83.67152200000001,32.886826],[-83.671355,32.886639]]},"id":"8744c0a04ffffff-13deaaa1310fd04c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041166ca-13d7ae8c8f5e045d","8f44c0a04899c83-17d7e95b2f29cf89"]},"geometry":{"type":"LineString","coordinates":[[-83.671355,32.886639],[-83.671211,32.88646],[-83.671148,32.886391],[-83.671098,32.886352],[-83.671041,32.886321],[-83.670884,32.886291],[-83.670332,32.886287],[-83.66986200000001,32.886291],[-83.66981,32.886305],[-83.66976000000001,32.886325],[-83.66967500000001,32.886387],[-83.669655,32.886432],[-83.669641,32.88682],[-83.669628,32.887634000000006],[-83.669611,32.887746],[-83.669593,32.887794],[-83.66956300000001,32.887853],[-83.669498,32.887954],[-83.669444,32.888024],[-83.669228,32.888277]]},"id":"8744c0a04ffffff-17deec8f7f97d841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.535909,32.843379]},"id":"8f44c0b9daa6a43-17b7f408eafaa36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b9daa6a43-17b7f408eafaa36c","8f44c0b9daa5415-17f7f313e47c739a"]},"geometry":{"type":"LineString","coordinates":[[-83.535909,32.843379],[-83.53630100000001,32.843501]]},"id":"8a44c0b9daa7fff-17dff38e6783c2b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538025,32.846404]},"id":"8f44c0b9dac48cb-179feede66473d08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b9daa5415-17f7f313e47c739a","8f44c0b9dac48cb-179feede66473d08"]},"geometry":{"type":"LineString","coordinates":[[-83.53630100000001,32.843501],[-83.53650400000001,32.843626],[-83.536692,32.843764],[-83.536862,32.843916],[-83.53704,32.844146],[-83.537108,32.844257],[-83.537227,32.844502],[-83.537343,32.844761000000005],[-83.537388,32.844924],[-83.537452,32.845363],[-83.53750600000001,32.84552],[-83.538025,32.846404]]},"id":"8844c0b9dbfffff-13d7f0b4f6483ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692931,32.838861]},"id":"8f44c0b192e9d54-13b674ae263851c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69280400000001,32.837978]},"id":"8f44c0b19252751-17fe74fd8f22c857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192e9d54-13b674ae263851c5","8f44c0b19252751-17fe74fd8f22c857"]},"geometry":{"type":"LineString","coordinates":[[-83.692931,32.838861],[-83.692947,32.838394],[-83.69294500000001,32.838315],[-83.69284900000001,32.838093],[-83.69280400000001,32.837978]]},"id":"8944c0b192fffff-139774b94a93afaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19252751-17fe74fd8f22c857","8f44c0b1922a8b3-13de747f444196cd"]},"geometry":{"type":"LineString","coordinates":[[-83.69280400000001,32.837978],[-83.69275800000001,32.83784],[-83.692738,32.837611],[-83.692755,32.836184],[-83.69276,32.836049],[-83.69278,32.835928],[-83.692819,32.835845],[-83.69290600000001,32.835744000000005],[-83.69300600000001,32.835658]]},"id":"8844c0b193fffff-179f7512806564ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76130500000001,32.815134]},"id":"8f44c0b0d04160c-13b7cdc0614ae0f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d069ac5-13d7e9df415c1620","8f44c0b0d04160c-13b7cdc0614ae0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.76130500000001,32.815134],[-83.76140600000001,32.815083],[-83.761538,32.815067],[-83.761634,32.815064],[-83.761707,32.815067],[-83.761764,32.815078],[-83.76183900000001,32.815098],[-83.76200800000001,32.815157],[-83.762101,32.815179],[-83.76221000000001,32.815193],[-83.762341,32.815195],[-83.762493,32.81519],[-83.762894,32.815165]]},"id":"8944c0b0d07ffff-13b7ebd485b35d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7659996,32.8157452]},"id":"8f44c0b0dad5d04-13b5c24a4a219735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d069ac5-13d7e9df415c1620","8f44c0b0dad5d04-13b5c24a4a219735"]},"geometry":{"type":"LineString","coordinates":[[-83.762894,32.815165],[-83.763935,32.8151],[-83.76406300000001,32.815078],[-83.76420800000001,32.815046],[-83.764306,32.815016],[-83.76498600000001,32.814709],[-83.765089,32.814673],[-83.76515400000001,32.81466],[-83.765213,32.814653],[-83.76529500000001,32.814653],[-83.765347,32.814656],[-83.765483,32.814684],[-83.766007,32.814915],[-83.766108,32.814968],[-83.766255,32.81507],[-83.76633600000001,32.815133],[-83.766441,32.815241],[-83.76648800000001,32.815299],[-83.76652100000001,32.81535],[-83.76652800000001,32.815381],[-83.76652100000001,32.815444],[-83.766513,32.815466],[-83.766478,32.81552],[-83.76644,32.81555],[-83.76618,32.815702],[-83.7659996,32.8157452]]},"id":"8744c0b0dffffff-1395f4ac0d49a323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70702700000001,32.87305]},"id":"8f44c0a2035d208-179e52442e7234ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2035d208-179e52442e7234ad","8f44c0a2036a9b3-139eefc9cf2f261f"]},"geometry":{"type":"LineString","coordinates":[[-83.70702700000001,32.87305],[-83.70743300000001,32.872897],[-83.707594,32.87283],[-83.707727,32.872763],[-83.707839,32.872675],[-83.70788800000001,32.872611],[-83.70795100000001,32.872506],[-83.70799000000001,32.872422],[-83.70802300000001,32.872297],[-83.708042,32.872033]]},"id":"8944c0a2037ffff-17b7f0ae60326dec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707942,32.868251]},"id":"8f44c0a20af1a1e-13f6f008476580f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a20af1a1e-13f6f008476580f7","8f44c0a2036a9b3-139eefc9cf2f261f"]},"geometry":{"type":"LineString","coordinates":[[-83.708042,32.872033],[-83.708037,32.871543],[-83.708038,32.871439],[-83.708045,32.870753],[-83.708071,32.869529],[-83.708084,32.868516],[-83.708077,32.868423],[-83.708042,32.868333],[-83.70797800000001,32.868274],[-83.707942,32.868251]]},"id":"8744c0a20ffffff-17fe6fc1344e76b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b88004012-17d7df75063f3cc0","8f44c0b88032322-179fe207211aa071"]},"geometry":{"type":"LineString","coordinates":[[-83.570552,32.853458],[-83.570234,32.853366],[-83.570006,32.853265],[-83.56949900000001,32.852983]]},"id":"8944c0b8803ffff-17bfb0c5273dd4e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b88183112-139fe61fe568fb98","8f44c0b88032322-179fe207211aa071"]},"geometry":{"type":"LineString","coordinates":[[-83.56949900000001,32.852983],[-83.568368,32.852294],[-83.56782100000001,32.851967]]},"id":"8844c0b881fffff-13dff412f22303a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b88183112-139fe61fe568fb98","8f44c0b8e2c6c34-13ffe383a979c226"]},"geometry":{"type":"LineString","coordinates":[[-83.56782100000001,32.851967],[-83.56704400000001,32.851495],[-83.56693100000001,32.851416],[-83.566709,32.851233],[-83.56645400000001,32.850983],[-83.566269,32.850749],[-83.56618900000001,32.850624],[-83.56599800000001,32.850256],[-83.56588500000001,32.850015],[-83.56573800000001,32.849758],[-83.56562600000001,32.84962],[-83.565538,32.849536],[-83.56545,32.849469],[-83.565365,32.849423],[-83.565268,32.849387],[-83.56517600000001,32.849368000000005],[-83.56509000000001,32.849359],[-83.56501800000001,32.849361],[-83.564879,32.849384],[-83.56475400000001,32.849438],[-83.56463500000001,32.849514],[-83.564346,32.849725],[-83.564126,32.849885],[-83.56394,32.850015],[-83.56377400000001,32.850133],[-83.563624,32.850211],[-83.56352100000001,32.850248],[-83.56344800000001,32.850265],[-83.56326100000001,32.85029],[-83.563147,32.850291],[-83.563004,32.850284],[-83.562814,32.850263000000005],[-83.56273900000001,32.850243],[-83.56265,32.850205],[-83.562544,32.850147],[-83.56246300000001,32.850079],[-83.562206,32.849829],[-83.56211610000001,32.8497573],[-83.562065,32.84973],[-83.56201030000001,32.849711400000004],[-83.561289,32.849511],[-83.561092,32.849423],[-83.560973,32.849359],[-83.560664,32.849162],[-83.559449,32.848413],[-83.559194,32.848284],[-83.558985,32.848214],[-83.558773,32.848166],[-83.55862400000001,32.848145],[-83.55842,32.848134],[-83.558268,32.848134],[-83.557883,32.848173],[-83.55776800000001,32.848179],[-83.55764,32.84818],[-83.55736900000001,32.848163],[-83.55715000000001,32.848126],[-83.55670900000001,32.848028],[-83.556572,32.848007],[-83.556306,32.847983],[-83.55611800000001,32.847983],[-83.555783,32.847991]]},"id":"8644c0b8fffffff-179fb3e5e73b3f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74333800000001,32.8885191]},"id":"8f44c0a2c962db3-13ddf99dca9b2a9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c962db3-13ddf99dca9b2a9d","8f44c0a2c94466e-17f7f99c8ce1cf07"]},"geometry":{"type":"LineString","coordinates":[[-83.74333800000001,32.8885191],[-83.74323600000001,32.888653000000005],[-83.74318600000001,32.8888064],[-83.74316,32.8889516],[-83.743188,32.8890757],[-83.743229,32.88918],[-83.74334,32.889348000000005]]},"id":"8944c0a2c97ffff-17dff9e193d4d30a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c94466e-17f7f99c8ce1cf07","8f44c0a2c94e468-17f7f984c6abc18c"]},"geometry":{"type":"LineString","coordinates":[[-83.74334,32.889348000000005],[-83.743526,32.889491],[-83.74356200000001,32.88955],[-83.74360200000001,32.889635000000006],[-83.74362,32.889685],[-83.74363500000001,32.88975],[-83.743643,32.889816],[-83.743644,32.889881],[-83.743638,32.889949],[-83.74362500000001,32.890012],[-83.7436,32.890088],[-83.743559,32.890172],[-83.743497,32.890264],[-83.743378,32.890397]]},"id":"8944c0a2c97ffff-17b5f91d24c42914"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.742182,32.890952]},"id":"8f44c0a2c95b58c-13ddfc70477b3c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c94e468-17f7f984c6abc18c","8f44c0a2c95b58c-13ddfc70477b3c27"]},"geometry":{"type":"LineString","coordinates":[[-83.743378,32.890397],[-83.743167,32.890634],[-83.74304400000001,32.890739],[-83.742891,32.890818],[-83.742743,32.89087],[-83.742602,32.890893000000005],[-83.742424,32.890897],[-83.74236300000001,32.890895],[-83.742182,32.890952]]},"id":"8844c0a2c9fffff-13ddfadd764cfa8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701442,32.895346]},"id":"8f44c0a232656d3-17975fe6c49a961d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702726,32.894844]},"id":"8f44c0a2ec9486a-13dfdcc44f080455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec9486a-13dfdcc44f080455","8f44c0a232656d3-17975fe6c49a961d"]},"geometry":{"type":"LineString","coordinates":[[-83.701442,32.895346],[-83.70230600000001,32.894979],[-83.702549,32.894889],[-83.702726,32.894844]]},"id":"8744c0a2effffff-13f75e58b0ae2189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec9486a-13dfdcc44f080455","8f44c0a2eca384c-13de78630aadaf50"]},"geometry":{"type":"LineString","coordinates":[[-83.702726,32.894844],[-83.702916,32.894831],[-83.70452,32.894861]]},"id":"8944c0a2ecbffff-13de7a93c42e53ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec13962-13f7d52287d6df39","8f44c0a2eca384c-13de78630aadaf50"]},"geometry":{"type":"LineString","coordinates":[[-83.70452,32.894861],[-83.70585200000001,32.894886]]},"id":"8844c0a2edfffff-13dff6c2cec32fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec00218-13f671e20c421600","8f44c0a2ec13962-13f7d52287d6df39"]},"geometry":{"type":"LineString","coordinates":[[-83.70585200000001,32.894886],[-83.70718400000001,32.894909000000006]]},"id":"8944c0a2ec3ffff-13fef3824b4a6ed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710723,32.894967]},"id":"8f44c0a2ed4a922-139e693e2910fa12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec00218-13f671e20c421600","8f44c0a2ed4a922-139e693e2910fa12"]},"geometry":{"type":"LineString","coordinates":[[-83.70718400000001,32.894909000000006],[-83.710273,32.894968],[-83.710723,32.894967]]},"id":"8844c0a2edfffff-139eed901919d0ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71181800000001,32.894844]},"id":"8f44c0a2e8b6410-13dfc691c22018db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed4a922-139e693e2910fa12","8f44c0a2e8b6410-13dfc691c22018db"]},"geometry":{"type":"LineString","coordinates":[[-83.710723,32.894967],[-83.710859,32.894956],[-83.711284,32.894905],[-83.71160300000001,32.89486],[-83.71181800000001,32.894844]]},"id":"8944c0a2ed7ffff-13f7e7e7f5d3477e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62313800000001,32.85606]},"id":"8f44c0a30586b22-179f9f12c23ddadc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62019000000001,32.856212]},"id":"8f44c0a3296289c-17ffa6454e45a48b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3296289c-17ffa6454e45a48b","8f44c0a30586b22-179f9f12c23ddadc"]},"geometry":{"type":"LineString","coordinates":[[-83.62313800000001,32.85606],[-83.620942,32.856223],[-83.62019000000001,32.856212]]},"id":"8644c0a37ffffff-17dfa2ab9255f127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3296289c-17ffa6454e45a48b","8f44c0a32972b72-17ff68f60244fa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.62019000000001,32.856212],[-83.619088,32.856183]]},"id":"8944c0a3297ffff-17f7779da3ddb048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70844500000001,32.788415]},"id":"8f44c0b03ae2d4d-17f76ecde019f5c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ae2d4d-17f76ecde019f5c5","8f44c0b03a18375-17b76ebc6dd3fdeb"]},"geometry":{"type":"LineString","coordinates":[[-83.70844500000001,32.788415],[-83.70847300000001,32.787487]]},"id":"8844c0b03bfffff-17d76ec524aca409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a18375-17b76ebc6dd3fdeb","8f44c0b03b5acec-139fe841a9b4a589"]},"geometry":{"type":"LineString","coordinates":[[-83.70847300000001,32.787487],[-83.708488,32.786737],[-83.708494,32.786642],[-83.708504,32.786617],[-83.708544,32.786589],[-83.708602,32.786574],[-83.711127,32.786633]]},"id":"8844c0b03bfffff-13d6cc47160123bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714634,32.786703]},"id":"8f44c0b016b550b-13df7fb1c8b30119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016b550b-13df7fb1c8b30119","8f44c0b03b5acec-139fe841a9b4a589"]},"geometry":{"type":"LineString","coordinates":[[-83.711127,32.786633],[-83.714634,32.786703]]},"id":"8644c0b07ffffff-13b7c3f9bd54d4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717494,32.786762]},"id":"8f44c0b016159a6-13fe78b648ecd90e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016b550b-13df7fb1c8b30119","8f44c0b016159a6-13fe78b648ecd90e"]},"geometry":{"type":"LineString","coordinates":[[-83.714634,32.786703],[-83.717494,32.786762]]},"id":"8844c0b017fffff-13dffc340a05dec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71815760000001,32.786770000000004]},"id":"8f44c0b016044aa-13f7771780cdb297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016044aa-13f7771780cdb297","8f44c0b016159a6-13fe78b648ecd90e"]},"geometry":{"type":"LineString","coordinates":[[-83.717494,32.786762],[-83.71815760000001,32.786770000000004]]},"id":"8944c0b0163ffff-13f6f7e6e8e18e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34356894-13bee5427ac58dd2","8f44c0a3432bb33-17bee3eecf6fa296"]},"geometry":{"type":"LineString","coordinates":[[-83.64681850000001,32.844637],[-83.647362,32.843415]]},"id":"8844c0a343fffff-17bee498a1ce2141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64737500000001,32.84337]},"id":"8f44c0a34329495-17b6e3e6a9ed224f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34329495-17b6e3e6a9ed224f","8f44c0a3432bb33-17bee3eecf6fa296"]},"geometry":{"type":"LineString","coordinates":[[-83.647362,32.843415],[-83.64737500000001,32.84337]]},"id":"8b44c0a3432bfff-17b6f3eabe64e308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34329495-17b6e3e6a9ed224f","8f44c0a34a8924b-13bfe292e10bab73"]},"geometry":{"type":"LineString","coordinates":[[-83.64737500000001,32.84337],[-83.64753400000001,32.842719],[-83.647625,32.842328],[-83.64791860000001,32.8415478]]},"id":"8744c0a34ffffff-13f7f34db5fcddaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64798850000001,32.841368700000004]},"id":"8f44c0a34a89a54-13bff267375e3fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a8924b-13bfe292e10bab73","8f44c0a34a89a54-13bff267375e3fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.64791860000001,32.8415478],[-83.64798850000001,32.841368700000004]]},"id":"8944c0a34afffff-13f7f27d01f8f00a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644219,32.848948]},"id":"8f44c0a342c019c-13d6eb9b27cc5644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342e2543-13b7eb2bed473902","8f44c0a342c019c-13d6eb9b27cc5644"]},"geometry":{"type":"LineString","coordinates":[[-83.644219,32.848948],[-83.644225,32.848675],[-83.644232,32.848374],[-83.64425100000001,32.848278],[-83.64427400000001,32.848244],[-83.64439700000001,32.848089]]},"id":"8944c0a342fffff-13beeb86176c2050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64468500000001,32.847738]},"id":"8f44c0a342e6042-17deea77ed674d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342e6042-17deea77ed674d83","8f44c0a342e2543-13b7eb2bed473902"]},"geometry":{"type":"LineString","coordinates":[[-83.64439700000001,32.848089],[-83.64449300000001,32.847977],[-83.64468500000001,32.847738]]},"id":"8a44c0a342e7fff-13befad12a5e11e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644835,32.847554]},"id":"8f44c0a342e694d-17dfea1a2b4ed3fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342e694d-17dfea1a2b4ed3fb","8f44c0a342e6042-17deea77ed674d83"]},"geometry":{"type":"LineString","coordinates":[[-83.64468500000001,32.847738],[-83.644835,32.847554]]},"id":"8b44c0a342e6fff-1796ea4901bb9974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645419,32.846812]},"id":"8f44c0a3420e3a1-179fe8ad2db88f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342e694d-17dfea1a2b4ed3fb","8f44c0a3420e3a1-179fe8ad2db88f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.644835,32.847554],[-83.64506700000001,32.847273],[-83.645419,32.846812]]},"id":"8844c0a343fffff-17f7e9619c07a7a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7323542,32.7982785]},"id":"8f44c0b0c4ec145-179e146ea7565630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731852,32.795444]},"id":"8f44c0b0c400943-13b695a888c17e86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c400943-13b695a888c17e86","8f44c0b0c4ec145-179e146ea7565630"]},"geometry":{"type":"LineString","coordinates":[[-83.7323542,32.7982785],[-83.73237200000001,32.797694],[-83.732319,32.797427],[-83.732287,32.797317],[-83.732183,32.797061],[-83.73201900000001,32.796748],[-83.731899,32.796497],[-83.73182800000001,32.796221],[-83.731823,32.796183],[-83.731819,32.795883],[-83.731852,32.795444]]},"id":"8844c0b0c5fffff-1396b5151d209406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c400943-13b695a888c17e86","8f44c0b0c422644-17df95975287e1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.731852,32.795444],[-83.7318795,32.7948953]]},"id":"8944c0b0c43ffff-17f7159ff2067205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73204100000001,32.791904]},"id":"8f44c0b0c533b50-17fe15326a958375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c422644-17df95975287e1aa","8f44c0b0c533b50-17fe15326a958375"]},"geometry":{"type":"LineString","coordinates":[[-83.7318795,32.7948953],[-83.73187700000001,32.794541],[-83.73204100000001,32.791904]]},"id":"8844c0b0c5fffff-13b6b56b97a45813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318728,32.7898275]},"id":"8f44c0b0cc93198-13fe359b8e813bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c533b50-17fe15326a958375","8f44c0b0cc93198-13fe359b8e813bda"]},"geometry":{"type":"LineString","coordinates":[[-83.73204100000001,32.791904],[-83.73213080000001,32.791698700000005],[-83.7326134,32.790478],[-83.7326342,32.7904046],[-83.7326134,32.7903626],[-83.7325551,32.7902962],[-83.73251350000001,32.7902612],[-83.7318728,32.7898275]]},"id":"8744c0b0cffffff-17b61486667ba18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66310700000001,32.804797]},"id":"8f44c0b18c8432c-17f6bd7e20cc8dd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c9432e-17bfe0baeeb841a3","8f44c0b18c8432c-17f6bd7e20cc8dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.66310700000001,32.804797],[-83.662739,32.804795],[-83.662107,32.804774],[-83.661985,32.804766],[-83.661893,32.804744],[-83.661781,32.804681]]},"id":"8944c0b18cbffff-17ffff21d776efd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661381,32.804046]},"id":"8f44c0b1e34d64b-17b6c1b4e040195f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c9432e-17bfe0baeeb841a3","8f44c0b1e34d64b-17b6c1b4e040195f"]},"geometry":{"type":"LineString","coordinates":[[-83.661781,32.804681],[-83.661478,32.804357],[-83.66143500000001,32.804274],[-83.661392,32.804142],[-83.661381,32.804046]]},"id":"8644c0b1fffffff-17f6d151ec4fc32b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66141300000001,32.802954]},"id":"8f44c0b1e3684a2-13f6c1a0e321a696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3684a2-13f6c1a0e321a696","8f44c0b1e34d64b-17b6c1b4e040195f"]},"geometry":{"type":"LineString","coordinates":[[-83.661381,32.804046],[-83.661393,32.80379],[-83.66141300000001,32.802954]]},"id":"8944c0b1e37ffff-13dfd1a980e619b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69609220000001,32.8911886]},"id":"8f44c0a233a3321-13f6ecf664f72aff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a233a052b-13f76d544ee34d1c","8f44c0a233a3321-13f6ecf664f72aff"]},"geometry":{"type":"LineString","coordinates":[[-83.695942,32.89061],[-83.695982,32.89078],[-83.69601,32.89096],[-83.696049,32.891077],[-83.69609220000001,32.8911886]]},"id":"8a44c0a233a7fff-13bfed2b1625d66a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696664,32.892857]},"id":"8f44c0a23232cd2-17f7eb9102518060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a233a3321-13f6ecf664f72aff","8f44c0a23232cd2-17f7eb9102518060"]},"geometry":{"type":"LineString","coordinates":[[-83.69609220000001,32.8911886],[-83.69610700000001,32.891227],[-83.696341,32.891635],[-83.696516,32.891922],[-83.696579,32.892076],[-83.696634,32.89224],[-83.69667000000001,32.892455000000005],[-83.696664,32.892857]]},"id":"8844c0a233fffff-13df6c06af0632f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696655,32.893946]},"id":"8f44c0a23210226-139e6b96aa4ebc22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23210226-139e6b96aa4ebc22","8f44c0a23232cd2-17f7eb9102518060"]},"geometry":{"type":"LineString","coordinates":[[-83.696664,32.892857],[-83.696655,32.893946]]},"id":"8944c0a2323ffff-17d7fb93d9b301b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23210226-139e6b96aa4ebc22","8f44c0a2321a01a-13d66b9a63f4f872"]},"geometry":{"type":"LineString","coordinates":[[-83.696655,32.893946],[-83.69664900000001,32.895031]]},"id":"8944c0a2323ffff-13ff7b9885cdf8b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696647,32.896093]},"id":"8f44c0a232f1c8b-17de6b9ba25c8c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232f1c8b-17de6b9ba25c8c61","8f44c0a2321a01a-13d66b9a63f4f872"]},"geometry":{"type":"LineString","coordinates":[[-83.69664900000001,32.895031],[-83.696647,32.896093]]},"id":"8844c0a233fffff-179e6b9b0ae30396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68029200000001,32.846949]},"id":"8f44c0a261aac2a-17dfb3898c6111c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a261aac2a-17dfb3898c6111c1","8f44c0a26181905-179794360fa28030"]},"geometry":{"type":"LineString","coordinates":[[-83.68001600000001,32.847004000000005],[-83.68029200000001,32.846949]]},"id":"8944c0a261bffff-17f6d3dfcd35b600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a261aac2a-17dfb3898c6111c1","8f44c0a26022186-139eeed5cce3ec93"]},"geometry":{"type":"LineString","coordinates":[[-83.68029200000001,32.846949],[-83.682218,32.848247]]},"id":"8844c0a261fffff-17f6d12fa5ea0107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68761900000001,32.848563]},"id":"8f44c0a26b9a9a3-13dfe1a626ec70a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b9a9a3-13dfe1a626ec70a7","8f44c0a26022186-139eeed5cce3ec93"]},"geometry":{"type":"LineString","coordinates":[[-83.682218,32.848247],[-83.68231300000001,32.848293000000005],[-83.682404,32.848328],[-83.68253440000001,32.848356700000004],[-83.6826832,32.8483699],[-83.687129,32.84854],[-83.68761900000001,32.848563]]},"id":"8744c0a26ffffff-139ea843f57df815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687932,32.848578]},"id":"8f44c0a26b98cdd-13dfc0e281cb7706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b98cdd-13dfc0e281cb7706","8f44c0a26b9a9a3-13dfe1a626ec70a7"]},"geometry":{"type":"LineString","coordinates":[[-83.68761900000001,32.848563],[-83.687932,32.848578]]},"id":"8a44c0a26b9ffff-13d691445dbc2f4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659256,32.836652]},"id":"8f44c0b1b71550c-17bfc6e50f72c7e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b71550c-17bfc6e50f72c7e1","8f44c0b1b71aad9-13d7c6fc2f44bc43"]},"geometry":{"type":"LineString","coordinates":[[-83.65921900000001,32.838124],[-83.659256,32.836652]]},"id":"8944c0b1b73ffff-1797c6f095661bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659273,32.836011]},"id":"8f44c0b1b732a9e-13bee6da690af449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b732a9e-13bee6da690af449","8f44c0b1b71550c-17bfc6e50f72c7e1"]},"geometry":{"type":"LineString","coordinates":[[-83.659256,32.836652],[-83.659273,32.836011]]},"id":"8944c0b1b73ffff-13f7f6dfb63a021b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659298,32.834899]},"id":"8f44c0b1b469daa-13f7e6cac18f2787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b732a9e-13bee6da690af449","8f44c0b1b469daa-13f7e6cac18f2787"]},"geometry":{"type":"LineString","coordinates":[[-83.659273,32.836011],[-83.659298,32.834899]]},"id":"8744c0b1bffffff-13dfe6d2931c9f62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65937100000001,32.834896]},"id":"8f44c0b1b469d0c-13f6c69d28ee6b84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594116,32.834308400000005]},"id":"8f44c0b1b46cb2b-1796c683cbae0275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b46cb2b-1796c683cbae0275","8f44c0b1b469d0c-13f6c69d28ee6b84"]},"geometry":{"type":"LineString","coordinates":[[-83.65937100000001,32.834896],[-83.65939,32.834428],[-83.659397,32.834347],[-83.6594116,32.834308400000005]]},"id":"8a44c0b1b46ffff-17bfd69509740f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b46cb2b-1796c683cbae0275","8f44c0b1b093415-17d6d668c9dbb3aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6594116,32.834308400000005],[-83.659428,32.834265],[-83.6594548,32.8342089]]},"id":"8844c0b1b5fffff-17f7e676e50edd33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b090ced-179ff5c7259a3895","8f44c0b1b093415-17d6d668c9dbb3aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6594548,32.8342089],[-83.659504,32.834106000000006],[-83.6597134,32.8337087]]},"id":"8a44c0b1b097fff-17b7c618fb5644ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0948ae-17f6e52c6cd71c9c","8f44c0b1b090ced-179ff5c7259a3895"]},"geometry":{"type":"LineString","coordinates":[[-83.6597134,32.8337087],[-83.65996100000001,32.833239]]},"id":"8a44c0b1b097fff-17fff579c75ae58f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66014100000001,32.832894]},"id":"8f44c0b1b0b2b94-139ec4bbe4399a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0948ae-17f6e52c6cd71c9c","8f44c0b1b0b2b94-139ec4bbe4399a0d"]},"geometry":{"type":"LineString","coordinates":[[-83.65996100000001,32.833239],[-83.66014100000001,32.832894]]},"id":"8944c0b1b0bffff-13fed4f4297a8cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613534,32.842443]},"id":"8f44c0a36569b6a-13dff68542e9bdbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36569b6a-13dff68542e9bdbc","8f44c0a360a0d93-179773c6cbfa11f6"]},"geometry":{"type":"LineString","coordinates":[[-83.613534,32.842443],[-83.614658,32.843119]]},"id":"8844c0a361fffff-13b7352606b61b38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61588300000001,32.84388]},"id":"8f44c0a36013444-17f730c928756385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36013444-17f730c928756385","8f44c0a360a0d93-179773c6cbfa11f6"]},"geometry":{"type":"LineString","coordinates":[[-83.614658,32.843119],[-83.615802,32.843806],[-83.61588300000001,32.84388]]},"id":"8844c0a361fffff-17ff324433dc8969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677053,32.879744]},"id":"8f44c0a2228a890-17f69b71e0514152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2228a890-17f69b71e0514152","8f44c0a222f0594-1797f7ba02046341"]},"geometry":{"type":"LineString","coordinates":[[-83.677053,32.879744],[-83.677942,32.879773],[-83.678296,32.879779],[-83.678576,32.879807]]},"id":"8844c0a223fffff-17ff9995a64be189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222f5342-17de95918d8bb8e7","8f44c0a222f0594-1797f7ba02046341"]},"geometry":{"type":"LineString","coordinates":[[-83.678576,32.879807],[-83.678875,32.879854],[-83.67946,32.879920000000006]]},"id":"8a44c0a222f7fff-17bff6a62b0eb6e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222f5342-17de95918d8bb8e7","8f44c0a2225356b-17d6d12aa8c9341d"]},"geometry":{"type":"LineString","coordinates":[[-83.67946,32.879920000000006],[-83.67989700000001,32.879993],[-83.680166,32.880068],[-83.680396,32.88015],[-83.680935,32.880364],[-83.68118600000001,32.88046],[-83.681263,32.880522]]},"id":"8844c0a223fffff-17fff352abbc8090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646,32.809592]},"id":"8f44c0b1ad5d864-13bfe74206494091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646009,32.808576]},"id":"8f44c0b1ad4469c-13b6e73c6ccf1e13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad4469c-13b6e73c6ccf1e13","8f44c0b1ad5d864-13bfe74206494091"]},"geometry":{"type":"LineString","coordinates":[[-83.646,32.809592],[-83.646005,32.809016],[-83.646009,32.808576]]},"id":"8944c0b1ad7ffff-13ffe73f4d01cf1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64602500000001,32.807557]},"id":"8f44c0b1ad758f0-17b7e73269aef262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad4469c-13b6e73c6ccf1e13","8f44c0b1ad758f0-17b7e73269aef262"]},"geometry":{"type":"LineString","coordinates":[[-83.646009,32.808576],[-83.64602500000001,32.807557]]},"id":"8944c0b1ad7ffff-17f7f73764149b7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7388463,32.833888]},"id":"8f44c0b09491693-17fe0495175a706d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7388583,32.833473500000004]},"id":"8f44c0b09490ac4-17fef48d9e2ad2f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09491693-17fe0495175a706d","8f44c0b09490ac4-17fef48d9e2ad2f6"]},"geometry":{"type":"LineString","coordinates":[[-83.7388463,32.833888],[-83.7388583,32.833473500000004]]},"id":"8a44c0b09497fff-17fe74915bf0ee51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73912150000001,32.827856700000005]},"id":"8f44c0b082eec91-17d673e9112eecbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b082eec91-17d673e9112eecbf","8f44c0b09490ac4-17fef48d9e2ad2f6"]},"geometry":{"type":"LineString","coordinates":[[-83.7388583,32.833473500000004],[-83.7388743,32.8329224],[-83.7389033,32.8323765],[-83.738921,32.831242],[-83.7389256,32.8310047],[-83.7389292,32.8306853],[-83.7389608,32.829901],[-83.738996,32.829329],[-83.73903,32.828659],[-83.739052,32.828004],[-83.73912150000001,32.827856700000005]]},"id":"8644c0b0fffffff-179ed45435cf2bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71123700000001,32.830278]},"id":"8f44c0b0a2b239b-17bfc7fcec7020cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a293112-17dec8f50b05ea81","8f44c0b0a2b239b-17bfc7fcec7020cb"]},"geometry":{"type":"LineString","coordinates":[[-83.71084,32.83138],[-83.710997,32.831252],[-83.71104600000001,32.831209],[-83.71110200000001,32.831138],[-83.71114100000001,32.831076],[-83.71115800000001,32.831043],[-83.711173,32.831012],[-83.711201,32.830928],[-83.71122000000001,32.830888],[-83.71123,32.830692],[-83.71123700000001,32.830278]]},"id":"8944c0b0a2bffff-17b7483783265be3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2b239b-17bfc7fcec7020cb","8f44c0b0a0cbacb-17bf67dc60b7cca6"]},"geometry":{"type":"LineString","coordinates":[[-83.71123700000001,32.830278],[-83.71128900000001,32.827439000000005]]},"id":"8744c0b0affffff-13b6d7eca41bd858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a0cbacb-17bf67dc60b7cca6","8f44c0b0a0ea45a-13f747cee30b0013"]},"geometry":{"type":"LineString","coordinates":[[-83.71128900000001,32.827439000000005],[-83.71131000000001,32.826292],[-83.7113106,32.826088]]},"id":"8944c0b0a0fffff-179777d4d737eb79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71131120000001,32.8258473]},"id":"8f44c0b0a0ead9a-13ded7ce8f2b3fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a0ea45a-13f747cee30b0013","8f44c0b0a0ead9a-13ded7ce8f2b3fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.7113106,32.826088],[-83.71131120000001,32.8258473]]},"id":"8a44c0b0a0effff-13b7d7ceb8faff86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63925400000001,32.845148]},"id":"8f44c0a3474e4a0-13fff7ba44324306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6397993,32.8439873]},"id":"8f44c0a34763754-17b6f6657dbb2170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34763754-17b6f6657dbb2170","8f44c0a3474e4a0-13fff7ba44324306"]},"geometry":{"type":"LineString","coordinates":[[-83.63925400000001,32.845148],[-83.6397993,32.8439873]]},"id":"8944c0a3477ffff-139ef70fd92fb644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34763754-17b6f6657dbb2170","8f44c0a340cb59c-13f6f5192138e702"]},"geometry":{"type":"LineString","coordinates":[[-83.6397993,32.8439873],[-83.640331,32.842855]]},"id":"8744c0a34ffffff-17d6f5bf5da57943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676596,32.835692]},"id":"8f44c0b1ba63433-13f79c8f8a174fdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67668,32.835516000000005]},"id":"8f44c0b1ba63dae-13f79c5b0051c725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba63433-13f79c8f8a174fdb","8f44c0b1ba63dae-13f79c5b0051c725"]},"geometry":{"type":"LineString","coordinates":[[-83.676596,32.835692],[-83.67663200000001,32.835607],[-83.67668,32.835516000000005]]},"id":"8b44c0b1ba63fff-13bffc767080a4f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67733700000001,32.834723000000004]},"id":"8f44c0b1bb4b404-1397fac06df5e93d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb4b404-1397fac06df5e93d","8f44c0b1ba63dae-13f79c5b0051c725"]},"geometry":{"type":"LineString","coordinates":[[-83.67668,32.835516000000005],[-83.676992,32.834871],[-83.677029,32.834815],[-83.67712,32.834732],[-83.67720200000001,32.834723000000004],[-83.67733700000001,32.834723000000004]]},"id":"8844c0b1bbfffff-13dffbb342ec0ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76401200000001,32.753082]},"id":"8f44c0b2eb09b25-13b5c724893e80ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766452,32.752935]},"id":"8f44c0b2eb650b6-13dde12f809fd4ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2eb650b6-13dde12f809fd4ab","8f44c0b2eb09b25-13b5c724893e80ef"]},"geometry":{"type":"LineString","coordinates":[[-83.76401200000001,32.753082],[-83.76411900000001,32.753113],[-83.764672,32.75318],[-83.765214,32.753242],[-83.765449,32.753276],[-83.765637,32.753298],[-83.765718,32.753301],[-83.76583500000001,32.753299000000005],[-83.765933,32.753284],[-83.765984,32.753267],[-83.766057,32.75323],[-83.766163,32.753163],[-83.766452,32.752935]]},"id":"8944c0b2eb7ffff-13fdf410f44e8724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76697100000001,32.752634]},"id":"8f44c0b2c796d0c-179dffeb2d180198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2eb650b6-13dde12f809fd4ab","8f44c0b2c796d0c-179dffeb2d180198"]},"geometry":{"type":"LineString","coordinates":[[-83.766452,32.752935],[-83.76653,32.752874],[-83.76659500000001,32.752831],[-83.766827,32.752701],[-83.76697100000001,32.752634]]},"id":"8744c0b2cffffff-17f7c0914f3dac6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769518,32.75236]},"id":"8f44c0b2c7a0a9a-17f5b9b34dab3e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c796d0c-179dffeb2d180198","8f44c0b2c7a0a9a-17f5b9b34dab3e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.76697100000001,32.752634],[-83.767167,32.752556000000006],[-83.767384,32.752491],[-83.76756,32.752453],[-83.767717,32.752429],[-83.768055,32.752398],[-83.76824,32.752390000000005],[-83.769518,32.75236]]},"id":"8944c0b2c7bffff-179dbcd6d5ccbeb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77439700000001,32.752625]},"id":"8f44c0b2c0de2f0-1797adc9e2edca9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c7a0a9a-17f5b9b34dab3e4f","8f44c0b2c0de2f0-1797adc9e2edca9e"]},"geometry":{"type":"LineString","coordinates":[[-83.769518,32.75236],[-83.770188,32.752358],[-83.771489,32.75233],[-83.772295,32.752316],[-83.772502,32.752313],[-83.77285400000001,32.752341],[-83.773204,32.752409],[-83.77333300000001,32.752443],[-83.77361300000001,32.752524],[-83.77388300000001,32.752575],[-83.77409700000001,32.7526],[-83.77439700000001,32.752625]]},"id":"8844c0b2c7fffff-1795b3b8e3f087c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63265200000001,32.857925]},"id":"8f44c0a3018ecc1-13bf27d88bd00902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30746c60-13d7471f87f58c35","8f44c0a3018ecc1-13bf27d88bd00902"]},"geometry":{"type":"LineString","coordinates":[[-83.63265200000001,32.857925],[-83.632676,32.860642],[-83.632642,32.861069],[-83.63263400000001,32.861168],[-83.63255000000001,32.861725],[-83.63246600000001,32.862212],[-83.63237600000001,32.862795000000006],[-83.63236900000001,32.863078],[-83.63240300000001,32.863314],[-83.632554,32.863857],[-83.63277400000001,32.864569],[-83.63289,32.864903000000005],[-83.632948,32.86513]]},"id":"8744c0a30ffffff-139f97f336a3439a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a307463a1-13df26f3c32a052b","8f44c0a30746c60-13d7471f87f58c35"]},"geometry":{"type":"LineString","coordinates":[[-83.632948,32.86513],[-83.633018,32.865349]]},"id":"8b44c0a30746fff-1397b709a8a18f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3067611e-17b76a9deb7b0d25","8f44c0a307463a1-13df26f3c32a052b"]},"geometry":{"type":"LineString","coordinates":[[-83.633018,32.865349],[-83.63284300000001,32.865783],[-83.63272400000001,32.866062],[-83.63257200000001,32.86631],[-83.632395,32.866521],[-83.632254,32.866652],[-83.632064,32.866798],[-83.631517,32.867151]]},"id":"8844c0a307fffff-17d7d8787edfbef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62974700000001,32.869321]},"id":"8f44c0a306c5ad1-17ffaef020932189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306c5ad1-17ffaef020932189","8f44c0a3067611e-17b76a9deb7b0d25"]},"geometry":{"type":"LineString","coordinates":[[-83.631517,32.867151],[-83.63126100000001,32.867342],[-83.63108600000001,32.8675],[-83.63087800000001,32.867713],[-83.630657,32.868003],[-83.63033,32.868464],[-83.62992600000001,32.869053],[-83.62974700000001,32.869321]]},"id":"8844c0a307fffff-13b72ced170fca98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629131,32.87069]},"id":"8f44c0a306ca60e-17d7507120b8bd9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306c5ad1-17ffaef020932189","8f44c0a306ca60e-17d7507120b8bd9d"]},"geometry":{"type":"LineString","coordinates":[[-83.62974700000001,32.869321],[-83.62958,32.869627],[-83.62945500000001,32.869881],[-83.629131,32.87069]]},"id":"8944c0a306fffff-17b74fbbc8402a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306ca60e-17d7507120b8bd9d","8f44c0a33c64502-17b73301998e5996"]},"geometry":{"type":"LineString","coordinates":[[-83.629131,32.87069],[-83.628348,32.872801],[-83.628169,32.873314],[-83.628111,32.873579],[-83.6280807,32.873917]]},"id":"8744c0a33ffffff-13bf31dbb647f4f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628073,32.874028]},"id":"8f44c0a33c644e3-17ff93066c1fb4d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33c644e3-17ff93066c1fb4d9","8f44c0a33c64502-17b73301998e5996"]},"geometry":{"type":"LineString","coordinates":[[-83.6280807,32.873917],[-83.628073,32.874028]]},"id":"8c44c0a33c645ff-17dfd30405652340"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6280802,32.8743987]},"id":"8f44c0a33c60198-13f73301e394a3ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33c60198-13f73301e394a3ff","8f44c0a33c644e3-17ff93066c1fb4d9"]},"geometry":{"type":"LineString","coordinates":[[-83.628073,32.874028],[-83.6280802,32.8743987]]},"id":"8a44c0a33c67fff-13ff730420199662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71942510000001,32.8611239]},"id":"8f44c0a250834a3-13fe73ff5805cebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250d6cc4-13b6f151cc1e1dfc","8f44c0a250834a3-13fe73ff5805cebb"]},"geometry":{"type":"LineString","coordinates":[[-83.71942510000001,32.8611239],[-83.720522,32.862446000000006]]},"id":"8844c0a251fffff-1397b2a89739a4ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250d6cc4-13b6f151cc1e1dfc","8f44c0a25392554-13ffab932621ca76"]},"geometry":{"type":"LineString","coordinates":[[-83.720522,32.862446000000006],[-83.721508,32.863602],[-83.722215,32.864446],[-83.722875,32.865225]]},"id":"8744c0a25ffffff-179e7e71913eb4d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759566,32.757769]},"id":"8f44c0b2ead2b0d-17b5f1ff461f0885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2eb8b11b-13dff113a0a70342","8f44c0b2ead2b0d-17b5f1ff461f0885"]},"geometry":{"type":"LineString","coordinates":[[-83.759566,32.757769],[-83.759646,32.757275],[-83.75980100000001,32.756416],[-83.759922,32.75567],[-83.75993700000001,32.755231],[-83.759943,32.753971]]},"id":"8844c0b2ebfffff-1797f15a18427fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7599409,32.7534847]},"id":"8f44c0b2eb88cd1-13bff114f08ebf88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2eb8b11b-13dff113a0a70342","8f44c0b2eb88cd1-13bff114f08ebf88"]},"geometry":{"type":"LineString","coordinates":[[-83.759943,32.753971],[-83.7599409,32.7534847]]},"id":"8a44c0b2eb8ffff-13d7f1144f222e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769569,32.754171]},"id":"8f44c0b2c78d516-13ddf9936b31d89d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c78d516-13ddf9936b31d89d","8f44c0b2c7a0a9a-17f5b9b34dab3e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.769569,32.754171],[-83.769518,32.75236]]},"id":"8944c0b2c7bffff-13b7f9a35f2ae834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c7a0a9a-17f5b9b34dab3e4f","8f44c0b2c4438a8-139fb9c60839cb3a"]},"geometry":{"type":"LineString","coordinates":[[-83.769518,32.75236],[-83.76948800000001,32.751085],[-83.76948800000001,32.750557]]},"id":"8744c0b2cffffff-17bdb9bf633fe887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25b73352-179f2d9d297cbfcb","8f44c0b564c6836-17be2ac281509fa7"]},"geometry":{"type":"LineString","coordinates":[[-83.73514700000001,32.859509],[-83.73448900000001,32.859527],[-83.73432100000001,32.859493],[-83.73423700000001,32.859451],[-83.734181,32.859405],[-83.734126,32.859336],[-83.734093,32.859273],[-83.734074,32.859206],[-83.734063,32.859008],[-83.73408500000001,32.857965],[-83.73410100000001,32.857774],[-83.734138,32.857642000000006],[-83.734194,32.857523],[-83.73429,32.857371],[-83.73438900000001,32.857258],[-83.734578,32.857098],[-83.734668,32.857038],[-83.734764,32.856986],[-83.735297,32.856743],[-83.73563700000001,32.856603],[-83.735882,32.856536000000006],[-83.73611000000001,32.856499],[-83.736316,32.856493]]},"id":"8644c0b57ffffff-13be2ebc49d6b548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b564ee4a3-17d6485407d51765","8f44c0b564c6836-17be2ac281509fa7"]},"geometry":{"type":"LineString","coordinates":[[-83.736316,32.856493],[-83.73664000000001,32.856543],[-83.73702300000001,32.856656],[-83.737312,32.856762]]},"id":"8944c0b564fffff-17f6f987d9d26447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56692681-13b74ace646f1e80","8f44c0a25b4a54d-13b78c186cfdd920"]},"geometry":{"type":"LineString","coordinates":[[-83.735769,32.861196],[-83.735815,32.861351],[-83.735859,32.861452],[-83.73592500000001,32.861578],[-83.73610400000001,32.861871],[-83.736188,32.862015],[-83.736231,32.862108],[-83.736259,32.862184],[-83.736288,32.862326],[-83.73629700000001,32.86245]]},"id":"8844c0a25bfffff-13bf1b63d4e7103a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736277,32.86298]},"id":"8f44c0a25a68981-17968adae7e81b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56692681-13b74ace646f1e80","8f44c0a25a68981-17968adae7e81b74"]},"geometry":{"type":"LineString","coordinates":[[-83.73629700000001,32.86245],[-83.73629600000001,32.862527],[-83.736277,32.862851],[-83.736277,32.86298]]},"id":"8944c0a25a7ffff-17deead58afa1b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73650400000001,32.862988]},"id":"8f44c0a25a6d51e-17978a4d040b6bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56692210-13b62a43aa2cbaf8","8f44c0a25a6d51e-17978a4d040b6bf5"]},"geometry":{"type":"LineString","coordinates":[[-83.73650400000001,32.862988],[-83.736513,32.862799],[-83.736519,32.862445]]},"id":"8844c0a25bfffff-17dfea4727bf901c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56692210-13b62a43aa2cbaf8","8f44c0a25b4a12b-13970bc407801917"]},"geometry":{"type":"LineString","coordinates":[[-83.736519,32.862445],[-83.736506,32.862313],[-83.73646400000001,32.862124],[-83.736413,32.86197],[-83.73633000000001,32.861783],[-83.736277,32.861705],[-83.73616700000001,32.861566],[-83.73602100000001,32.861368],[-83.735904,32.861160000000005]]},"id":"8844c0a25bfffff-1397cadf5e106ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0380276e-1396f8be47b0bed4","8f44c0b03814321-17deda2961eaff87"]},"geometry":{"type":"LineString","coordinates":[[-83.703793,32.77834],[-83.704374,32.779035]]},"id":"8944c0b0383ffff-17b7f973dd680432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706637,32.779891]},"id":"8f44c0b03870c8a-13b7f337e281b7a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03870c8a-13b7f337e281b7a5","8f44c0b0380276e-1396f8be47b0bed4"]},"geometry":{"type":"LineString","coordinates":[[-83.704374,32.779035],[-83.7046,32.779314],[-83.70466900000001,32.77939],[-83.704717,32.779429],[-83.70483800000001,32.779497],[-83.704992,32.779547],[-83.70639200000001,32.779846],[-83.706637,32.779891]]},"id":"8844c0b039fffff-13fff628e5a3d938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03870c8a-13b7f337e281b7a5","8f44c0b038719aa-13d751cf452ac1fa"]},"geometry":{"type":"LineString","coordinates":[[-83.706637,32.779891],[-83.706918,32.779977],[-83.70698300000001,32.780006],[-83.707068,32.780051],[-83.70721400000001,32.780146]]},"id":"8a44c0b03877fff-13fff27e375ee18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632695,32.844741]},"id":"8f44c0a346b5a65-13ff27bdac34ab54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346aa01e-13df061f49ab4c18","8f44c0a346b5a65-13ff27bdac34ab54"]},"geometry":{"type":"LineString","coordinates":[[-83.632695,32.844741],[-83.632828,32.845019300000004],[-83.633358,32.846128]]},"id":"8944c0a346bffff-13bf96ee761eff33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634575,32.846038]},"id":"8f44c0a3461ad8c-13b7c326a5f6f03a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3461ad8c-13b7c326a5f6f03a","8f44c0a346aa01e-13df061f49ab4c18"]},"geometry":{"type":"LineString","coordinates":[[-83.633358,32.846128],[-83.633396,32.846172],[-83.6334784,32.846196],[-83.63426700000001,32.846144],[-83.63442500000001,32.846097],[-83.634575,32.846038]]},"id":"8844c0a347fffff-13ff04a59d10943c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250f0cc6-13b72eb0a879735c","8f44c0a250b5313-17def339427bf3c3"]},"geometry":{"type":"LineString","coordinates":[[-83.71974200000001,32.859614],[-83.720174,32.860118],[-83.72136400000001,32.861531],[-83.72159900000001,32.8618]]},"id":"8844c0a251fffff-17f630f54e8c9192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a250f0cc6-13b72eb0a879735c","8f44c0a253b3554-13fef8ede15848d9"]},"geometry":{"type":"LineString","coordinates":[[-83.72159900000001,32.8618],[-83.723577,32.864147],[-83.7239586,32.864580700000005]]},"id":"8744c0a25ffffff-179e3bd1b3611b5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73197400000001,32.921236]},"id":"8f44c0a2804c42e-13be955c4c7473b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2804c42e-13be955c4c7473b4","8f44c0a28040166-1397f685cb787240"]},"geometry":{"type":"LineString","coordinates":[[-83.73197400000001,32.921236],[-83.731498,32.920563]]},"id":"8944c0a2807ffff-13fe35f10dd54b11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73132000000001,32.917242]},"id":"8f44c0a28155cf5-13fe56f50d5d5384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28155cf5-13fe56f50d5d5384","8f44c0a28040166-1397f685cb787240"]},"geometry":{"type":"LineString","coordinates":[[-83.731498,32.920563],[-83.731345,32.920321],[-83.73130300000001,32.920212],[-83.731266,32.920093],[-83.73124800000001,32.919942],[-83.73126,32.919469],[-83.73126900000001,32.918478],[-83.73128600000001,32.917929],[-83.73132000000001,32.917242]]},"id":"8844c0a281fffff-179ff7089d1ad821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b319a82-13b7be8b14835607","8f44c0b1b309100-13b6ab8da490605d"]},"geometry":{"type":"LineString","coordinates":[[-83.66923030000001,32.8390707],[-83.670455,32.839092]]},"id":"8944c0b1b33ffff-13bfed0c5f04abda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b309100-13b6ab8da490605d","8f44c0b1b362b86-13d7a6e2a6f49c56"]},"geometry":{"type":"LineString","coordinates":[[-83.670455,32.839092],[-83.67144900000001,32.839107],[-83.67236700000001,32.839129]]},"id":"8844c0b1b3fffff-13bee9382e82cda9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67308200000001,32.839149]},"id":"8f44c0b1b3656c5-13d6a523c261b7e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b362b86-13d7a6e2a6f49c56","8f44c0b1b3656c5-13d6a523c261b7e5"]},"geometry":{"type":"LineString","coordinates":[[-83.67236700000001,32.839129],[-83.67308200000001,32.839149]]},"id":"8a44c0b1b367fff-13dfe60336da0b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d90a23-13f7a256ef517fd2","8f44c0b1b3656c5-13d6a523c261b7e5"]},"geometry":{"type":"LineString","coordinates":[[-83.67308200000001,32.839149],[-83.67422900000001,32.839177]]},"id":"8744c0b1bffffff-13dee3bd5a808095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d90a23-13f7a256ef517fd2","8f44c0a26d82d0c-13ffa0e475c56737"]},"geometry":{"type":"LineString","coordinates":[[-83.67422900000001,32.839177],[-83.67482170000001,32.8391898]]},"id":"8944c0a26dbffff-13ffa19dacbb9233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6750971,32.8391958]},"id":"8f44c0a26d805b4-13f7e038574a4d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d805b4-13f7e038574a4d7b","8f44c0a26d82d0c-13ffa0e475c56737"]},"geometry":{"type":"LineString","coordinates":[[-83.67482170000001,32.8391898],[-83.6750971,32.8391958]]},"id":"8a44c0a26d87fff-13ffa08e6156cc0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6756605,32.839208]},"id":"8f44c0a26d85450-13ff9ed83c1c7299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d85450-13ff9ed83c1c7299","8f44c0a26d805b4-13f7e038574a4d7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6750971,32.8391958],[-83.675385,32.839202],[-83.6756605,32.839208]]},"id":"8a44c0a26d87fff-13f7bf8848aee01d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6760168,32.839217500000004]},"id":"8f44c0a26d85a1d-13fefdf98a58d4fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d85450-13ff9ed83c1c7299","8f44c0a26d85a1d-13fefdf98a58d4fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6756605,32.839208],[-83.675842,32.839212],[-83.6760168,32.839217500000004]]},"id":"8b44c0a26d85fff-13ffbe68d2f2bb6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766405,32.839269200000004]},"id":"8f44c0a26da8c66-139fdc73bb47b013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d85a1d-13fefdf98a58d4fd","8f44c0a26da8c66-139fdc73bb47b013"]},"geometry":{"type":"LineString","coordinates":[[-83.6760168,32.839217500000004],[-83.676257,32.839225],[-83.67641,32.839238],[-83.676451,32.839241],[-83.6766405,32.839269200000004]]},"id":"8a44c0a26daffff-139e9d3626144ac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26dad353-139f9ae5c50dae60","8f44c0a26da8c66-139fdc73bb47b013"]},"geometry":{"type":"LineString","coordinates":[[-83.6766405,32.839269200000004],[-83.676659,32.839272],[-83.67686400000001,32.839314],[-83.677099,32.839376],[-83.6772772,32.839442500000004]]},"id":"8a44c0a26daffff-13de9baad47875cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26dad353-139f9ae5c50dae60","8f44c0a26d1aa22-13ff99df62fb99d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6772772,32.839442500000004],[-83.67742600000001,32.839498],[-83.67769700000001,32.839624]]},"id":"8944c0a26d3ffff-13d7fa619cad8213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d1aa22-13ff99df62fb99d1","8f44c0a26d1b96d-17fe98f3261b9c78"]},"geometry":{"type":"LineString","coordinates":[[-83.67769700000001,32.839624],[-83.678075,32.839796]]},"id":"8a44c0a26d1ffff-17b6d969481a7745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26c24843-179ff70cee2873c6","8f44c0a26d1b96d-17fe98f3261b9c78"]},"geometry":{"type":"LineString","coordinates":[[-83.678075,32.839796],[-83.678267,32.839886],[-83.67845600000001,32.839967],[-83.67868,32.84004],[-83.678853,32.840083]]},"id":"8944c0a26d3ffff-17deb80392a467f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26c24843-179ff70cee2873c6","8f44c0a26d4c0c5-13bf8f8a69bd6365"]},"geometry":{"type":"LineString","coordinates":[[-83.678853,32.840083],[-83.679658,32.840288],[-83.67985,32.840342],[-83.680031,32.840407],[-83.68032600000001,32.840525],[-83.680474,32.840593000000005],[-83.680608,32.840662],[-83.680857,32.840806],[-83.681126,32.840983],[-83.68192900000001,32.841544]]},"id":"8844c0a26dfffff-1796d3268b2a695a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26891d49-17be8d79a406c753","8f44c0a26d4c0c5-13bf8f8a69bd6365"]},"geometry":{"type":"LineString","coordinates":[[-83.68192900000001,32.841544],[-83.68196900000001,32.841665],[-83.682113,32.841862],[-83.682372,32.84228],[-83.682512,32.842585],[-83.682775,32.843184]]},"id":"8744c0a26ffffff-13b7fe749ddba812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26891d49-17be8d79a406c753","8f44c0a26891301-17d7ed3761d181fe"]},"geometry":{"type":"LineString","coordinates":[[-83.682775,32.843184],[-83.68288100000001,32.843423]]},"id":"8b44c0a26891fff-17febd588308c85a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2689c651-17de8ccaa491aca2","8f44c0a26891301-17d7ed3761d181fe"]},"geometry":{"type":"LineString","coordinates":[[-83.68288100000001,32.843423],[-83.68298100000001,32.843632],[-83.68305500000001,32.84384]]},"id":"8944c0a268bffff-17d6ccfd90c66afc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68347200000001,32.844683]},"id":"8f44c0a2612459c-13d6ebc60e5a6171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2612459c-13d6ebc60e5a6171","8f44c0a2689c651-17de8ccaa491aca2"]},"geometry":{"type":"LineString","coordinates":[[-83.68305500000001,32.84384],[-83.683261,32.844248],[-83.683401,32.844566],[-83.68347200000001,32.844683]]},"id":"8844c0a269fffff-17d68c491aeb20ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2612459c-13d6ebc60e5a6171","8f44c0a2612e862-139eea7b6f68204c"]},"geometry":{"type":"LineString","coordinates":[[-83.68347200000001,32.844683],[-83.683524,32.844825],[-83.683628,32.845049],[-83.68383200000001,32.845508],[-83.683915,32.845675],[-83.68400100000001,32.845819]]},"id":"8944c0a2613ffff-13bfcb28de2a1758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68529600000001,32.846994]},"id":"8f44c0a268db6e3-17ffc7520b261459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a268db6e3-17ffc7520b261459","8f44c0a2612e862-139eea7b6f68204c"]},"geometry":{"type":"LineString","coordinates":[[-83.68400100000001,32.845819],[-83.684137,32.846004],[-83.68435500000001,32.846289],[-83.68477800000001,32.846651],[-83.68506000000001,32.846846],[-83.68529600000001,32.846994]]},"id":"8844c0a261fffff-17bff904018ff31d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a268db6e3-17ffc7520b261459","8f44c0a26b9a9a3-13dfe1a626ec70a7"]},"geometry":{"type":"LineString","coordinates":[[-83.68529600000001,32.846994],[-83.68646600000001,32.847605],[-83.686728,32.847747000000005],[-83.687025,32.847934],[-83.6872,32.848077],[-83.687379,32.84825],[-83.687517,32.848419],[-83.68761900000001,32.848563]]},"id":"8744c0a26ffffff-17bfb4512ecbde3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6879091,32.8490911]},"id":"8f44c0a26b9b003-139ff0f0d23d2fa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b9b003-139ff0f0d23d2fa7","8f44c0a26b9a9a3-13dfe1a626ec70a7"]},"geometry":{"type":"LineString","coordinates":[[-83.68761900000001,32.848563],[-83.68777060000001,32.8488443],[-83.68783420000001,32.8489576],[-83.6879091,32.8490911]]},"id":"8a44c0a26b9ffff-13f7d14c352f77ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670454,32.826028]},"id":"8f44c0b1b82ed4a-13dfab8e4dd24bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8242ed-13d6eb8a809e9af2","8f44c0b1b82ed4a-13dfab8e4dd24bd4"]},"geometry":{"type":"LineString","coordinates":[[-83.670454,32.826028],[-83.67046,32.825198]]},"id":"8944c0b1b83ffff-13deab8c6e334c73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8242ed-13d6eb8a809e9af2","8f44c0b1b90a009-17d7eb74aa0094a8"]},"geometry":{"type":"LineString","coordinates":[[-83.67046,32.825198],[-83.670474,32.82462],[-83.670495,32.824579]]},"id":"8844c0b1b9fffff-1397eb855de7655e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b90e051-17beab236e5bfb32","8f44c0b1b90aa22-17beab07e5eab002"]},"geometry":{"type":"LineString","coordinates":[[-83.670669,32.824545],[-83.670625,32.824164]]},"id":"8a44c0b1b90ffff-17b7bb15a42e16f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b90e051-17beab236e5bfb32","8f44c0b1b904230-139feb4fc059f151"]},"geometry":{"type":"LineString","coordinates":[[-83.670625,32.824164],[-83.670552,32.823783],[-83.67055400000001,32.823059]]},"id":"8944c0b1b93ffff-17f6ab48abc93d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b904350-139eab2f412d096f","8f44c0b1829bb4e-13d6ab236837475e"]},"geometry":{"type":"LineString","coordinates":[[-83.670606,32.823057],[-83.670625,32.821745]]},"id":"8744c0b18ffffff-13f6ab2954a56a01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670685,32.820214]},"id":"8f44c0b18282d2c-179feafdebba8420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18282d2c-179feafdebba8420","8f44c0b1829bb4e-13d6ab236837475e"]},"geometry":{"type":"LineString","coordinates":[[-83.670625,32.821745],[-83.670685,32.820214]]},"id":"8944c0b182bffff-17febb10a1d88e60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8515ab-139eea99e7217e87","8f44c0b1b85aae9-1797ea2aa38d6039"]},"geometry":{"type":"LineString","coordinates":[[-83.671023,32.829827],[-83.67098700000001,32.829552],[-83.67089200000001,32.829028],[-83.670845,32.828823]]},"id":"8944c0b1b87ffff-13d7ba5cd51c8240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8515ab-139eea99e7217e87","8f44c0b1b80daf0-17bfaad90d4aee27"]},"geometry":{"type":"LineString","coordinates":[[-83.670845,32.828823],[-83.67082900000001,32.828535],[-83.670744,32.827413]]},"id":"8844c0b1b9fffff-17f7aab80babffb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670705,32.826031]},"id":"8f44c0b1b82c599-13dfeaf16ea06928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b82c599-13dfeaf16ea06928","8f44c0b1b80daf0-17bfaad90d4aee27"]},"geometry":{"type":"LineString","coordinates":[[-83.670744,32.827413],[-83.670726,32.826965],[-83.670705,32.826031]]},"id":"8944c0b1b83ffff-17fffae6ef02988a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66813900000001,32.80605]},"id":"8f44c0b18c73aa3-1397f1352096a285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66852800000001,32.807479]},"id":"8f44c0b18c5d12c-1796f042005971c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c5d12c-1796f042005971c0","8f44c0b18c73aa3-1397f1352096a285"]},"geometry":{"type":"LineString","coordinates":[[-83.66813900000001,32.80605],[-83.66817800000001,32.806731],[-83.668183,32.806924],[-83.668189,32.80699],[-83.66821900000001,32.807069000000006],[-83.668283,32.80717],[-83.668429,32.807346],[-83.66852800000001,32.807479]]},"id":"8944c0b18c7ffff-13deb0f894bef3d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671125,32.807349]},"id":"8f44c0b1889b465-17b7a9eae2d2d21c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c5d12c-1796f042005971c0","8f44c0b1889b465-17b7a9eae2d2d21c"]},"geometry":{"type":"LineString","coordinates":[[-83.66852800000001,32.807479],[-83.668918,32.807668],[-83.669122,32.807751],[-83.66931100000001,32.807806],[-83.669447,32.807834],[-83.669674,32.807851],[-83.66991300000001,32.807848],[-83.670074,32.807837],[-83.67027200000001,32.807811],[-83.67041800000001,32.807775],[-83.670546,32.807734],[-83.670634,32.807693],[-83.67080100000001,32.807606],[-83.670917,32.807524],[-83.671125,32.807349]]},"id":"8744c0b18ffffff-1796fd0719e80305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671294,32.806027]},"id":"8f44c0b18891864-13f6e9814e6d34f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1889b465-17b7a9eae2d2d21c","8f44c0b18891864-13f6e9814e6d34f9"]},"geometry":{"type":"LineString","coordinates":[[-83.671125,32.807349],[-83.671369,32.807057],[-83.671406,32.807001],[-83.671428,32.806952],[-83.671445,32.806897],[-83.671453,32.806849],[-83.67144900000001,32.806759],[-83.671423,32.806649],[-83.67135300000001,32.806409],[-83.671315,32.806202],[-83.671294,32.806027]]},"id":"8844c0b189fffff-13beb9610f3643ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5687999,32.8013812]},"id":"8f44c0b8531bc94-179fe3bc1b69c324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5686321,32.8012619]},"id":"8f44c0b8531a0ec-17d7b424f8303347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8531bc94-179fe3bc1b69c324","8f44c0b8531a0ec-17d7b424f8303347"]},"geometry":{"type":"LineString","coordinates":[[-83.5687999,32.8013812],[-83.5686321,32.8012619]]},"id":"8a44c0b8531ffff-17ffa3f080b65709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5612103,32.7986528]},"id":"8f44c0b85723896-17f7b64390a54b05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85723896-17f7b64390a54b05","8f44c0b8531a0ec-17d7b424f8303347"]},"geometry":{"type":"LineString","coordinates":[[-83.5686321,32.8012619],[-83.56854200000001,32.801205800000005],[-83.568229,32.801042],[-83.567868,32.800781],[-83.567671,32.800599000000005],[-83.567655,32.800584],[-83.56750600000001,32.800437],[-83.56736000000001,32.800268],[-83.567237,32.800096],[-83.567116,32.799891],[-83.56702700000001,32.79972],[-83.56689300000001,32.79937],[-83.56680700000001,32.798879],[-83.566771,32.798468],[-83.56674500000001,32.797998],[-83.56674100000001,32.797918],[-83.566714,32.797572],[-83.566668,32.797265],[-83.566512,32.796868],[-83.56627800000001,32.79649],[-83.566038,32.796165],[-83.565735,32.795872],[-83.5654056,32.7955812],[-83.5652512,32.7954876],[-83.565177,32.7954808],[-83.5650603,32.7955008],[-83.5649582,32.7955508],[-83.564642,32.79582],[-83.563591,32.796691],[-83.56346,32.796798],[-83.561459,32.798444],[-83.5612103,32.7986528]]},"id":"8744c0b85ffffff-17ffec3d26d83457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85723896-17f7b64390a54b05","8f44c0b85700cda-13ffb809831302b0"]},"geometry":{"type":"LineString","coordinates":[[-83.5612103,32.7986528],[-83.56069210000001,32.7990877],[-83.560484,32.799253]]},"id":"8944c0b8573ffff-13b7f7258355656e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85700cda-13ffb809831302b0","8f44c0b85702759-13bfb900d5d1d974"]},"geometry":{"type":"LineString","coordinates":[[-83.560484,32.799253],[-83.5600883,32.7995818]]},"id":"8a44c0b85707fff-13d7f88532d495fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85702759-13bfb900d5d1d974","8f44c0b8578a2e3-17dfff6fe0d6381f"]},"geometry":{"type":"LineString","coordinates":[[-83.5600883,32.7995818],[-83.56005800000001,32.799607],[-83.559346,32.800196],[-83.55905,32.800421],[-83.55876400000001,32.800621],[-83.55782500000001,32.801223],[-83.55745300000001,32.8014573]]},"id":"8844c0b857fffff-179fbc27081735b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b856a606c-17bfc0e4c3818095","8f44c0b8578a2e3-17dfff6fe0d6381f"]},"geometry":{"type":"LineString","coordinates":[[-83.55745300000001,32.8014573],[-83.5568564,32.801833200000004]]},"id":"8844c0b857fffff-17d7d02a54fb59ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b856b525a-13ffd1fec07f4d89","8f44c0b856a606c-17bfc0e4c3818095"]},"geometry":{"type":"LineString","coordinates":[[-83.5568564,32.801833200000004],[-83.5564052,32.8021173]]},"id":"8944c0b856bffff-1397d171c5265b11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b856b525a-13ffd1fec07f4d89","8f44c0b85692286-13bfc658a92cdaf5"]},"geometry":{"type":"LineString","coordinates":[[-83.5564052,32.8021173],[-83.554623,32.80324]]},"id":"8644c0b87ffffff-13dff42bbb3746ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5537008,32.803821400000004]},"id":"8f44c0b80a45ad9-1797e899063dbc80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80a45ad9-1797e899063dbc80","8f44c0b85692286-13bfc658a92cdaf5"]},"geometry":{"type":"LineString","coordinates":[[-83.554623,32.80324],[-83.553909,32.80369],[-83.5537008,32.803821400000004]]},"id":"8944c0b80a7ffff-13dfe778d543b3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55282340000001,32.804375300000004]},"id":"8f44c0b80a43630-17ffdabd69cdd109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80a45ad9-1797e899063dbc80","8f44c0b80a43630-17ffdabd69cdd109"]},"geometry":{"type":"LineString","coordinates":[[-83.5537008,32.803821400000004],[-83.55282340000001,32.804375300000004]]},"id":"8a44c0b80a47fff-17d7c9ab32842d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55184080000001,32.804995600000005]},"id":"8f44c0b80a5a764-17f7cd2389809f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80a5a764-17f7cd2389809f80","8f44c0b80a43630-17ffdabd69cdd109"]},"geometry":{"type":"LineString","coordinates":[[-83.55282340000001,32.804375300000004],[-83.55184080000001,32.804995600000005]]},"id":"8944c0b80a7ffff-17b7fbf07292a85b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81db681e-13bfee5dce38a78f","8f44c0b80a5a764-17f7cd2389809f80"]},"geometry":{"type":"LineString","coordinates":[[-83.55184080000001,32.804995600000005],[-83.551338,32.805313000000005]]},"id":"8844c0b80bfffff-17d7fdc0a51dd823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81db681e-13bfee5dce38a78f","8f44c0b80355074-17d7f65f2ddb84de"]},"geometry":{"type":"LineString","coordinates":[[-83.551338,32.805313000000005],[-83.54805900000001,32.807381]]},"id":"8744c0b80ffffff-13bff25e7dd9930b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80355616-179fd6d06c4a0aa5","8f44c0b80355074-17d7f65f2ddb84de"]},"geometry":{"type":"LineString","coordinates":[[-83.54805900000001,32.807381],[-83.54787780000001,32.8074953]]},"id":"8b44c0b80355fff-17fff697c33b6fc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80355616-179fd6d06c4a0aa5","8f44c0b8020ed0c-13fffc2bcdae21a7"]},"geometry":{"type":"LineString","coordinates":[[-83.54787780000001,32.8074953],[-83.5456836,32.8088799]]},"id":"8844c0b803fffff-17bfd97e15124c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54469730000001,32.809502300000005]},"id":"8f44c0b802186e9-13f7fe943524e8c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b802186e9-13f7fe943524e8c4","8f44c0b8020ed0c-13fffc2bcdae21a7"]},"geometry":{"type":"LineString","coordinates":[[-83.5456836,32.8088799],[-83.54469730000001,32.809502300000005]]},"id":"8944c0b8023ffff-13b7fd5ff0391585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54449120000001,32.809632300000004]},"id":"8f44c0b8021b522-13d7ff1503843e6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b802186e9-13f7fe943524e8c4","8f44c0b8021b522-13d7ff1503843e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.54469730000001,32.809502300000005],[-83.54449120000001,32.809632300000004]]},"id":"8a44c0b8021ffff-139fded496224019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b802f6ac3-13bff09a4e1f7c70","8f44c0b8021b522-13d7ff1503843e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.54449120000001,32.809632300000004],[-83.54386840000001,32.8100253]]},"id":"8844c0b803fffff-13bfdfd7a3f96c96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b802f6ac3-13bff09a4e1f7c70","8f44c0b8028b344-17ffe345649b546b"]},"geometry":{"type":"LineString","coordinates":[[-83.54386840000001,32.8100253],[-83.54277540000001,32.810715]]},"id":"8844c0b803fffff-1797f1efda0ba36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b83915b1b-13bff87762fa017e","8f44c0b8028b344-17ffe345649b546b"]},"geometry":{"type":"LineString","coordinates":[[-83.54277540000001,32.810715],[-83.54168200000001,32.811405],[-83.54150800000001,32.8115],[-83.541278,32.811611],[-83.541042,32.811709],[-83.54083700000001,32.811781],[-83.54064740000001,32.8118491]]},"id":"8744c0b80ffffff-17fff5cec4045037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a360b665b-17ff77a741f77674","8f44c0a3654952a-179ff950e4c11c0f"]},"geometry":{"type":"LineString","coordinates":[[-83.61307000000001,32.843082],[-83.61238900000001,32.843334]]},"id":"8744c0a36ffffff-17bf387c12ddeded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611672,32.843607]},"id":"8f44c0a3646416a-17b77b11098ec1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3654952a-179ff950e4c11c0f","8f44c0a3646416a-17b77b11098ec1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.61238900000001,32.843334],[-83.611672,32.843607]]},"id":"8944c0a3657ffff-17f73a30f0813bd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610304,32.844133]},"id":"8f44c0a3647026e-17ff3e680b8687da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3647026e-17ff3e680b8687da","8f44c0a3646416a-17b77b11098ec1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.611672,32.843607],[-83.610304,32.844133]]},"id":"8844c0a365fffff-17dffcbc810d2fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36456b15-17f760f7f343f2c0","8f44c0a3647026e-17ff3e680b8687da"]},"geometry":{"type":"LineString","coordinates":[[-83.610304,32.844133],[-83.60978300000001,32.844335],[-83.6092545,32.8445302]]},"id":"8944c0a3647ffff-17ffbfaf88724055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63484070000001,32.8351866]},"id":"8f44c0a34cdb484-13b7a2809fcac60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34cdb484-13b7a2809fcac60a","8f44c0a34570022-13f7135963fddfed"]},"geometry":{"type":"LineString","coordinates":[[-83.6344938,32.8357121],[-83.6345254,32.8355812],[-83.63484070000001,32.8351866]]},"id":"8944c0a3457ffff-13d782f9f90617eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34cdb484-13b7a2809fcac60a","8f44c0a34cdc2f5-179f2123a28b603a"]},"geometry":{"type":"LineString","coordinates":[[-83.63484070000001,32.8351866],[-83.635287,32.83465],[-83.635399,32.834525]]},"id":"8a44c0a34cdffff-13d7e1d34e55e53b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628753,32.842382]},"id":"8f44c0a36b0dad1-13bfd15d6cbb0115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36b0dad1-13bfd15d6cbb0115","8f44c0a36b2985c-1397efef24dc1471"]},"geometry":{"type":"LineString","coordinates":[[-83.628753,32.842382],[-83.629339,32.841683]]},"id":"8944c0a36b3ffff-13df50a64985ed4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629861,32.841064]},"id":"8f44c0a344de98a-17970ea8e9e1bff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36b2985c-1397efef24dc1471","8f44c0a344de98a-17970ea8e9e1bff6"]},"geometry":{"type":"LineString","coordinates":[[-83.629339,32.841683],[-83.629861,32.841064]]},"id":"8644c0a37ffffff-13d77f4c04007ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344c66f0-17f7ed5a83a94520","8f44c0a344de98a-17970ea8e9e1bff6"]},"geometry":{"type":"LineString","coordinates":[[-83.629861,32.841064],[-83.630396,32.840435]]},"id":"8944c0a344fffff-17bf7e01ba038b0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344c66f0-17f7ed5a83a94520","8f44c0a344c60e4-179f4d0c5b3bcef1"]},"geometry":{"type":"LineString","coordinates":[[-83.630396,32.840435],[-83.63052110000001,32.840285200000004]]},"id":"8b44c0a344c6fff-17df1d3367d6cd5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63091800000001,32.83981]},"id":"8f44c0a344f1b60-17f74c144027f1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344f1b60-17f74c144027f1be","8f44c0a344c60e4-179f4d0c5b3bcef1"]},"geometry":{"type":"LineString","coordinates":[[-83.63052110000001,32.840285200000004],[-83.63091800000001,32.83981]]},"id":"8944c0a344fffff-1797cc904d8aadea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63105,32.839657]},"id":"8f44c0a344e2194-1797abc1cb6b3ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e2194-1797abc1cb6b3ed9","8f44c0a344f1b60-17f74c144027f1be"]},"geometry":{"type":"LineString","coordinates":[[-83.63091800000001,32.83981],[-83.63105,32.839657]]},"id":"8b44c0a344e2fff-17d77beb006988f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e2194-1797abc1cb6b3ed9","8f44c0a344e6a90-13bf8b0dcfd7186f"]},"geometry":{"type":"LineString","coordinates":[[-83.63105,32.839657],[-83.631338,32.839319200000006]]},"id":"8a44c0a344e7fff-13bf1b67cdaf0588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e6a90-13bf8b0dcfd7186f","8f44c0a344e45ac-13bf9a9d32296d69"]},"geometry":{"type":"LineString","coordinates":[[-83.631338,32.839319200000006],[-83.63151810000001,32.839108100000004]]},"id":"8a44c0a344e7fff-13ff9ad572a0a4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63157700000001,32.839039]},"id":"8f44c0a344e4c85-139f6a78611709d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e4c85-139f6a78611709d9","8f44c0a344e45ac-13bf9a9d32296d69"]},"geometry":{"type":"LineString","coordinates":[[-83.63151810000001,32.839108100000004],[-83.63157700000001,32.839039]]},"id":"8b44c0a344e4fff-13b70a8ac7b657fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344e4c85-139f6a78611709d9","8f44c0a3440a724-13f769f882c19c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.63157700000001,32.839039],[-83.63178160000001,32.8387942]]},"id":"8944c0a3443ffff-13d7ea387cd530c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632081,32.838436]},"id":"8f44c0a3440e308-1397893d6eaa1ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3440e308-1397893d6eaa1ba2","8f44c0a3440a724-13f769f882c19c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.63178160000001,32.8387942],[-83.63202980000001,32.8384972],[-83.632081,32.838436]]},"id":"8a44c0a3440ffff-1397799af35d1740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63261510000001,32.837815]},"id":"8f44c0a3442a046-179767ef9eb6d504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3440e308-1397893d6eaa1ba2","8f44c0a3442a046-179767ef9eb6d504"]},"geometry":{"type":"LineString","coordinates":[[-83.632081,32.838436],[-83.6321384,32.838369300000004],[-83.63261510000001,32.837815]]},"id":"8944c0a3443ffff-13d77896774988de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3442a046-179767ef9eb6d504","8f44c0a3442c883-17f78683e70f4c96"]},"geometry":{"type":"LineString","coordinates":[[-83.63261510000001,32.837815],[-83.63312780000001,32.8372076],[-83.63319700000001,32.8371256]]},"id":"8a44c0a3442ffff-17bff739b43032a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656711,32.828646]},"id":"8f44c0b1b52399a-13bfcd1bac33b73b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b52399a-13bfcd1bac33b73b","8f44c0b1b521ba0-13b6eba542b7f37a"]},"geometry":{"type":"LineString","coordinates":[[-83.656711,32.828646],[-83.65731000000001,32.828651]]},"id":"8a44c0b1b527fff-13b7dc6079e10a51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bcc2555-13d7e7f80fb5e662","8f44c0b1b521ba0-13b6eba542b7f37a"]},"geometry":{"type":"LineString","coordinates":[[-83.65731000000001,32.828651],[-83.658325,32.828665],[-83.658816,32.828677]]},"id":"8844c0b1bdfffff-13bfe9ceadb10e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bcc2555-13d7e7f80fb5e662","8f44c0b1bcea81c-13d6c42f4f433195"]},"geometry":{"type":"LineString","coordinates":[[-83.658816,32.828677],[-83.66036600000001,32.828702]]},"id":"8944c0b1bcfffff-13def613a4ebe965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bcea81c-13d6c42f4f433195","8f44c0b1bced718-13dfc24f460266c6"]},"geometry":{"type":"LineString","coordinates":[[-83.66036600000001,32.828702],[-83.661134,32.828716]]},"id":"8a44c0b1bceffff-13d7e33f460f864c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704442,32.786744]},"id":"8f44c0b03a94758-13f75893c923cf14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70402200000001,32.784694]},"id":"8f44c0b0316e46b-17f7d99a44023b20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0316e46b-17f7d99a44023b20","8f44c0b03a94758-13f75893c923cf14"]},"geometry":{"type":"LineString","coordinates":[[-83.704442,32.786744],[-83.704475,32.786588],[-83.70458,32.785694],[-83.70458400000001,32.785589],[-83.704575,32.785536],[-83.704552,32.785489000000005],[-83.704441,32.785314],[-83.704222,32.784985],[-83.70402200000001,32.784694]]},"id":"8744c0b03ffffff-13d6f89e427b37b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703411,32.783555]},"id":"8f44c0b03166559-139ffb1822de0685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03166559-139ffb1822de0685","8f44c0b0316e46b-17f7d99a44023b20"]},"geometry":{"type":"LineString","coordinates":[[-83.70402200000001,32.784694],[-83.70362300000001,32.784098],[-83.703542,32.783952],[-83.70348700000001,32.783823000000005],[-83.703456,32.783732],[-83.703411,32.783555]]},"id":"8944c0b0317ffff-179f7a71221b1416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70406,32.78203]},"id":"8f44c0b038c0289-17f6d98289e2f026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038c0289-17f6d98289e2f026","8f44c0b03166559-139ffb1822de0685"]},"geometry":{"type":"LineString","coordinates":[[-83.703411,32.783555],[-83.703399,32.78338],[-83.703398,32.783246000000005],[-83.70341400000001,32.783102],[-83.703438,32.782984],[-83.70347100000001,32.782865],[-83.703518,32.782729],[-83.703576,32.782615],[-83.70363800000001,32.782511],[-83.70372,32.782392],[-83.703776,32.782324],[-83.70406,32.78203]]},"id":"8744c0b03ffffff-139e7aa03d840f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704631,32.786761]},"id":"8f44c0b03a94358-13fff81dae24b95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704194,32.784611000000005]},"id":"8f44c0b0316e170-17bff92ec418a2bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a94358-13fff81dae24b95e","8f44c0b0316e170-17bff92ec418a2bc"]},"geometry":{"type":"LineString","coordinates":[[-83.704631,32.786761],[-83.70464100000001,32.786611],[-83.70475900000001,32.785589],[-83.70476000000001,32.7855],[-83.704745,32.785454],[-83.704689,32.785344],[-83.704243,32.784675],[-83.704194,32.784611000000005]]},"id":"8744c0b03ffffff-13b6782f79c57405"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0316e170-17bff92ec418a2bc","8f44c0b038c142c-17b6f91de6f9bb29"]},"geometry":{"type":"LineString","coordinates":[[-83.704194,32.784611000000005],[-83.70407300000001,32.784419],[-83.70381400000001,32.784038],[-83.70373000000001,32.783898],[-83.703694,32.783822],[-83.70364000000001,32.783667],[-83.70362200000001,32.783599],[-83.703603,32.783472],[-83.703596,32.783277000000005],[-83.703601,32.78318],[-83.703614,32.783085],[-83.703629,32.783014],[-83.703652,32.782932],[-83.70371700000001,32.782762000000005],[-83.703761,32.782677],[-83.703817,32.782581],[-83.70393800000001,32.782421],[-83.70412,32.782232],[-83.704221,32.782139]]},"id":"8744c0b03ffffff-139ffa164c8f51b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1124810b-13f7f64c4e8d757d","8f44c0b1c512c10-1397f65a09a50593"]},"geometry":{"type":"LineString","coordinates":[[-83.666054,32.785747],[-83.66608500000001,32.785936],[-83.66611300000001,32.78615],[-83.666122,32.786271],[-83.66611900000001,32.786333],[-83.666032,32.786819]]},"id":"8744c0b1cffffff-13d7f63809910e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c5a1a5e-13f6b6b7c91b33ba","8f44c0b1c512c10-1397f65a09a50593"]},"geometry":{"type":"LineString","coordinates":[[-83.666032,32.786819],[-83.66600000000001,32.786957],[-83.665965,32.787047],[-83.66592700000001,32.7871],[-83.66588200000001,32.787152]]},"id":"8944c0b1c5bffff-13fff67e0d3c19c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76700100000001,32.770061000000005]},"id":"8f44c0b28084da1-13bdbfd86910264d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77001200000001,32.770069]},"id":"8f44c0b28002aa4-13bdb87e8b62bf0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28002aa4-13bdb87e8b62bf0f","8f44c0b28084da1-13bdbfd86910264d"]},"geometry":{"type":"LineString","coordinates":[[-83.76700100000001,32.770061000000005],[-83.77001200000001,32.770069]]},"id":"8844c0b281fffff-13bfbc2b7107e90f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28002aa4-13bdb87e8b62bf0f","8f44c0b2812906c-13b5b151aab2e993"]},"geometry":{"type":"LineString","coordinates":[[-83.77001200000001,32.770069],[-83.77259600000001,32.770077],[-83.773049,32.770072],[-83.77309500000001,32.770079],[-83.773151,32.7701],[-83.77318700000001,32.770092000000005],[-83.773195,32.770063],[-83.773188,32.770046],[-83.77316,32.770004],[-83.773166,32.768374],[-83.77315700000001,32.76821],[-83.773128,32.767988],[-83.77311900000001,32.767944],[-83.773042,32.767677],[-83.772951,32.767412]]},"id":"8844c0b281fffff-13b5b2e2ea86474e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74656300000001,32.85246]},"id":"8f44c0b5611e323-13d7f1be20746d5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56c1d2f0-13fdfc222dc46d5f","8f44c0b5611e323-13d7f1be20746d5a"]},"geometry":{"type":"LineString","coordinates":[[-83.74656300000001,32.85246],[-83.745305,32.852432],[-83.744827,32.852418],[-83.74467800000001,32.852395],[-83.74455400000001,32.852323000000005],[-83.74424400000001,32.852065],[-83.74342700000001,32.851349],[-83.74332600000001,32.851261],[-83.743183,32.851129],[-83.74302300000001,32.850955],[-83.742858,32.850726],[-83.74263400000001,32.850291],[-83.74246500000001,32.849936],[-83.74231,32.849525],[-83.74226900000001,32.849306],[-83.74226300000001,32.849001],[-83.74230700000001,32.848225]]},"id":"8744c0b56ffffff-17ddf89c35fd7431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7423449,32.847578500000004]},"id":"8f44c0b56c03189-17fdfc0a738c21cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56c03189-17fdfc0a738c21cf","8f44c0b56c1d2f0-13fdfc222dc46d5f"]},"geometry":{"type":"LineString","coordinates":[[-83.74230700000001,32.848225],[-83.7423449,32.847578500000004]]},"id":"8944c0b56c3ffff-13b7fc164c9f595c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702042,32.870437]},"id":"8f44c0a20385a6b-17b77e6fccc67093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70249700000001,32.870151]},"id":"8f44c0a203ac4aa-17967d5361e7ab6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20385a6b-17b77e6fccc67093","8f44c0a203ac4aa-17967d5361e7ab6d"]},"geometry":{"type":"LineString","coordinates":[[-83.702042,32.870437],[-83.70214200000001,32.870317],[-83.702235,32.870252],[-83.702323,32.87021],[-83.702403,32.870179],[-83.70249700000001,32.870151]]},"id":"8a44c0a203affff-17de5ded3be42b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703264,32.86948]},"id":"8f44c0a20310c08-17f75b740a3be705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a203ac4aa-17967d5361e7ab6d","8f44c0a20310c08-17f75b740a3be705"]},"geometry":{"type":"LineString","coordinates":[[-83.70249700000001,32.870151],[-83.702746,32.870064],[-83.70290700000001,32.869988],[-83.702978,32.869946],[-83.703052,32.869887],[-83.70310500000001,32.869824],[-83.703147,32.869753],[-83.703264,32.86948]]},"id":"8844c0a203fffff-17f65c3987b773e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70236,32.866839]},"id":"8f44c0a2004491b-17fe7da90fc81247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2004491b-17fe7da90fc81247","8f44c0a20310c08-17f75b740a3be705"]},"geometry":{"type":"LineString","coordinates":[[-83.703264,32.86948],[-83.703534,32.868834],[-83.70363800000001,32.868566],[-83.703681,32.868436],[-83.703702,32.868319],[-83.70370100000001,32.868195],[-83.70367800000001,32.868031],[-83.703637,32.867913],[-83.703539,32.867672],[-83.703356,32.867283],[-83.70330700000001,32.867216],[-83.70322200000001,32.867122],[-83.70307100000001,32.867029],[-83.702993,32.867002],[-83.70280000000001,32.866949000000005],[-83.70236,32.866839]]},"id":"8744c0a20ffffff-139f5b4e06752818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700552,32.866784]},"id":"8f44c0a20009649-17de62130adf9a0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20009649-17de62130adf9a0c","8f44c0a2004491b-17fe7da90fc81247"]},"geometry":{"type":"LineString","coordinates":[[-83.70236,32.866839],[-83.701908,32.86683],[-83.70068,32.866785],[-83.700552,32.866784]]},"id":"8944c0a2007ffff-17dfffde0ec73a1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66861200000001,32.808888]},"id":"8f44c0b181a02b1-13f7b00d8f108e93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c5d12c-1796f042005971c0","8f44c0b181a02b1-13f7b00d8f108e93"]},"geometry":{"type":"LineString","coordinates":[[-83.66861200000001,32.808888],[-83.66858500000001,32.80879],[-83.668549,32.808611],[-83.66849400000001,32.808369],[-83.668446,32.808124],[-83.66843300000001,32.807913],[-83.668447,32.807755],[-83.66852800000001,32.807479]]},"id":"8744c0b18ffffff-17beb0560196de37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c5d12c-1796f042005971c0","8f44c0b1889b465-17b7a9eae2d2d21c"]},"geometry":{"type":"LineString","coordinates":[[-83.66852800000001,32.807479],[-83.66860100000001,32.807389],[-83.668885,32.807174],[-83.668986,32.807111],[-83.669098,32.807063],[-83.66937700000001,32.806983],[-83.669639,32.806931],[-83.669831,32.806916],[-83.670039,32.806913],[-83.670186,32.806922],[-83.67044,32.806959],[-83.67053,32.806986],[-83.67065000000001,32.807032],[-83.67084200000001,32.807125],[-83.67099300000001,32.807223],[-83.671125,32.807349]]},"id":"8744c0b18ffffff-1797bd1f428caf88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1889b465-17b7a9eae2d2d21c","8f44c0b1812264c-1796a926afc8342c"]},"geometry":{"type":"LineString","coordinates":[[-83.671125,32.807349],[-83.67137500000001,32.807564],[-83.67149500000001,32.807695],[-83.671541,32.807772],[-83.671559,32.807844],[-83.671563,32.80793],[-83.671558,32.808003],[-83.67154400000001,32.808078],[-83.671512,32.808168],[-83.671439,32.808301]]},"id":"8944c0b1813ffff-17d7e929c2cd21c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6714,32.808585]},"id":"8f44c0b18104042-13b7a93f0d1b9ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18104042-13b7a93f0d1b9ae4","8f44c0b1812264c-1796a926afc8342c"]},"geometry":{"type":"LineString","coordinates":[[-83.671439,32.808301],[-83.67141000000001,32.808432],[-83.671394,32.808529],[-83.6714,32.808585]]},"id":"8944c0b1813ffff-17deb937da198ca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680537,32.748647000000005]},"id":"8f44c0b064762a4-17f6f2f0632ac9de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06552210-13fe92e2aa83dc50","8f44c0b064762a4-17f6f2f0632ac9de"]},"geometry":{"type":"LineString","coordinates":[[-83.680559,32.747028],[-83.680548,32.747267],[-83.680537,32.748647000000005]]},"id":"8844c0b065fffff-13f6f2ebf9d16160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b064536b5-139f94a2c67fb79c","8f44c0b064762a4-17f6f2f0632ac9de"]},"geometry":{"type":"LineString","coordinates":[[-83.680537,32.748647000000005],[-83.68053,32.749544],[-83.68052,32.749633],[-83.680502,32.749719],[-83.680451,32.749843000000006],[-83.68039200000001,32.749951],[-83.680321,32.75005],[-83.680254,32.750114],[-83.680189,32.750169],[-83.680127,32.750214],[-83.679978,32.7503],[-83.67984200000001,32.75036]]},"id":"8944c0b0647ffff-13bed34ecc56e0cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c102a32-13d68d1761b27968","8f44c0a2c1ac92a-139690a9c6cd1f19"]},"geometry":{"type":"LineString","coordinates":[[-83.73389800000001,32.89434],[-83.73536100000001,32.894212]]},"id":"8844c0a2c1fffff-13fe8ee0905c062f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73604,32.894149]},"id":"8f44c0a2c105602-139f2b6f02a82e4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c105602-139f2b6f02a82e4b","8f44c0a2c102a32-13d68d1761b27968"]},"geometry":{"type":"LineString","coordinates":[[-83.73536100000001,32.894212],[-83.73604,32.894149]]},"id":"8a44c0a2c107fff-13bedc4332653f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c105602-139f2b6f02a82e4b","8f44c0a2c175881-13ff265ba5030aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.73604,32.894149],[-83.736238,32.894135],[-83.736421,32.894137],[-83.736582,32.894159],[-83.73673000000001,32.894185],[-83.736856,32.894219],[-83.73702800000001,32.894288],[-83.737161,32.894359],[-83.737334,32.894475],[-83.73799000000001,32.894987],[-83.73811900000001,32.895093]]},"id":"8844c0a2c1fffff-13deb8c04ec8d1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73876130000001,32.895504]},"id":"8f44c0a2c1607b1-17fe04ca3244419d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c1607b1-17fe04ca3244419d","8f44c0a2c175881-13ff265ba5030aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.73811900000001,32.895093],[-83.738634,32.89549],[-83.73876130000001,32.895504]]},"id":"8944c0a2c17ffff-13fe5599becd36ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.555862,32.841537]},"id":"8f44c0b8e04bc2d-13bfe3524eef5ab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e04bc2d-13bfe3524eef5ab7","8f44c0b8e38488c-13f7e603a45c9c73"]},"geometry":{"type":"LineString","coordinates":[[-83.555862,32.841537],[-83.555825,32.841717],[-83.555805,32.841752],[-83.555693,32.841848],[-83.55522500000001,32.842249],[-83.554759,32.842655]]},"id":"8844c0b8e3fffff-139fd48cc7a91096"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553807,32.843448]},"id":"8f44c0b8e391a19-17d7c856a8f03e44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e38488c-13f7e603a45c9c73","8f44c0b8e391a19-17d7c856a8f03e44"]},"geometry":{"type":"LineString","coordinates":[[-83.554759,32.842655],[-83.553807,32.843448]]},"id":"8944c0b8e3bffff-17dff72d2a099bb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c2954e5-17d78edc8d946b63","8f44c0a2c390ba8-1796ad216e3531a4"]},"geometry":{"type":"LineString","coordinates":[[-83.73534500000001,32.902305000000005],[-83.735386,32.9026],[-83.73541800000001,32.902884],[-83.735425,32.903155000000005],[-83.735363,32.903972],[-83.735337,32.904103],[-83.73529900000001,32.904204],[-83.73463600000001,32.905276]]},"id":"8844c0a2c3fffff-13d7bd6f1d283582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c2954e5-17d78edc8d946b63","8f44c0a2c29e661-17d66f19c0b450dd"]},"geometry":{"type":"LineString","coordinates":[[-83.73463600000001,32.905276],[-83.734547,32.905617],[-83.73454000000001,32.905707],[-83.734538,32.906295]]},"id":"8944c0a2c2bffff-17979f0db4326756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c29e661-17d66f19c0b450dd","8f44c0a28914116-13b6f16ae7204288"]},"geometry":{"type":"LineString","coordinates":[[-83.734538,32.906295],[-83.734526,32.906871],[-83.734498,32.90699],[-83.734441,32.907133],[-83.73438300000001,32.907234],[-83.73424700000001,32.907406],[-83.73415200000001,32.907496],[-83.733677,32.907822],[-83.73358900000001,32.907883000000005]]},"id":"8744c0a2cffffff-13f65fcf3d7b8e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a289aca84-17bf32d923934eed","8f44c0a28914116-13b6f16ae7204288"]},"geometry":{"type":"LineString","coordinates":[[-83.73358900000001,32.907883000000005],[-83.73343700000001,32.908045],[-83.733275,32.908299],[-83.73319500000001,32.908433],[-83.733118,32.908583],[-83.733047,32.908779],[-83.73300300000001,32.908949]]},"id":"8844c0a289fffff-13dfb23fe9e1d21e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28814342-139eb317aca5031c","8f44c0a289aca84-17bf32d923934eed"]},"geometry":{"type":"LineString","coordinates":[[-83.73300300000001,32.908949],[-83.732968,32.909486],[-83.73290300000001,32.911121]]},"id":"8844c0a289fffff-17f7b2fb954504b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73286800000001,32.911966]},"id":"8f44c0a288116d9-179ed32d80fd197b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a288116d9-179ed32d80fd197b","8f44c0a28814342-139eb317aca5031c"]},"geometry":{"type":"LineString","coordinates":[[-83.73290300000001,32.911121],[-83.73286800000001,32.911966]]},"id":"8a44c0a28817fff-1396b32297d363f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70327400000001,32.786631]},"id":"8f44c0b03064223-139e7b6dcacb0279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0316e46b-17f7d99a44023b20","8f44c0b03064223-139e7b6dcacb0279"]},"geometry":{"type":"LineString","coordinates":[[-83.70327400000001,32.786631],[-83.70337,32.78587],[-83.703388,32.785176],[-83.70339600000001,32.785124],[-83.703416,32.785069],[-83.703451,32.785013],[-83.703491,32.78497],[-83.70353300000001,32.784934],[-83.70359400000001,32.784902],[-83.70402200000001,32.784694]]},"id":"8844c0b031fffff-17f6faf7f8554d8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0316e170-17bff92ec418a2bc","8f44c0b0316e46b-17f7d99a44023b20"]},"geometry":{"type":"LineString","coordinates":[[-83.70402200000001,32.784694],[-83.704194,32.784611000000005]]},"id":"8b44c0b0316efff-17d7d9648f487efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0316e170-17bff92ec418a2bc","8f44c0b03b96c94-139ff800eba5320b"]},"geometry":{"type":"LineString","coordinates":[[-83.704194,32.784611000000005],[-83.70444900000001,32.784494],[-83.70453300000001,32.784444],[-83.704569,32.784418],[-83.70461200000001,32.784368],[-83.704645,32.78432],[-83.704666,32.784269],[-83.704673,32.784224],[-83.70468000000001,32.783794],[-83.704677,32.783529]]},"id":"8744c0b03ffffff-1796f83efea5758e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b96c94-139ff800eba5320b","8f44c0b038c142c-17b6f91de6f9bb29"]},"geometry":{"type":"LineString","coordinates":[[-83.704677,32.783529],[-83.704684,32.782617],[-83.704677,32.782572],[-83.704661,32.782522],[-83.70460100000001,32.782425],[-83.70456,32.78238],[-83.70451100000001,32.782335],[-83.704327,32.782203],[-83.704221,32.782139]]},"id":"8844c0b039fffff-13bfd832094932b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038c0289-17f6d98289e2f026","8f44c0b038c142c-17b6f91de6f9bb29"]},"geometry":{"type":"LineString","coordinates":[[-83.704221,32.782139],[-83.70406,32.78203]]},"id":"8a44c0b038c7fff-1796d95031f6acbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b038c0289-17f6d98289e2f026","8f44c0b0381a798-13fe5ae125144ee9"]},"geometry":{"type":"LineString","coordinates":[[-83.70406,32.78203],[-83.704024,32.781989],[-83.703615,32.781695],[-83.703563,32.781647],[-83.703531,32.781602],[-83.70349800000001,32.78154],[-83.703485,32.781492],[-83.703469,32.781359],[-83.703472,32.78123],[-83.70349900000001,32.779994]]},"id":"8844c0b039fffff-179edab10d69fae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0381a798-13fe5ae125144ee9","8f44c0b03814321-17deda2961eaff87"]},"geometry":{"type":"LineString","coordinates":[[-83.70349900000001,32.779994],[-83.70352100000001,32.778742],[-83.703528,32.778639000000005],[-83.70356500000001,32.778551],[-83.703641,32.778452],[-83.703691,32.77841],[-83.703793,32.77834]]},"id":"8944c0b0383ffff-13d6fac6a571cec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703559,32.777034]},"id":"8f44c0b039ab11b-13be5abba0582619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03814321-17deda2961eaff87","8f44c0b039ab11b-13be5abba0582619"]},"geometry":{"type":"LineString","coordinates":[[-83.703793,32.77834],[-83.70365500000001,32.778169000000005],[-83.703614,32.778107],[-83.703563,32.777991],[-83.703551,32.777938],[-83.703541,32.77785],[-83.703559,32.777034]]},"id":"8844c0b039fffff-17d77aaae2d4c908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70422880000001,32.7761974]},"id":"8f44c0b03913770-13b77919005153bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03913770-13b77919005153bc","8f44c0b039ab11b-13be5abba0582619"]},"geometry":{"type":"LineString","coordinates":[[-83.703559,32.777034],[-83.703576,32.776477],[-83.703598,32.776381],[-83.70361700000001,32.776339],[-83.703664,32.77628],[-83.703738,32.776237],[-83.703826,32.776207],[-83.703907,32.7762],[-83.704131,32.776198],[-83.70422880000001,32.7761974]]},"id":"8844c0b039fffff-13de7a4e6524d41f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a393199-13f7e4af4f290b76","8f44c0b1a760d0c-139fe7984fb23e16"]},"geometry":{"type":"LineString","coordinates":[[-83.64586200000001,32.822057],[-83.646601,32.822505],[-83.64705400000001,32.822789]]},"id":"8744c0b1affffff-13fff622f46ce0f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64870330000001,32.823774300000004]},"id":"8f44c0b1a38a3a2-17def0a87a5605b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a393199-13f7e4af4f290b76","8f44c0b1a38a3a2-17def0a87a5605b5"]},"geometry":{"type":"LineString","coordinates":[[-83.64705400000001,32.822789],[-83.647881,32.823276],[-83.648662,32.823749],[-83.64870330000001,32.823774300000004]]},"id":"8944c0b1a3bffff-1797e2aae4ed3d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649167,32.824058]},"id":"8f44c0b1a38ba8d-17fedf86ad433969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a38a3a2-17def0a87a5605b5","8f44c0b1a38ba8d-17fedf86ad433969"]},"geometry":{"type":"LineString","coordinates":[[-83.64870330000001,32.823774300000004],[-83.64889000000001,32.8238885],[-83.64900800000001,32.8239607],[-83.649167,32.824058]]},"id":"8a44c0b1a38ffff-17b7f0178544ae2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707682,32.789554]},"id":"8f44c0b03ac20a8-13bf50aac893a580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70912,32.789591]},"id":"8f44c0b03aea8dd-13d66d280fd7c46f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ac20a8-13bf50aac893a580","8f44c0b03aea8dd-13d66d280fd7c46f"]},"geometry":{"type":"LineString","coordinates":[[-83.707682,32.789554],[-83.70912,32.789591]]},"id":"8944c0b03afffff-13dedee968954039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03aea8dd-13d66d280fd7c46f","8f44c0b03a5d3a1-13f647a6a4a41aaf"]},"geometry":{"type":"LineString","coordinates":[[-83.70912,32.789591],[-83.711375,32.789642]]},"id":"8844c0b03bfffff-13f65a6757590b2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713088,32.789679]},"id":"8f44c0b0ed36745-139f63780eed8196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed36745-139f63780eed8196","8f44c0b03a5d3a1-13f647a6a4a41aaf"]},"geometry":{"type":"LineString","coordinates":[[-83.711375,32.789642],[-83.713088,32.789679]]},"id":"8644c0b07ffffff-1397d58f50de58b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71454800000001,32.78971]},"id":"8f44c0b0ed26a83-13b6ffe78b056840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed36745-139f63780eed8196","8f44c0b0ed26a83-13b6ffe78b056840"]},"geometry":{"type":"LineString","coordinates":[[-83.713088,32.789679],[-83.71454800000001,32.78971]]},"id":"8944c0b0ed3ffff-139751afc9006f5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620344,32.851089]},"id":"8f44c0a36210058-17ffa5e50d6c94d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36210058-17ffa5e50d6c94d0","8f44c0a362a199b-17f728402ae41725"]},"geometry":{"type":"LineString","coordinates":[[-83.620344,32.851089],[-83.61937900000001,32.851072]]},"id":"8844c0a363fffff-17f77712916d8035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618509,32.851058]},"id":"8f44c0a362a20e1-17f76a5fef2a1eb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362a20e1-17f76a5fef2a1eb6","8f44c0a362a199b-17f728402ae41725"]},"geometry":{"type":"LineString","coordinates":[[-83.61937900000001,32.851072],[-83.618509,32.851058]]},"id":"8a44c0a362a7fff-17ffa950035464ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617693,32.85107]},"id":"8f44c0a362b3950-17ffec5de112c8a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362b3950-17ffec5de112c8a2","8f44c0a362a20e1-17f76a5fef2a1eb6"]},"geometry":{"type":"LineString","coordinates":[[-83.618509,32.851058],[-83.618239,32.851053],[-83.617693,32.85107]]},"id":"8944c0a362bffff-17ff3b5ee84560ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616888,32.851095]},"id":"8f44c0a36749ace-17ff6e55034cf5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362b3950-17ffec5de112c8a2","8f44c0a36749ace-17ff6e55034cf5ad"]},"geometry":{"type":"LineString","coordinates":[[-83.617693,32.85107],[-83.616888,32.851095]]},"id":"8944c0a362bffff-17f7bd597a7d2dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615981,32.851104]},"id":"8f44c0a3674b485-1397308beac3450a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36749ace-17ff6e55034cf5ad","8f44c0a3674b485-1397308beac3450a"]},"geometry":{"type":"LineString","coordinates":[[-83.616888,32.851095],[-83.615981,32.851104]]},"id":"8a44c0a3674ffff-13973f70715fea27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36666db4-17ffb2a2e851eaf9","8f44c0a3674b485-1397308beac3450a"]},"geometry":{"type":"LineString","coordinates":[[-83.615981,32.851104],[-83.615125,32.851089]]},"id":"8844c0a367fffff-17ff719766615b25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614288,32.851084]},"id":"8f44c0a3667442d-17f7b4ae02d0bcdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36666db4-17ffb2a2e851eaf9","8f44c0a3667442d-17f7b4ae02d0bcdf"]},"geometry":{"type":"LineString","coordinates":[[-83.615125,32.851089],[-83.614288,32.851084]]},"id":"8944c0a3667ffff-17ff33a8746e31a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613455,32.851079]},"id":"8f44c0a3662b6d1-17f776b6ad3946ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3667442d-17f7b4ae02d0bcdf","8f44c0a3662b6d1-17f776b6ad3946ec"]},"geometry":{"type":"LineString","coordinates":[[-83.614288,32.851084],[-83.613455,32.851079]]},"id":"8844c0a367fffff-17f7f5b2507f92f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61260800000001,32.851081]},"id":"8f44c0a3660e016-17f7b8c800cc6710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662b6d1-17f776b6ad3946ec","8f44c0a3660e016-17f7b8c800cc6710"]},"geometry":{"type":"LineString","coordinates":[[-83.613455,32.851079],[-83.61260800000001,32.851081]]},"id":"8a44c0a3660ffff-17f737bf59e9f0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611804,32.851079]},"id":"8f44c0a36618922-17f77abe87407b1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3660e016-17f7b8c800cc6710","8f44c0a36618922-17f77abe87407b1a"]},"geometry":{"type":"LineString","coordinates":[[-83.61260800000001,32.851081],[-83.611804,32.851079]]},"id":"8944c0a3663ffff-17f739c34b25bbca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3661c64a-17f77ae04eadbb5c","8f44c0a36618922-17f77abe87407b1a"]},"geometry":{"type":"LineString","coordinates":[[-83.611804,32.851079],[-83.61175,32.851079]]},"id":"8b44c0a3661cfff-17f77acf6347a543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109089,32.8510854]},"id":"8f44c0a366ad14a-17ff7cedfc398289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3661c64a-17f77ae04eadbb5c","8f44c0a366ad14a-17ff7cedfc398289"]},"geometry":{"type":"LineString","coordinates":[[-83.61175,32.851079],[-83.6109089,32.8510854]]},"id":"8944c0a3663ffff-17f77be722a2ab3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61009080000001,32.8510867]},"id":"8f44c0a366ae2eb-17ff3eed4e5b6dab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366ad14a-17ff7cedfc398289","8f44c0a366ae2eb-17ff3eed4e5b6dab"]},"geometry":{"type":"LineString","coordinates":[[-83.6109089,32.8510854],[-83.61009080000001,32.8510867]]},"id":"8a44c0a366affff-17fffdeda1dbd780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366ae2eb-17ff3eed4e5b6dab","8f44c0a36680b9b-17fff131a3ac305b"]},"geometry":{"type":"LineString","coordinates":[[-83.61009080000001,32.8510867],[-83.6091622,32.8510719]]},"id":"8944c0a366bffff-17f7d00f78f14f0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36691916-17f7439faef03b95","8f44c0a36680b9b-17fff131a3ac305b"]},"geometry":{"type":"LineString","coordinates":[[-83.6091622,32.8510719],[-83.60816700000001,32.851074000000004]]},"id":"8944c0a366bffff-17f7e268a93a95ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60760300000001,32.851079]},"id":"8f44c0a36690614-17f7650022fde02e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36690614-17f7650022fde02e","8f44c0a36691916-17f7439faef03b95"]},"geometry":{"type":"LineString","coordinates":[[-83.60816700000001,32.851074000000004],[-83.60760300000001,32.851079]]},"id":"8a44c0a36697fff-17f7d44fe1283b33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606755,32.851066]},"id":"8f44c0b8da61c6b-17ff47122d5aa7bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36690614-17f7650022fde02e","8f44c0b8da61c6b-17ff47122d5aa7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.60760300000001,32.851079],[-83.606755,32.851066]]},"id":"8844c0b8dbfffff-17f7560928df9bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da61c6b-17ff47122d5aa7bd","8f44c0b8da62392-17f7691702f2b7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.606755,32.851066],[-83.605928,32.851055]]},"id":"8a44c0b8da67fff-17ffd8149c273a77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da73dab-17bfcbb3c5930613","8f44c0b8da62392-17f7691702f2b7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.605928,32.851055],[-83.605573,32.851047],[-83.60522800000001,32.851028],[-83.604898,32.850985],[-83.60485800000001,32.850966]]},"id":"8944c0b8da7ffff-17d7ea673f640f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68236300000001,32.823459]},"id":"8f44c0b19cc2564-1797ee7b254a5ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6825232,32.823380900000004]},"id":"8f44c0b19cc28a1-17d79e170f33db3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19cc2564-1797ee7b254a5ddc","8f44c0b19cc28a1-17d79e170f33db3a"]},"geometry":{"type":"LineString","coordinates":[[-83.68236300000001,32.823459],[-83.6825232,32.823380900000004]]},"id":"8b44c0b19cc2fff-17ff8e4919193ebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682857,32.823206]},"id":"8f44c0b19cc0d11-13f7cd466a1e2969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19cc28a1-17d79e170f33db3a","8f44c0b19cc0d11-13f7cd466a1e2969"]},"geometry":{"type":"LineString","coordinates":[[-83.6825232,32.823380900000004],[-83.68261100000001,32.823338],[-83.682857,32.823206]]},"id":"8a44c0b19cc7fff-179fbdae58684995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683385,32.822919]},"id":"8f44c0b19ce345e-13b6ebfc62397e1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19ce345e-13b6ebfc62397e1c","8f44c0b19cc0d11-13f7cd466a1e2969"]},"geometry":{"type":"LineString","coordinates":[[-83.682857,32.823206],[-83.683164,32.823047],[-83.683385,32.822919]]},"id":"8944c0b19cfffff-139ffca05b2c55b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19ce14b6-13d6cb19a6af8ee8","8f44c0b19ce345e-13b6ebfc62397e1c"]},"geometry":{"type":"LineString","coordinates":[[-83.683385,32.822919],[-83.6837478,32.822736400000004]]},"id":"8b44c0b19ce3fff-13ffdb8b06761451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68405,32.822583]},"id":"8f44c0b19ce1990-13f6ea5cce096202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19ce14b6-13d6cb19a6af8ee8","8f44c0b19ce1990-13f6ea5cce096202"]},"geometry":{"type":"LineString","coordinates":[[-83.6837478,32.822736400000004],[-83.68405,32.822583]]},"id":"8a44c0b19ce7fff-1396dabb3da71adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19ce5ac8-1397e9ad28e0f6d3","8f44c0b19ce1990-13f6ea5cce096202"]},"geometry":{"type":"LineString","coordinates":[[-83.68405,32.822583],[-83.684331,32.822435]]},"id":"8944c0b19cfffff-13b6aa04fe81a7c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65935400000001,32.832684]},"id":"8f44c0b1b548bac-139fc6a7c7108656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b560a96-17bec68b0eb78889","8f44c0b1b548bac-139fc6a7c7108656"]},"geometry":{"type":"LineString","coordinates":[[-83.65935400000001,32.832684],[-83.65938600000001,32.831519],[-83.6594,32.830686]]},"id":"8944c0b1b57ffff-139ff697c117d4de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659411,32.830104]},"id":"8f44c0b1b564c60-17bfc68426aab3d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b560a96-17bec68b0eb78889","8f44c0b1b564c60-17bfc68426aab3d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6594,32.830686],[-83.659411,32.830104]]},"id":"8a44c0b1b567fff-17f6e6879f6771dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713656,32.830318000000005]},"id":"8f44c0b0a2125a9-17d6c2150dd239cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713688,32.828546]},"id":"8f44c0b0a38cd92-13f74201097a96e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a38cd92-13f74201097a96e0","8f44c0b0a2125a9-17d6c2150dd239cd"]},"geometry":{"type":"LineString","coordinates":[[-83.713656,32.830318000000005],[-83.71366900000001,32.829848000000005],[-83.71367000000001,32.829642],[-83.713688,32.828853],[-83.713688,32.828546]]},"id":"8844c0b0a3fffff-139f4209182756e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713873,32.82717]},"id":"8f44c0b0a3a00e1-1797418d60d6f887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a38cd92-13f74201097a96e0","8f44c0b0a3a00e1-1797418d60d6f887"]},"geometry":{"type":"LineString","coordinates":[[-83.713688,32.828546],[-83.713699,32.828266],[-83.713705,32.827939],[-83.713724,32.827665],[-83.71374,32.827574000000006],[-83.7138,32.827377000000006],[-83.713873,32.82717]]},"id":"8944c0b0a3bffff-17be61e32bc85ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58695300000001,32.847423]},"id":"8f44c0b8d5514ee-1797776a6f789f7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591221,32.844375]},"id":"8f44c0b8dc5a809-17976cfee3072820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d5514ee-1797776a6f789f7e","8f44c0b8dc5a809-17976cfee3072820"]},"geometry":{"type":"LineString","coordinates":[[-83.58695300000001,32.847423],[-83.58712100000001,32.847476],[-83.587225,32.84749],[-83.587331,32.847479],[-83.587428,32.84743],[-83.58780200000001,32.847082],[-83.587912,32.846944],[-83.588046,32.846746],[-83.588267,32.846375],[-83.58848400000001,32.846212],[-83.588778,32.846111],[-83.589692,32.845928],[-83.59013800000001,32.845813],[-83.590299,32.845739],[-83.59042000000001,32.845619],[-83.591221,32.844375]]},"id":"8744c0b8dffffff-13d771f367b330fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5912895,32.8442486]},"id":"8f44c0b8dc5e2e2-17d76cd414b37dd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dc5e2e2-17d76cd414b37dd1","8f44c0b8dc5a809-17976cfee3072820"]},"geometry":{"type":"LineString","coordinates":[[-83.591221,32.844375],[-83.5912895,32.8442486]]},"id":"8a44c0b8dc5ffff-17ffece9874badc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71568230000001,32.8244972]},"id":"8f44c0b0aa92270-179efd2298f832f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa92270-179efd2298f832f3","8f44c0b0a06cca8-17d7be0f6e5ecc78"]},"geometry":{"type":"LineString","coordinates":[[-83.71530340000001,32.8246138],[-83.71568230000001,32.8244972]]},"id":"8844c0b0a1fffff-17b73d990f758767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa92270-179efd2298f832f3","8f44c0b0aa91c30-17be7ba624e9247b"]},"geometry":{"type":"LineString","coordinates":[[-83.71568230000001,32.8244972],[-83.715773,32.824472],[-83.716064,32.824399],[-83.716291,32.824359]]},"id":"8a44c0b0aa97fff-17dffc653989aca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa82c90-179ebaaea6350345","8f44c0b0aa91c30-17be7ba624e9247b"]},"geometry":{"type":"LineString","coordinates":[[-83.716291,32.824359],[-83.71668700000001,32.824289]]},"id":"8a44c0b0aa97fff-17b6bb2a67ba7d54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717481,32.824178]},"id":"8f44c0b0aa8082c-17d778be6f342c70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa82c90-179ebaaea6350345","8f44c0b0aa8082c-17d778be6f342c70"]},"geometry":{"type":"LineString","coordinates":[[-83.71668700000001,32.824289],[-83.716785,32.824276000000005],[-83.717481,32.824178]]},"id":"8944c0b0aabffff-17fe39b68f3674ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718832,32.823976]},"id":"8f44c0b0aaac109-17df357202a2e9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aaac109-17df357202a2e9fa","8f44c0b0aa8082c-17d778be6f342c70"]},"geometry":{"type":"LineString","coordinates":[[-83.717481,32.824178],[-83.718832,32.823976]]},"id":"8944c0b0aabffff-179e37183b52bdd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa028b6-17b6f1ff8cc53a00","8f44c0b0aaac109-17df357202a2e9fa"]},"geometry":{"type":"LineString","coordinates":[[-83.718832,32.823976],[-83.719087,32.823934],[-83.71930400000001,32.823889],[-83.719587,32.823808],[-83.719762,32.823749],[-83.71995000000001,32.823675],[-83.72011,32.8236],[-83.72024400000001,32.823534]]},"id":"8844c0b0abfffff-17de73b0bd27a17e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65771000000001,32.823887]},"id":"8f44c0b1bd83213-1797eaab4096df3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd83213-1797eaab4096df3a","8f44c0b1bdab7b5-179ec7fb297a6eff"]},"geometry":{"type":"LineString","coordinates":[[-83.65771000000001,32.823887],[-83.658811,32.823908]]},"id":"8944c0b1bdbffff-1797f95335225fb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bdab7b5-179ec7fb297a6eff","8f44c0b1bda9209-17b6c62acaa54e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.658811,32.823908],[-83.659554,32.82392]]},"id":"8944c0b1bdbffff-17b6c712f02fd7f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bda9209-17b6c62acaa54e6b","8f44c0b1bd1b551-17bfc4b5ae6ffdbd"]},"geometry":{"type":"LineString","coordinates":[[-83.659554,32.82392],[-83.660151,32.823928]]},"id":"8844c0b1bdfffff-17bec57037a51e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd1bb81-17b6c407ea987a0b","8f44c0b1bd1b551-17bfc4b5ae6ffdbd"]},"geometry":{"type":"LineString","coordinates":[[-83.660151,32.823928],[-83.66042900000001,32.823936]]},"id":"8b44c0b1bd1bfff-17bfc45eccb95285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662655,32.823977]},"id":"8f44c0b1bd72318-17dfbe98aa33017e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd72318-17dfbe98aa33017e","8f44c0b1bd1bb81-17b6c407ea987a0b"]},"geometry":{"type":"LineString","coordinates":[[-83.66042900000001,32.823936],[-83.660994,32.823946],[-83.662655,32.823977]]},"id":"8844c0b1bdfffff-17bef15040da3e35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650817,32.81648]},"id":"8f44c0b1a145223-13fedb7f66409d79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a145223-13fedb7f66409d79","8f44c0b1a163c65-13d7fb75613d7e01"]},"geometry":{"type":"LineString","coordinates":[[-83.650817,32.81648],[-83.650833,32.815775]]},"id":"8944c0b1a17ffff-139ffb7a6da3a362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8d9225-17fffb6fc898300f","8f44c0b1a163c65-13d7fb75613d7e01"]},"geometry":{"type":"LineString","coordinates":[[-83.650833,32.815775],[-83.65084200000001,32.814847]]},"id":"8844c0b1a1fffff-13b7fb729f534b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8096a4-17b7bfe08c86c384","8f44c0b8b80b865-17d7e03daadab9a1"]},"geometry":{"type":"LineString","coordinates":[[-83.570231,32.86967],[-83.57038,32.869797000000005]]},"id":"8a44c0b8b80ffff-17fff00f18e056e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8096a4-17b7bfe08c86c384","8f44c0b8b85429a-179fbea582da598d"]},"geometry":{"type":"LineString","coordinates":[[-83.57038,32.869797000000005],[-83.570884,32.870193]]},"id":"8844c0b8b9fffff-17b7ff4305c4d8ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b85429a-179fbea582da598d","8f44c0b8b842771-1397bcf8c800bab6"]},"geometry":{"type":"LineString","coordinates":[[-83.570884,32.870193],[-83.57157000000001,32.870761]]},"id":"8944c0b8b87ffff-17d7bdcf2753e9f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.603623,32.846815]},"id":"8f44c0b8db022c4-179f6eb7a5e6b043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db022c4-179f6eb7a5e6b043","8f44c0b8db1141a-17dfd09874766ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.603623,32.846815],[-83.603295,32.846753],[-83.60306800000001,32.846725],[-83.602884,32.846713],[-83.60285370000001,32.8467132]]},"id":"8944c0b8db3ffff-17f76fa7335b6759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6016204,32.8468822]},"id":"8f44c0b8dbaed4a-17b7739b4653e00a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db1141a-17dfd09874766ff7","8f44c0b8dbaed4a-17b7739b4653e00a"]},"geometry":{"type":"LineString","coordinates":[[-83.60285370000001,32.8467132],[-83.60262300000001,32.846715],[-83.602411,32.846725],[-83.602199,32.846758],[-83.601984,32.846798],[-83.6019335,32.8468103],[-83.601803,32.846842],[-83.6016204,32.8468822]]},"id":"8844c0b8dbfffff-17ffd21c17aec827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679275,32.861466]},"id":"8f44c0a229aa414-13d6d60528b40ce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67922300000001,32.862682]},"id":"8f44c0a2298b8e4-17ded625ad4fa5f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a229aa414-13d6d60528b40ce5","8f44c0a2298b8e4-17ded625ad4fa5f9"]},"geometry":{"type":"LineString","coordinates":[[-83.679275,32.861466],[-83.67927900000001,32.861958],[-83.679259,32.862293],[-83.679231,32.862648],[-83.67922300000001,32.862682]]},"id":"8944c0a229bffff-13ded60c053f28b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0686c789-13d6eaaec241fb40","8f44c0b0694b996-17b76a948f046ed6"]},"geometry":{"type":"LineString","coordinates":[[-83.69702600000001,32.743713],[-83.697068,32.742207]]},"id":"8844c0b069fffff-17fe6aa1a547f05a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0694b996-17b76a948f046ed6","8f44c0b0694500e-13b6ea99bbb1e014"]},"geometry":{"type":"LineString","coordinates":[[-83.697068,32.742207],[-83.697078,32.741874],[-83.697069,32.741307],[-83.69705970000001,32.740791200000004]]},"id":"8944c0b0697ffff-17fefa93464d6e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182ca4cd-1796e3c3e2cee051","8f44c0b182db992-17ffe59b21bea815"]},"geometry":{"type":"LineString","coordinates":[[-83.672891,32.82383],[-83.67313,32.823849],[-83.67336200000001,32.82386],[-83.67364500000001,32.823867]]},"id":"8944c0b182fffff-17feb4afa4f494ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6744238,32.823886200000004]},"id":"8f44c0b182c8254-1796e1dd24942d6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182ca4cd-1796e3c3e2cee051","8f44c0b182c8254-1796e1dd24942d6b"]},"geometry":{"type":"LineString","coordinates":[[-83.67364500000001,32.823867],[-83.6744238,32.823886200000004]]},"id":"8a44c0b182cffff-179ee2d0854e3f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b67349d-13dec2cb087a77fa","8f44c0b1b62944c-1796c2bc01611cd0"]},"geometry":{"type":"LineString","coordinates":[[-83.660936,32.841614],[-83.66096,32.840452]]},"id":"8844c0b1b7fffff-17ffe2c38c1ee1a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66097900000001,32.839272]},"id":"8f44c0b1b7520ec-13b7c2b024ec7a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b62944c-1796c2bc01611cd0","8f44c0b1b7520ec-13b7c2b024ec7a7d"]},"geometry":{"type":"LineString","coordinates":[[-83.66096,32.840452],[-83.66098500000001,32.839683],[-83.66097900000001,32.839272]]},"id":"8944c0b1b63ffff-1797d2b22c9236c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66087800000001,32.838437]},"id":"8f44c0b1b70bb81-1397e2ef436b987d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b70bb81-1397e2ef436b987d","8f44c0b1b7520ec-13b7c2b024ec7a7d"]},"geometry":{"type":"LineString","coordinates":[[-83.66097900000001,32.839272],[-83.660931,32.83898],[-83.660874,32.838730000000005],[-83.660838,32.838534],[-83.660858,32.838472],[-83.66087800000001,32.838437]]},"id":"8844c0b1b7fffff-139ff2df027a1286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66075000000001,32.838392]},"id":"8f44c0b1b70b104-13ffc33f45fbe1ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b708ca5-17b6c352afa62cd4","8f44c0b1b70b104-13ffc33f45fbe1ba"]},"geometry":{"type":"LineString","coordinates":[[-83.66075000000001,32.838392],[-83.660757,32.838247],[-83.660719,32.837866000000005]]},"id":"8a44c0b1b70ffff-13d6c34411d83f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b708ca5-17b6c352afa62cd4","8f44c0b1b701b99-17bec346cd569f5c"]},"geometry":{"type":"LineString","coordinates":[[-83.660719,32.837866000000005],[-83.66073800000001,32.837262]]},"id":"8944c0b1b73ffff-17f7c34cbc7e770f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660758,32.836689]},"id":"8f44c0b1b7058b0-17d6e33a43de33cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b701b99-17bec346cd569f5c","8f44c0b1b7058b0-17d6e33a43de33cd"]},"geometry":{"type":"LineString","coordinates":[[-83.66073800000001,32.837262],[-83.660758,32.836689]]},"id":"8a44c0b1b707fff-1797f34083e2aeca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660774,32.836039]},"id":"8f44c0b1b7204ca-13bee3304e64cdba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b7058b0-17d6e33a43de33cd","8f44c0b1b7204ca-13bee3304e64cdba"]},"geometry":{"type":"LineString","coordinates":[[-83.660758,32.836689],[-83.660774,32.836039]]},"id":"8944c0b1b73ffff-1797c3354e6f8443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66080600000001,32.834926]},"id":"8f44c0b1b09d758-1396c31c4024072c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b09d758-1396c31c4024072c","8f44c0b1b7204ca-13bee3304e64cdba"]},"geometry":{"type":"LineString","coordinates":[[-83.660774,32.836039],[-83.660808,32.835091000000006],[-83.66080600000001,32.834926]]},"id":"8744c0b1bffffff-13f6d3242301187f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b086431-17bfe3bce90540cb","8f44c0b1b09d758-1396c31c4024072c"]},"geometry":{"type":"LineString","coordinates":[[-83.66080600000001,32.834926],[-83.660807,32.834218],[-83.660793,32.834085],[-83.660764,32.833983],[-83.66072100000001,32.833879],[-83.660549,32.833557]]},"id":"8944c0b1b0bffff-17dfc33c46850640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b086431-17bfe3bce90540cb","8f44c0b1b0b3181-17dee4416fcf9888"]},"geometry":{"type":"LineString","coordinates":[[-83.660549,32.833557],[-83.660337,32.833227]]},"id":"8944c0b1b0bffff-17d6c3ff2a3d10dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0b3181-17dee4416fcf9888","8f44c0b1b0b2b94-139ec4bbe4399a0d"]},"geometry":{"type":"LineString","coordinates":[[-83.660337,32.833227],[-83.66014100000001,32.832894]]},"id":"8a44c0b1b0b7fff-13f6d47ead5a8a49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660127,32.832684]},"id":"8f44c0b1b0b666c-139fc4c4a90d9f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0b2b94-139ec4bbe4399a0d","8f44c0b1b0b666c-139fc4c4a90d9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.66014100000001,32.832894],[-83.660144,32.832856],[-83.660127,32.832684]]},"id":"8a44c0b1b0b7fff-13dfe4be8c5d50c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660897,32.800933]},"id":"8f44c0b1ead99a3-1797e2e368e72244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ead99a3-1797e2e368e72244","8f44c0b1e3719b4-17d6e4b46518a82f"]},"geometry":{"type":"LineString","coordinates":[[-83.66015300000001,32.801879],[-83.660161,32.801755],[-83.660183,32.801685],[-83.66023,32.801619],[-83.66081600000001,32.800995],[-83.660897,32.800933]]},"id":"8744c0b1effffff-179ef3eceaba78f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ead99a3-1797e2e368e72244","8f44c0b1eae42cd-17ffbfe2aa758894"]},"geometry":{"type":"LineString","coordinates":[[-83.660897,32.800933],[-83.660982,32.800812],[-83.66100700000001,32.800629],[-83.661157,32.799189000000005],[-83.661196,32.799068000000005],[-83.66123300000001,32.799002],[-83.66125600000001,32.798972],[-83.661287,32.798931],[-83.661336,32.798885],[-83.66139000000001,32.798844],[-83.66146900000001,32.798803],[-83.661562,32.798769],[-83.66172300000001,32.798732],[-83.662127,32.798664]]},"id":"8944c0b1eafffff-13b6f1fcabc01387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62115200000001,32.742269]},"id":"8f44c0b160a43b0-17df23ec09da0c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b160aa995-1397a3e8e277ba19","8f44c0b160a43b0-17df23ec09da0c58"]},"geometry":{"type":"LineString","coordinates":[[-83.62115200000001,32.742269],[-83.62114700000001,32.742303],[-83.621126,32.742882],[-83.62114100000001,32.743415],[-83.62115700000001,32.743609]]},"id":"8944c0b160bffff-17f7e3f516011cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62110600000001,32.745734]},"id":"8f44c0b160d280e-17d7e408cef821df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b160d280e-17d7e408cef821df","8f44c0b160aa995-1397a3e8e277ba19"]},"geometry":{"type":"LineString","coordinates":[[-83.62115700000001,32.743609],[-83.621128,32.743947],[-83.62110600000001,32.745734]]},"id":"8844c0b161fffff-17bf63ff5877dc57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66029900000001,32.817788]},"id":"8f44c0b1ab4c80b-17bfc4592e259e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab4c80b-17bfc4592e259e7c","8f44c0b1ab43302-17b7e67343344e5b"]},"geometry":{"type":"LineString","coordinates":[[-83.65943800000001,32.817769000000006],[-83.66029900000001,32.817788]]},"id":"8944c0b1ab7ffff-17b7d5663c6128e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab69755-17bee268edbfbf51","8f44c0b1ab4c80b-17bfc4592e259e7c"]},"geometry":{"type":"LineString","coordinates":[[-83.66029900000001,32.817788],[-83.66109300000001,32.817805]]},"id":"8944c0b1ab7ffff-17b6d361031de04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab69755-17bee268edbfbf51","8f44c0b1879bcec-17bec067c8fb60db"]},"geometry":{"type":"LineString","coordinates":[[-83.66109300000001,32.817805],[-83.66191400000001,32.817808]]},"id":"8844c0b187fffff-17bfd1685c70ab7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662796,32.817797]},"id":"8f44c0b1878a78e-17b7be4085d87be5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1878a78e-17b7be4085d87be5","8f44c0b1879bcec-17bec067c8fb60db"]},"geometry":{"type":"LineString","coordinates":[[-83.66191400000001,32.817808],[-83.66262400000001,32.817816],[-83.662738,32.817808],[-83.662796,32.817797]]},"id":"8944c0b187bffff-17bebf53cfabb6d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666016,32.817829]},"id":"8f44c0b186200a8-17d7b6640de940ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186200a8-17d7b6640de940ee","8f44c0b1878a78e-17b7be4085d87be5"]},"geometry":{"type":"LineString","coordinates":[[-83.662796,32.817797],[-83.663157,32.817791],[-83.666016,32.817829]]},"id":"8844c0b187fffff-17beba524048f63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66765500000001,32.752802]},"id":"8f44c0b1514291e-1397f263a56c5e71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66764900000001,32.753966000000005]},"id":"8f44c0b1515d6de-13def26768443b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1515d6de-13def26768443b8c","8f44c0b1514291e-1397f263a56c5e71"]},"geometry":{"type":"LineString","coordinates":[[-83.66765500000001,32.752802],[-83.66772300000001,32.752927],[-83.667736,32.752989],[-83.667738,32.753178000000005],[-83.667725,32.753391],[-83.66771200000001,32.753532],[-83.667653,32.753874],[-83.66764900000001,32.753966000000005]]},"id":"8944c0b1517ffff-13fef2445b4a8fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667675,32.754599]},"id":"8f44c0b15066b9c-17fef2572dad9700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1515d6de-13def26768443b8c","8f44c0b15066b9c-17fef2572dad9700"]},"geometry":{"type":"LineString","coordinates":[[-83.66764900000001,32.753966000000005],[-83.667653,32.754159],[-83.667675,32.754599]]},"id":"8844c0b151fffff-13b6b2608ce49436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1506346c-17dfb253663460ef","8f44c0b15066b9c-17fef2572dad9700"]},"geometry":{"type":"LineString","coordinates":[[-83.667675,32.754599],[-83.667681,32.754961],[-83.667681,32.755401]]},"id":"8a44c0b15067fff-17f7b25444dbf1cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15045286-17d7f257c24403b5","8f44c0b1506346c-17dfb253663460ef"]},"geometry":{"type":"LineString","coordinates":[[-83.667681,32.755401],[-83.667674,32.755974]]},"id":"8944c0b1507ffff-1796b2559f6c4475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15045286-17d7f257c24403b5","8f44c0b1504eb6d-13feb23c49c4cf3f"]},"geometry":{"type":"LineString","coordinates":[[-83.667674,32.755974],[-83.66771800000001,32.756673]]},"id":"8944c0b1507ffff-139eb24a034e84c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667814,32.757801]},"id":"8f44c0b153164c0-17bfb2004989902a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b153164c0-17bfb2004989902a","8f44c0b1504eb6d-13feb23c49c4cf3f"]},"geometry":{"type":"LineString","coordinates":[[-83.66771800000001,32.756673],[-83.667744,32.756874],[-83.66774500000001,32.757005],[-83.667766,32.757316],[-83.667788,32.75748],[-83.667814,32.757801]]},"id":"8744c0b15ffffff-13dfb21e5a508eea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.548855,32.832844]},"id":"8f44c0b8ece16f6-13ffd46da8951a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8ece16f6-13ffd46da8951a80","8f44c0b8e5210ae-17dffc646c64130e"]},"geometry":{"type":"LineString","coordinates":[[-83.548855,32.832844],[-83.548697,32.832748],[-83.548584,32.832684],[-83.548473,32.832664],[-83.548212,32.832683],[-83.54796300000001,32.832693],[-83.547668,32.832698],[-83.547269,32.832729],[-83.547015,32.832763],[-83.546706,32.832831],[-83.546306,32.832828],[-83.54559300000001,32.833425000000005]]},"id":"8744c0b8effffff-13fff88e24cd484a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e505123-17ffddaaa42c467f","8f44c0b8e5210ae-17dffc646c64130e"]},"geometry":{"type":"LineString","coordinates":[[-83.54559300000001,32.833425000000005],[-83.54507100000001,32.833882]]},"id":"8944c0b8e53ffff-17fffd078304f71f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54291900000001,32.835787]},"id":"8f44c0b8e436362-139fe2ebaa01b359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e505123-17ffddaaa42c467f","8f44c0b8e436362-139fe2ebaa01b359"]},"geometry":{"type":"LineString","coordinates":[[-83.54507100000001,32.833882],[-83.54469900000001,32.834186],[-83.54373600000001,32.835067],[-83.54317,32.835591],[-83.54291900000001,32.835787]]},"id":"8844c0b8e5fffff-13dfe04bc636e8ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.542856,32.837843]},"id":"8f44c0b8e418d80-17b7e31303cacf30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e418d80-17b7e31303cacf30","8f44c0b8e436362-139fe2ebaa01b359"]},"geometry":{"type":"LineString","coordinates":[[-83.54291900000001,32.835787],[-83.54283500000001,32.835863],[-83.542776,32.83594],[-83.542758,32.836017000000005],[-83.54275200000001,32.836109],[-83.542753,32.836222],[-83.542832,32.83682],[-83.54286400000001,32.837099],[-83.54281200000001,32.837556],[-83.542798,32.83776],[-83.542856,32.837843]]},"id":"8944c0b8e43ffff-1797f32e10a3c7c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53156410000001,32.825067600000004]},"id":"8f44c0b8372358e-13f7fea4766072c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8372358e-13f7fea4766072c5","8f44c0b83720641-17fffde4ad9074ca"]},"geometry":{"type":"LineString","coordinates":[[-83.53156410000001,32.825067600000004],[-83.53174,32.824939],[-83.53187100000001,32.824872]]},"id":"8a44c0b83727fff-13b7fe46d419bc6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.533868,32.823324]},"id":"8f44c0b830f4512-17b7f90482849097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83720641-17fffde4ad9074ca","8f44c0b830f4512-17b7f90482849097"]},"geometry":{"type":"LineString","coordinates":[[-83.53187100000001,32.824872],[-83.533359,32.823718],[-83.533868,32.823324]]},"id":"8744c0b83ffffff-1797fb74a10646c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a702d56-17bef0a52e250697","8f44c0b1a703919-1797ef5da3b83e90"]},"geometry":{"type":"LineString","coordinates":[[-83.642155,32.820881],[-83.642679,32.821208]]},"id":"8a44c0b1a707fff-17b6f00168b9ce63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7712e4-1397e99b487f1f7e","8f44c0b1a703919-1797ef5da3b83e90"]},"geometry":{"type":"LineString","coordinates":[[-83.642679,32.821208],[-83.64347400000001,32.82168],[-83.64397100000001,32.821987],[-83.64455600000001,32.822349],[-83.645038,32.822665]]},"id":"8844c0b1a7fffff-13deec78991f75f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e15e11e-13b7f11202bead95","8f44c0b1e15d88a-139fceec091b7b9a"]},"geometry":{"type":"LineString","coordinates":[[-83.655088,32.795859],[-83.655968,32.796028]]},"id":"8a44c0b1e15ffff-13deffff00f906d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65694500000001,32.796173]},"id":"8f44c0b1e148962-13feec896c991f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e148962-13feec896c991f1e","8f44c0b1e15d88a-139fceec091b7b9a"]},"geometry":{"type":"LineString","coordinates":[[-83.655968,32.796028],[-83.656289,32.796072],[-83.65694500000001,32.796173]]},"id":"8944c0b1e17ffff-13bffdba81c81a60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65806900000001,32.796338]},"id":"8f44c0b1eab0c63-13dfc9cae033616f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e148962-13feec896c991f1e","8f44c0b1eab0c63-13dfc9cae033616f"]},"geometry":{"type":"LineString","coordinates":[[-83.65694500000001,32.796173],[-83.65758600000001,32.79627],[-83.65806900000001,32.796338]]},"id":"8744c0b1effffff-139edb2a4ca377e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eaa0434-13d6e7058e3dd24b","8f44c0b1eab0c63-13dfc9cae033616f"]},"geometry":{"type":"LineString","coordinates":[[-83.65806900000001,32.796338],[-83.659204,32.796525]]},"id":"8944c0b1eabffff-139ff8683a343cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eaa0434-13d6e7058e3dd24b","8f44c0b1ea104e1-13bfe3c14ede1ba8"]},"geometry":{"type":"LineString","coordinates":[[-83.659204,32.796525],[-83.660165,32.79666],[-83.660487,32.796712],[-83.660542,32.796723]]},"id":"8844c0b1ebfffff-13ffe5630ca41eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683214,32.876759]},"id":"8f44c0a22346c56-17b6ec674f99ff28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22346c56-17b6ec674f99ff28","8f44c0a22346870-17b7abe2c7a1f6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.683214,32.876759],[-83.68342600000001,32.876761]]},"id":"8b44c0a22346fff-17b78c250caa60be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22346c56-17b6ec674f99ff28","8f44c0a22346870-17b7abe2c7a1f6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.68342600000001,32.876761],[-83.68331500000001,32.877052],[-83.68327500000001,32.877094],[-83.68322500000001,32.87711],[-83.682787,32.877097],[-83.682764,32.877079],[-83.682764,32.877038],[-83.68277,32.877001],[-83.682951,32.876877],[-83.683114,32.876781],[-83.68316200000001,32.876767],[-83.683214,32.876759]]},"id":"8944c0a2237ffff-17befcbc2cd5c95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.573786,32.868854]},"id":"8f44c0b8b949cc3-13dfd78fc3056137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8959a998-1397b44d6592fd60","8f44c0b8b949cc3-13dfd78fc3056137"]},"geometry":{"type":"LineString","coordinates":[[-83.57512100000001,32.867697],[-83.57481,32.867984],[-83.57414200000001,32.868558],[-83.573786,32.868854]]},"id":"8644c0b8fffffff-13f7b5eb1c6bcc59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b949cc3-13dfd78fc3056137","8f44c0b8b842771-1397bcf8c800bab6"]},"geometry":{"type":"LineString","coordinates":[[-83.573786,32.868854],[-83.573583,32.869036],[-83.57276900000001,32.869729],[-83.57157000000001,32.870761]]},"id":"8844c0b8b9fffff-17bfda43c0f78e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340286c1-13b7f0a453c42447","8f44c0a3400561a-139ef2b631403a96"]},"geometry":{"type":"LineString","coordinates":[[-83.64130850000001,32.838413800000005],[-83.64215630000001,32.8386866]]},"id":"8944c0a3403ffff-13dff1ad4253ea7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340286c1-13b7f0a453c42447","8f44c0a34074999-13f7fe7f7236ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.64215630000001,32.8386866],[-83.6430345,32.8389693]]},"id":"8844c0a341fffff-139fef91ec046ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6439203,32.8392543]},"id":"8f44c0a340668e2-1397fc55dc0c8a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34074999-13f7fe7f7236ce4a","8f44c0a340668e2-1397fc55dc0c8a5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6430345,32.8389693],[-83.64387,32.8392381],[-83.6439203,32.8392543]]},"id":"8944c0a3407ffff-13beed6aac63b575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64423810000001,32.8393566]},"id":"8f44c0a34064756-13d7eb8f3cc2b1e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34064756-13d7eb8f3cc2b1e6","8f44c0a340668e2-1397fc55dc0c8a5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6439203,32.8392543],[-83.64423810000001,32.8393566]]},"id":"8a44c0a34067fff-13b7ebf28625dbdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34064756-13d7eb8f3cc2b1e6","8f44c0a340658d9-13beea51cf154a9e"]},"geometry":{"type":"LineString","coordinates":[[-83.64423810000001,32.8393566],[-83.64474600000001,32.83952]]},"id":"8a44c0a34067fff-139efaf07f3e8ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66408600000001,32.801074]},"id":"8f44c0b18da2909-17dffb1a4a457f4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18da2909-17dffb1a4a457f4f","8f44c0b18d1245c-17bef895ea7e4342"]},"geometry":{"type":"LineString","coordinates":[[-83.66408600000001,32.801074],[-83.664242,32.801161],[-83.66488700000001,32.801349],[-83.66511700000001,32.801403]]},"id":"8944c0b18dbffff-17d6b9dce07c135a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d1245c-17bef895ea7e4342","8f44c0b18d16914-1796b7b1c81b9e77"]},"geometry":{"type":"LineString","coordinates":[[-83.66511700000001,32.801403],[-83.665559,32.801468],[-83.666189,32.801555],[-83.666379,32.801575],[-83.666455,32.801572],[-83.66652300000001,32.801546],[-83.666594,32.801496],[-83.66664300000001,32.801446],[-83.66666000000001,32.801377],[-83.66665400000001,32.801054],[-83.666646,32.80087],[-83.666632,32.80082],[-83.66658100000001,32.800786],[-83.66649100000001,32.800773],[-83.666047,32.800772],[-83.665676,32.800744],[-83.66548200000001,32.800717]]},"id":"8844c0b18dfffff-179ff632befc012a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67530400000001,32.814027]},"id":"8f44c0b18a9e821-17feffb70afe6240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1806eba0-17f6e2dded6d9d12","8f44c0b18a9e821-17feffb70afe6240"]},"geometry":{"type":"LineString","coordinates":[[-83.67530400000001,32.814027],[-83.674013,32.814011]]},"id":"8744c0b18ffffff-17ffe14a74b0df28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67213600000001,32.81253]},"id":"8f44c0b18029313-13d7e773076d4d74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1806eba0-17f6e2dded6d9d12","8f44c0b18029313-13d7e773076d4d74"]},"geometry":{"type":"LineString","coordinates":[[-83.674013,32.814011],[-83.67324500000001,32.814006],[-83.67310400000001,32.813994],[-83.67296400000001,32.81396],[-83.67283300000001,32.81392],[-83.67264,32.813829000000005],[-83.67250200000001,32.81373],[-83.67241100000001,32.813654],[-83.672336,32.813564],[-83.672269,32.813465],[-83.672199,32.813325],[-83.672167,32.813221],[-83.67214200000001,32.813018],[-83.67213600000001,32.81253]]},"id":"8844c0b181fffff-17f6a5e47314133d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18152af4-17dfe783e2624898","8f44c0b18029313-13d7e773076d4d74"]},"geometry":{"type":"LineString","coordinates":[[-83.67213600000001,32.81253],[-83.672109,32.811286]]},"id":"8844c0b181fffff-13d6a77b74197410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672055,32.809764]},"id":"8f44c0b1810c223-1396a7a5ac75d71d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18152af4-17dfe783e2624898","8f44c0b1810c223-1396a7a5ac75d71d"]},"geometry":{"type":"LineString","coordinates":[[-83.672109,32.811286],[-83.672105,32.811048],[-83.672112,32.810492],[-83.67212,32.810229],[-83.67211300000001,32.810147],[-83.67206800000001,32.809925],[-83.672055,32.809764]]},"id":"8844c0b181fffff-17f7b78801bb5108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616877,32.852559]},"id":"8f44c0a3666d849-13976e5bec6a65a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36749ace-17ff6e55034cf5ad","8f44c0a3666d849-13976e5bec6a65a2"]},"geometry":{"type":"LineString","coordinates":[[-83.616888,32.851095],[-83.616877,32.852559]]},"id":"8944c0a362bffff-13d7ee5875fd9527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32930395-17f7ee74e716f22c","8f44c0a3666d849-13976e5bec6a65a2"]},"geometry":{"type":"LineString","coordinates":[[-83.616877,32.852559],[-83.6168511,32.8534377],[-83.616837,32.853915]]},"id":"8744c0a36ffffff-17bf2e686883dbe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69021240000001,32.872452100000004]},"id":"8f44c0a2069542c-17b6fb5149100838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2069542c-17b6fb5149100838","8f44c0a206b04d6-13befae9213d4d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.69037900000001,32.871643],[-83.69037630000001,32.871783300000004],[-83.69036290000001,32.871923200000005],[-83.6903391,32.8720622],[-83.6903048,32.8721995],[-83.69026020000001,32.872334800000004],[-83.69021240000001,32.872452100000004]]},"id":"8944c0a206bffff-13bf7b0b3dcfc4bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2069542c-17b6fb5149100838","8f44c0a22a6d589-17fefd3ae99f1458"]},"geometry":{"type":"LineString","coordinates":[[-83.69021240000001,32.872452100000004],[-83.6901481,32.872588],[-83.69007540000001,32.872720900000004],[-83.6899946,32.872850500000006],[-83.6899058,32.872976300000005],[-83.68980930000001,32.873098],[-83.689429,32.873409]]},"id":"8644c0a27ffffff-17f6fc29798065a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6879825,32.8753262]},"id":"8f44c0a23da55aa-13b6e0c2ff154d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23da55aa-13b6e0c2ff154d49","8f44c0a22a6d589-17fefd3ae99f1458"]},"geometry":{"type":"LineString","coordinates":[[-83.689429,32.873409],[-83.68929,32.873534],[-83.689176,32.873647000000005],[-83.689058,32.873784],[-83.68892000000001,32.873965000000005],[-83.688348,32.874785],[-83.6879825,32.8753262]]},"id":"8744c0a22ffffff-13beff13711bc5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878884,32.8754654]},"id":"8f44c0a23da0bab-13ffe0fdc78cf40f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23da55aa-13b6e0c2ff154d49","8f44c0a23da0bab-13ffe0fdc78cf40f"]},"geometry":{"type":"LineString","coordinates":[[-83.6879825,32.8753262],[-83.6878884,32.8754654]]},"id":"8a44c0a23da7fff-13d6e0e06632b7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687859,32.875509]},"id":"8f44c0a23da0aa3-139fa1102524c574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23da0aa3-139fa1102524c574","8f44c0a23da0bab-13ffe0fdc78cf40f"]},"geometry":{"type":"LineString","coordinates":[[-83.6878884,32.8754654],[-83.687859,32.875509]]},"id":"8c44c0a23da0bff-139f8106fb50c148"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23da36ca-17b7e1f58c7d9e2a","8f44c0a23da0aa3-139fa1102524c574"]},"geometry":{"type":"LineString","coordinates":[[-83.687859,32.875509],[-83.687713,32.875743],[-83.687492,32.876143]]},"id":"8944c0a23dbffff-17dfd1854f2eb75a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23da36ca-17b7e1f58c7d9e2a","8f44c0a23ca2d82-13b784fbee8ec78e"]},"geometry":{"type":"LineString","coordinates":[[-83.687492,32.876143],[-83.687104,32.877082],[-83.68684300000001,32.877643],[-83.686767,32.877770000000005],[-83.686689,32.87789],[-83.68656700000001,32.878061],[-83.686375,32.878296],[-83.68625300000001,32.878424]]},"id":"8844c0a23dfffff-139fc34ac187b656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ca2d82-13b784fbee8ec78e","8f44c0a23c95172-17bec72a04fa57a3"]},"geometry":{"type":"LineString","coordinates":[[-83.68625300000001,32.878424],[-83.68577300000001,32.878874],[-83.68536,32.87923]]},"id":"8944c0a23cbffff-13b7c610577e9c0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a22268962-17f689c582fedd5c","8f44c0a23c95172-17bec72a04fa57a3"]},"geometry":{"type":"LineString","coordinates":[[-83.68536,32.87923],[-83.684825,32.879683],[-83.684292,32.880164]]},"id":"8744c0a23ffffff-17d6887a1154568c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684082,32.880392]},"id":"8f44c0a222680f3-17978a48cd21e607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a222680f3-17978a48cd21e607","8f44c0a22268962-17f689c582fedd5c"]},"geometry":{"type":"LineString","coordinates":[[-83.684292,32.880164],[-83.684082,32.880392]]},"id":"8b44c0a22268fff-17bfca072ee30657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68158100000001,32.883004]},"id":"8f44c0a235860ce-17f79063ee8e6f40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a235860ce-17f79063ee8e6f40","8f44c0a222680f3-17978a48cd21e607"]},"geometry":{"type":"LineString","coordinates":[[-83.684082,32.880392],[-83.68372600000001,32.880778],[-83.683519,32.881017],[-83.68320100000001,32.881421],[-83.682927,32.881784],[-83.68257600000001,32.882238],[-83.682429,32.882406],[-83.68225000000001,32.882576],[-83.682129,32.88268],[-83.68196300000001,32.882792],[-83.68178900000001,32.882897],[-83.68158100000001,32.883004]]},"id":"8744c0a23ffffff-13f7fd2f5e85f3ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a04941931-1397968ae40c6d69","8f44c0a235860ce-17f79063ee8e6f40"]},"geometry":{"type":"LineString","coordinates":[[-83.68158100000001,32.883004],[-83.68134500000001,32.883094],[-83.68114700000001,32.883158],[-83.68050500000001,32.883338],[-83.68024600000001,32.883425],[-83.680014,32.883512],[-83.679867,32.883583],[-83.679643,32.883707],[-83.67954,32.883768],[-83.679356,32.88389],[-83.67908200000001,32.884081],[-83.679061,32.884104]]},"id":"8644c0a27ffffff-179ef38ffc6e8622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a04941931-1397968ae40c6d69","8f44c0a0495c75d-13f6d942180269a1"]},"geometry":{"type":"LineString","coordinates":[[-83.679061,32.884104],[-83.67869400000001,32.884341],[-83.678506,32.884442],[-83.67834900000001,32.884521],[-83.678117,32.884614],[-83.6779487,32.884666100000004]]},"id":"8944c0a0497ffff-13d797dd4b166245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6768438,32.8849912]},"id":"8f44c0a04829c24-13bf9bf4a3548a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0495c75d-13f6d942180269a1","8f44c0a04829c24-13bf9bf4a3548a4b"]},"geometry":{"type":"LineString","coordinates":[[-83.6779487,32.884666100000004],[-83.677839,32.8847],[-83.67756100000001,32.884779],[-83.67738100000001,32.884822],[-83.677245,32.884861],[-83.67709400000001,32.884898],[-83.6768438,32.8849912]]},"id":"8844c0a049fffff-13d6ba9ca8484e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676443,32.885097]},"id":"8f44c0a0482b992-1397bcef21057547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0482b992-1397bcef21057547","8f44c0a04829c24-13bf9bf4a3548a4b"]},"geometry":{"type":"LineString","coordinates":[[-83.6768438,32.8849912],[-83.676839,32.884993],[-83.676443,32.885097]]},"id":"8a44c0a0482ffff-13f6bc71db061434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0482b992-1397bcef21057547","8f44c0a0480ccd3-13ffbe79d888412a"]},"geometry":{"type":"LineString","coordinates":[[-83.676443,32.885097],[-83.67581150000001,32.885295500000005]]},"id":"8944c0a0483ffff-13bfbdb473c855ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0480ccd3-13ffbe79d888412a","8f44c0a0480e554-13dedfabfdf6f9b8"]},"geometry":{"type":"LineString","coordinates":[[-83.67581150000001,32.885295500000005],[-83.67577800000001,32.885306],[-83.675599,32.885354],[-83.67532170000001,32.8854508]]},"id":"8a44c0a0480ffff-13bfff13ac695d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6751517,32.8855102]},"id":"8f44c0a0481d841-1797e0163fe2a8c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0480e554-13dedfabfdf6f9b8","8f44c0a0481d841-1797e0163fe2a8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.67532170000001,32.8854508],[-83.6751517,32.8855102]]},"id":"8944c0a0483ffff-13f7dfe1162fbe5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674718,32.8856654]},"id":"8f44c0a04818b01-17f6e12549f2957c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a04818b01-17f6e12549f2957c","8f44c0a0481d841-1797e0163fe2a8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6751517,32.8855102],[-83.67505200000001,32.885545],[-83.674718,32.8856654]]},"id":"8a44c0a0481ffff-17b6a09dd7398cc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67413850000001,32.8858602]},"id":"8f44c0a0481aa9d-17dea28f70968882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0481aa9d-17dea28f70968882","8f44c0a04818b01-17f6e12549f2957c"]},"geometry":{"type":"LineString","coordinates":[[-83.674718,32.8856654],[-83.67445000000001,32.885762],[-83.674203,32.885838],[-83.67413850000001,32.8858602]]},"id":"8a44c0a0481ffff-17b7f1d9d59d3de0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67327560000001,32.8861782]},"id":"8f44c0a048f6ca6-17b7e4aac212e35c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a0481aa9d-17dea28f70968882","8f44c0a048f6ca6-17b7e4aac212e35c"]},"geometry":{"type":"LineString","coordinates":[[-83.67413850000001,32.8858602],[-83.67357600000001,32.886054],[-83.67327560000001,32.8861782]]},"id":"8844c0a049fffff-17bef39e871b08d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0752ea-13ffdf0b8d15fce8","8f44c0b1a043065-13f7ff11cbd29b8e"]},"geometry":{"type":"LineString","coordinates":[[-83.649354,32.819929],[-83.649364,32.818502]]},"id":"8944c0b1a07ffff-13bfff0ea5afcdd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0752ea-13ffdf0b8d15fce8","8f44c0b1a15b0f1-17ffdeff0e7885e8"]},"geometry":{"type":"LineString","coordinates":[[-83.649364,32.818502],[-83.64938400000001,32.817894]]},"id":"8944c0b1a07ffff-17bfdf0549e58f20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64943000000001,32.81646]},"id":"8f44c0b1a151928-13ffdee24a339e44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a151928-13ffdee24a339e44","8f44c0b1a15b0f1-17ffdeff0e7885e8"]},"geometry":{"type":"LineString","coordinates":[[-83.64938400000001,32.817894],[-83.64943000000001,32.81646]]},"id":"8844c0b1a1fffff-17bffef0a4e03f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a151928-13ffdee24a339e44","8f44c0b1a1292c5-17fefebfe6e15086"]},"geometry":{"type":"LineString","coordinates":[[-83.64943000000001,32.81646],[-83.64946,32.815966],[-83.649466,32.815683],[-83.649485,32.814811]]},"id":"8844c0b1a1fffff-13fefecce4bd9979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1292c5-17fefebfe6e15086","8f44c0b1a129314-1797febf400cba8b"]},"geometry":{"type":"LineString","coordinates":[[-83.649485,32.814811],[-83.64948600000001,32.814681]]},"id":"8c44c0b1a1293ff-17d6debf97cc1e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd1120a-13fff867464c64f1","8f44c0b8bd13150-13d7b9aceacc346d"]},"geometry":{"type":"LineString","coordinates":[[-83.56033400000001,32.864818],[-83.56018800000001,32.864779],[-83.559959,32.864734],[-83.55985000000001,32.864724],[-83.559813,32.864724]]},"id":"8944c0b8bd3ffff-13dff9090a4464fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55900000000001,32.864086]},"id":"8f44c0b8bda50a0-17b7fba90e2825a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bda50a0-17b7fba90e2825a5","8f44c0b8bd13150-13d7b9aceacc346d"]},"geometry":{"type":"LineString","coordinates":[[-83.559813,32.864724],[-83.559599,32.864556],[-83.559166,32.864227],[-83.55900000000001,32.864086]]},"id":"8844c0b8bdfffff-13ffbaac34664100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558895,32.863633]},"id":"8f44c0b8bda494d-179fbbeaa2f27c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bda50a0-17b7fba90e2825a5","8f44c0b8bda494d-179fbbeaa2f27c66"]},"geometry":{"type":"LineString","coordinates":[[-83.55900000000001,32.864086],[-83.55896700000001,32.864041],[-83.558943,32.863996],[-83.558929,32.863951],[-83.55891100000001,32.863841],[-83.558895,32.863633]]},"id":"8844c0b8bdfffff-17bfbbd7a3121b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24213c75-139fcf418f98a700","8f44c0a255b6ced-13f76a1522684356"]},"geometry":{"type":"LineString","coordinates":[[-83.70826000000001,32.851756],[-83.708071,32.851805],[-83.707935,32.851853000000006],[-83.707818,32.851917],[-83.707526,32.852122],[-83.707228,32.852508],[-83.70715,32.852673],[-83.70711,32.852836],[-83.70710000000001,32.852975],[-83.70712800000001,32.853172],[-83.70718500000001,32.853369],[-83.70729100000001,32.853516],[-83.707426,32.853664],[-83.70786100000001,32.853935],[-83.708983,32.85457],[-83.710379,32.855375]]},"id":"8844c0a243fffff-17d64f3a4a46d6f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a242422e3-17ffe67c8d9ab7c4","8f44c0a255b6ced-13f76a1522684356"]},"geometry":{"type":"LineString","coordinates":[[-83.710379,32.855375],[-83.71075400000001,32.855165],[-83.71124,32.854847],[-83.71165900000001,32.854441],[-83.71185200000001,32.854163]]},"id":"8844c0a243fffff-139e582654ffb390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64727500000001,32.848276000000006]},"id":"8f44c0a342428e9-139ee4252113ac46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646657,32.849276]},"id":"8f44c0a3425ab2a-139fe5a7622b0d5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3425ab2a-139fe5a7622b0d5c","8f44c0a342428e9-139ee4252113ac46"]},"geometry":{"type":"LineString","coordinates":[[-83.64727500000001,32.848276000000006],[-83.64720100000001,32.848433],[-83.64698700000001,32.848759],[-83.646657,32.849276]]},"id":"8944c0a3427ffff-13d7f4e19808179c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645874,32.850429000000005]},"id":"8f44c0a355b2341-17dee790c48b4c2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3425ab2a-139fe5a7622b0d5c","8f44c0a355b2341-17dee790c48b4c2a"]},"geometry":{"type":"LineString","coordinates":[[-83.646657,32.849276],[-83.645874,32.850429000000005]]},"id":"8744c0a35ffffff-17f7f69c12276a71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68692200000001,32.836284]},"id":"8f44c0b19292198-13d78359c5f86ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19292198-13d78359c5f86ec3","8f44c0b19290050-13d6c1f80f63c1c5"]},"geometry":{"type":"LineString","coordinates":[[-83.68692200000001,32.836284],[-83.687337,32.836255],[-83.687488,32.83625]]},"id":"8a44c0b19297fff-13dfa2a8f4bff9d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19282d88-13d6c046e28cc5e6","8f44c0b19290050-13d6c1f80f63c1c5"]},"geometry":{"type":"LineString","coordinates":[[-83.687488,32.83625],[-83.687773,32.83625],[-83.688181,32.83625]]},"id":"8944c0b192bffff-13d6c11f78f57c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69002900000001,32.836257]},"id":"8f44c0b192a8c20-13d6fbc3e5e23e35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192a8c20-13d6fbc3e5e23e35","8f44c0b19282d88-13d6c046e28cc5e6"]},"geometry":{"type":"LineString","coordinates":[[-83.688181,32.83625],[-83.689057,32.836249],[-83.68978700000001,32.836241],[-83.689994,32.836244],[-83.69002900000001,32.836257]]},"id":"8944c0b192bffff-13be7e04a74504f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61427300000001,32.851823]},"id":"8f44c0a36673810-13d774b76747bb28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61346,32.851798]},"id":"8f44c0a36609a9b-13b7f6b388ff68ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36609a9b-13b7f6b388ff68ae","8f44c0a36673810-13d774b76747bb28"]},"geometry":{"type":"LineString","coordinates":[[-83.61427300000001,32.851823],[-83.61346,32.851798]]},"id":"8944c0a3667ffff-13bfb5b573abf116"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612589,32.851793]},"id":"8f44c0a366e496e-13b7b8d3eb6a4718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e496e-13b7b8d3eb6a4718","8f44c0a36609a9b-13b7f6b388ff68ae"]},"geometry":{"type":"LineString","coordinates":[[-83.61346,32.851798],[-83.612589,32.851793]]},"id":"8a44c0a3660ffff-13b737c3bbcd3b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611772,32.851796]},"id":"8f44c0a3661ba50-13b7bad28a349fd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e496e-13b7b8d3eb6a4718","8f44c0a3661ba50-13b7bad28a349fd6"]},"geometry":{"type":"LineString","coordinates":[[-83.612589,32.851793],[-83.611772,32.851796]]},"id":"8844c0a367fffff-13b7b9d337f56598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610905,32.851804]},"id":"8f44c0a366f4420-13bfbcf06fbcb1d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3661ba50-13b7bad28a349fd6","8f44c0a366f4420-13bfbcf06fbcb1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.611772,32.851796],[-83.610905,32.851804]]},"id":"8944c0a366fffff-13b73be1738698d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100622,32.851804800000004]},"id":"8f44c0a3668dd26-13bf3eff2744a30a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668dd26-13bf3eff2744a30a","8f44c0a366f4420-13bfbcf06fbcb1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.610905,32.851804],[-83.6100622,32.851804800000004]]},"id":"8844c0a367fffff-13bffdf7c0cfbd23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668dd26-13bf3eff2744a30a","8f44c0a3668e19b-13bf711175ef6087"]},"geometry":{"type":"LineString","coordinates":[[-83.6100622,32.851804800000004],[-83.60921370000001,32.8518099]]},"id":"8a44c0a3668ffff-13bfe0084b9d5991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60761690000001,32.8518102]},"id":"8f44c0b8da6db9d-13bf64f77ce8bbd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6db9d-13bf64f77ce8bbd7","8f44c0a3668e19b-13bf711175ef6087"]},"geometry":{"type":"LineString","coordinates":[[-83.60921370000001,32.8518099],[-83.60761690000001,32.8518102]]},"id":"8944c0a366bffff-13bf4304729352d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606738,32.8517961]},"id":"8f44c0b8da6e2e5-13b7d71ccef18c54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6e2e5-13b7d71ccef18c54","8f44c0b8da6db9d-13bf64f77ce8bbd7"]},"geometry":{"type":"LineString","coordinates":[[-83.60761690000001,32.8518102],[-83.606738,32.8517961]]},"id":"8a44c0b8da6ffff-13bf460a11c90119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6e2e5-13b7d71ccef18c54","8f44c0b8da40b29-13b7e91980be960f"]},"geometry":{"type":"LineString","coordinates":[[-83.606738,32.8517961],[-83.605924,32.851771]]},"id":"8944c0b8da7ffff-13bfc81b2e0be1f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698487,32.786219]},"id":"8f44c0b0301e4a6-139ee71daf3deb5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03010108-17bfe7018f309ba0","8f44c0b0301e4a6-139ee71daf3deb5f"]},"geometry":{"type":"LineString","coordinates":[[-83.698487,32.786219],[-83.698532,32.785452]]},"id":"8944c0b0303ffff-13bf770f94afd797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03010108-17bfe7018f309ba0","8f44c0b03032795-17ffe6ebaf276cea"]},"geometry":{"type":"LineString","coordinates":[[-83.698532,32.785452],[-83.69856700000001,32.784713]]},"id":"8944c0b0303ffff-17d6f6f6940db660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03032795-17ffe6ebaf276cea","8f44c0b031a912a-13f765d082858a19"]},"geometry":{"type":"LineString","coordinates":[[-83.69856700000001,32.784713],[-83.698587,32.784208],[-83.69861200000001,32.784078],[-83.698656,32.784011],[-83.698767,32.783903],[-83.69902,32.783701]]},"id":"8844c0b031fffff-179666a100f2e8cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698665,32.78248]},"id":"8f44c0b03112516-13fe66ae66c750b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03112516-13fe66ae66c750b7","8f44c0b031a912a-13f765d082858a19"]},"geometry":{"type":"LineString","coordinates":[[-83.69902,32.783701],[-83.698684,32.783364],[-83.698637,32.783209],[-83.698665,32.78248]]},"id":"8944c0b031bffff-1396768abee29c1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698734,32.780972000000006]},"id":"8f44c0b03c4c440-17dfe68349ebbdc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03112516-13fe66ae66c750b7","8f44c0b03c4c440-17dfe68349ebbdc5"]},"geometry":{"type":"LineString","coordinates":[[-83.698665,32.78248],[-83.698734,32.780972000000006]]},"id":"8744c0b03ffffff-17b6e698d27c84ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c4c440-17dfe68349ebbdc5","8f44c0b03c45b84-13d7e66b8c1552c2"]},"geometry":{"type":"LineString","coordinates":[[-83.698734,32.780972000000006],[-83.698772,32.780147]]},"id":"8944c0b03c7ffff-13dff67760e53cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c64c9d-17fe66442c2707d3","8f44c0b03c45b84-13d7e66b8c1552c2"]},"geometry":{"type":"LineString","coordinates":[[-83.698772,32.780147],[-83.698835,32.778768]]},"id":"8844c0b03dfffff-139ef657dfc5691a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69887,32.777971]},"id":"8f44c0b03d5d822-17f7e62e4e03101d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c64c9d-17fe66442c2707d3","8f44c0b03d5d822-17f7e62e4e03101d"]},"geometry":{"type":"LineString","coordinates":[[-83.698835,32.778768],[-83.69887,32.777971]]},"id":"8944c0b03d7ffff-17f6f639335a99ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673102,32.853378]},"id":"8f44c0a26790d56-1797e5174a46984c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26790d56-1797e5174a46984c","8f44c0a26793c4e-17d6e5552e64f8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.67300300000001,32.853898],[-83.673045,32.853732],[-83.67308700000001,32.853529],[-83.673102,32.853378]]},"id":"8a44c0a26797fff-17b6a53126c24f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67415700000001,32.85212]},"id":"8f44c0a267b4bae-13ffa283e356ba5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26790d56-1797e5174a46984c","8f44c0a267b4bae-13ffa283e356ba5d"]},"geometry":{"type":"LineString","coordinates":[[-83.673102,32.853378],[-83.673236,32.852961],[-83.673271,32.852884],[-83.67336,32.852792],[-83.67362200000001,32.852569],[-83.673788,32.852435],[-83.67415700000001,32.85212]]},"id":"8944c0a267bffff-13f7a400ddad50ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641402,32.801962]},"id":"8f44c0badb5c20c-139ef27bc7c63c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb4e56d-1396f0e265059ba6","8f44c0badb5c20c-139ef27bc7c63c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.641402,32.801962],[-83.64205700000001,32.801979]]},"id":"8944c0badb7ffff-139ff1af1d62e939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64273200000001,32.802]},"id":"8f44c0badb4c305-13b6ef3c8df3c89b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb4e56d-1396f0e265059ba6","8f44c0badb4c305-13b6ef3c8df3c89b"]},"geometry":{"type":"LineString","coordinates":[[-83.64205700000001,32.801979],[-83.64273200000001,32.802]]},"id":"8a44c0badb4ffff-139ff00f7de04298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71245,32.785665]},"id":"8f44c0b03b4015a-13d6e506c7bff80d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b62684-17f764f68909dcda","8f44c0b03b4015a-13d6e506c7bff80d"]},"geometry":{"type":"LineString","coordinates":[[-83.71245,32.785665],[-83.71247600000001,32.784933]]},"id":"8944c0b03b7ffff-17dfe4fea32959af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712489,32.784155000000005]},"id":"8f44c0b014db31b-1796e4ee60f47097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b62684-17f764f68909dcda","8f44c0b014db31b-1796e4ee60f47097"]},"geometry":{"type":"LineString","coordinates":[[-83.71247600000001,32.784933],[-83.712489,32.784155000000005]]},"id":"8944c0b03b7ffff-179644f27965598e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b014dc6de-13bf64e00c02321f","8f44c0b014db31b-1796e4ee60f47097"]},"geometry":{"type":"LineString","coordinates":[[-83.712489,32.784155000000005],[-83.712512,32.783381]]},"id":"8a44c0b014dffff-139f44e73b4b1a1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693684,32.837985]},"id":"8f44c0b19251c4d-17fef2d7821ab64c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19251c4d-17fef2d7821ab64c","8f44c0b19252751-17fe74fd8f22c857"]},"geometry":{"type":"LineString","coordinates":[[-83.69280400000001,32.837978],[-83.693684,32.837985]]},"id":"8a44c0b19257fff-17fe73ea853bf7b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695133,32.837997]},"id":"8f44c0b19241903-13966f4deb6374be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19251c4d-17fef2d7821ab64c","8f44c0b19241903-13966f4deb6374be"]},"geometry":{"type":"LineString","coordinates":[[-83.693684,32.837985],[-83.695133,32.837997]]},"id":"8944c0b1927ffff-13967112b0bef10f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5993,32.86684]},"id":"8f44c0b89b2190c-17ff59458c78f60c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.597054,32.868662]},"id":"8f44c0b89b1a84c-13f7dec14c41560b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b1a84c-13f7dec14c41560b","8f44c0b89b2190c-17ff59458c78f60c"]},"geometry":{"type":"LineString","coordinates":[[-83.5993,32.86684],[-83.59893600000001,32.866937],[-83.59876700000001,32.867005],[-83.598635,32.867074],[-83.598055,32.867399],[-83.597784,32.867598],[-83.59767500000001,32.867716],[-83.59753900000001,32.867938],[-83.597362,32.868263],[-83.59723500000001,32.868453],[-83.597054,32.868662]]},"id":"8944c0b89b3ffff-13bfdc5585452415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b1a84c-13f7dec14c41560b","8f44c0b89a04c73-17ffde2147b70109"]},"geometry":{"type":"LineString","coordinates":[[-83.597054,32.868662],[-83.59693,32.868799],[-83.596849,32.868904],[-83.596777,32.869048],[-83.59675800000001,32.869129],[-83.59675700000001,32.869228],[-83.596794,32.869401],[-83.596867,32.869525],[-83.597042,32.869754],[-83.59731000000001,32.870134]]},"id":"8844c0b89bfffff-17b77f01a15f4711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70779900000001,32.782549]},"id":"8f44c0b0384b1b1-13b77061a1bc0ab1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b32213-13bfcdc6236e946b","8f44c0b0384b1b1-13b77061a1bc0ab1"]},"geometry":{"type":"LineString","coordinates":[[-83.70779900000001,32.782549],[-83.70886700000001,32.782556]]},"id":"8844c0b03bfffff-13b75f13e4e45e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b32213-13bfcdc6236e946b","8f44c0b03b04354-13fecaa808193d51"]},"geometry":{"type":"LineString","coordinates":[[-83.70886700000001,32.782556],[-83.70909300000001,32.782561],[-83.70924000000001,32.782567],[-83.70935100000001,32.782583],[-83.709438,32.782603],[-83.709507,32.782628],[-83.70962700000001,32.782694],[-83.70988200000001,32.782871],[-83.710144,32.78307]]},"id":"8944c0b03b3ffff-139fdc21f7062ac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b2aa01-13d648bcccd6416b","8f44c0b03b04354-13fecaa808193d51"]},"geometry":{"type":"LineString","coordinates":[[-83.710144,32.78307],[-83.710425,32.783251],[-83.71093,32.783616]]},"id":"8944c0b03b3ffff-139669b0589edc76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b2aa01-13d648bcccd6416b","8f44c0b03b76821-17ff672b8dfdf66e"]},"geometry":{"type":"LineString","coordinates":[[-83.71093,32.783616],[-83.711492,32.784007],[-83.711572,32.784095]]},"id":"8944c0b03b3ffff-13d657ef71cc8d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b76821-17ff672b8dfdf66e","8f44c0b014db31b-1796e4ee60f47097"]},"geometry":{"type":"LineString","coordinates":[[-83.711572,32.784095],[-83.711619,32.784115],[-83.71169900000001,32.784134],[-83.71177300000001,32.784142],[-83.712489,32.784155000000005]]},"id":"8844c0b03bfffff-179f760ecb2eaf85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b017b5188-13f63d51aca2986f","8f44c0b014db31b-1796e4ee60f47097"]},"geometry":{"type":"LineString","coordinates":[[-83.712489,32.784155000000005],[-83.71427700000001,32.784188],[-83.71468800000001,32.784200000000006],[-83.714841,32.784191],[-83.714906,32.784174],[-83.715062,32.784115],[-83.715141,32.78407],[-83.71545400000001,32.783825],[-83.715607,32.783696]]},"id":"8744c0b01ffffff-17fee0f9ee2cb851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65619500000001,32.778056]},"id":"8f44c0b110d22e8-17bfce5e2f3458d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b110d22e8-17bfce5e2f3458d2","8f44c0b110c30e0-17d6ca82ad86b11c"]},"geometry":{"type":"LineString","coordinates":[[-83.65619500000001,32.778056],[-83.656346,32.778095],[-83.65667900000001,32.77816],[-83.65727100000001,32.778261],[-83.657775,32.778318]]},"id":"8944c0b110fffff-179ecc72440f91a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b110c30e0-17d6ca82ad86b11c","8f44c0b110c9d40-13b6e7e9ab648f10"]},"geometry":{"type":"LineString","coordinates":[[-83.657775,32.778318],[-83.65824,32.778354],[-83.658347,32.77837],[-83.658416,32.778391],[-83.658444,32.778407],[-83.658479,32.778433],[-83.6585,32.778458],[-83.658529,32.778512],[-83.658563,32.778601],[-83.65867,32.778802],[-83.65880200000001,32.779015],[-83.658839,32.779089]]},"id":"8944c0b110fffff-17fee8fc1fb3d3ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65908970000001,32.779298100000005]},"id":"8f44c0b110c9a75-13b7d74cfcc609cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b110c9d40-13b6e7e9ab648f10","8f44c0b110c9a75-13b7d74cfcc609cb"]},"geometry":{"type":"LineString","coordinates":[[-83.658839,32.779089],[-83.658884,32.779154000000005],[-83.65893200000001,32.779214],[-83.658949,32.779230000000005],[-83.65898,32.779249],[-83.65902700000001,32.779273],[-83.65908970000001,32.779298100000005]]},"id":"8b44c0b110c9fff-13fed7a3d5de9752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72427400000001,32.874161]},"id":"8f44c0a219532ce-13dea828c66bd82f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a219532ce-13dea828c66bd82f","8f44c0a2182d269-13d7683865353c07"]},"geometry":{"type":"LineString","coordinates":[[-83.72427400000001,32.874161],[-83.72428500000001,32.874214],[-83.72429000000001,32.87427],[-83.72429000000001,32.874339],[-83.72427400000001,32.874453],[-83.724249,32.874575]]},"id":"8944c0a2197ffff-13d668268111ee69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2182d269-13d7683865353c07","8f44c0a21876911-13ffa8fcaf526e42"]},"geometry":{"type":"LineString","coordinates":[[-83.724249,32.874575],[-83.724236,32.874653],[-83.724208,32.874729],[-83.72417300000001,32.874781],[-83.72393500000001,32.875033]]},"id":"8844c0a219fffff-13ffe8899cc3cab5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180da82-13bfea226c4b7d73","8f44c0a21876911-13ffa8fcaf526e42"]},"geometry":{"type":"LineString","coordinates":[[-83.72393500000001,32.875033],[-83.72374400000001,32.875183],[-83.723557,32.875311],[-83.723465,32.875366]]},"id":"8944c0a2183ffff-13df798ce54c14fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723003,32.875585]},"id":"8f44c0a21808353-13deab43241538bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180da82-13bfea226c4b7d73","8f44c0a21808353-13deab43241538bf"]},"geometry":{"type":"LineString","coordinates":[[-83.723465,32.875366],[-83.723387,32.875422],[-83.723003,32.875585]]},"id":"8a44c0a2180ffff-139eeab025fdf769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180b931-13f63b9568cd6922","8f44c0a21808353-13deab43241538bf"]},"geometry":{"type":"LineString","coordinates":[[-83.723003,32.875585],[-83.7228714,32.8756545]]},"id":"8b44c0a21808fff-13de6b6c45124333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180b931-13f63b9568cd6922","8f44c0a2180b99c-1796abc5b38f0a6b"]},"geometry":{"type":"LineString","coordinates":[[-83.7228714,32.8756545],[-83.7227941,32.875700200000004]]},"id":"8c44c0a2180b9ff-17966bad825256dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180aac5-13dfec4fec025e7f","8f44c0a2180b99c-1796abc5b38f0a6b"]},"geometry":{"type":"LineString","coordinates":[[-83.7227941,32.875700200000004],[-83.7227738,32.8757157],[-83.722695,32.875714],[-83.72257300000001,32.875622]]},"id":"8a44c0a2180ffff-1797fc0d3c45f083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2180aac5-13dfec4fec025e7f","8f44c0a21808353-13deab43241538bf"]},"geometry":{"type":"LineString","coordinates":[[-83.72257300000001,32.875622],[-83.72246600000001,32.875497],[-83.722452,32.875434000000006],[-83.722469,32.875369],[-83.72262500000001,32.875247],[-83.722685,32.875235],[-83.72273200000001,32.87525],[-83.72280400000001,32.875323],[-83.72292800000001,32.875475],[-83.723003,32.875585]]},"id":"8a44c0a2180ffff-13d73c0c00b5bcf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724281,32.874104]},"id":"8f44c0a2195321d-13bf28246435c037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a219532ce-13dea828c66bd82f","8f44c0a2195321d-13bf28246435c037"]},"geometry":{"type":"LineString","coordinates":[[-83.724281,32.874104],[-83.72427400000001,32.874161]]},"id":"8c44c0a219533ff-13bef8269d2f2e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a219532ce-13dea828c66bd82f","8f44c0a2195321d-13bf28246435c037"]},"geometry":{"type":"LineString","coordinates":[[-83.72427400000001,32.874161],[-83.72418800000001,32.874181],[-83.724113,32.874167],[-83.72383,32.873973],[-83.72380600000001,32.873914],[-83.72380600000001,32.873858000000006],[-83.723836,32.873821],[-83.723888,32.873806],[-83.723943,32.873811],[-83.724052,32.873899],[-83.724142,32.873948],[-83.72425100000001,32.873993],[-83.72427900000001,32.874039],[-83.724281,32.874104]]},"id":"8844c0a219fffff-17f638be21fe1403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72224,32.875904000000006]},"id":"8f44c0a218e41a4-17962d200d301f3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a218e41a4-17962d200d301f3f","8f44c0a218e4ce0-17f66d4444e48a55"]},"geometry":{"type":"LineString","coordinates":[[-83.72224,32.875904000000006],[-83.722182,32.875863]]},"id":"8b44c0a218e4fff-17973d3226e2ded9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a218e41a4-17962d200d301f3f","8f44c0a218e4ce0-17f66d4444e48a55"]},"geometry":{"type":"LineString","coordinates":[[-83.722182,32.875863],[-83.72211800000001,32.875864],[-83.72197800000001,32.875956],[-83.72188,32.876004],[-83.72185,32.876035],[-83.721838,32.876081],[-83.721838,32.876106],[-83.721845,32.876136],[-83.721872,32.876165],[-83.721919,32.876177000000006],[-83.72197200000001,32.87617],[-83.722037,32.876148],[-83.722104,32.876114],[-83.722172,32.876085],[-83.722227,32.876036],[-83.72225900000001,32.875984],[-83.722267,32.875942],[-83.72224,32.875904000000006]]},"id":"8a44c0a218e7fff-17f6bd9d36bb96e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723634,32.874893]},"id":"8f44c0a2182bb8d-139e29b8ce8f49e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2182bb29-1396a98621bf2faa","8f44c0a2182bb8d-139e29b8ce8f49e5"]},"geometry":{"type":"LineString","coordinates":[[-83.723634,32.874893],[-83.723715,32.874865]]},"id":"8c44c0a2182bbff-139f699f7a0bef4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2182bb29-1396a98621bf2faa","8f44c0a2182bb8d-139e29b8ce8f49e5"]},"geometry":{"type":"LineString","coordinates":[[-83.723715,32.874865],[-83.723701,32.8748],[-83.72367700000001,32.874758],[-83.72363200000001,32.874723],[-83.723535,32.874663000000005],[-83.72345100000001,32.874625],[-83.723346,32.874539],[-83.72327700000001,32.874507],[-83.723219,32.874507],[-83.723157,32.874529],[-83.723144,32.874567],[-83.723149,32.874616],[-83.72317600000001,32.874657],[-83.723231,32.874706],[-83.723343,32.874785],[-83.723444,32.874867],[-83.72352400000001,32.874896],[-83.723634,32.874893]]},"id":"8a44c0a2182ffff-139f7a4630b4c586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e90eced-13d6aa1d6b1c785d","8f44c0b0e822c25-13ffec26a5056324"]},"geometry":{"type":"LineString","coordinates":[[-83.722639,32.79375],[-83.72277000000001,32.793577],[-83.72285600000001,32.793429],[-83.72292300000001,32.793279000000005],[-83.722969,32.793126],[-83.72300700000001,32.793019],[-83.72306900000001,32.792883],[-83.72324,32.792648],[-83.723473,32.792433]]},"id":"8844c0b0e9fffff-13d7ab358ab4c8d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e900a4d-17dfa9e7abeba4ea","8f44c0b0e90eced-13d6aa1d6b1c785d"]},"geometry":{"type":"LineString","coordinates":[[-83.723473,32.792433],[-83.723511,32.792278],[-83.72355900000001,32.791849]]},"id":"8944c0b0e93ffff-1396f9fded452b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e900a4d-17dfa9e7abeba4ea","8f44c0b0e922336-17bf69bc8ebdc2ce"]},"geometry":{"type":"LineString","coordinates":[[-83.72355900000001,32.791849],[-83.72351300000001,32.791430000000005],[-83.723512,32.791319],[-83.72354700000001,32.791075],[-83.723566,32.791024],[-83.723628,32.790962]]},"id":"8944c0b0e93ffff-17bea9f48ce2c42b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72402600000001,32.793675]},"id":"8f44c0b0e956714-13dee8c3c1c7be2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e825923-13f629556f6ba865","8f44c0b0e956714-13dee8c3c1c7be2c"]},"geometry":{"type":"LineString","coordinates":[[-83.72402600000001,32.793675],[-83.723793,32.793504]]},"id":"8844c0b0e9fffff-139f790c98ee39a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7246612,32.79312]},"id":"8f44c0b0e972726-13f62736caa4695e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e825923-13f629556f6ba865","8f44c0b0e972726-13f62736caa4695e"]},"geometry":{"type":"LineString","coordinates":[[-83.723793,32.793504],[-83.72369900000001,32.79336],[-83.723669,32.793294],[-83.723669,32.793241],[-83.72367700000001,32.793211],[-83.723709,32.793174],[-83.723746,32.793152],[-83.723786,32.79314],[-83.72385700000001,32.793127000000005],[-83.72411600000001,32.793112],[-83.724581,32.793109],[-83.7246612,32.79312]]},"id":"8844c0b0e9fffff-139e68b5aaa6bc9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726331,32.791193]},"id":"8f44c0b012c2af3-17bfa3232775b0fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e922bb3-17ff29a74617cec1","8f44c0b012c2af3-17bfa3232775b0fe"]},"geometry":{"type":"LineString","coordinates":[[-83.723662,32.790853000000006],[-83.72377,32.790819],[-83.72390100000001,32.790761],[-83.724019,32.790683],[-83.72412200000001,32.79063],[-83.72416700000001,32.790613],[-83.724299,32.790577],[-83.72455400000001,32.79054],[-83.724885,32.790532],[-83.725335,32.790536],[-83.725661,32.790545],[-83.72583300000001,32.790554],[-83.725949,32.79057],[-83.72606400000001,32.790605],[-83.726203,32.790663],[-83.72626000000001,32.790692],[-83.726369,32.790792],[-83.72639500000001,32.790849],[-83.726405,32.790895],[-83.72638900000001,32.79103],[-83.726366,32.791106],[-83.726331,32.791193]]},"id":"8744c0b01ffffff-17ff35e935c85afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b012ddce2-17be632aa84bc576","8f44c0b012c2af3-17bfa3232775b0fe"]},"geometry":{"type":"LineString","coordinates":[[-83.726331,32.791193],[-83.726365,32.791327],[-83.72637200000001,32.791386],[-83.72636700000001,32.791522],[-83.726358,32.791573],[-83.72631700000001,32.791716],[-83.726319,32.79177]]},"id":"8944c0b012fffff-17f7f316b1b1a56d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b012ddce2-17be632aa84bc576","8f44c0b012d9216-13dea31922da3fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.726319,32.79177],[-83.726363,32.79193],[-83.726377,32.792062],[-83.726371,32.792194],[-83.72635000000001,32.792323],[-83.726347,32.792465]]},"id":"8a44c0b012dffff-1396331262e7ce1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e960474-13dfe3002354df96","8f44c0b012d9216-13dea31922da3fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.726347,32.792465],[-83.726369,32.79263],[-83.72638,32.792797],[-83.726387,32.793078]]},"id":"8844c0b0e9fffff-139fe3083cf61ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e960474-13dfe3002354df96","8f44c0b0e956714-13dee8c3c1c7be2c"]},"geometry":{"type":"LineString","coordinates":[[-83.726387,32.793078],[-83.726399,32.793315],[-83.72639000000001,32.793377],[-83.726364,32.793456],[-83.726326,32.793515],[-83.726256,32.793596],[-83.726133,32.793692],[-83.72605800000001,32.793728],[-83.725927,32.793754],[-83.725786,32.793757],[-83.724867,32.793751],[-83.724508,32.793743],[-83.724253,32.79372],[-83.72402600000001,32.793675]]},"id":"8944c0b0e97ffff-13d6e56b345a22fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e825076-13f7e9952d2c9939","8f44c0b0e956714-13dee8c3c1c7be2c"]},"geometry":{"type":"LineString","coordinates":[[-83.72402600000001,32.793675],[-83.723858,32.793731],[-83.723819,32.793737],[-83.72374400000001,32.793739],[-83.723691,32.793734]]},"id":"8844c0b0e9fffff-13feb92b2ddfdf53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e825076-13f7e9952d2c9939","8f44c0b0e822c25-13ffec26a5056324"]},"geometry":{"type":"LineString","coordinates":[[-83.723691,32.793734],[-83.72351300000001,32.793743],[-83.722999,32.793742],[-83.722639,32.79375]]},"id":"8a44c0b0e827fff-13ff6addd6308336"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75315900000001,32.892059]},"id":"8f44c0b5354b36d-1795e1a3adca3d69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5354b36d-1795e1a3adca3d69","8f44c0b534f2b33-17b5efb8a96fd5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.75315900000001,32.892059],[-83.75296200000001,32.892457],[-83.752854,32.892716],[-83.75278800000001,32.892896],[-83.75274900000001,32.893029],[-83.75269,32.893286],[-83.752654,32.893559],[-83.752639,32.893727000000005],[-83.75264200000001,32.894123],[-83.752672,32.894405],[-83.75270300000001,32.894598],[-83.752775,32.894889],[-83.752874,32.895201],[-83.753214,32.89621],[-83.75326000000001,32.896386],[-83.753292,32.896576],[-83.753302,32.89672],[-83.753296,32.896811],[-83.753268,32.896946],[-83.7532446,32.8970298],[-83.75323200000001,32.897075],[-83.753146,32.897284],[-83.753089,32.897394000000006],[-83.75299700000001,32.897529],[-83.752926,32.897607],[-83.75275400000001,32.897764],[-83.752617,32.897866],[-83.752487,32.897942],[-83.75233100000001,32.898024],[-83.75219600000001,32.898079],[-83.75209600000001,32.898111],[-83.7520133,32.8981336],[-83.751946,32.898152],[-83.751794,32.898179],[-83.751689,32.89819],[-83.751537,32.8982],[-83.75131800000001,32.898187],[-83.751137,32.898162],[-83.75092000000001,32.898108],[-83.750679,32.898021],[-83.750495,32.897933],[-83.750308,32.897807],[-83.750208,32.897717],[-83.750116,32.897627],[-83.75001,32.897509],[-83.74992,32.897388],[-83.749851,32.897252],[-83.749773,32.897067],[-83.749729,32.896901],[-83.749716,32.896763],[-83.74972000000001,32.896594],[-83.74979900000001,32.896196],[-83.75028900000001,32.894211],[-83.750309,32.894088],[-83.75031,32.894021],[-83.750296,32.893881],[-83.750264,32.893748],[-83.750203,32.893633],[-83.750127,32.893517],[-83.750021,32.893397],[-83.74984,32.89327],[-83.74969800000001,32.893202],[-83.74965,32.893183],[-83.749449,32.89313],[-83.749288,32.89311],[-83.74912900000001,32.893109],[-83.748973,32.893136000000005],[-83.748816,32.893168],[-83.74853300000001,32.893237],[-83.748294,32.89329],[-83.74812800000001,32.89331],[-83.748058,32.893312],[-83.74789200000001,32.893296],[-83.74775500000001,32.893268],[-83.747606,32.89322],[-83.74739100000001,32.893134]]},"id":"8744c0b53ffffff-1797e694caa0888c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74613000000001,32.892876]},"id":"8f44c0b5348e259-17fff2cccabb4429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5348e259-17fff2cccabb4429","8f44c0b534f2b33-17b5efb8a96fd5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.74739100000001,32.893134],[-83.74703000000001,32.892978],[-83.74691700000001,32.892937],[-83.746818,32.892907],[-83.746736,32.89289],[-83.74664800000001,32.892881],[-83.746536,32.892877],[-83.74613000000001,32.892876]]},"id":"8844c0b535fffff-17bdf13ad0525bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400965,32.8411702]},"id":"8f44c0a340c46dc-17d7f5abb2fa43f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340c01b2-13b7f5d22f34dcce","8f44c0a340c46dc-17d7f5abb2fa43f0"]},"geometry":{"type":"LineString","coordinates":[[-83.64003500000001,32.841321],[-83.6400965,32.8411702]]},"id":"8b44c0a340c0fff-17f6f5befb1725e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64027300000001,32.8407379]},"id":"8f44c0a340c49b4-17b7f53d68996250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340c46dc-17d7f5abb2fa43f0","8f44c0a340c49b4-17b7f53d68996250"]},"geometry":{"type":"LineString","coordinates":[[-83.6400965,32.8411702],[-83.64027300000001,32.8407379]]},"id":"8944c0a340fffff-17bef5749d0a7f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64073400000001,32.839678]},"id":"8f44c0a34019aa1-179ef41d422788dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34019aa1-179ef41d422788dd","8f44c0a3400561a-139ef2b631403a96"]},"geometry":{"type":"LineString","coordinates":[[-83.64073400000001,32.839678],[-83.64130850000001,32.838413800000005]]},"id":"8944c0a3403ffff-1397f369b6ca1dbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340051ae-1397f27adc61c314","8f44c0a3400561a-139ef2b631403a96"]},"geometry":{"type":"LineString","coordinates":[[-83.64130850000001,32.838413800000005],[-83.64140350000001,32.838204600000005]]},"id":"8b44c0a34005fff-13d7f29887af9319"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34020958-17b6f16e29b35ffd","8f44c0a340051ae-1397f27adc61c314"]},"geometry":{"type":"LineString","coordinates":[[-83.64140350000001,32.838204600000005],[-83.64183340000001,32.837258600000006]]},"id":"8944c0a3403ffff-17def1f47dc35933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34020958-17b6f16e29b35ffd","8f44c0a3410b484-17b6f0f80995c724"]},"geometry":{"type":"LineString","coordinates":[[-83.64183340000001,32.837258600000006],[-83.6420224,32.836842700000005]]},"id":"8844c0a341fffff-17b6f13318b6960d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.544133,32.815286]},"id":"8f44c0b8394e205-1397dff4e01ccaa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8159569e-17f7db19c28bd216","8f44c0b8394e205-1397dff4e01ccaa7"]},"geometry":{"type":"LineString","coordinates":[[-83.544133,32.815286],[-83.544233,32.815109],[-83.54431100000001,32.814995],[-83.544386,32.814915],[-83.54457500000001,32.814746],[-83.54468800000001,32.814655],[-83.545286,32.814197],[-83.545691,32.813892],[-83.54612200000001,32.813578]]},"id":"8644c0b87ffffff-17dfdda838244f00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.546316,32.813443]},"id":"8f44c0b815950e4-1797faa08d6bdba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b815950e4-1797faa08d6bdba3","8f44c0b8159569e-17f7db19c28bd216"]},"geometry":{"type":"LineString","coordinates":[[-83.54612200000001,32.813578],[-83.546198,32.813519],[-83.546316,32.813443]]},"id":"8b44c0b81595fff-17bfdade1cd1dc76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c789a5d-13f7acceeec99b7a","8f44c0b1c78cd13-13f6ae328fd64c33"]},"geometry":{"type":"LineString","coordinates":[[-83.66994100000001,32.796808],[-83.669945,32.796565],[-83.669915,32.796453],[-83.66989600000001,32.796404],[-83.66982800000001,32.796275],[-83.66937200000001,32.795761]]},"id":"8a44c0b1c78ffff-1397fd4bba1f8bb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c7b1225-17dff00108806bbc","8f44c0b1c78cd13-13f6ae328fd64c33"]},"geometry":{"type":"LineString","coordinates":[[-83.66937200000001,32.795761],[-83.668817,32.795136],[-83.668705,32.795005],[-83.668672,32.794947],[-83.668648,32.794883],[-83.66863000000001,32.794814],[-83.668632,32.794694]]},"id":"8944c0b1c7bffff-17bfef3ebd3dfb58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c7b1225-17dff00108806bbc","8f44c0b1c7a6603-1797af106d79a8fd"]},"geometry":{"type":"LineString","coordinates":[[-83.668632,32.794694],[-83.668654,32.794615],[-83.668676,32.794568000000005],[-83.668728,32.794483],[-83.668763,32.794437],[-83.66901700000001,32.794168]]},"id":"8944c0b1c7bffff-179eaf97848d022e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c44a46c-13f7ad9aa39e5863","8f44c0b1c7a6603-1797af106d79a8fd"]},"geometry":{"type":"LineString","coordinates":[[-83.66901700000001,32.794168],[-83.66961500000001,32.793509]]},"id":"8744c0b1cffffff-17b7be558e1372f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c44cc29-13beac00a335be01","8f44c0b1c44a46c-13f7ad9aa39e5863"]},"geometry":{"type":"LineString","coordinates":[[-83.66961500000001,32.793509],[-83.669876,32.793234000000005],[-83.670271,32.7928]]},"id":"8a44c0b1c44ffff-139ebccc80388a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1c44cc29-13beac00a335be01","8f44c0b1c461174-17d6aad86e3feaf4"]},"geometry":{"type":"LineString","coordinates":[[-83.670271,32.7928],[-83.670643,32.792392],[-83.670727,32.792279],[-83.670772,32.792195],[-83.670788,32.792142000000005],[-83.670806,32.792049],[-83.670817,32.791936],[-83.67081800000001,32.791873],[-83.670805,32.791806],[-83.670764,32.791677],[-83.67074500000001,32.791604]]},"id":"8944c0b1c47ffff-13dfeb1601925f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25010db4-17deee7ae42f8d5f","8f44c0a2500e732-17b7aa960c4d18e3"]},"geometry":{"type":"LineString","coordinates":[[-83.72168500000001,32.859614],[-83.72181400000001,32.859715],[-83.721995,32.859840000000005],[-83.72247200000001,32.860149],[-83.722808,32.860373],[-83.722989,32.860501],[-83.723217,32.860704000000005],[-83.72328,32.860780000000005]]},"id":"8944c0a2503ffff-17bf2c7e53b0cf5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63347800000001,32.871829000000005]},"id":"8f44c0a339ad2f4-139f25d44d7e88c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3392860d-13feff200ff34f9a","8f44c0a339ad2f4-139f25d44d7e88c0"]},"geometry":{"type":"LineString","coordinates":[[-83.63347800000001,32.871829000000005],[-83.635146,32.871381],[-83.636224,32.871166]]},"id":"8844c0a339fffff-13d7927d46983431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634639,32.873465]},"id":"8f44c0a3382371c-179fa2feabff03ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3392860d-13feff200ff34f9a","8f44c0a3382371c-179fa2feabff03ba"]},"geometry":{"type":"LineString","coordinates":[[-83.636224,32.871166],[-83.636778,32.871096],[-83.63719,32.871059],[-83.637382,32.87106],[-83.637578,32.871096],[-83.637713,32.87116],[-83.637878,32.871305],[-83.637924,32.871412],[-83.637928,32.871495],[-83.63789600000001,32.871597],[-83.63778500000001,32.871716],[-83.637601,32.871868],[-83.637378,32.871983],[-83.637085,32.872075],[-83.63659,32.872188],[-83.636121,32.872304],[-83.635518,32.872534],[-83.635193,32.872743],[-83.63505400000001,32.872853],[-83.634928,32.873002],[-83.63479000000001,32.873198],[-83.634639,32.873465]]},"id":"8644c0a37ffffff-13fffe6394841417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a338ad62e-13dfe83a0960c234","8f44c0a3382371c-179fa2feabff03ba"]},"geometry":{"type":"LineString","coordinates":[[-83.634639,32.873465],[-83.634563,32.873621],[-83.63448500000001,32.873748],[-83.63438400000001,32.873877],[-83.634265,32.874004],[-83.634107,32.874149],[-83.633993,32.874237],[-83.633851,32.874322],[-83.633728,32.874381],[-83.633401,32.874509],[-83.632554,32.874803],[-83.632496,32.874803]]},"id":"8844c0a339fffff-139f5555d3e9f172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71059100000001,32.779325]},"id":"8f44c0b014b5661-13d66990a684009a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b014b5661-13d66990a684009a","8f44c0b0395984e-13bfcfd5a18c3a88"]},"geometry":{"type":"LineString","coordinates":[[-83.71059100000001,32.779325],[-83.70802300000001,32.779286]]},"id":"8644c0b07ffffff-13bffcb321fe2880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647445,32.802712]},"id":"8f44c0b1e602929-13dfe3baef1eafed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647425,32.803731]},"id":"8f44c0b1e61d715-17dfe3c76dc32cec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e61d715-17dfe3c76dc32cec","8f44c0b1e602929-13dfe3baef1eafed"]},"geometry":{"type":"LineString","coordinates":[[-83.647445,32.802712],[-83.64743200000001,32.803536],[-83.647425,32.803731]]},"id":"8944c0b1e63ffff-139ff3c02ab1ee49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6474082,32.804925000000004]},"id":"8f44c0b1e6e2b74-17d6e3d1e534fa29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e6e2b74-17d6e3d1e534fa29","8f44c0b1e61d715-17dfe3c76dc32cec"]},"geometry":{"type":"LineString","coordinates":[[-83.647425,32.803731],[-83.64741000000001,32.804796],[-83.6474082,32.804925000000004]]},"id":"8844c0b1e7fffff-17d7e3ccac86e41c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67539790000001,32.8520733]},"id":"8f44c0a267a4912-13f7df7c575058bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267a4912-13f7df7c575058bf","8f44c0a2644e6ac-139f9f6fe2040742"]},"geometry":{"type":"LineString","coordinates":[[-83.6754178,32.851553700000004],[-83.67540600000001,32.851675],[-83.67539790000001,32.8520733]]},"id":"8a44c0a2644ffff-13bfdf7854352d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267a4912-13f7df7c575058bf","8f44c0a267a42cb-13fe9f7f259afffb"]},"geometry":{"type":"LineString","coordinates":[[-83.67539790000001,32.8520733],[-83.6753934,32.852522400000005]]},"id":"8b44c0a267a4fff-13febf7dbeed9383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67535090000001,32.8531463]},"id":"8f44c0a267a3b6b-1796ff99bdd6bb5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267a3b6b-1796ff99bdd6bb5a","8f44c0a267a42cb-13fe9f7f259afffb"]},"geometry":{"type":"LineString","coordinates":[[-83.6753934,32.852522400000005],[-83.6753886,32.853002000000004],[-83.67537800000001,32.8530846],[-83.67535090000001,32.8531463]]},"id":"8a44c0a267a7fff-17bfbf831c75d1d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.544139,32.819691]},"id":"8f44c0b83b10768-13d7fff12ea58026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b10768-13d7fff12ea58026","8f44c0b83b190f6-179ffdb54e9a8560"]},"geometry":{"type":"LineString","coordinates":[[-83.54505400000001,32.821007],[-83.544971,32.820889],[-83.54488500000001,32.820701],[-83.544846,32.820549],[-83.54477700000001,32.820368],[-83.544712,32.820245],[-83.544599,32.82009],[-83.544515,32.819996],[-83.544337,32.81982],[-83.544139,32.819691]]},"id":"8944c0b83b3ffff-17dffea8bec64d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5437445,32.8195057]},"id":"8f44c0b83b12836-13dff0e7b9389d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b10768-13d7fff12ea58026","8f44c0b83b12836-13dff0e7b9389d21"]},"geometry":{"type":"LineString","coordinates":[[-83.544139,32.819691],[-83.54391700000001,32.819577],[-83.543779,32.819519],[-83.5437445,32.8195057]]},"id":"8a44c0b83b17fff-1397e06b3dc1adb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.541489,32.819494]},"id":"8f44c0b83bb0296-13d7e669606de300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b12836-13dff0e7b9389d21","8f44c0b83bb0296-13d7e669606de300"]},"geometry":{"type":"LineString","coordinates":[[-83.5437445,32.8195057],[-83.54329700000001,32.819333],[-83.543064,32.819271],[-83.542787,32.819235],[-83.542631,32.819229],[-83.542327,32.819246],[-83.542043,32.819291],[-83.54186200000001,32.819341],[-83.54168200000001,32.819404],[-83.541489,32.819494]]},"id":"8844c0b83bfffff-13fff3a8ef591685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b83b9459a-13bfe8798e06591e","8f44c0b83bb0296-13d7e669606de300"]},"geometry":{"type":"LineString","coordinates":[[-83.541489,32.819494],[-83.54125900000001,32.819622],[-83.541048,32.819719],[-83.540884,32.819771],[-83.540644,32.81983]]},"id":"8944c0b83bbffff-13d7f76b4a589396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63914600000001,32.821603]},"id":"8f44c0b1a780506-17fff7fdc181a41c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a7b3698-179ef9c1a828f6b5","8f44c0b1a780506-17fff7fdc181a41c"]},"geometry":{"type":"LineString","coordinates":[[-83.638423,32.82121],[-83.63914600000001,32.821603]]},"id":"8944c0b1a7bffff-1797f8dfba13c183"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a780506-17fff7fdc181a41c","8f44c0b1a7ab2eb-139ff468e09c70af"]},"geometry":{"type":"LineString","coordinates":[[-83.63914600000001,32.821603],[-83.640613,32.822466]]},"id":"8944c0b1a7bffff-139ff6335bf59567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73137100000001,32.895876]},"id":"8f44c0a2c1984d1-17d696d52d9373cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c188d26-17f6d3378d6fe67f","8f44c0a2c1984d1-17d696d52d9373cf"]},"geometry":{"type":"LineString","coordinates":[[-83.73137100000001,32.895876],[-83.73173,32.895808],[-83.731993,32.895772],[-83.73252000000001,32.895721],[-83.73285200000001,32.895694]]},"id":"8944c0a2c1bffff-179f9507a1483127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c188d26-17f6d3378d6fe67f","8f44c0a2c036943-179e104ca22e40ab"]},"geometry":{"type":"LineString","coordinates":[[-83.73285200000001,32.895694],[-83.734047,32.895584]]},"id":"8844c0a2c1fffff-17be71c212c1fa39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c105602-139f2b6f02a82e4b","8f44c0a2c036943-179e104ca22e40ab"]},"geometry":{"type":"LineString","coordinates":[[-83.734047,32.895584],[-83.735731,32.895434],[-83.73586300000001,32.895415],[-83.735915,32.8954],[-83.735984,32.895373],[-83.736081,32.895318],[-83.736181,32.895221],[-83.73622800000001,32.895148],[-83.736258,32.895083],[-83.736272,32.895029],[-83.736276,32.894962],[-83.73627300000001,32.894917],[-83.736258,32.894841],[-83.736231,32.894762],[-83.73611000000001,32.894477],[-83.73607000000001,32.894326],[-83.73604,32.894149]]},"id":"8844c0a2c1fffff-13b71cc593a8a5f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655078,32.820014]},"id":"8f44c0b1aaf5651-179ed1184fc13491"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aaf5651-179ed1184fc13491","8f44c0b1aaf5c19-13d6d124c32bcfce"]},"geometry":{"type":"LineString","coordinates":[[-83.655078,32.820014],[-83.65508100000001,32.819888],[-83.65507600000001,32.819789],[-83.65505800000001,32.81969]]},"id":"8b44c0b1aaf5fff-13b7f119f4d3d14b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa14aec-17ffd0fea22712b7","8f44c0b1aaf5c19-13d6d124c32bcfce"]},"geometry":{"type":"LineString","coordinates":[[-83.65505800000001,32.81969],[-83.655091,32.819626],[-83.65510400000001,32.819058000000005],[-83.655119,32.81751]]},"id":"8844c0b1abfffff-13bff1066bc411ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b017b5188-13f63d51aca2986f","8f44c0b0145ea84-13befd36cb8bb410"]},"geometry":{"type":"LineString","coordinates":[[-83.715607,32.783696],[-83.716029,32.78335],[-83.71605000000001,32.783344],[-83.716113,32.783341],[-83.716139,32.78333],[-83.716154,32.783313],[-83.716161,32.783293],[-83.71615700000001,32.783271],[-83.71614000000001,32.783251],[-83.71612300000001,32.78324],[-83.716099,32.783234],[-83.716075,32.783217],[-83.71605500000001,32.783198],[-83.71565000000001,32.782555]]},"id":"8744c0b01ffffff-13bfbca0f90f4c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01450474-17be7e7448f08107","8f44c0b0145ea84-13befd36cb8bb410"]},"geometry":{"type":"LineString","coordinates":[[-83.71565000000001,32.782555],[-83.715142,32.781767]]},"id":"8944c0b0147ffff-17b6bdd58c4cd3d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01450474-17be7e7448f08107","8f44c0b0140b985-17b67fb264036002"]},"geometry":{"type":"LineString","coordinates":[[-83.715142,32.781767],[-83.714633,32.780935]]},"id":"8844c0b015fffff-17be7f135173892f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01403a9c-139e410a24cd526c","8f44c0b0140b985-17b67fb264036002"]},"geometry":{"type":"LineString","coordinates":[[-83.714633,32.780935],[-83.714083,32.780074]]},"id":"8944c0b0143ffff-13b7505e40d2ab5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68991000000001,32.839926000000006]},"id":"8f44c0a26974c24-17bffc0e42c40fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2692d86c-1397fc058158f631","8f44c0a26974c24-17bffc0e42c40fe7"]},"geometry":{"type":"LineString","coordinates":[[-83.68991000000001,32.839926000000006],[-83.689924,32.839257]]},"id":"8844c0a269fffff-13fefc09e93d36d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2692d86c-1397fc058158f631","8f44c0b1928daa4-17d67bd381255535"]},"geometry":{"type":"LineString","coordinates":[[-83.689924,32.839257],[-83.68996,32.838385],[-83.690004,32.837303]]},"id":"8744c0b19ffffff-13b77bec7f93f05b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192a8c20-13d6fbc3e5e23e35","8f44c0b1928daa4-17d67bd381255535"]},"geometry":{"type":"LineString","coordinates":[[-83.690004,32.837303],[-83.69004100000001,32.836289],[-83.69002900000001,32.836257]]},"id":"8944c0b192bffff-179efbc7b310742f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690037,32.834983]},"id":"8f44c0b1938b673-13be7bbeec0fe3ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1938b673-13be7bbeec0fe3ae","8f44c0b192a8c20-13d6fbc3e5e23e35"]},"geometry":{"type":"LineString","coordinates":[[-83.69002900000001,32.836257],[-83.690037,32.834983]]},"id":"8844c0b193fffff-13b6fbc166c275af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676388,32.83023]},"id":"8f44c0b194d06b0-179fdd11843b20e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676434,32.829624]},"id":"8f44c0b194d459b-13979cf4c94979ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194d459b-13979cf4c94979ec","8f44c0b194d06b0-179fdd11843b20e0"]},"geometry":{"type":"LineString","coordinates":[[-83.676388,32.83023],[-83.676434,32.829624]]},"id":"8a44c0b194d7fff-17d6fd03260bb6fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67644100000001,32.82867]},"id":"8f44c0b194ab6d5-13bedcf06370199a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194d459b-13979cf4c94979ec","8f44c0b194ab6d5-13bedcf06370199a"]},"geometry":{"type":"LineString","coordinates":[[-83.676434,32.829624],[-83.67644100000001,32.82867]]},"id":"8844c0b195fffff-13fefcf29c88d0ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65589100000001,32.78533]},"id":"8f44c0b1165938b-17ffcf1c26a9285e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1165938b-17ffcf1c26a9285e","8f44c0b1e985996-139fcf2f87d4135b"]},"geometry":{"type":"LineString","coordinates":[[-83.65586,32.786626000000005],[-83.65589100000001,32.78533]]},"id":"8544c0b3fffffff-1396cf25de67f7ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655907,32.78405]},"id":"8f44c0b11642a19-17dfcf1225f8f6e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11642a19-17dfcf1225f8f6e1","8f44c0b1165938b-17ffcf1c26a9285e"]},"geometry":{"type":"LineString","coordinates":[[-83.65589100000001,32.78533],[-83.655907,32.78405]]},"id":"8944c0b1167ffff-17dfcf1720794605"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11642a19-17dfcf1225f8f6e1","8f44c0b11675453-139fef0644bc76de"]},"geometry":{"type":"LineString","coordinates":[[-83.655907,32.78405],[-83.65592600000001,32.782739]]},"id":"8944c0b1167ffff-13b7df0c3e83c661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11751554-17f7cef74767bf8e","8f44c0b11675453-139fef0644bc76de"]},"geometry":{"type":"LineString","coordinates":[[-83.65592600000001,32.782739],[-83.655945,32.781916],[-83.65595,32.781036]]},"id":"8844c0b117fffff-1797cefc7b2cff83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0374b132-13f7e6d8ed7a2ca0","8f44c0b03745a84-17b66685cce1f23e"]},"geometry":{"type":"LineString","coordinates":[[-83.69873000000001,32.791578],[-83.69872000000001,32.791642],[-83.698672,32.791777],[-83.69864000000001,32.791882],[-83.698626,32.791981],[-83.698597,32.793094]]},"id":"8944c0b0377ffff-1396f6c503724878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0374b132-13f7e6d8ed7a2ca0","8f44c0b032922aa-17f6662c643a79eb"]},"geometry":{"type":"LineString","coordinates":[[-83.698597,32.793094],[-83.69859100000001,32.793523],[-83.6986,32.793604],[-83.69863500000001,32.793746],[-83.69871300000001,32.793909],[-83.698768,32.793993],[-83.698873,32.794112000000005]]},"id":"8844c0b037fffff-13b7e6b3ae70c527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702021,32.795428]},"id":"8f44c0b032f2644-1396de7ce825bdbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032922aa-17f6662c643a79eb","8f44c0b032f2644-1396de7ce825bdbe"]},"geometry":{"type":"LineString","coordinates":[[-83.698873,32.794112000000005],[-83.698943,32.794175],[-83.69906,32.794258],[-83.69913100000001,32.7943],[-83.69930000000001,32.794373],[-83.69994200000001,32.794621],[-83.70083600000001,32.794956],[-83.701171,32.795118],[-83.701465,32.795296],[-83.70155700000001,32.795344],[-83.701614,32.795368],[-83.70169800000001,32.795395],[-83.701811,32.795419],[-83.701897,32.795426],[-83.702021,32.795428]]},"id":"8744c0b03ffffff-179ff25fa1654a8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65769300000001,32.79442]},"id":"8f44c0b1eb92c5d-17b6cab5e0b6f4c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658652,32.794967]},"id":"8f44c0b1eb912c8-17f6e85e876ed5e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eb92c5d-17b6cab5e0b6f4c0","8f44c0b1eb912c8-17f6e85e876ed5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.65769300000001,32.79442],[-83.65777800000001,32.794459],[-83.658448,32.794852],[-83.658652,32.794967]]},"id":"8844c0b1ebfffff-17dff989717c67d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eb8e001-17bfc59f68351135","8f44c0b1eb912c8-17f6e85e876ed5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.658652,32.794967],[-83.65914400000001,32.795178],[-83.659256,32.795218000000006],[-83.659417,32.79526],[-83.659537,32.795277],[-83.659649,32.795285],[-83.659777,32.795288]]},"id":"8944c0b1ebbffff-17f6c705b0028d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a633962-13d6f2be0c07f852","8f44c0b1a78d142-139ef4c927347cb0"]},"geometry":{"type":"LineString","coordinates":[[-83.640459,32.822654],[-83.64129600000001,32.823150000000005]]},"id":"8844c0b1a7fffff-13bff3c39215f82d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a633962-13d6f2be0c07f852","8f44c0b1a63172d-179ef21feb35e8fb"]},"geometry":{"type":"LineString","coordinates":[[-83.64129600000001,32.823150000000005],[-83.64154900000001,32.82329]]},"id":"8a44c0b1a637fff-13f6f26efadd11a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a63172d-179ef21feb35e8fb","8f44c0b1a60402a-17bff1150a5460c6"]},"geometry":{"type":"LineString","coordinates":[[-83.64154900000001,32.82329],[-83.641976,32.823545]]},"id":"8944c0b1a63ffff-17fff19a79fe92de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642736,32.823974]},"id":"8f44c0b1a62e659-17d7ef3a09cee9d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a60402a-17bff1150a5460c6","8f44c0b1a62e659-17d7ef3a09cee9d0"]},"geometry":{"type":"LineString","coordinates":[[-83.641976,32.823545],[-83.642736,32.823974]]},"id":"8944c0b1a63ffff-17d7f02780898473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a629cda-17b6eda32018c9f6","8f44c0b1a62e659-17d7ef3a09cee9d0"]},"geometry":{"type":"LineString","coordinates":[[-83.642736,32.823974],[-83.643387,32.824346000000006]]},"id":"8a44c0b1a62ffff-17beee6e9ce15d37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682912,32.840559]},"id":"8f44c0a26d6ca63-17d7ed240beaade0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b196cd4e5-13ffad01abe353fc","8f44c0a26d6ca63-17d7ed240beaade0"]},"geometry":{"type":"LineString","coordinates":[[-83.682912,32.840559],[-83.682967,32.838805]]},"id":"8744c0a26ffffff-17b7cd12d9609089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b196cd4e5-13ffad01abe353fc","8f44c0b1960a4c4-13beed560e51a7d6"]},"geometry":{"type":"LineString","coordinates":[[-83.682967,32.838805],[-83.682978,32.837868],[-83.682828,32.836737],[-83.682806,32.836427],[-83.682832,32.836007]]},"id":"8844c0b197fffff-1796bd28f9e3d872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68579700000001,32.835025]},"id":"8f44c0b19758b58-13d6a618edd84c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19758b58-13d6a618edd84c3e","8f44c0b1960a4c4-13beed560e51a7d6"]},"geometry":{"type":"LineString","coordinates":[[-83.682832,32.836007],[-83.68310000000001,32.835413],[-83.683148,32.835333],[-83.68327500000001,32.835217],[-83.683322,32.835194],[-83.683452,32.835147],[-83.683896,32.835085],[-83.68442200000001,32.835096],[-83.684971,32.835082],[-83.68579700000001,32.835025]]},"id":"8844c0b197fffff-13befa2a25f3b5be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686946,32.834811]},"id":"8f44c0b1974c742-13bee34acb863b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19758b58-13d6a618edd84c3e","8f44c0b1974c742-13bee34acb863b39"]},"geometry":{"type":"LineString","coordinates":[[-83.68579700000001,32.835025],[-83.68599800000001,32.834898],[-83.686159,32.834829],[-83.68628000000001,32.834811],[-83.686946,32.834811]]},"id":"8944c0b1977ffff-13d6e4bd20f3c54a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.589768,32.8523]},"id":"8f44c0b8d700d6c-13fff08b0ec703e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.589875,32.85446]},"id":"8f44c0b8d6254d4-13b7f04821fd47fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6254d4-13b7f04821fd47fa","8f44c0b8d700d6c-13fff08b0ec703e0"]},"geometry":{"type":"LineString","coordinates":[[-83.589768,32.8523],[-83.589825,32.853460000000005],[-83.589875,32.85446]]},"id":"8844c0b8d7fffff-1797f069b407d6e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.589887,32.854708]},"id":"8f44c0b8d621c02-13d7f040a76666d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6254d4-13b7f04821fd47fa","8f44c0b8d621c02-13d7f040a76666d6"]},"geometry":{"type":"LineString","coordinates":[[-83.589875,32.85446],[-83.589887,32.854708]]},"id":"8a44c0b8d627fff-139770446e671698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612554,32.855314]},"id":"8f44c0a32996360-13df78e9c9836646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611744,32.855345]},"id":"8f44c0a32d6545e-13dfbae40fd5a629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d6545e-13dfbae40fd5a629","8f44c0a32996360-13df78e9c9836646"]},"geometry":{"type":"LineString","coordinates":[[-83.612554,32.855314],[-83.611744,32.855345]]},"id":"8744c0a32ffffff-13d7f9e6e8aece1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109,32.855373]},"id":"8f44c0a32d62c74-13f73cf38db4c6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d6545e-13dfbae40fd5a629","8f44c0a32d62c74-13f73cf38db4c6aa"]},"geometry":{"type":"LineString","coordinates":[[-83.611744,32.855345],[-83.6109,32.855373]]},"id":"8a44c0a32d67fff-13f77bebcc645807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610021,32.855383]},"id":"8f44c0a32d70703-13f77f18eaec2863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d62c74-13f73cf38db4c6aa","8f44c0a32d70703-13f77f18eaec2863"]},"geometry":{"type":"LineString","coordinates":[[-83.6109,32.855373],[-83.610021,32.855383]]},"id":"8944c0a32d7ffff-13f77e0634f1b544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d09c6d-13ff613580587036","8f44c0a32d70703-13f77f18eaec2863"]},"geometry":{"type":"LineString","coordinates":[[-83.610021,32.855383],[-83.609156,32.855397]]},"id":"8844c0a32dfffff-13ffc0273478fcb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.608345,32.855406]},"id":"8f44c0a32d0a383-1397c33063760b7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d09c6d-13ff613580587036","8f44c0a32d0a383-1397c33063760b7e"]},"geometry":{"type":"LineString","coordinates":[[-83.609156,32.855397],[-83.608345,32.855406]]},"id":"8a44c0a32d0ffff-1397f232ff577c20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d0a383-1397c33063760b7e","8f44c0a32d1b8ec-1397455526181524"]},"geometry":{"type":"LineString","coordinates":[[-83.608345,32.855406],[-83.607467,32.85541]]},"id":"8944c0a32d3ffff-13974442c69b5f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6112549,32.842830500000005]},"id":"8f44c0a3655d568-13d73c15b4f83e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3655d568-13d73c15b4f83e36","8f44c0a3646416a-17b77b11098ec1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6112549,32.842830500000005],[-83.611489,32.843286],[-83.611599,32.843491],[-83.611672,32.843607]]},"id":"8944c0a3657ffff-17d7bb9692181b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36092592-17bffa35a6b81664","8f44c0a3646416a-17b77b11098ec1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.611672,32.843607],[-83.611948,32.844092],[-83.61202300000001,32.844206]]},"id":"8a44c0a36467fff-17f7baa53281ee68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61250000000001,32.84512]},"id":"8f44c0a3646d0db-13ff390b8ddc143b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36092592-17bffa35a6b81664","8f44c0a3646d0db-13ff390b8ddc143b"]},"geometry":{"type":"LineString","coordinates":[[-83.61202300000001,32.844206],[-83.612091,32.844354],[-83.61250000000001,32.84512]]},"id":"8944c0a3647ffff-13dfb9a2e08fe2be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3690b718-13979da1639b5130","8f44c0a3690bcb3-13ff1dcb4e875d3c"]},"geometry":{"type":"LineString","coordinates":[[-83.62372900000001,32.83534],[-83.62368500000001,32.835219],[-83.62366200000001,32.835096]]},"id":"8b44c0a3690bfff-13bf3db976ddb45d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6238264,32.834563100000004]},"id":"8f44c0a3690ea5d-17b7fd6489f13812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3690ea5d-17b7fd6489f13812","8f44c0a3690bcb3-13ff1dcb4e875d3c"]},"geometry":{"type":"LineString","coordinates":[[-83.62366200000001,32.835096],[-83.623666,32.83493],[-83.623694,32.834775],[-83.62375870000001,32.8346503],[-83.6238264,32.834563100000004]]},"id":"8a44c0a3690ffff-13d7fdae5ff148bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3690ea5d-17b7fd6489f13812","8f44c0a3690c79e-17f71d37242a2012"]},"geometry":{"type":"LineString","coordinates":[[-83.6238264,32.834563100000004],[-83.62389900000001,32.834484800000006]]},"id":"8a44c0a3690ffff-179f9d4dd4287e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62440020000001,32.8338568]},"id":"8f44c0a36928498-17ff9bfdec394318"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3690c79e-17f71d37242a2012","8f44c0a36928498-17ff9bfdec394318"]},"geometry":{"type":"LineString","coordinates":[[-83.62389900000001,32.834484800000006],[-83.624193,32.834092000000005],[-83.624312,32.833953],[-83.62440020000001,32.8338568]]},"id":"8944c0a3693ffff-17bf9c9e7f798493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682162,32.793377]},"id":"8f44c0b1ca8aca0-1396aef8c3bd47bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca008ca-17b6867e28f60008","8f44c0b1ca8aca0-1396aef8c3bd47bc"]},"geometry":{"type":"LineString","coordinates":[[-83.682162,32.793377],[-83.682866,32.793391],[-83.683952,32.793411],[-83.68400000000001,32.793405],[-83.68407,32.793391],[-83.684126,32.793374],[-83.68418000000001,32.793351],[-83.68423100000001,32.793324000000005],[-83.68427700000001,32.793292],[-83.68432,32.793256],[-83.684385,32.79318],[-83.68525500000001,32.792035],[-83.685635,32.791552]]},"id":"8844c0b1cbfffff-13feaa38030e8f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686322,32.790217000000005]},"id":"8f44c0b1ca24085-13dfa4d0ce36f743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca008ca-17b6867e28f60008","8f44c0b1ca24085-13dfa4d0ce36f743"]},"geometry":{"type":"LineString","coordinates":[[-83.685635,32.791552],[-83.68589700000001,32.791201],[-83.68617300000001,32.790841],[-83.68626900000001,32.790664],[-83.68629100000001,32.790613],[-83.68630800000001,32.790511],[-83.686322,32.790217000000005]]},"id":"8944c0b1ca3ffff-1797c572c1dffb9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca24085-13dfa4d0ce36f743","8f44c0b1cb31ba9-17f684d027fc70c2"]},"geometry":{"type":"LineString","coordinates":[[-83.686322,32.790217000000005],[-83.686323,32.787796]]},"id":"8844c0b1cbfffff-13ff94d07f915789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68836800000001,32.786802]},"id":"8f44c0b03489944-13977fd20403fdeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03489944-13977fd20403fdeb","8f44c0b1cb31ba9-17f684d027fc70c2"]},"geometry":{"type":"LineString","coordinates":[[-83.686323,32.787796],[-83.686323,32.78716],[-83.686328,32.786985],[-83.686375,32.78689],[-83.686408,32.786853],[-83.686457,32.786817],[-83.686537,32.786783],[-83.686659,32.786771],[-83.68782200000001,32.786794],[-83.68836800000001,32.786802]]},"id":"8544c0b3fffffff-13fec3134c3deb30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691951,32.866951]},"id":"8f44c0a20451396-17b67712afff0875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69193200000001,32.867061]},"id":"8f44c0a2045e930-17ff771e8ef0c5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2045e930-17ff771e8ef0c5e4","8f44c0a20451396-17b67712afff0875"]},"geometry":{"type":"LineString","coordinates":[[-83.691951,32.866951],[-83.69193200000001,32.867061]]},"id":"8b44c0a20451fff-17d6f718940762c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2045e930-17ff771e8ef0c5e4","8f44c0a20451396-17b67712afff0875"]},"geometry":{"type":"LineString","coordinates":[[-83.69193200000001,32.867061],[-83.69181400000001,32.867058],[-83.691772,32.867046],[-83.691739,32.867021],[-83.691721,32.866988],[-83.691715,32.86695],[-83.69172400000001,32.866763],[-83.691736,32.866717],[-83.691764,32.866681],[-83.69180700000001,32.866659],[-83.69185800000001,32.866653],[-83.69190800000001,32.866666],[-83.691945,32.866697],[-83.691963,32.866735000000006],[-83.69196500000001,32.866816],[-83.691951,32.866951]]},"id":"8944c0a2047ffff-17f7775d0086fb4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2045e930-17ff771e8ef0c5e4","8f44c0a2045e16b-1797f7260d6d24ac"]},"geometry":{"type":"LineString","coordinates":[[-83.69193200000001,32.867061],[-83.691922,32.867182],[-83.69192000000001,32.867283]]},"id":"8a44c0a2045ffff-17be772355e29319"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69169500000001,32.867696]},"id":"8f44c0a2045a030-139677b2ae3e8cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2045a030-139677b2ae3e8cfd","8f44c0a2045e16b-1797f7260d6d24ac"]},"geometry":{"type":"LineString","coordinates":[[-83.69192000000001,32.867283],[-83.691916,32.867368],[-83.69191000000001,32.867406],[-83.691896,32.867437],[-83.691872,32.86746],[-83.691843,32.867472],[-83.69175600000001,32.867477],[-83.691736,32.867483],[-83.69172,32.867497],[-83.691703,32.867547],[-83.69169500000001,32.867696]]},"id":"8a44c0a2045ffff-13967770f3610669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19251c4d-17fef2d7821ab64c","8f44c0b1927629c-17bf72cb0b343bbf"]},"geometry":{"type":"LineString","coordinates":[[-83.693684,32.837985],[-83.69370400000001,32.836632]]},"id":"8944c0b1927ffff-17d7f2d140d4dcde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693718,32.835935]},"id":"8f44c0b19229cc3-13ff72c24433f2d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19229cc3-13ff72c24433f2d0","8f44c0b1927629c-17bf72cb0b343bbf"]},"geometry":{"type":"LineString","coordinates":[[-83.69370400000001,32.836632],[-83.693703,32.83635],[-83.69371100000001,32.835974],[-83.693718,32.835935]]},"id":"8844c0b193fffff-13d772c9cc1ecdfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69368800000001,32.835766]},"id":"8f44c0b19228a5c-1397f2d5045d8021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19229cc3-13ff72c24433f2d0","8f44c0b19228a5c-1397f2d5045d8021"]},"geometry":{"type":"LineString","coordinates":[[-83.693718,32.835935],[-83.69371000000001,32.835804],[-83.69368800000001,32.835766]]},"id":"8a44c0b1922ffff-13d772c7210706c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708903,32.752777]},"id":"8f44c0b04643736-17f7edafad2b01ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04643736-17f7edafad2b01ad","8f44c0b04644469-17d6cd1907f3d14f"]},"geometry":{"type":"LineString","coordinates":[[-83.708903,32.752777],[-83.709079,32.752346],[-83.70911500000001,32.75224],[-83.709135,32.752144],[-83.709147,32.752012],[-83.70914400000001,32.751908]]},"id":"8a44c0b04647fff-17fecd4eecca9208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04644469-17d6cd1907f3d14f","8f44c0b0475e0ae-13964dd523660b11"]},"geometry":{"type":"LineString","coordinates":[[-83.70914400000001,32.751908],[-83.709157,32.751333],[-83.70916100000001,32.751164],[-83.70914900000001,32.750481],[-83.709128,32.750369],[-83.709085,32.750282],[-83.70896,32.750084],[-83.708843,32.74993]]},"id":"8844c0b047fffff-13d76d2cfc1bcba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04754096-17966e428e415a03","8f44c0b0475e0ae-13964dd523660b11"]},"geometry":{"type":"LineString","coordinates":[[-83.708843,32.74993],[-83.708787,32.749845],[-83.708743,32.749761],[-83.708708,32.749671],[-83.70867100000001,32.749554],[-83.70865400000001,32.7494],[-83.708652,32.749378],[-83.708658,32.748913],[-83.708668,32.748733]]},"id":"8944c0b0477ffff-1797de364cdd0a05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04754096-17966e428e415a03","8f44c0b0472b884-13d64e33895fe371"]},"geometry":{"type":"LineString","coordinates":[[-83.708668,32.748733],[-83.708692,32.747402]]},"id":"8844c0b047fffff-17f67e3b03b543e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04721166-13b6ee5fe8bc7f22","8f44c0b0472b884-13d64e33895fe371"]},"geometry":{"type":"LineString","coordinates":[[-83.708692,32.747402],[-83.708702,32.747027],[-83.70870400000001,32.746752],[-83.70869900000001,32.74671],[-83.708684,32.746572],[-83.70865500000001,32.746433],[-83.70862100000001,32.746299]]},"id":"8944c0b0473ffff-13ffce3690e86d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70752900000001,32.743536]},"id":"8f44c0b040959a2-13f6510a6f10df08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04721166-13b6ee5fe8bc7f22","8f44c0b040959a2-13f6510a6f10df08"]},"geometry":{"type":"LineString","coordinates":[[-83.70862100000001,32.746299],[-83.708577,32.746215],[-83.708426,32.745972],[-83.708099,32.745491],[-83.707958,32.745267000000005],[-83.707874,32.745016],[-83.707869,32.744621],[-83.707862,32.744546],[-83.70783200000001,32.744394],[-83.707643,32.743876],[-83.70752900000001,32.743536]]},"id":"8744c0b04ffffff-17de4fec36eae459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b71550c-17bfc6e50f72c7e1","8f44c0b1b7058b0-17d6e33a43de33cd"]},"geometry":{"type":"LineString","coordinates":[[-83.660758,32.836689],[-83.659256,32.836652]]},"id":"8944c0b1b73ffff-17d7d50fa8743429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65774300000001,32.836609]},"id":"8f44c0b1b7a0854-17b6ea96a6743d64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b71550c-17bfc6e50f72c7e1","8f44c0b1b7a0854-17b6ea96a6743d64"]},"geometry":{"type":"LineString","coordinates":[[-83.659256,32.836652],[-83.65774300000001,32.836609]]},"id":"8844c0b1b7fffff-17bed8bddbac85db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689581,32.741976]},"id":"8f44c0b068868c3-17977cdbe4f1499c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b068868c3-17977cdbe4f1499c","8f44c0b068aed8a-179efa26c554b755"]},"geometry":{"type":"LineString","coordinates":[[-83.689581,32.741976],[-83.69013700000001,32.741981],[-83.69069,32.741979]]},"id":"8944c0b068bffff-179f7b8152b1c103"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b068aed8a-179efa26c554b755","8f44c0b068aa861-17d679b287283d48"]},"geometry":{"type":"LineString","coordinates":[[-83.69069,32.741979],[-83.690748,32.741982],[-83.690776,32.741988],[-83.690849,32.742043],[-83.69086,32.742061],[-83.69087300000001,32.742111],[-83.690876,32.74248]]},"id":"8944c0b068bffff-179f79c6679dec2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b068aa861-17d679b287283d48","8f44c0b068d4d19-13d6f927c56e6697"]},"geometry":{"type":"LineString","coordinates":[[-83.690876,32.74248],[-83.690872,32.742607],[-83.690869,32.743219],[-83.690883,32.743316],[-83.690932,32.743485],[-83.69109800000001,32.743915]]},"id":"8844c0b069fffff-139ff9968d52d49e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7291727,32.8828735]},"id":"8f44c0a21a6650e-1797fc331dde2630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21a6650e-1797fc331dde2630","8f44c0a21b48031-179fd92be0e281a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7291727,32.8828735],[-83.72932,32.88268],[-83.72941200000001,32.882572],[-83.72945100000001,32.882534],[-83.729506,32.882498000000005],[-83.72954800000001,32.88248],[-83.72961400000001,32.882467000000005],[-83.730018,32.882438],[-83.73008800000001,32.882423],[-83.73016000000001,32.882401],[-83.73028400000001,32.88235],[-83.730413,32.882278]]},"id":"8844c0a21bfffff-17bf9acc9b1ec37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7310867,32.8811404]},"id":"8f44c0a21b68c25-13ded786d9e35515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21b48031-179fd92be0e281a3","8f44c0a21b68c25-13ded786d9e35515"]},"geometry":{"type":"LineString","coordinates":[[-83.730413,32.882278],[-83.730625,32.882165],[-83.730963,32.881974],[-83.73102,32.881937],[-83.73112,32.881836],[-83.73117400000001,32.881734],[-83.731193,32.881663],[-83.73120200000001,32.881577],[-83.73119200000001,32.881451000000006],[-83.73116300000001,32.88122],[-83.7310867,32.8811404]]},"id":"8944c0a21b7ffff-13f797d42937aabf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7197685,32.9182191]},"id":"8f44c0a2840e574-13def328ba54885c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7187681,32.9178352]},"id":"8f44c0a284113ac-13ff3599ff0b038c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2840e574-13def328ba54885c","8f44c0a284113ac-13ff3599ff0b038c"]},"geometry":{"type":"LineString","coordinates":[[-83.7197685,32.9182191],[-83.7195312,32.918132400000005],[-83.71924010000001,32.918018700000005],[-83.7190175,32.9179444],[-83.7188646,32.9178847],[-83.7187681,32.9178352]]},"id":"8944c0a2843ffff-13fe3462bd0a2d76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a28411543-13b636102d90d19d","8f44c0a284113ac-13ff3599ff0b038c"]},"geometry":{"type":"LineString","coordinates":[[-83.7187681,32.9178352],[-83.71870100000001,32.9178025],[-83.718579,32.917709]]},"id":"8b44c0a28411fff-13de75d6b31dc017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a28411543-13b636102d90d19d","8f44c0a2858a2d8-1397b921cb91045e"]},"geometry":{"type":"LineString","coordinates":[[-83.718579,32.917709],[-83.718445,32.9176],[-83.718168,32.917327],[-83.71802100000001,32.917172],[-83.717898,32.917056],[-83.71777,32.916947],[-83.71748000000001,32.91675],[-83.71732200000001,32.916665]]},"id":"8844c0a285fffff-13de378b743f4f0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a94e94c-17f7c0bbd1b61100","8f44c0a2858a2d8-1397b921cb91045e"]},"geometry":{"type":"LineString","coordinates":[[-83.71732200000001,32.916665],[-83.717044,32.916507],[-83.716767,32.916356],[-83.71658500000001,32.916282],[-83.716443,32.916238],[-83.716323,32.916218],[-83.716159,32.916199],[-83.7156782,32.916206100000004],[-83.71543940000001,32.9162107],[-83.7153107,32.916212900000005],[-83.7151766,32.916235400000005],[-83.7150331,32.916265800000005],[-83.7149084,32.9163075],[-83.71464010000001,32.9164077],[-83.71420830000001,32.9165912]]},"id":"8644c0a2fffffff-17d7fce60d16663f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a94e94c-17f7c0bbd1b61100","8f44c0a2a9584d0-13f6441762488b98"]},"geometry":{"type":"LineString","coordinates":[[-83.71420830000001,32.9165912],[-83.713588,32.916851],[-83.71342200000001,32.916915],[-83.71325,32.91696],[-83.71311200000001,32.916983],[-83.71297100000001,32.916995],[-83.712833,32.916992]]},"id":"8944c0a2a97ffff-1397726205e24a21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a82d45e-13d765fa89467203","8f44c0a2a9584d0-13f6441762488b98"]},"geometry":{"type":"LineString","coordinates":[[-83.712833,32.916992],[-83.712698,32.916975],[-83.712547,32.916939],[-83.71239200000001,32.916894],[-83.71206000000001,32.916773]]},"id":"8844c0a2a9fffff-13b6450ba4c48619"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71103120000001,32.9159248]},"id":"8f44c0a2a8206e6-17d7487d81072a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a82d45e-13d765fa89467203","8f44c0a2a8206e6-17d7487d81072a86"]},"geometry":{"type":"LineString","coordinates":[[-83.71206000000001,32.916773],[-83.71178900000001,32.916618],[-83.71160400000001,32.916477],[-83.71119800000001,32.916069],[-83.71103120000001,32.9159248]]},"id":"8944c0a2a83ffff-17dfc7479cf59b81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68527900000001,32.843314]},"id":"8f44c0a268a8a58-17ffc75ca1234267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268a8a58-17ffc75ca1234267","8f44c0a268f6988-17bfc72dc550d1c6"]},"geometry":{"type":"LineString","coordinates":[[-83.68527900000001,32.843314],[-83.685354,32.843826]]},"id":"8944c0a268bffff-179fc7453ef82325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68535200000001,32.844681]},"id":"8f44c0a268f351d-13d7a72f0586cdb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268f351d-13d7a72f0586cdb7","8f44c0a268f6988-17bfc72dc550d1c6"]},"geometry":{"type":"LineString","coordinates":[[-83.685354,32.843826],[-83.68535200000001,32.844681]]},"id":"8a44c0a268f7fff-17def72e68e3fccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685308,32.845124000000006]},"id":"8f44c0a268d5565-13fe874a8ea0d0d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268d5565-13fe874a8ea0d0d9","8f44c0a268f351d-13d7a72f0586cdb7"]},"geometry":{"type":"LineString","coordinates":[[-83.68535200000001,32.844681],[-83.685308,32.845124000000006]]},"id":"8944c0a268fffff-13f6973ccc680111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75637300000001,32.917897]},"id":"8f44c0a2d31155a-1395f9cae5b25677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d31155a-1395f9cae5b25677","8f44c0a2daeaa92-13f7cc9c8f892396"]},"geometry":{"type":"LineString","coordinates":[[-83.75637300000001,32.917897],[-83.757305,32.918092],[-83.75786400000001,32.918196],[-83.758532,32.918335],[-83.75887300000001,32.918398],[-83.759016,32.918411],[-83.759134,32.918408],[-83.759297,32.918391],[-83.759432,32.918365],[-83.759555,32.918332],[-83.75985800000001,32.918231],[-83.760998,32.917831],[-83.761352,32.917713],[-83.76141700000001,32.917688000000005],[-83.76148,32.917654],[-83.761566,32.917591],[-83.76162400000001,32.917533],[-83.76166400000001,32.917471],[-83.76177200000001,32.917208]]},"id":"8744c0a2dffffff-13ffd2e17fb1ba06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dae1c58-17ffec5aecd08599","8f44c0a2daeaa92-13f7cc9c8f892396"]},"geometry":{"type":"LineString","coordinates":[[-83.76177200000001,32.917208],[-83.76182800000001,32.917014],[-83.761938,32.916666],[-83.761961,32.916556],[-83.761965,32.916491],[-83.761933,32.916340000000005],[-83.761915,32.91628],[-83.761898,32.916245],[-83.761877,32.916221]]},"id":"8944c0a2dafffff-13b5fc5149796b2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75892900000001,32.913821]},"id":"8f44c0a2daa0632-13b7f38d61273358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2dae1c58-17ffec5aecd08599","8f44c0a2daa0632-13b7f38d61273358"]},"geometry":{"type":"LineString","coordinates":[[-83.761877,32.916221],[-83.760491,32.915089],[-83.75892900000001,32.913821]]},"id":"8844c0a2dbfffff-179ffff39e3c4395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60082200000001,32.853749]},"id":"8f44c0b8d329a11-17ff758e4e047714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600065,32.853758]},"id":"8f44c0b8d32bcdd-17ffd7676474d0fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d32bcdd-17ffd7676474d0fc","8f44c0b8d329a11-17ff758e4e047714"]},"geometry":{"type":"LineString","coordinates":[[-83.60082200000001,32.853749],[-83.600735,32.85376],[-83.600065,32.853758]]},"id":"8a44c0b8d32ffff-17ff567aa21db5f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d30c9a2-17f7782e2ae3b454","8f44c0b8d32bcdd-17ffd7676474d0fc"]},"geometry":{"type":"LineString","coordinates":[[-83.600065,32.853758],[-83.59979200000001,32.853754],[-83.59974700000001,32.853741]]},"id":"8a44c0b8d32ffff-17ffd7cb44ba54e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35b54a1b-17f6ec712201234a","8f44c0a35b700a2-17f6eb8c6328a21e"]},"geometry":{"type":"LineString","coordinates":[[-83.670091,32.853915],[-83.67016100000001,32.853814],[-83.670457,32.853326]]},"id":"8944c0a35b7ffff-17bfebfd2b5e0c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a26790d56-1797e5174a46984c","8f44c0a35b700a2-17f6eb8c6328a21e"]},"geometry":{"type":"LineString","coordinates":[[-83.670457,32.853326],[-83.67057700000001,32.85313],[-83.67062700000001,32.853068],[-83.67069000000001,32.853022],[-83.670754,32.852988],[-83.67086300000001,32.852961],[-83.67110600000001,32.852981],[-83.672104,32.853098],[-83.672263,32.853121],[-83.672324,32.853135],[-83.67244000000001,32.853187000000005],[-83.67246200000001,32.853202],[-83.672627,32.853313],[-83.672683,32.853347],[-83.67278800000001,32.853386],[-83.67289500000001,32.853388],[-83.673102,32.853378]]},"id":"8644c0a27ffffff-17f7b872bec2b0c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216c6648-139e48c08b2d9de4","8f44c0a2ed30609-13fe51a5616b6d70"]},"geometry":{"type":"LineString","coordinates":[[-83.70728100000001,32.890794],[-83.710924,32.890848000000005]]},"id":"8644c0a27ffffff-13ff6d32fb251b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71191800000001,32.890867]},"id":"8f44c0a216c5ab5-1397e653496ad2b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216c5ab5-1397e653496ad2b8","8f44c0a216c6648-139e48c08b2d9de4"]},"geometry":{"type":"LineString","coordinates":[[-83.710924,32.890848000000005],[-83.71191800000001,32.890867]]},"id":"8a44c0a216c7fff-1397f789ee9447b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216c5ab5-1397e653496ad2b8","8f44c0a2165aa93-13d7624987098276"]},"geometry":{"type":"LineString","coordinates":[[-83.71191800000001,32.890867],[-83.713161,32.890884],[-83.71333,32.890894],[-83.713406,32.89092],[-83.71350000000001,32.890991],[-83.713565,32.891098],[-83.71357300000001,32.891198],[-83.713572,32.891343]]},"id":"8844c0a217fffff-13d753fb2ab64bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50a9e05e-17fdfaac083fac21","8f44c0b50306d9c-13dfbb6823fa00fd"]},"geometry":{"type":"LineString","coordinates":[[-83.76912,32.872999],[-83.769281,32.873362],[-83.769326,32.873478],[-83.76934,32.87353],[-83.769351,32.873662],[-83.769343,32.873759],[-83.769304,32.873939],[-83.76925100000001,32.874079],[-83.769199,32.874166],[-83.768952,32.874526],[-83.76889,32.874631],[-83.76881900000001,32.8748]]},"id":"8744c0b50ffffff-17b5fa8d450a6141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50306d9c-13dfbb6823fa00fd","8f44c0b5031c2c6-17f5fb7e09291272"]},"geometry":{"type":"LineString","coordinates":[[-83.76881900000001,32.8748],[-83.76873300000001,32.875295],[-83.768721,32.875554],[-83.768727,32.875712],[-83.76878400000001,32.876066]]},"id":"8944c0b5033ffff-13fdfb90d2146ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76841,32.877513]},"id":"8f44c0b50231848-13fdbc67c7ec889d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50231848-13fdbc67c7ec889d","8f44c0b5031c2c6-17f5fb7e09291272"]},"geometry":{"type":"LineString","coordinates":[[-83.76878400000001,32.876066],[-83.76883600000001,32.876343],[-83.768844,32.876491],[-83.768842,32.876571000000006],[-83.768828,32.876652],[-83.76879100000001,32.876785000000005],[-83.76875700000001,32.876872],[-83.768628,32.877124],[-83.76841,32.877513]]},"id":"8844c0b503fffff-17d7fbad1f148681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610963,32.84572]},"id":"8f44c0a3644e112-13df3ccc28b27f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3644e112-13df3ccc28b27f76","8f44c0a3644b5b6-17b73cd00f9be563"]},"geometry":{"type":"LineString","coordinates":[[-83.610963,32.84572],[-83.61095680000001,32.8464465]]},"id":"8a44c0a3644ffff-13d73cce1b4b5d5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367a5781-17bffcd3d097a53b","8f44c0a3644b5b6-17b73cd00f9be563"]},"geometry":{"type":"LineString","coordinates":[[-83.61095680000001,32.8464465],[-83.6109524,32.84696],[-83.6109507,32.847070200000005]]},"id":"8844c0a367fffff-17ff3cd1b2afce17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367a5781-17bffcd3d097a53b","8f44c0a367ae833-17bffcd9b5454106"]},"geometry":{"type":"LineString","coordinates":[[-83.6109507,32.847070200000005],[-83.61094130000001,32.847686100000004]]},"id":"8944c0a367bffff-17ff7cd6c5894649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65208200000001,32.799221]},"id":"8f44c0b1e0c0254-13dff868c39074f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0e8383-13f6f56304692cf6","8f44c0b1e0c0254-13dff868c39074f8"]},"geometry":{"type":"LineString","coordinates":[[-83.65208200000001,32.799221],[-83.65240700000001,32.799238],[-83.65275100000001,32.799248],[-83.653058,32.79925],[-83.65332000000001,32.799259]]},"id":"8944c0b1e0fffff-13f7f6e5f6da0f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0e8383-13f6f56304692cf6","8f44c0b1e04d730-139fce1a0ee930f6"]},"geometry":{"type":"LineString","coordinates":[[-83.65332000000001,32.799259],[-83.65527200000001,32.799314],[-83.655923,32.799324],[-83.656304,32.799324]]},"id":"8744c0b1effffff-139fd1be9b3bb99b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba53d9a-179fe1718a497ad8","8f44c0b1bae1733-17bfa355e71992df"]},"geometry":{"type":"LineString","coordinates":[[-83.67459600000001,32.836399],[-83.67450500000001,32.836424],[-83.673821,32.836421]]},"id":"8844c0b1bbfffff-17bfe262c78b4de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673562,32.836419]},"id":"8f44c0b1bae3bb3-17bfe3f7c8526481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bae3bb3-17bfe3f7c8526481","8f44c0b1bae1733-17bfa355e71992df"]},"geometry":{"type":"LineString","coordinates":[[-83.673821,32.836421],[-83.673562,32.836419]]},"id":"8a44c0b1bae7fff-17bea3a6d4f501e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bae3bb3-17bfe3f7c8526481","8f44c0b1bac6d03-17d6a6c68e93552c"]},"geometry":{"type":"LineString","coordinates":[[-83.673562,32.836419],[-83.672605,32.836447],[-83.67241200000001,32.836464]]},"id":"8944c0b1bafffff-17b7a55f5944f687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69140300000001,32.838937]},"id":"8f44c0b192c1481-13dff86926708f56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69150400000001,32.834803]},"id":"8f44c0b1923381e-13b7f82a0bb21a3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192c1481-13dff86926708f56","8f44c0b1923381e-13b7f82a0bb21a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.69140300000001,32.838937],[-83.691383,32.838876],[-83.69150400000001,32.834803]]},"id":"8844c0b193fffff-17d6f85050a60ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192346a1-17d6f81f610a6857","8f44c0b1923381e-13b7f82a0bb21a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.69150400000001,32.834803],[-83.69152100000001,32.834203]]},"id":"8a44c0b19237fff-17fe7824b97f7ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658224,32.846286]},"id":"8f44c0a35d41ba4-17d6c96a0f31b8f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658196,32.849004]},"id":"8f44c0a35c688b6-13f7c97b8deb2763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d41ba4-17d6c96a0f31b8f0","8f44c0a35c688b6-13f7c97b8deb2763"]},"geometry":{"type":"LineString","coordinates":[[-83.658224,32.846286],[-83.658196,32.849004]]},"id":"8844c0a35dfffff-1796e972c995bdc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658223,32.851098]},"id":"8f44c0a35110860-1396c96aa09113b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35110860-1396c96aa09113b6","8f44c0a35c688b6-13f7c97b8deb2763"]},"geometry":{"type":"LineString","coordinates":[[-83.658196,32.849004],[-83.658196,32.84935],[-83.658213,32.849559],[-83.658291,32.849766],[-83.65836300000001,32.849928000000006],[-83.65841800000001,32.850107],[-83.65843000000001,32.850246],[-83.658427,32.850371],[-83.65841400000001,32.850462],[-83.65836300000001,32.850626000000005],[-83.658316,32.850731],[-83.65824900000001,32.850926],[-83.658223,32.851098]]},"id":"8744c0a35ffffff-17f7c939351566d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65913400000001,32.852551000000005]},"id":"8f44c0a351198ed-139ee73143a4a1ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35110860-1396c96aa09113b6","8f44c0a351198ed-139ee73143a4a1ad"]},"geometry":{"type":"LineString","coordinates":[[-83.658223,32.851098],[-83.65823,32.851233],[-83.65828,32.851425],[-83.65840700000001,32.851649],[-83.65850900000001,32.851761],[-83.65859300000001,32.85184],[-83.658731,32.851934],[-83.658871,32.852038],[-83.65901600000001,32.852213],[-83.65911200000001,32.852414],[-83.65913400000001,32.852551000000005]]},"id":"8944c0a3513ffff-13dfc86085d4b5b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03761256-17d7e51c8a06acf8","8f44c0b03395869-17d6e165e1017f5d"]},"geometry":{"type":"LineString","coordinates":[[-83.699308,32.791206],[-83.699534,32.7911],[-83.699962,32.790854],[-83.700252,32.790706],[-83.70035,32.790671],[-83.70048100000001,32.79064],[-83.700666,32.790619],[-83.700829,32.790612]]},"id":"8744c0b03ffffff-17f6f34d22dae62a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701085,32.790612]},"id":"8f44c0b033860a8-17d6e0c5e842e0f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b033860a8-17d6e0c5e842e0f6","8f44c0b03395869-17d6e165e1017f5d"]},"geometry":{"type":"LineString","coordinates":[[-83.700829,32.790612],[-83.701085,32.790612]]},"id":"8944c0b033bffff-17d6e115e5090de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70272800000001,32.790633]},"id":"8f44c0b033ac4e3-17f7fcc30b876d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b033860a8-17d6e0c5e842e0f6","8f44c0b033ac4e3-17f7fcc30b876d1a"]},"geometry":{"type":"LineString","coordinates":[[-83.701085,32.790612],[-83.702405,32.790632],[-83.70272800000001,32.790633]]},"id":"8944c0b033bffff-17de5ec47491db26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b033ac4e3-17f7fcc30b876d1a","8f44c0b03376ad2-1797f3784847bdf7"]},"geometry":{"type":"LineString","coordinates":[[-83.70272800000001,32.790633],[-83.70362800000001,32.790647],[-83.705343,32.790664],[-83.70565,32.790683],[-83.705875,32.790737],[-83.70613300000001,32.790875],[-83.706534,32.791123]]},"id":"8844c0b033fffff-17977801b4827170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70762900000001,32.791182]},"id":"8f44c0b03366091-17bed0cbe6e88e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03366091-17bed0cbe6e88e90","8f44c0b03376ad2-1797f3784847bdf7"]},"geometry":{"type":"LineString","coordinates":[[-83.706534,32.791123],[-83.706654,32.791153],[-83.706761,32.791167],[-83.70688700000001,32.791173],[-83.70762900000001,32.791182]]},"id":"8944c0b0337ffff-17b7d2235eb819ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9aaca49-1797dbfdedaecd66","8f44c0ba9b19511-17ff1737fe62a276"]},"geometry":{"type":"LineString","coordinates":[[-83.6309538,32.8236877],[-83.632059,32.822367],[-83.6329089,32.8213729]]},"id":"8844c0ba9bfffff-13bfe99cc1843ee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63385360000001,32.8202421]},"id":"8f44c0ba9b056ed-17bf54e987e6ef22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9b056ed-17bf54e987e6ef22","8f44c0ba9b19511-17ff1737fe62a276"]},"geometry":{"type":"LineString","coordinates":[[-83.6329089,32.8213729],[-83.633643,32.820498],[-83.63385360000001,32.8202421]]},"id":"8944c0ba9b3ffff-179f3610214bccde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68514800000001,32.881379]},"id":"8f44c0a235350d0-13ffe7ae886e7d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222680f3-17978a48cd21e607","8f44c0a235350d0-13ffe7ae886e7d4b"]},"geometry":{"type":"LineString","coordinates":[[-83.684082,32.880392],[-83.684346,32.880619],[-83.684765,32.880868],[-83.684934,32.88096],[-83.68506400000001,32.881062],[-83.68510400000001,32.881135],[-83.685136,32.881254000000006],[-83.68514800000001,32.881379]]},"id":"8744c0a23ffffff-139ea8cfa104864c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23533b8b-139e88b009e818e8","8f44c0a235350d0-13ffe7ae886e7d4b"]},"geometry":{"type":"LineString","coordinates":[[-83.68514800000001,32.881379],[-83.685028,32.881552],[-83.684736,32.88186]]},"id":"8a44c0a23537fff-139ef82a17905643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683734,32.883636]},"id":"8f44c0a235a98cd-17f68b2246611beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23533b8b-139e88b009e818e8","8f44c0a235a98cd-17f68b2246611beb"]},"geometry":{"type":"LineString","coordinates":[[-83.684736,32.88186],[-83.684101,32.882483],[-83.683897,32.882753],[-83.683839,32.882953],[-83.68376400000001,32.88346],[-83.683734,32.883636]]},"id":"8844c0a235fffff-1797da41e56132ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a235860ce-17f79063ee8e6f40","8f44c0a235a98cd-17f68b2246611beb"]},"geometry":{"type":"LineString","coordinates":[[-83.683734,32.883636],[-83.68369,32.883721],[-83.68359600000001,32.883861],[-83.68351,32.883968],[-83.683355,32.884067],[-83.683279,32.884096],[-83.683186,32.88411],[-83.683013,32.884082],[-83.68288100000001,32.88405],[-83.68274500000001,32.884009],[-83.682578,32.88395],[-83.68246,32.883873],[-83.682225,32.883704],[-83.682011,32.883575],[-83.68191200000001,32.883499],[-83.68179500000001,32.883352],[-83.68158100000001,32.883004]]},"id":"8944c0a235bffff-17be8dd96be64c92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2b239b-17bfc7fcec7020cb","8f44c0b0a2a2098-17b7e50124d0b5b1"]},"geometry":{"type":"LineString","coordinates":[[-83.71123700000001,32.830278],[-83.711501,32.830274],[-83.711849,32.830278],[-83.71245900000001,32.830297]]},"id":"8944c0b0a2bffff-17be567ef9afde3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a2a2098-17b7e50124d0b5b1","8f44c0b0a2125a9-17d6c2150dd239cd"]},"geometry":{"type":"LineString","coordinates":[[-83.71245900000001,32.830297],[-83.713086,32.830314],[-83.713656,32.830318000000005]]},"id":"8a44c0b0a2a7fff-17d6538b2bc339a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714892,32.828559000000006]},"id":"8f44c0b0a3a9060-13ff7f10837e88aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a3a9060-13ff7f10837e88aa","8f44c0b0a2125a9-17d6c2150dd239cd"]},"geometry":{"type":"LineString","coordinates":[[-83.713656,32.830318000000005],[-83.71421000000001,32.830317],[-83.714363,32.830292],[-83.71446300000001,32.83026],[-83.71458700000001,32.830193],[-83.714675,32.830128],[-83.714735,32.830059],[-83.714799,32.82997],[-83.714837,32.829895],[-83.714864,32.829819],[-83.71487400000001,32.829742],[-83.714895,32.828932],[-83.714892,32.828559000000006]]},"id":"8844c0b0a3fffff-13d73fcb157acb3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a3a9060-13ff7f10837e88aa","8f44c0b0a3a00e1-1797418d60d6f887"]},"geometry":{"type":"LineString","coordinates":[[-83.714892,32.828559000000006],[-83.714905,32.82837],[-83.71492,32.82781],[-83.71491900000001,32.827703],[-83.714912,32.827629],[-83.714887,32.827551],[-83.71485600000001,32.827498],[-83.71481700000001,32.827454],[-83.71476100000001,32.827408000000005],[-83.714691,32.827379],[-83.714498,32.827318000000005],[-83.714257,32.827264],[-83.713873,32.82717]]},"id":"8844c0b0a3fffff-17df7fa995974eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a3b0875-17fec46a804e11ad","8f44c0b0a3a00e1-1797418d60d6f887"]},"geometry":{"type":"LineString","coordinates":[[-83.713873,32.82717],[-83.713649,32.827112],[-83.71296500000001,32.826962],[-83.7127,32.826894]]},"id":"8944c0b0a3bffff-17bf62fbf6640c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5386572,32.8069855]},"id":"8f44c0b80751010-17dffd5349499e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.537423,32.807639]},"id":"8f44c0b8062840a-17f7f056af406969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8062840a-17f7f056af406969","8f44c0b80751010-17dffd5349499e97"]},"geometry":{"type":"LineString","coordinates":[[-83.5386572,32.8069855],[-83.53845600000001,32.807087],[-83.537423,32.807639]]},"id":"8844c0b807fffff-179ffed59426896e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53621100000001,32.808283]},"id":"8f44c0b8061d845-17fff34c202de043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8062840a-17f7f056af406969","8f44c0b8061d845-17fff34c202de043"]},"geometry":{"type":"LineString","coordinates":[[-83.537423,32.807639],[-83.53684100000001,32.807937],[-83.536455,32.808144],[-83.53621100000001,32.808283]]},"id":"8944c0b8063ffff-17bff1d33aeefc1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652336,32.835282]},"id":"8f44c0a34b252ed-13f7d7ca023a274b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34b252ed-13f7d7ca023a274b","8f44c0b1b49924a-17d6d978a628ad7c"]},"geometry":{"type":"LineString","coordinates":[[-83.65164700000001,32.834638000000005],[-83.652336,32.835282]]},"id":"8a44c0a34b27fff-139ed8a15e5b1b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34b252ed-13f7d7ca023a274b","8f44c0b1b4d2343-1396d6cecb58692b"]},"geometry":{"type":"LineString","coordinates":[[-83.652336,32.835282],[-83.652738,32.83554]]},"id":"8844c0b1b5fffff-13b7f74c6201d685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4d2343-1396d6cecb58692b","8f44c0b1b4de8a5-13f6f549695cb476"]},"geometry":{"type":"LineString","coordinates":[[-83.652738,32.83554],[-83.653191,32.835814],[-83.653361,32.835901]]},"id":"8944c0b1b4fffff-13fed60d9af94672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7211169,32.8230814]},"id":"8f44c0b0aa234c5-139fefddfb74ac52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0aa05a83-17beef6722bf3258","8f44c0b0aa234c5-139fefddfb74ac52"]},"geometry":{"type":"LineString","coordinates":[[-83.7211169,32.8230814],[-83.7212385,32.8232816],[-83.72128020000001,32.8234356],[-83.72130700000001,32.823515]]},"id":"8944c0b0aa3ffff-179faf9a3003feaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0aa05a83-17beef6722bf3258","8f44c0b0ab53899-139fec1cfbd27f99"]},"geometry":{"type":"LineString","coordinates":[[-83.72130700000001,32.823515],[-83.72125600000001,32.823596],[-83.721258,32.823724],[-83.72126700000001,32.823833],[-83.721287,32.82387],[-83.721315,32.823904],[-83.721349,32.823932],[-83.72138000000001,32.823952000000006],[-83.72141400000001,32.823967],[-83.72145900000001,32.823979],[-83.72149800000001,32.823983000000005],[-83.72161100000001,32.82398],[-83.72290600000001,32.82376],[-83.722977,32.82374],[-83.72306400000001,32.82369],[-83.72311300000001,32.823645],[-83.723144,32.823599],[-83.723166,32.823549],[-83.72317600000001,32.823487],[-83.72317000000001,32.823414],[-83.72315300000001,32.823359],[-83.72312600000001,32.823304],[-83.723095,32.823264],[-83.723059,32.823227],[-83.722981,32.823169],[-83.72292,32.823141],[-83.722885,32.82313],[-83.72273200000001,32.823092],[-83.7226545,32.823059]]},"id":"8844c0b0abfffff-17962cee9b8cc030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702194,32.82143]},"id":"8f44c0b0a404c9e-1797de10c7d520c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a404c9e-1797de10c7d520c9","8f44c0b0a5ad870-1396ff548a1ef40b"]},"geometry":{"type":"LineString","coordinates":[[-83.702194,32.82143],[-83.70222700000001,32.821254],[-83.702236,32.821165],[-83.702228,32.821074],[-83.702197,32.820956],[-83.702146,32.820845],[-83.702059,32.820732],[-83.701952,32.820635],[-83.701651,32.820408],[-83.70156800000001,32.820341],[-83.701508,32.820281],[-83.70147200000001,32.820217],[-83.70145000000001,32.820155],[-83.701442,32.820088000000005],[-83.701448,32.820023],[-83.70147100000001,32.819955],[-83.701575,32.819767],[-83.701676,32.819595]]},"id":"8844c0b0a5fffff-17dffef410eae1df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70330700000001,32.818573]},"id":"8f44c0b0a50406d-139e7b592061ed0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a5ad870-1396ff548a1ef40b","8f44c0b0a50406d-139e7b592061ed0b"]},"geometry":{"type":"LineString","coordinates":[[-83.701676,32.819595],[-83.70193,32.819146],[-83.70213000000001,32.818818],[-83.702194,32.818745],[-83.70225400000001,32.818705],[-83.702329,32.818668],[-83.702476,32.818617],[-83.702612,32.818596],[-83.70277200000001,32.818593],[-83.703041,32.818579],[-83.70330700000001,32.818573]]},"id":"8944c0b0a53ffff-13d6fda9095f2718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0acd6cad-17d67809a3fd45b5","8f44c0b0a50406d-139e7b592061ed0b"]},"geometry":{"type":"LineString","coordinates":[[-83.70330700000001,32.818573],[-83.70360600000001,32.818553],[-83.703789,32.81852],[-83.703944,32.818477],[-83.70407,32.818426],[-83.70418500000001,32.818359],[-83.70433,32.81825],[-83.704454,32.818123],[-83.704521,32.818022],[-83.70457900000001,32.817897],[-83.70466300000001,32.817639]]},"id":"8744c0b0affffff-17de5963cff3217b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67726,32.870144]},"id":"8f44c0a2202ea04-17969af08244854f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22150746-17b6f8df2f7db6be","8f44c0a2202ea04-17969af08244854f"]},"geometry":{"type":"LineString","coordinates":[[-83.67726,32.870144],[-83.677817,32.869805],[-83.67810700000001,32.869611]]},"id":"8844c0a221fffff-17de99e6356ffd1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67845000000001,32.868794]},"id":"8f44c0a2217221e-13b6d808cc64bd3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22150746-17b6f8df2f7db6be","8f44c0a2217221e-13b6d808cc64bd3f"]},"geometry":{"type":"LineString","coordinates":[[-83.67810700000001,32.869611],[-83.678199,32.869529],[-83.678251,32.869473],[-83.67833300000001,32.869363],[-83.67838300000001,32.869273],[-83.67843,32.869149],[-83.67845200000001,32.869051],[-83.67846200000001,32.868937],[-83.67845000000001,32.868794]]},"id":"8944c0a2217ffff-17d6984523adf51f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579159,32.858891]},"id":"8f44c0b88acab0a-1397ea71a9b4770d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88acab0a-1397ea71a9b4770d","8f44c0b88ad82a1-13f78ce660d7acf3"]},"geometry":{"type":"LineString","coordinates":[[-83.579159,32.858891],[-83.578913,32.858868],[-83.578153,32.85884]]},"id":"8944c0b88afffff-13f7bbabd906fcdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57674700000001,32.858781]},"id":"8f44c0b8832864a-13d7b05524bbd452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8832864a-13d7b05524bbd452","8f44c0b88ad82a1-13f78ce660d7acf3"]},"geometry":{"type":"LineString","coordinates":[[-83.578153,32.85884],[-83.57799100000001,32.858826],[-83.57777700000001,32.858797],[-83.577297,32.858832],[-83.577134,32.858812],[-83.57674700000001,32.858781]]},"id":"8844c0b883fffff-13d79e9d9d7ac92d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5916962,32.861857400000005]},"id":"8f44c0b8998d04e-13d7ebd5ef8f499c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8998d04e-13d7ebd5ef8f499c","8f44c0b89832818-139feae4267104d0"]},"geometry":{"type":"LineString","coordinates":[[-83.592083,32.861995],[-83.59199500000001,32.861925],[-83.591801,32.861876],[-83.5916962,32.861857400000005]]},"id":"8844c0b899fffff-13f77b57d8bbb135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.586391,32.860912]},"id":"8f44c0b89d73092-17f778c9a6bb8fdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8998d04e-13d7ebd5ef8f499c","8f44c0b89d73092-17f778c9a6bb8fdf"]},"geometry":{"type":"LineString","coordinates":[[-83.5916962,32.861857400000005],[-83.591261,32.86178],[-83.5878642,32.861114300000004],[-83.5872446,32.8610095],[-83.58661520000001,32.8609263],[-83.586391,32.860912]]},"id":"8744c0b89ffffff-139f724cf2394b60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55730600000001,32.841602]},"id":"8f44c0b8e333912-13d7ffcbc01fbf5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e311b22-13d7e01301e26b7f","8f44c0b8e333912-13d7ffcbc01fbf5f"]},"geometry":{"type":"LineString","coordinates":[[-83.55730600000001,32.841602],[-83.557292,32.841839],[-83.557246,32.842219],[-83.557192,32.842605]]},"id":"8944c0b8e33ffff-139fbfea8b2082c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e311b22-13d7e01301e26b7f","8f44c0b8e31b41a-17d7c0d42b11300e"]},"geometry":{"type":"LineString","coordinates":[[-83.557192,32.842605],[-83.55714900000001,32.842844],[-83.557055,32.843263],[-83.55694700000001,32.843653],[-83.556883,32.843864]]},"id":"8844c0b8e3fffff-17dff06adaab734c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e2185ac-17ffe298aa6b80ea","8f44c0b8e31b41a-17d7c0d42b11300e"]},"geometry":{"type":"LineString","coordinates":[[-83.556883,32.843864],[-83.55653600000001,32.845104],[-83.55627700000001,32.846004],[-83.55615900000001,32.846381]]},"id":"8944c0b8e23ffff-13fff1b2a424e88d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66861800000001,32.88055]},"id":"8f44c0a226d37a6-17f7f009cf3e305a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688819,32.8804049]},"id":"8f44c0a226d38e8-179fbf64d5183c26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a226d38e8-179fbf64d5183c26","8f44c0a226d37a6-17f7f009cf3e305a"]},"geometry":{"type":"LineString","coordinates":[[-83.66861800000001,32.88055],[-83.6688819,32.8804049]]},"id":"8b44c0a226d3fff-17beffb75c26d01c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66986200000001,32.879846]},"id":"8f44c0a226c600c-17bfed004b7a31f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a226d38e8-179fbf64d5183c26","8f44c0a226c600c-17bfed004b7a31f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6688819,32.8804049],[-83.66906,32.880307],[-83.66986200000001,32.879846]]},"id":"8944c0a226fffff-17dfee32195582ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a226c600c-17bfed004b7a31f8","8f44c0a049a3cf4-13fee4d6e41ffc26"]},"geometry":{"type":"LineString","coordinates":[[-83.66986200000001,32.879846],[-83.670163,32.880021],[-83.67131300000001,32.880713],[-83.671598,32.880893],[-83.67224200000001,32.881284],[-83.672589,32.881487],[-83.67320500000001,32.881786000000005]]},"id":"8644c0a27ffffff-139fe8f2b1e0bf30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67519200000001,32.882862]},"id":"8f44c0a0491868b-179edffd06dbc8d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a049a3cf4-13fee4d6e41ffc26","8f44c0a0491868b-179edffd06dbc8d5"]},"geometry":{"type":"LineString","coordinates":[[-83.67320500000001,32.881786000000005],[-83.673855,32.882095],[-83.674362,32.882329],[-83.674681,32.88248],[-83.67489300000001,32.882603],[-83.675037,32.882714],[-83.67519200000001,32.882862]]},"id":"8844c0a049fffff-17b7f258caddea16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0491868b-179edffd06dbc8d5","8f44c0a04826640-17f7ff2605effe86"]},"geometry":{"type":"LineString","coordinates":[[-83.67519200000001,32.882862],[-83.675289,32.882995],[-83.67537700000001,32.88315],[-83.675466,32.883384],[-83.67553600000001,32.883619]]},"id":"8844c0a049fffff-17f7ff8101218510"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0482b992-1397bcef21057547","8f44c0a04826640-17f7ff2605effe86"]},"geometry":{"type":"LineString","coordinates":[[-83.67553600000001,32.883619],[-83.67564300000001,32.883865],[-83.67572600000001,32.884017],[-83.675988,32.884423000000005],[-83.676243,32.884788],[-83.676443,32.885097]]},"id":"8944c0a0483ffff-13bffe1838905b81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658817,32.785241]},"id":"8f44c0b1e922528-17b7e7f76b3a5d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112d5a83-17d6e1c48c892e31","8f44c0b1e922528-17b7e7f76b3a5d92"]},"geometry":{"type":"LineString","coordinates":[[-83.658817,32.785241],[-83.659035,32.785231],[-83.65999500000001,32.785246],[-83.66135600000001,32.785259]]},"id":"8744c0b11ffffff-17bee4de0bf23d88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661945,32.785263]},"id":"8f44c0b112c0d8a-17d7e0546caab119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112c0d8a-17d7e0546caab119","8f44c0b112d5a83-17d6e1c48c892e31"]},"geometry":{"type":"LineString","coordinates":[[-83.66135600000001,32.785259],[-83.661945,32.785263]]},"id":"8944c0b112fffff-17d6e10c7d28f5ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66282700000001,32.785293]},"id":"8f44c0b112ee4ca-17debe2d29680874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112c0d8a-17d7e0546caab119","8f44c0b112ee4ca-17debe2d29680874"]},"geometry":{"type":"LineString","coordinates":[[-83.661945,32.785263],[-83.662052,32.785272],[-83.66282700000001,32.785293]]},"id":"8944c0b112fffff-17d6ff40da06139c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08329963-13fffd2627acd173","8f44c0b08301b2c-13ff403fe20ef357"]},"geometry":{"type":"LineString","coordinates":[[-83.740621,32.822418],[-83.740789,32.822415],[-83.741223,32.822429],[-83.741552,32.822434],[-83.74189100000001,32.822423]]},"id":"8944c0b0833ffff-13fffeb3074acdaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08329963-13fffd2627acd173","8f44c0b08ace51e-13b5f964ee27cde4"]},"geometry":{"type":"LineString","coordinates":[[-83.74189100000001,32.822423],[-83.74260600000001,32.82244],[-83.742946,32.822417],[-83.743075,32.822372],[-83.743155,32.822329],[-83.743263,32.822254],[-83.743429,32.822093]]},"id":"8744c0b08ffffff-13f5fb2cc848b6c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08ac5960-17dff7dee16191c4","8f44c0b08ace51e-13b5f964ee27cde4"]},"geometry":{"type":"LineString","coordinates":[[-83.743429,32.822093],[-83.743565,32.821936],[-83.743797,32.821683],[-83.74395600000001,32.821465],[-83.744021,32.821292],[-83.74405300000001,32.821119]]},"id":"8944c0b08afffff-1395f8808d49e55d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72766850000001,32.8852215]},"id":"8f44c0a21a5acc3-13df7fdf3e982eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726506,32.885885]},"id":"8f44c0a21acd51c-17fe22b5c9f63e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21a5acc3-13df7fdf3e982eaa","8f44c0a21acd51c-17fe22b5c9f63e79"]},"geometry":{"type":"LineString","coordinates":[[-83.72766850000001,32.8852215],[-83.726506,32.885885]]},"id":"8844c0a21bfffff-179ee14a73ba05f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7285093,32.886187]},"id":"8f44c0a2cda292e-17befdd1b4c8b328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21acd51c-17fe22b5c9f63e79","8f44c0a2cda292e-17befdd1b4c8b328"]},"geometry":{"type":"LineString","coordinates":[[-83.726506,32.885885],[-83.72637300000001,32.88597],[-83.72570900000001,32.886356],[-83.72565,32.886403],[-83.72560800000001,32.886442],[-83.72556700000001,32.886501],[-83.72553400000001,32.886566],[-83.72551800000001,32.886637],[-83.725514,32.886696],[-83.72552,32.886753],[-83.725536,32.886833],[-83.72558500000001,32.887009],[-83.725616,32.887146],[-83.725657,32.887289],[-83.725678,32.887329],[-83.72572500000001,32.887392000000006],[-83.725791,32.887448],[-83.725848,32.887479],[-83.725924,32.887509],[-83.72599600000001,32.887523],[-83.726077,32.887524],[-83.72613700000001,32.887518],[-83.726234,32.887493],[-83.726303,32.887462],[-83.72654,32.887327],[-83.728172,32.886369],[-83.7285093,32.886187]]},"id":"8744c0a21ffffff-17b6e2728c55687f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.558468,32.816346]},"id":"8f44c0b81006184-13bffcf58c638b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81015b95-13f7fdb9f2c6e4c9","8f44c0b81006184-13bffcf58c638b18"]},"geometry":{"type":"LineString","coordinates":[[-83.558468,32.816346],[-83.5581537,32.8164709]]},"id":"8944c0b8103ffff-13dffd57ca0a6542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570457,32.82034]},"id":"8f44c0b81a430ca-17ff9fb06283c09e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b81a430ca-17ff9fb06283c09e","8f44c0b81ada068-13bfea4ca1600cc8"]},"geometry":{"type":"LineString","coordinates":[[-83.570457,32.82034],[-83.570221,32.820422],[-83.569597,32.820618],[-83.569066,32.820807],[-83.568624,32.820996],[-83.568083,32.821244],[-83.567867,32.82133],[-83.567535,32.821437],[-83.567142,32.821541],[-83.56672,32.821632],[-83.566378,32.821672],[-83.566111,32.821682]]},"id":"8744c0b81ffffff-17d7b4f202d27237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562565,32.82083]},"id":"8f44c0b81314712-179ff2f4ea003e03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b81ada068-13bfea4ca1600cc8","8f44c0b81314712-179ff2f4ea003e03"]},"geometry":{"type":"LineString","coordinates":[[-83.566111,32.821682],[-83.565915,32.821689],[-83.56561,32.821688],[-83.565391,32.821675],[-83.565201,32.821658],[-83.56501300000001,32.821624],[-83.56464600000001,32.821525],[-83.56315400000001,32.821073000000005],[-83.56284000000001,32.820966],[-83.562565,32.82083]]},"id":"8844c0b813fffff-17f7feb0e77a82ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b81055c28-13d7b80acae8c5d9","8f44c0b81314712-179ff2f4ea003e03"]},"geometry":{"type":"LineString","coordinates":[[-83.562565,32.82083],[-83.562432,32.820746],[-83.56230400000001,32.820653],[-83.562174,32.820549],[-83.561952,32.82031],[-83.56048200000001,32.818641]]},"id":"8744c0b81ffffff-1397f594576a38cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b81008956-17d7fa30231fb829","8f44c0b81055c28-13d7b80acae8c5d9"]},"geometry":{"type":"LineString","coordinates":[[-83.56048200000001,32.818641],[-83.55960300000001,32.81765]]},"id":"8844c0b811fffff-179ff91d72bc5e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b81008956-17d7fa30231fb829","8f44c0b81006184-13bffcf58c638b18"]},"geometry":{"type":"LineString","coordinates":[[-83.55960300000001,32.81765],[-83.55905700000001,32.817036],[-83.558621,32.816536],[-83.558468,32.816346]]},"id":"8944c0b8103ffff-17d7fb95c439bc94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67657,32.893261]},"id":"8f44c0a04a8195d-17f6bc9fc8417813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677079,32.893565]},"id":"8f44c0a04aab50b-17bebb61a04b288e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04aab50b-17bebb61a04b288e","8f44c0a04a8195d-17f6bc9fc8417813"]},"geometry":{"type":"LineString","coordinates":[[-83.67657,32.893261],[-83.676681,32.893302000000006],[-83.67688000000001,32.893417],[-83.677079,32.893565]]},"id":"8944c0a04abffff-17d6bbfbb1432253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67696600000001,32.893653]},"id":"8f44c0a04a8cb35-17f7bba840dc50e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a8cb35-17f7bba840dc50e7","8f44c0a04aab50b-17bebb61a04b288e"]},"geometry":{"type":"LineString","coordinates":[[-83.677079,32.893565],[-83.67715600000001,32.893645],[-83.677222,32.893726],[-83.677216,32.893763],[-83.677165,32.8938],[-83.67707100000001,32.893848000000006],[-83.677028,32.893842],[-83.67696500000001,32.893782],[-83.67694900000001,32.893743],[-83.676944,32.893718],[-83.67696600000001,32.893653]]},"id":"8944c0a04abffff-139efb5b92e37e4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a8cb35-17f7bba840dc50e7","8f44c0a04aab50b-17bebb61a04b288e"]},"geometry":{"type":"LineString","coordinates":[[-83.67696600000001,32.893653],[-83.677079,32.893565]]},"id":"8944c0a04abffff-17dfbb84fb4a21d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08ac5960-17dff7dee16191c4","8f44c0b08a1a48a-13ddfafda5b75785"]},"geometry":{"type":"LineString","coordinates":[[-83.74405300000001,32.821119],[-83.744067,32.819587],[-83.74403500000001,32.819516],[-83.743898,32.819485],[-83.74277500000001,32.819477]]},"id":"8844c0b08bfffff-13f5f88e4e8d11e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74147,32.819463]},"id":"8f44c0b08a81b58-13d5fe2d4eb1a231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a81b58-13d5fe2d4eb1a231","8f44c0b08a1a48a-13ddfafda5b75785"]},"geometry":{"type":"LineString","coordinates":[[-83.74277500000001,32.819477],[-83.74147,32.819463]]},"id":"8944c0b08abffff-13ddfc957fb95bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70243400000001,32.783547]},"id":"8f44c0b03170db4-1396fd7acd35898e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b031a912a-13f765d082858a19","8f44c0b03170db4-1396fd7acd35898e"]},"geometry":{"type":"LineString","coordinates":[[-83.69902,32.783701],[-83.699273,32.783521],[-83.69952400000001,32.783335],[-83.699664,32.78331],[-83.700001,32.783344],[-83.70243400000001,32.783547]]},"id":"8844c0b031fffff-13d761c409c8ae15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03170db4-1396fd7acd35898e","8f44c0b03166559-139ffb1822de0685"]},"geometry":{"type":"LineString","coordinates":[[-83.70243400000001,32.783547],[-83.703411,32.783555]]},"id":"8944c0b0317ffff-13977c497bbc9cf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.540029,32.810343]},"id":"8f44c0b8066b153-1797e9f9ec6b20b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539586,32.810569]},"id":"8f44c0b8064c31a-179feb0ec7a8315b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8066b153-1797e9f9ec6b20b8","8f44c0b8064c31a-179feb0ec7a8315b"]},"geometry":{"type":"LineString","coordinates":[[-83.540029,32.810343],[-83.539586,32.810569]]},"id":"8944c0b8067ffff-17d7ea84553cb3e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538382,32.811203]},"id":"8f44c0b80659773-179fedff437e20a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8064c31a-179feb0ec7a8315b","8f44c0b80659773-179fedff437e20a6"]},"geometry":{"type":"LineString","coordinates":[[-83.539586,32.810569],[-83.538382,32.811203]]},"id":"8944c0b8067ffff-17d7ec8700947844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b839b0105-17d7f075469c33c7","8f44c0b80659773-179fedff437e20a6"]},"geometry":{"type":"LineString","coordinates":[[-83.538382,32.811203],[-83.537374,32.811678]]},"id":"8844c0b807fffff-17bfff3a4caebfd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68314600000001,32.858356]},"id":"8f44c0a2628e3a1-13be8c91cb6dc64a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262aa81a-17f78b0b2d8b2493","8f44c0a2628e3a1-13be8c91cb6dc64a"]},"geometry":{"type":"LineString","coordinates":[[-83.68314600000001,32.858356],[-83.68377100000001,32.857608]]},"id":"8944c0a262bffff-13decbce7ffe9e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262ac562-17beca09a5c066a7","8f44c0a262aa81a-17f78b0b2d8b2493"]},"geometry":{"type":"LineString","coordinates":[[-83.68377100000001,32.857608],[-83.683898,32.857456],[-83.684183,32.857134]]},"id":"8a44c0a262affff-17d69a8b5769bbab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68443660000001,32.8568615]},"id":"8f44c0a26212382-1796f96b2e0641d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262ac562-17beca09a5c066a7","8f44c0a26212382-1796f96b2e0641d0"]},"geometry":{"type":"LineString","coordinates":[[-83.684183,32.857134],[-83.684352,32.856941],[-83.68443660000001,32.8568615]]},"id":"8944c0a262bffff-17f7f9bc2f81108b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591695,32.869915]},"id":"8f44c0b8914e149-17f7ebd6a88f374d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8906499a-179fec904c7a669d","8f44c0b8914e149-17f7ebd6a88f374d"]},"geometry":{"type":"LineString","coordinates":[[-83.591695,32.869915],[-83.591558,32.870207],[-83.59139800000001,32.870604]]},"id":"8944c0b8917ffff-17d7fc3660b4ad0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591182,32.870953]},"id":"8f44c0b89060d26-13ffed17484909ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89060d26-13ffed17484909ee","8f44c0b8906499a-179fec904c7a669d"]},"geometry":{"type":"LineString","coordinates":[[-83.59139800000001,32.870604],[-83.59133700000001,32.87075],[-83.591296,32.870828],[-83.59124700000001,32.870891],[-83.591182,32.870953]]},"id":"8a44c0b89067fff-1397ecca49327eb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675064,32.891399]},"id":"8f44c0a0416968d-13f6e04d03a84ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6752201,32.891213400000005]},"id":"8f44c0a04169023-13f6ffeb76c77b47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04169023-13f6ffeb76c77b47","8f44c0a0416968d-13f6e04d03a84ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.675064,32.891399],[-83.67514100000001,32.891298],[-83.67519730000001,32.8912336],[-83.6752201,32.891213400000005]]},"id":"8b44c0a04169fff-13bef01df5ea7cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675325,32.891334]},"id":"8f44c0a0416930e-13bfdfa9e0cd1fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416930e-13bfdfa9e0cd1fff","8f44c0a04169023-13f6ffeb76c77b47"]},"geometry":{"type":"LineString","coordinates":[[-83.6752201,32.891213400000005],[-83.67524200000001,32.891194],[-83.67532200000001,32.891142],[-83.67535600000001,32.891125],[-83.675391,32.891119],[-83.67542300000001,32.891126],[-83.675453,32.891149],[-83.6755,32.891202],[-83.67551,32.891233],[-83.675506,32.891256000000006],[-83.67547300000001,32.891286],[-83.675376,32.891346],[-83.67534900000001,32.891348],[-83.675325,32.891334]]},"id":"8844c0a04bfffff-13f7df7d8cc51fac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416930e-13bfdfa9e0cd1fff","8f44c0a04169023-13f6ffeb76c77b47"]},"geometry":{"type":"LineString","coordinates":[[-83.675325,32.891334],[-83.6752201,32.891213400000005]]},"id":"8b44c0a04169fff-13969fcab56d9172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06110563-179fc1b66dedb99f","8f44c0b0600d95e-17defd50c6ef0070"]},"geometry":{"type":"LineString","coordinates":[[-83.687593,32.745238],[-83.687675,32.745375],[-83.687753,32.745559],[-83.688297,32.747171],[-83.68834100000001,32.747351],[-83.688355,32.747442],[-83.688364,32.747693000000005],[-83.688367,32.747742],[-83.68837900000001,32.747909],[-83.688406,32.748109],[-83.688477,32.748384],[-83.688597,32.748773],[-83.68868,32.748939],[-83.688736,32.749006],[-83.68889800000001,32.749122],[-83.689092,32.749197],[-83.689244,32.749231],[-83.68939400000001,32.749259]]},"id":"8844c0b061fffff-13f6ffe9fabfb9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69046300000001,32.750681]},"id":"8f44c0b06040414-13d7fab4a98865d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06040414-13d7fab4a98865d7","8f44c0b0600d95e-17defd50c6ef0070"]},"geometry":{"type":"LineString","coordinates":[[-83.68939400000001,32.749259],[-83.68955600000001,32.749329],[-83.689746,32.749446],[-83.689876,32.74958],[-83.68997900000001,32.749758],[-83.690038,32.749919000000006],[-83.69011300000001,32.750141],[-83.690162,32.750253],[-83.690318,32.750487],[-83.69046300000001,32.750681]]},"id":"8844c0b061fffff-13f7fbddb821ee5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69541100000001,32.756619]},"id":"8f44c0b06359068-13d6eea0239205ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06359068-13d6eea0239205ee","8f44c0b06040414-13d7fab4a98865d7"]},"geometry":{"type":"LineString","coordinates":[[-83.69046300000001,32.750681],[-83.69071600000001,32.751004],[-83.690967,32.751308],[-83.69183600000001,32.752195],[-83.693061,32.753448],[-83.693657,32.754047],[-83.69391300000001,32.754346000000005],[-83.69477900000001,32.755423],[-83.69518400000001,32.755936000000005],[-83.695356,32.756195000000005],[-83.695401,32.756327],[-83.69541000000001,32.756459],[-83.69541100000001,32.756619]]},"id":"8744c0b06ffffff-13f77449a2f83030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b060cb523-13b7e19cce52d979","8f44c0b06040414-13d7fab4a98865d7"]},"geometry":{"type":"LineString","coordinates":[[-83.69046300000001,32.750681],[-83.689689,32.750946],[-83.689447,32.751055],[-83.68925800000001,32.751181],[-83.68909500000001,32.751311],[-83.687983,32.752527],[-83.687634,32.752879]]},"id":"8844c0b061fffff-17b6fe698a865cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0676abb3-179ec219ce4a5aee","8f44c0b060cb523-13b7e19cce52d979"]},"geometry":{"type":"LineString","coordinates":[[-83.687634,32.752879],[-83.687414,32.75316],[-83.68736600000001,32.753269],[-83.68733300000001,32.753382],[-83.687314,32.753535],[-83.687312,32.753754],[-83.687329,32.753912],[-83.687365,32.754089],[-83.68740600000001,32.75426],[-83.687448,32.754382],[-83.68745600000001,32.754465],[-83.687455,32.75453],[-83.68743400000001,32.754654]]},"id":"8744c0b06ffffff-13dff22f8a74fc02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892193,32.7564713]},"id":"8f44c0b06284352-13fefdbdf6713dd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0676abb3-179ec219ce4a5aee","8f44c0b06284352-13fefdbdf6713dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.68743400000001,32.754654],[-83.687207,32.755578],[-83.687056,32.756088000000005],[-83.68684400000001,32.756726],[-83.686805,32.75692],[-83.686795,32.75705],[-83.68679900000001,32.757194000000005],[-83.68682000000001,32.757286],[-83.68687800000001,32.757453000000005],[-83.68696700000001,32.757586],[-83.687032,32.757655],[-83.6871,32.75772],[-83.687236,32.757832],[-83.687416,32.757925],[-83.68749600000001,32.757962],[-83.687579,32.757993],[-83.687661,32.758018],[-83.687763,32.758035],[-83.68785700000001,32.758046],[-83.68829500000001,32.757967],[-83.688491,32.757870000000004],[-83.688675,32.757706],[-83.688837,32.757502],[-83.689102,32.756941000000005],[-83.689217,32.756505000000004],[-83.6892193,32.7564713]]},"id":"8744c0b06ffffff-13ffc1701824a9ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06398846-17ff7da5c6cf1510","8f44c0b06284352-13fefdbdf6713dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6892193,32.7564713],[-83.68926300000001,32.755818000000005],[-83.68925800000001,32.75461]]},"id":"8844c0b063fffff-17b77da87a60858e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69020300000001,32.753449]},"id":"8f44c0b06385c36-139ffb5720a50dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06385c36-139ffb5720a50dac","8f44c0b06398846-17ff7da5c6cf1510"]},"geometry":{"type":"LineString","coordinates":[[-83.68925800000001,32.75461],[-83.68927500000001,32.75452],[-83.68930900000001,32.754416],[-83.689357,32.754319],[-83.689442,32.754179],[-83.68950600000001,32.754095],[-83.68957900000001,32.754019],[-83.689904,32.753743],[-83.69020300000001,32.753449]]},"id":"8944c0b063bffff-13ff7ca5188aee38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b064536b5-139f94a2c67fb79c","8f44c0b0644a905-13f7d01a2b7da762"]},"geometry":{"type":"LineString","coordinates":[[-83.67984200000001,32.75036],[-83.67986900000001,32.750428],[-83.679922,32.750493],[-83.68000400000001,32.750565],[-83.680054,32.750601],[-83.680164,32.750639],[-83.680463,32.750667],[-83.680897,32.750692],[-83.68108000000001,32.750715],[-83.68120400000001,32.750743],[-83.68169900000001,32.750902]]},"id":"8944c0b0647ffff-13dff2794263c1d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682319,32.751168]},"id":"8f44c0b06449c02-179e8e96a7b6c1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06449c02-179e8e96a7b6c1c4","8f44c0b0644a905-13f7d01a2b7da762"]},"geometry":{"type":"LineString","coordinates":[[-83.68169900000001,32.750902],[-83.681844,32.750951],[-83.682066,32.751039],[-83.682141,32.751074],[-83.682319,32.751168]]},"id":"8a44c0b0644ffff-13bedf559083dfbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344e1680-17b799f2e01761fe","8f44c0a344e2194-1797abc1cb6b3ed9"]},"geometry":{"type":"LineString","coordinates":[[-83.6317906,32.8400921],[-83.63105,32.839657]]},"id":"8a44c0a344e7fff-179faada55c33853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344e2194-1797abc1cb6b3ed9","8f44c0a344f5382-13b7ac6260071e33"]},"geometry":{"type":"LineString","coordinates":[[-83.63105,32.839657],[-83.63079300000001,32.839505]]},"id":"8944c0a344fffff-13f72c121459998c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63070520000001,32.8394507]},"id":"8f44c0a344f5725-1397bc99447690ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344f5725-1397bc99447690ba","8f44c0a344f5382-13b7ac6260071e33"]},"geometry":{"type":"LineString","coordinates":[[-83.63079300000001,32.839505],[-83.63070520000001,32.8394507]]},"id":"8b44c0a344f5fff-13b7bc7ddf533c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630322,32.8392141]},"id":"8f44c0a344f460c-13ffdd88cead96e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344f5725-1397bc99447690ba","8f44c0a344f460c-13ffdd88cead96e6"]},"geometry":{"type":"LineString","coordinates":[[-83.63070520000001,32.8394507],[-83.630322,32.8392141]]},"id":"8a44c0a344f7fff-13d7cd110ccbed7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344f680e-13978e39b871285a","8f44c0a344f460c-13ffdd88cead96e6"]},"geometry":{"type":"LineString","coordinates":[[-83.630322,32.8392141],[-83.6300389,32.839050400000005]]},"id":"8a44c0a344f7fff-13dfbde137ad945a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344abc53-13d72f88a0885b7b","8f44c0a344f680e-13978e39b871285a"]},"geometry":{"type":"LineString","coordinates":[[-83.6300389,32.839050400000005],[-83.62958760000001,32.8387898],[-83.629503,32.838741]]},"id":"8944c0a344bffff-13b7dee12abf741d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369a6286-17b7a5d102b706a6","8f44c0a369ac8e9-17f772f0f56109df"]},"geometry":{"type":"LineString","coordinates":[[-83.62037600000001,32.833337],[-83.620456,32.833416],[-83.6215537,32.8340823]]},"id":"8944c0a369bffff-17977465a237f059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621678,32.834176]},"id":"8f44c0a369acb58-17b722a3406ef644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369ac8e9-17f772f0f56109df","8f44c0a369acb58-17b722a3406ef644"]},"geometry":{"type":"LineString","coordinates":[[-83.6215537,32.8340823],[-83.62157300000001,32.834094],[-83.621678,32.834176]]},"id":"8b44c0a369acfff-179722c9bef1fa19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6698478,32.8337706]},"id":"8f44c0b1bab0352-17b6ad0929027a7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66986530000001,32.833371500000005]},"id":"8f44c0b1bab4280-17bfbcfe3937747a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bab0352-17b6ad0929027a7c","8f44c0b1bab4280-17bfbcfe3937747a"]},"geometry":{"type":"LineString","coordinates":[[-83.6698478,32.8337706],[-83.66986530000001,32.833371500000005]]},"id":"8a44c0b1bab7fff-17b7fd03b4cf2d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6698988,32.8324285]},"id":"8f44c0b1bb9e792-13fffce9457f8300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb9e792-13fffce9457f8300","8f44c0b1bab4280-17bfbcfe3937747a"]},"geometry":{"type":"LineString","coordinates":[[-83.66986530000001,32.833371500000005],[-83.6698988,32.8324285]]},"id":"8844c0b1bbfffff-1396acf3ba77aaa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52b90c0c-13f5f2e5caf1b9a6","8f44c0b52a9bae8-179df3264c205c41"]},"geometry":{"type":"LineString","coordinates":[[-83.74598680000001,32.8789724],[-83.74605100000001,32.875951],[-83.7460554,32.875755500000004],[-83.74605720000001,32.8756736],[-83.7460708,32.875071500000004],[-83.74607280000001,32.8749825],[-83.74609000000001,32.874215]]},"id":"8844c0b52bfffff-17bff3067dea730b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74610410000001,32.8733692]},"id":"8f44c0b528cd2c6-17dff2dcf9ad5ac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b528cd2c6-17dff2dcf9ad5ac1","8f44c0b52b90c0c-13f5f2e5caf1b9a6"]},"geometry":{"type":"LineString","coordinates":[[-83.74609000000001,32.874215],[-83.74610410000001,32.8733692]]},"id":"8744c0b52ffffff-17fdf2e163d0dbe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b528cd2c6-17dff2dcf9ad5ac1","8f44c0b528eeba6-13d5f2f247c5bc9f"]},"geometry":{"type":"LineString","coordinates":[[-83.74610410000001,32.8733692],[-83.74611200000001,32.872894],[-83.74612,32.872424],[-83.746117,32.872151],[-83.7461,32.872034],[-83.74607,32.871913]]},"id":"8944c0b528fffff-1797f2d8e2851d06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74592960000001,32.8715988]},"id":"8f44c0b528e1449-139df34a0cab3ee8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b528e1449-139df34a0cab3ee8","8f44c0b528eeba6-13d5f2f247c5bc9f"]},"geometry":{"type":"LineString","coordinates":[[-83.74607,32.871913],[-83.7459829,32.871693],[-83.74592960000001,32.8715988]]},"id":"8944c0b528fffff-13fff31b44687cc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7442906,32.870574500000004]},"id":"8f44c0b528f4514-179df74a60d0aa01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b528e1449-139df34a0cab3ee8","8f44c0b528f4514-179df74a60d0aa01"]},"geometry":{"type":"LineString","coordinates":[[-83.74592960000001,32.8715988],[-83.74588100000001,32.871513],[-83.745793,32.871394],[-83.74563300000001,32.871226],[-83.745501,32.871113],[-83.745372,32.871023],[-83.745107,32.870887],[-83.74469500000001,32.870727],[-83.7442906,32.870574500000004]]},"id":"8944c0b528fffff-1397f51f50648c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b528f4514-179df74a60d0aa01","8f44c0b529b0283-17dffb24695d710a"]},"geometry":{"type":"LineString","coordinates":[[-83.7442906,32.870574500000004],[-83.743526,32.870286],[-83.74331600000001,32.870204],[-83.743088,32.870084],[-83.742878,32.869934],[-83.74272300000001,32.869788],[-83.742598,32.869642],[-83.742497,32.86949],[-83.74241,32.869309],[-83.742349,32.869117],[-83.74232,32.868927],[-83.74232900000001,32.868719],[-83.742424,32.868026],[-83.742509,32.867407],[-83.74258300000001,32.866869],[-83.742688,32.866142],[-83.74269600000001,32.866086],[-83.74271300000001,32.865968]]},"id":"8844c0b529fffff-13d5faee08174711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66243700000001,32.83925]},"id":"8f44c0b1b742843-1397ff20e034561f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b742843-1397ff20e034561f","8f44c0b1b7520ec-13b7c2b024ec7a7d"]},"geometry":{"type":"LineString","coordinates":[[-83.66243700000001,32.83925],[-83.66097900000001,32.839272]]},"id":"8844c0b1b7fffff-139ee0e88ac578d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66009700000001,32.839277]},"id":"8f44c0b1b623833-13b6e4d76f02b852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b623833-13b6e4d76f02b852","8f44c0b1b7520ec-13b7c2b024ec7a7d"]},"geometry":{"type":"LineString","coordinates":[[-83.66097900000001,32.839272],[-83.66009700000001,32.839277]]},"id":"8944c0b1b63ffff-13b6d3c3ce4a7846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a7268e2-13b67090b3d8ee6f","8f44c0b0a19a892-179ef078c372c6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7077237,32.825165000000005],[-83.70774,32.824933],[-83.707762,32.821451]]},"id":"8844c0b0a1fffff-17b7f0806ccfd40a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707794,32.818083]},"id":"8f44c0b0acec6e1-17f7f064cb793eae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a19a892-179ef078c372c6ac","8f44c0b0acec6e1-17f7f064cb793eae"]},"geometry":{"type":"LineString","coordinates":[[-83.707762,32.821451],[-83.70778800000001,32.819246],[-83.707794,32.818083]]},"id":"8744c0b0affffff-1396706d3c446869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7439784,32.931355700000005]},"id":"8f44c0a291b1a5a-13f5f80d8c97099d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7442812,32.9310768]},"id":"8f44c0a291a2124-13d7f7504d000a1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a291b1a5a-13f5f80d8c97099d","8f44c0a291a2124-13d7f7504d000a1e"]},"geometry":{"type":"LineString","coordinates":[[-83.7439784,32.931355700000005],[-83.7442812,32.9310768]]},"id":"8944c0a291bffff-139ff7aee1d28392"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c6b409-1795f369afb486cd","8f44c0a291a2124-13d7f7504d000a1e"]},"geometry":{"type":"LineString","coordinates":[[-83.7442812,32.9310768],[-83.7446479,32.9307296],[-83.7452387,32.9301703],[-83.745879,32.929564]]},"id":"8744c0a29ffffff-13fff55cfe6d2748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883303,32.8998474]},"id":"8f44c0a058b6d96-1796ffe99cad255e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68844,32.89969]},"id":"8f44c0a05d694cd-17b67fa507f54161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a058b6d96-1796ffe99cad255e","8f44c0a05d694cd-17b67fa507f54161"]},"geometry":{"type":"LineString","coordinates":[[-83.6883303,32.8998474],[-83.688389,32.899783],[-83.68844,32.89969]]},"id":"8a44c0a05d6ffff-17d7ffc463992f6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886468,32.8993558]},"id":"8f44c0a05d6d60a-17d77f23c23f3889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d6d60a-17d77f23c23f3889","8f44c0a05d694cd-17b67fa507f54161"]},"geometry":{"type":"LineString","coordinates":[[-83.68844,32.89969],[-83.6886468,32.8993558]]},"id":"8a44c0a05d6ffff-17bfff64628e985c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644435,32.823117]},"id":"8f44c0b1a75531e-13b6eb142663aa0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a75531e-13b6eb142663aa0f","8f44c0b1a742a59-17f6e9d2e7b775bd"]},"geometry":{"type":"LineString","coordinates":[[-83.644435,32.823117],[-83.64494900000001,32.823431]]},"id":"8944c0b1a77ffff-1796ea7383d962ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a74c213-17f7e756a82393e4","8f44c0b1a742a59-17f6e9d2e7b775bd"]},"geometry":{"type":"LineString","coordinates":[[-83.64494900000001,32.823431],[-83.64565400000001,32.823856],[-83.645967,32.82405]]},"id":"8944c0b1a77ffff-17b7e894498b53cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b050602-13f6f78d823bf593","8f44c0b1b0e2356-13d7bb622abf9bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.663971,32.835468],[-83.66554000000001,32.835486]]},"id":"8844c0b1b1fffff-13dfb977d8148342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66704100000001,32.835504]},"id":"8f44c0b1b04006e-13feb3e3691da109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b050602-13f6f78d823bf593","8f44c0b1b04006e-13feb3e3691da109"]},"geometry":{"type":"LineString","coordinates":[[-83.66554000000001,32.835486],[-83.66704100000001,32.835504]]},"id":"8944c0b1b07ffff-13fef5b8704bfe05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66778400000001,32.835527]},"id":"8f44c0b1b06ad5d-13fef2130f17cd88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b04006e-13feb3e3691da109","8f44c0b1b06ad5d-13fef2130f17cd88"]},"geometry":{"type":"LineString","coordinates":[[-83.66704100000001,32.835504],[-83.66778400000001,32.835527]]},"id":"8944c0b1b07ffff-13f7b2fb353d337e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b068b75-139eb03b263dbea7","8f44c0b1b06ad5d-13fef2130f17cd88"]},"geometry":{"type":"LineString","coordinates":[[-83.66778400000001,32.835527],[-83.66853900000001,32.835549]]},"id":"8a44c0b1b06ffff-1397f12718f6944c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60317,32.865378]},"id":"8f44c0a32409723-13df4fd2c0ed4064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32409723-13df4fd2c0ed4064","8f44c0a3240ecda-13f7f1b364fde8bf"]},"geometry":{"type":"LineString","coordinates":[[-83.60317,32.865378],[-83.60315100000001,32.865282],[-83.603092,32.86517],[-83.602866,32.86497],[-83.602401,32.864595]]},"id":"8a44c0a3240ffff-13d770a90be3363a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3240276c-17d7f3274be0f79d","8f44c0a3240ecda-13f7f1b364fde8bf"]},"geometry":{"type":"LineString","coordinates":[[-83.602401,32.864595],[-83.60180600000001,32.864129000000005]]},"id":"8944c0a3243ffff-13f7526d5895b805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60106400000001,32.863551]},"id":"8f44c0a3241466a-17f774f7073867bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3240276c-17d7f3274be0f79d","8f44c0a3241466a-17f774f7073867bb"]},"geometry":{"type":"LineString","coordinates":[[-83.60180600000001,32.864129000000005],[-83.60106400000001,32.863551]]},"id":"8944c0a3243ffff-179f540f2ef6f5d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68870100000001,32.901691]},"id":"8f44c0a05891a05-1396ff01e26225a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05891a05-1396ff01e26225a7","8f44c0a05890b75-13b67fc3d4027ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.68870100000001,32.901691],[-83.68862200000001,32.90157],[-83.6883907,32.901328500000005]]},"id":"8a44c0a05897fff-139fff5e43327072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882286,32.9011593]},"id":"8f44c0a05890913-13be9029271b4e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05890913-13be9029271b4e4e","8f44c0a05890b75-13b67fc3d4027ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.6883907,32.901328500000005],[-83.6882286,32.9011593]]},"id":"8a44c0a05897fff-13ff7ff671855bdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05890913-13be9029271b4e4e","8f44c0a05d49604-13beb13436e65383"]},"geometry":{"type":"LineString","coordinates":[[-83.6882286,32.9011593],[-83.688123,32.901049],[-83.6878013,32.9007243]]},"id":"8944c0a058bffff-13b6b0ae3c021720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875753,32.900501000000006]},"id":"8f44c0a05d4b928-139fa1c17cb01367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d49604-13beb13436e65383","8f44c0a05d4b928-139fa1c17cb01367"]},"geometry":{"type":"LineString","coordinates":[[-83.6878013,32.9007243],[-83.6875753,32.900501000000006]]},"id":"8a44c0a05d4ffff-13f6f17addc739ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05c6c0ea-17beb1d61aaa10a2","8f44c0a05893710-13fec0f1ae392f1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6875423,32.9019555],[-83.6877283,32.901902],[-83.6879078,32.901854]]},"id":"8844c0a05dfffff-179ff1640ebf4ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688404,32.901732]},"id":"8f44c0a05891730-139effbb846c44ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05893710-13fec0f1ae392f1d","8f44c0a05891730-139effbb846c44ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6879078,32.901854],[-83.688203,32.901775],[-83.688404,32.901732]]},"id":"8a44c0a05897fff-13d6c0570235dbac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05891730-139effbb846c44ce","8f44c0a05891a05-1396ff01e26225a7"]},"geometry":{"type":"LineString","coordinates":[[-83.688404,32.901732],[-83.68870100000001,32.901691]]},"id":"8b44c0a05891fff-1397ff5eb105bf48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887499,32.9016861]},"id":"8f44c0a05891b43-1397fee358c5d53f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05891a05-1396ff01e26225a7","8f44c0a05891b43-1397fee358c5d53f"]},"geometry":{"type":"LineString","coordinates":[[-83.68870100000001,32.901691],[-83.6887499,32.9016861]]},"id":"8c44c0a05891bff-13977ef29bddcd14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05882a46-13df7dc2de68a025","8f44c0a05891b43-1397fee358c5d53f"]},"geometry":{"type":"LineString","coordinates":[[-83.6887499,32.9016861],[-83.688899,32.901671],[-83.6892115,32.9016305]]},"id":"8944c0a058bffff-13f77e52f0326823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894243,32.9015894]},"id":"8f44c0a05880740-13d77d3dd7353b6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05880740-13d77d3dd7353b6f","8f44c0a05882a46-13df7dc2de68a025"]},"geometry":{"type":"LineString","coordinates":[[-83.6892115,32.9016305],[-83.68933100000001,32.901615],[-83.6894243,32.9015894]]},"id":"8a44c0a05887fff-13d6fd7fe74a145b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05880740-13d77d3dd7353b6f","8f44c0a0588554c-13be7c3dcfc9d4ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6894243,32.9015894],[-83.68949500000001,32.90157],[-83.689553,32.901546],[-83.689716,32.901446],[-83.68976500000001,32.901408],[-83.689834,32.901338]]},"id":"8a44c0a05887fff-1396fcb69a47b688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6899649,32.9010587]},"id":"8f44c0a058a3604-13fffbebf1aab4af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058a3604-13fffbebf1aab4af","8f44c0a0588554c-13be7c3dcfc9d4ca"]},"geometry":{"type":"LineString","coordinates":[[-83.689834,32.901338],[-83.68987200000001,32.901283],[-83.689936,32.901167],[-83.689963,32.901083],[-83.6899649,32.9010587]]},"id":"8944c0a058bffff-13d7fc0dea5cecbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058a3604-13fffbebf1aab4af","8f44c0a058a2a0a-13f6fc17aec6be94"]},"geometry":{"type":"LineString","coordinates":[[-83.6899649,32.9010587],[-83.689977,32.900899],[-83.689966,32.900819000000006],[-83.689935,32.90072],[-83.689895,32.900641]]},"id":"8a44c0a058a7fff-13f67bf25f5a769f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058a2a0a-13f6fc17aec6be94","8f44c0a058a2a15-13f7fc24358dab38"]},"geometry":{"type":"LineString","coordinates":[[-83.689895,32.900641],[-83.6898749,32.9006138]]},"id":"8d44c0a058a2a3f-13fe7c1decdf5507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897493,32.900465700000005]},"id":"8f44c0a058a28a3-13977c72b988da98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058a28a3-13977c72b988da98","8f44c0a058a2a15-13f7fc24358dab38"]},"geometry":{"type":"LineString","coordinates":[[-83.6898749,32.9006138],[-83.689828,32.90055],[-83.68977100000001,32.900484],[-83.6897493,32.900465700000005]]},"id":"8b44c0a058a2fff-13b7fc49bbdc2fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058b5ce6-17d77dace460e047","8f44c0a058a28a3-13977c72b988da98"]},"geometry":{"type":"LineString","coordinates":[[-83.6897493,32.900465700000005],[-83.689694,32.900419],[-83.68943900000001,32.900266],[-83.6892466,32.900158600000005]]},"id":"8944c0a058bffff-13b77d0d45d95300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688736,32.899853]},"id":"8f44c0a058b45b4-179e7eec09a1c33c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058b45b4-179e7eec09a1c33c","8f44c0a058b5ce6-17d77dace460e047"]},"geometry":{"type":"LineString","coordinates":[[-83.6892466,32.900158600000005],[-83.688736,32.899853]]},"id":"8a44c0a058b7fff-17f7fe4c7180a34e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a058b45b4-179e7eec09a1c33c","8f44c0a05d694cd-17b67fa507f54161"]},"geometry":{"type":"LineString","coordinates":[[-83.688736,32.899853],[-83.68844,32.89969]]},"id":"8844c0a059fffff-17d77f48837cc4f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67136400000001,32.864342]},"id":"8f44c0a22ce6c0e-13d7e9558090aa9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ce6c0e-13d7e9558090aa9d","8f44c0a22ce24c8-13f7e9e54f6691e9"]},"geometry":{"type":"LineString","coordinates":[[-83.67136400000001,32.864342],[-83.671267,32.864752],[-83.671217,32.864877],[-83.67113400000001,32.864979000000005]]},"id":"8a44c0a22ce7fff-13b6b98d918f7424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67032900000001,32.864942]},"id":"8f44c0a22cf3d54-13deebdc6c740c38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ce24c8-13f7e9e54f6691e9","8f44c0a22cf3d54-13deebdc6c740c38"]},"geometry":{"type":"LineString","coordinates":[[-83.67113400000001,32.864979000000005],[-83.671001,32.865048],[-83.67084600000001,32.865085],[-83.67062,32.86507],[-83.670439,32.865023],[-83.67032900000001,32.864942]]},"id":"8944c0a22cfffff-139fbae3b3cd8551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b503692-17d7ef730f5952bb","8f44c0b1b519a91-17b7ef4baf019f76"]},"geometry":{"type":"LineString","coordinates":[[-83.655815,32.830681000000006],[-83.655787,32.830664],[-83.65576,32.830635],[-83.655748,32.830595],[-83.655754,32.830164],[-83.655752,32.829929]]},"id":"8a44c0b1b51ffff-17d6ef712d5940ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655765,32.829538]},"id":"8f44c0b1b502ac3-13dfcf6aeb5bd920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b503692-17d7ef730f5952bb","8f44c0b1b502ac3-13dfcf6aeb5bd920"]},"geometry":{"type":"LineString","coordinates":[[-83.655752,32.829929],[-83.655766,32.82985],[-83.655765,32.829538]]},"id":"8944c0b1b53ffff-13d7cf6b6f80ec6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674463,32.850448]},"id":"8f44c0a26455018-17fea1c4a73e29dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673304,32.85137]},"id":"8f44c0a264e88b3-13bee499073e4231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a264e88b3-13bee499073e4231","8f44c0a26455018-17fea1c4a73e29dd"]},"geometry":{"type":"LineString","coordinates":[[-83.674463,32.850448],[-83.673304,32.85137]]},"id":"8844c0a265fffff-179ea32ede69995b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67234,32.852621]},"id":"8f44c0a264caa65-13bea6f3813e2a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a264e88b3-13bee499073e4231","8f44c0a264caa65-13bea6f3813e2a6c"]},"geometry":{"type":"LineString","coordinates":[[-83.673304,32.85137],[-83.67279400000001,32.851802],[-83.672627,32.851976],[-83.672537,32.852193],[-83.672526,32.852355],[-83.67253500000001,32.852581],[-83.672516,32.852643],[-83.67234,32.852621]]},"id":"8944c0a264fffff-13bea5f55272b091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70604200000001,32.872518]},"id":"8f44c0a2035ec74-17dfd4abcdfa85c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706452,32.8707]},"id":"8f44c0a20370da4-17dfd3ab8db69555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a20370da4-17dfd3ab8db69555","8f44c0a2035ec74-17dfd4abcdfa85c1"]},"geometry":{"type":"LineString","coordinates":[[-83.70604200000001,32.872518],[-83.706153,32.872386],[-83.70622800000001,32.872281],[-83.70630200000001,32.87214],[-83.70635200000001,32.871968],[-83.706379,32.871769],[-83.706432,32.871122],[-83.706452,32.8707]]},"id":"8944c0a2037ffff-13bf53ec86ddb411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a20ad43a5-139e52a4667c7c0e","8f44c0a20370da4-17dfd3ab8db69555"]},"geometry":{"type":"LineString","coordinates":[[-83.706452,32.8707],[-83.706491,32.869992],[-83.70652600000001,32.869604],[-83.706542,32.869224],[-83.70654400000001,32.869081],[-83.70656000000001,32.868951],[-83.706575,32.868893],[-83.70663300000001,32.868783],[-83.70672300000001,32.868653],[-83.70679100000001,32.868577],[-83.706873,32.868522]]},"id":"8744c0a20ffffff-1797736eb76043d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a20ad43a5-139e52a4667c7c0e","8f44c0a20af1a1e-13f6f008476580f7"]},"geometry":{"type":"LineString","coordinates":[[-83.706873,32.868522],[-83.706941,32.868482],[-83.707516,32.868234],[-83.707637,32.868201],[-83.70773600000001,32.868191],[-83.707813,32.868195],[-83.707914,32.868232],[-83.707942,32.868251]]},"id":"8944c0a20afffff-1396515a843353be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3482855a-1397e4604db3b791","8f44c0a3482e604-13b7e52401a8e010"]},"geometry":{"type":"LineString","coordinates":[[-83.6468672,32.83149],[-83.6470319,32.8315916],[-83.64718040000001,32.8316766]]},"id":"8a44c0a3482ffff-13dee4c2a0732182"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3482855a-1397e4604db3b791","8f44c0a34860513-13dfdfd8e70e8524"]},"geometry":{"type":"LineString","coordinates":[[-83.64718040000001,32.8316766],[-83.64861400000001,32.832552],[-83.6489105,32.832734900000005],[-83.6490354,32.832812000000004]]},"id":"8844c0a349fffff-13fef21c40c9ed70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70436000000001,32.886073]},"id":"8f44c0a23a25b53-17f7f8c7073e0d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a23956-17d6da76eddb7693","8f44c0a23a25b53-17f7f8c7073e0d33"]},"geometry":{"type":"LineString","coordinates":[[-83.70436000000001,32.886073],[-83.704041,32.886163],[-83.70393100000001,32.886210000000005],[-83.703854,32.886255000000006],[-83.703793,32.8863],[-83.703737,32.886349],[-83.703669,32.886436]]},"id":"8944c0a23a3ffff-17bf79aea0ac1b9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a23956-17d6da76eddb7693","8f44c0a23a05ab1-17de7acf050d2b79"]},"geometry":{"type":"LineString","coordinates":[[-83.703669,32.886436],[-83.70362,32.886522],[-83.70360000000001,32.886595],[-83.703552,32.886868],[-83.703528,32.887053]]},"id":"8944c0a23a3ffff-1797daae78893251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70340300000001,32.888022]},"id":"8f44c0a23a08d85-13b7db1d2fc13495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a05ab1-17de7acf050d2b79","8f44c0a23a08d85-13b7db1d2fc13495"]},"geometry":{"type":"LineString","coordinates":[[-83.703528,32.887053],[-83.70340300000001,32.888022]]},"id":"8944c0a23a3ffff-13f6faf61ba2eaea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570541,32.866152]},"id":"8f44c0b8b90e61e-17d79f7be65ccb8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571188,32.866684]},"id":"8f44c0b8b9094e3-179f9de78c5a3515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b90e61e-17d79f7be65ccb8f","8f44c0b8b9094e3-179f9de78c5a3515"]},"geometry":{"type":"LineString","coordinates":[[-83.570541,32.866152],[-83.570806,32.866377],[-83.571188,32.866684]]},"id":"8a44c0b8b90ffff-17ff9eb2c9ab9435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b9542cc-17d79c5c8c2565be","8f44c0b8b9094e3-179f9de78c5a3515"]},"geometry":{"type":"LineString","coordinates":[[-83.571188,32.866684],[-83.57182,32.867212]]},"id":"8844c0b8b9fffff-17b79d220d24b9c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b9542cc-17d79c5c8c2565be","8f44c0b8b94239c-13bfbac46e7e08fe"]},"geometry":{"type":"LineString","coordinates":[[-83.57182,32.867212],[-83.572473,32.867753]]},"id":"8944c0b8b97ffff-13979b9075dcaecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b94e0a2-13f799364b140988","8f44c0b8b94239c-13bfbac46e7e08fe"]},"geometry":{"type":"LineString","coordinates":[[-83.572473,32.867753],[-83.57311,32.868284]]},"id":"8944c0b8b97ffff-13df99fd5d3fa0b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b94e0a2-13f799364b140988","8f44c0b8b949cc3-13dfd78fc3056137"]},"geometry":{"type":"LineString","coordinates":[[-83.57311,32.868284],[-83.573597,32.868688],[-83.573786,32.868854]]},"id":"8a44c0b8b94ffff-13b7f8620daf2e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b949cc3-13dfd78fc3056137","8f44c0b89494c11-13ffd6b1f3d06ace"]},"geometry":{"type":"LineString","coordinates":[[-83.573786,32.868854],[-83.5741409,32.869109200000004]]},"id":"8844c0b8b9fffff-13bf9720dc936485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572016,32.865544]},"id":"8f44c0b8b929c1d-13d79be20203b14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b929c1d-13d79be20203b14d","8f44c0b882da4cc-13ffdaf6622be4fb"]},"geometry":{"type":"LineString","coordinates":[[-83.572393,32.865634],[-83.572016,32.865544]]},"id":"8844c0b8b9fffff-13f7bb6c3e6d14a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571274,32.86544]},"id":"8f44c0b8b92a020-13979db1cf8c776b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b929c1d-13d79be20203b14d","8f44c0b8b92a020-13979db1cf8c776b"]},"geometry":{"type":"LineString","coordinates":[[-83.572016,32.865544],[-83.571548,32.865464],[-83.571274,32.86544]]},"id":"8a44c0b8b92ffff-13b79cc9524345c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696911,32.803944]},"id":"8f44c0b1d8dad69-17f76af6a19b99a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d146aa8-13df6aa52864ad9a","8f44c0b1d8dad69-17f76af6a19b99a7"]},"geometry":{"type":"LineString","coordinates":[[-83.696911,32.803944],[-83.69709200000001,32.804197],[-83.697187,32.804355],[-83.69719930000001,32.804382600000004],[-83.69725600000001,32.80451],[-83.697297,32.804651],[-83.697321,32.804779],[-83.697317,32.80494],[-83.697305,32.805089],[-83.69727300000001,32.805238],[-83.697218,32.805405],[-83.69714,32.805591],[-83.69707700000001,32.805708],[-83.6970414,32.8057588]]},"id":"8844c0b1d1fffff-179eea45b5e582fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65963500000001,32.809745]},"id":"8f44c0b1858dc1c-139ee5f82b46e0e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18434315-1397c3322f024c04","8f44c0b1858dc1c-139ee5f82b46e0e7"]},"geometry":{"type":"LineString","coordinates":[[-83.65963500000001,32.809745],[-83.66077100000001,32.809766]]},"id":"8844c0b185fffff-1397f49525f4d6b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661395,32.811223000000005]},"id":"8f44c0b18400a74-17b6e1ac2d6aa2cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18400a74-17b6e1ac2d6aa2cc","8f44c0b18434315-1397c3322f024c04"]},"geometry":{"type":"LineString","coordinates":[[-83.66077100000001,32.809766],[-83.66097500000001,32.809768000000005],[-83.661043,32.809776],[-83.661118,32.809796],[-83.661174,32.809821],[-83.661248,32.809863],[-83.66128,32.809893],[-83.661349,32.80997],[-83.661393,32.810091],[-83.661398,32.810321],[-83.661395,32.811223000000005]]},"id":"8944c0b1843ffff-17fed1ef12405b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c4c440-17dfe68349ebbdc5","8f44c0b03136c18-17fee4606f3d36e6"]},"geometry":{"type":"LineString","coordinates":[[-83.698734,32.780972000000006],[-83.69960900000001,32.781028]]},"id":"8944c0b03c7ffff-17df6571dd9222bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702483,32.780786]},"id":"8f44c0b03889d6c-17d75d5c2ce65b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03136c18-17fee4606f3d36e6","8f44c0b03889d6c-17d75d5c2ce65b91"]},"geometry":{"type":"LineString","coordinates":[[-83.69960900000001,32.781028],[-83.700013,32.781062],[-83.701059,32.781126],[-83.701285,32.781135],[-83.701465,32.781122],[-83.701598,32.781084],[-83.702045,32.780849],[-83.702151,32.780814],[-83.70232800000001,32.780786],[-83.702483,32.780786]]},"id":"8744c0b03ffffff-17ffe0d2ea205bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6533952,32.848591400000004]},"id":"8f44c0a35cf5005-13f7f5340ee42816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf5005-13f7f5340ee42816","8f44c0a35cc688e-13bff5b6cb88932d"]},"geometry":{"type":"LineString","coordinates":[[-83.6533952,32.848591400000004],[-83.653186,32.849347]]},"id":"8944c0a35cfffff-13dfd5756029e07a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652923,32.850246]},"id":"8f44c0a35cdc122-17ffd65b2534c775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cdc122-17ffd65b2534c775","8f44c0a35cc688e-13bff5b6cb88932d"]},"geometry":{"type":"LineString","coordinates":[[-83.653186,32.849347],[-83.652923,32.850246]]},"id":"8944c0a35cfffff-17d6d608f4c5e9ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652675,32.851151]},"id":"8f44c0a35cdb119-13b7f6f6211ba31d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cdc122-17ffd65b2534c775","8f44c0a35cdb119-13b7f6f6211ba31d"]},"geometry":{"type":"LineString","coordinates":[[-83.652923,32.850246],[-83.652675,32.851151]]},"id":"8a44c0a35cdffff-1796d6a8a1a162f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7213687,32.8964607]},"id":"8f44c0a2c4b3440-17bfff40971b7a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c4b3440-17bfff40971b7a11","8f44c0a2c4840a0-17b66cfdaab8116e"]},"geometry":{"type":"LineString","coordinates":[[-83.7213687,32.8964607],[-83.721455,32.896524],[-83.72176300000001,32.896591],[-83.722041,32.896638],[-83.722295,32.896647]]},"id":"8944c0a2c4bffff-17967e25a619d07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.725031,32.896698]},"id":"8f44c0a2c41c982-17d6664fa72f7efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c41c982-17d6664fa72f7efd","8f44c0a2c4840a0-17b66cfdaab8116e"]},"geometry":{"type":"LineString","coordinates":[[-83.722295,32.896647],[-83.722947,32.896662],[-83.725031,32.896698]]},"id":"8844c0a2c5fffff-17d739a6a62303a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607471,32.859582]},"id":"8f44c0a32ce1711-17b7c552a7daa584"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607461,32.8602624]},"id":"8f44c0a32cea856-17f74558e62a2a63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ce1711-17b7c552a7daa584","8f44c0a32cea856-17f74558e62a2a63"]},"geometry":{"type":"LineString","coordinates":[[-83.607471,32.859582],[-83.6074658,32.86001],[-83.607461,32.8602624]]},"id":"8944c0a32cfffff-179f65557aae1477"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6074507,32.8604414]},"id":"8f44c0a32cea323-17dfe55f56bec6fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32cea856-17f74558e62a2a63","8f44c0a32cea323-17dfe55f56bec6fa"]},"geometry":{"type":"LineString","coordinates":[[-83.607461,32.8602624],[-83.6074507,32.8604414]]},"id":"8b44c0a32ceafff-1797f55c1173c122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6074451,32.861032]},"id":"8f44c0a32ccdcd3-13d74562d23ee120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ccdcd3-13d74562d23ee120","8f44c0a32cea323-17dfe55f56bec6fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6074507,32.8604414],[-83.6074451,32.861032]]},"id":"8944c0a32cfffff-179f7561171810d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ccdcd3-13d74562d23ee120","8f44c0a32cc9d4c-13b7655fbe5c1b58"]},"geometry":{"type":"LineString","coordinates":[[-83.6074451,32.861032],[-83.6074517,32.8612727],[-83.60745010000001,32.861395800000004]]},"id":"8a44c0a32ccffff-13b7f56041e2bb5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6074433,32.8619031]},"id":"8f44c0a321968ec-13f77563fff9f696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32cc9d4c-13b7655fbe5c1b58","8f44c0a321968ec-13f77563fff9f696"]},"geometry":{"type":"LineString","coordinates":[[-83.60745010000001,32.861395800000004],[-83.6074433,32.8619031]]},"id":"8744c0a32ffffff-13d7f561d7247c9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6074359,32.8624601]},"id":"8f44c0a32192a70-13bfd56893037a69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32192a70-13bfd56893037a69","8f44c0a321968ec-13f77563fff9f696"]},"geometry":{"type":"LineString","coordinates":[[-83.6074433,32.8619031],[-83.6074359,32.8624601]]},"id":"8a44c0a32197fff-139fc5664b4e6445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32192a70-13bfd56893037a69","8f44c0a32193d84-13ffe56927b72038"]},"geometry":{"type":"LineString","coordinates":[[-83.6074359,32.8624601],[-83.60743500000001,32.862529]]},"id":"8b44c0a32192fff-13d76568e9d463fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607473,32.863462000000006]},"id":"8f44c0a32569953-17bfc55169768fb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32569953-17bfc55169768fb6","8f44c0a32193d84-13ffe56927b72038"]},"geometry":{"type":"LineString","coordinates":[[-83.60743500000001,32.862529],[-83.607427,32.862932],[-83.607438,32.863218],[-83.607473,32.863462000000006]]},"id":"8844c0a321fffff-179fc567534b187e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32569953-17bfc55169768fb6","8f44c0a320b5d5d-17d763fa486de4e8"]},"geometry":{"type":"LineString","coordinates":[[-83.607473,32.863462000000006],[-83.607567,32.863612],[-83.608022,32.864109]]},"id":"8844c0a321fffff-17ffc4ac2cee059d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32466c0a-13df6b272e13c575","8f44c0a320b5d5d-17d763fa486de4e8"]},"geometry":{"type":"LineString","coordinates":[[-83.608022,32.864109],[-83.608276,32.86439],[-83.60835700000001,32.864507],[-83.60849300000001,32.864843],[-83.60853300000001,32.865071],[-83.60852600000001,32.865251],[-83.60843,32.865443],[-83.60827,32.865594],[-83.607844,32.865833],[-83.607408,32.866065],[-83.60714800000001,32.866169],[-83.60693400000001,32.866169],[-83.60679400000001,32.86612],[-83.60663600000001,32.866008],[-83.605952,32.865464],[-83.60508300000001,32.864765000000006]]},"id":"8744c0a32ffffff-13ff660e5c314079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32466c0a-13df6b272e13c575","8f44c0a32553b29-17bf4cb0e0901591"]},"geometry":{"type":"LineString","coordinates":[[-83.60508300000001,32.864765000000006],[-83.60474,32.864494],[-83.604544,32.8643],[-83.60446800000001,32.864144],[-83.604438,32.863991],[-83.604453,32.86345]]},"id":"8844c0a325fffff-17ffcc4b34e1955e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2609bb85-13f6992cdcc51b72","8f44c0a2609aa5b-17f699df67bf6db0"]},"geometry":{"type":"LineString","coordinates":[[-83.67769700000001,32.851072],[-83.677805,32.851146],[-83.6779827,32.851280100000004]]},"id":"8a44c0a2609ffff-13b6998562a7ac79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2672698b-13f79883e20f848b","8f44c0a2609bb85-13f6992cdcc51b72"]},"geometry":{"type":"LineString","coordinates":[[-83.6779827,32.851280100000004],[-83.67825300000001,32.851484]]},"id":"8844c0a261fffff-13b7d8d85aa553f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2672698b-13f79883e20f848b","8f44c0a267246ac-13ffd7d597b1c81d"]},"geometry":{"type":"LineString","coordinates":[[-83.67825300000001,32.851484],[-83.67853190000001,32.851682000000004]]},"id":"8a44c0a26727fff-13bff82cbb5ee749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267254b1-13df97419c35bcfe","8f44c0a267246ac-13ffd7d597b1c81d"]},"geometry":{"type":"LineString","coordinates":[[-83.67853190000001,32.851682000000004],[-83.6787687,32.8518385]]},"id":"8a44c0a26727fff-139eb78b9b67f584"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678903,32.851939800000004]},"id":"8f44c0a267257a1-139ef6eda99b3802"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a267254b1-13df97419c35bcfe","8f44c0a267257a1-139ef6eda99b3802"]},"geometry":{"type":"LineString","coordinates":[[-83.6787687,32.8518385],[-83.678903,32.851939800000004]]},"id":"8a44c0a26727fff-13fed717964cae11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6795074,32.852392300000005]},"id":"8f44c0a260d2251-13bfb573e5f79508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260d2251-13bfb573e5f79508","8f44c0a267257a1-139ef6eda99b3802"]},"geometry":{"type":"LineString","coordinates":[[-83.678903,32.851939800000004],[-83.6795074,32.852392300000005]]},"id":"8844c0a261fffff-139fd630cd092b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6796056,32.852470600000004]},"id":"8f44c0a260d3554-13deb5368f1511f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260d2251-13bfb573e5f79508","8f44c0a260d3554-13deb5368f1511f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6795074,32.852392300000005],[-83.6796056,32.852470600000004]]},"id":"8a44c0a260d7fff-13d7b555303eb92d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260de0a8-17df941663bd7b91","8f44c0a260d3554-13deb5368f1511f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6796056,32.852470600000004],[-83.6800666,32.852856100000004]]},"id":"8944c0a260fffff-13d6b4a67e3a94a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6805116,32.853224100000006]},"id":"8f44c0a260d805d-17b7930046158f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260d805d-17b7930046158f94","8f44c0a260de0a8-17df941663bd7b91"]},"geometry":{"type":"LineString","coordinates":[[-83.6800666,32.852856100000004],[-83.6805116,32.853224100000006]]},"id":"8a44c0a260dffff-17be938b5e5c6b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624029,32.741221]},"id":"8f44c0b3368a06d-13bfbf3635e052ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b3368a06d-13bfbf3635e052ff","8f44c0b15c29928-1397bf65b8b05efa"]},"geometry":{"type":"LineString","coordinates":[[-83.6624029,32.741221],[-83.6623749,32.744297],[-83.66232690000001,32.746277]]},"id":"8644c0b17ffffff-13ffff48443fe1f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15c706e2-13f6ff769a408ff9","8f44c0b15c29928-1397bf65b8b05efa"]},"geometry":{"type":"LineString","coordinates":[[-83.66232690000001,32.746277],[-83.66229990000001,32.747418]]},"id":"8844c0b15dfffff-13ffbf6e25c410e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630904,32.748991000000004]},"id":"8f44c0b15c4e523-17b7fd8887265cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15c706e2-13f6ff769a408ff9","8f44c0b15c4e523-17b7fd8887265cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.66229990000001,32.747418],[-83.6622969,32.747635],[-83.66231690000001,32.747825],[-83.66236090000001,32.748012],[-83.66240590000001,32.74814],[-83.6624719,32.748282],[-83.66252990000001,32.748385],[-83.66260890000001,32.7485],[-83.6626839,32.748596],[-83.6627809,32.748702],[-83.6630904,32.748991000000004]]},"id":"8944c0b15c7ffff-17f7bed4ac0b89f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67109,32.879134]},"id":"8f44c0a226e084b-17f6ea00cdac1be0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a226c600c-17bfed004b7a31f8","8f44c0a226e084b-17f6ea00cdac1be0"]},"geometry":{"type":"LineString","coordinates":[[-83.66986200000001,32.879846],[-83.67109,32.879134]]},"id":"8944c0a226fffff-17d7eb8082cee531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22648dab-17d6e2c62f1a333f","8f44c0a226e084b-17f6ea00cdac1be0"]},"geometry":{"type":"LineString","coordinates":[[-83.67109,32.879134],[-83.673606,32.880102],[-83.67381900000001,32.880197],[-83.674051,32.880314000000006]]},"id":"8844c0a227fffff-17dea65f5154cb77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22648dab-17d6e2c62f1a333f","8f44c0a0491868b-179edffd06dbc8d5"]},"geometry":{"type":"LineString","coordinates":[[-83.674051,32.880314000000006],[-83.674356,32.880491],[-83.674704,32.880722],[-83.67546700000001,32.881245],[-83.675928,32.881573],[-83.67598100000001,32.881622],[-83.67604,32.881723],[-83.67603000000001,32.881815],[-83.676005,32.881861],[-83.675382,32.882638],[-83.67519200000001,32.882862]]},"id":"8644c0a27ffffff-13beffc2d9783173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67493300000001,32.741424]},"id":"8f44c0b3320a2f2-17bea09ee44e7e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b332abab5-1796e5fe8ed07fa3","8f44c0b3320a2f2-17bea09ee44e7e36"]},"geometry":{"type":"LineString","coordinates":[[-83.67493300000001,32.741424],[-83.67481500000001,32.741374],[-83.674763,32.741362],[-83.67455500000001,32.741352],[-83.67273200000001,32.741335]]},"id":"8844c0b333fffff-179ee34b435567c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b332abab5-1796e5fe8ed07fa3","8f44c0b332ab01e-1796e657e253992d"]},"geometry":{"type":"LineString","coordinates":[[-83.67273200000001,32.741335],[-83.672589,32.741335]]},"id":"8b44c0b332abfff-1796e62b3a7f2380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.670012,32.741311]},"id":"8f44c0b332932d2-13f7eca2835d1e76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b332ab01e-1796e657e253992d","8f44c0b332932d2-13f7eca2835d1e76"]},"geometry":{"type":"LineString","coordinates":[[-83.672589,32.741335],[-83.670012,32.741311]]},"id":"8944c0b332bffff-13fee97d3d104c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b33655022-13f6b36d123d83e7","8f44c0b332932d2-13f7eca2835d1e76"]},"geometry":{"type":"LineString","coordinates":[[-83.670012,32.741311],[-83.6672303,32.7412811]]},"id":"8844c0b337fffff-13feb007c82f9bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b336f0ae3-13dffa9618537a04","8f44c0b33655022-13f6b36d123d83e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6672303,32.7412811],[-83.666848,32.741277000000004],[-83.6642975,32.741247800000004]]},"id":"8844c0b337fffff-13def7019f5d3bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b336f0ae3-13dffa9618537a04","8f44c0b3368a06d-13bfbf3635e052ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6642975,32.741247800000004],[-83.6624029,32.741221]]},"id":"8844c0b337fffff-13d7bce6221a671a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661862,32.741214]},"id":"8f44c0b33699105-13bec08847d99c59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b3368a06d-13bfbf3635e052ff","8f44c0b33699105-13bec08847d99c59"]},"geometry":{"type":"LineString","coordinates":[[-83.6624029,32.741221],[-83.661862,32.741214]]},"id":"8944c0b336bffff-13beffdf4b72038a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66098620000001,32.7412025]},"id":"8f44c0b3369a74d-13b7d2aba6a50c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b3369a74d-13b7d2aba6a50c4d","8f44c0b33699105-13bec08847d99c59"]},"geometry":{"type":"LineString","coordinates":[[-83.661862,32.741214],[-83.66098620000001,32.7412025]]},"id":"8a44c0b3369ffff-13b7f199f412c285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b3369a74d-13b7d2aba6a50c4d","8f44c0b14a69a82-13b6f38a21fc8da0"]},"geometry":{"type":"LineString","coordinates":[[-83.66098620000001,32.7412025],[-83.6606302,32.7411979]]},"id":"8644c0b17ffffff-13b6e31ae689abdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b14a5c533-13b6f9d083ea8211","8f44c0b14a69a82-13b6f38a21fc8da0"]},"geometry":{"type":"LineString","coordinates":[[-83.6606302,32.7411979],[-83.658867,32.741175000000005],[-83.65806,32.7411715]]},"id":"8944c0b14a7ffff-13b6f6ad5d3bc1d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b14a5c533-13b6f9d083ea8211","8f44c0b14ac5d91-139ecf4c581dc796"]},"geometry":{"type":"LineString","coordinates":[[-83.65806,32.7411715],[-83.6558139,32.741161600000005]]},"id":"8844c0b14bfffff-139fec8e77e422f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65542830000001,32.741164000000005]},"id":"8f44c0b14ac46b0-139fd03d5cf59646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ac5d91-139ecf4c581dc796","8f44c0b14ac46b0-139fd03d5cf59646"]},"geometry":{"type":"LineString","coordinates":[[-83.6558139,32.741161600000005],[-83.655676,32.741161000000005],[-83.65542830000001,32.741164000000005]]},"id":"8b44c0b14ac4fff-139edfc4d40c71e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704594,32.748671]},"id":"8f44c0b04788c1e-17ff7834c2872aae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04788c1e-17ff7834c2872aae","8f44c0b0472b884-13d64e33895fe371"]},"geometry":{"type":"LineString","coordinates":[[-83.708692,32.747402],[-83.70732500000001,32.747385],[-83.705414,32.747351],[-83.705268,32.747363],[-83.705073,32.747414],[-83.70496200000001,32.747467],[-83.704842,32.747556],[-83.70473100000001,32.747675],[-83.704656,32.747816],[-83.704616,32.747974],[-83.704603,32.748258],[-83.704594,32.748671]]},"id":"8844c0b047fffff-13b6742607508343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04788c1e-17ff7834c2872aae","8f44c0b046125b1-1397f8450875fd9d"]},"geometry":{"type":"LineString","coordinates":[[-83.704594,32.748671],[-83.704587,32.748945],[-83.704587,32.749234],[-83.70456800000001,32.749929]]},"id":"8844c0b047fffff-17fed83bff8f0963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705309,32.75132]},"id":"8f44c0b0461a6c9-17f75675e3158822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b046125b1-1397f8450875fd9d","8f44c0b0461a6c9-17f75675e3158822"]},"geometry":{"type":"LineString","coordinates":[[-83.70456800000001,32.749929],[-83.704561,32.750289],[-83.704564,32.750388],[-83.704582,32.750476],[-83.70462400000001,32.750554],[-83.704667,32.750614],[-83.704728,32.750684],[-83.705121,32.750965],[-83.70520400000001,32.75103],[-83.705253,32.751101000000006],[-83.705286,32.751196],[-83.705309,32.75132]]},"id":"8844c0b047fffff-13de7797569a8948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67314900000001,32.893143]},"id":"8f44c0a04063c8c-17b6e4f9ea000b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67476500000001,32.894557]},"id":"8f44c0a04334150-139ea107eaf2991a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04063c8c-17b6e4f9ea000b31","8f44c0a04334150-139ea107eaf2991a"]},"geometry":{"type":"LineString","coordinates":[[-83.67314900000001,32.893143],[-83.673353,32.89325],[-83.67380700000001,32.893527],[-83.67392000000001,32.89361],[-83.674042,32.893712],[-83.674192,32.893873],[-83.67447,32.894216],[-83.67476500000001,32.894557]]},"id":"8744c0a04ffffff-13b7a2dcc172fdf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67652000000001,32.897225]},"id":"8f44c0a04372d89-139fbcbf0fb1af48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04372d89-139fbcbf0fb1af48","8f44c0a04334150-139ea107eaf2991a"]},"geometry":{"type":"LineString","coordinates":[[-83.67476500000001,32.894557],[-83.675756,32.895771],[-83.6759,32.895970000000005],[-83.676061,32.896248],[-83.67652000000001,32.897225]]},"id":"8844c0a043fffff-17befeb1ddcd651e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741472,32.818914]},"id":"8f44c0b08a85856-13fdfe2c0878186f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a81b58-13d5fe2d4eb1a231","8f44c0b08a85856-13fdfe2c0878186f"]},"geometry":{"type":"LineString","coordinates":[[-83.741472,32.818914],[-83.74147,32.819463]]},"id":"8a44c0b08a87fff-139dfe2caff7d16f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a81b58-13d5fe2d4eb1a231","8f44c0b08301b2c-13ff403fe20ef357"]},"geometry":{"type":"LineString","coordinates":[[-83.74147,32.819463],[-83.74145700000001,32.820369],[-83.741439,32.820509],[-83.74137900000001,32.820686],[-83.74126100000001,32.820877],[-83.74114200000001,32.821027],[-83.740921,32.821285],[-83.740862,32.821337],[-83.740768,32.821433],[-83.74070900000001,32.821527],[-83.74067000000001,32.82163],[-83.74064,32.821741],[-83.74062500000001,32.821855],[-83.740621,32.822418]]},"id":"8744c0b08ffffff-17ffff1ab59edef7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65802500000001,32.798499]},"id":"8f44c0b1ea98142-1797e9e66ab4e31b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea98142-1797e9e66ab4e31b","8f44c0b1e148962-13feec896c991f1e"]},"geometry":{"type":"LineString","coordinates":[[-83.65694500000001,32.796173],[-83.65689400000001,32.798352],[-83.656901,32.798389],[-83.656936,32.798432000000005],[-83.656999,32.798461],[-83.657043,32.798468],[-83.65802500000001,32.798499]]},"id":"8744c0b1effffff-179edc280008402d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea8d770-17f7e5c4eae22319","8f44c0b1ea98142-1797e9e66ab4e31b"]},"geometry":{"type":"LineString","coordinates":[[-83.65802500000001,32.798499],[-83.658528,32.798513],[-83.658647,32.798516],[-83.659039,32.798538],[-83.65959600000001,32.798603],[-83.659717,32.798623]]},"id":"8944c0b1eabffff-17bfd7d49f0b1f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660376,32.798715]},"id":"8f44c0b1eaf0416-139ee4290eadd94b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea8d770-17f7e5c4eae22319","8f44c0b1eaf0416-139ee4290eadd94b"]},"geometry":{"type":"LineString","coordinates":[[-83.659717,32.798623],[-83.659834,32.798634],[-83.660376,32.798715]]},"id":"8844c0b1ebfffff-17fec4f6ca2e75f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678863,32.854334]},"id":"8f44c0a26709141-17f6d706a18e4d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67899680000001,32.8542423]},"id":"8f44c0a26772482-17bff6b305149bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26709141-17f6d706a18e4d53","8f44c0a26772482-17bff6b305149bee"]},"geometry":{"type":"LineString","coordinates":[[-83.678863,32.854334],[-83.67899680000001,32.8542423]]},"id":"8b44c0a26709fff-17deb6dcdaf382ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26772d5c-17d7d61be838cffb","8f44c0a26772482-17bff6b305149bee"]},"geometry":{"type":"LineString","coordinates":[[-83.67899680000001,32.8542423],[-83.6792386,32.854076500000005]]},"id":"8944c0a2677ffff-17ffb66773568dee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67939220000001,32.8539711]},"id":"8f44c0a26776295-1797f5bbe6ffa553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26776295-1797f5bbe6ffa553","8f44c0a26772d5c-17d7d61be838cffb"]},"geometry":{"type":"LineString","coordinates":[[-83.6792386,32.854076500000005],[-83.67939220000001,32.8539711]]},"id":"8a44c0a26777fff-17b6f5ebed2e3fa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26776295-1797f5bbe6ffa553","8f44c0a260db5b2-17f6f40d8a21fcfd"]},"geometry":{"type":"LineString","coordinates":[[-83.67939220000001,32.8539711],[-83.679461,32.853924],[-83.67951240000001,32.8538872],[-83.6800808,32.8535111]]},"id":"8844c0a267fffff-17f7f4e537c6b82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a260d805d-17b7930046158f94","8f44c0a260db5b2-17f6f40d8a21fcfd"]},"geometry":{"type":"LineString","coordinates":[[-83.6800808,32.8535111],[-83.6805116,32.853224100000006]]},"id":"8a44c0a260dffff-179ed386eebf5968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68139210000001,32.8527768]},"id":"8f44c0a260ced55-179f90d9f1bad895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a260d805d-17b7930046158f94","8f44c0a260ced55-179f90d9f1bad895"]},"geometry":{"type":"LineString","coordinates":[[-83.6805116,32.853224100000006],[-83.6808429,32.8529956],[-83.68096770000001,32.8529195],[-83.68103450000001,32.8528832],[-83.68111010000001,32.852850700000005],[-83.6811967,32.8528186],[-83.68128560000001,32.8527938],[-83.68139210000001,32.8527768]]},"id":"8944c0a260fffff-179e91f78713539a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a260ced55-179f90d9f1bad895","8f44c0a260eba70-179f8ddbcfba1b46"]},"geometry":{"type":"LineString","coordinates":[[-83.68139210000001,32.8527768],[-83.68147350000001,32.8527687],[-83.6815766,32.8527678],[-83.682618,32.85278]]},"id":"8944c0a260fffff-1797df5aff2a0237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a260eba70-179f8ddbcfba1b46","8f44c0a2605b50d-17b6eb9040a36e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.682618,32.85278],[-83.683558,32.852795]]},"id":"8844c0a261fffff-17b6bcb601eb34c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a2604a2a3-17bfe8c9a5ce6072","8f44c0a2605b50d-17b6eb9040a36e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.683558,32.852795],[-83.684695,32.852803]]},"id":"8944c0a2607ffff-17b7ea2cf8054dc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6855712,32.8528181]},"id":"8f44c0a26049175-17b7d6a602e50877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26049175-17b7d6a602e50877","8f44c0a2604a2a3-17bfe8c9a5ce6072"]},"geometry":{"type":"LineString","coordinates":[[-83.684695,32.852803],[-83.68495100000001,32.852808],[-83.6855712,32.8528181]]},"id":"8a44c0a2604ffff-17bec7b7d40cf5c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26049175-17b7d6a602e50877","8f44c0a26332a4c-17bea50365ce153c"]},"geometry":{"type":"LineString","coordinates":[[-83.6855712,32.8528181],[-83.68624100000001,32.852829]]},"id":"8944c0a2633ffff-17b6b5d4b0b41939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6871263,32.8528412]},"id":"8f44c0a26322423-17d7c2da1ff15f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a26322423-17d7c2da1ff15f76","8f44c0a26332a4c-17bea50365ce153c"]},"geometry":{"type":"LineString","coordinates":[[-83.68624100000001,32.852829],[-83.6871263,32.8528412]]},"id":"8944c0a2633ffff-17bff3eeb46bfad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68783300000001,32.852851]},"id":"8f44c0a263203a0-17d7e1206e69e426"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a263203a0-17d7e1206e69e426","8f44c0a26322423-17d7c2da1ff15f76"]},"geometry":{"type":"LineString","coordinates":[[-83.6871263,32.8528412],[-83.68783300000001,32.852851]]},"id":"8a44c0a26327fff-17d6d1fd43d1fbf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69210600000001,32.853015]},"id":"8f44c0a26aed461-17be76b1cc477460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26ac2c6d-17b67bf904500247","8f44c0a26aed461-17be76b1cc477460"]},"geometry":{"type":"LineString","coordinates":[[-83.68994400000001,32.852992],[-83.69210600000001,32.853015]]},"id":"8944c0a26afffff-17b779556321a648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6958481,32.853771800000004]},"id":"8f44c0a20d3141e-17976d8ef9e9a946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20d3141e-17976d8ef9e9a946","8f44c0a26aed461-17be76b1cc477460"]},"geometry":{"type":"LineString","coordinates":[[-83.69210600000001,32.853015],[-83.6931,32.853023],[-83.693245,32.853029],[-83.693397,32.85304],[-83.693555,32.853051],[-83.693684,32.853068],[-83.693792,32.853142000000005],[-83.693909,32.853271],[-83.694016,32.853434],[-83.694097,32.853628],[-83.694134,32.853713],[-83.69425700000001,32.85376],[-83.69442000000001,32.853771],[-83.6958481,32.853771800000004]]},"id":"8644c0a27ffffff-17b7f21f9269c374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30798652-13fff682ec2f61f9","8f44c0a30798166-13dfd61f83156987"]},"geometry":{"type":"LineString","coordinates":[[-83.626804,32.864966],[-83.62664500000001,32.865195]]},"id":"8b44c0a30798fff-13b7565132c0c53c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30798652-13fff682ec2f61f9","8f44c0a306b4849-13b7775765ea4498"]},"geometry":{"type":"LineString","coordinates":[[-83.62664500000001,32.865195],[-83.626575,32.86525],[-83.626509,32.865295],[-83.62639800000001,32.865355],[-83.62637600000001,32.865375],[-83.626345,32.865417],[-83.626305,32.865487]]},"id":"8844c0a307fffff-13bfb6f561f4d429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306b0815-13ff77d8c509ad0f","8f44c0a306b4849-13b7775765ea4498"]},"geometry":{"type":"LineString","coordinates":[[-83.626305,32.865487],[-83.62624100000001,32.865563],[-83.626098,32.865839]]},"id":"8a44c0a306b7fff-139f979c662913a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306b0815-13ff77d8c509ad0f","8f44c0a306b3808-179f38138ac654ef"]},"geometry":{"type":"LineString","coordinates":[[-83.626098,32.865839],[-83.62603200000001,32.865955],[-83.626,32.866152],[-83.626006,32.866205],[-83.62600400000001,32.866293]]},"id":"8a44c0a306b7fff-179778059a0da8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3069536c-17d718354e2d84cb","8f44c0a306b3808-179f38138ac654ef"]},"geometry":{"type":"LineString","coordinates":[[-83.62600400000001,32.866293],[-83.625978,32.866585],[-83.62595,32.866976]]},"id":"8944c0a306bffff-17ff982543f9e2ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625921,32.867303]},"id":"8f44c0a30691b49-179778476cf5b8f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3069536c-17d718354e2d84cb","8f44c0a30691b49-179778476cf5b8f9"]},"geometry":{"type":"LineString","coordinates":[[-83.62595,32.866976],[-83.625921,32.867303]]},"id":"8944c0a306bffff-17bf383e53aaa38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7ad04c-13dff300ebe79131","8f44c0b1a71bd24-13bef189efa66e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.64118900000001,32.821756],[-83.641789,32.82211]]},"id":"8944c0b1a73ffff-13def24568900b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a719666-13f6f05ac235da9e","8f44c0b1a71bd24-13bef189efa66e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.641789,32.82211],[-83.642274,32.822404]]},"id":"8a44c0b1a71ffff-1396f0f255850642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64347000000001,32.823124]},"id":"8f44c0b1a7528f0-13b6ed6f44e4c90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a719666-13f6f05ac235da9e","8f44c0b1a7528f0-13b6ed6f44e4c90b"]},"geometry":{"type":"LineString","coordinates":[[-83.642274,32.822404],[-83.64347000000001,32.823124]]},"id":"8844c0b1a7fffff-13d7eee502f25136"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64408,32.823492]},"id":"8f44c0b1a751458-179eebf2083cda39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a751458-179eebf2083cda39","8f44c0b1a7528f0-13b6ed6f44e4c90b"]},"geometry":{"type":"LineString","coordinates":[[-83.64347000000001,32.823124],[-83.64408,32.823492]]},"id":"8a44c0b1a757fff-17b7ecb0a249dfe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65254800000001,32.825666000000005]},"id":"8f44c0b1a276080-13ffd7458d9a97b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65257700000001,32.824295]},"id":"8f44c0b1a22c98d-1796f7336165dd81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a22c98d-1796f7336165dd81","8f44c0b1a276080-13ffd7458d9a97b7"]},"geometry":{"type":"LineString","coordinates":[[-83.65254800000001,32.825666000000005],[-83.65257700000001,32.824295]]},"id":"8944c0b1a23ffff-13bed73c7aa5a54a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65258700000001,32.823138]},"id":"8f44c0b1a3094b6-13bfd72d2d098156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a22c98d-1796f7336165dd81","8f44c0b1a3094b6-13bfd72d2d098156"]},"geometry":{"type":"LineString","coordinates":[[-83.65257700000001,32.824295],[-83.65258700000001,32.823138]]},"id":"8844c0b1a3fffff-17b6d7304c83c4d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62019000000001,32.856794]},"id":"8f44c0a32944aab-17ff664541b49dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3296289c-17ffa6454e45a48b","8f44c0a32944aab-17ff664541b49dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.62019000000001,32.856212],[-83.62019000000001,32.856794]]},"id":"8944c0a3297ffff-17b7664545e7bf95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62018,32.85804]},"id":"8f44c0a3294e3b3-13f7264b85d1afd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3294e3b3-13f7264b85d1afd3","8f44c0a32944aab-17ff664541b49dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.62019000000001,32.856794],[-83.62018,32.85804]]},"id":"8944c0a3297ffff-17ffa648651d9339"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63986560000001,32.833936300000005]},"id":"8f44c0a34c48d74-179ef63c015a0d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c4cca5-17b6f630a53974e1","8f44c0a34c48d74-179ef63c015a0d98"]},"geometry":{"type":"LineString","coordinates":[[-83.63986560000001,32.833936300000005],[-83.6398838,32.8335403]]},"id":"8a44c0a34c4ffff-179ef6365d7ad5db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6404306,32.8324086]},"id":"8f44c0a34c6115c-13dff4dae60addcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c4cca5-17b6f630a53974e1","8f44c0a34c6115c-13dff4dae60addcf"]},"geometry":{"type":"LineString","coordinates":[[-83.6398838,32.8335403],[-83.6404306,32.8324086]]},"id":"8944c0a34c7ffff-13d7f585c0309636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c61909-13f6f4a8003bc40b","8f44c0a34c6115c-13dff4dae60addcf"]},"geometry":{"type":"LineString","coordinates":[[-83.6404306,32.8324086],[-83.640512,32.83224]]},"id":"8b44c0a34c61fff-13bef4c17efe274d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679963,32.839131]},"id":"8f44c0a26d2b044-13def4572a7a9d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d2b044-13def4572a7a9d92","8f44c0b1961a99c-13de8ffb83f2b2d7"]},"geometry":{"type":"LineString","coordinates":[[-83.679963,32.839131],[-83.68005600000001,32.83898],[-83.68049900000001,32.838127],[-83.68101,32.837125],[-83.681748,32.83568]]},"id":"8644c0b1fffffff-1797b224775d5b87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68292500000001,32.83334]},"id":"8f44c0b1971b29d-17b78d1beb280f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1971b29d-17b78d1beb280f63","8f44c0b1961a99c-13de8ffb83f2b2d7"]},"geometry":{"type":"LineString","coordinates":[[-83.681748,32.83568],[-83.68292500000001,32.83334]]},"id":"8944c0b1963ffff-1796ce8bb10ff2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70186100000001,32.794052]},"id":"8f44c0b032a80b2-17bedee0ed70088d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0339916e-13b7e0786360af0e","8f44c0b032a80b2-17bedee0ed70088d"]},"geometry":{"type":"LineString","coordinates":[[-83.70186100000001,32.794052],[-83.701853,32.793757],[-83.701828,32.793519],[-83.701783,32.793355000000005],[-83.70173000000001,32.793214],[-83.701656,32.793062],[-83.70127000000001,32.792325000000005],[-83.701209,32.792195]]},"id":"8844c0b033fffff-13f77f76f03ca8a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b033860a8-17d6e0c5e842e0f6","8f44c0b0339916e-13b7e0786360af0e"]},"geometry":{"type":"LineString","coordinates":[[-83.701209,32.792195],[-83.701144,32.792053],[-83.701105,32.791947],[-83.701071,32.791809],[-83.70106100000001,32.791489],[-83.701085,32.790612]]},"id":"8944c0b033bffff-17dfe0c4e2907726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75520250000001,32.756072200000006]},"id":"8f44c0b2e040d0a-1395fca67b9df93b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e00b006-1795e17d475a38ae","8f44c0b2e040d0a-1395fca67b9df93b"]},"geometry":{"type":"LineString","coordinates":[[-83.75520250000001,32.756072200000006],[-83.7546391,32.7558892],[-83.7538116,32.755639],[-83.7532204,32.7554894]]},"id":"8844c0b2e1fffff-17d7df0f69e66f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e00b006-1795e17d475a38ae","8f44c0b2e0f4db2-179df641b2de6f1c"]},"geometry":{"type":"LineString","coordinates":[[-83.7532204,32.7554894],[-83.75274200000001,32.755403300000005],[-83.75209240000001,32.7553142],[-83.7512677,32.755266500000005]]},"id":"8844c0b2e1fffff-17bff3dd9ebb11f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e0f4db2-179df641b2de6f1c","8f44c0b2e09c81c-17bdfc11b421ef84"]},"geometry":{"type":"LineString","coordinates":[[-83.7512677,32.755266500000005],[-83.7488869,32.7551381]]},"id":"8944c0b2e0bffff-17f5f929b45996f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74704200000001,32.754944300000005]},"id":"8f44c0b2e461625-17d5f092cc813830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2e09c81c-17bdfc11b421ef84","8f44c0b2e461625-17d5f092cc813830"]},"geometry":{"type":"LineString","coordinates":[[-83.7488869,32.7551381],[-83.74717150000001,32.7550437],[-83.74704200000001,32.754944300000005]]},"id":"8744c0b2effffff-1797fe5bcd49104a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36b50a2a-17ffb0f5a5d9522e","8f44c0a36b5186c-17ff30220b5dfb40"]},"geometry":{"type":"LineString","coordinates":[[-83.62891900000001,32.843513],[-83.62893700000001,32.84353],[-83.629022,32.843584],[-83.6292576,32.8437203]]},"id":"8a44c0a36b57fff-17bf708d41d8eb1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62973740000001,32.8440132]},"id":"8f44c0a36b43423-17b74ef62c2bdf63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36b43423-17b74ef62c2bdf63","8f44c0a36b5186c-17ff30220b5dfb40"]},"geometry":{"type":"LineString","coordinates":[[-83.6292576,32.8437203],[-83.62959400000001,32.843915],[-83.62973740000001,32.8440132]]},"id":"8944c0a36b7ffff-17d75f8a987b606a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6305433,32.844494700000006]},"id":"8f44c0a36b48d18-17f73cfe744d0b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36b43423-17b74ef62c2bdf63","8f44c0a36b48d18-17f73cfe744d0b62"]},"geometry":{"type":"LineString","coordinates":[[-83.62973740000001,32.8440132],[-83.6305433,32.844494700000006]]},"id":"8944c0a36b7ffff-17dfcdfa514fbed3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1923381e-13b7f82a0bb21a3e","8f44c0b1922025e-13d7f48ee4931dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.69150400000001,32.834803],[-83.692227,32.834808],[-83.692981,32.834819]]},"id":"8944c0b1923ffff-13be765c7e488275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694204,32.834836]},"id":"8f44c0b1935039c-13def1928770d917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1935039c-13def1928770d917","8f44c0b1922025e-13d7f48ee4931dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.692981,32.834819],[-83.694204,32.834836]]},"id":"8844c0b193fffff-13d77310ba2e7200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63771220000001,32.8465891]},"id":"8f44c0a34673996-17fefb7deb6a62ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34673996-17fefb7deb6a62ad","8f44c0a346448dc-17def9512aacf281"]},"geometry":{"type":"LineString","coordinates":[[-83.63771220000001,32.8465891],[-83.638456,32.846831],[-83.638574,32.846874],[-83.638603,32.846898],[-83.638603,32.846938]]},"id":"8944c0a3467ffff-17defa59e4ca35eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34644109-17fef965c6e5dcfa","8f44c0a346448dc-17def9512aacf281"]},"geometry":{"type":"LineString","coordinates":[[-83.638603,32.846938],[-83.63857,32.846974]]},"id":"8b44c0a34644fff-17f7f95b727c4a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377011,32.846614100000004]},"id":"8f44c0a34673d68-179ffb84d84b8487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3460d6d3-17defda532adabde","8f44c0a34673d68-179ffb84d84b8487"]},"geometry":{"type":"LineString","coordinates":[[-83.6377011,32.846614100000004],[-83.63694220000001,32.8463702],[-83.63683010000001,32.8463342]]},"id":"8844c0a347fffff-17b6fc950589f61a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3460d6d3-17defda532adabde","8f44c0a3460e605-13beff8e0c792057"]},"geometry":{"type":"LineString","coordinates":[[-83.63683010000001,32.8463342],[-83.636048,32.846048]]},"id":"8a44c0a3460ffff-1797fe999ca18fc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56910740000001,32.8121345]},"id":"8f44c0baa49c70b-13f7b2fbe91eab6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5705188,32.812146600000005]},"id":"8f44c0baa48c02a-13f7bf89c8b7fe29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa49c70b-13f7b2fbe91eab6f","8f44c0baa48c02a-13f7bf89c8b7fe29"]},"geometry":{"type":"LineString","coordinates":[[-83.56910740000001,32.8121345],[-83.5705188,32.812146600000005]]},"id":"8944c0baa4bffff-13f7e142dde39d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5713348,32.812148]},"id":"8f44c0baa4a96dd-13ff9d8bce0612a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa4a96dd-13ff9d8bce0612a7","8f44c0baa48c02a-13f7bf89c8b7fe29"]},"geometry":{"type":"LineString","coordinates":[[-83.5705188,32.812146600000005],[-83.570682,32.812148],[-83.5713348,32.812148]]},"id":"8944c0baa4bffff-13fffe8ac1212c1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5716982,32.812148]},"id":"8f44c0baa4f4cf3-13ff9ca8aa859a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa4f4cf3-13ff9ca8aa859a12","8f44c0baa4a96dd-13ff9d8bce0612a7"]},"geometry":{"type":"LineString","coordinates":[[-83.5713348,32.812148],[-83.5716982,32.812148]]},"id":"8844c0baa5fffff-13ff9d1a3bb5666d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5721139,32.8121324]},"id":"8f44c0baa41b405-13dfdba4dee7b8ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa41b405-13dfdba4dee7b8ab","8f44c0baa4f4cf3-13ff9ca8aa859a12"]},"geometry":{"type":"LineString","coordinates":[[-83.5716982,32.812148],[-83.571999,32.812148],[-83.5721139,32.8121324]]},"id":"8944c0baa4fffff-13f7bc2681e16a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5732943,32.8100601]},"id":"8f44c0baa422656-13df98c31cd7daee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa41b405-13dfdba4dee7b8ab","8f44c0baa422656-13df98c31cd7daee"]},"geometry":{"type":"LineString","coordinates":[[-83.5721139,32.8121324],[-83.572294,32.812108],[-83.572542,32.812024],[-83.572754,32.811915],[-83.572891,32.811822],[-83.57302100000001,32.811708],[-83.57317900000001,32.811521],[-83.573249,32.811416],[-83.57330800000001,32.811296],[-83.573329,32.811216],[-83.57338,32.810962],[-83.57338800000001,32.810813],[-83.573379,32.810599],[-83.57335300000001,32.810378],[-83.5732943,32.8100601]]},"id":"8844c0baa5fffff-17dfd96145e94929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa422656-13df98c31cd7daee","8f44c0baa4358ec-13f7b925b1768633"]},"geometry":{"type":"LineString","coordinates":[[-83.5732943,32.8100601],[-83.57326400000001,32.809896],[-83.5731365,32.8094771]]},"id":"8944c0baa43ffff-139ff8f0486f3954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa51e6c1-13b7b9fe088f46ac","8f44c0baa4358ec-13f7b925b1768633"]},"geometry":{"type":"LineString","coordinates":[[-83.5731365,32.8094771],[-83.57303300000001,32.809137],[-83.572856,32.808707000000005],[-83.5727904,32.808577]]},"id":"8844c0baa5fffff-13d7f988e224436a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5722247,32.8076622]},"id":"8f44c0baa51210c-17f7fb5f9cf57429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa51210c-17f7fb5f9cf57429","8f44c0baa51e6c1-13b7b9fe088f46ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5727904,32.808577],[-83.572637,32.808273],[-83.57237500000001,32.807865],[-83.5722247,32.8076622]]},"id":"8944c0baa53ffff-179fbaa4f6883e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57039660000001,32.8064382]},"id":"8f44c0b8525a8e8-13f7ffd622a6b31b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baa51210c-17f7fb5f9cf57429","8f44c0b8525a8e8-13f7ffd622a6b31b"]},"geometry":{"type":"LineString","coordinates":[[-83.5722247,32.8076622],[-83.57218,32.807602],[-83.57196400000001,32.80735],[-83.57169,32.807077],[-83.571488,32.806907],[-83.571236,32.806724],[-83.57107400000001,32.806624],[-83.57094400000001,32.806559],[-83.570769,32.806497],[-83.570639,32.806463],[-83.570515,32.806446],[-83.57039660000001,32.8064382]]},"id":"8744c0baaffffff-17b79d6a50eb2879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8525acc2-13ffe06647c7952d","8f44c0b8525a8e8-13f7ffd622a6b31b"]},"geometry":{"type":"LineString","coordinates":[[-83.57039660000001,32.8064382],[-83.570166,32.806423]]},"id":"8b44c0b8525afff-13f7a01e3695be17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623473,32.868872]},"id":"8f44c0a32a4a80e-13f71e41690de8be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a5cc40-13d7a05ae49c0ed9","8f44c0a32a4a80e-13f71e41690de8be"]},"geometry":{"type":"LineString","coordinates":[[-83.622613,32.868236],[-83.623473,32.868872]]},"id":"8944c0a32a7ffff-139f5f4e2424de50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a4a80e-13f71e41690de8be","8f44c0a33d10910-17975ba9acce8f38"]},"geometry":{"type":"LineString","coordinates":[[-83.623473,32.868872],[-83.624173,32.869403000000005],[-83.624353,32.869543],[-83.62445600000001,32.869659],[-83.62453500000001,32.86977]]},"id":"8644c0a37ffffff-17f77ce8877a65e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.624148,32.8708414]},"id":"8f44c0a33dad0a1-13b7fc9b86aaf471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33dad0a1-13b7fc9b86aaf471","8f44c0a33d10910-17975ba9acce8f38"]},"geometry":{"type":"LineString","coordinates":[[-83.62453500000001,32.86977],[-83.624561,32.869918000000006],[-83.62456800000001,32.869998],[-83.624555,32.870099],[-83.62452900000001,32.870182],[-83.62445500000001,32.870325],[-83.624148,32.8708414]]},"id":"8844c0a33dfffff-17fffbf382c7b346"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582712,32.858989]},"id":"8f44c0b89da5af1-13d7a1c50becda3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b89d841a6-1797e4ed233ef6c6","8f44c0b89da5af1-13d7a1c50becda3f"]},"geometry":{"type":"LineString","coordinates":[[-83.582712,32.858989],[-83.58224200000001,32.859197],[-83.581839,32.859356000000005],[-83.58141900000001,32.859499]]},"id":"8944c0b89dbffff-13ff9355f3ab71ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58124600000001,32.859547]},"id":"8f44c0b89d84416-17b7e5594a9a8966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b89d841a6-1797e4ed233ef6c6","8f44c0b89d84416-17b7e5594a9a8966"]},"geometry":{"type":"LineString","coordinates":[[-83.58141900000001,32.859499],[-83.58124600000001,32.859547]]},"id":"8b44c0b89d84fff-1797e52337b92140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57949400000001,32.85993]},"id":"8f44c0b89d921b1-1797c9a04c27e7d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b89d84416-17b7e5594a9a8966","8f44c0b89d921b1-1797c9a04c27e7d8"]},"geometry":{"type":"LineString","coordinates":[[-83.58124600000001,32.859547],[-83.580848,32.859662],[-83.580426,32.859763],[-83.57949400000001,32.85993]]},"id":"8844c0b89dfffff-17b7f779f9fd6f74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.578344,32.860145]},"id":"8f44c0b88363582-1797ac6f072fb7af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b89d921b1-1797c9a04c27e7d8","8f44c0b88363582-1797ac6f072fb7af"]},"geometry":{"type":"LineString","coordinates":[[-83.57949400000001,32.85993],[-83.578344,32.860145]]},"id":"8944c0b8837ffff-17d7fb07add63170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57680500000001,32.86047]},"id":"8f44c0b88350952-17f7d030eaafa9a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b88350952-17f7d030eaafa9a3","8f44c0b88363582-1797ac6f072fb7af"]},"geometry":{"type":"LineString","coordinates":[[-83.578344,32.860145],[-83.57753600000001,32.860310000000005],[-83.57680500000001,32.86047]]},"id":"8944c0b8837ffff-17ff8e5055204c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b88350952-17f7d030eaafa9a3","8f44c0b88223874-17bfb3ae01e1b051"]},"geometry":{"type":"LineString","coordinates":[[-83.57680500000001,32.86047],[-83.575376,32.860821]]},"id":"8844c0b883fffff-17dff1ef7aaf6ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57518800000001,32.860877]},"id":"8f44c0b882231a2-17f7b423852fe1ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b882231a2-17f7b423852fe1ab","8f44c0b88223874-17bfb3ae01e1b051"]},"geometry":{"type":"LineString","coordinates":[[-83.575376,32.860821],[-83.57518800000001,32.860877]]},"id":"8b44c0b88223fff-17dfb3e8ce25919b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8820615e-139fd642abcca4ac","8f44c0b882231a2-17f7b423852fe1ab"]},"geometry":{"type":"LineString","coordinates":[[-83.57518800000001,32.860877],[-83.574319,32.861154]]},"id":"8944c0b8823ffff-13b7b53317dc5367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8820615e-139fd642abcca4ac","8f44c0b8828e998-1797bd04b3ecc010"]},"geometry":{"type":"LineString","coordinates":[[-83.574319,32.861154],[-83.573597,32.861475],[-83.572739,32.861865],[-83.57259400000001,32.861939],[-83.572304,32.86211],[-83.572204,32.862178],[-83.57204300000001,32.862311000000005],[-83.571923,32.862417],[-83.5715509,32.8628075]]},"id":"8844c0b883fffff-13d7b9cfbad9b2da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8828e998-1797bd04b3ecc010","8f44c0b8829d2c4-17d7de1bc40db7bf"]},"geometry":{"type":"LineString","coordinates":[[-83.5715509,32.8628075],[-83.571539,32.86282],[-83.57110440000001,32.8632924]]},"id":"8944c0b882bffff-17bfbd905b15970f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b9265a4-17b7ff6ab917e622","8f44c0b8829d2c4-17d7de1bc40db7bf"]},"geometry":{"type":"LineString","coordinates":[[-83.57110440000001,32.8632924],[-83.57106800000001,32.863332],[-83.57056850000001,32.8638519]]},"id":"8844c0b883fffff-17f7dec2f60220d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b9265a4-17b7ff6ab917e622","8f44c0b8b935860-17dfffa1619be8a7"]},"geometry":{"type":"LineString","coordinates":[[-83.57056850000001,32.8638519],[-83.570481,32.863943]]},"id":"8944c0b8b93ffff-17bfff8614f9cd1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b931c14-13d7a09e847bf4d7","8f44c0b8b935860-17dfffa1619be8a7"]},"geometry":{"type":"LineString","coordinates":[[-83.570481,32.863943],[-83.570076,32.864317]]},"id":"8a44c0b8b937fff-17d7e01ff45a121e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706293,32.818134]},"id":"8f44c0b0acc0505-1797d40ee1974e03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0acc0505-1797d40ee1974e03","8f44c0b0a50406d-139e7b592061ed0b"]},"geometry":{"type":"LineString","coordinates":[[-83.70330700000001,32.818573],[-83.70335800000001,32.818919],[-83.70338100000001,32.818976],[-83.703424,32.819021],[-83.70349800000001,32.81906],[-83.70363300000001,32.819124],[-83.70397600000001,32.819223],[-83.70426400000001,32.819299],[-83.70434,32.81931],[-83.70442600000001,32.81931],[-83.70451100000001,32.819300000000005],[-83.7047,32.81924],[-83.704831,32.819177],[-83.705236,32.818913],[-83.705567,32.818682],[-83.70579000000001,32.818534],[-83.706151,32.818289],[-83.706224,32.818223],[-83.706293,32.818134]]},"id":"8744c0b0affffff-13f6f7e3a314c8f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0acc0505-1797d40ee1974e03","8f44c0b0acec6e1-17f7f064cb793eae"]},"geometry":{"type":"LineString","coordinates":[[-83.706293,32.818134],[-83.706444,32.818066],[-83.70743200000001,32.818075],[-83.707794,32.818083]]},"id":"8944c0b0acfffff-17f7723de7068ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093844,32.8180111]},"id":"8f44c0b0ac5ca33-17befc82c01e3237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac5ca33-17befc82c01e3237","8f44c0b0acec6e1-17f7f064cb793eae"]},"geometry":{"type":"LineString","coordinates":[[-83.707794,32.818083],[-83.70895820000001,32.818098400000004],[-83.70910330000001,32.818086900000004],[-83.7092118,32.818066300000005],[-83.7093844,32.8180111]]},"id":"8844c0b0adfffff-17f6ce70ed6c6a07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53699610000001,32.819391100000004]},"id":"8f44c0b8310c884-1397f1617ce466df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8312e90e-13dff09430d5d57a","8f44c0b8310c884-1397f1617ce466df"]},"geometry":{"type":"LineString","coordinates":[[-83.53699610000001,32.819391100000004],[-83.53732450000001,32.818475]]},"id":"8944c0b8313ffff-13fff0fadcf7b273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8312e90e-13dff09430d5d57a","8f44c0b8381254a-139fed9f0afd55f4"]},"geometry":{"type":"LineString","coordinates":[[-83.53732450000001,32.818475],[-83.53853600000001,32.815095]]},"id":"8744c0b83ffffff-17bfef19943b62fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538909,32.8140386]},"id":"8f44c0b8398d6cb-1797ecb5e31ab1a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8381254a-139fed9f0afd55f4","8f44c0b8398d6cb-1797ecb5e31ab1a9"]},"geometry":{"type":"LineString","coordinates":[[-83.53853600000001,32.815095],[-83.538909,32.8140386]]},"id":"8844c0b839fffff-17d7ed2a7b374322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673737,32.877853]},"id":"8f44c0a2275baf5-13d6a38a68a2343f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2275baf5-13d6a38a68a2343f","8f44c0a226e084b-17f6ea00cdac1be0"]},"geometry":{"type":"LineString","coordinates":[[-83.67109,32.879134],[-83.671205,32.878743],[-83.67129100000001,32.878529],[-83.67138100000001,32.878413],[-83.67151100000001,32.878309],[-83.67166800000001,32.878256],[-83.672048,32.878228],[-83.672342,32.878214],[-83.67258500000001,32.878162],[-83.673068,32.877969],[-83.67351000000001,32.87787],[-83.673737,32.877853]]},"id":"8844c0a227fffff-13d6e73c955141d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677473,32.878027]},"id":"8f44c0a222a3c55-13befa6b64dec6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2275baf5-13d6a38a68a2343f","8f44c0a222a3c55-13befa6b64dec6b7"]},"geometry":{"type":"LineString","coordinates":[[-83.673737,32.877853],[-83.674097,32.877817],[-83.67432000000001,32.877788],[-83.67464700000001,32.877716],[-83.674929,32.877606],[-83.67528800000001,32.87746],[-83.675459,32.877398],[-83.675599,32.877364],[-83.67572700000001,32.877361],[-83.6759,32.877376000000005],[-83.67614300000001,32.877421000000005],[-83.67634500000001,32.877476],[-83.676636,32.877598],[-83.676958,32.877788],[-83.677085,32.877853],[-83.67728100000001,32.87793],[-83.677473,32.878027]]},"id":"8744c0a22ffffff-13dffee6a0686a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66529600000001,32.829358]},"id":"8f44c0b1b131b2b-13fef8260974c0f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b131b2b-13fef8260974c0f3","8f44c0b1b12021d-13fef6294af44b2a"]},"geometry":{"type":"LineString","coordinates":[[-83.66529600000001,32.829358],[-83.66611,32.829351]]},"id":"8944c0b1b13ffff-13feb727a4ab0bb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b12021d-13fef6294af44b2a","8f44c0b1b8d2163-13f6f420a02a1d17"]},"geometry":{"type":"LineString","coordinates":[[-83.66611,32.829351],[-83.666258,32.82936],[-83.666943,32.829371]]},"id":"8744c0b1bffffff-13f6f5250ade9658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66775200000001,32.8294]},"id":"8f44c0b1b8d565b-1397b2270b11e723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8d565b-1397b2270b11e723","8f44c0b1b8d2163-13f6f420a02a1d17"]},"geometry":{"type":"LineString","coordinates":[[-83.666943,32.829371],[-83.667287,32.829389],[-83.66775200000001,32.8294]]},"id":"8a44c0b1b8d7fff-13ffb323e1c42e10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65379300000001,32.85118]},"id":"8f44c0a35cca26d-13b7d43b60d39b7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654583,32.853139]},"id":"8f44c0a3519a4ac-17fff24dace658fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3519a4ac-17fff24dace658fa","8f44c0a35cca26d-13b7d43b60d39b7e"]},"geometry":{"type":"LineString","coordinates":[[-83.65379300000001,32.85118],[-83.65365700000001,32.851607],[-83.65352100000001,32.852001],[-83.653389,32.852435],[-83.653267,32.852952],[-83.653273,32.853026],[-83.653306,32.853065],[-83.65335,32.853085],[-83.653419,32.853093],[-83.654583,32.853139]]},"id":"8744c0a35ffffff-13f6d48601019327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3519a4ac-17fff24dace658fa","8f44c0a3519d643-17f6ef88ea8d4388"]},"geometry":{"type":"LineString","coordinates":[[-83.654583,32.853139],[-83.654683,32.853127],[-83.65571700000001,32.853127]]},"id":"8944c0a351bffff-17f6f0eb7a168772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3519d643-17f6ef88ea8d4388","8f44c0a3518a969-17ffee04c6db3c65"]},"geometry":{"type":"LineString","coordinates":[[-83.65571700000001,32.853127],[-83.656338,32.853119]]},"id":"8944c0a351bffff-17f7eec6d2a6c0f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65746800000001,32.853113]},"id":"8f44c0a350366e4-17ffeb42829cb542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350366e4-17ffeb42829cb542","8f44c0a3518a969-17ffee04c6db3c65"]},"geometry":{"type":"LineString","coordinates":[[-83.656338,32.853119],[-83.65746800000001,32.853113]]},"id":"8844c0a351fffff-17ffcca3ab0e9164"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35746049-179fcd87ca37a8af","8f44c0a35746163-17dfcd7bea5793ec"]},"geometry":{"type":"LineString","coordinates":[[-83.656557,32.86005],[-83.65653800000001,32.860152]]},"id":"8b44c0a35746fff-17ffed81d22cc14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65159200000001,32.863066]},"id":"8f44c0a356f2885-17bed99b04522cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a356f2885-17bed99b04522cd8","8f44c0a35746049-179fcd87ca37a8af"]},"geometry":{"type":"LineString","coordinates":[[-83.65653800000001,32.860152],[-83.65606000000001,32.861131],[-83.656018,32.861255],[-83.65597100000001,32.861502],[-83.655922,32.862139],[-83.655887,32.862431],[-83.655838,32.862546],[-83.65581200000001,32.862586],[-83.655713,32.862701],[-83.65554800000001,32.862799],[-83.65543100000001,32.862845],[-83.65529000000001,32.862882],[-83.655156,32.862904],[-83.65487900000001,32.862913],[-83.654652,32.862886],[-83.65434,32.862834],[-83.65414100000001,32.862797],[-83.653923,32.862761],[-83.653609,32.862732],[-83.65332400000001,32.862721],[-83.65307100000001,32.862729],[-83.652663,32.862769],[-83.652354,32.862826000000005],[-83.652051,32.862903],[-83.65184400000001,32.862969],[-83.65159200000001,32.863066]]},"id":"8844c0a357fffff-13dff23f500d3333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680159,32.822811]},"id":"8f44c0b19526b05-13f6f3dcae36f238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8a70d-13fed30e62fa74fe","8f44c0b19526b05-13f6f3dcae36f238"]},"geometry":{"type":"LineString","coordinates":[[-83.680159,32.822811],[-83.68048900000001,32.822414]]},"id":"8844c0b19dfffff-13f6d37581b68625"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8a803-13fed2a92104e6f9","8f44c0b19c8a70d-13fed30e62fa74fe"]},"geometry":{"type":"LineString","coordinates":[[-83.68048900000001,32.822414],[-83.68065100000001,32.82219]]},"id":"8b44c0b19c8afff-13b6d2dbc8d08f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8a803-13fed2a92104e6f9","8f44c0b19cb579a-17b7b3ea6c148c92"]},"geometry":{"type":"LineString","coordinates":[[-83.68065100000001,32.82219],[-83.680952,32.82183],[-83.681009,32.821724],[-83.68103,32.821661],[-83.681039,32.821582],[-83.681036,32.821489],[-83.681015,32.821416],[-83.680988,32.821347],[-83.680953,32.821275],[-83.680864,32.821174],[-83.680355,32.820801],[-83.68030300000001,32.820757],[-83.680255,32.820707],[-83.68020100000001,32.820636],[-83.680148,32.820535],[-83.68012900000001,32.820439],[-83.680126,32.820301],[-83.680137,32.820057000000006]]},"id":"8944c0b19cbffff-17df92c0accbc95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d9a38d-13f6f3ec4158d3a0","8f44c0b19cb579a-17b7b3ea6c148c92"]},"geometry":{"type":"LineString","coordinates":[[-83.680137,32.820057000000006],[-83.68013400000001,32.819307]]},"id":"8844c0b19dfffff-13dfd3eb5e4e63b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680142,32.817691]},"id":"8f44c0b19d94232-17f6f3e74078b233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d94232-17f6f3e74078b233","8f44c0b19d9a38d-13f6f3ec4158d3a0"]},"geometry":{"type":"LineString","coordinates":[[-83.68013400000001,32.819307],[-83.680142,32.817691]]},"id":"8944c0b19dbffff-13fff3e9c49331b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2eb650b6-13dde12f809fd4ab","8f44c0b2c79e700-13ffbe8aabe3986f"]},"geometry":{"type":"LineString","coordinates":[[-83.766452,32.752935],[-83.76666900000001,32.75314],[-83.76688,32.753349],[-83.767086,32.753562],[-83.76753500000001,32.753996]]},"id":"8744c0b2cffffff-13b7bfdcdfdc0927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c79e700-13ffbe8aabe3986f","8f44c0b2c78d516-13ddf9936b31d89d"]},"geometry":{"type":"LineString","coordinates":[[-83.76753500000001,32.753996],[-83.76761900000001,32.754053],[-83.76775900000001,32.75412],[-83.767871,32.754157],[-83.767971,32.754177],[-83.768113,32.754194000000005],[-83.76829500000001,32.754199],[-83.769569,32.754171]]},"id":"8944c0b2c7bffff-13dfbc19f653fc80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.773127,32.7543]},"id":"8f44c0b2c75448b-13bdb0e3ad7b40ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c78d516-13ddf9936b31d89d","8f44c0b2c75448b-13bdb0e3ad7b40ca"]},"geometry":{"type":"LineString","coordinates":[[-83.769569,32.754171],[-83.772351,32.754122],[-83.77249400000001,32.754134],[-83.772655,32.754139],[-83.77275900000001,32.754154],[-83.772908,32.754198],[-83.773127,32.7543]]},"id":"8844c0b2c7fffff-13d5f532fea9be1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.594514,32.866992]},"id":"8f44c0b89bb5d16-17df64f4c153af39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89bac075-139fe0c94ce8dee1","8f44c0b89bb5d16-17df64f4c153af39"]},"geometry":{"type":"LineString","coordinates":[[-83.594514,32.866992],[-83.59622200000001,32.868113]]},"id":"8944c0b89bbffff-13bf72df01a1a354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b1a84c-13f7dec14c41560b","8f44c0b89bac075-139fe0c94ce8dee1"]},"geometry":{"type":"LineString","coordinates":[[-83.59622200000001,32.868113],[-83.597054,32.868662]]},"id":"8844c0b89bfffff-13b77fc54753befa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b1a84c-13f7dec14c41560b","8f44c0b89b28ace-13f7d89689e31489"]},"geometry":{"type":"LineString","coordinates":[[-83.597054,32.868662],[-83.59739300000001,32.868882],[-83.597541,32.868969],[-83.59766400000001,32.868997],[-83.59773200000001,32.869006],[-83.597845,32.868995000000005],[-83.597909,32.86898],[-83.59801800000001,32.868931],[-83.59814700000001,32.868823],[-83.59880000000001,32.868248],[-83.598971,32.868105],[-83.59914900000001,32.868003],[-83.59926700000001,32.867955],[-83.59941500000001,32.86791],[-83.59958,32.867876]]},"id":"8944c0b89b3ffff-1397dbacf1980691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67600800000001,32.866276]},"id":"8f44c0a2213285a-179e9dff07cf3f9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2213285a-179e9dff07cf3f9e","8f44c0a22120a73-17dfb95ea39461dd"]},"geometry":{"type":"LineString","coordinates":[[-83.67600800000001,32.866276],[-83.67623300000001,32.866377],[-83.676339,32.866396],[-83.676433,32.866396],[-83.676483,32.866391],[-83.67673500000001,32.866343],[-83.676832,32.866332],[-83.677171,32.866332],[-83.677485,32.866337],[-83.677648,32.866345],[-83.677756,32.866366],[-83.677903,32.866405]]},"id":"8944c0a2213ffff-17bfbbb3a01f8475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677215,32.867995]},"id":"8f44c0a2210e126-13d6fb0cab745015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2210e126-13d6fb0cab745015","8f44c0a22120a73-17dfb95ea39461dd"]},"geometry":{"type":"LineString","coordinates":[[-83.677903,32.866405],[-83.67801200000001,32.866562],[-83.67806300000001,32.86665],[-83.67811800000001,32.866787],[-83.67808000000001,32.866954],[-83.677982,32.867133],[-83.677818,32.867401],[-83.67756800000001,32.867662],[-83.67733000000001,32.867877],[-83.677215,32.867995]]},"id":"8944c0a2213ffff-17ffd9a2941d1e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360c621d-179fbfb4566154f6","8f44c0a360c5493-17bf6e8ca5bf86be"]},"geometry":{"type":"LineString","coordinates":[[-83.616799,32.846463],[-83.61635700000001,32.846415],[-83.6163259,32.846410500000005]]},"id":"8a44c0a360c7fff-179f7f20811c5ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360c621d-179fbfb4566154f6","8f44c0a360d456c-1397f22a4434764f"]},"geometry":{"type":"LineString","coordinates":[[-83.6163259,32.846410500000005],[-83.616089,32.846376],[-83.615812,32.846272],[-83.615668,32.846193],[-83.615318,32.845979]]},"id":"8944c0a360fffff-17b770f97f3a6fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65528,32.848919]},"id":"8f44c0a35c50486-13bef09a0cfeacb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65519300000001,32.851174]},"id":"8f44c0a351b2a48-13bfd0d06d967b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351b2a48-13bfd0d06d967b3c","8f44c0a35c50486-13bef09a0cfeacb9"]},"geometry":{"type":"LineString","coordinates":[[-83.65528,32.848919],[-83.65519300000001,32.851174]]},"id":"8744c0a35ffffff-17ffd0b537ba1833"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351b2a48-13bfd0d06d967b3c","8f44c0a3519a4ac-17fff24dace658fa"]},"geometry":{"type":"LineString","coordinates":[[-83.65519300000001,32.851174],[-83.65517600000001,32.851534],[-83.655139,32.851793],[-83.655084,32.852007],[-83.655043,32.852125],[-83.654982,32.852271],[-83.65480500000001,32.852663],[-83.654583,32.853139]]},"id":"8944c0a351bffff-13b7d15c5d772fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654334,32.853766]},"id":"8f44c0a350b6321-1797d2e94d4571f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3519a4ac-17fff24dace658fa","8f44c0a350b6321-1797d2e94d4571f6"]},"geometry":{"type":"LineString","coordinates":[[-83.654583,32.853139],[-83.65445000000001,32.85343],[-83.65438900000001,32.853592],[-83.654334,32.853766]]},"id":"8844c0a351fffff-17bff2a0ecb9103b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5406166,32.811780500000005]},"id":"8f44c0b83915843-1397f88aa750b8c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b839a42f0-179fecdfc1e5df2e","8f44c0b83915843-1397f88aa750b8c3"]},"geometry":{"type":"LineString","coordinates":[[-83.5406166,32.811780500000005],[-83.540396,32.811821],[-83.54023000000001,32.811822],[-83.53976300000001,32.811816],[-83.53949,32.811802],[-83.53926100000001,32.811771],[-83.53911400000001,32.811735],[-83.538945,32.811673],[-83.538842,32.811621]]},"id":"8844c0b839fffff-1397eabb841cbcc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b839a42f0-179fecdfc1e5df2e","8f44c0b80659773-179fedff437e20a6"]},"geometry":{"type":"LineString","coordinates":[[-83.538842,32.811621],[-83.53873700000001,32.811566],[-83.53858600000001,32.811436],[-83.53845100000001,32.811292],[-83.538382,32.811203]]},"id":"8644c0b87ffffff-17b7fd7904fb43b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.537619,32.81016]},"id":"8f44c0b80653a65-179fefdc2870fdd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b80653a65-179fefdc2870fdd0","8f44c0b80659773-179fedff437e20a6"]},"geometry":{"type":"LineString","coordinates":[[-83.538382,32.811203],[-83.53766300000001,32.810242],[-83.537619,32.81016]]},"id":"8944c0b8067ffff-17d7eef127109a0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b80653a65-179fefdc2870fdd0","8f44c0b8061d845-17fff34c202de043"]},"geometry":{"type":"LineString","coordinates":[[-83.537619,32.81016],[-83.537566,32.810116],[-83.53739200000001,32.809885],[-83.537124,32.809517],[-83.536901,32.809226],[-83.53621100000001,32.808283]]},"id":"8844c0b807fffff-13d7f198e5d98524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700978,32.83549]},"id":"8f44c0a24c31c83-13f76108c496f1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24c31c83-13f76108c496f1be","8f44c0a24c1a989-17dee2d564970cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.700978,32.83549],[-83.701008,32.835578000000005],[-83.701023,32.835655],[-83.701023,32.83572],[-83.701007,32.835816],[-83.700953,32.835943],[-83.700899,32.836039],[-83.70078000000001,32.836229],[-83.70054900000001,32.836664],[-83.700501,32.836768],[-83.70045900000001,32.836858],[-83.700241,32.837294]]},"id":"8944c0a24c3ffff-179f71c06ab2a776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24c1a989-17dee2d564970cfb","8f44c0a24cf46d8-13de639ccd63a598"]},"geometry":{"type":"LineString","coordinates":[[-83.700241,32.837294],[-83.70009900000001,32.837624000000005],[-83.699922,32.838106]]},"id":"8844c0a24dfffff-17df733c6ba7f67a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24cf46d8-13de639ccd63a598","8f44c0a24cf346d-13ff6420a6459dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.699922,32.838106],[-83.699821,32.838402],[-83.69975600000001,32.838611],[-83.69971100000001,32.838783]]},"id":"8a44c0a24cf7fff-139ef3e1f6de119d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24cd13aa-17bfe45707bac13d","8f44c0a24cf346d-13ff6420a6459dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.69971100000001,32.838783],[-83.69970400000001,32.838909],[-83.69970500000001,32.839401],[-83.6997,32.839474],[-83.699624,32.839731]]},"id":"8944c0a24cfffff-139e742bf4870d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24cd13aa-17bfe45707bac13d","8f44c0a24cde74c-17de64cfaab59b95"]},"geometry":{"type":"LineString","coordinates":[[-83.699624,32.839731],[-83.69955900000001,32.83994],[-83.69952400000001,32.840027],[-83.699478,32.840111],[-83.699431,32.840186]]},"id":"8944c0a24cfffff-17d7e48b6556d22b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24cda710-17d7e55889e1fb44","8f44c0a24cde74c-17de64cfaab59b95"]},"geometry":{"type":"LineString","coordinates":[[-83.699431,32.840186],[-83.699212,32.840556]]},"id":"8a44c0a24cdffff-17dfe5141bd21e0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24cda710-17d7e55889e1fb44","8f44c0a24556081-13d6e86fcb5212e7"]},"geometry":{"type":"LineString","coordinates":[[-83.699212,32.840556],[-83.69905800000001,32.840769],[-83.69859600000001,32.841321],[-83.698301,32.841645],[-83.697946,32.842011]]},"id":"8844c0a245fffff-1397f6d8c07dcd84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a24405a1c-17f6eaccc012daba","8f44c0a24556081-13d6e86fcb5212e7"]},"geometry":{"type":"LineString","coordinates":[[-83.697946,32.842011],[-83.697652,32.84232],[-83.697406,32.842592],[-83.696978,32.843089]]},"id":"8844c0a245fffff-139e79a21a10a297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a2440e4f0-179f7c59e93fb74d","8f44c0a24405a1c-17f6eaccc012daba"]},"geometry":{"type":"LineString","coordinates":[[-83.696978,32.843089],[-83.69689600000001,32.843193],[-83.696713,32.843413000000005],[-83.696594,32.843563],[-83.696422,32.843804],[-83.69634260000001,32.843951100000005]]},"id":"8944c0a2443ffff-17fe7b9c09057554"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a2440e4f0-179f7c59e93fb74d","8f44c0a244c896b-17d76c8569d8f06e"]},"geometry":{"type":"LineString","coordinates":[[-83.69634260000001,32.843951100000005],[-83.69624800000001,32.844118],[-83.69619,32.844299],[-83.69615200000001,32.844462],[-83.696138,32.844616],[-83.696155,32.844997],[-83.69622000000001,32.845962],[-83.696256,32.84664],[-83.696273,32.847141]]},"id":"8844c0a245fffff-13f7fcac6f5d839b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2626aace-17bffc77e03bec4e","8f44c0a26245750-13f67dec7acd5b69"]},"geometry":{"type":"LineString","coordinates":[[-83.6891449,32.8590626],[-83.68974100000001,32.859363]]},"id":"8944c0a2627ffff-13d67d3236790d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69116070000001,32.8600881]},"id":"8f44c0a2053512b-17f7790095d7bc68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2053512b-17f7790095d7bc68","8f44c0a2626aace-17bffc77e03bec4e"]},"geometry":{"type":"LineString","coordinates":[[-83.68974100000001,32.859363],[-83.69116070000001,32.8600881]]},"id":"8744c0a20ffffff-1796fabc430e8af0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60329300000001,32.865453]},"id":"8f44c0a3240938b-139f6f85e45edeb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32409723-13df4fd2c0ed4064","8f44c0a3240938b-139f6f85e45edeb8"]},"geometry":{"type":"LineString","coordinates":[[-83.60329300000001,32.865453],[-83.60317,32.865378]]},"id":"8b44c0a32409fff-13f7ffac5c752e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32409723-13df4fd2c0ed4064","8f44c0a3240938b-139f6f85e45edeb8"]},"geometry":{"type":"LineString","coordinates":[[-83.60317,32.865378],[-83.603133,32.86581],[-83.60295400000001,32.866148],[-83.602798,32.866326],[-83.602726,32.866489],[-83.602725,32.866643],[-83.602783,32.866805],[-83.602919,32.866919],[-83.603108,32.867013],[-83.603335,32.867069],[-83.603603,32.867061],[-83.603806,32.86697],[-83.60391800000001,32.866835],[-83.603908,32.866616],[-83.60390600000001,32.866383],[-83.60386000000001,32.866146],[-83.603774,32.866024],[-83.603587,32.86582],[-83.60349500000001,32.865699],[-83.603389,32.865546],[-83.60329300000001,32.865453]]},"id":"8844c0a325fffff-17d74f651ae07f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34655471-179efc2e4f46a3c6","8f44c0a34673d68-179ffb84d84b8487"]},"geometry":{"type":"LineString","coordinates":[[-83.63743000000001,32.847229],[-83.6377011,32.846614100000004]]},"id":"8944c0a3467ffff-17defbd997dfac4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34673996-17fefb7deb6a62ad","8f44c0a34673d68-179ffb84d84b8487"]},"geometry":{"type":"LineString","coordinates":[[-83.6377011,32.846614100000004],[-83.63771220000001,32.8465891]]},"id":"8b44c0a34673fff-1796fb815aa77746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34673996-17fefb7deb6a62ad","8f44c0a346743b1-1396fadf4a115f6c"]},"geometry":{"type":"LineString","coordinates":[[-83.63771220000001,32.8465891],[-83.637966,32.8460133]]},"id":"8a44c0a34677fff-17defb2e9b4dc1f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63820290000001,32.845476000000005]},"id":"8f44c0a3475ab88-13d6fa4b3ab7f06d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3475ab88-13d6fa4b3ab7f06d","8f44c0a346743b1-1396fadf4a115f6c"]},"geometry":{"type":"LineString","coordinates":[[-83.637966,32.8460133],[-83.63820290000001,32.845476000000005]]},"id":"8844c0a347fffff-13fefa9534749780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69856300000001,32.803396]},"id":"8f44c0b1d8c1a9c-139ee6ee2be205bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d8c1a9c-139ee6ee2be205bc","8f44c0b1d168396-139f66eae7978d65"]},"geometry":{"type":"LineString","coordinates":[[-83.69856300000001,32.803396],[-83.69856,32.803559],[-83.6985542,32.803581300000005],[-83.698542,32.803628],[-83.69851200000001,32.8037],[-83.698492,32.80377],[-83.698476,32.80388],[-83.698451,32.804898],[-83.698452,32.805065],[-83.69846700000001,32.805143],[-83.698491,32.805221],[-83.69858400000001,32.805467],[-83.698589,32.805532],[-83.69859000000001,32.805666],[-83.698581,32.805824],[-83.69856820000001,32.806267600000005]]},"id":"8744c0b1dffffff-179f770d59d9e68c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70025700000001,32.806274]},"id":"8f44c0b1db9d71a-139762cb6cefa3bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1db9d71a-139762cb6cefa3bd","8f44c0b1d168396-139f66eae7978d65"]},"geometry":{"type":"LineString","coordinates":[[-83.69856820000001,32.806267600000005],[-83.6990038,32.806266900000004],[-83.699556,32.806266],[-83.70025700000001,32.806274]]},"id":"8844c0b1dbfffff-139ff4db228f0818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553978,32.843597200000005]},"id":"8f44c0a35d054b6-17b6d05065c4b51e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d06354-179ff15c6244f03d","8f44c0a35d054b6-17b6d05065c4b51e"]},"geometry":{"type":"LineString","coordinates":[[-83.65496900000001,32.843539],[-83.65504700000001,32.843573],[-83.65511400000001,32.84359],[-83.65527300000001,32.843598],[-83.6553978,32.843597200000005]]},"id":"8a44c0a35d07fff-17bfd0d875cb2c03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65558920000001,32.843595900000004]},"id":"8f44c0a35d05568-17bfffd8cbae4d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d054b6-17b6d05065c4b51e","8f44c0a35d05568-17bfffd8cbae4d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6553978,32.843597200000005],[-83.65558920000001,32.843595900000004]]},"id":"8a44c0a35d07fff-17bff01497796537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6563587,32.8435902]},"id":"8f44c0a35d2eaec-17bfedf7d2ba9057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d2eaec-17bfedf7d2ba9057","8f44c0a35d05568-17bfffd8cbae4d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.65558920000001,32.843595900000004],[-83.656192,32.843592],[-83.6563587,32.8435902]]},"id":"8944c0a35d3ffff-17bfdee8450404ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6de8ce-17b7eb022918027c","8f44c0a35d2eaec-17bfedf7d2ba9057"]},"geometry":{"type":"LineString","coordinates":[[-83.6563587,32.8435902],[-83.657571,32.843577]]},"id":"8744c0a35ffffff-17b7cc7cf54d7b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658922,32.843578]},"id":"8f44c0b1b6ce90a-17b6c7b5c39c826d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6ce90a-17b6c7b5c39c826d","8f44c0b1b6de8ce-17b7eb022918027c"]},"geometry":{"type":"LineString","coordinates":[[-83.657571,32.843577],[-83.658922,32.843578]]},"id":"8944c0b1b6fffff-17b7f95bfedc460c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6ce90a-17b6c7b5c39c826d","8f44c0b1b65a224-17dec314cdfde25e"]},"geometry":{"type":"LineString","coordinates":[[-83.658922,32.843578],[-83.660818,32.843456]]},"id":"8844c0b1b7fffff-17fee56547a26f2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66239300000001,32.843362]},"id":"8f44c0b1b64846e-179fff3c6660d8ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b65a224-17dec314cdfde25e","8f44c0b1b64846e-179fff3c6660d8ef"]},"geometry":{"type":"LineString","coordinates":[[-83.660818,32.843456],[-83.66239300000001,32.843362]]},"id":"8944c0b1b67ffff-17bee1289e164338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68552700000001,32.796338]},"id":"8f44c0b1dd96d4b-13dfc6c1aaaa5051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd93480-1797a6cb042d2e43","8f44c0b1dd96d4b-13dfc6c1aaaa5051"]},"geometry":{"type":"LineString","coordinates":[[-83.685512,32.797237],[-83.68552700000001,32.796338]]},"id":"8a44c0b1dd97fff-13feb6c655c66161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685545,32.795395]},"id":"8f44c0b1cacc376-1397e6b668eb8df1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cacc376-1397e6b668eb8df1","8f44c0b1dd96d4b-13dfc6c1aaaa5051"]},"geometry":{"type":"LineString","coordinates":[[-83.68552700000001,32.796338],[-83.685545,32.795395]]},"id":"8744c0b1cffffff-13be96bc068deb85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1caee561-1797a6ad07b4aa0d","8f44c0b1cacc376-1397e6b668eb8df1"]},"geometry":{"type":"LineString","coordinates":[[-83.685545,32.795395],[-83.68555500000001,32.795121],[-83.68556000000001,32.794373]]},"id":"8944c0b1cafffff-17d696afd69cb515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1caee561-1797a6ad07b4aa0d","8f44c0b1ca2b528-17f7a4262371ff44"]},"geometry":{"type":"LineString","coordinates":[[-83.68556000000001,32.794373],[-83.68557100000001,32.793791],[-83.68559900000001,32.793574],[-83.68567,32.793369000000006],[-83.68571200000001,32.793284],[-83.685792,32.793142],[-83.685962,32.792907],[-83.686001,32.792861],[-83.68652800000001,32.792167],[-83.68659500000001,32.792073]]},"id":"8844c0b1cbfffff-139e85d200bf0e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688767,32.790075]},"id":"8f44c0b1cb71b93-1396fed8a23251a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca2b528-17f7a4262371ff44","8f44c0b1cb71b93-1396fed8a23251a2"]},"geometry":{"type":"LineString","coordinates":[[-83.68659500000001,32.792073],[-83.686751,32.791874],[-83.68712000000001,32.791384],[-83.68732100000001,32.791131],[-83.687539,32.79085],[-83.68762000000001,32.79077],[-83.68779500000001,32.790642000000005],[-83.688229,32.79038],[-83.688767,32.790075]]},"id":"8844c0b1cbfffff-17b6d1ba55d13229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362ae252-13f7a863030f0be1","8f44c0a362a199b-17f728402ae41725"]},"geometry":{"type":"LineString","coordinates":[[-83.61937900000001,32.851072],[-83.61932320000001,32.8518664]]},"id":"8944c0a362bffff-13ff68519971ba41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619292,32.852578]},"id":"8f44c0a362ab680-139f687680b579d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362ae252-13f7a863030f0be1","8f44c0a362ab680-139f687680b579d9"]},"geometry":{"type":"LineString","coordinates":[[-83.61932320000001,32.8518664],[-83.6193221,32.8518921],[-83.61931600000001,32.852041],[-83.619292,32.852578]]},"id":"8944c0a362bffff-13bfe86cadcf5913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66532000000001,32.828691]},"id":"8f44c0b1b89b286-13dff8170789c8dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b131b2b-13fef8260974c0f3","8f44c0b1b89b286-13dff8170789c8dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66529600000001,32.829358],[-83.66532000000001,32.828691]]},"id":"8944c0b1b13ffff-139ef81e86042b9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665324,32.828031]},"id":"8f44c0b1b898564-17bff8148655d5ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b89b286-13dff8170789c8dc","8f44c0b1b898564-17bff8148655d5ce"]},"geometry":{"type":"LineString","coordinates":[[-83.66532000000001,32.828691],[-83.66532000000001,32.828224],[-83.665324,32.828031]]},"id":"8a44c0b1b89ffff-13ffb816aa5ffef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665115,32.831443]},"id":"8f44c0b1b119a30-1397f89725c77533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b103ce1-17bef89b8c2e2eb5","8f44c0b1b119a30-1397f89725c77533"]},"geometry":{"type":"LineString","coordinates":[[-83.665115,32.831443],[-83.665108,32.831068],[-83.665108,32.830478]]},"id":"8944c0b1b13ffff-17d6f89aadb090d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66510050000001,32.8295788]},"id":"8f44c0b1b13128c-13f6f8a03df4d1a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b103ce1-17bef89b8c2e2eb5","8f44c0b1b13128c-13f6f8a03df4d1a3"]},"geometry":{"type":"LineString","coordinates":[[-83.665108,32.830478],[-83.66510000000001,32.830122],[-83.665098,32.830016],[-83.665098,32.829951],[-83.66510050000001,32.8295788]]},"id":"8a44c0b1b107fff-179ff89feffb6c8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665436,32.82667]},"id":"8f44c0b1b8b329b-17def7ce840c7332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66542600000001,32.825968]},"id":"8f44c0b1b8b0cda-13b6b7d4c02cbe32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8b0cda-13b6b7d4c02cbe32","8f44c0b1b8b329b-17def7ce840c7332"]},"geometry":{"type":"LineString","coordinates":[[-83.665436,32.82667],[-83.665414,32.826237],[-83.66542600000001,32.825968]]},"id":"8a44c0b1b8b7fff-1397f7d694e1e60d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8b0cda-13b6b7d4c02cbe32","8f44c0b1b993601-17b6b7be42bff703"]},"geometry":{"type":"LineString","coordinates":[[-83.66542600000001,32.825968],[-83.665452,32.82526],[-83.665462,32.824557]]},"id":"8844c0b1b9fffff-13ffb7c7024c3e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b993601-17b6b7be42bff703","8f44c0b186c98d4-13beb79fac12c755"]},"geometry":{"type":"LineString","coordinates":[[-83.665462,32.824557],[-83.66551100000001,32.823137]]},"id":"8744c0b1bffffff-17fef7aefb00c782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641024,32.820363]},"id":"8f44c0b1a7168b2-17f6f36807c81386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641706,32.819843]},"id":"8f44c0b1a732803-13b7f1bdc21e1e74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7168b2-17f6f36807c81386","8f44c0b1a732803-13b7f1bdc21e1e74"]},"geometry":{"type":"LineString","coordinates":[[-83.641024,32.820363],[-83.641706,32.819843]]},"id":"8944c0b1a73ffff-17d6f292e8bcfeac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a73470e-13fef0b9257d290a","8f44c0b1a732803-13b7f1bdc21e1e74"]},"geometry":{"type":"LineString","coordinates":[[-83.641706,32.819843],[-83.64212300000001,32.819527]]},"id":"8a44c0b1a737fff-13dff13b76c23efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a73470e-13fef0b9257d290a","8f44c0b1a09bc8c-13b6efae4900b24b"]},"geometry":{"type":"LineString","coordinates":[[-83.64212300000001,32.819527],[-83.64255,32.819204]]},"id":"8744c0b1affffff-1397f033b8ee6b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64357100000001,32.818418]},"id":"8f44c0b1a083af1-13b7ed30213aa377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a083af1-13b7ed30213aa377","8f44c0b1a09bc8c-13b6efae4900b24b"]},"geometry":{"type":"LineString","coordinates":[[-83.64255,32.819204],[-83.64296,32.8189],[-83.64357100000001,32.818418]]},"id":"8944c0b1a0bffff-13bffe6d797f716a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a083af1-13b7ed30213aa377","8f44c0b1a081895-17feec5ec7c4f3fa"]},"geometry":{"type":"LineString","coordinates":[[-83.64357100000001,32.818418],[-83.643906,32.818122]]},"id":"8a44c0b1a087fff-17deecc77d5c3690"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64452700000001,32.817531]},"id":"8f44c0b1a0ae982-179eeadaad16328e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0ae982-179eeadaad16328e","8f44c0b1a081895-17feec5ec7c4f3fa"]},"geometry":{"type":"LineString","coordinates":[[-83.643906,32.818122],[-83.644147,32.817901],[-83.64452700000001,32.817531]]},"id":"8944c0b1a0bffff-17d6fb9b6e7ec9e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0a1802-179eea6b652307b8","8f44c0b1a0ae982-179eeadaad16328e"]},"geometry":{"type":"LineString","coordinates":[[-83.64452700000001,32.817531],[-83.64457300000001,32.817469],[-83.644632,32.817366],[-83.644682,32.817254000000005],[-83.644705,32.817149]]},"id":"8944c0b1a0bffff-179fea99456ad078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644737,32.816409]},"id":"8f44c0b1a18b54a-13dfea5766a835e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a18b54a-13dfea5766a835e0","8f44c0b1a0a1802-179eea6b652307b8"]},"geometry":{"type":"LineString","coordinates":[[-83.644705,32.817149],[-83.644737,32.816409]]},"id":"8844c0b1a1fffff-17b6ea61692a209b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657347,32.851182]},"id":"8f44c0a351a5271-13b6cb8e28158789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351b2a48-13bfd0d06d967b3c","8f44c0a351a5271-13b6cb8e28158789"]},"geometry":{"type":"LineString","coordinates":[[-83.65519300000001,32.851174],[-83.657347,32.851182]]},"id":"8944c0a351bffff-13b6ce2f4c89e779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351a5271-13b6cb8e28158789","8f44c0a35110860-1396c96aa09113b6"]},"geometry":{"type":"LineString","coordinates":[[-83.657347,32.851182],[-83.658223,32.851098]]},"id":"8844c0a351fffff-139eca7c68d80c9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659957,32.850895]},"id":"8f44c0a35123760-1797e52eed99c9d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35123760-1797e52eed99c9d2","8f44c0a35110860-1396c96aa09113b6"]},"geometry":{"type":"LineString","coordinates":[[-83.658223,32.851098],[-83.659957,32.850895]]},"id":"8944c0a3513ffff-17d6d74cca45afae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66124400000001,32.850827]},"id":"8f44c0a358d3c5b-17d6e20a8de10939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35123760-1797e52eed99c9d2","8f44c0a358d3c5b-17d6e20a8de10939"]},"geometry":{"type":"LineString","coordinates":[[-83.659957,32.850895],[-83.660319,32.850861],[-83.66071500000001,32.850836],[-83.66124400000001,32.850827]]},"id":"8744c0a35ffffff-17f7e39d1cdf8f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a358c2acb-17dfff25ed779808","8f44c0a358d3c5b-17d6e20a8de10939"]},"geometry":{"type":"LineString","coordinates":[[-83.66124400000001,32.850827],[-83.662429,32.850806]]},"id":"8944c0a358fffff-17d6d09832457696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33ce519a-13f79a0f0ae8fdd2","8f44c0a33cf5270-13bf9ccce5ed5f59"]},"geometry":{"type":"LineString","coordinates":[[-83.624069,32.875124],[-83.624452,32.875054],[-83.624616,32.875034],[-83.62487,32.87502],[-83.625192,32.875036]]},"id":"8944c0a33cfffff-13fffb6f3c61e783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626468,32.875508]},"id":"8f44c0a33c5189a-139f96f18be1bbdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33ce519a-13f79a0f0ae8fdd2","8f44c0a33c5189a-139f96f18be1bbdb"]},"geometry":{"type":"LineString","coordinates":[[-83.625192,32.875036],[-83.625597,32.875065],[-83.62583500000001,32.875104],[-83.626016,32.875165],[-83.62623,32.875284],[-83.626361,32.875391],[-83.626468,32.875508]]},"id":"8844c0a33dfffff-13dfb866fe3a98df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695124,32.838817]},"id":"8f44c0b19248cab-1396ef538f00c612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19248cab-1396ef538f00c612","8f44c0b19241903-13966f4deb6374be"]},"geometry":{"type":"LineString","coordinates":[[-83.695124,32.838817],[-83.695133,32.837997]]},"id":"8944c0b1927ffff-13966f50bec6f9a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69514500000001,32.837443]},"id":"8f44c0b19263630-17bfef4667ce6813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19241903-13966f4deb6374be","8f44c0b19263630-17bfef4667ce6813"]},"geometry":{"type":"LineString","coordinates":[[-83.695133,32.837997],[-83.69514500000001,32.837443]]},"id":"8944c0b1927ffff-17d76f4a247a234d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1926632d-17bf6f3bc387200e","8f44c0b19263630-17bfef4667ce6813"]},"geometry":{"type":"LineString","coordinates":[[-83.69514500000001,32.837443],[-83.69516200000001,32.836655]]},"id":"8a44c0b19267fff-17b7ef4119b84595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1926632d-17bf6f3bc387200e","8f44c0b1935938e-13d66f330e3039c2"]},"geometry":{"type":"LineString","coordinates":[[-83.69516200000001,32.836655],[-83.695176,32.836253]]},"id":"8844c0b193fffff-17bfef376c957dd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695126,32.835909]},"id":"8f44c0b1935d6dc-13ff6f524139f9f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1935938e-13d66f330e3039c2","8f44c0b1935d6dc-13ff6f524139f9f4"]},"geometry":{"type":"LineString","coordinates":[[-83.695176,32.836253],[-83.695126,32.835909]]},"id":"8b44c0b19359fff-13d6ef42a1aa954c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702933,32.809395]},"id":"8f44c0b1dae4698-13bffc42e49eb667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dae0d21-13d67c35cc92f2a3","8f44c0b1dae4698-13bffc42e49eb667"]},"geometry":{"type":"LineString","coordinates":[[-83.702933,32.809395],[-83.702954,32.809421]]},"id":"8a44c0b1dae7fff-13be5c3c518652ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dae0d21-13d67c35cc92f2a3","8f44c0b1dae4698-13bffc42e49eb667"]},"geometry":{"type":"LineString","coordinates":[[-83.702954,32.809421],[-83.70300200000001,32.809437],[-83.703058,32.809427],[-83.70310400000001,32.809407],[-83.703118,32.809372],[-83.70311000000001,32.809334],[-83.70308700000001,32.809303],[-83.703057,32.809291],[-83.703018,32.809286],[-83.702973,32.809297],[-83.70295,32.809313],[-83.702937,32.80934],[-83.702931,32.809365],[-83.702933,32.809395]]},"id":"8a44c0b1dae7fff-139f7c07874e3d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59772500000001,32.864462]},"id":"8f44c0a324908eb-13b7dd1de1178d84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a324908eb-13b7dd1de1178d84","8f44c0b89bb5d16-17df64f4c153af39"]},"geometry":{"type":"LineString","coordinates":[[-83.59772500000001,32.864462],[-83.59643000000001,32.865155],[-83.59585200000001,32.865471],[-83.595701,32.865581],[-83.595572,32.865707],[-83.594841,32.866607],[-83.594514,32.866992]]},"id":"8744c0b89ffffff-13df61570efa2b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59395500000001,32.867469]},"id":"8f44c0b89bb0686-17ff6652219e493a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89bb0686-17ff6652219e493a","8f44c0b89bb5d16-17df64f4c153af39"]},"geometry":{"type":"LineString","coordinates":[[-83.594514,32.866992],[-83.59421800000001,32.867251],[-83.59395500000001,32.867469]]},"id":"8a44c0b89bb7fff-17f765a27d97885b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59226600000001,32.869661]},"id":"8f44c0b8914c94e-17d76a71cc1edb19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8914c94e-17d76a71cc1edb19","8f44c0b89bb0686-17ff6652219e493a"]},"geometry":{"type":"LineString","coordinates":[[-83.59395500000001,32.867469],[-83.59360600000001,32.867826],[-83.593326,32.868104],[-83.593269,32.868174],[-83.59283900000001,32.868963],[-83.59274400000001,32.869114],[-83.59265500000001,32.869239],[-83.59263200000001,32.869266],[-83.592526,32.869387],[-83.59226600000001,32.869661]]},"id":"8744c0b89ffffff-139ff86d6a8b8d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8914c94e-17d76a71cc1edb19","8f44c0b8914e149-17f7ebd6a88f374d"]},"geometry":{"type":"LineString","coordinates":[[-83.59226600000001,32.869661],[-83.591695,32.869915]]},"id":"8944c0b8917ffff-17b7eb243d4c4c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8915adae-17bf6fd703759737","8f44c0b8914e149-17f7ebd6a88f374d"]},"geometry":{"type":"LineString","coordinates":[[-83.591695,32.869915],[-83.59125900000001,32.869987],[-83.591065,32.870002],[-83.590593,32.870007],[-83.590241,32.870015],[-83.590056,32.87001]]},"id":"8944c0b8917ffff-17b7edd578333114"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8915adae-17bf6fd703759737","8f44c0b8902d350-17bff01ee7ac28e0"]},"geometry":{"type":"LineString","coordinates":[[-83.590056,32.87001],[-83.58994100000001,32.87003]]},"id":"8944c0b8917ffff-17b7effaf8064851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8902d350-17bff01ee7ac28e0","8f44c0b89005b51-179f731466243a64"]},"geometry":{"type":"LineString","coordinates":[[-83.58994100000001,32.87003],[-83.589709,32.870013],[-83.589554,32.869992],[-83.589371,32.869947],[-83.588918,32.869827],[-83.588729,32.869783000000005]]},"id":"8a44c0b8902ffff-17ff719bb7366585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89015749-17bf76e7277c50bf","8f44c0b89005b51-179f731466243a64"]},"geometry":{"type":"LineString","coordinates":[[-83.588729,32.869783000000005],[-83.587428,32.869833],[-83.58735700000001,32.869829],[-83.587163,32.869808]]},"id":"8944c0b8903ffff-17bf74fe1c65b2a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76700720000001,32.818105800000005]},"id":"8f44c0b0d36559b-17f5bfd48ec91fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d361360-13f5ff138376cac3","8f44c0b0d36559b-17f5bfd48ec91fba"]},"geometry":{"type":"LineString","coordinates":[[-83.76700720000001,32.818105800000005],[-83.76709000000001,32.818244],[-83.767172,32.818433],[-83.76731600000001,32.818691]]},"id":"8a44c0b0d367fff-13bfbf74293f48d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d361360-13f5ff138376cac3","8f44c0b72d9d46c-139dfac96ca16df2"]},"geometry":{"type":"LineString","coordinates":[[-83.76731600000001,32.818691],[-83.767347,32.818736],[-83.767525,32.818952],[-83.767652,32.81907],[-83.76787,32.819239],[-83.767989,32.819314],[-83.76809,32.819361],[-83.76819900000001,32.819398],[-83.768327,32.819429],[-83.768381,32.819437],[-83.76849700000001,32.819446],[-83.76863200000001,32.819443],[-83.768782,32.819425],[-83.769073,32.819367]]},"id":"8444c0bffffffff-13b5bd1d83b9f1ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62547210000001,32.8551294]},"id":"8f44c0a3051410b-13d7f95ffc026e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3051410b-13d7f95ffc026e23","8f44c0a3625556e-179f7ef10e9fbb8f"]},"geometry":{"type":"LineString","coordinates":[[-83.623192,32.853167],[-83.624223,32.854039],[-83.62547210000001,32.8551294]]},"id":"8644c0a37ffffff-17fffc262deb632e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62698400000001,32.856819]},"id":"8f44c0a3050ab24-17f7f5af086f31ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3051410b-13d7f95ffc026e23","8f44c0a3050ab24-17f7f5af086f31ff"]},"geometry":{"type":"LineString","coordinates":[[-83.62547210000001,32.8551294],[-83.626356,32.855901],[-83.626631,32.856229],[-83.62698400000001,32.856819]]},"id":"8944c0a3053ffff-13d7b76044dec141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627334,32.857435]},"id":"8f44c0a30556c88-17fff4d443e83278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30556c88-17fff4d443e83278","8f44c0a3050ab24-17f7f5af086f31ff"]},"geometry":{"type":"LineString","coordinates":[[-83.62698400000001,32.856819],[-83.62709530000001,32.857015000000004],[-83.627334,32.857435]]},"id":"8844c0a305fffff-17bf7541ae98ebe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.560986,32.86818]},"id":"8f44c0b8bc0c700-13b7b6cfc0d29532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc0c700-13b7b6cfc0d29532","8f44c0b8bcd5d2e-17bfbc922ae78201"]},"geometry":{"type":"LineString","coordinates":[[-83.560986,32.86818],[-83.559835,32.869098],[-83.55876900000001,32.869928],[-83.558627,32.870032]]},"id":"8844c0b8bdfffff-13ffb9ae52f642a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55658000000001,32.869189]},"id":"8f44c0b8bc9d6b1-17bfe1918249d59e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc9d6b1-17bfe1918249d59e","8f44c0b8bcd5d2e-17bfbc922ae78201"]},"geometry":{"type":"LineString","coordinates":[[-83.558627,32.870032],[-83.558473,32.870148],[-83.55838100000001,32.870204],[-83.55826300000001,32.870246],[-83.558183,32.870255],[-83.558091,32.870251],[-83.55799900000001,32.87023],[-83.55792100000001,32.870202],[-83.55780100000001,32.870139],[-83.55658000000001,32.869189]]},"id":"8844c0b8bdfffff-17dfbf245c589422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.556301,32.868969]},"id":"8f44c0b8bc98996-13b7e23fe7b5b1da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc9d6b1-17bfe1918249d59e","8f44c0b8bc98996-13b7e23fe7b5b1da"]},"geometry":{"type":"LineString","coordinates":[[-83.55658000000001,32.869189],[-83.556301,32.868969]]},"id":"8a44c0b8bc9ffff-13f7e1e8b1c85762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64593400000001,32.799236]},"id":"8f44c0b1e7a46a6-13f6e76b435b7466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7a46a6-13f6e76b435b7466","8f44c0b1e4cd18e-13bfecad84493330"]},"geometry":{"type":"LineString","coordinates":[[-83.64378,32.79918],[-83.645059,32.799219],[-83.64593400000001,32.799236]]},"id":"8744c0b1effffff-13d6fa0c76ca1b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7a46a6-13f6e76b435b7466","8f44c0b1e71445c-13f7e425cc2ffd4a"]},"geometry":{"type":"LineString","coordinates":[[-83.64593400000001,32.799236],[-83.64691,32.799262],[-83.64727400000001,32.799263]]},"id":"8844c0b1e7fffff-13fef5c8815da4f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e71445c-13f7e425cc2ffd4a","8f44c0b1e723a41-139edece46155aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.64727400000001,32.799263],[-83.649462,32.799306]]},"id":"8944c0b1e73ffff-1396f17a0ba9110c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652012,32.799357]},"id":"8f44c0b1e0c3863-13bef89489bb1c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e723a41-139edece46155aa6","8f44c0b1e0c3863-13bef89489bb1c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.649462,32.799306],[-83.652012,32.799357]]},"id":"8744c0b1effffff-139efbb16fdf7bec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6735,32.863103]},"id":"8f44c0a22c29cc2-17dfe41e8ac6681c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c29cc2-17dfe41e8ac6681c","8f44c0a22c29dae-1796e4242d093079"]},"geometry":{"type":"LineString","coordinates":[[-83.6735,32.863103],[-83.673491,32.862983]]},"id":"8c44c0a22c29dff-17bfe4215a4a47b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c29cc2-17dfe41e8ac6681c","8f44c0a22c29dae-1796e4242d093079"]},"geometry":{"type":"LineString","coordinates":[[-83.673491,32.862983],[-83.67366200000001,32.862999],[-83.67432000000001,32.863011],[-83.674791,32.863028],[-83.675089,32.863033],[-83.67525400000001,32.86303],[-83.67534900000001,32.863023000000005],[-83.675414,32.863034],[-83.675461,32.863031],[-83.67549100000001,32.863048],[-83.67554700000001,32.863115],[-83.675526,32.863838],[-83.67543,32.863925],[-83.675292,32.863936],[-83.674929,32.863956],[-83.674695,32.86393],[-83.67437100000001,32.863822],[-83.673979,32.863613],[-83.67359900000001,32.863345],[-83.673553,32.863252],[-83.67352500000001,32.863182],[-83.6735,32.863103]]},"id":"8844c0a22dfffff-179eb15f095e34b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666977,32.837445]},"id":"8f44c0b1b3a085a-17bfb40b64aa63fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66701,32.836167]},"id":"8f44c0b1b04e434-139ef3f6c90bcfda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b04e434-139ef3f6c90bcfda","8f44c0b1b3a085a-17bfb40b64aa63fc"]},"geometry":{"type":"LineString","coordinates":[[-83.666977,32.837445],[-83.666983,32.837151],[-83.66699600000001,32.836838],[-83.66701,32.836167]]},"id":"8744c0b1bffffff-179ff4008e28dfd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b04e434-139ef3f6c90bcfda","8f44c0b1b04006e-13feb3e3691da109"]},"geometry":{"type":"LineString","coordinates":[[-83.66701,32.836167],[-83.66704100000001,32.835504]]},"id":"8944c0b1b07ffff-13bfb3ed1dfd9c58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66706,32.834896]},"id":"8f44c0b1b044c66-13f6b3d785dfc7a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b044c66-13f6b3d785dfc7a4","8f44c0b1b04006e-13feb3e3691da109"]},"geometry":{"type":"LineString","coordinates":[[-83.66704100000001,32.835504],[-83.66706,32.834896]]},"id":"8a44c0b1b047fff-13b6b3dd79627f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b044c66-13f6b3d785dfc7a4","8f44c0b1b075b56-17f6b3ccea63d166"]},"geometry":{"type":"LineString","coordinates":[[-83.66706,32.834896],[-83.667077,32.834257]]},"id":"8944c0b1b07ffff-17bef3d238732b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667097,32.83363]},"id":"8f44c0b1b15b904-17def3c06685ba1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b075b56-17f6b3ccea63d166","8f44c0b1b15b904-17def3c06685ba1a"]},"geometry":{"type":"LineString","coordinates":[[-83.667077,32.834257],[-83.667097,32.83363]]},"id":"8844c0b1b1fffff-179eb3c6a2b16221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66714400000001,32.832364000000005]},"id":"8f44c0b1b15534c-13d7b3a30482b1bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b15534c-13d7b3a30482b1bc","8f44c0b1b15b904-17def3c06685ba1a"]},"geometry":{"type":"LineString","coordinates":[[-83.667097,32.83363],[-83.66714400000001,32.832364000000005]]},"id":"8944c0b1b17ffff-13dfb3b1bf5425f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66712100000001,32.8309]},"id":"8f44c0b1b174412-17b6b3b162e2e27e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b15534c-13d7b3a30482b1bc","8f44c0b1b174412-17b6b3b162e2e27e"]},"geometry":{"type":"LineString","coordinates":[[-83.66714400000001,32.832364000000005],[-83.66715900000001,32.831469000000006],[-83.66712100000001,32.8309]]},"id":"8944c0b1b17ffff-13fff3a125fb9d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc73cc5-17f6d03a31088f31","8f44c0b1bc0975c-17f7e22ce4f08349"]},"geometry":{"type":"LineString","coordinates":[[-83.66118900000001,32.827123],[-83.6619869,32.827117300000005]]},"id":"8944c0b1bc7ffff-17f6d1338073ed33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662722,32.827112]},"id":"8f44c0b1bc71a14-17f7be6ec266a4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc73cc5-17f6d03a31088f31","8f44c0b1bc71a14-17f7be6ec266a4a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6619869,32.827117300000005],[-83.662722,32.827112]]},"id":"8a44c0b1bc77fff-17f6bf547e5fefbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b190ca4b1-13d7c3376d5973a6","8f44c0b190c02ca-179e82b10ce14ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.686977,32.832182],[-83.68705100000001,32.831642],[-83.68719200000001,32.831252]]},"id":"8944c0b190fffff-13bff30334497d82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b190e499d-139ec0b127625ec5","8f44c0b190c02ca-179e82b10ce14ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.68719200000001,32.831252],[-83.68752400000001,32.83053],[-83.68764200000001,32.830264],[-83.688011,32.829434]]},"id":"8844c0b191fffff-17d7a1af559c8fd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688467,32.828395]},"id":"8f44c0b19001ad3-1396ff94205ff6e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b190e499d-139ec0b127625ec5","8f44c0b19001ad3-1396ff94205ff6e8"]},"geometry":{"type":"LineString","coordinates":[[-83.688011,32.829434],[-83.688467,32.828395]]},"id":"8944c0b1903ffff-13d79022a5748b82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b19001ad3-1396ff94205ff6e8","8f44c0b1910b9a1-13fe7d63b3cd646a"]},"geometry":{"type":"LineString","coordinates":[[-83.688467,32.828395],[-83.6893637,32.8262791]]},"id":"8844c0b191fffff-17fffe7bf075d849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1910cb92-13b7fcbdecc677c7","8f44c0b1910b9a1-13fe7d63b3cd646a"]},"geometry":{"type":"LineString","coordinates":[[-83.6893637,32.8262791],[-83.689482,32.826],[-83.68962900000001,32.825577]]},"id":"8a44c0b1910ffff-139e7d0d4b332fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1912e674-1396fc8a0b35ec35","8f44c0b1910cb92-13b7fcbdecc677c7"]},"geometry":{"type":"LineString","coordinates":[[-83.68962900000001,32.825577],[-83.68969100000001,32.825257],[-83.689712,32.824894]]},"id":"8944c0b1913ffff-13df7c9cdb5f872a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1912e674-1396fc8a0b35ec35","8f44c0b19121cad-17d6fc62a6e2f53d"]},"geometry":{"type":"LineString","coordinates":[[-83.689712,32.824894],[-83.68977500000001,32.824171]]},"id":"8944c0b1913ffff-17b6fc765be4a67b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b19124b8b-17d7fc5080e06c98","8f44c0b19121cad-17d6fc62a6e2f53d"]},"geometry":{"type":"LineString","coordinates":[[-83.68977500000001,32.824171],[-83.68980400000001,32.823555]]},"id":"8a44c0b19127fff-17967c599dfe8f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6895216,32.82162]},"id":"8f44c0b19886a2d-139efd010f9664ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b19124b8b-17d7fc5080e06c98","8f44c0b19886a2d-139efd010f9664ec"]},"geometry":{"type":"LineString","coordinates":[[-83.68980400000001,32.823555],[-83.689824,32.823251],[-83.689824,32.822983],[-83.689819,32.822814],[-83.68979900000001,32.822635000000005],[-83.68974800000001,32.822378],[-83.689701,32.822196000000005],[-83.6895216,32.82162]]},"id":"8944c0b198bffff-13defc78b0beb683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6336258,32.837505400000005]},"id":"8f44c0a3442d8cc-17d7e577e20663ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3442d8cc-17d7e577e20663ac","8f44c0a345420a8-17ffa32b0ba8d04c"]},"geometry":{"type":"LineString","coordinates":[[-83.6336258,32.837505400000005],[-83.63386700000001,32.837455],[-83.63393500000001,32.837446],[-83.634029,32.837423],[-83.634074,32.837392],[-83.63413100000001,32.837335],[-83.63439100000001,32.837017],[-83.634482,32.836962],[-83.634568,32.836937]]},"id":"8944c0a3457ffff-17bfb441cfc3472d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a345420a8-17ffa32b0ba8d04c","8f44c0a3454215d-17f722ed2f10e5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.634568,32.836937],[-83.63466700000001,32.836925]]},"id":"8c44c0a345421ff-17ffe30c18a292cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34544194-13ff21c8a23465eb","8f44c0a3454215d-17f722ed2f10e5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.63466700000001,32.836925],[-83.634783,32.836762],[-83.635135,32.836325]]},"id":"8a44c0a34547fff-17bff25d11967b52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52674ae9-17dea6c90a5d49ef","8f44c0b52292969-13be41caeeac42c4"]},"geometry":{"type":"LineString","coordinates":[[-83.737944,32.883601],[-83.73803600000001,32.883721],[-83.73815300000001,32.883844],[-83.73825400000001,32.883927],[-83.738341,32.883978],[-83.738438,32.884013],[-83.738663,32.884065],[-83.73936400000001,32.884166],[-83.739497,32.884174],[-83.73998900000001,32.884138]]},"id":"8844c0b527fffff-13ff147170468af4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7404454,32.8846249]},"id":"8f44c0b5229179b-13de90ada0243e3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5229179b-13de90ada0243e3b","8f44c0b52292969-13be41caeeac42c4"]},"geometry":{"type":"LineString","coordinates":[[-83.73998900000001,32.884138],[-83.740217,32.884377],[-83.7404454,32.8846249]]},"id":"8a44c0b52297fff-13d7d13b94e8c76b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed518e3-1397fd0883ec76f1","8f44c0b0ec6341e-13d67c0ac0c5388f"]},"geometry":{"type":"LineString","coordinates":[[-83.71613,32.795735],[-83.71646000000001,32.795648],[-83.71658000000001,32.795583],[-83.71664700000001,32.795524],[-83.71674300000001,32.795409],[-83.716802,32.795296],[-83.71683300000001,32.795157],[-83.716831,32.795064],[-83.71678700000001,32.79493],[-83.716673,32.794663],[-83.71664,32.794576],[-83.716589,32.794359],[-83.716587,32.794262],[-83.71659500000001,32.79414],[-83.716623,32.794002],[-83.71668100000001,32.793793],[-83.716685,32.793697],[-83.716668,32.793622],[-83.716623,32.793537],[-83.716565,32.793467],[-83.71648900000001,32.793415],[-83.71637600000001,32.793365],[-83.71622,32.793343],[-83.716081,32.793352],[-83.71593,32.793377],[-83.71572400000001,32.793379]]},"id":"8844c0b0edfffff-179e3b1a213094b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714454,32.793488]},"id":"8f44c0b0ec21346-13de40224febf6e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed518e3-1397fd0883ec76f1","8f44c0b0ec21346-13de40224febf6e1"]},"geometry":{"type":"LineString","coordinates":[[-83.71572400000001,32.793379],[-83.71548100000001,32.793353],[-83.715317,32.793353],[-83.715185,32.793369000000006],[-83.71487,32.793436],[-83.71471000000001,32.793461],[-83.714454,32.793488]]},"id":"8844c0b0edfffff-13b67e95d167cd1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696712,32.838096]},"id":"8f44c0a24c9acc4-13d66b73018b36e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696725,32.837359]},"id":"8f44c0a24c9385d-17f76b6ae42862ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c9acc4-13d66b73018b36e8","8f44c0a24c9385d-17f76b6ae42862ee"]},"geometry":{"type":"LineString","coordinates":[[-83.696712,32.838096],[-83.696725,32.837359]]},"id":"8944c0a24cbffff-17dffb6efcabd694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c9385d-17f76b6ae42862ee","8f44c0a24cb269d-13fe6b546c7378c5"]},"geometry":{"type":"LineString","coordinates":[[-83.696725,32.837359],[-83.69676100000001,32.836314]]},"id":"8944c0a24cbffff-17befb5fa6971e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69678300000001,32.83495]},"id":"8f44c0b19368012-1397eb46aac07db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19368012-1397eb46aac07db4","8f44c0a24cb269d-13fe6b546c7378c5"]},"geometry":{"type":"LineString","coordinates":[[-83.69676100000001,32.836314],[-83.69678300000001,32.83495]]},"id":"8644c0a27ffffff-13be6b4d89972c9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62457400000001,32.848204]},"id":"8f44c0a36adad24-13ff9b914d0716e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62472860000001,32.8486015]},"id":"8f44c0a36ada22e-13f7fb30a8ec1e86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36adad24-13ff9b914d0716e4","8f44c0a36ada22e-13f7fb30a8ec1e86"]},"geometry":{"type":"LineString","coordinates":[[-83.62457400000001,32.848204],[-83.62472860000001,32.8486015]]},"id":"8b44c0a36adafff-13ffdb60f5302bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655699,32.806306]},"id":"8f44c0b1e2c6095-13b7cf942a3a734d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65621200000001,32.806362]},"id":"8f44c0b1e2c4671-13dece538e2dec87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2c4671-13dece538e2dec87","8f44c0b1e2c6095-13b7cf942a3a734d"]},"geometry":{"type":"LineString","coordinates":[[-83.655699,32.806306],[-83.655837,32.806317],[-83.65621200000001,32.806362]]},"id":"8a44c0b1e2c7fff-13b7cef3bc2c6c3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656841,32.806375]},"id":"8f44c0b1e2ee59a-13d6ecca6e5673ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2ee59a-13d6ecca6e5673ab","8f44c0b1e2c4671-13dece538e2dec87"]},"geometry":{"type":"LineString","coordinates":[[-83.65621200000001,32.806362],[-83.656799,32.806374000000005],[-83.656841,32.806375]]},"id":"8944c0b1e2fffff-13decd8efea9a730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657448,32.852533]},"id":"8f44c0a351a9488-1397eb4f02d9304f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351198ed-139ee73143a4a1ad","8f44c0a351a9488-1397eb4f02d9304f"]},"geometry":{"type":"LineString","coordinates":[[-83.657448,32.852533],[-83.65913400000001,32.852551000000005]]},"id":"8844c0a351fffff-1396c94028c5ea54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66020800000001,32.852522]},"id":"8f44c0a35109da0-13fec49204a865d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35109da0-13fec49204a865d5","8f44c0a351198ed-139ee73143a4a1ad"]},"geometry":{"type":"LineString","coordinates":[[-83.65913400000001,32.852551000000005],[-83.65966900000001,32.852562],[-83.660032,32.852552],[-83.66020800000001,32.852522]]},"id":"8944c0a3513ffff-139fe5e0f580e11f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71754700000001,32.81846]},"id":"8f44c0b0a853c72-13d7b8952a307e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718907,32.818463]},"id":"8f44c0b0a8406d5-13d7754327bf0841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a8406d5-13d7754327bf0841","8f44c0b0a853c72-13d7b8952a307e06"]},"geometry":{"type":"LineString","coordinates":[[-83.71754700000001,32.81846],[-83.718907,32.818463]]},"id":"8944c0b0a87ffff-13d676ec262b97a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a8406d5-13d7754327bf0841","8f44c0b0a86871d-13def1ed617acab6"]},"geometry":{"type":"LineString","coordinates":[[-83.718907,32.818463],[-83.720273,32.818478]]},"id":"8944c0b0a87ffff-13de3398468d67ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a86871d-13def1ed617acab6","8f44c0b084980a0-13f6ee9b62800dc7"]},"geometry":{"type":"LineString","coordinates":[[-83.720273,32.818478],[-83.720967,32.818494],[-83.72163300000001,32.818491]]},"id":"8744c0b0affffff-13f7f04464d44af3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68961,32.739993000000005]},"id":"8f44c0b0699e011-13bffcc9ccfbb4df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b068868c3-17977cdbe4f1499c","8f44c0b0699e011-13bffcc9ccfbb4df"]},"geometry":{"type":"LineString","coordinates":[[-83.68961,32.739993000000005],[-83.689581,32.741976]]},"id":"8844c0b069fffff-13bf7cd2dd05ad96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b068868c3-17977cdbe4f1499c","8f44c0b0612001c-1396fc85ae42fc07"]},"geometry":{"type":"LineString","coordinates":[[-83.689581,32.741976],[-83.689577,32.742272],[-83.68957900000001,32.743307],[-83.68958400000001,32.743437],[-83.68959600000001,32.743585],[-83.689616,32.743743],[-83.68962,32.743862],[-83.689655,32.744273],[-83.689676,32.744355],[-83.68971900000001,32.744433]]},"id":"8744c0b06ffffff-139f7cd00902a0ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7937491,32.7586016]},"id":"8f44c0b2d892110-17bf7e8ada6bb3f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2d892110-17bf7e8ada6bb3f4","8f44c0b28a1aab5-1795e3c1cb108d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7937491,32.7586016],[-83.7937297,32.7587478],[-83.79369940000001,32.7589567],[-83.7936718,32.759198000000005],[-83.79366350000001,32.7594556],[-83.7936718,32.7596645],[-83.7936828,32.7601332],[-83.79368840000001,32.7604442],[-83.7936497,32.760783],[-83.7936258,32.7608763],[-83.7935925,32.7609676],[-83.7935501,32.7610562],[-83.7934989,32.7611415],[-83.7934374,32.761225100000004],[-83.79336740000001,32.7613039],[-83.7932895,32.7613773],[-83.7932042,32.761444600000004],[-83.7931123,32.761505400000004],[-83.7930144,32.7615592],[-83.7929112,32.7616056],[-83.79280370000001,32.7616442],[-83.7926925,32.7616748],[-83.78912100000001,32.762696000000005],[-83.788509,32.762881],[-83.788178,32.762991],[-83.787881,32.763104000000006],[-83.78752800000001,32.763261],[-83.787143,32.763463],[-83.78678000000001,32.763685],[-83.78667200000001,32.763759],[-83.786428,32.763942],[-83.78617,32.764141],[-83.785606,32.764604],[-83.78502200000001,32.765082],[-83.784632,32.765403],[-83.78429200000001,32.765701],[-83.78394800000001,32.766019],[-83.78389,32.766077],[-83.78333900000001,32.766633],[-83.782657,32.767331],[-83.781412,32.768648],[-83.779543,32.770713],[-83.77850600000001,32.771842]]},"id":"8644c0b2fffffff-17b590662a4a4b56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.771129,32.778848]},"id":"8f44c0b282833ad-179db5c46ad8a894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b282833ad-179db5c46ad8a894","8f44c0b28a1aab5-1795e3c1cb108d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.77850600000001,32.771842],[-83.778277,32.772039],[-83.777297,32.772764],[-83.77624700000001,32.773527],[-83.77600500000001,32.773698],[-83.775739,32.773871],[-83.77531400000001,32.77412],[-83.774162,32.774751],[-83.773971,32.774862],[-83.773725,32.775033],[-83.773554,32.775176],[-83.773346,32.775388],[-83.77314600000001,32.775641],[-83.772999,32.775866],[-83.771288,32.778608000000006],[-83.771129,32.778848]]},"id":"8744c0b28ffffff-17d7fd9a52fd4988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b911906-17b7f9ca6041ed35","8f44c0b282833ad-179db5c46ad8a894"]},"geometry":{"type":"LineString","coordinates":[[-83.771129,32.778848],[-83.771057,32.778962],[-83.770807,32.779308],[-83.769833,32.78054],[-83.76968600000001,32.780754],[-83.769592,32.780932],[-83.769513,32.78116],[-83.769481,32.781343]]},"id":"8644c0b2fffffff-1397b7f2d2892fdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b7367ac-13bdf305cadfb4a4","8f44c0b2b911906-17b7f9ca6041ed35"]},"geometry":{"type":"LineString","coordinates":[[-83.769481,32.781343],[-83.769467,32.781449],[-83.769463,32.781599],[-83.76947700000001,32.781747],[-83.769497,32.781857],[-83.76960700000001,32.782214],[-83.769979,32.783257],[-83.770076,32.783546],[-83.770131,32.783732],[-83.77024200000001,32.784157],[-83.77031600000001,32.784474],[-83.770339,32.784742],[-83.770331,32.784945],[-83.770308,32.785117],[-83.77023100000001,32.785384],[-83.77016900000001,32.785525],[-83.770121,32.785608],[-83.770049,32.785733],[-83.769924,32.785907],[-83.769847,32.785998],[-83.769687,32.78615],[-83.769585,32.786231],[-83.767516,32.78768],[-83.767076,32.787976],[-83.76664000000001,32.78826],[-83.76614500000001,32.788566],[-83.764151,32.789727],[-83.76388,32.789879],[-83.763754,32.789955],[-83.763225,32.790263],[-83.762848,32.790515],[-83.76277400000001,32.790571],[-83.76254,32.790762],[-83.76231700000001,32.790951],[-83.759815,32.79311],[-83.759583,32.793303],[-83.759404,32.793444],[-83.759146,32.793613]]},"id":"8744c0b2bffffff-17b7c27623f889cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b7367ac-13bdf305cadfb4a4","8f44c0b2b44b548-1795f59cefca0566"]},"geometry":{"type":"LineString","coordinates":[[-83.759146,32.793613],[-83.758905,32.793768],[-83.758629,32.79392],[-83.758318,32.794079],[-83.75808500000001,32.794165]]},"id":"8944c0b2b47ffff-17f5f44aaa8989e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.589003,32.849202000000005]},"id":"8f44c0b8d0962e6-13df72692288cf31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d0962e6-13df72692288cf31","8f44c0b8d46988a-17b772836bbca44a"]},"geometry":{"type":"LineString","coordinates":[[-83.589003,32.849202000000005],[-83.588975,32.849406],[-83.588965,32.850056],[-83.588941,32.850293],[-83.58896100000001,32.850535]]},"id":"8844c0b8d5fffff-17fff28001efb7b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58869,32.852252]},"id":"8f44c0b8d7154ac-13d7f32cc08c237c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d7154ac-13d7f32cc08c237c","8f44c0b8d46988a-17b772836bbca44a"]},"geometry":{"type":"LineString","coordinates":[[-83.58896100000001,32.850535],[-83.588931,32.851326],[-83.58890000000001,32.851573],[-83.58869,32.852252]]},"id":"8744c0b8dffffff-13bff2b5c70539ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72383400000001,32.903889]},"id":"8f44c0a2ea64c72-13f6a93bc19013ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea64c72-13f6a93bc19013ed","8f44c0a2ea603a3-13fee9452857f174"]},"geometry":{"type":"LineString","coordinates":[[-83.72383400000001,32.903889],[-83.723819,32.904539]]},"id":"8a44c0a2ea67fff-13bfe9407e3cd59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea603a3-13fee9452857f174","8f44c0a2ea6ad49-17df29196c31ec39"]},"geometry":{"type":"LineString","coordinates":[[-83.723819,32.904539],[-83.723815,32.905248],[-83.72382,32.905276],[-83.72383400000001,32.905363],[-83.723858,32.90543],[-83.723889,32.905493]]},"id":"8944c0a2ea7ffff-13b66941e6fff291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72418300000001,32.905867]},"id":"8f44c0a2ea6bced-17b6e861a6936e8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea6bced-17b6e861a6936e8a","8f44c0a2ea6ad49-17df29196c31ec39"]},"geometry":{"type":"LineString","coordinates":[[-83.723889,32.905493],[-83.723933,32.905607],[-83.72399800000001,32.90569],[-83.72408200000001,32.905776],[-83.72418300000001,32.905867]]},"id":"8a44c0a2ea6ffff-17de68c948987ff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea6bced-17b6e861a6936e8a","8f44c0a28d10b04-13d667ba2c83aff5"]},"geometry":{"type":"LineString","coordinates":[[-83.72418300000001,32.905867],[-83.72452700000001,32.906173],[-83.72466800000001,32.906357],[-83.72474700000001,32.906512],[-83.724795,32.906663],[-83.72481300000001,32.906802],[-83.724807,32.906956],[-83.724771,32.907103],[-83.724721,32.907221],[-83.724642,32.907331],[-83.724562,32.907431],[-83.724451,32.90753]]},"id":"8644c0a2fffffff-17be67513d34816c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d10b04-13d667ba2c83aff5","8f44c0a28da1181-13d62aac846ad7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.724451,32.90753],[-83.72434600000001,32.907609],[-83.72420600000001,32.907696],[-83.724056,32.90776],[-83.723928,32.907801],[-83.72380000000001,32.907826],[-83.72365500000001,32.907832],[-83.72351,32.90782],[-83.723448,32.907815],[-83.72324400000001,32.90776]]},"id":"8844c0a28dfffff-13d7a926b0364c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721823,32.907441]},"id":"8f44c0a28db0a5a-139eae24a1be1225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28db0a5a-139eae24a1be1225","8f44c0a28da1181-13d62aac846ad7d4"]},"geometry":{"type":"LineString","coordinates":[[-83.72324400000001,32.90776],[-83.722972,32.907648],[-83.72264200000001,32.907522],[-83.72244900000001,32.907462],[-83.722267,32.907438],[-83.72212800000001,32.907431],[-83.721823,32.907441]]},"id":"8944c0a28dbffff-13deec60ab607ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75731180000001,32.885917]},"id":"8f44c0b53c63d6c-1797f7802fd5a41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7576398,32.8873124]},"id":"8f44c0b53c4ca76-13ffd6b32f5a7196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53c63d6c-1797f7802fd5a41b","8f44c0b53c4ca76-13ffd6b32f5a7196"]},"geometry":{"type":"LineString","coordinates":[[-83.75731180000001,32.885917],[-83.7572298,32.886120600000005],[-83.75716200000001,32.8863033],[-83.757137,32.886441000000005],[-83.75715840000001,32.8867315],[-83.75720840000001,32.8868932],[-83.7572904,32.8870339],[-83.7574687,32.8872106],[-83.7576398,32.8873124]]},"id":"8944c0b53c7ffff-17dff79a82c9e8b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53c4ca76-13ffd6b32f5a7196","8f44c0b5313694d-139dd4ba754a9cd7"]},"geometry":{"type":"LineString","coordinates":[[-83.7576398,32.8873124],[-83.7578395,32.887405300000005],[-83.7580535,32.887447200000004],[-83.75831380000001,32.8874292],[-83.7584473,32.8873673]]},"id":"8744c0b53ffffff-13b5f5b842963b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75894120000001,32.8861864]},"id":"8f44c0b53891786-17bfd385cc7cde1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53891786-17bfd385cc7cde1b","8f44c0b5313694d-139dd4ba754a9cd7"]},"geometry":{"type":"LineString","coordinates":[[-83.7584473,32.8873673],[-83.7586883,32.8872555],[-83.7588951,32.8871088],[-83.7591304,32.886680600000005],[-83.75911260000001,32.886482900000004],[-83.75894120000001,32.8861864]]},"id":"8744c0b53ffffff-17ddd394b700ee5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75868290000001,32.8857024]},"id":"8f44c0b538901b5-17fdd42738862671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53891786-17bfd385cc7cde1b","8f44c0b538901b5-17fdd42738862671"]},"geometry":{"type":"LineString","coordinates":[[-83.75894120000001,32.8861864],[-83.758756,32.885917],[-83.75869180000001,32.8857792],[-83.75868290000001,32.8857024]]},"id":"8a44c0b53897fff-179dd3e2f0cb0c2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53890d06-179ff4337e2defdd","8f44c0b538901b5-17fdd42738862671"]},"geometry":{"type":"LineString","coordinates":[[-83.75868290000001,32.8857024],[-83.75866330000001,32.885547]]},"id":"8b44c0b53890fff-17dff42d59f36269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76327400000001,32.885082600000004]},"id":"8f44c0b5380050d-13fde8f1cfc1c657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53805af2-13fff70a6e7674fb","8f44c0b5380050d-13fde8f1cfc1c657"]},"geometry":{"type":"LineString","coordinates":[[-83.7640538,32.8850931],[-83.76327400000001,32.885082600000004]]},"id":"8a44c0b53807fff-13fff7fe1b7b073c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53812ce9-13f7fd2362107f1a","8f44c0b5380050d-13fde8f1cfc1c657"]},"geometry":{"type":"LineString","coordinates":[[-83.76327400000001,32.885082600000004],[-83.7615562,32.8850551]]},"id":"8844c0b539fffff-13f5db0a90197b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53812ce9-13f7fd2362107f1a","8f44c0b53812510-13f5cd76caf0be3d"]},"geometry":{"type":"LineString","coordinates":[[-83.7615562,32.8850551],[-83.7614228,32.885051600000004]]},"id":"8b44c0b53812fff-13f7ed4d171b2d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76023070000001,32.8850417]},"id":"8f44c0b538a2083-13dfd05fd10b023a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53812510-13f5cd76caf0be3d","8f44c0b538a2083-13dfd05fd10b023a"]},"geometry":{"type":"LineString","coordinates":[[-83.7614228,32.885051600000004],[-83.76023070000001,32.8850417]]},"id":"8a44c0b538a7fff-13f7feeb46e24b90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b538b2362-13d5f3066e8ac726","8f44c0b538a2083-13dfd05fd10b023a"]},"geometry":{"type":"LineString","coordinates":[[-83.76023070000001,32.8850417],[-83.759145,32.8850271]]},"id":"8944c0b538bffff-13dfd1b32064c1b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d49a16-13d5f436913d0f6e","8f44c0b538b2362-13d5f3066e8ac726"]},"geometry":{"type":"LineString","coordinates":[[-83.759145,32.8850271],[-83.75865830000001,32.885020600000004]]},"id":"8944c0b538bffff-13d7f39e784a8c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b192c1481-13dff86926708f56","8f44c0a26974c24-17bffc0e42c40fe7"]},"geometry":{"type":"LineString","coordinates":[[-83.68991000000001,32.839926000000006],[-83.69025900000001,32.839698],[-83.691096,32.839137],[-83.69140300000001,32.838937]]},"id":"8644c0a27ffffff-1396fa3bb92cfbf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692428,32.838862]},"id":"8f44c0b192e86b3-13b6f5e88f03f496"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b192e86b3-13b6f5e88f03f496","8f44c0b192c1481-13dff86926708f56"]},"geometry":{"type":"LineString","coordinates":[[-83.69140300000001,32.838937],[-83.691595,32.838884],[-83.691688,32.838867],[-83.69198300000001,32.838859],[-83.692428,32.838862]]},"id":"8944c0b192fffff-13b7772aef835ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b192e86b3-13b6f5e88f03f496","8f44c0b192e9d54-13b674ae263851c5"]},"geometry":{"type":"LineString","coordinates":[[-83.692428,32.838862],[-83.692931,32.838861]]},"id":"8a44c0b192effff-13b6754b5652152f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b19248cab-1396ef538f00c612","8f44c0b192e9d54-13b674ae263851c5"]},"geometry":{"type":"LineString","coordinates":[[-83.692931,32.838861],[-83.694418,32.838867],[-83.694778,32.838861],[-83.695124,32.838817]]},"id":"8844c0b193fffff-139ff200169179ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b19248cab-1396ef538f00c612","8f44c0b1926b211-13f6ed60609e5ac3"]},"geometry":{"type":"LineString","coordinates":[[-83.695124,32.838817],[-83.695306,32.83878],[-83.69551700000001,32.838718],[-83.695735,32.838641],[-83.6959226,32.8385644]]},"id":"8944c0b1927ffff-13befe57244a0fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24c9acc4-13d66b73018b36e8","8f44c0b1926b211-13f6ed60609e5ac3"]},"geometry":{"type":"LineString","coordinates":[[-83.6959226,32.8385644],[-83.69599000000001,32.838527],[-83.696641,32.83814],[-83.696712,32.838096]]},"id":"8744c0a24ffffff-13d77c692711e654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24c9acc4-13d66b73018b36e8","8f44c0a24c85015-179ff7202fd7f5fa"]},"geometry":{"type":"LineString","coordinates":[[-83.696712,32.838096],[-83.697266,32.837753],[-83.69768300000001,32.837497],[-83.697879,32.837379],[-83.69796600000001,32.837327],[-83.69848300000001,32.8370077]]},"id":"8944c0a24cbffff-17fff949d24af2a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24ca1640-17d6e5c04e3d0743","8f44c0a24c85015-179ff7202fd7f5fa"]},"geometry":{"type":"LineString","coordinates":[[-83.69848300000001,32.8370077],[-83.69904600000001,32.83666]]},"id":"8944c0a24cbffff-17bf7670362cbf43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24ca1640-17d6e5c04e3d0743","8f44c0a24c1246b-17b7e4bc42a9afbe"]},"geometry":{"type":"LineString","coordinates":[[-83.69904600000001,32.83666],[-83.69946200000001,32.836412]]},"id":"8944c0a24cbffff-17f7653e42af8281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24c1246b-17b7e4bc42a9afbe","8f44c0a24c10c98-13ff63b0291bfbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.69946200000001,32.836412],[-83.699725,32.836244],[-83.69989100000001,32.836143]]},"id":"8a44c0a24c17fff-13d6e436a236f251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24c31c83-13f76108c496f1be","8f44c0a24c10c98-13ff63b0291bfbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.69989100000001,32.836143],[-83.70045400000001,32.835797],[-83.70075200000001,32.835616],[-83.700978,32.83549]]},"id":"8944c0a24c3ffff-13bef25df8913b5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154c87b4-13def12d8685ef4b","8f44c0b157b44dc-13ffedcb40a91886"]},"geometry":{"type":"LineString","coordinates":[[-83.65643,32.756681],[-83.656304,32.756749],[-83.65618400000001,32.756808],[-83.655939,32.756912],[-83.65581300000001,32.756956],[-83.655674,32.756994],[-83.655572,32.757005],[-83.655417,32.757008],[-83.655044,32.757005]]},"id":"8844c0b155fffff-1396cf7159d03bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154c87b4-13def12d8685ef4b","8f44c0b154d9816-13def2f483959a29"]},"geometry":{"type":"LineString","coordinates":[[-83.655044,32.757005],[-83.65431600000001,32.757005]]},"id":"8944c0b154fffff-13def2110355a22a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154d9816-13def2f483959a29","8f44c0b154daae2-13d6d4bb8878f7e8"]},"geometry":{"type":"LineString","coordinates":[[-83.65431600000001,32.757005],[-83.653588,32.756996]]},"id":"8a44c0b154dffff-13d7d3d80dad1692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154daae2-13d6d4bb8878f7e8","8f44c0b10b29190-13d6f688c8f2ec9d"]},"geometry":{"type":"LineString","coordinates":[[-83.653588,32.756996],[-83.65285,32.756993]]},"id":"8844c0b10bfffff-13d7d5a225c5576e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652108,32.756983000000005]},"id":"8f44c0b10b2a284-13bef85882184919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b29190-13d6f688c8f2ec9d","8f44c0b10b2a284-13bef85882184919"]},"geometry":{"type":"LineString","coordinates":[[-83.65285,32.756993],[-83.652108,32.756983000000005]]},"id":"8a44c0b10b2ffff-13bfd770aaa42f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651379,32.756983000000005]},"id":"8f44c0b10b014d3-13befa2023c67787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b2a284-13bef85882184919","8f44c0b10b014d3-13befa2023c67787"]},"geometry":{"type":"LineString","coordinates":[[-83.652108,32.756983000000005],[-83.651379,32.756983000000005]]},"id":"8944c0b10b3ffff-13bef93c5de4cb6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a205ab61b-179f7e61461ac527","8f44c0a2058c8a0-179eff23cab82547"]},"geometry":{"type":"LineString","coordinates":[[-83.688958,32.862789],[-83.6886468,32.862580200000004]]},"id":"8a44c0a2058ffff-17dffec28cbfbce3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2058c8a0-179eff23cab82547","8f44c0a2058cd68-13f77f3d8b3ef6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6886468,32.862580200000004],[-83.6886056,32.8625526]]},"id":"8b44c0a2058cfff-17967f30a2b1db70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20581c02-13b7e05b9cb675b2","8f44c0a2058cd68-13f77f3d8b3ef6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6886056,32.8625526],[-83.6881479,32.8622454]]},"id":"8944c0a205bffff-13977fcc94008b10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68767700000001,32.861941]},"id":"8f44c0a2058626e-13ffa181ebf6e414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2058626e-13ffa181ebf6e414","8f44c0a20581c02-13b7e05b9cb675b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6881479,32.8622454],[-83.688122,32.862228],[-83.68767700000001,32.861941]]},"id":"8a44c0a20587fff-13dea0eeacf3da41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687562,32.861855000000006]},"id":"8f44c0a20586381-13d7e1c9c6b35f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2058626e-13ffa181ebf6e414","8f44c0a20586381-13d7e1c9c6b35f53"]},"geometry":{"type":"LineString","coordinates":[[-83.68767700000001,32.861941],[-83.687562,32.861855000000006]]},"id":"8c44c0a205863ff-13dec1a5d0f6f2df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3622d9ac-17bf3e2f4703b5bb","8f44c0a3626e94a-17d779e1629682d8"]},"geometry":{"type":"LineString","coordinates":[[-83.623502,32.850957],[-83.623524,32.851096000000005],[-83.62354400000001,32.851154],[-83.623675,32.851461],[-83.62378100000001,32.851661],[-83.623907,32.851847],[-83.62402,32.851979],[-83.624176,32.85213],[-83.624538,32.852443],[-83.62483200000001,32.852708],[-83.625265,32.853079]]},"id":"8844c0a363fffff-13f75c563b45d81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6265139,32.8541784]},"id":"8f44c0a30c9b7aa-179796d4db2bb054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30c9b7aa-179796d4db2bb054","8f44c0a3626e94a-17d779e1629682d8"]},"geometry":{"type":"LineString","coordinates":[[-83.625265,32.853079],[-83.62531200000001,32.853125],[-83.6265139,32.8541784]]},"id":"8744c0a30ffffff-17bfd85bd24acdc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30576244-17dfb260c99b499f","8f44c0a30c9b7aa-179796d4db2bb054"]},"geometry":{"type":"LineString","coordinates":[[-83.6265139,32.8541784],[-83.62786100000001,32.855359],[-83.62813,32.855604],[-83.6281884,32.8556698],[-83.628241,32.855739],[-83.6282939,32.8558219],[-83.6283384,32.8559081],[-83.6283745,32.8559971],[-83.62840170000001,32.8560883],[-83.62842,32.856181],[-83.6284301,32.8562803],[-83.62843070000001,32.8563799],[-83.62842160000001,32.8564792],[-83.6284031,32.8565776],[-83.62837520000001,32.8566744],[-83.628338,32.856769]]},"id":"8744c0a30ffffff-13f7b3ed86d48b89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30576244-17dfb260c99b499f","8f44c0a30556c88-17fff4d443e83278"]},"geometry":{"type":"LineString","coordinates":[[-83.628338,32.856769],[-83.62828,32.8568565],[-83.628214,32.85694],[-83.62813990000001,32.8570194],[-83.62805850000001,32.8570937],[-83.62797040000001,32.8571623],[-83.6278762,32.8572249],[-83.62777630000001,32.8572811],[-83.6276715,32.8573305],[-83.6275624,32.8573728],[-83.6274497,32.8574077],[-83.627334,32.857435]]},"id":"8944c0a3057ffff-17d7b37d6c08059b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30556c88-17fff4d443e83278","8f44c0a30426746-17d7d7cb0a19ea21"]},"geometry":{"type":"LineString","coordinates":[[-83.627334,32.857435],[-83.627059,32.857466],[-83.62612,32.85755]]},"id":"8844c0a305fffff-179f764f818d37a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62310500000001,32.857841]},"id":"8f44c0a30599ac8-13f7bf276b3b7c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30599ac8-13f7bf276b3b7c88","8f44c0a30426746-17d7d7cb0a19ea21"]},"geometry":{"type":"LineString","coordinates":[[-83.62612,32.85755],[-83.6236805,32.8577855],[-83.62310500000001,32.857841]]},"id":"8844c0a305fffff-139fbb793ad97887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621588,32.858002]},"id":"8f44c0a304b68cd-13df62db88f03a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a304b68cd-13df62db88f03a96","8f44c0a30599ac8-13f7bf276b3b7c88"]},"geometry":{"type":"LineString","coordinates":[[-83.62310500000001,32.857841],[-83.622128,32.857934],[-83.621588,32.858002]]},"id":"8844c0a305fffff-13b7a101d08840fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3294e3b3-13f7264b85d1afd3","8f44c0a304b68cd-13df62db88f03a96"]},"geometry":{"type":"LineString","coordinates":[[-83.621588,32.858002],[-83.621385,32.858013],[-83.621037,32.858046],[-83.620659,32.858047],[-83.62018,32.85804]]},"id":"8744c0a32ffffff-13f76493388689cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3294e3b3-13f7264b85d1afd3","8f44c0a3295d494-13ff6831c22569b6"]},"geometry":{"type":"LineString","coordinates":[[-83.62018,32.85804],[-83.61940200000001,32.858034]]},"id":"8944c0a3297ffff-13f7273eac5377fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3295e6c2-13ffe9de83887676","8f44c0a3295d494-13ff6831c22569b6"]},"geometry":{"type":"LineString","coordinates":[[-83.61940200000001,32.858034],[-83.618716,32.85803]]},"id":"8a44c0a3295ffff-13ff290824c92654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3295e6c2-13ffe9de83887676","8f44c0a3282d3b6-13f76aacc8644241"]},"geometry":{"type":"LineString","coordinates":[[-83.618716,32.85803],[-83.618598,32.85803],[-83.618386,32.858015]]},"id":"8844c0a329fffff-13ffea45b1ce6a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680452,32.836872]},"id":"8f44c0b196891b1-17d793258fde0c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679962,32.836696]},"id":"8f44c0b19688792-17d79457c6d6ea57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19688792-17d79457c6d6ea57","8f44c0b196891b1-17d793258fde0c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.680452,32.836872],[-83.679962,32.836696]]},"id":"8a44c0b1968ffff-179e93bea049ef2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678859,32.836298]},"id":"8f44c0b19698990-13ded70929132134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19698990-13ded70929132134","8f44c0b19688792-17d79457c6d6ea57"]},"geometry":{"type":"LineString","coordinates":[[-83.679962,32.836696],[-83.678859,32.836298]]},"id":"8944c0b196bffff-17deb5b07db19e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19698990-13ded70929132134","8f44c0b1ba6cbb0-13deb9b760008d16"]},"geometry":{"type":"LineString","coordinates":[[-83.678859,32.836298],[-83.677761,32.835889]]},"id":"8644c0b1fffffff-13def86045603435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba63dae-13f79c5b0051c725","8f44c0b1ba6cbb0-13deb9b760008d16"]},"geometry":{"type":"LineString","coordinates":[[-83.677761,32.835889],[-83.67668,32.835516000000005]]},"id":"8944c0b1ba7ffff-13fe9b09399ec7b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699258,32.82847]},"id":"8f44c0b19b53374-13d7e53bc2a12ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b53374-13d7e53bc2a12ce6","8f44c0b19b70463-179ee3d3c66afe15"]},"geometry":{"type":"LineString","coordinates":[[-83.699258,32.82847],[-83.69963100000001,32.827466],[-83.69977300000001,32.827106],[-83.69983400000001,32.826971]]},"id":"8944c0b19b7ffff-17fff48bb759379c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b00904-13b667e4640eebaf","8f44c0b19b70463-179ee3d3c66afe15"]},"geometry":{"type":"LineString","coordinates":[[-83.69983400000001,32.826971],[-83.69982800000001,32.826835],[-83.69981200000001,32.826695],[-83.699714,32.826467],[-83.699668,32.8264],[-83.69941700000001,32.826164],[-83.698914,32.825716],[-83.69878,32.825631],[-83.69869,32.825592],[-83.69854000000001,32.825556],[-83.698434,32.825549],[-83.69816900000001,32.825549]]},"id":"8844c0b19bfffff-13df756f1efd4bdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73859300000001,32.748092]},"id":"8f44c0b232c4c4e-17978533665ab514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b232c4c4e-17978533665ab514","8f44c0b23219b52-139e23b767f31e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.73859300000001,32.748092],[-83.738971,32.74765],[-83.73909,32.747441],[-83.739147,32.747293],[-83.739182,32.747076],[-83.73920100000001,32.746893]]},"id":"8844c0b233fffff-13b6344233346c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740077,32.745536]},"id":"8f44c0b23205a63-17de0193ec2a88d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b23205a63-17de0193ec2a88d8","8f44c0b23219b52-139e23b767f31e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.73920100000001,32.746893],[-83.73924500000001,32.746691000000006],[-83.73932400000001,32.746478],[-83.73938600000001,32.746371],[-83.739545,32.746163],[-83.739687,32.746011],[-83.739884,32.745772],[-83.73995400000001,32.745676],[-83.740077,32.745536]]},"id":"8944c0b2323ffff-17df22cce9843504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7405406,32.7448429]},"id":"8f44c0b23221856-1796d072242f8793"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b23205a63-17de0193ec2a88d8","8f44c0b23221856-1796d072242f8793"]},"geometry":{"type":"LineString","coordinates":[[-83.740077,32.745536],[-83.74048400000001,32.745035],[-83.740547,32.744932],[-83.7405406,32.7448429]]},"id":"8944c0b2323ffff-17f6d0eecba080cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667704,32.830741]},"id":"8f44c0b1b8dbcd8-17dfb245056215fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667742,32.830049]},"id":"8f44c0b1b8deb89-179eb22d4696ac2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8dbcd8-17dfb245056215fd","8f44c0b1b8deb89-179eb22d4696ac2d"]},"geometry":{"type":"LineString","coordinates":[[-83.667704,32.830741],[-83.66773900000001,32.830196],[-83.667742,32.830049]]},"id":"8a44c0b1b8dffff-17f6f237988ee41f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8deb89-179eb22d4696ac2d","8f44c0b1b8d1040-13bff225ca64ca2c"]},"geometry":{"type":"LineString","coordinates":[[-83.667742,32.830049],[-83.667754,32.82967]]},"id":"8944c0b1b8fffff-17b6b2298aa405ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8d565b-1397b2270b11e723","8f44c0b1b8d1040-13bff225ca64ca2c"]},"geometry":{"type":"LineString","coordinates":[[-83.667754,32.82967],[-83.66775200000001,32.8294]]},"id":"8b44c0b1b8d1fff-13dff22666133bd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66775000000001,32.828732]},"id":"8f44c0b1b8f3406-13f7b22840d51af5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8f3406-13f7b22840d51af5","8f44c0b1b8d565b-1397b2270b11e723"]},"geometry":{"type":"LineString","coordinates":[[-83.66775200000001,32.8294],[-83.66775000000001,32.828732]]},"id":"8944c0b1b8fffff-13b6f227a9ede027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8f3406-13f7b22840d51af5","8f44c0b1b8f2af5-13deb227050e70b9"]},"geometry":{"type":"LineString","coordinates":[[-83.66775000000001,32.828732],[-83.66775200000001,32.82848]]},"id":"8a44c0b1b8f7fff-1396f227a01ac877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667759,32.828071]},"id":"8f44c0b1b8f604a-17def222abfd0544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8f2af5-13deb227050e70b9","8f44c0b1b8f604a-17def222abfd0544"]},"geometry":{"type":"LineString","coordinates":[[-83.66775200000001,32.82848],[-83.667759,32.828071]]},"id":"8a44c0b1b8f7fff-13deb224d2c4d0ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8a9c29-17bfb2162acf639b","8f44c0b1b8f604a-17def222abfd0544"]},"geometry":{"type":"LineString","coordinates":[[-83.667759,32.828071],[-83.66777900000001,32.827416]]},"id":"8844c0b1b9fffff-17ffb21c60d14f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667798,32.826754]},"id":"8f44c0b1b8acb04-1797f20a4afb85b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8a9c29-17bfb2162acf639b","8f44c0b1b8acb04-1797f20a4afb85b7"]},"geometry":{"type":"LineString","coordinates":[[-83.66777900000001,32.827416],[-83.667798,32.826754]]},"id":"8a44c0b1b8affff-17f6b2103225aadd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66782400000001,32.825998000000006]},"id":"8f44c0b1b8160c5-13bef1fa07f9297e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8acb04-1797f20a4afb85b7","8f44c0b1b8160c5-13bef1fa07f9297e"]},"geometry":{"type":"LineString","coordinates":[[-83.667798,32.826754],[-83.66782400000001,32.825998000000006]]},"id":"8844c0b1b9fffff-13b7b2022d5f4fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18641ae0-17b6b0998899e1ba","8f44c0b1b912c92-13f7f0a6a27ec883"]},"geometry":{"type":"LineString","coordinates":[[-83.668367,32.823206],[-83.66838800000001,32.821453000000005]]},"id":"8644c0b1fffffff-13d7f0a0195523bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66843300000001,32.820211]},"id":"8f44c0b1866078d-1797f07d61fcfd62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18641ae0-17b6b0998899e1ba","8f44c0b1866078d-1797f07d61fcfd62"]},"geometry":{"type":"LineString","coordinates":[[-83.66838800000001,32.821453000000005],[-83.66843300000001,32.820211]]},"id":"8944c0b1867ffff-179eb08b7e2a133a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668002,32.825994]},"id":"8f44c0b1b816af5-13b6f18acd49af7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9ab42d-17dff16f4ed3a0e2","8f44c0b1b816af5-13b6f18acd49af7b"]},"geometry":{"type":"LineString","coordinates":[[-83.668002,32.825994],[-83.668029,32.825162],[-83.668046,32.824626]]},"id":"8844c0b1b9fffff-139ef17cf3b3743c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9a5652-13ffb143889a8b79","8f44c0b1b9ab42d-17dff16f4ed3a0e2"]},"geometry":{"type":"LineString","coordinates":[[-83.668046,32.824626],[-83.66811600000001,32.823208]]},"id":"8944c0b1b9bffff-17b6b1596b6066a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3018ec80-1397e7fea8664792","8f44c0a30195466-17ff4a8d01d9bcc8"]},"geometry":{"type":"LineString","coordinates":[[-83.631544,32.857034],[-83.631732,32.8571759],[-83.63196400000001,32.857351],[-83.63226,32.857554],[-83.632591,32.857867]]},"id":"8944c0a301bffff-17ffd93f41ee0c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3018ec80-1397e7fea8664792","8f44c0a3018ecc1-13bf27d88bd00902"]},"geometry":{"type":"LineString","coordinates":[[-83.632591,32.857867],[-83.63265200000001,32.857925]]},"id":"8c44c0a3018edff-139f07eb9436d042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30188510-13f7e73885063ef8","8f44c0a3018ecc1-13bf27d88bd00902"]},"geometry":{"type":"LineString","coordinates":[[-83.63265200000001,32.857925],[-83.632824,32.858105],[-83.632908,32.858251]]},"id":"8a44c0a3018ffff-139f878275d8910f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30188510-13f7e73885063ef8","8f44c0a3000a6a6-17d7a2306583e69e"]},"geometry":{"type":"LineString","coordinates":[[-83.632908,32.858251],[-83.63320900000001,32.858767],[-83.63332100000001,32.858998],[-83.63345000000001,32.859201],[-83.633684,32.859491000000006],[-83.63452500000001,32.860372000000005],[-83.634969,32.860857]]},"id":"8844c0a301fffff-17d7b4e0a02a3397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762066,32.8762658]},"id":"8f44c0b50746d96-17f7ebe4cefdb74a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7613189,32.876537500000005]},"id":"8f44c0b507508a6-179ffdb7b88e1876"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b50746d96-17f7ebe4cefdb74a","8f44c0b507508a6-179ffdb7b88e1876"]},"geometry":{"type":"LineString","coordinates":[[-83.762066,32.8762658],[-83.7619799,32.8763354],[-83.76194550000001,32.876361700000004],[-83.7618849,32.8763975],[-83.7618151,32.8764381],[-83.7617632,32.8764586],[-83.7617012,32.8764788],[-83.7616292,32.876494900000004],[-83.7613189,32.876537500000005]]},"id":"8944c0b5077ffff-17f7ccc3404dabbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b50621030-17f7f02ff454cd34","8f44c0b507508a6-179ffdb7b88e1876"]},"geometry":{"type":"LineString","coordinates":[[-83.7613189,32.876537500000005],[-83.76106700000001,32.8765817],[-83.7609738,32.8765979],[-83.76089640000001,32.8766151],[-83.7608007,32.876642000000004],[-83.76069910000001,32.876677400000005],[-83.7606173,32.8767115],[-83.76053370000001,32.8767513],[-83.7604716,32.8767836],[-83.7603933,32.876827],[-83.76030730000001,32.8768814]]},"id":"8844c0b507fffff-17fffefcc1ed293a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b50621030-17f7f02ff454cd34","8f44c0b50623350-1797d10516c0f1e1"]},"geometry":{"type":"LineString","coordinates":[[-83.76030730000001,32.8768814],[-83.7602378,32.876933900000004],[-83.7599663,32.8771448]]},"id":"8a44c0b50627fff-17d5f09ab90cb179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7595716,32.8774497]},"id":"8f44c0b50605470-13d7d1fbce0970f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b50623350-1797d10516c0f1e1","8f44c0b50605470-13d7d1fbce0970f2"]},"geometry":{"type":"LineString","coordinates":[[-83.7599663,32.8771448],[-83.7595716,32.8774497]]},"id":"8944c0b5063ffff-17f7d18071e1d56c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7589274,32.8782817]},"id":"8f44c0b5061dc09-13dfd38e67f790a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5061dc09-13dfd38e67f790a3","8f44c0b50605470-13d7d1fbce0970f2"]},"geometry":{"type":"LineString","coordinates":[[-83.7595716,32.8774497],[-83.7594955,32.877511600000005],[-83.75941970000001,32.8775793],[-83.7593465,32.8776595],[-83.75927130000001,32.8777412],[-83.7592073,32.8778233],[-83.75915180000001,32.8778991],[-83.75907330000001,32.878015000000005],[-83.7589899,32.8781559],[-83.7589274,32.8782817]]},"id":"8944c0b5063ffff-13dff2d8a2b86e32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62058300000001,32.848976]},"id":"8f44c0a363a8a16-13d7254faf0dc571"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36381da8-13d76847a1f5e24f","8f44c0a363a8a16-13d7254faf0dc571"]},"geometry":{"type":"LineString","coordinates":[[-83.62058300000001,32.848976],[-83.61936700000001,32.848978]]},"id":"8944c0a363bffff-13d7a6cba5c3a930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617705,32.848933]},"id":"8f44c0a363906ec-13b72c566f06331f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36381da8-13d76847a1f5e24f","8f44c0a363906ec-13b72c566f06331f"]},"geometry":{"type":"LineString","coordinates":[[-83.61936700000001,32.848978],[-83.617705,32.848933]]},"id":"8944c0a363bffff-13d73a4f0f0fbdba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36761024-13bf6e67294e2535","8f44c0a363906ec-13b72c566f06331f"]},"geometry":{"type":"LineString","coordinates":[[-83.617705,32.848933],[-83.616859,32.848919]]},"id":"8744c0a36ffffff-13b7ed5ec5f52244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36761024-13bf6e67294e2535","8f44c0a3676228e-13bf3070647dff20"]},"geometry":{"type":"LineString","coordinates":[[-83.616859,32.848919],[-83.61602500000001,32.848912]]},"id":"8a44c0a36767fff-13bf3f6bc67d80b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642752,32.837231]},"id":"8f44c0a34156a9d-17b7ef3003f32646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6429063,32.8369147]},"id":"8f44c0a34109359-17dffecf9ee32142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34156a9d-17b7ef3003f32646","8f44c0a34109359-17dffecf9ee32142"]},"geometry":{"type":"LineString","coordinates":[[-83.642752,32.837231],[-83.6429063,32.8369147]]},"id":"8a44c0a34157fff-17d6feffc70a7ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3417646e-13bfee018f1f5246","8f44c0a34109359-17dffecf9ee32142"]},"geometry":{"type":"LineString","coordinates":[[-83.6429063,32.8369147],[-83.643236,32.836239]]},"id":"8844c0a341fffff-179efe6890ed505b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6733786,32.8905825]},"id":"8f44c0a04140d91-13f6b46a6b46fb3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0414096c-1396a3892e6462b0","8f44c0a04140d91-13f6b46a6b46fb3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6733786,32.8905825],[-83.67349700000001,32.890589],[-83.673635,32.890594],[-83.67369000000001,32.890607],[-83.67373900000001,32.890625]]},"id":"8a44c0a04147fff-13ffb3f8b46eae7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416a030-13dea206e9ee4b5e","8f44c0a0414096c-1396a3892e6462b0"]},"geometry":{"type":"LineString","coordinates":[[-83.67373900000001,32.890625],[-83.673798,32.890651000000005],[-83.673935,32.890721],[-83.674136,32.890841],[-83.674357,32.89098]]},"id":"8944c0a0417ffff-13fee2c574bcdfcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416a030-13dea206e9ee4b5e","8f44c0a0416968d-13f6e04d03a84ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.674357,32.89098],[-83.67447800000001,32.891052],[-83.674548,32.891094],[-83.67462,32.891136],[-83.674744,32.89121],[-83.675064,32.891399]]},"id":"8a44c0a0416ffff-13f7a12a1205bab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0416968d-13f6e04d03a84ad1","8f44c0a04ab0b6b-13d7beac23eceb31"]},"geometry":{"type":"LineString","coordinates":[[-83.675064,32.891399],[-83.67513600000001,32.891439000000005],[-83.675245,32.891509],[-83.67541700000001,32.891644],[-83.67551800000001,32.891743000000005],[-83.675617,32.891851],[-83.675731,32.891993]]},"id":"8844c0a04bfffff-139ebf6f3df7631b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04ab1810-17d6fe4dc073539f","8f44c0a04ab0b6b-13d7beac23eceb31"]},"geometry":{"type":"LineString","coordinates":[[-83.675731,32.891993],[-83.675882,32.892167]]},"id":"8a44c0a04ab7fff-179e9e7cfd6adc29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a84041-179ffd762f755791","8f44c0a04ab1810-17d6fe4dc073539f"]},"geometry":{"type":"LineString","coordinates":[[-83.675882,32.892167],[-83.67616600000001,32.892525],[-83.676196,32.892576000000005],[-83.67622200000001,32.892636],[-83.67622700000001,32.892691]]},"id":"8944c0a04abffff-17f69dd52aee56f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a84041-179ffd762f755791","8f44c0a04a8195d-17f6bc9fc8417813"]},"geometry":{"type":"LineString","coordinates":[[-83.67622700000001,32.892691],[-83.67620500000001,32.892922],[-83.676215,32.892978],[-83.67623800000001,32.893034],[-83.676275,32.893088],[-83.67633000000001,32.893135],[-83.676395,32.893178],[-83.67657,32.893261]]},"id":"8a44c0a04a87fff-17defd41855dcd41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675768,32.893966]},"id":"8f44c0a04a9d0f6-13bede95058ef0bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a8195d-17f6bc9fc8417813","8f44c0a04a9d0f6-13bede95058ef0bb"]},"geometry":{"type":"LineString","coordinates":[[-83.67657,32.893261],[-83.676558,32.893312],[-83.676523,32.893395000000005],[-83.67646900000001,32.893486],[-83.67641,32.893559],[-83.67636200000001,32.893608],[-83.67627,32.893673],[-83.676055,32.893802],[-83.675768,32.893966]]},"id":"8944c0a04abffff-17ff9d791a008c59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a9d0f6-13bede95058ef0bb","8f44c0a04334150-139ea107eaf2991a"]},"geometry":{"type":"LineString","coordinates":[[-83.675768,32.893966],[-83.67476500000001,32.894557]]},"id":"8744c0a04ffffff-13f7ffce7790e3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673759,32.895153]},"id":"8f44c0a040498e9-139ea37cada8273f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040498e9-139ea37cada8273f","8f44c0a04334150-139ea107eaf2991a"]},"geometry":{"type":"LineString","coordinates":[[-83.67476500000001,32.894557],[-83.673759,32.895153]]},"id":"8944c0a0433ffff-13d6e2424cc17bb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a043a55a9-17f7a5bf6cd95956","8f44c0a040498e9-139ea37cada8273f"]},"geometry":{"type":"LineString","coordinates":[[-83.673759,32.895153],[-83.67283300000001,32.895701]]},"id":"8844c0a043fffff-17bfe49e0da3a517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672076,32.895971]},"id":"8f44c0a043a2002-179fe798813fa329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a043a2002-179fe798813fa329","8f44c0a043a55a9-17f7a5bf6cd95956"]},"geometry":{"type":"LineString","coordinates":[[-83.67283300000001,32.895701],[-83.672623,32.895828],[-83.672454,32.895915],[-83.672307,32.89595],[-83.672202,32.895966],[-83.672076,32.895971]]},"id":"8a44c0a043a7fff-17d7a6a3a62ee200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67022100000001,32.894813]},"id":"8f44c0a040ea040-13beac1fefe77196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a043a2002-179fe798813fa329","8f44c0a040ea040-13beac1fefe77196"]},"geometry":{"type":"LineString","coordinates":[[-83.672076,32.895971],[-83.67199500000001,32.895964],[-83.671774,32.895909],[-83.671653,32.895854],[-83.67161,32.895828],[-83.67022100000001,32.894813]]},"id":"8744c0a04ffffff-17dee9eda1db71c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040c6935-13beeee5eae1221b","8f44c0a040ea040-13beac1fefe77196"]},"geometry":{"type":"LineString","coordinates":[[-83.67022100000001,32.894813],[-83.669341,32.894179],[-83.66908500000001,32.893994]]},"id":"8944c0a040fffff-13beed82fa90582e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040863b3-13f6b5466e714e2f","8f44c0a040c6935-13beeee5eae1221b"]},"geometry":{"type":"LineString","coordinates":[[-83.66908500000001,32.893994],[-83.667271,32.892653],[-83.666852,32.892352],[-83.666703,32.892232],[-83.66647300000001,32.892032]]},"id":"8844c0a041fffff-17dfb21ae2cb59ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66552200000001,32.891281]},"id":"8f44c0a040b24ad-139eb798c9bd1104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a040863b3-13f6b5466e714e2f","8f44c0a040b24ad-139eb798c9bd1104"]},"geometry":{"type":"LineString","coordinates":[[-83.66647300000001,32.892032],[-83.66552200000001,32.891281]]},"id":"8944c0a040bffff-1397f66f967594ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700388,32.803278]},"id":"8f44c0b1d85a85e-13d6e27988ab71ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70261,32.803281000000005]},"id":"8f44c0b1d84d065-13d6fd0cc337b0fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d85a85e-13d6e27988ab71ce","8f44c0b1d84d065-13d6fd0cc337b0fe"]},"geometry":{"type":"LineString","coordinates":[[-83.700388,32.803278],[-83.70261,32.803281000000005]]},"id":"8944c0b1d87ffff-13d7ffc3294a1b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70637860000001,32.8032799]},"id":"8f44c0b0e4d4b42-13d7f3d966104a0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e4d4b42-13d7f3d966104a0c","8f44c0b1d84d065-13d6fd0cc337b0fe"]},"geometry":{"type":"LineString","coordinates":[[-83.70261,32.803281000000005],[-83.70637860000001,32.8032799]]},"id":"8544c0b3fffffff-13d658731fe3f333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70743200000001,32.803283]},"id":"8f44c0b0e4c4c6a-13d7f1470fc1f191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e4d4b42-13d7f3d966104a0c","8f44c0b0e4c4c6a-13d7f1470fc1f191"]},"geometry":{"type":"LineString","coordinates":[[-83.70637860000001,32.8032799],[-83.70743200000001,32.803283]]},"id":"8944c0b0e4fffff-13d6f29035fc8435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890f2586-13bf7a1f8fb1a004","8f44c0b890c6dae-13f7f80d8976377b"]},"geometry":{"type":"LineString","coordinates":[[-83.58584400000001,32.871856],[-83.586205,32.872025],[-83.586422,32.872144],[-83.586611,32.872287],[-83.58664800000001,32.872318],[-83.586692,32.872374]]},"id":"8944c0b890fffff-13bff90a95d46642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890c2329-17d777ba664ee867","8f44c0b890c6dae-13f7f80d8976377b"]},"geometry":{"type":"LineString","coordinates":[[-83.586692,32.872374],[-83.58674900000001,32.872484],[-83.58680000000001,32.872662000000005],[-83.586826,32.872957],[-83.586825,32.873117]]},"id":"8944c0b890fffff-17d777cf7680cd1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15056a44-17bef70a4f932576","8f44c0b15066b9c-17fef2572dad9700"]},"geometry":{"type":"LineString","coordinates":[[-83.667675,32.754599],[-83.667623,32.754601],[-83.66758700000001,32.754634],[-83.66743600000001,32.754731],[-83.666971,32.755043],[-83.666658,32.755246],[-83.66620300000001,32.755522],[-83.665988,32.75564],[-83.665925,32.755648],[-83.66585900000001,32.755623],[-83.66575,32.75553]]},"id":"8944c0b1507ffff-17d7f4ad975a7777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1515d6de-13def26768443b8c","8f44c0b15056a44-17bef70a4f932576"]},"geometry":{"type":"LineString","coordinates":[[-83.66575,32.75553],[-83.665716,32.755468],[-83.665677,32.755378],[-83.66565700000001,32.755308],[-83.66565800000001,32.755284],[-83.665667,32.755253],[-83.66568500000001,32.755235],[-83.66667000000001,32.754576],[-83.667513,32.754027],[-83.66764900000001,32.753966000000005]]},"id":"8844c0b151fffff-179ff51b304cc101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a225502f4-13f7af2c823c3460","8f44c0a22442693-13d7afd408632c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.66897200000001,32.868873],[-83.66871300000001,32.869038],[-83.668547,32.869155],[-83.66844,32.869276],[-83.668369,32.869371],[-83.66833700000001,32.869436],[-83.66829200000001,32.869557],[-83.668272,32.869636],[-83.668254,32.869873000000005],[-83.66826800000001,32.870008],[-83.668661,32.87145],[-83.668698,32.871744],[-83.66870800000001,32.871996],[-83.668704,32.872092]]},"id":"8844c0a225fffff-179eb04afef057f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668102,32.873663]},"id":"8f44c0a227b0844-1797f14c4f78f554"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a227b0844-1797f14c4f78f554","8f44c0a22442693-13d7afd408632c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.668704,32.872092],[-83.668706,32.872159],[-83.668666,32.872314],[-83.66864500000001,32.872416],[-83.668602,32.872543],[-83.66851700000001,32.87269],[-83.66843700000001,32.872858],[-83.668411,32.872943],[-83.668363,32.873061],[-83.66832500000001,32.873176],[-83.668102,32.873663]]},"id":"8844c0a225fffff-17b7b07ca8cd77f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638962,32.839177]},"id":"8f44c0a340a8176-13f7f870c46e428a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340a8176-13f7f870c46e428a","8f44c0a3401a146-13fff65f581100fe"]},"geometry":{"type":"LineString","coordinates":[[-83.638962,32.839177],[-83.63980910000001,32.8394138]]},"id":"8844c0a341fffff-13bff7681ce37163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64015260000001,32.8395099]},"id":"8f44c0a34018650-13b7f588a90a4b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3401a146-13fff65f581100fe","8f44c0a34018650-13b7f588a90a4b0b"]},"geometry":{"type":"LineString","coordinates":[[-83.63980910000001,32.8394138],[-83.64015260000001,32.8395099]]},"id":"8a44c0a3401ffff-1397f5f409b83272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34019565-13f6f4af811640a0","8f44c0a34018650-13b7f588a90a4b0b"]},"geometry":{"type":"LineString","coordinates":[[-83.64015260000001,32.8395099],[-83.6405,32.839607]]},"id":"8a44c0a3401ffff-13d6f51c1f9ec9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34019565-13f6f4af811640a0","8f44c0a34019aa1-179ef41d422788dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6405,32.839607],[-83.64073400000001,32.839678]]},"id":"8b44c0a34019fff-179ef4666194e806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3400baf5-17d6f2024fd5bd7f","8f44c0a34019aa1-179ef41d422788dd"]},"geometry":{"type":"LineString","coordinates":[[-83.64073400000001,32.839678],[-83.64159640000001,32.8399367]]},"id":"8944c0a3403ffff-17fff30fca51110e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3400baf5-17d6f2024fd5bd7f","8f44c0a34056946-1797f12764afc132"]},"geometry":{"type":"LineString","coordinates":[[-83.64159640000001,32.8399367],[-83.64194660000001,32.8400447]]},"id":"8844c0a341fffff-17f6f194db02e863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34055db3-17feefdaa545b015","8f44c0a34056946-1797f12764afc132"]},"geometry":{"type":"LineString","coordinates":[[-83.64194660000001,32.8400447],[-83.64247900000001,32.840209]]},"id":"8a44c0a34057fff-17b7f08104531162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68464200000001,32.855241]},"id":"8f44c0a2638ddb1-139fa8eac73916cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2604a2a3-17bfe8c9a5ce6072","8f44c0a2638ddb1-139fa8eac73916cf"]},"geometry":{"type":"LineString","coordinates":[[-83.684695,32.852803],[-83.684646,32.85474],[-83.68464200000001,32.855241]]},"id":"8844c0a263fffff-17b7b8dc53a1e99a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26212382-1796f96b2e0641d0","8f44c0a2638ddb1-139fa8eac73916cf"]},"geometry":{"type":"LineString","coordinates":[[-83.68464200000001,32.855241],[-83.68464200000001,32.855535],[-83.684623,32.856382],[-83.684616,32.856496],[-83.68461400000001,32.856524],[-83.684596,32.856631],[-83.68457000000001,32.856692],[-83.684509,32.856776],[-83.68443660000001,32.8568615]]},"id":"8844c0a263fffff-17b6c8fd0d60f700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654058,32.7879]},"id":"8f44c0b1e99acc4-17b7d395c4a77b3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ed41c29-1796d7da422bb8c2","8f44c0b1e99acc4-17b7d395c4a77b3c"]},"geometry":{"type":"LineString","coordinates":[[-83.65231,32.78785],[-83.652517,32.78788],[-83.654058,32.7879]]},"id":"8744c0b1effffff-17bff5b8988f62f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e99acc4-17b7d395c4a77b3c","8f44c0b1e988cdc-17deef3b6ad83cfa"]},"geometry":{"type":"LineString","coordinates":[[-83.654058,32.7879],[-83.654539,32.787906],[-83.655218,32.787926],[-83.65584100000001,32.787931]]},"id":"8944c0b1e9bffff-17d6d1689731bc5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637315,32.813325]},"id":"8f44c0b1a510323-13defc7623fc1146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a514766-13d6fc85c0fe92c3","8f44c0b1a510323-13defc7623fc1146"]},"geometry":{"type":"LineString","coordinates":[[-83.637315,32.813325],[-83.63728900000001,32.813268],[-83.637296,32.813012],[-83.63729000000001,32.812907]]},"id":"8a44c0b1a517fff-13d6fc8344e55b98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a514766-13d6fc85c0fe92c3","8f44c0bad24db4e-13b7fc64a6492a93"]},"geometry":{"type":"LineString","coordinates":[[-83.63729000000001,32.812907],[-83.63732900000001,32.812285],[-83.637343,32.812066]]},"id":"8844c0b1a5fffff-13befc754ee1c112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad268066-179efc50060a3678","8f44c0bad24db4e-13b7fc64a6492a93"]},"geometry":{"type":"LineString","coordinates":[[-83.637343,32.812066],[-83.637376,32.81121]]},"id":"8944c0bad27ffff-17bffc5a5ec8858a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637433,32.809907]},"id":"8f44c0b1ac9648e-13fffc2c6338bdb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac9648e-13fffc2c6338bdb0","8f44c0bad268066-179efc50060a3678"]},"geometry":{"type":"LineString","coordinates":[[-83.637376,32.81121],[-83.637433,32.809907]]},"id":"8944c0bad27ffff-1797fc3e3dc4c3bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73447,32.900436]},"id":"8f44c0a2c0c1bb0-13f68f444f5a6a2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c0c1bb0-13f68f444f5a6a2c","8f44c0a2c0d95aa-13d6f1e4c100329b"]},"geometry":{"type":"LineString","coordinates":[[-83.73447,32.900436],[-83.734325,32.900548],[-83.734133,32.900686],[-83.733928,32.900849],[-83.73385300000001,32.900916],[-83.733394,32.901403]]},"id":"8944c0a2c0fffff-139690a1265cdfd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c751709-17f695056d9028a0","8f44c0a2c0d95aa-13d6f1e4c100329b"]},"geometry":{"type":"LineString","coordinates":[[-83.733394,32.901403],[-83.732732,32.902106],[-83.73225500000001,32.902631],[-83.732197,32.902721],[-83.732167,32.902828],[-83.732145,32.903027],[-83.732113,32.903508]]},"id":"8844c0a2c7fffff-17b7b3dc899713d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66382300000001,32.844254]},"id":"8f44c0a359064d2-17defbbea9ed921a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6641247,32.8444651]},"id":"8f44c0a35902966-17debb021c673b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35902966-17debb021c673b48","8f44c0a359064d2-17defbbea9ed921a"]},"geometry":{"type":"LineString","coordinates":[[-83.66382300000001,32.844254],[-83.66393500000001,32.844338],[-83.664034,32.844405],[-83.6641247,32.8444651]]},"id":"8a44c0a35907fff-179ebb6149384831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66435200000001,32.843178]},"id":"8f44c0a35935998-17befa7404d9cf96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35935998-17befa7404d9cf96","8f44c0a35902966-17debb021c673b48"]},"geometry":{"type":"LineString","coordinates":[[-83.6641247,32.8444651],[-83.66453800000001,32.844605],[-83.664775,32.844678],[-83.665046,32.844724],[-83.665248,32.844749],[-83.66537000000001,32.844755],[-83.66548800000001,32.844744],[-83.665599,32.844718],[-83.66572400000001,32.844673],[-83.66578000000001,32.844641],[-83.665824,32.844597],[-83.665897,32.844495],[-83.66593800000001,32.844437],[-83.66597800000001,32.844334],[-83.665991,32.84427],[-83.665988,32.844141],[-83.665957,32.844029],[-83.66592100000001,32.843956],[-83.665864,32.843877],[-83.665749,32.843766],[-83.665605,32.843669000000006],[-83.66546600000001,32.843586],[-83.665186,32.843438],[-83.664878,32.84331],[-83.664591,32.843223],[-83.66435200000001,32.843178]]},"id":"8944c0a3593ffff-17fff85381e339c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35935998-17befa7404d9cf96","8f44c0a359300b6-17debbeec08666f1"]},"geometry":{"type":"LineString","coordinates":[[-83.66435200000001,32.843178],[-83.66416100000001,32.843223],[-83.66403100000001,32.843274],[-83.66387300000001,32.843362],[-83.663746,32.84344]]},"id":"8a44c0a35937fff-17febb36fa1d96e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a359300b6-17debbeec08666f1","8f44c0a359064d2-17defbbea9ed921a"]},"geometry":{"type":"LineString","coordinates":[[-83.663746,32.84344],[-83.663697,32.843562],[-83.66364700000001,32.843708],[-83.66363100000001,32.843815],[-83.663638,32.843891],[-83.66367600000001,32.844023],[-83.663739,32.84414],[-83.66382300000001,32.844254]]},"id":"8944c0a3593ffff-17d6bc102012497f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2041861e-139ffcf30a934d83","8f44c0a20411563-13d7fd7c84aeec1e"]},"geometry":{"type":"LineString","coordinates":[[-83.689324,32.864521],[-83.689464,32.865114000000005],[-83.68954400000001,32.865475]]},"id":"8944c0a2043ffff-13fffd36d0d8a26f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2041b993-13dffce4038fc5ef","8f44c0a2041861e-139ffcf30a934d83"]},"geometry":{"type":"LineString","coordinates":[[-83.68954400000001,32.865475],[-83.68956800000001,32.86558]]},"id":"8a44c0a2041ffff-13befceb88faeb35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689829,32.866748]},"id":"8f44c0a204c492d-17b7fc40e1ab8ee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2041b993-13dffce4038fc5ef","8f44c0a204c492d-17b7fc40e1ab8ee1"]},"geometry":{"type":"LineString","coordinates":[[-83.68956800000001,32.86558],[-83.68972600000001,32.866242],[-83.689779,32.866483],[-83.689829,32.866748]]},"id":"8844c0a205fffff-17d7fc8ef6f278cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204c1a12-13967bb2623c1935","8f44c0a204c492d-17b7fc40e1ab8ee1"]},"geometry":{"type":"LineString","coordinates":[[-83.689829,32.866748],[-83.689897,32.866979],[-83.69004000000001,32.867635],[-83.69005700000001,32.867722]]},"id":"8944c0a204fffff-17f6fbf520af0f2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204c1a12-13967bb2623c1935","8f44c0a204c8c8b-13b6fbd4ae644294"]},"geometry":{"type":"LineString","coordinates":[[-83.69005700000001,32.867722],[-83.690089,32.867883],[-83.690104,32.867991],[-83.690098,32.868152],[-83.690066,32.868237],[-83.690008,32.86835],[-83.69000220000001,32.8683598]]},"id":"8944c0a204fffff-13f77ba6003593f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204c8c8b-13b6fbd4ae644294","8f44c0a204c8404-13d77bf224a92a3f"]},"geometry":{"type":"LineString","coordinates":[[-83.69000220000001,32.8683598],[-83.68995500000001,32.86844]]},"id":"8b44c0a204c8fff-13bffbe362e9836b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689535,32.869269]},"id":"8f44c0a22b60826-17df7cf8ac86eda4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204c8404-13d77bf224a92a3f","8f44c0a22b60826-17df7cf8ac86eda4"]},"geometry":{"type":"LineString","coordinates":[[-83.68995500000001,32.86844],[-83.68965200000001,32.868872],[-83.689576,32.869023],[-83.689537,32.869168],[-83.68953300000001,32.86922],[-83.689535,32.869269]]},"id":"8744c0a20ffffff-13dffc90511a3758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69017600000001,32.8707477]},"id":"8f44c0a22b6824d-17ff7b680ab70472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a22b6824d-17ff7b680ab70472","8f44c0a22b60826-17df7cf8ac86eda4"]},"geometry":{"type":"LineString","coordinates":[[-83.689535,32.869269],[-83.689587,32.869483],[-83.689633,32.869597],[-83.69001800000001,32.870392],[-83.69017600000001,32.8707477]]},"id":"8944c0a22b7ffff-17befc3afff6ce3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a22b69470-13be7b49606fc4a7","8f44c0a22b6824d-17ff7b680ab70472"]},"geometry":{"type":"LineString","coordinates":[[-83.69017600000001,32.8707477],[-83.69022500000001,32.870858000000005]]},"id":"8c44c0a22b695ff-139ffb58b4591d8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7034678,32.899944500000004]},"id":"8f44c0a2e50b8c0-17d75af4aa8b758f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e50b8c0-17d75af4aa8b758f","8f44c0a2e50e881-17dedba7180c797c"]},"geometry":{"type":"LineString","coordinates":[[-83.70318230000001,32.8991465],[-83.70338050000001,32.8996889],[-83.7034678,32.899944500000004]]},"id":"8a44c0a2e50ffff-17d7db4cb8f500b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e50b8c0-17d75af4aa8b758f","8f44c0a2e50b16c-17f67aeb308405ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7034678,32.899944500000004],[-83.70348290000001,32.9000007]]},"id":"8b44c0a2e50bfff-17d6faeff6c1944f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7035558,32.900272300000005]},"id":"8f44c0a2e556502-139e7abdade9c40a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e50b16c-17f67aeb308405ed","8f44c0a2e556502-139e7abdade9c40a"]},"geometry":{"type":"LineString","coordinates":[[-83.70348290000001,32.9000007],[-83.7035558,32.900272300000005]]},"id":"8844c0a2e5fffff-17bf5ad468243cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7038418,32.900888900000005]},"id":"8f44c0a2e553db1-139fda0aec8b4adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e556502-139e7abdade9c40a","8f44c0a2e553db1-139fda0aec8b4adb"]},"geometry":{"type":"LineString","coordinates":[[-83.7035558,32.900272300000005],[-83.7036152,32.9004185],[-83.703698,32.900618],[-83.7038418,32.900888900000005]]},"id":"8a44c0a2e557fff-13d77a690cd2d00e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e736854-13975422ea692e0f","8f44c0a2e553db1-139fda0aec8b4adb"]},"geometry":{"type":"LineString","coordinates":[[-83.7038418,32.900888900000005],[-83.703957,32.901106],[-83.70432600000001,32.901711],[-83.70502900000001,32.902838],[-83.70552400000001,32.903616],[-83.70564800000001,32.903804],[-83.70582200000001,32.904046],[-83.70626100000001,32.904584]]},"id":"8744c0a2effffff-17b65733e41be668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e705742-17d7f10d810ed218","8f44c0a2e736854-13975422ea692e0f"]},"geometry":{"type":"LineString","coordinates":[[-83.70626100000001,32.904584],[-83.70720700000001,32.905732],[-83.707524,32.906115]]},"id":"8944c0a2e73ffff-17f7f29865143290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e705742-17d7f10d810ed218","8f44c0a2e70cb43-17f64fc06683cb28"]},"geometry":{"type":"LineString","coordinates":[[-83.707524,32.906115],[-83.70805700000001,32.906762]]},"id":"8944c0a2e73ffff-179e5066f572841a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e70cb43-17f64fc06683cb28","8f44c0a2e769920-17f6478da3b58030"]},"geometry":{"type":"LineString","coordinates":[[-83.70805700000001,32.906762],[-83.708674,32.907521],[-83.708895,32.907775],[-83.70903700000001,32.907911],[-83.709232,32.908059],[-83.709467,32.908194],[-83.709646,32.908277000000005],[-83.709818,32.908338],[-83.70996000000001,32.908378],[-83.710175,32.908422],[-83.711415,32.908602]]},"id":"8744c0a2effffff-13f6dc104e745dc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e39ab62-17b67612271fd9dc","8f44c0a2e769920-17f6478da3b58030"]},"geometry":{"type":"LineString","coordinates":[[-83.711415,32.908602],[-83.711729,32.908648],[-83.7120222,32.9086979]]},"id":"8844c0a2e3fffff-179766cfb3af7e48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e39ab62-17b67612271fd9dc","8f44c0a2e38b184-179e52bb60c94507"]},"geometry":{"type":"LineString","coordinates":[[-83.7120222,32.9086979],[-83.71207000000001,32.908706],[-83.71232300000001,32.908755],[-83.712486,32.908793],[-83.712744,32.908866],[-83.713042,32.908966],[-83.71335900000001,32.909087],[-83.7133898,32.9091013]]},"id":"8944c0a2e3bffff-179fd461e821e49b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71679,32.911562]},"id":"8f44c0a2e254c69-139e7a6e4f96bb15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e254c69-139e7a6e4f96bb15","8f44c0a2e38b184-179e52bb60c94507"]},"geometry":{"type":"LineString","coordinates":[[-83.7133898,32.9091013],[-83.713649,32.909222],[-83.714115,32.909478],[-83.714259,32.909573],[-83.71486,32.910001],[-83.715244,32.910282],[-83.716496,32.911183],[-83.716605,32.911279],[-83.71666400000001,32.911354],[-83.71679,32.911562]]},"id":"8844c0a2e3fffff-13f67e67dfabe14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567058,32.835265]},"id":"8f44c0b8c4ea636-13dfa7fcc9b8da9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8c40c171-13bfa5c0e46ec8c9","8f44c0b8c4ea636-13dfa7fcc9b8da9e"]},"geometry":{"type":"LineString","coordinates":[[-83.567058,32.835265],[-83.56717300000001,32.834933],[-83.56747800000001,32.834088],[-83.56768100000001,32.833512],[-83.567769,32.833238],[-83.56788900000001,32.832839],[-83.56797300000001,32.832532]]},"id":"8844c0b8c5fffff-1797a6d3cba9b070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8c40c171-13bfa5c0e46ec8c9","8f44c0b8c431c8e-1797a8972ca66000"]},"geometry":{"type":"LineString","coordinates":[[-83.56797300000001,32.832532],[-83.568032,32.832327],[-83.568043,32.832116],[-83.568027,32.832016],[-83.56798900000001,32.831899],[-83.56793,32.831786],[-83.567831,32.831649],[-83.56770200000001,32.831535],[-83.56751,32.831415],[-83.56737700000001,32.831344],[-83.567177,32.831235],[-83.566811,32.831029]]},"id":"8944c0b8c43ffff-139fa69d212e5afb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56509100000001,32.82831]},"id":"8f44c0b8c5a6156-13dfecca2d7934f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8c431c8e-1797a8972ca66000","8f44c0b8c5a6156-13dfecca2d7934f5"]},"geometry":{"type":"LineString","coordinates":[[-83.566811,32.831029],[-83.56663800000001,32.830782],[-83.565692,32.829312],[-83.56509100000001,32.82831]]},"id":"8844c0b8c5fffff-13b7bab9a1f7bdb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2b6d9e-13b7cb38223db6cb","8f44c0b8e39adab-17f7c9a467f7b61b"]},"geometry":{"type":"LineString","coordinates":[[-83.553273,32.844084],[-83.552627,32.844624]]},"id":"8844c0b8e3fffff-179fca6e49412b60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55164260000001,32.845443]},"id":"8f44c0b8e74b0a6-13b7ed9f6c6ab7cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e2b6d9e-13b7cb38223db6cb","8f44c0b8e74b0a6-13b7ed9f6c6ab7cc"]},"geometry":{"type":"LineString","coordinates":[[-83.552627,32.844624],[-83.55192600000001,32.845205],[-83.55164260000001,32.845443]]},"id":"8944c0b8e77ffff-13b7cc6c1d26bcdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8834ead3-139fcc5ec5d8093d","8f44c0b88363582-1797ac6f072fb7af"]},"geometry":{"type":"LineString","coordinates":[[-83.578344,32.860145],[-83.57837,32.861586]]},"id":"8944c0b8837ffff-17dffc66e6c35a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8834ead3-139fcc5ec5d8093d","8f44c0b88261aa5-17f78c614ecf090a"]},"geometry":{"type":"LineString","coordinates":[[-83.57837,32.861586],[-83.57839100000001,32.862387000000005],[-83.57839600000001,32.862769],[-83.578405,32.863039],[-83.578398,32.863097],[-83.578389,32.863114],[-83.578366,32.863132]]},"id":"8844c0b883fffff-13979c538d7fdaae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6421007,32.825794]},"id":"8f44c0b1a6e5c19-13bff0c71ecc42b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a656ac2-13ffeefce9514dce","8f44c0b1a6e5c19-13bff0c71ecc42b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6421007,32.825794],[-83.642301,32.825818000000005],[-83.6428338,32.825900000000004]]},"id":"8844c0b1a7fffff-13deefe1c9e09ae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a642c56-13d6eca42118572a","8f44c0b1a656ac2-13ffeefce9514dce"]},"geometry":{"type":"LineString","coordinates":[[-83.6428338,32.825900000000004],[-83.64287900000001,32.825907],[-83.642914,32.825913],[-83.643067,32.825946],[-83.643427,32.826076],[-83.64367200000001,32.826183],[-83.64379500000001,32.826251]]},"id":"8944c0b1a67ffff-13defdcacf807eeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644496,32.826692]},"id":"8f44c0b1a643b6e-17feeaee08b2cfcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a643b6e-17feeaee08b2cfcb","8f44c0b1a642c56-13d6eca42118572a"]},"geometry":{"type":"LineString","coordinates":[[-83.64379500000001,32.826251],[-83.64394800000001,32.826334],[-83.644114,32.826437],[-83.644496,32.826692]]},"id":"8a44c0b1a647fff-13deebc6a6e9c47d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a648840-17dee978e24723ee","8f44c0b1a643b6e-17feeaee08b2cfcb"]},"geometry":{"type":"LineString","coordinates":[[-83.644496,32.826692],[-83.64464100000001,32.826788],[-83.644817,32.826939],[-83.645093,32.827252]]},"id":"8944c0b1a67ffff-179eea29f98879f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768809,32.855643]},"id":"8f44c0b547456b3-139dfb6e6f3f217c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.767047,32.859578]},"id":"8f44c0b54658161-17b5ffbbae6cc3d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b547456b3-139dfb6e6f3f217c","8f44c0b54658161-17b5ffbbae6cc3d5"]},"geometry":{"type":"LineString","coordinates":[[-83.768809,32.855643],[-83.76848000000001,32.855404],[-83.768269,32.855266],[-83.768217,32.85524],[-83.768071,32.855185],[-83.767992,32.855164],[-83.76788900000001,32.855156],[-83.767773,32.855159],[-83.767663,32.855176],[-83.76756300000001,32.855202000000006],[-83.767409,32.855278000000006],[-83.76732200000001,32.855345],[-83.767218,32.855469],[-83.76719,32.855517],[-83.76714700000001,32.855683],[-83.76714000000001,32.85584],[-83.767216,32.856761],[-83.76721,32.856917],[-83.767182,32.85718],[-83.767167,32.85725],[-83.767121,32.857396],[-83.767055,32.85757],[-83.766889,32.857926],[-83.766844,32.858044],[-83.76681400000001,32.858186],[-83.7668,32.858286],[-83.7668,32.858331],[-83.766816,32.858489],[-83.76692200000001,32.85904],[-83.767047,32.859578]]},"id":"8844c0b547fffff-1795ff0816037244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b54658161-17b5ffbbae6cc3d5","8f44c0b509a6789-17ffffb7421fc484"]},"geometry":{"type":"LineString","coordinates":[[-83.767047,32.859578],[-83.767115,32.859918],[-83.76711800000001,32.860045],[-83.767115,32.860141],[-83.767106,32.860238],[-83.767088,32.860354],[-83.767054,32.86049]]},"id":"8644c0b57ffffff-17d5ff9eccc1b986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76657800000001,32.861623]},"id":"8f44c0b50980598-13b7e0e0cf44b266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50980598-13b7e0e0cf44b266","8f44c0b509a6789-17ffffb7421fc484"]},"geometry":{"type":"LineString","coordinates":[[-83.767054,32.86049],[-83.766974,32.86063],[-83.76687700000001,32.86077],[-83.766676,32.861016],[-83.766619,32.861114],[-83.766592,32.861181],[-83.766571,32.861285],[-83.766568,32.861445],[-83.76657800000001,32.861623]]},"id":"8944c0b509bffff-13d5f07ec2756d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70258000000001,32.801602]},"id":"8f44c0b1d861172-17bf5d1f800d7e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d84d065-13d6fd0cc337b0fe","8f44c0b1d861172-17bf5d1f800d7e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.70261,32.803281000000005],[-83.702618,32.802425],[-83.702612,32.802151],[-83.70258000000001,32.801602]]},"id":"8944c0b1d87ffff-13b7dd0ddb30e045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d940372-13bffd7988fc3f35","8f44c0b1d861172-17bf5d1f800d7e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.70258000000001,32.801602],[-83.702436,32.799379]]},"id":"8844c0b1d9fffff-17f6dd4c8a32efc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702352,32.798099]},"id":"8f44c0b1d975a1a-179ffdae06aa4c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d940372-13bffd7988fc3f35","8f44c0b1d975a1a-179ffdae06aa4c36"]},"geometry":{"type":"LineString","coordinates":[[-83.702436,32.799379],[-83.702352,32.798099]]},"id":"8944c0b1d97ffff-13bffd93c2a04b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75964300000001,32.850023]},"id":"8f44c0b5441a6f1-17f5f1cf20389e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7592912,32.850774]},"id":"8f44c0b544f2b74-17b5d2ab0d8a9676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b544f2b74-17b5d2ab0d8a9676","8f44c0b5441a6f1-17f5f1cf20389e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.75964300000001,32.850023],[-83.759517,32.850277000000006],[-83.7592912,32.850774]]},"id":"8844c0b545fffff-17dff23ee1195528"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b544f2b74-17b5d2ab0d8a9676","8f44c0b544d2a6a-13d5f4650e71c06d"]},"geometry":{"type":"LineString","coordinates":[[-83.7592912,32.850774],[-83.759229,32.850911],[-83.759029,32.851321],[-83.758931,32.851489],[-83.75883400000001,32.851613],[-83.75870400000001,32.851745],[-83.758584,32.851847]]},"id":"8944c0b544fffff-139df36c376a0779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7465366,32.8547317]},"id":"8f44c0b56000551-13dff1ceac327c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b56000551-13dff1ceac327c83","8f44c0b544d2a6a-13d5f4650e71c06d"]},"geometry":{"type":"LineString","coordinates":[[-83.758584,32.851847],[-83.758432,32.851962],[-83.758285,32.852052],[-83.75806200000001,32.852164],[-83.757928,32.852221],[-83.757768,32.85228],[-83.75767,32.852309000000005],[-83.757357,32.852385000000005],[-83.75599700000001,32.85267],[-83.755165,32.852877],[-83.753805,32.853223],[-83.751654,32.853761],[-83.751456,32.853796],[-83.751221,32.853825],[-83.75100300000001,32.853842],[-83.75064,32.853833],[-83.750432,32.853811],[-83.75010900000001,32.853771],[-83.749707,32.85371],[-83.748704,32.853548],[-83.748481,32.853521],[-83.74834600000001,32.853518],[-83.748168,32.853527],[-83.74804,32.853544],[-83.74787900000001,32.853585],[-83.747701,32.853648],[-83.74757100000001,32.853712],[-83.747394,32.85381],[-83.747259,32.85391],[-83.747105,32.854056],[-83.74694000000001,32.85425],[-83.74675,32.8545],[-83.7465366,32.8547317]]},"id":"8644c0b57ffffff-17dde36a2029011d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.599109,32.850144]},"id":"8f44c0b8da9532b-17bf59bce74d563e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5988693,32.8478045]},"id":"8f44c0b8d16c352-17f7da52b071b24e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8da9532b-17bf59bce74d563e","8f44c0b8d16c352-17f7da52b071b24e"]},"geometry":{"type":"LineString","coordinates":[[-83.599109,32.850144],[-83.59894,32.849784],[-83.598889,32.849662],[-83.59886300000001,32.849542],[-83.59885200000001,32.849159],[-83.59882900000001,32.848808000000005],[-83.598802,32.8481721],[-83.5988353,32.8478881],[-83.5988693,32.8478045]]},"id":"8844c0b8dbfffff-13dfda51c7e21730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5989,32.847665]},"id":"8f44c0b8d16cb8b-179ffa3f8e9c4502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8d16cb8b-179ffa3f8e9c4502","8f44c0b8d16c352-17f7da52b071b24e"]},"geometry":{"type":"LineString","coordinates":[[-83.5988693,32.8478045],[-83.5989,32.847665]]},"id":"8b44c0b8d16cfff-17df5a4920119adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2069542c-17b6fb5149100838","8f44c0a22a767b3-13df83d62bfe8ea5"]},"geometry":{"type":"LineString","coordinates":[[-83.69021240000001,32.872452100000004],[-83.689615,32.872377],[-83.68729900000001,32.872152],[-83.686723,32.872104]]},"id":"8644c0a27ffffff-13bf7f93006d50dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686108,32.872127]},"id":"8f44c0a22a08861-13d7e556850f60bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22a767b3-13df83d62bfe8ea5","8f44c0a22a08861-13d7e556850f60bb"]},"geometry":{"type":"LineString","coordinates":[[-83.686723,32.872104],[-83.686395,32.872096],[-83.686108,32.872127]]},"id":"8944c0a22a3ffff-13dfe4969fb65756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2286b4e4-17dfc8cfeebc81a7","8f44c0a2284c99a-17b7897582660517"]},"geometry":{"type":"LineString","coordinates":[[-83.684685,32.866402],[-83.684633,32.866383],[-83.68442,32.866332]]},"id":"8944c0a2287ffff-17d7e92246643709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2284c99a-17b7897582660517","8f44c0a22ba46e4-13dfeb8c8d5e0c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.68442,32.866332],[-83.68425500000001,32.866342],[-83.68411300000001,32.866377],[-83.684054,32.866403000000005],[-83.683988,32.866447],[-83.683915,32.866514],[-83.683862,32.866587],[-83.68380300000001,32.866705],[-83.68351700000001,32.867348],[-83.68349500000001,32.86744],[-83.68350000000001,32.867478000000006],[-83.68355000000001,32.867576],[-83.683564,32.867635]]},"id":"8744c0a22ffffff-17feeaf032943e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7143064,32.824960000000004]},"id":"8f44c0b0a04542b-13b6407e87a37828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71429590000001,32.823961600000004]},"id":"8f44c0b0a066642-17d6408518b1cd10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a066642-17d6408518b1cd10","8f44c0b0a04542b-13b6407e87a37828"]},"geometry":{"type":"LineString","coordinates":[[-83.7143064,32.824960000000004],[-83.7142865,32.824696],[-83.71429590000001,32.823961600000004]]},"id":"8944c0b0a07ffff-17fe70872dc91e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a1597b5-17f670760a671624","8f44c0b0a066642-17d6408518b1cd10"]},"geometry":{"type":"LineString","coordinates":[[-83.71429590000001,32.823961600000004],[-83.71432,32.823402300000005]]},"id":"8844c0b0a1fffff-1797407d94f4a0bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7143204,32.823360300000004]},"id":"8f44c0b0a159455-17de7075cf8d4ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a1597b5-17f670760a671624","8f44c0b0a159455-17de7075cf8d4ece"]},"geometry":{"type":"LineString","coordinates":[[-83.71432,32.823402300000005],[-83.7143204,32.823360300000004]]},"id":"8c44c0b0a1595ff-17d75075e56e0e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7143291,32.822473200000005]},"id":"8f44c0b0a15c8e6-139fc0705c96b118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a15c8e6-139fc0705c96b118","8f44c0b0a159455-17de7075cf8d4ece"]},"geometry":{"type":"LineString","coordinates":[[-83.7143204,32.823360300000004],[-83.7143291,32.822473200000005]]},"id":"8a44c0b0a15ffff-13b740731748f5de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71433210000001,32.8221385]},"id":"8f44c0b0a142014-13ded06e7fc60a41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a15c8e6-139fc0705c96b118","8f44c0b0a142014-13ded06e7fc60a41"]},"geometry":{"type":"LineString","coordinates":[[-83.7143291,32.822473200000005],[-83.71433,32.8223858],[-83.71433210000001,32.8221385]]},"id":"8944c0b0a17ffff-13b7706f513d432e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71433060000001,32.8217542]},"id":"8f44c0b0a14645c-13de606f6d1a2a48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a14645c-13de606f6d1a2a48","8f44c0b0a142014-13ded06e7fc60a41"]},"geometry":{"type":"LineString","coordinates":[[-83.71433210000001,32.8221385],[-83.71433470000001,32.8218389],[-83.71433060000001,32.8217542]]},"id":"8a44c0b0a147fff-13d6706dc0f4dabe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a14645c-13de606f6d1a2a48","8f44c0b0a17069b-17de411a9b5a6667"]},"geometry":{"type":"LineString","coordinates":[[-83.71433060000001,32.8217542],[-83.7143254,32.821646900000005],[-83.71427870000001,32.8214842],[-83.7142111,32.8213686],[-83.7140567,32.8211396]]},"id":"8944c0b0a17ffff-179670affe86b23d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134982,32.8206325]},"id":"8f44c0b0a10d8e6-179f5277ae96463c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a10d8e6-179f5277ae96463c","8f44c0b0a17069b-17de411a9b5a6667"]},"geometry":{"type":"LineString","coordinates":[[-83.7140567,32.8211396],[-83.71403000000001,32.8211],[-83.7134982,32.8206325]]},"id":"8844c0b0a1fffff-17bf71c67e86a98b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a10d8e6-179f5277ae96463c","8f44c0b0a10dd66-17f662b9646c0c5f"]},"geometry":{"type":"LineString","coordinates":[[-83.7134982,32.8206325],[-83.71339300000001,32.820535]]},"id":"8b44c0b0a10dfff-1796e29885b9a748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63917400000001,32.847403]},"id":"8f44c0a3466e69a-17fef7ec4ad01bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3466e69a-17fef7ec4ad01bd0","8f44c0a34644109-17fef965c6e5dcfa"]},"geometry":{"type":"LineString","coordinates":[[-83.63857,32.846974],[-83.638806,32.847191],[-83.63908500000001,32.847366],[-83.63917400000001,32.847403]]},"id":"8944c0a3467ffff-1797f8b168be71e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63980600000001,32.847806]},"id":"8f44c0a3466b965-17f6f6614d823a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3466b965-17f6f6614d823a06","8f44c0a3466e69a-17fef7ec4ad01bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.63917400000001,32.847403],[-83.63942200000001,32.847598600000005],[-83.6396258,32.847706800000005],[-83.63980600000001,32.847806]]},"id":"8a44c0a3466ffff-1796f72c0cc1f627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a818e1-13bff035435c95ef","8f44c0b88a88c8c-17fff03df8224408"]},"geometry":{"type":"LineString","coordinates":[[-83.57679800000001,32.855671],[-83.57678410000001,32.8563902]]},"id":"8944c0b88abffff-179fb03998f316fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a88c8c-17fff03df8224408","8f44c0b88a8b74a-17b7d0466310d246"]},"geometry":{"type":"LineString","coordinates":[[-83.57678410000001,32.8563902],[-83.5767706,32.8570932]]},"id":"8a44c0b88a8ffff-17d790422f584503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a8b74a-17b7d0466310d246","8f44c0b88321b19-13df904eea2b13e9"]},"geometry":{"type":"LineString","coordinates":[[-83.5767706,32.8570932],[-83.576757,32.857796]]},"id":"8844c0b88bfffff-17fff04aab0bcd0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88321b19-13df904eea2b13e9","8f44c0b88328d2a-13bff0548483c658"]},"geometry":{"type":"LineString","coordinates":[[-83.576757,32.857796],[-83.57674800000001,32.858359]]},"id":"8944c0b8833ffff-139ff051b1140e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8832864a-13d7b05524bbd452","8f44c0b88328d2a-13bff0548483c658"]},"geometry":{"type":"LineString","coordinates":[[-83.57674800000001,32.858359],[-83.57674700000001,32.858781]]},"id":"8b44c0b88328fff-13bfd054d6536aba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8832864a-13d7b05524bbd452","8f44c0b88350952-17f7d030eaafa9a3"]},"geometry":{"type":"LineString","coordinates":[[-83.57674700000001,32.858781],[-83.576774,32.860386000000005],[-83.57680500000001,32.86047]]},"id":"8844c0b883fffff-17d7904bcd045191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665024,32.846049]},"id":"8f44c0a3590bb9b-13beb8d00a1876e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3590bb9b-13beb8d00a1876e9","8f44c0a359528b4-17beb877ec595c66"]},"geometry":{"type":"LineString","coordinates":[[-83.665024,32.846049],[-83.665165,32.846657]]},"id":"8844c0a359fffff-17feb8a3ff04fe12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a359534ac-17def836413214a7","8f44c0a359528b4-17beb877ec595c66"]},"geometry":{"type":"LineString","coordinates":[[-83.665165,32.846657],[-83.66527,32.847127]]},"id":"8a44c0a35957fff-17bfb857103246f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3582d0e1-1797b7f0494292fe","8f44c0a359534ac-17def836413214a7"]},"geometry":{"type":"LineString","coordinates":[[-83.66527,32.847127],[-83.66538200000001,32.847624]]},"id":"8844c0a359fffff-17ffb8134ef305d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3582d0e1-1797b7f0494292fe","8f44c0a35870bb5-13bff7590c354762"]},"geometry":{"type":"LineString","coordinates":[[-83.66538200000001,32.847624],[-83.66562400000001,32.848706]]},"id":"8844c0a359fffff-13d7b7a4a72791e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685162,32.819812]},"id":"8f44c0b19d52698-139e87a5c90edbd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d42795-13bea4668b04496d","8f44c0b19d52698-139e87a5c90edbd6"]},"geometry":{"type":"LineString","coordinates":[[-83.685162,32.819812],[-83.686492,32.819837]]},"id":"8844c0b19dfffff-13b6d6062c2cb918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d42795-13bea4668b04496d","8f44c0b19d6a42b-13be81256f90ac3b"]},"geometry":{"type":"LineString","coordinates":[[-83.686492,32.819837],[-83.687825,32.819856]]},"id":"8944c0b19d7ffff-13b692c5f490923e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72064280000001,32.878586600000006]},"id":"8f44c0a218db984-139eb10641e19a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a218db984-139eb10641e19a86","8f44c0a21856126-179eeaf01f7de6e6"]},"geometry":{"type":"LineString","coordinates":[[-83.72064280000001,32.878586600000006],[-83.720743,32.878439],[-83.720926,32.878172],[-83.721135,32.87784],[-83.72125000000001,32.877668],[-83.721299,32.877626],[-83.721349,32.877592],[-83.72197800000001,32.877269000000005],[-83.72203300000001,32.877229],[-83.722088,32.877179000000005],[-83.722122,32.877128],[-83.722167,32.87701],[-83.722176,32.876947],[-83.722183,32.876849],[-83.722198,32.876773],[-83.722221,32.876722],[-83.722251,32.876672],[-83.72234300000001,32.876576],[-83.722571,32.876435],[-83.722897,32.876249],[-83.7231359,32.8761068]]},"id":"8744c0a21ffffff-17f6ae274667ce1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a21856802-17f62abfda0aaa3e","8f44c0a21856126-179eeaf01f7de6e6"]},"geometry":{"type":"LineString","coordinates":[[-83.7231359,32.8761068],[-83.72321310000001,32.876061]]},"id":"8c44c0a218569ff-17967ad7f59d1cf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a21856802-17f62abfda0aaa3e","8f44c0a2194e51c-13bea4b1e7b2f001"]},"geometry":{"type":"LineString","coordinates":[[-83.72321310000001,32.876061],[-83.723895,32.875664],[-83.725178,32.874907],[-83.725261,32.874861],[-83.725401,32.874761],[-83.725463,32.874699],[-83.725576,32.874561],[-83.72563500000001,32.874454],[-83.725693,32.874305]]},"id":"8844c0a219fffff-13ff77868601ed0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72468500000001,32.872718]},"id":"8f44c0a2197232e-17dee727edd1ac33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2194e51c-13bea4b1e7b2f001","8f44c0a2197232e-17dee727edd1ac33"]},"geometry":{"type":"LineString","coordinates":[[-83.725693,32.874305],[-83.72570900000001,32.874161],[-83.725705,32.874025],[-83.725648,32.873813000000006],[-83.725577,32.873683],[-83.725215,32.873171],[-83.72512,32.873069],[-83.72503300000001,32.872998],[-83.724748,32.872791],[-83.72468500000001,32.872718]]},"id":"8944c0a2197ffff-179f759503e4c3be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.585142,32.857273]},"id":"8f44c0b8d69d68e-1797fbd64709064a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a6d98e-17f77e848a7e9e28","8f44c0b8d69d68e-1797fbd64709064a"]},"geometry":{"type":"LineString","coordinates":[[-83.585142,32.857273],[-83.58510600000001,32.857197],[-83.58501600000001,32.857118],[-83.58476,32.856946],[-83.584653,32.856882],[-83.584507,32.856825],[-83.584388,32.856811],[-83.584044,32.856816]]},"id":"8944c0b8d6bffff-17d7fd1133281cdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a6d98e-17f77e848a7e9e28","8f44c0b88a5b6b3-139fe58d27897508"]},"geometry":{"type":"LineString","coordinates":[[-83.584044,32.856816],[-83.583357,32.856831],[-83.582137,32.856851],[-83.58196600000001,32.856858],[-83.58181,32.856886],[-83.581642,32.856926],[-83.58156000000001,32.856955],[-83.58145400000001,32.857017],[-83.58134600000001,32.857093],[-83.581253,32.85719],[-83.58119400000001,32.857294],[-83.581174,32.857346],[-83.58113,32.857501],[-83.581123,32.857709],[-83.581163,32.858519]]},"id":"8844c0b88bfffff-17df83291504e183"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d84416-17b7e5594a9a8966","8f44c0b88a5b6b3-139fe58d27897508"]},"geometry":{"type":"LineString","coordinates":[[-83.581163,32.858519],[-83.581204,32.859318],[-83.58121600000001,32.85945],[-83.58124600000001,32.859547]]},"id":"8944c0b89dbffff-13f7f57b4479a0f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328a1812-139734806807ca6e","8f44c0a328ae375-13d7349734e210ea"]},"geometry":{"type":"LineString","coordinates":[[-83.614361,32.857885],[-83.61432450000001,32.8585729]]},"id":"8944c0a328bffff-13ff348bdbcc2dd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328aab4a-139774a275b3605c","8f44c0a328ae375-13d7349734e210ea"]},"geometry":{"type":"LineString","coordinates":[[-83.61432450000001,32.8585729],[-83.61430650000001,32.8589111]]},"id":"8a44c0a328affff-13bff49cd058ca5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61429190000001,32.8591871]},"id":"8f44c0a328ab541-13bff4ab904148e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328aab4a-139774a275b3605c","8f44c0a328ab541-13bff4ab904148e5"]},"geometry":{"type":"LineString","coordinates":[[-83.61430650000001,32.8589111],[-83.61429190000001,32.8591871]]},"id":"8a44c0a328affff-13ffb4a700f890d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3288d1ac-17bff4b90734d0f2","8f44c0a328ab541-13bff4ab904148e5"]},"geometry":{"type":"LineString","coordinates":[[-83.61429190000001,32.8591871],[-83.61427040000001,32.859591900000005]]},"id":"8944c0a328bffff-17bf74b25568d10d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660263,32.818961]},"id":"8f44c0b18696c71-139ee46fa61fc36d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18696c71-139ee46fa61fc36d","8f44c0b1aa640dd-1397c671617029f3"]},"geometry":{"type":"LineString","coordinates":[[-83.659441,32.81895],[-83.660263,32.818961]]},"id":"8844c0b1abfffff-1397f57083b0ab9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18696c71-139ee46fa61fc36d","8f44c0b186b379e-1397c26ca0e216e0"]},"geometry":{"type":"LineString","coordinates":[[-83.660263,32.818961],[-83.66108700000001,32.818982000000005]]},"id":"8a44c0b18697fff-1397f36e25147083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186b379e-1397c26ca0e216e0","8f44c0b186b1249-13b7e06fe8387f91"]},"geometry":{"type":"LineString","coordinates":[[-83.66108700000001,32.818982000000005],[-83.661901,32.818997]]},"id":"8944c0b186bffff-139ef16e47099b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66275800000001,32.819007]},"id":"8f44c0b186a3a02-13b7fe58469aa8be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b186a3a02-13b7fe58469aa8be","8f44c0b186b1249-13b7e06fe8387f91"]},"geometry":{"type":"LineString","coordinates":[[-83.661901,32.818997],[-83.66275800000001,32.819007]]},"id":"8944c0b186bffff-13b6ff6412452291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b504592da-17ddf7a76f177ca6","8f44c0b507ae244-13f5f641e7ba708d"]},"geometry":{"type":"LineString","coordinates":[[-83.757821,32.875247],[-83.757823,32.874848],[-83.757788,32.874595],[-83.75774700000001,32.874462],[-83.757687,32.874335],[-83.757625,32.874221],[-83.757446,32.873992],[-83.757249,32.873773]]},"id":"8844c0b507fffff-139ff6a8018016d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.756337,32.873041]},"id":"8f44c0b5045e6a8-1797f9e16e8fb158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b504592da-17ddf7a76f177ca6","8f44c0b5045e6a8-1797f9e16e8fb158"]},"geometry":{"type":"LineString","coordinates":[[-83.757249,32.873773],[-83.757036,32.873567],[-83.756808,32.873373],[-83.75672,32.873306],[-83.75656500000001,32.873191],[-83.756337,32.873041]]},"id":"8944c0b5047ffff-17fdf8bb82a5d1da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2631b76c-13bec514eb058ea0","8f44c0a2638ddb1-139fa8eac73916cf"]},"geometry":{"type":"LineString","coordinates":[[-83.68464200000001,32.855241],[-83.68621300000001,32.855258]]},"id":"8844c0a263fffff-13b6f6ffd6d51105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68716110000001,32.855271300000005]},"id":"8f44c0a262248e3-13b692c455dfc8e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262248e3-13b692c455dfc8e8","8f44c0a2631b76c-13bec514eb058ea0"]},"geometry":{"type":"LineString","coordinates":[[-83.68621300000001,32.855258],[-83.68716110000001,32.855271300000005]]},"id":"8844c0a263fffff-13bef3ec97f39d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262248e3-13b692c455dfc8e8","8f44c0a2630bb59-13b6813fab3341fd"]},"geometry":{"type":"LineString","coordinates":[[-83.68716110000001,32.855271300000005],[-83.68778300000001,32.85528]]},"id":"8944c0a2633ffff-13b7d201fe857924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a38cd92-13f74201097a96e0","8f44c0b0a39cc51-13ff64eb4a3f088e"]},"geometry":{"type":"LineString","coordinates":[[-83.712494,32.828533],[-83.713688,32.828546]]},"id":"8944c0b0a3bffff-13ff73762888a986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a3a9060-13ff7f10837e88aa","8f44c0b0a38cd92-13f74201097a96e0"]},"geometry":{"type":"LineString","coordinates":[[-83.713688,32.828546],[-83.714892,32.828559000000006]]},"id":"8944c0b0a3bffff-13f75088cc9e37c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35b0624e-13d7b09c0d147bf0","8f44c0a3586b106-179ef342c03aae6d"]},"geometry":{"type":"LineString","coordinates":[[-83.667298,32.850327],[-83.667522,32.850403],[-83.66762800000001,32.850456],[-83.667759,32.850549],[-83.667923,32.850686],[-83.66812800000001,32.850918],[-83.668233,32.851083],[-83.668327,32.851252],[-83.66839200000001,32.851501],[-83.668419,32.851723],[-83.668407,32.851902],[-83.668384,32.852021]]},"id":"8744c0a35ffffff-17dff16761cf779e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35b0624e-13d7b09c0d147bf0","8f44c0a35bae271-17d6b59ac169ebd1"]},"geometry":{"type":"LineString","coordinates":[[-83.668384,32.852021],[-83.668346,32.852137],[-83.668271,32.8523],[-83.66815600000001,32.852499],[-83.66802,32.852666],[-83.667967,32.852722],[-83.66789200000001,32.852781],[-83.66775700000001,32.852863],[-83.667646,32.852916],[-83.66744200000001,32.852987],[-83.667393,32.852995],[-83.667258,32.853019],[-83.667073,32.853022],[-83.66685700000001,32.852995],[-83.66633800000001,32.852848]]},"id":"8844c0a35bfffff-179fb2c16a6bfb62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35bae271-17d6b59ac169ebd1","8f44c0a35b85323-17d6b6d3459baede"]},"geometry":{"type":"LineString","coordinates":[[-83.66633800000001,32.852848],[-83.66615300000001,32.852838000000006],[-83.666049,32.85284],[-83.665926,32.852851],[-83.66583800000001,32.852845]]},"id":"8944c0a35bbffff-17d7f63717377eee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679164,32.828178]},"id":"8f44c0b19408504-139fd64a8bf81f8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19408504-139fd64a8bf81f8a","8f44c0b1940560b-17d6d6624473184d"]},"geometry":{"type":"LineString","coordinates":[[-83.679164,32.828178],[-83.67912600000001,32.827242000000005]]},"id":"8944c0b1943ffff-17f6d6566ae04fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19422bb2-13f7f6746732b797","8f44c0b1940560b-17d6d6624473184d"]},"geometry":{"type":"LineString","coordinates":[[-83.67912600000001,32.827242000000005],[-83.679097,32.826271000000006]]},"id":"8944c0b1943ffff-1796d66b548fc6c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19422bb2-13f7f6746732b797","8f44c0b195186d0-1396b763c6911222"]},"geometry":{"type":"LineString","coordinates":[[-83.679097,32.826271000000006],[-83.67909300000001,32.825895],[-83.679066,32.825769],[-83.679027,32.825691],[-83.678949,32.825592],[-83.678714,32.825325]]},"id":"8844c0b195fffff-13b7f6b7ac1ac2d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64137600000001,32.802405]},"id":"8f44c0badb59c86-139ff28c0608ee7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb5c20c-139ef27bc7c63c1c","8f44c0badb59c86-139ff28c0608ee7f"]},"geometry":{"type":"LineString","coordinates":[[-83.64137600000001,32.802405],[-83.641402,32.801962]]},"id":"8a44c0badb5ffff-1396f283e3e7ff3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb7020d-1797f273a4306bff","8f44c0badb5c20c-139ef27bc7c63c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.641402,32.801962],[-83.641396,32.801687],[-83.6414,32.800862],[-83.64141500000001,32.800345]]},"id":"8944c0badb7ffff-1796f27c42986be9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.765202,32.831359]},"id":"8f44c0b724d8daa-17dfe43cc14a135c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b724d8daa-17dfe43cc14a135c","8f44c0b724aea8b-17ffc5aa6a8c7005"]},"geometry":{"type":"LineString","coordinates":[[-83.765202,32.831359],[-83.765088,32.830706],[-83.765056,32.830553],[-83.76500800000001,32.830441],[-83.76480600000001,32.830103],[-83.764705,32.829925],[-83.764644,32.829797],[-83.764576,32.829638],[-83.76452,32.829492],[-83.764492,32.829375],[-83.76447900000001,32.828896],[-83.76448500000001,32.82876],[-83.76450600000001,32.828569],[-83.764548,32.828391],[-83.764617,32.828158]]},"id":"8844c0b725fffff-13fdc5539cbecdb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76712500000001,32.828148]},"id":"8f44c0b7240ed45-17fdbf8aeef3c5ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b7240ed45-17fdbf8aeef3c5ea","8f44c0b724aea8b-17ffc5aa6a8c7005"]},"geometry":{"type":"LineString","coordinates":[[-83.764617,32.828158],[-83.76477100000001,32.828203],[-83.765021,32.828288],[-83.76519,32.828356],[-83.76568800000001,32.82858],[-83.76575600000001,32.828604],[-83.765833,32.828619],[-83.7659,32.82862],[-83.76600400000001,32.828612],[-83.76604400000001,32.828605],[-83.766102,32.828587],[-83.76685,32.828282],[-83.766962,32.828232],[-83.76712500000001,32.828148]]},"id":"8844c0b725fffff-1397d29646669919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769034,32.828425]},"id":"8f44c0b72474301-13b5bae1c40f9bb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b7240ed45-17fdbf8aeef3c5ea","8f44c0b72474301-13b5bae1c40f9bb2"]},"geometry":{"type":"LineString","coordinates":[[-83.76712500000001,32.828148],[-83.767228,32.828153],[-83.767345,32.82818],[-83.767442,32.828195],[-83.76757,32.828196000000005],[-83.76777700000001,32.828226],[-83.767932,32.828257],[-83.768038,32.828311],[-83.76815,32.828339],[-83.76849100000001,32.828392],[-83.76889600000001,32.828448],[-83.768974,32.828452],[-83.769034,32.828425]]},"id":"8844c0b725fffff-13dfbd357d3c4242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b7240ed45-17fdbf8aeef3c5ea","8f44c0b72401059-1795ff23c73e2737"]},"geometry":{"type":"LineString","coordinates":[[-83.76712500000001,32.828148],[-83.76716300000001,32.828083],[-83.767252,32.827997],[-83.76729,32.827962]]},"id":"8944c0b7243ffff-17bfff5b1562fad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72474301-13b5bae1c40f9bb2","8f44c0b72401059-1795ff23c73e2737"]},"geometry":{"type":"LineString","coordinates":[[-83.76729,32.827962],[-83.767358,32.8279],[-83.767447,32.827834],[-83.76759100000001,32.827737],[-83.76765,32.827719],[-83.767762,32.827709],[-83.768336,32.827703],[-83.768416,32.827695],[-83.76855400000001,32.827654],[-83.76886300000001,32.827509],[-83.768939,32.827468],[-83.769006,32.827422],[-83.769047,32.827399],[-83.769084,32.827394000000005],[-83.76912800000001,32.827406],[-83.769177,32.827437],[-83.76920000000001,32.827470000000005],[-83.769211,32.827517],[-83.769198,32.827553],[-83.769119,32.827606],[-83.76874000000001,32.82783],[-83.76871100000001,32.827868],[-83.768703,32.827903],[-83.768714,32.827945],[-83.768754,32.828007],[-83.76900400000001,32.82836],[-83.769034,32.828425]]},"id":"8844c0b725fffff-1795fc2a91d0bfdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769515,32.82873]},"id":"8f44c0b72475a5c-13f5f9b52d310cc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72475a5c-13f5f9b52d310cc4","8f44c0b72474301-13b5bae1c40f9bb2"]},"geometry":{"type":"LineString","coordinates":[[-83.769034,32.828425],[-83.769158,32.828637],[-83.76922900000001,32.828834],[-83.769259,32.828868],[-83.76928600000001,32.828882],[-83.769311,32.828882],[-83.76934200000001,32.82887],[-83.769515,32.82873]]},"id":"8944c0b7247ffff-13ddfa5f381d1c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36013444-17f730c928756385","8f44c0a36011cac-17b7af978db63dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.61588300000001,32.84388],[-83.6162434,32.8437052],[-83.616372,32.843604]]},"id":"8a44c0a36017fff-1797702c3f282580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6169411,32.8430162]},"id":"8f44c0a36006d91-17d72e33d178fc8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36006d91-17d72e33d178fc8a","8f44c0a36011cac-17b7af978db63dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.616372,32.843604],[-83.61645800000001,32.843516],[-83.6167796,32.8431372],[-83.616884,32.8430361],[-83.6169411,32.8430162]]},"id":"8944c0a3603ffff-17f7beeb61f1cab1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36006d91-17d72e33d178fc8a","8f44c0a36006da1-17bf6e1c2437305a"]},"geometry":{"type":"LineString","coordinates":[[-83.6169411,32.8430162],[-83.616979,32.843002000000006]]},"id":"8d44c0a36006dbf-17d7be2808514d8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6173359,32.8430509]},"id":"8f44c0a36004580-17dffd3d1b196ee4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36006da1-17bf6e1c2437305a","8f44c0a36004580-17dffd3d1b196ee4"]},"geometry":{"type":"LineString","coordinates":[[-83.616979,32.843002000000006],[-83.61713200000001,32.843024],[-83.617225,32.8430376],[-83.6173359,32.8430509]]},"id":"8944c0a3603ffff-17df3dacb6648efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3600419c-17ff6ccfd4a5f2f3","8f44c0a36004580-17dffd3d1b196ee4"]},"geometry":{"type":"LineString","coordinates":[[-83.6173359,32.8430509],[-83.61751070000001,32.843074]]},"id":"8b44c0a36004fff-17f73d0675df307e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701537,32.891005]},"id":"8f44c0a23ad894a-13fe7fab62f962ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23ac1ae3-13de5d018a8349ab","8f44c0a23ad894a-13fe7fab62f962ec"]},"geometry":{"type":"LineString","coordinates":[[-83.702628,32.89056],[-83.701537,32.891005]]},"id":"8944c0a23afffff-13f75e567a17b47a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699413,32.891897]},"id":"8f44c0a233088e2-139fe4dae42fac90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23ad894a-13fe7fab62f962ec","8f44c0a233088e2-139fe4dae42fac90"]},"geometry":{"type":"LineString","coordinates":[[-83.701537,32.891005],[-83.700738,32.89134],[-83.699413,32.891897]]},"id":"8744c0a23ffffff-1396e2433a1a6b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727828,32.909104]},"id":"8f44c0a28d71c61-179e1f7b8b39716e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d71c61-179e1f7b8b39716e","8f44c0a288966ec-17bfbd0b26000255"]},"geometry":{"type":"LineString","coordinates":[[-83.72882700000001,32.912025],[-83.72873600000001,32.912005],[-83.72838300000001,32.911951],[-83.728166,32.911893],[-83.728075,32.911856],[-83.728009,32.911817],[-83.72789300000001,32.911707],[-83.72784100000001,32.911638],[-83.727812,32.911578],[-83.727795,32.91151],[-83.727777,32.911412],[-83.72777400000001,32.91123],[-83.72778500000001,32.910539],[-83.72779,32.909574],[-83.7278,32.909354],[-83.727828,32.909104]]},"id":"8844c0a28dfffff-13d65f338bfb20b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729426,32.907573]},"id":"8f44c0a2c6cc58d-13f73b94ce82409b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d71c61-179e1f7b8b39716e","8f44c0a2c6cc58d-13f73b94ce82409b"]},"geometry":{"type":"LineString","coordinates":[[-83.727828,32.909104],[-83.727901,32.908958000000005],[-83.727996,32.908797],[-83.72839300000001,32.908183],[-83.72840500000001,32.908164],[-83.72847800000001,32.908067],[-83.728559,32.907971],[-83.72867600000001,32.907885],[-83.72881600000001,32.907812],[-83.729426,32.907573]]},"id":"8744c0a28ffffff-13fe9dd0a7dd23b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4f1424-17f75920a7d0fbbb","8f44c0b0c4e270d-17ff37b125b0ae72"]},"geometry":{"type":"LineString","coordinates":[[-83.731019,32.797845],[-83.73066100000001,32.797838],[-83.730517,32.797818],[-83.73043100000001,32.797810000000005]]},"id":"8944c0b0c4fffff-17f658693e8cd75b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4f1424-17f75920a7d0fbbb","8f44c0b0c48b56b-17f73d53a4573895"]},"geometry":{"type":"LineString","coordinates":[[-83.73043100000001,32.797810000000005],[-83.730106,32.797812],[-83.729781,32.797834],[-83.728711,32.797829]]},"id":"8844c0b0c5fffff-17f75b3a043ca5fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c48244e-13bfdfc40573447e","8f44c0b0c48b56b-17f73d53a4573895"]},"geometry":{"type":"LineString","coordinates":[[-83.728711,32.797829],[-83.727908,32.797825],[-83.727827,32.797821],[-83.727753,32.797812],[-83.727636,32.797777],[-83.72758400000001,32.797752],[-83.727497,32.797686],[-83.727444,32.797626],[-83.727411,32.797575],[-83.72739200000001,32.797521],[-83.727373,32.797435],[-83.72725600000001,32.796736],[-83.727396,32.796692],[-83.72745400000001,32.796669],[-83.727502,32.796639],[-83.72771200000001,32.796486]]},"id":"8844c0b0c5fffff-17d7bfc6024d43b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63752600000001,32.831712]},"id":"8f44c0a34c0895e-13befbf24c514af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c0895e-13befbf24c514af8","8f44c0a34d5c6d1-17dff75fb34591dd"]},"geometry":{"type":"LineString","coordinates":[[-83.63752600000001,32.831712],[-83.6393989,32.8307708]]},"id":"8844c0a34dfffff-1797f9a904677efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63962500000001,32.830663]},"id":"8f44c0a34d5c311-179ef6d265e9353a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d5c6d1-17dff75fb34591dd","8f44c0a34d5c311-179ef6d265e9353a"]},"geometry":{"type":"LineString","coordinates":[[-83.6393989,32.8307708],[-83.63951700000001,32.830712000000005],[-83.6395572,32.8306938],[-83.63962500000001,32.830663]]},"id":"8a44c0a34d5ffff-17bff7195f258db7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996177,32.8149174]},"id":"8f44c0b1d2297ae-17bf645af0930a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d22bd80-17bff58b79e0e9dd","8f44c0b1d2297ae-17bf645af0930a4b"]},"geometry":{"type":"LineString","coordinates":[[-83.69913050000001,32.8147387],[-83.69961,32.814915],[-83.6996177,32.8149174]]},"id":"8a44c0b1d22ffff-17f7e4f3449d1b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274d50-17d66344a457eb6a","8f44c0b1d2297ae-17bf645af0930a4b"]},"geometry":{"type":"LineString","coordinates":[[-83.6996177,32.8149174],[-83.699769,32.814964],[-83.700063,32.8149856]]},"id":"8844c0b1d3fffff-17d7f3d128feacc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7001918,32.814995]},"id":"8f44c0b1d274832-17dfe2f4263878b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274d50-17d66344a457eb6a","8f44c0b1d274832-17dfe2f4263878b1"]},"geometry":{"type":"LineString","coordinates":[[-83.700063,32.8149856],[-83.7001918,32.814995]]},"id":"8b44c0b1d274fff-17def31c6fa50bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35b16d-17f6f1bca5e1cf59","8f44c0b1d274832-17dfe2f4263878b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7001918,32.814995],[-83.70069020000001,32.8150315]]},"id":"8a44c0b1d35ffff-17f7725860b40a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70084100000001,32.815061]},"id":"8f44c0b1d35bb43-1397615e6b401373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35bb43-1397615e6b401373","8f44c0b1d35b16d-17f6f1bca5e1cf59"]},"geometry":{"type":"LineString","coordinates":[[-83.70069020000001,32.8150315],[-83.700792,32.815039],[-83.70084100000001,32.815061]]},"id":"8c44c0b1d35bbff-17fe718c992e0efe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35bb43-1397615e6b401373","8f44c0b1d2629a1-13de613c035089ba"]},"geometry":{"type":"LineString","coordinates":[[-83.70084100000001,32.815061],[-83.70088000000001,32.8151],[-83.700889,32.815164],[-83.700888,32.815503],[-83.700896,32.81561]]},"id":"8844c0b1d3fffff-13be714242098d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2654d1-13f75f9eab44fd5c","8f44c0b1d2629a1-13de613c035089ba"]},"geometry":{"type":"LineString","coordinates":[[-83.700896,32.81561],[-83.700981,32.81562],[-83.7015574,32.8156496]]},"id":"8a44c0b1d267fff-13fe606d7d125897"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d265a5e-13975e877d26f4c5","8f44c0b1d2654d1-13f75f9eab44fd5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7015574,32.8156496],[-83.70200410000001,32.815672500000005]]},"id":"8b44c0b1d265fff-13fe7f130fe6a0df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70227270000001,32.8156863]},"id":"8f44c0b0ac96299-139ffddf9644a91f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac96299-139ffddf9644a91f","8f44c0b1d265a5e-13975e877d26f4c5"]},"geometry":{"type":"LineString","coordinates":[[-83.70200410000001,32.815672500000005],[-83.70227270000001,32.8156863]]},"id":"8a44c0b0ac97fff-1397fe33800afd3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac96299-139ffddf9644a91f","8f44c0b0ac908e6-139efcc9c6d2639c"]},"geometry":{"type":"LineString","coordinates":[[-83.70227270000001,32.8156863],[-83.70271720000001,32.8157099]]},"id":"8a44c0b0ac97fff-13975d54a79628cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7031697,32.815734]},"id":"8f44c0b0ac95060-13bfdbaef690fe9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac95060-13bfdbaef690fe9b","8f44c0b0ac908e6-139efcc9c6d2639c"]},"geometry":{"type":"LineString","coordinates":[[-83.70271720000001,32.8157099],[-83.7031697,32.815734]]},"id":"8a44c0b0ac97fff-13b65c3c5b85bad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac95060-13bfdbaef690fe9b","8f44c0b0ac86684-13b67b14631ff830"]},"geometry":{"type":"LineString","coordinates":[[-83.7031697,32.815734],[-83.703417,32.815747900000005]]},"id":"8944c0b0acbffff-13be7b61b4908d71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac86684-13b67b14631ff830","8f44c0b0ac80c05-13d7f9fef2410ef1"]},"geometry":{"type":"LineString","coordinates":[[-83.703417,32.815747900000005],[-83.70386090000001,32.8157726]]},"id":"8a44c0b0ac87fff-13be7a89b97c1cae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7045109,32.8157755]},"id":"8f44c0b0ac858ca-13d7f868b9c09d71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac858ca-13d7f868b9c09d71","8f44c0b0ac80c05-13d7f9fef2410ef1"]},"geometry":{"type":"LineString","coordinates":[[-83.70386090000001,32.8157726],[-83.70390300000001,32.815775],[-83.70431500000001,32.815784],[-83.7045109,32.8157755]]},"id":"8a44c0b0ac87fff-13d65933dfec64f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70533180000001,32.81573]},"id":"8f44c0b0acac755-13b75667a0e28894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac858ca-13d7f868b9c09d71","8f44c0b0acac755-13b75667a0e28894"]},"geometry":{"type":"LineString","coordinates":[[-83.7045109,32.8157755],[-83.704661,32.815769],[-83.705183,32.815736],[-83.70533180000001,32.81573]]},"id":"8944c0b0acbffff-13b7776833cc431a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059431,32.815742400000005]},"id":"8f44c0b0ac132c8-13bf54e9907bc1ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac132c8-13bf54e9907bc1ea","8f44c0b0acac755-13b75667a0e28894"]},"geometry":{"type":"LineString","coordinates":[[-83.70533180000001,32.81573],[-83.705482,32.815724],[-83.7059431,32.815742400000005]]},"id":"8844c0b0adfffff-13be55a8aa77bc02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068934,32.8153382]},"id":"8f44c0b0ac0206e-13b67297a7554fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac0206e-13b67297a7554fba","8f44c0b0ac132c8-13bf54e9907bc1ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7059431,32.815742400000005],[-83.706585,32.815768],[-83.70663400000001,32.815762],[-83.706674,32.815744],[-83.706727,32.815694],[-83.706744,32.815539],[-83.706771,32.815441],[-83.706843,32.815365],[-83.7068934,32.8153382]]},"id":"8944c0b0ac3ffff-13fef391f0529524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70719910000001,32.8153043]},"id":"8f44c0b0ac00635-139f71d8983e7c0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac0206e-13b67297a7554fba","8f44c0b0ac00635-139f71d8983e7c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.7068934,32.8153382],[-83.706922,32.815323],[-83.70702,32.815302],[-83.707119,32.815299],[-83.70719910000001,32.8153043]]},"id":"8a44c0b0ac07fff-139f723971365954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707779,32.815207]},"id":"8f44c0b0ac0576d-13f6706e232f8cae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0ac0576d-13f6706e232f8cae","8f44c0b0ac00635-139f71d8983e7c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.70719910000001,32.8153043],[-83.707345,32.815314],[-83.70746000000001,32.815314],[-83.707499,32.815309],[-83.707779,32.815207]]},"id":"8a44c0b0ac07fff-13975120a99f7d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65222,32.838113]},"id":"8f44c0a34b50d64-13def812871bc4c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65316800000001,32.836951]},"id":"8f44c0a34b74a9c-17f6f5c203504217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b50d64-13def812871bc4c4","8f44c0a34b74a9c-17f6f5c203504217"]},"geometry":{"type":"LineString","coordinates":[[-83.65222,32.838113],[-83.65316800000001,32.836951]]},"id":"8944c0a34b7ffff-17f7d6ea42c71d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b74a9c-17f6f5c203504217","8f44c0b1b4dbd24-17ffd4fb417f0560"]},"geometry":{"type":"LineString","coordinates":[[-83.65316800000001,32.836951],[-83.653486,32.836556]]},"id":"8844c0a34bfffff-17fef55ea826d780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653784,32.836187]},"id":"8f44c0b1b4d890e-139ef4410ca900be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4d890e-139ef4410ca900be","8f44c0b1b4dbd24-17ffd4fb417f0560"]},"geometry":{"type":"LineString","coordinates":[[-83.653486,32.836556],[-83.653784,32.836187]]},"id":"8a44c0b1b4dffff-179ef49e2ebed6dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653999,32.835906]},"id":"8f44c0b1b4dcb0e-13ffd3baa469c84f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4dcb0e-13ffd3baa469c84f","8f44c0b1b4d890e-139ef4410ca900be"]},"geometry":{"type":"LineString","coordinates":[[-83.653784,32.836187],[-83.653999,32.835906]]},"id":"8a44c0b1b4dffff-13d7d3fdd1721b55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69071500000001,32.779058]},"id":"8f44c0b03c93558-139f7a17243291ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c93558-139f7a17243291ae","8f44c0b03c91728-139ff8bcefde6137"]},"geometry":{"type":"LineString","coordinates":[[-83.69071500000001,32.779058],[-83.691269,32.779049]]},"id":"8a44c0b03c97fff-139e796a0ff7d63c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03cab580-139e73ea8670b822","8f44c0b03c91728-139ff8bcefde6137"]},"geometry":{"type":"LineString","coordinates":[[-83.691269,32.779049],[-83.692103,32.779055],[-83.69256,32.779052],[-83.692802,32.779072],[-83.692936,32.779107],[-83.693036,32.779138],[-83.69317500000001,32.779196],[-83.693244,32.779232]]},"id":"8944c0b03cbffff-13bff64bf8eba05c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693927,32.779905]},"id":"8f44c0b03cf296d-13b6f23fa3df5687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03cf296d-13b6f23fa3df5687","8f44c0b03cab580-139e73ea8670b822"]},"geometry":{"type":"LineString","coordinates":[[-83.693244,32.779232],[-83.693402,32.779342],[-83.69355900000001,32.779497],[-83.693927,32.779905]]},"id":"8844c0b03dfffff-13d7730cc5a61409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03cf296d-13b6f23fa3df5687","8f44c0b03c426c9-13f66958ed20f7dd"]},"geometry":{"type":"LineString","coordinates":[[-83.693927,32.779905],[-83.694007,32.780001],[-83.694152,32.780161],[-83.694276,32.780282],[-83.6943,32.780299],[-83.69441,32.780377],[-83.69459400000001,32.780476],[-83.694736,32.780531],[-83.69480700000001,32.780554],[-83.694997,32.780593],[-83.69509400000001,32.780605],[-83.697573,32.780631]]},"id":"8844c0b03dfffff-13bffe073bf9f9dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.554815,32.841478]},"id":"8f44c0b8e059483-1397c5e0a1c877cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55508800000001,32.840524]},"id":"8f44c0b8e0435a0-17bfc53605c54b60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0435a0-17bfc53605c54b60","8f44c0b8e059483-1397c5e0a1c877cf"]},"geometry":{"type":"LineString","coordinates":[[-83.554815,32.841478],[-83.554877,32.841157],[-83.55508800000001,32.840524]]},"id":"8944c0b8e07ffff-17d7e59402ad1432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0435a0-17bfc53605c54b60","8f44c0b8e070da6-13b7e621a7b3ab35"]},"geometry":{"type":"LineString","coordinates":[[-83.55508800000001,32.840524],[-83.555379,32.839776],[-83.555417,32.839621],[-83.555368,32.839438],[-83.55531500000001,32.83937],[-83.55471100000001,32.838861]]},"id":"8944c0b8e07ffff-13ffe4fc8af9efa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e070da6-13b7e621a7b3ab35","8f44c0b8e00519c-17f7c9758cd14829"]},"geometry":{"type":"LineString","coordinates":[[-83.55471100000001,32.838861],[-83.553458,32.837814],[-83.553348,32.837746]]},"id":"8844c0b8e1fffff-13bfe7c87cb7e955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5528477,32.8366567]},"id":"8f44c0b8e03510d-17bffaae3b55e942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e03510d-17bffaae3b55e942","8f44c0b8e00519c-17f7c9758cd14829"]},"geometry":{"type":"LineString","coordinates":[[-83.553348,32.837746],[-83.553205,32.837536],[-83.5528477,32.8366567]]},"id":"8944c0b8e03ffff-179fea1d887da0a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6832873,32.822593000000005]},"id":"8f44c0b19ce2a9e-13feac3973e704e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ce2a9e-13feac3973e704e5","8f44c0b19ce345e-13b6ebfc62397e1c"]},"geometry":{"type":"LineString","coordinates":[[-83.683385,32.822919],[-83.68328600000001,32.822741],[-83.6832873,32.822593000000005]]},"id":"8a44c0b19ce7fff-13d7ec2835d484fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683299,32.821261]},"id":"8f44c0b19c1d481-17beac3229b41b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ce2a9e-13feac3973e704e5","8f44c0b19c1d481-17beac3229b41b27"]},"geometry":{"type":"LineString","coordinates":[[-83.6832873,32.822593000000005],[-83.683299,32.821261]]},"id":"8844c0b19dfffff-13deec35d398e4e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68334700000001,32.819604000000005]},"id":"8f44c0b19c31415-139e8c14242b5983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c1d481-17beac3229b41b27","8f44c0b19c31415-139e8c14242b5983"]},"geometry":{"type":"LineString","coordinates":[[-83.683299,32.821261],[-83.68334700000001,32.819604000000005]]},"id":"8944c0b19c3ffff-17b6dc2328d0dd72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63790900000001,32.837012]},"id":"8f44c0a34198b1e-179efb02ebbef07a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419ecf2-179ffca69c994c94","8f44c0a34198b1e-179efb02ebbef07a"]},"geometry":{"type":"LineString","coordinates":[[-83.63790900000001,32.837012],[-83.63723750000001,32.8366041]]},"id":"8a44c0a3419ffff-179ffbd4c1c3ef8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6363934,32.836091200000006]},"id":"8f44c0a3419248a-13dffeb62567ecea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419248a-13dffeb62567ecea","8f44c0a3419ecf2-179ffca69c994c94"]},"geometry":{"type":"LineString","coordinates":[[-83.63723750000001,32.8366041],[-83.6363934,32.836091200000006]]},"id":"8744c0a34ffffff-13fffdae616603e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34566325-13b760b6e247375f","8f44c0a3419248a-13dffeb62567ecea"]},"geometry":{"type":"LineString","coordinates":[[-83.6363934,32.836091200000006],[-83.63557300000001,32.835591]]},"id":"8a44c0a34567fff-13d6ffb681c23e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719102,32.926355]},"id":"8f44c0a2869321a-17bff4c948162647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28693775-179eb504023d87ea","8f44c0a2869321a-17bff4c948162647"]},"geometry":{"type":"LineString","coordinates":[[-83.719102,32.926355],[-83.719008,32.926276]]},"id":"8b44c0a28693fff-17b734e6a729a1d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28693775-179eb504023d87ea","8f44c0a2869321a-17bff4c948162647"]},"geometry":{"type":"LineString","coordinates":[[-83.719008,32.926276],[-83.718967,32.926309],[-83.71881400000001,32.926494000000005],[-83.718642,32.92662],[-83.71847000000001,32.926802],[-83.71846000000001,32.926837],[-83.71847000000001,32.926867],[-83.718602,32.926951],[-83.718665,32.926941],[-83.718827,32.926747],[-83.718969,32.926634],[-83.719131,32.926488],[-83.71915100000001,32.926447],[-83.719144,32.926401000000006],[-83.719102,32.926355]]},"id":"8644c0a2fffffff-13f6f58911428a39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654826,32.810965]},"id":"8f44c0b1a959092-1797f1b5c8dd4836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a959092-1797f1b5c8dd4836","8f44c0b1e2c4671-13dece538e2dec87"]},"geometry":{"type":"LineString","coordinates":[[-83.654826,32.810965],[-83.654853,32.810853],[-83.654883,32.810771],[-83.654948,32.810671],[-83.65503500000001,32.810581],[-83.65534500000001,32.810291],[-83.655443,32.810181],[-83.65563300000001,32.809927],[-83.655738,32.809775],[-83.655855,32.809559],[-83.655922,32.809424],[-83.65598700000001,32.80926],[-83.656036,32.809092],[-83.65608200000001,32.808898],[-83.65617900000001,32.808325],[-83.65618900000001,32.807341],[-83.65621200000001,32.806362]]},"id":"8644c0b1fffffff-13b6ef338d94be28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e21cc33-17f7ce222490a6d8","8f44c0b1e2c4671-13dece538e2dec87"]},"geometry":{"type":"LineString","coordinates":[[-83.65621200000001,32.806362],[-83.65629100000001,32.80397]]},"id":"8844c0b1e3fffff-17dece3ad43d4e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65628600000001,32.802948]},"id":"8f44c0b1e23302a-13f6ce254a7982e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e21cc33-17f7ce222490a6d8","8f44c0b1e23302a-13f6ce254a7982e9"]},"geometry":{"type":"LineString","coordinates":[[-83.65629100000001,32.80397],[-83.65628600000001,32.802948]]},"id":"8944c0b1e23ffff-13b7ee23b49eb682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.782026,32.798985]},"id":"8f44c0b76d6a1aa-13d5bb29cab74679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b76d6a1aa-13d5bb29cab74679","8f44c0b76595481-17bdfa7786ad2d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.782026,32.798985],[-83.780325,32.798808],[-83.780134,32.798808],[-83.78001,32.798818000000004],[-83.779773,32.798884],[-83.77699000000001,32.800162],[-83.77488000000001,32.801174],[-83.772361,32.802377],[-83.771603,32.80274],[-83.770043,32.803472],[-83.769204,32.803862]]},"id":"8744c0b76ffffff-179dbb06893a9e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b76590bb5-17dfbab6a257e560","8f44c0b76595481-17bdfa7786ad2d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.769204,32.803862],[-83.769103,32.803908]]},"id":"8a44c0b76597fff-17bdba97103ec42d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768967,32.8042274]},"id":"8f44c0b76593824-1797bb0bac233113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b76590bb5-17dfbab6a257e560","8f44c0b76593824-1797bb0bac233113"]},"geometry":{"type":"LineString","coordinates":[[-83.769103,32.803908],[-83.7690173,32.804015500000006],[-83.7689758,32.8041357],[-83.768967,32.8042274]]},"id":"8a44c0b76597fff-17bdfaede2e5e57c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653976,32.79177]},"id":"8f44c0b1e126776-17bed3c90217314b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e101d00-13def3d4e02078f7","8f44c0b1e126776-17bed3c90217314b"]},"geometry":{"type":"LineString","coordinates":[[-83.653957,32.793083],[-83.65396000000001,32.792594],[-83.653976,32.79177]]},"id":"8944c0b1e13ffff-13d6d3d03f2c91f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e126776-17bed3c90217314b","8f44c0b1e89c16b-1797f3b64020f681"]},"geometry":{"type":"LineString","coordinates":[[-83.653976,32.79177],[-83.65400600000001,32.790483]]},"id":"8744c0b1effffff-1796d3bfa6f87907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654031,32.789191]},"id":"8f44c0b1e8b1485-13def3a6ac26d320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8b1485-13def3a6ac26d320","8f44c0b1e89c16b-1797f3b64020f681"]},"geometry":{"type":"LineString","coordinates":[[-83.65400600000001,32.790483],[-83.654031,32.789191]]},"id":"8944c0b1e8bffff-13f6f3ae7fce8801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8b1485-13def3a6ac26d320","8f44c0b1e99acc4-17b7d395c4a77b3c"]},"geometry":{"type":"LineString","coordinates":[[-83.654031,32.789191],[-83.654058,32.7879]]},"id":"8844c0b1e9fffff-17def39e3cac8e29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65408000000001,32.786591]},"id":"8f44c0b1e9946e9-1397f38801a44931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e9946e9-1397f38801a44931","8f44c0b1e99acc4-17b7d395c4a77b3c"]},"geometry":{"type":"LineString","coordinates":[[-83.654058,32.7879],[-83.654072,32.787416],[-83.65408000000001,32.786591]]},"id":"8944c0b1e9bffff-179ed38d1cbf01d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654099,32.785311]},"id":"8f44c0b116eb38c-17f7f37c262518cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e9946e9-1397f38801a44931","8f44c0b116eb38c-17f7f37c262518cc"]},"geometry":{"type":"LineString","coordinates":[[-83.65408000000001,32.786591],[-83.65409700000001,32.78586],[-83.654099,32.785311]]},"id":"8744c0b1effffff-13f7f38025cb624a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65412,32.784025]},"id":"8f44c0b116e1a0e-17bff36f0bab6257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116e1a0e-17bff36f0bab6257","8f44c0b116eb38c-17f7f37c262518cc"]},"geometry":{"type":"LineString","coordinates":[[-83.654099,32.785311],[-83.65411,32.785125],[-83.65411900000001,32.784574],[-83.65412,32.784025]]},"id":"8944c0b116fffff-17d7d372005f1334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116e1a0e-17bff36f0bab6257","8f44c0b11608464-1397d34d44fa72c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65412,32.784025],[-83.65415,32.783248],[-83.65415,32.782809],[-83.65417400000001,32.782700000000006]]},"id":"8844c0b117fffff-13b6f3612ed6bd7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1160eb18-13b7f3696a648a52","8f44c0b11608464-1397d34d44fa72c2"]},"geometry":{"type":"LineString","coordinates":[[-83.65417400000001,32.782700000000006],[-83.65412900000001,32.782345]]},"id":"8a44c0b1160ffff-1396d35b5eca3e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.592352,32.866118]},"id":"8f44c0b898c0b99-17bfea3c05968d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.593185,32.866816]},"id":"8f44c0b898cca62-17f7683367d34e39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898cca62-17f7683367d34e39","8f44c0b898c0b99-17bfea3c05968d38"]},"geometry":{"type":"LineString","coordinates":[[-83.592352,32.866118],[-83.593185,32.866816]]},"id":"8944c0b898fffff-1797e937b1a26af9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898cca62-17f7683367d34e39","8f44c0b89bb0686-17ff6652219e493a"]},"geometry":{"type":"LineString","coordinates":[[-83.593185,32.866816],[-83.59395500000001,32.867469]]},"id":"8744c0b89ffffff-17bf7742cbbd813b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32891a6e-13b7b902225d9a1c","8f44c0a32898119-17d7f90866e5b4de"]},"geometry":{"type":"LineString","coordinates":[[-83.612505,32.859598000000005],[-83.612515,32.858932]]},"id":"8944c0a328bffff-13f7b90541b8e57f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32891a6e-13b7b902225d9a1c","8f44c0a3289590d-13ff78fdc56719f6"]},"geometry":{"type":"LineString","coordinates":[[-83.612515,32.858932],[-83.612522,32.858263]]},"id":"8a44c0a32897fff-13df78fffbbf38b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328b06e9-13d7f8f787f94db9","8f44c0a3289590d-13ff78fdc56719f6"]},"geometry":{"type":"LineString","coordinates":[[-83.612522,32.858263],[-83.612532,32.857787]]},"id":"8944c0a328bffff-13ffb8faa3102f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612542,32.856704]},"id":"8f44c0a32d69866-17b738f14be1db6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328b06e9-13d7f8f787f94db9","8f44c0a32d69866-17b738f14be1db6a"]},"geometry":{"type":"LineString","coordinates":[[-83.612532,32.857787],[-83.612542,32.856704]]},"id":"8844c0a329fffff-179778f46653fb17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32996360-13df78e9c9836646","8f44c0a32d69866-17b738f14be1db6a"]},"geometry":{"type":"LineString","coordinates":[[-83.612542,32.856704],[-83.61255,32.856408],[-83.612554,32.855314]]},"id":"8844c0a329fffff-13ffb8ebdce67803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32996360-13df78e9c9836646","8f44c0a366eb4e1-17fff8e10536261e"]},"geometry":{"type":"LineString","coordinates":[[-83.612554,32.855314],[-83.61256800000001,32.8539358]]},"id":"8744c0a32ffffff-139fb8e56b878d7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366ea361-17dff8e03f126d14","8f44c0a366eb4e1-17fff8e10536261e"]},"geometry":{"type":"LineString","coordinates":[[-83.61256800000001,32.8539358],[-83.6125693,32.853703800000005]]},"id":"8a44c0a366effff-17b778e09629b43c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366ea361-17dff8e03f126d14","8f44c0a366e1085-13fff8dcb7f5bf60"]},"geometry":{"type":"LineString","coordinates":[[-83.6125693,32.853703800000005],[-83.6125749,32.852726000000004]]},"id":"8944c0a366fffff-17bf78de72e5223f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.612576,32.852525]},"id":"8f44c0a366e1d0b-13ff38dc0003e432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e1d0b-13ff38dc0003e432","8f44c0a366e1085-13fff8dcb7f5bf60"]},"geometry":{"type":"LineString","coordinates":[[-83.6125749,32.852726000000004],[-83.612576,32.852525]]},"id":"8b44c0a366e1fff-13bff8dc54edb649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e496e-13b7b8d3eb6a4718","8f44c0a366e1d0b-13ff38dc0003e432"]},"geometry":{"type":"LineString","coordinates":[[-83.612576,32.852525],[-83.612589,32.851793]]},"id":"8844c0a367fffff-139778d7f5223892"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e496e-13b7b8d3eb6a4718","8f44c0a3660e016-17f7b8c800cc6710"]},"geometry":{"type":"LineString","coordinates":[[-83.612589,32.851793],[-83.61260800000001,32.851081]]},"id":"8a44c0a3660ffff-13d738cdf14151cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61262500000001,32.850579]},"id":"8f44c0a3660152d-17bff8bd661a8c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3660e016-17f7b8c800cc6710","8f44c0a3660152d-17bff8bd661a8c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.61260800000001,32.851081],[-83.61262500000001,32.850579]]},"id":"8944c0a3663ffff-17dff8c2b7a67865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6126591,32.849651300000005]},"id":"8f44c0a3662229d-17ff38a81ef86dff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662229d-17ff38a81ef86dff","8f44c0a3660152d-17bff8bd661a8c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.61262500000001,32.850579],[-83.6126591,32.849651300000005]]},"id":"8944c0a3663ffff-179f38b2c01a27d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36622020-13ffb8a897da64be","8f44c0a3662229d-17ff38a81ef86dff"]},"geometry":{"type":"LineString","coordinates":[[-83.6126591,32.849651300000005],[-83.61265800000001,32.849485],[-83.6126583,32.849450700000006]]},"id":"8b44c0a36622fff-17bf78a87d74213c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627702,32.829858]},"id":"8f44c0ba9200873-17b753ee4ef92ed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9200873-17b753ee4ef92ed6","8f44c0ba922a3b3-17bf522ffca5f0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.627702,32.829858],[-83.62841610000001,32.8302757]]},"id":"8944c0ba923ffff-17b7d30f2b1b151d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba922a22c-17dfd1f511e84ba3","8f44c0ba922a3b3-17bf522ffca5f0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.62841610000001,32.8302757],[-83.6285103,32.8303309]]},"id":"8c44c0ba922a3ff-17bf921288a2107c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba922a22c-17dfd1f511e84ba3","8f44c0ba922a264-17dff1d7d3872051"]},"geometry":{"type":"LineString","coordinates":[[-83.6285103,32.8303309],[-83.62855710000001,32.8303582]]},"id":"8c44c0ba922a3ff-17d771e67dcaa0d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62929700000001,32.830813]},"id":"8f44c0ba9276b1a-17ff3009696d64a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9276b1a-17ff3009696d64a1","8f44c0ba922a264-17dff1d7d3872051"]},"geometry":{"type":"LineString","coordinates":[[-83.62855710000001,32.8303582],[-83.62929700000001,32.830813]]},"id":"8844c0ba93fffff-17ff10f09cdb0844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63000000000001,32.83124]},"id":"8f44c0ba92752a9-17970e520b474aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9276b1a-17ff3009696d64a1","8f44c0ba92752a9-17970e520b474aa3"]},"geometry":{"type":"LineString","coordinates":[[-83.62929700000001,32.830813],[-83.63000000000001,32.83124]]},"id":"8a44c0ba9277fff-17ff9f2db588713e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63081100000001,32.831733]},"id":"8f44c0ba9263aa1-13bf2c572b1d15f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9263aa1-13bf2c572b1d15f5","8f44c0ba92752a9-17970e520b474aa3"]},"geometry":{"type":"LineString","coordinates":[[-83.63000000000001,32.83124],[-83.63081100000001,32.831733]]},"id":"8944c0ba927ffff-139f1d5498df3120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6316266,32.832222800000004]},"id":"8f44c0ba926d4a4-13ff4a596699c0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9263aa1-13bf2c572b1d15f5","8f44c0ba926d4a4-13ff4a596699c0eb"]},"geometry":{"type":"LineString","coordinates":[[-83.63081100000001,32.831733],[-83.6316266,32.832222800000004]]},"id":"8944c0ba927ffff-13d73b58449b2400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba926d760-13bf09cf2bc54618","8f44c0ba926d4a4-13ff4a596699c0eb"]},"geometry":{"type":"LineString","coordinates":[[-83.6316266,32.832222800000004],[-83.6318478,32.8323568]]},"id":"8b44c0ba926dfff-13972a1444147cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba926d760-13bf09cf2bc54618","8f44c0a34c9a18e-13bf1902679c4861"]},"geometry":{"type":"LineString","coordinates":[[-83.6318478,32.8323568],[-83.63217540000001,32.8325553]]},"id":"8744c0a34ffffff-13ff1968c869c377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63233500000001,32.832652]},"id":"8f44c0a34c9a326-13f7889ea1f18362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c9a18e-13bf1902679c4861","8f44c0a34c9a326-13f7889ea1f18362"]},"geometry":{"type":"LineString","coordinates":[[-83.63217540000001,32.8325553],[-83.63233500000001,32.832652]]},"id":"8b44c0a34c9afff-13df58d089043f02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6330638,32.8330902]},"id":"8f44c0a3452682e-179f66d72c6ce4b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c9a326-13f7889ea1f18362","8f44c0a3452682e-179f66d72c6ce4b9"]},"geometry":{"type":"LineString","coordinates":[[-83.63233500000001,32.832652],[-83.6330638,32.8330902]]},"id":"8844c0a34dfffff-139777baeddc5346"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61210200000001,32.846777]},"id":"8f44c0a36714075-17f7ba04497ddb0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61267000000001,32.84677]},"id":"8f44c0a36733370-17ff78a142064616"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36733370-17ff78a142064616","8f44c0a36714075-17f7ba04497ddb0a"]},"geometry":{"type":"LineString","coordinates":[[-83.61210200000001,32.846777],[-83.61267000000001,32.84677]]},"id":"8944c0a3673ffff-17f77952cf5652f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613856,32.846778]},"id":"8f44c0a36723001-17f775bc067bcde3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36723001-17f775bc067bcde3","8f44c0a36733370-17ff78a142064616"]},"geometry":{"type":"LineString","coordinates":[[-83.61267000000001,32.84677],[-83.613856,32.846778]]},"id":"8944c0a3673ffff-17f7f72ea80e5fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61414900000001,32.846783]},"id":"8f44c0a367216b4-17f77504efc3916d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36723001-17f775bc067bcde3","8f44c0a367216b4-17f77504efc3916d"]},"geometry":{"type":"LineString","coordinates":[[-83.613856,32.846778],[-83.61414900000001,32.846783]]},"id":"8a44c0a36727fff-17f7f5607b35b451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59731500000001,32.863588]},"id":"8f44c0b89949c24-17ffde1e2642e2b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898cca62-17f7683367d34e39","8f44c0b89949c24-17ffde1e2642e2b0"]},"geometry":{"type":"LineString","coordinates":[[-83.59731500000001,32.863588],[-83.595325,32.864658],[-83.595094,32.864803],[-83.59490600000001,32.864947],[-83.594762,32.865088],[-83.59459100000001,32.865288],[-83.59382500000001,32.866225],[-83.59361,32.866462],[-83.593185,32.866816]]},"id":"8844c0b899fffff-139ff376c9424d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591409,32.868946]},"id":"8f44c0b891409b3-13976c8967dc68bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898cca62-17f7683367d34e39","8f44c0b891409b3-13976c8967dc68bc"]},"geometry":{"type":"LineString","coordinates":[[-83.593185,32.866816],[-83.59308,32.866919],[-83.592714,32.86723],[-83.59254700000001,32.867376],[-83.592391,32.867539],[-83.59216500000001,32.867829],[-83.592014,32.868038],[-83.59192300000001,32.868212],[-83.59184900000001,32.868395],[-83.59175900000001,32.868601000000005],[-83.59166900000001,32.86873],[-83.591538,32.868855],[-83.591409,32.868946]]},"id":"8744c0b89ffffff-13f7ea7d967769c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660537,32.859268]},"id":"8f44c0a35384a70-13f6c3c4652280e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35390d31-1796c8034d6fd6ce","8f44c0a35384a70-13f6c3c4652280e0"]},"geometry":{"type":"LineString","coordinates":[[-83.658798,32.859316],[-83.65958,32.859232],[-83.65994500000001,32.859208],[-83.660157,32.859205],[-83.66042200000001,32.859229],[-83.660537,32.859268]]},"id":"8944c0a353bffff-13f7d5e272105f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35384a70-13f6c3c4652280e0","8f44c0a353a8770-17fec1838ea8a5fd"]},"geometry":{"type":"LineString","coordinates":[[-83.660537,32.859268],[-83.660711,32.85933],[-83.660821,32.85938],[-83.66095200000001,32.859448],[-83.661207,32.859647],[-83.661339,32.85976],[-83.66146,32.859876]]},"id":"8944c0a353bffff-179ec294b826ca85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66212900000001,32.860784]},"id":"8f44c0a35230122-17b6bfe16313acf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a353a8770-17fec1838ea8a5fd","8f44c0a35230122-17b6bfe16313acf8"]},"geometry":{"type":"LineString","coordinates":[[-83.66146,32.859876],[-83.661687,32.860129],[-83.66185,32.860326],[-83.66208900000001,32.860635],[-83.66211100000001,32.860684],[-83.66212900000001,32.860784]]},"id":"8844c0a353fffff-17ffd09ebf548377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579153,32.847518]},"id":"8f44c0b8894abae-17d7ca756eca11e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b888515ab-17b7b00fca031f85","8f44c0b8894abae-17d7ca756eca11e8"]},"geometry":{"type":"LineString","coordinates":[[-83.579153,32.847518],[-83.578573,32.848028],[-83.57836900000001,32.848208],[-83.576937,32.849444000000005],[-83.576858,32.849545]]},"id":"8844c0b889fffff-13bf9d46adf5a600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b888515ab-17b7b00fca031f85","8f44c0b888e86f6-17d792852fb60c18"]},"geometry":{"type":"LineString","coordinates":[[-83.576858,32.849545],[-83.576712,32.849632],[-83.575941,32.850296],[-83.575851,32.850416]]},"id":"8844c0b889fffff-17bfb155b2a398c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575798,32.852764]},"id":"8f44c0b88b93044-179792a641e3d686"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b93044-179792a641e3d686","8f44c0b888e86f6-17d792852fb60c18"]},"geometry":{"type":"LineString","coordinates":[[-83.575851,32.850416],[-83.575726,32.850492],[-83.575011,32.851097],[-83.57494100000001,32.851208],[-83.57492400000001,32.851307000000006],[-83.57525600000001,32.852168],[-83.575333,32.852338],[-83.57544,32.852475000000005],[-83.57559900000001,32.852584],[-83.575708,32.852652],[-83.575798,32.852764]]},"id":"8744c0b88ffffff-139ff3d791dba5ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658951,32.813305]},"id":"8f44c0b18489b11-13bfe7a3afd40761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184d0612-1797e7ddc9abaf4e","8f44c0b18489b11-13bfe7a3afd40761"]},"geometry":{"type":"LineString","coordinates":[[-83.65885800000001,32.814245],[-83.658882,32.814113],[-83.65893200000001,32.813529],[-83.658951,32.813305]]},"id":"8944c0b184fffff-17f7d7bd401840df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18489964-13f7c7a1c92c7aff","8f44c0b18489b11-13bfe7a3afd40761"]},"geometry":{"type":"LineString","coordinates":[[-83.658951,32.813305],[-83.65895400000001,32.81316]]},"id":"8a44c0b1848ffff-139ed7a2b1e96a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18489964-13f7c7a1c92c7aff","8f44c0b184ab0f5-13d7c78dc6fa5c50"]},"geometry":{"type":"LineString","coordinates":[[-83.65895400000001,32.81316],[-83.658986,32.81252]]},"id":"8944c0b184bffff-139fc797c6e56713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184a8c62-13dfe74723eb1575","8f44c0b184ab0f5-13d7c78dc6fa5c50"]},"geometry":{"type":"LineString","coordinates":[[-83.658986,32.81252],[-83.659006,32.812044],[-83.65902200000001,32.812001],[-83.65904300000001,32.811962],[-83.65909900000001,32.811925]]},"id":"8a44c0b184affff-139fc780208cfae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28061048-13de33eae3f1224e","8f44c0a28155cf5-13fe56f50d5d5384"]},"geometry":{"type":"LineString","coordinates":[[-83.73132000000001,32.917242],[-83.73181600000001,32.917264],[-83.732347,32.917265],[-83.732336,32.917647],[-83.732348,32.918042],[-83.732318,32.919438],[-83.732331,32.919572],[-83.73236800000001,32.919677],[-83.73256500000001,32.920029]]},"id":"8844c0a281fffff-179e14c54b333fda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73303200000001,32.920755]},"id":"8f44c0a2806d6b3-139ff2c708270ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2806d6b3-139ff2c708270ba8","8f44c0a28061048-13de33eae3f1224e"]},"geometry":{"type":"LineString","coordinates":[[-83.73256500000001,32.920029],[-83.73303200000001,32.920755]]},"id":"8944c0a2807ffff-13bf1358f5913524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a24a6a-17f7e23d66edec98","8f44c0a32b5610c-13b7a0bc69dc2d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.62245700000001,32.864289],[-83.621841,32.864182]]},"id":"8844c0a32bfffff-1397317cec890cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b81968-179fe9afacb11702","8f44c0a32a24a6a-17f7e23d66edec98"]},"geometry":{"type":"LineString","coordinates":[[-83.621841,32.864182],[-83.62126,32.864036],[-83.62049900000001,32.863858],[-83.620373,32.863826],[-83.619504,32.863602],[-83.61891100000001,32.863444],[-83.618791,32.863411]]},"id":"8844c0a32bfffff-179765f7ba6dba31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61776300000001,32.863155]},"id":"8f44c0a32b82992-17ffec32270ed1db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b81968-179fe9afacb11702","8f44c0a32b82992-17ffec32270ed1db"]},"geometry":{"type":"LineString","coordinates":[[-83.618791,32.863411],[-83.61776300000001,32.863155]]},"id":"8a44c0a32b87fff-17bfeaf0e91c5c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64096,32.798073]},"id":"8f44c0b1e4d2d4d-179ff39000dcf95c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6411709,32.7980722]},"id":"8f44c0b1e4d059a-179ff30c3c4c90be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4d2d4d-179ff39000dcf95c","8f44c0b1e4d059a-179ff30c3c4c90be"]},"geometry":{"type":"LineString","coordinates":[[-83.64096,32.798073],[-83.6411709,32.7980722]]},"id":"8a44c0b1e4d7fff-179ff34e1ade8acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64276500000001,32.798098]},"id":"8f44c0b1e4c0895-179fef27ebc81bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4d059a-179ff30c3c4c90be","8f44c0b1e4c0895-179fef27ebc81bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6411709,32.7980722],[-83.641464,32.798071],[-83.64276500000001,32.798098]]},"id":"8944c0b1e4fffff-1797f11a009bdb78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a853c72-13d7b8952a307e06","8f44c0b0aa8082c-17d778be6f342c70"]},"geometry":{"type":"LineString","coordinates":[[-83.717481,32.824178],[-83.71753500000001,32.819774],[-83.71754700000001,32.81846]]},"id":"8744c0b0affffff-17de78a8c29ff8ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7176014,32.8157007]},"id":"8f44c0b0a82e8e8-1396f8732a6c22de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a82e8e8-1396f8732a6c22de","8f44c0b0a853c72-13d7b8952a307e06"]},"geometry":{"type":"LineString","coordinates":[[-83.71754700000001,32.81846],[-83.71756900000001,32.816974],[-83.717574,32.81604],[-83.7175885,32.8158641],[-83.7176014,32.8157007]]},"id":"8844c0b0a9fffff-17f6f8892cdb227c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175964,32.815537400000004]},"id":"8f44c0b0a821669-13bef8764e257b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a82e8e8-1396f8732a6c22de","8f44c0b0a821669-13bef8764e257b48"]},"geometry":{"type":"LineString","coordinates":[[-83.7176014,32.8157007],[-83.7175964,32.815537400000004]]},"id":"8944c0b0a83ffff-13f7f874be37e67a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5742324,32.8414827]},"id":"8f44c0b8c645dae-1397b678c0474784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c645dae-1397b678c0474784","8f44c0b8c661683-139fd529149d8a9d"]},"geometry":{"type":"LineString","coordinates":[[-83.5747695,32.8413125],[-83.574315,32.841459],[-83.5742324,32.8414827]]},"id":"8944c0b8c67ffff-13d7b5d0b44dc01d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5735806,32.841656]},"id":"8f44c0b8c6462e6-13f7981021008664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c645dae-1397b678c0474784","8f44c0b8c6462e6-13f7981021008664"]},"geometry":{"type":"LineString","coordinates":[[-83.5742324,32.8414827],[-83.57392200000001,32.841572],[-83.573881,32.841583],[-83.5735806,32.841656]]},"id":"8a44c0b8c647fff-13bff743e41a7258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c6462e6-13f7981021008664","8f44c0b8c6d42e2-13bfa24dc5a76fa5"]},"geometry":{"type":"LineString","coordinates":[[-83.5735806,32.841656],[-83.57352300000001,32.84167],[-83.573237,32.841729],[-83.57316200000001,32.841744],[-83.572574,32.841834],[-83.57070900000001,32.842091],[-83.570166,32.842146],[-83.56938600000001,32.84218]]},"id":"8844c0b8c7fffff-13b79d2b36a6271a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562123,32.841816]},"id":"8f44c0b8eaeac65-13d7b4092f688f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c6d42e2-13bfa24dc5a76fa5","8f44c0b8eaeac65-13d7b4092f688f06"]},"geometry":{"type":"LineString","coordinates":[[-83.56938600000001,32.84218],[-83.56840600000001,32.842212],[-83.567549,32.842258],[-83.567075,32.842278],[-83.56681400000001,32.842278],[-83.56657100000001,32.842264],[-83.56632300000001,32.842243],[-83.56418500000001,32.841948],[-83.56380700000001,32.841896000000006],[-83.56362200000001,32.841883],[-83.56293500000001,32.84185],[-83.562123,32.841816]]},"id":"8644c0b8fffffff-1397fb2cc08af315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8ead0381-139ff92e06ad8ebe","8f44c0b8eaeac65-13d7b4092f688f06"]},"geometry":{"type":"LineString","coordinates":[[-83.562123,32.841816],[-83.560016,32.841718]]},"id":"8944c0b8eafffff-13bff69b9bb6409c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e333912-13d7ffcbc01fbf5f","8f44c0b8ead0381-139ff92e06ad8ebe"]},"geometry":{"type":"LineString","coordinates":[[-83.560016,32.841718],[-83.559594,32.841698],[-83.558728,32.841662],[-83.55798100000001,32.84163],[-83.55730600000001,32.841602]]},"id":"8744c0b8effffff-13f7fc7ce0bff3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6431627,32.8464302]},"id":"8f44c0a342ac0d4-179eee2f5091dae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342ac0d4-179eee2f5091dae1","8f44c0a342adae3-17f7ecc365af4561"]},"geometry":{"type":"LineString","coordinates":[[-83.6431627,32.8464302],[-83.64374500000001,32.846773]]},"id":"8a44c0a342affff-1796ed7956d0abb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3421a8b1-17beec416c49397e","8f44c0a342adae3-17f7ecc365af4561"]},"geometry":{"type":"LineString","coordinates":[[-83.64374500000001,32.846773],[-83.64395300000001,32.846897000000006]]},"id":"8944c0a3423ffff-1797ec8261227b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342e694d-17dfea1a2b4ed3fb","8f44c0a3421a8b1-17beec416c49397e"]},"geometry":{"type":"LineString","coordinates":[[-83.64395300000001,32.846897000000006],[-83.64426900000001,32.847091],[-83.64438,32.847168],[-83.644447,32.847237],[-83.644491,32.847323],[-83.64453300000001,32.847375],[-83.644596,32.847422],[-83.644835,32.847554]]},"id":"8844c0a343fffff-179efb2b9fcf08a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640355,32.844747000000005]},"id":"8f44c0a3476bd13-13fef50a275fadfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6418965,32.846442800000005]},"id":"8f44c0a3428429c-17b6f146b6a87688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3476bd13-13fef50a275fadfb","8f44c0a3428429c-17b6f146b6a87688"]},"geometry":{"type":"LineString","coordinates":[[-83.640355,32.844747000000005],[-83.64144660000001,32.8453948],[-83.64149780000001,32.8454287],[-83.64153350000001,32.8454587],[-83.6418285,32.845803100000005],[-83.6418766,32.8458644],[-83.641903,32.845912600000005],[-83.64192010000001,32.8459622],[-83.6419278,32.846017],[-83.64192940000001,32.8460704],[-83.6419247,32.846126500000004],[-83.6418965,32.846442800000005]]},"id":"8744c0a34ffffff-13d6f2a4a86cb5fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3428429c-17b6f146b6a87688","8f44c0a34283182-17b6f20b46c55ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.6418965,32.846442800000005],[-83.64189060000001,32.84651],[-83.6418797,32.8465726],[-83.64186260000001,32.846630000000005],[-83.6418378,32.846693900000005],[-83.6418129,32.846739500000005],[-83.6417845,32.8467902],[-83.641648,32.846986900000005],[-83.641582,32.847082]]},"id":"8a44c0a34287fff-17f6f194f26e8cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717393,32.888815]},"id":"8f44c0a212b3140-179778f568aa05dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a212b3140-179778f568aa05dd","8f44c0a21285a1a-179e75cb6a3c2a37"]},"geometry":{"type":"LineString","coordinates":[[-83.717393,32.888815],[-83.717504,32.888817],[-83.717567,32.888823],[-83.71774900000001,32.888868],[-83.71785,32.888911],[-83.71792900000001,32.888956],[-83.718046,32.889044000000005],[-83.718207,32.889192],[-83.718287,32.889248],[-83.718372,32.889301],[-83.71847000000001,32.88935],[-83.718614,32.889398],[-83.71868900000001,32.889418]]},"id":"8944c0a212bffff-17be3759ffe57115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72040000000001,32.88927]},"id":"8f44c0a2121e81a-17b7f19e0297fb46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2121e81a-17b7f19e0297fb46","8f44c0a21285a1a-179e75cb6a3c2a37"]},"geometry":{"type":"LineString","coordinates":[[-83.71868900000001,32.889418],[-83.718896,32.889432],[-83.71903400000001,32.889431],[-83.719093,32.889426],[-83.71944500000001,32.889342],[-83.719558,32.889322],[-83.71971,32.889304],[-83.719859,32.889291],[-83.720214,32.889285],[-83.72040000000001,32.88927]]},"id":"8844c0a213fffff-17f733b5a9ce2c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2135bc6e-17d6290d82fce245","8f44c0a2121e81a-17b7f19e0297fb46"]},"geometry":{"type":"LineString","coordinates":[[-83.72040000000001,32.88927],[-83.720556,32.889254],[-83.72075000000001,32.889224],[-83.72087900000001,32.889198],[-83.72116100000001,32.88913],[-83.721304,32.8891],[-83.721618,32.889052],[-83.72181300000001,32.889046],[-83.72188700000001,32.889048],[-83.72207900000001,32.88906],[-83.723433,32.889218],[-83.72380600000001,32.889268],[-83.72390800000001,32.889293]]},"id":"8844c0a213fffff-17f7ed571024b65b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72498560000001,32.891601200000004]},"id":"8f44c0a2126b440-13f6e66c00fc118c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2135bc6e-17d6290d82fce245","8f44c0a2126b440-13f6e66c00fc118c"]},"geometry":{"type":"LineString","coordinates":[[-83.72390800000001,32.889293],[-83.724,32.889322],[-83.72408800000001,32.889356],[-83.724276,32.889454],[-83.72439800000001,32.889536],[-83.72447100000001,32.889614],[-83.72453200000001,32.889688],[-83.724615,32.889803],[-83.724665,32.889888],[-83.724704,32.88998],[-83.724727,32.890054],[-83.72475800000001,32.890262],[-83.724895,32.891433],[-83.724907,32.8915],[-83.72498560000001,32.891601200000004]]},"id":"8844c0a213fffff-17be674409019e25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a319109ac-13fecbc8e470ddd0","8f44c0a3564b05c-13f7cd9e42f3aa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.656502,32.865004],[-83.656615,32.865029],[-83.656701,32.86506],[-83.65687100000001,32.86515],[-83.65725300000001,32.865406]]},"id":"8844c0a319fffff-13f7ccac23299709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65980300000001,32.86531]},"id":"8f44c0a3192ccd3-13b6c58f26759702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a319109ac-13fecbc8e470ddd0","8f44c0a3192ccd3-13b6c58f26759702"]},"geometry":{"type":"LineString","coordinates":[[-83.65725300000001,32.865406],[-83.657588,32.865654],[-83.657712,32.865712],[-83.657797,32.865726],[-83.65806900000001,32.865724],[-83.659343,32.865637],[-83.65945500000001,32.865615000000005],[-83.65953,32.865581],[-83.65963,32.865513],[-83.65971,32.865437],[-83.65980300000001,32.86531]]},"id":"8944c0a3193ffff-13fff8a272074bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.583842,32.851118]},"id":"8f44c0b8d4c0640-139fff02c07a12e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d4d12b0-13ffe1386c10f4a8","8f44c0b8d4c0640-139fff02c07a12e6"]},"geometry":{"type":"LineString","coordinates":[[-83.583842,32.851118],[-83.58361400000001,32.851112],[-83.58341800000001,32.85114],[-83.58326100000001,32.85118],[-83.58309600000001,32.851235],[-83.582937,32.851291]]},"id":"8944c0b8d4fffff-13bfd02133bed7b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b01152-13b7e62147f64f6a","8f44c0b8d4d12b0-13ffe1386c10f4a8"]},"geometry":{"type":"LineString","coordinates":[[-83.582937,32.851291],[-83.5814326,32.8518227],[-83.58114300000001,32.851925],[-83.580926,32.851979]]},"id":"8644c0b8fffffff-13d7a3ab1c263b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b1e799-13d78a1d4e2d0e31","8f44c0b88b01152-13b7e62147f64f6a"]},"geometry":{"type":"LineString","coordinates":[[-83.580926,32.851979],[-83.58061500000001,32.852106],[-83.580082,32.852283],[-83.57962300000001,32.852387],[-83.579552,32.852397],[-83.579294,32.852432]]},"id":"8944c0b88b3ffff-13dfe81883287699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671362,32.823645]},"id":"8f44c0b1b92aac6-17fea956cdc5bdb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b92e120-139ea95f894db62c","8f44c0b1b92aac6-17fea956cdc5bdb6"]},"geometry":{"type":"LineString","coordinates":[[-83.671362,32.823645],[-83.67134800000001,32.823057]]},"id":"8a44c0b1b92ffff-17d6e95b266b9c6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b92e120-139ea95f894db62c","8f44c0b1828a2c3-13d6a9468aed5a43"]},"geometry":{"type":"LineString","coordinates":[[-83.67134800000001,32.823057],[-83.671345,32.822544],[-83.67138800000001,32.821745]]},"id":"8744c0b18ffffff-13f6a958d14face2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67144900000001,32.820207]},"id":"8f44c0b182854a1-1797e9206c8f5894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b182854a1-1797e9206c8f5894","8f44c0b1828a2c3-13d6a9468aed5a43"]},"geometry":{"type":"LineString","coordinates":[[-83.67138800000001,32.821745],[-83.67144900000001,32.820207]]},"id":"8944c0b182bffff-17f6a9337c3c7090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66217,32.874314000000005]},"id":"8f44c0a31b18a76-13beffc7c39d07c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31b188c9-13ffd013c7a360da","8f44c0a31b18a76-13beffc7c39d07c6"]},"geometry":{"type":"LineString","coordinates":[[-83.66217,32.874314000000005],[-83.6620484,32.8742333]]},"id":"8b44c0a31b18fff-1397bfedc2d45ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31b188c9-13ffd013c7a360da","8f44c0a31bae008-1796c465056b03db"]},"geometry":{"type":"LineString","coordinates":[[-83.6620484,32.8742333],[-83.66188580000001,32.8741469],[-83.66173780000001,32.874080500000005],[-83.66159760000001,32.8740321],[-83.661471,32.873998],[-83.66123,32.873964],[-83.660892,32.873914],[-83.660651,32.873883],[-83.66059700000001,32.873877],[-83.66028,32.87386]]},"id":"8844c0a31bfffff-17dee231c20132bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31b8552e-1797e5f32a437739","8f44c0a31bae008-1796c465056b03db"]},"geometry":{"type":"LineString","coordinates":[[-83.66028,32.87386],[-83.659643,32.873859]]},"id":"8944c0a31bbffff-1796f52c108fa12e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31b80d9e-1796e726abbcf05f","8f44c0a31b8552e-1797e5f32a437739"]},"geometry":{"type":"LineString","coordinates":[[-83.659643,32.873859],[-83.65915100000001,32.873863]]},"id":"8a44c0a31b87fff-1797e68ce5f4bf0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31b80d9e-1796e726abbcf05f","8f44c0a31b9578d-17d7e9204d8a3604"]},"geometry":{"type":"LineString","coordinates":[[-83.65915100000001,32.873863],[-83.65850780000001,32.8738736],[-83.658342,32.873939]]},"id":"8944c0a31bbffff-179ed8268fe6cb82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68237500000001,32.797907]},"id":"8f44c0b1c3531a0-17b7ee73a6c28300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c356b0e-17f7ae6d61b64add","8f44c0b1c3531a0-17b7ee73a6c28300"]},"geometry":{"type":"LineString","coordinates":[[-83.68237500000001,32.797907],[-83.68238500000001,32.797189]]},"id":"8a44c0b1c357fff-17d78e70875e20ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68239600000001,32.796318]},"id":"8f44c0b1c30d1a9-13d6ce668e6a38f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c356b0e-17f7ae6d61b64add","8f44c0b1c30d1a9-13d6ce668e6a38f8"]},"geometry":{"type":"LineString","coordinates":[[-83.68238500000001,32.797189],[-83.68239600000001,32.796318]]},"id":"8844c0b1c3fffff-13d6fe69f918c01b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65285,32.80558]},"id":"8f44c0b1e29b98a-13dfd688ce396e78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e29b98a-13dfd688ce396e78","8f44c0b1e650b4e-17fedf66220891c8"]},"geometry":{"type":"LineString","coordinates":[[-83.649219,32.80498],[-83.650204,32.805137],[-83.651269,32.805329],[-83.65202500000001,32.805461],[-83.65269,32.805568],[-83.65285,32.80558]]},"id":"8744c0b1effffff-13b7faf7e08a6b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e29b98a-13dfd688ce396e78","8f44c0b1e299120-13def5702401ca8a"]},"geometry":{"type":"LineString","coordinates":[[-83.65285,32.80558],[-83.652966,32.805585],[-83.653057,32.805584],[-83.65322300000001,32.805566],[-83.653299,32.805553]]},"id":"8a44c0b1e29ffff-13dff5fc13837457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654666,32.806916]},"id":"8f44c0b1e2d3188-17b6d219c8923124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2d3188-17b6d219c8923124","8f44c0b1e299120-13def5702401ca8a"]},"geometry":{"type":"LineString","coordinates":[[-83.653299,32.805553],[-83.653495,32.805537],[-83.653591,32.805538],[-83.653667,32.805546],[-83.65371400000001,32.805565],[-83.653777,32.805601],[-83.653856,32.805688],[-83.65410200000001,32.806047],[-83.654661,32.806889000000005],[-83.654666,32.806916]]},"id":"8844c0b1e3fffff-139fd38d9af77022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674513,32.861221]},"id":"8f44c0a22d73c0d-13b7a1a564f38359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d73c0d-13b7a1a564f38359","8f44c0a229806e4-13d7f7ca4da58db6"]},"geometry":{"type":"LineString","coordinates":[[-83.674513,32.861221],[-83.674684,32.861297],[-83.6748,32.86135],[-83.674953,32.861398],[-83.675122,32.861418],[-83.67532800000001,32.861434],[-83.675909,32.861449],[-83.676302,32.861455],[-83.676764,32.861451],[-83.67741600000001,32.861427],[-83.677823,32.861426],[-83.67855,32.861443]]},"id":"8744c0a22ffffff-13b7fcc1f2d1ccd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a229aa414-13d6d60528b40ce5","8f44c0a229806e4-13d7f7ca4da58db6"]},"geometry":{"type":"LineString","coordinates":[[-83.67855,32.861443],[-83.679275,32.861466]]},"id":"8a44c0a22987fff-13df96e7b69f9f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.763046,32.921211]},"id":"8f44c0b5aca0515-13bde98040dc2ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5ad99623-13ddc9d5edcaeb2d","8f44c0b5aca0515-13bde98040dc2ec4"]},"geometry":{"type":"LineString","coordinates":[[-83.763046,32.921211],[-83.76304800000001,32.921025],[-83.763039,32.920932],[-83.762994,32.920802],[-83.76290900000001,32.920668]]},"id":"8844c0b5adfffff-13fde9950a136f55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5ad99623-13ddc9d5edcaeb2d","8f44c0a2d201066-13d7f82461f99fd5"]},"geometry":{"type":"LineString","coordinates":[[-83.76290900000001,32.920668],[-83.76280700000001,32.920613],[-83.76275600000001,32.920595],[-83.76269900000001,32.92058],[-83.76259,32.920561],[-83.762465,32.920555],[-83.762416,32.920558],[-83.76227,32.92058],[-83.76109530000001,32.9208608],[-83.76053,32.920996],[-83.76022900000001,32.921059],[-83.76007200000001,32.921081],[-83.75994100000001,32.921089],[-83.759776,32.92109],[-83.759596,32.921072],[-83.759448,32.921028],[-83.75941800000001,32.921017],[-83.759268,32.920941],[-83.759034,32.920794],[-83.75896300000001,32.920755],[-83.758808,32.920702],[-83.7587,32.920679],[-83.75854100000001,32.920665],[-83.75833200000001,32.920673],[-83.75817,32.92069],[-83.757998,32.920721],[-83.75768400000001,32.920814],[-83.75744800000001,32.920904],[-83.75704900000001,32.921073]]},"id":"8544c0b7fffffff-13bff1084972cda1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.755323,32.919764]},"id":"8f44c0a2d23248d-17b5dc5b2603cb62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d23248d-17b5dc5b2603cb62","8f44c0a2d201066-13d7f82461f99fd5"]},"geometry":{"type":"LineString","coordinates":[[-83.75704900000001,32.921073],[-83.756854,32.921042],[-83.75678500000001,32.921027],[-83.756639,32.920969],[-83.75646900000001,32.920871000000005],[-83.75625000000001,32.920719000000005],[-83.756082,32.920586],[-83.755942,32.920465],[-83.75582700000001,32.920349],[-83.755792,32.920305],[-83.755661,32.920116],[-83.75554500000001,32.919924],[-83.755477,32.919856],[-83.755419,32.919815],[-83.755323,32.919764]]},"id":"8944c0a2d23ffff-13fdda6a5b843862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d39bcc5-179de197cdc788f4","8f44c0a2d23248d-17b5dc5b2603cb62"]},"geometry":{"type":"LineString","coordinates":[[-83.755323,32.919764],[-83.755075,32.919746],[-83.753178,32.919745]]},"id":"8844c0a2d3fffff-179dfef944c5aca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649023,32.84976]},"id":"8f44c0a3553264a-17bedfe0a4ef0449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65019500000001,32.849908]},"id":"8f44c0a35504c24-179edd0426c68bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3553264a-17bedfe0a4ef0449","8f44c0a35504c24-179edd0426c68bea"]},"geometry":{"type":"LineString","coordinates":[[-83.649023,32.84976],[-83.65019500000001,32.849908]]},"id":"8944c0a3553ffff-17fede7268be6acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651256,32.850048]},"id":"8f44c0a35521285-17f6da6d07be8194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35521285-17f6da6d07be8194","8f44c0a35504c24-179edd0426c68bea"]},"geometry":{"type":"LineString","coordinates":[[-83.65019500000001,32.849908],[-83.651256,32.850048]]},"id":"8944c0a3553ffff-17d6dbb895bd444e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cdc122-17ffd65b2534c775","8f44c0a35521285-17f6da6d07be8194"]},"geometry":{"type":"LineString","coordinates":[[-83.651256,32.850048],[-83.652923,32.850246]]},"id":"8744c0a35ffffff-17bff8641db03810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7284465,32.8080368]},"id":"8f44c0b08d814f4-17df1df8f7169bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d8e916-17f69d88dc495d61","8f44c0b08d814f4-17df1df8f7169bfd"]},"geometry":{"type":"LineString","coordinates":[[-83.72862590000001,32.8082504],[-83.7284465,32.8080368]]},"id":"8944c0b08dbffff-17b7ddc0e3a43b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d80705-17bede81c18aeb81","8f44c0b08d814f4-17df1df8f7169bfd"]},"geometry":{"type":"LineString","coordinates":[[-83.7284465,32.8080368],[-83.7283759,32.8079534],[-83.72822760000001,32.807777200000004]]},"id":"8a44c0b08d87fff-179ffe3d6b51f16e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7279963,32.8074779]},"id":"8f44c0b08d863ae-1797bf12599451f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d863ae-1797bf12599451f0","8f44c0b08d80705-17bede81c18aeb81"]},"geometry":{"type":"LineString","coordinates":[[-83.72822760000001,32.807777200000004],[-83.728192,32.807733],[-83.7279963,32.8074779]]},"id":"8a44c0b08d87fff-17df7eca511544f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d863ae-1797bf12599451f0","8f44c0b08d86011-17d73f40ca368d61"]},"geometry":{"type":"LineString","coordinates":[[-83.7279963,32.8074779],[-83.727922,32.807381]]},"id":"8b44c0b08d86fff-17f77f2998d6c02c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72776800000001,32.806956]},"id":"8f44c0b08db3868-17bf9fa100ee5c0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d86011-17d73f40ca368d61","8f44c0b08db3868-17bf9fa100ee5c0f"]},"geometry":{"type":"LineString","coordinates":[[-83.727922,32.807381],[-83.727863,32.807274],[-83.727823,32.807177],[-83.72776800000001,32.806956]]},"id":"8944c0b08dbffff-17d75f78ba216cd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08db3868-17bf9fa100ee5c0f","8f44c0b08db0143-13f71f9e63779b54"]},"geometry":{"type":"LineString","coordinates":[[-83.72776800000001,32.806956],[-83.7277722,32.8066097]]},"id":"8a44c0b08db7fff-13df5f9fb1ce9254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55771700000001,32.866768]},"id":"8f44c0b8bca455c-17d7becae9d2faa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bca455c-17d7becae9d2faa2","8f44c0b8bda50a0-17b7fba90e2825a5"]},"geometry":{"type":"LineString","coordinates":[[-83.55900000000001,32.864086],[-83.558913,32.864142],[-83.558673,32.864351],[-83.558507,32.864547],[-83.558423,32.864677],[-83.55836500000001,32.864811],[-83.55831900000001,32.864942],[-83.55826400000001,32.865184],[-83.55810600000001,32.865989],[-83.55804,32.866264],[-83.557991,32.866377],[-83.55792000000001,32.866495],[-83.557793,32.866661],[-83.55771700000001,32.866768]]},"id":"8844c0b8bdfffff-13dfbd6b580f6c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bca455c-17d7becae9d2faa2","8f44c0b8bc9d6b1-17bfe1918249d59e"]},"geometry":{"type":"LineString","coordinates":[[-83.55771700000001,32.866768],[-83.55706400000001,32.867677],[-83.55701400000001,32.867764],[-83.556993,32.867832],[-83.55699200000001,32.86791],[-83.557012,32.867984],[-83.557089,32.868127],[-83.557173,32.86826],[-83.557226,32.868372],[-83.557238,32.868468],[-83.557219,32.868564],[-83.557179,32.868642],[-83.557129,32.868699],[-83.55658000000001,32.869189]]},"id":"8944c0b8bcbffff-13dff02a6a3db435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55618700000001,32.869551]},"id":"8f44c0b8bc9b108-179fe2872290c173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc9d6b1-17bfe1918249d59e","8f44c0b8bc9b108-179fe2872290c173"]},"geometry":{"type":"LineString","coordinates":[[-83.55658000000001,32.869189],[-83.55651900000001,32.869253],[-83.55618700000001,32.869551]]},"id":"8a44c0b8bc9ffff-179fd20b16c7f126"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7536462,32.774962900000006]},"id":"8f44c0b2ab8a0dd-179ff073257750ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2ab8a0dd-179ff073257750ee","8f44c0b2aa332a8-17fffc2ec99513a0"]},"geometry":{"type":"LineString","coordinates":[[-83.75539400000001,32.775499],[-83.755081,32.775394],[-83.754777,32.775297],[-83.754518,32.775199],[-83.75407100000001,32.775064],[-83.75372700000001,32.77498],[-83.7536462,32.774962900000006]]},"id":"8844c0b2abfffff-17bdde4e129c2b5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a03080c-13b5f23ec1a63999","8f44c0b2ab8a0dd-179ff073257750ee"]},"geometry":{"type":"LineString","coordinates":[[-83.7536462,32.774962900000006],[-83.75328800000001,32.774887],[-83.75294500000001,32.77483],[-83.752464,32.77476],[-83.752165,32.774730000000005],[-83.75180200000001,32.774706],[-83.751391,32.774734],[-83.751197,32.774758],[-83.750951,32.774807],[-83.750805,32.774852],[-83.750657,32.774918],[-83.750551,32.774979],[-83.750096,32.775266],[-83.749842,32.775388],[-83.749661,32.775424],[-83.74957400000001,32.775429],[-83.74937800000001,32.775415],[-83.749127,32.775343],[-83.74884700000001,32.775235],[-83.748649,32.77514],[-83.748473,32.77503],[-83.7474155,32.774272700000004],[-83.7472582,32.7741726],[-83.7470883,32.7740882],[-83.7469485,32.7740421],[-83.74680450000001,32.7740153],[-83.7463572,32.773974]]},"id":"8744c0b2affffff-17bdf98cb86ceb6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a56d689-13dffb64c50ccc12","8f44c0b2a03080c-13b5f23ec1a63999"]},"geometry":{"type":"LineString","coordinates":[[-83.7463572,32.773974],[-83.744764,32.773846],[-83.743846,32.7738217],[-83.74261,32.773836]]},"id":"8844c0b2a1fffff-13f5f6d0e42fb38d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a56d689-13dffb64c50ccc12","8f44c0b2a431284-13d76823ecd2f034"]},"geometry":{"type":"LineString","coordinates":[[-83.74261,32.773836],[-83.741552,32.773842],[-83.73738900000001,32.773791]]},"id":"8744c0b2affffff-13d631c458550439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73621200000001,32.773777]},"id":"8f44c0b2a41451e-13beab03869a6ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2a431284-13d76823ecd2f034","8f44c0b2a41451e-13beab03869a6ea8"]},"geometry":{"type":"LineString","coordinates":[[-83.73738900000001,32.773791],[-83.73621200000001,32.773777]]},"id":"8944c0b2a43ffff-13bf0993bb442d88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34611601-13df427d6b278271","8f44c0a3461ad8c-13b7c326a5f6f03a"]},"geometry":{"type":"LineString","coordinates":[[-83.634575,32.846038],[-83.63478500000001,32.845636],[-83.63484580000001,32.8455092]]},"id":"8944c0a3463ffff-139702d10fd18c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34611601-13df427d6b278271","8f44c0a34615296-13d741ffa9e92d4c"]},"geometry":{"type":"LineString","coordinates":[[-83.63484580000001,32.8455092],[-83.635047,32.84509]]},"id":"8a44c0a34617fff-13df423e87ab56d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63538100000001,32.8444]},"id":"8f44c0a34631493-17b7012eec1d4dff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34631493-17b7012eec1d4dff","8f44c0a34615296-13d741ffa9e92d4c"]},"geometry":{"type":"LineString","coordinates":[[-83.635047,32.84509],[-83.635199,32.844771],[-83.63533500000001,32.844503],[-83.63538100000001,32.8444]]},"id":"8944c0a3463ffff-13ffa1974c93802b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34631493-17b7012eec1d4dff","8f44c0a3471b429-179720452a66cffd"]},"geometry":{"type":"LineString","coordinates":[[-83.63538100000001,32.8444],[-83.635755,32.843525]]},"id":"8944c0a3463ffff-179790ba0d2e0f67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66324,32.791519]},"id":"8f44c0b1c49d5b4-179ffd2b02d119c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c49d5b4-179ffd2b02d119c9","8f44c0b1c4b3b6a-1397bd0b27a07942"]},"geometry":{"type":"LineString","coordinates":[[-83.66324,32.791519],[-83.663291,32.790104]]},"id":"8944c0b1c4bffff-17d7bd1b101950a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c4b3b6a-1397bd0b27a07942","8f44c0b1e82cdab-17b7e7076105e0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.663291,32.790104],[-83.66331100000001,32.789839],[-83.663337,32.789119],[-83.663335,32.788842],[-83.66329400000001,32.788767],[-83.663183,32.788756],[-83.66194,32.788733],[-83.660904,32.788705],[-83.65992800000001,32.788705],[-83.659822,32.788704],[-83.65920100000001,32.788697]]},"id":"8644c0b1fffffff-13b6c0c703b9a01c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65783300000001,32.788153]},"id":"8f44c0b1e835231-17d7ea5e65292437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e835231-17d7ea5e65292437","8f44c0b1e82cdab-17b7e7076105e0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.65920100000001,32.788697],[-83.65889200000001,32.788691],[-83.65879100000001,32.788674],[-83.658658,32.788635],[-83.658389,32.78848],[-83.657905,32.788182],[-83.65783300000001,32.788153]]},"id":"8944c0b1e83ffff-17bee8c0919538da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6709586,32.8325276]},"id":"8f44c0b1bb9d10b-13bfea52ec77efff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb9d10b-13bfea52ec77efff","8f44c0b1bb806b6-13ffea44ebf4206d"]},"geometry":{"type":"LineString","coordinates":[[-83.67098100000001,32.831814],[-83.6709586,32.8325276]]},"id":"8944c0b1bbbffff-13deea4be85c80bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb9d10b-13bfea52ec77efff","8f44c0b1baa6b76-17deea64f016876e"]},"geometry":{"type":"LineString","coordinates":[[-83.6709586,32.8325276],[-83.6709297,32.833395800000005]]},"id":"8844c0b1bbfffff-13bfba5bf6469078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651683,32.836077]},"id":"8f44c0a34b05a19-13d6f96227b97d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b312e2-139fdb620dfd110d","8f44c0a34b05a19-13d6f96227b97d63"]},"geometry":{"type":"LineString","coordinates":[[-83.650864,32.83558],[-83.65129400000001,32.835841],[-83.651683,32.836077]]},"id":"8a44c0a34b07fff-13beda621e2e539c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b05a19-13d6f96227b97d63","8f44c0a34b290d2-17b7f70483a00c10"]},"geometry":{"type":"LineString","coordinates":[[-83.651683,32.836077],[-83.652652,32.836643]]},"id":"8944c0a34b3ffff-1797d83355b7288a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b74a9c-17f6f5c203504217","8f44c0a34b290d2-17b7f70483a00c10"]},"geometry":{"type":"LineString","coordinates":[[-83.652652,32.836643],[-83.65316800000001,32.836951]]},"id":"8844c0a34bfffff-1796f66347d1b9f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b74a9c-17f6f5c203504217","8f44c0a34b60711-17f6d35b0a13721b"]},"geometry":{"type":"LineString","coordinates":[[-83.65316800000001,32.836951],[-83.65415200000001,32.837536]]},"id":"8944c0a34b7ffff-17bff48e8882a14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65535650000001,32.8382613]},"id":"8f44c0a34b6dd6d-13bfd06a34b3c2b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b6dd6d-13bfd06a34b3c2b5","8f44c0a34b60711-17f6d35b0a13721b"]},"geometry":{"type":"LineString","coordinates":[[-83.65415200000001,32.837536],[-83.65495200000001,32.838022],[-83.65535650000001,32.8382613]]},"id":"8744c0b1bffffff-17d7f1e33ab59069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655427,32.838303]},"id":"8f44c0a34b6d81c-13d7f03e224d2c8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b6d81c-13d7f03e224d2c8c","8f44c0a34b6dd6d-13bfd06a34b3c2b5"]},"geometry":{"type":"LineString","coordinates":[[-83.65535650000001,32.8382613],[-83.655427,32.838303]]},"id":"8c44c0a34b6d9ff-13b6f05422e65f8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667552,32.881431]},"id":"8f44c0a04d0cc61-139ef2a409ca91a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d0cc61-139ef2a409ca91a5","8f44c0a04d0d468-13bef201855a1411"]},"geometry":{"type":"LineString","coordinates":[[-83.667552,32.881431],[-83.66758800000001,32.881532],[-83.66781200000001,32.881915]]},"id":"8a44c0a04d0ffff-13b7f25759e252f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d5e258-13f7f090cfd3c698","8f44c0a04d0d468-13bef201855a1411"]},"geometry":{"type":"LineString","coordinates":[[-83.66781200000001,32.881915],[-83.668029,32.882284],[-83.668108,32.882471],[-83.668166,32.882662],[-83.66821900000001,32.882953],[-83.66825800000001,32.883221],[-83.668402,32.88405]]},"id":"8844c0a04dfffff-17d7f11a9a4ca65f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d5e258-13f7f090cfd3c698","8f44c0a04c40692-179fb0ce0ed7f1e2"]},"geometry":{"type":"LineString","coordinates":[[-83.668402,32.88405],[-83.668418,32.884169],[-83.66843200000001,32.884411],[-83.66841600000001,32.884684],[-83.66830900000001,32.885522],[-83.66829800000001,32.885737],[-83.668304,32.886364]]},"id":"8844c0a04dfffff-13d7f0ad2aad896c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c40692-179fb0ce0ed7f1e2","8f44c0a04c59211-13dfb10964b4c6c4"]},"geometry":{"type":"LineString","coordinates":[[-83.668304,32.886364],[-83.668317,32.886896],[-83.668311,32.887276],[-83.668278,32.88749],[-83.668209,32.887672]]},"id":"8944c0a04c7ffff-17b6b0d12880b12a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667473,32.888485]},"id":"8f44c0a041b115a-13d7b2d56d040804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041b115a-13d7b2d56d040804","8f44c0a04c59211-13dfb10964b4c6c4"]},"geometry":{"type":"LineString","coordinates":[[-83.668209,32.887672],[-83.66792500000001,32.888005],[-83.667697,32.888253],[-83.667473,32.888485]]},"id":"8744c0a04ffffff-13def1ebd007f108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666578,32.889543]},"id":"8f44c0a041917a8-17def504ce1fb078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041b115a-13d7b2d56d040804","8f44c0a041917a8-17def504ce1fb078"]},"geometry":{"type":"LineString","coordinates":[[-83.667473,32.888485],[-83.667026,32.888973],[-83.666578,32.889543]]},"id":"8944c0a041bffff-179eb3f349aa02d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666196,32.889964]},"id":"8f44c0a0456d16c-17f7b5f3843c6599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0456d16c-17f7b5f3843c6599","8f44c0a041917a8-17def504ce1fb078"]},"geometry":{"type":"LineString","coordinates":[[-83.666578,32.889543],[-83.666196,32.889964]]},"id":"8944c0a041bffff-17dff57c2172f1d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b89b286-13dff8170789c8dc","8f44c0b1b1241a5-13d6f621c6924bea"]},"geometry":{"type":"LineString","coordinates":[[-83.66532000000001,32.828691],[-83.66592200000001,32.828688],[-83.666122,32.828679]]},"id":"8844c0b1b9fffff-13deb71c51982260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b889689-13dfb418881f1ea8","8f44c0b1b1241a5-13d6f621c6924bea"]},"geometry":{"type":"LineString","coordinates":[[-83.666122,32.828679],[-83.666685,32.828701],[-83.666956,32.828716]]},"id":"8844c0b1b9fffff-13dfb51d1cbeddb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8f3406-13f7b22840d51af5","8f44c0b1b889689-13dfb418881f1ea8"]},"geometry":{"type":"LineString","coordinates":[[-83.666956,32.828716],[-83.66775000000001,32.828732]]},"id":"8944c0b1b8fffff-13f6b3206b0562a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63571400000001,32.819992]},"id":"8f44c0b1a4de112-179f005ec583ede2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636019,32.820175]},"id":"8f44c0b1a4d8d1d-1797ffa0294d4a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4de112-179f005ec583ede2","8f44c0b1a4d8d1d-1797ffa0294d4a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.63571400000001,32.819992],[-83.636019,32.820175]]},"id":"8a44c0b1a4dffff-17deffff75226a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4cbaca-1796fc190032d3db","8f44c0b1a4d8d1d-1797ffa0294d4a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.636019,32.820175],[-83.63746400000001,32.821024]]},"id":"8944c0b1a4fffff-179efddc954da080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638834,32.821976]},"id":"8f44c0b1a782293-13f7f8c0cbd00dc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a782293-13f7f8c0cbd00dc2","8f44c0b1a790a33-17f6fa57aee9868c"]},"geometry":{"type":"LineString","coordinates":[[-83.63818300000001,32.821582],[-83.638794,32.821939],[-83.638834,32.821976]]},"id":"8944c0b1a7bffff-13fff98a203fa432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a78d656-1396f5246e924ed3","8f44c0b1a782293-13f7f8c0cbd00dc2"]},"geometry":{"type":"LineString","coordinates":[[-83.638834,32.821976],[-83.64025000000001,32.822799],[-83.640313,32.822843]]},"id":"8944c0b1a7bffff-13f6f6f1974414a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3256a322-17bf67776c0e684d","8f44c0a32569953-17bfc55169768fb6"]},"geometry":{"type":"LineString","coordinates":[[-83.607473,32.863462000000006],[-83.606593,32.863461]]},"id":"8a44c0a3256ffff-17bf766462da6da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3256a322-17bf67776c0e684d","8f44c0a32553b29-17bf4cb0e0901591"]},"geometry":{"type":"LineString","coordinates":[[-83.606593,32.863461],[-83.604453,32.86345]]},"id":"8944c0a3257ffff-17bffa14265eefa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a6c39a-13d71b43ca1e3365","8f44c0a32b6bb86-13b7f97d653e8e63"]},"geometry":{"type":"LineString","coordinates":[[-83.625425,32.865291],[-83.625406,32.865816],[-83.625353,32.866552],[-83.625335,32.86675],[-83.625304,32.866892],[-83.625217,32.867057],[-83.62513700000001,32.867165],[-83.625006,32.867303],[-83.62469800000001,32.867616000000005]]},"id":"8644c0a37ffffff-17bf99ec179b818b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32a4a80e-13f71e41690de8be","8f44c0a32a6c39a-13d71b43ca1e3365"]},"geometry":{"type":"LineString","coordinates":[[-83.62469800000001,32.867616000000005],[-83.623473,32.868872]]},"id":"8944c0a32a7ffff-13df9cc29cf041c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badab4aab-17d71272c409b2a7","8f44c0badb93698-13bfb38a869db53a"]},"geometry":{"type":"LineString","coordinates":[[-83.6344152,32.8002011],[-83.63486280000001,32.8012577]]},"id":"8844c0badbfffff-1797e2feaf1c4654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63448070000001,32.8031887]},"id":"8f44c0bada9ccc3-139ff36197fb0461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badab4aab-17d71272c409b2a7","8f44c0bada9ccc3-139ff36197fb0461"]},"geometry":{"type":"LineString","coordinates":[[-83.63486280000001,32.8012577],[-83.63501070000001,32.801714700000005],[-83.6351767,32.8021984],[-83.6351813,32.8023666],[-83.635113,32.802456500000005],[-83.6349675,32.802554],[-83.6349402,32.802628600000006],[-83.6349766,32.8027834],[-83.6349584,32.8028694],[-83.63472180000001,32.803039600000005],[-83.63448070000001,32.8031887]]},"id":"8944c0badabffff-13f7b238030d97d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72415500000001,32.892266]},"id":"8f44c0a2124aa9d-1796687329370bd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2124aa9d-1796687329370bd0","8f44c0a2c5a550d-179e6884062f230a"]},"geometry":{"type":"LineString","coordinates":[[-83.72415500000001,32.892266],[-83.72412800000001,32.892922]]},"id":"8844c0a2c5fffff-17df687b9328de5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c5ae219-13dfe88eafff836a","8f44c0a2c5a550d-179e6884062f230a"]},"geometry":{"type":"LineString","coordinates":[[-83.72412800000001,32.892922],[-83.72411100000001,32.894022]]},"id":"8944c0a2c5bffff-17f6288955cb8e5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c5ae219-13dfe88eafff836a","8f44c0a2c5a8494-139e688ccc9833ff"]},"geometry":{"type":"LineString","coordinates":[[-83.72411100000001,32.894022],[-83.724114,32.894154]]},"id":"8a44c0a2c5affff-13f7288dba616a67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c58d65b-13dee8a0c13df476","8f44c0a2c5a8494-139e688ccc9833ff"]},"geometry":{"type":"LineString","coordinates":[[-83.724114,32.894154],[-83.72408200000001,32.895246]]},"id":"8944c0a2c5bffff-13f7a896ca97a362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63328,32.845126]},"id":"8f44c0a346a3924-13ffc6500c1d53a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3478b00c-17b704d8632b55cc","8f44c0a346a3924-13ffc6500c1d53a5"]},"geometry":{"type":"LineString","coordinates":[[-83.63328,32.845126],[-83.633881,32.8444]]},"id":"8844c0a347fffff-139fe5943f1f5b58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63438400000001,32.843814]},"id":"8f44c0a3478d56d-17b7c39e090a3134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3478d56d-17b7c39e090a3134","8f44c0a3478b00c-17b704d8632b55cc"]},"geometry":{"type":"LineString","coordinates":[[-83.633881,32.8444],[-83.63438400000001,32.843814]]},"id":"8a44c0a3478ffff-17ffe43b3b93b57d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713542,32.862415]},"id":"8f44c0a254c18e5-13b7625c451a5090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25406176-13d762376e55e85b","8f44c0a254c18e5-13b7625c451a5090"]},"geometry":{"type":"LineString","coordinates":[[-83.713542,32.862415],[-83.71356700000001,32.862178],[-83.71359700000001,32.861905],[-83.71362900000001,32.861536],[-83.713655,32.861187],[-83.71367400000001,32.861035],[-83.71369100000001,32.860892],[-83.71377000000001,32.860621],[-83.714043,32.859862],[-83.714083,32.85973],[-83.71409200000001,32.859639],[-83.714089,32.859547],[-83.71407400000001,32.859471],[-83.714025,32.859327],[-83.71394000000001,32.859195],[-83.71379400000001,32.85902],[-83.71360100000001,32.858789]]},"id":"8844c0a255fffff-179ed1c37c525336"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25406176-13d762376e55e85b","8f44c0a25430ae3-13b7e277cac517c0"]},"geometry":{"type":"LineString","coordinates":[[-83.71360100000001,32.858789],[-83.71354600000001,32.858612],[-83.713514,32.858423],[-83.71350100000001,32.858261],[-83.713498,32.858147]]},"id":"8944c0a2543ffff-13967262e98d04a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b192e86b3-13b6f5e88f03f496","8f44c0a245b258e-1796f5bf44578fd3"]},"geometry":{"type":"LineString","coordinates":[[-83.692428,32.838862],[-83.692459,32.839193],[-83.69245400000001,32.839374],[-83.692437,32.839581],[-83.69243800000001,32.83974],[-83.692456,32.839796],[-83.69249400000001,32.83986]]},"id":"8844c0b193fffff-13de75dc2180f086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244b0759-17be762985e484d8","8f44c0a245b258e-1796f5bf44578fd3"]},"geometry":{"type":"LineString","coordinates":[[-83.69249400000001,32.83986],[-83.69242100000001,32.841213],[-83.692324,32.842976]]},"id":"8644c0a27ffffff-13de75f425279d59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971721,32.8983141]},"id":"8f44c0a232ca285-13d67a53727a1715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232cea93-13ff69dd67535556","8f44c0a232ca285-13d67a53727a1715"]},"geometry":{"type":"LineString","coordinates":[[-83.6971721,32.8983141],[-83.697219,32.898176],[-83.697361,32.897759]]},"id":"8a44c0a232cffff-139efa1873101c5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232cea93-13ff69dd67535556","8f44c0a232ea0e6-139668a6ce7dbd31"]},"geometry":{"type":"LineString","coordinates":[[-83.697361,32.897759],[-83.697427,32.897522],[-83.697455,32.89744],[-83.69751000000001,32.897388],[-83.697614,32.897311],[-83.697743,32.897246],[-83.69785800000001,32.89721]]},"id":"8944c0a232fffff-139e79695105a980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a232ea0e6-139668a6ce7dbd31","8f44c0a232ed2db-1396e6262edcc473"]},"geometry":{"type":"LineString","coordinates":[[-83.69785800000001,32.89721],[-83.697985,32.897177],[-83.698221,32.897131],[-83.698521,32.897106],[-83.69870200000001,32.897097],[-83.69888300000001,32.897211]]},"id":"8a44c0a232effff-13fe7760134ed839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60518300000001,32.858646]},"id":"8f44c0a32c8d903-13ffcae8a0363a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c8d903-13ffcae8a0363a02","8f44c0a32ce48de-13ff457d2961386f"]},"geometry":{"type":"LineString","coordinates":[[-83.607403,32.858674],[-83.60518300000001,32.858646]]},"id":"8844c0a32dfffff-13f7c832e0481d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c8d903-13ffcae8a0363a02","8f44c0a32c9d584-13f7eefc6d0840a6"]},"geometry":{"type":"LineString","coordinates":[[-83.60518300000001,32.858646],[-83.603513,32.858651]]},"id":"8944c0a32cbffff-13ff5cf28bdc3088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6014057,32.858554000000005]},"id":"8f44c0b8d26e698-13b75421756f1f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c9d584-13f7eefc6d0840a6","8f44c0b8d26e698-13b75421756f1f54"]},"geometry":{"type":"LineString","coordinates":[[-83.603513,32.858651],[-83.60269000000001,32.858652],[-83.601735,32.858644000000005],[-83.601562,32.858629],[-83.6014057,32.858554000000005]]},"id":"8744c0a32ffffff-13ff7193fd453729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687067,32.850417]},"id":"8f44c0a26a95114-17d6a2ff2c75d0e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687887,32.850409]},"id":"8f44c0a26a846a5-17d7a0feae4700f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a846a5-17d7a0feae4700f4","8f44c0a26a95114-17d6a2ff2c75d0e5"]},"geometry":{"type":"LineString","coordinates":[[-83.687067,32.850417],[-83.687887,32.850409]]},"id":"8944c0a26abffff-17d6a1fee7d5f660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aae52a-17defef6a53fee2d","8f44c0a26a846a5-17d7a0feae4700f4"]},"geometry":{"type":"LineString","coordinates":[[-83.687887,32.850409],[-83.688719,32.85042]]},"id":"8944c0a26abffff-17d77ffaa530a6c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689322,32.850436]},"id":"8f44c0a26aac0f1-17f6fd7dc3a06b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aae52a-17defef6a53fee2d","8f44c0a26aac0f1-17f6fd7dc3a06b31"]},"geometry":{"type":"LineString","coordinates":[[-83.688719,32.85042],[-83.689322,32.850436]]},"id":"8a44c0a26aaffff-17dffe3a38131ec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aac0f1-17f6fd7dc3a06b31","8f44c0a26a13674-17f67c68e2d6f343"]},"geometry":{"type":"LineString","coordinates":[[-83.689322,32.850436],[-83.68976500000001,32.850442]]},"id":"8844c0a26bfffff-17f67cf35204bbfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a1335d-17fe7be5a320337c","8f44c0a26a13674-17f67c68e2d6f343"]},"geometry":{"type":"LineString","coordinates":[[-83.68976500000001,32.850442],[-83.689975,32.850445]]},"id":"8b44c0a26a13fff-17f77c274537337c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69119400000001,32.850454]},"id":"8f44c0a26a03043-17fff8ebcd85633c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a1335d-17fe7be5a320337c","8f44c0a26a03043-17fff8ebcd85633c"]},"geometry":{"type":"LineString","coordinates":[[-83.689975,32.850445],[-83.690202,32.850447],[-83.69119400000001,32.850454]]},"id":"8944c0a26a3ffff-17ff7a68b5f2d58f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69215700000001,32.850458]},"id":"8f44c0a26a0c944-17f67691e535f7cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a0c944-17f67691e535f7cf","8f44c0a26a03043-17fff8ebcd85633c"]},"geometry":{"type":"LineString","coordinates":[[-83.69119400000001,32.850454],[-83.69215700000001,32.850458]]},"id":"8944c0a26a3ffff-17ff77bed0c047e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684292,32.818264]},"id":"8f44c0b19d1d469-17d789c582798736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685193,32.818303]},"id":"8f44c0b19d08c74-17ffe7926f15f346"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d08c74-17ffe7926f15f346","8f44c0b19d1d469-17d789c582798736"]},"geometry":{"type":"LineString","coordinates":[[-83.684292,32.818264],[-83.685193,32.818303]]},"id":"8944c0b19d3ffff-17f7b8abf2d362a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d746d4-17f7844f68965f45","8f44c0b19d08c74-17ffe7926f15f346"]},"geometry":{"type":"LineString","coordinates":[[-83.685193,32.818303],[-83.68652900000001,32.818316]]},"id":"8844c0b19dfffff-17f7f5f0ee7ccb03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d746d4-17f7844f68965f45","8f44c0b19d647ad-1396e106cdb6ca64"]},"geometry":{"type":"LineString","coordinates":[[-83.68652900000001,32.818316],[-83.68787400000001,32.818331]]},"id":"8944c0b19d7ffff-17feb2ab1e3e4b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2669c470-1797e5a48cd74621","8f44c0a22d2209d-139ea57646f9a4a9"]},"geometry":{"type":"LineString","coordinates":[[-83.672876,32.85725],[-83.67295,32.858896]]},"id":"8644c0a27ffffff-1397a58d68516c1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d085b3-1796a50e8331a6d0","8f44c0a22d2209d-139ea57646f9a4a9"]},"geometry":{"type":"LineString","coordinates":[[-83.67295,32.858896],[-83.67298000000001,32.859159000000005],[-83.673052,32.859451],[-83.67314,32.859737],[-83.673159,32.859974],[-83.673162,32.860149],[-83.673141,32.860473],[-83.67311600000001,32.860733]]},"id":"8944c0a22d3ffff-17d7b51dc5123ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7357946,32.879514300000004]},"id":"8f44c0b52715149-17f67c086012f9a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52715149-17f67c086012f9a7","8f44c0b5271a591-13de8dc34a9697d8"]},"geometry":{"type":"LineString","coordinates":[[-83.7357946,32.879514300000004],[-83.73579500000001,32.879783],[-83.735792,32.879981],[-83.73577,32.880111],[-83.735746,32.880187],[-83.735695,32.880298],[-83.73561600000001,32.880412],[-83.73554800000001,32.880488],[-83.735466,32.880556],[-83.735391,32.880609],[-83.735234,32.880691],[-83.73519,32.88071],[-83.73508600000001,32.88074]]},"id":"8944c0b5273ffff-179f9c81063ee43f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73383960000001,32.8816889]},"id":"8f44c0b52788389-13bf90ce4766a26c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b52788389-13bf90ce4766a26c","8f44c0b5271a591-13de8dc34a9697d8"]},"geometry":{"type":"LineString","coordinates":[[-83.73508600000001,32.88074],[-83.734941,32.880768],[-83.734126,32.880879],[-83.73404000000001,32.880907],[-83.73396000000001,32.880952],[-83.733891,32.881009],[-83.733852,32.881054],[-83.73380300000001,32.881138],[-83.733783,32.881214],[-83.73378100000001,32.881281],[-83.733817,32.881549],[-83.73383960000001,32.8816889]]},"id":"8844c0b527fffff-139e8fd8954af6e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57166070000001,32.8238658]},"id":"8f44c0b8cc30d6e-1797bcc017ab8e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8c5a6156-13dfecca2d7934f5","8f44c0b8cc30d6e-1797bcc017ab8e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.57166070000001,32.8238658],[-83.5714263,32.8237881],[-83.571302,32.823757],[-83.571101,32.823704],[-83.570912,32.823686],[-83.570784,32.823687],[-83.570634,32.823707],[-83.57049400000001,32.823738],[-83.569574,32.824044],[-83.56895700000001,32.824285],[-83.56868800000001,32.824438],[-83.568398,32.824626],[-83.568172,32.824793],[-83.568014,32.824925],[-83.567752,32.82517],[-83.56752,32.825421],[-83.56721200000001,32.82583],[-83.566546,32.826908],[-83.56629000000001,32.827308],[-83.56606400000001,32.827606],[-83.56593000000001,32.827737],[-83.56579280000001,32.8278483],[-83.56566000000001,32.827956],[-83.56509100000001,32.82831]]},"id":"8744c0b8cffffff-13f7b575e7086861"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.561881,32.829667]},"id":"8f44c0b8e963c2c-13bff4a061467c92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8c5a6156-13dfecca2d7934f5","8f44c0b8e963c2c-13bff4a061467c92"]},"geometry":{"type":"LineString","coordinates":[[-83.56509100000001,32.82831],[-83.56496,32.828367],[-83.564734,32.828453],[-83.56460100000001,32.828491],[-83.56442100000001,32.828525],[-83.56414000000001,32.828552],[-83.564052,32.828564],[-83.56385800000001,32.828603],[-83.56375200000001,32.828633],[-83.563652,32.828667],[-83.563473,32.82875],[-83.56299200000001,32.829051],[-83.56270500000001,32.829214],[-83.562202,32.829456],[-83.562038,32.829554],[-83.561881,32.829667]]},"id":"8644c0b8fffffff-13d7b0ce72e29be0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65747400000001,32.844541]},"id":"8f44c0a35d74a75-17feeb3ec0753000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d74a75-17feeb3ec0753000","8f44c0a35d66d83-17feca20819d6eaa"]},"geometry":{"type":"LineString","coordinates":[[-83.65747400000001,32.844541],[-83.657932,32.844532]]},"id":"8944c0a35d7ffff-17ffdaafad1d7704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658928,32.84452]},"id":"8f44c0b1b6cb096-17f7c7b20d1388db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d66d83-17feca20819d6eaa","8f44c0b1b6cb096-17f7c7b20d1388db"]},"geometry":{"type":"LineString","coordinates":[[-83.657932,32.844532],[-83.658928,32.84452]]},"id":"8744c0a35ffffff-17f6c8e949566bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d6254d4-13b7f04821fd47fa","8f44c0b8d635882-179ff2df454fd14c"]},"geometry":{"type":"LineString","coordinates":[[-83.589875,32.85446],[-83.589803,32.854464],[-83.589679,32.854458],[-83.58956400000001,32.854459],[-83.589454,32.854452],[-83.589358,32.854425],[-83.589259,32.85439],[-83.58912600000001,32.854321],[-83.588901,32.854219],[-83.588814,32.854188]]},"id":"8944c0b8d63ffff-1397f19a99092406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.587805,32.853758]},"id":"8f44c0b8d7aba25-17fff555e8c60a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d7aba25-17fff555e8c60a82","8f44c0b8d635882-179ff2df454fd14c"]},"geometry":{"type":"LineString","coordinates":[[-83.588814,32.854188],[-83.587805,32.853758]]},"id":"8844c0b8d7fffff-1797741a950e37af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650362,32.837691]},"id":"8f44c0a34b1b36b-17d6fc9bc103ed6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65072,32.837246]},"id":"8f44c0a34b19984-17bedbbc06d602f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b1b36b-17d6fc9bc103ed6a","8f44c0a34b19984-17bedbbc06d602f5"]},"geometry":{"type":"LineString","coordinates":[[-83.650362,32.837691],[-83.65072,32.837246]]},"id":"8a44c0a34b1ffff-17bfdc2be599dcc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b05a19-13d6f96227b97d63","8f44c0a34b19984-17bedbbc06d602f5"]},"geometry":{"type":"LineString","coordinates":[[-83.65072,32.837246],[-83.651683,32.836077]]},"id":"8944c0a34b3ffff-17d7fa8f122999b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b05a19-13d6f96227b97d63","8f44c0a34b216c5-13f7f89de16d42ac"]},"geometry":{"type":"LineString","coordinates":[[-83.651683,32.836077],[-83.65199700000001,32.835695]]},"id":"8944c0a34b3ffff-13ded900038567ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b252ed-13f7d7ca023a274b","8f44c0a34b216c5-13f7f89de16d42ac"]},"geometry":{"type":"LineString","coordinates":[[-83.65199700000001,32.835695],[-83.652336,32.835282]]},"id":"8a44c0a34b27fff-13f6d833fb5755ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b252ed-13f7d7ca023a274b","8f44c0b1b4d6191-13fff70cacba260f"]},"geometry":{"type":"LineString","coordinates":[[-83.652336,32.835282],[-83.65263900000001,32.834911000000005]]},"id":"8844c0b1b5fffff-13ffd76b534846fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654407,32.832729]},"id":"8f44c0b1b411351-13b7f2bba86d798e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b411351-13b7f2bba86d798e","8f44c0b1b4d6191-13fff70cacba260f"]},"geometry":{"type":"LineString","coordinates":[[-83.65263900000001,32.834911000000005],[-83.654358,32.832849],[-83.654396,32.832769],[-83.654407,32.832729]]},"id":"8844c0b1b5fffff-17d7d4d9dd1b350b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64622800000001,32.837769]},"id":"8f44c0a3416d352-17f7e6b3822f9f26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3416d352-17f7e6b3822f9f26","8f44c0a34b95ad8-17fee4d6a6f9e256"]},"geometry":{"type":"LineString","coordinates":[[-83.64622800000001,32.837769],[-83.646226,32.83775],[-83.64623200000001,32.837727],[-83.646304,32.837618],[-83.64682,32.836987],[-83.646872,32.836917],[-83.646991,32.836759]]},"id":"8944c0a34bbffff-17b7f5ccaa9222d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647963,32.835665]},"id":"8f44c0a34ba672a-13d6e2772609265b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b95ad8-17fee4d6a6f9e256","8f44c0a34ba672a-13d6e2772609265b"]},"geometry":{"type":"LineString","coordinates":[[-83.646991,32.836759],[-83.647042,32.836689],[-83.6477254,32.8359408],[-83.647963,32.835665]]},"id":"8944c0a34bbffff-13bee3a73407f0a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34ba672a-13d6e2772609265b","8f44c0a34859a56-13b7e180e94134fb"]},"geometry":{"type":"LineString","coordinates":[[-83.647963,32.835665],[-83.648357,32.835203]]},"id":"8744c0a34ffffff-13d6e1fc0196273e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34859a56-13b7e180e94134fb","8f44c0a3484c4b4-17ffe0062afa71e8"]},"geometry":{"type":"LineString","coordinates":[[-83.648357,32.835203],[-83.64890600000001,32.834558],[-83.64896300000001,32.834476]]},"id":"8944c0a3487ffff-13d6e0c15470526d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3486cd2d-1797ddac4ca8b60a","8f44c0a3484c4b4-17ffe0062afa71e8"]},"geometry":{"type":"LineString","coordinates":[[-83.64896300000001,32.834476],[-83.64992600000001,32.833318000000006]]},"id":"8944c0a3487ffff-1797fed93d983de5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23b6ead0-17ded15a69261ffb","8f44c0a21776c51-17f73ffa4cfda322"]},"geometry":{"type":"LineString","coordinates":[[-83.714518,32.885685],[-83.71145800000001,32.885633],[-83.708195,32.885567],[-83.70774300000001,32.885565],[-83.707673,32.885584],[-83.707617,32.885607],[-83.707548,32.885651],[-83.707458,32.885747],[-83.70743300000001,32.885803],[-83.707414,32.885886],[-83.707401,32.88626]]},"id":"8744c0a21ffffff-17dfe94208b7eae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23b6ead0-17ded15a69261ffb","8f44c0a23b6b318-17def0e80c3dacf2"]},"geometry":{"type":"LineString","coordinates":[[-83.707401,32.88626],[-83.707395,32.886514000000005],[-83.707391,32.886711000000005],[-83.707396,32.886794],[-83.70744,32.886901],[-83.707492,32.886969],[-83.70752,32.887],[-83.70758400000001,32.887057]]},"id":"8a44c0a23b6ffff-17f6d14a8de99685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e056800-13ffc835896a155e","8f44c0b8e0435a0-17bfc53605c54b60"]},"geometry":{"type":"LineString","coordinates":[[-83.55508800000001,32.840524],[-83.554951,32.840446],[-83.55386,32.839594000000005]]},"id":"8944c0b8e07ffff-1797f6b9560a6730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e056800-13ffc835896a155e","8f44c0b8e01ca1d-13bfcb8329f94d73"]},"geometry":{"type":"LineString","coordinates":[[-83.55386,32.839594000000005],[-83.552507,32.838464]]},"id":"8844c0b8e1fffff-139fe9dc5ea6880a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.551226,32.837403]},"id":"8f44c0b8e0161a8-1797eea3c6bf2e75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0161a8-1797eea3c6bf2e75","8f44c0b8e01ca1d-13bfcb8329f94d73"]},"geometry":{"type":"LineString","coordinates":[[-83.552507,32.838464],[-83.551226,32.837403]]},"id":"8944c0b8e03ffff-17dffd13758e097a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673596,32.828879]},"id":"8f44c0b1b869d16-13d7e3e28447d4d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b869d16-13d7e3e28447d4d2","8f44c0b1b948c22-1796e4634881855c"]},"geometry":{"type":"LineString","coordinates":[[-83.673596,32.828879],[-83.673534,32.828688],[-83.67344200000001,32.828241000000006],[-83.67339700000001,32.827695],[-83.673384,32.827151],[-83.673399,32.8267],[-83.67339000000001,32.826554]]},"id":"8844c0b1b9fffff-17fff449448b1ceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67337900000001,32.826095]},"id":"8f44c0b1b941344-13f7e46a2a622aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b948c22-1796e4634881855c","8f44c0b1b941344-13f7e46a2a622aec"]},"geometry":{"type":"LineString","coordinates":[[-83.67339000000001,32.826554],[-83.67337900000001,32.826095]]},"id":"8a44c0b1b94ffff-1396f466b76d1197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635744,32.823087]},"id":"8f44c0ba9b436c8-139f604c0f9074c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b436c8-139f604c0f9074c6","8f44c0ba9b5100d-139762090a3fc3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.63503200000001,32.822663],[-83.635744,32.823087]]},"id":"8944c0ba9b7ffff-139fe12a8b7f41f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b436c8-139f604c0f9074c6","8f44c0ba9b4855d-179efe99ad835ca0"]},"geometry":{"type":"LineString","coordinates":[[-83.635744,32.823087],[-83.63643900000001,32.823499000000005]]},"id":"8944c0ba9b7ffff-179eff72d04d491d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63714900000001,32.823936]},"id":"8f44c0ba9b49a5b-17b6fcddef61b608"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b4855d-179efe99ad835ca0","8f44c0ba9b49a5b-17b6fcddef61b608"]},"geometry":{"type":"LineString","coordinates":[[-83.63643900000001,32.823499000000005],[-83.63714900000001,32.823936]]},"id":"8a44c0ba9b4ffff-17b7fdbbc36b10b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6864b5-17befb22c4efd9fc","8f44c0ba9b49a5b-17b6fcddef61b608"]},"geometry":{"type":"LineString","coordinates":[[-83.63714900000001,32.823936],[-83.63785800000001,32.824363000000005]]},"id":"8944c0b1a6bffff-17b7fc00505428aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63857900000001,32.824796]},"id":"8f44c0b1a680331-17dff9602fe0a908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6864b5-17befb22c4efd9fc","8f44c0b1a680331-17dff9602fe0a908"]},"geometry":{"type":"LineString","coordinates":[[-83.63785800000001,32.824363000000005],[-83.63857900000001,32.824796]]},"id":"8a44c0b1a687fff-17d6fa417d404368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a68c815-13d6f7a6e4fcb017","8f44c0b1a680331-17dff9602fe0a908"]},"geometry":{"type":"LineString","coordinates":[[-83.63857900000001,32.824796],[-83.639285,32.825223]]},"id":"8944c0b1a6bffff-13def88385056da9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c796d0c-179dffeb2d180198","8f44c0b2c4438a8-139fb9c60839cb3a"]},"geometry":{"type":"LineString","coordinates":[[-83.76697100000001,32.752634],[-83.766875,32.752267],[-83.766847,32.752093],[-83.766841,32.7519],[-83.76684,32.751624],[-83.766824,32.750853],[-83.766829,32.750771],[-83.766864,32.750721],[-83.766958,32.75065],[-83.76736000000001,32.750593],[-83.76886,32.750574],[-83.76948800000001,32.750557]]},"id":"8844c0b2c5fffff-13bdbe5b5d24caf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.773944,32.750811]},"id":"8f44c0b2c0898f5-13bdeee50d0b6059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c0898f5-13bdeee50d0b6059","8f44c0b2c4438a8-139fb9c60839cb3a"]},"geometry":{"type":"LineString","coordinates":[[-83.76948800000001,32.750557],[-83.770155,32.750546],[-83.77113,32.750526],[-83.771456,32.750529],[-83.77247700000001,32.750506],[-83.77312500000001,32.750481],[-83.77328800000001,32.750478],[-83.77346200000001,32.750487],[-83.773559,32.750510000000006],[-83.773672,32.750571],[-83.773751,32.750633],[-83.773944,32.750811]]},"id":"8744c0b2cffffff-13fdf436a7d33c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590727,32.868276]},"id":"8f44c0b891739a4-13f7ee33a05b8ea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b891409b3-13976c8967dc68bc","8f44c0b891739a4-13f7ee33a05b8ea7"]},"geometry":{"type":"LineString","coordinates":[[-83.590727,32.868276],[-83.591409,32.868946]]},"id":"8944c0b8917ffff-13d7ed5e86bac4a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8914c94e-17d76a71cc1edb19","8f44c0b891409b3-13976c8967dc68bc"]},"geometry":{"type":"LineString","coordinates":[[-83.591409,32.868946],[-83.59175400000001,32.86929],[-83.592014,32.869515],[-83.59213600000001,32.869607],[-83.59222100000001,32.869649],[-83.59226600000001,32.869661]]},"id":"8944c0b8917ffff-17977b8955d506ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23da0aa3-139fa1102524c574","8f44c0a23da9940-179ffea2efa0f5c7"]},"geometry":{"type":"LineString","coordinates":[[-83.687859,32.875509],[-83.688033,32.875709],[-83.688198,32.875929],[-83.688516,32.87634],[-83.68885300000001,32.876745]]},"id":"8944c0a23dbffff-179fffda0469a7bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691477,32.880308]},"id":"8f44c0a23c73848-17d6f83aefda5beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23c73848-17d6f83aefda5beb","8f44c0a23da9940-179ffea2efa0f5c7"]},"geometry":{"type":"LineString","coordinates":[[-83.68885300000001,32.876745],[-83.688972,32.876935],[-83.68906000000001,32.877086000000006],[-83.68914000000001,32.877248],[-83.68920700000001,32.877395],[-83.68936000000001,32.877693],[-83.68949400000001,32.877912],[-83.689722,32.8782],[-83.689898,32.878383],[-83.690397,32.878877],[-83.690584,32.879083],[-83.69076000000001,32.879305],[-83.69116000000001,32.879846],[-83.69134100000001,32.880104],[-83.691477,32.880308]]},"id":"8844c0a23dfffff-139ffb8c5493732d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23c73848-17d6f83aefda5beb","8f44c0a23119830-13ff7168a22352eb"]},"geometry":{"type":"LineString","coordinates":[[-83.691477,32.880308],[-83.691895,32.880864],[-83.692408,32.881565],[-83.692786,32.882095],[-83.69310200000001,32.882581],[-83.693723,32.883566],[-83.694271,32.88445]]},"id":"8744c0a23ffffff-17dff4b89d0e6756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a23119830-13ff7168a22352eb","8f44c0a2302410a-1396f0b4a0156578"]},"geometry":{"type":"LineString","coordinates":[[-83.694271,32.88445],[-83.69440200000001,32.884645],[-83.694417,32.88467],[-83.694559,32.884897]]},"id":"8944c0a2313ffff-13fe710d89087107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649592,32.847202]},"id":"8f44c0a35c90d1b-17ffde7d0c80be37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64902000000001,32.848444]},"id":"8f44c0a34268312-1397dfe286b741cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35c90d1b-17ffde7d0c80be37","8f44c0a34268312-1397dfe286b741cd"]},"geometry":{"type":"LineString","coordinates":[[-83.649592,32.847202],[-83.64902000000001,32.848444]]},"id":"8844c0a343fffff-1397ff2fc4008963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648065,32.849936]},"id":"8f44c0a3424b644-17bee2376424b309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3424b644-17bee2376424b309","8f44c0a34268312-1397dfe286b741cd"]},"geometry":{"type":"LineString","coordinates":[[-83.64902000000001,32.848444],[-83.648983,32.848534],[-83.64886700000001,32.848726],[-83.648065,32.849936]]},"id":"8944c0a3427ffff-13dff10621681e14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64769700000001,32.850499]},"id":"8f44c0a355a1c98-179fe31d654d6105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3424b644-17bee2376424b309","8f44c0a355a1c98-179fe31d654d6105"]},"geometry":{"type":"LineString","coordinates":[[-83.648065,32.849936],[-83.64769700000001,32.850499]]},"id":"8a44c0a355a7fff-17dff2aa6dab39b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64727900000001,32.851138]},"id":"8f44c0a35585020-139fe422a15158e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a355a1c98-179fe31d654d6105","8f44c0a35585020-139fe422a15158e6"]},"geometry":{"type":"LineString","coordinates":[[-83.64769700000001,32.850499],[-83.64735900000001,32.851006000000005],[-83.64727900000001,32.851138]]},"id":"8944c0a355bffff-17d6f3a16264125c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35585020-139fe422a15158e6","8f44c0a35581ce5-13ffe4a365f86067"]},"geometry":{"type":"LineString","coordinates":[[-83.64727900000001,32.851138],[-83.647163,32.851326],[-83.647073,32.851475]]},"id":"8a44c0a35587fff-1396f46342c0f111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a354b1764-17bfe80825da0b3b","8f44c0a35581ce5-13ffe4a365f86067"]},"geometry":{"type":"LineString","coordinates":[[-83.647073,32.851475],[-83.645683,32.853631]]},"id":"8844c0a355fffff-139fe655cbd022a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69213,32.85172]},"id":"8f44c0a26a56126-139776a2c6dda2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26af0922-13f7fbf2ccfe4755","8f44c0a26a56126-139776a2c6dda2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.689954,32.851692],[-83.69213,32.85172]]},"id":"8844c0a26bfffff-13fe794ac7b95a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695706,32.851672]},"id":"8f44c0a24693d6b-13f76de7c979cd2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24693d6b-13f76de7c979cd2b","8f44c0a26a56126-139776a2c6dda2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.69213,32.85172],[-83.69350200000001,32.85174],[-83.693624,32.851743],[-83.69497600000001,32.85175],[-83.695237,32.851751],[-83.69527400000001,32.851751],[-83.69546000000001,32.851743],[-83.69555700000001,32.851715],[-83.695706,32.851672]]},"id":"8844c0a26bfffff-1396724251537671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760997,32.822665]},"id":"8f44c0b0d2d5c45-1395ee80eed486a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d2d5c45-1395ee80eed486a3","8f44c0b0d24d140-13fdc16405993045"]},"geometry":{"type":"LineString","coordinates":[[-83.760997,32.822665],[-83.761605,32.822575],[-83.76199000000001,32.822538],[-83.762679,32.822488],[-83.763187,32.822446],[-83.76358900000001,32.822412],[-83.76421500000001,32.822384],[-83.764567,32.822372],[-83.76485600000001,32.82238],[-83.764965,32.822397],[-83.765016,32.822415],[-83.765105,32.822457],[-83.76599900000001,32.822984000000005],[-83.766273,32.82314],[-83.766368,32.823208]]},"id":"8644c0b0fffffff-13ddd7c3462371dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72532cc8-1797c0e66eaa695f","8f44c0b0d24d140-13fdc16405993045"]},"geometry":{"type":"LineString","coordinates":[[-83.766368,32.823208],[-83.766396,32.823223],[-83.766501,32.823312],[-83.766554,32.823394],[-83.76656700000001,32.823448],[-83.766569,32.82348]]},"id":"8844c0b725fffff-17b5e1162247891e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76662,32.823911]},"id":"8f44c0b725148c0-17b5e0c686138d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b725148c0-17b5e0c686138d4c","8f44c0b72532cc8-1797c0e66eaa695f"]},"geometry":{"type":"LineString","coordinates":[[-83.766569,32.82348],[-83.76657900000001,32.823497],[-83.766597,32.823576],[-83.76661100000001,32.82385],[-83.76662,32.823911]]},"id":"8944c0b7253ffff-179de0d230085ab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71208700000001,32.742156]},"id":"8f44c0b040262d9-1797c5e9a253b32f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7121197,32.741896700000005]},"id":"8f44c0b0402616c-17f775d53f1ec799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b040262d9-1797c5e9a253b32f","8f44c0b0402616c-17f775d53f1ec799"]},"geometry":{"type":"LineString","coordinates":[[-83.71208700000001,32.742156],[-83.7121197,32.741896700000005]]},"id":"8b44c0b04026fff-17b6c5df6f3984ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71213300000001,32.7417919]},"id":"8f44c0b0402680e-17b7f5cce7780eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0402616c-17f775d53f1ec799","8f44c0b0402680e-17b7f5cce7780eec"]},"geometry":{"type":"LineString","coordinates":[[-83.7121197,32.741896700000005],[-83.71213300000001,32.7417919]]},"id":"8b44c0b04026fff-17d6f5d11425cf8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7121834,32.741451000000005]},"id":"8f44c0b04119109-17dee5ad63c54b6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04119109-17dee5ad63c54b6f","8f44c0b0402680e-17b7f5cce7780eec"]},"geometry":{"type":"LineString","coordinates":[[-83.71213300000001,32.7417919],[-83.71214230000001,32.741717900000005],[-83.7121834,32.741451000000005]]},"id":"8844c0b041fffff-17bf55bdac9d97a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04119109-17dee5ad63c54b6f","8f44c0b04103733-13ffd56c2f40b90a"]},"geometry":{"type":"LineString","coordinates":[[-83.7121834,32.741451000000005],[-83.7122238,32.7411885],[-83.7122878,32.7406777]]},"id":"8944c0b0413ffff-13df758b43f2819f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73381450000001,32.864807]},"id":"8f44c0b52db5cda-13fe70ddfb3e9e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b52db5cda-13fe70ddfb3e9e17","8f44c0b52d129a5-13b7ac4a68967802"]},"geometry":{"type":"LineString","coordinates":[[-83.73381450000001,32.864807],[-83.73407800000001,32.864834],[-83.734155,32.864838],[-83.734401,32.864883],[-83.734638,32.864938],[-83.73485500000001,32.865],[-83.73500200000001,32.865037],[-83.73519200000001,32.865071],[-83.735326,32.86509],[-83.735473,32.865104],[-83.73568900000001,32.865113]]},"id":"8644c0b57ffffff-13debe94a5bac691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7400102,32.864523500000004]},"id":"8f44c0b566d5202-13d731bda138f856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b566d5202-13d731bda138f856","8f44c0b52d129a5-13b7ac4a68967802"]},"geometry":{"type":"LineString","coordinates":[[-83.73568900000001,32.865113],[-83.73608800000001,32.865119],[-83.73668400000001,32.865115],[-83.73696600000001,32.865094],[-83.737164,32.865068],[-83.73733800000001,32.865032],[-83.737469,32.864997],[-83.73769300000001,32.864894],[-83.738134,32.864718],[-83.738287,32.864669],[-83.738483,32.864621],[-83.73863300000001,32.864593],[-83.73912,32.864542],[-83.73943700000001,32.864534],[-83.7400102,32.864523500000004]]},"id":"8744c0b52ffffff-1397c703f93dffb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2e9cce-17d6eaa50fac9d9a","8f44c0b184b4d84-17beebebef41bc58"]},"geometry":{"type":"LineString","coordinates":[[-83.65719700000001,32.810205],[-83.657206,32.809694],[-83.65723200000001,32.808819],[-83.657252,32.808464],[-83.65728100000001,32.808253],[-83.657337,32.808068],[-83.657374,32.807924],[-83.657589,32.807291],[-83.657645,32.807153],[-83.65772000000001,32.806989]]},"id":"8644c0b1fffffff-13bfeb98d2cda175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19408504-139fd64a8bf81f8a","8f44c0b19418471-1396f971662af692"]},"geometry":{"type":"LineString","coordinates":[[-83.677873,32.828167],[-83.679164,32.828178]]},"id":"8944c0b1943ffff-1397d7ddf4bb02d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19408504-139fd64a8bf81f8a","8f44c0b1947679d-1396b3ebac25aac7"]},"geometry":{"type":"LineString","coordinates":[[-83.679164,32.828178],[-83.67966200000001,32.828156],[-83.680135,32.828161]]},"id":"8944c0b1943ffff-1397d51b2c694594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19476391-1396d37daad1f338","8f44c0b1947679d-1396b3ebac25aac7"]},"geometry":{"type":"LineString","coordinates":[[-83.680135,32.828161],[-83.680311,32.82817]]},"id":"8b44c0b19476fff-1397f3b4ab2245dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19476391-1396d37daad1f338","8f44c0b19475c48-1396d18aec7d3432"]},"geometry":{"type":"LineString","coordinates":[[-83.680311,32.82817],[-83.681109,32.828186]]},"id":"8a44c0b19477fff-139fd2844c2ab6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682062,32.828195]},"id":"8f44c0b19464741-1397ef374c018d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19464741-1397ef374c018d66","8f44c0b19475c48-1396d18aec7d3432"]},"geometry":{"type":"LineString","coordinates":[[-83.681109,32.828186],[-83.682062,32.828195]]},"id":"8944c0b1947ffff-139790611fc1b128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68939110000001,32.847058600000004]},"id":"8f44c0a26ba3120-17b7fd52907a1e5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2685e0f0-13f7ff848b76a78e","8f44c0a26ba3120-17b7fd52907a1e5d"]},"geometry":{"type":"LineString","coordinates":[[-83.68849200000001,32.84534],[-83.688665,32.845791000000006],[-83.688743,32.845995],[-83.688856,32.84631],[-83.68895400000001,32.846532],[-83.689102,32.846752],[-83.689255,32.846913],[-83.68939110000001,32.847058600000004]]},"id":"8744c0a26ffffff-17b7fe959c5c1253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689362,32.848377]},"id":"8f44c0a26b8c46b-13dffd64c36f052a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26ba3120-17b7fd52907a1e5d","8f44c0a26b8c46b-13dffd64c36f052a"]},"geometry":{"type":"LineString","coordinates":[[-83.68939110000001,32.847058600000004],[-83.68937700000001,32.847869],[-83.689362,32.848377]]},"id":"8944c0a26bbffff-17bffd5a8c08d711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b8c46b-13dffd64c36f052a","8f44c0a26b8bb9e-13d6fd6f68918fdf"]},"geometry":{"type":"LineString","coordinates":[[-83.689362,32.848377],[-83.689345,32.849182]]},"id":"8a44c0a26b8ffff-13d77d6a19fb9ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aa5a70-1797fd73ca37420e","8f44c0a26b8bb9e-13d6fd6f68918fdf"]},"geometry":{"type":"LineString","coordinates":[[-83.689345,32.849182],[-83.689338,32.84967]]},"id":"8844c0a26bfffff-13ff7d719b64a617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aac0f1-17f6fd7dc3a06b31","8f44c0a26aa5a70-1797fd73ca37420e"]},"geometry":{"type":"LineString","coordinates":[[-83.689338,32.84967],[-83.689322,32.850436]]},"id":"8944c0a26abffff-17f77d78c835d400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68930300000001,32.850839]},"id":"8f44c0a26aa814b-17de7d89a9d7e5cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26aac0f1-17f6fd7dc3a06b31","8f44c0a26aa814b-17de7d89a9d7e5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.689322,32.850436],[-83.68930300000001,32.850839]]},"id":"8a44c0a26aaffff-17f67d83bffd7276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642707,32.803638]},"id":"8f44c0b1e69231c-17b7ef4c2bdfa58a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e61d715-17dfe3c76dc32cec","8f44c0b1e69231c-17b7ef4c2bdfa58a"]},"geometry":{"type":"LineString","coordinates":[[-83.642707,32.803638],[-83.647425,32.803731]]},"id":"8744c0b1effffff-17bef989cd64afc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e61d715-17dfe3c76dc32cec","8f44c0b1e60d19e-17f6e07ec88b225f"]},"geometry":{"type":"LineString","coordinates":[[-83.647425,32.803731],[-83.64877,32.803745]]},"id":"8944c0b1e63ffff-17f6e22316d537df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649849,32.803752]},"id":"8f44c0b1e6742f6-17ffdddc6f95aa7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e60d19e-17f6e07ec88b225f","8f44c0b1e6742f6-17ffdddc6f95aa7e"]},"geometry":{"type":"LineString","coordinates":[[-83.64877,32.803745],[-83.649849,32.803752]]},"id":"8844c0b1e7fffff-17f6df2d9cebda3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.761984,32.872683]},"id":"8f44c0b50089932-17b7ec1806c0db59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b500e2958-17fde78ec27aa0b9","8f44c0b50089932-17b7ec1806c0db59"]},"geometry":{"type":"LineString","coordinates":[[-83.761984,32.872683],[-83.76219300000001,32.872563],[-83.76235000000001,32.872494],[-83.762478,32.872453],[-83.762608,32.872422],[-83.76272,32.872422],[-83.76283400000001,32.872441],[-83.762939,32.872467],[-83.763108,32.872521],[-83.76384200000001,32.872777]]},"id":"8844c0b501fffff-17f5f9d8336d2e90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50054342-179fe2e5acb0479f","8f44c0b500e2958-17fde78ec27aa0b9"]},"geometry":{"type":"LineString","coordinates":[[-83.76384200000001,32.872777],[-83.764144,32.872883],[-83.764286,32.872922],[-83.764454,32.872951],[-83.764566,32.872959],[-83.764746,32.87296],[-83.76485000000001,32.872949000000006],[-83.765016,32.872909],[-83.76507600000001,32.872890000000005],[-83.76575100000001,32.872625]]},"id":"8844c0b501fffff-179dc535fb7fe32f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5056bb82-17fdf190ae283002","8f44c0b50561651-139fd256ce0ff8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.759426,32.868754],[-83.759552,32.868881],[-83.75967200000001,32.868974],[-83.75971,32.869017],[-83.759771,32.869115],[-83.759803,32.869193],[-83.759815,32.869275],[-83.759755,32.869600000000005],[-83.759743,32.869729]]},"id":"8944c0b5057ffff-17b7d1a96e11e82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759849,32.870402]},"id":"8f44c0b500b2c6c-17b5d14e698df999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b500b2c6c-17b5d14e698df999","8f44c0b5056bb82-17fdf190ae283002"]},"geometry":{"type":"LineString","coordinates":[[-83.759743,32.869729],[-83.75973400000001,32.869812],[-83.759765,32.870114],[-83.759793,32.870221],[-83.759849,32.870402]]},"id":"8844c0b501fffff-17d5f17e2bce024d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693791,32.786217]},"id":"8f44c0b03460775-139ff294a60e3a8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03460775-139ff294a60e3a8a","8f44c0b0346a76b-179f723c82e1a017"]},"geometry":{"type":"LineString","coordinates":[[-83.693791,32.786217],[-83.693809,32.786771],[-83.693826,32.787126],[-83.69383300000001,32.787194],[-83.69385100000001,32.787264],[-83.69388000000001,32.787337],[-83.693932,32.787445000000005]]},"id":"8944c0b0347ffff-139ef2807a840d44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0346b2dc-17b67134cf3b29fc","8f44c0b0346a76b-179f723c82e1a017"]},"geometry":{"type":"LineString","coordinates":[[-83.693932,32.787445000000005],[-83.69404700000001,32.787580000000005],[-83.69414,32.787672],[-83.694354,32.787869]]},"id":"8a44c0b0346ffff-17b771bc4918eb83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0372a81d-139f6bd5c66eaddc","8f44c0b0346b2dc-17b67134cf3b29fc"]},"geometry":{"type":"LineString","coordinates":[[-83.694354,32.787869],[-83.694443,32.787961],[-83.69454300000001,32.788055],[-83.694867,32.788314],[-83.69540500000001,32.788687],[-83.696554,32.789471]]},"id":"8744c0b03ffffff-17b6fe91d32eff52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697173,32.789904]},"id":"8f44c0b037297ad-139e6a52ea90d156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0372a81d-139f6bd5c66eaddc","8f44c0b037297ad-139e6a52ea90d156"]},"geometry":{"type":"LineString","coordinates":[[-83.696554,32.789471],[-83.697173,32.789904]]},"id":"8a44c0b0372ffff-1396fb1457ab7824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03761256-17d7e51c8a06acf8","8f44c0b037297ad-139e6a52ea90d156"]},"geometry":{"type":"LineString","coordinates":[[-83.697173,32.789904],[-83.69752000000001,32.790139],[-83.697778,32.790306],[-83.698141,32.790509],[-83.698784,32.790847],[-83.698949,32.790939],[-83.699167,32.791089],[-83.699308,32.791206]]},"id":"8844c0b037fffff-17bfe7b665cb0187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03761256-17d7e51c8a06acf8","8f44c0b032a80b2-17bedee0ed70088d"]},"geometry":{"type":"LineString","coordinates":[[-83.699308,32.791206],[-83.69944000000001,32.791395],[-83.699498,32.791497],[-83.69959700000001,32.791711],[-83.69995300000001,32.79267],[-83.700242,32.793400000000005],[-83.700298,32.793515],[-83.7004,32.793653],[-83.700535,32.793784],[-83.70066800000001,32.793875],[-83.70075100000001,32.793917],[-83.700878,32.793968],[-83.700998,32.794007],[-83.701109,32.79403],[-83.701272,32.794047],[-83.70145600000001,32.794055],[-83.70186100000001,32.794052]]},"id":"8744c0b03ffffff-13b672a6bbff7edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702116,32.794058]},"id":"8f44c0b032a8b89-17be5e418b4effc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032a8b89-17be5e418b4effc0","8f44c0b032a80b2-17bedee0ed70088d"]},"geometry":{"type":"LineString","coordinates":[[-83.70186100000001,32.794052],[-83.702116,32.794058]]},"id":"8b44c0b032a8fff-17be7e91321dd009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032a8b89-17be5e418b4effc0","8f44c0b0321d491-17d77aeda67f2683"]},"geometry":{"type":"LineString","coordinates":[[-83.702116,32.794058],[-83.703479,32.794069]]},"id":"8844c0b033fffff-17d7fc9792a9bdc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0327590a-17f6538348a28ad7","8f44c0b0321d491-17d77aeda67f2683"]},"geometry":{"type":"LineString","coordinates":[[-83.703479,32.794069],[-83.70370000000001,32.79408],[-83.705973,32.794111],[-83.7065164,32.7941157]]},"id":"8844c0b033fffff-17d6d7388c77f9ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707558,32.794131]},"id":"8f44c0b03264a56-17fff0f84dcad672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0327590a-17f6538348a28ad7","8f44c0b03264a56-17fff0f84dcad672"]},"geometry":{"type":"LineString","coordinates":[[-83.7065164,32.7941157],[-83.707007,32.79412],[-83.707558,32.794131]]},"id":"8844c0b033fffff-17f6723dc7b35689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15726836-17bee2d14bc307e5","8f44c0b157324a9-13f7e714815a081d"]},"geometry":{"type":"LineString","coordinates":[[-83.660926,32.755937],[-83.66064850000001,32.756029500000004],[-83.6605028,32.7560846],[-83.65955000000001,32.756335],[-83.65918,32.756431]]},"id":"8944c0b1573ffff-13def4f07f88c44e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65792210000001,32.7565157]},"id":"8f44c0b157a4d2c-1396da26b9e12b90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b157324a9-13f7e714815a081d","8f44c0b157a4d2c-1396da26b9e12b90"]},"geometry":{"type":"LineString","coordinates":[[-83.65918,32.756431],[-83.659102,32.756461],[-83.65896400000001,32.756504],[-83.65882900000001,32.756524],[-83.65867700000001,32.756535],[-83.658485,32.756532],[-83.65792210000001,32.7565157]]},"id":"8844c0b157fffff-1397f89a377b75cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b157b44dc-13ffedcb40a91886","8f44c0b157a4d2c-1396da26b9e12b90"]},"geometry":{"type":"LineString","coordinates":[[-83.65792210000001,32.7565157],[-83.65703400000001,32.75649],[-83.656896,32.756494],[-83.65680400000001,32.756513000000005],[-83.656738,32.756538],[-83.65663,32.756594],[-83.65643,32.756681]]},"id":"8744c0b15ffffff-139fcc017050f03c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61267000000001,32.824855]},"id":"8f44c0ba94c2683-17ff78a14a1d5853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba94c2683-17ff78a14a1d5853","8f44c0babb22ce8-17d73ed4ed8d9499"]},"geometry":{"type":"LineString","coordinates":[[-83.61267000000001,32.824855],[-83.612513,32.824886],[-83.612142,32.824897],[-83.612002,32.824894],[-83.61181900000001,32.824883],[-83.61159500000001,32.824857],[-83.611473,32.824831],[-83.611321,32.824793],[-83.6106766,32.8245857],[-83.6103039,32.8244582],[-83.61012980000001,32.824371500000005]]},"id":"8644c0bafffffff-17b7bbc76ce80f91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60736750000001,32.8228786]},"id":"8f44c0bab840c31-139f65935edc83ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bab840c31-139f65935edc83ca","8f44c0babb22ce8-17d73ed4ed8d9499"]},"geometry":{"type":"LineString","coordinates":[[-83.61012980000001,32.824371500000005],[-83.6099738,32.824288700000004],[-83.60975710000001,32.824131900000005],[-83.609638,32.82405],[-83.60902990000001,32.8235747],[-83.608832,32.82342],[-83.608422,32.823197],[-83.60792500000001,32.823],[-83.6076311,32.822949900000005],[-83.6075296,32.8229224],[-83.60736750000001,32.8228786]]},"id":"8744c0babffffff-17b7c212f5d27712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65948900000001,32.811141]},"id":"8f44c0b18412bb3-17f7e6536db8091e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18412bb3-17f7e6536db8091e","8f44c0b1858dc1c-139ee5f82b46e0e7"]},"geometry":{"type":"LineString","coordinates":[[-83.65948900000001,32.811141],[-83.659552,32.810689],[-83.659586,32.810386],[-83.65961300000001,32.810097],[-83.65963500000001,32.809745]]},"id":"8844c0b185fffff-17bfe61ea79a4e68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185ae055-1397e5ee26865138","8f44c0b1858dc1c-139ee5f82b46e0e7"]},"geometry":{"type":"LineString","coordinates":[[-83.65963500000001,32.809745],[-83.65965100000001,32.808735]]},"id":"8944c0b185bffff-13dfc5f32a57fcb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185ae055-1397e5ee26865138","8f44c0b185ae880-13bfe5eec5425356"]},"geometry":{"type":"LineString","coordinates":[[-83.65965100000001,32.808735],[-83.65965,32.808569]]},"id":"8b44c0b185aefff-13dfc5ee7a49e2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659693,32.806381]},"id":"8f44c0b1e24168e-13d6e5d3ea3b1971"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b185ae880-13bfe5eec5425356","8f44c0b1e24168e-13d6e5d3ea3b1971"]},"geometry":{"type":"LineString","coordinates":[[-83.65965,32.808569],[-83.65969000000001,32.806908],[-83.659693,32.806381]]},"id":"8744c0b18ffffff-17fff5df03a38b3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65974100000001,32.802945]},"id":"8f44c0b1e34255d-13f6e5b5ecd787a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e24168e-13d6e5d3ea3b1971","8f44c0b1e34255d-13f6e5b5ecd787a0"]},"geometry":{"type":"LineString","coordinates":[[-83.659693,32.806381],[-83.659705,32.805711],[-83.659723,32.803857],[-83.65972500000001,32.803614],[-83.65974100000001,32.802945]]},"id":"8844c0b1e3fffff-17b6e5c5dd98a038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60306100000001,32.852454]},"id":"8f44c0b8dac5b43-13dfd016ee7015bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac5b43-13dfd016ee7015bb","8f44c0b8daccd45-17b7d0246a5ca527"]},"geometry":{"type":"LineString","coordinates":[[-83.60306100000001,32.852454],[-83.603042,32.852894],[-83.6030394,32.8530249]]},"id":"8944c0b8dafffff-1797701e671ecf24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac88c9-179770290f1e48cb","8f44c0b8daccd45-17b7d0246a5ca527"]},"geometry":{"type":"LineString","coordinates":[[-83.6030394,32.8530249],[-83.60303,32.85351],[-83.603032,32.853583]]},"id":"8a44c0b8dacffff-17f75027ab733aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac88c9-179770290f1e48cb","8f44c0b8dac8af2-17d7501006a41ad8"]},"geometry":{"type":"LineString","coordinates":[[-83.603032,32.853583],[-83.603041,32.853633],[-83.603059,32.853675],[-83.60307200000001,32.85369]]},"id":"8b44c0b8dac8fff-17b7501fd9c21748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e8a6ca0-13d6432948251e02","8f44c0a2e8b6410-13dfc691c22018db"]},"geometry":{"type":"LineString","coordinates":[[-83.71181800000001,32.894844],[-83.712226,32.894826],[-83.71321400000001,32.894826]]},"id":"8844c0a2e9fffff-13d7e4dd9f300ab9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e833334-139e3d060daaa2d5","8f44c0a2e8a6ca0-13d6432948251e02"]},"geometry":{"type":"LineString","coordinates":[[-83.71321400000001,32.894826],[-83.71510500000001,32.89483],[-83.715326,32.894855],[-83.715728,32.894944]]},"id":"8844c0a2e9fffff-13dfd014df91131e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71726500000001,32.894973]},"id":"8f44c0a2e8217b3-139e394562aff09b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e833334-139e3d060daaa2d5","8f44c0a2e8217b3-139e394562aff09b"]},"geometry":{"type":"LineString","coordinates":[[-83.715728,32.894944],[-83.715866,32.894967],[-83.71726500000001,32.894973]]},"id":"8944c0a2e83ffff-139f7b2645088113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a205ab61b-179f7e61461ac527","8f44c0a204362a8-17d77d1dc30b8dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.688958,32.862789],[-83.68947560000001,32.8631158]]},"id":"8844c0a205fffff-17f77dbf8a301b83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20431c84-17be7bd2eb389a45","8f44c0a204362a8-17d77d1dc30b8dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.68947560000001,32.8631158],[-83.690005,32.86345]]},"id":"8a44c0a20437fff-17bffc78513051ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69042,32.8637193]},"id":"8f44c0a20404d1e-17d6facf83180e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20431c84-17be7bd2eb389a45","8f44c0a20404d1e-17d6facf83180e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.690005,32.86345],[-83.69032100000001,32.863655],[-83.69042,32.8637193]]},"id":"8944c0a2043ffff-17fe7b51367f725e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2042e7b2-139778f3e69814f1","8f44c0a20404d1e-17d6facf83180e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.69042,32.8637193],[-83.691181,32.864213]]},"id":"8944c0a2043ffff-17fef9e1bcdba8f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2042e7b2-139778f3e69814f1","8f44c0a2042e626-13b778c325e7ba03"]},"geometry":{"type":"LineString","coordinates":[[-83.691181,32.864213],[-83.691259,32.864258]]},"id":"8b44c0a2042efff-139778db818da435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2042846d-13b7f7e8080d5dbe","8f44c0a2042e626-13b778c325e7ba03"]},"geometry":{"type":"LineString","coordinates":[[-83.691259,32.864258],[-83.6916096,32.8644989]]},"id":"8a44c0a2042ffff-13fef855941f436f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20428276-1397f75e4eeea24f","8f44c0a2042846d-13b7f7e8080d5dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6916096,32.8644989],[-83.69183000000001,32.8646431]]},"id":"8b44c0a20428fff-13f6f7a324ff0418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0c1283-13dffba552baab74","8f44c0b8e0c18d4-17b7cb896adae0d6"]},"geometry":{"type":"LineString","coordinates":[[-83.552497,32.84115],[-83.552518,32.841306],[-83.552518,32.841333],[-83.552474,32.8414],[-83.5524523,32.8414203]]},"id":"8b44c0b8e0c1fff-139fdb86fa1c008e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0ce40b-1397ec69c0a468a9","8f44c0b8e0c1283-13dffba552baab74"]},"geometry":{"type":"LineString","coordinates":[[-83.5524523,32.8414203],[-83.552383,32.841485],[-83.552138,32.841687]]},"id":"8944c0b8e0fffff-13b7dc06a869478d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e0ce40b-1397ec69c0a468a9","8f44c0b8e752b18-17ffd28d08c5cd69"]},"geometry":{"type":"LineString","coordinates":[[-83.552138,32.841687],[-83.55168900000001,32.842069],[-83.551213,32.842498],[-83.550584,32.843063],[-83.550038,32.843542],[-83.54962400000001,32.843898]]},"id":"8744c0b8effffff-13bfdf7b2c703197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.542522,32.849733]},"id":"8f44c0b8ad1a2dc-17bfe3e3ceaeb260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8e752b18-17ffd28d08c5cd69","8f44c0b8ad1a2dc-17bfe3e3ceaeb260"]},"geometry":{"type":"LineString","coordinates":[[-83.54962400000001,32.843898],[-83.548097,32.845126],[-83.54756400000001,32.845547],[-83.547403,32.845677],[-83.54705600000001,32.845959],[-83.545939,32.846905],[-83.545128,32.847585],[-83.54428700000001,32.848278],[-83.54274000000001,32.849533],[-83.542522,32.849733]]},"id":"8644c0b8fffffff-1797fb3e8047249a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5248035a-17ffbe5c0450616b","8f44c0a21ba5c8b-13d7a65fee8a5418"]},"geometry":{"type":"LineString","coordinates":[[-83.72500500000001,32.878476],[-83.724767,32.878276],[-83.724593,32.878121],[-83.724379,32.877938],[-83.72408,32.877671],[-83.724007,32.877594],[-83.723967,32.877519],[-83.723933,32.877392],[-83.72393100000001,32.877319],[-83.723968,32.877164],[-83.724005,32.877091],[-83.72411000000001,32.87697],[-83.724203,32.876908],[-83.724316,32.876848],[-83.725239,32.876478],[-83.72544500000001,32.876382],[-83.72668800000001,32.875712],[-83.726945,32.87558],[-83.727046,32.87554],[-83.727215,32.875501],[-83.72731900000001,32.875493],[-83.72752100000001,32.875507],[-83.727693,32.875545],[-83.727829,32.8756],[-83.727922,32.875649],[-83.728015,32.875712],[-83.72809500000001,32.875793],[-83.728178,32.875895],[-83.72819100000001,32.875912],[-83.728288,32.876057]]},"id":"8644c0a27ffffff-17bfe4bf6b9f77fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7307177,32.8796422]},"id":"8f44c0a21b6498a-17b6786d77c2035e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5248035a-17ffbe5c0450616b","8f44c0a21b6498a-17b6786d77c2035e"]},"geometry":{"type":"LineString","coordinates":[[-83.728288,32.876057],[-83.729178,32.877277],[-83.72938500000001,32.877567],[-83.729639,32.877889],[-83.729884,32.878162],[-83.730367,32.878642],[-83.730452,32.878739],[-83.730503,32.878814000000006],[-83.73055400000001,32.878898],[-83.73059900000001,32.878996],[-83.730642,32.879109],[-83.730666,32.879216],[-83.730687,32.879379],[-83.7307177,32.8796422]]},"id":"8744c0b52ffffff-13b7fb2168a8a309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.591378,32.852344]},"id":"8f44c0b8d72dc95-139f6c9cc8376b3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d72928e-17ff6c7064777489","8f44c0b8d72dc95-139f6c9cc8376b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.591378,32.852344],[-83.591397,32.852624],[-83.59144900000001,32.853109]]},"id":"8944c0b8d73ffff-13ff6c88c0308fdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d72928e-17ff6c7064777489","8f44c0b8d770793-179f6c5c614388f9"]},"geometry":{"type":"LineString","coordinates":[[-83.59144900000001,32.853109],[-83.59147800000001,32.853529],[-83.591481,32.853778000000005]]},"id":"8a44c0b8d777fff-17bf7c63a2c905cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec0a701-17b7d1f4ccaa10dc","8f44c0a2ec9486a-13dfdcc44f080455"]},"geometry":{"type":"LineString","coordinates":[[-83.702726,32.894844],[-83.70321700000001,32.895671],[-83.70326100000001,32.89573],[-83.70332300000001,32.8958],[-83.7034,32.895853],[-83.70347000000001,32.895892],[-83.70355,32.895921],[-83.70360500000001,32.895933],[-83.707154,32.896006]]},"id":"8844c0a2edfffff-17bed7e39711ec88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ec0a701-17b7d1f4ccaa10dc","8f44c0a2ed4a922-139e693e2910fa12"]},"geometry":{"type":"LineString","coordinates":[[-83.707154,32.896006],[-83.710363,32.896062],[-83.71050100000001,32.896057],[-83.710578,32.896042],[-83.710639,32.896012],[-83.71067500000001,32.895972],[-83.71069,32.895924],[-83.71069800000001,32.895859],[-83.710723,32.894967]]},"id":"8844c0a2edfffff-17f7ecaa33377115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69219000000001,32.847092100000005]},"id":"8f44c0a26b00206-17bef67d4bd0295a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69220100000001,32.848402]},"id":"8f44c0a26a24830-13ff76766dbcac83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b00206-17bef67d4bd0295a","8f44c0a26a24830-13ff76766dbcac83"]},"geometry":{"type":"LineString","coordinates":[[-83.69219000000001,32.847092100000005],[-83.69220100000001,32.848402]]},"id":"8944c0a26b3ffff-17d7f679d7234b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a0c944-17f67691e535f7cf","8f44c0a26a24830-13ff76766dbcac83"]},"geometry":{"type":"LineString","coordinates":[[-83.69220100000001,32.848402],[-83.69215700000001,32.850458]]},"id":"8844c0a26bfffff-13fff684207953d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a0c944-17f67691e535f7cf","8f44c0a26a56126-139776a2c6dda2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.69215700000001,32.850458],[-83.69213,32.85172]]},"id":"8844c0a26bfffff-17fef69a5f0d1ae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a56126-139776a2c6dda2dc","8f44c0a26aed461-17be76b1cc477460"]},"geometry":{"type":"LineString","coordinates":[[-83.69213,32.85172],[-83.692109,32.852385000000005],[-83.69210600000001,32.853015]]},"id":"8844c0a26bfffff-139ff6acff482595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64341300000001,32.845073]},"id":"8f44c0a34389429-13deed92eca84a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34389429-13deed92eca84a11","8f44c0a343a9ca3-1796ebc7c44d009e"]},"geometry":{"type":"LineString","coordinates":[[-83.64414760000001,32.843958400000005],[-83.6441305,32.8439604],[-83.6441107,32.8439631],[-83.64409090000001,32.8439698],[-83.6440716,32.8439825],[-83.6440554,32.844],[-83.6440407,32.8440195],[-83.6436893,32.8445327],[-83.64360280000001,32.844678],[-83.64351090000001,32.8448574],[-83.64341300000001,32.845073]]},"id":"8944c0a343bffff-17dfecc4935af2d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342040ce-1396e920cfde0d8a","8f44c0a34389429-13deed92eca84a11"]},"geometry":{"type":"LineString","coordinates":[[-83.64341300000001,32.845073],[-83.6446671,32.845425500000005],[-83.64492700000001,32.8455029],[-83.645234,32.845604]]},"id":"8844c0a343fffff-13feeb5891e19a56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646,32.845914]},"id":"8f44c0a3422e609-13dee7420ba248e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342040ce-1396e920cfde0d8a","8f44c0a3422e609-13dee7420ba248e8"]},"geometry":{"type":"LineString","coordinates":[[-83.645234,32.845604],[-83.64538900000001,32.845662000000004],[-83.64555200000001,32.845723],[-83.645804,32.845827],[-83.646,32.845914]]},"id":"8944c0a3423ffff-13f6e83028995b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34229b4a-1797e4a8657d2fcf","8f44c0a3422e609-13dee7420ba248e8"]},"geometry":{"type":"LineString","coordinates":[[-83.646,32.845914],[-83.64706500000001,32.846425]]},"id":"8a44c0a3422ffff-13f7f5f5359345bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64852300000001,32.846823]},"id":"8f44c0a34264150-1796e11929dc1f19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34229b4a-1797e4a8657d2fcf","8f44c0a34264150-1796e11929dc1f19"]},"geometry":{"type":"LineString","coordinates":[[-83.64706500000001,32.846425],[-83.6473649,32.846514400000004],[-83.647783,32.846625],[-83.64852300000001,32.846823]]},"id":"8844c0a343fffff-1796e2e159466596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c90d1b-17ffde7d0c80be37","8f44c0a34264150-1796e11929dc1f19"]},"geometry":{"type":"LineString","coordinates":[[-83.64852300000001,32.846823],[-83.64887900000001,32.846942],[-83.649592,32.847202]]},"id":"8844c0a343fffff-1796dfca631c37e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4f3c8d-17d7f4ddefd6ac05","8f44c0b1b4de94c-13f6f4f78644bd58"]},"geometry":{"type":"LineString","coordinates":[[-83.653492,32.835901],[-83.65353300000001,32.834623]]},"id":"8944c0b1b4fffff-13d6d4eab4eb527c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4f3c8d-17d7f4ddefd6ac05","8f44c0b1b4f4b0b-17f7f36aa94adc99"]},"geometry":{"type":"LineString","coordinates":[[-83.65353300000001,32.834623],[-83.65358300000001,32.834542],[-83.653705,32.834373],[-83.653861,32.834181],[-83.654127,32.833871]]},"id":"8a44c0b1b4f7fff-17d7d42a52fc1e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693386,32.886383]},"id":"8f44c0a2300284b-17b77391c3eb7fb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2300284b-17b77391c3eb7fb4","8f44c0a2300048d-1796f36388930146"]},"geometry":{"type":"LineString","coordinates":[[-83.693386,32.886383],[-83.69346,32.886356]]},"id":"8a44c0a23007fff-179ef37aa046e735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2300284b-17b77391c3eb7fb4","8f44c0a2300048d-1796f36388930146"]},"geometry":{"type":"LineString","coordinates":[[-83.69346,32.886356],[-83.693505,32.886457],[-83.693506,32.886485],[-83.693492,32.886507],[-83.693465,32.886518],[-83.693101,32.886625],[-83.69306200000001,32.886629],[-83.693043,32.88662],[-83.69302900000001,32.886603],[-83.692997,32.886536],[-83.692998,32.886518],[-83.69302400000001,32.88649],[-83.693059,32.886477],[-83.693386,32.886383]]},"id":"8944c0a2303ffff-17f6f3e9a7853945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614293,32.850592]},"id":"8f44c0a3675a594-17d734aae8d0097c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613495,32.850586]},"id":"8f44c0a3662aa64-17d7769dac6963a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662aa64-17d7769dac6963a3","8f44c0a3675a594-17d734aae8d0097c"]},"geometry":{"type":"LineString","coordinates":[[-83.614293,32.850592],[-83.613495,32.850586]]},"id":"8a44c0a3662ffff-17d735a443c2e3ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662aa64-17d7769dac6963a3","8f44c0a3660152d-17bff8bd661a8c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.613495,32.850586],[-83.61262500000001,32.850579]]},"id":"8944c0a3663ffff-17bf37ad896447f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677901,32.82922]},"id":"8f44c0b194f5242-1396995fefebcdc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19455446-13b6939ba77843a8","8f44c0b194f5242-1396995fefebcdc4"]},"geometry":{"type":"LineString","coordinates":[[-83.677901,32.82922],[-83.68026300000001,32.829268]]},"id":"8844c0b195fffff-13b7967dc6ad7b87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68201400000001,32.829299]},"id":"8f44c0b1946e4c5-13d7ef5541297fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1946e4c5-13d7ef5541297fa2","8f44c0b19455446-13b6939ba77843a8"]},"geometry":{"type":"LineString","coordinates":[[-83.68026300000001,32.829268],[-83.68201400000001,32.829299]]},"id":"8944c0b1947ffff-13beb1787cd293ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634714,32.838006]},"id":"8f44c0a34559c68-139fc2cfcbb0581e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34559c68-139fc2cfcbb0581e","8f44c0a34559853-1397d27e587be52c"]},"geometry":{"type":"LineString","coordinates":[[-83.634714,32.838006],[-83.63484430000001,32.8380269]]},"id":"8b44c0a34559fff-139752a7038cc7b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637764,32.838703]},"id":"8f44c0a34084071-13bffb5d80a7f4f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34559853-1397d27e587be52c","8f44c0a34084071-13bffb5d80a7f4f7"]},"geometry":{"type":"LineString","coordinates":[[-83.63484430000001,32.8380269],[-83.636629,32.838287],[-83.63685100000001,32.838344],[-83.63752600000001,32.83859],[-83.63764900000001,32.838645],[-83.637764,32.838703]]},"id":"8744c0a34ffffff-13befee061f721fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6381932,32.8389042]},"id":"8f44c0a34085852-13bffa5140f549ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34085852-13bffa5140f549ca","8f44c0a34084071-13bffb5d80a7f4f7"]},"geometry":{"type":"LineString","coordinates":[[-83.637764,32.838703],[-83.6379,32.838783],[-83.638018,32.838842],[-83.6381932,32.8389042]]},"id":"8a44c0a34087fff-1396fada2af2b6e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a340a8176-13f7f870c46e428a","8f44c0a34085852-13bffa5140f549ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6381932,32.8389042],[-83.638962,32.839177]]},"id":"8944c0a340bffff-1396f96102954435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707807,32.785584]},"id":"8f44c0b03a32681-139e505ca8c640f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a311ad-1396cdf645394fd9","8f44c0b03a32681-139e505ca8c640f1"]},"geometry":{"type":"LineString","coordinates":[[-83.707807,32.785584],[-83.70879000000001,32.785598]]},"id":"8a44c0b03a37fff-13966f2977ce30b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a311ad-1396cdf645394fd9","8f44c0b03a20646-139e4bb568bb759d"]},"geometry":{"type":"LineString","coordinates":[[-83.70879000000001,32.785598],[-83.70971300000001,32.785610000000005]]},"id":"8944c0b03a3ffff-139eccd5d2c5663b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b52022-13bfc982eeb9b1e3","8f44c0b03a20646-139e4bb568bb759d"]},"geometry":{"type":"LineString","coordinates":[[-83.70971300000001,32.785610000000005],[-83.71061300000001,32.785628]]},"id":"8844c0b03bfffff-13b7ea9c24874e95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b52022-13bfc982eeb9b1e3","8f44c0b03b55659-13b667542d4d2959"]},"geometry":{"type":"LineString","coordinates":[[-83.71061300000001,32.785628],[-83.71150700000001,32.785645]]},"id":"8a44c0b03b57fff-13bed86b8459046b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b55659-13b667542d4d2959","8f44c0b03b4015a-13d6e506c7bff80d"]},"geometry":{"type":"LineString","coordinates":[[-83.71150700000001,32.785645],[-83.71245,32.785665]]},"id":"8944c0b03b7ffff-13be662d7fcc47ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0178c693-13fe3bad092e1e8c","8f44c0b03b4015a-13d6e506c7bff80d"]},"geometry":{"type":"LineString","coordinates":[[-83.71245,32.785665],[-83.71628000000001,32.785728]]},"id":"8744c0b01ffffff-13d65059e5ac3cf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01636b60-13967879aa17771d","8f44c0b0178c693-13fe3bad092e1e8c"]},"geometry":{"type":"LineString","coordinates":[[-83.71628000000001,32.785728],[-83.717591,32.785767]]},"id":"8844c0b017fffff-13f63a135d48835b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653283,32.844108]},"id":"8f44c0a35dac11c-17ffd57a2c96167c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35dac11c-17ffd57a2c96167c","8f44c0a35daaaf1-1397d6889f908e3f"]},"geometry":{"type":"LineString","coordinates":[[-83.653283,32.844108],[-83.65322210000001,32.8441995],[-83.65285030000001,32.844758]]},"id":"8a44c0a35daffff-17bef6015541dc53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d8c82b-139ed6ed35779d9b","8f44c0a35daaaf1-1397d6889f908e3f"]},"geometry":{"type":"LineString","coordinates":[[-83.65285030000001,32.844758],[-83.6526893,32.845002900000004]]},"id":"8a44c0a35daffff-13d6d6bae03cb258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635602,32.824677]},"id":"8f44c0ba9a62a5d-17ff20a4c51e56c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636167,32.825119]},"id":"8f44c0ba9a6e81c-1397ff43a560e78c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a6e81c-1397ff43a560e78c","8f44c0ba9a62a5d-17ff20a4c51e56c9"]},"geometry":{"type":"LineString","coordinates":[[-83.635602,32.824677],[-83.635641,32.824733],[-83.635703,32.824793],[-83.636167,32.825119]]},"id":"8944c0ba9a7ffff-1396fffad779fb91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a6d0d1-1396fd8742b76282","8f44c0ba9a6e81c-1397ff43a560e78c"]},"geometry":{"type":"LineString","coordinates":[[-83.636167,32.825119],[-83.63687800000001,32.82553]]},"id":"8a44c0ba9a6ffff-1397fe657660d13f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6d2caa-17d7f8360a568f91","8f44c0b1a6d3b06-17d6f686c48726b6"]},"geometry":{"type":"LineString","coordinates":[[-83.63905600000001,32.826856],[-83.639746,32.827264]]},"id":"8a44c0b1a6d7fff-17d6f75e6f8608ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64045,32.827682]},"id":"8f44c0b1a6dc214-17d7f4ceca244074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6dc214-17d7f4ceca244074","8f44c0b1a6d3b06-17d6f686c48726b6"]},"geometry":{"type":"LineString","coordinates":[[-83.639746,32.827264],[-83.64045,32.827682]]},"id":"8944c0b1a6fffff-17d6f5aac6083052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64114500000001,32.828119]},"id":"8f44c0b1a6ca121-17f6f31c6496c141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6dc214-17d7f4ceca244074","8f44c0b1a6ca121-17f6f31c6496c141"]},"geometry":{"type":"LineString","coordinates":[[-83.64045,32.827682],[-83.64114500000001,32.828119]]},"id":"8944c0b1a6fffff-17dff3f59ea6a11e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6c9601-13fff1682af9021e","8f44c0b1a6ca121-17f6f31c6496c141"]},"geometry":{"type":"LineString","coordinates":[[-83.64114500000001,32.828119],[-83.64171900000001,32.828476],[-83.64184300000001,32.828559000000006]]},"id":"8a44c0b1a6cffff-13fef2419e2b04c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642537,32.828995]},"id":"8f44c0a34995cda-139fefb66d907c3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6c9601-13fff1682af9021e","8f44c0a34995cda-139fefb66d907c3a"]},"geometry":{"type":"LineString","coordinates":[[-83.64184300000001,32.828559000000006],[-83.642537,32.828995]]},"id":"8944c0a349bffff-1397f08f4f59b040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34995cda-139fefb66d907c3a","8f44c0a34982b4a-1397ede56ac24a8e"]},"geometry":{"type":"LineString","coordinates":[[-83.642537,32.828995],[-83.643281,32.829416]]},"id":"8944c0a349bffff-139ffecde45d95ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644023,32.829845]},"id":"8f44c0a3498c532-179fec15a195788b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34982b4a-1397ede56ac24a8e","8f44c0a3498c532-179fec15a195788b"]},"geometry":{"type":"LineString","coordinates":[[-83.643281,32.829416],[-83.644023,32.829845]]},"id":"8944c0a349bffff-1397fcfd8c704607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64471900000001,32.830258]},"id":"8f44c0a3498db88-179fea62ad56ab03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3498db88-179fea62ad56ab03","8f44c0a3498c532-179fec15a195788b"]},"geometry":{"type":"LineString","coordinates":[[-83.644023,32.829845],[-83.64471900000001,32.830258]]},"id":"8a44c0a3498ffff-179efb3c292370fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a348302f6-17b7f894376b9cad","8f44c0a3498db88-179fea62ad56ab03"]},"geometry":{"type":"LineString","coordinates":[[-83.64471900000001,32.830258],[-83.64545890000001,32.830674900000005]]},"id":"8844c0a349fffff-17b7f97b76cd7ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a348302f6-17b7f894376b9cad","8f44c0a348310b5-17f7f800939c6b27"]},"geometry":{"type":"LineString","coordinates":[[-83.64545890000001,32.830674900000005],[-83.6455401,32.830718600000004],[-83.64569510000001,32.8308057]]},"id":"8a44c0a34837fff-17dee84a39fdb9f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64617910000001,32.831078500000004]},"id":"8f44c0a3480412d-17b6f6d21a0ee0ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3480412d-17b6f6d21a0ee0ed","8f44c0a348310b5-17f7f800939c6b27"]},"geometry":{"type":"LineString","coordinates":[[-83.64569510000001,32.8308057],[-83.64617910000001,32.831078500000004]]},"id":"8944c0a3483ffff-17def7695e541098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3480412d-17b6f6d21a0ee0ed","8f44c0a3482e604-13b7e52401a8e010"]},"geometry":{"type":"LineString","coordinates":[[-83.64617910000001,32.831078500000004],[-83.64673760000001,32.8314072],[-83.6468672,32.83149]]},"id":"8944c0a3483ffff-179ff5fa54459620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.590535,32.854733]},"id":"8f44c0b8d752144-13f76eabad01f2ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d62194b-13f7ef94cec123f1","8f44c0b8d752144-13f76eabad01f2ed"]},"geometry":{"type":"LineString","coordinates":[[-83.590535,32.854733],[-83.590162,32.854737]]},"id":"8844c0b8d7fffff-13f76f203b9acc1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d62194b-13f7ef94cec123f1","8f44c0b8d621c02-13d7f040a76666d6"]},"geometry":{"type":"LineString","coordinates":[[-83.590162,32.854737],[-83.58995300000001,32.85473],[-83.589887,32.854708]]},"id":"8b44c0b8d621fff-13df7feb8ae79d32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362854d2-13d7ba635441f7bc","8f44c0a362a20e1-17f76a5fef2a1eb6"]},"geometry":{"type":"LineString","coordinates":[[-83.618509,32.851058],[-83.6185035,32.8518155]]},"id":"8944c0a362bffff-13d72a61ae6482dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618519,32.85257]},"id":"8f44c0a3628e100-139f6a59a5553b30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362854d2-13d7ba635441f7bc","8f44c0a3628e100-139f6a59a5553b30"]},"geometry":{"type":"LineString","coordinates":[[-83.6185035,32.8518155],[-83.618519,32.85257]]},"id":"8944c0a362bffff-13bfaa5e7529046b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659762,32.860574]},"id":"8f44c0a3539d4ee-17b6c5a8cc438cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660093,32.861283]},"id":"8f44c0a352a40b2-13dfe4d9eeedde08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3539d4ee-17b6c5a8cc438cf3","8f44c0a352a40b2-13dfe4d9eeedde08"]},"geometry":{"type":"LineString","coordinates":[[-83.659762,32.860574],[-83.660093,32.861283]]},"id":"8844c0a353fffff-1396d5415fe7cdda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66065900000001,32.863128]},"id":"8f44c0a352ab809-17dfc3782a34dd29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a352ab809-17dfc3782a34dd29","8f44c0a352a40b2-13dfe4d9eeedde08"]},"geometry":{"type":"LineString","coordinates":[[-83.660093,32.861283],[-83.660505,32.862212],[-83.660587,32.86242],[-83.66065900000001,32.863128]]},"id":"8944c0a352bffff-1396e3fd9368315f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.739112,32.912799]},"id":"8f44c0a2d495bb2-17b763ef0911a0b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73734900000001,32.913618]},"id":"8f44c0a2886e091-13b7483cecf4c36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2886e091-13b7483cecf4c36c","8f44c0a2d495bb2-17b763ef0911a0b7"]},"geometry":{"type":"LineString","coordinates":[[-83.739112,32.912799],[-83.73908200000001,32.913241],[-83.73906500000001,32.913322],[-83.73903800000001,32.913376],[-83.738955,32.913485],[-83.738866,32.913552],[-83.73880700000001,32.913583],[-83.738679,32.913623],[-83.73855300000001,32.913637],[-83.738219,32.913624],[-83.73734900000001,32.913618]]},"id":"8744c0a28ffffff-13deb5907ed74efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2886e091-13b7483cecf4c36c","8f44c0a2888a205-139f983643d7a883"]},"geometry":{"type":"LineString","coordinates":[[-83.73734900000001,32.913618],[-83.735838,32.913626],[-83.734088,32.913618],[-83.73364500000001,32.91362],[-83.730806,32.913612]]},"id":"8844c0a289fffff-13b61039981caf44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730345,32.913688]},"id":"8f44c0a2889930b-13df195664d8b758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2889930b-13df195664d8b758","8f44c0a2888a205-139f983643d7a883"]},"geometry":{"type":"LineString","coordinates":[[-83.730806,32.913612],[-83.730688,32.913594],[-83.73056100000001,32.913597],[-83.730423,32.913635],[-83.730345,32.913688]]},"id":"8944c0a288bffff-13b638caa2b737de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61440300000001,32.84147]},"id":"8f44c0a36182709-13fff4662fbe41c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3619e314-13bf7586e7c5dc72","8f44c0a36182709-13fff4662fbe41c8"]},"geometry":{"type":"LineString","coordinates":[[-83.61440300000001,32.84147],[-83.61394100000001,32.841983]]},"id":"8944c0a361bffff-139f34f68971e6cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36569b6a-13dff68542e9bdbc","8f44c0a3619e314-13bf7586e7c5dc72"]},"geometry":{"type":"LineString","coordinates":[[-83.61394100000001,32.841983],[-83.613628,32.842329],[-83.613534,32.842443]]},"id":"8944c0a361bffff-13df3607446a3e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b64846e-179fff3c6660d8ef","8f44c0b1b641324-13deff3a8f0b6253"]},"geometry":{"type":"LineString","coordinates":[[-83.66239300000001,32.843362],[-83.662396,32.842647]]},"id":"8944c0b1b67ffff-17bfff3b73437654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116e3cc4-17b7f54fa537543f","8f44c0b116e1a0e-17bff36f0bab6257"]},"geometry":{"type":"LineString","coordinates":[[-83.653351,32.784003000000006],[-83.653676,32.784017],[-83.65412,32.784025]]},"id":"8a44c0b116e7fff-17bef45f6eb59a18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116e1a0e-17bff36f0bab6257","8f44c0b11642a19-17dfcf1225f8f6e1"]},"geometry":{"type":"LineString","coordinates":[[-83.65412,32.784025],[-83.655907,32.78405]]},"id":"8844c0b117fffff-17d7f14096b824cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658913,32.784083]},"id":"8f44c0b11298166-17f7e7bb6df38ad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b11298166-17f7e7bb6df38ad6","8f44c0b11642a19-17dfcf1225f8f6e1"]},"geometry":{"type":"LineString","coordinates":[[-83.655907,32.78405],[-83.658184,32.784081],[-83.658839,32.784086],[-83.658913,32.784083]]},"id":"8744c0b11ffffff-17dffb66c309e101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3583652a-13bfbf0a56d39d46","8f44c0a3591e705-13bffd18c59955ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6624731,32.8460752],[-83.66270010000001,32.845952600000004],[-83.66273000000001,32.845914],[-83.663157,32.845387],[-83.6632692,32.8452508]]},"id":"8844c0a359fffff-13dffe0242360b2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35902550-13befbcea37e4e06","8f44c0a3591e705-13bffd18c59955ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6632692,32.8452508],[-83.6637974,32.8446092]]},"id":"8944c0a3593ffff-13f7fc73b10157eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35902550-13befbcea37e4e06","8f44c0a35902966-17debb021c673b48"]},"geometry":{"type":"LineString","coordinates":[[-83.6637974,32.8446092],[-83.66382540000001,32.8445752],[-83.6641247,32.8444651]]},"id":"8b44c0a35902fff-17f6bb6c00004742"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a359025a6-1396bbfed7f83feb","8f44c0a359064d2-17defbbea9ed921a"]},"geometry":{"type":"LineString","coordinates":[[-83.66382300000001,32.844254],[-83.66380500000001,32.844341],[-83.663798,32.844428],[-83.663784,32.844473],[-83.66372030000001,32.8445545]]},"id":"8944c0a3593ffff-17bfbbd4af9413f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a359025a6-1396bbfed7f83feb","8f44c0a3591e455-139efd49fcb809f1"]},"geometry":{"type":"LineString","coordinates":[[-83.66372030000001,32.8445545],[-83.66370900000001,32.844569],[-83.66351610000001,32.8448075],[-83.663229,32.845157],[-83.6631905,32.8452069]]},"id":"8944c0a3593ffff-13d6fca46da4662b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3591e455-139efd49fcb809f1","8f44c0a3583652a-13bfbf0a56d39d46"]},"geometry":{"type":"LineString","coordinates":[[-83.6631905,32.8452069],[-83.6626179,32.845898600000005],[-83.6624731,32.8460752]]},"id":"8844c0a359fffff-13bfbe2a511e82b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c84331-17b76d496774ea5b","8f44c0a32c86145-17b76e828d0cc332"]},"geometry":{"type":"LineString","coordinates":[[-83.60370800000001,32.857509],[-83.60420900000001,32.857501]]},"id":"8a44c0a32c87fff-17b7ede5f80a1544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c84331-17b76d496774ea5b","8f44c0a32caec0b-17bf4ba887385217"]},"geometry":{"type":"LineString","coordinates":[[-83.60420900000001,32.857501],[-83.604769,32.857501],[-83.604876,32.857522]]},"id":"8944c0a32cbffff-17b77c7860859f52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ca8caa-13f76af202449ec5","8f44c0a32caec0b-17bf4ba887385217"]},"geometry":{"type":"LineString","coordinates":[[-83.604876,32.857522],[-83.60505900000001,32.857632],[-83.605137,32.8577],[-83.60516600000001,32.857764],[-83.605168,32.857839000000006]]},"id":"8a44c0a32caffff-1397db3755766930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ca8caa-13f76af202449ec5","8f44c0a32c8d903-13ffcae8a0363a02"]},"geometry":{"type":"LineString","coordinates":[[-83.605168,32.857839000000006],[-83.605168,32.857984],[-83.60514400000001,32.858269],[-83.605153,32.858455],[-83.60518300000001,32.858646]]},"id":"8944c0a32cbffff-13f75af77e634e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605108,32.859571]},"id":"8f44c0a32cd4406-17bfeb1787ff0b32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c8d903-13ffcae8a0363a02","8f44c0a32cd4406-17bfeb1787ff0b32"]},"geometry":{"type":"LineString","coordinates":[[-83.60518300000001,32.858646],[-83.605108,32.859571]]},"id":"8844c0a32dfffff-139fdb001fffbe7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66303,32.808188]},"id":"8f44c0b1852e2dd-17bfbdae4173e214"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1852e2dd-17bfbdae4173e214","8f44c0b1e24d44a-17b7c3ff22551627"]},"geometry":{"type":"LineString","coordinates":[[-83.66303,32.808188],[-83.662789,32.808177],[-83.661551,32.808163],[-83.661383,32.808154],[-83.661237,32.808135],[-83.66108600000001,32.808075],[-83.660984,32.808002],[-83.660666,32.807721],[-83.660515,32.807570000000005],[-83.66044600000001,32.80745],[-83.66043,32.80735],[-83.660443,32.806914]]},"id":"8844c0b185fffff-179fe189e07240c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e24d44a-17b7c3ff22551627","8f44c0b1e34d64b-17b6c1b4e040195f"]},"geometry":{"type":"LineString","coordinates":[[-83.660443,32.806914],[-83.66050600000001,32.804223],[-83.660534,32.804142],[-83.66056300000001,32.804105],[-83.66061,32.804074],[-83.660713,32.804051],[-83.661187,32.804055000000005],[-83.661381,32.804046]]},"id":"8644c0b1fffffff-17f7f3a4550f083e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7455067,32.815468800000005]},"id":"8f44c0b08b019a0-1395f4525ce956b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74387320000001,32.8154346]},"id":"8f44c0b08b10251-13fff84f478be8b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08b019a0-1395f4525ce956b0","8f44c0b08b10251-13fff84f478be8b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7455067,32.815468800000005],[-83.74387320000001,32.8154346]]},"id":"8944c0b08b3ffff-13fdf650c718a1b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7432697,32.8154218]},"id":"8f44c0b08b120c8-13f7f9c87c628633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08b120c8-13f7f9c87c628633","8f44c0b08b10251-13fff84f478be8b1"]},"geometry":{"type":"LineString","coordinates":[[-83.74387320000001,32.8154346],[-83.7432697,32.8154218]]},"id":"8a44c0b08b17fff-13fff90be1e9086c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699105,32.866233]},"id":"8f44c0a20019db2-17f7e59b649d185e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2001c12d-13ff65a92bba2199","8f44c0a20019db2-17f7e59b649d185e"]},"geometry":{"type":"LineString","coordinates":[[-83.699105,32.866233],[-83.699083,32.865631]]},"id":"8a44c0a2001ffff-17b7e5a244ff0689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700653,32.862361]},"id":"8f44c0a20101531-13ffe1d3ec3dc78a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2001c12d-13ff65a92bba2199","8f44c0a20101531-13ffe1d3ec3dc78a"]},"geometry":{"type":"LineString","coordinates":[[-83.699083,32.865631],[-83.69909200000001,32.865482],[-83.699095,32.865135],[-83.69913700000001,32.86291],[-83.69914800000001,32.862758],[-83.69919,32.862617],[-83.699319,32.862453],[-83.699437,32.86236],[-83.699588,32.862284],[-83.69965,32.862257],[-83.699774,32.862233],[-83.69990700000001,32.862235000000005],[-83.700074,32.862256],[-83.700653,32.862361]]},"id":"8844c0a201fffff-17d674efa8e999b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70215300000001,32.863653]},"id":"8f44c0a20173cf3-17b77e2a67a3d330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20173cf3-17b77e2a67a3d330","8f44c0a20101531-13ffe1d3ec3dc78a"]},"geometry":{"type":"LineString","coordinates":[[-83.700653,32.862361],[-83.70127500000001,32.862485],[-83.70175900000001,32.862577],[-83.70183700000001,32.862598000000006],[-83.70193400000001,32.862637],[-83.70201200000001,32.862687],[-83.70209100000001,32.86278],[-83.70210300000001,32.862795000000006],[-83.70215300000001,32.862896],[-83.702161,32.863041],[-83.70215300000001,32.863653]]},"id":"8844c0a201fffff-17975f54ef5eb90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7171881,32.835624]},"id":"8f44c0b0b580529-13bf397576bd7d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b580529-13bf397576bd7d5b","8f44c0b0a24891e-17bfb55aebc92633"]},"geometry":{"type":"LineString","coordinates":[[-83.7171881,32.835624],[-83.717302,32.835572],[-83.71749600000001,32.835502000000005],[-83.71758600000001,32.835459],[-83.71768300000001,32.835399],[-83.717802,32.835305000000005],[-83.717921,32.835182],[-83.718055,32.834994],[-83.718114,32.834846],[-83.71817800000001,32.834659],[-83.71860000000001,32.833908],[-83.7187,32.833748],[-83.71886900000001,32.833561]]},"id":"8744c0b0bffffff-17f677301ba5f214"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a24891e-17bfb55aebc92633","8f44c0b0b536d94-179e33a2e9a2a6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.71886900000001,32.833561],[-83.718996,32.833489],[-83.719133,32.833423],[-83.719255,32.833380000000005],[-83.719402,32.833347],[-83.71949400000001,32.833332],[-83.71957300000001,32.833325]]},"id":"8944c0b0a27ffff-17d77484fb750536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b52681e-17976fd7ae784ddf","8f44c0b0b536d94-179e33a2e9a2a6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.71957300000001,32.833325],[-83.72000100000001,32.833371],[-83.72112700000001,32.833522]]},"id":"8744c0b0bffffff-17d731bcfe74a947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691235,32.8470807]},"id":"8f44c0a26b118c2-17b778d223e7291b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69123300000001,32.848388]},"id":"8f44c0a26b1b0f2-13f6f8d362178abb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b1b0f2-13f6f8d362178abb","8f44c0a26b118c2-17b778d223e7291b"]},"geometry":{"type":"LineString","coordinates":[[-83.691235,32.8470807],[-83.691201,32.847575],[-83.691202,32.848098],[-83.69123300000001,32.848388]]},"id":"8844c0a26bfffff-17de78e0fe020a61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b1b0f2-13f6f8d362178abb","8f44c0a26a03043-17fff8ebcd85633c"]},"geometry":{"type":"LineString","coordinates":[[-83.69123300000001,32.848388],[-83.691266,32.848655],[-83.691281,32.848944],[-83.691236,32.849584],[-83.69119400000001,32.850454]]},"id":"8944c0a26a3ffff-13f7f8ce533fb6a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041b115a-13d7b2d56d040804","8f44c0a04cde442-13bfbb834a83ff86"]},"geometry":{"type":"LineString","coordinates":[[-83.66391800000001,32.887628],[-83.665577,32.887631],[-83.66586000000001,32.887661],[-83.666075,32.887708],[-83.666296,32.887788],[-83.666437,32.887863],[-83.666876,32.888119],[-83.667473,32.888485]]},"id":"8744c0a04ffffff-13bfb7048c00425b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a041b115a-13d7b2d56d040804","8f44c0a0411b660-17b6ac528df3b657"]},"geometry":{"type":"LineString","coordinates":[[-83.667473,32.888485],[-83.669064,32.889435],[-83.669961,32.889975],[-83.67014,32.890068]]},"id":"8844c0a041fffff-17beff955635c630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0411b660-17b6ac528df3b657","8f44c0a04152695-13bea8e28c4d28e3"]},"geometry":{"type":"LineString","coordinates":[[-83.67014,32.890068],[-83.67049300000001,32.890293],[-83.671548,32.890925]]},"id":"8944c0a0403ffff-13b6aa9bffe6b156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67276100000001,32.891647]},"id":"8f44c0a04158c51-13ffe5ec62dc99b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04152695-13bea8e28c4d28e3","8f44c0a04158c51-13ffe5ec62dc99b4"]},"geometry":{"type":"LineString","coordinates":[[-83.671548,32.890925],[-83.672522,32.891492],[-83.67276100000001,32.891647]]},"id":"8844c0a041fffff-139ef765a8a0a838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04158c51-13ffe5ec62dc99b4","8f44c0a04a9d0f6-13bede95058ef0bb"]},"geometry":{"type":"LineString","coordinates":[[-83.67276100000001,32.891647],[-83.67322200000001,32.891919],[-83.674502,32.892673],[-83.674665,32.892775],[-83.674842,32.892904],[-83.674924,32.892977],[-83.675067,32.89313],[-83.675768,32.893966]]},"id":"8744c0a04ffffff-179eb204d1d03251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677529,32.896105]},"id":"8f44c0a04ade3aa-17f7ba4867999bed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04ade3aa-17f7ba4867999bed","8f44c0a04a9d0f6-13bede95058ef0bb"]},"geometry":{"type":"LineString","coordinates":[[-83.675768,32.893966],[-83.676348,32.894663],[-83.676654,32.895048],[-83.67729800000001,32.895818000000006],[-83.677529,32.896105]]},"id":"8844c0a04bfffff-13d6bc6e2375cbc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697004,32.837339]},"id":"8f44c0a24c910ae-17feeabc83a88e5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c910ae-17feeabc83a88e5d","8f44c0a24c9385d-17f76b6ae42862ee"]},"geometry":{"type":"LineString","coordinates":[[-83.697004,32.837339],[-83.696725,32.837359]]},"id":"8a44c0a24c97fff-17ff6b13b4d6530a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69589,32.837439]},"id":"8f44c0b19261248-17b76d74c08fcafd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19261248-17b76d74c08fcafd","8f44c0a24c9385d-17f76b6ae42862ee"]},"geometry":{"type":"LineString","coordinates":[[-83.696725,32.837359],[-83.69589,32.837439]]},"id":"8744c0a24ffffff-179e6c6fd1a50641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19261248-17b76d74c08fcafd","8f44c0b19263630-17bfef4667ce6813"]},"geometry":{"type":"LineString","coordinates":[[-83.69589,32.837439],[-83.69514500000001,32.837443]]},"id":"8944c0b1927ffff-17beee5d9c4296fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67548400000001,32.857937]},"id":"8f44c0a266f0088-13b6bf468f51f7b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266f0088-13b6bf468f51f7b9","8f44c0a266d525c-13be9f6c0ac77253"]},"geometry":{"type":"LineString","coordinates":[[-83.67548400000001,32.857937],[-83.67544500000001,32.858789],[-83.675424,32.85898]]},"id":"8944c0a266fffff-13fedf5628b4e7de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675325,32.86025]},"id":"8f44c0a266db8b1-17dedfa9ed746c70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266db8b1-17dedfa9ed746c70","8f44c0a266d525c-13be9f6c0ac77253"]},"geometry":{"type":"LineString","coordinates":[[-83.675424,32.85898],[-83.675393,32.859073],[-83.675353,32.859673],[-83.675325,32.86025]]},"id":"8944c0a266fffff-17dfff93dbf11dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639002,32.819155]},"id":"8f44c0b1a45ec02-1397f857cab85878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639593,32.819527]},"id":"8f44c0b1a458873-13fef6e669fcaa16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a45ec02-1397f857cab85878","8f44c0b1a458873-13fef6e669fcaa16"]},"geometry":{"type":"LineString","coordinates":[[-83.639002,32.819155],[-83.639593,32.819527]]},"id":"8944c0b1a47ffff-13fef79f142c34c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a44a313-13f7f5052b208afd","8f44c0b1a458873-13fef6e669fcaa16"]},"geometry":{"type":"LineString","coordinates":[[-83.639593,32.819527],[-83.63969800000001,32.819577],[-83.63993140000001,32.819716],[-83.64036300000001,32.819954]]},"id":"8944c0b1a47ffff-13f7f5f588e81f29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64045700000001,32.820013]},"id":"8f44c0b1a44a34c-179ef4ca6e9adcc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a44a313-13f7f5052b208afd","8f44c0b1a44a34c-179ef4ca6e9adcc3"]},"geometry":{"type":"LineString","coordinates":[[-83.64036300000001,32.819954],[-83.64045700000001,32.820013]]},"id":"8c44c0b1a44a3ff-179ff4e7c8011da7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7168b2-17f6f36807c81386","8f44c0b1a44a34c-179ef4ca6e9adcc3"]},"geometry":{"type":"LineString","coordinates":[[-83.64045700000001,32.820013],[-83.641024,32.820363]]},"id":"8844c0b1a7fffff-179ff419399e8e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7168b2-17f6f36807c81386","8f44c0b1a716b0e-17bef2f149746a97"]},"geometry":{"type":"LineString","coordinates":[[-83.641024,32.820363],[-83.641214,32.820478]]},"id":"8b44c0b1a716fff-179ef32ca635a665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a702516-17fff1071dadc036","8f44c0b1a716b0e-17bef2f149746a97"]},"geometry":{"type":"LineString","coordinates":[[-83.641214,32.820478],[-83.64199830000001,32.8209654]]},"id":"8a44c0b1a717fff-17d7f1fc3fcfb0bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674958,32.855151]},"id":"8f44c0a2678b11d-13f7e08f4042c5c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2679d013-13ffa2672842ea63","8f44c0a2678b11d-13f7e08f4042c5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.674958,32.855151],[-83.674203,32.854549]]},"id":"8944c0a267bffff-13bfe17b3ae82c23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67327,32.854438]},"id":"8f44c0a2679e632-13b7e4ae4013ff63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2679d013-13ffa2672842ea63","8f44c0a2679e632-13b7e4ae4013ff63"]},"geometry":{"type":"LineString","coordinates":[[-83.674203,32.854549],[-83.674082,32.854579],[-83.67327,32.854438]]},"id":"8a44c0a2679ffff-13dee38a35cf5f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67900900000001,32.83856]},"id":"8f44c0a26d056b4-13f696ab6bdfb3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a26d056b4-13f696ab6bdfb3cd","8f44c0b19688792-17d79457c6d6ea57"]},"geometry":{"type":"LineString","coordinates":[[-83.67900900000001,32.83856],[-83.679305,32.83798],[-83.679516,32.837581],[-83.679962,32.836696]]},"id":"8644c0b1fffffff-179e95808ed75d87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b196accb6-13d7d241616d879f","8f44c0b19688792-17d79457c6d6ea57"]},"geometry":{"type":"LineString","coordinates":[[-83.679962,32.836696],[-83.680817,32.83503]]},"id":"8944c0b196bffff-13def34c93136844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681701,32.833306]},"id":"8f44c0b19636591-1796d018ed42df4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b196accb6-13d7d241616d879f","8f44c0b19636591-1796d018ed42df4e"]},"geometry":{"type":"LineString","coordinates":[[-83.680817,32.83503],[-83.68156,32.833588],[-83.681663,32.833368],[-83.681701,32.833306]]},"id":"8844c0b197fffff-17bfd12c876f90bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b197ac8d1-139fcf98c759c6cb","8f44c0b19636591-1796d018ed42df4e"]},"geometry":{"type":"LineString","coordinates":[[-83.681701,32.833306],[-83.681762,32.833174],[-83.68183,32.832976],[-83.681859,32.832849],[-83.68187800000001,32.832686],[-83.681889,32.832338],[-83.68190600000001,32.832102]]},"id":"8944c0b197bffff-139e8fbd716681a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681917,32.831628]},"id":"8f44c0b19712c46-13f78f91e4f1280f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19712c46-13f78f91e4f1280f","8f44c0b197ac8d1-139fcf98c759c6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.68190600000001,32.832102],[-83.681917,32.831628]]},"id":"8944c0b197bffff-139faf955f256b2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19712c46-13f78f91e4f1280f","8f44c0b19716c8c-17f68f81adaab054"]},"geometry":{"type":"LineString","coordinates":[[-83.681917,32.831628],[-83.681943,32.831184]]},"id":"8a44c0b19717fff-17fecf89c91b1a21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68196900000001,32.830409]},"id":"8f44c0b1944882e-17ffaf716f17d1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19716c8c-17f68f81adaab054","8f44c0b1944882e-17ffaf716f17d1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.681943,32.831184],[-83.68196900000001,32.830409]]},"id":"8744c0b19ffffff-17ffdf79886c062b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1946e4c5-13d7ef5541297fa2","8f44c0b1944882e-17ffaf716f17d1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.68196900000001,32.830409],[-83.68198100000001,32.83017],[-83.681984,32.830111],[-83.681993,32.829935],[-83.68201400000001,32.829299]]},"id":"8944c0b1947ffff-17b6df61d12f3ea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1946e4c5-13d7ef5541297fa2","8f44c0b19464741-1397ef374c018d66"]},"geometry":{"type":"LineString","coordinates":[[-83.68201400000001,32.829299],[-83.682062,32.828195]]},"id":"8944c0b1947ffff-13feef4643155bff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19464741-1397ef374c018d66","8f44c0b1954335c-17b6ef1447c7ce05"]},"geometry":{"type":"LineString","coordinates":[[-83.682062,32.828195],[-83.682118,32.827019]]},"id":"8844c0b195fffff-17b6ef25c4fccc98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b195752f1-13f6cf44655894ef","8f44c0b1954335c-17b6ef1447c7ce05"]},"geometry":{"type":"LineString","coordinates":[[-83.682118,32.827019],[-83.682134,32.826669],[-83.682128,32.826258],[-83.68208800000001,32.825832000000005],[-83.682041,32.825454]]},"id":"8944c0b1957ffff-13df9f1adafebe22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740953,32.922071]},"id":"8f44c0a28a4e889-17d7ff706408d34d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28a4e889-17d7ff706408d34d","8f44c0a28a2e063-17b603c9871aa7f1"]},"geometry":{"type":"LineString","coordinates":[[-83.740953,32.922071],[-83.740858,32.921988],[-83.74076500000001,32.921891],[-83.740736,32.921833],[-83.74071,32.92176],[-83.740582,32.921035],[-83.740567,32.92091],[-83.740549,32.920809000000006],[-83.740504,32.920674000000005],[-83.74046200000001,32.920595],[-83.740363,32.920454],[-83.74027000000001,32.920366],[-83.740098,32.920186],[-83.739917,32.920017],[-83.739502,32.919598],[-83.73942500000001,32.919513],[-83.73937500000001,32.919434],[-83.73928500000001,32.919255],[-83.739214,32.919068],[-83.73917200000001,32.918944]]},"id":"8844c0a28bfffff-13f7516ad42efd93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b190c5-1396251f6c84415c","8f44c0a28a2e063-17b603c9871aa7f1"]},"geometry":{"type":"LineString","coordinates":[[-83.73917200000001,32.918944],[-83.73912,32.918838],[-83.738809,32.918092],[-83.73868,32.917769],[-83.738658,32.917699],[-83.73863,32.917532],[-83.738625,32.917453]]},"id":"8844c0a28bfffff-13de1488fe10e010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b190c5-1396251f6c84415c","8f44c0a28849bb2-17ffc7c30d72e278"]},"geometry":{"type":"LineString","coordinates":[[-83.738625,32.917453],[-83.738617,32.917385],[-83.73861600000001,32.917304],[-83.738629,32.917209],[-83.738663,32.917076],[-83.738702,32.916961],[-83.738741,32.916871],[-83.738786,32.91679],[-83.738842,32.916707],[-83.73890700000001,32.916621],[-83.73929700000001,32.916221],[-83.73944800000001,32.916088],[-83.73960600000001,32.915976],[-83.73967300000001,32.91592],[-83.739727,32.915861],[-83.73976400000001,32.91581],[-83.73980800000001,32.915728],[-83.739827,32.915642000000005],[-83.739823,32.915557],[-83.73981300000001,32.915483],[-83.73977500000001,32.915391],[-83.739728,32.91532],[-83.73965000000001,32.915242],[-83.739592,32.915194],[-83.73951500000001,32.915154],[-83.73944,32.915129],[-83.73935900000001,32.915112],[-83.739266,32.915106],[-83.739146,32.915115],[-83.73903700000001,32.915134],[-83.738917,32.915159],[-83.738816,32.915173],[-83.738712,32.915176],[-83.737544,32.915174]]},"id":"8944c0a28b3ffff-17ffa44f23ec954c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b82110-139e0da54205cbad","8f44c0a28849bb2-17ffc7c30d72e278"]},"geometry":{"type":"LineString","coordinates":[[-83.737544,32.915174],[-83.73701000000001,32.91517],[-83.736525,32.915171],[-83.73638700000001,32.91518],[-83.73621200000001,32.915217000000005],[-83.736062,32.915267],[-83.73594200000001,32.915329],[-83.735791,32.915425],[-83.73568,32.915506],[-83.73560300000001,32.915598],[-83.735557,32.915692],[-83.73533,32.916285],[-83.73517100000001,32.916759],[-83.735134,32.91688]]},"id":"8744c0a28ffffff-17971b61bef6c293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b82110-139e0da54205cbad","8f44c0a28b9bcd4-13bfcecf6c420cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.735134,32.91688],[-83.734657,32.918134]]},"id":"8944c0a28bbffff-13b7ee3a5f3b5239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734531,32.919491]},"id":"8f44c0a28a868c9-17ffef1e2fd51127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28b9bcd4-13bfcecf6c420cb5","8f44c0a28a868c9-17ffef1e2fd51127"]},"geometry":{"type":"LineString","coordinates":[[-83.734657,32.918134],[-83.734571,32.918355000000005],[-83.734502,32.918667],[-83.734468,32.918946000000005],[-83.73446700000001,32.919114],[-83.73451,32.919351],[-83.734531,32.919491]]},"id":"8844c0a28bfffff-17dfdf246ffa9f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3078a99b-139fb42cc86b020a","8f44c0a30610548-17df91e501f92132"]},"geometry":{"type":"LineString","coordinates":[[-83.62760200000001,32.865073],[-83.62791800000001,32.865235000000006],[-83.628068,32.865321],[-83.62822,32.865433],[-83.628319,32.865536],[-83.628394,32.865636],[-83.62845200000001,32.865723],[-83.628505,32.865856],[-83.62854,32.866027],[-83.628544,32.866101],[-83.62853600000001,32.866196]]},"id":"8844c0a307fffff-13d752b56814d42b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306c5ad1-17ffaef020932189","8f44c0a30610548-17df91e501f92132"]},"geometry":{"type":"LineString","coordinates":[[-83.62853600000001,32.866196],[-83.628348,32.86678],[-83.628344,32.866867],[-83.628355,32.866937],[-83.628393,32.867013],[-83.628591,32.867213],[-83.628669,32.867314],[-83.62870500000001,32.86737],[-83.628713,32.867444],[-83.628708,32.867489],[-83.628675,32.867562],[-83.628393,32.8679],[-83.62837400000001,32.867948000000005],[-83.62836800000001,32.868018],[-83.628381,32.868263],[-83.628417,32.868527],[-83.628472,32.86871],[-83.628539,32.86887],[-83.62867100000001,32.869065],[-83.628752,32.869146],[-83.62888500000001,32.869242],[-83.628973,32.869275],[-83.629125,32.869298],[-83.62932400000001,32.869307],[-83.62957200000001,32.869313000000005],[-83.62974700000001,32.869321]]},"id":"8844c0a307fffff-13fff19192b099f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67840460000001,32.8249741]},"id":"8f44c0b1951e6e4-13bed8252ec6ebad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b195186d0-1396b763c6911222","8f44c0b1951e6e4-13bed8252ec6ebad"]},"geometry":{"type":"LineString","coordinates":[[-83.678714,32.825325],[-83.678419,32.824992],[-83.67840460000001,32.8249741]]},"id":"8a44c0b1951ffff-13b6b7c4b54d10df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6781708,32.8246395]},"id":"8f44c0b19513285-17f7b8b74a0c2e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1951e6e4-13bed8252ec6ebad","8f44c0b19513285-17f7b8b74a0c2e12"]},"geometry":{"type":"LineString","coordinates":[[-83.67840460000001,32.8249741],[-83.678258,32.824792],[-83.67818600000001,32.824672],[-83.6781708,32.8246395]]},"id":"8944c0b1953ffff-17d7b872a342e90a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678081,32.821627]},"id":"8f44c0b1826e172-139ef8ef6ea6695f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1826e172-139ef8ef6ea6695f","8f44c0b19513285-17f7b8b74a0c2e12"]},"geometry":{"type":"LineString","coordinates":[[-83.6781708,32.8246395],[-83.67811,32.824509],[-83.678054,32.824334],[-83.67803,32.824229],[-83.678019,32.824106],[-83.67804500000001,32.822783],[-83.678081,32.821627]]},"id":"8744c0b19ffffff-13d7d9018a9ad7dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638247,32.813336]},"id":"8f44c0b1a5004b0-13dffa2fab393dda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a5068e2-13d7fa2dc99fdb62","8f44c0b1a5004b0-13dffa2fab393dda"]},"geometry":{"type":"LineString","coordinates":[[-83.638247,32.813336],[-83.63825,32.812936]]},"id":"8a44c0b1a507fff-13d6fa2ebce5d507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a535ccc-13d7fa0b6adc65bf","8f44c0b1a5068e2-13d7fa2dc99fdb62"]},"geometry":{"type":"LineString","coordinates":[[-83.63825,32.812936],[-83.638288,32.812351],[-83.638305,32.812089]]},"id":"8944c0b1a53ffff-13defa1c9a93b9b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a535ccc-13d7fa0b6adc65bf","8f44c0b1ac9a961-17bff9f08546e76c"]},"geometry":{"type":"LineString","coordinates":[[-83.638305,32.812089],[-83.63834800000001,32.811238]]},"id":"8744c0b1affffff-17bff9fdf4657a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63842600000001,32.809945]},"id":"8f44c0b1ac95c33-1397f9bfc5a94392"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac95c33-1397f9bfc5a94392","8f44c0b1ac9a961-17bff9f08546e76c"]},"geometry":{"type":"LineString","coordinates":[[-83.63834800000001,32.811238],[-83.63842600000001,32.809945]]},"id":"8944c0b1acbffff-179ff9d8246cd0f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b116cecf2-17d7f63e678d1836","8f44c0b116eb38c-17f7f37c262518cc"]},"geometry":{"type":"LineString","coordinates":[[-83.652969,32.785283],[-83.653119,32.7853],[-83.654099,32.785311]]},"id":"8944c0b116fffff-17ded4dd8d85e725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1165938b-17ffcf1c26a9285e","8f44c0b116eb38c-17f7f37c262518cc"]},"geometry":{"type":"LineString","coordinates":[[-83.654099,32.785311],[-83.654589,32.785321],[-83.65589100000001,32.78533]]},"id":"8844c0b117fffff-17fed14c25e222cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65875600000001,32.785379]},"id":"8f44c0b1e9224ce-179fe81d8e08e565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1165938b-17ffcf1c26a9285e","8f44c0b1e9224ce-179fe81d8e08e565"]},"geometry":{"type":"LineString","coordinates":[[-83.65589100000001,32.78533],[-83.65875600000001,32.785379]]},"id":"8744c0b11ffffff-17fedb9cda78092d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62784,32.8534195]},"id":"8f44c0a30c8eb9e-17bf33980f0770c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62843070000001,32.853130300000004]},"id":"8f44c0a30caa2e9-17f77226d8eed8a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c8eb9e-17bf33980f0770c9","8f44c0a30caa2e9-17f77226d8eed8a6"]},"geometry":{"type":"LineString","coordinates":[[-83.62784,32.8534195],[-83.6281665,32.853195400000004],[-83.62843070000001,32.853130300000004]]},"id":"8944c0a30cbffff-17d772e6db179de0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627522,32.8521492]},"id":"8f44c0a30c84ce3-1397545ec92325c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30caa2e9-17f77226d8eed8a6","8f44c0a30c84ce3-1397545ec92325c2"]},"geometry":{"type":"LineString","coordinates":[[-83.62843070000001,32.853130300000004],[-83.6285756,32.8531032],[-83.6289189,32.852868900000004],[-83.6288545,32.8524588],[-83.62888670000001,32.852364200000004],[-83.6294982,32.851918000000005],[-83.6288062,32.851197],[-83.6275832,32.8520307],[-83.627522,32.8521492]]},"id":"8844c0a30dfffff-13b7717d44f8fd66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62695880000001,32.8525377]},"id":"8f44c0a30c82d24-139715bec07e182e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c82d24-139715bec07e182e","8f44c0a30c84ce3-1397545ec92325c2"]},"geometry":{"type":"LineString","coordinates":[[-83.627522,32.8521492],[-83.62695880000001,32.8525377]]},"id":"8a44c0a30c87fff-139fb50ec70d426b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac63209-17dfe77049b6fe1a","8f44c0b1a883175-17f7e11920ff4cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.645926,32.8115188],[-83.64607600000001,32.811546],[-83.64630700000001,32.811568],[-83.646741,32.811576],[-83.647273,32.81156],[-83.64852300000001,32.811523]]},"id":"8744c0b1affffff-17f6f445afeef349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648965,32.811507]},"id":"8f44c0b1a881050-17d7e004e69cd23a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a883175-17f7e11920ff4cb6","8f44c0b1a881050-17d7e004e69cd23a"]},"geometry":{"type":"LineString","coordinates":[[-83.64852300000001,32.811523],[-83.648965,32.811507]]},"id":"8a44c0b1a887fff-17dee08f0b266212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766914,32.779099]},"id":"8f44c0b2865198e-13bde00ecbc2fdb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766948,32.776972]},"id":"8f44c0b2862d6d0-1397bff987b209e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b2865198e-13bde00ecbc2fdb4","8f44c0b2862d6d0-1397bff987b209e8"]},"geometry":{"type":"LineString","coordinates":[[-83.766914,32.779099],[-83.766929,32.778875],[-83.766948,32.776972]]},"id":"8844c0b287fffff-17b5d000969380f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28084da1-13bdbfd86910264d","8f44c0b2862d6d0-1397bff987b209e8"]},"geometry":{"type":"LineString","coordinates":[[-83.766948,32.776972],[-83.76700100000001,32.770061000000005]]},"id":"8744c0b28ffffff-1397ffe8fc68143c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28084da1-13bdbfd86910264d","8f44c0b281950ed-13f5ffd1808a6a90"]},"geometry":{"type":"LineString","coordinates":[[-83.76700100000001,32.770061000000005],[-83.766999,32.769657],[-83.76701200000001,32.767522]]},"id":"8844c0b281fffff-179fbfd624a92a1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c0950a-17f7ca538e2ed4b8","8f44c0a30c0e04a-17972b87a7050d4d"]},"geometry":{"type":"LineString","coordinates":[[-83.631636,32.853302],[-83.631618,32.853245],[-83.631427,32.853051],[-83.63114300000001,32.852773]]},"id":"8a44c0a30c0ffff-17b79ae5fba1eb91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6309104,32.8525487]},"id":"8f44c0a30c0ec94-139ffc1900da058b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30c0ec94-139ffc1900da058b","8f44c0a30c0e04a-17972b87a7050d4d"]},"geometry":{"type":"LineString","coordinates":[[-83.63114300000001,32.852773],[-83.6309104,32.8525487]]},"id":"8b44c0a30c0efff-13d71bd05fd2a589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35664bb3-1397cc88280243e1","8f44c0a35291a5e-1796c87d2a73132a"]},"geometry":{"type":"LineString","coordinates":[[-83.656947,32.861986],[-83.657559,32.862057],[-83.657751,32.862088],[-83.657939,32.862138],[-83.658005,32.862166],[-83.658105,32.862236],[-83.658192,32.862344],[-83.658603,32.862976]]},"id":"8744c0a35ffffff-13deda3b8506e042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35291a5e-1796c87d2a73132a","8f44c0a3192ccd3-13b6c58f26759702"]},"geometry":{"type":"LineString","coordinates":[[-83.658603,32.862976],[-83.65926400000001,32.863982],[-83.659796,32.864767],[-83.659836,32.864854],[-83.65987100000001,32.864964],[-83.65984800000001,32.865159000000006],[-83.65980300000001,32.86531]]},"id":"8744c0a35ffffff-17dee6b67e3a4ccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66291290000001,32.8732391]},"id":"8f44c0a31b054d6-179efdf772f87630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b00523-1797fef5cbea4907","8f44c0a31b054d6-179efdf772f87630"]},"geometry":{"type":"LineString","coordinates":[[-83.66250600000001,32.873219],[-83.66291290000001,32.8732391]]},"id":"8a44c0a31b07fff-179ebe769b2a82c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b054d6-179efdf772f87630","8f44c0a31b05062-179ebd3d9f98b85d"]},"geometry":{"type":"LineString","coordinates":[[-83.66291290000001,32.8732391],[-83.662931,32.87324],[-83.663072,32.87325],[-83.663196,32.873236],[-83.6632103,32.873232]]},"id":"8b44c0a31b05fff-1797bd9a462b617d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b2e8f4-17f7bc0723bc0323","8f44c0a31b05062-179ebd3d9f98b85d"]},"geometry":{"type":"LineString","coordinates":[[-83.6632103,32.873232],[-83.663318,32.873202],[-83.66341700000001,32.87316],[-83.663559,32.873081],[-83.663707,32.872988]]},"id":"8944c0a31b3ffff-17d6fc9e3727d2ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b2e8f4-17f7bc0723bc0323","8f44c0a224ee85a-13bff3b5cfc9475d"]},"geometry":{"type":"LineString","coordinates":[[-83.663707,32.872988],[-83.66424900000001,32.872669],[-83.66445300000001,32.872557],[-83.66479500000001,32.872427],[-83.66501600000001,32.872377],[-83.665186,32.872351],[-83.66534100000001,32.872343],[-83.665897,32.872326],[-83.666616,32.872312],[-83.66711400000001,32.872287]]},"id":"8544c0a3fffffff-17b6b7fd6eb30023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a62e659-17d7ef3a09cee9d0","8f44c0b1a7528f0-13b6ed6f44e4c90b"]},"geometry":{"type":"LineString","coordinates":[[-83.642736,32.823974],[-83.64347000000001,32.823124]]},"id":"8844c0b1a7fffff-17beee54ac3ce4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266094a1-17de99d92a95673b","8f44c0a2660c0ee-179e99da60010754"]},"geometry":{"type":"LineString","coordinates":[[-83.677705,32.856672],[-83.677716,32.856793],[-83.67770700000001,32.85736]]},"id":"8a44c0a2660ffff-17f6f9d671db9c54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67931800000001,32.858638]},"id":"8f44c0a26643183-13fed5ea488592f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26643183-13fed5ea488592f3","8f44c0a266094a1-17de99d92a95673b"]},"geometry":{"type":"LineString","coordinates":[[-83.67770700000001,32.85736],[-83.67769100000001,32.858614],[-83.678117,32.858618],[-83.67931800000001,32.858638]]},"id":"8844c0a267fffff-13b798c1d79b41fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266493ac-17b692ff65ca84b5","8f44c0a26643183-13fed5ea488592f3"]},"geometry":{"type":"LineString","coordinates":[[-83.67931800000001,32.858638],[-83.67943000000001,32.858803],[-83.680513,32.85976]]},"id":"8744c0a26ffffff-13d6f47f1d544ccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266493ac-17b692ff65ca84b5","8f44c0a2291426c-17be91db8e410f54"]},"geometry":{"type":"LineString","coordinates":[[-83.680513,32.85976],[-83.68098,32.86018]]},"id":"8944c0a2293ffff-17bfd26d7059d18a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03870c8a-13b7f337e281b7a5","8f44c0b0382d8d6-17d6530686dde8d9"]},"geometry":{"type":"LineString","coordinates":[[-83.706637,32.779891],[-83.706671,32.77976],[-83.706694,32.779652],[-83.70670700000001,32.77955],[-83.706714,32.779367],[-83.706716,32.77873]]},"id":"8844c0b039fffff-13bef30eb4952094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0382d8d6-17d6530686dde8d9","8f44c0b03950519-17de72fe612e7e72"]},"geometry":{"type":"LineString","coordinates":[[-83.706716,32.77873],[-83.70672900000001,32.777895]]},"id":"8944c0b0397ffff-17df530277ae6c1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705354,32.864252]},"id":"8f44c0a20b9e8ce-139fd659c5f83b7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20b9e8ce-139fd659c5f83b7f","8f44c0a20a865a2-179ed7712c310160"]},"geometry":{"type":"LineString","coordinates":[[-83.704907,32.866292],[-83.70504600000001,32.866155],[-83.705149,32.866095],[-83.70519800000001,32.866076],[-83.705308,32.866045],[-83.705464,32.866047],[-83.705613,32.866084],[-83.705945,32.866222],[-83.706118,32.866289],[-83.706159,32.8663],[-83.706258,32.866304],[-83.706417,32.866298],[-83.70651500000001,32.866287],[-83.706676,32.866234],[-83.706963,32.866069],[-83.70725300000001,32.865949],[-83.707554,32.865806],[-83.70766900000001,32.865715],[-83.707774,32.865614],[-83.707954,32.865428],[-83.70806300000001,32.865246],[-83.708146,32.865071],[-83.708184,32.864927],[-83.708195,32.864773],[-83.7082,32.864706000000005],[-83.708191,32.86461],[-83.708167,32.864525],[-83.708121,32.864445],[-83.708042,32.864348],[-83.707963,32.864277],[-83.70787700000001,32.86421],[-83.707661,32.864096],[-83.707453,32.863996],[-83.70728100000001,32.863923],[-83.70711700000001,32.863881],[-83.70693200000001,32.863906],[-83.70684100000001,32.863931],[-83.70669600000001,32.863981],[-83.706388,32.864102],[-83.706192,32.864185],[-83.706083,32.864224],[-83.70598000000001,32.864246],[-83.705849,32.864261],[-83.70572200000001,32.864269],[-83.705489,32.864264],[-83.705354,32.864252]]},"id":"8844c0a20bfffff-13bf72be1b1c97b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20b9e8ce-139fd659c5f83b7f","8f44c0a20173cf3-17b77e2a67a3d330"]},"geometry":{"type":"LineString","coordinates":[[-83.705354,32.864252],[-83.705044,32.864213],[-83.704807,32.864173],[-83.70460100000001,32.864112],[-83.70443300000001,32.864049],[-83.704232,32.863957],[-83.703939,32.863833],[-83.703709,32.863751],[-83.70355400000001,32.863719],[-83.70331300000001,32.863681],[-83.703066,32.863663],[-83.70215300000001,32.863653]]},"id":"8744c0a20ffffff-17beda39cb468702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62251640000001,32.837576600000006]},"id":"8f44c0a3680e4da-17ff60974eae4803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6230525,32.8369584]},"id":"8f44c0a3680194b-17ff1f48303eab23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3680194b-17ff1f48303eab23","8f44c0a3680e4da-17ff60974eae4803"]},"geometry":{"type":"LineString","coordinates":[[-83.62251640000001,32.837576600000006],[-83.6230525,32.8369584]]},"id":"8944c0a3683ffff-17bf3fefbdb13030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3680194b-17ff1f48303eab23","8f44c0a3682166b-13f71e09632ed6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6230525,32.8369584],[-83.6235626,32.8363089]]},"id":"8944c0a3683ffff-17b71ea8d45e9b56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a472561-17d7f8597c79cf7d","8f44c0b1a474d14-1797f6dbca83a1c3"]},"geometry":{"type":"LineString","coordinates":[[-83.63961,32.816924],[-83.63899930000001,32.8176432]]},"id":"8a44c0b1a477fff-17f6f79a9850e6b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a472561-17d7f8597c79cf7d","8f44c0b1a409b58-17bef8b30f6e10b4"]},"geometry":{"type":"LineString","coordinates":[[-83.63899930000001,32.8176432],[-83.638856,32.817812]]},"id":"8944c0b1a47ffff-1797f8864b367441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13b1cc98-179eeac6b6e74b58","8f44c0b13b1c04b-1796ea386681f0b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6447866,32.778400000000005],[-83.6445589,32.7782094]]},"id":"8b44c0b13b1cfff-17defa7f854f22ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64419860000001,32.7769653]},"id":"8f44c0b13b32675-1397fba7e0d36f69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13b1cc98-179eeac6b6e74b58","8f44c0b13b32675-1397fba7e0d36f69"]},"geometry":{"type":"LineString","coordinates":[[-83.6445589,32.7782094],[-83.64419330000001,32.7779034],[-83.64417300000001,32.777738],[-83.64419860000001,32.7769653]]},"id":"8944c0b13b3ffff-17bfeb881218322e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13b32675-1397fba7e0d36f69","8f44c0b1386ba2a-13d7eb99440ea086"]},"geometry":{"type":"LineString","coordinates":[[-83.64419860000001,32.7769653],[-83.644215,32.776469],[-83.644222,32.776069]]},"id":"8744c0b13ffffff-13ffeb9f83ee1808"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667894,32.820208]},"id":"8f44c0b1866241d-1796b1ce4b9e1a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1866241d-1796b1ce4b9e1a12","8f44c0b18770476-17beb1adc588b31d"]},"geometry":{"type":"LineString","coordinates":[[-83.667894,32.820208],[-83.667882,32.819437],[-83.66783500000001,32.817546],[-83.66789200000001,32.8172],[-83.667946,32.816964]]},"id":"8844c0b187fffff-139ff1dcf9ea9d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18770476-17beb1adc588b31d","8f44c0b180d0696-17fef182a73e76b7"]},"geometry":{"type":"LineString","coordinates":[[-83.667946,32.816964],[-83.66801500000001,32.81505]]},"id":"8744c0b18ffffff-13d6f19835ce14e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66802200000001,32.814594]},"id":"8f44c0b180d6a10-17f7f17e4c6e29aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b180d6a10-17f7f17e4c6e29aa","8f44c0b180d0696-17fef182a73e76b7"]},"geometry":{"type":"LineString","coordinates":[[-83.66801500000001,32.81505],[-83.6680204,32.8146994],[-83.66802200000001,32.814594]]},"id":"8a44c0b180d7fff-17fff18076d60d0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b180d6a10-17f7f17e4c6e29aa","8f44c0b180d686c-1797b16c201114b8"]},"geometry":{"type":"LineString","coordinates":[[-83.66802200000001,32.814594],[-83.668051,32.8144763]]},"id":"8b44c0b180d6fff-17bef17539b09f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8b14d1-17b7e21501b21c76","8f44c0b1ad480c9-13bfe59ea87edba4"]},"geometry":{"type":"LineString","coordinates":[[-83.64667100000001,32.810024],[-83.64812,32.810425]]},"id":"8744c0b1affffff-17b6f3d9dc1ed079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8b14d1-17b7e21501b21c76","8f44c0b1a81c253-17f6d9f4cb3deb77"]},"geometry":{"type":"LineString","coordinates":[[-83.64812,32.810425],[-83.64914800000001,32.810685],[-83.649584,32.810789],[-83.649969,32.810881],[-83.650592,32.81102],[-83.65075,32.811048],[-83.651033,32.811098],[-83.651263,32.811129],[-83.6514484,32.8111405]]},"id":"8844c0b1a9fffff-17bffe096cdb0a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a81c253-17f6d9f4cb3deb77","8f44c0b1a81dc99-17f6d9bd625e5be9"]},"geometry":{"type":"LineString","coordinates":[[-83.6514484,32.8111405],[-83.651537,32.811146]]},"id":"8a44c0b1a81ffff-17f6d9d91cb714ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a81dc99-17f6d9bd625e5be9","8f44c0b1a82b244-17fed57de04888b0"]},"geometry":{"type":"LineString","coordinates":[[-83.651537,32.811146],[-83.652004,32.811152],[-83.65278400000001,32.811151],[-83.653277,32.811134]]},"id":"8944c0b1a83ffff-17f7f79d9527bb11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71063600000001,32.881563]},"id":"8f44c0a21462dac-13f6e9748f0e4200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a21462dac-13f6e9748f0e4200","8f44c0a2145ace1-17de4cec00a7e799"]},"geometry":{"type":"LineString","coordinates":[[-83.71063600000001,32.881563],[-83.710339,32.881669],[-83.709625,32.881901],[-83.70952700000001,32.881923],[-83.70941,32.88194],[-83.709309,32.88194],[-83.709164,32.881928],[-83.708968,32.881932],[-83.708871,32.881953],[-83.70879400000001,32.881982],[-83.708673,32.882077],[-83.708617,32.882159],[-83.70856400000001,32.882281],[-83.708572,32.882477],[-83.7086,32.882542],[-83.708662,32.882635],[-83.708758,32.882751],[-83.708993,32.882984],[-83.70911100000001,32.883108],[-83.709169,32.88319],[-83.70921,32.883277],[-83.709238,32.88336],[-83.70923400000001,32.883445],[-83.70921600000001,32.8836]]},"id":"8844c0a215fffff-17be7cbc3d862654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70837,32.884151]},"id":"8f44c0a214cd92d-13b66efcc5e0924a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a214cd92d-13b66efcc5e0924a","8f44c0a2145ace1-17de4cec00a7e799"]},"geometry":{"type":"LineString","coordinates":[[-83.70921600000001,32.8836],[-83.709153,32.883808],[-83.709096,32.883898],[-83.70900900000001,32.883971],[-83.708944,32.884014],[-83.70886,32.88405],[-83.708759,32.884075],[-83.70837,32.884151]]},"id":"8844c0a215fffff-13d6fdc44fed9027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3654e92d-13b77a4ea2cc9375","8f44c0a3655d568-13d73c15b4f83e36"]},"geometry":{"type":"LineString","coordinates":[[-83.61198300000001,32.842551],[-83.6112549,32.842830500000005]]},"id":"8944c0a3657ffff-13fffb323000322e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6099124,32.8433458]},"id":"8f44c0a36429295-17973f5cc1e33460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3655d568-13d73c15b4f83e36","8f44c0a36429295-17973f5cc1e33460"]},"geometry":{"type":"LineString","coordinates":[[-83.6112549,32.842830500000005],[-83.6099124,32.8433458]]},"id":"8844c0a365fffff-17f73db94b489278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a364081ae-179fc212ce4e1baf","8f44c0a36429295-17973f5cc1e33460"]},"geometry":{"type":"LineString","coordinates":[[-83.6099124,32.8433458],[-83.60880200000001,32.843772]]},"id":"8944c0a3643ffff-179f50b7cf998079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71217800000001,32.875925]},"id":"8f44c0a21cc4db5-179f65b0c4a22de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2156a5a6-17ffe63ae8cc069b","8f44c0a21cc4db5-179f65b0c4a22de3"]},"geometry":{"type":"LineString","coordinates":[[-83.71217800000001,32.875925],[-83.71214400000001,32.876502],[-83.71212100000001,32.877412],[-83.71208200000001,32.878563],[-83.712067,32.8793],[-83.712047,32.879463],[-83.71204,32.879514],[-83.71201,32.879617],[-83.711957,32.879737]]},"id":"8744c0a21ffffff-13df65df26831f3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2156a5a6-17ffe63ae8cc069b","8f44c0a21462dac-13f6e9748f0e4200"]},"geometry":{"type":"LineString","coordinates":[[-83.711957,32.879737],[-83.711886,32.879862],[-83.71183500000001,32.879939],[-83.71176200000001,32.880035],[-83.711636,32.880155],[-83.71087700000001,32.880743],[-83.710757,32.880854],[-83.710683,32.880943],[-83.71063500000001,32.881034],[-83.71060100000001,32.881138],[-83.71058500000001,32.881214],[-83.71058400000001,32.881355],[-83.710609,32.881498],[-83.71063600000001,32.881563]]},"id":"8844c0a215fffff-13976833883f59ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21462dac-13f6e9748f0e4200","8f44c0a2101b2ca-17f7bb4409f092b0"]},"geometry":{"type":"LineString","coordinates":[[-83.71063600000001,32.881563],[-83.710789,32.881843],[-83.710907,32.882019],[-83.711008,32.882126],[-83.711196,32.882266],[-83.711391,32.882358],[-83.71150800000001,32.882396],[-83.711759,32.88244],[-83.71282500000001,32.882466],[-83.715351,32.882513],[-83.715935,32.882531],[-83.716032,32.88255],[-83.71615200000001,32.882586],[-83.71630900000001,32.882669],[-83.716448,32.882793]]},"id":"8744c0a21ffffff-17f7d2ad65be4460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.718193,32.883633]},"id":"8f44c0a21053cf5-17feb70169256bc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21053cf5-17feb70169256bc8","8f44c0a2101b2ca-17f7bb4409f092b0"]},"geometry":{"type":"LineString","coordinates":[[-83.716448,32.882793],[-83.716589,32.882911],[-83.71678800000001,32.883068],[-83.71691100000001,32.883155],[-83.716935,32.88317],[-83.71702300000001,32.883225],[-83.717163,32.883302],[-83.71739600000001,32.883407000000005],[-83.71756400000001,32.883474],[-83.717962,32.883592],[-83.718193,32.883633]]},"id":"8844c0a211fffff-179e793cc6d7eb8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720805,32.883845]},"id":"8f44c0a2106bcaa-17f730a0e93bfb51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2106bcaa-17f730a0e93bfb51","8f44c0a21053cf5-17feb70169256bc8"]},"geometry":{"type":"LineString","coordinates":[[-83.718193,32.883633],[-83.71880300000001,32.883674],[-83.720805,32.883845]]},"id":"8944c0a2107ffff-17be73d0ff17f1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2106bcaa-17f730a0e93bfb51","8f44c0a21a9d400-17b76c12a105d4f8"]},"geometry":{"type":"LineString","coordinates":[[-83.720805,32.883845],[-83.721186,32.883865],[-83.72132400000001,32.883867],[-83.721466,32.883857],[-83.721688,32.883813],[-83.721868,32.883768],[-83.72238800000001,32.883595],[-83.722548,32.883558],[-83.722671,32.883535]]},"id":"8744c0a21ffffff-17be2e54e5e976fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72599600000001,32.883318]},"id":"8f44c0a21a19715-17bfe3f48dece030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21a9d400-17b76c12a105d4f8","8f44c0a21a19715-17bfe3f48dece030"]},"geometry":{"type":"LineString","coordinates":[[-83.722671,32.883535],[-83.722862,32.883519],[-83.723042,32.883521],[-83.72344000000001,32.883561],[-83.72481,32.883722],[-83.724957,32.883727],[-83.725071,32.883723],[-83.725263,32.883696],[-83.72538200000001,32.883665],[-83.725547,32.883597],[-83.72575,32.883482],[-83.72599600000001,32.883318]]},"id":"8844c0a21bfffff-17de67eb99a4ca7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64589500000001,32.800472]},"id":"8f44c0b1e785af3-17f7e783a758a38d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645919,32.800266]},"id":"8f44c0b1e78594e-13f6e774ac02702a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e785af3-17f7e783a758a38d","8f44c0b1e78594e-13f6e774ac02702a"]},"geometry":{"type":"LineString","coordinates":[[-83.64589500000001,32.800472],[-83.645919,32.800266]]},"id":"8b44c0b1e785fff-17b6e77c270cb1b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7a46a6-13f6e76b435b7466","8f44c0b1e78594e-13f6e774ac02702a"]},"geometry":{"type":"LineString","coordinates":[[-83.645919,32.800266],[-83.64593400000001,32.799236]]},"id":"8944c0b1e7bffff-13b6e76ff6d17733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64583,32.798644]},"id":"8f44c0b1e459815-17f6e7ac4c185dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7a46a6-13f6e76b435b7466","8f44c0b1e459815-17f6e7ac4c185dd4"]},"geometry":{"type":"LineString","coordinates":[[-83.64593400000001,32.799236],[-83.64583,32.798644]]},"id":"8744c0b1effffff-13bfe78bc4880218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66455400000001,32.827275]},"id":"8f44c0b1b893cb5-17d6f9f5c99cc81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8962ea-17fff9ef79bdc588","8f44c0b1b893cb5-17d6f9f5c99cc81d"]},"geometry":{"type":"LineString","coordinates":[[-83.66455400000001,32.827275],[-83.66456000000001,32.827053],[-83.6645641,32.826904400000004]]},"id":"8a44c0b1b897fff-17f7b9f2a11e74a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8962ea-17fff9ef79bdc588","8f44c0b1b896302-179fb9ed4ce1ff6a"]},"geometry":{"type":"LineString","coordinates":[[-83.6645641,32.826904400000004],[-83.66456760000001,32.8267763]]},"id":"8c44c0b1b8963ff-17d7f9ee6c733145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66457000000001,32.826687]},"id":"8f44c0b1b89614d-17f7f9ebce95ca76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b89614d-17f7f9ebce95ca76","8f44c0b1b896302-179fb9ed4ce1ff6a"]},"geometry":{"type":"LineString","coordinates":[[-83.66456760000001,32.8267763],[-83.66457000000001,32.826687]]},"id":"8b44c0b1b896fff-1797f9ec81691cc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664581,32.82595]},"id":"8f44c0b1bd4d616-139ef9e4e4a1d20d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd4d616-139ef9e4e4a1d20d","8f44c0b1b89614d-17f7f9ebce95ca76"]},"geometry":{"type":"LineString","coordinates":[[-83.66457000000001,32.826687],[-83.664573,32.82658],[-83.664581,32.82595]]},"id":"8844c0b1bdfffff-1397b9e7efe38513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73930700000001,32.896676]},"id":"8f44c0a2c16aa6d-17d68375223bca3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.738844,32.89669]},"id":"8f44c0a2c16a4c9-17df44968d02cc0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c16a4c9-17df44968d02cc0b","8f44c0a2c16aa6d-17d68375223bca3f"]},"geometry":{"type":"LineString","coordinates":[[-83.73930700000001,32.896676],[-83.738844,32.89669]]},"id":"8b44c0a2c16afff-17dee405d73d517d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3661ba50-13b7bad28a349fd6","8f44c0a36618922-17f77abe87407b1a"]},"geometry":{"type":"LineString","coordinates":[[-83.611804,32.851079],[-83.611772,32.851796]]},"id":"8a44c0a3661ffff-13d77ac88149ef9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61175700000001,32.852536]},"id":"8f44c0a366e20f2-13973adbe1daef99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3661ba50-13b7bad28a349fd6","8f44c0a366e20f2-13973adbe1daef99"]},"geometry":{"type":"LineString","coordinates":[[-83.611772,32.851796],[-83.61175700000001,32.852536]]},"id":"8944c0a366fffff-139ffad7378662fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366ced54-17ff7ae21c96ea57","8f44c0a366e20f2-13973adbe1daef99"]},"geometry":{"type":"LineString","coordinates":[[-83.61175700000001,32.852536],[-83.6117471,32.8539332]]},"id":"8944c0a366fffff-17b7badefb6db112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d6545e-13dfbae40fd5a629","8f44c0a366ced54-17ff7ae21c96ea57"]},"geometry":{"type":"LineString","coordinates":[[-83.6117471,32.8539332],[-83.611755,32.85519],[-83.611744,32.855345]]},"id":"8744c0a32ffffff-13b7badfbe38e74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611771,32.856734]},"id":"8f44c0a32d6bd81-17d7fad329933cca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d6545e-13dfbae40fd5a629","8f44c0a32d6bd81-17d7fad329933cca"]},"geometry":{"type":"LineString","coordinates":[[-83.611744,32.855345],[-83.611771,32.856734]]},"id":"8944c0a32d7ffff-1797badb98b7d060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436676,32.840507200000005]},"id":"8f44c0a340454b6-17b7ecf3cb137b2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64400380000001,32.839829300000005]},"id":"8f44c0a34060682-17fffc21a887ad2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34060682-17fffc21a887ad2c","8f44c0a340454b6-17b7ecf3cb137b2a"]},"geometry":{"type":"LineString","coordinates":[[-83.6436676,32.840507200000005],[-83.64400380000001,32.839829300000005]]},"id":"8944c0a3407ffff-17d7fc8abc83b778"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34064756-13d7eb8f3cc2b1e6","8f44c0a34060682-17fffc21a887ad2c"]},"geometry":{"type":"LineString","coordinates":[[-83.64400380000001,32.839829300000005],[-83.64423810000001,32.8393566]]},"id":"8a44c0a34067fff-13ffebd87b40b9e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56093,32.828122]},"id":"8f44c0b812de6b1-17fff6f2c981c161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5586438,32.8293161]},"id":"8f44c0b8e919849-13d7bc87ad5fb2d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b812de6b1-17fff6f2c981c161","8f44c0b8e919849-13d7bc87ad5fb2d6"]},"geometry":{"type":"LineString","coordinates":[[-83.56093,32.828122],[-83.558846,32.829135],[-83.558715,32.829211],[-83.5586438,32.8293161]]},"id":"8844c0b8e9fffff-13dfb9cb5bf8cba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e802050-1797bf41b29d2eb9","8f44c0b8e919849-13d7bc87ad5fb2d6"]},"geometry":{"type":"LineString","coordinates":[[-83.5586438,32.8293161],[-83.55862900000001,32.829338],[-83.55861300000001,32.829434],[-83.558611,32.829534],[-83.558633,32.83028],[-83.55861800000001,32.830419],[-83.55855100000001,32.83061],[-83.558485,32.830716],[-83.558361,32.830872],[-83.55816300000001,32.831049],[-83.55801600000001,32.831136],[-83.55781800000001,32.831228],[-83.557682,32.831257],[-83.557597,32.831263],[-83.5575269,32.8312587]]},"id":"8844c0b8e9fffff-17bfbd39b5e3870b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e802050-1797bf41b29d2eb9","8f44c0b8e802491-17f7bfff9d4916f1"]},"geometry":{"type":"LineString","coordinates":[[-83.5575269,32.8312587],[-83.55745200000001,32.831254],[-83.5572231,32.8312146]]},"id":"8944c0b8e83ffff-1797ffa0e6502a73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e811c2b-17dfe0a1f2d8deaa","8f44c0b8e802491-17f7bfff9d4916f1"]},"geometry":{"type":"LineString","coordinates":[[-83.5572231,32.8312146],[-83.55712100000001,32.831197],[-83.5569633,32.831177000000004]]},"id":"8b44c0b8e811fff-17ffc050a29f389a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e810349-17d7e0eea1aef9c8","8f44c0b8e811c2b-17dfe0a1f2d8deaa"]},"geometry":{"type":"LineString","coordinates":[[-83.5569633,32.831177000000004],[-83.5568406,32.8311614]]},"id":"8b44c0b8e811fff-17dfc0c8513d2099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e810686-17d7e1cd87c3ade9","8f44c0b8e810349-17d7e0eea1aef9c8"]},"geometry":{"type":"LineString","coordinates":[[-83.5568406,32.8311614],[-83.55670400000001,32.831144],[-83.55648400000001,32.831135]]},"id":"8a44c0b8e817fff-17dfe15de206dee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55623010000001,32.8311435]},"id":"8f44c0b8e812042-17dff26c3e77e6b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e810686-17d7e1cd87c3ade9","8f44c0b8e812042-17dff26c3e77e6b2"]},"geometry":{"type":"LineString","coordinates":[[-83.55648400000001,32.831135],[-83.55623010000001,32.8311435]]},"id":"8a44c0b8e817fff-17d7d21ce3a06649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5556304,32.831068200000004]},"id":"8f44c0b8e8a1c08-179fe3e308e5e85e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e812042-17dff26c3e77e6b2","8f44c0b8e8a1c08-179fe3e308e5e85e"]},"geometry":{"type":"LineString","coordinates":[[-83.55623010000001,32.8311435],[-83.556127,32.831147],[-83.555879,32.831125],[-83.5556304,32.831068200000004]]},"id":"8844c0b8e9fffff-17bfe328b4bc4f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55381100000001,32.830544]},"id":"8f44c0b8e8b6376-17d7c854240e0fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e8b6376-17d7c854240e0fc7","8f44c0b8e8a1c08-179fe3e308e5e85e"]},"geometry":{"type":"LineString","coordinates":[[-83.5556304,32.831068200000004],[-83.555446,32.831026],[-83.555334,32.830983],[-83.554674,32.830779],[-83.554428,32.830706],[-83.554051,32.830618],[-83.55381100000001,32.830544]]},"id":"8944c0b8e8bffff-17f7d61ac336f8fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b929c1d-13d79be20203b14d","8f44c0b8b92d736-13bfdba1a6029e87"]},"geometry":{"type":"LineString","coordinates":[[-83.572119,32.865302],[-83.572016,32.865544]]},"id":"8a44c0b8b92ffff-13fffbc1d1fc4381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b929c1d-13d79be20203b14d","8f44c0b8b9094e3-179f9de78c5a3515"]},"geometry":{"type":"LineString","coordinates":[[-83.572016,32.865544],[-83.571825,32.866003],[-83.57174,32.866152],[-83.57166500000001,32.866249],[-83.571562,32.86636],[-83.571188,32.866684]]},"id":"8944c0b8b93ffff-17d7fcbd3873354b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6852592,32.8147728]},"id":"8f44c0b1d683096-17d787690ba5b5bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68052420000001,32.8140939]},"id":"8f44c0b18a09c42-17beb2f86a38c079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d683096-17d787690ba5b5bc","8f44c0b18a09c42-17beb2f86a38c079"]},"geometry":{"type":"LineString","coordinates":[[-83.6852592,32.8147728],[-83.684454,32.814748],[-83.68143400000001,32.814597],[-83.68133200000001,32.814586000000006],[-83.681185,32.814549],[-83.68106,32.814487],[-83.68052420000001,32.8140939]]},"id":"8644c0b1fffffff-17f79d5786e01d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a0a525-17b6b540eba45725","8f44c0b18a09c42-17beb2f86a38c079"]},"geometry":{"type":"LineString","coordinates":[[-83.68052420000001,32.8140939],[-83.680403,32.814005],[-83.68034200000001,32.813966],[-83.680228,32.813924],[-83.68012200000001,32.813898],[-83.680051,32.813888],[-83.679589,32.813885]]},"id":"8a44c0b18a0ffff-17d7b4118bc7d11e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678987,32.8138889]},"id":"8f44c0b18a18226-17be96b92ac3a578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a0a525-17b6b540eba45725","8f44c0b18a18226-17be96b92ac3a578"]},"geometry":{"type":"LineString","coordinates":[[-83.679589,32.813885],[-83.678987,32.8138889]]},"id":"8944c0b18a3ffff-17b7d5fd08cc1396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67879500000001,32.813895]},"id":"8f44c0b18a18604-17bef7312e6967e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a18604-17bef7312e6967e1","8f44c0b18a18226-17be96b92ac3a578"]},"geometry":{"type":"LineString","coordinates":[[-83.678987,32.8138889],[-83.67879500000001,32.813895]]},"id":"8b44c0b18a18fff-17be96f52ea5c24e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678701,32.891151]},"id":"8f44c0a04a30cc2-13dff76bea238cfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a34073-1397d6c67e26a568","8f44c0a04a30cc2-13dff76bea238cfa"]},"geometry":{"type":"LineString","coordinates":[[-83.678701,32.891151],[-83.678785,32.891064],[-83.67883400000001,32.891004],[-83.678888,32.890937],[-83.6789657,32.890841200000004]]},"id":"8a44c0a04a37fff-13feb7177cd617c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6789964,32.8908034]},"id":"8f44c0a04a34143-13f6b6b3461eb4b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a34073-1397d6c67e26a568","8f44c0a04a34143-13f6b6b3461eb4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6789657,32.890841200000004],[-83.6789964,32.8908034]]},"id":"8c44c0a04a341ff-13fff6bced21b38f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67939770000001,32.8903089]},"id":"8f44c0a04b18441-17bf95b8799c5269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04a34143-13f6b6b3461eb4b5","8f44c0a04b18441-17bf95b8799c5269"]},"geometry":{"type":"LineString","coordinates":[[-83.6789964,32.8908034],[-83.67939770000001,32.8903089]]},"id":"8844c0a04bfffff-13d7b635ec80c476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679495,32.890189]},"id":"8f44c0a04b18c59-17f6b57ba819267d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04b18441-17bf95b8799c5269","8f44c0a04b18c59-17f6b57ba819267d"]},"geometry":{"type":"LineString","coordinates":[[-83.67939770000001,32.8903089],[-83.679495,32.890189]]},"id":"8b44c0a04b18fff-1797b59a030a186a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57055700000001,32.79694]},"id":"8f44c0b85a80c16-13d79f71eaeac8e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57115040000001,32.7968655]},"id":"8f44c0b85a85896-139ffdff03734c23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85a85896-139ffdff03734c23","8f44c0b85a80c16-13d79f71eaeac8e9"]},"geometry":{"type":"LineString","coordinates":[[-83.57055700000001,32.79694],[-83.57087700000001,32.796908],[-83.571011,32.796891],[-83.57115040000001,32.7968655]]},"id":"8a44c0b85a87fff-13b7deb808e8719b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57178490000001,32.796841400000005]},"id":"8f44c0b85aaeba0-139ffc7273dfd906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85a85896-139ffdff03734c23","8f44c0b85aaeba0-139ffc7273dfd906"]},"geometry":{"type":"LineString","coordinates":[[-83.57115040000001,32.7968655],[-83.571301,32.796838],[-83.571539,32.796819],[-83.57163,32.796824],[-83.57178490000001,32.796841400000005]]},"id":"8944c0b85abffff-1397dd3924d7f381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1941e6cc-17b79a3a04c446b2","8f44c0b19418471-1396f971662af692"]},"geometry":{"type":"LineString","coordinates":[[-83.677873,32.828167],[-83.677746,32.828156],[-83.677695,32.828142],[-83.67762,32.8281],[-83.677552,32.82804]]},"id":"8a44c0b1941ffff-17ffb9dbb836eb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1941e6cc-17b79a3a04c446b2","8f44c0b19416c5b-17d7db8eaa826781"]},"geometry":{"type":"LineString","coordinates":[[-83.677552,32.82804],[-83.67752800000001,32.828001],[-83.677507,32.827944],[-83.677442,32.827647],[-83.67739800000001,32.82741],[-83.677358,32.827286],[-83.677322,32.827207],[-83.67730800000001,32.827178],[-83.67712,32.826836],[-83.677007,32.826662]]},"id":"8944c0b1943ffff-17fefac7d07c6d51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677926,32.830301]},"id":"8f44c0b194c03a2-17beb9504c337d74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67790600000001,32.829633]},"id":"8f44c0b194c4c1e-139eb95cc5e30325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194c03a2-17beb9504c337d74","8f44c0b194c4c1e-139eb95cc5e30325"]},"geometry":{"type":"LineString","coordinates":[[-83.677926,32.830301],[-83.67790600000001,32.829633]]},"id":"8a44c0b194c7fff-17fff9568e8275af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194c4c1e-139eb95cc5e30325","8f44c0b194f5242-1396995fefebcdc4"]},"geometry":{"type":"LineString","coordinates":[[-83.67790600000001,32.829633],[-83.677901,32.82922]]},"id":"8944c0b194fffff-1397995e57ad5a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67788,32.828682]},"id":"8f44c0b1941b764-13d6d96d064deecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1941b764-13d6d96d064deecf","8f44c0b194f5242-1396995fefebcdc4"]},"geometry":{"type":"LineString","coordinates":[[-83.677901,32.82922],[-83.67788,32.828682]]},"id":"8944c0b194fffff-13fef9667ed3a7ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1941b764-13d6d96d064deecf","8f44c0b19418471-1396f971662af692"]},"geometry":{"type":"LineString","coordinates":[[-83.67788,32.828682],[-83.677873,32.828167]]},"id":"8a44c0b1941ffff-13b7d96f36498275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac20505-1397ede746ba5a12","8f44c0b1ad50d8c-139fea99a2f10019"]},"geometry":{"type":"LineString","coordinates":[[-83.64327800000001,32.808537],[-83.644631,32.808549]]},"id":"8844c0b1adfffff-139fec40789bc810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad4469c-13b6e73c6ccf1e13","8f44c0b1ad50d8c-139fea99a2f10019"]},"geometry":{"type":"LineString","coordinates":[[-83.644631,32.808549],[-83.646009,32.808576]]},"id":"8944c0b1ad7ffff-13b7f8eb0c4b1b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64737600000001,32.808608]},"id":"8f44c0b1ad6c7a1-13d6e3e6087a929e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad4469c-13b6e73c6ccf1e13","8f44c0b1ad6c7a1-13d6e3e6087a929e"]},"geometry":{"type":"LineString","coordinates":[[-83.646009,32.808576],[-83.64737600000001,32.808608]]},"id":"8944c0b1ad7ffff-13bee591346c1622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5509514,32.8460176]},"id":"8f44c0b8e660455-139fcf4f63b1e310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e660455-139fcf4f63b1e310","8f44c0b8e646641-179fd1af2e5c61ef"]},"geometry":{"type":"LineString","coordinates":[[-83.5509514,32.8460176],[-83.54997900000001,32.84682]]},"id":"8944c0b8e67ffff-1797d07f45336e80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.549321,32.847366]},"id":"8f44c0b8e6516ee-17f7d34a6b7fa76d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e6516ee-17f7d34a6b7fa76d","8f44c0b8e646641-179fd1af2e5c61ef"]},"geometry":{"type":"LineString","coordinates":[[-83.54997900000001,32.84682],[-83.549688,32.847057],[-83.549321,32.847366]]},"id":"8944c0b8e67ffff-17bfd27d7fa13333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766441,32.889657]},"id":"8f44c0b53b1258d-17b7e1366d9124df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53ba9858-13fde00e27bd4046","8f44c0b53b1258d-17b7e1366d9124df"]},"geometry":{"type":"LineString","coordinates":[[-83.766441,32.889657],[-83.766417,32.889938],[-83.76642700000001,32.890183],[-83.76644200000001,32.890286],[-83.76649400000001,32.89038],[-83.76653200000001,32.89049],[-83.76660700000001,32.890579],[-83.76684,32.890783],[-83.76691500000001,32.890819]]},"id":"8944c0b53bbffff-17b5c0f5a4dd7940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76806140000001,32.891036]},"id":"8f44c0b53b190a9-1395bd41a2963fab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53ba9858-13fde00e27bd4046","8f44c0b53b190a9-1395bd41a2963fab"]},"geometry":{"type":"LineString","coordinates":[[-83.76691500000001,32.890819],[-83.76696000000001,32.890842],[-83.767126,32.890893000000005],[-83.76733800000001,32.890926],[-83.767587,32.890984],[-83.76782100000001,32.891022],[-83.76806140000001,32.891036]]},"id":"8844c0b53bfffff-13ddfeab5cd8a753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71053300000001,32.781779]},"id":"8f44c0b01499344-17d7e9b4e7ff1c6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01483651-17de49aa4f004262","8f44c0b01499344-17d7e9b4e7ff1c6f"]},"geometry":{"type":"LineString","coordinates":[[-83.71055000000001,32.78097],[-83.71053300000001,32.781779]]},"id":"8944c0b014bffff-17d759af904d835d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b014c24a4-1396c4d56374bdc5","8f44c0b01499344-17d7e9b4e7ff1c6f"]},"geometry":{"type":"LineString","coordinates":[[-83.71053300000001,32.781779],[-83.710521,32.781979],[-83.71052300000001,32.782094],[-83.710558,32.782204],[-83.710606,32.782294],[-83.71064600000001,32.782342],[-83.71074,32.782429],[-83.71086100000001,32.782505],[-83.710949,32.782541],[-83.71102400000001,32.782561],[-83.711149,32.78258],[-83.711923,32.782592],[-83.711976,32.782595],[-83.712145,32.782629],[-83.71238500000001,32.78269],[-83.712529,32.782702]]},"id":"8844c0b015fffff-13ffd7c4a920f842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705951,32.890268]},"id":"8f44c0a23a4ea4d-17b7d4e4ac052b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed82506-179659cc41f0cd0d","8f44c0a23a4ea4d-17b7d4e4ac052b0a"]},"geometry":{"type":"LineString","coordinates":[[-83.705951,32.890268],[-83.705961,32.890417],[-83.705954,32.890568],[-83.705934,32.890694],[-83.705803,32.891312],[-83.705746,32.891474],[-83.70570400000001,32.891554],[-83.705613,32.89168],[-83.70554800000001,32.891754],[-83.705467,32.89183],[-83.70538900000001,32.891886],[-83.705285,32.89195],[-83.705177,32.892007],[-83.704784,32.892179],[-83.704531,32.892285],[-83.70394200000001,32.892474]]},"id":"8644c0a27ffffff-13f7768dc3f8725d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ad894a-13fe7fab62f962ec","8f44c0a2ed82506-179659cc41f0cd0d"]},"geometry":{"type":"LineString","coordinates":[[-83.70394200000001,32.892474],[-83.703022,32.892771],[-83.702921,32.892786],[-83.702847,32.892786],[-83.70274400000001,32.892771],[-83.702695,32.892755],[-83.702617,32.892719],[-83.702555,32.892676],[-83.70249600000001,32.892611],[-83.70241100000001,32.892479],[-83.701537,32.891005]]},"id":"8744c0a23ffffff-17d7dd30558e8c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea6bced-17b6e861a6936e8a","8f44c0a2ea4e28d-17ff6a78af0e97a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72418300000001,32.905867],[-83.724068,32.905963],[-83.72392,32.906079000000005],[-83.723808,32.906149],[-83.72365,32.906235],[-83.723618,32.906247],[-83.72332700000001,32.906367]]},"id":"8944c0a2ea7ffff-17f7396272e4ac41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ea4e28d-17ff6a78af0e97a5","8f44c0a28db0a5a-139eae24a1be1225"]},"geometry":{"type":"LineString","coordinates":[[-83.72332700000001,32.906367],[-83.723218,32.906384],[-83.723076,32.906398],[-83.722899,32.906391],[-83.72263500000001,32.906366000000006],[-83.722471,32.906354],[-83.722324,32.906365],[-83.722198,32.906399],[-83.72206200000001,32.90647],[-83.72194900000001,32.906551],[-83.72192700000001,32.906568],[-83.72184800000001,32.906647],[-83.721799,32.906733],[-83.72176300000001,32.906807],[-83.72174600000001,32.906885],[-83.721737,32.906988000000005],[-83.721753,32.9071],[-83.721776,32.907212],[-83.721823,32.907441]]},"id":"8744c0a2effffff-17973d02891ea36d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721818,32.90881]},"id":"8f44c0a28d83590-17f66e27c1cc37f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d83590-17f66e27c1cc37f4","8f44c0a28db0a5a-139eae24a1be1225"]},"geometry":{"type":"LineString","coordinates":[[-83.721823,32.907441],[-83.721822,32.90755],[-83.72181,32.907676],[-83.721788,32.907821000000006],[-83.72176,32.907933],[-83.72174000000001,32.90806],[-83.72173000000001,32.908214],[-83.72173500000001,32.908451],[-83.721783,32.908679],[-83.721818,32.90881]]},"id":"8944c0a28dbffff-13bffe45534ace8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2251dcee-1797b30268993e90","8f44c0a2250011c-1797f2342acb98c8"]},"geometry":{"type":"LineString","coordinates":[[-83.667401,32.867288],[-83.667412,32.867157],[-83.667451,32.866939],[-83.66748000000001,32.86683],[-83.66752100000001,32.866736],[-83.66759400000001,32.866622],[-83.667731,32.866463]]},"id":"8944c0a2253ffff-17f6f2bd41b55302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66857900000001,32.865502]},"id":"8f44c0a22520bb1-13bef0222334c045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22520bb1-13bef0222334c045","8f44c0a2250011c-1797f2342acb98c8"]},"geometry":{"type":"LineString","coordinates":[[-83.667731,32.866463],[-83.667918,32.866349],[-83.66811600000001,32.866214],[-83.668215,32.866132],[-83.668324,32.866017],[-83.6684,32.86592],[-83.66847100000001,32.865803],[-83.668512,32.865707],[-83.66857900000001,32.865502]]},"id":"8944c0a2253ffff-17fef0fd43517b14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703395,32.881658]},"id":"8f44c0a2149e52a-139e5b222fd44e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b04a01-179f596c0cc8757e","8f44c0a2149e52a-139e5b222fd44e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.703395,32.881658],[-83.703507,32.881805],[-83.703653,32.88192],[-83.703784,32.881963],[-83.70392100000001,32.88198],[-83.70420100000001,32.881985],[-83.704391,32.882015],[-83.70445500000001,32.882044],[-83.704514,32.882109],[-83.70456200000001,32.882196],[-83.70457300000001,32.882354],[-83.704555,32.883004],[-83.70452,32.88319],[-83.704457,32.883313],[-83.704339,32.88347],[-83.704232,32.883578],[-83.704096,32.883704]]},"id":"8744c0a23ffffff-17bff9107fdd35fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b04a01-179f596c0cc8757e","8f44c0a23b1e218-139edcab4193cb1a"]},"geometry":{"type":"LineString","coordinates":[[-83.704096,32.883704],[-83.703794,32.88402],[-83.703491,32.88433],[-83.7031,32.884714],[-83.702904,32.884864],[-83.70276600000001,32.884932]]},"id":"8944c0a23b3ffff-13be5afc5f4d664b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700422,32.885081]},"id":"8f44c0a23b83904-13f7e26446de6e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b1e218-139edcab4193cb1a","8f44c0a23b83904-13f7e26446de6e6f"]},"geometry":{"type":"LineString","coordinates":[[-83.70276600000001,32.884932],[-83.702619,32.885004],[-83.702478,32.885064],[-83.702332,32.885118],[-83.702196,32.885162],[-83.701875,32.885233],[-83.70161900000001,32.885256000000005],[-83.701448,32.88526],[-83.701183,32.885252],[-83.70089300000001,32.885208],[-83.700422,32.885081]]},"id":"8844c0a23bfffff-13bf7f80651062d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58296,32.860791]},"id":"8f44c0b89c368d4-17bfe12a0fcf2d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.582935,32.861704]},"id":"8f44c0b89c334ca-13f78139a86db3b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c334ca-13f78139a86db3b0","8f44c0b89c368d4-17bfe12a0fcf2d25"]},"geometry":{"type":"LineString","coordinates":[[-83.58296,32.860791],[-83.58294500000001,32.861176],[-83.582935,32.861704]]},"id":"8a44c0b89c37fff-13d7a1333e0b7425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c8190d-17ffe5f6ca7d2046","8f44c0b89c334ca-13f78139a86db3b0"]},"geometry":{"type":"LineString","coordinates":[[-83.582935,32.861704],[-83.582921,32.862004],[-83.582901,32.862687],[-83.582879,32.862809],[-83.582853,32.862876],[-83.5828,32.862957],[-83.58275400000001,32.863011],[-83.582706,32.863051],[-83.58262500000001,32.863101],[-83.58253400000001,32.863144000000005],[-83.58239900000001,32.863175000000005],[-83.582335,32.863182],[-83.58224200000001,32.863183],[-83.580994,32.863171]]},"id":"8844c0b89dfffff-17b7d2b8b2fe50b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683051,32.844673]},"id":"8f44c0a2689b34e-13d6accd219d05c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2612459c-13d6ebc60e5a6171","8f44c0a2689b34e-13d6accd219d05c3"]},"geometry":{"type":"LineString","coordinates":[[-83.683051,32.844673],[-83.68347200000001,32.844683]]},"id":"8944c0a2613ffff-13d7cc49997b4ef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2612459c-13d6ebc60e5a6171","8f44c0a268f351d-13d7a72f0586cdb7"]},"geometry":{"type":"LineString","coordinates":[[-83.68347200000001,32.844683],[-83.68535200000001,32.844681]]},"id":"8844c0a269fffff-13d6c97a83801f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268f351d-13d7a72f0586cdb7","8f44c0a26850628-13d7c036a8794588"]},"geometry":{"type":"LineString","coordinates":[[-83.68535200000001,32.844681],[-83.688207,32.844678]]},"id":"8844c0a269fffff-13d6b3b2d45627d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a351a44-1797f4762f97d2e3","8f44c0b1a341102-1796d1d14707a9cb"]},"geometry":{"type":"LineString","coordinates":[[-83.65478200000001,32.824302],[-83.653699,32.824303]]},"id":"8944c0b1a37ffff-1797d323b2e2da07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a351a44-1797f4762f97d2e3","8f44c0b1a22c98d-1796f7336165dd81"]},"geometry":{"type":"LineString","coordinates":[[-83.653699,32.824303],[-83.65257700000001,32.824295]]},"id":"8a44c0b1a357fff-1796f5d4cd7f2b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651455,32.82428]},"id":"8f44c0b1a2234c4-1797d9f0a0f21cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a22c98d-1796f7336165dd81","8f44c0b1a2234c4-1797d9f0a0f21cbf"]},"geometry":{"type":"LineString","coordinates":[[-83.65257700000001,32.824295],[-83.651455,32.82428]]},"id":"8944c0b1a23ffff-179ff8920245b208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2234c4-1797d9f0a0f21cbf","8f44c0b1a233769-17fedca84c622590"]},"geometry":{"type":"LineString","coordinates":[[-83.651455,32.82428],[-83.65034200000001,32.82426]]},"id":"8944c0b1a23ffff-1796db4c7d28a93e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64954900000001,32.824291]},"id":"8f44c0b1a216b12-179ffe97ebf4ee14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a216b12-179ffe97ebf4ee14","8f44c0b1a233769-17fedca84c622590"]},"geometry":{"type":"LineString","coordinates":[[-83.65034200000001,32.82426],[-83.649788,32.824253],[-83.649629,32.824269],[-83.64954900000001,32.824291]]},"id":"8944c0b1a23ffff-17fefda1131e5332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538814,32.809531]},"id":"8f44c0b8064460a-1397ecf14a769683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8062840a-17f7f056af406969","8f44c0b8064460a-1397ecf14a769683"]},"geometry":{"type":"LineString","coordinates":[[-83.537423,32.807639],[-83.537479,32.807738],[-83.538814,32.809531]]},"id":"8844c0b807fffff-13b7fea789c8335d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8064460a-1397ecf14a769683","8f44c0b8064c31a-179feb0ec7a8315b"]},"geometry":{"type":"LineString","coordinates":[[-83.538814,32.809531],[-83.539586,32.810569]]},"id":"8944c0b8067ffff-13dfec00099ba901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652806,32.741141]},"id":"8f44c0b14320c5c-139ff6a44f86d53d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14a9daed-1396f64a4a6232df","8f44c0b14320c5c-139ff6a44f86d53d"]},"geometry":{"type":"LineString","coordinates":[[-83.652806,32.741141],[-83.65295,32.740129]]},"id":"8844c0b14bfffff-13d6f6774baf5b45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6512089,32.738667]},"id":"8f44c0b14a96cce-1796fa8a79acc04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14a9daed-1396f64a4a6232df","8f44c0b14a96cce-1796fa8a79acc04a"]},"geometry":{"type":"LineString","coordinates":[[-83.65295,32.740129],[-83.653042,32.739486],[-83.653124,32.73885],[-83.653125,32.738799],[-83.653107,32.738743],[-83.653064,32.738697],[-83.652974,32.738653],[-83.652804,32.738647],[-83.6512089,32.738667]]},"id":"8944c0b14abffff-17def74acc04d7eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096674,32.827039400000004]},"id":"8f44c0b0a0dbd88-17d7ebd1ef20ac05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091678,32.8269857]},"id":"8f44c0b0a729a25-17b65d0a2382b798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a0dbd88-17d7ebd1ef20ac05","8f44c0b0a729a25-17b65d0a2382b798"]},"geometry":{"type":"LineString","coordinates":[[-83.7096674,32.827039400000004],[-83.709221,32.826994],[-83.7091678,32.8269857]]},"id":"8844c0b0a7fffff-17b7ec6e200dffde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a729a25-17b65d0a2382b798","8f44c0b0a70578d-179770d04d6188a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7091678,32.8269857],[-83.709021,32.826963],[-83.70888400000001,32.826925],[-83.708712,32.826859],[-83.70833900000001,32.826676],[-83.708223,32.826636],[-83.70806900000001,32.826591],[-83.70793900000001,32.826571],[-83.707622,32.826559]]},"id":"8944c0b0a73ffff-17975ee8c5c1e1cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686808,32.862857000000005]},"id":"8f44c0a2059e2b4-17b7a3a10ad2d68f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2058626e-13ffa181ebf6e414","8f44c0a2059e2b4-17b7a3a10ad2d68f"]},"geometry":{"type":"LineString","coordinates":[[-83.68767700000001,32.861941],[-83.687033,32.862645],[-83.68688300000001,32.862802],[-83.686808,32.862857000000005]]},"id":"8944c0a205bffff-139e828d31dc899f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685995,32.863816]},"id":"8f44c0a204b662e-179f859d2d4a257c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2059e2b4-17b7a3a10ad2d68f","8f44c0a204b662e-179f859d2d4a257c"]},"geometry":{"type":"LineString","coordinates":[[-83.686808,32.862857000000005],[-83.686411,32.863296000000005],[-83.68608900000001,32.863645000000005],[-83.685995,32.863816]]},"id":"8844c0a205fffff-17deb4a879c9c0a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678493,32.742559]},"id":"8f44c0b33268606-1797f7ede8a62626"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67846820000001,32.7434007]},"id":"8f44c0b3324d30e-1397f7fd61615296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b33268606-1797f7ede8a62626","8f44c0b3324d30e-1397f7fd61615296"]},"geometry":{"type":"LineString","coordinates":[[-83.678493,32.742559],[-83.67846820000001,32.7434007]]},"id":"8944c0b3327ffff-139ef7f5a16814fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b3324d30e-1397f7fd61615296","8f44c0b0658080a-1796dcb282ba4742"]},"geometry":{"type":"LineString","coordinates":[[-83.67846820000001,32.7434007],[-83.678403,32.745061],[-83.67838900000001,32.745134],[-83.67837,32.745179],[-83.678334,32.74522],[-83.678301,32.745247],[-83.678247,32.745275],[-83.678195,32.745289],[-83.678137,32.745298000000005],[-83.67800600000001,32.745296],[-83.67654,32.745226]]},"id":"8844c0b065fffff-17f6f946c2ccc279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675161,32.743461]},"id":"8f44c0b332eb8b5-13b7a0106437f52a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b332eb8b5-13b7a0106437f52a","8f44c0b0658080a-1796dcb282ba4742"]},"geometry":{"type":"LineString","coordinates":[[-83.67654,32.745226],[-83.67563,32.74519],[-83.67540100000001,32.745178],[-83.675244,32.745153],[-83.675194,32.745122],[-83.675138,32.745064],[-83.675117,32.74503],[-83.67510200000001,32.74496],[-83.67510800000001,32.744905],[-83.67529400000001,32.744064],[-83.67531500000001,32.743943],[-83.675317,32.743873],[-83.675309,32.743775],[-83.675295,32.743724],[-83.67526000000001,32.743631],[-83.675213,32.743541],[-83.675161,32.743461]]},"id":"8544c0b3fffffff-17b7bf3cf6fa434d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699133,32.79804]},"id":"8f44c0b1d9183ac-17f76589e4c7a05c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701897,32.79809]},"id":"8f44c0b1d970869-17965eca66bf1ae0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d970869-17965eca66bf1ae0","8f44c0b1d9183ac-17f76589e4c7a05c"]},"geometry":{"type":"LineString","coordinates":[[-83.699133,32.79804],[-83.699269,32.798032],[-83.69962000000001,32.798036],[-83.70060600000001,32.79806],[-83.70092100000001,32.798063],[-83.701897,32.79809]]},"id":"8844c0b1d9fffff-1797e22a2a94813c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d970869-17965eca66bf1ae0","8f44c0b1d975a1a-179ffdae06aa4c36"]},"geometry":{"type":"LineString","coordinates":[[-83.701897,32.79809],[-83.702352,32.798099]]},"id":"8a44c0b1d977fff-179f5e3c36587f42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d965591-17be7b81c9dcdcad","8f44c0b1d975a1a-179ffdae06aa4c36"]},"geometry":{"type":"LineString","coordinates":[[-83.702352,32.798099],[-83.702904,32.798112],[-83.703242,32.798119]]},"id":"8944c0b1d97ffff-17b65c97e03ec140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d965591-17be7b81c9dcdcad","8f44c0b0e595c93-17bfd81581ccf223"]},"geometry":{"type":"LineString","coordinates":[[-83.703242,32.798119],[-83.704644,32.798156]]},"id":"8544c0b3fffffff-17b7f9cba97f695b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707459,32.798605]},"id":"8f44c0b0e5ad0c8-17de71362d39904b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e5ad0c8-17de71362d39904b","8f44c0b0e595c93-17bfd81581ccf223"]},"geometry":{"type":"LineString","coordinates":[[-83.704644,32.798156],[-83.7058353,32.7981768],[-83.7060364,32.798214900000005],[-83.7062573,32.7982571],[-83.7064582,32.7983415],[-83.70677450000001,32.7984766],[-83.7070305,32.798561],[-83.7072665,32.798599],[-83.707459,32.798605]]},"id":"8944c0b0e5bffff-179f549e17993eeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7215987,32.8355606]},"id":"8f44c0b0b50cb02-13976eb0d77fafcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b50cb02-13976eb0d77fafcc","8f44c0b0b50169b-13d630838acc25d3"]},"geometry":{"type":"LineString","coordinates":[[-83.72085200000001,32.835456],[-83.721214,32.835509],[-83.72142500000001,32.835538],[-83.7215987,32.8355606]]},"id":"8944c0b0b53ffff-13f7af9a40aae140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72243230000001,32.835649100000005]},"id":"8f44c0b0b576960-13debca7d6288e58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b50cb02-13976eb0d77fafcc","8f44c0b0b576960-13debca7d6288e58"]},"geometry":{"type":"LineString","coordinates":[[-83.7215987,32.8355606],[-83.721964,32.835608],[-83.72234900000001,32.835645],[-83.72243230000001,32.835649100000005]]},"id":"8944c0b0b53ffff-13b66dacaf450dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcdb0e1-13deeabfea7371e6","8f44c0b0b576960-13debca7d6288e58"]},"geometry":{"type":"LineString","coordinates":[[-83.72243230000001,32.835649100000005],[-83.72267400000001,32.835661],[-83.723213,32.835659]]},"id":"8844c0b0b5fffff-13debbb3f768063b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcdb0e1-13deeabfea7371e6","8f44c0b0bcdb06d-13df3a8e5f44995c"]},"geometry":{"type":"LineString","coordinates":[[-83.723213,32.835659],[-83.72329230000001,32.8356529]]},"id":"8c44c0b0bcdb1ff-13df2aa71ae84db7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcdb06d-13df3a8e5f44995c","8f44c0b0bcd9771-13bf69b0ca7a6b46"]},"geometry":{"type":"LineString","coordinates":[[-83.72329230000001,32.8356529],[-83.723409,32.835644],[-83.72354700000001,32.835625],[-83.72364680000001,32.835608400000005]]},"id":"8a44c0b0bcdffff-13bf6a1f43f7ad8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcc875d-13d66759e92657a5","8f44c0b0bcd9771-13bf69b0ca7a6b46"]},"geometry":{"type":"LineString","coordinates":[[-83.72364680000001,32.835608400000005],[-83.724327,32.835495],[-83.72460500000001,32.835434]]},"id":"8944c0b0bcfffff-13ffe884b84dd7fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694022,32.790324000000005]},"id":"8f44c0b037ad64c-13b6f204426dbdd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b037ad64c-13b6f204426dbdd9","8f44c0b0371d395-13be6eab6074bd1d"]},"geometry":{"type":"LineString","coordinates":[[-83.694022,32.790324000000005],[-83.694283,32.790321],[-83.69539300000001,32.790343]]},"id":"8844c0b037fffff-13b67057d00545f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0371d395-13be6eab6074bd1d","8f44c0b037297ad-139e6a52ea90d156"]},"geometry":{"type":"LineString","coordinates":[[-83.69539300000001,32.790343],[-83.69648600000001,32.790359],[-83.696594,32.790351],[-83.69668,32.790326],[-83.696734,32.790304],[-83.696797,32.790272],[-83.696848,32.790238],[-83.696893,32.790199],[-83.696999,32.790092],[-83.697173,32.789904]]},"id":"8944c0b0373ffff-1397fc59cacb0ff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56904300000001,32.786197]},"id":"8f44c0b859acb58-139fa3242546241c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57048300000001,32.785311]},"id":"8f44c0b85906809-17f7ffa023d2951e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b859acb58-139fa3242546241c","8f44c0b85906809-17f7ffa023d2951e"]},"geometry":{"type":"LineString","coordinates":[[-83.56904300000001,32.786197],[-83.56914900000001,32.78616],[-83.56923,32.786121],[-83.570158,32.785516],[-83.57048300000001,32.785311]]},"id":"8844c0b859fffff-1397e15df0d2a90d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.568579,32.782744]},"id":"8f44c0ba3662353-139fa4462875aea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba3662353-139fa4462875aea7","8f44c0b85906809-17f7ffa023d2951e"]},"geometry":{"type":"LineString","coordinates":[[-83.57048300000001,32.785311],[-83.571126,32.784985],[-83.571256,32.784896],[-83.571347,32.78482],[-83.571427,32.784722],[-83.571454,32.784672],[-83.571488,32.784588],[-83.571512,32.784489],[-83.57151900000001,32.784402],[-83.571495,32.784292],[-83.571465,32.784222],[-83.571404,32.784101],[-83.571241,32.783872],[-83.57106900000001,32.783642],[-83.570727,32.783169],[-83.570366,32.782687],[-83.57020100000001,32.782501],[-83.57013,32.782432],[-83.570058,32.782387],[-83.569944,32.782342],[-83.56985300000001,32.782325],[-83.56965100000001,32.782303],[-83.56952000000001,32.782314],[-83.56935700000001,32.782356],[-83.569157,32.782446],[-83.568579,32.782744]]},"id":"8744c0ba3ffffff-13ff9fa7a68ab48f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b4c474-139f7f93a1e49506","8f44c0b8d6b1cc0-13fffba8ae81662a"]},"geometry":{"type":"LineString","coordinates":[[-83.585215,32.85539],[-83.585651,32.854723],[-83.585667,32.854671],[-83.585673,32.854613],[-83.585667,32.854557],[-83.58561900000001,32.854433],[-83.585542,32.85434],[-83.585437,32.85427],[-83.585329,32.854233],[-83.58525200000001,32.854225],[-83.584815,32.8542],[-83.5844,32.854234000000005],[-83.584145,32.854301],[-83.58384500000001,32.854478],[-83.58361020000001,32.854603700000006]]},"id":"8744c0b8dffffff-13d77c662d9bc084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88b4c474-139f7f93a1e49506","8f44c0b88a6455a-13ffe155218004a2"]},"geometry":{"type":"LineString","coordinates":[[-83.58361020000001,32.854603700000006],[-83.58345,32.854734],[-83.58304700000001,32.855082],[-83.58291200000001,32.855249],[-83.582868,32.855356],[-83.582856,32.855454],[-83.582891,32.855567]]},"id":"8844c0b88bfffff-13b780b1ce64bf9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88a6455a-13ffe155218004a2","8f44c0b8d6b1cc0-13fffba8ae81662a"]},"geometry":{"type":"LineString","coordinates":[[-83.582891,32.855567],[-83.58300700000001,32.855677],[-83.58326100000001,32.855815],[-83.583466,32.855851],[-83.58374500000001,32.855852],[-83.58443700000001,32.855826],[-83.584615,32.8558],[-83.58480800000001,32.855733],[-83.584874,32.8557],[-83.58497,32.855638],[-83.585064,32.855561],[-83.585155,32.855471],[-83.585215,32.85539]]},"id":"8644c0b8fffffff-13dffe70599dced0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.566856,32.872065]},"id":"8f44c0b8b128848-13b7a87b0dd6725f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567088,32.872268000000005]},"id":"8f44c0b8b1299b3-13bfa7ea073cb823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b1299b3-13bfa7ea073cb823","8f44c0b8b128848-13b7a87b0dd6725f"]},"geometry":{"type":"LineString","coordinates":[[-83.566856,32.872065],[-83.567088,32.872268000000005]]},"id":"8a44c0b8b12ffff-13f7b83285781565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b1299b3-13bfa7ea073cb823","8f44c0b8b161635-17f7e39b43c92048"]},"geometry":{"type":"LineString","coordinates":[[-83.567088,32.872268000000005],[-83.56885240000001,32.873783800000005]]},"id":"8844c0b8b1fffff-179fb5c2aa3bf4ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3442d8cc-17d7e577e20663ac","8f44c0a3442c883-17f78683e70f4c96"]},"geometry":{"type":"LineString","coordinates":[[-83.63319700000001,32.8371256],[-83.6332481,32.8371708],[-83.6336258,32.837505400000005]]},"id":"8a44c0a3442ffff-17df35fdee9f50f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92ce81e-17d7d592dc68865d","8f44c0ba92cd46b-17d7740008a7ac5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6270291,32.8336221],[-83.6271634,32.8337027],[-83.62751370000001,32.8339127],[-83.62767360000001,32.834008600000004]]},"id":"8a44c0ba92cffff-17dfb4c97ba35e98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6c8525-17b6aa8b8b18ed02","8f44c0b1c6da900-17ffee4689ed20b2"]},"geometry":{"type":"LineString","coordinates":[[-83.66934,32.80151],[-83.669408,32.801552],[-83.66947,32.801584000000005],[-83.669545,32.801608],[-83.669635,32.801626],[-83.66976100000001,32.801631],[-83.670868,32.801616]]},"id":"8944c0b1c6fffff-17b7fc6fe0e5af91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c6c8525-17b6aa8b8b18ed02","8f44c0b189b63b3-17b6a7c9e486270a"]},"geometry":{"type":"LineString","coordinates":[[-83.670868,32.801616],[-83.671997,32.801597]]},"id":"8844c0b1c7fffff-17beb92ab5b0ca1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189a61ab-179fa4b2a1bdbcce","8f44c0b189b63b3-17b6a7c9e486270a"]},"geometry":{"type":"LineString","coordinates":[[-83.671997,32.801597],[-83.672973,32.801585],[-83.673263,32.801577]]},"id":"8944c0b189bffff-17b6f63e439b5016"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67421200000001,32.80171]},"id":"8f44c0b189a581e-17fee2618ba0769b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189a61ab-179fa4b2a1bdbcce","8f44c0b189a581e-17fee2618ba0769b"]},"geometry":{"type":"LineString","coordinates":[[-83.673263,32.801577],[-83.673713,32.801568],[-83.67393,32.801578],[-83.67403300000001,32.801603],[-83.674109,32.801637],[-83.67415100000001,32.801662],[-83.67421200000001,32.80171]]},"id":"8a44c0b189a7fff-17b6a381af27867f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5359136,32.8040399]},"id":"8f44c0b807140db-179ff4060f3f5d97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b807140db-179ff4060f3f5d97","8f44c0b807a0c62-17dff7856ef4dbda"]},"geometry":{"type":"LineString","coordinates":[[-83.5359136,32.8040399],[-83.53582370000001,32.8040454],[-83.535684,32.804054],[-83.53480300000001,32.804121],[-83.534481,32.804141]]},"id":"8844c0b807fffff-17bff5c5be1e778e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5187226,32.8142676]},"id":"8f44c0b82280046-179d5dfe6ece49df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b82280046-179d5dfe6ece49df","8f44c0b807a0c62-17dff7856ef4dbda"]},"geometry":{"type":"LineString","coordinates":[[-83.534481,32.804141],[-83.533009,32.804246],[-83.53264800000001,32.804281],[-83.53249600000001,32.804299],[-83.532246,32.804328000000005],[-83.532049,32.804361],[-83.53182100000001,32.804408],[-83.531255,32.80456],[-83.531002,32.80464],[-83.53072900000001,32.804744],[-83.53024,32.804961],[-83.53004700000001,32.805062],[-83.52965,32.8053],[-83.529471,32.805417],[-83.529285,32.805549],[-83.52903400000001,32.805743],[-83.528761,32.80599],[-83.52693500000001,32.807747],[-83.52672600000001,32.807958],[-83.52568000000001,32.808953],[-83.52531300000001,32.809282],[-83.524854,32.809672],[-83.52442900000001,32.810021],[-83.52388900000001,32.810447],[-83.519919,32.81338],[-83.51975800000001,32.813506100000005],[-83.51911700000001,32.813975],[-83.5188035,32.8142076],[-83.5187226,32.8142676]]},"id":"8644c0b87ffffff-17fbdb74120fee3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6321102,32.8285908]},"id":"8f44c0ba9361ab1-139f492b220d0eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63218,32.8287064]},"id":"8f44c0ba936cd92-13d788ff89eb647b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9361ab1-139f492b220d0eb3","8f44c0ba936cd92-13d788ff89eb647b"]},"geometry":{"type":"LineString","coordinates":[[-83.6321102,32.8285908],[-83.63218,32.8287064]]},"id":"8b44c0ba9361fff-13b769155c1e4092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632924,32.829155]},"id":"8f44c0a34d9e49b-13ffe72e86810722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba936cd92-13d788ff89eb647b","8f44c0a34d9e49b-13ffe72e86810722"]},"geometry":{"type":"LineString","coordinates":[[-83.63218,32.8287064],[-83.632209,32.828741],[-83.632924,32.829155]]},"id":"8744c0ba9ffffff-13f7481a02692b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63298400000001,32.829079]},"id":"8f44c0a34d9e436-13bf67090f644138"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6340959,32.829748200000004]},"id":"8f44c0a34d99b1e-13f7a452161c6ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d9e436-13bf67090f644138","8f44c0a34d99b1e-13f7a452161c6ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.63298400000001,32.829079],[-83.633728,32.829527],[-83.6340959,32.829748200000004]]},"id":"8a44c0a34d9ffff-139f95ad9d45d306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634557,32.830033]},"id":"8f44c0a34d8b4e3-1797a331ea3c0c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d99b1e-13f7a452161c6ef3","8f44c0a34d8b4e3-1797a331ea3c0c86"]},"geometry":{"type":"LineString","coordinates":[[-83.6340959,32.829748200000004],[-83.63434500000001,32.829898],[-83.634557,32.830033]]},"id":"8944c0a34dbffff-17bfb3c167f9b1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6351825,32.830400600000004]},"id":"8f44c0a34c16049-17ff61aafc6041d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c16049-17ff61aafc6041d9","8f44c0a34d8b4e3-1797a331ea3c0c86"]},"geometry":{"type":"LineString","coordinates":[[-83.634557,32.830033],[-83.634611,32.830053],[-83.63517,32.830393],[-83.6351825,32.830400600000004]]},"id":"8844c0a34dfffff-1797a26d0045006f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6356715,32.830699]},"id":"8f44c0a34c10a09-17b7e0795d251e43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c16049-17ff61aafc6041d9","8f44c0a34c10a09-17b7e0795d251e43"]},"geometry":{"type":"LineString","coordinates":[[-83.6351825,32.830400600000004],[-83.6356715,32.830699]]},"id":"8a44c0a34c17fff-17d7a112289aa3ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c10a09-17b7e0795d251e43","8f44c0a34c11b66-17d6ff7326d18c56"]},"geometry":{"type":"LineString","coordinates":[[-83.6356715,32.830699],[-83.63609100000001,32.830955]]},"id":"8a44c0a34c17fff-1796fff63512f8dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c0ecd1-1396fd7b662877bb","8f44c0a34c11b66-17d6ff7326d18c56"]},"geometry":{"type":"LineString","coordinates":[[-83.63609100000001,32.830955],[-83.636509,32.831203],[-83.636897,32.83144]]},"id":"8944c0a34c3ffff-17fffe76c8ff3173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c08a66-139efbb1e18f1ed9","8f44c0a34c0ecd1-1396fd7b662877bb"]},"geometry":{"type":"LineString","coordinates":[[-83.636897,32.83144],[-83.637185,32.831605],[-83.637629,32.831885]]},"id":"8a44c0a34c0ffff-139efc9541f70ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d30d0c8-17f77772a05bda86","8f44c0b8d32bcdd-17ffd7676474d0fc"]},"geometry":{"type":"LineString","coordinates":[[-83.600065,32.853758],[-83.600052,32.854131],[-83.600047,32.854349]]},"id":"8944c0b8d33ffff-17b7776d88e3930a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3506a5-13f7578241fbf5e5","8f44c0b8d30d0c8-17f77772a05bda86"]},"geometry":{"type":"LineString","coordinates":[[-83.600047,32.854349],[-83.60002800000001,32.855128],[-83.60002200000001,32.855586]]},"id":"8844c0b8d3fffff-13f7f77b755e60c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63236300000001,32.8306867]},"id":"8f44c0a34cb22b1-17bf388d2b378017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0ba934d6ed-17ff99a96d07f78c","8f44c0a34cb22b1-17bf388d2b378017"]},"geometry":{"type":"LineString","coordinates":[[-83.63190820000001,32.8304057],[-83.63236300000001,32.8306867]]},"id":"8644c0a37ffffff-17d7691b42c15adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6327354,32.8309075]},"id":"8f44c0a34cb3053-17b737a464a9c7be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cb3053-17b737a464a9c7be","8f44c0a34cb22b1-17bf388d2b378017"]},"geometry":{"type":"LineString","coordinates":[[-83.63236300000001,32.8306867],[-83.63243800000001,32.830733],[-83.6327354,32.8309075]]},"id":"8a44c0a34cb7fff-17f7a81906457cca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cb3053-17b737a464a9c7be","8f44c0a34cb3302-17df47792767325b"]},"geometry":{"type":"LineString","coordinates":[[-83.6327354,32.8309075],[-83.6328046,32.8309492]]},"id":"8b44c0a34cb3fff-17d7478ec37c79ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6328477,32.8309751]},"id":"8f44c0a34cb3370-17df775e3d12e419"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cb3370-17df775e3d12e419","8f44c0a34cb3302-17df47792767325b"]},"geometry":{"type":"LineString","coordinates":[[-83.6328046,32.8309492],[-83.6328477,32.8309751]]},"id":"8c44c0a34cb33ff-17d7676bbcceaf33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cb3370-17df775e3d12e419","8f44c0a34c86ca0-17ff472b12651b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6328477,32.8309751],[-83.6329295,32.831024400000004]]},"id":"8a44c0a34cb7fff-17ffe744a706682e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34c86c56-1797f7006004fc0e","8f44c0a34c86ca0-17ff472b12651b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6329295,32.831024400000004],[-83.6329978,32.8310655]]},"id":"8c44c0a34c86dff-179f2715c494f342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633447,32.831336]},"id":"8f44c0a34c80d6d-17d705e7a7554b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34c80d6d-17d705e7a7554b37","8f44c0a34c86c56-1797f7006004fc0e"]},"geometry":{"type":"LineString","coordinates":[[-83.6329978,32.8310655],[-83.633447,32.831336]]},"id":"8a44c0a34c87fff-17ff86740d8bc156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34c80d6d-17d705e7a7554b37","8f44c0a34c81928-13ff54b7f551c814"]},"geometry":{"type":"LineString","coordinates":[[-83.633447,32.831336],[-83.6339329,32.8316357]]},"id":"8a44c0a34c87fff-139fb54fd7f92aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50180132-13b7eca0e4b64dde","8f44c0b5018881c-17bdeaea22c4f1b1"]},"geometry":{"type":"LineString","coordinates":[[-83.762467,32.869421],[-83.76176500000001,32.868383]]},"id":"8944c0b501bffff-13f7cbc58fea5240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50180132-13b7eca0e4b64dde","8f44c0b501b5719-17bfed21a558bc55"]},"geometry":{"type":"LineString","coordinates":[[-83.76176500000001,32.868383],[-83.76169200000001,32.868256],[-83.761623,32.868125],[-83.761587,32.86804],[-83.76155800000001,32.867913],[-83.761548,32.867807],[-83.761545,32.867652],[-83.761549,32.867508],[-83.761559,32.867379]]},"id":"8944c0b501bffff-1397cd099859afc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50c5b42b-17ffcd008c4aac3a","8f44c0b501b5719-17bfed21a558bc55"]},"geometry":{"type":"LineString","coordinates":[[-83.761559,32.867379],[-83.761612,32.86684]]},"id":"8944c0b501bffff-1797fd1110122f18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76184500000001,32.865657]},"id":"8f44c0b50c51a06-139fec6ee1676e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50c5b42b-17ffcd008c4aac3a","8f44c0b50c51a06-139fec6ee1676e51"]},"geometry":{"type":"LineString","coordinates":[[-83.761612,32.86684],[-83.76173100000001,32.865826000000006],[-83.761742,32.86578],[-83.76177600000001,32.865709],[-83.76184500000001,32.865657]]},"id":"8844c0b50dfffff-17f5ccd034f7acd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72018100000001,32.927483]},"id":"8f44c0a2bd26861-13fef226e1fda068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd26861-13fef226e1fda068","8f44c0a2869924c-13b7f1efe9e14c47"]},"geometry":{"type":"LineString","coordinates":[[-83.72018100000001,32.927483],[-83.720269,32.927366]]},"id":"8a44c0a2bd27fff-13de720b6c2daaa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2bd26861-13fef226e1fda068","8f44c0a2869924c-13b7f1efe9e14c47"]},"geometry":{"type":"LineString","coordinates":[[-83.720269,32.927366],[-83.720815,32.927686],[-83.72085700000001,32.927715],[-83.720864,32.927754],[-83.72079400000001,32.927861],[-83.720757,32.927897],[-83.72074500000001,32.927899000000004],[-83.720714,32.927906],[-83.72067700000001,32.927895],[-83.720186,32.927577],[-83.720156,32.927549],[-83.720161,32.927515],[-83.72018100000001,32.927483]]},"id":"8a44c0a2bd27fff-13ffb14b42e241da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66718900000001,32.846355]},"id":"8f44c0a35944b86-17fff386e2a9084e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35944b86-17fff386e2a9084e","8f44c0a359400d3-17bef43f4c25cca4"]},"geometry":{"type":"LineString","coordinates":[[-83.66718900000001,32.846355],[-83.666894,32.84689]]},"id":"8a44c0a35947fff-1797b3e31f7210ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35870bb5-13bff7590c354762","8f44c0a359400d3-17bef43f4c25cca4"]},"geometry":{"type":"LineString","coordinates":[[-83.666894,32.84689],[-83.66585500000001,32.84877],[-83.66562400000001,32.848706]]},"id":"8844c0a359fffff-13bef5abcc2efd90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7271351,32.831413500000004]},"id":"8f44c0b0bd5a8f5-17f7712c9ec5494f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd5a8f5-17f7712c9ec5494f","8f44c0b0bd5a065-13d671328e6d9899"]},"geometry":{"type":"LineString","coordinates":[[-83.72712560000001,32.8315397],[-83.7271351,32.831413500000004]]},"id":"8b44c0b0bd5afff-139ee12f8033e164"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd5a8f5-17f7712c9ec5494f","8f44c0b0bd5e728-17dfa13b00644bbf"]},"geometry":{"type":"LineString","coordinates":[[-83.7271351,32.831413500000004],[-83.7271372,32.831385700000006],[-83.72712560000001,32.8312399],[-83.727112,32.8311544]]},"id":"8a44c0b0bd5ffff-17b671313549368b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270271,32.830856600000004]},"id":"8f44c0b0bd5edb0-1797617011ec28e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd5e728-17dfa13b00644bbf","8f44c0b0bd5edb0-1797617011ec28e3"]},"geometry":{"type":"LineString","coordinates":[[-83.727112,32.8311544],[-83.72709470000001,32.8310455],[-83.72704850000001,32.8308996],[-83.7270271,32.830856600000004]]},"id":"8944c0b0bd7ffff-17f6f150889afd9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ac9183-17df4d32a976ea8a","8f44c0b03aea8dd-13d66d280fd7c46f"]},"geometry":{"type":"LineString","coordinates":[[-83.70912,32.789591],[-83.709103,32.790802]]},"id":"8944c0b03afffff-13d6dd2d54d8cfd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71302,32.792113]},"id":"8f44c0b0ed1aad4-17fee3a286f2b497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ac9183-17df4d32a976ea8a","8f44c0b0ed1aad4-17fee3a286f2b497"]},"geometry":{"type":"LineString","coordinates":[[-83.709103,32.790802],[-83.709083,32.791784],[-83.709091,32.791854],[-83.709108,32.791905],[-83.709131,32.791939],[-83.70915600000001,32.791964],[-83.70920500000001,32.791995],[-83.70926800000001,32.792023],[-83.709331,32.792042],[-83.709523,32.792057],[-83.710032,32.792059],[-83.712152,32.792102],[-83.71302,32.792113]]},"id":"8644c0b07ffffff-1796f98109f7a444"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68996700000001,32.844789]},"id":"8f44c0a26841d65-139f7beaa9c4d38e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68996100000001,32.84535]},"id":"8f44c0a2684e8e9-13f7fbee659fb349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2684e8e9-13f7fbee659fb349","8f44c0a26841d65-139f7beaa9c4d38e"]},"geometry":{"type":"LineString","coordinates":[[-83.68996700000001,32.844789],[-83.68996700000001,32.845153],[-83.68996100000001,32.84535]]},"id":"8944c0a2687ffff-13de7beb50767d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689964,32.84583]},"id":"8f44c0a2684ab70-13b7fbec8f204d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2684e8e9-13f7fbee659fb349","8f44c0a2684ab70-13b7fbec8f204d72"]},"geometry":{"type":"LineString","coordinates":[[-83.68996100000001,32.84535],[-83.689963,32.845731],[-83.689964,32.84583]]},"id":"8a44c0a2684ffff-139ffbed98b004e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a28471668-17dfededab4d7b0d","8f44c0a2840e574-13def328ba54885c"]},"geometry":{"type":"LineString","coordinates":[[-83.7197685,32.9182191],[-83.719993,32.918309],[-83.72025500000001,32.918488],[-83.72049700000001,32.918638],[-83.72085200000001,32.918826],[-83.72127900000001,32.919005],[-83.721911,32.919235]]},"id":"8844c0a285fffff-17b63096fe0a7357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a28471668-17dfededab4d7b0d","8f44c0a280994ed-13beb65c32c888ed"]},"geometry":{"type":"LineString","coordinates":[[-83.721911,32.919235],[-83.722046,32.919286],[-83.72238,32.919406],[-83.72301300000001,32.919632],[-83.724343,32.920119],[-83.724683,32.920248],[-83.7250109,32.9204105]]},"id":"8744c0a28ffffff-17bf7a1fe0029ca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a280994ed-13beb65c32c888ed","8f44c0a280de544-17fff1dad5cc4dd3"]},"geometry":{"type":"LineString","coordinates":[[-83.7250109,32.9204105],[-83.725177,32.920502],[-83.725328,32.920602],[-83.72547800000001,32.920713],[-83.726016,32.921191],[-83.72685630000001,32.9219549]]},"id":"8844c0a281fffff-139e740d50358cae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a280de544-17fff1dad5cc4dd3","8f44c0a280de0f1-17b621a172cae08b"]},"geometry":{"type":"LineString","coordinates":[[-83.72685630000001,32.9219549],[-83.7269481,32.922038400000005]]},"id":"8b44c0a280defff-1797f1be2b725aba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72726030000001,32.9223274]},"id":"8f44c0a280d8086-17f6a0de593c12c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a280de0f1-17b621a172cae08b","8f44c0a280d8086-17f6a0de593c12c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7269481,32.922038400000005],[-83.72726030000001,32.9223274]]},"id":"8a44c0a280dffff-179e713fe1fd030b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a280d938c-17fe3fb284096538","8f44c0a280d8086-17f6a0de593c12c4"]},"geometry":{"type":"LineString","coordinates":[[-83.72726030000001,32.9223274],[-83.72774000000001,32.922765000000005]]},"id":"8a44c0a280dffff-17ff604868c771a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a280d938c-17fe3fb284096538","8f44c0a2839225d-139f7cda4fb32c18"]},"geometry":{"type":"LineString","coordinates":[[-83.72774000000001,32.922765000000005],[-83.72823700000001,32.92322],[-83.7289052,32.923842300000004]]},"id":"8744c0a28ffffff-13de1e45b3305840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2839225d-139f7cda4fb32c18","8f44c0a2839e226-13f75b33e0e3cb38"]},"geometry":{"type":"LineString","coordinates":[[-83.7289052,32.923842300000004],[-83.72905300000001,32.92398],[-83.729228,32.924129],[-83.729393,32.924272],[-83.72958100000001,32.924402]]},"id":"8944c0a283bffff-13de1c0ba8ae2074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2839e226-13f75b33e0e3cb38","8f44c0a2838bb9a-17d7575539db85a8"]},"geometry":{"type":"LineString","coordinates":[[-83.72958100000001,32.924402],[-83.72994700000001,32.924625],[-83.73025600000001,32.92477],[-83.730838,32.925001],[-83.73116610000001,32.9251412]]},"id":"8944c0a283bffff-13ff594c29a3da3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318513,32.9254219]},"id":"8f44c0a282140d4-17f6b5a8ff4eee42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a282140d4-17f6b5a8ff4eee42","8f44c0a2838bb9a-17d7575539db85a8"]},"geometry":{"type":"LineString","coordinates":[[-83.73116610000001,32.9251412],[-83.73163600000001,32.925342],[-83.7318513,32.9254219]]},"id":"8844c0a283fffff-179f367ff6b52b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7327175,32.925623900000005]},"id":"8f44c0a282060e6-17f6f38b9a1d366c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a282060e6-17f6f38b9a1d366c","8f44c0a282140d4-17f6b5a8ff4eee42"]},"geometry":{"type":"LineString","coordinates":[[-83.7318513,32.9254219],[-83.732078,32.925506],[-83.732258,32.925556],[-83.73245200000001,32.9256],[-83.7327175,32.925623900000005]]},"id":"8944c0a2823ffff-17d7349db8fe6a61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a282060e6-17f6f38b9a1d366c","8f44c0a2822e563-179f908b55f72a95"]},"geometry":{"type":"LineString","coordinates":[[-83.7327175,32.925623900000005],[-83.732827,32.9256249],[-83.733219,32.925628],[-83.733869,32.925652],[-83.7339467,32.9256601]]},"id":"8944c0a2823ffff-17fe120b4b060750"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66467700000001,32.881216]},"id":"8f44c0a04da125e-139eb9a8e4447a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04da125e-139eb9a8e4447a24","8f44c0a04d8d322-17b7b9ade2bdc744"]},"geometry":{"type":"LineString","coordinates":[[-83.66467700000001,32.881216],[-83.66466100000001,32.881355],[-83.664669,32.8827]]},"id":"8944c0a04dbffff-13d7b9b02bcdc2cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66582600000001,32.883251]},"id":"8f44c0a04c31316-17fff6dac6daa0f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d8d322-17b7b9ade2bdc744","8f44c0a04c31316-17fff6dac6daa0f0"]},"geometry":{"type":"LineString","coordinates":[[-83.664669,32.8827],[-83.66472900000001,32.882789],[-83.664879,32.882922],[-83.665019,32.883024],[-83.66510600000001,32.883077],[-83.665172,32.883102],[-83.66582600000001,32.883251]]},"id":"8844c0a04dfffff-1797f85f632645c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04d5e258-13f7f090cfd3c698","8f44c0a04c31316-17fff6dac6daa0f0"]},"geometry":{"type":"LineString","coordinates":[[-83.66582600000001,32.883251],[-83.666212,32.883333],[-83.66651300000001,32.883419],[-83.667581,32.883770000000005],[-83.668402,32.88405]]},"id":"8844c0a04dfffff-17fef3b17ef4de4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7076921,32.7884041]},"id":"8f44c0b03af0334-17f6d0a475a68b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ae2d4d-17f76ecde019f5c5","8f44c0b03af0334-17f6d0a475a68b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.7076921,32.7884041],[-83.70844500000001,32.788415]]},"id":"8944c0b03afffff-17f7ffb92dded02f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03ae2d4d-17f76ecde019f5c5","8f44c0b03a467a9-1797c85e64151eae"]},"geometry":{"type":"LineString","coordinates":[[-83.70844500000001,32.788415],[-83.71108100000001,32.78846]]},"id":"8844c0b03bfffff-17977b962769e991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714578,32.788521]},"id":"8f44c0b0169ca65-17bfbfd4c488a2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a467a9-1797c85e64151eae","8f44c0b0169ca65-17bfbfd4c488a2fa"]},"geometry":{"type":"LineString","coordinates":[[-83.71108100000001,32.78846],[-83.714578,32.788521]]},"id":"8644c0b07ffffff-17b6d4199bf0885f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61350300000001,32.849637]},"id":"8f44c0a3662110e-17ff3698adcf6093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662aa64-17d7769dac6963a3","8f44c0a3662110e-17ff3698adcf6093"]},"geometry":{"type":"LineString","coordinates":[[-83.61350300000001,32.849637],[-83.613495,32.850586]]},"id":"8944c0a3663ffff-1797b69b20944738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662aa64-17d7769dac6963a3","8f44c0a3662b6d1-17f776b6ad3946ec"]},"geometry":{"type":"LineString","coordinates":[[-83.613495,32.850586],[-83.61347400000001,32.851014],[-83.613455,32.851079]]},"id":"8944c0a3663ffff-17df36a5e3a7aaab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36609a9b-13b7f6b388ff68ae","8f44c0a3662b6d1-17f776b6ad3946ec"]},"geometry":{"type":"LineString","coordinates":[[-83.613455,32.851079],[-83.61346,32.851798]]},"id":"8a44c0a3660ffff-13d736b5142818b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613472,32.852534]},"id":"8f44c0a3665046a-1397f6ac0adb8c2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36609a9b-13b7f6b388ff68ae","8f44c0a3665046a-1397f6ac0adb8c2d"]},"geometry":{"type":"LineString","coordinates":[[-83.61346,32.851798],[-83.613472,32.852534]]},"id":"8944c0a3667ffff-139ff6afc6e75229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640191,32.829276]},"id":"8f44c0a34d71b69-13bff570ad9207b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d71b69-13bff570ad9207b3","8f44c0b1a6ca121-17f6f31c6496c141"]},"geometry":{"type":"LineString","coordinates":[[-83.640191,32.829276],[-83.64114500000001,32.828119]]},"id":"8744c0a34ffffff-13dff44684d7b50b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641996,32.826859]},"id":"8f44c0b1a6ee04a-17d6f1088eef4cc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a6ee04a-17d6f1088eef4cc0","8f44c0b1a6ca121-17f6f31c6496c141"]},"geometry":{"type":"LineString","coordinates":[[-83.64114500000001,32.828119],[-83.641441,32.827776],[-83.641558,32.82762],[-83.641659,32.827506],[-83.641686,32.827446],[-83.641683,32.827371],[-83.641695,32.827287000000005],[-83.641722,32.827212],[-83.64184900000001,32.827025],[-83.641996,32.826859]]},"id":"8944c0b1a6fffff-17f6f206bbf4555e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20009649-17de62130adf9a0c","8f44c0a20019db2-17f7e59b649d185e"]},"geometry":{"type":"LineString","coordinates":[[-83.699105,32.866233],[-83.699127,32.867334],[-83.69913600000001,32.867497],[-83.69915,32.867556],[-83.69918100000001,32.867606],[-83.69923100000001,32.867658],[-83.69928800000001,32.867697],[-83.69939500000001,32.867734],[-83.70001900000001,32.86775],[-83.70025600000001,32.867749],[-83.700314,32.867741],[-83.700373,32.867720000000006],[-83.70043600000001,32.867685],[-83.70048,32.867646],[-83.700522,32.867573],[-83.700541,32.867521],[-83.700552,32.866784]]},"id":"8844c0a201fffff-179fe414fbca2744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20009649-17de62130adf9a0c","8f44c0a20101531-13ffe1d3ec3dc78a"]},"geometry":{"type":"LineString","coordinates":[[-83.700552,32.866784],[-83.70061700000001,32.862915],[-83.700653,32.862361]]},"id":"8844c0a201fffff-13f7e1fac41cfaa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ed9d39d-17f778b6c585f433","8f44c0a2ec9486a-13dfdcc44f080455"]},"geometry":{"type":"LineString","coordinates":[[-83.702726,32.894844],[-83.70246900000001,32.894399],[-83.70245100000001,32.894356],[-83.702439,32.894288],[-83.70244100000001,32.894233],[-83.702461,32.894168],[-83.70248600000001,32.894122],[-83.70252400000001,32.894077],[-83.70259200000001,32.894027],[-83.702679,32.893988],[-83.704386,32.893445]]},"id":"8644c0a27ffffff-13b7dbadcf1e05dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ed9d39d-17f778b6c585f433","8f44c0a2edab083-17dfd57284f3f799"]},"geometry":{"type":"LineString","coordinates":[[-83.704386,32.893445],[-83.705095,32.89322],[-83.705724,32.89302]]},"id":"8944c0a2edbffff-17de7714a374f50e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ed180e0-179f71bf042b9266","8f44c0a2edab083-17dfd57284f3f799"]},"geometry":{"type":"LineString","coordinates":[[-83.705724,32.89302],[-83.706175,32.892876],[-83.706552,32.892761],[-83.706619,32.892747],[-83.70679200000001,32.892722],[-83.70699300000001,32.892713],[-83.70724,32.892719]]},"id":"8844c0a2edfffff-17de739e17f7fb16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2ed180e0-179f71bf042b9266","8f44c0a2ed6672b-17d7e91bc5eace4d"]},"geometry":{"type":"LineString","coordinates":[[-83.70724,32.892719],[-83.710778,32.892787000000006]]},"id":"8844c0a2edfffff-17b6ed6d68e87a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71187,32.892806]},"id":"8f44c0a2e996490-17d7c67147721cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e996490-17d7c67147721cfb","8f44c0a2ed6672b-17d7e91bc5eace4d"]},"geometry":{"type":"LineString","coordinates":[[-83.710778,32.892787000000006],[-83.71187,32.892806]]},"id":"8a44c0a2ed67fff-17dfd7c6885167e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.757498,32.753497]},"id":"8f44c0b2e168215-13b7f70bce8650ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2eab019c-13f7f5e9c221a757","8f44c0b2e168215-13b7f70bce8650ab"]},"geometry":{"type":"LineString","coordinates":[[-83.757498,32.753497],[-83.757962,32.754391000000005]]},"id":"8844c0b2ebfffff-13dfd67aca0c523a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758195,32.755027000000005]},"id":"8f44c0b2ea86c23-17f7f5582cdeed27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2eab019c-13f7f5e9c221a757","8f44c0b2ea86c23-17f7f5582cdeed27"]},"geometry":{"type":"LineString","coordinates":[[-83.757962,32.754391000000005],[-83.75822600000001,32.754859],[-83.758195,32.755027000000005]]},"id":"8a44c0b2eab7fff-17bdd585b7ea2306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.602546,32.852451]},"id":"8f44c0b8dac549c-13dff158c740382a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac5b43-13dfd016ee7015bb","8f44c0b8dac549c-13dff158c740382a"]},"geometry":{"type":"LineString","coordinates":[[-83.602546,32.852451],[-83.60306100000001,32.852454]]},"id":"8944c0b8dafffff-13dfd0b7dcf0b529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dac5b43-13dfd016ee7015bb","8f44c0b8daedcd3-13df6dcca8de813e"]},"geometry":{"type":"LineString","coordinates":[[-83.60306100000001,32.852454],[-83.603999,32.852469]]},"id":"8a44c0b8daeffff-13d77ef1cde964c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8daedcd3-13df6dcca8de813e","8f44c0b8da4e116-13ffe921ada800cb"]},"geometry":{"type":"LineString","coordinates":[[-83.603999,32.852469],[-83.605911,32.852497]]},"id":"8844c0b8dbfffff-13f7eb7726a0a221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606712,32.852468]},"id":"8f44c0b8da6b798-13dfc72d04984c0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6b798-13dfc72d04984c0c","8f44c0b8da4e116-13ffe921ada800cb"]},"geometry":{"type":"LineString","coordinates":[[-83.605911,32.852497],[-83.606712,32.852468]]},"id":"8a44c0b8da4ffff-13f7d8275c9920c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60751400000001,32.852434]},"id":"8f44c0b8da69260-13d74537c87ceba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6b798-13dfc72d04984c0c","8f44c0b8da69260-13d74537c87ceba8"]},"geometry":{"type":"LineString","coordinates":[[-83.606712,32.852468],[-83.60730500000001,32.852448],[-83.607431,32.852448],[-83.607481,32.852444000000006],[-83.60751400000001,32.852434]]},"id":"8944c0b8da7ffff-13d75631f88c618f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362ab680-139f687680b579d9","8f44c0a362ab286-13b72807482005de"]},"geometry":{"type":"LineString","coordinates":[[-83.61947,32.852584],[-83.619292,32.852578]]},"id":"8b44c0a362abfff-139f283ee760f6e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362ab680-139f687680b579d9","8f44c0a3628ca73-139fb8ae745d3721"]},"geometry":{"type":"LineString","coordinates":[[-83.619292,32.852578],[-83.6192025,32.852577100000005]]},"id":"8a44c0a3628ffff-139f28928fc994a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3628e100-139f6a59a5553b30","8f44c0a3628ca73-139fb8ae745d3721"]},"geometry":{"type":"LineString","coordinates":[[-83.6192025,32.852577100000005],[-83.618519,32.85257]]},"id":"8a44c0a3628ffff-139fa9840af124d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617698,32.852566]},"id":"8f44c0a3629c2a0-1397ec5ac0bb4df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3628e100-139f6a59a5553b30","8f44c0a3629c2a0-1397ec5ac0bb4df4"]},"geometry":{"type":"LineString","coordinates":[[-83.618519,32.85257],[-83.617698,32.852566]]},"id":"8944c0a362bffff-13972b5a32cad729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3629c2a0-1397ec5ac0bb4df4","8f44c0a3666d849-13976e5bec6a65a2"]},"geometry":{"type":"LineString","coordinates":[[-83.617698,32.852566],[-83.616877,32.852559]]},"id":"8944c0a362bffff-1397bd5b57946938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61599100000001,32.852553]},"id":"8f44c0a3666e353-139fb085adcefa6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3666e353-139fb085adcefa6f","8f44c0a3666d849-13976e5bec6a65a2"]},"geometry":{"type":"LineString","coordinates":[[-83.616877,32.852559],[-83.61599100000001,32.852553]]},"id":"8a44c0a3666ffff-139faf70c76d5a98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36640b24-139f329d4827c753","8f44c0a3666e353-139fb085adcefa6f"]},"geometry":{"type":"LineString","coordinates":[[-83.61599100000001,32.852553],[-83.61513400000001,32.852544]]},"id":"8944c0a3667ffff-139ff191756ef56c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614264,32.852541]},"id":"8f44c0a36642d9a-139734bd05bf5a40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36642d9a-139734bd05bf5a40","8f44c0a36640b24-139f329d4827c753"]},"geometry":{"type":"LineString","coordinates":[[-83.61513400000001,32.852544],[-83.614264,32.852541]]},"id":"8a44c0a36647fff-139733ad24055506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36642d9a-139734bd05bf5a40","8f44c0a3665046a-1397f6ac0adb8c2d"]},"geometry":{"type":"LineString","coordinates":[[-83.614264,32.852541],[-83.613472,32.852534]]},"id":"8944c0a3667ffff-1397f5b487cc8309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e1d0b-13ff38dc0003e432","8f44c0a3665046a-1397f6ac0adb8c2d"]},"geometry":{"type":"LineString","coordinates":[[-83.613472,32.852534],[-83.612576,32.852525]]},"id":"8844c0a367fffff-13fff7c40bfdbc84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366e1d0b-13ff38dc0003e432","8f44c0a366e20f2-13973adbe1daef99"]},"geometry":{"type":"LineString","coordinates":[[-83.612576,32.852525],[-83.61175700000001,32.852536]]},"id":"8a44c0a366e7fff-13ffb9dbf717caf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61089700000001,32.852539]},"id":"8f44c0a366f3988-1397fcf56b9107ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366f3988-1397fcf56b9107ba","8f44c0a366e20f2-13973adbe1daef99"]},"geometry":{"type":"LineString","coordinates":[[-83.61175700000001,32.852536],[-83.61089700000001,32.852539]]},"id":"8944c0a366fffff-1397fbe8a3e506b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667749,32.752738]},"id":"8f44c0b15146219-17dff228e35903a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15146219-17dff228e35903a2","8f44c0b1506b2d9-139ff075e12280e8"]},"geometry":{"type":"LineString","coordinates":[[-83.667749,32.752738],[-83.66783500000001,32.752816],[-83.668037,32.752975],[-83.668119,32.753034],[-83.66827400000001,32.753127],[-83.668329,32.753169],[-83.66835800000001,32.753206],[-83.66838200000001,32.753251],[-83.66839900000001,32.753303],[-83.668418,32.753424],[-83.66842600000001,32.75357],[-83.668423,32.753982],[-83.66839200000001,32.755809],[-83.6684,32.756022],[-83.66843200000001,32.756228],[-83.668447,32.756413],[-83.668452,32.756664],[-83.668445,32.756706]]},"id":"8844c0b151fffff-17f6f0b1dffff5e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668419,32.757761]},"id":"8f44c0b1531470b-17b6b0862a7cd383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1531470b-17b6b0862a7cd383","8f44c0b1506b2d9-139ff075e12280e8"]},"geometry":{"type":"LineString","coordinates":[[-83.668445,32.756706],[-83.668442,32.756962],[-83.66842100000001,32.757548],[-83.668419,32.757761]]},"id":"8744c0b15ffffff-13d6f07df864e826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20586381-13d7e1c9c6b35f53","8f44c0a205a2876-13f6c014474ab778"]},"geometry":{"type":"LineString","coordinates":[[-83.687562,32.861855000000006],[-83.68826200000001,32.861086]]},"id":"8944c0a205bffff-13d790ef0053e3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2624a84a-17b7fe4482686e9c","8f44c0a205a2876-13f6c014474ab778"]},"geometry":{"type":"LineString","coordinates":[[-83.68826200000001,32.861086],[-83.688612,32.86072],[-83.688861,32.860453],[-83.688963,32.860328],[-83.68898700000001,32.86025],[-83.68900400000001,32.860172]]},"id":"8744c0a20ffffff-17d7ff17486f3a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.680813,32.831612]},"id":"8f44c0b197a2a36-13ff9243e8bb0012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19712c46-13f78f91e4f1280f","8f44c0b197a2a36-13ff9243e8bb0012"]},"geometry":{"type":"LineString","coordinates":[[-83.681917,32.831628],[-83.680813,32.831612]]},"id":"8944c0b197bffff-13f690eaee2e04c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b197a2a36-13ff9243e8bb0012","8f44c0b197b1c94-13dfd4496bad25dc"]},"geometry":{"type":"LineString","coordinates":[[-83.680813,32.831612],[-83.679985,32.831586]]},"id":"8944c0b197bffff-13f7f346a6f1ed28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679471,32.831707]},"id":"8f44c0b197b2263-13bef58aadb3eedf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b197b2263-13bef58aadb3eedf","8f44c0b197b1c94-13dfd4496bad25dc"]},"geometry":{"type":"LineString","coordinates":[[-83.679985,32.831586],[-83.679471,32.831707]]},"id":"8a44c0b197b7fff-139794ea07e3527b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b2a284-13bef85882184919","8f44c0b10b2e46c-13def857efb181d3"]},"geometry":{"type":"LineString","coordinates":[[-83.652108,32.756983000000005],[-83.65210900000001,32.756417]]},"id":"8a44c0b10b2ffff-139fd8583dda596c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b10b23a60-1397d859cd2ec76b","8f44c0b10b2e46c-13def857efb181d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65210900000001,32.756417],[-83.65212000000001,32.756349],[-83.652123,32.756297],[-83.652106,32.756104]]},"id":"8944c0b10b3ffff-13f6f853b197e615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26860cf6-179e7b57c6fc7a17","8f44c0a269598cb-13f7fb64499a6370"]},"geometry":{"type":"LineString","coordinates":[[-83.69018200000001,32.842883],[-83.690202,32.843559]]},"id":"8844c0a269fffff-17d77b5e076df3d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69021500000001,32.844171]},"id":"8f44c0a268630ec-1796fb4faa3467f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26860cf6-179e7b57c6fc7a17","8f44c0a268630ec-1796fb4faa3467f3"]},"geometry":{"type":"LineString","coordinates":[[-83.690202,32.843559],[-83.69021500000001,32.844171]]},"id":"8a44c0a26867fff-17d7fb53bf703394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69507800000001,32.813404000000006]},"id":"8f44c0b1d399464-13ffef704373bd36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.696236,32.814189]},"id":"8f44c0b1d212d72-17f66c9c8f2f8b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d399464-13ffef704373bd36","8f44c0b1d212d72-17f66c9c8f2f8b31"]},"geometry":{"type":"LineString","coordinates":[[-83.69507800000001,32.813404000000006],[-83.69531900000001,32.813574],[-83.69583,32.813909],[-83.696088,32.81409],[-83.696236,32.814189]]},"id":"8844c0b1d3fffff-17ff6e06aa1e50ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d21c32a-17ffe94d061c1479","8f44c0b1d212d72-17f66c9c8f2f8b31"]},"geometry":{"type":"LineString","coordinates":[[-83.696236,32.814189],[-83.69650800000001,32.814365],[-83.69714900000001,32.814800000000005],[-83.69734000000001,32.814923],[-83.697489,32.814991],[-83.697592,32.815027]]},"id":"8944c0b1d23ffff-17f67afb3930834b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69798540000001,32.8150321]},"id":"8f44c0b1d2032d6-17f778572c1c3d0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2032d6-17f778572c1c3d0e","8f44c0b1d21c32a-17ffe94d061c1479"]},"geometry":{"type":"LineString","coordinates":[[-83.697592,32.815027],[-83.697665,32.815033],[-83.69798540000001,32.8150321]]},"id":"8944c0b1d23ffff-17f778d22cfa4257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2032d6-17f778572c1c3d0e","8f44c0b1d20eba3-13b6e72dbe1ae60a"]},"geometry":{"type":"LineString","coordinates":[[-83.69798540000001,32.8150321],[-83.69803900000001,32.815032],[-83.69823000000001,32.815067],[-83.6984613,32.8151084]]},"id":"8944c0b1d23ffff-139e67c236be2913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6987787,32.815226800000005]},"id":"8f44c0b1d20c29e-13fee6675d3635dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d20c29e-13fee6675d3635dc","8f44c0b1d20eba3-13b6e72dbe1ae60a"]},"geometry":{"type":"LineString","coordinates":[[-83.6984613,32.8151084],[-83.698638,32.81514],[-83.6987787,32.815226800000005]]},"id":"8a44c0b1d20ffff-13be66c6f8701ce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686141,32.860936]},"id":"8f44c0a262c8ae2-13978541e4974928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262ed572-179e831be46e2317","8f44c0a262c8ae2-13978541e4974928"]},"geometry":{"type":"LineString","coordinates":[[-83.686141,32.860936],[-83.68688900000001,32.859915],[-83.687021,32.859744]]},"id":"8944c0a262fffff-179fa430183b0a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262ed572-179e831be46e2317","8f44c0a26253919-13d6e22bed36bdef"]},"geometry":{"type":"LineString","coordinates":[[-83.687021,32.859744],[-83.68722500000001,32.859445],[-83.687405,32.859191]]},"id":"8844c0a263fffff-17feb2a4a74671c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76234600000001,32.819709]},"id":"8f44c0b0d2060ea-13dfeb35c899055f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d2050f5-13d5e935eb705115","8f44c0b0d2060ea-13dfeb35c899055f"]},"geometry":{"type":"LineString","coordinates":[[-83.76234600000001,32.819709],[-83.762493,32.819792],[-83.762617,32.819836],[-83.76284100000001,32.819885],[-83.76299300000001,32.819893],[-83.763165,32.819893]]},"id":"8a44c0b0d207fff-13b7ca3c632e13d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d22c25e-13bfc6884c99600e","8f44c0b0d2050f5-13d5e935eb705115"]},"geometry":{"type":"LineString","coordinates":[[-83.763165,32.819893],[-83.76363900000001,32.819847],[-83.76406700000001,32.819846000000005],[-83.764262,32.819864]]},"id":"8944c0b0d23ffff-13bfe7df4f8a6149"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d358002-179de3ed676e5f15","8f44c0b0d22c25e-13bfc6884c99600e"]},"geometry":{"type":"LineString","coordinates":[[-83.764262,32.819864],[-83.76456200000001,32.819921],[-83.764756,32.819969],[-83.764914,32.82002],[-83.76517600000001,32.82012],[-83.76532900000001,32.820193]]},"id":"8844c0b0d3fffff-1795d53571336741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76568660000001,32.8215596]},"id":"8f44c0b0d263ca1-17f7c30de9334adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0d358002-179de3ed676e5f15","8f44c0b0d263ca1-17f7c30de9334adc"]},"geometry":{"type":"LineString","coordinates":[[-83.76532900000001,32.820193],[-83.76560400000001,32.820283],[-83.76571200000001,32.820304],[-83.765826,32.820318],[-83.766135,32.82034],[-83.766237,32.820355],[-83.76630800000001,32.82038],[-83.766385,32.820419],[-83.766439,32.820462],[-83.766485,32.820517],[-83.76653,32.820603000000006],[-83.766542,32.820636],[-83.766548,32.820722],[-83.76653800000001,32.820799],[-83.766519,32.820864],[-83.766439,32.82104],[-83.766366,32.821176],[-83.766323,32.821238],[-83.766242,32.821323],[-83.766153,32.821402],[-83.766057,32.821469],[-83.765974,32.82151],[-83.76594,32.821522],[-83.76568660000001,32.8215596]]},"id":"8844c0b0d3fffff-17ffc205a4288b97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8b1485-13def3a6ac26d320","8f44c0b1ed5962b-13bef9afab77a5c3"]},"geometry":{"type":"LineString","coordinates":[[-83.651559,32.789111000000005],[-83.651757,32.789146],[-83.652248,32.78916],[-83.654031,32.789191]]},"id":"8744c0b1effffff-13dfd6ac0a51cebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e8b1485-13def3a6ac26d320","8f44c0b1e81248e-13ffef4a603d4235"]},"geometry":{"type":"LineString","coordinates":[[-83.654031,32.789191],[-83.655817,32.789215]]},"id":"8944c0b1e8bffff-13f7f178824cc12c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65721400000001,32.789248]},"id":"8f44c0b1e802503-1396cbe1488e41df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e81248e-13ffef4a603d4235","8f44c0b1e802503-1396cbe1488e41df"]},"geometry":{"type":"LineString","coordinates":[[-83.655817,32.789215],[-83.65721400000001,32.789248]]},"id":"8844c0b1e9fffff-13f7fd95d31d0586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667473,32.810612]},"id":"8f44c0b1819d453-17beb2d56095d59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18182164-139ef2ce8d83ec8f","8f44c0b1819d453-17beb2d56095d59f"]},"geometry":{"type":"LineString","coordinates":[[-83.667484,32.80977],[-83.667473,32.810612]]},"id":"8944c0b181bffff-17b7f2d1f7a94855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1801268e-13fef08446a18e59","8f44c0b1819d453-17beb2d56095d59f"]},"geometry":{"type":"LineString","coordinates":[[-83.667473,32.810612],[-83.667445,32.811579],[-83.667438,32.811956],[-83.667472,32.812035],[-83.667501,32.812074],[-83.66753100000001,32.812098],[-83.667598,32.812128],[-83.667742,32.81214],[-83.668422,32.812154]]},"id":"8844c0b181fffff-17b7f2678d8689e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1800ccc6-13deea3a4a5c8d0f","8f44c0b1801268e-13fef08446a18e59"]},"geometry":{"type":"LineString","coordinates":[[-83.668422,32.812154],[-83.669087,32.812176],[-83.66968200000001,32.81219],[-83.669852,32.812205],[-83.669959,32.81223],[-83.670066,32.812269],[-83.670569,32.812503],[-83.67066000000001,32.812531],[-83.670765,32.812544],[-83.67099800000001,32.812542]]},"id":"8844c0b181fffff-13bfad5631c317fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1800ccc6-13deea3a4a5c8d0f","8f44c0b18029313-13d7e773076d4d74"]},"geometry":{"type":"LineString","coordinates":[[-83.67099800000001,32.812542],[-83.67213600000001,32.81253]]},"id":"8944c0b1803ffff-13dfa8d6a2e64d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1816c328-17beffb161829362","8f44c0b18029313-13d7e773076d4d74"]},"geometry":{"type":"LineString","coordinates":[[-83.67213600000001,32.81253],[-83.672532,32.812528],[-83.673032,32.812503],[-83.673264,32.812446],[-83.673404,32.812392],[-83.67353,32.812333],[-83.67370100000001,32.812226],[-83.673843,32.812109],[-83.67399300000001,32.811943],[-83.674107,32.811762],[-83.674169,32.811632],[-83.67422300000001,32.811425],[-83.674271,32.811104],[-83.67432500000001,32.810972],[-83.674372,32.810916],[-83.674468,32.81084],[-83.674615,32.810791],[-83.67475200000001,32.810782],[-83.674881,32.810806],[-83.674942,32.810831],[-83.675313,32.811031]]},"id":"8744c0b18ffffff-17f6b34d9005bd5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1816c328-17beffb161829362","8f44c0b18b987a8-1797bd640b3fb615"]},"geometry":{"type":"LineString","coordinates":[[-83.675313,32.811031],[-83.67625600000001,32.811577]]},"id":"8844c0b18bfffff-17df9e8ab03ae601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677368,32.812218]},"id":"8f44c0b18aa5d32-1396daad09f6b158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18aa5d32-1396daad09f6b158","8f44c0b18b987a8-1797bd640b3fb615"]},"geometry":{"type":"LineString","coordinates":[[-83.67625600000001,32.811577],[-83.676941,32.811965],[-83.677368,32.812218]]},"id":"8844c0b18bfffff-13dedc0794c045e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18aa5d32-1396daad09f6b158","8f44c0b18a9e821-17feffb70afe6240"]},"geometry":{"type":"LineString","coordinates":[[-83.677368,32.812218],[-83.677441,32.812255],[-83.677513,32.812351],[-83.677559,32.812438],[-83.677591,32.812576],[-83.677594,32.813721],[-83.67756800000001,32.813822],[-83.677497,32.813921],[-83.67740900000001,32.813986],[-83.67730900000001,32.814026000000005],[-83.677189,32.814041],[-83.67530400000001,32.814027]]},"id":"8944c0b18abffff-17ffbbbd652f3cf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652173,32.814191]},"id":"8f44c0b1a8eb6ca-17f7f82fe3250b59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.653074,32.814208]},"id":"8f44c0b1abb408c-17f6d5fccddcbd1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1abb408c-17f6d5fccddcbd1d","8f44c0b1a8eb6ca-17f7f82fe3250b59"]},"geometry":{"type":"LineString","coordinates":[[-83.652173,32.814191],[-83.653074,32.814208]]},"id":"8844c0b1a9fffff-17fef71654aa99a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668704,32.752097]},"id":"8f44c0b15160640-17deafd408a9686e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15333c8b-13d7af840caf05ca","8f44c0b15160640-17deafd408a9686e"]},"geometry":{"type":"LineString","coordinates":[[-83.668704,32.752097],[-83.668766,32.752194],[-83.668799,32.75227],[-83.668824,32.75359],[-83.66883800000001,32.757247],[-83.66883200000001,32.757433]]},"id":"8744c0b15ffffff-17debf8950f5cb54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66885500000001,32.759262]},"id":"8f44c0b153187ad-17deef75a888a1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b153187ad-17deef75a888a1a8","8f44c0b15333c8b-13d7af840caf05ca"]},"geometry":{"type":"LineString","coordinates":[[-83.66883200000001,32.757433],[-83.668825,32.757882],[-83.66883100000001,32.758584],[-83.66885500000001,32.759262]]},"id":"8944c0b1533ffff-179fef82f9b96bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35209668-17f6fc37e786585e","8f44c0a35245228-13bfb6e9ce6e6b6d"]},"geometry":{"type":"LineString","coordinates":[[-83.663629,32.863543],[-83.66405200000001,32.863647],[-83.664848,32.863864],[-83.66509900000001,32.863942],[-83.66528600000001,32.864016],[-83.665535,32.864137],[-83.665802,32.86428]]},"id":"8944c0a3527ffff-17bef984bc28bd06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c9a6b3-13bff38c89e4ad88","8f44c0a35245228-13bfb6e9ce6e6b6d"]},"geometry":{"type":"LineString","coordinates":[[-83.665802,32.86428],[-83.666072,32.864437],[-83.666357,32.864566],[-83.66649100000001,32.864618],[-83.66669200000001,32.864669],[-83.66690700000001,32.864708],[-83.667007,32.86471],[-83.66718,32.864707]]},"id":"8744c0a22ffffff-13f6b547fa0f9f8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667865,32.864708]},"id":"8f44c0a22c9b90c-13beb1e0646015cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c9a6b3-13bff38c89e4ad88","8f44c0a22c9b90c-13beb1e0646015cd"]},"geometry":{"type":"LineString","coordinates":[[-83.66718,32.864707],[-83.667865,32.864708]]},"id":"8a44c0a22c9ffff-13beb2b6799fb41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203688,32.827285]},"id":"8f44c0b0aacc4f0-17df31b1877071d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aace342-17ff31ff8992c2f3","8f44c0b0aacc4f0-17df31b1877071d7"]},"geometry":{"type":"LineString","coordinates":[[-83.72024400000001,32.827512],[-83.7202965,32.8274166],[-83.7203688,32.827285]]},"id":"8a44c0b0aacffff-17b631d88eaa18d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aacc4f0-17df31b1877071d7","8f44c0b0aaea7ae-17fe31339f8cdd57"]},"geometry":{"type":"LineString","coordinates":[[-83.7203688,32.827285],[-83.7205565,32.8269438],[-83.7205703,32.8269187]]},"id":"8944c0b0aafffff-17feb172887457e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205902,32.8268825]},"id":"8f44c0b0aaea44d-17f7b1272a61960f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aaea44d-17f7b1272a61960f","8f44c0b0aaea7ae-17fe31339f8cdd57"]},"geometry":{"type":"LineString","coordinates":[[-83.7205703,32.8269187],[-83.7205902,32.8268825]]},"id":"8c44c0b0aaea7ff-17fef12d56335868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72066190000001,32.8267522]},"id":"8f44c0b0aaea1a6-179630fa5cb11055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aaea44d-17f7b1272a61960f","8f44c0b0aaea1a6-179630fa5cb11055"]},"geometry":{"type":"LineString","coordinates":[[-83.7205902,32.8268825],[-83.72066190000001,32.8267522]]},"id":"8b44c0b0aaeafff-17bef110bbfae194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72070740000001,32.8266695]},"id":"8f44c0b0aaead6b-17de70ddea8931c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aaead6b-17de70ddea8931c3","8f44c0b0aaea1a6-179630fa5cb11055"]},"geometry":{"type":"LineString","coordinates":[[-83.72066190000001,32.8267522],[-83.72070740000001,32.8266695]]},"id":"8b44c0b0aaeafff-17f670ec196c9e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72119,32.825792]},"id":"8f44c0b0aa52580-13be2fb044bb7734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0aa52580-13be2fb044bb7734","8f44c0b0aaead6b-17de70ddea8931c3"]},"geometry":{"type":"LineString","coordinates":[[-83.72070740000001,32.8266695],[-83.72077150000001,32.826553000000004],[-83.72119,32.825792]]},"id":"8944c0b0aafffff-13de70471543540d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760895,32.779432]},"id":"8f44c0b2bd35700-139dcec0af40b895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28695126-139dce2f0b19bd90","8f44c0b2bd35700-139dcec0af40b895"]},"geometry":{"type":"LineString","coordinates":[[-83.760895,32.779432],[-83.7609,32.778951],[-83.76086500000001,32.777754],[-83.76087700000001,32.777622],[-83.760925,32.777472],[-83.761004,32.777341],[-83.761128,32.777206]]},"id":"8644c0b2fffffff-17bddeb996e2ec35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b286a1715-13f7c9cdcbba4202","8f44c0b28695126-139dce2f0b19bd90"]},"geometry":{"type":"LineString","coordinates":[[-83.761128,32.777206],[-83.76128800000001,32.777085],[-83.76137200000001,32.77704],[-83.761521,32.776981],[-83.761734,32.776936],[-83.761902,32.77693],[-83.762922,32.776944]]},"id":"8944c0b286bffff-139dcc0ef5e710d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b286a1715-13f7c9cdcbba4202","8f44c0b2862d6d0-1397bff987b209e8"]},"geometry":{"type":"LineString","coordinates":[[-83.762922,32.776944],[-83.764971,32.776967],[-83.766948,32.776972]]},"id":"8844c0b287fffff-1395c4e3a71bd97d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.768749,32.776527]},"id":"8f44c0b28743a53-13f5fb93eaaf705c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28743a53-13f5fb93eaaf705c","8f44c0b2862d6d0-1397bff987b209e8"]},"geometry":{"type":"LineString","coordinates":[[-83.766948,32.776972],[-83.76730900000001,32.776967],[-83.76753400000001,32.776946],[-83.767797,32.776898],[-83.76802400000001,32.776842],[-83.768359,32.776724],[-83.768749,32.776527]]},"id":"8844c0b287fffff-13b5bdb9a413f12d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28002aa4-13bdb87e8b62bf0f","8f44c0b28743a53-13f5fb93eaaf705c"]},"geometry":{"type":"LineString","coordinates":[[-83.768749,32.776527],[-83.76900300000001,32.776355],[-83.76924700000001,32.776153],[-83.76943700000001,32.775956],[-83.76960700000001,32.775734],[-83.769721,32.775543],[-83.769819,32.775351],[-83.76989,32.775162],[-83.769951,32.774929],[-83.76999,32.774628],[-83.77000100000001,32.773333],[-83.77000100000001,32.772613],[-83.77001200000001,32.770069]]},"id":"8744c0b28ffffff-1397b8e9eae0c2b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70587300000001,32.889778]},"id":"8f44c0a23a41060-17ff551560109b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a41060-17ff551560109b92","8f44c0a23a4ea4d-17b7d4e4ac052b0a"]},"geometry":{"type":"LineString","coordinates":[[-83.705951,32.890268],[-83.705949,32.890242],[-83.70587300000001,32.889778]]},"id":"8944c0a23a7ffff-179e54fc67061408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a70842-13b7f73b6efaabb2","8f44c0a23a41060-17ff551560109b92"]},"geometry":{"type":"LineString","coordinates":[[-83.70587300000001,32.889778],[-83.705855,32.889633],[-83.705803,32.889297],[-83.70576100000001,32.889087],[-83.705734,32.888989],[-83.705685,32.888875],[-83.70561500000001,32.888759],[-83.705543,32.888658],[-83.705414,32.888517],[-83.705369,32.888478],[-83.70526600000001,32.888399],[-83.70507,32.888281],[-83.704993,32.888249]]},"id":"8944c0a23a7ffff-17d6f5ca269334c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a70842-13b7f73b6efaabb2","8f44c0a23a08d85-13b7db1d2fc13495"]},"geometry":{"type":"LineString","coordinates":[[-83.704993,32.888249],[-83.704966,32.888236],[-83.704848,32.888193],[-83.704609,32.888137],[-83.70340300000001,32.888022]]},"id":"8844c0a23bfffff-13de592853fabeff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a1a22e-13fe5ef26c5fced8","8f44c0a23a08d85-13b7db1d2fc13495"]},"geometry":{"type":"LineString","coordinates":[[-83.70340300000001,32.888022],[-83.70316100000001,32.887999],[-83.703052,32.887994],[-83.702966,32.887994],[-83.702827,32.888002],[-83.702685,32.888021],[-83.70259,32.888038],[-83.702481,32.888064],[-83.702347,32.888106],[-83.702258,32.888142],[-83.702143,32.888195],[-83.70202,32.888261],[-83.70183300000001,32.888368]]},"id":"8944c0a23a3ffff-13d75d15712a430f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a89d80-17d66278400e7838","8f44c0a23a1a22e-13fe5ef26c5fced8"]},"geometry":{"type":"LineString","coordinates":[[-83.70183300000001,32.888368],[-83.70151700000001,32.888531],[-83.700985,32.888818],[-83.70064500000001,32.888979],[-83.70039,32.889088]]},"id":"8844c0a23bfffff-13f7e0b213e1dded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23a89d80-17d66278400e7838","8f44c0a23330048-17b7e7d3f8586e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.70039,32.889088],[-83.6987251,32.889783800000004],[-83.69844470000001,32.889854500000006],[-83.69819530000001,32.8898908]]},"id":"8744c0a23ffffff-17d6751e9c413fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6040627,32.8482259]},"id":"8f44c0b8da24385-13ff7da4d7335662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da25591-13f7ed824b23ca1e","8f44c0b8da24385-13ff7da4d7335662"]},"geometry":{"type":"LineString","coordinates":[[-83.6040627,32.8482259],[-83.604118,32.848393]]},"id":"8a44c0b8da27fff-13b76d938e459e56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da25591-13f7ed824b23ca1e","8f44c0b8da2848e-17f7ed3428487667"]},"geometry":{"type":"LineString","coordinates":[[-83.604118,32.848393],[-83.60423300000001,32.848632],[-83.6042465,32.8486781],[-83.6042549,32.8487328],[-83.604256,32.848844],[-83.60424300000001,32.849651]]},"id":"8944c0b8da3ffff-13f7dd39700af8b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.604106,32.851036]},"id":"8f44c0b8da09766-17dfcd89c32e11df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da09766-17dfcd89c32e11df","8f44c0b8da2848e-17f7ed3428487667"]},"geometry":{"type":"LineString","coordinates":[[-83.60424300000001,32.849651],[-83.604223,32.850807],[-83.604194,32.850911],[-83.604169,32.850969],[-83.604106,32.851036]]},"id":"8844c0b8dbfffff-17b77d40d012026c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6184928,32.855733900000004]},"id":"8f44c0a3290dd48-13d7ba6a012f4f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3290dd48-13d7ba6a012f4f8c","8f44c0a32976b45-13f7a89665cc2732"]},"geometry":{"type":"LineString","coordinates":[[-83.619241,32.855769],[-83.61916400000001,32.855756],[-83.6184928,32.855733900000004]]},"id":"8844c0a329fffff-13dfe97feba748a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3290ea9d-13d7ec2cae7621ac","8f44c0a3290dd48-13d7ba6a012f4f8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6184928,32.855733900000004],[-83.6177718,32.855710200000004]]},"id":"8a44c0a3290ffff-13df7b4b50cf473c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617497,32.855645]},"id":"8f44c0a3290e428-139f2cd86398f9bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3290ea9d-13d7ec2cae7621ac","8f44c0a3290e428-139f2cd86398f9bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6177718,32.855710200000004],[-83.617669,32.8557068],[-83.617568,32.85568],[-83.617497,32.855645]]},"id":"8b44c0a3290efff-13b77c847ee6e044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a363945a1-13ffac5845f8e6be","8f44c0a36390cee-13ff7c50fda6d9d0"]},"geometry":{"type":"LineString","coordinates":[[-83.61770200000001,32.848228],[-83.61771370000001,32.8486391]]},"id":"8a44c0a36397fff-13fffc549763b0fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36390cee-13ff7c50fda6d9d0","8f44c0a363906ec-13b72c566f06331f"]},"geometry":{"type":"LineString","coordinates":[[-83.61771370000001,32.8486391],[-83.617705,32.848933]]},"id":"8b44c0a36390fff-13df7c53a7397cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a363906ec-13b72c566f06331f","8f44c0a3676da89-17ffac5f2913b12d"]},"geometry":{"type":"LineString","coordinates":[[-83.617705,32.848933],[-83.61769100000001,32.84966]]},"id":"8944c0a363bffff-139f7c5ac20de75b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531753,32.844045]},"id":"8f44c0a35daccf1-17def5bd770f0ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35daccf1-17def5bd770f0ddf","8f44c0a35d149a4-17bed38b29bb0c79"]},"geometry":{"type":"LineString","coordinates":[[-83.6531753,32.844045],[-83.65323860000001,32.8439633],[-83.653524,32.843595],[-83.654075,32.842976]]},"id":"8844c0a35dfffff-17f7d4a9d615bf2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b69c2a2-13d6d022a06310d6","8f44c0a35d149a4-17bed38b29bb0c79"]},"geometry":{"type":"LineString","coordinates":[[-83.654075,32.842976],[-83.6553564,32.8415312],[-83.655471,32.841402]]},"id":"8644c0a37ffffff-13d6f1d6e8e78436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec1069e-17b766d22ee6dc2c","8f44c0b0334ed45-13d6f0e8a1f15d09"]},"geometry":{"type":"LineString","coordinates":[[-83.707583,32.793041],[-83.708498,32.793067],[-83.711619,32.793132],[-83.711669,32.793151],[-83.71170000000001,32.793171],[-83.711729,32.793213],[-83.71173900000001,32.793238],[-83.71174400000001,32.793291],[-83.71171500000001,32.794047]]},"id":"8644c0b07ffffff-139e6af8c8d945be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec1069e-17b766d22ee6dc2c","8f44c0b0ec82015-17beec8da4f76b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.71171500000001,32.794047],[-83.711707,32.794454],[-83.711696,32.794663],[-83.711673,32.794728],[-83.71164900000001,32.794778],[-83.71157720000001,32.794891],[-83.71166720000001,32.7950097],[-83.7115315,32.794926100000005],[-83.711342,32.794987],[-83.711285,32.795],[-83.71119200000001,32.795004],[-83.71101300000001,32.795004],[-83.71034,32.794984],[-83.709985,32.79495],[-83.709728,32.79491],[-83.709367,32.794843]]},"id":"8844c0b0edfffff-17b678dd47aff6df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec920e1-17976fb8ececf917","8f44c0b0ec82015-17beec8da4f76b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.709367,32.794843],[-83.70893500000001,32.794798],[-83.708669,32.794786],[-83.70836100000001,32.794778],[-83.70806900000001,32.794783]]},"id":"8744c0b0effffff-179fee22c8c326ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70754500000001,32.794798]},"id":"8f44c0b03261181-179ed1006c01b666"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec920e1-17976fb8ececf917","8f44c0b03261181-179ed1006c01b666"]},"geometry":{"type":"LineString","coordinates":[[-83.70806900000001,32.794783],[-83.70797300000001,32.794804],[-83.70784,32.794806],[-83.70754500000001,32.794798]]},"id":"8944c0b0327ffff-179ed05c1cf6815a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75213600000001,32.830675]},"id":"8f44c0b09113908-17b7e4230ed5a2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75135,32.830249]},"id":"8f44c0b091a5045-179de60e46a51694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09113908-17b7e4230ed5a2e6","8f44c0b091a5045-179de60e46a51694"]},"geometry":{"type":"LineString","coordinates":[[-83.75213600000001,32.830675],[-83.75135,32.830249]]},"id":"8844c0b091fffff-179fe518ac3f7eb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.749876,32.829076]},"id":"8f44c0b09c5e281-13bde9a78061a86d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c5e281-13bde9a78061a86d","8f44c0b091a5045-179de60e46a51694"]},"geometry":{"type":"LineString","coordinates":[[-83.75135,32.830249],[-83.75110500000001,32.830114],[-83.75105400000001,32.830075],[-83.75096500000001,32.829994],[-83.75089600000001,32.829917],[-83.75081800000001,32.829817000000006],[-83.75049800000001,32.829375],[-83.75042900000001,32.829313],[-83.75031600000001,32.829234],[-83.75023300000001,32.829192],[-83.750174,32.829168],[-83.749876,32.829076]]},"id":"8744c0b09ffffff-139fe7cadaa50762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04788c1e-17ff7834c2872aae","8f44c0b04754096-17966e428e415a03"]},"geometry":{"type":"LineString","coordinates":[[-83.708668,32.748733],[-83.704594,32.748671]]},"id":"8844c0b047fffff-1796d33ba0dd52d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7034654,32.7485682]},"id":"8f44c0b04798811-17bf7af6214b85ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b04788c1e-17ff7834c2872aae","8f44c0b04798811-17bf7af6214b85ba"]},"geometry":{"type":"LineString","coordinates":[[-83.704594,32.748671],[-83.70372400000001,32.748657],[-83.703626,32.748649],[-83.7034654,32.7485682]]},"id":"8944c0b047bffff-17f7599a9ded08f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b031c56-139efaf2420b9fa6","8f44c0b1b021910-13bef75404034627"]},"geometry":{"type":"LineString","coordinates":[[-83.66415,32.832302],[-83.665632,32.832331]]},"id":"8944c0b1b03ffff-13b7f9232da6a8b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b15534c-13d7b3a30482b1bc","8f44c0b1b021910-13bef75404034627"]},"geometry":{"type":"LineString","coordinates":[[-83.665632,32.832331],[-83.66714400000001,32.832364000000005]]},"id":"8844c0b1b1fffff-13bfb57b8a14ac8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667895,32.832385]},"id":"8f44c0b1b1408d9-13d6b1cda7733e2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b15534c-13d7b3a30482b1bc","8f44c0b1b1408d9-13d6b1cda7733e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.66714400000001,32.832364000000005],[-83.667895,32.832385]]},"id":"8944c0b1b17ffff-13deb2b853fbfd29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1408d9-13d6b1cda7733e2f","8f44c0b1b16e6f6-13d7b00104587760"]},"geometry":{"type":"LineString","coordinates":[[-83.667895,32.832385],[-83.668632,32.832393]]},"id":"8944c0b1b17ffff-13d7b0e75a74e9fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb9e792-13fffce9457f8300","8f44c0b1b16e6f6-13d7b00104587760"]},"geometry":{"type":"LineString","coordinates":[[-83.668632,32.832393],[-83.6698988,32.8324285]]},"id":"8744c0b1bffffff-13f6ee752bb6a81a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb9d10b-13bfea52ec77efff","8f44c0b1bb9e792-13fffce9457f8300"]},"geometry":{"type":"LineString","coordinates":[[-83.6698988,32.8324285],[-83.670269,32.8325133],[-83.6709586,32.8325276]]},"id":"8a44c0b1bb9ffff-139efba0065c581e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb9d10b-13bfea52ec77efff","8f44c0b1bb8c6c0-13b7f8562394e933"]},"geometry":{"type":"LineString","coordinates":[[-83.6709586,32.8325276],[-83.67177260000001,32.832543900000005]]},"id":"8944c0b1bbbffff-13bee9548f3a2b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb8c6c0-13b7f8562394e933","8f44c0b1ba3654b-13beb642fded0b86"]},"geometry":{"type":"LineString","coordinates":[[-83.67177260000001,32.832543900000005],[-83.6726225,32.832560900000004]]},"id":"8944c0b1bbbffff-13bfe74c8900445f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65168200000001,32.848530100000005]},"id":"8f44c0a35c888ca-13bfd962c9e8ccb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c888ca-13bfd962c9e8ccb7","8f44c0a3552580c-13bef9e7441983d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65168200000001,32.848530100000005],[-83.65147,32.849325]]},"id":"8844c0a35dfffff-13b7f9a50c4d7f1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35521285-17f6da6d07be8194","8f44c0a3552580c-13bef9e7441983d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65147,32.849325],[-83.651369,32.849648],[-83.651256,32.850048]]},"id":"8a44c0a35527fff-179ffa2bb82c5e68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651008,32.850957]},"id":"8f44c0a3550c925-17befb080dda5c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3550c925-17befb080dda5c9f","8f44c0a35521285-17f6da6d07be8194"]},"geometry":{"type":"LineString","coordinates":[[-83.651256,32.850048],[-83.651008,32.850957]]},"id":"8944c0a3553ffff-179edaba8f7b19ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3550c925-17befb080dda5c9f","8f44c0a355082f4-13b7db878a749f88"]},"geometry":{"type":"LineString","coordinates":[[-83.651008,32.850957],[-83.65088,32.85147],[-83.650874,32.851498],[-83.65080400000001,32.851798]]},"id":"8944c0a3553ffff-13befb48ca959e81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65076400000001,32.851968]},"id":"8f44c0a3550b858-13b6dba08644949d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3550b858-13b6dba08644949d","8f44c0a355082f4-13b7db878a749f88"]},"geometry":{"type":"LineString","coordinates":[[-83.65080400000001,32.851798],[-83.65076400000001,32.851968]]},"id":"8a44c0a3550ffff-13fefb94034f0ebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75687,32.872083]},"id":"8f44c0b50455ad4-13bff8944319f7c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50455ad4-13bff8944319f7c8","8f44c0b50449d9d-179ff4e209b33c19"]},"geometry":{"type":"LineString","coordinates":[[-83.75687,32.872083],[-83.75704300000001,32.872073],[-83.757204,32.872113],[-83.757536,32.872493],[-83.758384,32.873463]]},"id":"8944c0b5047ffff-17bff69dff6dc119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75909,32.874271]},"id":"8f44c0b50715552-1397f328cf80b9b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50715552-1397f328cf80b9b6","8f44c0b50449d9d-179ff4e209b33c19"]},"geometry":{"type":"LineString","coordinates":[[-83.758384,32.873463],[-83.75909,32.874271]]},"id":"8844c0b507fffff-1797f405600a15d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33c644e3-17ff93066c1fb4d9","8f44c0a3388a092-17ff4c66c33a03e5"]},"geometry":{"type":"LineString","coordinates":[[-83.628073,32.874028],[-83.62818800000001,32.874046],[-83.62904300000001,32.874308],[-83.629845,32.874535],[-83.62990400000001,32.874552],[-83.630072,32.874609],[-83.630201,32.874676],[-83.630274,32.874729],[-83.630324,32.874781],[-83.63036500000001,32.874837],[-83.630401,32.874903],[-83.630633,32.875465000000005],[-83.630786,32.875866]]},"id":"8744c0a33ffffff-13970f230d2ea1bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629463,32.880097]},"id":"8f44c0a330235ae-17dfafa1ad796891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3388a092-17ff4c66c33a03e5","8f44c0a330235ae-17dfafa1ad796891"]},"geometry":{"type":"LineString","coordinates":[[-83.630786,32.875866],[-83.63090000000001,32.876221],[-83.63099100000001,32.876393],[-83.63113200000001,32.8766],[-83.63158700000001,32.877117000000005],[-83.63169,32.877243],[-83.631736,32.877300000000005],[-83.631848,32.877478],[-83.631916,32.877619],[-83.631967,32.877774],[-83.631984,32.877909],[-83.63195300000001,32.878081],[-83.631898,32.878172],[-83.63186800000001,32.878221],[-83.63176700000001,32.878324],[-83.63162600000001,32.878414],[-83.63037100000001,32.879097],[-83.630047,32.879337],[-83.62972500000001,32.879657],[-83.62955600000001,32.879897],[-83.629463,32.880097]]},"id":"8744c0a33ffffff-13f73be78a14d546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584788,32.861699]},"id":"8f44c0b89c21459-13f7fcb38bd3b0a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c21459-13f7fcb38bd3b0a4","8f44c0b89c017b0-17df7e834a3b0f0d"]},"geometry":{"type":"LineString","coordinates":[[-83.584788,32.861699],[-83.58476900000001,32.861775],[-83.584727,32.861841000000005],[-83.584316,32.86234],[-83.584096,32.8626],[-83.584046,32.862682]]},"id":"8944c0b89c3ffff-139f7d92fd651df3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c0a392-17fffeb72a1dae29","8f44c0b89c017b0-17df7e834a3b0f0d"]},"geometry":{"type":"LineString","coordinates":[[-83.584046,32.862682],[-83.584002,32.862747],[-83.58397000000001,32.86281],[-83.58395200000001,32.862873],[-83.583934,32.862972],[-83.58392500000001,32.86305],[-83.583923,32.863292],[-83.58393600000001,32.863528],[-83.58396300000001,32.86359]]},"id":"8944c0b89c3ffff-17df7ec23713ae0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2275baf5-13d6a38a68a2343f","8f44c0a222a3c55-13befa6b64dec6b7"]},"geometry":{"type":"LineString","coordinates":[[-83.673737,32.877853],[-83.673749,32.878123],[-83.673766,32.87829],[-83.673805,32.878434],[-83.673856,32.878525],[-83.673935,32.878611],[-83.67416800000001,32.87877],[-83.674412,32.8789],[-83.675616,32.879359],[-83.67572200000001,32.879392],[-83.675826,32.879407],[-83.67598000000001,32.879393],[-83.676108,32.879346000000005],[-83.676157,32.879317],[-83.676247,32.87924],[-83.67631300000001,32.879131],[-83.676376,32.878974],[-83.676462,32.878844],[-83.676585,32.878679000000005],[-83.676697,32.878574],[-83.67688100000001,32.878445],[-83.677183,32.878278],[-83.67734700000001,32.878163],[-83.67742000000001,32.87809],[-83.677473,32.878027]]},"id":"8744c0a22ffffff-139edf4f4f33b0cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a223894d3-1796f7efccfc686b","8f44c0a222a3c55-13befa6b64dec6b7"]},"geometry":{"type":"LineString","coordinates":[[-83.677473,32.878027],[-83.677518,32.877957],[-83.67756700000001,32.877823],[-83.67760100000001,32.877502],[-83.677637,32.87737],[-83.677693,32.87729],[-83.677805,32.877186],[-83.677925,32.877119],[-83.678021,32.877086000000006],[-83.678132,32.877071],[-83.678256,32.877066],[-83.67835600000001,32.877083],[-83.67849000000001,32.877115]]},"id":"8844c0a223fffff-13bef9860f08fda5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a223894d3-1796f7efccfc686b","8f44c0a222141a8-1396b68a437e1dad"]},"geometry":{"type":"LineString","coordinates":[[-83.67849000000001,32.877115],[-83.679062,32.877345000000005]]},"id":"8844c0a223fffff-17ded73d06f52a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222054a9-13de92ec06f9c851","8f44c0a222141a8-1396b68a437e1dad"]},"geometry":{"type":"LineString","coordinates":[[-83.679062,32.877345000000005],[-83.679454,32.877497000000005],[-83.67976800000001,32.877628],[-83.68012300000001,32.87774],[-83.68054400000001,32.87784]]},"id":"8944c0a2223ffff-13beb4bfe04e6640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a222054a9-13de92ec06f9c851","8f44c0a2235b05c-13dfed506e5f099f"]},"geometry":{"type":"LineString","coordinates":[[-83.68054400000001,32.87784],[-83.68083800000001,32.877854],[-83.681014,32.877854],[-83.681295,32.87784],[-83.681469,32.87782],[-83.68160200000001,32.877814],[-83.68174300000001,32.877825],[-83.681917,32.877854],[-83.682029,32.877889],[-83.68221600000001,32.877975],[-83.682339,32.878065],[-83.682435,32.878149],[-83.682626,32.878355],[-83.68275700000001,32.878512],[-83.68284100000001,32.878659]]},"id":"8844c0a223fffff-13b7dfd9284534e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a8406d5-13d7754327bf0841","8f44c0b0aaac109-17df357202a2e9fa"]},"geometry":{"type":"LineString","coordinates":[[-83.718832,32.823976],[-83.718878,32.820355],[-83.718888,32.819961],[-83.718907,32.818463]]},"id":"8744c0b0affffff-179e355b38185df0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7186964,32.8145994]},"id":"8f44c0b0a954c69-17f6b5c6c80afdbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a8406d5-13d7754327bf0841","8f44c0b0a954c69-17f6b5c6c80afdbc"]},"geometry":{"type":"LineString","coordinates":[[-83.718907,32.818463],[-83.718923,32.817102000000006],[-83.71894800000001,32.815542],[-83.718953,32.815285],[-83.71896000000001,32.814825],[-83.71888630000001,32.814684],[-83.71877020000001,32.814631],[-83.7186964,32.8145994]]},"id":"8844c0b0a9fffff-13f6b5389e48ca15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a954ca1-17d7b6191857d7e6","8f44c0b0a954c69-17f6b5c6c80afdbc"]},"geometry":{"type":"LineString","coordinates":[[-83.7186964,32.8145994],[-83.7185647,32.8145465]]},"id":"8b44c0b0a954fff-17d635effc003a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646624,32.847526]},"id":"8f44c0a34254963-17d7e5bc0c9c3256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34254963-17d7e5bc0c9c3256","8f44c0a34250145-13b6e64b257c8936"]},"geometry":{"type":"LineString","coordinates":[[-83.646395,32.848112],[-83.646624,32.847526]]},"id":"8944c0a3427ffff-17fee6039ea2ecaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34272ad1-17d7e5878743acaf","8f44c0a34254963-17d7e5bc0c9c3256"]},"geometry":{"type":"LineString","coordinates":[[-83.646624,32.847526],[-83.646708,32.847347]]},"id":"8a44c0a34277fff-179ff5a1cb162d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638059,32.8324936]},"id":"8f44c0a34c54016-1396faa526b9da97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c64524-13d6f5f377033962","8f44c0a34c54016-1396faa526b9da97"]},"geometry":{"type":"LineString","coordinates":[[-83.638059,32.8324936],[-83.6399817,32.831540000000004]]},"id":"8844c0a34dfffff-13fef84c4d57907d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64033900000001,32.831086]},"id":"8f44c0a34d4a811-17b6f5142320de90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c64524-13d6f5f377033962","8f44c0a34d4a811-17b6f5142320de90"]},"geometry":{"type":"LineString","coordinates":[[-83.6399817,32.831540000000004],[-83.6402958,32.8311409],[-83.64033900000001,32.831086]]},"id":"8944c0a34d7ffff-17b6f583cd8dfb95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c9051a-13b7b55d3566362f","8f44c0b1b3656c5-13d6a523c261b7e5"]},"geometry":{"type":"LineString","coordinates":[[-83.67308200000001,32.839149],[-83.6729901,32.842140300000004]]},"id":"8844c0b1b3fffff-17fef5407b4009e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26c9051a-13b7b55d3566362f","8f44c0b1b26d990-13feb56b41412339"]},"geometry":{"type":"LineString","coordinates":[[-83.6729901,32.842140300000004],[-83.6729676,32.8428747]]},"id":"8944c0a26cbffff-1397b564304794d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67288,32.845964]},"id":"8f44c0a2651c795-13f7a5a201d2f7c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2651c795-13f7a5a201d2f7c1","8f44c0b1b26d990-13feb56b41412339"]},"geometry":{"type":"LineString","coordinates":[[-83.6729676,32.8428747],[-83.67294100000001,32.843739],[-83.67288,32.845964]]},"id":"8744c0a26ffffff-17b6b58741fa1693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630153,32.8284796]},"id":"8f44c0ba9373c58-13d7cdf264834c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6309045,32.8289083]},"id":"8f44c0ba9344789-13d7bc1cb9ea592a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9344789-13d7bc1cb9ea592a","8f44c0ba9373c58-13d7cdf264834c65"]},"geometry":{"type":"LineString","coordinates":[[-83.630153,32.8284796],[-83.6309045,32.8289083]]},"id":"8944c0ba937ffff-13dfcd0794cf5ca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6316465,32.8293379]},"id":"8f44c0ba936acf1-13f73a4cfdf96b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9344789-13d7bc1cb9ea592a","8f44c0ba936acf1-13f73a4cfdf96b7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6309045,32.8289083],[-83.6316465,32.8293379]]},"id":"8944c0ba937ffff-13dffb34d6d2afa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632407,32.829788]},"id":"8f44c0ba93696b4-13ff8871a1235fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba936acf1-13f73a4cfdf96b7a","8f44c0ba93696b4-13ff8871a1235fe0"]},"geometry":{"type":"LineString","coordinates":[[-83.6316465,32.8293379],[-83.632407,32.829788]]},"id":"8a44c0ba936ffff-13ffe95f5d3c6970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ce1990-13f6ea5cce096202","8f44c0b19ce4243-13ffdaad4ee5e7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.68405,32.822583],[-83.683952,32.822459],[-83.68392100000001,32.822384],[-83.683918,32.822353],[-83.6839212,32.8222205]]},"id":"8a44c0b19ce7fff-13f79a983d296373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68394400000001,32.821261]},"id":"8f44c0b19c0e624-17beaa9f0d21e99e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c0e624-17beaa9f0d21e99e","8f44c0b19ce4243-13ffdaad4ee5e7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6839212,32.8222205],[-83.68394400000001,32.821261]]},"id":"8844c0b19dfffff-13d68aa62a0c771f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683947,32.82029]},"id":"8f44c0b19c00844-17dfca9d25de44ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c00844-17dfca9d25de44ab","8f44c0b19c0e624-17beaa9f0d21e99e"]},"geometry":{"type":"LineString","coordinates":[[-83.68394400000001,32.821261],[-83.683947,32.82029]]},"id":"8944c0b19c3ffff-17feba9e16119046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685586,32.840974]},"id":"8f44c0a2698dced-17dec69cc13fe33a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a269a5d1a-1397c65bc3fcce23","8f44c0a2698dced-17dec69cc13fe33a"]},"geometry":{"type":"LineString","coordinates":[[-83.685586,32.840974],[-83.68569000000001,32.838818]]},"id":"8944c0a269bffff-17b7867c4577acbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19758b58-13d6a618edd84c3e","8f44c0a269a5d1a-1397c65bc3fcce23"]},"geometry":{"type":"LineString","coordinates":[[-83.68569000000001,32.838818],[-83.68567800000001,32.838586],[-83.685383,32.83777],[-83.685384,32.837241],[-83.685395,32.836416],[-83.685421,32.836236],[-83.685578,32.835608],[-83.685738,32.835206],[-83.68579700000001,32.835025]]},"id":"8444c0bffffffff-17f786cf848aadb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662659,32.831252]},"id":"8f44c0b1b1aa611-179ebe962c963b84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b1a9519-179ebca9045ee291","8f44c0b1b1aa611-179ebe962c963b84"]},"geometry":{"type":"LineString","coordinates":[[-83.662659,32.831252],[-83.66294400000001,32.831271],[-83.663448,32.831277]]},"id":"8a44c0b1b1affff-1797fd9fb8d67c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663943,32.831271]},"id":"8f44c0b1b11a45e-179efb73ac335b3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b11a45e-179efb73ac335b3e","8f44c0b1b1a9519-179ebca9045ee291"]},"geometry":{"type":"LineString","coordinates":[[-83.663448,32.831277],[-83.663943,32.831271]]},"id":"8844c0b1b1fffff-179efc0e576f4fdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682074,32.793197]},"id":"8f44c0b1ca9db9d-13b6af2fce08fe0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca9db9d-13b6af2fce08fe0d","8f44c0b1ca8aca0-1396aef8c3bd47bc"]},"geometry":{"type":"LineString","coordinates":[[-83.682074,32.793197],[-83.682162,32.793377]]},"id":"8944c0b1cabffff-13deef14442ab100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cad2094-17b78d66451d3c75","8f44c0b1ca8aca0-1396aef8c3bd47bc"]},"geometry":{"type":"LineString","coordinates":[[-83.682162,32.793377],[-83.68240700000001,32.793878],[-83.68254300000001,32.794128],[-83.682806,32.794632]]},"id":"8844c0b1cbfffff-179e9e31f53dc4f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cacc376-1397e6b668eb8df1","8f44c0b1cad2094-17b78d66451d3c75"]},"geometry":{"type":"LineString","coordinates":[[-83.682806,32.794632],[-83.683025,32.795056],[-83.683087,32.79515],[-83.683119,32.795188],[-83.683233,32.795282],[-83.68337700000001,32.795343],[-83.683524,32.795378],[-83.683667,32.795394],[-83.685545,32.795395]]},"id":"8744c0b1cffffff-17bf8a686d1d765a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cacc376-1397e6b668eb8df1","8f44c0b1ca5bd20-17be82c5ab8dba55"]},"geometry":{"type":"LineString","coordinates":[[-83.685545,32.795395],[-83.685708,32.7954],[-83.68653900000001,32.795385],[-83.68662,32.795371],[-83.686712,32.795347],[-83.686812,32.795308],[-83.68688200000001,32.795265],[-83.686964,32.795208],[-83.68715900000001,32.795056]]},"id":"8844c0b1cbfffff-17de84a90206e268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca5bd20-17be82c5ab8dba55","8f44c0b1ca71b21-13d6a09d28ffb97b"]},"geometry":{"type":"LineString","coordinates":[[-83.68715900000001,32.795056],[-83.687264,32.794967],[-83.687459,32.794825],[-83.68767100000001,32.794654],[-83.687746,32.794598],[-83.68784600000001,32.794504],[-83.68790200000001,32.794414],[-83.687926,32.794364],[-83.68795,32.794261],[-83.687951,32.794114],[-83.687939,32.793987],[-83.687931,32.793718000000005],[-83.687956,32.793501],[-83.68804300000001,32.793069]]},"id":"8944c0b1ca7ffff-1797a13e4debc711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689361,32.790619]},"id":"8f44c0b1cb45c64-17defd656680a364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cb45c64-17defd656680a364","8f44c0b1ca71b21-13d6a09d28ffb97b"]},"geometry":{"type":"LineString","coordinates":[[-83.68804300000001,32.793069],[-83.688078,32.792921],[-83.688148,32.792724],[-83.688783,32.791465],[-83.688936,32.79117],[-83.68908,32.790917],[-83.689205,32.790757],[-83.689279,32.790685],[-83.689361,32.790619]]},"id":"8844c0b1cbfffff-17bfff2e624eed81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971175,32.801967600000005]},"id":"8f44c0b1d8f28c5-139fea759b1b1311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69665900000001,32.802008]},"id":"8f44c0b1d889805-13b76b94274bafdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d889805-13b76b94274bafdf","8f44c0b1d8f28c5-139fea759b1b1311"]},"geometry":{"type":"LineString","coordinates":[[-83.6971175,32.801967600000005],[-83.69665900000001,32.802008]]},"id":"8844c0b1d9fffff-139e6b04ed5fcbaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d889805-13b76b94274bafdf","8f44c0b1d88bd50-13d76d274a70f701"]},"geometry":{"type":"LineString","coordinates":[[-83.69665900000001,32.802008],[-83.696014,32.802085000000005]]},"id":"8a44c0b1d88ffff-13bf7c5db4ce14c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dc4c45c-1396f503228f0275","8f44c0b1d88bd50-13d76d274a70f701"]},"geometry":{"type":"LineString","coordinates":[[-83.696014,32.802085000000005],[-83.695628,32.802132],[-83.69503,32.802166],[-83.694496,32.802176],[-83.693826,32.802155],[-83.692795,32.80218]]},"id":"8744c0b1dffffff-139671145955ca96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64204600000001,32.817754]},"id":"8f44c0b1a09050a-179ef0e94cadd16d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a09050a-179ef0e94cadd16d","8f44c0b1a091b0d-17f7ef116074b60a"]},"geometry":{"type":"LineString","coordinates":[[-83.64204600000001,32.817754],[-83.642801,32.818108]]},"id":"8a44c0b1a097fff-1796effd5b1c3c1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a091b0d-17f7ef116074b60a","8f44c0b1a083af1-13b7ed30213aa377"]},"geometry":{"type":"LineString","coordinates":[[-83.642801,32.818108],[-83.643327,32.818337],[-83.64357100000001,32.818418]]},"id":"8944c0b1a0bffff-17dffe2291d49e5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a08d276-13d7ea5da112faac","8f44c0b1a083af1-13b7ed30213aa377"]},"geometry":{"type":"LineString","coordinates":[[-83.64357100000001,32.818418],[-83.644194,32.818758],[-83.644727,32.819074]]},"id":"8944c0b1a0bffff-1397fbc5124d861a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639549,32.815952]},"id":"8f44c0b1a553016-13b6f701e6a5d996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639993,32.816246]},"id":"8f44c0b1a55e170-13fff5ec69f6dc99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a55e170-13fff5ec69f6dc99","8f44c0b1a553016-13b6f701e6a5d996"]},"geometry":{"type":"LineString","coordinates":[[-83.639549,32.815952],[-83.63971000000001,32.81606],[-83.63981100000001,32.816122],[-83.639993,32.816246]]},"id":"8944c0b1a57ffff-139ff676ffc5374b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64057000000001,32.816609]},"id":"8f44c0b1a558b45-13def483cd60f3bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a55e170-13fff5ec69f6dc99","8f44c0b1a558b45-13def483cd60f3bd"]},"geometry":{"type":"LineString","coordinates":[[-83.639993,32.816246],[-83.640122,32.816333],[-83.64057000000001,32.816609]]},"id":"8a44c0b1a55ffff-13def538e7d26629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64068900000001,32.816696]},"id":"8f44c0b1a55d6ec-1797f4396a770f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a55d6ec-1797f4396a770f58","8f44c0b1a558b45-13def483cd60f3bd"]},"geometry":{"type":"LineString","coordinates":[[-83.64057000000001,32.816609],[-83.64068900000001,32.816696]]},"id":"8b44c0b1a55dfff-13f7f45e90e8c10d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642162,32.817653]},"id":"8f44c0b1a090c2d-17dff0a0c4e0a345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a090c2d-17dff0a0c4e0a345","8f44c0b1a55d6ec-1797f4396a770f58"]},"geometry":{"type":"LineString","coordinates":[[-83.64068900000001,32.816696],[-83.642162,32.817653]]},"id":"8844c0b1a5fffff-17bef26d12a63ecb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682168,32.821254]},"id":"8f44c0b19cad754-17b7cef50e591c53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19cc2564-1797ee7b254a5ddc","8f44c0b19cad754-17b7cef50e591c53"]},"geometry":{"type":"LineString","coordinates":[[-83.68236300000001,32.823459],[-83.682197,32.823241],[-83.682159,32.823182],[-83.682146,32.823121],[-83.682168,32.821254]]},"id":"8844c0b19dfffff-13f78ef257df409c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682186,32.819581]},"id":"8f44c0b19d890d3-139eaee9c349e616"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d890d3-139eaee9c349e616","8f44c0b19cad754-17b7cef50e591c53"]},"geometry":{"type":"LineString","coordinates":[[-83.682168,32.821254],[-83.682186,32.819581]]},"id":"8844c0b19dfffff-179efeef6e68538c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710828,32.798660000000005]},"id":"8f44c0b0e576b5d-17fec8fc88ecb77a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e5ad0c8-17de71362d39904b","8f44c0b0e576b5d-17fec8fc88ecb77a"]},"geometry":{"type":"LineString","coordinates":[[-83.707459,32.798605],[-83.710828,32.798660000000005]]},"id":"8844c0b0e5fffff-17ff5d195a923a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71244300000001,32.798323]},"id":"8f44c0b0ecca773-17b7e50b2c360858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ecca773-17b7e50b2c360858","8f44c0b0e576b5d-17fec8fc88ecb77a"]},"geometry":{"type":"LineString","coordinates":[[-83.710828,32.798660000000005],[-83.71119,32.798658],[-83.711595,32.798597],[-83.71200800000001,32.798484],[-83.71244300000001,32.798323]]},"id":"8744c0b0effffff-17b776fceeb7cc3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71410800000001,32.797522]},"id":"8f44c0b0ece9043-17b740fa8ba5c24d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ece9043-17b740fa8ba5c24d","8f44c0b0ecca773-17b7e50b2c360858"]},"geometry":{"type":"LineString","coordinates":[[-83.71244300000001,32.798323],[-83.713649,32.797779000000006],[-83.71410800000001,32.797522]]},"id":"8944c0b0ecfffff-17b6f2fe49df004f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714318,32.797418]},"id":"8f44c0b0ec5a4dc-17f64077487f1ad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ece9043-17b740fa8ba5c24d","8f44c0b0ec5a4dc-17f64077487f1ad6"]},"geometry":{"type":"LineString","coordinates":[[-83.71410800000001,32.797522],[-83.71414700000001,32.797503],[-83.714318,32.797418]]},"id":"8a44c0b0eceffff-1796d0b8d1f2099b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595095,32.860785]},"id":"8f44c0b8992b296-17b7e389a07d4c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89949c24-17ffde1e2642e2b0","8f44c0b8992b296-17b7e389a07d4c69"]},"geometry":{"type":"LineString","coordinates":[[-83.595095,32.860785],[-83.59517600000001,32.860982],[-83.59534400000001,32.861503],[-83.59541800000001,32.8617],[-83.595481,32.86184],[-83.595605,32.862057],[-83.59574900000001,32.862237],[-83.595922,32.862417],[-83.59609400000001,32.862574],[-83.596191,32.862662],[-83.59637400000001,32.862819],[-83.596914,32.863206000000005],[-83.597233,32.863464],[-83.59731500000001,32.863588]]},"id":"8844c0b899fffff-13f7f140e4c20b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a324908eb-13b7dd1de1178d84","8f44c0b89949c24-17ffde1e2642e2b0"]},"geometry":{"type":"LineString","coordinates":[[-83.59731500000001,32.863588],[-83.597443,32.86394],[-83.59756200000001,32.864193],[-83.59772500000001,32.864462]]},"id":"8744c0b89ffffff-17977daa33ec4c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a324908eb-13b7dd1de1178d84","8f44c0b89b2190c-17ff59458c78f60c"]},"geometry":{"type":"LineString","coordinates":[[-83.59772500000001,32.864462],[-83.59840200000001,32.865352],[-83.59903200000001,32.86619],[-83.599119,32.866332],[-83.599193,32.866494],[-83.599258,32.866681],[-83.5993,32.86684]]},"id":"8844c0a325fffff-13f7fb08d2151f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b28ace-13f7d89689e31489","8f44c0b89b2190c-17ff59458c78f60c"]},"geometry":{"type":"LineString","coordinates":[[-83.5993,32.86684],[-83.59958,32.867876]]},"id":"8944c0b89b3ffff-17b7d8ee000afcc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b28ace-13f7d89689e31489","8f44c0b89b7399d-179f77bda3dda15c"]},"geometry":{"type":"LineString","coordinates":[[-83.59958,32.867876],[-83.59992700000001,32.869135]]},"id":"8844c0b89bfffff-13fff82a1a9505c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600058,32.869599]},"id":"8f44c0b89b46423-17bf776bc85c313e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89b46423-17bf776bc85c313e","8f44c0b89b7399d-179f77bda3dda15c"]},"geometry":{"type":"LineString","coordinates":[[-83.59992700000001,32.869135],[-83.600058,32.869599]]},"id":"8944c0b89b7ffff-179f7794b6ced9da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b508d5340-1795fddb09e324bd","8f44c0b5088b026-17d7c126cd12c535"]},"geometry":{"type":"LineString","coordinates":[[-83.76781600000001,32.866895],[-83.76781100000001,32.866853],[-83.767791,32.866785],[-83.767728,32.866677],[-83.767629,32.86659],[-83.767514,32.866518],[-83.767426,32.866481],[-83.767352,32.866462],[-83.766886,32.866387],[-83.76680300000001,32.866363],[-83.766642,32.866292],[-83.76646600000001,32.866186]]},"id":"8844c0b509fffff-179fff598671c30a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5088b026-17d7c126cd12c535","8f44c0b50c6d2f1-1397e5fe297425a7"]},"geometry":{"type":"LineString","coordinates":[[-83.76646600000001,32.866186],[-83.766215,32.865963],[-83.766102,32.865855],[-83.765974,32.865758],[-83.765849,32.865696],[-83.765799,32.865679],[-83.76569,32.865659],[-83.765524,32.865648],[-83.764483,32.865643]]},"id":"8744c0b50ffffff-13d7c36d11def388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50c6d2f1-1397e5fe297425a7","8f44c0b50c51a06-139fec6ee1676e51"]},"geometry":{"type":"LineString","coordinates":[[-83.764483,32.865643],[-83.761955,32.865637],[-83.76184500000001,32.865657]]},"id":"8944c0b50c7ffff-1395f937125905fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec9188a-139eeb3ec5bf519f","8f44c0b1ec9b6e4-179feb4bc36c7ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.644346,32.790723],[-83.64433600000001,32.790511],[-83.6443668,32.7892612]]},"id":"8744c0b1effffff-13d7eb495e83ba75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ecb2948-179feb2be42e9c47","8f44c0b1ec9188a-139eeb3ec5bf519f"]},"geometry":{"type":"LineString","coordinates":[[-83.6443668,32.7892612],[-83.64439700000001,32.788038]]},"id":"8944c0b1ecbffff-179eeb35524f43f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ecb2948-179feb2be42e9c47","8f44c0b13ac9cad-17f7eb00235e4481"]},"geometry":{"type":"LineString","coordinates":[[-83.64439700000001,32.788038],[-83.644467,32.78511]]},"id":"8644c0b17ffffff-13feeb160664bb33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942068,32.8662164]},"id":"8f44c0a2046ccd6-17ff7190caed411b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69347470000001,32.8670016]},"id":"8f44c0a20441a0d-17d6735a5d1b3189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a20441a0d-17d6735a5d1b3189","8f44c0a2046ccd6-17ff7190caed411b"]},"geometry":{"type":"LineString","coordinates":[[-83.6942068,32.8662164],[-83.693826,32.866608],[-83.69352500000001,32.866931],[-83.69347470000001,32.8670016]]},"id":"8944c0a2047ffff-17df7279672fab08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a20441a0d-17d6735a5d1b3189","8f44c0a2044e30a-139673e9ebe1093f"]},"geometry":{"type":"LineString","coordinates":[[-83.69347470000001,32.8670016],[-83.693421,32.867077],[-83.693325,32.867235],[-83.69326500000001,32.867392],[-83.693245,32.867517]]},"id":"8944c0a2047ffff-17fef3b0f03aeaac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69380310000001,32.870615400000005]},"id":"8f44c0a20636aee-17b6f28d132c7171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a20636aee-17b6f28d132c7171","8f44c0a2044e30a-139673e9ebe1093f"]},"geometry":{"type":"LineString","coordinates":[[-83.693245,32.867517],[-83.693229,32.867711],[-83.69324300000001,32.867866],[-83.693326,32.868161],[-83.69379400000001,32.869003],[-83.693954,32.869182],[-83.69404300000001,32.869253],[-83.69417700000001,32.869372000000006],[-83.69427200000001,32.869514],[-83.694316,32.869646],[-83.69433400000001,32.869765],[-83.694297,32.870156],[-83.694252,32.870271],[-83.694129,32.87043],[-83.694029,32.870508],[-83.69390200000001,32.870579],[-83.69380310000001,32.870615400000005]]},"id":"8744c0a20ffffff-1797f27ae9ac1f37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927766,32.8712287]},"id":"8f44c0a2078ba62-13b7f50eabc1f0f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a20636aee-17b6f28d132c7171","8f44c0a2078ba62-13b7f50eabc1f0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.69380310000001,32.870615400000005],[-83.693432,32.870749],[-83.692796,32.870987],[-83.692739,32.87106],[-83.69273100000001,32.871096],[-83.69275400000001,32.871176000000006],[-83.6927766,32.8712287]]},"id":"8844c0a207fffff-13d6740c8a77d3f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928601,32.871424000000005]},"id":"8f44c0a20616c4a-13b674da75abdc60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a20616c4a-13b674da75abdc60","8f44c0a2078ba62-13b7f50eabc1f0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6927766,32.8712287],[-83.6928601,32.871424000000005]]},"id":"8844c0a207fffff-13f774f48baf3a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a20616c4a-13b674da75abdc60","8f44c0a206163a2-139ff4aabe421f41"]},"geometry":{"type":"LineString","coordinates":[[-83.6928601,32.871424000000005],[-83.6929365,32.871602700000004]]},"id":"8b44c0a20616fff-13d7f4c291df0b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a206163a2-139ff4aabe421f41","8f44c0a20610583-1397f47a070d8e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6929365,32.871602700000004],[-83.69301440000001,32.8717849]]},"id":"8a44c0a20617fff-13def4926ccb8a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2685e0f0-13f7ff848b76a78e","8f44c0a2684e8e9-13f7fbee659fb349"]},"geometry":{"type":"LineString","coordinates":[[-83.68996100000001,32.84535],[-83.68938200000001,32.845337],[-83.68849200000001,32.84534]]},"id":"8944c0a2687ffff-13f7fdb97b27b797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68828230000001,32.845336800000005]},"id":"8f44c0a2685e4d6-13ff80079adbceae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2685e0f0-13f7ff848b76a78e","8f44c0a2685e4d6-13ff80079adbceae"]},"geometry":{"type":"LineString","coordinates":[[-83.68849200000001,32.84534],[-83.68828230000001,32.845336800000005]]},"id":"8b44c0a2685efff-13f6ffc6085780ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686701,32.84529]},"id":"8f44c0a268c5010-13d6c3e3e3b14e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268c5010-13d6c3e3e3b14e51","8f44c0a268ee7ab-13d6e2f84aad0a68"]},"geometry":{"type":"LineString","coordinates":[[-83.686701,32.84529],[-83.687078,32.845287]]},"id":"8944c0a268fffff-13d7d36e17f5c769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882865,32.8452858]},"id":"8f44c0a2685e4a1-13dfa004f668df98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2685e4a1-13dfa004f668df98","8f44c0a268ee7ab-13d6e2f84aad0a68"]},"geometry":{"type":"LineString","coordinates":[[-83.687078,32.845287],[-83.687137,32.84527],[-83.68722500000001,32.845266],[-83.687459,32.845267],[-83.6882865,32.8452858]]},"id":"8844c0a269fffff-13dec17f5177c412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6795482,32.857256]},"id":"8f44c0a2667526d-179f955a69863104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2667125c-139fd5c10258a337","8f44c0a2667526d-179f955a69863104"]},"geometry":{"type":"LineString","coordinates":[[-83.6795482,32.857256],[-83.6794103,32.8573194],[-83.679384,32.857698]]},"id":"8944c0a2667ffff-17ff95aa2b71e82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2667125c-139fd5c10258a337","8f44c0a26643183-13fed5ea488592f3"]},"geometry":{"type":"LineString","coordinates":[[-83.679384,32.857698],[-83.67938000000001,32.858568000000005],[-83.67937,32.858609],[-83.67931800000001,32.858638]]},"id":"8a44c0a26647fff-13ded5c3e4c35daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68107300000001,32.8564]},"id":"8f44c0a26748328-17f691a1680314d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266648e8-17d79324ca50317e","8f44c0a26748328-17f691a1680314d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68107300000001,32.8564],[-83.680981,32.856476],[-83.6804532,32.856763300000004]]},"id":"8944c0a2677ffff-17fe925fcf92edfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266648e8-17d79324ca50317e","8f44c0a2667526d-179f955a69863104"]},"geometry":{"type":"LineString","coordinates":[[-83.6804532,32.856763300000004],[-83.6795482,32.857256]]},"id":"8844c0a267fffff-17ff943f9ba10756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66058600000001,32.857912]},"id":"8f44c0a35059569-13b7c3a5c74f81fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35384a70-13f6c3c4652280e0","8f44c0a35059569-13b7c3a5c74f81fa"]},"geometry":{"type":"LineString","coordinates":[[-83.66058600000001,32.857912],[-83.660577,32.858899],[-83.660537,32.859268]]},"id":"8744c0a35ffffff-13dfc3accb5f8f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66065300000001,32.860504]},"id":"8f44c0a3538ea58-17f7c37beb515c63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35384a70-13f6c3c4652280e0","8f44c0a3538ea58-17f7c37beb515c63"]},"geometry":{"type":"LineString","coordinates":[[-83.660537,32.859268],[-83.660515,32.8596],[-83.66051900000001,32.859779],[-83.660539,32.85998],[-83.66065300000001,32.860504]]},"id":"8944c0a353bffff-17f6c3b90a603828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3538ea58-17f7c37beb515c63","8f44c0a352a40b2-13dfe4d9eeedde08"]},"geometry":{"type":"LineString","coordinates":[[-83.66065300000001,32.860504],[-83.660683,32.860715],[-83.66067600000001,32.860809],[-83.66064800000001,32.860908],[-83.660573,32.861038],[-83.6605,32.861109],[-83.660431,32.861168],[-83.66033900000001,32.861209],[-83.660093,32.861283]]},"id":"8844c0a353fffff-13b6e3da63ded05e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.724535,32.91789]},"id":"8f44c0a280b29a1-13976785a5f17283"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280b29a1-13976785a5f17283","8f44c0a2854c846-13b729178a841a5f"]},"geometry":{"type":"LineString","coordinates":[[-83.724535,32.91789],[-83.724057,32.917482],[-83.723892,32.917333]]},"id":"8744c0a28ffffff-13f6684f89e5c052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72305200000001,32.916584]},"id":"8f44c0a28540994-17f72b248777bf8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2854c846-13b729178a841a5f","8f44c0a28540994-17f72b248777bf8a"]},"geometry":{"type":"LineString","coordinates":[[-83.723892,32.917333],[-83.72305200000001,32.916584]]},"id":"8944c0a2857ffff-13df3a1e0c29ddfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722648,32.916218]},"id":"8f44c0a285716d5-17fe6c210b3bb195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a285716d5-17fe6c210b3bb195","8f44c0a28540994-17f72b248777bf8a"]},"geometry":{"type":"LineString","coordinates":[[-83.72305200000001,32.916584],[-83.722648,32.916218]]},"id":"8944c0a2857ffff-17feaba2c0d64a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65198500000001,32.88216]},"id":"8f44c0a3176b468-13d6d8a56ad884ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3128a0e1-1396d4e10aaa411d","8f44c0a3176b468-13d6d8a56ad884ad"]},"geometry":{"type":"LineString","coordinates":[[-83.65198500000001,32.88216],[-83.65245,32.882184],[-83.65263800000001,32.88221],[-83.652879,32.882286],[-83.65359500000001,32.882492],[-83.653886,32.882582],[-83.654053,32.882649],[-83.65415700000001,32.882708],[-83.654255,32.882779],[-83.654324,32.882855],[-83.654368,32.882942],[-83.654392,32.883046],[-83.65441100000001,32.883197],[-83.65439500000001,32.883376000000005],[-83.65433900000001,32.883626],[-83.654213,32.88403],[-83.654058,32.88445],[-83.653958,32.884667],[-83.65389800000001,32.884774],[-83.653788,32.884903],[-83.653654,32.885015],[-83.65352800000001,32.885102]]},"id":"8744c0a31ffffff-17f6f48adafb2662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a069b42c5-1797e06c0977281d","8f44c0a3128a0e1-1396d4e10aaa411d"]},"geometry":{"type":"LineString","coordinates":[[-83.65352800000001,32.885102],[-83.65335800000001,32.885199],[-83.65318,32.885256000000005],[-83.653019,32.885275],[-83.65282400000001,32.885269],[-83.65193500000001,32.885159],[-83.651471,32.885089],[-83.651241,32.885078],[-83.651069,32.885078],[-83.650914,32.885111],[-83.65078700000001,32.885164],[-83.650695,32.885212],[-83.65051700000001,32.885312],[-83.64977900000001,32.885755],[-83.649399,32.885967],[-83.64903100000001,32.886178],[-83.64880000000001,32.886325]]},"id":"8544c0a3fffffff-13d7dad1610fb927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a069b42c5-1797e06c0977281d","8f44c0a06992176-139ee3b5bd5fdd9a"]},"geometry":{"type":"LineString","coordinates":[[-83.64880000000001,32.886325],[-83.64825300000001,32.886609],[-83.64789800000001,32.886806],[-83.647783,32.886885],[-83.64768000000001,32.887006],[-83.647564,32.887197],[-83.647501,32.887365],[-83.64746000000001,32.887535],[-83.64745330000001,32.887574400000005]]},"id":"8944c0a069bffff-17d7e25d01cc5506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6475731,32.8883375]},"id":"8f44c0a06d6d19c-13fef36ad9fc8428"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06d6d19c-13fef36ad9fc8428","8f44c0a06992176-139ee3b5bd5fdd9a"]},"geometry":{"type":"LineString","coordinates":[[-83.64745330000001,32.887574400000005],[-83.64743200000001,32.887701],[-83.64743100000001,32.887878],[-83.6474601,32.8880883],[-83.6475084,32.888243700000004],[-83.6475731,32.8883375]]},"id":"8844c0a069fffff-1396f3af566c2735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67451000000001,32.896054]},"id":"8f44c0a04315260-17d7e1a74d51fbab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67309300000001,32.897064]},"id":"8f44c0a043a8756-13bfa51ce7a4adfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04315260-17d7e1a74d51fbab","8f44c0a043a8756-13bfa51ce7a4adfd"]},"geometry":{"type":"LineString","coordinates":[[-83.67451000000001,32.896054],[-83.67381400000001,32.89641],[-83.673681,32.896493],[-83.673601,32.896561000000005],[-83.67309300000001,32.897064]]},"id":"8844c0a043fffff-17dfe37a691600ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672853,32.897294]},"id":"8f44c0a043ab515-13dee5b2e5189dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a043a8756-13bfa51ce7a4adfd","8f44c0a043ab515-13dee5b2e5189dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.67309300000001,32.897064],[-83.672853,32.897294]]},"id":"8a44c0a043affff-1396e567e9e6bdbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69842200000001,32.861711]},"id":"8f44c0a201a58ee-13ff67464144666e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201a58ee-13ff67464144666e","8f44c0a20130885-17fe63a08c1c0c6e"]},"geometry":{"type":"LineString","coordinates":[[-83.69842200000001,32.861711],[-83.698913,32.861522],[-83.699235,32.861378],[-83.699594,32.861151],[-83.69977300000001,32.861035],[-83.699916,32.860919]]},"id":"8844c0a201fffff-139fe564545450d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208f2423-17be5d21654dccf2","8f44c0a20130885-17fe63a08c1c0c6e"]},"geometry":{"type":"LineString","coordinates":[[-83.699916,32.860919],[-83.700269,32.860604],[-83.70048100000001,32.860424],[-83.700609,32.860346],[-83.70074500000001,32.860296000000005],[-83.700911,32.860242],[-83.70101600000001,32.860222],[-83.70119000000001,32.860227],[-83.701493,32.860258],[-83.702577,32.860384]]},"id":"8744c0a20ffffff-17b6708f57786a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419248a-13dffeb62567ecea","8f44c0a3456e682-17ffffff29f3c52e"]},"geometry":{"type":"LineString","coordinates":[[-83.635867,32.836758],[-83.6363934,32.836091200000006]]},"id":"8944c0a3457ffff-17bfff5aa299c5f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63655820000001,32.835882500000004]},"id":"8f44c0a34192d1b-13defe4f26042c62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419248a-13dffeb62567ecea","8f44c0a34192d1b-13defe4f26042c62"]},"geometry":{"type":"LineString","coordinates":[[-83.6363934,32.836091200000006],[-83.63655820000001,32.835882500000004]]},"id":"8944c0a3457ffff-139ffe82a1dbf967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6366577,32.8357565]},"id":"8f44c0a34196631-139ffe10f08fd91c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34196631-139ffe10f08fd91c","8f44c0a34192d1b-13defe4f26042c62"]},"geometry":{"type":"LineString","coordinates":[[-83.63655820000001,32.835882500000004],[-83.6366577,32.8357565]]},"id":"8a44c0a34197fff-13b7fe30081a2b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34196631-139ffe10f08fd91c","8f44c0a341968d6-139efdac9e0b9731"]},"geometry":{"type":"LineString","coordinates":[[-83.6366577,32.8357565],[-83.6368183,32.835553000000004]]},"id":"8b44c0a34196fff-13defddec774363e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34196928-13d7fd72dbf7bf94","8f44c0a341968d6-139efdac9e0b9731"]},"geometry":{"type":"LineString","coordinates":[[-83.6368183,32.835553000000004],[-83.6369107,32.8354361]]},"id":"8c44c0a341969ff-13fefd8fb080f37a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637988,32.8340716]},"id":"8f44c0a34c5a564-17fefad185055f0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34196928-13d7fd72dbf7bf94","8f44c0a34c5a564-17fefad185055f0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6369107,32.8354361],[-83.637988,32.8340716]]},"id":"8744c0a34ffffff-139ffc2233233f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63860960000001,32.8332728]},"id":"8f44c0a34c51b6a-17fff94d096745cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c5a564-17fefad185055f0c","8f44c0a34c51b6a-17fff94d096745cc"]},"geometry":{"type":"LineString","coordinates":[[-83.637988,32.8340716],[-83.63860960000001,32.8332728]]},"id":"8944c0a34c7ffff-17f7fa0f44195c70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c51b6a-17fff94d096745cc","8f44c0a34c6115c-13dff4dae60addcf"]},"geometry":{"type":"LineString","coordinates":[[-83.63860960000001,32.8332728],[-83.6404306,32.8324086]]},"id":"8944c0a34c7ffff-13fff713fa8ebf50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726331,32.892288]},"id":"8f44c0a2c535286-179623232a501e31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c51db66-139fa2d14a9dd894","8f44c0a2c535286-179623232a501e31"]},"geometry":{"type":"LineString","coordinates":[[-83.726331,32.892288],[-83.726466,32.892742000000005],[-83.72646200000001,32.894156]]},"id":"8944c0a2c53ffff-17d722da496dcb58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c51db66-139fa2d14a9dd894","8f44c0a2c42405e-13bea2d326fa14af"]},"geometry":{"type":"LineString","coordinates":[[-83.72646200000001,32.894156],[-83.726459,32.894993]]},"id":"8844c0a2c5fffff-13b732d234614939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726455,32.896154]},"id":"8f44c0a2c42e09e-179662d5afc49422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c42e09e-179662d5afc49422","8f44c0a2c42405e-13bea2d326fa14af"]},"geometry":{"type":"LineString","coordinates":[[-83.726459,32.894993],[-83.726455,32.896154]]},"id":"8944c0a2c43ffff-179772d4626d88ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898c0b99-17bfea3c05968d38","8f44c0b8991b158-13d7e8570f31b3b2"]},"geometry":{"type":"LineString","coordinates":[[-83.59312800000001,32.861478000000005],[-83.59331,32.861896],[-83.593512,32.86238],[-83.593579,32.862552],[-83.593629,32.862716],[-83.593654,32.862844],[-83.59370100000001,32.863228],[-83.593756,32.86345],[-83.59388600000001,32.863804],[-83.59390900000001,32.863899],[-83.593919,32.86399],[-83.593907,32.864099],[-83.59388,32.864203],[-83.59373500000001,32.864558],[-83.593608,32.864824],[-83.59354400000001,32.864928],[-83.593461,32.865049],[-83.593269,32.865282],[-83.59286900000001,32.865659],[-83.592352,32.866118]]},"id":"8844c0b899fffff-17dfe7a1a8767ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b898d81b1-17f7ec71afd5673a","8f44c0b898c0b99-17bfea3c05968d38"]},"geometry":{"type":"LineString","coordinates":[[-83.592352,32.866118],[-83.592167,32.866269],[-83.59194600000001,32.866466],[-83.591722,32.866712],[-83.591447,32.867027]]},"id":"8944c0b898fffff-17bf6b61152bcb40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89174a9c-13f76d854eece89d","8f44c0b898d81b1-17f7ec71afd5673a"]},"geometry":{"type":"LineString","coordinates":[[-83.591447,32.867027],[-83.591184,32.867347],[-83.59108300000001,32.867506],[-83.59100600000001,32.867666]]},"id":"8744c0b89ffffff-17b7ed05d8adb2aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89174a9c-13f76d854eece89d","8f44c0b891739a4-13f7ee33a05b8ea7"]},"geometry":{"type":"LineString","coordinates":[[-83.59100600000001,32.867666],[-83.590906,32.86802],[-83.59085,32.868131000000005],[-83.590782,32.868222],[-83.590727,32.868276]]},"id":"8a44c0b89177fff-13bfedca218fc303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89030784-13f7f6a4eda3cbcf","8f44c0b891739a4-13f7ee33a05b8ea7"]},"geometry":{"type":"LineString","coordinates":[[-83.590727,32.868276],[-83.590604,32.868364],[-83.59054300000001,32.868397],[-83.590428,32.868443],[-83.590334,32.868468],[-83.589336,32.868605],[-83.587269,32.868876]]},"id":"8844c0b891fffff-13d7f25f46482e21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657278,32.848984]},"id":"8f44c0a35c45724-13d7cbb94342409b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c45724-13d7cbb94342409b","8f44c0a35c50486-13bef09a0cfeacb9"]},"geometry":{"type":"LineString","coordinates":[[-83.65528,32.848919],[-83.65537300000001,32.848941],[-83.657278,32.848984]]},"id":"8944c0a35c7ffff-13dede2a6d37fdf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c45724-13d7cbb94342409b","8f44c0a35c688b6-13f7c97b8deb2763"]},"geometry":{"type":"LineString","coordinates":[[-83.657278,32.848984],[-83.658196,32.849004]]},"id":"8944c0a35c7ffff-13dfca9a6e006624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659648,32.849007]},"id":"8f44c0a3589c285-13f7e5f008213c06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3589c285-13f7e5f008213c06","8f44c0a35c688b6-13f7c97b8deb2763"]},"geometry":{"type":"LineString","coordinates":[[-83.658196,32.849004],[-83.659648,32.849007]]},"id":"8744c0a35ffffff-13f6f7b5c530eb8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377305,32.8359552]},"id":"8f44c0a3419532a-139efb7271849c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419532a-139efb7271849c91","8f44c0a34194705-13befcd1c7b1fbc6"]},"geometry":{"type":"LineString","coordinates":[[-83.63716840000001,32.8356046],[-83.6377305,32.8359552]]},"id":"8a44c0a34197fff-139efc222c777243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419532a-139efb7271849c91","8f44c0a34182c09-13defb0ba21d95f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6377305,32.8359552],[-83.637895,32.8360579]]},"id":"8944c0a341bffff-13befb3f1ff02adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63793910000001,32.8360854]},"id":"8f44c0a34182c41-13dffaf01446f9f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34182c09-13defb0ba21d95f5","8f44c0a34182c41-13dffaf01446f9f2"]},"geometry":{"type":"LineString","coordinates":[[-83.637895,32.8360579],[-83.63793910000001,32.8360854]]},"id":"8c44c0a34182dff-13d6fafdea49bf60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50196ad8-1397f05149ec5852","8f44c0b500b172c-139dcf632f6d37fb"]},"geometry":{"type":"LineString","coordinates":[[-83.76063500000001,32.870806],[-83.76045,32.870472],[-83.76040300000001,32.870362],[-83.760367,32.870261],[-83.76033100000001,32.870129],[-83.760315,32.869998],[-83.76031300000001,32.869933],[-83.76032400000001,32.869793],[-83.76036,32.869549],[-83.760423,32.869219],[-83.76044200000001,32.869093],[-83.76045500000001,32.868933000000006],[-83.760457,32.868837],[-83.76044800000001,32.868676],[-83.76042100000001,32.868539000000006],[-83.760374,32.868381],[-83.760254,32.868125]]},"id":"8844c0b501fffff-17dffff3bdec266f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50196ad8-1397f05149ec5852","8f44c0b50ccb913-139df15b88462305"]},"geometry":{"type":"LineString","coordinates":[[-83.760254,32.868125],[-83.759828,32.867503]]},"id":"8744c0b50ffffff-13dfd0d661f675ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50cc1112-17fff1ec8876aaa1","8f44c0b50ccb913-139df15b88462305"]},"geometry":{"type":"LineString","coordinates":[[-83.759828,32.867503],[-83.75971600000001,32.867195],[-83.759668,32.866943],[-83.759596,32.866449]]},"id":"8944c0b50cfffff-17d7f1b2ac020a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50cc1112-17fff1ec8876aaa1","8f44c0b50c2ba52-17fdcd404ff5cbaf"]},"geometry":{"type":"LineString","coordinates":[[-83.759596,32.866449],[-83.75951,32.865543],[-83.759504,32.86537],[-83.75951900000001,32.865262],[-83.759557,32.865108],[-83.75960400000001,32.864984],[-83.759673,32.864849],[-83.759759,32.864728],[-83.759839,32.864634],[-83.75998200000001,32.864494],[-83.76013400000001,32.864387],[-83.76034,32.864269],[-83.760557,32.864162],[-83.76151,32.863764]]},"id":"8844c0b50dfffff-1397f0a99a8087e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50980598-13b7e0e0cf44b266","8f44c0b50c2ba52-17fdcd404ff5cbaf"]},"geometry":{"type":"LineString","coordinates":[[-83.76151,32.863764],[-83.76158000000001,32.863735000000005],[-83.7617846,32.8636505],[-83.762078,32.863514],[-83.762404,32.86337],[-83.763104,32.863059],[-83.764723,32.862361],[-83.76619000000001,32.861735],[-83.76657800000001,32.861623]]},"id":"8744c0b50ffffff-17bdc7173952fb34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76991100000001,32.860671]},"id":"8f44c0b50906332-17dff8bda0b1e17e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50906332-17dff8bda0b1e17e","8f44c0b50980598-13b7e0e0cf44b266"]},"geometry":{"type":"LineString","coordinates":[[-83.76657800000001,32.861623],[-83.76666800000001,32.861617],[-83.766855,32.861632],[-83.766935,32.861649],[-83.767047,32.861694],[-83.76722600000001,32.86178],[-83.76742,32.861856],[-83.767588,32.861888],[-83.76769900000001,32.861891],[-83.767773,32.861885],[-83.76789600000001,32.861857],[-83.768009,32.861823],[-83.768136,32.861773],[-83.768259,32.861708],[-83.769063,32.861221],[-83.769322,32.861054],[-83.769586,32.860868],[-83.76991100000001,32.860671]]},"id":"8844c0b509fffff-13d5fcad82a8eecb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.773182,32.858635]},"id":"8f44c0b542f4b93-13f7f0c147d88a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50906332-17dff8bda0b1e17e","8f44c0b542f4b93-13f7f0c147d88a17"]},"geometry":{"type":"LineString","coordinates":[[-83.76991100000001,32.860671],[-83.770454,32.860369],[-83.77093,32.860134],[-83.771417,32.859904],[-83.77208200000001,32.859569],[-83.77223000000001,32.859487],[-83.77238100000001,32.859386],[-83.772576,32.859228],[-83.772732,32.859071],[-83.77304600000001,32.858718],[-83.77308000000001,32.858694],[-83.773182,32.858635]]},"id":"8744c0b54ffffff-179fb496cf342a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b542f4b93-13f7f0c147d88a17","8f44c0b50353548-13f7f7cda60fd589"]},"geometry":{"type":"LineString","coordinates":[[-83.773182,32.858635],[-83.773274,32.858662],[-83.77351300000001,32.858756],[-83.77364,32.858798],[-83.773773,32.858839],[-83.77406500000001,32.858900000000006],[-83.77424,32.858921],[-83.77476800000001,32.858963],[-83.77623200000001,32.859056],[-83.77780200000001,32.859155],[-83.77906800000001,32.859222],[-83.779527,32.859264],[-83.779713,32.859298],[-83.77995200000001,32.85936],[-83.78020500000001,32.859447],[-83.780477,32.859558],[-83.78064,32.859637],[-83.780755,32.859701],[-83.780911,32.859795000000005],[-83.78114500000001,32.859968],[-83.781281,32.860084],[-83.781456,32.860252],[-83.78172400000001,32.860579],[-83.78184800000001,32.860762],[-83.78193800000001,32.860939],[-83.78200700000001,32.861092],[-83.78205100000001,32.86121],[-83.782117,32.861421],[-83.782165,32.861673],[-83.782185,32.86188],[-83.78219,32.862091],[-83.78211300000001,32.862479],[-83.782019,32.862778],[-83.78182100000001,32.863357],[-83.78177600000001,32.863614000000005],[-83.78176500000001,32.863732],[-83.78175900000001,32.863884],[-83.781784,32.864085],[-83.78183,32.864269],[-83.781898,32.864431],[-83.782144,32.864969],[-83.78255200000001,32.865811],[-83.782627,32.865994],[-83.78268700000001,32.866191],[-83.78272700000001,32.866393],[-83.782746,32.866602],[-83.78274300000001,32.866869],[-83.78274300000001,32.866895],[-83.78272600000001,32.867057],[-83.782712,32.867145],[-83.782672,32.867334],[-83.78263600000001,32.867466],[-83.782509,32.867798],[-83.78147700000001,32.870381],[-83.78082300000001,32.872048],[-83.78051,32.872835],[-83.78001900000001,32.8741],[-83.77994100000001,32.874288],[-83.779864,32.874429],[-83.779746,32.874592],[-83.77967600000001,32.874679],[-83.77951800000001,32.874814],[-83.779386,32.874901],[-83.779166,32.875006],[-83.778861,32.875116000000006],[-83.77871400000001,32.875144],[-83.778385,32.875194],[-83.776787,32.875397],[-83.77661,32.875428],[-83.77650200000001,32.875452],[-83.776363,32.875494],[-83.776179,32.875614],[-83.77607900000001,32.875698],[-83.77588300000001,32.875881],[-83.775723,32.87605],[-83.77512800000001,32.876679],[-83.77499800000001,32.876783],[-83.774477,32.877115],[-83.77414800000001,32.877283000000006],[-83.77386100000001,32.877422],[-83.773701,32.877484],[-83.773134,32.877668],[-83.772658,32.877770000000005],[-83.77180700000001,32.877859],[-83.771297,32.877896],[-83.770696,32.877913],[-83.770295,32.877907]]},"id":"8644c0b57ffffff-139fe374cdee3d71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50231848-13fdbc67c7ec889d","8f44c0b50353548-13f7f7cda60fd589"]},"geometry":{"type":"LineString","coordinates":[[-83.770295,32.877907],[-83.76995000000001,32.877879],[-83.76944,32.877803],[-83.769034,32.877715],[-83.76841,32.877513]]},"id":"8844c0b503fffff-1395fa20ad0985c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50231848-13fdbc67c7ec889d","8f44c0b50383811-17bfc27a276a32b5"]},"geometry":{"type":"LineString","coordinates":[[-83.76841,32.877513],[-83.76759,32.877197],[-83.76671400000001,32.876842],[-83.766441,32.876707],[-83.766238,32.876588000000005],[-83.765923,32.876358]]},"id":"8844c0b503fffff-17b7ff82ddbcaf99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50383811-17bfc27a276a32b5","8f44c0b50089932-17b7ec1806c0db59"]},"geometry":{"type":"LineString","coordinates":[[-83.765923,32.876358],[-83.765271,32.875776],[-83.76516500000001,32.875676],[-83.76285800000001,32.873514],[-83.761984,32.872683]]},"id":"8744c0b50ffffff-13b5e74e3346ed2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50089932-17b7ec1806c0db59","8f44c0b500b172c-139dcf632f6d37fb"]},"geometry":{"type":"LineString","coordinates":[[-83.761984,32.872683],[-83.761671,32.872331],[-83.761297,32.8718],[-83.76063500000001,32.870806]]},"id":"8944c0b500bffff-13f7fdcbe20d7752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68062,32.862091]},"id":"8f44c0a22834725-13d6f2bc8e0114b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a22834725-13d6f2bc8e0114b1","8f44c0a228350e6-139ff1b88241bbc9"]},"geometry":{"type":"LineString","coordinates":[[-83.68062,32.862091],[-83.680718,32.862173],[-83.681036,32.862403]]},"id":"8a44c0a22837fff-13be923bd7980941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a228350e6-139ff1b88241bbc9","8f44c0a22835ad8-13d69150206f892b"]},"geometry":{"type":"LineString","coordinates":[[-83.681036,32.862403],[-83.68120300000001,32.862464]]},"id":"8b44c0a22835fff-13bef1845a0e15fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a22820066-17978f8241a2e7ab","8f44c0a22835ad8-13d69150206f892b"]},"geometry":{"type":"LineString","coordinates":[[-83.68120300000001,32.862464],[-83.68133800000001,32.862471],[-83.681892,32.862569],[-83.681942,32.8626]]},"id":"8944c0a2283ffff-13f6d0667088f827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a22820066-17978f8241a2e7ab","8f44c0a22865060-13ffa82f4e390920"]},"geometry":{"type":"LineString","coordinates":[[-83.681942,32.8626],[-83.682281,32.862865],[-83.682372,32.862926],[-83.682449,32.86296],[-83.68252100000001,32.862983],[-83.68263300000001,32.863003],[-83.682918,32.863023000000005],[-83.683017,32.863036],[-83.68311100000001,32.863062],[-83.68321200000001,32.863101],[-83.6833,32.863152],[-83.683975,32.863636],[-83.68413500000001,32.863757],[-83.684261,32.863861],[-83.684363,32.863961],[-83.68450800000001,32.864134],[-83.684595,32.864258],[-83.684804,32.86462],[-83.684942,32.864789]]},"id":"8844c0a229fffff-17d6bb89d0b2043f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a22865060-13ffa82f4e390920","8f44c0a204922c4-13bed74bf22768bb"]},"geometry":{"type":"LineString","coordinates":[[-83.684942,32.864789],[-83.684996,32.864925],[-83.685067,32.865026],[-83.685145,32.865116],[-83.6853057,32.865293300000005]]},"id":"8844c0a229fffff-1396d7c97cf8cc05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2049b846-17dea4c80d28b4a1","8f44c0a204922c4-13bed74bf22768bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6853057,32.865293300000005],[-83.685387,32.865378],[-83.685894,32.865906],[-83.68624100000001,32.866287],[-83.68633600000001,32.866397]]},"id":"8944c0a204bffff-13fef606f9d35730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2049b846-17dea4c80d28b4a1","8f44c0a22b24419-17bfa393e1658540"]},"geometry":{"type":"LineString","coordinates":[[-83.68633600000001,32.866397],[-83.686468,32.866511],[-83.686588,32.866591],[-83.686728,32.866667],[-83.686829,32.866729]]},"id":"8844c0a205fffff-17d7f432422a4e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a22b24419-17bfa393e1658540","8f44c0a204c492d-17b7fc40e1ab8ee1"]},"geometry":{"type":"LineString","coordinates":[[-83.686829,32.866729],[-83.687099,32.866759],[-83.68729,32.866771],[-83.68957900000001,32.866782],[-83.689829,32.866748]]},"id":"8844c0a205fffff-17d67fea43c395aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.52711400000001,32.827115]},"id":"8f44c0b8379c6f1-17fae981ce1422aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8379c6f1-17fae981ce1422aa","8f44c0b83623000-17fa402a89cd13c7"]},"geometry":{"type":"LineString","coordinates":[[-83.52711400000001,32.827115],[-83.527817,32.827717],[-83.528087,32.827942],[-83.52819500000001,32.828018],[-83.52828000000001,32.828069],[-83.528339,32.828093],[-83.52843,32.828118],[-83.52849300000001,32.828128],[-83.528609,32.828134],[-83.52869100000001,32.828128],[-83.52879,32.828113],[-83.52922500000001,32.828028],[-83.52975,32.827939],[-83.529875,32.827925],[-83.52996300000001,32.827921],[-83.530095,32.827925],[-83.530359,32.827958],[-83.53056500000001,32.828007],[-83.530771,32.828071],[-83.53094,32.828138]]},"id":"8844c0b837fffff-17dd35144aac2a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83623000-17fa402a89cd13c7","8f44c0b83628148-1397fe390198e3e2"]},"geometry":{"type":"LineString","coordinates":[[-83.53094,32.828138],[-83.531024,32.828181],[-83.53111200000001,32.828241000000006],[-83.531492,32.828578],[-83.53173600000001,32.8288]]},"id":"8944c0b8363ffff-13bfff2b80476d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b83628148-1397fe390198e3e2","8f44c0b836f1461-17df448da8ff3b0c"]},"geometry":{"type":"LineString","coordinates":[[-83.53173600000001,32.8288],[-83.531852,32.828888],[-83.53194900000001,32.828978],[-83.53201,32.829046000000005],[-83.53205700000001,32.829107],[-83.532094,32.829172],[-83.532128,32.829259],[-83.532149,32.829351],[-83.532155,32.829407],[-83.532154,32.829499000000006],[-83.532145,32.829566],[-83.53211200000001,32.829665],[-83.532072,32.829748],[-83.532016,32.829825],[-83.531959,32.829891],[-83.53166800000001,32.830146],[-83.531362,32.830399],[-83.53058700000001,32.831055],[-83.530428,32.831182000000005],[-83.530358,32.831227000000005],[-83.530209,32.831294],[-83.53012600000001,32.831319],[-83.53000800000001,32.831342],[-83.52991800000001,32.831349],[-83.52981700000001,32.831341],[-83.529734,32.831325],[-83.529663,32.831308],[-83.529576,32.831279],[-83.52950600000001,32.831246],[-83.52934900000001,32.831139],[-83.529241,32.831057],[-83.529143,32.830962]]},"id":"8844c0b837fffff-179930097dc5bbd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b836a9771-17fc65d2099056bb","8f44c0b836f1461-17df448da8ff3b0c"]},"geometry":{"type":"LineString","coordinates":[[-83.529143,32.830962],[-83.529078,32.830905],[-83.529015,32.830835],[-83.528959,32.830759],[-83.528923,32.830689],[-83.52883,32.830486],[-83.528688,32.830131],[-83.52862400000001,32.829959]]},"id":"8844c0b837fffff-17bc054694fb0e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.526351,32.827776]},"id":"8f44c0b836b4c98-17980b5ea1da14fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b836b4c98-17980b5ea1da14fa","8f44c0b836a9771-17fc65d2099056bb"]},"geometry":{"type":"LineString","coordinates":[[-83.52862400000001,32.829959],[-83.528565,32.829788],[-83.52852200000001,32.829684],[-83.52847,32.829593],[-83.52842700000001,32.82954],[-83.528273,32.8294],[-83.527866,32.829067],[-83.52678900000001,32.828156],[-83.526679,32.828055],[-83.526351,32.827776]]},"id":"8944c0b836bffff-139b186d7abebe0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928839,32.7813571]},"id":"8f44c0b0352c89a-17be74cb9c523105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03cd6554-13d6f4948f2251a4","8f44c0b0352c89a-17be74cb9c523105"]},"geometry":{"type":"LineString","coordinates":[[-83.6928839,32.7813571],[-83.692767,32.781134],[-83.692778,32.781042],[-83.692805,32.780921],[-83.692836,32.780825],[-83.692887,32.780712],[-83.69297200000001,32.780555]]},"id":"8744c0b03ffffff-17d6f4e67af13964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03cd6554-13d6f4948f2251a4","8f44c0b03cf296d-13b6f23fa3df5687"]},"geometry":{"type":"LineString","coordinates":[[-83.69297200000001,32.780555],[-83.693117,32.7804],[-83.693196,32.780333],[-83.693284,32.780265],[-83.693364,32.780213],[-83.693815,32.779978],[-83.693927,32.779905]]},"id":"8944c0b03cfffff-13fef376fa04f135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69727,32.778976]},"id":"8f44c0b03c76310-17fe6a164ba5855c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c76310-17fe6a164ba5855c","8f44c0b03cf296d-13b6f23fa3df5687"]},"geometry":{"type":"LineString","coordinates":[[-83.693927,32.779905],[-83.694051,32.779815],[-83.694733,32.779238],[-83.69485800000001,32.779147],[-83.694981,32.779077],[-83.695138,32.779012],[-83.69524200000001,32.778979],[-83.69544300000001,32.778948],[-83.69553900000001,32.778942],[-83.69572000000001,32.77894],[-83.69727,32.778976]]},"id":"8844c0b03dfffff-13dfee667f3a7ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669679,32.830197000000005]},"id":"8f44c0b1b8cdd0b-17ffad72a4e2852c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8c5b14-13b6ae4e047d8c42","8f44c0b1b8cdd0b-17ffad72a4e2852c"]},"geometry":{"type":"LineString","coordinates":[[-83.669679,32.830197000000005],[-83.66932800000001,32.829245]]},"id":"8944c0b1b8fffff-13dfade056306666"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8e044d-13deee7108324ae5","8f44c0b1b8c5b14-13b6ae4e047d8c42"]},"geometry":{"type":"LineString","coordinates":[[-83.66932800000001,32.829245],[-83.669296,32.828867],[-83.669272,32.82849]]},"id":"8944c0b1b8fffff-13beee60ca50f66a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8e044d-13deee7108324ae5","8f44c0b1b81d708-1797eea121a7e2a2"]},"geometry":{"type":"LineString","coordinates":[[-83.669272,32.82849],[-83.669292,32.828046],[-83.669285,32.827831],[-83.669195,32.827343]]},"id":"8844c0b1b9fffff-17f6fe754bb14351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66909700000001,32.826799]},"id":"8f44c0b1b803496-17bfeede69fb579a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b81d708-1797eea121a7e2a2","8f44c0b1b803496-17bfeede69fb579a"]},"geometry":{"type":"LineString","coordinates":[[-83.669195,32.827343],[-83.66909700000001,32.826799]]},"id":"8944c0b1b83ffff-17d7eebfc3deac01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9064cd-13b7ad1a849b0610","8f44c0b1b934c40-13dfed06860fd65a"]},"geometry":{"type":"LineString","coordinates":[[-83.66982,32.823093],[-83.669852,32.821727]]},"id":"8944c0b1b93ffff-13f6ed10867dcb1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669891,32.820208]},"id":"8f44c0b18290004-1796acee2bcab2bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b934c40-13dfed06860fd65a","8f44c0b18290004-1796acee2bcab2bf"]},"geometry":{"type":"LineString","coordinates":[[-83.669852,32.821727],[-83.669891,32.820208]]},"id":"8744c0b18ffffff-17f6bcfa5224932c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18290004-1796acee2bcab2bf","8f44c0b18294550-13ffbcff5d7d140c"]},"geometry":{"type":"LineString","coordinates":[[-83.669891,32.820208],[-83.6698635,32.819752900000005]]},"id":"8a44c0b18297fff-1797fcf6b15139d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6691792,32.817436]},"id":"8f44c0b18763cd8-17d7aeab07049f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18294550-13ffbcff5d7d140c","8f44c0b18763cd8-17d7aeab07049f1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6698635,32.819752900000005],[-83.66984090000001,32.819379500000004],[-83.6698391,32.819117600000006],[-83.66973180000001,32.8190094],[-83.66954940000001,32.818964300000005],[-83.66947970000001,32.8179499],[-83.6694705,32.817427900000006],[-83.6691792,32.817436]]},"id":"8844c0b187fffff-13ffadacc0ca4e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601368,32.822222100000005]},"id":"8f44c0b1bd15c99-1396d4be864edf80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd15c99-1396d4be864edf80","8f44c0b1bd14a2e-1397e4b82e209a10"]},"geometry":{"type":"LineString","coordinates":[[-83.6601368,32.822222100000005],[-83.66014700000001,32.822021]]},"id":"8a44c0b1bd17fff-13d6c4bb529cdd58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd14a2e-1397e4b82e209a10","8f44c0b1bd32908-17fec4a06d7e474d"]},"geometry":{"type":"LineString","coordinates":[[-83.66014700000001,32.822021],[-83.660161,32.821891],[-83.660185,32.821396]]},"id":"8944c0b1bd3ffff-13bff4aa63b9b0cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660229,32.820763]},"id":"8f44c0b1aa69724-17f6e484eb084367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa69724-17f6e484eb084367","8f44c0b1bd32908-17fec4a06d7e474d"]},"geometry":{"type":"LineString","coordinates":[[-83.660185,32.821396],[-83.660229,32.820763]]},"id":"8644c0b1fffffff-17b6f492ae17a583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66021400000001,32.820115]},"id":"8f44c0b1aa6c34a-17dfe48e40ea1261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa69724-17f6e484eb084367","8f44c0b1aa6c34a-17dfe48e40ea1261"]},"geometry":{"type":"LineString","coordinates":[[-83.660229,32.820763],[-83.66021400000001,32.820115]]},"id":"8a44c0b1aa6ffff-17b6e4899bff29cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa6c34a-17dfe48e40ea1261","8f44c0b18696c71-139ee46fa61fc36d"]},"geometry":{"type":"LineString","coordinates":[[-83.66021400000001,32.820115],[-83.660263,32.818961]]},"id":"8844c0b1abfffff-13f7c47ef81a47a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18696c71-139ee46fa61fc36d","8f44c0b1ab4c80b-17bfc4592e259e7c"]},"geometry":{"type":"LineString","coordinates":[[-83.660263,32.818961],[-83.66029900000001,32.817788]]},"id":"8844c0b1abfffff-139ed46464d557fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660285,32.816609]},"id":"8f44c0b1ab6149c-13dee461ee952023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab6149c-13dee461ee952023","8f44c0b1ab4c80b-17bfc4592e259e7c"]},"geometry":{"type":"LineString","coordinates":[[-83.66029900000001,32.817788],[-83.660285,32.816609]]},"id":"8944c0b1ab7ffff-17bfd45d8c09515c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab6149c-13dee461ee952023","8f44c0b184ca445-13f6c45428d8f836"]},"geometry":{"type":"LineString","coordinates":[[-83.660285,32.816609],[-83.660307,32.815438]]},"id":"8744c0b18ffffff-13def45b02ec1310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713559,32.887971]},"id":"8f44c0a216288d5-1397e251a8aa3a07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216288d5-1397e251a8aa3a07","8f44c0a2162b36e-139e425a6071804c"]},"geometry":{"type":"LineString","coordinates":[[-83.713559,32.887971],[-83.71354500000001,32.888624]]},"id":"8a44c0a2162ffff-13d7f25609e44794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713513,32.889862]},"id":"8f44c0a2165428c-17b7c26e658a579e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2165428c-17b7c26e658a579e","8f44c0a2162b36e-139e425a6071804c"]},"geometry":{"type":"LineString","coordinates":[[-83.71354500000001,32.888624],[-83.713513,32.889862]]},"id":"8844c0a217fffff-17b6e264664fcf79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19001ad3-1396ff94205ff6e8","8f44c0b19013075-13f7e43160309350"]},"geometry":{"type":"LineString","coordinates":[[-83.688467,32.828395],[-83.688162,32.82837],[-83.686577,32.828319]]},"id":"8944c0b1903ffff-13f7a1e281051761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19464741-1397ef374c018d66","8f44c0b19013075-13f7e43160309350"]},"geometry":{"type":"LineString","coordinates":[[-83.686577,32.828319],[-83.684088,32.828246],[-83.682062,32.828195]]},"id":"8744c0b19ffffff-13bfb9b44667ba32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684928,32.748888]},"id":"8f44c0b060842b2-17f7883802a2ce05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06086a1e-17ffa8fbac673fe5","8f44c0b060842b2-17f7883802a2ce05"]},"geometry":{"type":"LineString","coordinates":[[-83.684928,32.748888],[-83.68461500000001,32.748873]]},"id":"8a44c0b06087fff-17f6d899d6d5e599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06086a1e-17ffa8fbac673fe5","8f44c0b064762a4-17f6f2f0632ac9de"]},"geometry":{"type":"LineString","coordinates":[[-83.68461500000001,32.748873],[-83.680537,32.748647000000005]]},"id":"8744c0b06ffffff-17b78df60f4b1479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70747300000001,32.797365]},"id":"8f44c0b0e516a81-17d7712d6cd6ffae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e5ad0c8-17de71362d39904b","8f44c0b0e516a81-17d7712d6cd6ffae"]},"geometry":{"type":"LineString","coordinates":[[-83.707459,32.798605],[-83.707457,32.798219],[-83.70747300000001,32.797365]]},"id":"8844c0b0e5fffff-17d6f133c73f5fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e516a81-17d7712d6cd6ffae","8f44c0b0326e3ac-17f7f10a7663ffac"]},"geometry":{"type":"LineString","coordinates":[[-83.70747300000001,32.797365],[-83.7075289,32.7953722]]},"id":"8744c0b0effffff-13f6711bfcd86d30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0326e3ac-17f7f10a7663ffac","8f44c0b03261181-179ed1006c01b666"]},"geometry":{"type":"LineString","coordinates":[[-83.7075289,32.7953722],[-83.70754500000001,32.794798]]},"id":"8944c0b0327ffff-17d67105752c0e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03261c5c-17f7f0ffc0b8f628","8f44c0b03261181-179ed1006c01b666"]},"geometry":{"type":"LineString","coordinates":[[-83.70754500000001,32.794798],[-83.70754600000001,32.794739]]},"id":"8b44c0b03261fff-17fe510016145fcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03264a56-17fff0f84dcad672","8f44c0b03261c5c-17f7f0ffc0b8f628"]},"geometry":{"type":"LineString","coordinates":[[-83.70754600000001,32.794739],[-83.707558,32.794131]]},"id":"8a44c0b03267fff-17bff0fc09dffb32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03264a56-17fff0f84dcad672","8f44c0b0334ed45-13d6f0e8a1f15d09"]},"geometry":{"type":"LineString","coordinates":[[-83.707558,32.794131],[-83.707583,32.793041]]},"id":"8944c0b0337ffff-139750f079e719ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03366091-17bed0cbe6e88e90","8f44c0b0334ed45-13d6f0e8a1f15d09"]},"geometry":{"type":"LineString","coordinates":[[-83.707583,32.793041],[-83.70762900000001,32.791182]]},"id":"8944c0b0337ffff-17fff0da4ce8b54c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03366091-17bed0cbe6e88e90","8f44c0b03ac20a8-13bf50aac893a580"]},"geometry":{"type":"LineString","coordinates":[[-83.70762900000001,32.791182],[-83.707682,32.789554]]},"id":"8744c0b03ffffff-13be50bb5b298f8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03ac20a8-13bf50aac893a580","8f44c0b03ac2c43-13f670aa1187ffc3"]},"geometry":{"type":"LineString","coordinates":[[-83.707682,32.789554],[-83.70768310000001,32.789431]]},"id":"8b44c0b03ac2fff-139ed0aa6dfffd61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03af0334-17f6d0a475a68b9f","8f44c0b03ac2c43-13f670aa1187ffc3"]},"geometry":{"type":"LineString","coordinates":[[-83.70768310000001,32.789431],[-83.7076849,32.78922],[-83.7076897,32.7886791],[-83.7076921,32.7884041]]},"id":"8944c0b03afffff-13b770a749a145cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03af0334-17f6d0a475a68b9f","8f44c0b03af091a-17df70a324d40f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.7076921,32.7884041],[-83.7076942,32.7881651]]},"id":"8b44c0b03af0fff-17b7f0a3cdd300b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074558,32.787164100000005]},"id":"8f44c0b03aad0ad-13ffd13823ed3b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b03aad0ad-13ffd13823ed3b63","8f44c0b03af091a-17df70a324d40f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.7076942,32.7881651],[-83.7076966,32.787883],[-83.707699,32.787613],[-83.707676,32.787439],[-83.707553,32.78727],[-83.7074558,32.787164100000005]]},"id":"8844c0b03bfffff-179750bc71ba0f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19942871-17bf7d12ce908d18","8f44c0b19962391-13d6eba5a7204565"]},"geometry":{"type":"LineString","coordinates":[[-83.6960468,32.8204433],[-83.696055,32.820428],[-83.696189,32.820234],[-83.696392,32.819975],[-83.69663100000001,32.8196936]]},"id":"8944c0b1997ffff-17beec61b155babc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6966862,32.8196309]},"id":"8f44c0b1996206a-13bf7b832bd6f1bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19962391-13d6eba5a7204565","8f44c0b1996206a-13bf7b832bd6f1bf"]},"geometry":{"type":"LineString","coordinates":[[-83.69663100000001,32.8196936],[-83.6966862,32.8196309]]},"id":"8b44c0b19962fff-13d6fb94614b5999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970861,32.8191617]},"id":"8f44c0b19964789-139e7a89365406da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19964789-139e7a89365406da","8f44c0b1996206a-13bf7b832bd6f1bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6966862,32.8196309],[-83.69686,32.819435],[-83.6970861,32.8191617]]},"id":"8a44c0b19967fff-139feb04f245ceab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69720600000001,32.8190168]},"id":"8f44c0b19964030-13bfea3e4ebab248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19964789-139e7a89365406da","8f44c0b19964030-13bfea3e4ebab248"]},"geometry":{"type":"LineString","coordinates":[[-83.6970861,32.8191617],[-83.69720600000001,32.8190168]]},"id":"8b44c0b19964fff-13defa63bb546967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19964030-13bfea3e4ebab248","8f44c0b1d2ca310-13fe79b94374da87"]},"geometry":{"type":"LineString","coordinates":[[-83.69720600000001,32.8190168],[-83.69723400000001,32.818983],[-83.697373,32.818779],[-83.69741880000001,32.8187009]]},"id":"8944c0b1d2fffff-13de69f9a1d0f48e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2ca310-13fe79b94374da87","8f44c0b1d2c8595-13d7695d4e22f9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.69741880000001,32.8187009],[-83.69748200000001,32.818593],[-83.69756600000001,32.818437]]},"id":"8a44c0b1d2cffff-1396698a96a45295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6976813,32.8181615]},"id":"8f44c0b1d2ceb0b-1796f9153f97d1c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2ceb0b-1796f9153f97d1c7","8f44c0b1d2c8595-13d7695d4e22f9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.69756600000001,32.818437],[-83.69766,32.818216],[-83.6976813,32.8181615]]},"id":"8a44c0b1d2cffff-17ff7938d2456c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2ea5ab-17bf68aeef989211","8f44c0b1d2ceb0b-1796f9153f97d1c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6976813,32.8181615],[-83.697714,32.818078],[-83.697759,32.817922],[-83.697845,32.817586]]},"id":"8944c0b1d2fffff-17f678dea513bd4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03860491-13be70534f700123","8f44c0b03845cc9-17bf506d899d3296"]},"geometry":{"type":"LineString","coordinates":[[-83.70778,32.78092],[-83.707791,32.780233],[-83.70782200000001,32.780125000000005]]},"id":"8944c0b0387ffff-13b770683cada403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03860592-139fd052a95c34a7","8f44c0b03860491-13be70534f700123"]},"geometry":{"type":"LineString","coordinates":[[-83.70782200000001,32.780125000000005],[-83.707823,32.780054]]},"id":"8c44c0b038605ff-13b7f052f30472e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03860592-139fd052a95c34a7","8f44c0b038662c5-13f7505665303f57"]},"geometry":{"type":"LineString","coordinates":[[-83.707823,32.780054],[-83.707817,32.780008]]},"id":"8a44c0b03867fff-13ff70548d2b994d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b039591b6-13bff062edfaf851","8f44c0b038662c5-13f7505665303f57"]},"geometry":{"type":"LineString","coordinates":[[-83.707817,32.780008],[-83.707795,32.77993],[-83.707797,32.779283]]},"id":"8844c0b039fffff-139f5062d0284f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70780500000001,32.778582]},"id":"8f44c0b0395ca34-17f7d05de30c1920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b039591b6-13bff062edfaf851","8f44c0b0395ca34-17f7d05de30c1920"]},"geometry":{"type":"LineString","coordinates":[[-83.707797,32.779283],[-83.70780500000001,32.778582]]},"id":"8a44c0b0395ffff-17d6d06062b8fa35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03946674-17d7d05de1278a36","8f44c0b0395ca34-17f7d05de30c1920"]},"geometry":{"type":"LineString","coordinates":[[-83.70780500000001,32.778582],[-83.70780500000001,32.777894]]},"id":"8944c0b0397ffff-179ed05ded4b2628"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707807,32.774529]},"id":"8f44c0b002d408a-1796f05ca1657cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b002d408a-1796f05ca1657cc9","8f44c0b03946674-17d7d05de1278a36"]},"geometry":{"type":"LineString","coordinates":[[-83.70780500000001,32.777894],[-83.70780900000001,32.777827],[-83.707825,32.776178],[-83.707806,32.775903],[-83.707807,32.774529]]},"id":"8644c0b07ffffff-13be705944090023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662436,32.839841]},"id":"8f44c0b1b75ca69-1796bf2183475fcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74cb61-1797bbe38743840a","8f44c0b1b75ca69-1796bf2183475fcf"]},"geometry":{"type":"LineString","coordinates":[[-83.662436,32.839841],[-83.66265,32.839841],[-83.663764,32.839864]]},"id":"8944c0b1b77ffff-179ebd8287565b3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b74cb61-1797bbe38743840a","8f44c0b1b76b780-1797bbc8a4f17ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.663764,32.839864],[-83.663807,32.839865]]},"id":"8b44c0b1b76bfff-1797fbd61111d120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665051,32.839891]},"id":"8f44c0b1b39b4a8-17b7f8bf2b1c433e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b39b4a8-17b7f8bf2b1c433e","8f44c0b1b76b780-1797bbc8a4f17ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.663807,32.839865],[-83.665051,32.839891]]},"id":"8744c0b1bffffff-179ffa43e6b47f3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b39b4a8-17b7f8bf2b1c433e","8f44c0b1b39b148-17b7b7fd62622c98"]},"geometry":{"type":"LineString","coordinates":[[-83.665051,32.839891],[-83.665361,32.839897]]},"id":"8b44c0b1b39bfff-17b7f85e469f2192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b39b148-17b7b7fd62622c98","8f44c0b1b23234a-17dff23ecc10a245"]},"geometry":{"type":"LineString","coordinates":[[-83.665361,32.839897],[-83.667714,32.839951]]},"id":"8844c0b1b3fffff-17beb51e103ab6bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6648361,32.827963600000004]},"id":"8f44c0b1bc6da4a-1797f9457543cefb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b898564-17bff8148655d5ce","8f44c0b1bc6da4a-1797f9457543cefb"]},"geometry":{"type":"LineString","coordinates":[[-83.6648361,32.827963600000004],[-83.664894,32.828017],[-83.665324,32.828031]]},"id":"8a44c0b1b89ffff-17b7f8b288cab9e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b898564-17bff8148655d5ce","8f44c0b1b89da46-17b6f617ce073d77"]},"geometry":{"type":"LineString","coordinates":[[-83.665324,32.828031],[-83.66599500000001,32.828035],[-83.666138,32.828043]]},"id":"8944c0b1b8bffff-17b7f7161db16979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b888969-17d7f4174a712e5b","8f44c0b1b89da46-17b6f617ce073d77"]},"geometry":{"type":"LineString","coordinates":[[-83.666138,32.828043],[-83.666843,32.828055],[-83.66695800000001,32.828063]]},"id":"8a44c0b1b88ffff-17bfb51779e11fc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b888969-17d7f4174a712e5b","8f44c0b1b8f604a-17def222abfd0544"]},"geometry":{"type":"LineString","coordinates":[[-83.66695800000001,32.828063],[-83.667759,32.828071]]},"id":"8844c0b1b9fffff-17d7f31cfb062870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65631400000001,32.834837]},"id":"8f44c0b1b453894-13dfee13c5a13b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4e3bb3-13bfd10621ee8814","8f44c0b1b453894-13dfee13c5a13b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.655107,32.834812],[-83.65631400000001,32.834837]]},"id":"8844c0b1b5fffff-13d7df8cf0e577cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65781100000001,32.834865]},"id":"8f44c0b1b4402c4-13deea6c284c3ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4402c4-13deea6c284c3ac2","8f44c0b1b453894-13dfee13c5a13b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.65631400000001,32.834837],[-83.65781100000001,32.834865]]},"id":"8944c0b1b47ffff-13d7ec3ff3608a10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4402c4-13deea6c284c3ac2","8f44c0b1b469daa-13f7e6cac18f2787"]},"geometry":{"type":"LineString","coordinates":[[-83.65781100000001,32.834865],[-83.659298,32.834899]]},"id":"8944c0b1b47ffff-13ffc89b74bac320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b469d0c-13f6c69d28ee6b84","8f44c0b1b469daa-13f7e6cac18f2787"]},"geometry":{"type":"LineString","coordinates":[[-83.659298,32.834899],[-83.65937100000001,32.834896]]},"id":"8c44c0b1b469dff-13f6f6b3faed4548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b09d758-1396c31c4024072c","8f44c0b1b469d0c-13f6c69d28ee6b84"]},"geometry":{"type":"LineString","coordinates":[[-83.65937100000001,32.834896],[-83.66080600000001,32.834926]]},"id":"8744c0b1bffffff-13ffe4dcb87fa0ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662514,32.834955]},"id":"8f44c0b1b0f66ab-1396fef0c336e6de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b09d758-1396c31c4024072c","8f44c0b1b0f66ab-1396fef0c336e6de"]},"geometry":{"type":"LineString","coordinates":[[-83.66080600000001,32.834926],[-83.662091,32.834955],[-83.662514,32.834955]]},"id":"8844c0b1b1fffff-1396d106853f49e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66252700000001,32.834802]},"id":"8f44c0b1b0f6462-13b7fee8a5b5e0de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0f6462-13b7fee8a5b5e0de","8f44c0b1b0e6120-13d7bb4ba2444a20"]},"geometry":{"type":"LineString","coordinates":[[-83.66252700000001,32.834802],[-83.66400700000001,32.834825]]},"id":"8844c0b1b1fffff-13befd1a2f18768f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b0e6120-13d7bb4ba2444a20","8f44c0b1b0545a9-13dfb77e8e5cff9d"]},"geometry":{"type":"LineString","coordinates":[[-83.66400700000001,32.834825],[-83.665564,32.834856]]},"id":"8844c0b1b1fffff-13dff965151679b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b044c66-13f6b3d785dfc7a4","8f44c0b1b0545a9-13dfb77e8e5cff9d"]},"geometry":{"type":"LineString","coordinates":[[-83.665564,32.834856],[-83.66706,32.834896]]},"id":"8944c0b1b07ffff-13f7b5ab066a0bac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66780800000001,32.834913]},"id":"8f44c0b1b063b55-13feb20407d9d6f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b044c66-13f6b3d785dfc7a4","8f44c0b1b063b55-13feb20407d9d6f4"]},"geometry":{"type":"LineString","coordinates":[[-83.66706,32.834896],[-83.66780800000001,32.834913]]},"id":"8944c0b1b07ffff-13f7f2edc83a04b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b063b55-13feb20407d9d6f4","8f44c0b1b06c921-1397f033098b5470"]},"geometry":{"type":"LineString","coordinates":[[-83.66780800000001,32.834913],[-83.668552,32.83493]]},"id":"8944c0b1b07ffff-1397f11b811909d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a28756708-139ee543889b5ce9","8f44c0a28711b36-17b7b907dd3fc2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.72391710000001,32.9222235],[-83.7241237,32.922326000000005],[-83.72467590000001,32.9225362],[-83.72502220000001,32.922721100000004],[-83.7255401,32.923021],[-83.725671,32.923118],[-83.725727,32.923181],[-83.725772,32.923251],[-83.725806,32.923326],[-83.72582600000001,32.923392],[-83.725837,32.923471],[-83.72583300000001,32.923572],[-83.725817,32.923661],[-83.72579400000001,32.923724],[-83.725769,32.923775],[-83.725723,32.923842],[-83.725684,32.923887],[-83.725621,32.923941],[-83.72553900000001,32.923994],[-83.72546,32.92403]]},"id":"8844c0a287fffff-179736083f356390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a28756708-139ee543889b5ce9","8f44c0a2871bc73-13f6b94dc7e817f6"]},"geometry":{"type":"LineString","coordinates":[[-83.72546,32.92403],[-83.72533800000001,32.924064],[-83.72523600000001,32.924076],[-83.72514600000001,32.924075],[-83.72507,32.924066],[-83.724996,32.924048],[-83.724879,32.924003],[-83.72469600000001,32.923901],[-83.724602,32.923856],[-83.72446500000001,32.923802],[-83.724282,32.923747],[-83.72415600000001,32.92372],[-83.72408,32.923682],[-83.72403100000001,32.923651],[-83.723954,32.923594],[-83.723904,32.923547],[-83.72386080000001,32.923477000000005],[-83.7238052,32.923370500000004]]},"id":"8844c0a287fffff-1396a76c74c4b1fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2871bc73-13f6b94dc7e817f6","8f44c0a28711b36-17b7b907dd3fc2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.7238052,32.923370500000004],[-83.7237602,32.9232135],[-83.72370930000001,32.922918100000004],[-83.72364470000001,32.9225821],[-83.72364,32.922479100000004],[-83.72368660000001,32.922373300000004],[-83.72373400000001,32.922332100000006],[-83.72381610000001,32.922275500000005],[-83.72391710000001,32.9222235]]},"id":"8944c0a2873ffff-17ff697fb261ed0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5285275d-13fff1ee4f31869d","8f44c0b528e1449-139df34a0cab3ee8"]},"geometry":{"type":"LineString","coordinates":[[-83.74592960000001,32.8715988],[-83.74601750000001,32.8715892],[-83.7461212,32.871579000000004],[-83.746294,32.8715738],[-83.746486,32.871570000000006]]},"id":"8944c0b528fffff-1395f29c51eab560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5285275d-13fff1ee4f31869d","8f44c0b52842ae6-139dee2a2e2fe4c9"]},"geometry":{"type":"LineString","coordinates":[[-83.746486,32.871570000000006],[-83.74802860000001,32.871597200000004]]},"id":"8844c0b529fffff-1397f00c3407bc56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5286a435-1397ebd8eb224ac4","8f44c0b52842ae6-139dee2a2e2fe4c9"]},"geometry":{"type":"LineString","coordinates":[[-83.74802860000001,32.871597200000004],[-83.7489778,32.871615600000005]]},"id":"8a44c0b52847fff-1397ed018ed3ec26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5286a435-1397ebd8eb224ac4","8f44c0b5049ac12-139fe878d51e68b8"]},"geometry":{"type":"LineString","coordinates":[[-83.7489778,32.871615600000005],[-83.750082,32.871637],[-83.75036030000001,32.8716208]]},"id":"8744c0b52ffffff-139fea28c8d91cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50498c83-13f7f76219e174ee","8f44c0b5049ac12-139fe878d51e68b8"]},"geometry":{"type":"LineString","coordinates":[[-83.75036030000001,32.8716208],[-83.7505876,32.8715897],[-83.75080630000001,32.8715361]]},"id":"8a44c0b5049ffff-1395f7ecc55ecd6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b50498c83-13f7f76219e174ee","8f44c0b50481691-1397e4d2008a2f44"]},"geometry":{"type":"LineString","coordinates":[[-83.75080630000001,32.8715361],[-83.751152,32.871419],[-83.751856,32.871178]]},"id":"8944c0b504bffff-13f7e619f59cae51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5041871c-139fdf064a9fe56b","8f44c0b50481691-1397e4d2008a2f44"]},"geometry":{"type":"LineString","coordinates":[[-83.751856,32.871178],[-83.752632,32.870997],[-83.754098,32.87102],[-83.75423,32.871012]]},"id":"8844c0b505fffff-13bde1f068306d87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75470200000001,32.871021]},"id":"8f44c0b5041d6ea-13b5fddf41a10f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5041871c-139fdf064a9fe56b","8f44c0b5041d6ea-13b5fddf41a10f24"]},"geometry":{"type":"LineString","coordinates":[[-83.75423,32.871012],[-83.754295,32.871022],[-83.75470200000001,32.871021]]},"id":"8a44c0b5041ffff-13b5de72fd3d35b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61058050000001,32.8582623]},"id":"8f44c0a32c60d6e-13fffdbb3eaa779c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c655ad-13ff7d0d2244bf4e","8f44c0a32c60d6e-13fffdbb3eaa779c"]},"geometry":{"type":"LineString","coordinates":[[-83.610859,32.858263],[-83.61058050000001,32.8582623]]},"id":"8a44c0a32c67fff-13ff3d6421574df0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c6635e-13ffbe48913583c7","8f44c0a32c60d6e-13fffdbb3eaa779c"]},"geometry":{"type":"LineString","coordinates":[[-83.61058050000001,32.8582623],[-83.61035430000001,32.8582617]]},"id":"8a44c0a32c67fff-13fffe01e1ad21f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6101493,32.8582612]},"id":"8f44c0a32c66676-13ff7ec8bb01bf04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c6635e-13ffbe48913583c7","8f44c0a32c66676-13ff7ec8bb01bf04"]},"geometry":{"type":"LineString","coordinates":[[-83.61035430000001,32.8582617],[-83.6101493,32.8582612]]},"id":"8b44c0a32c66fff-13ff7e88a98af3ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61005300000001,32.858261]},"id":"8f44c0a32c66685-13ff3f04e02a6e9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c66685-13ff3f04e02a6e9b","8f44c0a32c66676-13ff7ec8bb01bf04"]},"geometry":{"type":"LineString","coordinates":[[-83.6101493,32.8582612],[-83.61005300000001,32.858261]]},"id":"8c44c0a32c667ff-13ff3ee6d7032fb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c70560-139741330f20a409","8f44c0a32c66685-13ff3f04e02a6e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.61005300000001,32.858261],[-83.60916,32.858266]]},"id":"8944c0a32c7ffff-13fff01bf346634e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c70560-139741330f20a409","8f44c0a32c0a180-13ff4576e945e656"]},"geometry":{"type":"LineString","coordinates":[[-83.60916,32.858266],[-83.60741300000001,32.858258]]},"id":"8844c0a32dfffff-13ffc354fe391b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69427800000001,32.844219]},"id":"8f44c0a244a829a-17b6f16447db45a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69470100000001,32.843843]},"id":"8f44c0a244ad1b4-17dff05bee09e132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244ad1b4-17dff05bee09e132","8f44c0a244a829a-17b6f16447db45a9"]},"geometry":{"type":"LineString","coordinates":[[-83.69427800000001,32.844219],[-83.69445900000001,32.844085],[-83.69454300000001,32.844006],[-83.69470100000001,32.843843]]},"id":"8a44c0a244affff-17d6f0db87cf1d45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695019,32.843542]},"id":"8f44c0a24413a8d-179fef952c9bdc3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244ad1b4-17dff05bee09e132","8f44c0a24413a8d-179fef952c9bdc3c"]},"geometry":{"type":"LineString","coordinates":[[-83.69470100000001,32.843843],[-83.694846,32.843701],[-83.695019,32.843542]]},"id":"8844c0a245fffff-17ff6ff94aef4f50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65508200000001,32.845216]},"id":"8f44c0a35c24cad-13b6d115c756700d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c24cad-13b6d115c756700d","8f44c0a35c0014e-17fed2b26f918ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.65508200000001,32.845216],[-83.65442180000001,32.8467584]]},"id":"8844c0a35dfffff-1396d1e41034402c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65362250000001,32.8486153]},"id":"8f44c0a35cf5b5a-13f6d4a5f4ce45e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf5b5a-13f6d4a5f4ce45e2","8f44c0a35c0014e-17fed2b26f918ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.65442180000001,32.8467584],[-83.65362250000001,32.8486153]]},"id":"8844c0a35dfffff-17bed3ac3d7396da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19261248-17b76d74c08fcafd","8f44c0b1926b211-13f6ed60609e5ac3"]},"geometry":{"type":"LineString","coordinates":[[-83.6959226,32.8385644],[-83.6958872,32.8384836],[-83.695886,32.837578],[-83.69589,32.837439]]},"id":"8a44c0b1926ffff-139f7d75e86ea5f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19261248-17b76d74c08fcafd","8f44c0b1934b194-13de6d6de7805976"]},"geometry":{"type":"LineString","coordinates":[[-83.69589,32.837439],[-83.69591100000001,32.836745],[-83.695915,32.836328],[-83.695901,32.836298]]},"id":"8844c0b193fffff-17d7ed6b3ba73c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695908,32.835042]},"id":"8f44c0b19341881-13df6d6980c4287f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19341881-13df6d6980c4287f","8f44c0b1934b194-13de6d6de7805976"]},"geometry":{"type":"LineString","coordinates":[[-83.695901,32.836298],[-83.695908,32.835042]]},"id":"8944c0b1937ffff-13d7ed6bbe07bd80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.651533,32.819977]},"id":"8f44c0b1aa9a292-1797f9bfedf1ddd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a043065-13f7ff11cbd29b8e","8f44c0b1aa9a292-1797f9bfedf1ddd2"]},"geometry":{"type":"LineString","coordinates":[[-83.649354,32.819929],[-83.64952500000001,32.819941],[-83.651533,32.819977]]},"id":"8744c0b1affffff-13fffc68fccb8ff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa9a2a9-1796d99387a6228b","8f44c0b1aa9a292-1797f9bfedf1ddd2"]},"geometry":{"type":"LineString","coordinates":[[-83.651533,32.819977],[-83.651604,32.819978]]},"id":"8b44c0b1aa9afff-1797f9a9b9eca344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa9912b-1796f78d647d5b43","8f44c0b1aa9a2a9-1796d99387a6228b"]},"geometry":{"type":"LineString","coordinates":[[-83.651604,32.819978],[-83.652433,32.819975]]},"id":"8a44c0b1aa9ffff-1797d8907b7bf7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65294420000001,32.8199824]},"id":"8f44c0b1aa8a04d-179fd64de14e2a89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa8a04d-179fd64de14e2a89","8f44c0b1aa9912b-1796f78d647d5b43"]},"geometry":{"type":"LineString","coordinates":[[-83.652433,32.819975],[-83.65294420000001,32.8199824]]},"id":"8944c0b1aabffff-1796f6edafa35b5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa8a04d-179fd64de14e2a89","8f44c0b1aa89800-1796f430231c4720"]},"geometry":{"type":"LineString","coordinates":[[-83.65294420000001,32.8199824],[-83.653811,32.819995]]},"id":"8a44c0b1aa8ffff-179ef53f06f37104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa89800-1796f430231c4720","8f44c0b1aaf0ad3-179fd1be8ce81a36"]},"geometry":{"type":"LineString","coordinates":[[-83.653811,32.819995],[-83.654812,32.820012000000006]]},"id":"8844c0b1abfffff-1796f2f75fb1f858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aaf5651-179ed1184fc13491","8f44c0b1aaf0ad3-179fd1be8ce81a36"]},"geometry":{"type":"LineString","coordinates":[[-83.654812,32.820012000000006],[-83.655078,32.820014]]},"id":"8a44c0b1aaf7fff-179ef16b6186adee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aaf5651-179ed1184fc13491","8f44c0b1aa55aa3-17bfda2d75dc686d"]},"geometry":{"type":"LineString","coordinates":[[-83.655078,32.820014],[-83.65737,32.820059],[-83.65791130000001,32.8200689]]},"id":"8844c0b1abfffff-17bedda2eadeb240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6579617,32.8200698]},"id":"8f44c0b1aa55a02-17bfea0dfb790323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa55aa3-17bfda2d75dc686d","8f44c0b1aa55a02-17bfea0dfb790323"]},"geometry":{"type":"LineString","coordinates":[[-83.65791130000001,32.8200689],[-83.6579617,32.8200698]]},"id":"8c44c0b1aa55bff-17bfda1db41811b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65915580000001,32.8200917]},"id":"8f44c0b1aa458d3-17dfd723a323403c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa55a02-17bfea0dfb790323","8f44c0b1aa458d3-17dfd723a323403c"]},"geometry":{"type":"LineString","coordinates":[[-83.6579617,32.8200698],[-83.65915580000001,32.8200917]]},"id":"8944c0b1aa7ffff-17d6c898d035f842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa6e4ee-17d6c68f6c0c4750","8f44c0b1aa458d3-17dfd723a323403c"]},"geometry":{"type":"LineString","coordinates":[[-83.65915580000001,32.8200917],[-83.65939300000001,32.820096]]},"id":"8944c0b1aa7ffff-17def6d98aa275b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa6c34a-17dfe48e40ea1261","8f44c0b1aa6e4ee-17d6c68f6c0c4750"]},"geometry":{"type":"LineString","coordinates":[[-83.65939300000001,32.820096],[-83.66021400000001,32.820115]]},"id":"8a44c0b1aa6ffff-17d7f58ed79bace1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aa6c34a-17dfe48e40ea1261","8f44c0b1869ebac-17fee277e75fe6c9"]},"geometry":{"type":"LineString","coordinates":[[-83.66021400000001,32.820115],[-83.66106900000001,32.820135]]},"id":"8644c0b1fffffff-17f6e383135486b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1869d922-1796e08acd570676","8f44c0b1869ebac-17fee277e75fe6c9"]},"geometry":{"type":"LineString","coordinates":[[-83.66106900000001,32.820135],[-83.66185800000001,32.820177]]},"id":"8a44c0b1869ffff-17f7c18150fd2800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662745,32.820211]},"id":"8f44c0b1868c071-1797fe606e7729fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1868c071-1797fe606e7729fa","8f44c0b1869d922-1796e08acd570676"]},"geometry":{"type":"LineString","coordinates":[[-83.66185800000001,32.820177],[-83.662216,32.820183],[-83.66258,32.820196],[-83.662745,32.820211]]},"id":"8944c0b186bffff-179fbf75602adda8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eacc2c4-13b7f4268d1d3c05","8f44c0b8eaeac65-13d7b4092f688f06"]},"geometry":{"type":"LineString","coordinates":[[-83.562123,32.841816],[-83.562076,32.842582]]},"id":"8944c0b8eafffff-13d7f417defc20f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8eacc2c4-13b7f4268d1d3c05","8f44c0b88d91795-17fff2b16b7db6a1"]},"geometry":{"type":"LineString","coordinates":[[-83.562076,32.842582],[-83.56206900000001,32.842661],[-83.56206900000001,32.842807],[-83.562093,32.842955],[-83.562134,32.843085],[-83.5622,32.843237],[-83.56232700000001,32.843494],[-83.562427,32.843711],[-83.562476,32.843854],[-83.562561,32.844129],[-83.56259200000001,32.844192],[-83.562673,32.844302]]},"id":"8744c0b8effffff-17dff391959fdd2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88d9e9b0-17d7b27ce4d21f07","8f44c0b88d91795-17fff2b16b7db6a1"]},"geometry":{"type":"LineString","coordinates":[[-83.562673,32.844302],[-83.562757,32.844444]]},"id":"8944c0b88dbffff-1797b297286600ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88d9e9b0-17d7b27ce4d21f07","8f44c0b88d9aa6d-13fff2314bf91499"]},"geometry":{"type":"LineString","coordinates":[[-83.562757,32.844444],[-83.562808,32.844683],[-83.56287800000001,32.845146]]},"id":"8a44c0b88d9ffff-139ff25419f77c49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88ca0d8e-13bff0924d8c86f1","8f44c0b88d9aa6d-13fff2314bf91499"]},"geometry":{"type":"LineString","coordinates":[[-83.56287800000001,32.845146],[-83.56299100000001,32.845325],[-83.563542,32.845871]]},"id":"8844c0b88dfffff-13f7b16af19cc0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564238,32.846578]},"id":"8f44c0b88cacc81-17f7eedf45abf1d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88cacc81-17f7eedf45abf1d0","8f44c0b88ca0d8e-13bff0924d8c86f1"]},"geometry":{"type":"LineString","coordinates":[[-83.563542,32.845871],[-83.564238,32.846578]]},"id":"8944c0b88cbffff-179fffb8c24ee9f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5461992b-179dc4e1219c2d2e","8f44c0b546c0d6e-13dfc6668d65e086"]},"geometry":{"type":"LineString","coordinates":[[-83.76431600000001,32.859212],[-83.76437800000001,32.859152],[-83.764494,32.858981],[-83.764549,32.858876],[-83.764577,32.858762],[-83.764593,32.858437],[-83.76460700000001,32.858323],[-83.764629,32.858221],[-83.764671,32.858103],[-83.764939,32.857462000000005]]},"id":"8844c0b547fffff-13b5f59bd71d7a72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650696,32.857137900000005]},"id":"8f44c0b5461d843-17bff48f890e1bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5461992b-179dc4e1219c2d2e","8f44c0b5461d843-17bff48f890e1bb8"]},"geometry":{"type":"LineString","coordinates":[[-83.764939,32.857462000000005],[-83.7650696,32.857137900000005]]},"id":"8a44c0b5461ffff-17b5c4b85f9b7135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63458100000001,32.840929]},"id":"8f44c0a34448480-17bfa322e0e5fe09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a344418ce-17bfb2dd7c44b8df","8f44c0a34448480-17bfa322e0e5fe09"]},"geometry":{"type":"LineString","coordinates":[[-83.63458100000001,32.840929],[-83.63458100000001,32.840866000000005],[-83.634657,32.840381],[-83.63469210000001,32.8401099]]},"id":"8944c0a3447ffff-17bfa30179c113fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a344418ce-17bfb2dd7c44b8df","8f44c0a34441919-17f7e2d42a7834bb"]},"geometry":{"type":"LineString","coordinates":[[-83.63469210000001,32.8401099],[-83.634707,32.839995]]},"id":"8c44c0a344419ff-179fd2d8c5eec816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34441919-17f7e2d42a7834bb","8f44c0a34441902-17d732d20ba0be50"]},"geometry":{"type":"LineString","coordinates":[[-83.634707,32.839995],[-83.6347104,32.8399683]]},"id":"8d44c0a3444193f-17df92d31f21bf8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634732,32.839799]},"id":"8f44c0a344450e8-17ff62c48689244f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34441902-17d732d20ba0be50","8f44c0a344450e8-17ff62c48689244f"]},"geometry":{"type":"LineString","coordinates":[[-83.6347104,32.8399683],[-83.634732,32.839799]]},"id":"8a44c0a34447fff-179f52cb407d8592"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644471,32.8746474]},"id":"8f44c0a31b70612-13feba3893275c0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664451,32.874429400000004]},"id":"8f44c0a31b7052d-13f6fa36292a8995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a31b7052d-13f6fa36292a8995","8f44c0a31b70612-13feba3893275c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6644471,32.8746474],[-83.66444750000001,32.8745404],[-83.664451,32.874429400000004]]},"id":"8b44c0a31b70fff-13beba37db82afc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a31b7052d-13f6fa36292a8995","8f44c0a31b74ab4-139fb95305fda234"]},"geometry":{"type":"LineString","coordinates":[[-83.664451,32.874429400000004],[-83.66460280000001,32.8743495],[-83.66474810000001,32.874163200000005],[-83.66481440000001,32.874076200000005]]},"id":"8a44c0a31b77fff-1397f9baa499fad4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66539750000001,32.8736677]},"id":"8f44c0a224d8226-179ef7e69bd8d1c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a224d8226-179ef7e69bd8d1c8","8f44c0a31b74ab4-139fb95305fda234"]},"geometry":{"type":"LineString","coordinates":[[-83.66481440000001,32.874076200000005],[-83.66483960000001,32.8740503],[-83.66494370000001,32.873964],[-83.6650891,32.873868300000005],[-83.66532600000001,32.873717],[-83.66539750000001,32.8736677]]},"id":"8844c0a31bfffff-1797b8a032c0940a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6656227,32.8735285]},"id":"8f44c0a224dd782-17d7f759d4454e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a224d8226-179ef7e69bd8d1c8","8f44c0a224dd782-17d7f759d4454e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.66539750000001,32.8736677],[-83.6656227,32.8735285]]},"id":"8a44c0a224dffff-17fef7a031309491"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a224dd152-17fff6e11b8b9887","8f44c0a224dd782-17d7f759d4454e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6656227,32.8735285],[-83.6658159,32.8734198]]},"id":"8b44c0a224ddfff-17b7f71d73162ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66614,32.873254]},"id":"8f44c0a224cecda-1797f6168ac2ec5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a224dd152-17fff6e11b8b9887","8f44c0a224cecda-1797f6168ac2ec5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6658159,32.8734198],[-83.665965,32.873348],[-83.66614,32.873254]]},"id":"8944c0a224fffff-17deb67b325047ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a0ae982-179eeadaad16328e","8f44c0b1a0aca24-17b6e945a8ec79f4"]},"geometry":{"type":"LineString","coordinates":[[-83.64452700000001,32.817531],[-83.64479700000001,32.817574],[-83.64517500000001,32.817597]]},"id":"8a44c0b1a0affff-17b6fa10ac034838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a0aca24-17b6e945a8ec79f4","8f44c0b1a01ccc0-17dee6d18506a96a"]},"geometry":{"type":"LineString","coordinates":[[-83.64517500000001,32.817597],[-83.645655,32.817608],[-83.64618,32.81763]]},"id":"8844c0b1a1fffff-17bef80b8bc5a850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56b748d0-17bdd3b6072c98bc","8f44c0b56b62259-1797d1ca29a2d8ce"]},"geometry":{"type":"LineString","coordinates":[[-83.758864,32.853216],[-83.759089,32.853333],[-83.75921100000001,32.853428],[-83.759319,32.85354],[-83.759377,32.853617],[-83.759414,32.853676],[-83.759505,32.853839],[-83.759651,32.85418]]},"id":"8944c0b56b7ffff-17b7d29549cbdba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56b62259-1797d1ca29a2d8ce","8f44c0b56b4c829-13d7d09ce0d33723"]},"geometry":{"type":"LineString","coordinates":[[-83.759651,32.85418],[-83.75989600000001,32.85476],[-83.76013300000001,32.855334]]},"id":"8944c0b56b7ffff-13ffd132cd495f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56b4c829-13d7d09ce0d33723","8f44c0b56a2d884-1397d66c698d14a7"]},"geometry":{"type":"LineString","coordinates":[[-83.76013300000001,32.855334],[-83.76021,32.855493],[-83.76028600000001,32.855627000000005],[-83.76034200000001,32.855746],[-83.76038100000001,32.855846],[-83.76042100000001,32.85597],[-83.760451,32.856096],[-83.760469,32.856201],[-83.760458,32.856353],[-83.760402,32.856582],[-83.760354,32.856681],[-83.760287,32.856795000000005],[-83.760165,32.856941],[-83.759956,32.857152],[-83.75976800000001,32.85738],[-83.759685,32.857508],[-83.75961500000001,32.857633],[-83.759478,32.857934],[-83.75944100000001,32.858067000000005],[-83.759397,32.858314],[-83.7593997,32.8584021],[-83.75854500000001,32.858328],[-83.758322,32.858246],[-83.75815800000001,32.858098000000005],[-83.758042,32.857975],[-83.758004,32.857852],[-83.757985,32.857688],[-83.75800600000001,32.857492],[-83.758162,32.857247],[-83.758308,32.857059],[-83.75844500000001,32.856845],[-83.758504,32.856642],[-83.758525,32.856413],[-83.758487,32.856183],[-83.75837100000001,32.855986],[-83.758246,32.855822],[-83.75775300000001,32.855428]]},"id":"8844c0b56bfffff-1797f329c8bb9b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b56b748d0-17bdd3b6072c98bc","8f44c0b56a2d884-1397d66c698d14a7"]},"geometry":{"type":"LineString","coordinates":[[-83.75775300000001,32.855428],[-83.757492,32.855221],[-83.757289,32.855041],[-83.757135,32.854812],[-83.757058,32.854607],[-83.757011,32.854336],[-83.75699300000001,32.854082000000005],[-83.757013,32.853886],[-83.757101,32.853682],[-83.757238,32.853485],[-83.75740400000001,32.853347],[-83.75758900000001,32.853233],[-83.757677,32.853203],[-83.757812,32.853167],[-83.757985,32.853136],[-83.758317,32.853104],[-83.75860800000001,32.853154],[-83.758864,32.853216]]},"id":"8844c0b56bfffff-17fdf6e8d61cd2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692948,32.796415]},"id":"8f44c0b036d848e-13ff74a389cf841f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd7574a-17f774b00924f613","8f44c0b036d848e-13ff74a389cf841f"]},"geometry":{"type":"LineString","coordinates":[[-83.69292800000001,32.797416000000005],[-83.692948,32.796415]]},"id":"8844c0b1ddfffff-13be74a9c8854b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b036d56d1-139f74a56e198d23","8f44c0b036d848e-13ff74a389cf841f"]},"geometry":{"type":"LineString","coordinates":[[-83.692948,32.796415],[-83.692936,32.796241],[-83.692932,32.795945],[-83.69294500000001,32.795416]]},"id":"8944c0b036fffff-13d774a9ec90d125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b036d56d1-139f74a56e198d23","8f44c0b036f2b81-17b7748bccd83318"]},"geometry":{"type":"LineString","coordinates":[[-83.69294500000001,32.795416],[-83.692986,32.794431]]},"id":"8944c0b036fffff-17df749893b8cb1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693071,32.792831]},"id":"8f44c0b036acb52-13bf7456aa7336d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b036f2b81-17b7748bccd83318","8f44c0b036acb52-13bf7456aa7336d1"]},"geometry":{"type":"LineString","coordinates":[[-83.692986,32.794431],[-83.692998,32.793638],[-83.693014,32.79317],[-83.693026,32.793017],[-83.693039,32.792946],[-83.693071,32.792831]]},"id":"8844c0b037fffff-13b7f47fbe78a09f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5793172,32.8594098]},"id":"8f44c0b88acb282-17dfaa0ec0831413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88acb282-17dfaa0ec0831413","8f44c0b89d921b1-1797c9a04c27e7d8"]},"geometry":{"type":"LineString","coordinates":[[-83.57949400000001,32.85993],[-83.57946000000001,32.859727],[-83.57941100000001,32.859558],[-83.579379,32.859493],[-83.5793172,32.8594098]]},"id":"8744c0b88ffffff-17f7c9c8bd2d4981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88acb282-17dfaa0ec0831413","8f44c0b88acab0a-1397ea71a9b4770d"]},"geometry":{"type":"LineString","coordinates":[[-83.5793172,32.8594098],[-83.579234,32.859298],[-83.579199,32.859229],[-83.579176,32.859132],[-83.579159,32.858891]]},"id":"8a44c0b88acffff-13b7da54f5446193"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579176,32.858477]},"id":"8f44c0b88aceab6-1397aa6701dca4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88acab0a-1397ea71a9b4770d","8f44c0b88aceab6-1397aa6701dca4bf"]},"geometry":{"type":"LineString","coordinates":[[-83.579159,32.858891],[-83.579166,32.858527],[-83.579176,32.858477]]},"id":"8a44c0b88acffff-1397ca6edadaf418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57992200000001,32.85832]},"id":"8f44c0b88aeb732-13b78894c7ae25e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88aeb732-13b78894c7ae25e0","8f44c0b88aceab6-1397aa6701dca4bf"]},"geometry":{"type":"LineString","coordinates":[[-83.579176,32.858477],[-83.579205,32.858443],[-83.579237,32.858414],[-83.5793,32.858381],[-83.57937700000001,32.858354],[-83.579459,32.858341],[-83.57992200000001,32.85832]]},"id":"8944c0b88afffff-13b7d987e023894c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69353500000001,32.845185]},"id":"8f44c0a24488668-1396f334a3f337a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24488668-1396f334a3f337a0","8f44c0a244a24a4-17d7f4998cc97a8a"]},"geometry":{"type":"LineString","coordinates":[[-83.692964,32.843017],[-83.69314800000001,32.843688],[-83.69353500000001,32.845185]]},"id":"8944c0a244bffff-17fef3e4f92239be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937999,32.8471114]},"id":"8f44c0a26b2d619-17d6f28f1531a1c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b2d619-17d6f28f1531a1c7","8f44c0a24488668-1396f334a3f337a0"]},"geometry":{"type":"LineString","coordinates":[[-83.69353500000001,32.845185],[-83.69358000000001,32.845394],[-83.693664,32.845728],[-83.69370400000001,32.845905],[-83.69372200000001,32.846054],[-83.693797,32.846949],[-83.6937999,32.8471114]]},"id":"8644c0a27ffffff-13f772c9f707bfaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31b83d1e-1397c748678cd5ba","8f44c0a31b9578d-17d7e9204d8a3604"]},"geometry":{"type":"LineString","coordinates":[[-83.658342,32.873939],[-83.658691,32.874035],[-83.658792,32.874074],[-83.658877,32.874122],[-83.65898200000001,32.874191],[-83.659097,32.874274]]},"id":"8944c0a31bbffff-139ff82b7a59478b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31a104eb-17ffc44c03172466","8f44c0a31b83d1e-1397c748678cd5ba"]},"geometry":{"type":"LineString","coordinates":[[-83.659097,32.874274],[-83.65934100000001,32.874523],[-83.65962,32.874817],[-83.65971800000001,32.874944],[-83.659791,32.875056],[-83.65993900000001,32.875358],[-83.66032,32.876278]]},"id":"8844c0a31bfffff-13f7f59378034331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a04db0d13-17fefe430af08263","8f44c0a31a104eb-17ffc44c03172466"]},"geometry":{"type":"LineString","coordinates":[[-83.66032,32.876278],[-83.66064,32.877034],[-83.661263,32.878622],[-83.661482,32.879196],[-83.66153700000001,32.879326],[-83.66165500000001,32.879494],[-83.66177300000001,32.879617],[-83.66193600000001,32.879731],[-83.66220700000001,32.879882],[-83.662458,32.880029],[-83.662598,32.880147],[-83.66279200000001,32.880347]]},"id":"8844c0a31bfffff-13def1cdf674c7cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a04db0d13-17fefe430af08263","8f44c0a04da125e-139eb9a8e4447a24"]},"geometry":{"type":"LineString","coordinates":[[-83.66279200000001,32.880347],[-83.662879,32.880516],[-83.66303400000001,32.880763],[-83.66316300000001,32.880955],[-83.66325300000001,32.881076],[-83.663318,32.881141],[-83.66338300000001,32.881192],[-83.663464,32.881236],[-83.663572,32.881272],[-83.663668,32.881293],[-83.663757,32.881297],[-83.66395200000001,32.881287],[-83.66467700000001,32.881216]]},"id":"8944c0a04dbffff-13b7bc4a4efef3f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a04da125e-139eb9a8e4447a24","8f44c0a04d1170b-139fb6e56ebac804"]},"geometry":{"type":"LineString","coordinates":[[-83.66467700000001,32.881216],[-83.665028,32.881189],[-83.665389,32.881193],[-83.665616,32.881207],[-83.66580900000001,32.881225]]},"id":"8844c0a04dfffff-13fef8471d0fa130"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a04d0cc61-139ef2a409ca91a5","8f44c0a04d1170b-139fb6e56ebac804"]},"geometry":{"type":"LineString","coordinates":[[-83.66580900000001,32.881225],[-83.666077,32.881256],[-83.666407,32.881306],[-83.666914,32.881369],[-83.66736800000001,32.88142],[-83.667552,32.881431]]},"id":"8944c0a04d3ffff-13d6f4c539bd55b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67431300000001,32.806015]},"id":"8f44c0b1881e644-13ffe2226824f3f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67433700000001,32.803984]},"id":"8f44c0b188366d0-17fea2136bddd03c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1881e644-13ffe2226824f3f5","8f44c0b188366d0-17fea2136bddd03c"]},"geometry":{"type":"LineString","coordinates":[[-83.67431300000001,32.806015],[-83.67433700000001,32.803984]]},"id":"8944c0b1883ffff-17f6b21aef80023d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189acd40-13bfa208c5c77c9c","8f44c0b188366d0-17fea2136bddd03c"]},"geometry":{"type":"LineString","coordinates":[[-83.67433700000001,32.803984],[-83.67435400000001,32.802874],[-83.67435400000001,32.802424]]},"id":"8844c0b189fffff-1396a20c8696ede5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b189acd40-13bfa208c5c77c9c","8f44c0b189a581e-17fee2618ba0769b"]},"geometry":{"type":"LineString","coordinates":[[-83.67435400000001,32.802424],[-83.674355,32.801957],[-83.674339,32.801889],[-83.674305,32.801809],[-83.67426400000001,32.80176],[-83.67421200000001,32.80171]]},"id":"8944c0b189bffff-13d6f215de37c0f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72760600000001,32.903866]},"id":"8f44c0a2c6a1826-13d6600644cf0758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c6a1826-13d6600644cf0758","8f44c0a2c689356-179f20500281db0b"]},"geometry":{"type":"LineString","coordinates":[[-83.72760600000001,32.903866],[-83.727627,32.903988000000005],[-83.727636,32.904096],[-83.72762200000001,32.904173],[-83.72752100000001,32.904488],[-83.727486,32.904612],[-83.727478,32.904781],[-83.727474,32.905648],[-83.72748800000001,32.906213]]},"id":"8844c0a2c7fffff-13bf30411ea12f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72751000000001,32.907401]},"id":"8f44c0a2c6d339c-13f7a042462217c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c689356-179f20500281db0b","8f44c0a2c6d339c-13f7a042462217c5"]},"geometry":{"type":"LineString","coordinates":[[-83.72748800000001,32.906213],[-83.72751000000001,32.907401]]},"id":"8944c0a2c6fffff-139660492b780914"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260d5cd8-13f793afad861450","8f44c0a260d3554-13deb5368f1511f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6796056,32.852470600000004],[-83.680231,32.8519]]},"id":"8a44c0a260d7fff-13b7d4731b7e561f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260f376e-13ded3230a0938fc","8f44c0a260d5cd8-13f793afad861450"]},"geometry":{"type":"LineString","coordinates":[[-83.680231,32.8519],[-83.68033000000001,32.851822],[-83.680452,32.851699],[-83.680456,32.851658]]},"id":"8944c0a260fffff-13bff360710390af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a260f376e-13ded3230a0938fc","8f44c0a2608d0b5-17f7f5058aef1c7e"]},"geometry":{"type":"LineString","coordinates":[[-83.680456,32.851658],[-83.68037500000001,32.851477],[-83.68029700000001,32.851374],[-83.680109,32.851221],[-83.679889,32.851052],[-83.67984,32.851011],[-83.67968400000001,32.850879]]},"id":"8844c0a261fffff-13dfd3fe35665e24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328622e0-179f6831ca420442","8f44c0a32861558-17b7e6ac6f374d3f"]},"geometry":{"type":"LineString","coordinates":[[-83.620025,32.85955],[-83.61998100000001,32.859538],[-83.619933,32.859533],[-83.6195385,32.8595367],[-83.61940200000001,32.859538]]},"id":"8a44c0a32867fff-179f376e9341c17c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328622e0-179f6831ca420442","8f44c0a32871781-17b7f9ebd5827f4c"]},"geometry":{"type":"LineString","coordinates":[[-83.61940200000001,32.859538],[-83.6186947,32.859551700000004]]},"id":"8944c0a3287ffff-179fb90ec8900f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178672,32.859537]},"id":"8f44c0a32854c61-179fabf101834bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32854c61-179fabf101834bca","8f44c0a32871781-17b7f9ebd5827f4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6186947,32.859551700000004],[-83.6178672,32.859537]]},"id":"8944c0a3287ffff-179f6aee6bc978fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642065,32.813674]},"id":"8f44c0b1acca811-17b6f0dd6696fee4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642082,32.813062]},"id":"8f44c0b1acc178b-13b7f0d2c60a4464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acc178b-13b7f0d2c60a4464","8f44c0b1acca811-17b6f0dd6696fee4"]},"geometry":{"type":"LineString","coordinates":[[-83.642065,32.813674],[-83.642082,32.813062]]},"id":"8944c0b1acfffff-13f7f0d81ba29b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acc178b-13b7f0d2c60a4464","8f44c0b1acc4aa1-139ef0b60224275d"]},"geometry":{"type":"LineString","coordinates":[[-83.642082,32.813062],[-83.642121,32.812323],[-83.642128,32.812199]]},"id":"8a44c0b1acc7fff-1396f0c48e00e1bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acc4aa1-139ef0b60224275d","8f44c0b1ace6083-17f6f09f8346c0b2"]},"geometry":{"type":"LineString","coordinates":[[-83.642128,32.812199],[-83.64216400000001,32.811344000000005]]},"id":"8944c0b1acfffff-17fff0aac9b90fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a355a1c98-179fe31d654d6105","8f44c0a35513990-17fee0968c71e739"]},"geometry":{"type":"LineString","coordinates":[[-83.64769700000001,32.850499],[-83.647817,32.85053],[-83.648401,32.850609],[-83.64873200000001,32.850657000000005]]},"id":"8844c0a355fffff-17bef1daac7905cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649932,32.850817]},"id":"8f44c0a35503c1d-17d6fda88b67ff84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35503c1d-17d6fda88b67ff84","8f44c0a35513990-17fee0968c71e739"]},"geometry":{"type":"LineString","coordinates":[[-83.64873200000001,32.850657000000005],[-83.649932,32.850817]]},"id":"8944c0a3553ffff-179eff1f872497b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35503c1d-17d6fda88b67ff84","8f44c0a3550c925-17befb080dda5c9f"]},"geometry":{"type":"LineString","coordinates":[[-83.649932,32.850817],[-83.651008,32.850957]]},"id":"8944c0a3553ffff-17fefc584756401e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3550c925-17befb080dda5c9f","8f44c0a35cdb119-13b7f6f6211ba31d"]},"geometry":{"type":"LineString","coordinates":[[-83.651008,32.850957],[-83.652136,32.851097],[-83.652675,32.851151]]},"id":"8844c0a355fffff-17f7f8ff6918c60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cdb119-13b7f6f6211ba31d","8f44c0a35cca6d5-13bff4fc87453bb6"]},"geometry":{"type":"LineString","coordinates":[[-83.652675,32.851151],[-83.653484,32.851171]]},"id":"8944c0a35cfffff-13b7f5f958528a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cca26d-13b7d43b60d39b7e","8f44c0a35cca6d5-13bff4fc87453bb6"]},"geometry":{"type":"LineString","coordinates":[[-83.653484,32.851171],[-83.65379300000001,32.85118]]},"id":"8a44c0a35ccffff-13b6f49bff0aa934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a351b2a48-13bfd0d06d967b3c","8f44c0a35cca26d-13b7d43b60d39b7e"]},"geometry":{"type":"LineString","coordinates":[[-83.65379300000001,32.85118],[-83.65519300000001,32.851174]]},"id":"8744c0a35ffffff-13b7f285ee18598d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648274,32.806857]},"id":"8f44c0b1a9b6693-13ffe1b4c6b996eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a9a5c8a-17b6fc5203b4793e","8f44c0b1a9b6693-13ffe1b4c6b996eb"]},"geometry":{"type":"LineString","coordinates":[[-83.648274,32.806857],[-83.648407,32.806872000000006],[-83.65048,32.806919]]},"id":"8744c0b1affffff-1796df03adbc4558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652809,32.806965000000005]},"id":"8f44c0b1a90446d-17d7f6a26d355d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a9a5c8a-17b6fc5203b4793e","8f44c0b1a90446d-17d7f6a26d355d14"]},"geometry":{"type":"LineString","coordinates":[[-83.65048,32.806919],[-83.65115,32.806938],[-83.652648,32.806969],[-83.652809,32.806965000000005]]},"id":"8844c0b1a9fffff-17b6d97a352bb0de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d23248d-17b5dc5b2603cb62","8f44c0a2d31155a-1395f9cae5b25677"]},"geometry":{"type":"LineString","coordinates":[[-83.755323,32.919764],[-83.75535,32.919662],[-83.75537,32.919623],[-83.755407,32.919569],[-83.755454,32.919513],[-83.755519,32.919452],[-83.755627,32.919376],[-83.75574800000001,32.919303],[-83.755851,32.919235],[-83.755896,32.919199],[-83.755966,32.919119],[-83.75603100000001,32.919019],[-83.756073,32.918936],[-83.756118,32.918801],[-83.75637300000001,32.917897]]},"id":"8844c0a2d3fffff-1795dad4a1d5d9fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d31155a-1395f9cae5b25677","8f44c0a2daa0632-13b7f38d61273358"]},"geometry":{"type":"LineString","coordinates":[[-83.75637300000001,32.917897],[-83.756466,32.917569],[-83.756551,32.917321],[-83.756617,32.917146],[-83.756709,32.916943],[-83.75748,32.915385],[-83.75757200000001,32.9152],[-83.757772,32.914904],[-83.757998,32.914651],[-83.75814700000001,32.914501],[-83.75892900000001,32.913821]]},"id":"8744c0a2dffffff-17d7d73061c9ad8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2db8d68d-17b5d0b1850cd525","8f44c0a2daa0632-13b7f38d61273358"]},"geometry":{"type":"LineString","coordinates":[[-83.75892900000001,32.913821],[-83.759968,32.912917],[-83.76010000000001,32.912796]]},"id":"8844c0a2dbfffff-17f7d21e94258e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d86125e-13f7fdf81882425b","8f44c0a2db8d68d-17b5d0b1850cd525"]},"geometry":{"type":"LineString","coordinates":[[-83.76010000000001,32.912796],[-83.760681,32.91228],[-83.760823,32.912135],[-83.76093800000001,32.911996],[-83.761036,32.911848],[-83.76106800000001,32.911788],[-83.761125,32.911651],[-83.761162,32.911526],[-83.761199,32.911332],[-83.761211,32.911191],[-83.76121300000001,32.910981],[-83.761206,32.910544],[-83.761211,32.909458],[-83.76121590000001,32.9081915]]},"id":"8744c0a2dffffff-13f7fe67d74f2d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710863,32.797438]},"id":"8f44c0b0ecd3708-17fec8e6a52f990c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ecd3708-17fec8e6a52f990c","8f44c0b0e576b5d-17fec8fc88ecb77a"]},"geometry":{"type":"LineString","coordinates":[[-83.710828,32.798660000000005],[-83.710863,32.797438]]},"id":"8744c0b0effffff-17fee8f1956b96db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71088900000001,32.797083]},"id":"8f44c0b0ecd068e-17b6e8d661f30cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ecd068e-17b6e8d661f30cd8","8f44c0b0ecd3708-17fec8e6a52f990c"]},"geometry":{"type":"LineString","coordinates":[[-83.710863,32.797438],[-83.71088900000001,32.797083]]},"id":"8a44c0b0ecd7fff-179fd8de8b1909e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62492300000001,32.840121]},"id":"8f44c0a3685d24c-17b7bab7251475fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62546400000001,32.839504600000005]},"id":"8f44c0a36841222-13b779650bbcf7f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841222-13b779650bbcf7f9","8f44c0a3685d24c-17b7bab7251475fe"]},"geometry":{"type":"LineString","coordinates":[[-83.62492300000001,32.840121],[-83.62546400000001,32.839504600000005]]},"id":"8944c0a3687ffff-17f71a0e1255924b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841222-13b779650bbcf7f9","8f44c0a36841a19-13f7792cf9e614c0"]},"geometry":{"type":"LineString","coordinates":[[-83.62546400000001,32.839504600000005],[-83.62555370000001,32.8394023]]},"id":"8b44c0a36841fff-13977948fe7033e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62571100000001,32.8392201]},"id":"8f44c0a3686a554-139798caa781f365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686a554-139798caa781f365","8f44c0a36841a19-13f7792cf9e614c0"]},"geometry":{"type":"LineString","coordinates":[[-83.62555370000001,32.8394023],[-83.62571100000001,32.8392201]]},"id":"8944c0a3687ffff-13bf98fbcde482fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6259536,32.838939100000005]},"id":"8f44c0a3686e763-13d7f83307a79f73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686a554-139798caa781f365","8f44c0a3686e763-13d7f83307a79f73"]},"geometry":{"type":"LineString","coordinates":[[-83.62571100000001,32.8392201],[-83.6259536,32.838939100000005]]},"id":"8a44c0a3686ffff-13bfd87edd2de769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62608800000001,32.838785]},"id":"8f44c0a3686eb94-13f7b7df033ba979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686eb94-13f7b7df033ba979","8f44c0a3686e763-13d7f83307a79f73"]},"geometry":{"type":"LineString","coordinates":[[-83.6259536,32.838939100000005],[-83.626029,32.838852700000004],[-83.62608800000001,32.838785]]},"id":"8b44c0a3686efff-13b7d8090dfc53ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e9946e9-1397f38801a44931","8f44c0b1ed60c44-13fff6e868b1e901"]},"geometry":{"type":"LineString","coordinates":[[-83.652697,32.786579],[-83.653022,32.786591],[-83.65367300000001,32.786596],[-83.65408000000001,32.786591]]},"id":"8744c0b1effffff-1397f53845c7a17d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e9946e9-1397f38801a44931","8f44c0b1e985996-139fcf2f87d4135b"]},"geometry":{"type":"LineString","coordinates":[[-83.65408000000001,32.786591],[-83.655084,32.786617],[-83.65586,32.786626000000005]]},"id":"8944c0b1e9bffff-1396d15bd7555354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b1299b3-13bfa7ea073cb823","8f44c0b8b8d164d-13dfe65461058165"]},"geometry":{"type":"LineString","coordinates":[[-83.56773700000001,32.871702],[-83.567088,32.872268000000005]]},"id":"8744c0b8bffffff-13ffa71f300605dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56686400000001,32.872466]},"id":"8f44c0b8b12940e-17bfe87605c9c90f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b12940e-17bfe87605c9c90f","8f44c0b8b1299b3-13bfa7ea073cb823"]},"geometry":{"type":"LineString","coordinates":[[-83.567088,32.872268000000005],[-83.56686400000001,32.872466]]},"id":"8b44c0b8b129fff-13ffe830030f452f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b7aa660-13b6cab409fd0d7a","8f44c0b1b680774-17deced621d19f58"]},"geometry":{"type":"LineString","coordinates":[[-83.656003,32.8408],[-83.656508,32.840242],[-83.657154,32.8395],[-83.657274,32.83937],[-83.65744500000001,32.839123],[-83.65757,32.838863],[-83.657652,32.838602],[-83.65768100000001,32.838416],[-83.657696,32.838068]]},"id":"8844c0b1b7fffff-13bffc5485971095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b7aa660-13b6cab409fd0d7a","8f44c0b1b7a0854-17b6ea96a6743d64"]},"geometry":{"type":"LineString","coordinates":[[-83.657696,32.838068],[-83.65772000000001,32.837263],[-83.65774300000001,32.836609]]},"id":"8944c0b1b7bffff-17fedaa5fa73e629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657764,32.835977]},"id":"8f44c0b1b44a623-1397ea8982149e7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b7a0854-17b6ea96a6743d64","8f44c0b1b44a623-1397ea8982149e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.65774300000001,32.836609],[-83.657764,32.835977]]},"id":"8744c0b1bffffff-13dfea90178ce2da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4402c4-13deea6c284c3ac2","8f44c0b1b44a623-1397ea8982149e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.657764,32.835977],[-83.657781,32.835901],[-83.657803,32.835419],[-83.65781100000001,32.834865]]},"id":"8944c0b1b47ffff-13beca743b9add82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344450e8-17ff62c48689244f","8f44c0a34440b96-17ff43b5c5c8f9bf"]},"geometry":{"type":"LineString","coordinates":[[-83.63434600000001,32.839802],[-83.63448600000001,32.839784],[-83.634732,32.839799]]},"id":"8a44c0a34447fff-17f7033d51fb064e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63722100000001,32.839992]},"id":"8f44c0a3409d444-17f7fcb0e7c06725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3409d444-17f7fcb0e7c06725","8f44c0a344450e8-17ff62c48689244f"]},"geometry":{"type":"LineString","coordinates":[[-83.634732,32.839799],[-83.63722100000001,32.839992]]},"id":"8744c0a34ffffff-17b6ffbab113ff9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662563,32.833537]},"id":"8f44c0b1b0ac105-17b6bed22432e2ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b00358a-17b7bb122dbbec75","8f44c0b1b0ac105-17b6bed22432e2ac"]},"geometry":{"type":"LineString","coordinates":[[-83.662563,32.833537],[-83.66409900000001,32.833564]]},"id":"8844c0b1b1fffff-17bfbcf229fd4ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b00358a-17b7bb122dbbec75","8f44c0b1b02bc54-17dff7676231b397"]},"geometry":{"type":"LineString","coordinates":[[-83.66409900000001,32.833564],[-83.66560100000001,32.833602]]},"id":"8944c0b1b03ffff-17bff93cc68316bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b02bc54-17dff7676231b397","8f44c0b1b15b904-17def3c06685ba1a"]},"geometry":{"type":"LineString","coordinates":[[-83.66560100000001,32.833602],[-83.667097,32.83363]]},"id":"8844c0b1b1fffff-17d6b593efeb32d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667854,32.83365]},"id":"8f44c0b1b14a09c-17f7f1e74dd67267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b14a09c-17f7f1e74dd67267","8f44c0b1b15b904-17def3c06685ba1a"]},"geometry":{"type":"LineString","coordinates":[[-83.667097,32.83363],[-83.667854,32.83365]]},"id":"8944c0b1b17ffff-17f7b2d3d6a7b77f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b14a09c-17f7f1e74dd67267","8f44c0b1b148369-17f6f016e0b86e20"]},"geometry":{"type":"LineString","coordinates":[[-83.667854,32.83365],[-83.668597,32.833671]]},"id":"8a44c0b1b14ffff-17fff0ff1a161162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668926,32.833663]},"id":"8f44c0b1b149976-17ffef4949ae2a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b148369-17f6f016e0b86e20","8f44c0b1b149976-17ffef4949ae2a7b"]},"geometry":{"type":"LineString","coordinates":[[-83.668597,32.833671],[-83.668926,32.833663]]},"id":"8a44c0b1b14ffff-17f7efb01779accc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70243500000001,32.777016]},"id":"8f44c0b03983a52-13b75d7a2ce7d4df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03983a52-13b75d7a2ce7d4df","8f44c0b039b04cd-17f6df93077a55bb"]},"geometry":{"type":"LineString","coordinates":[[-83.701576,32.775502],[-83.70099900000001,32.776165],[-83.700957,32.776228],[-83.70093700000001,32.776277],[-83.70092600000001,32.77633],[-83.70092600000001,32.776386],[-83.70093200000001,32.776437],[-83.70095,32.776488],[-83.70097600000001,32.776539],[-83.70102100000001,32.776589],[-83.701075,32.776637],[-83.701476,32.776882],[-83.701605,32.776949],[-83.701722,32.776989],[-83.70184400000001,32.777006],[-83.70243500000001,32.777016]]},"id":"8944c0b039bffff-13dfffe15abc5614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03983a52-13b75d7a2ce7d4df","8f44c0b039ab11b-13be5abba0582619"]},"geometry":{"type":"LineString","coordinates":[[-83.70243500000001,32.777016],[-83.703006,32.777026],[-83.703559,32.777034]]},"id":"8944c0b039bffff-13befc1ae1571f12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7042108,32.7770454]},"id":"8f44c0b039a9ac1-13b7792445b9da27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b039a9ac1-13b7792445b9da27","8f44c0b039ab11b-13be5abba0582619"]},"geometry":{"type":"LineString","coordinates":[[-83.703559,32.777034],[-83.7042108,32.7770454]]},"id":"8a44c0b039affff-13b7d9eff9ed30ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.769682,32.855055]},"id":"8f44c0b54761310-13bdf94cc3798f74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b547456b3-139dfb6e6f3f217c","8f44c0b54761310-13bdf94cc3798f74"]},"geometry":{"type":"LineString","coordinates":[[-83.769682,32.855055],[-83.76959000000001,32.855098000000005],[-83.769343,32.855251],[-83.76903200000001,32.855463],[-83.768861,32.855593],[-83.768809,32.855643]]},"id":"8944c0b5477ffff-13d7fa64991d3900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b547456b3-139dfb6e6f3f217c","8f44c0b54641aa4-13b5bcfdc60e5308"]},"geometry":{"type":"LineString","coordinates":[[-83.768809,32.855643],[-83.768668,32.855818],[-83.768586,32.855958],[-83.768544,32.856048],[-83.76851,32.856133],[-83.76846400000001,32.856285],[-83.76845300000001,32.856344],[-83.768448,32.856462],[-83.768449,32.856586],[-83.76846300000001,32.856912],[-83.768563,32.858099],[-83.768566,32.858241],[-83.768561,32.858339],[-83.768544,32.858432],[-83.768521,32.858497],[-83.768456,32.85861],[-83.76817000000001,32.858964]]},"id":"8844c0b547fffff-17bdfc2ee5177902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b54641aa4-13b5bcfdc60e5308","8f44c0b54658161-17b5ffbbae6cc3d5"]},"geometry":{"type":"LineString","coordinates":[[-83.76817000000001,32.858964],[-83.76796200000001,32.859225],[-83.76788400000001,32.859299],[-83.767797,32.859375],[-83.767643,32.859471],[-83.767483,32.859516],[-83.767393,32.859533],[-83.767047,32.859578]]},"id":"8944c0b5467ffff-17b7be39f78249ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.598365,32.850467]},"id":"8f44c0b8da93c6e-17f7fb8deac55fe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.598149,32.854447]},"id":"8f44c0b8d3186e3-13bf7c14ea5f1829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da93c6e-17f7fb8deac55fe5","8f44c0b8d3186e3-13bf7c14ea5f1829"]},"geometry":{"type":"LineString","coordinates":[[-83.598365,32.850467],[-83.59842400000001,32.850603],[-83.59856400000001,32.851039],[-83.59863,32.851261],[-83.598664,32.851433],[-83.59867600000001,32.851588],[-83.598667,32.852095000000006],[-83.59868900000001,32.853074],[-83.598691,32.853637],[-83.598692,32.853765],[-83.59867600000001,32.853858],[-83.598653,32.853948],[-83.59861400000001,32.854045],[-83.598556,32.854135],[-83.59840200000001,32.854264],[-83.598149,32.854447]]},"id":"8744c0b8dffffff-1397dafa59884934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59716300000001,32.855086]},"id":"8f44c0b8d23629e-13bfde7d2023385b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3186e3-13bf7c14ea5f1829","8f44c0b8d23629e-13bfde7d2023385b"]},"geometry":{"type":"LineString","coordinates":[[-83.598149,32.854447],[-83.59716300000001,32.855086]]},"id":"8844c0b8d3fffff-13f75d490d573ed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595123,32.854156]},"id":"8f44c0b8d38201b-17f7e37821fa3f19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d38201b-17f7e37821fa3f19","8f44c0b8d23629e-13bfde7d2023385b"]},"geometry":{"type":"LineString","coordinates":[[-83.59716300000001,32.855086],[-83.596818,32.855151],[-83.59663300000001,32.855157000000005],[-83.595826,32.855136],[-83.59561400000001,32.855105],[-83.595427,32.855041],[-83.595236,32.854954],[-83.59504100000001,32.854809],[-83.594943,32.854681],[-83.59488,32.854556],[-83.594865,32.854455],[-83.59489500000001,32.854368],[-83.59492200000001,32.854309],[-83.595123,32.854156]]},"id":"8844c0b8d3fffff-13d771e25770ee20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56660620000001,32.7825605]},"id":"8f44c0ba360919d-13bff9172e9715d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0ba3603833-17ffab6182a5a69a","8f44c0ba360919d-13bff9172e9715d5"]},"geometry":{"type":"LineString","coordinates":[[-83.56660620000001,32.7825605],[-83.56638140000001,32.7823739],[-83.5661992,32.782160600000005],[-83.5660536,32.781973900000004],[-83.56581680000001,32.781677800000004],[-83.565668,32.781461]]},"id":"8944c0ba363ffff-17f7ea4bb3105773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0ba3603833-17ffab6182a5a69a","8f44c0ba378d8f6-13dfee9e4b964266"]},"geometry":{"type":"LineString","coordinates":[[-83.565668,32.781461],[-83.565605,32.781391],[-83.56434200000001,32.77977]]},"id":"8844c0ba37fffff-13ffad0166387a66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0ba34eed43-13bfb5390b4c8ce9","8f44c0ba378d8f6-13dfee9e4b964266"]},"geometry":{"type":"LineString","coordinates":[[-83.56434200000001,32.77977],[-83.56294940000001,32.777999200000004],[-83.56258000000001,32.7774919],[-83.56225930000001,32.7770226],[-83.5620061,32.7766514],[-83.56179850000001,32.7763952],[-83.5616368,32.7762394]]},"id":"8744c0ba3ffffff-179ff1edc7f0f526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1e23302a-13f6ce254a7982e9","8f44c0b1e759448-1397dbed98ea0eaa"]},"geometry":{"type":"LineString","coordinates":[[-83.65064070000001,32.803406800000005],[-83.651077,32.803413],[-83.651223,32.803417],[-83.652501,32.803449],[-83.65336400000001,32.803471],[-83.65415700000001,32.803479],[-83.65438400000001,32.803466],[-83.654567,32.803441],[-83.65628600000001,32.802948]]},"id":"8744c0b1effffff-13fff4fa7b3523ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6580742,32.8029285]},"id":"8f44c0b1e221026-13f6d9c7adf97921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1e23302a-13f6ce254a7982e9","8f44c0b1e221026-13f6d9c7adf97921"]},"geometry":{"type":"LineString","coordinates":[[-83.65628600000001,32.802948],[-83.65650600000001,32.802917],[-83.656806,32.802916],[-83.6580742,32.8029285]]},"id":"8944c0b1e23ffff-13f6ebf70a9ce88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1e221026-13f6d9c7adf97921","8f44c0b1e34255d-13f6e5b5ecd787a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6580742,32.8029285],[-83.65974100000001,32.802945]]},"id":"8844c0b1e3fffff-13ffc7bece431fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1e3684a2-13f6c1a0e321a696","8f44c0b1e34255d-13f6e5b5ecd787a0"]},"geometry":{"type":"LineString","coordinates":[[-83.65974100000001,32.802945],[-83.660111,32.802951],[-83.661088,32.802959],[-83.66141300000001,32.802954]]},"id":"8944c0b1e37ffff-13f6d3ab64ab0eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1e3684a2-13f6c1a0e321a696","8f44c0b18d9ad10-1396bf31242d4593"]},"geometry":{"type":"LineString","coordinates":[[-83.66141300000001,32.802954],[-83.662411,32.802973]]},"id":"8744c0b1effffff-13fef06901871221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66332530000001,32.8029929]},"id":"8f44c0b18d9d471-139ebcf5b34b5c1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b18d9ad10-1396bf31242d4593","8f44c0b18d9d471-139ebcf5b34b5c1b"]},"geometry":{"type":"LineString","coordinates":[[-83.662411,32.802973],[-83.66332530000001,32.8029929]]},"id":"8a44c0b18d9ffff-139efe1369394c6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.635142,32.829331]},"id":"8f44c0a34d8c26e-13dfe1c44ac7799a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c36264-13deffb7486c0ff0","8f44c0a34d8c26e-13dfe1c44ac7799a"]},"geometry":{"type":"LineString","coordinates":[[-83.635142,32.829331],[-83.635309,32.829361],[-83.635982,32.829530000000005]]},"id":"8844c0a34dfffff-139740bd2df7ecb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c36264-13deffb7486c0ff0","8f44c0a34c308d5-1397ff0c44d6b694"]},"geometry":{"type":"LineString","coordinates":[[-83.635982,32.829530000000005],[-83.6362556,32.8295989]]},"id":"8a44c0a34c37fff-13ffff61c3e984ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c35349-13dffd9e756a055d","8f44c0a34c308d5-1397ff0c44d6b694"]},"geometry":{"type":"LineString","coordinates":[[-83.6362556,32.8295989],[-83.63684090000001,32.829746400000005]]},"id":"8a44c0a34c37fff-13b7fe556cc7b65c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c22c44-13f7fd3ee385f01f","8f44c0a34c35349-13dffd9e756a055d"]},"geometry":{"type":"LineString","coordinates":[[-83.63684090000001,32.829746400000005],[-83.6369938,32.8297845]]},"id":"8b44c0a34c22fff-13fffd6eb77ab858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.637597,32.829935]},"id":"8f44c0a34c20222-17d7fbc5e8cc079e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c22c44-13f7fd3ee385f01f","8f44c0a34c20222-17d7fbc5e8cc079e"]},"geometry":{"type":"LineString","coordinates":[[-83.6369938,32.8297845],[-83.637597,32.829935]]},"id":"8a44c0a34c27fff-17b6fc8260c65457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c21850-1796fad0318ab529","8f44c0a34c20222-17d7fbc5e8cc079e"]},"geometry":{"type":"LineString","coordinates":[[-83.637597,32.829935],[-83.63799010000001,32.8300301]]},"id":"8a44c0a34c27fff-17f7fb4b1f51de8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c21850-1796fad0318ab529","8f44c0a34d52224-17d6f9b1a7303e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.63799010000001,32.8300301],[-83.6384486,32.830141000000005]]},"id":"8844c0a34dfffff-17b7fa40e1421359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d52224-17d6f9b1a7303e3a","8f44c0a34d5171a-17def82e82dbe002"]},"geometry":{"type":"LineString","coordinates":[[-83.6384486,32.830141000000005],[-83.63889900000001,32.83025],[-83.63906800000001,32.830334]]},"id":"8a44c0a34d57fff-179ff8ecee199563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d5171a-17def82e82dbe002","8f44c0a34d5c311-179ef6d265e9353a"]},"geometry":{"type":"LineString","coordinates":[[-83.63906800000001,32.830334],[-83.63962500000001,32.830663]]},"id":"8944c0a34d7ffff-17b7f7807597f4ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d5d105-1797f61646db7c16","8f44c0a34d5c311-179ef6d265e9353a"]},"geometry":{"type":"LineString","coordinates":[[-83.63962500000001,32.830663],[-83.639926,32.830831]]},"id":"8a44c0a34d5ffff-17d6f67456e4eee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d4a811-17b6f5142320de90","8f44c0a34d5d105-1797f61646db7c16"]},"geometry":{"type":"LineString","coordinates":[[-83.639926,32.830831],[-83.64033900000001,32.831086]]},"id":"8944c0a34d7ffff-17d7f5953551d57a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640645,32.831272000000006]},"id":"8f44c0a34d48608-179ff454e97948a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d48608-179ff454e97948a5","8f44c0a34d4a811-17b6f5142320de90"]},"geometry":{"type":"LineString","coordinates":[[-83.64033900000001,32.831086],[-83.640645,32.831272000000006]]},"id":"8a44c0a34d4ffff-17def4b4872aef21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d48608-179ff454e97948a5","8f44c0a34894cca-13b6f29c43f70331"]},"geometry":{"type":"LineString","coordinates":[[-83.640645,32.831272000000006],[-83.641226,32.831615],[-83.64135,32.831696]]},"id":"8844c0a34dfffff-139ef377a84a7160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6420945,32.8321398]},"id":"8f44c0a34886690-13b7f0caf964573f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34886690-13b7f0caf964573f","8f44c0a34894cca-13b6f29c43f70331"]},"geometry":{"type":"LineString","coordinates":[[-83.64135,32.831696],[-83.6420945,32.8321398]]},"id":"8944c0a348bffff-13bef1b3a1776a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64277870000001,32.8325629]},"id":"8f44c0a348815a3-13bfff1f5e033d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34886690-13b7f0caf964573f","8f44c0a348815a3-13bfff1f5e033d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6420945,32.8321398],[-83.642303,32.832264],[-83.64277870000001,32.8325629]]},"id":"8a44c0a34887fff-13beeff473fb270d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3488cac4-13f6ed438ea12cbd","8f44c0a348815a3-13bfff1f5e033d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.64277870000001,32.8325629],[-83.64354,32.833035]]},"id":"8944c0a348bffff-13d7fe31714e6886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70048,32.829934]},"id":"8f44c0b19a6098a-17d6e2400f0d5604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a6098a-17d6e2400f0d5604","8f44c0b19b60425-17bfe0b5ae3d0c62"]},"geometry":{"type":"LineString","coordinates":[[-83.70048,32.829934],[-83.700601,32.829846],[-83.70082000000001,32.829631],[-83.70088000000001,32.829523],[-83.70092500000001,32.829427],[-83.700953,32.829327],[-83.700978,32.828949],[-83.701014,32.828555],[-83.701088,32.827458],[-83.70111100000001,32.82703]]},"id":"8844c0b19bfffff-13fe71110d61bad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19b60425-17bfe0b5ae3d0c62","8f44c0b0a499b92-17d7e6c76097f6f9"]},"geometry":{"type":"LineString","coordinates":[[-83.70111100000001,32.82703],[-83.70113500000001,32.82669],[-83.701144,32.826472],[-83.70113400000001,32.826273],[-83.70111200000001,32.826163],[-83.701053,32.826054],[-83.70088700000001,32.825875],[-83.70047100000001,32.825512],[-83.700185,32.825239],[-83.69997500000001,32.825003],[-83.69983900000001,32.824754],[-83.699785,32.82468],[-83.699731,32.824585],[-83.69961500000001,32.82446],[-83.69948600000001,32.824359],[-83.699309,32.824269],[-83.69896800000001,32.824128],[-83.698625,32.823996]]},"id":"8644c0b1fffffff-139662f5b1334a73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19868724-17f77b47aeb4e6c1","8f44c0b0a499b92-17d7e6c76097f6f9"]},"geometry":{"type":"LineString","coordinates":[[-83.698625,32.823996],[-83.69843200000001,32.823914],[-83.697497,32.82354],[-83.69739,32.823501],[-83.69730600000001,32.823486],[-83.697225,32.823481],[-83.69713200000001,32.823481],[-83.69700200000001,32.823512],[-83.696854,32.823573],[-83.6967814,32.823630900000005]]},"id":"8744c0b19ffffff-179ee907546888fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1986a65c-1796ec712c343426","8f44c0b19868724-17f77b47aeb4e6c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6967814,32.823630900000005],[-83.69663800000001,32.823745100000004],[-83.6963054,32.8238894]]},"id":"8a44c0b1986ffff-17deebd74a2d0dd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960265,32.8237992]},"id":"8f44c0b19841aa4-17deed1f7fb54918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1986a65c-1796ec712c343426","8f44c0b19841aa4-17deed1f7fb54918"]},"geometry":{"type":"LineString","coordinates":[[-83.6963054,32.8238894],[-83.6961445,32.823952500000004],[-83.6960265,32.8237992]]},"id":"8944c0b1987ffff-1797fcd1735171d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36723001-17f775bc067bcde3","8f44c0a3608848b-1397f44aad94145f"]},"geometry":{"type":"LineString","coordinates":[[-83.613856,32.846778],[-83.61387500000001,32.846269],[-83.61388500000001,32.846159],[-83.613899,32.846074],[-83.61394800000001,32.845961],[-83.614024,32.845863],[-83.614447,32.845395]]},"id":"8744c0a36ffffff-13b7b54fb583059f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614829,32.844991]},"id":"8f44c0a3608c0ec-1397735beef82446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3608848b-1397f44aad94145f","8f44c0a3608c0ec-1397735beef82446"]},"geometry":{"type":"LineString","coordinates":[[-83.614447,32.845395],[-83.614829,32.844991]]},"id":"8a44c0a3608ffff-1397b3d34c59a775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55543300000001,32.835808]},"id":"8f44c0b8e176335-13bfc45e674fc386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e1516c0-17f7c4ece628365b","8f44c0b8e176335-13bfc45e674fc386"]},"geometry":{"type":"LineString","coordinates":[[-83.555205,32.837566],[-83.555469,32.837328],[-83.55560600000001,32.837139],[-83.555649,32.837041],[-83.555661,32.836941],[-83.555676,32.836813],[-83.55574200000001,32.836633],[-83.555757,32.836577000000005],[-83.55577500000001,32.836503],[-83.555783,32.836408],[-83.55579,32.836319],[-83.555763,32.836156],[-83.555726,32.836062000000005],[-83.555648,32.835956],[-83.55551,32.835853],[-83.55543300000001,32.835808]]},"id":"8944c0b8e17ffff-17d7c3ee7e8425c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.596512,32.854166]},"id":"8f44c0b8d3aa8d0-17ffe014018010ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3186e3-13bf7c14ea5f1829","8f44c0b8d3aa8d0-17ffe014018010ac"]},"geometry":{"type":"LineString","coordinates":[[-83.596512,32.854166],[-83.59737100000001,32.854173],[-83.59780500000001,32.854185],[-83.59788300000001,32.854214],[-83.59797300000001,32.854276],[-83.59805700000001,32.854353],[-83.598149,32.854447]]},"id":"8844c0b8d3fffff-17977dfced9bc702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d3186e3-13bf7c14ea5f1829","8f44c0b8d223d52-1397dacfee1385d6"]},"geometry":{"type":"LineString","coordinates":[[-83.598149,32.854447],[-83.598518,32.854829],[-83.59859900000001,32.854944],[-83.598658,32.855052],[-83.59868800000001,32.855173],[-83.59865400000001,32.855525],[-83.598669,32.855604]]},"id":"8844c0b8d3fffff-13ff7b2b631d136e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d223d52-1397dacfee1385d6","8f44c0b8d23629e-13bfde7d2023385b"]},"geometry":{"type":"LineString","coordinates":[[-83.598669,32.855604],[-83.59864300000001,32.855691],[-83.59863800000001,32.855848],[-83.59862100000001,32.855984],[-83.598577,32.856088],[-83.59849200000001,32.856174],[-83.59841700000001,32.85622],[-83.59832700000001,32.856261],[-83.598236,32.856288],[-83.598141,32.856293],[-83.59801,32.856285],[-83.597959,32.85626],[-83.59787100000001,32.856098],[-83.5978,32.855935],[-83.597711,32.855781],[-83.597502,32.855507],[-83.59716300000001,32.855086]]},"id":"8944c0b8d23ffff-13975c842f7a0cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a289b2b09-139718bf29a40ed0","8f44c0a2c6cc58d-13f73b94ce82409b"]},"geometry":{"type":"LineString","coordinates":[[-83.730587,32.908248],[-83.730286,32.908143],[-83.729978,32.908046],[-83.72986800000001,32.907998],[-83.72964900000001,32.907866],[-83.72954,32.907758],[-83.72950300000001,32.907705],[-83.729426,32.907573]]},"id":"8844c0a2c7fffff-13f79a4ae789208b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72922000000001,32.903438900000005]},"id":"8f44c0a2c633348-17df5c1580162975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c633348-17df5c1580162975","8f44c0a2c6cc58d-13f73b94ce82409b"]},"geometry":{"type":"LineString","coordinates":[[-83.729426,32.907573],[-83.729392,32.907479],[-83.72937,32.907353],[-83.72932700000001,32.906580000000005],[-83.72931700000001,32.906131],[-83.72933300000001,32.906019],[-83.729387,32.905896000000006],[-83.729498,32.905686],[-83.72955300000001,32.905549],[-83.72957000000001,32.905473],[-83.729573,32.905395],[-83.729567,32.905324],[-83.72954200000001,32.905259],[-83.729484,32.905161],[-83.729292,32.904874],[-83.729252,32.904783],[-83.72924300000001,32.904635],[-83.72926600000001,32.904552],[-83.729296,32.90447],[-83.72936700000001,32.904359],[-83.729449,32.904204],[-83.729478,32.904096],[-83.729488,32.904027],[-83.72949200000001,32.903959],[-83.72948600000001,32.903883],[-83.729473,32.903829],[-83.72940600000001,32.903682],[-83.72927800000001,32.903512],[-83.72922000000001,32.903438900000005]]},"id":"8844c0a2c7fffff-17b7fbad799f4cd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63415300000001,32.840922]},"id":"8f44c0a3445d24c-17bf442e66bf081c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a347a98b5-179fb1dc3dfb861b","8f44c0a3445d24c-17bf442e66bf081c"]},"geometry":{"type":"LineString","coordinates":[[-83.63415300000001,32.840922],[-83.634057,32.841487],[-83.63394500000001,32.841986],[-83.633933,32.842169000000005],[-83.63398000000001,32.842307000000005],[-83.634074,32.842409],[-83.634939,32.843065],[-83.6351037,32.8431579]]},"id":"8744c0a34ffffff-13bf93df6b93bd52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a347a98b5-179fb1dc3dfb861b","8f44c0a3471b429-179720452a66cffd"]},"geometry":{"type":"LineString","coordinates":[[-83.6351037,32.8431579],[-83.635755,32.843525]]},"id":"8844c0a347fffff-17977110a2555ef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a935a14-13d7f695e272d8b0","8f44c0b1a90446d-17d7f6a26d355d14"]},"geometry":{"type":"LineString","coordinates":[[-83.652809,32.806965000000005],[-83.65282900000001,32.806179]]},"id":"8944c0b1a93ffff-13dfd69c2ba98b4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a935a14-13d7f695e272d8b0","8f44c0b1e29b98a-13dfd688ce396e78"]},"geometry":{"type":"LineString","coordinates":[[-83.65282900000001,32.806179],[-83.65285,32.80558]]},"id":"8744c0b1effffff-139ef68f53f3da95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2eac1895-17b7ed3aaddde42b","8f44c0b2ead2b0d-17b5f1ff461f0885"]},"geometry":{"type":"LineString","coordinates":[[-83.761519,32.758001],[-83.759566,32.757769]]},"id":"8944c0b2eafffff-17ffef9cf30f58c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2e335688-139dd708afcb9baf","8f44c0b2ead2b0d-17b5f1ff461f0885"]},"geometry":{"type":"LineString","coordinates":[[-83.759566,32.757769],[-83.757503,32.757526]]},"id":"8744c0b2effffff-13ddf483f794cae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2e335688-139dd708afcb9baf","8f44c0b2e0eed48-13fde25ac9c61a2a"]},"geometry":{"type":"LineString","coordinates":[[-83.757503,32.757526],[-83.756164,32.757351],[-83.75585600000001,32.757303],[-83.755538,32.757246],[-83.75476400000001,32.757094],[-83.754118,32.756946],[-83.75286600000001,32.756648000000006]]},"id":"8744c0b2effffff-139ddcb80510125b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2e0eed48-13fde25ac9c61a2a","8f44c0b2e726d9d-13ffec5de4a7c086"]},"geometry":{"type":"LineString","coordinates":[[-83.75286600000001,32.756648000000006],[-83.752429,32.756543],[-83.752126,32.756478],[-83.75179700000001,32.756413],[-83.751281,32.75634],[-83.750898,32.756301],[-83.750578,32.756276],[-83.75023900000001,32.756262],[-83.749588,32.756258],[-83.748765,32.756272]]},"id":"8844c0b2e1fffff-13b5f755b2b9d688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2e726d9d-13ffec5de4a7c086","8f44c0b2e451183-17fdf58006e619fc"]},"geometry":{"type":"LineString","coordinates":[[-83.748765,32.756272],[-83.74719800000001,32.756301],[-83.746857,32.756279],[-83.746426,32.756219],[-83.746144,32.756154],[-83.745907,32.756081],[-83.74565000000001,32.755983],[-83.745304,32.755817],[-83.745024,32.755651]]},"id":"8744c0b2effffff-13bdf109f72b9753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2e456cdb-17dff7682959f8e5","8f44c0b2e451183-17fdf58006e619fc"]},"geometry":{"type":"LineString","coordinates":[[-83.745024,32.755651],[-83.74483400000001,32.755515],[-83.74462700000001,32.755356],[-83.744432,32.755173],[-83.74424300000001,32.754969]]},"id":"8a44c0b2e457fff-17bff67d9dbc1783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b232c4c4e-17978533665ab514","8f44c0b2e456cdb-17dff7682959f8e5"]},"geometry":{"type":"LineString","coordinates":[[-83.74424300000001,32.754969],[-83.74411400000001,32.7548],[-83.744038,32.754691],[-83.743932,32.754506],[-83.743797,32.754246],[-83.74243100000001,32.751361],[-83.74229700000001,32.751122],[-83.74217700000001,32.75094],[-83.74198600000001,32.750698],[-83.741788,32.750494],[-83.741562,32.750297],[-83.74143000000001,32.75019],[-83.74043,32.749456],[-83.73980200000001,32.748989],[-83.73930800000001,32.74863],[-83.73908300000001,32.748455],[-83.73859300000001,32.748092]]},"id":"8544c0b3fffffff-179ffd5d16562269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b23669330-13de6f75aaeb3d56","8f44c0b232c4c4e-17978533665ab514"]},"geometry":{"type":"LineString","coordinates":[[-83.73859300000001,32.748092],[-83.738124,32.747763],[-83.738021,32.747701],[-83.737819,32.747604],[-83.73767000000001,32.747553],[-83.737503,32.747503],[-83.737395,32.747478],[-83.737172,32.747444],[-83.736889,32.747433],[-83.736614,32.747444],[-83.735144,32.747537],[-83.734391,32.747591]]},"id":"8744c0b23ffffff-13d67a2dc95dac13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b236e5274-13bfb8b5a6f9437f","8f44c0b23669330-13de6f75aaeb3d56"]},"geometry":{"type":"LineString","coordinates":[[-83.734391,32.747591],[-83.733582,32.747646],[-83.73325700000001,32.747655],[-83.732982,32.747652],[-83.73261600000001,32.747621],[-83.73221500000001,32.747545],[-83.73192300000001,32.747467],[-83.73180400000001,32.747427],[-83.731508,32.747313000000005],[-83.730686,32.746958],[-83.7306022,32.746921]]},"id":"8844c0b237fffff-13ff342c1289bcb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b236e5274-13bfb8b5a6f9437f","8f44c0b236a656e-139f61748f3dc62b"]},"geometry":{"type":"LineString","coordinates":[[-83.7306022,32.746921],[-83.730395,32.746814],[-83.730175,32.746681],[-83.729923,32.746492],[-83.729578,32.746208],[-83.7287944,32.7454629],[-83.728555,32.7452367],[-83.728115,32.744829],[-83.7278543,32.744612700000005],[-83.727647,32.74448],[-83.727365,32.744326],[-83.72712,32.744238],[-83.72702000000001,32.74421]]},"id":"8844c0b237fffff-17be7d063a208788"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64275,32.796937]},"id":"8f44c0b1e4f5856-13d7ef314498db11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4e6b4d-13d6eda1e56ad371","8f44c0b1e4f5856-13d7ef314498db11"]},"geometry":{"type":"LineString","coordinates":[[-83.64275,32.796937],[-83.643389,32.796954]]},"id":"8944c0b1e4fffff-13defe699ded3fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64491000000001,32.796982]},"id":"8f44c0b1e4540e0-13f7e9eb4ead2cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4e6b4d-13d6eda1e56ad371","8f44c0b1e4540e0-13f7e9eb4ead2cb0"]},"geometry":{"type":"LineString","coordinates":[[-83.643389,32.796954],[-83.64491000000001,32.796982]]},"id":"8844c0b1e5fffff-13dfebc6937ddf46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4540e0-13f7e9eb4ead2cb0","8f44c0b1e444571-13f7e700603f04f8"]},"geometry":{"type":"LineString","coordinates":[[-83.64491000000001,32.796982],[-83.646105,32.79701]]},"id":"8944c0b1e47ffff-13fee875dff50285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e444571-13f7e700603f04f8","8f44c0b1e461262-13ffe405ef8d3a53"]},"geometry":{"type":"LineString","coordinates":[[-83.646105,32.79701],[-83.64732500000001,32.797027]]},"id":"8944c0b1e47ffff-13fef58326262a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e461262-13ffe405ef8d3a53","8f44c0b1e083860-1797deb0e99e96bb"]},"geometry":{"type":"LineString","coordinates":[[-83.64732500000001,32.797027],[-83.647976,32.797049],[-83.64927800000001,32.797069],[-83.64950900000001,32.797068]]},"id":"8744c0b1effffff-179ef15b77d7e2cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0aa620-17b6dcf665e159db","8f44c0b1e083860-1797deb0e99e96bb"]},"geometry":{"type":"LineString","coordinates":[[-83.64950900000001,32.797068],[-83.65021700000001,32.797086]]},"id":"8944c0b1e0bffff-179ffdd3a5069878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65309900000001,32.7971913]},"id":"8f44c0b1e00aa32-17f6d5ed24b48bec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e00aa32-17f6d5ed24b48bec","8f44c0b1e0aa620-17b6dcf665e159db"]},"geometry":{"type":"LineString","coordinates":[[-83.65021700000001,32.797086],[-83.65216000000001,32.797137],[-83.652842,32.797145],[-83.65298390000001,32.7971597],[-83.65309900000001,32.7971913]]},"id":"8844c0b1e1fffff-17bff9705b2ee884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65441870000001,32.7979198]},"id":"8f44c0b1e055c0c-17bff2b4505e484d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e00aa32-17f6d5ed24b48bec","8f44c0b1e055c0c-17bff2b4505e484d"]},"geometry":{"type":"LineString","coordinates":[[-83.65309900000001,32.7971913],[-83.6532875,32.7972313],[-83.65352490000001,32.79726],[-83.65371160000001,32.7973395],[-83.6540169,32.7975724],[-83.65441870000001,32.7979198]]},"id":"8844c0b1e1fffff-1796d4379adb681a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6548368,32.7980333]},"id":"8f44c0b1e0467a5-17f6d1af0cbb51c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0467a5-17f6d1af0cbb51c6","8f44c0b1e055c0c-17bff2b4505e484d"]},"geometry":{"type":"LineString","coordinates":[[-83.65441870000001,32.7979198],[-83.65467960000001,32.798031],[-83.6548368,32.7980333]]},"id":"8944c0b1e07ffff-17dfd2343de16ae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65556910000001,32.7980515]},"id":"8f44c0b1e044255-17feffe55b408b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0467a5-17f6d1af0cbb51c6","8f44c0b1e044255-17feffe55b408b21"]},"geometry":{"type":"LineString","coordinates":[[-83.6548368,32.7980333],[-83.6550546,32.7980332],[-83.65556910000001,32.7980515]]},"id":"8a44c0b1e047fff-17f6d0ca220ca262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558735,32.7980698]},"id":"8f44c0b1e0458a9-179fef271d052d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0458a9-179fef271d052d10","8f44c0b1e044255-17feffe55b408b21"]},"geometry":{"type":"LineString","coordinates":[[-83.65556910000001,32.7980515],[-83.65565140000001,32.797992400000005],[-83.65574260000001,32.7979879],[-83.6558735,32.7980698]]},"id":"8a44c0b1e047fff-17feff865484eaf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0458a9-179fef271d052d10","8f44c0b1e044255-17feffe55b408b21"]},"geometry":{"type":"LineString","coordinates":[[-83.6558735,32.7980698],[-83.6557868,32.7981381],[-83.65570100000001,32.798151600000004],[-83.6556206,32.798129],[-83.65556910000001,32.7980515]]},"id":"8a44c0b1e047fff-17b7ef8af7d8454b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7200722,32.827771500000004]},"id":"8f44c0b0aaca161-179f326aee6768ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0aace2d9-17beb22f1f0ea5a6","8f44c0b0aaca161-179f326aee6768ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7201679,32.8276138],[-83.7200866,32.8277353],[-83.7200722,32.827771500000004]]},"id":"8a44c0b0aacffff-17def24ec938ecda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71999500000001,32.827756]},"id":"8f44c0b0aaca11d-1797b29b25ee9101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0aaca11d-1797b29b25ee9101","8f44c0b0aaca161-179f326aee6768ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7200722,32.827771500000004],[-83.7200303,32.827877300000004],[-83.71992130000001,32.828293200000005],[-83.7199047,32.828346100000005],[-83.71986290000001,32.8283727],[-83.7198029,32.8283858],[-83.7197668,32.8283566],[-83.71976190000001,32.8282946],[-83.7198887,32.8277993],[-83.71994640000001,32.8277596],[-83.71999500000001,32.827756]]},"id":"8744c0b0affffff-17df72d74b64cc8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0aaca11d-1797b29b25ee9101","8f44c0b0aaca161-179f326aee6768ad"]},"geometry":{"type":"LineString","coordinates":[[-83.71999500000001,32.827756],[-83.7200722,32.827771500000004]]},"id":"8c44c0b0aaca1ff-179e72830f582462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65130260000001,32.833548400000005]},"id":"8f44c0b1b49c89d-17b7da4fe308f88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6511225,32.833443100000004]},"id":"8f44c0b1b49cd95-17f7fac07edfb2b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b49cd95-17f7fac07edfb2b3","8f44c0b1b49c89d-17b7da4fe308f88e"]},"geometry":{"type":"LineString","coordinates":[[-83.65130260000001,32.833548400000005],[-83.6511225,32.833443100000004]]},"id":"8a44c0b1b49ffff-1796fa883bf50968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6509518,32.8333371]},"id":"8f44c0b1b491029-17b7fb2b2cd6304f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b49cd95-17f7fac07edfb2b3","8f44c0b1b491029-17b7fb2b2cd6304f"]},"geometry":{"type":"LineString","coordinates":[[-83.6511225,32.833443100000004],[-83.6509518,32.8333371]]},"id":"8b44c0b1b491fff-17d6daf5c105edfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6508694,32.8332859]},"id":"8f44c0b1b491181-1797fb5eac605272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b491029-17b7fb2b2cd6304f","8f44c0b1b491181-1797fb5eac605272"]},"geometry":{"type":"LineString","coordinates":[[-83.6509518,32.8333371],[-83.6508694,32.8332859]]},"id":"8c44c0b1b4911ff-1797fb44eb98fe10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b490275-17bffbcb86127bf5","8f44c0b1b491181-1797fb5eac605272"]},"geometry":{"type":"LineString","coordinates":[[-83.6508694,32.8332859],[-83.6506952,32.8331767]]},"id":"8a44c0b1b497fff-17f7db951aef0141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6505454,32.8330828]},"id":"8f44c0b1b4900ca-1796dc29238924d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b490275-17bffbcb86127bf5","8f44c0b1b4900ca-1796dc29238924d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6506952,32.8331767],[-83.6505454,32.8330828]]},"id":"8b44c0b1b490fff-17b6fbfa501782ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65291,32.846912]},"id":"8f44c0a35c13d6a-17ded6634a259857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35ca524a-17b6f7cd2f15547c","8f44c0a35c13d6a-17ded6634a259857"]},"geometry":{"type":"LineString","coordinates":[[-83.652331,32.846653],[-83.65291,32.846912]]},"id":"8844c0a35dfffff-17f7d71839a68106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba21d9d-17b6a15eca61f487","8f44c0b1979e4d9-17d6b66e2de3024f"]},"geometry":{"type":"LineString","coordinates":[[-83.674626,32.833152000000005],[-83.677501,32.833187],[-83.677774,32.83319],[-83.679107,32.833213]]},"id":"8644c0b1fffffff-17d7bbe6708b480c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68040900000001,32.833255]},"id":"8f44c0b1978e4a8-17f6f340616714fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1979e4d9-17d6b66e2de3024f","8f44c0b1978e4a8-17f6f340616714fc"]},"geometry":{"type":"LineString","coordinates":[[-83.679107,32.833213],[-83.68040900000001,32.833255]]},"id":"8944c0b197bffff-17f7d4d742c4ddf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1978e4a8-17f6f340616714fc","8f44c0b19636591-1796d018ed42df4e"]},"geometry":{"type":"LineString","coordinates":[[-83.68040900000001,32.833255],[-83.681701,32.833306]]},"id":"8944c0b197bffff-1796d1aca0af4ab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1971b29d-17b78d1beb280f63","8f44c0b19636591-1796d018ed42df4e"]},"geometry":{"type":"LineString","coordinates":[[-83.681701,32.833306],[-83.68292500000001,32.83334]]},"id":"8844c0b197fffff-179eee9a6f471ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1971b29d-17b78d1beb280f63","8f44c0b19624433-17be8b9367692555"]},"geometry":{"type":"LineString","coordinates":[[-83.68292500000001,32.83334],[-83.683553,32.833348]]},"id":"8944c0b1963ffff-17be8c57a41d39b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19624433-17be8b9367692555","8f44c0b19771719-17bfc5bbc54040d0"]},"geometry":{"type":"LineString","coordinates":[[-83.683553,32.833348],[-83.685946,32.833382]]},"id":"8844c0b197fffff-17b7a8a79bcd37d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68696200000001,32.833401]},"id":"8f44c0b197638e2-17dfa340c130241f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b197638e2-17dfa340c130241f","8f44c0b19771719-17bfc5bbc54040d0"]},"geometry":{"type":"LineString","coordinates":[[-83.685946,32.833382],[-83.68696200000001,32.833401]]},"id":"8944c0b1977ffff-17d7b47e4072a08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7336994,32.7982912]},"id":"8f44c0b0c45c81d-17961125e1204613"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c45c81d-17961125e1204613","8f44c0b0c469ab5-17b7eb8a44575fb1"]},"geometry":{"type":"LineString","coordinates":[[-83.7359964,32.798323],[-83.73570760000001,32.7983138],[-83.7347553,32.7983026],[-83.7336994,32.7982912]]},"id":"8944c0b0c47ffff-179e3e580971b999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c45c81d-17961125e1204613","8f44c0b0c4ec145-179e146ea7565630"]},"geometry":{"type":"LineString","coordinates":[[-83.7336994,32.7982912],[-83.7323542,32.7982785]]},"id":"8844c0b0c5fffff-179612ca49736fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4ec145-179e146ea7565630","8f44c0b0c4eecde-17be7619abea0bd1"]},"geometry":{"type":"LineString","coordinates":[[-83.7323542,32.7982785],[-83.731916,32.798301],[-83.73176500000001,32.79831],[-83.731719,32.798316],[-83.731671,32.798327]]},"id":"8a44c0b0c4effff-1797b544984213b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4c5b00-17961676c4760350","8f44c0b0c4eecde-17be7619abea0bd1"]},"geometry":{"type":"LineString","coordinates":[[-83.731671,32.798327],[-83.73158000000001,32.798397],[-83.731522,32.798464]]},"id":"8a44c0b0c4effff-17d6f64a6564f169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7314106,32.801813200000005]},"id":"8f44c0b0eb68a9a-17bf56bc65d44825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c4c5b00-17961676c4760350","8f44c0b0eb68a9a-17bf56bc65d44825"]},"geometry":{"type":"LineString","coordinates":[[-83.731522,32.798464],[-83.731459,32.798716],[-83.73142200000001,32.8007],[-83.7314106,32.801813200000005]]},"id":"8744c0b0cffffff-139676ac52a57f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7314072,32.8021501]},"id":"8f44c0b0eb6bb01-13ffd6be86a82ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0eb6bb01-13ffd6be86a82ab3","8f44c0b0eb68a9a-17bf56bc65d44825"]},"geometry":{"type":"LineString","coordinates":[[-83.7314106,32.801813200000005],[-83.7314072,32.8021501]]},"id":"8a44c0b0eb6ffff-139696bd7ce63acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73140950000001,32.8024039]},"id":"8f44c0b0c6b6c8b-139e76bd161a9300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c6b6c8b-139e76bd161a9300","8f44c0b0eb6bb01-13ffd6be86a82ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.7314072,32.8021501],[-83.731406,32.802267],[-83.73140950000001,32.8024039]]},"id":"8944c0b0eb7ffff-13df36be81a1e18a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7314199,32.803235900000004]},"id":"8f44c0b0c694805-13b676b695001a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c694805-13b676b695001a45","8f44c0b0c6b6c8b-139e76bd161a9300"]},"geometry":{"type":"LineString","coordinates":[[-83.73140950000001,32.8024039],[-83.731423,32.80293],[-83.7314199,32.803235900000004]]},"id":"8a44c0b0c6b7fff-13b676b7a58200e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731414,32.8038132]},"id":"8f44c0b0c690b50-179f56ba41245742"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c694805-13b676b695001a45","8f44c0b0c690b50-179f56ba41245742"]},"geometry":{"type":"LineString","coordinates":[[-83.7314199,32.803235900000004],[-83.731414,32.8038132]]},"id":"8944c0b0c6bffff-13def6b864b15e9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73140190000001,32.805010700000004]},"id":"8f44c0b0c69aab6-17ffb6c1dd000942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c690b50-179f56ba41245742","8f44c0b0c69aab6-17ffb6c1dd000942"]},"geometry":{"type":"LineString","coordinates":[[-83.731414,32.8038132],[-83.73140190000001,32.805010700000004]]},"id":"8944c0b0c6bffff-179796be1e03f3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d48e8-17d7d61f62e2e00e","8f44c0a228de0a9-17fff635e390c069"]},"geometry":{"type":"LineString","coordinates":[[-83.67923300000001,32.865958],[-83.67921000000001,32.866909],[-83.679197,32.867251]]},"id":"8944c0a228fffff-17dff6299740be7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679179,32.867979000000005]},"id":"8f44c0a228db492-13b6f64128a9d468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228de0a9-17fff635e390c069","8f44c0a228db492-13b6f64128a9d468"]},"geometry":{"type":"LineString","coordinates":[[-83.679197,32.867251],[-83.679179,32.867979000000005]]},"id":"8a44c0a228dffff-13d7f63b870ced4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74217,32.88806]},"id":"8f44c0a2c976ca9-13bdfc77cdc45146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c976ca9-13bdfc77cdc45146","8f44c0b5228d429-13fdfbaafcd6b27a"]},"geometry":{"type":"LineString","coordinates":[[-83.74217,32.88806],[-83.742502,32.88741],[-83.742659,32.887116],[-83.742784,32.88683],[-83.742838,32.886634],[-83.742858,32.88648],[-83.74286000000001,32.886374],[-83.742851,32.886238],[-83.742834,32.886136],[-83.74280200000001,32.886012],[-83.742732,32.885804],[-83.74263300000001,32.885558],[-83.742593,32.885458],[-83.7424977,32.8852619]]},"id":"8644c0b57ffffff-17ddfb59c2452ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b523b4c13-1797fd4b0e08bb55","8f44c0b5228d429-13fdfbaafcd6b27a"]},"geometry":{"type":"LineString","coordinates":[[-83.7424977,32.8852619],[-83.742474,32.885213],[-83.742427,32.885129],[-83.742317,32.884956],[-83.742012,32.884551],[-83.741911,32.884406000000006],[-83.741836,32.884256],[-83.741793,32.884124],[-83.741775,32.884013],[-83.74176700000001,32.883809],[-83.74177,32.883519],[-83.74178300000001,32.883194],[-83.74182400000001,32.880792],[-83.741832,32.8795939]]},"id":"8744c0b52ffffff-17b5fd2dee3d8aae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.712638,32.802431]},"id":"8f44c0b0e0906e9-13bf6491479e0680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713007,32.802169]},"id":"8f44c0b0e0954c1-139fe3aaa0ab64d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e0954c1-139fe3aaa0ab64d3","8f44c0b0e0906e9-13bf6491479e0680"]},"geometry":{"type":"LineString","coordinates":[[-83.712638,32.802431],[-83.713007,32.802169]]},"id":"8a44c0b0e097fff-13dfc41df4bbfa4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714304,32.801596]},"id":"8f44c0b0e0a2398-17b7c0800c53d4fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e0954c1-139fe3aaa0ab64d3","8f44c0b0e0a2398-17b7c0800c53d4fc"]},"geometry":{"type":"LineString","coordinates":[[-83.713007,32.802169],[-83.71329800000001,32.801958],[-83.71354500000001,32.801814],[-83.713734,32.801727],[-83.713882,32.801679],[-83.714127,32.801631],[-83.714304,32.801596]]},"id":"8944c0b0e0bffff-17b742265d5d85e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68396050000001,32.8059773]},"id":"8f44c0b1d415240-13d7da94b6f1a688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d0b68f3-13fefcb20f06bf79","8f44c0b1d415240-13d7da94b6f1a688"]},"geometry":{"type":"LineString","coordinates":[[-83.68396050000001,32.8059773],[-83.6855,32.805992],[-83.68772,32.806012],[-83.68824000000001,32.806021],[-83.689648,32.806033]]},"id":"8744c0b1dffffff-13ff83a3571772ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d03255b-13fff54ce44fb1d0","8f44c0b1d0b68f3-13fefcb20f06bf79"]},"geometry":{"type":"LineString","coordinates":[[-83.689648,32.806033],[-83.690808,32.806044],[-83.691079,32.806041],[-83.691332,32.806027],[-83.691541,32.80601],[-83.69204500000001,32.805946],[-83.692318,32.805894],[-83.692677,32.805811]]},"id":"8844c0b1d1fffff-13f678fb438e21bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69408,32.805295]},"id":"8f44c0b1d026d92-13bf71e00b2488c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d03255b-13fff54ce44fb1d0","8f44c0b1d026d92-13bf71e00b2488c8"]},"geometry":{"type":"LineString","coordinates":[[-83.692677,32.805811],[-83.693031,32.805706],[-83.69320300000001,32.80565],[-83.693657,32.80548],[-83.693792,32.805425],[-83.69408,32.805295]]},"id":"8944c0b1d03ffff-13def39208972a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d026d92-13bf71e00b2488c8","8f44c0b1d8dad69-17f76af6a19b99a7"]},"geometry":{"type":"LineString","coordinates":[[-83.69408,32.805295],[-83.69449,32.80509],[-83.696911,32.803944]]},"id":"8844c0b1d1fffff-1796fe6c71edee2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d8c1a9c-139ee6ee2be205bc","8f44c0b1d8dad69-17f76af6a19b99a7"]},"geometry":{"type":"LineString","coordinates":[[-83.696911,32.803944],[-83.697299,32.803776],[-83.697732,32.803615],[-83.69803300000001,32.803528],[-83.698268,32.803466],[-83.69856300000001,32.803396]]},"id":"8944c0b1d8fffff-17b6f8f8ce420313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996812,32.8032865]},"id":"8f44c0b1d8e9c30-13d674334e60a0d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d8c1a9c-139ee6ee2be205bc","8f44c0b1d8e9c30-13d674334e60a0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.69856300000001,32.803396],[-83.69892,32.803343000000005],[-83.699337,32.8033],[-83.6996812,32.8032865]]},"id":"8944c0b1d8fffff-13f675917ba3ef3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d8e9c30-13d674334e60a0d4","8f44c0b1d85a85e-13d6e27988ab71ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6996812,32.8032865],[-83.699897,32.803278],[-83.700388,32.803278]]},"id":"8844c0b1d9fffff-13d7f356733b9186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b1e199-17fefdc4a4bb391a","8f44c0a34b19984-17bedbbc06d602f5"]},"geometry":{"type":"LineString","coordinates":[[-83.649887,32.836759],[-83.650469,32.83709],[-83.65072,32.837246]]},"id":"8a44c0a34b1ffff-1796fcbf17935bc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b56cb4-1796d95826cef8b0","8f44c0a34b19984-17bedbbc06d602f5"]},"geometry":{"type":"LineString","coordinates":[[-83.65072,32.837246],[-83.65169900000001,32.837812]]},"id":"8844c0a34bfffff-17dffa8a11c23e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b50d64-13def812871bc4c4","8f44c0a34b56cb4-1796d95826cef8b0"]},"geometry":{"type":"LineString","coordinates":[[-83.65169900000001,32.837812],[-83.65222,32.838113]]},"id":"8944c0a34b7ffff-17fed8b559e6aa7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b50d64-13def812871bc4c4","8f44c0a34b42098-13fff63aaf1fa10a"]},"geometry":{"type":"LineString","coordinates":[[-83.65222,32.838113],[-83.65297500000001,32.838569]]},"id":"8944c0a34b7ffff-13dff7269ca4ef5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e8c34dc-17d7e10d05e677e3","8f44c0b8e8c37b0-17dfe0eaa8e7d247"]},"geometry":{"type":"LineString","coordinates":[[-83.556847,32.834629],[-83.556792,32.834615]]},"id":"8b44c0b8e8c3fff-17d7c0fbd4a0d75c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e176d19-139fe4cee25289c9","8f44c0b8e8c34dc-17d7e10d05e677e3"]},"geometry":{"type":"LineString","coordinates":[[-83.556792,32.834615],[-83.556168,32.83475],[-83.55598,32.834784],[-83.55586000000001,32.834801],[-83.555756,32.834823],[-83.555604,32.834843],[-83.55537100000001,32.834908],[-83.555321,32.834949],[-83.555293,32.835023],[-83.55527000000001,32.835205],[-83.55525300000001,32.835549]]},"id":"8744c0b8effffff-13f7c367ad3aec5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e176d19-139fe4cee25289c9","8f44c0b8e176335-13bfc45e674fc386"]},"geometry":{"type":"LineString","coordinates":[[-83.55525300000001,32.835549],[-83.555256,32.835568],[-83.55535,32.835758000000006],[-83.55543300000001,32.835808]]},"id":"8b44c0b8e176fff-13f7f4a11672cdf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65486800000001,32.855714]},"id":"8f44c0a3509dd26-13d7d19b8f03eea3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3508328e-13d6d11f2fa4e5e8","8f44c0a3509dd26-13d7d19b8f03eea3"]},"geometry":{"type":"LineString","coordinates":[[-83.65486800000001,32.855714],[-83.655067,32.855716]]},"id":"8944c0a350bffff-13d7f15d5755b7e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3508328e-13d6d11f2fa4e5e8","8f44c0a3501b423-13deeb2ac44932f4"]},"geometry":{"type":"LineString","coordinates":[[-83.655067,32.855716],[-83.656918,32.855728],[-83.65750600000001,32.855725]]},"id":"8844c0a351fffff-13defe24f1e0ef02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628952,32.82479]},"id":"8f44c0ba9a9d085-17d7d0e10d4acd1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a9d085-17d7d0e10d4acd1e","8f44c0ba9a83305-17f7102949b0c8a2"]},"geometry":{"type":"LineString","coordinates":[[-83.628952,32.82479],[-83.62924600000001,32.824432]]},"id":"8944c0ba9abffff-17d7f08521a6cde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9a83305-17f7102949b0c8a2","8f44c0ba9aa10b3-179fcdb20ec91dfc"]},"geometry":{"type":"LineString","coordinates":[[-83.62924600000001,32.824432],[-83.630256,32.82327]]},"id":"8944c0ba9abffff-17ffeeedad6e1f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a267ad6a8-17b69db40853e646","8f44c0a2662062d-13deda058f61563f"]},"geometry":{"type":"LineString","coordinates":[[-83.676128,32.853840000000005],[-83.67681800000001,32.854429],[-83.677403,32.854937],[-83.677636,32.85513]]},"id":"8844c0a267fffff-13d79bdd2a6aec79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2662d6dd-17ff9784450d9da6","8f44c0a2662062d-13deda058f61563f"]},"geometry":{"type":"LineString","coordinates":[[-83.677636,32.85513],[-83.678336,32.855862],[-83.678662,32.856184]]},"id":"8944c0a2663ffff-13b7b8c6e75d18d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2662d6dd-17ff9784450d9da6","8f44c0a2667526d-179f955a69863104"]},"geometry":{"type":"LineString","coordinates":[[-83.678662,32.856184],[-83.679032,32.856616],[-83.6793871,32.8570835],[-83.6795482,32.857256]]},"id":"8844c0a267fffff-17beb66f478c6e83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2293446e-13f7f0ce2448dd28","8f44c0a2667526d-179f955a69863104"]},"geometry":{"type":"LineString","coordinates":[[-83.6795482,32.857256],[-83.67964110000001,32.857355500000004],[-83.680079,32.857768],[-83.680558,32.85826],[-83.68081600000001,32.858502],[-83.68141100000001,32.859039]]},"id":"8744c0a26ffffff-13bfd319b4d19e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a229353b4-17dfcf90a51d9adb","8f44c0a2293446e-13f7f0ce2448dd28"]},"geometry":{"type":"LineString","coordinates":[[-83.68141100000001,32.859039],[-83.68191900000001,32.859414]]},"id":"8a44c0a22937fff-13de902f6ac023b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6829,32.860124]},"id":"8f44c0a2292ed0a-179f8d2b8e722462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a229353b4-17dfcf90a51d9adb","8f44c0a2292ed0a-179f8d2b8e722462"]},"geometry":{"type":"LineString","coordinates":[[-83.68191900000001,32.859414],[-83.68273,32.859991],[-83.6829,32.860124]]},"id":"8944c0a2293ffff-17bfae5c9fc6c55c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2292ed0a-179f8d2b8e722462","8f44c0a262da4b6-17d6aabf868417e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6829,32.860124],[-83.683019,32.8602],[-83.683892,32.860833]]},"id":"8944c0a2293ffff-17f7bbf43aae69e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a22966053-139fe847affb66eb","8f44c0a262da4b6-17d6aabf868417e5"]},"geometry":{"type":"LineString","coordinates":[[-83.683892,32.860833],[-83.684903,32.861567]]},"id":"8844c0a229fffff-13be898398cfc536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685472,32.861967]},"id":"8f44c0a22961d85-139fe6e407d5c97e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a22961d85-139fe6e407d5c97e","8f44c0a22966053-139fe847affb66eb"]},"geometry":{"type":"LineString","coordinates":[[-83.684903,32.861567],[-83.685472,32.861967]]},"id":"8a44c0a22967fff-139ee795d8daf733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2059e2b4-17b7a3a10ad2d68f","8f44c0a22961d85-139fe6e407d5c97e"]},"geometry":{"type":"LineString","coordinates":[[-83.685472,32.861967],[-83.68576200000001,32.862172],[-83.686206,32.862457],[-83.686808,32.862857000000005]]},"id":"8644c0a27ffffff-13b795439f4939e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2059e2b4-17b7a3a10ad2d68f","8f44c0a204a4ba6-179fa0a9a806d288"]},"geometry":{"type":"LineString","coordinates":[[-83.686808,32.862857000000005],[-83.68698900000001,32.86296],[-83.687751,32.86345],[-83.688023,32.863641]]},"id":"8944c0a205bffff-17b7d221f575dc09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68908420000001,32.864330200000005]},"id":"8f44c0a204103b2-13de7e1269cb9e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204a4ba6-179fa0a9a806d288","8f44c0a204103b2-13de7e1269cb9e07"]},"geometry":{"type":"LineString","coordinates":[[-83.688023,32.863641],[-83.688342,32.86384],[-83.688675,32.864061],[-83.688979,32.864257],[-83.68908420000001,32.864330200000005]]},"id":"8844c0a205fffff-17f77f5cb5d2bcff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720168,32.917378]},"id":"8f44c0a2840510a-13d7722f062db1e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2840510a-13d7722f062db1e9","8f44c0a28540994-17f72b248777bf8a"]},"geometry":{"type":"LineString","coordinates":[[-83.720168,32.917378],[-83.720566,32.917509],[-83.72116000000001,32.917681],[-83.72135,32.917696],[-83.721553,32.917672],[-83.721675,32.917636],[-83.72177,32.917591],[-83.721856,32.917535],[-83.72305200000001,32.916584]]},"id":"8844c0a285fffff-13bfae7c45a3d8cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723455,32.916266]},"id":"8f44c0a28563456-179e6a28acb220de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28563456-179e6a28acb220de","8f44c0a28540994-17f72b248777bf8a"]},"geometry":{"type":"LineString","coordinates":[[-83.72305200000001,32.916584],[-83.723455,32.916266]]},"id":"8944c0a2857ffff-17ffaaa690499d4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2202ea04-17969af08244854f","8f44c0a22006106-1797fe9c8e1832cf"]},"geometry":{"type":"LineString","coordinates":[[-83.675756,32.869951],[-83.67653800000001,32.869937],[-83.676809,32.869946],[-83.67695400000001,32.869964],[-83.67709400000001,32.870018],[-83.6772,32.870089],[-83.67726,32.870144]]},"id":"8944c0a2203ffff-1797fcb896eff8b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2202ea04-17969af08244854f","8f44c0a223b2c81-13bf9cabae9abb7b"]},"geometry":{"type":"LineString","coordinates":[[-83.67726,32.870144],[-83.67734700000001,32.870267000000005],[-83.67739300000001,32.870358],[-83.677422,32.87048],[-83.677408,32.870635],[-83.67738100000001,32.87072],[-83.67710100000001,32.87173],[-83.676973,32.872028],[-83.676848,32.872247],[-83.676687,32.872458],[-83.67663200000001,32.872553],[-83.676624,32.872774],[-83.67666100000001,32.873109],[-83.676736,32.873485],[-83.676725,32.873651],[-83.676699,32.873807],[-83.676551,32.87454]]},"id":"8844c0a221fffff-13debbbd13e7b41c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a261aac2a-17dfb3898c6111c1","8f44c0a2611d190-17f6edfa69acd573"]},"geometry":{"type":"LineString","coordinates":[[-83.68029200000001,32.846949],[-83.68036000000001,32.846935],[-83.68047,32.846928000000005],[-83.681329,32.846935],[-83.682569,32.846955]]},"id":"8844c0a261fffff-17df90c27ccef1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2611d190-17f6edfa69acd573","8f44c0a268db6e3-17ffc7520b261459"]},"geometry":{"type":"LineString","coordinates":[[-83.682569,32.846955],[-83.68529600000001,32.846994]]},"id":"8844c0a261fffff-17ff9aa636eb26a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b96d2e-179fe31323968761","8f44c0a268db6e3-17ffc7520b261459"]},"geometry":{"type":"LineString","coordinates":[[-83.68529600000001,32.846994],[-83.68703500000001,32.847023]]},"id":"8744c0a26ffffff-1796d5329a569992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688084,32.847043]},"id":"8f44c0a26bb3074-179fe0838099f59e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b96d2e-179fe31323968761","8f44c0a26bb3074-179fe0838099f59e"]},"geometry":{"type":"LineString","coordinates":[[-83.68703500000001,32.847023],[-83.688084,32.847043]]},"id":"8944c0a26bbffff-1797a1cb55bd337c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19cc0341-17d7fcab00bbe648","8f44c0b195658db-1396ec084f1639d5"]},"geometry":{"type":"LineString","coordinates":[[-83.683366,32.825319],[-83.68335300000001,32.82423],[-83.68334,32.824021],[-83.683287,32.823845],[-83.68318000000001,32.823672],[-83.6831056,32.8235647]]},"id":"8744c0b19ffffff-17df8c22b6b81c4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19cc0341-17d7fcab00bbe648","8f44c0b19cc0d11-13f7cd466a1e2969"]},"geometry":{"type":"LineString","coordinates":[[-83.6831056,32.8235647],[-83.682857,32.823206]]},"id":"8b44c0b19cc0fff-17d7ecf8b9792863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70527700000001,32.862656]},"id":"8f44c0a20bb2119-17be5689ef5be3f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20b9e8ce-139fd659c5f83b7f","8f44c0a20bb2119-17be5689ef5be3f6"]},"geometry":{"type":"LineString","coordinates":[[-83.705354,32.864252],[-83.70538400000001,32.863087],[-83.705385,32.863053],[-83.705369,32.862859],[-83.70533,32.86276],[-83.70527700000001,32.862656]]},"id":"8944c0a20bbffff-17b776535bb71fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20bb2119-17be5689ef5be3f6","8f44c0a208ccbb1-139e57fe6169f131"]},"geometry":{"type":"LineString","coordinates":[[-83.70527700000001,32.862656],[-83.704942,32.862405],[-83.70488900000001,32.862353],[-83.70483,32.862274],[-83.704818,32.862253],[-83.704769,32.86217],[-83.70468100000001,32.861994]]},"id":"8844c0a209fffff-13fed75b29411eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208eecf4-13de77fd23b6bdec","8f44c0a208ccbb1-139e57fe6169f131"]},"geometry":{"type":"LineString","coordinates":[[-83.70468100000001,32.861994],[-83.704656,32.861877],[-83.704643,32.861756],[-83.704644,32.861593],[-83.70465800000001,32.861250000000005],[-83.704683,32.861053000000005]]},"id":"8944c0a208fffff-13f6f80e2321bc6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208eecf4-13de77fd23b6bdec","8f44c0a208637a0-17bff0be2748ea1b"]},"geometry":{"type":"LineString","coordinates":[[-83.704683,32.861053000000005],[-83.704729,32.860968],[-83.704847,32.860804],[-83.70503000000001,32.860591],[-83.705223,32.860388],[-83.705295,32.860335],[-83.70536100000001,32.860303],[-83.70544500000001,32.860279000000006],[-83.705532,32.860264],[-83.705726,32.860263],[-83.70674600000001,32.860276],[-83.70702800000001,32.860273],[-83.707262,32.860247],[-83.707651,32.860179]]},"id":"8844c0a209fffff-17bfd4ac1d5d3096"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a208637a0-17bff0be2748ea1b","8f44c0a254930c0-17fecd3528e4e10c"]},"geometry":{"type":"LineString","coordinates":[[-83.707651,32.860179],[-83.707779,32.860163],[-83.70791100000001,32.860163],[-83.708053,32.860174],[-83.708106,32.860183],[-83.70827100000001,32.860222],[-83.708606,32.860312],[-83.708713,32.860329],[-83.708803,32.860334],[-83.70897500000001,32.860318],[-83.70909900000001,32.860286]]},"id":"8844c0a209fffff-17d65ef8af7b15de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254930c0-17fecd3528e4e10c","8f44c0a25483da0-17974a404c14fc0c"]},"geometry":{"type":"LineString","coordinates":[[-83.70909900000001,32.860286],[-83.709474,32.860174],[-83.709625,32.860137],[-83.709744,32.860115],[-83.709815,32.860111],[-83.70998900000001,32.860107],[-83.71031,32.860114]]},"id":"8944c0a254bffff-179f7bbe8d4a2b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2548d432-17dee786c94523f9","8f44c0a25483da0-17974a404c14fc0c"]},"geometry":{"type":"LineString","coordinates":[[-83.71031,32.860114],[-83.71048400000001,32.860149],[-83.710638,32.86023],[-83.71071,32.860281],[-83.710744,32.860304],[-83.711426,32.860849]]},"id":"8944c0a254bffff-17de58d5e8e5cc76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71231200000001,32.86204]},"id":"8f44c0a254d5332-13b7455d02a24236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254d5332-13b7455d02a24236","8f44c0a2548d432-17dee786c94523f9"]},"geometry":{"type":"LineString","coordinates":[[-83.711426,32.860849],[-83.71156900000001,32.860974],[-83.71168700000001,32.861113],[-83.71176200000001,32.861226],[-83.71186700000001,32.861432],[-83.711928,32.861542],[-83.71199700000001,32.861668],[-83.712114,32.861849],[-83.712213,32.861958],[-83.71231200000001,32.86204]]},"id":"8844c0a255fffff-13d7667004e4a2f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254c18e5-13b7625c451a5090","8f44c0a254d5332-13b7455d02a24236"]},"geometry":{"type":"LineString","coordinates":[[-83.71231200000001,32.86204],[-83.71249200000001,32.862157],[-83.71251000000001,32.862167],[-83.71264400000001,32.862242],[-83.712772,32.862295],[-83.712924,32.862344],[-83.713086,32.86238],[-83.713542,32.862415]]},"id":"8944c0a254fffff-13d663ea2272769e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254e900d-17b73f5cceb89de1","8f44c0a254c18e5-13b7625c451a5090"]},"geometry":{"type":"LineString","coordinates":[[-83.713542,32.862415],[-83.714094,32.862456],[-83.714285,32.862485],[-83.714511,32.862546],[-83.714645,32.862595],[-83.71477,32.862648]]},"id":"8944c0a254fffff-13d6f0d70853e0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254e900d-17b73f5cceb89de1","8f44c0a257a2d93-17973d2fe1824909"]},"geometry":{"type":"LineString","coordinates":[[-83.71477,32.862648],[-83.714957,32.862744],[-83.715051,32.862805],[-83.715249,32.862955],[-83.71540200000001,32.863115],[-83.71560600000001,32.863354],[-83.71566100000001,32.863413]]},"id":"8744c0a25ffffff-179fbe34019a7f69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2562a75c-179fb54c831f1fbc","8f44c0a257a2d93-17973d2fe1824909"]},"geometry":{"type":"LineString","coordinates":[[-83.71566100000001,32.863413],[-83.715866,32.863563],[-83.716139,32.863702],[-83.71629300000001,32.86376],[-83.716451,32.863808],[-83.71659000000001,32.863836],[-83.716885,32.863858],[-83.71704600000001,32.863858],[-83.717163,32.86387],[-83.71728300000001,32.863888],[-83.717447,32.863929],[-83.717616,32.863987],[-83.717736,32.86404],[-83.717805,32.864071],[-83.717972,32.864176],[-83.718109,32.864286],[-83.71823900000001,32.864412],[-83.71834000000001,32.864547],[-83.718421,32.864689000000006],[-83.71849200000001,32.864886000000006],[-83.71852600000001,32.865023],[-83.71870100000001,32.866189],[-83.718726,32.866388],[-83.718727,32.866413],[-83.71874000000001,32.866681],[-83.718756,32.866867],[-83.71877900000001,32.866957],[-83.71883000000001,32.867038],[-83.71889200000001,32.867116]]},"id":"8844c0a257fffff-13fe37fd8c960fcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6428662,32.7912758]},"id":"8f44c0b1324918d-17f7eee8ad0560bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b132490d9-17beeee96980f47f","8f44c0b1324918d-17f7eee8ad0560bc"]},"geometry":{"type":"LineString","coordinates":[[-83.642865,32.79139],[-83.6428662,32.7912758]]},"id":"8b44c0b13249fff-1797fee90c661e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1334a10d-17feeeb943ae7f49","8f44c0b1324918d-17f7eee8ad0560bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6428662,32.7912758],[-83.6428669,32.7912143],[-83.64287800000001,32.790463],[-83.642904,32.789386],[-83.642915,32.789091],[-83.642942,32.788013]]},"id":"8544c0b3fffffff-13f7fed35466116c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1334a10d-17feeeb943ae7f49","8f44c0b133666a4-13d6ee996bd28161"]},"geometry":{"type":"LineString","coordinates":[[-83.642942,32.788013],[-83.642993,32.785697]]},"id":"8944c0b1337ffff-13beeea952abfd81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a9c6e5-1796f42a4ac19401","8f44c0b19af6892-17beeeac0e9d72a8"]},"geometry":{"type":"LineString","coordinates":[[-83.69314200000001,32.830238],[-83.695392,32.830273000000005]]},"id":"8944c0b19abffff-179ff16b22079611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19af6892-17beeeac0e9d72a8","8f44c0b19ae6931-17b7eb2a8f28053e"]},"geometry":{"type":"LineString","coordinates":[[-83.695392,32.830273000000005],[-83.69682800000001,32.830294]]},"id":"8844c0b19bfffff-17bf7ceb4e2d2e4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a0911c-17d6e7eb408f119b","8f44c0b19ae6931-17b7eb2a8f28053e"]},"geometry":{"type":"LineString","coordinates":[[-83.69682800000001,32.830294],[-83.69701400000001,32.830246],[-83.69719900000001,32.83019],[-83.69734700000001,32.830154],[-83.697501,32.830143],[-83.698158,32.830142]]},"id":"8944c0b19a3ffff-17fff98e708d55ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69859550000001,32.8301426]},"id":"8f44c0b19a720d5-17d766d9d9d90e76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19a720d5-17d766d9d9d90e76","8f44c0b19a0911c-17d6e7eb408f119b"]},"geometry":{"type":"LineString","coordinates":[[-83.698158,32.830142],[-83.69859550000001,32.8301426]]},"id":"8844c0b19bfffff-17d6f7628d88c1f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.740915,32.833948]},"id":"8f44c0b094aa2c5-17b5ff882f99f7da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7408497,32.8353034]},"id":"8f44c0b094d6103-13f5ffb0f01315c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b094aa2c5-17b5ff882f99f7da","8f44c0b094d6103-13f5ffb0f01315c9"]},"geometry":{"type":"LineString","coordinates":[[-83.740915,32.833948],[-83.7408497,32.8353034]]},"id":"8844c0b095fffff-17ddff9c90ee21b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74081670000001,32.835986500000004]},"id":"8f44c0b094d2256-139fffc5962b8738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b094d2256-139fffc5962b8738","8f44c0b094d6103-13f5ffb0f01315c9"]},"geometry":{"type":"LineString","coordinates":[[-83.7408497,32.8353034],[-83.74081670000001,32.835986500000004]]},"id":"8a44c0b094d7fff-13d7ffbb4a36d0cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bb2d50c-17d7ffd30cf414da","8f44c0b094d2256-139fffc5962b8738"]},"geometry":{"type":"LineString","coordinates":[[-83.74081670000001,32.835986500000004],[-83.74079900000001,32.836354],[-83.74079520000001,32.8364861]]},"id":"8644c0b0fffffff-13b7ffcce03af3f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73919640000001,32.8439703]},"id":"8f44c0b56db0698-179f73ba489ba5f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bb2d50c-17d7ffd30cf414da","8f44c0b56db0698-179f73ba489ba5f8"]},"geometry":{"type":"LineString","coordinates":[[-83.74079520000001,32.8364861],[-83.740786,32.83681],[-83.74079,32.837663],[-83.740903,32.838265],[-83.74098400000001,32.838479],[-83.741016,32.838676],[-83.741039,32.83887],[-83.741027,32.839078],[-83.740955,32.839354],[-83.74060800000001,32.840192],[-83.740525,32.840466],[-83.740513,32.840784],[-83.74048300000001,32.841037],[-83.740521,32.841292],[-83.740464,32.841732],[-83.74027500000001,32.842266],[-83.739913,32.843173],[-83.73976300000001,32.843406],[-83.73962300000001,32.843549],[-83.739478,32.843677],[-83.739299,32.843834],[-83.739238,32.843915],[-83.73919640000001,32.8439703]]},"id":"8744c0b0bffffff-17de4092c4fa6999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c2a0614-13b72aebc62f014f","8f44c0a2c38e71c-17f749f8accd3e3d"]},"geometry":{"type":"LineString","coordinates":[[-83.73663900000001,32.903298],[-83.73660600000001,32.903334],[-83.73655000000001,32.90341],[-83.736501,32.903492],[-83.736422,32.90366],[-83.73638600000001,32.903776],[-83.73625,32.904629]]},"id":"8844c0a2c3fffff-13972a9696e77c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2897331b-13ff69d7878eaa61","8f44c0a2c2a0614-13b72aebc62f014f"]},"geometry":{"type":"LineString","coordinates":[[-83.73625,32.904629],[-83.73617800000001,32.905153],[-83.73616700000001,32.905375],[-83.73617700000001,32.905709],[-83.73621100000001,32.906322],[-83.73621100000001,32.906492],[-83.736196,32.906701000000005],[-83.736171,32.906878],[-83.736124,32.9071],[-83.735899,32.907983],[-83.73581,32.908372],[-83.73579000000001,32.908478],[-83.735786,32.90862],[-83.735808,32.908765],[-83.735854,32.908904],[-83.736075,32.909518000000006],[-83.73615000000001,32.909699],[-83.73622200000001,32.909813],[-83.736323,32.909937],[-83.736692,32.910255]]},"id":"8644c0a2fffffff-13d7ab45ab58b634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2897331b-13ff69d7878eaa61","8f44c0a28946316-13b6a904e265d3bc"]},"geometry":{"type":"LineString","coordinates":[[-83.736692,32.910255],[-83.73685,32.910396],[-83.737029,32.910545]]},"id":"8944c0a2897ffff-13dee96efe3ab39b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28946316-13b6a904e265d3bc","8f44c0a2886e091-13b7483cecf4c36c"]},"geometry":{"type":"LineString","coordinates":[[-83.737029,32.910545],[-83.73716800000001,32.910665],[-83.737283,32.910798],[-83.737369,32.910933],[-83.737414,32.911043],[-83.73744,32.911170000000006],[-83.737452,32.911302],[-83.73743400000001,32.911769],[-83.737369,32.913106],[-83.73734900000001,32.913618]]},"id":"8844c0a289fffff-17bf482e24ea8ccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70047500000001,32.893704]},"id":"8f44c0a2335c42c-1397624329d065bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2335c42c-1397624329d065bd","8f44c0a23210226-139e6b96aa4ebc22"]},"geometry":{"type":"LineString","coordinates":[[-83.70047500000001,32.893704],[-83.700328,32.893766],[-83.700134,32.893846],[-83.699904,32.893918],[-83.699664,32.893959],[-83.699422,32.893971],[-83.696655,32.893946]]},"id":"8844c0a233fffff-1397e6e19db6b8fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23210226-139e6b96aa4ebc22","8f44c0a2374930b-139f745420de7f1a"]},"geometry":{"type":"LineString","coordinates":[[-83.696655,32.893946],[-83.69544900000001,32.893943],[-83.69364900000001,32.893929],[-83.69307500000001,32.893922]]},"id":"8744c0a23ffffff-1396eff56188adc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906695,32.8939858]},"id":"8f44c0a236740cb-13b77a3398a850dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2374930b-139f745420de7f1a","8f44c0a236740cb-13b77a3398a850dd"]},"geometry":{"type":"LineString","coordinates":[[-83.69307500000001,32.893922],[-83.690849,32.893912],[-83.6906695,32.8939858]]},"id":"8844c0a237fffff-139ff74813f2318e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a028a8-1397f874837bd508","8f44c0b08a3406c-1797f868aecb4c94"]},"geometry":{"type":"LineString","coordinates":[[-83.74381360000001,32.8183613],[-83.7438326,32.8169011]]},"id":"8944c0b08a3ffff-17dff86e98fc4fcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08a3406c-1797f868aecb4c94","8f44c0b08b10251-13fff84f478be8b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7438326,32.8169011],[-83.74387320000001,32.8154346]]},"id":"8844c0b08bfffff-13bdf85bf8c772b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.743879,32.814922]},"id":"8f44c0b08b1476d-17bff84baad551fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08b1476d-17bff84baad551fd","8f44c0b08b10251-13fff84f478be8b1"]},"geometry":{"type":"LineString","coordinates":[[-83.74387320000001,32.8154346],[-83.743879,32.814922]]},"id":"8a44c0b08b17fff-13dff84d7a0e449e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac2d145-13b6eab203cf4d5f","8f44c0b1ac053a2-139fee00eca29462"]},"geometry":{"type":"LineString","coordinates":[[-83.643237,32.80957],[-83.644592,32.809579]]},"id":"8844c0b1adfffff-13b6fc5977c00832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad5d864-13bfe74206494091","8f44c0b1ac2d145-13b6eab203cf4d5f"]},"geometry":{"type":"LineString","coordinates":[[-83.644592,32.809579],[-83.646,32.809592]]},"id":"8944c0b1ad7ffff-13b6f8fa07a3dbf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad5d864-13bfe74206494091","8f44c0b1ad4c300-13bfe51525500b65"]},"geometry":{"type":"LineString","coordinates":[[-83.646,32.809592],[-83.64689100000001,32.809593]]},"id":"8944c0b1ad7ffff-13bff62b9f30c7e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64788800000001,32.807591]},"id":"8f44c0b1a99685e-17dee2a60065a647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a99685e-17dee2a60065a647","8f44c0b1ad758f0-17b7e73269aef262"]},"geometry":{"type":"LineString","coordinates":[[-83.64788800000001,32.807591],[-83.64602500000001,32.807557]]},"id":"8744c0b1affffff-17bfe4ec306cb834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64585100000001,32.807554]},"id":"8f44c0b1ad75cc6-17b7e79f2f40f58f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad75cc6-17b7e79f2f40f58f","8f44c0b1ad758f0-17b7e73269aef262"]},"geometry":{"type":"LineString","coordinates":[[-83.64602500000001,32.807557],[-83.64585100000001,32.807554]]},"id":"8b44c0b1ad75fff-17b6f768cabc1faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad75cc6-17b7e79f2f40f58f","8f44c0b1ad0d02e-17b6ea864041f3e0"]},"geometry":{"type":"LineString","coordinates":[[-83.64585100000001,32.807554],[-83.64466200000001,32.807536]]},"id":"8844c0b1adfffff-17bfe912bdcb5ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad0d02e-17b6ea864041f3e0","8f44c0b1ad1d0da-1797ede2e77015bd"]},"geometry":{"type":"LineString","coordinates":[[-83.64466200000001,32.807536],[-83.643285,32.807513]]},"id":"8944c0b1ad3ffff-179efc349a771f3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642633,32.807505]},"id":"8f44c0b1ad18414-1796ef7a6f37b29f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad18414-1796ef7a6f37b29f","8f44c0b1ad1d0da-1797ede2e77015bd"]},"geometry":{"type":"LineString","coordinates":[[-83.643285,32.807513],[-83.642633,32.807505]]},"id":"8a44c0b1ad1ffff-1797eeaea2dd6e27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61433480000001,32.8480803]},"id":"8f44c0a3672b6cb-13b73490c23f44ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61433360000001,32.8482154]},"id":"8f44c0a3670d106-13f7b49181978bc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3670d106-13f7b49181978bc1","8f44c0a3672b6cb-13b73490c23f44ff"]},"geometry":{"type":"LineString","coordinates":[[-83.61433480000001,32.8480803],[-83.61433360000001,32.8482154]]},"id":"8b44c0a3670dfff-13df74912be7a597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143308,32.8485778]},"id":"8f44c0a36709828-13df3493407d139e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3670d106-13f7b49181978bc1","8f44c0a36709828-13df3493407d139e"]},"geometry":{"type":"LineString","coordinates":[[-83.61433360000001,32.8482154],[-83.6143308,32.8485778]]},"id":"8a44c0a3670ffff-13f7f49269632140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36709828-13df3493407d139e","8f44c0a3670925c-13b73494f692038f"]},"geometry":{"type":"LineString","coordinates":[[-83.6143308,32.8485778],[-83.61432810000001,32.8489299]]},"id":"8844c0a367fffff-13d7349419fcc328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143167,32.849637]},"id":"8f44c0a3675061a-17ff349c11909db7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3675061a-17ff349c11909db7","8f44c0a3670925c-13b73494f692038f"]},"geometry":{"type":"LineString","coordinates":[[-83.61432810000001,32.8489299],[-83.6143218,32.8492011],[-83.6143167,32.849637]]},"id":"8a44c0a36757fff-1397349921853408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3675061a-17ff349c11909db7","8f44c0a3675a594-17d734aae8d0097c"]},"geometry":{"type":"LineString","coordinates":[[-83.6143167,32.849637],[-83.614293,32.850592]]},"id":"8944c0a3677ffff-179fb4a381423bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3667442d-17f7b4ae02d0bcdf","8f44c0a3675a594-17d734aae8d0097c"]},"geometry":{"type":"LineString","coordinates":[[-83.614293,32.850592],[-83.614288,32.851084]]},"id":"8844c0a367fffff-17dff4ac71448b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3667442d-17f7b4ae02d0bcdf","8f44c0a36673810-13d774b76747bb28"]},"geometry":{"type":"LineString","coordinates":[[-83.614288,32.851084],[-83.61427300000001,32.851823]]},"id":"8a44c0a36677fff-13df74b2b2587367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36642d9a-139734bd05bf5a40","8f44c0a36673810-13d774b76747bb28"]},"geometry":{"type":"LineString","coordinates":[[-83.61427300000001,32.851823],[-83.614264,32.852541]]},"id":"8944c0a3667ffff-13b7f4ba3c07714f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36642d9a-139734bd05bf5a40","8f44c0a366594a3-17df74a613476bf9"]},"geometry":{"type":"LineString","coordinates":[[-83.614264,32.852541],[-83.614281,32.852634],[-83.6143007,32.8539029]]},"id":"8944c0a3667ffff-17bf74ad09301e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67701000000001,32.737727]},"id":"8f44c0b33376cb3-13b7fb8cc373ec76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b33376cb3-13b7fb8cc373ec76","8f44c0b06d1948c-179689ea663633be"]},"geometry":{"type":"LineString","coordinates":[[-83.67701000000001,32.737727],[-83.677175,32.737797],[-83.677805,32.738042],[-83.67823800000001,32.7382],[-83.678551,32.738307],[-83.678931,32.738397],[-83.679418,32.738475],[-83.68109600000001,32.738695],[-83.682524,32.738887000000005],[-83.683069,32.738957],[-83.684233,32.739108]]},"id":"8644c0b37ffffff-17df92d3c970af87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06d1948c-179689ea663633be","8f44c0b06d09b10-17bf85a868677294"]},"geometry":{"type":"LineString","coordinates":[[-83.684233,32.739108],[-83.68463600000001,32.739160000000005],[-83.684835,32.739176],[-83.68505800000001,32.739174000000006],[-83.68544200000001,32.739134],[-83.685744,32.739137],[-83.68597700000001,32.739164]]},"id":"8844c0b06dfffff-17b6c7c9cb6f0f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06d71024-179ea2dae5a937dd","8f44c0b06d09b10-17bf85a868677294"]},"geometry":{"type":"LineString","coordinates":[[-83.68597700000001,32.739164],[-83.68712500000001,32.739297]]},"id":"8944c0b06d7ffff-17f79441a22041a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06d71024-179ea2dae5a937dd","8f44c0b06d61451-17ffc00f4b9126a5"]},"geometry":{"type":"LineString","coordinates":[[-83.68712500000001,32.739297],[-83.687707,32.739367],[-83.68807500000001,32.739427],[-83.68827,32.739474]]},"id":"8944c0b06d7ffff-17bee173c5c2b763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0699e011-13bffcc9ccfbb4df","8f44c0b06d61451-17ffc00f4b9126a5"]},"geometry":{"type":"LineString","coordinates":[[-83.68827,32.739474],[-83.688556,32.739559],[-83.688861,32.739677],[-83.689406,32.739897],[-83.68961,32.739993000000005]]},"id":"8744c0b06ffffff-13977e68b2bfc675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0699e011-13bffcc9ccfbb4df","8f44c0b0698a09b-13befa0c85b5a4e7"]},"geometry":{"type":"LineString","coordinates":[[-83.68961,32.739993000000005],[-83.689763,32.740054],[-83.68992700000001,32.740127],[-83.690335,32.740332],[-83.690516,32.740433],[-83.69073200000001,32.740574]]},"id":"8944c0b069bffff-13fefb64bbb65e1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926208,32.7417922]},"id":"8f44c0b06802449-17b67570030c60fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0698a09b-13befa0c85b5a4e7","8f44c0b06802449-17b67570030c60fe"]},"geometry":{"type":"LineString","coordinates":[[-83.69073200000001,32.740574],[-83.691266,32.7409],[-83.69254400000001,32.741742],[-83.6926208,32.7417922]]},"id":"8844c0b069fffff-13b777bbbe268d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717087,32.834586900000005]},"id":"8f44c0b0b5b57ac-17b6f9b4aaf8a921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0b5b57ac-17b6f9b4aaf8a921","8f44c0b0a25c8a5-13f7786143248b74"]},"geometry":{"type":"LineString","coordinates":[[-83.717087,32.834586900000005],[-83.717144,32.834477],[-83.717174,32.83424],[-83.717217,32.834105],[-83.717303,32.833934],[-83.71748000000001,32.833627],[-83.717568,32.833458],[-83.71760400000001,32.833368],[-83.717628,32.833277],[-83.717634,32.833201],[-83.71763,32.833058]]},"id":"8644c0b0fffffff-17d6f8ffb65fc358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71719730000001,32.8321276]},"id":"8f44c0b0a254a2c-13bff96fb51f5daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a254a2c-13bff96fb51f5daa","8f44c0b0a25c8a5-13f7786143248b74"]},"geometry":{"type":"LineString","coordinates":[[-83.71763,32.833058],[-83.717624,32.832932],[-83.71760400000001,32.832804],[-83.71754200000001,32.832662],[-83.717422,32.832467],[-83.71719730000001,32.8321276]]},"id":"8944c0b0a27ffff-13d778ca18f8d74d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a22961d85-139fe6e407d5c97e","8f44c0a204b662e-179f859d2d4a257c"]},"geometry":{"type":"LineString","coordinates":[[-83.685472,32.861967],[-83.684723,32.862605],[-83.684656,32.862668],[-83.684593,32.862755],[-83.68456300000001,32.862814],[-83.68455,32.862876],[-83.68454600000001,32.862949],[-83.68455200000001,32.863024],[-83.68457500000001,32.863101],[-83.684611,32.863177],[-83.684657,32.863239],[-83.684713,32.863287],[-83.68514900000001,32.863526],[-83.685288,32.863591],[-83.68548200000001,32.863663],[-83.68566700000001,32.863715],[-83.685995,32.863816]]},"id":"8744c0a22ffffff-179ea7d830e2673d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a204a04e1-17f781c562a569a9","8f44c0a204b662e-179f859d2d4a257c"]},"geometry":{"type":"LineString","coordinates":[[-83.685995,32.863816],[-83.686251,32.863892],[-83.68756900000001,32.864156]]},"id":"8944c0a204bffff-17ffe3b2cb40db7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a204a04e1-17f781c562a569a9","8f44c0a20413932-139f7e26d90b7d86"]},"geometry":{"type":"LineString","coordinates":[[-83.68756900000001,32.864156],[-83.68872,32.864385],[-83.6890515,32.864449900000004]]},"id":"8844c0a205fffff-13bffff62fe0c8f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53c33770-17d5e1008dda587d","8f44c0b53c94af0-13dde9e6ae6de110"]},"geometry":{"type":"LineString","coordinates":[[-83.749775,32.884596],[-83.749846,32.884591],[-83.749915,32.88458],[-83.75021000000001,32.884495],[-83.75025600000001,32.884472],[-83.75031800000001,32.88443],[-83.750425,32.884341],[-83.750572,32.884202],[-83.75071000000001,32.884079],[-83.750849,32.88398],[-83.750956,32.883919],[-83.751068,32.88387],[-83.75111000000001,32.883851],[-83.75118,32.883828],[-83.75130700000001,32.883797],[-83.75137500000001,32.883785],[-83.75153300000001,32.883772],[-83.75342,32.883797]]},"id":"8844c0b53dfffff-13ddf599e8c95355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53c33770-17d5e1008dda587d","8f44c0b53c089a0-13d7fd836b902290"]},"geometry":{"type":"LineString","coordinates":[[-83.75342,32.883797],[-83.75487100000001,32.883819],[-83.75484900000001,32.885227]]},"id":"8944c0b53c3ffff-13bdde5f2186a3c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53ce3b01-17b5df3a2f3616c7","8f44c0b53c089a0-13d7fd836b902290"]},"geometry":{"type":"LineString","coordinates":[[-83.75484900000001,32.885227],[-83.75484700000001,32.885401],[-83.75483600000001,32.88563],[-83.754805,32.885846],[-83.754756,32.886052],[-83.75472,32.886159],[-83.754672,32.88626],[-83.75460600000001,32.886361],[-83.754462,32.886526],[-83.754309,32.886665],[-83.754147,32.886792]]},"id":"8844c0b53dfffff-17f7fe0333fa955d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b535308a5-17f5eabc6f30d12c","8f44c0b53ce3b01-17b5df3a2f3616c7"]},"geometry":{"type":"LineString","coordinates":[[-83.754147,32.886792],[-83.75386,32.887003],[-83.75370000000001,32.887099],[-83.753558,32.887172],[-83.753445,32.88722],[-83.753276,32.887273],[-83.753152,32.887303],[-83.75297900000001,32.88733],[-83.75277100000001,32.887346],[-83.752297,32.887349],[-83.75068300000001,32.887318],[-83.750496,32.887296],[-83.75024400000001,32.887240000000006],[-83.75010800000001,32.8872],[-83.749937,32.88714],[-83.749685,32.887026],[-83.74943300000001,32.886888]]},"id":"8744c0b53ffffff-13b5f4ed2e4fd182"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.585068,32.863562]},"id":"8f44c0b89c72589-17ff7c04842868de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89cc48c8-1397a0864fa7843c","8f44c0b89c72589-17ff7c04842868de"]},"geometry":{"type":"LineString","coordinates":[[-83.585068,32.863562],[-83.585085,32.864306],[-83.585076,32.864427],[-83.58504900000001,32.864503],[-83.58502200000001,32.864542],[-83.58496000000001,32.86461],[-83.58489300000001,32.864659],[-83.58483600000001,32.864693],[-83.584753,32.864733],[-83.584624,32.864773],[-83.58449300000001,32.864794],[-83.58438500000001,32.864801],[-83.583222,32.864821]]},"id":"8844c0b89dfffff-13df7d794f5193d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58262400000001,32.864823]},"id":"8f44c0b89cc6d43-1397e1fc017377c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89cc48c8-1397a0864fa7843c","8f44c0b89cc6d43-1397e1fc017377c0"]},"geometry":{"type":"LineString","coordinates":[[-83.583222,32.864821],[-83.58282200000001,32.864828],[-83.58262400000001,32.864823]]},"id":"8a44c0b89cc7fff-1397814120bd4727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7388947,32.8006742]},"id":"8f44c0b0c0da28e-17f76476de8797f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c72b55a-17f657373ca16d2b","8f44c0b0c0da28e-17f76476de8797f0"]},"geometry":{"type":"LineString","coordinates":[[-83.7388947,32.8006742],[-83.7377677,32.8006949]]},"id":"8844c0b0c7fffff-17ffe5d70e534577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735962,32.800728]},"id":"8f44c0b0c71c442-17970b9fc4ea3316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c71c442-17970b9fc4ea3316","8f44c0b0c72b55a-17f657373ca16d2b"]},"geometry":{"type":"LineString","coordinates":[[-83.7377677,32.8006949],[-83.735962,32.800728]]},"id":"8944c0b0c73ffff-17feb96b864ae1bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636616,32.80989]},"id":"8f44c0bad260dac-13f7fe2b0a1d08dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac9648e-13fffc2c6338bdb0","8f44c0bad260dac-13f7fe2b0a1d08dc"]},"geometry":{"type":"LineString","coordinates":[[-83.636616,32.80989],[-83.637433,32.809907]]},"id":"8944c0bad27ffff-13fefd2bb186106b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac9648e-13fffc2c6338bdb0","8f44c0b1ac95c33-1397f9bfc5a94392"]},"geometry":{"type":"LineString","coordinates":[[-83.637433,32.809907],[-83.63842600000001,32.809945]]},"id":"8a44c0b1ac97fff-13fffaf61bb97441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639329,32.810006]},"id":"8f44c0b1ac8478e-13bff78b6e018994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac95c33-1397f9bfc5a94392","8f44c0b1ac8478e-13bff78b6e018994"]},"geometry":{"type":"LineString","coordinates":[[-83.63842600000001,32.809945],[-83.639224,32.809972],[-83.639329,32.810006]]},"id":"8944c0b1acbffff-1396f8a42eff2f48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c08199-13bff51d245e8ab8","8f44c0a04c31316-17fff6dac6daa0f0"]},"geometry":{"type":"LineString","coordinates":[[-83.66582600000001,32.883251],[-83.665757,32.883529],[-83.66574700000001,32.883626],[-83.665767,32.883808],[-83.66582000000001,32.883937],[-83.66591100000001,32.884105000000005],[-83.666013,32.884273],[-83.666539,32.884991]]},"id":"8944c0a04c3ffff-13beb65c98f63bb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c08199-13bff51d245e8ab8","8f44c0a04c0801e-13d6b506afd7d91f"]},"geometry":{"type":"LineString","coordinates":[[-83.666539,32.884991],[-83.66657500000001,32.885025]]},"id":"8c44c0a04c081ff-13deb511e64a8253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04c0801e-13d6b506afd7d91f","8f44c0a04c538e6-17bef3954ca7ada8"]},"geometry":{"type":"LineString","coordinates":[[-83.66657500000001,32.885025],[-83.666891,32.885467000000006],[-83.667026,32.885731],[-83.66707600000001,32.88591],[-83.66716600000001,32.886423]]},"id":"8844c0a04dfffff-17f7f41f5468f8ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c3ad24b-13dfb46dab977022","8f44c0b1c30d1a9-13d6ce668e6a38f8"]},"geometry":{"type":"LineString","coordinates":[[-83.679927,32.796357],[-83.67997100000001,32.796332],[-83.680048,32.796304],[-83.680115,32.796301],[-83.68239600000001,32.796318]]},"id":"8944c0b1c33ffff-13bff16d81c0af13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd96d4b-13dfc6c1aaaa5051","8f44c0b1c30d1a9-13d6ce668e6a38f8"]},"geometry":{"type":"LineString","coordinates":[[-83.68239600000001,32.796318],[-83.684863,32.796337],[-83.68552700000001,32.796338]]},"id":"8744c0b1cffffff-13de8a9418bea066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd13811-13dffdc5058e814b","8f44c0b1dd96d4b-13dfc6c1aaaa5051"]},"geometry":{"type":"LineString","coordinates":[[-83.68552700000001,32.796338],[-83.68920800000001,32.796355000000005]]},"id":"8844c0b1ddfffff-13d692435085a9fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1dd13811-13dffdc5058e814b","8f44c0b036d848e-13ff74a389cf841f"]},"geometry":{"type":"LineString","coordinates":[[-83.68920800000001,32.796355000000005],[-83.691647,32.796384],[-83.692948,32.796415]]},"id":"8844c0b1ddfffff-13ff79343f5d7e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d9b0913-139eed5d0f8ba258","8f44c0b036d848e-13ff74a389cf841f"]},"geometry":{"type":"LineString","coordinates":[[-83.692948,32.796415],[-83.69592800000001,32.796433]]},"id":"8744c0b1dffffff-1397710045a13481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697967,32.796253]},"id":"8f44c0b0364ba54-139e6862aa364c7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d9b0913-139eed5d0f8ba258","8f44c0b0364ba54-139e6862aa364c7c"]},"geometry":{"type":"LineString","coordinates":[[-83.69592800000001,32.796433],[-83.69723,32.796436],[-83.697338,32.79643],[-83.697517,32.796402],[-83.69761000000001,32.796383],[-83.697967,32.796253]]},"id":"8644c0b1fffffff-13ffead95fca32fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112c0d8a-17d7e0546caab119","8f44c0b112f134e-17bfe0384a248e90"]},"geometry":{"type":"LineString","coordinates":[[-83.661945,32.785263],[-83.66197000000001,32.785168],[-83.66199,32.784835]]},"id":"8a44c0b112c7fff-17d6e041ba43a46a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112f134e-17bfe0384a248e90","8f44c0b112f539e-1796c0456b8405d9"]},"geometry":{"type":"LineString","coordinates":[[-83.66199,32.784835],[-83.661986,32.784467],[-83.661969,32.784366]]},"id":"8944c0b112fffff-17b6f03afc20a9c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1121b709-13fee02b29224f93","8f44c0b112f539e-1796c0456b8405d9"]},"geometry":{"type":"LineString","coordinates":[[-83.661969,32.784366],[-83.661995,32.784196],[-83.662011,32.783921]]},"id":"8944c0b112fffff-179ec03534b09ea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112184c9-13dec02bc92daddc","8f44c0b1121b709-13fee02b29224f93"]},"geometry":{"type":"LineString","coordinates":[[-83.662011,32.783921],[-83.662006,32.783729],[-83.66201000000001,32.783454]]},"id":"8a44c0b1121ffff-13fef02ce93c494c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b112184c9-13dec02bc92daddc","8f44c0b1121e368-13bee0262768b652"]},"geometry":{"type":"LineString","coordinates":[[-83.66201000000001,32.783454],[-83.662019,32.783201000000005]]},"id":"8a44c0b1121ffff-139ff028f2e740f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1123379d-17fee01400ca891d","8f44c0b1121e368-13bee0262768b652"]},"geometry":{"type":"LineString","coordinates":[[-83.662019,32.783201000000005],[-83.662041,32.782969],[-83.662048,32.781869]]},"id":"8944c0b1123ffff-139ee017c4c64827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66207800000001,32.780526]},"id":"8f44c0b113a911a-13b6c00143d485db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1123379d-17fee01400ca891d","8f44c0b113a911a-13b6c00143d485db"]},"geometry":{"type":"LineString","coordinates":[[-83.662048,32.781869],[-83.66207800000001,32.780526]]},"id":"8844c0b113fffff-17def00aa84b726b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70230600000001,32.838993]},"id":"8f44c0a24c53471-13f6fdcac963ec4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c504cc-13fefd9f0fcbdc8c","8f44c0a24c53471-13f6fdcac963ec4e"]},"geometry":{"type":"LineString","coordinates":[[-83.70230600000001,32.838993],[-83.70233400000001,32.838853],[-83.702376,32.838603]]},"id":"8a44c0a24c57fff-13fefdb40b346280"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70227600000001,32.838169]},"id":"8f44c0a24c568db-13fffddd8acb39c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c504cc-13fefd9f0fcbdc8c","8f44c0a24c568db-13fffddd8acb39c8"]},"geometry":{"type":"LineString","coordinates":[[-83.702376,32.838603],[-83.702382,32.838517],[-83.702377,32.838423],[-83.70236700000001,32.838351],[-83.702352,32.838295],[-83.702325,32.838243],[-83.70227600000001,32.838169]]},"id":"8a44c0a24c57fff-13f6ddac17bc6f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3419b11e-179ffbc68869367d","8f44c0a34198b1e-179efb02ebbef07a"]},"geometry":{"type":"LineString","coordinates":[[-83.637596,32.837426],[-83.637665,32.8373],[-83.63790900000001,32.837012]]},"id":"8a44c0a3419ffff-179efb6a1ccedf60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34198b1e-179efb02ebbef07a","8f44c0a3418380e-1796f9bcafc1eac1"]},"geometry":{"type":"LineString","coordinates":[[-83.63790900000001,32.837012],[-83.63843100000001,32.836388]]},"id":"8944c0a341bffff-17dffa5fc86daa3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c903b6-17beb358a5d383b9","8f44c0a22c83c89-179fb0c72c6f8b01"]},"geometry":{"type":"LineString","coordinates":[[-83.667263,32.863456],[-83.667859,32.863683],[-83.668315,32.863813]]},"id":"8944c0a22cbffff-17b6b212358e3689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ce6c0e-13d7e9558090aa9d","8f44c0a22c83c89-179fb0c72c6f8b01"]},"geometry":{"type":"LineString","coordinates":[[-83.668315,32.863813],[-83.66979900000001,32.864063],[-83.67136400000001,32.864342]]},"id":"8844c0a22dfffff-17bebd0dfe36b54b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22ce6c0e-13d7e9558090aa9d","8f44c0a22ce5d02-13bfe74744ae6274"]},"geometry":{"type":"LineString","coordinates":[[-83.67136400000001,32.864342],[-83.672206,32.864486]]},"id":"8a44c0a22ce7fff-1396e84e6646b635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c42b0d-13bee26d64d2d88c","8f44c0a22ce5d02-13bfe74744ae6274"]},"geometry":{"type":"LineString","coordinates":[[-83.672206,32.864486],[-83.672911,32.864609],[-83.673353,32.864685],[-83.673668,32.864761],[-83.67378500000001,32.864815],[-83.673961,32.864939],[-83.674193,32.865115]]},"id":"8844c0a22dfffff-13bfa4c2b951f3ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676045,32.865888000000005]},"id":"8f44c0a22136155-179e9de7ee73eadc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c42b0d-13bee26d64d2d88c","8f44c0a22136155-179e9de7ee73eadc"]},"geometry":{"type":"LineString","coordinates":[[-83.674193,32.865115],[-83.67485,32.865631],[-83.67501800000001,32.865752],[-83.67515,32.865828],[-83.67533,32.865875],[-83.676045,32.865888000000005]]},"id":"8744c0a22ffffff-1397b04c95abcfd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22136155-179e9de7ee73eadc","8f44c0a2288b632-17b6d8c3aabba62e"]},"geometry":{"type":"LineString","coordinates":[[-83.676045,32.865888000000005],[-83.676686,32.865906],[-83.67753900000001,32.865923],[-83.678151,32.86593]]},"id":"8744c0a22ffffff-17bffb55d63c327e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d6da8-17be97da8fccc5d3","8f44c0a2288b632-17b6d8c3aabba62e"]},"geometry":{"type":"LineString","coordinates":[[-83.678151,32.86593],[-83.67852400000001,32.86594]]},"id":"8a44c0a2288ffff-17bff84f17375632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d48e8-17d7d61f62e2e00e","8f44c0a228d6da8-17be97da8fccc5d3"]},"geometry":{"type":"LineString","coordinates":[[-83.67852400000001,32.86594],[-83.67923300000001,32.865958]]},"id":"8944c0a228fffff-17d6b6fcf89620ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63974680000001,32.817821200000004]},"id":"8f44c0b1a471515-17d6f68648e9e014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64019,32.8172919]},"id":"8f44c0b1a47590c-17f7f57145cef74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a47590c-17f7f57145cef74c","8f44c0b1a471515-17d6f68648e9e014"]},"geometry":{"type":"LineString","coordinates":[[-83.63974680000001,32.817821200000004],[-83.64019,32.8172919]]},"id":"8a44c0b1a477fff-179ef5fbca1e8130"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a47590c-17f7f57145cef74c","8f44c0b1a55d6ec-1797f4396a770f58"]},"geometry":{"type":"LineString","coordinates":[[-83.64019,32.8172919],[-83.64068900000001,32.816696]]},"id":"8844c0b1a5fffff-17bff4d55c7e8434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a558b45-13def483cd60f3bd","8f44c0b1a54140a-13bff2fdc364d40e"]},"geometry":{"type":"LineString","coordinates":[[-83.64057000000001,32.816609],[-83.640923,32.81624],[-83.641194,32.815973]]},"id":"8944c0b1a57ffff-1396f3c2356b9c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641952,32.815206]},"id":"8f44c0b1a5616d3-13dff124092c0939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a5616d3-13dff124092c0939","8f44c0b1a54140a-13bff2fdc364d40e"]},"geometry":{"type":"LineString","coordinates":[[-83.641194,32.815973],[-83.641453,32.815708],[-83.641952,32.815206]]},"id":"8944c0b1a57ffff-13dff2115b0f7dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695884,32.812029]},"id":"8f44c0b1d385455-139e6d788fe666ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d385455-139e6d788fe666ef","8f44c0b1d212d72-17f66c9c8f2f8b31"]},"geometry":{"type":"LineString","coordinates":[[-83.696236,32.814189],[-83.696627,32.813758],[-83.696916,32.813449],[-83.696955,32.813387],[-83.69697400000001,32.813324],[-83.696982,32.813237],[-83.69699100000001,32.812944],[-83.69699,32.812626],[-83.69698100000001,32.812545],[-83.696955,32.812463],[-83.696934,32.812417],[-83.696886,32.812344],[-83.69678800000001,32.812224],[-83.696718,32.812177000000005],[-83.696605,32.812116],[-83.696493,32.812075],[-83.69639500000001,32.812053],[-83.69626500000001,32.81204],[-83.69607,32.812032],[-83.695884,32.812029]]},"id":"8844c0b1d3fffff-13d6eb924d1664e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d390b86-13f6712a2c92aaca","8f44c0b1d385455-139e6d788fe666ef"]},"geometry":{"type":"LineString","coordinates":[[-83.695884,32.812029],[-83.694663,32.811967],[-83.694371,32.811959]]},"id":"8944c0b1d3bffff-1396ff514a66bdeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909131,32.812206100000004]},"id":"8f44c0b1d754cc5-139ef99b5ade944c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d390b86-13f6712a2c92aaca","8f44c0b1d754cc5-139ef99b5ade944c"]},"geometry":{"type":"LineString","coordinates":[[-83.694371,32.811959],[-83.693509,32.811919],[-83.69333800000001,32.811906],[-83.693162,32.811878],[-83.69288900000001,32.811807],[-83.692761,32.811779],[-83.69265200000001,32.811768],[-83.692559,32.81177],[-83.692462,32.81178],[-83.692351,32.811811],[-83.692133,32.811898],[-83.691929,32.811985],[-83.69173500000001,32.81204],[-83.691259,32.812151],[-83.691052,32.812187],[-83.6909131,32.812206100000004]]},"id":"8744c0b1dffffff-13ff7569ad16b028"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957249,32.9142804]},"id":"8f44c0a05345085-13d76ddbfdbec737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69586650000001,32.914103100000005]},"id":"8f44c0a05345832-13d67d837b6b40b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05345832-13d67d837b6b40b2","8f44c0a05345085-13d76ddbfdbec737"]},"geometry":{"type":"LineString","coordinates":[[-83.6957249,32.9142804],[-83.69586650000001,32.914103100000005]]},"id":"8b44c0a05345fff-139ffdafba3ed8ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6959954,32.9139417]},"id":"8f44c0a05363318-13fffd32e0ef4cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05345832-13d67d837b6b40b2","8f44c0a05363318-13fffd32e0ef4cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.69586650000001,32.914103100000005],[-83.6959954,32.9139417]]},"id":"8944c0a0537ffff-13b66d5b32eee1f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05363318-13fffd32e0ef4cfb","8f44c0a05363b03-1396fcea58990941"]},"geometry":{"type":"LineString","coordinates":[[-83.6959954,32.9139417],[-83.6961115,32.9137963]]},"id":"8b44c0a05363fff-13d66d0eaae7a90c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962247,32.9136546]},"id":"8f44c0a05361501-13be6ca399020560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05361501-13be6ca399020560","8f44c0a05363b03-1396fcea58990941"]},"geometry":{"type":"LineString","coordinates":[[-83.6961115,32.9137963],[-83.6962247,32.9136546]]},"id":"8a44c0a05367fff-13f67cc6f54dd268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64793200000001,32.807523]},"id":"8f44c0b1a996941-179fe28a86f41dc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a9a1620-17bffc77843adede","8f44c0b1a996941-179fe28a86f41dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.64793200000001,32.807523],[-83.650282,32.80758],[-83.65042000000001,32.807577]]},"id":"8944c0b1a9bffff-17b6ff8108694466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652636,32.80763]},"id":"8f44c0b1a903d42-17f6d70e8d834360"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a9a1620-17bffc77843adede","8f44c0b1a903d42-17f6d70e8d834360"]},"geometry":{"type":"LineString","coordinates":[[-83.65042000000001,32.807577],[-83.652636,32.80763]]},"id":"8844c0b1a9fffff-17d6f9c307cd905c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65158500000001,32.853751]},"id":"8f44c0a3555a828-17fef99f612c5280"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3555a828-17fef99f612c5280","8f44c0a3555b416-179ed99baa68c05f"]},"geometry":{"type":"LineString","coordinates":[[-83.65158500000001,32.853751],[-83.65159100000001,32.85419]]},"id":"8a44c0a3555ffff-1797d99d845c5820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3555b416-179ed99baa68c05f","8f44c0a35474b41-17f7d998819a760a"]},"geometry":{"type":"LineString","coordinates":[[-83.65159100000001,32.85419],[-83.65159600000001,32.854326]]},"id":"8b44c0a3555bfff-17b7d99a1965cfdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35471286-139ef9a14e756bc3","8f44c0a35474b41-17f7d998819a760a"]},"geometry":{"type":"LineString","coordinates":[[-83.65159600000001,32.854326],[-83.651582,32.855243]]},"id":"8a44c0a35477fff-1396d99ce1e5db05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35443cf1-17ded9a142ee191c","8f44c0a35471286-139ef9a14e756bc3"]},"geometry":{"type":"LineString","coordinates":[[-83.651582,32.855243],[-83.651582,32.856158]]},"id":"8944c0a3547ffff-13bed9a14068d9c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35443cf1-17ded9a142ee191c","8f44c0a35459ab1-17d6f9af00388990"]},"geometry":{"type":"LineString","coordinates":[[-83.651582,32.856158],[-83.65157400000001,32.856814],[-83.65156,32.857143]]},"id":"8944c0a3547ffff-179ef9a612e68ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35459ab1-17d6f9af00388990","8f44c0a357a3c28-13d7d9d0c73bdf36"]},"geometry":{"type":"LineString","coordinates":[[-83.65156,32.857143],[-83.651553,32.8573],[-83.651537,32.857852],[-83.651525,32.858041],[-83.65150600000001,32.858172]]},"id":"8744c0a35ffffff-1396d9bb469ddbbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a357a3c28-13d7d9d0c73bdf36","8f44c0a30b6d171-17b6fecc6f87e0a6"]},"geometry":{"type":"LineString","coordinates":[[-83.65150600000001,32.858172],[-83.651449,32.858763],[-83.65139500000001,32.859139],[-83.651348,32.859288],[-83.651303,32.859358],[-83.651218,32.859442],[-83.651115,32.859499],[-83.65094,32.859577],[-83.65030800000001,32.859777],[-83.65007800000001,32.85983],[-83.649911,32.859822],[-83.64983600000001,32.859797],[-83.649766,32.859761],[-83.649646,32.859682],[-83.649465,32.859581]]},"id":"8944c0a357bffff-179edb936d897678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26d5d95c-13b6b17aa6556cc2","8f44c0a26c66341-1397b20d885b101c"]},"geometry":{"type":"LineString","coordinates":[[-83.68113500000001,32.841549],[-83.68095100000001,32.841811],[-83.68087700000001,32.842003000000005],[-83.680842,32.842174],[-83.680829,32.842301],[-83.680829,32.842405],[-83.680857,32.842571],[-83.68090000000001,32.842709]]},"id":"8844c0a26dfffff-139e9206dad35c20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683012,32.844084]},"id":"8f44c0a26898000-17f68ce58a437383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26898000-17f68ce58a437383","8f44c0a26c66341-1397b20d885b101c"]},"geometry":{"type":"LineString","coordinates":[[-83.68090000000001,32.842709],[-83.680986,32.842897],[-83.68110300000001,32.843093],[-83.681185,32.843198],[-83.68128,32.843306000000005],[-83.681488,32.843503000000005],[-83.68169,32.843652],[-83.68188,32.843767],[-83.682016,32.843837],[-83.682332,32.843964],[-83.68256600000001,32.844034],[-83.682866,32.844088],[-83.683012,32.844084]]},"id":"8744c0a26ffffff-17b68fccf797af1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3539a9b0-179fe772e1327392","8f44c0a3539d4ee-17b6c5a8cc438cf3"]},"geometry":{"type":"LineString","coordinates":[[-83.659029,32.860537],[-83.659762,32.860574]]},"id":"8a44c0a3539ffff-1797f68dd959592a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3539d4ee-17b6c5a8cc438cf3","8f44c0a3538ea58-17f7c37beb515c63"]},"geometry":{"type":"LineString","coordinates":[[-83.659762,32.860574],[-83.66065300000001,32.860504]]},"id":"8944c0a353bffff-179ee492531e818d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.684021,32.859171]},"id":"8f44c0a262d452b-13b7ea6eee164cae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262d452b-13b7ea6eee164cae","8f44c0a2292ed0a-179f8d2b8e722462"]},"geometry":{"type":"LineString","coordinates":[[-83.684021,32.859171],[-83.6829,32.860124]]},"id":"8744c0a26ffffff-17dfbbcd39a93255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22834725-13d6f2bc8e0114b1","8f44c0a2292ed0a-179f8d2b8e722462"]},"geometry":{"type":"LineString","coordinates":[[-83.6829,32.860124],[-83.680873,32.861865],[-83.68062,32.862091]]},"id":"8844c0a229fffff-13fedff53843be8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63901100000001,32.848759]},"id":"8f44c0a3464b901-13def85221825b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34648a0c-13def7d70b525499","8f44c0a3464b901-13def85221825b75"]},"geometry":{"type":"LineString","coordinates":[[-83.63901100000001,32.848759],[-83.63920800000001,32.848554]]},"id":"8a44c0a3464ffff-139ef8149a121800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3466b965-17f6f6614d823a06","8f44c0a34648a0c-13def7d70b525499"]},"geometry":{"type":"LineString","coordinates":[[-83.63920800000001,32.848554],[-83.63958000000001,32.848089],[-83.63980600000001,32.847806]]},"id":"8944c0a3467ffff-13f6f71c1e29319b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34668b61-17d7f5e3a9f13faa","8f44c0a3466b965-17f6f6614d823a06"]},"geometry":{"type":"LineString","coordinates":[[-83.63980600000001,32.847806],[-83.64000700000001,32.847544]]},"id":"8a44c0a3466ffff-17b6f62274986106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34668b61-17d7f5e3a9f13faa","8f44c0a3466dd69-17b7f55b61471b4d"]},"geometry":{"type":"LineString","coordinates":[[-83.64000700000001,32.847544],[-83.640225,32.847285]]},"id":"8b44c0a3466dfff-1796f59f8dcffd81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640732,32.846654]},"id":"8f44c0a3429569a-17b6f41e84df3dbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3429569a-17b6f41e84df3dbc","8f44c0a3466dd69-17b7f55b61471b4d"]},"geometry":{"type":"LineString","coordinates":[[-83.640225,32.847285],[-83.640355,32.847115],[-83.640732,32.846654]]},"id":"8944c0a342bffff-17fef4be3027e166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627385,32.8515101]},"id":"8f44c0a30cb5008-1397d4b46f6e9099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30cb1d50-139f9521dd0ca1ac","8f44c0a30cb5008-1397d4b46f6e9099"]},"geometry":{"type":"LineString","coordinates":[[-83.62720990000001,32.8517529],[-83.627273,32.8516744],[-83.62733150000001,32.8515934],[-83.627385,32.8515101]]},"id":"8a44c0a30cb7fff-13df14e95bdf8bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9b0eb-1397b46a963fca83","8f44c0a30cb5008-1397d4b46f6e9099"]},"geometry":{"type":"LineString","coordinates":[[-83.627385,32.8515101],[-83.6274291,32.851432800000005],[-83.62746340000001,32.8513521],[-83.62748760000001,32.8512688],[-83.6275013,32.8511839],[-83.6275031,32.851135500000005]]},"id":"8944c0a30cbffff-13971484d547dd11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9b0eb-1397b46a963fca83","8f44c0a30d9ab2a-1797f4c17558d4bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6275031,32.851135500000005],[-83.6275044,32.8510982],[-83.62749690000001,32.851012700000005],[-83.6274789,32.8509284],[-83.62745050000001,32.850846100000005],[-83.6274121,32.8507666],[-83.62736410000001,32.850691000000005]]},"id":"8a44c0a30d9ffff-179f3486e5a58d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6272612,32.8505727]},"id":"8f44c0a30d9a825-17b7f501cfdd1ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9ab2a-1797f4c17558d4bf","8f44c0a30d9a825-17b7f501cfdd1ae9"]},"geometry":{"type":"LineString","coordinates":[[-83.62736410000001,32.850691000000005],[-83.627307,32.85062],[-83.6272612,32.8505727]]},"id":"8b44c0a30d9afff-17df34e0c6d789ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6272113,32.8505284]},"id":"8f44c0a30d9a9a5-179f5520fd526543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9a9a5-179f5520fd526543","8f44c0a30d9a825-17b7f501cfdd1ae9"]},"geometry":{"type":"LineString","coordinates":[[-83.6272612,32.8505727],[-83.6272113,32.8505284]]},"id":"8c44c0a30d9a9ff-17bf35115a0f92e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9a9a5-179f5520fd526543","8f44c0a3636c8d6-17df96ef6c6c3a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6272113,32.8505284],[-83.6271274,32.850459],[-83.6270399,32.8503928],[-83.62694900000001,32.85033],[-83.6267105,32.8501695],[-83.62659000000001,32.8500837],[-83.6264714,32.849996100000006]]},"id":"8844c0a30dfffff-17f75606f9693187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36361daa-17bfd83b89ddf3ae","8f44c0a3636c8d6-17df96ef6c6c3a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6264714,32.849996100000006],[-83.626248,32.849826],[-83.62594,32.8495548]]},"id":"8944c0a3637ffff-17df9797d58efdb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36361daa-17bfd83b89ddf3ae","8f44c0a36360aeb-17b7f855dbcdc705"]},"geometry":{"type":"LineString","coordinates":[[-83.62594,32.8495548],[-83.6258979,32.8495134]]},"id":"8a44c0a36367fff-17bfd848b3c1c8dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667758,32.836183000000005]},"id":"8f44c0b1b04c049-1396f223472b8eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b049706-17ffb1f50479fcea","8f44c0b1b04c049-1396f223472b8eef"]},"geometry":{"type":"LineString","coordinates":[[-83.667832,32.836937],[-83.667783,32.836908],[-83.66775000000001,32.836869],[-83.667758,32.836183000000005]]},"id":"8a44c0b1b04ffff-179fb222e27fb2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b04c049-1396f223472b8eef","8f44c0b1b06ad5d-13fef2130f17cd88"]},"geometry":{"type":"LineString","coordinates":[[-83.667758,32.836183000000005],[-83.66778400000001,32.835527]]},"id":"8944c0b1b07ffff-13dff21b212229d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b063b55-13feb20407d9d6f4","8f44c0b1b06ad5d-13fef2130f17cd88"]},"geometry":{"type":"LineString","coordinates":[[-83.66778400000001,32.835527],[-83.66780800000001,32.834913]]},"id":"8944c0b1b07ffff-13beb20b81ebf376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b063b55-13feb20407d9d6f4","8f44c0b1b060921-17ffb1f50be499f4"]},"geometry":{"type":"LineString","coordinates":[[-83.66780800000001,32.834913],[-83.66782500000001,32.834465],[-83.66782500000001,32.834366],[-83.667832,32.834277]]},"id":"8a44c0b1b067fff-17b7f1fcdef1b64b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b14a09c-17f7f1e74dd67267","8f44c0b1b060921-17ffb1f50be499f4"]},"geometry":{"type":"LineString","coordinates":[[-83.667832,32.834277],[-83.66782900000001,32.834218],[-83.667844,32.833759],[-83.667854,32.83365]]},"id":"8844c0b1b1fffff-17bfb1f130940df7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b14a09c-17f7f1e74dd67267","8f44c0b1b1408d9-13d6b1cda7733e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.667854,32.83365],[-83.66787400000001,32.833181],[-83.667895,32.832385]]},"id":"8944c0b1b17ffff-13deb1d8fb71599a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66789700000001,32.831981]},"id":"8f44c0b1b144188-13d6b1cc66d7a08f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b144188-13d6b1cc66d7a08f","8f44c0b1b1408d9-13d6b1cda7733e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.667895,32.832385],[-83.66789700000001,32.831981]]},"id":"8a44c0b1b147fff-13d6f1cd0f80a887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0312c726-139ffe774319a280","8f44c0b03889d6c-17d75d5c2ce65b91"]},"geometry":{"type":"LineString","coordinates":[[-83.70203000000001,32.782307],[-83.70217600000001,32.782175],[-83.702323,32.782052],[-83.70239600000001,32.781972],[-83.702444,32.781874],[-83.70246900000001,32.781785],[-83.702482,32.781163],[-83.702483,32.780786]]},"id":"8744c0b03ffffff-17de5d9258f32c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03889d6c-17d75d5c2ce65b91","8f44c0b038aa26b-13de5d4be59268d0"]},"geometry":{"type":"LineString","coordinates":[[-83.702483,32.780786],[-83.702509,32.779978]]},"id":"8944c0b038bffff-13dedd540a7bca97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03983a52-13b75d7a2ce7d4df","8f44c0b038aa26b-13de5d4be59268d0"]},"geometry":{"type":"LineString","coordinates":[[-83.702509,32.779978],[-83.702527,32.779082],[-83.702515,32.778807],[-83.70249100000001,32.778534],[-83.70242900000001,32.777987],[-83.702422,32.777786],[-83.70243500000001,32.777016]]},"id":"8844c0b039fffff-17d6dd6029ac50c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03983a52-13b75d7a2ce7d4df","8f44c0b039a26ad-13b67d66cc390cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.70243500000001,32.777016],[-83.702466,32.775815]]},"id":"8944c0b039bffff-13bffd707d85da41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b006f4668-139ee504cc81269a","8f44c0b039a26ad-13b67d66cc390cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.702466,32.775815],[-83.702488,32.775208],[-83.70245600000001,32.774974],[-83.70234400000001,32.774788],[-83.70229900000001,32.774742],[-83.70141000000001,32.774184000000005],[-83.70068300000001,32.773735],[-83.70040200000001,32.773566],[-83.699346,32.77291]]},"id":"8644c0b07ffffff-17b7e07058dde3cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698296,32.772453]},"id":"8f44c0b006ab58e-17ff6795033b5688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b006ab58e-17ff6795033b5688","8f44c0b006f4668-139ee504cc81269a"]},"geometry":{"type":"LineString","coordinates":[[-83.699346,32.77291],[-83.69889900000001,32.772638],[-83.698727,32.772545],[-83.698633,32.772509],[-83.69848900000001,32.772470000000006],[-83.69835900000001,32.772454],[-83.698296,32.772453]]},"id":"8844c0b007fffff-13fff64211e92927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70236,32.786563]},"id":"8f44c0b0307595a-13f7fda9088e32ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b031581b3-13967d982504e1e8","8f44c0b0307595a-13f7fda9088e32ae"]},"geometry":{"type":"LineString","coordinates":[[-83.70236,32.786563],[-83.702387,32.785773]]},"id":"8844c0b031fffff-13ff5da09a4460c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b031581b3-13967d982504e1e8","8f44c0b03154299-17f65e90ea849afc"]},"geometry":{"type":"LineString","coordinates":[[-83.702387,32.785773],[-83.702403,32.785218],[-83.702388,32.785069],[-83.702365,32.785013],[-83.702263,32.784861],[-83.70198900000001,32.784512]]},"id":"8944c0b0317ffff-17f7fdcfdd9fe9d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03154299-17f65e90ea849afc","8f44c0b03170db4-1396fd7acd35898e"]},"geometry":{"type":"LineString","coordinates":[[-83.70198900000001,32.784512],[-83.70210700000001,32.784425],[-83.70225500000001,32.784306],[-83.70236100000001,32.784186000000005],[-83.70241200000001,32.784087],[-83.702426,32.783968],[-83.70243400000001,32.783547]]},"id":"8944c0b0317ffff-17f75dc370e1c628"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0312c726-139ffe774319a280","8f44c0b03170db4-1396fd7acd35898e"]},"geometry":{"type":"LineString","coordinates":[[-83.70243400000001,32.783547],[-83.70244100000001,32.783045],[-83.702421,32.782854],[-83.702385,32.78275],[-83.702332,32.782663],[-83.70223800000001,32.782545],[-83.70203000000001,32.782307]]},"id":"8844c0b031fffff-13fefdb4b579ddd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58629400000001,32.861732]},"id":"8f44c0b89d51154-13f7f906483ab9d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c21459-13f7fcb38bd3b0a4","8f44c0b89d51154-13f7f906483ab9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.58629400000001,32.861732],[-83.585846,32.861731],[-83.584788,32.861699]]},"id":"8844c0b89dfffff-13fffadcf9fbeeb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c334ca-13f78139a86db3b0","8f44c0b89c21459-13f7fcb38bd3b0a4"]},"geometry":{"type":"LineString","coordinates":[[-83.584788,32.861699],[-83.584683,32.861669],[-83.584334,32.861545],[-83.584266,32.86153],[-83.584089,32.861511],[-83.58402500000001,32.861511],[-83.58389600000001,32.86152],[-83.58377700000001,32.861542],[-83.58349700000001,32.861631],[-83.583297,32.861683],[-83.583188,32.861702],[-83.58309700000001,32.861707],[-83.582935,32.861704]]},"id":"8944c0b89c3ffff-13bf7ef2e9bffc8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d8b685-13dfa45863abebea","8f44c0b89c334ca-13f78139a86db3b0"]},"geometry":{"type":"LineString","coordinates":[[-83.582935,32.861704],[-83.58179100000001,32.861682],[-83.581657,32.861669]]},"id":"8844c0b89dfffff-13df82c931578ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615215,32.856797]},"id":"8f44c0a3298d219-17ff326aac8ece69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329881a8-17b773d666a4cd41","8f44c0a3298d219-17ff326aac8ece69"]},"geometry":{"type":"LineString","coordinates":[[-83.615215,32.856797],[-83.61518600000001,32.856747],[-83.61514100000001,32.856701],[-83.615103,32.856684],[-83.614939,32.856673],[-83.61463300000001,32.856679]]},"id":"8a44c0a3298ffff-17bf33136114aa25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3298ac54-17b77518c785c7f6","8f44c0a329881a8-17b773d666a4cd41"]},"geometry":{"type":"LineString","coordinates":[[-83.61463300000001,32.856679],[-83.61430700000001,32.856689],[-83.61411720000001,32.8567126]]},"id":"8a44c0a3298ffff-17b77477df19a480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613963,32.856737]},"id":"8f44c0a3299d24b-17d7b57929e3eee0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3298ac54-17b77518c785c7f6","8f44c0a3299d24b-17d7b57929e3eee0"]},"geometry":{"type":"LineString","coordinates":[[-83.61411720000001,32.8567126],[-83.61408300000001,32.856713],[-83.613963,32.856737]]},"id":"8b44c0a3298afff-17bf75492dcec5df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032d0280-13bfdeea47b859ca","8f44c0b1d970869-17965eca66bf1ae0"]},"geometry":{"type":"LineString","coordinates":[[-83.701897,32.79809],[-83.701914,32.797438],[-83.70185400000001,32.797229],[-83.70179200000001,32.79706],[-83.70179,32.796978],[-83.70178800000001,32.796917],[-83.701796,32.796792],[-83.701846,32.796284]]},"id":"8544c0b3fffffff-17f7fee50b4ae248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032d0280-13bfdeea47b859ca","8f44c0b032f2644-1396de7ce825bdbe"]},"geometry":{"type":"LineString","coordinates":[[-83.701846,32.796284],[-83.701936,32.795931],[-83.701998,32.795665],[-83.702021,32.795428]]},"id":"8944c0b032fffff-13b7deab3a19964a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b032a8b89-17be5e418b4effc0","8f44c0b032f2644-1396de7ce825bdbe"]},"geometry":{"type":"LineString","coordinates":[[-83.702021,32.795428],[-83.70208600000001,32.794905],[-83.70210700000001,32.794539],[-83.702116,32.794058]]},"id":"8844c0b033fffff-17ff7e54b030531b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18188b19-1796efe6c1c84143","8f44c0b1819d453-17beb2d56095d59f"]},"geometry":{"type":"LineString","coordinates":[[-83.667473,32.810612],[-83.668176,32.810619],[-83.66839800000001,32.810626],[-83.668451,32.810637],[-83.66852,32.810664],[-83.668597,32.810716],[-83.66867400000001,32.810778]]},"id":"8944c0b181bffff-17b7b152cc5556b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18188b19-1796efe6c1c84143","8f44c0b18006d0c-17bfacb5e221f45b"]},"geometry":{"type":"LineString","coordinates":[[-83.66867400000001,32.810778],[-83.66887200000001,32.810927],[-83.669195,32.811193],[-83.669365,32.811338],[-83.66947400000001,32.811417],[-83.669517,32.811439],[-83.669629,32.811465000000005],[-83.669981,32.811461]]},"id":"8844c0b181fffff-17b6ee6454497f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18023015-17b6ea4bccab53cf","8f44c0b18006d0c-17bfacb5e221f45b"]},"geometry":{"type":"LineString","coordinates":[[-83.669981,32.811461],[-83.67097000000001,32.81145]]},"id":"8944c0b1803ffff-17b7bb80d3ff3810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56299,32.869841]},"id":"8f44c0b8bc4032b-17d7b1eb4fbdbf59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc4032b-17d7b1eb4fbdbf59","8f44c0b8bc73546-13d7b44526131642"]},"geometry":{"type":"LineString","coordinates":[[-83.56299,32.869841],[-83.562027,32.869048]]},"id":"8944c0b8bc7ffff-17dff3183178b356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc0d72d-1397b5d3ee534f6c","8f44c0b8bc73546-13d7b44526131642"]},"geometry":{"type":"LineString","coordinates":[[-83.562027,32.869048],[-83.561389,32.868509]]},"id":"8844c0b8bdfffff-13bfb50c8f48cfb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc0d72d-1397b5d3ee534f6c","8f44c0b8bc0c700-13b7b6cfc0d29532"]},"geometry":{"type":"LineString","coordinates":[[-83.561389,32.868509],[-83.56110100000001,32.868266000000006],[-83.560986,32.86818]]},"id":"8a44c0b8bc0ffff-139ff650a522344b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc01669-13b7b7800fb0d43a","8f44c0b8bc0c700-13b7b6cfc0d29532"]},"geometry":{"type":"LineString","coordinates":[[-83.560986,32.86818],[-83.560704,32.867972]]},"id":"8944c0b8bc3ffff-13f7b727e45c4d80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc11976-1397fa5009fa8c0d","8f44c0b8bc01669-13b7b7800fb0d43a"]},"geometry":{"type":"LineString","coordinates":[[-83.560704,32.867972],[-83.560569,32.867879],[-83.560398,32.867778],[-83.56029600000001,32.867731],[-83.55955200000001,32.867482]]},"id":"8944c0b8bc3ffff-1397b8ded47a0026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bc11976-1397fa5009fa8c0d","8f44c0b8bc10036-1797fb9beba35a78"]},"geometry":{"type":"LineString","coordinates":[[-83.55955200000001,32.867482],[-83.559021,32.86731]]},"id":"8a44c0b8bc17fff-17dfbaf5fafcd68d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bca455c-17d7becae9d2faa2","8f44c0b8bc10036-1797fb9beba35a78"]},"geometry":{"type":"LineString","coordinates":[[-83.559021,32.86731],[-83.558583,32.867148],[-83.55826300000001,32.867023],[-83.55771700000001,32.866768]]},"id":"8844c0b8bdfffff-17f7fd36cca76354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55709900000001,32.866538000000006]},"id":"8f44c0b8bd9b161-17b7c04d2bd40544"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bd9b161-17b7c04d2bd40544","8f44c0b8bca455c-17d7becae9d2faa2"]},"geometry":{"type":"LineString","coordinates":[[-83.55771700000001,32.866768],[-83.55709900000001,32.866538000000006]]},"id":"8844c0b8bdfffff-17ffbf8c040c80a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5690469,32.8131502]},"id":"8f44c0b81b26595-13dfe321bca83890"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81b26595-13dfe321bca83890","8f44c0b81b35982-13d7e3985cf75716"]},"geometry":{"type":"LineString","coordinates":[[-83.5690469,32.8131502],[-83.5688571,32.813138]]},"id":"8944c0b81b3ffff-13d7b35d07428d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8184aaa9-179fe8de9a8277d7","8f44c0b81b35982-13d7e3985cf75716"]},"geometry":{"type":"LineString","coordinates":[[-83.5688571,32.813138],[-83.568557,32.813192],[-83.5682613,32.8132321],[-83.5673321,32.813360700000004],[-83.56669670000001,32.813453200000005]]},"id":"8844c0b81bfffff-13b7e63b1ff2d087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5663299,32.813506600000004]},"id":"8f44c0b81859b62-17bfa9c3d90126bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8184aaa9-179fe8de9a8277d7","8f44c0b81859b62-17bfa9c3d90126bc"]},"geometry":{"type":"LineString","coordinates":[[-83.56669670000001,32.813453200000005],[-83.5663299,32.813506600000004]]},"id":"8b44c0b8184afff-17bff95139e59579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81859b62-17bfa9c3d90126bc","8f44c0b81bb48eb-179fac7c58a1584f"]},"geometry":{"type":"LineString","coordinates":[[-83.5663299,32.813506600000004],[-83.565455,32.813634],[-83.56521550000001,32.8136688]]},"id":"8844c0b819fffff-17fffb2019355efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81bb48eb-179fac7c58a1584f","8f44c0b81bb456e-17b7bcfbe930a81a"]},"geometry":{"type":"LineString","coordinates":[[-83.56521550000001,32.8136688],[-83.5650114,32.8136985]]},"id":"8b44c0b81bb4fff-17bffcbc2f1c82db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81bb6856-17dfbda1e497a843","8f44c0b81bb456e-17b7bcfbe930a81a"]},"geometry":{"type":"LineString","coordinates":[[-83.5650114,32.8136985],[-83.56474580000001,32.813737100000004]]},"id":"8a44c0b81bb7fff-17bfad4eedfdcc52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81bb6856-17dfbda1e497a843","8f44c0b818cd802-17f7eedb154ebc6b"]},"geometry":{"type":"LineString","coordinates":[[-83.56474580000001,32.813737100000004],[-83.5642447,32.813810000000004]]},"id":"8844c0b819fffff-17f7ae3e7f3a9419"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b818cdcf3-179fef603a65f188","8f44c0b818cd802-17f7eedb154ebc6b"]},"geometry":{"type":"LineString","coordinates":[[-83.5642447,32.813810000000004],[-83.5640317,32.813842]]},"id":"8b44c0b818cdfff-1797ef1dafce9f7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5639787,32.8138499]},"id":"8f44c0b818cd522-1797bf8156794d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b818cdcf3-179fef603a65f188","8f44c0b818cd522-1797bf8156794d73"]},"geometry":{"type":"LineString","coordinates":[[-83.5640317,32.813842],[-83.5639787,32.8138499]]},"id":"8b44c0b818cdfff-179fef70c3802f02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b818cd522-1797bf8156794d73","8f44c0b818dd65c-17ffb2751f486332"]},"geometry":{"type":"LineString","coordinates":[[-83.5639787,32.8138499],[-83.56308750000001,32.8139835],[-83.5627695,32.8140281]]},"id":"8944c0b818fffff-17dfb0fb131227de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56150550000001,32.8140048]},"id":"8f44c0b81129805-17f7b58b19bb6fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b81129805-17f7b58b19bb6fe2","8f44c0b818dd65c-17ffb2751f486332"]},"geometry":{"type":"LineString","coordinates":[[-83.5627695,32.8140281],[-83.561992,32.814137],[-83.56179440000001,32.8141375],[-83.5616504,32.8140704],[-83.56150550000001,32.8140048]]},"id":"8744c0b81ffffff-17b7b405f4797169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642843,32.792461]},"id":"8f44c0b1e513421-13deeef72de4bb10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec2a2e2-17fffe90659df91f","8f44c0b1e513421-13deeef72de4bb10"]},"geometry":{"type":"LineString","coordinates":[[-83.642843,32.792461],[-83.64328300000001,32.792282],[-83.6438612,32.792015500000005],[-83.64743100000001,32.79037],[-83.64792800000001,32.790112],[-83.648126,32.78999],[-83.648606,32.789668],[-83.64897400000001,32.789375],[-83.64929000000001,32.789101],[-83.649561,32.788831]]},"id":"8744c0b1effffff-17d7e680685812fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec2a2e2-17fffe90659df91f","8f44c0b1168e382-13dedc02a6f5c071"]},"geometry":{"type":"LineString","coordinates":[[-83.649561,32.788831],[-83.649708,32.788663],[-83.649994,32.7883],[-83.65020200000001,32.788016],[-83.650326,32.787823],[-83.65039900000001,32.787692],[-83.65057900000001,32.787332],[-83.650728,32.787018],[-83.65088800000001,32.786589],[-83.651027,32.786029],[-83.65110700000001,32.785545],[-83.651121,32.785359],[-83.651126,32.785151],[-83.651115,32.784593],[-83.651099,32.784408],[-83.65107900000001,32.784241],[-83.65088200000001,32.783262],[-83.65085,32.783192],[-83.65060700000001,32.783226]]},"id":"8544c0b3fffffff-139fdbbc2db52552"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650824,32.791728]},"id":"8f44c0b1ec5d60b-179edb7b04b4035a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eced399-17b6fe6b89cfd298","8f44c0b1ec5d60b-179edb7b04b4035a"]},"geometry":{"type":"LineString","coordinates":[[-83.64962,32.791579],[-83.649668,32.791634],[-83.64971600000001,32.79168],[-83.64978,32.791711],[-83.649871,32.791719],[-83.650824,32.791728]]},"id":"8844c0b1edfffff-1797fd011bfc1ceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e126776-17bed3c90217314b","8f44c0b1ec5d60b-179edb7b04b4035a"]},"geometry":{"type":"LineString","coordinates":[[-83.650824,32.791728],[-83.653976,32.79177]]},"id":"8744c0b1effffff-179ff7a2036985d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655727,32.791818]},"id":"8f44c0b1e8d4604-17d6cf82a4a64a39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e8d4604-17d6cf82a4a64a39","8f44c0b1e126776-17bed3c90217314b"]},"geometry":{"type":"LineString","coordinates":[[-83.653976,32.79177],[-83.655392,32.791797],[-83.655727,32.791818]]},"id":"8744c0b1effffff-17b7d1a5b50fab0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620475,32.850358]},"id":"8f44c0a3623265e-17b7e5932866a601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3623265e-17b7e5932866a601","8f44c0a3638b41e-17b7e842a63a5412"]},"geometry":{"type":"LineString","coordinates":[[-83.620475,32.850358],[-83.619375,32.850363]]},"id":"8844c0a363fffff-17b776eaeeee13d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617687,32.850361]},"id":"8f44c0a362b4096-17b7ac61ab8e4711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362b4096-17b7ac61ab8e4711","8f44c0a3638b41e-17b7e842a63a5412"]},"geometry":{"type":"LineString","coordinates":[[-83.619375,32.850363],[-83.617687,32.850361]]},"id":"8844c0a363fffff-17b76a522faf0a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615983,32.850364]},"id":"8f44c0a3674e01c-17b7b08aa6173bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362b4096-17b7ac61ab8e4711","8f44c0a3674e01c-17b7b08aa6173bea"]},"geometry":{"type":"LineString","coordinates":[[-83.617687,32.850361],[-83.615983,32.850364]]},"id":"8744c0a36ffffff-17b7be762fb98665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a307463a1-13df26f3c32a052b","8f44c0a30649cb3-17d7c65b44f123a4"]},"geometry":{"type":"LineString","coordinates":[[-83.633018,32.865349],[-83.63299500000001,32.865721],[-83.63288700000001,32.866622],[-83.632886,32.867103],[-83.632976,32.867811],[-83.63307,32.868451],[-83.63316,32.869141],[-83.633262,32.86987]]},"id":"8744c0a30ffffff-13d7a6f1fe3f9933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30649cb3-17d7c65b44f123a4","8f44c0a339ad2f4-139f25d44d7e88c0"]},"geometry":{"type":"LineString","coordinates":[[-83.633262,32.86987],[-83.63325800000001,32.870054],[-83.63323600000001,32.870189],[-83.63320200000001,32.870359],[-83.633184,32.870509000000006],[-83.633178,32.870679],[-83.63321300000001,32.871001],[-83.633244,32.871198],[-83.633317,32.87145],[-83.63343,32.871738],[-83.63347800000001,32.871829000000005]]},"id":"8844c0a339fffff-13d7e65c418678fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3382371c-179fa2feabff03ba","8f44c0a339ad2f4-139f25d44d7e88c0"]},"geometry":{"type":"LineString","coordinates":[[-83.63347800000001,32.871829000000005],[-83.633525,32.871974],[-83.633672,32.872337],[-83.633813,32.87275],[-83.633967,32.873103],[-83.634011,32.873174],[-83.634067,32.873233],[-83.63413800000001,32.873289],[-83.63422,32.873327],[-83.634387,32.873376],[-83.634639,32.873465]]},"id":"8844c0a339fffff-17ffd4bf7affd5aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692223,32.863582]},"id":"8f44c0a20552b66-17fef668a79be74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20552b66-17fef668a79be74c","8f44c0a2055281e-17bf76dce1b4e062"]},"geometry":{"type":"LineString","coordinates":[[-83.692223,32.863582],[-83.692037,32.863477]]},"id":"8a44c0a20557fff-17dff6a2cded38c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20552b66-17fef668a79be74c","8f44c0a2055281e-17bf76dce1b4e062"]},"geometry":{"type":"LineString","coordinates":[[-83.692037,32.863477],[-83.69219000000001,32.863338],[-83.692425,32.863144000000005],[-83.69278700000001,32.862828],[-83.69345,32.862267],[-83.69358700000001,32.862164],[-83.693619,32.862161],[-83.69372100000001,32.862195],[-83.69391900000001,32.862316],[-83.694173,32.862496],[-83.694366,32.862645],[-83.69442400000001,32.862724],[-83.69443600000001,32.862768],[-83.69443100000001,32.862809],[-83.694399,32.862892],[-83.69435800000001,32.862941],[-83.69392500000001,32.863304],[-83.693549,32.863628],[-83.693236,32.863888],[-83.69300000000001,32.864072],[-83.692932,32.864109],[-83.69286100000001,32.864126],[-83.692766,32.864115000000005],[-83.692704,32.864086],[-83.69263500000001,32.864024],[-83.69252300000001,32.863858],[-83.69241000000001,32.863728],[-83.69235,32.863672],[-83.692223,32.863582]]},"id":"8944c0a2057ffff-17f7f3caf6b885d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b19d08c74-17ffe7926f15f346","8f44c0b19d52698-139e87a5c90edbd6"]},"geometry":{"type":"LineString","coordinates":[[-83.685162,32.819812],[-83.685193,32.818303]]},"id":"8844c0b19dfffff-13d6f79c19e950d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b19d08c74-17ffe7926f15f346","8f44c0b19d23742-17b7c794ec0c9875"]},"geometry":{"type":"LineString","coordinates":[[-83.685193,32.818303],[-83.68521100000001,32.817538],[-83.68518900000001,32.81695]]},"id":"8944c0b19d3ffff-17de878d57f49eda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b19d26a24-13ffa78962b4ad9a","8f44c0b19d23742-17b7c794ec0c9875"]},"geometry":{"type":"LineString","coordinates":[[-83.68518900000001,32.81695],[-83.6852046,32.8164626],[-83.68520740000001,32.8160498]]},"id":"8a44c0b19d27fff-139e878d65cada1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659391,32.84626]},"id":"8f44c0a35d69d64-17b6c690ae2051cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3589c285-13f7e5f008213c06","8f44c0a35d69d64-17b6c690ae2051cb"]},"geometry":{"type":"LineString","coordinates":[[-83.659391,32.84626],[-83.659648,32.849007]]},"id":"8844c0a359fffff-179ef6405c481c19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3589c285-13f7e5f008213c06","8f44c0a35123760-1797e52eed99c9d2"]},"geometry":{"type":"LineString","coordinates":[[-83.659648,32.849007],[-83.659957,32.850895]]},"id":"8744c0a35ffffff-17b7e58f7b4fa97c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35109da0-13fec49204a865d5","8f44c0a35123760-1797e52eed99c9d2"]},"geometry":{"type":"LineString","coordinates":[[-83.659957,32.850895],[-83.66020800000001,32.852522]]},"id":"8944c0a3513ffff-13ffd4e071fd9e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35109da0-13fec49204a865d5","8f44c0a35153d5e-1797c4132e97af04"]},"geometry":{"type":"LineString","coordinates":[[-83.66020800000001,32.852522],[-83.66041100000001,32.853772]]},"id":"8844c0a351fffff-1796e4529839d101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674576,32.859737]},"id":"8f44c0a22d2d000-1797a17e0b20d1a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d2d000-1797a17e0b20d1a4","8f44c0a22d73da3-139fa1cd6c37b2f2"]},"geometry":{"type":"LineString","coordinates":[[-83.674576,32.859737],[-83.674547,32.860145],[-83.67449,32.860841],[-83.67444900000001,32.861148]]},"id":"8844c0a22dfffff-17d7b1a0ed746709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d73c0d-13b7a1a564f38359","8f44c0a22d73da3-139fa1cd6c37b2f2"]},"geometry":{"type":"LineString","coordinates":[[-83.67444900000001,32.861148],[-83.674513,32.861221]]},"id":"8c44c0a22d73dff-13b6f1b964ea7b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22d73c0d-13b7a1a564f38359","8f44c0a22d55384-13d6e1b5a3ebeeb5"]},"geometry":{"type":"LineString","coordinates":[[-83.674513,32.861221],[-83.674496,32.861359],[-83.674487,32.861886000000005]]},"id":"8944c0a22d7ffff-1396b1b1285875f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71002530000001,32.7447883]},"id":"8f44c0b040f6ba1-17f6faf23bb2f936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b040e4816-17b766ca03f07caf","8f44c0b040f6ba1-17f6faf23bb2f936"]},"geometry":{"type":"LineString","coordinates":[[-83.71002530000001,32.7447883],[-83.710159,32.744804],[-83.711312,32.744818],[-83.711454,32.744802],[-83.711546,32.744783000000005],[-83.71164900000001,32.744749],[-83.71172800000001,32.744687]]},"id":"8844c0b041fffff-17fe68d611df7403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04000001-13b6c6ee474ebdb1","8f44c0b040e4816-17b766ca03f07caf"]},"geometry":{"type":"LineString","coordinates":[[-83.71172800000001,32.744687],[-83.711797,32.744622],[-83.71186700000001,32.744493],[-83.711893,32.744402],[-83.71190800000001,32.744289],[-83.711916,32.743901],[-83.71191300000001,32.743682],[-83.711905,32.743575],[-83.71189000000001,32.743499],[-83.71185700000001,32.743423],[-83.71180100000001,32.743336],[-83.711747,32.74327],[-83.71167000000001,32.74322]]},"id":"8944c0b0403ffff-13f6767398ae94c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04000001-13b6c6ee474ebdb1","8f44c0b04006590-17b76879e9a9b545"]},"geometry":{"type":"LineString","coordinates":[[-83.71167000000001,32.74322],[-83.711037,32.742821]]},"id":"8a44c0b04007fff-13b7d7b411b48ec6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04006590-17b76879e9a9b545","8f44c0b040330c0-17be68baeafe6cfc"]},"geometry":{"type":"LineString","coordinates":[[-83.711037,32.742821],[-83.71093300000001,32.742621]]},"id":"8944c0b0403ffff-17fee89a6097aa94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6094487,32.842528200000004]},"id":"8f44c0a3642eb40-1397607e9ba81bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60947300000001,32.842568]},"id":"8f44c0a3642c690-13bf406f6a811dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3642eb40-1397607e9ba81bda","8f44c0a3642c690-13bf406f6a811dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.6094487,32.842528200000004],[-83.60947300000001,32.842568]]},"id":"8a44c0a3642ffff-13b7d0770ce058cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36429295-17973f5cc1e33460","8f44c0a3642c690-13bf406f6a811dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.60947300000001,32.842568],[-83.6099124,32.8433458]]},"id":"8a44c0a3642ffff-17b73fe6118b35a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3647026e-17ff3e680b8687da","8f44c0a36429295-17973f5cc1e33460"]},"geometry":{"type":"LineString","coordinates":[[-83.6099124,32.8433458],[-83.610304,32.844133]]},"id":"8844c0a365fffff-179f3ee26a677e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611118,32.845661]},"id":"8f44c0a3644e876-13bf3c6b4eef056f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3647026e-17ff3e680b8687da","8f44c0a3644e876-13bf3c6b4eef056f"]},"geometry":{"type":"LineString","coordinates":[[-83.610304,32.844133],[-83.611118,32.845661]]},"id":"8944c0a3647ffff-13dfbd69af7077ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03112516-13fe66ae66c750b7","8f44c0b031a2066-13fe6944ec00d253"]},"geometry":{"type":"LineString","coordinates":[[-83.69760500000001,32.782477],[-83.697996,32.782456],[-83.698183,32.782455],[-83.69835900000001,32.78246],[-83.698665,32.78248]]},"id":"8a44c0b031a7fff-13f677f994549df1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03112516-13fe66ae66c750b7","8f44c0b0312c726-139ffe774319a280"]},"geometry":{"type":"LineString","coordinates":[[-83.698665,32.78248],[-83.70118000000001,32.782700000000006],[-83.701457,32.782702],[-83.701571,32.782663],[-83.701679,32.782598],[-83.70203000000001,32.782307]]},"id":"8844c0b031fffff-13bff271ed7e9621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67615500000001,32.820537]},"id":"8f44c0b1827605b-17f7bda32f2dfd0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1827605b-17f7bda32f2dfd0e","8f44c0b1822d02a-139ebd1a46c1fbba"]},"geometry":{"type":"LineString","coordinates":[[-83.67615500000001,32.820537],[-83.67618800000001,32.820462],[-83.67621700000001,32.820377],[-83.67637400000001,32.819601]]},"id":"8844c0b183fffff-17d7dd5755a4a7af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18370775-17dfbadc8e0faa1a","8f44c0b1822d02a-139ebd1a46c1fbba"]},"geometry":{"type":"LineString","coordinates":[[-83.67637400000001,32.819601],[-83.67649,32.81899],[-83.676546,32.818742],[-83.67663800000001,32.818513],[-83.67671800000001,32.818365],[-83.676865,32.818182],[-83.677008,32.81805],[-83.67729200000001,32.817861]]},"id":"8944c0b1837ffff-13d69c5544daac8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18370775-17dfbadc8e0faa1a","8f44c0b18360990-17ffb78261764bd6"]},"geometry":{"type":"LineString","coordinates":[[-83.67729200000001,32.817861],[-83.677464,32.817793],[-83.677625,32.817745],[-83.677738,32.817722],[-83.677779,32.817714],[-83.677878,32.8177],[-83.67805100000001,32.817689],[-83.67866500000001,32.817689]]},"id":"8944c0b1837ffff-1797b934cf735e71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18360990-17ffb78261764bd6","8f44c0b19d94232-17f6f3e74078b233"]},"geometry":{"type":"LineString","coordinates":[[-83.67866500000001,32.817689],[-83.680142,32.817691]]},"id":"8744c0b18ffffff-17f6d5b4da9a0573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d94232-17f6f3e74078b233","8f44c0b19d86846-17feb1a2a6858b03"]},"geometry":{"type":"LineString","coordinates":[[-83.680142,32.817691],[-83.680626,32.8176858],[-83.681071,32.817681]]},"id":"8944c0b19dbffff-17ffd2c4fcded26f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b765d1e-17f6fb9d8a49f100","8f44c0b1b775c91-17debf0baa2b9c39"]},"geometry":{"type":"LineString","coordinates":[[-83.66247100000001,32.837904],[-83.663876,32.837947]]},"id":"8944c0b1b77ffff-17d7fd549a0e485c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b765d1e-17f6fb9d8a49f100","8f44c0b1b3b32a3-1397b7d1034ccb63"]},"geometry":{"type":"LineString","coordinates":[[-83.663876,32.837947],[-83.66543200000001,32.837992]]},"id":"8744c0b1bffffff-17f6f9b747d8ffb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b313495-13bfb21d0dee8b13","8f44c0b1b3b32a3-1397b7d1034ccb63"]},"geometry":{"type":"LineString","coordinates":[[-83.66543200000001,32.837992],[-83.666976,32.838034],[-83.66776800000001,32.838056]]},"id":"8944c0b1b3bffff-1396f4f7080ab84f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88228650-1397d279e01da2a6","8f44c0b882231a2-17f7b423852fe1ab"]},"geometry":{"type":"LineString","coordinates":[[-83.57518800000001,32.860877],[-83.57539100000001,32.861207],[-83.575579,32.861448],[-83.57586900000001,32.861778]]},"id":"8944c0b8823ffff-1397f359c04323da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88228650-1397d279e01da2a6","8f44c0b88270a18-17dff064c3fba9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.57586900000001,32.861778],[-83.576014,32.861936],[-83.576722,32.862715]]},"id":"8844c0b883fffff-13b7f16f2a0e3f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88270a5b-17979048048f82a9","8f44c0b88270a18-17dff064c3fba9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.576722,32.862715],[-83.576768,32.862772]]},"id":"8c44c0b88270bff-17ffb056683242de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88244c73-1797cf350b8ea04a","8f44c0b88270a5b-17979048048f82a9"]},"geometry":{"type":"LineString","coordinates":[[-83.576768,32.862772],[-83.57704100000001,32.863059],[-83.577208,32.863214]]},"id":"8944c0b8827ffff-179fafc081817376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688718,32.7436656]},"id":"8f44c0b15912803-13b7af6b2d4a1ef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b332932d2-13f7eca2835d1e76","8f44c0b15912803-13b7af6b2d4a1ef9"]},"geometry":{"type":"LineString","coordinates":[[-83.670012,32.741311],[-83.66999200000001,32.741752000000005],[-83.669965,32.742144],[-83.669955,32.742212],[-83.66993500000001,32.74225],[-83.66990600000001,32.742277],[-83.66986,32.742292],[-83.669797,32.7423],[-83.66967500000001,32.7423],[-83.669077,32.74228],[-83.668968,32.742283],[-83.668912,32.742302],[-83.66887600000001,32.742334],[-83.66886000000001,32.74239],[-83.668875,32.743192],[-83.6688718,32.7436656]]},"id":"8544c0b3fffffff-17b7ee3c6b85c6eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b159016c5-13d7aaa9846051da","8f44c0b15912803-13b7af6b2d4a1ef9"]},"geometry":{"type":"LineString","coordinates":[[-83.6688718,32.7436656],[-83.668867,32.74438],[-83.668862,32.744576],[-83.66886500000001,32.744641],[-83.66887700000001,32.744729],[-83.66890000000001,32.744798],[-83.66894500000001,32.744874],[-83.669014,32.744965],[-83.6691,32.745058],[-83.66918700000001,32.74514],[-83.66931000000001,32.745235],[-83.66942900000001,32.745309],[-83.66963100000001,32.745444],[-83.669994,32.745662],[-83.67005300000001,32.745682],[-83.670112,32.745694],[-83.67019300000001,32.745699],[-83.67029000000001,32.745683],[-83.670392,32.745651],[-83.670491,32.745607],[-83.67055900000001,32.745559],[-83.67061700000001,32.745507],[-83.670653,32.745455],[-83.670686,32.745396],[-83.670715,32.745238],[-83.670738,32.745005],[-83.670764,32.744602],[-83.67078400000001,32.744449],[-83.67079600000001,32.74439],[-83.67082,32.744332]]},"id":"8844c0b159fffff-17f7bd38c663832f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed156b0-17ffe38f2ee9df84","8f44c0b0ed36745-139f63780eed8196"]},"geometry":{"type":"LineString","coordinates":[[-83.713088,32.789679],[-83.71305100000001,32.790883]]},"id":"8944c0b0ed3ffff-1397e38399925b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed156b0-17ffe38f2ee9df84","8f44c0b0ed1aad4-17fee3a286f2b497"]},"geometry":{"type":"LineString","coordinates":[[-83.71305100000001,32.790883],[-83.713046,32.791288],[-83.71302,32.792113]]},"id":"8944c0b0ed3ffff-17fe53973333b009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71444000000001,32.793827]},"id":"8f44c0b0ec2ea60-17bfe02b0fdfe077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec2ea60-17bfe02b0fdfe077","8f44c0b0ed1aad4-17fee3a286f2b497"]},"geometry":{"type":"LineString","coordinates":[[-83.71302,32.792113],[-83.712991,32.793425],[-83.712998,32.793554],[-83.71301100000001,32.79359],[-83.713052,32.793663],[-83.71310000000001,32.793709],[-83.71312800000001,32.793729],[-83.71321800000001,32.793778],[-83.71335,32.793801],[-83.713437,32.793805],[-83.71433400000001,32.793825000000005],[-83.71444000000001,32.793827]]},"id":"8844c0b0edfffff-13f752d3a07d1f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ac8cdd-179fe5d1018432a5","8f44c0a3230b36b-13f76d98ef2d2eef"]},"geometry":{"type":"LineString","coordinates":[[-83.62037600000001,32.869555000000005],[-83.619938,32.86918],[-83.619777,32.86907],[-83.61967,32.869025],[-83.619614,32.869011],[-83.61948600000001,32.868994],[-83.619397,32.868995000000005],[-83.61927,32.869011],[-83.619161,32.869045],[-83.619051,32.869103],[-83.61831600000001,32.869709],[-83.61812300000001,32.869875],[-83.617947,32.870057],[-83.61781900000001,32.870213],[-83.617362,32.870815],[-83.617288,32.870893],[-83.617242,32.870922],[-83.61718900000001,32.870946]]},"id":"8744c0a32ffffff-17f779eb1c9b9d6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61419500000001,32.87218]},"id":"8f44c0a3221042a-13ffb4e822e5a72d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3230b36b-13f76d98ef2d2eef","8f44c0a3221042a-13ffb4e822e5a72d"]},"geometry":{"type":"LineString","coordinates":[[-83.61718900000001,32.870946],[-83.617115,32.870977],[-83.617041,32.870998],[-83.61694700000001,32.871011],[-83.61566900000001,32.871107],[-83.61558000000001,32.871118],[-83.615452,32.87115],[-83.61534900000001,32.871195],[-83.615235,32.87126],[-83.61497800000001,32.871482],[-83.614661,32.871769],[-83.61419500000001,32.87218]]},"id":"8844c0a323fffff-13fff17e585e10f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70913800000001,32.776896]},"id":"8f44c0b039642ca-13de4d1cc26a05f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03961893-13d7ccb1efc57523","8f44c0b039642ca-13de4d1cc26a05f5"]},"geometry":{"type":"LineString","coordinates":[[-83.70913800000001,32.776896],[-83.709168,32.776944],[-83.70926800000001,32.777186],[-83.709309,32.777302]]},"id":"8a44c0b03967fff-13d77ce3b807bb54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03961893-13d7ccb1efc57523","8f44c0b0396110a-1797cca6a5cfb385"]},"geometry":{"type":"LineString","coordinates":[[-83.709309,32.777302],[-83.709327,32.777382]]},"id":"8b44c0b03961fff-13feccac46be2689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0396eaa2-17b7ccaecc7a8f7c","8f44c0b0396110a-1797cca6a5cfb385"]},"geometry":{"type":"LineString","coordinates":[[-83.709327,32.777382],[-83.709343,32.777458],[-83.70935100000001,32.777555],[-83.709331,32.777777],[-83.709314,32.777862]]},"id":"8944c0b0397ffff-179fcc9fdda55fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0396eaa2-17b7ccaecc7a8f7c","8f44c0b0396a053-17de4d3c00945308"]},"geometry":{"type":"LineString","coordinates":[[-83.709314,32.777862],[-83.709297,32.777963],[-83.70925100000001,32.778129],[-83.709226,32.778187],[-83.70919500000001,32.778239],[-83.70914400000001,32.778291],[-83.70908800000001,32.778336]]},"id":"8a44c0b0396ffff-17d74ce0ecd85751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0396a053-17de4d3c00945308","8f44c0b0395ca34-17f7d05de30c1920"]},"geometry":{"type":"LineString","coordinates":[[-83.70908800000001,32.778336],[-83.708982,32.778385],[-83.708813,32.778444],[-83.708672,32.778485],[-83.70838400000001,32.77854],[-83.708228,32.77856],[-83.708054,32.778576],[-83.70802400000001,32.778578],[-83.707921,32.778582],[-83.70780500000001,32.778582]]},"id":"8944c0b0397ffff-17d7fec709983f2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709097,32.776909]},"id":"8f44c0b03960976-13f66d3669654be6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03960976-13f66d3669654be6","8f44c0b039642ca-13de4d1cc26a05f5"]},"geometry":{"type":"LineString","coordinates":[[-83.709097,32.776909],[-83.70913800000001,32.776896]]},"id":"8a44c0b03967fff-13de5d299a4e8bbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03960976-13f66d3669654be6","8f44c0b039642ca-13de4d1cc26a05f5"]},"geometry":{"type":"LineString","coordinates":[[-83.70913800000001,32.776896],[-83.70915600000001,32.776863],[-83.70916700000001,32.776818],[-83.709162,32.776775],[-83.70912600000001,32.776724],[-83.70908100000001,32.776676],[-83.709017,32.776624000000005],[-83.708962,32.776584],[-83.708905,32.77657],[-83.70885600000001,32.776564],[-83.708816,32.776578],[-83.708771,32.776617],[-83.708759,32.776659],[-83.70876000000001,32.776705],[-83.708775,32.776745000000005],[-83.70893600000001,32.776882],[-83.708993,32.776912],[-83.70904200000001,32.776915],[-83.709097,32.776909]]},"id":"8a44c0b03967fff-13f67d8e409803d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709624,32.777153000000006]},"id":"8f44c0b01592cb1-13feebed031e38b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01592cb1-13feebed031e38b4","8f44c0b01592c9d-139f6beb2d81a589"]},"geometry":{"type":"LineString","coordinates":[[-83.709624,32.777153000000006],[-83.70962700000001,32.777189]]},"id":"8d44c0b01592cbf-1397ebec18784c8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01592cb1-13feebed031e38b4","8f44c0b01592c9d-139f6beb2d81a589"]},"geometry":{"type":"LineString","coordinates":[[-83.70962700000001,32.777189],[-83.709643,32.777222],[-83.70967800000001,32.777234],[-83.70983000000001,32.777231],[-83.70993,32.777223],[-83.70999,32.777212],[-83.71002200000001,32.777178],[-83.71003800000001,32.777147],[-83.71003,32.777120000000004],[-83.710026,32.777109],[-83.70999,32.777082],[-83.709918,32.777076],[-83.70972,32.777088],[-83.709652,32.777098],[-83.70962800000001,32.777121],[-83.709624,32.777153000000006]]},"id":"8a44c0b01597fff-13ffcb6a2c4d6574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b9b022a-13d7f52fe7c3c916","8f44c0b18650121-17bff50ce6f2b7a1"]},"geometry":{"type":"LineString","coordinates":[[-83.666509,32.823171],[-83.66652,32.821789],[-83.666565,32.820883]]},"id":"8644c0b1fffffff-1396b52588af7b02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66659700000001,32.820216]},"id":"8f44c0b1867279b-179fb4f8e126c534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1867279b-179fb4f8e126c534","8f44c0b18650121-17bff50ce6f2b7a1"]},"geometry":{"type":"LineString","coordinates":[[-83.666565,32.820883],[-83.66659700000001,32.820216]]},"id":"8944c0b1867ffff-17fff502e0af0d88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1867279b-179fb4f8e126c534","8f44c0b18628d28-13f6b4f0c413ba8c"]},"geometry":{"type":"LineString","coordinates":[[-83.66659700000001,32.820216],[-83.666566,32.820134],[-83.66659100000001,32.819302],[-83.66661,32.818689]]},"id":"8844c0b187fffff-13bff4fed8df325f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66669200000001,32.81653]},"id":"8f44c0b1870eb4c-139ff4bd8f429822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18628d28-13f6b4f0c413ba8c","8f44c0b1870eb4c-139ff4bd8f429822"]},"geometry":{"type":"LineString","coordinates":[[-83.66661,32.818689],[-83.666639,32.817812],[-83.66665900000001,32.817231],[-83.66669200000001,32.81653]]},"id":"8844c0b187fffff-17bff4d939f4dcbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7173746,32.8564987]},"id":"8f44c0a25cd8741-17bfb900e904d8b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25cd8741-17bfb900e904d8b4","8f44c0a25cdc071-13f6788751837782"]},"geometry":{"type":"LineString","coordinates":[[-83.7173746,32.8564987],[-83.717302,32.856356500000004],[-83.71740170000001,32.8561233],[-83.7175691,32.8559652]]},"id":"8a44c0a25cdffff-17ff78f357a7af6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25cdc071-13f6788751837782","8f44c0a25cee218-13f734a822cc985d"]},"geometry":{"type":"LineString","coordinates":[[-83.7175691,32.8559652],[-83.7177497,32.855862300000005],[-83.7179713,32.855795300000004],[-83.7182312,32.8557399],[-83.7186338,32.8556073],[-83.7188764,32.8555142],[-83.719155,32.855352100000005]]},"id":"8944c0a25cfffff-13bf7693a4617a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25cee218-13f734a822cc985d","8f44c0a25c539ab-139f324c4af90fff"]},"geometry":{"type":"LineString","coordinates":[[-83.719155,32.855352100000005],[-83.71948900000001,32.8551641],[-83.72012120000001,32.8547985]]},"id":"8844c0a25dfffff-13b6f379cd12916a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663949,32.831759000000005]},"id":"8f44c0b1b034775-13dffb6fe894b780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b034775-13dffb6fe894b780","8f44c0b1b0341a4-13debb7148473a47"]},"geometry":{"type":"LineString","coordinates":[[-83.663949,32.831759000000005],[-83.6639468,32.8315819]]},"id":"8b44c0b1b034fff-1396bb7099a24c3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b11a45e-179efb73ac335b3e","8f44c0b1b0341a4-13debb7148473a47"]},"geometry":{"type":"LineString","coordinates":[[-83.6639468,32.8315819],[-83.663943,32.831271]]},"id":"8844c0b1b1fffff-17ffbb727b54d000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66396230000001,32.8300272]},"id":"8f44c0b1b110014-179fbb679625883c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b11a45e-179efb73ac335b3e","8f44c0b1b110014-179fbb679625883c"]},"geometry":{"type":"LineString","coordinates":[[-83.663943,32.831271],[-83.66396230000001,32.8300272]]},"id":"8944c0b1b13ffff-1797bb6dadbc2bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b114524-13d6bb69400aff76","8f44c0b1b110014-179fbb679625883c"]},"geometry":{"type":"LineString","coordinates":[[-83.66396230000001,32.8300272],[-83.6639596,32.829495200000004]]},"id":"8a44c0b1b117fff-13fefb6871327a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66395370000001,32.829129800000004]},"id":"8f44c0b1bc49969-13debb6cf48c9ad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc49969-13debb6cf48c9ad8","8f44c0b1b114524-13d6bb69400aff76"]},"geometry":{"type":"LineString","coordinates":[[-83.6639596,32.829495200000004],[-83.663959,32.829383],[-83.66395370000001,32.829129800000004]]},"id":"8944c0b1b13ffff-13d6fb6ab3f12747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc49969-13debb6cf48c9ad8","8f44c0b1bc6b194-13febb870723db73"]},"geometry":{"type":"LineString","coordinates":[[-83.66395370000001,32.829129800000004],[-83.66394100000001,32.828521],[-83.66393400000001,32.828412],[-83.66391200000001,32.828356]]},"id":"8744c0b1bffffff-13ffbb72f8995786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664061,32.825939000000005]},"id":"8f44c0b1bd4840b-1397fb29e7243f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd45d09-17bebb24e1645ebe","8f44c0b1bd4840b-1397fb29e7243f54"]},"geometry":{"type":"LineString","coordinates":[[-83.664061,32.825939000000005],[-83.66405300000001,32.825231],[-83.66406900000001,32.824545]]},"id":"8944c0b1bd7ffff-13f6fb2b25b2dcc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd45d09-17bebb24e1645ebe","8f44c0b186d9109-139fbaea2ff5143f"]},"geometry":{"type":"LineString","coordinates":[[-83.66406900000001,32.824545],[-83.664113,32.824149000000006],[-83.664156,32.823464],[-83.664163,32.823081]]},"id":"8844c0b1bdfffff-17f7baff4fb0a5cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644947,32.795543]},"id":"8f44c0b1e42b92c-13dee9d4215ba585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e411b30-17f7eeff48e53343","8f44c0b1e42b92c-13dee9d4215ba585"]},"geometry":{"type":"LineString","coordinates":[[-83.64283,32.79535],[-83.642908,32.79545],[-83.642953,32.795484],[-83.64301300000001,32.795502],[-83.644947,32.795543]]},"id":"8944c0b1e43ffff-13dffc7bcb71be99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e5484ee-13ffe3f00044c667","8f44c0b1e42b92c-13dee9d4215ba585"]},"geometry":{"type":"LineString","coordinates":[[-83.644947,32.795543],[-83.64736,32.795589]]},"id":"8844c0b1e5fffff-13fee6e21203d7aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e5484ee-13ffe3f00044c667","8f44c0b1e0b5aee-1397de9d8084c9ba"]},"geometry":{"type":"LineString","coordinates":[[-83.64736,32.795589],[-83.64954,32.795628]]},"id":"8744c0b1effffff-1397f146c4c5e64d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba375a903-17b7e5c18f7e4142","8f44c0ba30c5b5b-13ffbf44e46a9240"]},"geometry":{"type":"LineString","coordinates":[[-83.57062900000001,32.777341],[-83.57077600000001,32.777481],[-83.57097300000001,32.777645],[-83.571377,32.77797],[-83.571549,32.778129],[-83.571585,32.778198],[-83.571588,32.778243],[-83.57156400000001,32.778304],[-83.571134,32.778677],[-83.570784,32.778958],[-83.57046700000001,32.779241],[-83.570223,32.779452],[-83.56993100000001,32.779663],[-83.569598,32.779989],[-83.569288,32.78024],[-83.56896,32.780524],[-83.568521,32.780825],[-83.56838400000001,32.780938],[-83.56797200000001,32.781323]]},"id":"8744c0ba3ffffff-13dfe09748458083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567701,32.781602]},"id":"8f44c0ba375a786-17d7e66ae38b9b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba375a786-17d7e66ae38b9b27","8f44c0ba375a903-17b7e5c18f7e4142"]},"geometry":{"type":"LineString","coordinates":[[-83.56797200000001,32.781323],[-83.567879,32.781447],[-83.567701,32.781602]]},"id":"8b44c0ba375afff-1797e611bd8f08f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba375a786-17d7e66ae38b9b27","8f44c0ba360919d-13bff9172e9715d5"]},"geometry":{"type":"LineString","coordinates":[[-83.567701,32.781602],[-83.566754,32.782421],[-83.56660620000001,32.7825605]]},"id":"8844c0ba37fffff-17ffa7c29c441908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28743a53-13f5fb93eaaf705c","8f44c0b282833ad-179db5c46ad8a894"]},"geometry":{"type":"LineString","coordinates":[[-83.768749,32.776527],[-83.76928500000001,32.777174],[-83.770134,32.778185],[-83.77038200000001,32.778399],[-83.77050700000001,32.778498],[-83.77075400000001,32.778658],[-83.770871,32.778723],[-83.771129,32.778848]]},"id":"8744c0b28ffffff-1795b8ddfbf603ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77548200000001,32.779494]},"id":"8f44c0b28256305-13bfeb23cf5da081"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b28256305-13bfeb23cf5da081","8f44c0b282833ad-179db5c46ad8a894"]},"geometry":{"type":"LineString","coordinates":[[-83.771129,32.778848],[-83.77157000000001,32.779069],[-83.771777,32.779159],[-83.77207700000001,32.779266],[-83.77244900000001,32.779367],[-83.772638,32.779409],[-83.772884,32.779454],[-83.773194,32.779486],[-83.773511,32.779505],[-83.77548200000001,32.779494]]},"id":"8844c0b283fffff-13f5b08d1a821b56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100747,32.8482332]},"id":"8f44c0a36781c91-1397fef7569b63b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36781c91-1397fef7569b63b4","8f44c0a3678e74e-13bfbee728e61fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6100747,32.8482332],[-83.61010060000001,32.848945]]},"id":"8944c0a367bffff-13f73eef4a4b79c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61010060000001,32.8496491]},"id":"8f44c0a366a4b0b-17f7bee72f6564cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3678e74e-13bfbee728e61fc7","8f44c0a366a4b0b-17f7bee72f6564cb"]},"geometry":{"type":"LineString","coordinates":[[-83.61010060000001,32.848945],[-83.61010060000001,32.8496491]]},"id":"8944c0a367bffff-139fbee72f448a05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366a4b0b-17f7bee72f6564cb","8f44c0a366ae2eb-17ff3eed4e5b6dab"]},"geometry":{"type":"LineString","coordinates":[[-83.61010060000001,32.8496491],[-83.61009080000001,32.8510867]]},"id":"8844c0a367fffff-17b7feea303325b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668dd26-13bf3eff2744a30a","8f44c0a366ae2eb-17ff3eed4e5b6dab"]},"geometry":{"type":"LineString","coordinates":[[-83.61009080000001,32.8510867],[-83.6100622,32.851804800000004]]},"id":"8944c0a366bffff-13dfbef6330ee266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61006900000001,32.852550900000004]},"id":"8f44c0a3668904d-139f7efae21e6744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668dd26-13bf3eff2744a30a","8f44c0a3668904d-139f7efae21e6744"]},"geometry":{"type":"LineString","coordinates":[[-83.6100622,32.851804800000004],[-83.61006900000001,32.852550900000004]]},"id":"8a44c0a3668ffff-13b73efd0ab019ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668904d-139f7efae21e6744","8f44c0a32d2d993-17f7ff1cd783f5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.61006900000001,32.852550900000004],[-83.6100442,32.8532588],[-83.61001470000001,32.8539199]]},"id":"8944c0a366fffff-17bf3f0add705c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d2d993-17f7ff1cd783f5b8","8f44c0a32d70703-13f77f18eaec2863"]},"geometry":{"type":"LineString","coordinates":[[-83.61001470000001,32.8539199],[-83.610009,32.854264],[-83.610021,32.855383]]},"id":"8844c0a32dfffff-13bf3f1d1ac20a3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100308,32.8567661]},"id":"8f44c0a32d5cc2a-17d7ff12c09160e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d5cc2a-17d7ff12c09160e8","8f44c0a32d70703-13f77f18eaec2863"]},"geometry":{"type":"LineString","coordinates":[[-83.610021,32.855383],[-83.6100308,32.8567661]]},"id":"8944c0a32d7ffff-17b7bf15d1647868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d5cc2a-17d7ff12c09160e8","8f44c0a32c66685-13ff3f04e02a6e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.6100308,32.8567661],[-83.61005300000001,32.858261]]},"id":"8844c0a32dfffff-17bf3f0bdcceb277"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4540e0-13f7e9eb4ead2cb0","8f44c0b1e42b92c-13dee9d4215ba585"]},"geometry":{"type":"LineString","coordinates":[[-83.64491000000001,32.796982],[-83.644925,32.796684],[-83.644947,32.795543]]},"id":"8844c0b1e5fffff-13b6e9dd6738dc27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e556789-17f7e959a3d19df3","8f44c0b1e42b92c-13dee9d4215ba585"]},"geometry":{"type":"LineString","coordinates":[[-83.644947,32.795543],[-83.644982,32.794231],[-83.645026,32.79417],[-83.64506700000001,32.794153],[-83.645143,32.794143000000005]]},"id":"8844c0b1e5fffff-179ef9c2066ad0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05184023-1397a717ec2f2204","8f44c0a05185d88-13ffd68d3c84c986"]},"geometry":{"type":"LineString","coordinates":[[-83.6856109,32.904949300000006],[-83.685389,32.904789]]},"id":"8a44c0a05187fff-13d7c6d28cadbd15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6851551,32.9045955]},"id":"8f44c0a051b1373-139eb7aa1d9213a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05184023-1397a717ec2f2204","8f44c0a051b1373-139eb7aa1d9213a2"]},"geometry":{"type":"LineString","coordinates":[[-83.685389,32.904789],[-83.68519500000001,32.904618],[-83.6851551,32.9045955]]},"id":"8944c0a051bffff-13d6975f81435d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68502330000001,32.9045214]},"id":"8f44c0a051b10e1-13ffe7fc782a8818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a051b1373-139eb7aa1d9213a2","8f44c0a051b10e1-13ffe7fc782a8818"]},"geometry":{"type":"LineString","coordinates":[[-83.6851551,32.9045955],[-83.68502330000001,32.9045214]]},"id":"8b44c0a051b1fff-139797d3408df728"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68418770000001,32.904240900000005]},"id":"8f44c0a051b2023-13be9a06b793a870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a051b10e1-13ffe7fc782a8818","8f44c0a051b2023-13be9a06b793a870"]},"geometry":{"type":"LineString","coordinates":[[-83.68502330000001,32.9045214],[-83.68501900000001,32.904519],[-83.68487900000001,32.904473],[-83.684672,32.904369],[-83.684526,32.904302],[-83.684261,32.904252],[-83.68418770000001,32.904240900000005]]},"id":"8a44c0a051b7fff-139fb8fda9c14008"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6833163,32.904132100000005]},"id":"8f44c0a05cc8760-13fe9c2755ab96ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cc8760-13fe9c2755ab96ee","8f44c0a051b2023-13be9a06b793a870"]},"geometry":{"type":"LineString","coordinates":[[-83.68418770000001,32.904240900000005],[-83.68394500000001,32.904204],[-83.68355100000001,32.904179],[-83.6833163,32.904132100000005]]},"id":"8844c0a05dfffff-139f8b177c12deb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6831722,32.9040849]},"id":"8f44c0a05cc845a-13df9c81692f88ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cc8760-13fe9c2755ab96ee","8f44c0a05cc845a-13df9c81692f88ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6833163,32.904132100000005],[-83.68324100000001,32.904117],[-83.6831722,32.9040849]]},"id":"8b44c0a05cc8fff-13fe8c55473b1e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cca91a-139fbd0adf54c318","8f44c0a05cc845a-13df9c81692f88ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6831722,32.9040849],[-83.683119,32.90406],[-83.68299800000001,32.903993],[-83.68295230000001,32.9039571]]},"id":"8a44c0a05ccffff-13b7ecc7c8fe2c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6826465,32.9032336]},"id":"8f44c0a05cc38b5-17df8dc9f086af37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cca91a-139fbd0adf54c318","8f44c0a05cc38b5-17df8dc9f086af37"]},"geometry":{"type":"LineString","coordinates":[[-83.68295230000001,32.9039571],[-83.68285800000001,32.903883],[-83.682755,32.90375],[-83.68268900000001,32.903621],[-83.682659,32.903415],[-83.6826465,32.9032336]]},"id":"8944c0a05cfffff-13bfbd9071803fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69569700000001,32.856417]},"id":"8f44c0a20c2661c-17feeded6aabeea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c2661c-17feeded6aabeea9","8f44c0a20c01ce8-13deedd8ccf1806b"]},"geometry":{"type":"LineString","coordinates":[[-83.69569700000001,32.856417],[-83.6957,32.857179],[-83.69573000000001,32.857796]]},"id":"8944c0a20c3ffff-17bffde7defad2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69572600000001,32.859091]},"id":"8f44c0a20c0b419-1397eddb4d382f84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c01ce8-13deedd8ccf1806b","8f44c0a20c0b419-1397eddb4d382f84"]},"geometry":{"type":"LineString","coordinates":[[-83.69573000000001,32.857796],[-83.69572600000001,32.859091]]},"id":"8944c0a20c3ffff-13ff7dda091185e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b216498ca-13b5d7d14a8a5d1a","8f44c0b2124ecdb-13ffc38f0e891e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.76548000000001,32.743344],[-83.765259,32.743333],[-83.764948,32.743326],[-83.764266,32.74333],[-83.76330700000001,32.743319],[-83.76304400000001,32.743312],[-83.762393,32.743302],[-83.76142800000001,32.743297000000005],[-83.761229,32.743304],[-83.760244,32.743311],[-83.759928,32.743301],[-83.75928,32.743298],[-83.75895200000001,32.743285],[-83.75797,32.743271],[-83.75759400000001,32.743262],[-83.75725700000001,32.743235],[-83.757182,32.743222]]},"id":"8644c0b2fffffff-13d7ddb0c2417a69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.756201,32.74279]},"id":"8f44c0b2164e68e-1797da366ff62afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2164e68e-1797da366ff62afd","8f44c0b216498ca-13b5d7d14a8a5d1a"]},"geometry":{"type":"LineString","coordinates":[[-83.757182,32.743222],[-83.75705,32.743186],[-83.75672800000001,32.743068],[-83.75662700000001,32.743024000000005],[-83.756359,32.742868],[-83.756201,32.74279]]},"id":"8a44c0b2164ffff-13bdd909817a0a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.584146,32.863585]},"id":"8f44c0b89c0aacb-17fffe44c0eb5cc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89ce4bb5-17b7feac86008542","8f44c0b89c0aacb-17fffe44c0eb5cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.584146,32.863585],[-83.58412,32.863656],[-83.58406400000001,32.863765],[-83.58403100000001,32.863805],[-83.58398000000001,32.863852]]},"id":"8944c0b89c3ffff-17d77e70b6c65ceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89ce4bb5-17b7feac86008542","8f44c0b89ce2784-13dfe0d8c1f673bd"]},"geometry":{"type":"LineString","coordinates":[[-83.58398000000001,32.863852],[-83.58395,32.863914],[-83.58392,32.863954],[-83.583776,32.864086],[-83.58344500000001,32.864313],[-83.5832,32.864461],[-83.58309,32.864531]]},"id":"8a44c0b89ce7fff-139fffb26556e80c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89cc6d43-1397e1fc017377c0","8f44c0b89ce2784-13dfe0d8c1f673bd"]},"geometry":{"type":"LineString","coordinates":[[-83.58309,32.864531],[-83.582783,32.864693],[-83.582721,32.864739],[-83.58262400000001,32.864823]]},"id":"8944c0b89cfffff-13b7a16f25616c82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89cc6d43-1397e1fc017377c0","8f44c0b89525809-139fa607adb80194"]},"geometry":{"type":"LineString","coordinates":[[-83.58262400000001,32.864823],[-83.582401,32.864837],[-83.582091,32.86484],[-83.581799,32.864852],[-83.581579,32.864873],[-83.581175,32.864933],[-83.58113300000001,32.864935],[-83.58109300000001,32.86493],[-83.58104700000001,32.864918],[-83.581001,32.864896],[-83.580967,32.864869]]},"id":"8844c0b89dfffff-139fe40738712b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58610300000001,32.863543]},"id":"8f44c0b89c756a9-17f7797da4e2075d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c756a9-17f7797da4e2075d","8f44c0b89c72589-17ff7c04842868de"]},"geometry":{"type":"LineString","coordinates":[[-83.58610300000001,32.863543],[-83.585541,32.863549],[-83.585068,32.863562]]},"id":"8944c0b89c7ffff-17f7fac11285bae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c72589-17ff7c04842868de","8f44c0b89c0aacb-17fffe44c0eb5cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.585068,32.863562],[-83.584146,32.863585]]},"id":"8a44c0b89c0ffff-17f77d24aff9ac91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89c0a392-17fffeb72a1dae29","8f44c0b89c0aacb-17fffe44c0eb5cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.584146,32.863585],[-83.58396300000001,32.86359]]},"id":"8b44c0b89c0afff-17ff7e7dfc39fb05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a145223-13fedb7f66409d79","8f44c0b1ab9e22a-139fd716afcd0c4f"]},"geometry":{"type":"LineString","coordinates":[[-83.650817,32.81648],[-83.652623,32.816502]]},"id":"8744c0b1affffff-1396f94b068aed1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab98cb5-139ff6da036462b0","8f44c0b1ab9e22a-139fd716afcd0c4f"]},"geometry":{"type":"LineString","coordinates":[[-83.652623,32.816502],[-83.65272,32.816505]]},"id":"8a44c0b1ab9ffff-139ef6f85bc6e6eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab98cb5-139ff6da036462b0","8f44c0b1ab8e720-1397d44baa54e701"]},"geometry":{"type":"LineString","coordinates":[[-83.65272,32.816505],[-83.652989,32.816509],[-83.653767,32.816518]]},"id":"8944c0b1abbffff-139ff592d6081258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab8dc1c-139fd24f8b7bf76f","8f44c0b1ab8e720-1397d44baa54e701"]},"geometry":{"type":"LineString","coordinates":[[-83.653767,32.816518],[-83.65458000000001,32.816536]]},"id":"8a44c0b1ab8ffff-139ff34d9b887a9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.641548,32.814966000000005]},"id":"8f44c0b1a563c08-17dff220829169b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a563c08-17dff220829169b0","8f44c0b1a5616d3-13dff124092c0939"]},"geometry":{"type":"LineString","coordinates":[[-83.641548,32.814966000000005],[-83.641727,32.815072],[-83.641952,32.815206]]},"id":"8a44c0b1a567fff-1396f1a23f7c7ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643625,32.816321]},"id":"8f44c0b1a19ba96-139eed0e6e0d5bec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a19ba96-139eed0e6e0d5bec","8f44c0b1a5616d3-13dff124092c0939"]},"geometry":{"type":"LineString","coordinates":[[-83.641952,32.815206],[-83.643388,32.816179000000005],[-83.643625,32.816321]]},"id":"8744c0b1affffff-13bfff1b75f35ea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70379700000001,32.880083]},"id":"8f44c0a214b2b74-17d7fa26e78d4260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a214aeb81-13b7d56d8f18732f","8f44c0a214b2b74-17d7fa26e78d4260"]},"geometry":{"type":"LineString","coordinates":[[-83.70379700000001,32.880083],[-83.703925,32.880088],[-83.70478,32.880116],[-83.70491600000001,32.880139],[-83.70503400000001,32.880186],[-83.70515300000001,32.880246],[-83.705229,32.880300000000005],[-83.705539,32.880685],[-83.70573200000001,32.880854]]},"id":"8944c0a214bffff-17d75796bb3c861e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7062181,32.8831541]},"id":"8f44c0a214d50b3-17d7543db6da91e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a214d50b3-17d7543db6da91e0","8f44c0a214aeb81-13b7d56d8f18732f"]},"geometry":{"type":"LineString","coordinates":[[-83.70573200000001,32.880854],[-83.70601500000001,32.881118],[-83.706117,32.881205],[-83.70621600000001,32.881307],[-83.706265,32.881372],[-83.70631200000001,32.881456],[-83.706344,32.881532],[-83.70636300000001,32.881634000000005],[-83.70636900000001,32.881763],[-83.706355,32.882139],[-83.706345,32.882271],[-83.706327,32.88242],[-83.7062181,32.8831541]]},"id":"8844c0a215fffff-13d77438f71bc0d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d00824-17f7c34469e843a7","8f44c0a32d0a383-1397c33063760b7e"]},"geometry":{"type":"LineString","coordinates":[[-83.60831300000001,32.853924],[-83.608361,32.85492],[-83.608345,32.855406]]},"id":"8944c0a32d3ffff-13b7d3322a823819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60839800000001,32.856776]},"id":"8f44c0a32c2e81c-17df430f42c013b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c2e81c-17df430f42c013b5","8f44c0a32d0a383-1397c33063760b7e"]},"geometry":{"type":"LineString","coordinates":[[-83.608345,32.855406],[-83.60837280000001,32.8561252],[-83.60839800000001,32.856776]]},"id":"8844c0a32dfffff-17b7e31fd9f0f433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.566973,32.844999]},"id":"8f44c0b88c2479e-139fe831ecd48669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88c2479e-139fe831ecd48669","8f44c0b88c15db6-13bfac40af9e633b"]},"geometry":{"type":"LineString","coordinates":[[-83.566973,32.844999],[-83.56636900000001,32.84527],[-83.56553600000001,32.845719],[-83.565375,32.845801],[-83.56531100000001,32.845841]]},"id":"8944c0b88c3ffff-139faa3dc879c2cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88cacc81-17f7eedf45abf1d0","8f44c0b88c15db6-13bfac40af9e633b"]},"geometry":{"type":"LineString","coordinates":[[-83.56531100000001,32.845841],[-83.56483,32.846151],[-83.564238,32.846578]]},"id":"8844c0b88dfffff-179fad92ea0a4fd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56330700000001,32.84724]},"id":"8f44c0b88c81c6c-1797b12524212b1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b88cacc81-17f7eedf45abf1d0","8f44c0b88c81c6c-1797b12524212b1e"]},"geometry":{"type":"LineString","coordinates":[[-83.564238,32.846578],[-83.56330700000001,32.84724]]},"id":"8944c0b88cbffff-17d7b00231d31696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a263410a1-17de7c1d4a442b16","8f44c0a20d8a136-17f7f4650ebeec88"]},"geometry":{"type":"LineString","coordinates":[[-83.689886,32.856343],[-83.69037200000001,32.856347],[-83.691246,32.856355],[-83.693048,32.85638]]},"id":"8644c0a27ffffff-17def8412b114d85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20d8a136-17f7f4650ebeec88","8f44c0a20d88062-17ff7312e71e3a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.693048,32.85638],[-83.693589,32.856389]]},"id":"8a44c0a20d8ffff-17fe73bbfcfcfc6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c2661c-17feeded6aabeea9","8f44c0a20d88062-17ff7312e71e3a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.693589,32.856389],[-83.69569700000001,32.856417]]},"id":"8844c0a20dfffff-17f7f0802e85344c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3501484d-17ffcb2ca70fec7b","8f44c0a35008d40-13b7c74548f8b108"]},"geometry":{"type":"LineString","coordinates":[[-83.657503,32.853734],[-83.657542,32.853803],[-83.657914,32.854154],[-83.658057,32.854264],[-83.65823,32.854346],[-83.658544,32.854481],[-83.65864300000001,32.854537],[-83.658724,32.854605],[-83.658803,32.854681],[-83.658849,32.854749000000005],[-83.65894800000001,32.854934],[-83.65903200000001,32.855108],[-83.659102,32.855272]]},"id":"8944c0a3503ffff-13b7f91101879c98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35073581-13dec4dd00ff8263","8f44c0a35008d40-13b7c74548f8b108"]},"geometry":{"type":"LineString","coordinates":[[-83.659102,32.855272],[-83.65922300000001,32.855508],[-83.659273,32.855595],[-83.659355,32.855689000000005],[-83.659446,32.855753],[-83.65961200000001,32.855817],[-83.659717,32.855845],[-83.660088,32.85593]]},"id":"8844c0a351fffff-13bfe63f2ead98c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b3325d0f0-13b6fb89adffb297","8f44c0b3324d30e-1397f7fd61615296"]},"geometry":{"type":"LineString","coordinates":[[-83.67846820000001,32.7434007],[-83.6783489,32.743398400000004],[-83.67701500000001,32.743223]]},"id":"8944c0b3327ffff-13dfb9c3d7101668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b3325d0f0-13b6fb89adffb297","8f44c0b332eb8b5-13b7a0106437f52a"]},"geometry":{"type":"LineString","coordinates":[[-83.67701500000001,32.743223],[-83.67671100000001,32.743186],[-83.67638500000001,32.743136],[-83.676266,32.743124],[-83.67613,32.743118],[-83.675943,32.743127],[-83.675848,32.743145000000005],[-83.67577,32.74317],[-83.67569800000001,32.7432],[-83.67549700000001,32.743293],[-83.675161,32.743461]]},"id":"8844c0b333fffff-139eddd9f0761969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.673826,32.743488]},"id":"8f44c0b332c302e-13dea352ceb975a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b332eb8b5-13b7a0106437f52a","8f44c0b332c302e-13dea352ceb975a4"]},"geometry":{"type":"LineString","coordinates":[[-83.675161,32.743461],[-83.675003,32.743535],[-83.67489900000001,32.743566],[-83.674746,32.743589],[-83.674577,32.743589],[-83.67406600000001,32.743527],[-83.673826,32.743488]]},"id":"8944c0b332fffff-13fee1ad0cd5816b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7158304,32.902020300000004]},"id":"8f44c0a2e16bc44-17d6bcc60bd271f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71505300000001,32.902029]},"id":"8f44c0a2e141381-17de3eabe2268602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e141381-17de3eabe2268602","8f44c0a2e16bc44-17d6bcc60bd271f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7158304,32.902020300000004],[-83.715687,32.902067],[-83.715548,32.902084],[-83.71543600000001,32.902084],[-83.715269,32.902071],[-83.715204,32.902061],[-83.71505300000001,32.902029]]},"id":"8944c0a2e17ffff-17fe3db7f4bb3e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e141381-17de3eabe2268602","8f44c0a2e1530ac-1796e33e8c32d7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.71505300000001,32.902029],[-83.714968,32.902005],[-83.71483900000001,32.901952],[-83.714679,32.901880000000006],[-83.71448500000001,32.901817],[-83.714298,32.901777],[-83.714207,32.901767],[-83.714107,32.901761],[-83.71358400000001,32.901756],[-83.71352,32.901759000000006],[-83.713448,32.901767],[-83.71339800000001,32.90178],[-83.713336,32.901802],[-83.713274,32.90184],[-83.71318000000001,32.901915]]},"id":"8944c0a2e17ffff-13dec0f83ff6d8ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e15b708-17ff41e127e53b22","8f44c0a2e1530ac-1796e33e8c32d7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.71318000000001,32.901915],[-83.713138,32.901964],[-83.713085,32.902071],[-83.71306600000001,32.902133],[-83.71306600000001,32.902175],[-83.713097,32.902316],[-83.713121,32.902471000000006],[-83.71312400000001,32.902564000000005],[-83.71311,32.902976],[-83.71312400000001,32.903017000000006],[-83.713136,32.903035],[-83.71317,32.903066],[-83.71321300000001,32.903087],[-83.713262,32.903095],[-83.713739,32.90309]]},"id":"8844c0a2e1fffff-17ffd324c869ae9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e141381-17de3eabe2268602","8f44c0a2e15b708-17ff41e127e53b22"]},"geometry":{"type":"LineString","coordinates":[[-83.713739,32.90309],[-83.714477,32.903103],[-83.714561,32.903098],[-83.714606,32.903087],[-83.714636,32.903066],[-83.714662,32.903031],[-83.71467100000001,32.903],[-83.714679,32.902912],[-83.71467600000001,32.90278],[-83.71468300000001,32.902701],[-83.714708,32.902586],[-83.71473900000001,32.902531],[-83.714882,32.902365],[-83.71493500000001,32.90229],[-83.71497400000001,32.902225],[-83.71505300000001,32.902029]]},"id":"8844c0a2e1fffff-17beffefe12364c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.672471,32.894000000000005]},"id":"8f44c0a04042a4d-13bea6a1a063a255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04042a4d-13bea6a1a063a255","8f44c0a040498e9-139ea37cada8273f"]},"geometry":{"type":"LineString","coordinates":[[-83.672471,32.894000000000005],[-83.672757,32.894154],[-83.672898,32.894247],[-83.673089,32.894384],[-83.67318900000001,32.894472],[-83.67335200000001,32.894661],[-83.673759,32.895153]]},"id":"8744c0a04ffffff-1397b4f150e79666"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04315260-17d7e1a74d51fbab","8f44c0a040498e9-139ea37cada8273f"]},"geometry":{"type":"LineString","coordinates":[[-83.673759,32.895153],[-83.67451000000001,32.896054]]},"id":"8944c0a0433ffff-17beb291f6ef1abd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674301,32.897923]},"id":"8f44c0a04235143-13d7e229ee95f674"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04235143-13d7e229ee95f674","8f44c0a04315260-17d7e1a74d51fbab"]},"geometry":{"type":"LineString","coordinates":[[-83.67451000000001,32.896054],[-83.674735,32.896465],[-83.674936,32.896895],[-83.67497300000001,32.896991],[-83.674988,32.897105],[-83.67498,32.897168],[-83.67496100000001,32.897228000000005],[-83.67489400000001,32.89734],[-83.674301,32.897923]]},"id":"8844c0a043fffff-13bee11e36e5585f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e25a45d-17dec990c4359cdf","8f44c0b18586552-139fc99d405b2a09"]},"geometry":{"type":"LineString","coordinates":[[-83.65814200000001,32.808546],[-83.658162,32.807008]]},"id":"8644c0b1fffffff-17bee9970a3bd768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b00523-1797fef5cbea4907","8f44c0a31b01753-17dfbdda0521b87f"]},"geometry":{"type":"LineString","coordinates":[[-83.66250600000001,32.873219],[-83.66296,32.873768000000005]]},"id":"8a44c0a31b07fff-17bffe67ee79260b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66317550000001,32.8740314]},"id":"8f44c0a31b0c4d9-17ffbd535f382fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b01753-17dfbdda0521b87f","8f44c0a31b0c4d9-17ffbd535f382fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.66296,32.873768000000005],[-83.66317550000001,32.8740314]]},"id":"8944c0a31b3ffff-17bffd96a8198c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b089b6-13defd08bef9c20d","8f44c0a31b0c4d9-17ffbd535f382fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.66317550000001,32.8740314],[-83.66329490000001,32.8741775]]},"id":"8a44c0a31b0ffff-13bffd2e05f131a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66383400000001,32.8748365]},"id":"8f44c0a31b54d86-13f6fbb7c6db0d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b089b6-13defd08bef9c20d","8f44c0a31b54d86-13f6fbb7c6db0d47"]},"geometry":{"type":"LineString","coordinates":[[-83.66329490000001,32.8741775],[-83.66383400000001,32.8748365]]},"id":"8844c0a31bfffff-13b6fc603bd70d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66434720000001,32.8754639]},"id":"8f44c0a31b550c9-13fefa770a40b8fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b550c9-13fefa770a40b8fa","8f44c0a31b54d86-13f6fbb7c6db0d47"]},"geometry":{"type":"LineString","coordinates":[[-83.66383400000001,32.8748365],[-83.66434720000001,32.8754639]]},"id":"8a44c0a31b57fff-13befb176bf4d711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b5c962-17b6b97802af7aa7","8f44c0a31b550c9-13fefa770a40b8fa"]},"geometry":{"type":"LineString","coordinates":[[-83.66434720000001,32.8754639],[-83.6647552,32.8759627]]},"id":"8944c0a31b7ffff-179ef9f783269049"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6649569,32.8762093]},"id":"8f44c0a31b436e0-17def8f9f3962c74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b5c962-17b6b97802af7aa7","8f44c0a31b436e0-17def8f9f3962c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6647552,32.8759627],[-83.6649569,32.8762093]]},"id":"8944c0a31b7ffff-1797f939096aa132"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b5d80c-179fb8b9f399390e","8f44c0a31b436e0-17def8f9f3962c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6649569,32.8762093],[-83.66505930000001,32.8763345]]},"id":"8a44c0a31b5ffff-17f7f8d9ff9c2991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368b5876-1397e8c4a654174d","8f44c0a368aed76-17d7268fa10094fb"]},"geometry":{"type":"LineString","coordinates":[[-83.62007100000001,32.83708],[-83.619955,32.836962],[-83.619804,32.836782],[-83.61971700000001,32.8366968],[-83.619652,32.8366269],[-83.6194766,32.836457800000005],[-83.619167,32.836179]]},"id":"8944c0a368bffff-17b767a3e49923fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368b5876-1397e8c4a654174d","8f44c0a3699a748-13f769b724e213db"]},"geometry":{"type":"LineString","coordinates":[[-83.619167,32.836179],[-83.61909,32.836118],[-83.619005,32.836042],[-83.618944,32.835994],[-83.618888,32.83592],[-83.61883200000001,32.835827],[-83.618779,32.835687]]},"id":"8844c0a369fffff-1397e950230c1f2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6738558,32.7808146]},"id":"8f44c0b1cd0cb81-17ffa3402ecf238c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c996565-17fe9b5cadeb8e7f","8f44c0b1cd0cb81-17ffa3402ecf238c"]},"geometry":{"type":"LineString","coordinates":[[-83.6738558,32.7808146],[-83.67391810000001,32.7808397],[-83.6739524,32.7808535],[-83.67405000000001,32.780876],[-83.674587,32.78088],[-83.675251,32.780884],[-83.675815,32.780893],[-83.67604100000001,32.780904],[-83.676243,32.780924],[-83.676468,32.780968],[-83.676699,32.781034000000005],[-83.67685,32.781095],[-83.676985,32.781166],[-83.677087,32.781232]]},"id":"8744c0b1cffffff-17b6ff411dc61634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80653a65-179fefdc2870fdd0","8f44c0b8064460a-1397ecf14a769683"]},"geometry":{"type":"LineString","coordinates":[[-83.538814,32.809531],[-83.537619,32.81016]]},"id":"8944c0b8067ffff-13dffe66bd5bcdf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80653a65-179fefdc2870fdd0","8f44c0b806e87b4-17f7f25ae3190e72"]},"geometry":{"type":"LineString","coordinates":[[-83.537619,32.81016],[-83.53756100000001,32.810197],[-83.53751000000001,32.810221],[-83.536597,32.810713]]},"id":"8844c0b807fffff-17bff11b283218bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0612c695-1796fb33839a99bc","8f44c0b06bb3544-139671f4a6e56995"]},"geometry":{"type":"LineString","coordinates":[[-83.69026000000001,32.745227],[-83.690336,32.745196],[-83.69156100000001,32.745094],[-83.69203800000001,32.745043],[-83.692327,32.744995],[-83.692564,32.744963],[-83.69269600000001,32.744957],[-83.692794,32.744963],[-83.69292700000001,32.744988],[-83.693022,32.745026],[-83.69317000000001,32.745106],[-83.693335,32.74524],[-83.69346200000001,32.745353],[-83.693526,32.745415],[-83.693588,32.745495000000005],[-83.693695,32.745688],[-83.69378800000001,32.745877],[-83.69391,32.746094],[-83.69399800000001,32.746201],[-83.69404700000001,32.74624]]},"id":"8744c0b06ffffff-179ef615b0c7bad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697552,32.746433]},"id":"8f44c0b06b11b49-13fee9660acf9145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06b11b49-13fee9660acf9145","8f44c0b06bb3544-139671f4a6e56995"]},"geometry":{"type":"LineString","coordinates":[[-83.69404700000001,32.74624],[-83.694162,32.746285],[-83.694311,32.746311],[-83.694511,32.746328000000005],[-83.694792,32.746342],[-83.695791,32.746366],[-83.696019,32.746377],[-83.697552,32.746433]]},"id":"8844c0b06bfffff-13d67db091d78795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69818500000001,32.746447]},"id":"8f44c0b06b039aa-139767da65157042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06b039aa-139767da65157042","8f44c0b06b11b49-13fee9660acf9145"]},"geometry":{"type":"LineString","coordinates":[[-83.697552,32.746433],[-83.69779600000001,32.746435000000005],[-83.69818500000001,32.746447]]},"id":"8944c0b06b3ffff-13fff8a03960937d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1922a8b3-13de747f444196cd","8f44c0b19228a5c-1397f2d5045d8021"]},"geometry":{"type":"LineString","coordinates":[[-83.69300600000001,32.835658],[-83.693167,32.835687],[-83.693262,32.835724],[-83.693315,32.835735],[-83.693629,32.835748],[-83.69368800000001,32.835766]]},"id":"8a44c0b1922ffff-13f773aadfbdc7ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19229cc3-13ff72c24433f2d0","8f44c0b19228a5c-1397f2d5045d8021"]},"geometry":{"type":"LineString","coordinates":[[-83.69368800000001,32.835766],[-83.693888,32.835789000000005],[-83.693989,32.83579],[-83.694029,32.835794],[-83.694062,32.835805],[-83.69408100000001,32.835818],[-83.69408700000001,32.835836],[-83.69408200000001,32.835877],[-83.69405900000001,32.835893],[-83.69401900000001,32.8359],[-83.693787,32.835898],[-83.693735,32.835910000000005],[-83.693718,32.835935]]},"id":"8a44c0b1922ffff-13d7724d5253a14e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06950a73-13bf7e74fdc05599","8f44c0b0694500e-13b6ea99bbb1e014"]},"geometry":{"type":"LineString","coordinates":[[-83.69705970000001,32.740791200000004],[-83.69548010000001,32.7408117]]},"id":"8944c0b0697ffff-13befc875c9dc3c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06950a73-13bf7e74fdc05599","8f44c0b06820600-13b67276a8245a9e"]},"geometry":{"type":"LineString","coordinates":[[-83.69548010000001,32.7408117],[-83.69383900000001,32.740791]]},"id":"8844c0b069fffff-13bef075c5d9f3a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727754,32.863317]},"id":"8f44c0a2533094a-17d73fa9c8344044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25302880-13d75fb5ada5948f","8f44c0a2533094a-17d73fa9c8344044"]},"geometry":{"type":"LineString","coordinates":[[-83.727754,32.863317],[-83.727755,32.863681],[-83.72773500000001,32.864514]]},"id":"8944c0a2533ffff-17df3fad9ce8f0e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727728,32.864638]},"id":"8f44c0a25302028-139edfba011d7255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25302028-139edfba011d7255","8f44c0a25302880-13d75fb5ada5948f"]},"geometry":{"type":"LineString","coordinates":[[-83.72773500000001,32.864514],[-83.727728,32.864638]]},"id":"8b44c0a25302fff-13fe1fb7dcd0529d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25204160-179ea02f8a3cc8e2","8f44c0a25302028-139edfba011d7255"]},"geometry":{"type":"LineString","coordinates":[[-83.727728,32.864638],[-83.727715,32.865636],[-83.727704,32.866069],[-83.72769500000001,32.866265],[-83.72766700000001,32.866461],[-83.727576,32.866951],[-83.72754,32.867089]]},"id":"8844c0a253fffff-17961fd5172c9ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64272700000001,32.802624]},"id":"8f44c0badb49546-13beef3fa0abf87b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e602d1a-13dee45405096e22","8f44c0badb49546-13beef3fa0abf87b"]},"geometry":{"type":"LineString","coordinates":[[-83.64272700000001,32.802624],[-83.64720000000001,32.802704]]},"id":"8744c0b1effffff-13d7e9c9d740d5cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e602d1a-13dee45405096e22","8f44c0b1e602929-13dfe3baef1eafed"]},"geometry":{"type":"LineString","coordinates":[[-83.64720000000001,32.802704],[-83.647445,32.802712]]},"id":"8b44c0b1e602fff-13dee407714fc19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e62e2a5-13fee0800a2b96f3","8f44c0b1e602929-13dfe3baef1eafed"]},"geometry":{"type":"LineString","coordinates":[[-83.647445,32.802712],[-83.648768,32.802734]]},"id":"8944c0b1e63ffff-13f7e21d75a840cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e75c699-1397dca5b77f9c36","8f44c0b1e62e2a5-13fee0800a2b96f3"]},"geometry":{"type":"LineString","coordinates":[[-83.648768,32.802734],[-83.64935,32.802748],[-83.65034610000001,32.8027765]]},"id":"8844c0b1e7fffff-13ffde92d62e8867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2026a08e-139e721726c6f9c3","8f44c0a215b54a5-17def6e7a146e3be"]},"geometry":{"type":"LineString","coordinates":[[-83.707099,32.875287],[-83.70682000000001,32.875402],[-83.70666800000001,32.875476],[-83.706415,32.87563],[-83.706308,32.875731],[-83.70574900000001,32.87614],[-83.705555,32.876303],[-83.705436,32.876424],[-83.705228,32.876723000000005],[-83.705127,32.876849]]},"id":"8844c0a203fffff-17bed4ade7be4444"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a21591599-13d658ffe72c1d2d","8f44c0a215b54a5-17def6e7a146e3be"]},"geometry":{"type":"LineString","coordinates":[[-83.705127,32.876849],[-83.70499500000001,32.877105],[-83.704839,32.877321],[-83.704645,32.87755],[-83.704464,32.87782],[-83.704358,32.878033],[-83.70426900000001,32.878234]]},"id":"8944c0a215bffff-139e57fcb4b0afc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a214b2b74-17d7fa26e78d4260","8f44c0a21591599-13d658ffe72c1d2d"]},"geometry":{"type":"LineString","coordinates":[[-83.70426900000001,32.878234],[-83.704071,32.878697],[-83.703951,32.87903],[-83.703873,32.879286],[-83.703839,32.879401],[-83.703798,32.879643],[-83.70379700000001,32.879886],[-83.70379700000001,32.880083]]},"id":"8844c0a215fffff-17f7f9c39e04015d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a214b2b74-17d7fa26e78d4260","8f44c0a21495c6b-13f7da318b245a8a"]},"geometry":{"type":"LineString","coordinates":[[-83.70379700000001,32.880083],[-83.70378000000001,32.880774]]},"id":"8944c0a214bffff-179fda2c38837e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a21495c6b-13f7da318b245a8a","8f44c0a2149e52a-139e5b222fd44e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.70378000000001,32.880774],[-83.70377900000001,32.881068],[-83.70376200000001,32.88131],[-83.70370100000001,32.881439],[-83.70366800000001,32.881473],[-83.70362800000001,32.881518],[-83.703529,32.881585],[-83.703395,32.881658]]},"id":"8944c0a214bffff-13bf7a6941da2641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2149e52a-139e5b222fd44e9b","8f44c0a2386a253-17977e0802b4ff27"]},"geometry":{"type":"LineString","coordinates":[[-83.703395,32.881658],[-83.703069,32.881822],[-83.702945,32.881878],[-83.702623,32.882043],[-83.702208,32.882261]]},"id":"8744c0a23ffffff-13d6fc9629341460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ba635c-17b6e12bc93513d5","8f44c0a2386a253-17977e0802b4ff27"]},"geometry":{"type":"LineString","coordinates":[[-83.702208,32.882261],[-83.701879,32.882416],[-83.701851,32.882433],[-83.701677,32.882531],[-83.70150500000001,32.882654],[-83.70136000000001,32.8828],[-83.70119700000001,32.883014],[-83.701087,32.883248],[-83.700922,32.883713]]},"id":"8744c0a23ffffff-17975fea27f74db5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23ba635c-17b6e12bc93513d5","8f44c0a23b83904-13f7e26446de6e6f"]},"geometry":{"type":"LineString","coordinates":[[-83.700922,32.883713],[-83.7005,32.884846],[-83.700422,32.885081]]},"id":"8944c0a23bbffff-13df61ca3d73fffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23b83904-13f7e26446de6e6f","8f44c0a23b988a6-17ff640fc8e98c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.700422,32.885081],[-83.700309,32.885337],[-83.700266,32.885398],[-83.70020600000001,32.885463],[-83.70012,32.885534],[-83.7,32.885607],[-83.699923,32.885635],[-83.69983400000001,32.88566],[-83.69973800000001,32.885672]]},"id":"8944c0a23bbffff-13de6313feec4797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2316d4eb-17f666a787e4f177","8f44c0a23b988a6-17ff640fc8e98c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.69973800000001,32.885672],[-83.698676,32.885661]]},"id":"8844c0a23bfffff-17f7f55baa36dd4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3096aa70-13dfeaec2f6a31c6","8f44c0a30943328-1396ed85ceaa6a94"]},"geometry":{"type":"LineString","coordinates":[[-83.64449900000001,32.852271],[-83.643434,32.852535]]},"id":"8944c0a3097ffff-13bfec38f0a4e865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6434071,32.8525419]},"id":"8f44c0a30943303-1396fd9691825610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30943303-1396fd9691825610","8f44c0a30943328-1396ed85ceaa6a94"]},"geometry":{"type":"LineString","coordinates":[[-83.643434,32.852535],[-83.6434071,32.8525419]]},"id":"8d44c0a3094333f-1396fd8e33591e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64259650000001,32.8529536]},"id":"8f44c0a30958541-179eef91372b1065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30943303-1396fd9691825610","8f44c0a30958541-179eef91372b1065"]},"geometry":{"type":"LineString","coordinates":[[-83.6434071,32.8525419],[-83.6430227,32.8526404],[-83.64293710000001,32.8526776],[-83.642853,32.8527365],[-83.6427622,32.8528333],[-83.64259650000001,32.8529536]]},"id":"8944c0a3097ffff-13fefea18759870c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67787700000001,32.838233]},"id":"8f44c0a26d15134-1397b96ee2a256a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19698990-13ded70929132134","8f44c0a26d15134-1397b96ee2a256a9"]},"geometry":{"type":"LineString","coordinates":[[-83.67787700000001,32.838233],[-83.678859,32.836298]]},"id":"8644c0b1fffffff-17bef83c0db63595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19698990-13ded70929132134","8f44c0b196a256c-17d794f68093c066"]},"geometry":{"type":"LineString","coordinates":[[-83.678859,32.836298],[-83.679708,32.83462]]},"id":"8944c0b196bffff-13d7f5ffdbc79684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b196a256c-17d794f68093c066","8f44c0b1978e4a8-17f6f340616714fc"]},"geometry":{"type":"LineString","coordinates":[[-83.679708,32.83462],[-83.68040900000001,32.833255]]},"id":"8844c0b197fffff-179ef41b79760526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b197a2a36-13ff9243e8bb0012","8f44c0b1978e4a8-17f6f340616714fc"]},"geometry":{"type":"LineString","coordinates":[[-83.68040900000001,32.833255],[-83.680464,32.833148],[-83.680813,32.831612]]},"id":"8944c0b197bffff-13f7f2b9eb73c53b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b316294-17b7b20c228ed0eb","8f44c0b1b315b29-17d6af66a391e3c1"]},"geometry":{"type":"LineString","coordinates":[[-83.667795,32.837465],[-83.668384,32.837474],[-83.668879,32.837488]]},"id":"8944c0b1b33ffff-17bff0b966f7d7bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b32e143-17dfeb6e6274096e","8f44c0b1b315b29-17d6af66a391e3c1"]},"geometry":{"type":"LineString","coordinates":[[-83.668879,32.837488],[-83.670505,32.837522]]},"id":"8944c0b1b33ffff-17d6ad6a89a194bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66507700000001,32.841607]},"id":"8f44c0b1b282b61-13d6f8aeea1cdd07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2a8420-13dfb566e1cd757c","8f44c0b1b282b61-13d6f8aeea1cdd07"]},"geometry":{"type":"LineString","coordinates":[[-83.66507700000001,32.841607],[-83.66538200000001,32.841603],[-83.666421,32.841593]]},"id":"8944c0b1b2bffff-13dff70ae29a55fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b218ce8-13f7f1f2809a443e","8f44c0b1b2a8420-13dfb566e1cd757c"]},"geometry":{"type":"LineString","coordinates":[[-83.666421,32.841593],[-83.666801,32.841607],[-83.66710400000001,32.841611],[-83.66783600000001,32.841654000000005]]},"id":"8844c0b1b3fffff-13dfb3ac931b5659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668279,32.841687]},"id":"8f44c0b1b21d44d-1396f0dda281e580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b218ce8-13f7f1f2809a443e","8f44c0b1b21d44d-1396f0dda281e580"]},"geometry":{"type":"LineString","coordinates":[[-83.66783600000001,32.841654000000005],[-83.668279,32.841687]]},"id":"8a44c0b1b21ffff-13feb1681bc2da63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003906,32.896116]},"id":"8f44c0a23240c69-17fee277e7804172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232f1c8b-17de6b9ba25c8c61","8f44c0a23240c69-17fee277e7804172"]},"geometry":{"type":"LineString","coordinates":[[-83.7003906,32.896116],[-83.696647,32.896093]]},"id":"8844c0a233fffff-17f77709ccbc1898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05934c89-17dff460aee423f3","8f44c0a232f1c8b-17de6b9ba25c8c61"]},"geometry":{"type":"LineString","coordinates":[[-83.696647,32.896093],[-83.693055,32.89607]]},"id":"8744c0a23ffffff-17d6fffe21c450c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69250000000001,32.896067]},"id":"8f44c0a2366b374-17dff5bb88ddd651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05934c89-17dff460aee423f3","8f44c0a2366b374-17dff5bb88ddd651"]},"geometry":{"type":"LineString","coordinates":[[-83.693055,32.89607],[-83.69250000000001,32.896067]]},"id":"8744c0a23ffffff-17def50e13f46023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61578,32.858328]},"id":"8f44c0a3281126c-13b731098a8724f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3281126c-13b731098a8724f4","8f44c0a32811004-13bf717329f70ae6"]},"geometry":{"type":"LineString","coordinates":[[-83.61578,32.858328],[-83.615611,32.858127]]},"id":"8944c0a3283ffff-13ff313e5d4c6ebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.615092,32.857647]},"id":"8f44c0a32810cb5-17ff72b78174ca5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32810cb5-17ff72b78174ca5a","8f44c0a32811004-13bf717329f70ae6"]},"geometry":{"type":"LineString","coordinates":[[-83.615611,32.858127],[-83.615092,32.857647]]},"id":"8a44c0a32817fff-139772155c9affa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3299d24b-17d7b57929e3eee0","8f44c0a32810cb5-17ff72b78174ca5a"]},"geometry":{"type":"LineString","coordinates":[[-83.615092,32.857647],[-83.614597,32.857211],[-83.613963,32.856737]]},"id":"8844c0a329fffff-17df3412a43cd0d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329983ad-17bf36d24b24cf93","8f44c0a3299d24b-17d7b57929e3eee0"]},"geometry":{"type":"LineString","coordinates":[[-83.613963,32.856737],[-83.61341080000001,32.856720100000004]]},"id":"8a44c0a3299ffff-17bf7625b066b717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329983ad-17bf36d24b24cf93","8f44c0a32d69866-17b738f14be1db6a"]},"geometry":{"type":"LineString","coordinates":[[-83.61341080000001,32.856720100000004],[-83.612542,32.856704]]},"id":"8844c0a329fffff-17b737e1c0debb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d6bd81-17d7fad329933cca","8f44c0a32d69866-17b738f14be1db6a"]},"geometry":{"type":"LineString","coordinates":[[-83.612542,32.856704],[-83.611771,32.856734]]},"id":"8a44c0a32d6ffff-17bf79e23404ea3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610876,32.856774]},"id":"8f44c0a32d414cd-17dffd0287b69514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d414cd-17dffd0287b69514","8f44c0a32d6bd81-17d7fad329933cca"]},"geometry":{"type":"LineString","coordinates":[[-83.611771,32.856734],[-83.610876,32.856774]]},"id":"8944c0a32d7ffff-17df7beadf49ced7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d414cd-17dffd0287b69514","8f44c0a32d5cc2a-17d7ff12c09160e8"]},"geometry":{"type":"LineString","coordinates":[[-83.610876,32.856774],[-83.6100308,32.8567661]]},"id":"8944c0a32d7ffff-17df7e0aafb27213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d53711-17dfe1344bf53795","8f44c0a32d5cc2a-17d7ff12c09160e8"]},"geometry":{"type":"LineString","coordinates":[[-83.6100308,32.8567661],[-83.60915800000001,32.856779]]},"id":"8944c0a32d7ffff-17dfe023880e34fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32d53711-17dfe1344bf53795","8f44c0a32c2e81c-17df430f42c013b5"]},"geometry":{"type":"LineString","coordinates":[[-83.60915800000001,32.856779],[-83.60839800000001,32.856776]]},"id":"8844c0a32dfffff-17dff221c053da7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c040f3-17d7e567457d46fd","8f44c0a32c2e81c-17df430f42c013b5"]},"geometry":{"type":"LineString","coordinates":[[-83.60839800000001,32.856776],[-83.608344,32.856776],[-83.607438,32.856737]]},"id":"8944c0a32c3ffff-17d7c43b4b850fa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68766600000001,32.884907000000005]},"id":"8f44c0a2354079d-139ee188ca0341b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2354079d-139ee188ca0341b6","8f44c0a23575066-17f6814a4031ed94"]},"geometry":{"type":"LineString","coordinates":[[-83.68776600000001,32.88362],[-83.687768,32.883772],[-83.687751,32.883932],[-83.68773,32.884216],[-83.68766600000001,32.884907000000005]]},"id":"8944c0a2357ffff-13fee165031e678e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23464c5a-1797a14b8c1993d0","8f44c0a2354079d-139ee188ca0341b6"]},"geometry":{"type":"LineString","coordinates":[[-83.68766600000001,32.884907000000005],[-83.687673,32.885367],[-83.687708,32.885655],[-83.68771000000001,32.885813],[-83.687764,32.886329]]},"id":"8944c0a2357ffff-17d7b171dec1f11a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23464c5a-1797a14b8c1993d0","8f44c0a2347424c-17fec4046955c5b9"]},"geometry":{"type":"LineString","coordinates":[[-83.687764,32.886329],[-83.687634,32.886449],[-83.68758000000001,32.886477],[-83.687441,32.886519],[-83.68736,32.886528000000006],[-83.68698,32.88653],[-83.686649,32.886522]]},"id":"8844c0a235fffff-17feb299329e216c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2340e39c-17b788b6ebbc50fb","8f44c0a2347424c-17fec4046955c5b9"]},"geometry":{"type":"LineString","coordinates":[[-83.686649,32.886522],[-83.686479,32.886519],[-83.686048,32.886504],[-83.684725,32.886412]]},"id":"8844c0a235fffff-17dfb65de46215f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68490600000001,32.884186]},"id":"8f44c0a234268d9-13dec845c407b9e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2340e39c-17b788b6ebbc50fb","8f44c0a234268d9-13dec845c407b9e7"]},"geometry":{"type":"LineString","coordinates":[[-83.684725,32.886412],[-83.684633,32.886255000000006],[-83.684594,32.88615],[-83.684566,32.885956],[-83.68455,32.885668],[-83.684509,32.885275],[-83.68451400000001,32.885057],[-83.684545,32.88488],[-83.684708,32.884482000000006],[-83.68490600000001,32.884186]]},"id":"8944c0a2343ffff-13f698fe5de9cc42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3294651e-17f72842a7ded0fb","8f44c0a32944aab-17ff664541b49dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.62019000000001,32.856794],[-83.619375,32.856792]]},"id":"8a44c0a32947fff-17f7a743fe771810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32954353-17f7698489f735eb","8f44c0a3294651e-17f72842a7ded0fb"]},"geometry":{"type":"LineString","coordinates":[[-83.619375,32.856792],[-83.61886000000001,32.856786]]},"id":"8944c0a3297ffff-17f728e3981e5ab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89aacaf5-13ff62904a5e2f10","8f44c0b8914c94e-17d76a71cc1edb19"]},"geometry":{"type":"LineString","coordinates":[[-83.59226600000001,32.869661],[-83.592459,32.86963],[-83.59249200000001,32.869627],[-83.592758,32.869605],[-83.592809,32.869604],[-83.593018,32.869594],[-83.59334000000001,32.869594],[-83.593496,32.869602],[-83.593743,32.869633],[-83.593918,32.869681],[-83.59407800000001,32.869746],[-83.594234,32.869828000000005],[-83.594408,32.869954],[-83.594531,32.870074],[-83.59488800000001,32.870468],[-83.595494,32.871167]]},"id":"8744c0b89ffffff-17bff61e060dad30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.595833,32.87154]},"id":"8f44c0b89aadad8-13ffe1bc6497ad75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89aacaf5-13ff62904a5e2f10","8f44c0b89aadad8-13ffe1bc6497ad75"]},"geometry":{"type":"LineString","coordinates":[[-83.595494,32.871167],[-83.595833,32.87154]]},"id":"8a44c0b89aaffff-13f7f226595a91ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b8ca530-17b7f01640a144ba","8f44c0b1b8cdd0b-17ffad72a4e2852c"]},"geometry":{"type":"LineString","coordinates":[[-83.668598,32.830495],[-83.669679,32.830197000000005]]},"id":"8a44c0b1b8cffff-17d6eec47229dba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b85aae9-1797ea2aa38d6039","8f44c0b1b8cdd0b-17ffad72a4e2852c"]},"geometry":{"type":"LineString","coordinates":[[-83.669679,32.830197000000005],[-83.671023,32.829827]]},"id":"8844c0b1b9fffff-1797abceafb96a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b85aae9-1797ea2aa38d6039","8f44c0b1b858ad2-13dfe92c4593a859"]},"geometry":{"type":"LineString","coordinates":[[-83.671023,32.829827],[-83.67143,32.829714]]},"id":"8a44c0b1b85ffff-13feb9ab7352eb4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b85db42-13dee7b90b32f82d","8f44c0b1b858ad2-13dfe92c4593a859"]},"geometry":{"type":"LineString","coordinates":[[-83.67143,32.829714],[-83.67202400000001,32.829530000000005]]},"id":"8944c0b1b87ffff-1397e872a69af10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b84e16c-139ea6e66ef75eb3","8f44c0b1b85db42-13dee7b90b32f82d"]},"geometry":{"type":"LineString","coordinates":[[-83.67202400000001,32.829530000000005],[-83.67236100000001,32.829405]]},"id":"8a44c0b1b84ffff-13b7b74fb3a1deb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b84e16c-139ea6e66ef75eb3","8f44c0b1b86b9ae-139fa4a26c7ce18a"]},"geometry":{"type":"LineString","coordinates":[[-83.67236100000001,32.829405],[-83.67268100000001,32.829279],[-83.67328900000001,32.82902]]},"id":"8944c0b1b87ffff-1397a5c3a594ab83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b869d16-13d7e3e28447d4d2","8f44c0b1b86b9ae-139fa4a26c7ce18a"]},"geometry":{"type":"LineString","coordinates":[[-83.67328900000001,32.82902],[-83.673596,32.828879]]},"id":"8a44c0b1b86ffff-13fff44272fd4bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b869d16-13d7e3e28447d4d2","8f44c0b1949e0f6-1397a243825f3056"]},"geometry":{"type":"LineString","coordinates":[[-83.673596,32.828879],[-83.67393700000001,32.828747],[-83.67426,32.828604]]},"id":"8744c0b1bffffff-13ffe31207061b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674846,32.828291]},"id":"8f44c0b1949c98c-13d7e0d543650e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1949c98c-13d7e0d543650e66","8f44c0b1949e0f6-1397a243825f3056"]},"geometry":{"type":"LineString","coordinates":[[-83.67426,32.828604],[-83.674497,32.828493],[-83.674643,32.82842],[-83.674846,32.828291]]},"id":"8944c0b194bffff-13bfa1896cd864e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1949c98c-13d7e0d543650e66","8f44c0b1948008e-17fe9fb0c8c647e0"]},"geometry":{"type":"LineString","coordinates":[[-83.674846,32.828291],[-83.674971,32.828207],[-83.675314,32.827952]]},"id":"8a44c0b19487fff-17fff0421a31a1a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1948008e-17fe9fb0c8c647e0","8f44c0b19485cb0-17d6fec3ede085e4"]},"geometry":{"type":"LineString","coordinates":[[-83.675314,32.827952],[-83.67569300000001,32.827655]]},"id":"8a44c0b19487fff-17b7bf3a59873cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b19416c5b-17d7db8eaa826781","8f44c0b19485cb0-17d6fec3ede085e4"]},"geometry":{"type":"LineString","coordinates":[[-83.67569300000001,32.827655],[-83.675837,32.827564],[-83.677007,32.826662]]},"id":"8844c0b195fffff-1797bd26b92589b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529711-17b7f5b517b116bd","8f44c0b1a5760ea-17b7f5bc1603a2bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6400703,32.814293500000005],[-83.64007880000001,32.813979],[-83.64008150000001,32.813881]]},"id":"8844c0b1a5fffff-17b6f5b89f5ecba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529711-17b7f5b517b116bd","8f44c0b1a529563-17d7f5b2e5ccee49"]},"geometry":{"type":"LineString","coordinates":[[-83.64008150000001,32.813881],[-83.640085,32.8137526]]},"id":"8b44c0b1a529fff-17fff5b40a997e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60075400000001,32.849541]},"id":"8f44c0b8daa152e-17b775b8c5b15192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8daa152e-17b775b8c5b15192","8f44c0b8daab501-179f757a41ecf38a"]},"geometry":{"type":"LineString","coordinates":[[-83.60075400000001,32.849541],[-83.600783,32.849634],[-83.600834,32.850205],[-83.600847,32.850679],[-83.600854,32.850735]]},"id":"8944c0b8dabffff-17b7f58f95586fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dad0cb6-13df7581d03b0faa","8f44c0b8daab501-179f757a41ecf38a"]},"geometry":{"type":"LineString","coordinates":[[-83.600854,32.850735],[-83.60086000000001,32.850806],[-83.600846,32.851809],[-83.6008419,32.8522678]]},"id":"8844c0b8dbfffff-13ff557c759cf0e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d32d98b-1797f586ce0a252a","8f44c0b8dad0cb6-13df7581d03b0faa"]},"geometry":{"type":"LineString","coordinates":[[-83.6008419,32.8522678],[-83.600834,32.853147]]},"id":"8944c0b8dafffff-13ff75845a9d93e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d32d98b-1797f586ce0a252a","8f44c0b8d329a11-17ff758e4e047714"]},"geometry":{"type":"LineString","coordinates":[[-83.600834,32.853147],[-83.60082200000001,32.853749]]},"id":"8a44c0b8d32ffff-17bf558a8013962e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d329a11-17ff758e4e047714","8f44c0b8d370c09-17fff58da70b8407"]},"geometry":{"type":"LineString","coordinates":[[-83.60082200000001,32.853749],[-83.600823,32.854363]]},"id":"8844c0b8d3fffff-17bf558dfc840052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d373173-13d75590c5db38e5","8f44c0b8d370c09-17fff58da70b8407"]},"geometry":{"type":"LineString","coordinates":[[-83.600823,32.854363],[-83.600818,32.854888]]},"id":"8a44c0b8d377fff-139ff58f391f0503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.536708,32.829838]},"id":"8f44c0b832a360e-179ff2158a75e306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b832a360e-179ff2158a75e306","8f44c0b8329e3a3-17dff5da84974519"]},"geometry":{"type":"LineString","coordinates":[[-83.536708,32.829838],[-83.53516400000001,32.830964]]},"id":"8944c0b832bffff-17fff3f80d07cae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53483800000001,32.831218]},"id":"8f44c0b8329a505-17f7f6a642b70a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8329e3a3-17dff5da84974519","8f44c0b8329a505-17f7f6a642b70a53"]},"geometry":{"type":"LineString","coordinates":[[-83.53516400000001,32.830964],[-83.53483800000001,32.831218]]},"id":"8a44c0b8329ffff-17b7f6406642ea8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.533831,32.832023]},"id":"8f44c0b8364d703-13fff91ba3ff7223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8329a505-17f7f6a642b70a53","8f44c0b8364d703-13fff91ba3ff7223"]},"geometry":{"type":"LineString","coordinates":[[-83.53483800000001,32.831218],[-83.534726,32.831294],[-83.534349,32.831612],[-83.533831,32.832023]]},"id":"8744c0b83ffffff-13f7f7e172a08d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3466e69a-17fef7ec4ad01bd0","8f44c0a3466e034-17fef777652b39a9"]},"geometry":{"type":"LineString","coordinates":[[-83.63917400000001,32.847403],[-83.63922000000001,32.847364],[-83.63936100000001,32.847195]]},"id":"8b44c0a3466efff-17bff7b009f5d233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64013200000001,32.846294]},"id":"8f44c0a34296046-17d7f5958f9e264e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34296046-17d7f5958f9e264e","8f44c0a3466e034-17fef777652b39a9"]},"geometry":{"type":"LineString","coordinates":[[-83.63936100000001,32.847195],[-83.64013200000001,32.846294]]},"id":"8844c0a347fffff-17dff6867e029f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec85288-13f7e7c04be70572","8f44c0b1ec88c30-13fee7c2cd9968ba"]},"geometry":{"type":"LineString","coordinates":[[-83.64579400000001,32.790058],[-83.645798,32.789234]]},"id":"8944c0b1ecbffff-13fee7c18419273a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec85288-13f7e7c04be70572","8f44c0b1eca626d-179ee7ad83be0a55"]},"geometry":{"type":"LineString","coordinates":[[-83.645798,32.789234],[-83.64582300000001,32.788139],[-83.64582800000001,32.788058]]},"id":"8944c0b1ecbffff-1797f7b7d2fc1596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1edb5542-17f6e781c4fa8daf","8f44c0b1eca626d-179ee7ad83be0a55"]},"geometry":{"type":"LineString","coordinates":[[-83.64582800000001,32.788058],[-83.64583900000001,32.787785],[-83.645897,32.785311],[-83.645898,32.784903]]},"id":"8844c0b1edfffff-13bee79407f3bfe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c1d481-17beac3229b41b27","8f44c0b19cad754-17b7cef50e591c53"]},"geometry":{"type":"LineString","coordinates":[[-83.682168,32.821254],[-83.683299,32.821261]]},"id":"8844c0b19dfffff-17b7fd9397843590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c1d481-17beac3229b41b27","8f44c0b19c0e624-17beaa9f0d21e99e"]},"geometry":{"type":"LineString","coordinates":[[-83.683299,32.821261],[-83.68394400000001,32.821261]]},"id":"8944c0b19c3ffff-17beab6892288d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b161588-13d7efed0e770cc2","8f44c0b1bb806b6-13ffea44ebf4206d"]},"geometry":{"type":"LineString","coordinates":[[-83.668664,32.831747],[-83.67098100000001,32.831814]]},"id":"8744c0b1bffffff-13d6fd18fc1014e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb806b6-13ffea44ebf4206d","8f44c0b1bbaac5a-13f7e7e42c38a238"]},"geometry":{"type":"LineString","coordinates":[[-83.67098100000001,32.831814],[-83.67195500000001,32.831823]]},"id":"8944c0b1bbbffff-13feb91481b29157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bbaac5a-13f7e7e42c38a238","8f44c0b1bba8a94-13f7e659c2f4154f"]},"geometry":{"type":"LineString","coordinates":[[-83.67195500000001,32.831823],[-83.67258600000001,32.831826]]},"id":"8a44c0b1bbaffff-13f6f71ef5a540e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb1ac34-13fea4c423115613","8f44c0b1bba8a94-13f7e659c2f4154f"]},"geometry":{"type":"LineString","coordinates":[[-83.67258600000001,32.831826],[-83.673235,32.83184]]},"id":"8844c0b1bbfffff-13f7a58efd599e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb1ac34-13fea4c423115613","8f44c0b1bb0e612-1396e15d8f1ba41a"]},"geometry":{"type":"LineString","coordinates":[[-83.673235,32.83184],[-83.674628,32.831851]]},"id":"8944c0b1bb3ffff-13fff310d6b2f560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb0e612-1396e15d8f1ba41a","8f44c0b1bb7644e-139fbe1e4f1b9e17"]},"geometry":{"type":"LineString","coordinates":[[-83.674628,32.831851],[-83.67595800000001,32.831865]]},"id":"8944c0b1bb3ffff-1397dfbded45b36b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194dc22c-17beba940b0d71de","8f44c0b1bb7644e-139fbe1e4f1b9e17"]},"geometry":{"type":"LineString","coordinates":[[-83.67595800000001,32.831865],[-83.67729800000001,32.831893],[-83.67736400000001,32.831868],[-83.677402,32.831809],[-83.677408,32.830897]]},"id":"8644c0b1fffffff-1396fba7a595a989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650774,32.794246]},"id":"8f44c0b1e181250-17b7db9a4c2aa535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e181250-17b7db9a4c2aa535","8f44c0b1e1a3c13-13befb8be6eb690e"]},"geometry":{"type":"LineString","coordinates":[[-83.650774,32.794246],[-83.65079700000001,32.793035]]},"id":"8944c0b1e1bffff-13bfdb93172893de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ec5d60b-179edb7b04b4035a","8f44c0b1e1a3c13-13befb8be6eb690e"]},"geometry":{"type":"LineString","coordinates":[[-83.65079700000001,32.793035],[-83.650824,32.791728]]},"id":"8744c0b1effffff-13b6fb83737f1450"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba375a786-17d7e66ae38b9b27","8f44c0ba3662353-139fa4462875aea7"]},"geometry":{"type":"LineString","coordinates":[[-83.567701,32.781602],[-83.567811,32.781703],[-83.568579,32.782744]]},"id":"8844c0ba37fffff-17b7e552851a5ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba3662353-139fa4462875aea7","8f44c0b85906809-17f7ffa023d2951e"]},"geometry":{"type":"LineString","coordinates":[[-83.568579,32.782744],[-83.57048300000001,32.785311]]},"id":"8744c0ba3ffffff-17d7b1f32d865779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617789,32.862347]},"id":"8f44c0a32bb026e-13f7ec21eb4fca65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ba04e8-13dfe9bb816245a1","8f44c0a32bb026e-13f7ec21eb4fca65"]},"geometry":{"type":"LineString","coordinates":[[-83.617789,32.862347],[-83.6179668,32.862349300000005],[-83.618772,32.862307]]},"id":"8944c0a32bbffff-13ff6aeea44e04d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62064600000001,32.862004]},"id":"8f44c0a32b14a6e-13b7a528476df7ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32ba04e8-13dfe9bb816245a1","8f44c0a32b14a6e-13b7a528476df7ac"]},"geometry":{"type":"LineString","coordinates":[[-83.618772,32.862307],[-83.61901900000001,32.862294],[-83.619521,32.862201],[-83.62014,32.862098],[-83.62064600000001,32.862004]]},"id":"8844c0a32bfffff-1397a770fd7c88c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6179505,32.8656012]},"id":"8f44c0a32aa3c44-13ffebbcf3484693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32aa8735-17ff2a1e7552df9f","8f44c0a32aa3c44-13ffebbcf3484693"]},"geometry":{"type":"LineString","coordinates":[[-83.6179505,32.8656012],[-83.6180449,32.8657483],[-83.6181102,32.865852700000005],[-83.6181875,32.8659739],[-83.6182455,32.866054500000004],[-83.6182904,32.866108000000004],[-83.6183664,32.866182900000005],[-83.6184858,32.8663131],[-83.61861370000001,32.866424200000004]]},"id":"8944c0a32abffff-17f7bafce0c9153f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32af5522-17f777aead3ebf0c","8f44c0a32aa8735-17ff2a1e7552df9f"]},"geometry":{"type":"LineString","coordinates":[[-83.61861370000001,32.866424200000004],[-83.6192379,32.866947],[-83.6196118,32.867259700000005]]},"id":"8844c0a32bfffff-17f768e69b696e40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6197782,32.8673956]},"id":"8f44c0a32af50e1-17df6746a34444e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32af5522-17f777aead3ebf0c","8f44c0a32af50e1-17df6746a34444e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6196118,32.867259700000005],[-83.6197782,32.8673956]]},"id":"8b44c0a32af5fff-179ff77aa7b91e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32ae3334-13ffa54d16c15c3d","8f44c0a32af50e1-17df6746a34444e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6197782,32.8673956],[-83.6199289,32.8675188],[-83.62017,32.8677227],[-83.62058710000001,32.8680682]]},"id":"8944c0a32afffff-139f7649eae7fedf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6212567,32.868622800000004]},"id":"8f44c0a32ae8172-13df63aa9190762d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32ae3334-13ffa54d16c15c3d","8f44c0a32ae8172-13df63aa9190762d"]},"geometry":{"type":"LineString","coordinates":[[-83.62058710000001,32.8680682],[-83.6212567,32.868622800000004]]},"id":"8944c0a32afffff-139ff47bdc9bac05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32ae8172-13df63aa9190762d","8f44c0a33db4d95-13f72267e657f233"]},"geometry":{"type":"LineString","coordinates":[[-83.6212567,32.868622800000004],[-83.62137840000001,32.8687406],[-83.621773,32.869101]]},"id":"8944c0a32afffff-13dfb30a0ed13b4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6222443,32.869501400000004]},"id":"8f44c0a33db5c75-17ff61415a706bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33db5c75-17ff61415a706bf4","8f44c0a33db4d95-13f72267e657f233"]},"geometry":{"type":"LineString","coordinates":[[-83.621773,32.869101],[-83.6222443,32.869501400000004]]},"id":"8a44c0a33db7fff-17f761d4a078bdb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33dad0a1-13b7fc9b86aaf471","8f44c0a33db5c75-17ff61415a706bf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6222443,32.869501400000004],[-83.6232145,32.870190300000004],[-83.624148,32.8708414]]},"id":"8944c0a33dbffff-17977eef554cff80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33dad0a1-13b7fc9b86aaf471","8f44c0a33dad225-13979c38c40a251a"]},"geometry":{"type":"LineString","coordinates":[[-83.624148,32.8708414],[-83.624306,32.8709737]]},"id":"8b44c0a33dadfff-13df5c6a2fa792e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33dad225-13979c38c40a251a","8f44c0a33c20ae4-13ff5887c65566af"]},"geometry":{"type":"LineString","coordinates":[[-83.624306,32.8709737],[-83.62472700000001,32.871285],[-83.625122,32.871603],[-83.62581800000001,32.8721909]]},"id":"8844c0a33dfffff-13ff5a5b0a9e0203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33c20ae4-13ff5887c65566af","8f44c0a33c2d85b-179f160903da9355"]},"geometry":{"type":"LineString","coordinates":[[-83.62581800000001,32.8721909],[-83.62684,32.8730593]]},"id":"8844c0a33dfffff-179fb7486c82f1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33c2d85b-179f160903da9355","8f44c0a33c66d60-17b7f3bd18c516fb"]},"geometry":{"type":"LineString","coordinates":[[-83.62684,32.8730593],[-83.62700770000001,32.873198900000006],[-83.62741650000001,32.8735389],[-83.6275873,32.873691900000004],[-83.6277807,32.8739103]]},"id":"8844c0a33dfffff-179fb4db03b05adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33c60198-13f73301e394a3ff","8f44c0a33c66d60-17b7f3bd18c516fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6277807,32.8739103],[-83.627909,32.87409],[-83.6280802,32.8743987]]},"id":"8944c0a33c7ffff-13df135b650d9fde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33c60198-13f73301e394a3ff","8f44c0a330235ae-17dfafa1ad796891"]},"geometry":{"type":"LineString","coordinates":[[-83.6280802,32.8743987],[-83.6282164,32.8747795],[-83.6283475,32.8752373],[-83.6288071,32.8766235],[-83.629264,32.878034],[-83.62936400000001,32.878453],[-83.62938000000001,32.878554],[-83.62943200000001,32.879029],[-83.629463,32.880097]]},"id":"8744c0a33ffffff-17d730edf98eacf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33054743-17df2d72ebcb292b","8f44c0a330235ae-17dfafa1ad796891"]},"geometry":{"type":"LineString","coordinates":[[-83.629463,32.880097],[-83.62948800000001,32.88046],[-83.62952,32.880716],[-83.629553,32.880921],[-83.629644,32.881368],[-83.629728,32.881665000000005],[-83.62983700000001,32.881914],[-83.62986500000001,32.881959],[-83.629993,32.882167],[-83.630205,32.882422000000005],[-83.630357,32.882581]]},"id":"8844c0a331fffff-13ffceefa098bfb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63122150000001,32.887859]},"id":"8f44c0a332a5809-13bfeb569a9a11f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a33054743-17df2d72ebcb292b","8f44c0a332a5809-13bfeb569a9a11f5"]},"geometry":{"type":"LineString","coordinates":[[-83.630357,32.882581],[-83.63109800000001,32.883313],[-83.631236,32.883485],[-83.63133400000001,32.883626],[-83.631489,32.883907],[-83.631572,32.884115],[-83.63163300000001,32.884386],[-83.63164300000001,32.884541],[-83.631636,32.884663],[-83.631619,32.884777],[-83.6312357,32.8867319],[-83.63117000000001,32.8870772],[-83.63114800000001,32.887228300000004],[-83.631146,32.8873642],[-83.6311592,32.887497100000004],[-83.6311902,32.887718500000005],[-83.63122150000001,32.887859]]},"id":"8744c0a33ffffff-13ff8b3c211cafba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18104042-13b7a93f0d1b9ae4","8f44c0b1810c223-1396a7a5ac75d71d"]},"geometry":{"type":"LineString","coordinates":[[-83.6714,32.808585],[-83.67142600000001,32.808771],[-83.67145500000001,32.808898],[-83.671484,32.808988],[-83.67152300000001,32.809089],[-83.671566,32.809174],[-83.671644,32.809303],[-83.671729,32.809423],[-83.67184900000001,32.809540000000005],[-83.672055,32.809764]]},"id":"8944c0b1813ffff-13bfe8a3315ea8a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18175c9a-1397e43d2edb1303","8f44c0b1810c223-1396a7a5ac75d71d"]},"geometry":{"type":"LineString","coordinates":[[-83.672055,32.809764],[-83.672297,32.809809],[-83.672441,32.809862],[-83.672554,32.809891],[-83.67281700000001,32.809928],[-83.673112,32.809953],[-83.673336,32.809962],[-83.673451,32.809942]]},"id":"8844c0b181fffff-13fee5f3eabadac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674064,32.809289]},"id":"8f44c0b188d8acd-13ffa2be0419653f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188d8acd-13ffa2be0419653f","8f44c0b18175c9a-1397e43d2edb1303"]},"geometry":{"type":"LineString","coordinates":[[-83.673451,32.809942],[-83.673581,32.809845],[-83.67370600000001,32.809731],[-83.673969,32.809421],[-83.674064,32.809289]]},"id":"8744c0b18ffffff-13d6b372533ad313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645616,32.850327]},"id":"8f44c0a355b209a-179ee8320f025ea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a355b2341-17dee790c48b4c2a","8f44c0a355b209a-179ee8320f025ea7"]},"geometry":{"type":"LineString","coordinates":[[-83.645616,32.850327],[-83.645874,32.850429000000005]]},"id":"8b44c0a355b2fff-17bee7e164d8b3c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3558691e-17b6e5f76738658d","8f44c0a355b2341-17dee790c48b4c2a"]},"geometry":{"type":"LineString","coordinates":[[-83.645874,32.850429000000005],[-83.64646300000001,32.850721],[-83.646529,32.850749]]},"id":"8944c0a355bffff-17d7f6c49e335668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3558691e-17b6e5f76738658d","8f44c0a35585020-139fe422a15158e6"]},"geometry":{"type":"LineString","coordinates":[[-83.646529,32.850749],[-83.64727900000001,32.851138]]},"id":"8a44c0a35587fff-179ff50d0502bd28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.772964,32.861266]},"id":"8f44c0b542d8372-13d7f1498c9b929c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.772885,32.861393]},"id":"8f44c0b542d82db-13b7b17aee91e5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b542d82db-13b7b17aee91e5c7","8f44c0b542d8372-13d7f1498c9b929c"]},"geometry":{"type":"LineString","coordinates":[[-83.772964,32.861266],[-83.773109,32.861141],[-83.77292,32.86114],[-83.772751,32.86113],[-83.772581,32.861108],[-83.772362,32.861068],[-83.77226800000001,32.861055],[-83.77214500000001,32.861055],[-83.772052,32.861069],[-83.77199,32.861088],[-83.77191,32.861131],[-83.77181900000001,32.861206],[-83.771692,32.8613],[-83.771658,32.861322],[-83.771404,32.861445],[-83.77115500000001,32.861576],[-83.77105300000001,32.861662],[-83.770959,32.861753],[-83.770807,32.861913],[-83.77073100000001,32.861984],[-83.77065800000001,32.86204],[-83.770027,32.862311000000005],[-83.769892,32.862394],[-83.769813,32.862457],[-83.76978100000001,32.862524],[-83.76977500000001,32.8626],[-83.769783,32.862676],[-83.769806,32.862768],[-83.76987000000001,32.862855],[-83.769992,32.862916000000006],[-83.77016400000001,32.862941],[-83.770335,32.862941],[-83.77052300000001,32.862906],[-83.77065400000001,32.862865],[-83.770983,32.862744],[-83.77135,32.862586],[-83.771482,32.862538],[-83.771603,32.862513],[-83.771715,32.862513],[-83.771817,32.862524],[-83.771932,32.862541],[-83.772186,32.862594],[-83.772558,32.862699],[-83.772677,32.862750000000005],[-83.77296100000001,32.862904],[-83.773048,32.862945],[-83.773205,32.862996],[-83.77324200000001,32.863003],[-83.773347,32.863007],[-83.77343900000001,32.862994],[-83.773497,32.862966],[-83.77355700000001,32.862913],[-83.773595,32.862842],[-83.773605,32.862813],[-83.77361300000001,32.862726],[-83.773611,32.862660000000005],[-83.7736,32.862591],[-83.773561,32.862451],[-83.773441,32.86213],[-83.773408,32.862065],[-83.773363,32.861991],[-83.773301,32.861919],[-83.773137,32.86177],[-83.77307,32.861716],[-83.772975,32.86162],[-83.77292,32.861548],[-83.77289800000001,32.861508],[-83.77288200000001,32.86144],[-83.772885,32.861393]]},"id":"8644c0b57ffffff-139db40b24c6addd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b542d82db-13b7b17aee91e5c7","8f44c0b542d8372-13d7f1498c9b929c"]},"geometry":{"type":"LineString","coordinates":[[-83.772885,32.861393],[-83.772964,32.861266]]},"id":"8b44c0b542d8fff-13fff1623dc29b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e08a091-17d6debea5fc5355","8f44c0b1e46b892-17b7e411c8315d4e"]},"geometry":{"type":"LineString","coordinates":[[-83.647306,32.79791],[-83.64948700000001,32.797952]]},"id":"8744c0b1effffff-17b6e1683a5af097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652679,32.798026]},"id":"8f44c0b1e0e0034-17fed6f3a474dff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0e0034-17fed6f3a474dff8","8f44c0b1e08a091-17d6debea5fc5355"]},"geometry":{"type":"LineString","coordinates":[[-83.64948700000001,32.797952],[-83.64975100000001,32.797963],[-83.650743,32.797987],[-83.652679,32.798026]]},"id":"8844c0b1e1fffff-17dffad93f8c76ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636831,32.807968]},"id":"8f44c0bad340c4b-17b6fda4a8ed04cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad340c4b-17b6fda4a8ed04cf","8f44c0b1ad9d818-17fef5c89d6c2302"]},"geometry":{"type":"LineString","coordinates":[[-83.636831,32.807968],[-83.637691,32.808005],[-83.638469,32.808022],[-83.639368,32.808047],[-83.6400503,32.8080512]]},"id":"8544c0b3fffffff-17d6f9b6c911cda5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640332,32.808053]},"id":"8f44c0b1ad8e548-17fff5188ce57891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad8e548-17fff5188ce57891","8f44c0b1ad9d818-17fef5c89d6c2302"]},"geometry":{"type":"LineString","coordinates":[[-83.6400503,32.8080512],[-83.640332,32.808053]]},"id":"8944c0b1adbffff-17fef57093cc68d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64263100000001,32.808096]},"id":"8f44c0b1ad1b623-1796ef7ba81e0f8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad1b623-1796ef7ba81e0f8e","8f44c0b1ad8e548-17fff5188ce57891"]},"geometry":{"type":"LineString","coordinates":[[-83.640332,32.808053],[-83.64263100000001,32.808096]]},"id":"8844c0b1adfffff-17f6f24a1ff395a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a33db5c75-17ff61415a706bf4","8f44c0a33d94060-17f7a3a4260b92d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6222443,32.869501400000004],[-83.621933,32.869759],[-83.621627,32.870005],[-83.621267,32.870308]]},"id":"8944c0a33dbffff-17ffe2734b564d80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3236e089-139fe6da02f6ec6a","8f44c0a33d94060-17f7a3a4260b92d6"]},"geometry":{"type":"LineString","coordinates":[[-83.621267,32.870308],[-83.62026200000001,32.871136],[-83.62006500000001,32.871324],[-83.61995200000001,32.871398]]},"id":"8744c0a32ffffff-13bf653f6c2e34a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3236e089-139fe6da02f6ec6a","8f44c0a322038a9-179ff1656b301e4b"]},"geometry":{"type":"LineString","coordinates":[[-83.61995200000001,32.871398],[-83.619934,32.871409],[-83.619715,32.871535],[-83.619512,32.871626],[-83.619309,32.871702],[-83.61901,32.871788],[-83.615869,32.87258],[-83.615717,32.87261],[-83.615633,32.872619]]},"id":"8844c0a323fffff-13bf6c10c07d038e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3221042a-13ffb4e822e5a72d","8f44c0a322038a9-179ff1656b301e4b"]},"geometry":{"type":"LineString","coordinates":[[-83.615633,32.872619],[-83.615599,32.872622],[-83.615452,32.872629],[-83.61527500000001,32.872622],[-83.615066,32.872594],[-83.614784,32.872521],[-83.61450400000001,32.872396],[-83.61419500000001,32.87218]]},"id":"8944c0a3223ffff-17bf3338ef3113bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3221042a-13ffb4e822e5a72d","8f44c0a3238a619-13977760043d08f7"]},"geometry":{"type":"LineString","coordinates":[[-83.61419500000001,32.87218],[-83.613686,32.871765],[-83.613184,32.8713749]]},"id":"8844c0a323fffff-13ff36229139492e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72929540000001,32.8265873]},"id":"8f44c0b086e2089-17bf1be6686bf762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b086e2089-17bf1be6686bf762","8f44c0b08450688-13f6f1fc1c5d67e5"]},"geometry":{"type":"LineString","coordinates":[[-83.72680310000001,32.8191277],[-83.72717700000001,32.819569],[-83.72825200000001,32.820878],[-83.728862,32.82161],[-83.729077,32.821916],[-83.729146,32.822041],[-83.729191,32.822141],[-83.72926500000001,32.822363],[-83.729302,32.822527],[-83.72931700000001,32.822682],[-83.72932200000001,32.822828],[-83.729318,32.823647],[-83.72931100000001,32.825049],[-83.729301,32.825851],[-83.72929540000001,32.8265873]]},"id":"8744c0b08ffffff-13fedd51921d0370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72929160000001,32.8271032]},"id":"8f44c0b086c4230-17ff9be8c3a7bca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b086e2089-17bf1be6686bf762","8f44c0b086c4230-17ff9be8c3a7bca4"]},"geometry":{"type":"LineString","coordinates":[[-83.72929540000001,32.8265873],[-83.72929160000001,32.8271032]]},"id":"8944c0b086fffff-17de5be79c408117"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72928800000001,32.8275805]},"id":"8f44c0b086c1cb3-1797dbeb0db51a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b086c4230-17ff9be8c3a7bca4","8f44c0b086c1cb3-1797dbeb0db51a36"]},"geometry":{"type":"LineString","coordinates":[[-83.72929160000001,32.8271032],[-83.72928800000001,32.8275805]]},"id":"8a44c0b086c7fff-1796bbe9e3204443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7292438,32.832022800000004]},"id":"8f44c0b0bd492aa-13fe5c06a5f15052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd492aa-13fe5c06a5f15052","8f44c0b086c1cb3-1797dbeb0db51a36"]},"geometry":{"type":"LineString","coordinates":[[-83.72928800000001,32.8275805],[-83.729279,32.828789],[-83.72926700000001,32.829529],[-83.729252,32.831697000000005],[-83.729245,32.831849000000005],[-83.7292438,32.832022800000004]]},"id":"8744c0b0bffffff-17961bf7f2355287"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd492aa-13fe5c06a5f15052","8f44c0b0b89695b-13be1c07377983c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7292438,32.832022800000004],[-83.7292429,32.832150500000004]]},"id":"8a44c0b0b897fff-13963c06f01bdd7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64627850000001,32.8190102]},"id":"8f44c0b1a0e67a8-13bfe693fdbb1fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a01871d-17dfe7150623acd2","8f44c0b1a0e67a8-13bfe693fdbb1fad"]},"geometry":{"type":"LineString","coordinates":[[-83.646072,32.818246],[-83.646162,32.818303],[-83.646192,32.818354],[-83.6461878,32.818949700000005],[-83.64627850000001,32.8190102]]},"id":"8844c0b1a1fffff-13bee6ce1fa49d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a052773-1396e379e86135d5","8f44c0b1a0e67a8-13bfe693fdbb1fad"]},"geometry":{"type":"LineString","coordinates":[[-83.64627850000001,32.8190102],[-83.646674,32.819141],[-83.646799,32.81919],[-83.6473804,32.819487200000005],[-83.64754900000001,32.819569]]},"id":"8944c0b1a0fffff-13def5018c28880c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a052773-1396e379e86135d5","8f44c0b1a05e39a-17bee194e5988c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.64754900000001,32.819569],[-83.648325,32.820238]]},"id":"8844c0b1a1fffff-13d7f2876bd9cede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a043a2002-179fe798813fa329","8f44c0a043a8756-13bfa51ce7a4adfd"]},"geometry":{"type":"LineString","coordinates":[[-83.672076,32.895971],[-83.672078,32.896118],[-83.672094,32.896194],[-83.67212,32.896271],[-83.67216300000001,32.896347],[-83.67221400000001,32.896403],[-83.67228200000001,32.896464],[-83.672662,32.896737],[-83.67309300000001,32.897064]]},"id":"8944c0a043bffff-1796e694b7535cd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04235143-13d7e229ee95f674","8f44c0a043a8756-13bfa51ce7a4adfd"]},"geometry":{"type":"LineString","coordinates":[[-83.67309300000001,32.897064],[-83.674301,32.897923]]},"id":"8844c0a043fffff-13d7f3a364e8d042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6750885,32.8985057]},"id":"8f44c0a04223858-13beb03db19f56fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04223858-13beb03db19f56fd","8f44c0a04235143-13d7e229ee95f674"]},"geometry":{"type":"LineString","coordinates":[[-83.674301,32.897923],[-83.67457300000001,32.898128],[-83.6750885,32.8985057]]},"id":"8944c0a0423ffff-139ee1345d4774b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c552670-179fd2676ad75ce6","8f44c0b0c45c81d-17961125e1204613"]},"geometry":{"type":"LineString","coordinates":[[-83.7336994,32.7982912],[-83.733694,32.797472],[-83.73364500000001,32.797227],[-83.73354900000001,32.796971],[-83.73324600000001,32.796324000000006],[-83.73318900000001,32.796166],[-83.73316100000001,32.796037000000005],[-83.73315000000001,32.79589],[-83.73316000000001,32.795741],[-83.733185,32.794998]]},"id":"8844c0b0c5fffff-139fd1d5ed115e68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c552670-179fd2676ad75ce6","8f44c0b0c533b50-17fe15326a958375"]},"geometry":{"type":"LineString","coordinates":[[-83.733185,32.794998],[-83.733197,32.79467],[-83.733305,32.793419],[-83.73333600000001,32.792819],[-83.73335800000001,32.792541],[-83.73335700000001,32.792375],[-83.733317,32.792223],[-83.73321,32.792119],[-83.733101,32.792023],[-83.73301400000001,32.79197],[-83.732909,32.791935],[-83.73276,32.791919],[-83.732477,32.791902],[-83.73204100000001,32.791904]]},"id":"8844c0b0c5fffff-13d7b2a0f6be3caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c5a824b-13d7389f465e2f5b","8f44c0b0c533b50-17fe15326a958375"]},"geometry":{"type":"LineString","coordinates":[[-83.73204100000001,32.791904],[-83.731864,32.791918],[-83.731718,32.79197],[-83.73144500000001,32.792126],[-83.731222,32.792292],[-83.73100600000001,32.792465],[-83.730794,32.792673],[-83.73077500000001,32.7927],[-83.730717,32.79289],[-83.73067800000001,32.793094],[-83.730652,32.793419],[-83.730638,32.793653]]},"id":"8844c0b0c5fffff-13bff77ce8a0ba13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c400943-13b695a888c17e86","8f44c0b0c5a824b-13d7389f465e2f5b"]},"geometry":{"type":"LineString","coordinates":[[-83.730638,32.793653],[-83.73062800000001,32.794106],[-83.730655,32.794266],[-83.730824,32.794638],[-83.731193,32.79498],[-83.731475,32.795264],[-83.73158600000001,32.795364],[-83.73162400000001,32.7954],[-83.731852,32.795444]]},"id":"8844c0b0c5fffff-17d797a56521e6f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e491816-17be59d8272a8298","8f44c0b1d861172-17bf5d1f800d7e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.70258000000001,32.801602],[-83.703923,32.8016]]},"id":"8744c0b1dffffff-17befb7bdf1ae430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707437,32.8016]},"id":"8f44c0b0e418d40-17be5143e8aabd65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e491816-17be59d8272a8298","8f44c0b0e418d40-17be5143e8aabd65"]},"geometry":{"type":"LineString","coordinates":[[-83.703923,32.8016],[-83.70606000000001,32.801609],[-83.706264,32.801609],[-83.707437,32.8016]]},"id":"8844c0b0e5fffff-17bf558e028e8fa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c8c70a-13fef5333ec88784","8f44c0a20c8e588-13df76b3a7a46fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.692103,32.859023],[-83.69234150000001,32.859054300000004],[-83.69271810000001,32.859057]]},"id":"8a44c0a20c8ffff-13fff5f3dd89beba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20cf6ce0-13f6f3278849baca","8f44c0a20c8c70a-13fef5333ec88784"]},"geometry":{"type":"LineString","coordinates":[[-83.69271810000001,32.859057],[-83.693556,32.859067]]},"id":"8944c0a20cbffff-13f7f42d61a3f540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20cf6ce0-13f6f3278849baca","8f44c0a20c0b419-1397eddb4d382f84"]},"geometry":{"type":"LineString","coordinates":[[-83.693556,32.859067],[-83.694254,32.85908],[-83.69572600000001,32.859091]]},"id":"8844c0a20dfffff-13fe70816b786519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c09604-139eec75c9114ba2","8f44c0a20c0b419-1397eddb4d382f84"]},"geometry":{"type":"LineString","coordinates":[[-83.69572600000001,32.859091],[-83.696298,32.859102]]},"id":"8a44c0a20c0ffff-13977d2884ab2681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69690700000001,32.859107]},"id":"8f44c0a20c5492b-139feaf92405ab17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c09604-139eec75c9114ba2","8f44c0a20c5492b-139feaf92405ab17"]},"geometry":{"type":"LineString","coordinates":[[-83.696298,32.859102],[-83.69690700000001,32.859107]]},"id":"8944c0a20c7ffff-139e7bb778238ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c5492b-139feaf92405ab17","8f44c0a20c71a91-139e68bd4ee3e068"]},"geometry":{"type":"LineString","coordinates":[[-83.69690700000001,32.859107],[-83.697822,32.859127]]},"id":"8a44c0a20c77fff-139669db34f50556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c71a91-139e68bd4ee3e068","8f44c0a20c61528-139fe61fe1c83141"]},"geometry":{"type":"LineString","coordinates":[[-83.697822,32.859127],[-83.698893,32.859129]]},"id":"8944c0a20c7ffff-139f676e96269313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c61528-139fe61fe1c83141","8f44c0a2089246a-139e64e3a42f329c"]},"geometry":{"type":"LineString","coordinates":[[-83.698893,32.859129],[-83.699399,32.859133]]},"id":"8944c0a20c7ffff-139ee581c29aa681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20885228-13bedebe80dd5306","8f44c0a2089246a-139e64e3a42f329c"]},"geometry":{"type":"LineString","coordinates":[[-83.699399,32.859133],[-83.70191600000001,32.859156]]},"id":"8744c0a20ffffff-13b771d11f99647a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20885228-13bedebe80dd5306","8f44c0a208ad4c0-13bffc4ec32ae64b"]},"geometry":{"type":"LineString","coordinates":[[-83.70191600000001,32.859156],[-83.702914,32.859161]]},"id":"8944c0a208bffff-13be5d86a8bc80a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25430ae3-13b7e277cac517c0","8f44c0a208ad4c0-13bffc4ec32ae64b"]},"geometry":{"type":"LineString","coordinates":[[-83.702914,32.859161],[-83.70330200000001,32.859163],[-83.70376200000001,32.859164],[-83.705167,32.859183],[-83.706164,32.859184],[-83.70632400000001,32.859177],[-83.706631,32.859144],[-83.70692000000001,32.859093],[-83.707058,32.859059],[-83.70748300000001,32.858929],[-83.707856,32.858772],[-83.708397,32.858528],[-83.708714,32.858406],[-83.70895800000001,32.85833],[-83.70926,32.858261],[-83.70982500000001,32.858184],[-83.710448,32.858173],[-83.711358,32.858165],[-83.713003,32.858151],[-83.713498,32.858147]]},"id":"8644c0a27ffffff-13f65f64b35ecb1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25199a30-13be7181e3a25f6a","8f44c0a25430ae3-13b7e277cac517c0"]},"geometry":{"type":"LineString","coordinates":[[-83.713498,32.858147],[-83.714066,32.858144],[-83.716684,32.858128],[-83.716721,32.858127],[-83.71678700000001,32.858126],[-83.717281,32.858117],[-83.717578,32.858117],[-83.717899,32.85813],[-83.718157,32.858159],[-83.718405,32.858203],[-83.718609,32.858254],[-83.718778,32.858306],[-83.718929,32.858359],[-83.719131,32.858443],[-83.719161,32.858452],[-83.719317,32.858506000000006],[-83.720048,32.85879],[-83.72044500000001,32.85897]]},"id":"8744c0a25ffffff-1396f9dbae2f8dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a25010db4-17deee7ae42f8d5f","8f44c0a25199a30-13be7181e3a25f6a"]},"geometry":{"type":"LineString","coordinates":[[-83.72044500000001,32.85897],[-83.720562,32.859019],[-83.720971,32.859225],[-83.72168500000001,32.859614]]},"id":"8844c0a251fffff-13fe3ffbcc508ec2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67355900000001,32.836917]},"id":"8f44c0b1bac5b58-17f7a3f9ad0771b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bac5b58-17f7a3f9ad0771b6","8f44c0b1bacc136-17f7a3fe0adcf474"]},"geometry":{"type":"LineString","coordinates":[[-83.673552,32.837564],[-83.673563,32.837381],[-83.67355900000001,32.836917]]},"id":"8944c0b1bafffff-17bfe3f90bc7d20d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bae3bb3-17bfe3f7c8526481","8f44c0b1bac5b58-17f7a3f9ad0771b6"]},"geometry":{"type":"LineString","coordinates":[[-83.67355900000001,32.836917],[-83.673562,32.836419]]},"id":"8944c0b1bafffff-17d7a3f8be78fcf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c5a564-17fefad185055f0c","8f44c0a34c5a8d1-17f7fa66a325f537"]},"geometry":{"type":"LineString","coordinates":[[-83.637988,32.8340716],[-83.638159,32.8340592]]},"id":"8b44c0a34c5afff-17fefa9c12a9dda4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c5d049-17bff8103c4b15f7","8f44c0a34c5a8d1-17f7fa66a325f537"]},"geometry":{"type":"LineString","coordinates":[[-83.638159,32.8340592],[-83.6391165,32.8339903]]},"id":"8a44c0a34c5ffff-17d7f93b713a9e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c5d049-17bff8103c4b15f7","8f44c0a34c48d74-179ef63c015a0d98"]},"geometry":{"type":"LineString","coordinates":[[-83.6391165,32.8339903],[-83.63986560000001,32.833936300000005]]},"id":"8944c0a34c7ffff-17bff7262b3c6c4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a341344f0-17f6f3311f61a874","8f44c0a34c48d74-179ef63c015a0d98"]},"geometry":{"type":"LineString","coordinates":[[-83.63986560000001,32.833936300000005],[-83.6411119,32.8338465]]},"id":"8744c0a34ffffff-17fef4b692877b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34134b6c-17dff1f982d61ecc","8f44c0a341344f0-17f6f3311f61a874"]},"geometry":{"type":"LineString","coordinates":[[-83.6411119,32.8338465],[-83.6416104,32.8338106]]},"id":"8a44c0a34137fff-17d6f29551df02b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64173530000001,32.8338016]},"id":"8f44c0a3489b70c-17d6f1ab7930f168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3489b70c-17d6f1ab7930f168","8f44c0a34134b6c-17dff1f982d61ecc"]},"geometry":{"type":"LineString","coordinates":[[-83.6416104,32.8338106],[-83.64173530000001,32.8338016]]},"id":"8b44c0a3489bfff-17def1d27727675d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3489b70c-17d6f1ab7930f168","8f44c0a3488bc88-179feea0a4dbbe3f"]},"geometry":{"type":"LineString","coordinates":[[-83.64173530000001,32.8338016],[-83.64298140000001,32.8337118]]},"id":"8844c0a349fffff-17bff0260ec72d87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643354,32.833685]},"id":"8f44c0a34889599-17ffedb7ccc4f076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34889599-17ffedb7ccc4f076","8f44c0a3488bc88-179feea0a4dbbe3f"]},"geometry":{"type":"LineString","coordinates":[[-83.64298140000001,32.8337118],[-83.643354,32.833685]]},"id":"8a44c0a3488ffff-1797ee2c389068ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3498db88-179fea62ad56ab03","8f44c0a348a560b-17feecbe6d57658c"]},"geometry":{"type":"LineString","coordinates":[[-83.643753,32.831406],[-83.64407,32.831026],[-83.64471900000001,32.830258]]},"id":"8844c0a349fffff-1797fb9101eb427a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64569,32.82913]},"id":"8f44c0a3491e196-13dee803c76cc881"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3491e196-13dee803c76cc881","8f44c0a3498db88-179fea62ad56ab03"]},"geometry":{"type":"LineString","coordinates":[[-83.64471900000001,32.830258],[-83.64569,32.82913]]},"id":"8844c0a349fffff-13bee9333586d9ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3489b70c-17d6f1ab7930f168","8f44c0a34883748-139fffc99e638763"]},"geometry":{"type":"LineString","coordinates":[[-83.64173530000001,32.8338016],[-83.64222450000001,32.8332209],[-83.64250630000001,32.832886300000006]]},"id":"8844c0a349fffff-17bef0ba84aaf018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34883748-139fffc99e638763","8f44c0a348815a3-13bfff1f5e033d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.64250630000001,32.832886300000006],[-83.6427412,32.8326075],[-83.64277870000001,32.8325629]]},"id":"8a44c0a34887fff-13b6ef7476e2801b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6333101,32.8303171]},"id":"8f44c0a34cb5000-17d7363d33d142a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb5000-17d7363d33d142a6","8f44c0ba93696b4-13ff8871a1235fe0"]},"geometry":{"type":"LineString","coordinates":[[-83.632407,32.829788],[-83.632793,32.830019],[-83.63313210000001,32.8302111],[-83.6333101,32.8303171]]},"id":"8844c0a34dfffff-179f8757d5da04d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633972,32.830722]},"id":"8f44c0a34ca3d24-17d7449f84b7a7d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb5000-17d7363d33d142a6","8f44c0a34ca3d24-17d7449f84b7a7d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6333101,32.8303171],[-83.633436,32.830392],[-83.633972,32.830722]]},"id":"8944c0a34cbffff-17d7456e1ac56f18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c1ad1d-1397e0e16364efc3","8f44c0a34ca3d24-17d7449f84b7a7d8"]},"geometry":{"type":"LineString","coordinates":[[-83.633972,32.830722],[-83.634623,32.831113],[-83.63550500000001,32.831643]]},"id":"8844c0a34dfffff-17f712c070c98281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6362979,32.832088500000005]},"id":"8f44c0a34c1946e-1397fef1d8bbca87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c1946e-1397fef1d8bbca87","8f44c0a34c1ad1d-1397e0e16364efc3"]},"geometry":{"type":"LineString","coordinates":[[-83.63550500000001,32.831643],[-83.6357024,32.8317489],[-83.6362979,32.832088500000005]]},"id":"8a44c0a34c1ffff-139effe8f4ccf28f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c19726-13befed3cad95670","8f44c0a34c1946e-1397fef1d8bbca87"]},"geometry":{"type":"LineString","coordinates":[[-83.6362979,32.832088500000005],[-83.636346,32.832116]]},"id":"8b44c0a34c19fff-139ffee2de03a291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201b5b72-13df6a2f46c97f8a","8f44c0a20c5492b-139feaf92405ab17"]},"geometry":{"type":"LineString","coordinates":[[-83.69690700000001,32.859107],[-83.696865,32.860433],[-83.696838,32.861112],[-83.69685100000001,32.861179],[-83.69690200000001,32.861269],[-83.69707600000001,32.861437],[-83.697168,32.861533],[-83.69720600000001,32.861596],[-83.69723,32.861663]]},"id":"8744c0a20ffffff-17dfeaf4fbf6b558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201b5b72-13df6a2f46c97f8a","8f44c0a201840d8-13f6ea3df39703d1"]},"geometry":{"type":"LineString","coordinates":[[-83.69723,32.861663],[-83.69722900000001,32.861812],[-83.69722200000001,32.861995],[-83.69720650000001,32.8625196]]},"id":"8944c0a201bffff-13d77a35f089b695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a201840d8-13f6ea3df39703d1","8f44c0a20180066-17dfea52e65b466b"]},"geometry":{"type":"LineString","coordinates":[[-83.69720650000001,32.8625196],[-83.697181,32.86282],[-83.697173,32.862889]]},"id":"8a44c0a20187fff-17d66a47efc1e407"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690285,32.84839]},"id":"8f44c0a26a36d42-13f7fb23e33de01b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a36d42-13f7fb23e33de01b","8f44c0a26b8c46b-13dffd64c36f052a"]},"geometry":{"type":"LineString","coordinates":[[-83.689362,32.848377],[-83.690285,32.84839]]},"id":"8944c0a26bbffff-13dffc44579a557d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b1b0f2-13f6f8d362178abb","8f44c0a26a36d42-13f7fb23e33de01b"]},"geometry":{"type":"LineString","coordinates":[[-83.690285,32.84839],[-83.690841,32.848394],[-83.69123300000001,32.848388]]},"id":"8844c0a26bfffff-13f6f9fbaa038414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b1b0f2-13f6f8d362178abb","8f44c0a26a24830-13ff76766dbcac83"]},"geometry":{"type":"LineString","coordinates":[[-83.69123300000001,32.848388],[-83.69220100000001,32.848402]]},"id":"8844c0a26bfffff-13f6f7a4ebcaa43d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a24830-13ff76766dbcac83","8f44c0a26b0905d-13f7f43949e9c02f"]},"geometry":{"type":"LineString","coordinates":[[-83.69220100000001,32.848402],[-83.693118,32.848419]]},"id":"8a44c0a26b0ffff-13f6f557d5280b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b7395d-13fef1e0a95e592c","8f44c0a26b0905d-13f7f43949e9c02f"]},"geometry":{"type":"LineString","coordinates":[[-83.693118,32.848419],[-83.694079,32.848433]]},"id":"8944c0a26b7ffff-13fe730cf6a0a2b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b7395d-13fef1e0a95e592c","8f44c0a26b62ad8-139f6f8dad0ae2ab"]},"geometry":{"type":"LineString","coordinates":[[-83.694079,32.848433],[-83.695031,32.848456]]},"id":"8944c0a26b7ffff-1397f0b7229a4320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216cc6a8-13de6660679af7b7","8f44c0a216c5ab5-1397e653496ad2b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71191800000001,32.890867],[-83.71189700000001,32.891773]]},"id":"8944c0a216fffff-13b74659d155dfca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216cc6a8-13de6660679af7b7","8f44c0a2e996490-17d7c67147721cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.71189700000001,32.891773],[-83.71187,32.892806]]},"id":"8744c0a2effffff-1796f668d30ec59a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e996490-17d7c67147721cfb","8f44c0a2ed6c726-1396c682cf6e2e63"]},"geometry":{"type":"LineString","coordinates":[[-83.71187,32.892806],[-83.711842,32.893726]]},"id":"8944c0a2ed7ffff-17f7467a0a93e47b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ed6c726-1396c682cf6e2e63","8f44c0a2e8b6410-13dfc691c22018db"]},"geometry":{"type":"LineString","coordinates":[[-83.711842,32.893726],[-83.71181800000001,32.894844]]},"id":"8944c0a2ed7ffff-13f6668a4c66d98f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e89e6db-13f746b06dbd41b0","8f44c0a2e8b6410-13dfc691c22018db"]},"geometry":{"type":"LineString","coordinates":[[-83.71181800000001,32.894844],[-83.711791,32.895811],[-83.711764,32.897075],[-83.711769,32.897154]]},"id":"8844c0a2e9fffff-179f66a44bd07581"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e135712-13fec65f2bee02c3","8f44c0a2e89e6db-13f746b06dbd41b0"]},"geometry":{"type":"LineString","coordinates":[[-83.711769,32.897154],[-83.71180000000001,32.897318],[-83.71188000000001,32.897627],[-83.711903,32.897807],[-83.711906,32.897883],[-83.711899,32.89819]]},"id":"8744c0a2effffff-13b76675a535d391"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e135712-13fec65f2bee02c3","8f44c0a2e103509-17b6667002c88e41"]},"geometry":{"type":"LineString","coordinates":[[-83.711899,32.89819],[-83.71187400000001,32.899296],[-83.711872,32.899687]]},"id":"8944c0a2e13ffff-17ded6692497a538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58479100000001,32.866557]},"id":"8f44c0b891b044c-17bf7cb1abf23a39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b891b044c-17bf7cb1abf23a39","8f44c0b891b314e-17b7fc7fac695dfd"]},"geometry":{"type":"LineString","coordinates":[[-83.58479100000001,32.866557],[-83.584871,32.866945]]},"id":"8a44c0b891b7fff-17b77c98aef7318b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58492700000001,32.867251]},"id":"8f44c0b89186412-17fffc5ca3fcf5b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b891b314e-17b7fc7fac695dfd","8f44c0b89186412-17fffc5ca3fcf5b6"]},"geometry":{"type":"LineString","coordinates":[[-83.584871,32.866945],[-83.58492700000001,32.867251]]},"id":"8944c0b891bffff-17977c6e2c38f12e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57887000000001,32.845888]},"id":"8f44c0b88944546-13df8b26422717b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d59e4c5-17d7c60e82e5d4a9","8f44c0b88944546-13df8b26422717b0"]},"geometry":{"type":"LineString","coordinates":[[-83.57887000000001,32.845888],[-83.57900000000001,32.84586],[-83.5793,32.845855],[-83.57937700000001,32.845847],[-83.57953,32.845813],[-83.57959100000001,32.845791000000006],[-83.579769,32.845672],[-83.57982100000001,32.845664],[-83.579875,32.845672],[-83.57993,32.845694],[-83.580081,32.845767],[-83.580877,32.846258],[-83.580956,32.846314]]},"id":"8644c0b8fffffff-13d7d883dadfc70e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8d59e4c5-17d7c60e82e5d4a9","8f44c0b8d5980d4-179fe4cac147b41a"]},"geometry":{"type":"LineString","coordinates":[[-83.580956,32.846314],[-83.581277,32.846524],[-83.581474,32.846643]]},"id":"8a44c0b8d59ffff-17bff56d834a1d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016f5321-13be78d8a443daf8","8f44c0b01618c04-17fe78c4a2b4fa9c"]},"geometry":{"type":"LineString","coordinates":[[-83.717439,32.789111000000005],[-83.717471,32.788007]]},"id":"8844c0b017fffff-17d778cea3426fef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b016159a6-13fe78b648ecd90e","8f44c0b01618c04-17fe78c4a2b4fa9c"]},"geometry":{"type":"LineString","coordinates":[[-83.717471,32.788007],[-83.717494,32.786762]]},"id":"8944c0b0163ffff-17f778bd7e2d5376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6776835,32.8162529]},"id":"8f44c0b18ad16dd-13fe99e7d69617f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18adedb1-13ffba3cbd76c589","8f44c0b18ad16dd-13fe99e7d69617f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6776835,32.8162529],[-83.6775477,32.8162491]]},"id":"8a44c0b18ad7fff-13fefa124fedf247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675317,32.816186]},"id":"8f44c0b183044dc-13d6dfaee0819e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18adedb1-13ffba3cbd76c589","8f44c0b183044dc-13d6dfaee0819e05"]},"geometry":{"type":"LineString","coordinates":[[-83.6775477,32.8162491],[-83.675317,32.816186]]},"id":"8744c0b18ffffff-13de9cf5d80d0771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0956642c-17bdf0d786a5cb9d","8f44c0b0950d133-1795f4d92e1ce2ab"]},"geometry":{"type":"LineString","coordinates":[[-83.74529100000001,32.830644],[-83.746116,32.83061],[-83.746508,32.830695],[-83.746932,32.830708]]},"id":"8844c0b095fffff-1795f2d7b4ceec4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0956642c-17bdf0d786a5cb9d","8f44c0b091944aa-17dfeca5c2a69255"]},"geometry":{"type":"LineString","coordinates":[[-83.746932,32.830708],[-83.74865000000001,32.830739]]},"id":"8744c0b09ffffff-17d7febea9ac3709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b091944aa-17dfeca5c2a69255","8f44c0b091a5045-179de60e46a51694"]},"geometry":{"type":"LineString","coordinates":[[-83.74865000000001,32.830739],[-83.750544,32.830772],[-83.750718,32.830782],[-83.75090300000001,32.830728],[-83.751029,32.830623],[-83.751264,32.830343],[-83.75135,32.830249]]},"id":"8944c0b091bffff-17b7f92523ce5d9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b091a5045-179de60e46a51694","8f44c0b09c6e2c8-13dde48c07d90364"]},"geometry":{"type":"LineString","coordinates":[[-83.75135,32.830249],[-83.75165000000001,32.829918],[-83.751897,32.829526],[-83.751951,32.82942],[-83.751981,32.82932],[-83.75199,32.829262],[-83.751992,32.829216],[-83.751985,32.829051],[-83.751968,32.828283]]},"id":"8744c0b09ffffff-13ddf4e048fd81e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7514877,32.8275559]},"id":"8f44c0b09c63d53-1797f5b8312ad1eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c63d53-1797f5b8312ad1eb","8f44c0b09c6e2c8-13dde48c07d90364"]},"geometry":{"type":"LineString","coordinates":[[-83.751968,32.828283],[-83.751958,32.828206],[-83.75192600000001,32.828088],[-83.751872,32.827959],[-83.751799,32.827837],[-83.751731,32.827748],[-83.7514877,32.8275559]]},"id":"8944c0b09c7ffff-17d7e4fec14c9dcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c63d53-1797f5b8312ad1eb","8f44c0b09d55469-13f5f74fc20edcab"]},"geometry":{"type":"LineString","coordinates":[[-83.7514877,32.8275559],[-83.75123070000001,32.827361100000005],[-83.7509484,32.827136700000004],[-83.75083760000001,32.8269546],[-83.7507973,32.8267767],[-83.7508356,32.825044500000004]]},"id":"8844c0b09dfffff-13bdf71b42db3bdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75086280000001,32.8238165]},"id":"8f44c0b09d7615e-17f5f73ec06e6436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09d7615e-17f5f73ec06e6436","8f44c0b09d55469-13f5f74fc20edcab"]},"geometry":{"type":"LineString","coordinates":[[-83.7508356,32.825044500000004],[-83.75086280000001,32.8238165]]},"id":"8944c0b09d7ffff-17f5f74745708c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0304b151-13df7c74e0f486f3","8f44c0b033ac4e3-17f7fcc30b876d1a"]},"geometry":{"type":"LineString","coordinates":[[-83.70272800000001,32.790633],[-83.702809,32.790253],[-83.70284000000001,32.790045],[-83.702853,32.789391]]},"id":"8844c0b033fffff-13dfdc8a67974bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0304b151-13df7c74e0f486f3","8f44c0b0304c69a-17b6fc730e5186b6"]},"geometry":{"type":"LineString","coordinates":[[-83.702853,32.789391],[-83.70285600000001,32.788715]]},"id":"8a44c0b0304ffff-13967c73f84e8feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0304186e-17be7c6e064846da","8f44c0b0304c69a-17b6fc730e5186b6"]},"geometry":{"type":"LineString","coordinates":[[-83.70285600000001,32.788715],[-83.702864,32.788119]]},"id":"8944c0b0307ffff-17fefc708ba94d4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.702883,32.7869885]},"id":"8f44c0b030607b0-13ffdc62290d91be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b030607b0-13ffdc62290d91be","8f44c0b0304186e-17be7c6e064846da"]},"geometry":{"type":"LineString","coordinates":[[-83.702864,32.788119],[-83.702869,32.787995],[-83.70287,32.787875],[-83.702871,32.787698],[-83.702878,32.787422],[-83.702883,32.7869885]]},"id":"8944c0b0307ffff-17df7c674e5d295f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70288500000001,32.786599]},"id":"8f44c0b03066a04-139e7c60ee7209c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03066a04-139e7c60ee7209c2","8f44c0b030607b0-13ffdc62290d91be"]},"geometry":{"type":"LineString","coordinates":[[-83.702883,32.7869885],[-83.70288500000001,32.786599]]},"id":"8a44c0b03067fff-13967c61880666a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0612c695-1796fb33839a99bc","8f44c0b06125104-13b77b41e6ddeaca"]},"geometry":{"type":"LineString","coordinates":[[-83.69023700000001,32.744245],[-83.690257,32.744307],[-83.69027200000001,32.744422],[-83.690253,32.745004],[-83.69026000000001,32.745227]]},"id":"8944c0b0613ffff-17d6fb3342507aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06b9b594-17f7729fe20322b3","8f44c0b0612c695-1796fb33839a99bc"]},"geometry":{"type":"LineString","coordinates":[[-83.69026000000001,32.745227],[-83.690281,32.745344],[-83.690318,32.7455],[-83.690425,32.745728],[-83.690505,32.745879],[-83.690725,32.746251],[-83.690847,32.746437],[-83.691125,32.74692],[-83.691186,32.747062],[-83.691207,32.747143],[-83.69122800000001,32.74727],[-83.691236,32.747453],[-83.691241,32.747833],[-83.691246,32.747906],[-83.691264,32.747979],[-83.691291,32.748041],[-83.69132300000001,32.748091],[-83.69137400000001,32.748144],[-83.691433,32.74819],[-83.691488,32.748223],[-83.69153100000001,32.748241],[-83.691671,32.748263],[-83.69190300000001,32.748271],[-83.692143,32.748267000000006],[-83.693021,32.748268],[-83.69377300000001,32.748264]]},"id":"8744c0b06ffffff-13bf77e8f08fc8ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06b9b594-17f7729fe20322b3","8f44c0b06b11b49-13fee9660acf9145"]},"geometry":{"type":"LineString","coordinates":[[-83.69377300000001,32.748264],[-83.695034,32.748266],[-83.695294,32.748269],[-83.695812,32.748266],[-83.696413,32.748269],[-83.696988,32.748266],[-83.697111,32.748261],[-83.697186,32.748251],[-83.697235,32.748238],[-83.697321,32.748195],[-83.697432,32.748099],[-83.69748,32.748027],[-83.69750300000001,32.747978],[-83.69752100000001,32.747908],[-83.69752700000001,32.747839],[-83.697535,32.747614],[-83.69754300000001,32.746589],[-83.697552,32.746433]]},"id":"8844c0b06bfffff-17be6ca570722557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71117810000001,32.8208111]},"id":"8f44c0b0a11a155-179ef821b7fe5e4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122142,32.8208232]},"id":"8f44c0b0a11d242-1796c59a28bdbad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a11d242-1796c59a28bdbad5","8f44c0b0a11a155-179ef821b7fe5e4d"]},"geometry":{"type":"LineString","coordinates":[[-83.71117810000001,32.8208111],[-83.711957,32.820819],[-83.7122142,32.8208232]]},"id":"8a44c0b0a11ffff-179666ddec362a9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a10d8e6-179f5277ae96463c","8f44c0b0a11d242-1796c59a28bdbad5"]},"geometry":{"type":"LineString","coordinates":[[-83.7122142,32.8208232],[-83.712692,32.820831000000005],[-83.712968,32.82083],[-83.713094,32.820822],[-83.71330300000001,32.820749],[-83.713396,32.820703],[-83.713481,32.820647],[-83.7134982,32.8206325]]},"id":"8944c0b0a13ffff-1796d3fe35779b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648195,32.853347]},"id":"8f44c0a3541549d-17ffe1e62e5c5a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3541549d-17ffe1e62e5c5a2f","8f44c0a3541eccb-17f6e210ad432fac"]},"geometry":{"type":"LineString","coordinates":[[-83.648195,32.853347],[-83.64815200000001,32.853724],[-83.648127,32.854129]]},"id":"8944c0a3543ffff-17f6e1fe950a4086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648172,32.854528]},"id":"8f44c0a3541a8f0-13f6e1f4812ed589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3541eccb-17f6e210ad432fac","8f44c0a3541a8f0-13f6e1f4812ed589"]},"geometry":{"type":"LineString","coordinates":[[-83.648127,32.854129],[-83.64811300000001,32.854444],[-83.648127,32.854477],[-83.648172,32.854528]]},"id":"8a44c0a3541ffff-17fee2120234da41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55473470000001,32.8203703]},"id":"8f44c0b817008a8-17fff612ded89ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55442070000001,32.820799300000004]},"id":"8f44c0b81703c8d-1797d6d71ceb65a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b817008a8-17fff612ded89ad0","8f44c0b81703c8d-1797d6d71ceb65a2"]},"geometry":{"type":"LineString","coordinates":[[-83.55473470000001,32.8203703],[-83.55468300000001,32.820531],[-83.5546451,32.820620500000004],[-83.5545951,32.8206895],[-83.55450300000001,32.820748900000005],[-83.55442070000001,32.820799300000004]]},"id":"8a44c0b81707fff-1797d65eb7818563"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea98142-1797e9e66ab4e31b","8f44c0b1eab0c63-13dfc9cae033616f"]},"geometry":{"type":"LineString","coordinates":[[-83.65802500000001,32.798499],[-83.65804100000001,32.797969],[-83.658057,32.797686],[-83.658055,32.797126],[-83.65806900000001,32.796338]]},"id":"8944c0b1eabffff-17f6e9d5c6c07bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eab0c63-13dfc9cae033616f","8f44c0b1eb912c8-17f6e85e876ed5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.65806900000001,32.796338],[-83.658168,32.796076],[-83.658652,32.794967]]},"id":"8844c0b1ebfffff-13b7f9180a32eaa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64161100000001,32.830128]},"id":"8f44c0a34d68b8c-17def1f928a2bb84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d48608-179ff454e97948a5","8f44c0a34d68b8c-17def1f928a2bb84"]},"geometry":{"type":"LineString","coordinates":[[-83.640645,32.831272000000006],[-83.64161100000001,32.830128]]},"id":"8944c0a34d7ffff-17b7f3270f2cce1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34995cda-139fefb66d907c3a","8f44c0a34d68b8c-17def1f928a2bb84"]},"geometry":{"type":"LineString","coordinates":[[-83.64161100000001,32.830128],[-83.642537,32.828995]]},"id":"8844c0a349fffff-13fff0d7ceaca577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64358,32.827813]},"id":"8f44c0b1a65b206-17b7ed2a87a5b990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34995cda-139fefb66d907c3a","8f44c0b1a65b206-17b7ed2a87a5b990"]},"geometry":{"type":"LineString","coordinates":[[-83.642537,32.828995],[-83.64358,32.827813]]},"id":"8944c0a349bffff-139eee7070802c5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a65d871-17b6eb85e4dcc395","8f44c0b1a65b206-17b7ed2a87a5b990"]},"geometry":{"type":"LineString","coordinates":[[-83.64358,32.827813],[-83.644253,32.827015]]},"id":"8a44c0b1a65ffff-17bfec583c03e24c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a643b6e-17feeaee08b2cfcb","8f44c0b1a65d871-17b6eb85e4dcc395"]},"geometry":{"type":"LineString","coordinates":[[-83.644253,32.827015],[-83.644496,32.826692]]},"id":"8944c0b1a67ffff-17dffb39fc5e5168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c2c000-17b7f264eb636917","8f44c0b18c10954-17dff8c1a95be1c4"]},"geometry":{"type":"LineString","coordinates":[[-83.665047,32.804115],[-83.665851,32.804101],[-83.667653,32.804079]]},"id":"8944c0b18c3ffff-17bff5934db7dabc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18c2c000-17b7f264eb636917","8f44c0b18d5165e-17bff03bcab2bd35"]},"geometry":{"type":"LineString","coordinates":[[-83.667653,32.804079],[-83.66853800000001,32.804063]]},"id":"8844c0b18dfffff-17b6f1505581e6ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d5165e-17bff03bcab2bd35","8f44c0b18d6a2a3-179feb98e8b1c917"]},"geometry":{"type":"LineString","coordinates":[[-83.66853800000001,32.804063],[-83.66902400000001,32.804062],[-83.670437,32.804038000000006]]},"id":"8944c0b18d7ffff-17b7edea5d907389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18d69b35-1797e91e8c29dca9","8f44c0b18d6a2a3-179feb98e8b1c917"]},"geometry":{"type":"LineString","coordinates":[[-83.670437,32.804038000000006],[-83.671452,32.804031]]},"id":"8a44c0b18d6ffff-179fba5bbfd4e224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1899aa82-1797a82cab7c9e8c","8f44c0b18d69b35-1797e91e8c29dca9"]},"geometry":{"type":"LineString","coordinates":[[-83.671452,32.804031],[-83.671839,32.804025]]},"id":"8844c0b189fffff-1797a8a595b123a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1899aa82-1797a82cab7c9e8c","8f44c0b1898840d-1797e4760a8b6dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.671839,32.804025],[-83.67336,32.804003]]},"id":"8944c0b189bffff-179ee6515ffb8dd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1898840d-1797e4760a8b6dd8","8f44c0b188366d0-17fea2136bddd03c"]},"geometry":{"type":"LineString","coordinates":[[-83.67336,32.804003],[-83.67433700000001,32.803984]]},"id":"8844c0b189fffff-17fff344b0dd8a65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67481400000001,32.803987]},"id":"8f44c0b18830c62-17ffe0e942ab3024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18830c62-17ffe0e942ab3024","8f44c0b188366d0-17fea2136bddd03c"]},"geometry":{"type":"LineString","coordinates":[[-83.67433700000001,32.803984],[-83.67481400000001,32.803987]]},"id":"8a44c0b18837fff-17fef17e53f604d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638585,32.820281]},"id":"8f44c0b1a7b6a21-17d7f95c677d9d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7b6a21-17d7f95c677d9d66","8f44c0b1a7b54e9-17fff83fdd70262d"]},"geometry":{"type":"LineString","coordinates":[[-83.638585,32.820281],[-83.6390403,32.8205558]]},"id":"8a44c0b1a7b7fff-179ff8ce2e8c1877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63972700000001,32.820912]},"id":"8f44c0b1a7a2adc-17def692a3b66c9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7a2adc-17def692a3b66c9b","8f44c0b1a7b54e9-17fff83fdd70262d"]},"geometry":{"type":"LineString","coordinates":[[-83.6390403,32.8205558],[-83.63972700000001,32.820912]]},"id":"8944c0b1a7bffff-17def76932050a98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7a2adc-17def692a3b66c9b","8f44c0b1a7ac4b0-17f6f4b022ef4a70"]},"geometry":{"type":"LineString","coordinates":[[-83.63972700000001,32.820912],[-83.640499,32.821354]]},"id":"8944c0b1a7bffff-17def5a1608fc9a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7ac4b0-17f6f4b022ef4a70","8f44c0b1a7ad04c-13dff300ebe79131"]},"geometry":{"type":"LineString","coordinates":[[-83.640499,32.821354],[-83.64118900000001,32.821756]]},"id":"8a44c0b1a7affff-17dff3d8838eef05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65148900000001,32.800424]},"id":"8f44c0b1e0d97a9-17dfd9db698b3479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3b2604-17f7d56c67462061","8f44c0b1e0d97a9-17dfd9db698b3479"]},"geometry":{"type":"LineString","coordinates":[[-83.65148900000001,32.800424],[-83.651877,32.800443],[-83.653305,32.800466]]},"id":"8744c0b1effffff-17dfd7a40230260e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3a2088-17f6d219c1c2cbb4","8f44c0b1e3b2604-17f7d56c67462061"]},"geometry":{"type":"LineString","coordinates":[[-83.653305,32.800466],[-83.654666,32.80049]]},"id":"8944c0b1e3bffff-17fed3c31312c6ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3a2088-17f6d219c1c2cbb4","8f44c0b1e3104d9-179eee16e3347c0c"]},"geometry":{"type":"LineString","coordinates":[[-83.654666,32.80049],[-83.655061,32.800494],[-83.65603700000001,32.800516],[-83.65630900000001,32.800525]]},"id":"8844c0b1e3fffff-17ffd018456e4399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e30046b-17d6eaa1e12303e6","8f44c0b1e3104d9-179eee16e3347c0c"]},"geometry":{"type":"LineString","coordinates":[[-83.65630900000001,32.800525],[-83.65651600000001,32.800539],[-83.656602,32.800559],[-83.656726,32.800573],[-83.657725,32.800615]]},"id":"8944c0b1e33ffff-17bedc5d0c2c6edd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65876630000001,32.8006881]},"id":"8f44c0b1e32a8e6-17fed8171094e634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e30046b-17d6eaa1e12303e6","8f44c0b1e32a8e6-17fed8171094e634"]},"geometry":{"type":"LineString","coordinates":[[-83.657725,32.800615],[-83.65876630000001,32.8006881]]},"id":"8944c0b1e33ffff-17d7c95c8a1f2e8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ead99a3-1797e2e368e72244","8f44c0b1eacd09b-17d7bfbe699c10c9"]},"geometry":{"type":"LineString","coordinates":[[-83.660897,32.800933],[-83.66104100000001,32.800948000000005],[-83.66218500000001,32.800856]]},"id":"8944c0b1eafffff-17f6f150f480a298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663465,32.800719]},"id":"8f44c0b18db5d85-1797fc9e62d3b456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eacd09b-17d7bfbe699c10c9","8f44c0b18db5d85-1797fc9e62d3b456"]},"geometry":{"type":"LineString","coordinates":[[-83.66218500000001,32.800856],[-83.662636,32.800827000000005],[-83.66309000000001,32.800784],[-83.663393,32.800745],[-83.663465,32.800719]]},"id":"8844c0b1ebfffff-17b6be2cb565918a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23c8b843-13de83b141da8d48","8f44c0a235350d0-13ffe7ae886e7d4b"]},"geometry":{"type":"LineString","coordinates":[[-83.68514800000001,32.881379],[-83.685355,32.881256],[-83.685569,32.881144],[-83.68574600000001,32.881068],[-83.68597700000001,32.880986],[-83.686121,32.880947],[-83.68636000000001,32.88092],[-83.686487,32.880913],[-83.68678200000001,32.880916]]},"id":"8744c0a23ffffff-13b7c5bf8cb7437f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23c73848-17d6f83aefda5beb","8f44c0a23c8b843-13de83b141da8d48"]},"geometry":{"type":"LineString","coordinates":[[-83.68678200000001,32.880916],[-83.68742800000001,32.88093],[-83.687865,32.880951],[-83.68853800000001,32.880969],[-83.688857,32.880965],[-83.688972,32.880938],[-83.689103,32.880885],[-83.689237,32.880811],[-83.689537,32.880585],[-83.68966900000001,32.880476],[-83.689732,32.880432],[-83.68987,32.880392],[-83.689965,32.880358],[-83.69007400000001,32.88035],[-83.690233,32.880366],[-83.690506,32.880437],[-83.690673,32.88047],[-83.690804,32.880473],[-83.690903,32.880462],[-83.691136,32.880412],[-83.691247,32.880384],[-83.691477,32.880308]]},"id":"8844c0a23dfffff-13d77de77cb269ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685713,32.900236]},"id":"8f44c0a05d5a189-17f7864d6539eb04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d5a189-17f7864d6539eb04","8f44c0a05d5eb9d-17fe859a301a64f4"]},"geometry":{"type":"LineString","coordinates":[[-83.685713,32.900236],[-83.68594300000001,32.899904],[-83.68599970000001,32.8998088]]},"id":"8a44c0a05d5ffff-17f785f236742a5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68608800000001,32.899641700000004]},"id":"8f44c0a05d5c5b3-17969563019b313f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d5eb9d-17fe859a301a64f4","8f44c0a05d5c5b3-17969563019b313f"]},"geometry":{"type":"LineString","coordinates":[[-83.68599970000001,32.8998088],[-83.686064,32.899701],[-83.68608800000001,32.899641700000004]]},"id":"8a44c0a05d5ffff-17bfb57cc67d0c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862189,32.899300600000004]},"id":"8f44c0a05d4248e-17bee51137c98322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d4248e-17bee51137c98322","8f44c0a05d5c5b3-17969563019b313f"]},"geometry":{"type":"LineString","coordinates":[[-83.68608800000001,32.899641700000004],[-83.686211,32.899338],[-83.6862189,32.899300600000004]]},"id":"8944c0a05d7ffff-179e853853d525ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862682,32.8989241]},"id":"8f44c0a05d55bae-17d794f260b7296b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d4248e-17bee51137c98322","8f44c0a05d55bae-17d794f260b7296b"]},"geometry":{"type":"LineString","coordinates":[[-83.6862189,32.899300600000004],[-83.686227,32.899262],[-83.68626400000001,32.898974],[-83.6862682,32.8989241]]},"id":"8a44c0a05d57fff-17bff50056f5d803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6863,32.8985446]},"id":"8f44c0a05d73064-13d6e4de841d6827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d73064-13d6e4de841d6827","8f44c0a05d55bae-17d794f260b7296b"]},"geometry":{"type":"LineString","coordinates":[[-83.6862682,32.8989241],[-83.6863,32.8985446]]},"id":"8944c0a05d7ffff-17def4e8754a1760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6863548,32.897961200000005]},"id":"8f44c0a05d70894-13ffc4bc4763a317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d70894-13ffc4bc4763a317","8f44c0a05d73064-13d6e4de841d6827"]},"geometry":{"type":"LineString","coordinates":[[-83.6863,32.8985446],[-83.686324,32.898259],[-83.6863548,32.897961200000005]]},"id":"8a44c0a05d77fff-13b684ce46c8a7d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68641620000001,32.897594000000005]},"id":"8f44c0a05d741b5-1396c495edf5e160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d70894-13ffc4bc4763a317","8f44c0a05d741b5-1396c495edf5e160"]},"geometry":{"type":"LineString","coordinates":[[-83.6863548,32.897961200000005],[-83.686378,32.897736],[-83.686406,32.897624],[-83.68641620000001,32.897594000000005]]},"id":"8a44c0a05d77fff-13f6a4adb4c2c71d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864419,32.897518000000005]},"id":"8f44c0a05d74d59-13d6c485d284abc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d741b5-1396c495edf5e160","8f44c0a05d74d59-13d6c485d284abc7"]},"geometry":{"type":"LineString","coordinates":[[-83.68641620000001,32.897594000000005],[-83.6864419,32.897518000000005]]},"id":"8b44c0a05d74fff-13fe848dd05730f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05d74d59-13d6c485d284abc7","8f44c0a236f32ad-17d7c2d5ebbdd903"]},"geometry":{"type":"LineString","coordinates":[[-83.6864419,32.897518000000005],[-83.686492,32.89737],[-83.68668600000001,32.896921],[-83.68683700000001,32.896552],[-83.68689900000001,32.89638],[-83.687133,32.89567]]},"id":"8644c0a07ffffff-1796a3a4f795456b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68730330000001,32.8951688]},"id":"8f44c0a236f0301-139e826b77c207c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a236f0301-139e826b77c207c0","8f44c0a236f32ad-17d7c2d5ebbdd903"]},"geometry":{"type":"LineString","coordinates":[[-83.687133,32.89567],[-83.68730330000001,32.8951688]]},"id":"8a44c0a236f7fff-17b7a2a0a3bab6f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69174260000001,32.8883634]},"id":"8f44c0a230f2189-13ff7794e1e6fa66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230f2189-13ff7794e1e6fa66","8f44c0a230e0c42-13de7339057387f9"]},"geometry":{"type":"LineString","coordinates":[[-83.693528,32.888288],[-83.6931479,32.8882445],[-83.692727,32.8881913],[-83.692519,32.888185],[-83.69239400000001,32.888191],[-83.692231,32.888219],[-83.691964,32.888291],[-83.69174260000001,32.8883634]]},"id":"8944c0a230fffff-13bef56b29cdc26c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230f2189-13ff7794e1e6fa66","8f44c0a23713155-17f7c07c01a31b55"]},"geometry":{"type":"LineString","coordinates":[[-83.69174260000001,32.8883634],[-83.69141,32.888533],[-83.69113800000001,32.88868],[-83.690684,32.888958],[-83.69046200000001,32.889066],[-83.69029900000001,32.889134],[-83.690149,32.889173],[-83.689873,32.889211],[-83.68919000000001,32.88926],[-83.688991,32.88929],[-83.688784,32.889342],[-83.688579,32.889415],[-83.688445,32.889477],[-83.688254,32.889591],[-83.68809800000001,32.889694],[-83.688066,32.889732],[-83.688041,32.889781],[-83.688038,32.889865],[-83.688096,32.890406]]},"id":"8744c0a23ffffff-179f7cb3e424f95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68812700000001,32.890898]},"id":"8f44c0a237ada0b-13bfc068a2481d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23713155-17f7c07c01a31b55","8f44c0a237ada0b-13bfc068a2481d10"]},"geometry":{"type":"LineString","coordinates":[[-83.688096,32.890406],[-83.688113,32.89058],[-83.68812700000001,32.890898]]},"id":"8944c0a2373ffff-1397e0707b2c5a8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6271873,32.813279]},"id":"8f44c0ba99a8c09-13bf752ff3096ba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6271162,32.8142943]},"id":"8f44c0ba998dab3-17b7f55c68b3c057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba99a8c09-13bf752ff3096ba9","8f44c0ba998dab3-17b7f55c68b3c057"]},"geometry":{"type":"LineString","coordinates":[[-83.6271873,32.813279],[-83.6268089,32.813949300000004],[-83.6267993,32.814027800000005],[-83.62686640000001,32.8141385],[-83.6269462,32.814219800000004],[-83.6271162,32.8142943]]},"id":"8944c0ba99bffff-1797f5ba4adac817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6283028,32.8148071]},"id":"8f44c0ba9831168-17f77276cf83ce3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9831168-17f77276cf83ce3c","8f44c0ba998dab3-17b7f55c68b3c057"]},"geometry":{"type":"LineString","coordinates":[[-83.6271162,32.8142943],[-83.6281481,32.814746500000005],[-83.6283028,32.8148071]]},"id":"8844c0ba99fffff-17d7f3ea48ea1053"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62901310000001,32.8151014]},"id":"8f44c0ba98230c2-139f70badd024d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9831168-17f77276cf83ce3c","8f44c0ba98230c2-139f70badd024d4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6283028,32.8148071],[-83.62901310000001,32.8151014]]},"id":"8944c0ba983ffff-17d77198d5c6ac8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0169ca65-17bfbfd4c488a2fa","8f44c0b01699996-13973fd9ceeccb94"]},"geometry":{"type":"LineString","coordinates":[[-83.714578,32.788521],[-83.71457000000001,32.789048]]},"id":"8a44c0b0169ffff-17de7fd74b87d9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01699996-13973fd9ceeccb94","8f44c0b0ed26a83-13b6ffe78b056840"]},"geometry":{"type":"LineString","coordinates":[[-83.71457000000001,32.789048],[-83.71454800000001,32.78971]]},"id":"8844c0b017fffff-13d7ffe0af3572a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed23443-13ffffef05f9f820","8f44c0b0ed26a83-13b6ffe78b056840"]},"geometry":{"type":"LineString","coordinates":[[-83.71454800000001,32.78971],[-83.71453600000001,32.79047]]},"id":"8a44c0b0ed27fff-139e7feb478fb972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed08506-17b7400943b85bef","8f44c0b0ed23443-13ffffef05f9f820"]},"geometry":{"type":"LineString","coordinates":[[-83.71453600000001,32.79047],[-83.714494,32.79197]]},"id":"8944c0b0ed3ffff-17d6bffc20c79485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ed08506-17b7400943b85bef","8f44c0b0ec25885-13bee01849cf3080"]},"geometry":{"type":"LineString","coordinates":[[-83.714494,32.79197],[-83.71447,32.792795000000005]]},"id":"8844c0b0edfffff-13b75010c76f96f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec25885-13bee01849cf3080","8f44c0b0ec21346-13de40224febf6e1"]},"geometry":{"type":"LineString","coordinates":[[-83.71447,32.792795000000005],[-83.714454,32.793488]]},"id":"8944c0b0ec3ffff-1397701d47f051bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec21346-13de40224febf6e1","8f44c0b0ec2ea60-17bfe02b0fdfe077"]},"geometry":{"type":"LineString","coordinates":[[-83.714454,32.793488],[-83.71444000000001,32.793827]]},"id":"8a44c0b0ec2ffff-13d7f026aa24e589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec0dab3-179760418888f62a","8f44c0b0ec2ea60-17bfe02b0fdfe077"]},"geometry":{"type":"LineString","coordinates":[[-83.71444000000001,32.793827],[-83.714422,32.794651],[-83.714404,32.794991]]},"id":"8944c0b0ec3ffff-179ff033f2ac4f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec0dab3-179760418888f62a","8f44c0b0eced36b-17f6405d008a09d0"]},"geometry":{"type":"LineString","coordinates":[[-83.714404,32.794991],[-83.71440600000001,32.795265],[-83.71436,32.797184]]},"id":"8844c0b0edfffff-13b6f04cfa35456f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec5a4dc-17f64077487f1ad6","8f44c0b0eced36b-17f6405d008a09d0"]},"geometry":{"type":"LineString","coordinates":[[-83.71436,32.797184],[-83.714318,32.797418]]},"id":"8944c0b0ec7ffff-17bf606a2e27d4d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.658968,32.846272]},"id":"8f44c0a35d6875e-17bec79909c57901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d6875e-17bec79909c57901","8f44c0b1b6cb096-17f7c7b20d1388db"]},"geometry":{"type":"LineString","coordinates":[[-83.658968,32.846272],[-83.658928,32.84452]]},"id":"8744c0a35ffffff-1396c7a5805252b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6cbcc8-17bfe7a76b9f724d","8f44c0b1b6cb096-17f7c7b20d1388db"]},"geometry":{"type":"LineString","coordinates":[[-83.658928,32.84452],[-83.658945,32.844437]]},"id":"8b44c0b1b6cbfff-17d7d7acbfb8358b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6ce90a-17b6c7b5c39c826d","8f44c0b1b6cbcc8-17bfe7a76b9f724d"]},"geometry":{"type":"LineString","coordinates":[[-83.658945,32.844437],[-83.658922,32.843578]]},"id":"8a44c0b1b6cffff-17b6f7ae93976355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6589184,32.8429675]},"id":"8f44c0b1b6c5712-17b6f7b8041efa29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6ce90a-17b6c7b5c39c826d","8f44c0b1b6c5712-17b6f7b8041efa29"]},"geometry":{"type":"LineString","coordinates":[[-83.658922,32.843578],[-83.6589184,32.8429675]]},"id":"8944c0b1b6fffff-17f7f7b6e7f43284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72482810000001,32.8317795]},"id":"8f44c0b0bc032ad-13d636ce766649dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bcc070e-17ffe8e945f9ba7e","8f44c0b0bc032ad-13d636ce766649dc"]},"geometry":{"type":"LineString","coordinates":[[-83.723966,32.834294],[-83.72444700000001,32.833973],[-83.724601,32.833878],[-83.72467,32.833829],[-83.72475,32.833764],[-83.72484200000001,32.833674],[-83.724885,32.83363],[-83.72493100000001,32.833561],[-83.724968,32.833489],[-83.725021,32.833364],[-83.72504,32.833233],[-83.725037,32.833105],[-83.725002,32.832932],[-83.72487600000001,32.832492],[-83.72483000000001,32.832257000000006],[-83.72481300000001,32.832039],[-83.72481400000001,32.83191],[-83.72482810000001,32.8317795]]},"id":"8844c0b0bdfffff-17d67704fd058979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7252069,32.8308397]},"id":"8f44c0b0bc04acd-179ef5e1bd777a61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bc032ad-13d636ce766649dc","8f44c0b0bc04acd-179ef5e1bd777a61"]},"geometry":{"type":"LineString","coordinates":[[-83.72482810000001,32.8317795],[-83.72483700000001,32.831697000000005],[-83.72486500000001,32.831547],[-83.724928,32.831345],[-83.724997,32.831184],[-83.72511300000001,32.830978],[-83.7252069,32.8308397]]},"id":"8a44c0b0bc07fff-17b6667275c16598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50906332-17dff8bda0b1e17e","8f44c0b50930d43-17f5b99360580eec"]},"geometry":{"type":"LineString","coordinates":[[-83.76991100000001,32.860671],[-83.76970700000001,32.860442],[-83.76962400000001,32.860343],[-83.76957200000001,32.860267],[-83.76953300000001,32.860155],[-83.769513,32.859983],[-83.769512,32.859915],[-83.76952,32.859803],[-83.769543,32.859727],[-83.769569,32.859676]]},"id":"8944c0b5093ffff-17bff96f799d5f73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77068700000001,32.856116]},"id":"8f44c0b5439a282-17d5b6d8a1423b6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50930d43-17f5b99360580eec","8f44c0b5439a282-17d5b6d8a1423b6f"]},"geometry":{"type":"LineString","coordinates":[[-83.769569,32.859676],[-83.769711,32.85947],[-83.76984800000001,32.859285],[-83.76993,32.859157],[-83.769969,32.859071],[-83.77003900000001,32.858849],[-83.770048,32.858753],[-83.770044,32.858615],[-83.76993200000001,32.857218],[-83.76992600000001,32.857],[-83.76993800000001,32.856859],[-83.76996100000001,32.856769],[-83.770031,32.856639],[-83.770132,32.856519],[-83.77023200000001,32.856426],[-83.77038800000001,32.856313],[-83.770611,32.85618],[-83.77068700000001,32.856116]]},"id":"8744c0b54ffffff-13f5b8779a7367f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3425ab2a-139fe5a7622b0d5c","8f44c0a34259334-17d6e3eec6bb9518"]},"geometry":{"type":"LineString","coordinates":[[-83.646657,32.849276],[-83.647362,32.849597]]},"id":"8a44c0a3425ffff-13f7f4cb111e8966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3424b644-17bee2376424b309","8f44c0a34259334-17d6e3eec6bb9518"]},"geometry":{"type":"LineString","coordinates":[[-83.647362,32.849597],[-83.648065,32.849936]]},"id":"8944c0a3427ffff-17d6f31311a5091e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648594,32.850214]},"id":"8f44c0a35516356-17d7e0ecc22c9f9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3424b644-17bee2376424b309","8f44c0a35516356-17d7e0ecc22c9f9f"]},"geometry":{"type":"LineString","coordinates":[[-83.648065,32.849936],[-83.648594,32.850214]]},"id":"8844c0a355fffff-1796e19219aef319"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eb92c5d-17b6cab5e0b6f4c0","8f44c0b1e15e11e-13b7f11202bead95"]},"geometry":{"type":"LineString","coordinates":[[-83.655088,32.795859],[-83.65517700000001,32.79572],[-83.65531100000001,32.795431],[-83.655395,32.795277],[-83.655409,32.795261],[-83.655426,32.795249000000005],[-83.655477,32.795234],[-83.656948,32.795287],[-83.657016,32.795285],[-83.65705700000001,32.795281],[-83.65712500000001,32.795254],[-83.65716,32.795231],[-83.65717500000001,32.795214],[-83.657521,32.794694],[-83.65769300000001,32.79442]]},"id":"8944c0b1e17ffff-1796eddab2604b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1eb92c5d-17b6cab5e0b6f4c0","8f44c0b1e8cd1a2-1396c9d6cfff2706"]},"geometry":{"type":"LineString","coordinates":[[-83.65769300000001,32.79442],[-83.657876,32.794136],[-83.657902,32.794085],[-83.657916,32.794047],[-83.65795100000001,32.793912],[-83.65805,32.793146]]},"id":"8744c0b1effffff-179ffa20970c6b82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70921700000001,32.7817662]},"id":"8f44c0b03b34514-17bfeceb68b24417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03b34514-17bfeceb68b24417","8f44c0b01499344-17d7e9b4e7ff1c6f"]},"geometry":{"type":"LineString","coordinates":[[-83.70921700000001,32.7817662],[-83.71053300000001,32.781779]]},"id":"8744c0b03ffffff-17bfeb5029ad16b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7115665,32.781799]},"id":"8f44c0b0148944c-17d6672ef9cefb57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0148944c-17d6672ef9cefb57","8f44c0b01499344-17d7e9b4e7ff1c6f"]},"geometry":{"type":"LineString","coordinates":[[-83.71053300000001,32.781779],[-83.7115665,32.781799]]},"id":"8944c0b014bffff-17de6871f56a61ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75474600000001,32.831525]},"id":"8f44c0b0910db53-13b7fdc3ce0d2e2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7608613,32.825538]},"id":"8f44c0b0994696d-139dced5bc4560d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0994696d-139dced5bc4560d5","8f44c0b0910db53-13b7fdc3ce0d2e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.75474600000001,32.831525],[-83.75491600000001,32.831342],[-83.755885,32.830422],[-83.756208,32.830097],[-83.756448,32.829797],[-83.756535,32.829665],[-83.75667700000001,32.829411],[-83.75707700000001,32.828634],[-83.757164,32.828449],[-83.757344,32.828117],[-83.75744800000001,32.827969],[-83.75752100000001,32.827872],[-83.757614,32.82777],[-83.75771800000001,32.827668],[-83.75784300000001,32.827558],[-83.75806,32.82741],[-83.75961000000001,32.826546],[-83.759922,32.826366],[-83.76024000000001,32.826149],[-83.760436,32.825992],[-83.76060600000001,32.825834],[-83.760793,32.825626],[-83.7608613,32.825538]]},"id":"8744c0b09ffffff-13fdf6ac9e084357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0994696d-139dced5bc4560d5","8f44c0b09944cb2-13d7fe982683fade"]},"geometry":{"type":"LineString","coordinates":[[-83.7608613,32.825538],[-83.76095980000001,32.8254271]]},"id":"8b44c0b09944fff-13f7eeb6f1a6698b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d2d5c45-1395ee80eed486a3","8f44c0b09944cb2-13d7fe982683fade"]},"geometry":{"type":"LineString","coordinates":[[-83.76095980000001,32.8254271],[-83.761087,32.825201],[-83.761216,32.824966],[-83.76130300000001,32.824742],[-83.761352,32.824539],[-83.761381,32.82423],[-83.761379,32.824056],[-83.761359,32.823893000000005],[-83.761302,32.823638],[-83.76102200000001,32.822733],[-83.760997,32.822665]]},"id":"8644c0b0fffffff-17ffedf1728be1e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d2d5c45-1395ee80eed486a3","8f44c0b0d2f2324-13b7eec0ac9f16a1"]},"geometry":{"type":"LineString","coordinates":[[-83.760997,32.822665],[-83.76092700000001,32.822395],[-83.760901,32.822218],[-83.760895,32.822077]]},"id":"8944c0b0d2fffff-13dffea92cdc5b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d2060ea-13dfeb35c899055f","8f44c0b0d2f2324-13b7eec0ac9f16a1"]},"geometry":{"type":"LineString","coordinates":[[-83.760895,32.822077],[-83.760903,32.821911],[-83.76092100000001,32.821821],[-83.76095600000001,32.821691],[-83.761008,32.821548],[-83.761081,32.821404],[-83.761159,32.821284],[-83.76148,32.820849],[-83.761947,32.820234],[-83.76219400000001,32.819899],[-83.76234600000001,32.819709]]},"id":"8844c0b0d3fffff-17b5dd3a237ae83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d313c08-179debf8c955520f","8f44c0b0d2060ea-13dfeb35c899055f"]},"geometry":{"type":"LineString","coordinates":[[-83.76234600000001,32.819709],[-83.762415,32.819584],[-83.76250200000001,32.819392],[-83.76254700000001,32.819263],[-83.762572,32.819167],[-83.762586,32.819074],[-83.76259,32.818846],[-83.76257700000001,32.818727],[-83.762557,32.818616],[-83.762523,32.818497],[-83.762113,32.81736],[-83.762034,32.817121]]},"id":"8844c0b0d3fffff-13b7cb18df4a899e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d313c08-179debf8c955520f","8f44c0b0d04160c-13b7cdc0614ae0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.762034,32.817121],[-83.76197400000001,32.816975],[-83.76161300000001,32.815992],[-83.761351,32.81528],[-83.76130500000001,32.815134]]},"id":"8744c0b0dffffff-13b5fce01953aaea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d0a2c9c-13d5dc93e4a36458","8f44c0b0d04160c-13b7cdc0614ae0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.76130500000001,32.815134],[-83.76093800000001,32.814163],[-83.76085900000001,32.813964],[-83.76075300000001,32.813738],[-83.760688,32.813612],[-83.76061800000001,32.813497000000005],[-83.760452,32.81326],[-83.76035200000001,32.813138],[-83.760267,32.813042],[-83.760163,32.812936],[-83.75998,32.812775],[-83.759726,32.812573],[-83.75950800000001,32.81243],[-83.75941200000001,32.812374000000005],[-83.759299,32.812314],[-83.75899600000001,32.812184],[-83.758823,32.812114],[-83.75868600000001,32.812063],[-83.75851,32.812004],[-83.758356,32.81196],[-83.75808400000001,32.811892],[-83.757925,32.811861],[-83.757637,32.811819],[-83.757413,32.811796],[-83.75712200000001,32.811782],[-83.756926,32.811785],[-83.756691,32.811802],[-83.756172,32.811869],[-83.7555317,32.8120349],[-83.75523220000001,32.8121181]]},"id":"8844c0b0d1fffff-13bdd3f6fd56d9e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730334,32.891441]},"id":"8f44c0a2cce6349-13feb95d43be1d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc447a1-1396127dea9ee6d4","8f44c0a2cce6349-13feb95d43be1d57"]},"geometry":{"type":"LineString","coordinates":[[-83.730334,32.891441],[-83.73207500000001,32.891452],[-83.73314900000001,32.891472]]},"id":"8844c0a2cdfffff-1397d5ed8ec426aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7340958,32.891783600000004]},"id":"8f44c0a2cc6e665-13d6d02e240efed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc447a1-1396127dea9ee6d4","8f44c0a2cc6e665-13d6d02e240efed9"]},"geometry":{"type":"LineString","coordinates":[[-83.73314900000001,32.891472],[-83.73329100000001,32.891492],[-83.733417,32.891522],[-83.73359,32.891576],[-83.7337,32.891621],[-83.733953,32.891756],[-83.7340958,32.891783600000004]]},"id":"8944c0a2cc7ffff-13ff51528a55d17e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464212,32.830628000000004]},"id":"8f44c0a3482284c-1796e63acc7b72da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3482284c-1796e63acc7b72da","8f44c0a3480412d-17b6f6d21a0ee0ed"]},"geometry":{"type":"LineString","coordinates":[[-83.64617910000001,32.831078500000004],[-83.6462267,32.831026800000004],[-83.646342,32.8308855],[-83.64643260000001,32.8307027],[-83.64643500000001,32.830662000000004],[-83.6464212,32.830628000000004]]},"id":"8944c0a3483ffff-179ef6712d3d6e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3482284c-1796e63acc7b72da","8f44c0a34835a63-179ef6e99daf6113"]},"geometry":{"type":"LineString","coordinates":[[-83.6464212,32.830628000000004],[-83.64639220000001,32.830594600000005],[-83.6463492,32.8305622],[-83.6461415,32.830435300000005]]},"id":"8a44c0a34827fff-17d6f68f4bf25c22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34835a63-179ef6e99daf6113","8f44c0a34835a71-1796f6f47b3886a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6461415,32.830435300000005],[-83.64612410000001,32.8304235]]},"id":"8d44c0a34835a7f-179ee6ef058b1b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34900c1e-139ee56e30dd9c37","8f44c0a34835a71-1796f6f47b3886a2"]},"geometry":{"type":"LineString","coordinates":[[-83.64612410000001,32.8304235],[-83.6460722,32.8303877],[-83.6460351,32.830341600000004],[-83.6460122,32.8302904],[-83.6460168,32.8302339],[-83.6461433,32.8296889],[-83.64616620000001,32.8295837],[-83.6461938,32.829385900000005],[-83.6462006,32.829121300000004],[-83.6462022,32.8289635],[-83.6462363,32.828851400000005],[-83.646305,32.828720600000004],[-83.6463956,32.8286194],[-83.64648430000001,32.8285453],[-83.6465853,32.8284832],[-83.6467485,32.8284034]]},"id":"8844c0a349fffff-13f7f6b17f0562f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34900c1e-139ee56e30dd9c37","8f44c0a3490482c-1797f48d9ea5cd73"]},"geometry":{"type":"LineString","coordinates":[[-83.6467485,32.8284034],[-83.6467892,32.82837],[-83.64710790000001,32.8279677]]},"id":"8944c0a3493ffff-1396f4fba15b4fda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20173cf3-17b77e2a67a3d330","8f44c0a2015eb0d-13967e36ee0daab2"]},"geometry":{"type":"LineString","coordinates":[[-83.70215300000001,32.863653],[-83.702133,32.865031]]},"id":"8944c0a2017ffff-13d7de30a70b3e9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2004491b-17fe7da90fc81247","8f44c0a2015eb0d-13967e36ee0daab2"]},"geometry":{"type":"LineString","coordinates":[[-83.702133,32.865031],[-83.70212000000001,32.865468],[-83.70212500000001,32.865716],[-83.702139,32.865833],[-83.70216900000001,32.865946],[-83.702257,32.866123],[-83.702336,32.866351],[-83.70236700000001,32.866567],[-83.70237,32.866661],[-83.70236,32.866839]]},"id":"8844c0a201fffff-17bfddffb4d04b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2004491b-17fe7da90fc81247","8f44c0a20310c08-17f75b740a3be705"]},"geometry":{"type":"LineString","coordinates":[[-83.70236,32.866839],[-83.702332,32.867362],[-83.702285,32.868035],[-83.702268,32.868432],[-83.702268,32.868536],[-83.70227700000001,32.868623],[-83.702332,32.868859],[-83.702391,32.868952],[-83.702527,32.869069],[-83.70260900000001,32.869124],[-83.702837,32.869248],[-83.703174,32.869422],[-83.703264,32.86948]]},"id":"8744c0a20ffffff-1396fd61347168bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20303ad4-17b757fd20bb02ab","8f44c0a20310c08-17f75b740a3be705"]},"geometry":{"type":"LineString","coordinates":[[-83.703264,32.86948],[-83.703517,32.869605],[-83.70419700000001,32.869964],[-83.704683,32.870226]]},"id":"8944c0a2033ffff-17d7d9b739eb3633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20370da4-17dfd3ab8db69555","8f44c0a20303ad4-17b757fd20bb02ab"]},"geometry":{"type":"LineString","coordinates":[[-83.704683,32.870226],[-83.70495000000001,32.870379],[-83.70524300000001,32.870536],[-83.705408,32.870630000000006],[-83.705494,32.870655],[-83.70559300000001,32.870674],[-83.706452,32.8707]]},"id":"8844c0a203fffff-179e55e6cfc4b94a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8c6213-13f7e4a66582de7d","8f44c0b8b881282-17ffe922892e3c47"]},"geometry":{"type":"LineString","coordinates":[[-83.56658800000001,32.869503],[-83.566626,32.869596],[-83.56679100000001,32.86974],[-83.56795600000001,32.870716],[-83.568425,32.871118]]},"id":"8844c0b8b9fffff-17f7e6efdba679b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56984200000001,32.872303]},"id":"8f44c0b8b8cd046-13d7e130ce2cffce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8c6213-13f7e4a66582de7d","8f44c0b8b8cd046-13d7e130ce2cffce"]},"geometry":{"type":"LineString","coordinates":[[-83.568425,32.871118],[-83.56984200000001,32.872303]]},"id":"8944c0b8b8fffff-13d7b2eb9df103ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630182,32.839385]},"id":"8f44c0a344f0cf1-13f7ade0449a4a0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344f0cf1-13f7ade0449a4a0f","8f44c0a344f460c-13ffdd88cead96e6"]},"geometry":{"type":"LineString","coordinates":[[-83.630182,32.839385],[-83.630322,32.8392141]]},"id":"8a44c0a344f7fff-13b74db48daffe57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6308533,32.8386063]},"id":"8f44c0a344187b1-1397fc3cb28e97c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344f460c-13ffdd88cead96e6","8f44c0a344187b1-1397fc3cb28e97c0"]},"geometry":{"type":"LineString","coordinates":[[-83.630322,32.8392141],[-83.63036530000001,32.8391639],[-83.6308533,32.8386063]]},"id":"8844c0a345fffff-13bfdce2d444ce79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63137160000001,32.8380037]},"id":"8f44c0a3440348c-139f5af8c7bd4166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3440348c-139f5af8c7bd4166","8f44c0a344187b1-1397fc3cb28e97c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6308533,32.8386063],[-83.63130910000001,32.8380764],[-83.63137160000001,32.8380037]]},"id":"8944c0a3443ffff-13d7ab9ab38c4e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64026600000001,32.819049]},"id":"8f44c0b1a443b05-13d7f541c4563af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a443b05-13d7f541c4563af7","8f44c0b1a44c353-13d6f36bc65d907e"]},"geometry":{"type":"LineString","coordinates":[[-83.64026600000001,32.819049],[-83.641018,32.819463]]},"id":"8944c0b1a47ffff-13d7f456cd0eff14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a44c353-13d6f36bc65d907e","8f44c0b1a732803-13b7f1bdc21e1e74"]},"geometry":{"type":"LineString","coordinates":[[-83.641018,32.819463],[-83.641706,32.819843]]},"id":"8744c0b1affffff-13bff294ca6fcd85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a70456a-17dfef4eac37cf63","8f44c0b1a732803-13b7f1bdc21e1e74"]},"geometry":{"type":"LineString","coordinates":[[-83.641706,32.819843],[-83.64270300000001,32.820495]]},"id":"8944c0b1a73ffff-17fff08633b4d6a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69437280000001,32.744722200000005]},"id":"8f44c0b068eda52-17df71290d5355bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0685d11d-17dfee6ba6bfde3c","8f44c0b068eda52-17df71290d5355bd"]},"geometry":{"type":"LineString","coordinates":[[-83.69437280000001,32.744722200000005],[-83.69452700000001,32.744723],[-83.69549500000001,32.744729]]},"id":"8a44c0b0685ffff-17df7fca56fbfc48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69645720000001,32.744742800000004]},"id":"8f44c0b0684c283-17de6c12436707d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0685d11d-17dfee6ba6bfde3c","8f44c0b0684c283-17de6c12436707d9"]},"geometry":{"type":"LineString","coordinates":[[-83.69549500000001,32.744729],[-83.69645720000001,32.744742800000004]]},"id":"8944c0b0687ffff-17d7fd3ef4a2a601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ccc5a8-17f7e0e7aeee6dfa","8f44c0a24ce3029-13bfe09708c31cc1"]},"geometry":{"type":"LineString","coordinates":[[-83.70116,32.838876],[-83.701223,32.839087],[-83.701227,32.839219],[-83.701217,32.839292],[-83.70117900000001,32.839442000000005],[-83.701143,32.839563000000005],[-83.701031,32.839993]]},"id":"8944c0a24cfffff-1396f09a78461960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ccb51e-17ff616fe90dbaf1","8f44c0a24ccc5a8-17f7e0e7aeee6dfa"]},"geometry":{"type":"LineString","coordinates":[[-83.701031,32.839993],[-83.700992,32.840173],[-83.70084200000001,32.840755],[-83.70081300000001,32.840853]]},"id":"8a44c0a24ccffff-17f7712916146021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2354079d-139ee188ca0341b6","8f44c0a234268d9-13dec845c407b9e7"]},"geometry":{"type":"LineString","coordinates":[[-83.68766600000001,32.884907000000005],[-83.687177,32.884891],[-83.68667400000001,32.884800000000006],[-83.68622900000001,32.88474],[-83.686149,32.884723],[-83.68606600000001,32.884697],[-83.68591400000001,32.884639],[-83.685743,32.884591],[-83.685557,32.884504],[-83.68537500000001,32.884404],[-83.68490600000001,32.884186]]},"id":"8844c0a235fffff-13f6b4faa8681913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a235a98cd-17f68b2246611beb","8f44c0a234268d9-13dec845c407b9e7"]},"geometry":{"type":"LineString","coordinates":[[-83.68490600000001,32.884186],[-83.68476700000001,32.884126],[-83.68452,32.883986],[-83.68432100000001,32.883889],[-83.68416300000001,32.883817],[-83.68400000000001,32.883757],[-83.683734,32.883636]]},"id":"8844c0a235fffff-139789b1aff1037e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60679,32.848229700000005]},"id":"8f44c0b8db44876-13ffd6fc46b2afe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606764,32.849637]},"id":"8f44c0b8db4e0cb-17ff670c80a694bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db44876-13ffd6fc46b2afe5","8f44c0b8db4e0cb-17ff670c80a694bb"]},"geometry":{"type":"LineString","coordinates":[[-83.60679,32.848229700000005],[-83.60678800000001,32.848841],[-83.606795,32.849227],[-83.606772,32.849475000000005],[-83.606764,32.849637]]},"id":"8944c0b8db7ffff-13b7e6fe9cff785b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606772,32.850364]},"id":"8f44c0b8da64b2d-17b7c7078b15f2e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db4e0cb-17ff670c80a694bb","8f44c0b8da64b2d-17b7c7078b15f2e7"]},"geometry":{"type":"LineString","coordinates":[[-83.606764,32.849637],[-83.606772,32.850364]]},"id":"8944c0b8db7ffff-17d7570a054f218b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da61c6b-17ff47122d5aa7bd","8f44c0b8da64b2d-17b7c7078b15f2e7"]},"geometry":{"type":"LineString","coordinates":[[-83.606772,32.850364],[-83.606755,32.851066]]},"id":"8a44c0b8da67fff-1797e70cd9718337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6e2e5-13b7d71ccef18c54","8f44c0b8da61c6b-17ff47122d5aa7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.606755,32.851066],[-83.606738,32.8517961]]},"id":"8944c0b8da7ffff-13d7771774339da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da6b798-13dfc72d04984c0c","8f44c0b8da6e2e5-13b7d71ccef18c54"]},"geometry":{"type":"LineString","coordinates":[[-83.606738,32.8517961],[-83.606712,32.852468]]},"id":"8944c0b8da7ffff-1397d724e869ccd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376684,32.9245254]},"id":"8f44c0a28361b99-13d667754d6e2b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2836c91a-13b796ab5150623e","8f44c0a28361b99-13d667754d6e2b21"]},"geometry":{"type":"LineString","coordinates":[[-83.7379915,32.924680900000006],[-83.737785,32.924577500000005],[-83.7376684,32.9245254]]},"id":"8944c0a2837ffff-13f7f70fd765b086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73758210000001,32.9245023]},"id":"8f44c0a28361154-13b7f7ab38d03c7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28361154-13b7f7ab38d03c7a","8f44c0a28361b99-13d667754d6e2b21"]},"geometry":{"type":"LineString","coordinates":[[-83.7376684,32.9245254],[-83.73758210000001,32.9245023]]},"id":"8b44c0a28361fff-13bf27903d655ecb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28345c22-17bee970dd2a0abb","8f44c0a28361154-13b7f7ab38d03c7a"]},"geometry":{"type":"LineString","coordinates":[[-83.73758210000001,32.9245023],[-83.73746820000001,32.9244895],[-83.7373529,32.9244895],[-83.7372617,32.924514300000006],[-83.73716780000001,32.9245503],[-83.737098,32.9245931],[-83.73702,32.9246485],[-83.73695930000001,32.924704000000006],[-83.7369061,32.924792000000004],[-83.7368563,32.9249006]]},"id":"8944c0a2837ffff-13ffc8adc8e291f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73666080000001,32.925516300000005]},"id":"8f44c0a28341473-17bfb9eb0eae3c51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28345c22-17bee970dd2a0abb","8f44c0a28341473-17bfb9eb0eae3c51"]},"geometry":{"type":"LineString","coordinates":[[-83.7368563,32.9249006],[-83.73675800000001,32.9250343],[-83.73671180000001,32.925181800000004],[-83.7366877,32.9252786],[-83.7366635,32.9253619],[-83.73665820000001,32.9254272],[-83.73666080000001,32.925516300000005]]},"id":"8a44c0a28347fff-17f7c9c4706eff06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7366513,32.925598]},"id":"8f44c0a28341782-17f6c9f0f91445dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28341782-17f6c9f0f91445dd","8f44c0a28341473-17bfb9eb0eae3c51"]},"geometry":{"type":"LineString","coordinates":[[-83.73666080000001,32.925516300000005],[-83.7366513,32.925598]]},"id":"8b44c0a28341fff-17df49edff11d709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28341782-17f6c9f0f91445dd","8f44c0a2834168d-1796c9ed0b5ec0b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7366513,32.925598],[-83.7366576,32.9256748]]},"id":"8c44c0a283417ff-17fec9ef04e27469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368881,32.9262238]},"id":"8f44c0a28348425-17ffe95cf91ed08d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a28348425-17ffe95cf91ed08d","8f44c0a2834168d-1796c9ed0b5ec0b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7366576,32.9256748],[-83.73667420000001,32.925771000000005],[-83.7367,32.9258559],[-83.73678500000001,32.9260322],[-83.7368881,32.9262238]]},"id":"8944c0a2837ffff-17d639af8cad5fd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59533400000001,32.851596]},"id":"8f44c0b8d05e180-13b7e2f44ee08c3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d05b076-13bf622d81664b43","8f44c0b8d05e180-13b7e2f44ee08c3a"]},"geometry":{"type":"LineString","coordinates":[[-83.59533400000001,32.851596],[-83.59546800000001,32.851928],[-83.595652,32.852418]]},"id":"8a44c0b8d05ffff-13b7f28f69605614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.596152,32.853707]},"id":"8f44c0b8d3859a6-17dfe0f5086feb5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d05b076-13bf622d81664b43","8f44c0b8d3859a6-17dfe0f5086feb5e"]},"geometry":{"type":"LineString","coordinates":[[-83.595652,32.852418],[-83.59594700000001,32.853156000000006],[-83.596152,32.853707]]},"id":"8944c0b8d3bffff-17df618eed5c1823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63846930000001,32.8448719]},"id":"8f44c0a3475c511-13def9a4b19876f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34621d96-17fefdaf4baab447","8f44c0a3475c511-13def9a4b19876f2"]},"geometry":{"type":"LineString","coordinates":[[-83.636814,32.844301],[-83.636994,32.84438],[-83.63846930000001,32.8448719]]},"id":"8844c0a347fffff-139ffbabc050dec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3475c511-13def9a4b19876f2","8f44c0a3474e4a0-13fff7ba44324306"]},"geometry":{"type":"LineString","coordinates":[[-83.63846930000001,32.8448719],[-83.63925400000001,32.845148]]},"id":"8944c0a3477ffff-13b7f8af76e5c3d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6399018,32.8453601]},"id":"8f44c0a347488a3-13fef6256a69ab43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a347488a3-13fef6256a69ab43","8f44c0a3474e4a0-13fff7ba44324306"]},"geometry":{"type":"LineString","coordinates":[[-83.63925400000001,32.845148],[-83.6399018,32.8453601]]},"id":"8a44c0a3474ffff-13bff6efd17bc37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a347488a3-13fef6256a69ab43","8f44c0a3428429c-17b6f146b6a87688"]},"geometry":{"type":"LineString","coordinates":[[-83.6399018,32.8453601],[-83.6399755,32.8453913],[-83.640054,32.845430400000005],[-83.6417005,32.8463968],[-83.6417435,32.8464157],[-83.6417902,32.8464314],[-83.64183870000001,32.8464392],[-83.6418965,32.846442800000005]]},"id":"8744c0a34ffffff-13def3b9d6ec298c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903051,32.847069600000005]},"id":"8f44c0a26b1276b-17befb175ffffef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a36d42-13f7fb23e33de01b","8f44c0a26b1276b-17befb175ffffef4"]},"geometry":{"type":"LineString","coordinates":[[-83.6903051,32.847069600000005],[-83.690285,32.84839]]},"id":"8944c0a26bbffff-17d77b1da9ee9d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690278,32.84919]},"id":"8f44c0a26a322e1-13d7fb2844494c9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26a322e1-13d7fb2844494c9d","8f44c0a26a36d42-13f7fb23e33de01b"]},"geometry":{"type":"LineString","coordinates":[[-83.690285,32.84839],[-83.690278,32.84919]]},"id":"8a44c0a26a37fff-13dffb261227ea5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2d3188-17b6d219c8923124","8f44c0b1a90446d-17d7f6a26d355d14"]},"geometry":{"type":"LineString","coordinates":[[-83.652809,32.806965000000005],[-83.653416,32.806948000000006],[-83.654465,32.806928],[-83.654666,32.806916]]},"id":"8744c0b1effffff-17b6f45e06cf1875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2d3188-17b6d219c8923124","8f44c0b1e2c6095-13b7cf942a3a734d"]},"geometry":{"type":"LineString","coordinates":[[-83.654666,32.806916],[-83.655118,32.806978],[-83.65518700000001,32.806984],[-83.65530700000001,32.806978],[-83.655393,32.806949],[-83.655411,32.80693],[-83.655448,32.806891],[-83.65547500000001,32.806843],[-83.655591,32.806565],[-83.65566000000001,32.806365],[-83.655699,32.806306]]},"id":"8944c0b1e2fffff-13def09375133ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2c656b-1397ef97400910c7","8f44c0b1e2c6095-13b7cf942a3a734d"]},"geometry":{"type":"LineString","coordinates":[[-83.655699,32.806306],[-83.65569400000001,32.806275]]},"id":"8c44c0b1e2c61ff-139fdf95b10cbcfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095553,32.9203449]},"id":"8f44c0a2a8c320c-139fdc17f2d602aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70863800000001,32.920383]},"id":"8f44c0a2a8deb8a-13b76e554055ba2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8deb8a-13b76e554055ba2c","8f44c0a2a8c320c-139fdc17f2d602aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7095553,32.9203449],[-83.70941900000001,32.920398],[-83.70930800000001,32.920439],[-83.70923300000001,32.920457],[-83.70917200000001,32.920468],[-83.70909400000001,32.920471],[-83.708999,32.920454],[-83.708928,32.920417],[-83.708813,32.920388],[-83.70871100000001,32.920378],[-83.70863800000001,32.920383]]},"id":"8944c0a2a8fffff-13bf7d340cc6ef6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707195,32.920749]},"id":"8f44c0a2a12aaab-139e71db2bda4f6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8deb8a-13b76e554055ba2c","8f44c0a2a12aaab-139e71db2bda4f6f"]},"geometry":{"type":"LineString","coordinates":[[-83.70863800000001,32.920383],[-83.707802,32.920581],[-83.707471,32.920668],[-83.707195,32.920749]]},"id":"8744c0a2affffff-1397501973bb1555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a10e9a4-13bed38339410905","8f44c0a2a12aaab-139e71db2bda4f6f"]},"geometry":{"type":"LineString","coordinates":[[-83.707195,32.920749],[-83.70693,32.920833],[-83.706612,32.92098],[-83.7065165,32.921028]]},"id":"8944c0a2a13ffff-13de72b2099c454a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a10e9a4-13bed38339410905","8f44c0a2a11d94c-13be7461a58543c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7065165,32.921028],[-83.7061606,32.921206600000005]]},"id":"8944c0a2a13ffff-13f653f27b873ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a11d94c-13be7461a58543c4","8f44c0a2a11d100-13de54cf0ee0d2cf"]},"geometry":{"type":"LineString","coordinates":[[-83.7061606,32.921206600000005],[-83.706112,32.921231],[-83.7059856,32.92129]]},"id":"8b44c0a2a11dfff-13d6d49831d341d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a11d100-13de54cf0ee0d2cf","8f44c0a2a11335c-139f576faf72a8a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7059856,32.92129],[-83.70594700000001,32.921308],[-83.705782,32.921338],[-83.705709,32.921343],[-83.705636,32.921342],[-83.705545,32.921332],[-83.70541100000001,32.921295],[-83.705295,32.921233],[-83.7049094,32.9209525]]},"id":"8944c0a2a13ffff-13b6562ecc62197a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a113084-13b677ecf4c9bdbb","8f44c0a2a11335c-139f576faf72a8a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7049094,32.9209525],[-83.7047089,32.9208066]]},"id":"8b44c0a2a113fff-13dfd7ae55ee5bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043886,32.9204669]},"id":"8f44c0a2a112014-13dfd8b526416fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a112014-13dfd8b526416fbd","8f44c0a2a113084-13b677ecf4c9bdbb"]},"geometry":{"type":"LineString","coordinates":[[-83.7047089,32.9208066],[-83.704543,32.920686],[-83.704464,32.920619],[-83.70441000000001,32.920536000000006],[-83.7043886,32.9204669]]},"id":"8a44c0a2a117fff-13d6f85f08cd9b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a116464-13d6f8a71def0da2","8f44c0a2a112014-13dfd8b526416fbd"]},"geometry":{"type":"LineString","coordinates":[[-83.7043886,32.9204669],[-83.704362,32.920381],[-83.704344,32.920305],[-83.704357,32.920206],[-83.70438100000001,32.920119],[-83.7044111,32.920043]]},"id":"8a44c0a2a117fff-13d6d8c1d689d35d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70466250000001,32.9197902]},"id":"8f44c0a2ac4929c-17b6f809fe83316b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a116464-13d6f8a71def0da2","8f44c0a2ac4929c-17b6f809fe83316b"]},"geometry":{"type":"LineString","coordinates":[[-83.7044111,32.920043],[-83.704419,32.920023],[-83.70452300000001,32.91991],[-83.70466250000001,32.9197902]]},"id":"8944c0a2a13ffff-1396585cca31d32b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2ac49b08-17bf7785f931cdd6","8f44c0a2ac4929c-17b6f809fe83316b"]},"geometry":{"type":"LineString","coordinates":[[-83.70466250000001,32.9197902],[-83.70474300000001,32.919721],[-83.70487370000001,32.919592200000004]]},"id":"8b44c0a2ac49fff-17fe57c7048e9c15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705342,32.919131]},"id":"8f44c0a2a136069-179ef66141b75ba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2ac49b08-17bf7785f931cdd6","8f44c0a2a136069-179ef66141b75ba6"]},"geometry":{"type":"LineString","coordinates":[[-83.70487370000001,32.919592200000004],[-83.705342,32.919131]]},"id":"8944c0a2a13ffff-17bf56f3acc5a3a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5364c283-13fdf951ab796236","8f44c0b5365b290-17bdfd336c959ffc"]},"geometry":{"type":"LineString","coordinates":[[-83.756567,32.901857],[-83.755864,32.902146],[-83.755786,32.902183],[-83.755735,32.902206],[-83.755205,32.902501],[-83.75512,32.902544],[-83.755052,32.902569],[-83.75497700000001,32.902593]]},"id":"8844c0b537fffff-17dddb45e38d7b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75299980000001,32.901649]},"id":"8f44c0b536c5151-13ffe20720c51ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b536c5151-13ffe20720c51ba8","8f44c0b5365b290-17bdfd336c959ffc"]},"geometry":{"type":"LineString","coordinates":[[-83.75497700000001,32.902593],[-83.754845,32.902621],[-83.754745,32.902631],[-83.75463,32.902625],[-83.75452700000001,32.902607],[-83.754411,32.902571],[-83.754323,32.902537],[-83.75424500000001,32.902496],[-83.754101,32.902406],[-83.753274,32.901833],[-83.75299980000001,32.901649]]},"id":"8844c0b537fffff-17f5ffb4a5589b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7206a0-17deedf8c116ebb0","8f44c0b1a0d8493-17fee9a1855ead44"]},"geometry":{"type":"LineString","coordinates":[[-83.64325000000001,32.82011],[-83.643648,32.820363],[-83.64502800000001,32.821184]]},"id":"8844c0b1a7fffff-17bfebcee527fb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a764149-1397e6f346a62730","8f44c0b1a0d8493-17fee9a1855ead44"]},"geometry":{"type":"LineString","coordinates":[[-83.64502800000001,32.821184],[-83.64612600000001,32.821849]]},"id":"8944c0b1a0fffff-17d7f84a66effe99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53537700000001,32.831642]},"id":"8f44c0b8329b00d-1397f55563e8d50c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8329b00d-1397f55563e8d50c","8f44c0b8329a505-17f7f6a642b70a53"]},"geometry":{"type":"LineString","coordinates":[[-83.53537700000001,32.831642],[-83.53483800000001,32.831218]]},"id":"8a44c0b8329ffff-17fff5fdd32e0748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.534574,32.830945]},"id":"8f44c0b8366d198-17dff74b44007a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8366d198-17dff74b44007a8f","8f44c0b8329a505-17f7f6a642b70a53"]},"geometry":{"type":"LineString","coordinates":[[-83.53483800000001,32.831218],[-83.534574,32.830945]]},"id":"8744c0b83ffffff-17b7f6f8cee6af23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66301800000001,32.808672]},"id":"8f44c0b1852b435-13febdb5ceb36dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18cdbc6c-1397ba0d8c79c9a5","8f44c0b1852b435-13febdb5ceb36dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.66301800000001,32.808672],[-83.66342900000001,32.808664],[-83.66413700000001,32.808678],[-83.664275,32.808686],[-83.664516,32.808712]]},"id":"8844c0b185fffff-13fefbe1499cc346"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18cdbb66-13beb964cb57b2e6","8f44c0b18cdbc6c-1397ba0d8c79c9a5"]},"geometry":{"type":"LineString","coordinates":[[-83.664516,32.808712],[-83.664623,32.808756],[-83.664786,32.808801]]},"id":"8a44c0b18cdffff-13b7f9b9f3fb2954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18ccb84b-13feb6686e997a77","8f44c0b18cdbb66-13beb964cb57b2e6"]},"geometry":{"type":"LineString","coordinates":[[-83.664786,32.808801],[-83.66484200000001,32.808816],[-83.66498800000001,32.808842],[-83.66510500000001,32.808853],[-83.665467,32.808869],[-83.666009,32.808877]]},"id":"8944c0b18cfffff-13f6b7e7d8657d8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18ccb84b-13feb6686e997a77","8f44c0b181b3d8b-13f7b3e543368308"]},"geometry":{"type":"LineString","coordinates":[[-83.666009,32.808877],[-83.666358,32.808884],[-83.667038,32.808888]]},"id":"8744c0b18ffffff-13f6b526db79e90a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b181a02b1-13f7b00d8f108e93","8f44c0b181b3d8b-13f7b3e543368308"]},"geometry":{"type":"LineString","coordinates":[[-83.667038,32.808888],[-83.66777300000001,32.808898],[-83.66819000000001,32.8089],[-83.66861200000001,32.808888]]},"id":"8944c0b181bffff-13f7f1f965bc61b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1810611d-13beaa7be965ddfe","8f44c0b181a02b1-13f7b00d8f108e93"]},"geometry":{"type":"LineString","coordinates":[[-83.66861200000001,32.808888],[-83.66892800000001,32.808875],[-83.669233,32.808853],[-83.66956300000001,32.808822],[-83.669938,32.808774],[-83.670254,32.808728],[-83.670893,32.808593]]},"id":"8844c0b181fffff-13bead419700673e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1810611d-13beaa7be965ddfe","8f44c0b18104042-13b7a93f0d1b9ae4"]},"geometry":{"type":"LineString","coordinates":[[-83.670893,32.808593],[-83.671197,32.808584],[-83.6714,32.808585]]},"id":"8a44c0b18107fff-13b6f9dd71542949"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18104042-13b7a93f0d1b9ae4","8f44c0b18123266-13d6a7d3ea370434"]},"geometry":{"type":"LineString","coordinates":[[-83.6714,32.808585],[-83.67178700000001,32.808596],[-83.671981,32.808605]]},"id":"8944c0b1813ffff-13bfa88972a83c60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188de742-13b7f434d38d4ba2","8f44c0b18123266-13d6a7d3ea370434"]},"geometry":{"type":"LineString","coordinates":[[-83.671981,32.808605],[-83.672117,32.808619],[-83.67247900000001,32.808686],[-83.672756,32.808754],[-83.673101,32.808859000000005],[-83.6734643,32.808997500000004]]},"id":"8844c0b181fffff-13b7f5fee42d721a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188de742-13b7f434d38d4ba2","8f44c0b188d8acd-13ffa2be0419653f"]},"geometry":{"type":"LineString","coordinates":[[-83.6734643,32.808997500000004],[-83.67373500000001,32.80912],[-83.674064,32.809289]]},"id":"8a44c0b188dffff-1396e378529cb4f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674964,32.809756]},"id":"8f44c0b188cb092-1397a08b87ad8c79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188cb092-1397a08b87ad8c79","8f44c0b188d8acd-13ffa2be0419653f"]},"geometry":{"type":"LineString","coordinates":[[-83.674064,32.809289],[-83.674363,32.809457],[-83.674587,32.809576],[-83.6748,32.809685],[-83.674964,32.809756]]},"id":"8944c0b188fffff-1396e1a768f9deb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188cb092-1397a08b87ad8c79","8f44c0b18b95424-17d7ddc6cbf4c529"]},"geometry":{"type":"LineString","coordinates":[[-83.674964,32.809756],[-83.67520400000001,32.809846],[-83.675539,32.809955],[-83.67565400000001,32.809998],[-83.67588,32.810115],[-83.67609800000001,32.810246]]},"id":"8744c0b18ffffff-139f9f223cfa7108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18b81622-17fedab168f95361","8f44c0b18b95424-17d7ddc6cbf4c529"]},"geometry":{"type":"LineString","coordinates":[[-83.67609800000001,32.810246],[-83.676299,32.810353],[-83.677361,32.810954]]},"id":"8944c0b18bbffff-179fbc3b576862c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18b81622-17fedab168f95361","8f44c0b18aa5d32-1396daad09f6b158"]},"geometry":{"type":"LineString","coordinates":[[-83.677361,32.810954],[-83.67749900000001,32.811087],[-83.677565,32.811207],[-83.677608,32.811341],[-83.677626,32.811476],[-83.67761200000001,32.811715],[-83.67758,32.811925],[-83.677554,32.812002],[-83.67747700000001,32.812114],[-83.677368,32.812218]]},"id":"8844c0b18bfffff-179eba3e8f334421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18aa5d32-1396daad09f6b158","8f44c0b18a9e821-17feffb70afe6240"]},"geometry":{"type":"LineString","coordinates":[[-83.677368,32.812218],[-83.677255,32.812337],[-83.677142,32.812433],[-83.677018,32.812528],[-83.676868,32.812618],[-83.676686,32.812708],[-83.676488,32.812784],[-83.676302,32.812842],[-83.67614900000001,32.812919],[-83.675559,32.813361],[-83.675391,32.813505],[-83.675325,32.813601000000006],[-83.675306,32.813736],[-83.67529800000001,32.813868],[-83.67530400000001,32.814027]]},"id":"8944c0b18abffff-139fdd9317407667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18a9aa66-1796ffb8ee0f3cda","8f44c0b18a9e821-17feffb70afe6240"]},"geometry":{"type":"LineString","coordinates":[[-83.67530400000001,32.814027],[-83.6753015,32.814533600000004],[-83.675301,32.8146438]]},"id":"8a44c0b18a9ffff-17bfbfb7fa2685cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736227,32.887642]},"id":"8f44c0a2c99438d-13be4afa274ce124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c996353-1397ebfa62519888","8f44c0a2c99438d-13be4afa274ce124"]},"geometry":{"type":"LineString","coordinates":[[-83.736227,32.887642],[-83.73581700000001,32.887763]]},"id":"8a44c0a2c997fff-13de1b7a4f6516fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2c996353-1397ebfa62519888","8f44c0a2c99438d-13be4afa274ce124"]},"geometry":{"type":"LineString","coordinates":[[-83.73581700000001,32.887763],[-83.73664000000001,32.889395],[-83.73670600000001,32.889508],[-83.736812,32.889636],[-83.736942,32.889756000000006],[-83.737018,32.889803],[-83.737164,32.889884],[-83.73760700000001,32.890105000000005],[-83.737942,32.890259],[-83.7381,32.890317],[-83.738315,32.890372],[-83.738512,32.8904],[-83.738839,32.890409000000005],[-83.739879,32.890413],[-83.740076,32.8904],[-83.740173,32.89038],[-83.740307,32.890337],[-83.740403,32.89029],[-83.74047,32.890251],[-83.740539,32.890194],[-83.740606,32.890124],[-83.740694,32.889994],[-83.740924,32.889533],[-83.740941,32.889446],[-83.740941,32.889333],[-83.740904,32.889221],[-83.74086000000001,32.889153],[-83.740775,32.889063],[-83.740668,32.888996],[-83.740342,32.888875],[-83.737122,32.887711],[-83.73673600000001,32.887577],[-83.73667300000001,32.887566],[-83.736554,32.887569],[-83.73641400000001,32.887593],[-83.736227,32.887642]]},"id":"8844c0a2c9fffff-17d775a4ad7655a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194c03a2-17beb9504c337d74","8f44c0b1945a974-17dfb3baebd5b1ec"]},"geometry":{"type":"LineString","coordinates":[[-83.677926,32.830301],[-83.68021300000001,32.830357]]},"id":"8844c0b195fffff-17dfb6859d52d305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1945a974-17dfb3baebd5b1ec","8f44c0b1944882e-17ffaf716f17d1d1"]},"geometry":{"type":"LineString","coordinates":[[-83.68021300000001,32.830357],[-83.681436,32.83039],[-83.68151300000001,32.830393],[-83.681561,32.830394000000005],[-83.68196900000001,32.830409]]},"id":"8944c0b1947ffff-17fed1961db5241d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.564642,32.868651]},"id":"8f44c0b8b896302-13dfede2c7380c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b899856-179faaa1a50293b2","8f44c0b8b896302-13dfede2c7380c61"]},"geometry":{"type":"LineString","coordinates":[[-83.564642,32.868651],[-83.56473000000001,32.868758],[-83.564811,32.868895],[-83.564863,32.869014],[-83.564947,32.869249],[-83.564975,32.86931],[-83.565019,32.86937],[-83.565212,32.869549],[-83.56597500000001,32.870193]]},"id":"8944c0b8b8bffff-17dffc6e34bede54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b8d164d-13dfe65461058165","8f44c0b8b899856-179faaa1a50293b2"]},"geometry":{"type":"LineString","coordinates":[[-83.56597500000001,32.870193],[-83.56773700000001,32.871702]]},"id":"8844c0b8b9fffff-13f7b87b0a23fd5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb9671a-179fa22531c2bdb4","8f44c0b8b8d164d-13dfe65461058165"]},"geometry":{"type":"LineString","coordinates":[[-83.56773700000001,32.871702],[-83.5694509,32.8732312]]},"id":"8744c0b8bffffff-17bfa43cc08c97ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ea044-179680b1cc712dfe","8f44c0b190c02ca-179e82b10ce14ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.68719200000001,32.831252],[-83.68801,32.831268]]},"id":"8944c0b190fffff-179781b16737cb07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b190ea044-179680b1cc712dfe","8f44c0b1905a8c2-17977d67473705d7"]},"geometry":{"type":"LineString","coordinates":[[-83.68801,32.831268],[-83.689358,32.831269]]},"id":"8844c0b191fffff-1796ff0c82c2ea50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1905a8c2-17977d67473705d7","8f44c0b193264ae-179ef438a7685998"]},"geometry":{"type":"LineString","coordinates":[[-83.689358,32.831269],[-83.690938,32.831289000000005],[-83.69161100000001,32.831246],[-83.69311900000001,32.831252]]},"id":"8744c0b19ffffff-1796f8cff062ef07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b193264ae-179ef438a7685998","8f44c0b1932592d-179f713746b2a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.69311900000001,32.831252],[-83.69435,32.831272000000006]]},"id":"8a44c0b19327fff-1796f2b7fa02e5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ac0142-13f7ec306b10ecfb","8f44c0b1932592d-179f713746b2a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.69435,32.831272000000006],[-83.695295,32.831282],[-83.695659,32.831294],[-83.695785,32.831322],[-83.69589500000001,32.831361],[-83.69622100000001,32.831643],[-83.696409,32.831798]]},"id":"8844c0b19bfffff-17dffe9012775f17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21751d0e-13be4003a4ae034e","8f44c0a23b6b318-17def0e80c3dacf2"]},"geometry":{"type":"LineString","coordinates":[[-83.70758400000001,32.887057],[-83.70767000000001,32.887075],[-83.707761,32.887082],[-83.708117,32.887093],[-83.70894700000001,32.887105000000005],[-83.71353500000001,32.887192],[-83.71450300000001,32.88721]]},"id":"8844c0a217fffff-1397c8768e8f0c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717393,32.887618]},"id":"8f44c0a21769b1a-13bf78f56243727a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a21751d0e-13be4003a4ae034e","8f44c0a21769b1a-13bf78f56243727a"]},"geometry":{"type":"LineString","coordinates":[[-83.71450300000001,32.88721],[-83.71551600000001,32.887231],[-83.71593800000001,32.887236],[-83.716167,32.887253],[-83.71630400000001,32.887282],[-83.71637100000001,32.8873],[-83.71644400000001,32.887327],[-83.716801,32.887473],[-83.71697400000001,32.887535],[-83.71718100000001,32.88759],[-83.717284,32.887605],[-83.717393,32.887618]]},"id":"8944c0a2177ffff-13f7fc7331f97238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720205,32.886657]},"id":"8f44c0a213a80c8-17d6b217ea799db1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a213a80c8-17d6b217ea799db1","8f44c0a21769b1a-13bf78f56243727a"]},"geometry":{"type":"LineString","coordinates":[[-83.717393,32.887618],[-83.71770500000001,32.887614],[-83.718647,32.887557],[-83.71879700000001,32.887527],[-83.71896100000001,32.887468000000005],[-83.71909500000001,32.887399],[-83.719167,32.887349],[-83.71924100000001,32.887289],[-83.719302,32.887227],[-83.719424,32.887076],[-83.71949500000001,32.887],[-83.71958400000001,32.886924],[-83.71965900000001,32.886873],[-83.719769,32.886809],[-83.71986000000001,32.886769],[-83.719987,32.886723],[-83.720205,32.886657]]},"id":"8844c0a213fffff-13f6756407bc9112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2131dc0b-17d7eddb8afe56ee","8f44c0a213a80c8-17d6b217ea799db1"]},"geometry":{"type":"LineString","coordinates":[[-83.720205,32.886657],[-83.720686,32.886515],[-83.72089100000001,32.886474],[-83.72108100000001,32.886446],[-83.72124000000001,32.886429],[-83.721445,32.886423],[-83.721666,32.886432],[-83.72194,32.886454]]},"id":"8844c0a213fffff-17f6affe79d3782f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2132b074-17f66a10e65f67cb","8f44c0a2131dc0b-17d7eddb8afe56ee"]},"geometry":{"type":"LineString","coordinates":[[-83.72194,32.886454],[-83.722159,32.886453],[-83.722344,32.88644],[-83.723411,32.886304],[-83.723493,32.886279]]},"id":"8944c0a2133ffff-17be6bf4ad9432a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2132b074-17f66a10e65f67cb","8f44c0a21acd51c-17fe22b5c9f63e79"]},"geometry":{"type":"LineString","coordinates":[[-83.723493,32.886279],[-83.723608,32.886231],[-83.724359,32.885734],[-83.725053,32.885258],[-83.725189,32.885198],[-83.72527500000001,32.885184],[-83.725488,32.885179],[-83.72566900000001,32.885182],[-83.72575900000001,32.885192],[-83.725825,32.885205],[-83.725887,32.885227],[-83.72599100000001,32.885289],[-83.726054,32.885348],[-83.726107,32.885405],[-83.726363,32.88572],[-83.726506,32.885885]]},"id":"8744c0a21ffffff-17b776483c5fbea1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65061100000001,32.848531]},"id":"8f44c0a35c9d6f6-13bffc002a81269f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35526702-13b7dc7c8998c00e","8f44c0a35c9d6f6-13bffc002a81269f"]},"geometry":{"type":"LineString","coordinates":[[-83.65061100000001,32.848531],[-83.650412,32.849308]]},"id":"8744c0a35ffffff-13befc3e5256972d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35526702-13b7dc7c8998c00e","8f44c0a35504c24-179edd0426c68bea"]},"geometry":{"type":"LineString","coordinates":[[-83.650412,32.849308],[-83.65019500000001,32.849908]]},"id":"8944c0a3553ffff-17dfdcc0539a3f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35503c1d-17d6fda88b67ff84","8f44c0a35504c24-179edd0426c68bea"]},"geometry":{"type":"LineString","coordinates":[[-83.65019500000001,32.849908],[-83.649932,32.850817]]},"id":"8a44c0a35507fff-17b6dd565b160b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35519ce4-13fffe38e6214ad5","8f44c0a35503c1d-17d6fda88b67ff84"]},"geometry":{"type":"LineString","coordinates":[[-83.649932,32.850817],[-83.64977300000001,32.851425],[-83.64970100000001,32.851701000000006]]},"id":"8944c0a3553ffff-13f6fdf0c334367f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e181250-17b7db9a4c2aa535","8f44c0b1e109cf3-17ded2804e993812"]},"geometry":{"type":"LineString","coordinates":[[-83.65450200000001,32.794282],[-83.654353,32.794286],[-83.654027,32.794285],[-83.650774,32.794246]]},"id":"8844c0b1e1fffff-17d7d70d498571a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e181250-17b7db9a4c2aa535","8f44c0b1e19c553-17bfde8e83518258"]},"geometry":{"type":"LineString","coordinates":[[-83.650774,32.794246],[-83.64956400000001,32.794232]]},"id":"8944c0b1e1bffff-17bffd1469bf8b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e545d52-179fe3e2e44fd9d2","8f44c0b1e19c553-17bfde8e83518258"]},"geometry":{"type":"LineString","coordinates":[[-83.64956400000001,32.794232],[-83.64869800000001,32.79422],[-83.64738100000001,32.794188000000005]]},"id":"8744c0b1effffff-179ef138c0093beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e545d52-179fe3e2e44fd9d2","8f44c0b1e556789-17f7e959a3d19df3"]},"geometry":{"type":"LineString","coordinates":[[-83.64738100000001,32.794188000000005],[-83.64579400000001,32.794162],[-83.645143,32.794143000000005]]},"id":"8944c0b1e57ffff-1797f69e5072dbb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c99cad-17dff69a85f50c9f","8f44c0b09c8ab85-17dff4ca285190cd"]},"geometry":{"type":"LineString","coordinates":[[-83.745315,32.827871],[-83.744572,32.827869]]},"id":"8944c0b09cbffff-17dff5b25ae1700a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c99cad-17dff69a85f50c9f","8f44c0b08269151-17d7f96b29d48d9d"]},"geometry":{"type":"LineString","coordinates":[[-83.744572,32.827869],[-83.74417000000001,32.827868],[-83.744005,32.827885],[-83.743728,32.827894],[-83.743419,32.827888]]},"id":"8744c0b09ffffff-17d5f802d00d6251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0824c89b-17b5fbd54088b75b","8f44c0b08269151-17d7f96b29d48d9d"]},"geometry":{"type":"LineString","coordinates":[[-83.743419,32.827888],[-83.74284300000001,32.827897],[-83.74275200000001,32.827906],[-83.74243,32.828014]]},"id":"8944c0b0827ffff-17f7faa3e0cf615a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a4a384b-13d764445f349315","8f44c0b0a4858d0-13dee4ce64869f97"]},"geometry":{"type":"LineString","coordinates":[[-83.699433,32.822542],[-83.6996539,32.8221238]]},"id":"8944c0b0a4bffff-13d67489638061ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a4a384b-13d764445f349315","8f44c0b0a4a54c4-13b7e3b3ee3d2f79"]},"geometry":{"type":"LineString","coordinates":[[-83.6996539,32.8221238],[-83.69988500000001,32.821686]]},"id":"8a44c0b0a4a7fff-13bef3fc2ef4011d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.700111,32.821263]},"id":"8f44c0b0a58b469-17bf6326a194b10c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a58b469-17bf6326a194b10c","8f44c0b0a4a54c4-13b7e3b3ee3d2f79"]},"geometry":{"type":"LineString","coordinates":[[-83.69988500000001,32.821686],[-83.69993600000001,32.821604],[-83.700111,32.821263]]},"id":"8844c0b0a5fffff-17bef36b8ab83f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a58b469-17bf6326a194b10c","8f44c0b0a58e798-17fee3e4a1380d7b"]},"geometry":{"type":"LineString","coordinates":[[-83.700111,32.821263],[-83.70011500000001,32.821208],[-83.70002600000001,32.820939],[-83.699933,32.820704],[-83.69987900000001,32.820608],[-83.69984000000001,32.820583],[-83.699807,32.820574]]},"id":"8a44c0b0a58ffff-17d7736d87e8c2a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70138100000001,32.817753]},"id":"8f44c0b1d248a20-1797e00ce17270f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d248a20-1797e00ce17270f4","8f44c0b0a58e798-17fee3e4a1380d7b"]},"geometry":{"type":"LineString","coordinates":[[-83.699807,32.820574],[-83.699911,32.820355],[-83.70049900000001,32.819324],[-83.70138100000001,32.817753]]},"id":"8844c0b0a5fffff-1397f1fbf1d7c34d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d248a20-1797e00ce17270f4","8f44c0b1d26b28b-17dfff020ffcf1b5"]},"geometry":{"type":"LineString","coordinates":[[-83.70138100000001,32.817753],[-83.701446,32.81769],[-83.70159000000001,32.817566],[-83.701808,32.817427]]},"id":"8944c0b1d27ffff-17bfff8bf05f10b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d26b28b-17dfff020ffcf1b5","8f44c0b0ac9b0b3-17965c0dcff1325b"]},"geometry":{"type":"LineString","coordinates":[[-83.701808,32.817427],[-83.702042,32.817344],[-83.702146,32.817321],[-83.702309,32.817299000000006],[-83.702545,32.817299000000006],[-83.70289000000001,32.817324],[-83.703018,32.817338]]},"id":"8744c0b0affffff-179fdd8ba321e2b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac9b0b3-17965c0dcff1325b","8f44c0b0acd6cad-17d67809a3fd45b5"]},"geometry":{"type":"LineString","coordinates":[[-83.703018,32.817338],[-83.70325700000001,32.817373],[-83.70466300000001,32.817639]]},"id":"8844c0b0adfffff-17fffa0b4de3c783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0acc0505-1797d40ee1974e03","8f44c0b0acd6cad-17d67809a3fd45b5"]},"geometry":{"type":"LineString","coordinates":[[-83.70466300000001,32.817639],[-83.705775,32.817856],[-83.705894,32.817892],[-83.70609400000001,32.81798],[-83.706293,32.818134]]},"id":"8944c0b0acfffff-17d6f5fc705540df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0acc0505-1797d40ee1974e03","8f44c0b0a564226-13fed372088b7cad"]},"geometry":{"type":"LineString","coordinates":[[-83.706293,32.818134],[-83.706342,32.818192],[-83.70639600000001,32.818241],[-83.706455,32.818326],[-83.706497,32.818427],[-83.706545,32.818582],[-83.706559,32.818649],[-83.70656500000001,32.818742],[-83.70655500000001,32.819877000000005],[-83.70654400000001,32.819966]]},"id":"8744c0b0affffff-13bef37ca2d70685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a564226-13fed372088b7cad","8f44c0b0a56ab19-179ed3310e580b57"]},"geometry":{"type":"LineString","coordinates":[[-83.70654400000001,32.819966],[-83.706556,32.820408],[-83.706546,32.820541],[-83.70654300000001,32.820647],[-83.706547,32.820833],[-83.706558,32.820967],[-83.706575,32.821098],[-83.70661000000001,32.821283],[-83.706648,32.821444]]},"id":"8944c0b0a57ffff-17def364f86baecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706461,32.822266]},"id":"8f44c0b0a54d4d5-139e53a5eb035b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a56ab19-179ed3310e580b57","8f44c0b0a54d4d5-139e53a5eb035b8f"]},"geometry":{"type":"LineString","coordinates":[[-83.706648,32.821444],[-83.70663800000001,32.821643],[-83.70662,32.821827],[-83.706558,32.822055],[-83.706461,32.822266]]},"id":"8944c0b0a57ffff-13b6d3562fe408f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d73092-17f778c9a6bb8fdf","8f44c0b89d192c8-17bf7d9b63652fb1"]},"geometry":{"type":"LineString","coordinates":[[-83.586391,32.860912],[-83.585999,32.86088],[-83.58561200000001,32.860827],[-83.58517900000001,32.860754],[-83.584978,32.860743],[-83.584866,32.860746],[-83.584789,32.860748],[-83.58457,32.860782],[-83.584417,32.860799]]},"id":"8844c0b89dfffff-17b7fb32aee221c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89d192c8-17bf7d9b63652fb1","8f44c0b89c368d4-17bfe12a0fcf2d25"]},"geometry":{"type":"LineString","coordinates":[[-83.584417,32.860799],[-83.58431200000001,32.860809],[-83.584096,32.860809],[-83.58296,32.860791]]},"id":"8844c0b89dfffff-17b77f6291a15205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d6425-17b7b7fb091177c1","8f44c0a228d6da8-17be97da8fccc5d3"]},"geometry":{"type":"LineString","coordinates":[[-83.67852400000001,32.86594],[-83.678472,32.866101]]},"id":"8b44c0a228d6fff-17fed7eac0709225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678472,32.866335]},"id":"8f44c0a228d2d25-17b7f7fb03d8be70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a228d6425-17b7b7fb091177c1","8f44c0a228d2d25-17b7f7fb03d8be70"]},"geometry":{"type":"LineString","coordinates":[[-83.678472,32.866101],[-83.67837700000001,32.866286],[-83.678472,32.866335]]},"id":"8a44c0a228d7fff-17f7d818b4a8ddd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d3521a3-17f7646aacc2e8d6","8f44c0b1d309616-13d7e40e8c4d4cf7"]},"geometry":{"type":"LineString","coordinates":[[-83.6995926,32.813579600000004],[-83.69962600000001,32.813412],[-83.69974,32.812905]]},"id":"8844c0b1d3fffff-1396643d84c66189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64305900000001,32.830996]},"id":"8f44c0a348a6150-17feee70232ab42c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3498c532-179fec15a195788b","8f44c0a348a6150-17feee70232ab42c"]},"geometry":{"type":"LineString","coordinates":[[-83.64305900000001,32.830996],[-83.644023,32.829845]]},"id":"8844c0a349fffff-1796fd42e127b386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644992,32.828656]},"id":"8f44c0a34912750-13b6e9b807abcd66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3498c532-179fec15a195788b","8f44c0a34912750-13b6e9b807abcd66"]},"geometry":{"type":"LineString","coordinates":[[-83.644023,32.829845],[-83.644992,32.828656]]},"id":"8944c0a349bffff-13bffae6d63d42be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a648840-17dee978e24723ee","8f44c0a34912750-13b6e9b807abcd66"]},"geometry":{"type":"LineString","coordinates":[[-83.644992,32.828656],[-83.64523600000001,32.828404],[-83.645482,32.828097],[-83.64552400000001,32.827993],[-83.64553400000001,32.827928],[-83.64551800000001,32.827877],[-83.645323,32.827512],[-83.645272,32.82744],[-83.645184,32.827332000000006],[-83.645093,32.827252]]},"id":"8644c0b1fffffff-1797e8ed7ec73685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18da2909-17dffb1a4a457f4f","8f44c0b18db5d85-1797fc9e62d3b456"]},"geometry":{"type":"LineString","coordinates":[[-83.66408600000001,32.801074],[-83.663731,32.800877],[-83.663465,32.800719]]},"id":"8944c0b18dbffff-17f7bbdd28577875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66321140000001,32.7987555]},"id":"8f44c0b1ea546de-13b6bd3ce14f7512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18db5d85-1797fc9e62d3b456","8f44c0b1ea546de-13b6bd3ce14f7512"]},"geometry":{"type":"LineString","coordinates":[[-83.663465,32.800719],[-83.66340500000001,32.800669],[-83.66334300000001,32.800564],[-83.66332700000001,32.800483],[-83.663284,32.799543],[-83.66321140000001,32.7987555]]},"id":"8844c0b1ebfffff-13bebd09cb3177be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6165071,32.826851000000005]},"id":"8f44c0ba9785ae8-17dfef4317f85505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9785ae8-17dfef4317f85505","8f44c0ba9095a55-13d76828630d5e50"]},"geometry":{"type":"LineString","coordinates":[[-83.6165071,32.826851000000005],[-83.61671820000001,32.826476400000004],[-83.61674830000001,32.826440500000004],[-83.618942,32.823818],[-83.618975,32.823779],[-83.619044,32.823679],[-83.619236,32.823259],[-83.619292,32.823076],[-83.619417,32.822946]]},"id":"8744c0ba9ffffff-13972b9e2ab62131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68058900000001,32.848944]},"id":"8f44c0a26010cd4-13be92cfe1dc5b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26010cd4-13be92cfe1dc5b69","8f44c0a260067a9-13bf9071a511ea33"]},"geometry":{"type":"LineString","coordinates":[[-83.68058900000001,32.848944],[-83.68070200000001,32.848826],[-83.680836,32.848708],[-83.68088200000001,32.848681],[-83.680958,32.848654],[-83.68102800000001,32.848641],[-83.68109700000001,32.848644],[-83.68116500000001,32.848655],[-83.681239,32.848692],[-83.68155900000001,32.84894]]},"id":"8944c0a2603ffff-13ded1a579113433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2600168e-17ff8ecf87b773a4","8f44c0a260067a9-13bf9071a511ea33"]},"geometry":{"type":"LineString","coordinates":[[-83.68155900000001,32.84894],[-83.68205300000001,32.849306],[-83.682105,32.84935],[-83.682164,32.849431],[-83.682209,32.849528],[-83.68222800000001,32.84966]]},"id":"8a44c0a26007fff-1396ff7d6a3ad270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2600168e-17ff8ecf87b773a4","8f44c0a26019649-17f7f03b43d0b50e"]},"geometry":{"type":"LineString","coordinates":[[-83.68222800000001,32.84966],[-83.68219400000001,32.850375],[-83.682162,32.850481],[-83.68214300000001,32.850504],[-83.682084,32.850555],[-83.68198000000001,32.850596],[-83.681646,32.850675]]},"id":"8944c0a2603ffff-1797bf267e7e6c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713243,32.806365]},"id":"8f44c0b0e70ad19-13de63172fb434e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e70ad19-13de63172fb434e0","8f44c0b0e0954c1-139fe3aaa0ab64d3"]},"geometry":{"type":"LineString","coordinates":[[-83.713243,32.806365],[-83.713199,32.805644],[-83.713199,32.80478],[-83.713237,32.803449],[-83.713244,32.803144],[-83.713256,32.802616],[-83.71324600000001,32.802526],[-83.71321300000001,32.802411],[-83.713114,32.802284],[-83.713007,32.802169]]},"id":"8744c0b0effffff-1797c329ad10340c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e0954c1-139fe3aaa0ab64d3","8f44c0b0ecca773-17b7e50b2c360858"]},"geometry":{"type":"LineString","coordinates":[[-83.713007,32.802169],[-83.71291400000001,32.802084],[-83.71276900000001,32.801938],[-83.71270700000001,32.801824],[-83.712699,32.801654],[-83.71276200000001,32.798963],[-83.712745,32.798828],[-83.71268400000001,32.79869],[-83.712529,32.798448],[-83.71244300000001,32.798323]]},"id":"8744c0b0effffff-13f7645b208783e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b89614d-17f7f9ebce95ca76","8f44c0b1b8b329b-17def7ce840c7332"]},"geometry":{"type":"LineString","coordinates":[[-83.66457000000001,32.826687],[-83.66468400000001,32.826687],[-83.665436,32.82667]]},"id":"8944c0b1b8bffff-17f6f8dd259431a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b884460-17ffb6104c855339","8f44c0b1b8b329b-17def7ce840c7332"]},"geometry":{"type":"LineString","coordinates":[[-83.665436,32.82667],[-83.665486,32.826667],[-83.665716,32.826693],[-83.665931,32.8267],[-83.66615,32.8267]]},"id":"8944c0b1b8bffff-17fff6efac805b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b884460-17ffb6104c855339","8f44c0b1b8aed89-179fb400cf757adb"]},"geometry":{"type":"LineString","coordinates":[[-83.66615,32.8267],[-83.666887,32.826718],[-83.666994,32.826741000000005]]},"id":"8944c0b1b8bffff-17f6f507e3a22c89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8acb04-1797f20a4afb85b7","8f44c0b1b8aed89-179fb400cf757adb"]},"geometry":{"type":"LineString","coordinates":[[-83.666994,32.826741000000005],[-83.667798,32.826754]]},"id":"8944c0b1b8bffff-179fb3058cb90f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8acb04-1797f20a4afb85b7","8f44c0b1b803496-17bfeede69fb579a"]},"geometry":{"type":"LineString","coordinates":[[-83.667798,32.826754],[-83.66909700000001,32.826799]]},"id":"8844c0b1b9fffff-179ff07456d63f00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e84d123-17ffb555a3bf208a","8f44c0b8e85ea25-17d7ba24e6d05ade"]},"geometry":{"type":"LineString","coordinates":[[-83.561591,32.834293],[-83.561498,32.834254],[-83.561369,32.834217],[-83.56126300000001,32.834193],[-83.56111100000001,32.834176],[-83.560372,32.834145],[-83.559916,32.83411],[-83.55982200000001,32.834097],[-83.55974900000001,32.834079],[-83.559621,32.834032]]},"id":"8944c0b8e87ffff-17b7b7bc329314ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.553595,32.831356]},"id":"8f44c0b8e894af1-17dfc8db2a3f1878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e85ea25-17d7ba24e6d05ade","8f44c0b8e894af1-17dfc8db2a3f1878"]},"geometry":{"type":"LineString","coordinates":[[-83.559621,32.834032],[-83.55947400000001,32.833962],[-83.559416,32.833926000000005],[-83.559296,32.833821],[-83.559253,32.833751],[-83.55923100000001,32.833632],[-83.559233,32.83345],[-83.55923700000001,32.832951],[-83.559217,32.832861],[-83.55919700000001,32.832828],[-83.55910700000001,32.832766],[-83.557653,32.83238],[-83.556544,32.832101],[-83.553848,32.831394],[-83.553723,32.831369],[-83.553595,32.831356]]},"id":"8844c0b8e9fffff-13b7e09dcca1147d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657662,32.822938]},"id":"8f44c0b1bd86b74-13d6cac940957bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd13701-13dec6068d5b91c2","8f44c0b1bd86b74-13d6cac940957bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.657662,32.822938],[-83.65961200000001,32.822954]]},"id":"8844c0b1bdfffff-13d7c867e8bb80f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bd13701-13dec6068d5b91c2","8f44c0b1bd1165a-13d7c4d809f7c333"]},"geometry":{"type":"LineString","coordinates":[[-83.65961200000001,32.822954],[-83.66001200000001,32.822944],[-83.660064,32.822954],[-83.66009600000001,32.822972]]},"id":"8a44c0b1bd17fff-13d7c56db9ce8595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65147400000001,32.822792]},"id":"8f44c0b1a31d698-13f7d9e4c018cadf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a370cc1-1396d4672daa2b01","8f44c0b1a31d698-13f7d9e4c018cadf"]},"geometry":{"type":"LineString","coordinates":[[-83.65147400000001,32.822792],[-83.65258,32.82284],[-83.653723,32.822864]]},"id":"8844c0b1a3fffff-13fff72618a0bf90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a370cc1-1396d4672daa2b01","8f44c0b1a366399-139ff1c065914007"]},"geometry":{"type":"LineString","coordinates":[[-83.653723,32.822864],[-83.654809,32.822879]]},"id":"8944c0b1a37ffff-1396f313c3fd6838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65538400000001,32.82287]},"id":"8f44c0b1a3655a6-1397d0590b664d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3655a6-1397d0590b664d7a","8f44c0b1a366399-139ff1c065914007"]},"geometry":{"type":"LineString","coordinates":[[-83.654809,32.822879],[-83.65538400000001,32.82287]]},"id":"8a44c0b1a367fff-139ed10cb99e016c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3676228e-13bf3070647dff20","8f44c0a367661b0-13ffb05d0d587b75"]},"geometry":{"type":"LineString","coordinates":[[-83.616056,32.848225],[-83.61602500000001,32.848912]]},"id":"8a44c0a36767fff-13d77066b2fa62a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61599000000001,32.849656]},"id":"8f44c0a36740a42-17ff3086424d3b1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3676228e-13bf3070647dff20","8f44c0a36740a42-17ff3086424d3b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.61602500000001,32.848912],[-83.61601,32.84923],[-83.61599000000001,32.849656]]},"id":"8944c0a3677ffff-1397b07b5cd63a8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36740a42-17ff3086424d3b1c","8f44c0a3674e01c-17b7b08aa6173bea"]},"geometry":{"type":"LineString","coordinates":[[-83.61599000000001,32.849656],[-83.615983,32.850364]]},"id":"8944c0a3677ffff-17df70887b07debb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3674b485-1397308beac3450a","8f44c0a3674e01c-17b7b08aa6173bea"]},"geometry":{"type":"LineString","coordinates":[[-83.615983,32.850364],[-83.615981,32.851104]]},"id":"8a44c0a3674ffff-179ff08b41395b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3674b485-1397308beac3450a","8f44c0a3666e353-139fb085adcefa6f"]},"geometry":{"type":"LineString","coordinates":[[-83.615981,32.851104],[-83.61599100000001,32.852553]]},"id":"8844c0a367fffff-13dff088cd5433e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36649872-17f7f07f6ee96770","8f44c0a3666e353-139fb085adcefa6f"]},"geometry":{"type":"LineString","coordinates":[[-83.61599100000001,32.852553],[-83.61600100000001,32.853915]]},"id":"8744c0a36ffffff-17b77082812dbba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b23205a63-17de0193ec2a88d8","8f44c0b2338d752-1397070f0cf51ff1"]},"geometry":{"type":"LineString","coordinates":[[-83.740077,32.745536],[-83.739188,32.744999],[-83.73854800000001,32.744619],[-83.738366,32.744525],[-83.73818100000001,32.744458],[-83.738076,32.744434000000005],[-83.73783200000001,32.744408]]},"id":"8844c0b233fffff-17be84405c759190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.736643,32.744397]},"id":"8f44c0b2339d2dc-139629f62cd4a9e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2339d2dc-139629f62cd4a9e4","8f44c0b2338d752-1397070f0cf51ff1"]},"geometry":{"type":"LineString","coordinates":[[-83.73783200000001,32.744408],[-83.737261,32.744394],[-83.736643,32.744397]]},"id":"8944c0b233bffff-1396d88298895c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c08a66-139efbb1e18f1ed9","8f44c0a34c09d22-13befb983ad66959"]},"geometry":{"type":"LineString","coordinates":[[-83.637629,32.831885],[-83.63767010000001,32.831943100000004]]},"id":"8a44c0a34c0ffff-13befba5038f22a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c09d22-13befb983ad66959","8f44c0a34c54016-1396faa526b9da97"]},"geometry":{"type":"LineString","coordinates":[[-83.63767010000001,32.831943100000004],[-83.638059,32.8324936]]},"id":"8844c0a34dfffff-13fefb1ebf175ff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c54016-1396faa526b9da97","8f44c0a34c51b6a-17fff94d096745cc"]},"geometry":{"type":"LineString","coordinates":[[-83.638059,32.8324936],[-83.63860960000001,32.8332728]]},"id":"8a44c0a34c57fff-139ef9f91a97a3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c5d049-17bff8103c4b15f7","8f44c0a34c51b6a-17fff94d096745cc"]},"geometry":{"type":"LineString","coordinates":[[-83.63860960000001,32.8332728],[-83.6391165,32.8339903]]},"id":"8944c0a34c7ffff-17dff8aea97ef1e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660691,32.846185000000006]},"id":"8f44c0a3599d44e-1797e3642013c82b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3599d44e-1797e3642013c82b","8f44c0a3588c210-13b6e2a3a4d9ebf6"]},"geometry":{"type":"LineString","coordinates":[[-83.660691,32.846185000000006],[-83.660999,32.849111]]},"id":"8844c0a359fffff-1796c303ef9516c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3588c210-13b6e2a3a4d9ebf6","8f44c0a358d3c5b-17d6e20a8de10939"]},"geometry":{"type":"LineString","coordinates":[[-83.660999,32.849111],[-83.66124400000001,32.850827]]},"id":"8844c0a359fffff-17bee2571f6face7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661415,32.853774]},"id":"8f44c0a351420ec-179ec19fa475b873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a358d3c5b-17d6e20a8de10939","8f44c0a351420ec-179ec19fa475b873"]},"geometry":{"type":"LineString","coordinates":[[-83.66124400000001,32.850827],[-83.661415,32.853774]]},"id":"8744c0a35ffffff-13ffd1d51b340891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a254d5332-13b7455d02a24236","8f44c0a20b3161a-13ff6c9de4fdd826"]},"geometry":{"type":"LineString","coordinates":[[-83.71231200000001,32.86204],[-83.712249,32.862111],[-83.71214,32.862211],[-83.71208,32.862253],[-83.711927,32.86233],[-83.71179000000001,32.862364],[-83.71164,32.862383],[-83.711556,32.862383],[-83.711174,32.862336],[-83.71093,32.862315],[-83.710696,32.862302],[-83.71027600000001,32.862293],[-83.710147,32.862299],[-83.70949300000001,32.862335],[-83.70934100000001,32.862335]]},"id":"8644c0a27ffffff-13de58e04c10847c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2084b7a8-13bef10106c1eeed","8f44c0a20b3161a-13ff6c9de4fdd826"]},"geometry":{"type":"LineString","coordinates":[[-83.70934100000001,32.862335],[-83.709136,32.862342000000005],[-83.70894700000001,32.862342000000005],[-83.708449,32.86233],[-83.708056,32.862299],[-83.707724,32.862266000000005],[-83.707544,32.862257]]},"id":"8844c0a20bfffff-13f6cecfec5d4d2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20bb5966-13de53c48cffd332","8f44c0a2084b7a8-13bef10106c1eeed"]},"geometry":{"type":"LineString","coordinates":[[-83.707544,32.862257],[-83.707257,32.86225],[-83.707042,32.862251],[-83.70671700000001,32.862268],[-83.706412,32.862298]]},"id":"8744c0a20ffffff-13d672631413fd3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20bb5966-13de53c48cffd332","8f44c0a20bb2119-17be5689ef5be3f6"]},"geometry":{"type":"LineString","coordinates":[[-83.706412,32.862298],[-83.70599100000001,32.862367],[-83.705808,32.862409],[-83.705583,32.862482],[-83.70548500000001,32.862524],[-83.70541,32.862564],[-83.705382,32.862578],[-83.705329,32.862617],[-83.70527700000001,32.862656]]},"id":"8a44c0a20bb7fff-13bf5532088d0fe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e516a81-17d7712d6cd6ffae","8f44c0b0ecd3708-17fec8e6a52f990c"]},"geometry":{"type":"LineString","coordinates":[[-83.70747300000001,32.797365],[-83.710863,32.797438]]},"id":"8744c0b0effffff-17f7fd0a07217980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ece9043-17b740fa8ba5c24d","8f44c0b0ecd3708-17fec8e6a52f990c"]},"geometry":{"type":"LineString","coordinates":[[-83.710863,32.797438],[-83.713783,32.797494],[-83.71410800000001,32.797522]]},"id":"8944c0b0ecfffff-1796e4f040e87d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62706200000001,32.800351]},"id":"8f44c0bad18b5a3-179f757e4ab8be7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad18b5a3-179f757e4ab8be7f","8f44c0bad330c21-17d70553b26f225c"]},"geometry":{"type":"LineString","coordinates":[[-83.62706200000001,32.800351],[-83.627628,32.800339],[-83.62797900000001,32.800387],[-83.628353,32.800506],[-83.62870500000001,32.800669],[-83.62911600000001,32.800849],[-83.62933600000001,32.801011],[-83.629444,32.801138],[-83.62953900000001,32.801305],[-83.629666,32.801564],[-83.629861,32.801983],[-83.62998400000001,32.802191],[-83.630173,32.802357],[-83.631315,32.803126],[-83.631448,32.803191000000005],[-83.63155900000001,32.803235],[-83.63159800000001,32.803251],[-83.631822,32.803357000000005],[-83.632412,32.80366],[-83.63290160000001,32.803949100000004],[-83.63300000000001,32.8040231],[-83.6331432,32.8041551],[-83.6332952,32.804279900000004],[-83.6334626,32.8044177],[-83.6335748,32.804478700000004],[-83.6336837,32.8045088]]},"id":"8744c0badffffff-13b76d54e9b4e238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63613210000001,32.804731600000004]},"id":"8f44c0badad622e-17dfff597a8144a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad330c21-17d70553b26f225c","8f44c0badad622e-17dfff597a8144a9"]},"geometry":{"type":"LineString","coordinates":[[-83.6336837,32.8045088],[-83.6337008,32.8045135],[-83.63385790000001,32.8044961],[-83.63410130000001,32.8044439],[-83.6343016,32.804422100000004],[-83.63453290000001,32.804400300000005],[-83.634798,32.804409],[-83.635847,32.804629000000006],[-83.6359796,32.8046653],[-83.6360769,32.8047011],[-83.63613210000001,32.804731600000004]]},"id":"8744c0badffffff-17bf5250f9b64309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad373095-17d7ff8e5ed19d47","8f44c0badad622e-17dfff597a8144a9"]},"geometry":{"type":"LineString","coordinates":[[-83.63613210000001,32.804731600000004],[-83.63617400000001,32.804763],[-83.636229,32.804805],[-83.63624920000001,32.804820400000004],[-83.636263,32.804831],[-83.63630500000001,32.804875],[-83.63632000000001,32.80489],[-83.636345,32.804952],[-83.636342,32.805062],[-83.63632600000001,32.805189],[-83.63613600000001,32.806162],[-83.63611900000001,32.806255],[-83.636027,32.806778],[-83.635968,32.807146],[-83.6360475,32.807407600000005]]},"id":"8744c0badffffff-13feff4a47203ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad340c4b-17b6fda4a8ed04cf","8f44c0bad373095-17d7ff8e5ed19d47"]},"geometry":{"type":"LineString","coordinates":[[-83.6360475,32.807407600000005],[-83.63607640000001,32.8074755],[-83.636098,32.80751],[-83.636178,32.80762],[-83.636325,32.807789],[-83.63642,32.80787],[-83.63652400000001,32.807927],[-83.63659200000001,32.807949],[-83.63667500000001,32.807965],[-83.636831,32.807968]]},"id":"8944c0bad37ffff-17befebb5103c0d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b623833-13b6e4d76f02b852","8f44c0b1b7198ec-13fec50faac1c32c"]},"geometry":{"type":"LineString","coordinates":[[-83.66000700000001,32.838158],[-83.66009700000001,32.839277]]},"id":"8844c0b1b7fffff-13d6f4f381f27801"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65910600000001,32.8395554]},"id":"8f44c0b1b6068d4-13d6e742c8caaa8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6068d4-13d6e742c8caaa8b","8f44c0b1b623833-13b6e4d76f02b852"]},"geometry":{"type":"LineString","coordinates":[[-83.66009700000001,32.839277],[-83.660105,32.839371],[-83.66010700000001,32.839534],[-83.66006,32.839559],[-83.659225,32.83954],[-83.659141,32.839542],[-83.65910600000001,32.8395554]]},"id":"8944c0b1b63ffff-13bff5c9ea4b8de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6068d4-13d6e742c8caaa8b","8f44c0b1b602236-17f7c78bb7312c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.65910600000001,32.8395554],[-83.659073,32.839568],[-83.65902,32.839599],[-83.658972,32.839653000000006],[-83.65895,32.839742],[-83.65894700000001,32.839896],[-83.65894200000001,32.840106],[-83.658966,32.84017],[-83.6589893,32.8401976]]},"id":"8a44c0b1b607fff-179ff7975d589d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b6190e1-139ec76849cd4be8","8f44c0b1b602236-17f7c78bb7312c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6589893,32.8401976],[-83.659025,32.84024],[-83.65927,32.840367],[-83.659306,32.840395],[-83.65932600000001,32.840448],[-83.659329,32.840519],[-83.65930300000001,32.840611],[-83.659191,32.840905],[-83.65914500000001,32.841034],[-83.659046,32.84131]]},"id":"8944c0b1b63ffff-179ef70edfa51548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607602,32.850367]},"id":"8f44c0b8db49276-17b76500cc767720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db49276-17b76500cc767720","8f44c0b8da64b2d-17b7c7078b15f2e7"]},"geometry":{"type":"LineString","coordinates":[[-83.607602,32.850367],[-83.606772,32.850364]]},"id":"8844c0b8dbfffff-17b776042ce2f574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da64b2d-17b7c7078b15f2e7","8f44c0b8da66cac-17b769198fd10ca1"]},"geometry":{"type":"LineString","coordinates":[[-83.606772,32.850364],[-83.605924,32.850367]]},"id":"8844c0b8dbfffff-17b7781085cfd423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2106bcaa-17f730a0e93bfb51","8f44c0a21049613-13bfb138c77fde24"]},"geometry":{"type":"LineString","coordinates":[[-83.720805,32.883845],[-83.72077900000001,32.88412],[-83.720748,32.884365],[-83.72072100000001,32.884574],[-83.720702,32.884673],[-83.72064800000001,32.884824],[-83.720562,32.884985]]},"id":"8744c0a21ffffff-13de70d392c3edc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a213a80c8-17d6b217ea799db1","8f44c0a21049613-13bfb138c77fde24"]},"geometry":{"type":"LineString","coordinates":[[-83.720562,32.884985],[-83.720499,32.88505],[-83.720183,32.885438],[-83.72012600000001,32.885523],[-83.720066,32.885648],[-83.720032,32.885754],[-83.720003,32.885933],[-83.719998,32.88604],[-83.72001300000001,32.886162],[-83.720043,32.886273],[-83.72015,32.886536],[-83.720205,32.886657]]},"id":"8844c0a213fffff-17be7230eb30720b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2121e81a-17b7f19e0297fb46","8f44c0a213a80c8-17d6b217ea799db1"]},"geometry":{"type":"LineString","coordinates":[[-83.720205,32.886657],[-83.720402,32.887118],[-83.72044100000001,32.88722],[-83.720473,32.887323],[-83.720488,32.887408],[-83.72050200000001,32.887535],[-83.72050200000001,32.887636],[-83.720489,32.88778],[-83.720453,32.888035],[-83.720427,32.888347],[-83.72041,32.888469],[-83.720371,32.888632],[-83.720359,32.88872],[-83.72035500000001,32.888789],[-83.720353,32.888821],[-83.72035500000001,32.888905],[-83.72040000000001,32.88927]]},"id":"8844c0a213fffff-13f6719a8d33d871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2689c651-17de8ccaa491aca2","8f44c0a26898000-17f68ce58a437383"]},"geometry":{"type":"LineString","coordinates":[[-83.68305500000001,32.84384],[-83.683012,32.844084]]},"id":"8a44c0a2689ffff-1796ccd81b9defc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2689b34e-13d6accd219d05c3","8f44c0a26898000-17f68ce58a437383"]},"geometry":{"type":"LineString","coordinates":[[-83.683012,32.844084],[-83.683057,32.844417],[-83.683051,32.844673]]},"id":"8a44c0a2689ffff-179ebcd2369ca464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2689b34e-13d6accd219d05c3","8f44c0a261310ee-13b7cdc9a59f6b41"]},"geometry":{"type":"LineString","coordinates":[[-83.683051,32.844673],[-83.683019,32.844821],[-83.68294900000001,32.845014],[-83.682889,32.845135],[-83.68274600000001,32.845326],[-83.682647,32.845442000000006]]},"id":"8944c0a2613ffff-13dfed32f5661046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26131688-13f7ce2dae8f52c9","8f44c0a261310ee-13b7cdc9a59f6b41"]},"geometry":{"type":"LineString","coordinates":[[-83.682647,32.845442000000006],[-83.68248700000001,32.845554]]},"id":"8b44c0a26131fff-13d6cdfba36125dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a261100a5-139fb087890cac78","8f44c0a26131688-13f7ce2dae8f52c9"]},"geometry":{"type":"LineString","coordinates":[[-83.68248700000001,32.845554],[-83.682354,32.84565],[-83.68212000000001,32.845768],[-83.68189100000001,32.845874],[-83.68152400000001,32.846021]]},"id":"8944c0a2613ffff-1397cf5436d55fcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a261100a5-139fb087890cac78","8f44c0a2618596e-1796d3c3a3b67d15"]},"geometry":{"type":"LineString","coordinates":[[-83.68152400000001,32.846021],[-83.680991,32.846235],[-83.680439,32.846473],[-83.680332,32.846531],[-83.680199,32.846618]]},"id":"8844c0a261fffff-17ded22b473e54e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705831,32.8222]},"id":"8f44c0b0a54a934-13f7552fa6b8ae92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a55d049-13fef625e8dd0827","8f44c0b0a54a934-13f7552fa6b8ae92"]},"geometry":{"type":"LineString","coordinates":[[-83.705831,32.8222],[-83.705437,32.822187]]},"id":"8944c0b0a57ffff-13fef5aacecf3037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a55d049-13fef625e8dd0827","8f44c0b0a42eaee-1397db1c8dc64e21"]},"geometry":{"type":"LineString","coordinates":[[-83.705437,32.822187],[-83.70489,32.822173],[-83.704689,32.822173],[-83.704383,32.822162],[-83.704176,32.82215],[-83.70399900000001,32.822114],[-83.703851,32.822069],[-83.703699,32.822003],[-83.703404,32.821846]]},"id":"8844c0b0a5fffff-13be58af58cc38ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a404c9e-1797de10c7d520c9","8f44c0b0a42eaee-1397db1c8dc64e21"]},"geometry":{"type":"LineString","coordinates":[[-83.703404,32.821846],[-83.703293,32.821776],[-83.702973,32.821621],[-83.70274500000001,32.821541],[-83.702628,32.821512000000006],[-83.702194,32.82143]]},"id":"8944c0b0a43ffff-17fe5c8cce35a1b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a404c9e-1797de10c7d520c9","8f44c0b0a58b469-17bf6326a194b10c"]},"geometry":{"type":"LineString","coordinates":[[-83.702194,32.82143],[-83.70185500000001,32.821374],[-83.701665,32.82135],[-83.70144400000001,32.821332000000005],[-83.700111,32.821263]]},"id":"8844c0b0a5fffff-17d6609a5f427e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7664232,32.8342663]},"id":"8f44c0b09b6b386-17fdf1418d3515b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72690b34-13ffe0d6415a26a4","8f44c0b09b6b386-17fdf1418d3515b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7664232,32.8342663],[-83.76649,32.835414400000005],[-83.76659480000001,32.8357114]]},"id":"8744c0b72ffffff-13b5d1212064dac6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b72690b34-13ffe0d6415a26a4","8f44c0b726429a9-17ffb0b74deca124"]},"geometry":{"type":"LineString","coordinates":[[-83.76659480000001,32.8357114],[-83.76660600000001,32.835743],[-83.766902,32.836529],[-83.766974,32.836692],[-83.76706800000001,32.836847],[-83.767179,32.836987],[-83.767274,32.837086],[-83.76739400000001,32.837187],[-83.76751200000001,32.837282],[-83.76764800000001,32.837367],[-83.767882,32.837474],[-83.768005,32.837519],[-83.768074,32.837541],[-83.76868300000001,32.837679],[-83.769301,32.837803],[-83.769796,32.837898],[-83.77044400000001,32.838037],[-83.77060300000001,32.838068],[-83.770764,32.838093],[-83.770947,32.838116],[-83.771088,32.83812],[-83.77118800000001,32.838116],[-83.77134600000001,32.838104],[-83.77156500000001,32.838063000000005],[-83.771642,32.838043],[-83.77179500000001,32.837998],[-83.772147,32.837846],[-83.77319800000001,32.837369]]},"id":"8844c0b727fffff-17ddb997850c8feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685668,32.790217000000005]},"id":"8f44c0b1ca265a6-13dfa669872ee4de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ca265a6-13dfa669872ee4de","8f44c0b1ca24085-13dfa4d0ce36f743"]},"geometry":{"type":"LineString","coordinates":[[-83.685668,32.790217000000005],[-83.686322,32.790217000000005]]},"id":"8a44c0b1ca27fff-13dfa59d262ee205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686777,32.790225]},"id":"8f44c0b1cb0b623-13f6a3b468dbcf82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1cb0b623-13f6a3b468dbcf82","8f44c0b1ca24085-13dfa4d0ce36f743"]},"geometry":{"type":"LineString","coordinates":[[-83.686322,32.790217000000005],[-83.686777,32.790225]]},"id":"8844c0b1cbfffff-13f6a4429a00e228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676061,32.864945]},"id":"8f44c0a22c6d530-13debdddeb2458f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c6d530-13debdddeb2458f9","8f44c0a22136155-179e9de7ee73eadc"]},"geometry":{"type":"LineString","coordinates":[[-83.676061,32.864945],[-83.676045,32.865888000000005]]},"id":"8744c0a22ffffff-13f7dde2e01273d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2213285a-179e9dff07cf3f9e","8f44c0a22136155-179e9de7ee73eadc"]},"geometry":{"type":"LineString","coordinates":[[-83.676045,32.865888000000005],[-83.67602500000001,32.86618],[-83.67600800000001,32.866276]]},"id":"8a44c0a22137fff-17979df1038682c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67626800000001,32.867265]},"id":"8f44c0a2211534a-17febd5c8ba7c4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2213285a-179e9dff07cf3f9e","8f44c0a2211534a-17febd5c8ba7c4bf"]},"geometry":{"type":"LineString","coordinates":[[-83.67600800000001,32.866276],[-83.67594600000001,32.866315],[-83.675864,32.866425],[-83.67577,32.866585],[-83.67578,32.866718],[-83.67580600000001,32.866915],[-83.675865,32.867029],[-83.675978,32.867139],[-83.67626800000001,32.867265]]},"id":"8944c0a2213ffff-17f69e39c12c77d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70913200000001,32.836481]},"id":"8f44c0a2498920a-17d6ed208821af9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2498920a-17d6ed208821af9e","8f44c0a2491a56c-13b74a9e0a180590"]},"geometry":{"type":"LineString","coordinates":[[-83.70913200000001,32.836481],[-83.70930800000001,32.836311],[-83.709404,32.836205],[-83.709635,32.835896000000005],[-83.70994300000001,32.835481],[-83.71009500000001,32.835265],[-83.71016,32.835186]]},"id":"8844c0a249fffff-13d6cbd506294d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2493368a-17f749a2c88bf5a6","8f44c0a2491a56c-13b74a9e0a180590"]},"geometry":{"type":"LineString","coordinates":[[-83.71016,32.835186],[-83.710323,32.83493],[-83.71043200000001,32.834713],[-83.710468,32.834611],[-83.710502,32.834494],[-83.710538,32.834338],[-83.710561,32.834187],[-83.71056800000001,32.834043],[-83.71056700000001,32.833793],[-83.71056200000001,32.833672]]},"id":"8944c0a2493ffff-17de59e51ff9ee66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2493368a-17f749a2c88bf5a6","8f44c0b0a66d4ee-13bf69a7cf39c117"]},"geometry":{"type":"LineString","coordinates":[[-83.71056200000001,32.833672],[-83.71056800000001,32.833188],[-83.71056700000001,32.83249],[-83.710554,32.831919]]},"id":"8744c0b0affffff-13d779a13a3a937f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a66c5b3-13974ab48a44ca9a","8f44c0b0a66d4ee-13bf69a7cf39c117"]},"geometry":{"type":"LineString","coordinates":[[-83.710554,32.831919],[-83.71050600000001,32.83182],[-83.71037100000001,32.831667],[-83.71027000000001,32.831584],[-83.71012400000001,32.831474]]},"id":"8a44c0b0a66ffff-13975a2141cb6c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a64412e-17d66d32a56c8244","8f44c0b0a66c5b3-13974ab48a44ca9a"]},"geometry":{"type":"LineString","coordinates":[[-83.71012400000001,32.831474],[-83.709613,32.831432],[-83.70940800000001,32.831411],[-83.70923300000001,32.831383],[-83.709103,32.831367]]},"id":"8944c0b0a67ffff-17fffbf402d4bb7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a64412e-17d66d32a56c8244","8f44c0b0a6508b5-13fed0b920d79afe"]},"geometry":{"type":"LineString","coordinates":[[-83.709103,32.831367],[-83.70901900000001,32.831356],[-83.708865,32.831346],[-83.708698,32.831347],[-83.708551,32.831356],[-83.708394,32.831383],[-83.708173,32.831442],[-83.707859,32.831567],[-83.707733,32.831595],[-83.707659,32.831604]]},"id":"8944c0b0a67ffff-17ffdefa660e112a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706963,32.831425]},"id":"8f44c0b0a6e5861-17fef26c2abd09b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0a6508b5-13fed0b920d79afe","8f44c0b0a6e5861-17fef26c2abd09b1"]},"geometry":{"type":"LineString","coordinates":[[-83.707659,32.831604],[-83.70755000000001,32.831608],[-83.70740400000001,32.831595],[-83.70730800000001,32.831577],[-83.707221,32.831552],[-83.70709400000001,32.831502],[-83.707037,32.831474],[-83.706963,32.831425]]},"id":"8844c0b0a7fffff-13def19921b4c104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674332,32.826115]},"id":"8f44c0b1b9694c6-1397e2168a85c837"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b9694c6-1397e2168a85c837","8f44c0b1b96c142-1397b201a497ab76"]},"geometry":{"type":"LineString","coordinates":[[-83.674332,32.826115],[-83.6743654,32.8253051]]},"id":"8a44c0b1b96ffff-1396f20c1cd782cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1b96c142-1397b201a497ab76","8f44c0b1959679d-17bfb1eeb3c4ac9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6743654,32.8253051],[-83.6743957,32.8245681]]},"id":"8844c0b195fffff-13b7e1f833d81775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b182c8254-1796e1dd24942d6b","8f44c0b1959679d-17bfb1eeb3c4ac9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6743957,32.8245681],[-83.6744238,32.823886200000004]]},"id":"8644c0b1fffffff-17f6a1e5fdd61341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b182c8ab1-17b6a1d8a950272e","8f44c0b182c8254-1796e1dd24942d6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6744238,32.823886200000004],[-83.674431,32.823712]]},"id":"8b44c0b182c8fff-17def1daef8a3cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b182c8ab1-17b6a1d8a950272e","8f44c0b182cc992-1397e1ce0f1591a6"]},"geometry":{"type":"LineString","coordinates":[[-83.674431,32.823712],[-83.674448,32.823078]]},"id":"8a44c0b182cffff-17dfe1d354dbff5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b182e0385-13dfe1b7c9715195","8f44c0b182cc992-1397e1ce0f1591a6"]},"geometry":{"type":"LineString","coordinates":[[-83.674448,32.823078],[-83.6744836,32.82175]]},"id":"8944c0b182fffff-13fee1c2ee7cd5b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674525,32.820203]},"id":"8f44c0b18203219-1796e19de71cabc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b182e0385-13dfe1b7c9715195","8f44c0b18203219-1796e19de71cabc1"]},"geometry":{"type":"LineString","coordinates":[[-83.6744836,32.82175],[-83.674525,32.820203]]},"id":"8844c0b183fffff-17f6f1aad3f96cd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665011,32.842427]},"id":"8f44c0b1b29d0c6-13d6f8d82ade728e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b282b61-13d6f8aeea1cdd07","8f44c0b1b29d0c6-13d6f8d82ade728e"]},"geometry":{"type":"LineString","coordinates":[[-83.665011,32.842427],[-83.66505000000001,32.842371],[-83.665096,32.842252],[-83.66511,32.842169000000005],[-83.665118,32.842035],[-83.66507700000001,32.841607]]},"id":"8944c0b1b2bffff-13dff8a5c78b6fb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b2b509e-17bfb8b666c530ac","8f44c0b1b282b61-13d6f8aeea1cdd07"]},"geometry":{"type":"LineString","coordinates":[[-83.66507700000001,32.841607],[-83.665065,32.840344]]},"id":"8944c0b1b2bffff-17dfb8b2a5148a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b39b4a8-17b7f8bf2b1c433e","8f44c0b1b2b509e-17bfb8b666c530ac"]},"geometry":{"type":"LineString","coordinates":[[-83.665065,32.840344],[-83.665051,32.839891]]},"id":"8944c0b1b2bffff-17b7f8bacebe1823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1949c98c-13d7e0d543650e66","8f44c0b1949d8a8-13bfbff6c6cf8587"]},"geometry":{"type":"LineString","coordinates":[[-83.674846,32.828291],[-83.67486500000001,32.828403],[-83.674891,32.828612],[-83.674903,32.828634],[-83.674946,32.828662],[-83.67497800000001,32.828666000000005],[-83.675202,32.828665]]},"id":"8944c0b194bffff-13f7f0913c6101a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1949d8a8-13bfbff6c6cf8587","8f44c0b1948c71e-13bf9e0d6f2fc5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.675202,32.828665],[-83.67598500000001,32.828668]]},"id":"8944c0b194bffff-13be9f021b10f4a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194ab6d5-13bedcf06370199a","8f44c0b1948c71e-13bf9e0d6f2fc5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.67598500000001,32.828668],[-83.67644100000001,32.82867]]},"id":"8a44c0b1948ffff-13bebd7ee91ee2d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194ab6d5-13bedcf06370199a","8f44c0b194f6c8d-13d6bc0ce49df699"]},"geometry":{"type":"LineString","coordinates":[[-83.67644100000001,32.82867],[-83.676805,32.828673]]},"id":"8944c0b194bffff-13bfbc7eab4822e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1941b764-13d6d96d064deecf","8f44c0b194f6c8d-13d6bc0ce49df699"]},"geometry":{"type":"LineString","coordinates":[[-83.676805,32.828673],[-83.67788,32.828682]]},"id":"8844c0b195fffff-13d7fabcf0534d00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb24450-13f7bff08556b5e9","8f44c0b194d459b-13979cf4c94979ec"]},"geometry":{"type":"LineString","coordinates":[[-83.675212,32.829577],[-83.675274,32.829608],[-83.675302,32.829611],[-83.675612,32.829619],[-83.676434,32.829624]]},"id":"8844c0b195fffff-139fde74d39af178"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194d459b-13979cf4c94979ec","8f44c0b194c4c1e-139eb95cc5e30325"]},"geometry":{"type":"LineString","coordinates":[[-83.676434,32.829624],[-83.67790600000001,32.829633]]},"id":"8944c0b194fffff-1397db28cecfc475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6311553,32.8438101]},"id":"8f44c0a36b6ab65-17b75b7ff0ae7aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6ab65-17b75b7ff0ae7aa2","8f44c0a36b48d18-17f73cfe744d0b62"]},"geometry":{"type":"LineString","coordinates":[[-83.6305433,32.844494700000006],[-83.6311553,32.8438101]]},"id":"8944c0a36b7ffff-179f4c3f31379f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6ab65-17b75b7ff0ae7aa2","8f44c0a34793585-1797fa1ebade473b"]},"geometry":{"type":"LineString","coordinates":[[-83.6311553,32.8438101],[-83.6317205,32.8431183]]},"id":"8744c0a34ffffff-17df2acf590c86c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63223040000001,32.842504500000004]},"id":"8f44c0a3479428c-139758e00c7e9859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3479428c-139758e00c7e9859","8f44c0a34793585-1797fa1ebade473b"]},"geometry":{"type":"LineString","coordinates":[[-83.6317205,32.8431183],[-83.63223040000001,32.842504500000004]]},"id":"8a44c0a34797fff-13d7297f62ed0594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178672,32.8596039]},"id":"8f44c0a32854113-17d77bf10ff9f08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32856ca5-17d73d65edf83539","8f44c0a32854113-17d77bf10ff9f08c"]},"geometry":{"type":"LineString","coordinates":[[-83.6178672,32.8596039],[-83.61727060000001,32.8596049]]},"id":"8944c0a3287ffff-17d7ecab7912cd5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6167542,32.8596057]},"id":"8f44c0a328e4ae0-17d7bea8a2e7c9e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328e4ae0-17d7bea8a2e7c9e6","8f44c0a32856ca5-17d73d65edf83539"]},"geometry":{"type":"LineString","coordinates":[[-83.61727060000001,32.8596049],[-83.6167542,32.8596057]]},"id":"8844c0a329fffff-17d77e074d62ee64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61663250000001,32.859605900000005]},"id":"8f44c0a328e404c-17d7bef4b6c684c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328e4ae0-17d7bea8a2e7c9e6","8f44c0a328e404c-17d7bef4b6c684c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6167542,32.8596057],[-83.61663250000001,32.859605900000005]]},"id":"8b44c0a328e4fff-17d7aeceb90863e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328e612b-17d73033320e71d5","8f44c0a328e404c-17d7bef4b6c684c2"]},"geometry":{"type":"LineString","coordinates":[[-83.61663250000001,32.859605900000005],[-83.61612290000001,32.859605]]},"id":"8a44c0a328e7fff-17d77f93f4060080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e70c8c9-17bededb6d6378fd","8f44c0b1e7132cb-1796e42e8ecad4e2"]},"geometry":{"type":"LineString","coordinates":[[-83.64726,32.800337],[-83.64914,32.800378],[-83.64944100000001,32.800378]]},"id":"8944c0b1e73ffff-17b7f184ff2894ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e70c8c9-17bededb6d6378fd","8f44c0b1e0d97a9-17dfd9db698b3479"]},"geometry":{"type":"LineString","coordinates":[[-83.64944100000001,32.800378],[-83.65054400000001,32.800407],[-83.65116400000001,32.800414],[-83.65148900000001,32.800424]]},"id":"8844c0b1e7fffff-17bffc5b678da476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e78594e-13f6e774ac02702a","8f44c0b1e79636d-13d7ecb28e302e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.643772,32.80021],[-83.645919,32.800266]]},"id":"8944c0b1e7bffff-13d6ea13975aaaae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e7132ea-13fee42defe37889","8f44c0b1e78594e-13f6e774ac02702a"]},"geometry":{"type":"LineString","coordinates":[[-83.645919,32.800266],[-83.647261,32.800305]]},"id":"8844c0b1e7fffff-13f6f5d14638cea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a306ca60e-17d7507120b8bd9d","8f44c0a33d2dacd-17b773d186c587bf"]},"geometry":{"type":"LineString","coordinates":[[-83.629131,32.87069],[-83.628642,32.870565],[-83.62840200000001,32.870496],[-83.62819800000001,32.87042],[-83.62774800000001,32.870199]]},"id":"8944c0a306fffff-17d7b228fbfbe651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33d2c4a2-179fb5c58af3a3a3","8f44c0a33d2dacd-17b773d186c587bf"]},"geometry":{"type":"LineString","coordinates":[[-83.62774800000001,32.870199],[-83.626948,32.869753]]},"id":"8844c0a33dfffff-179714cb8ec115dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62576200000001,32.870419000000005]},"id":"8f44c0a33d03856-17bff8aac73a7a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33d2c4a2-179fb5c58af3a3a3","8f44c0a33d03856-17bff8aac73a7a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.626948,32.869753],[-83.626902,32.869726],[-83.62673600000001,32.86965],[-83.62663900000001,32.869628],[-83.62650500000001,32.869625],[-83.62641500000001,32.869641],[-83.626323,32.869667],[-83.626248,32.869706],[-83.62617200000001,32.869768],[-83.626098,32.869867],[-83.62576200000001,32.870419000000005]]},"id":"8944c0a33d3ffff-17d7176c152acb13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244ad1b4-17dff05bee09e132","8f44c0a24488668-1396f334a3f337a0"]},"geometry":{"type":"LineString","coordinates":[[-83.69353500000001,32.845185],[-83.693937,32.845179],[-83.69399700000001,32.845174],[-83.694069,32.84516],[-83.69414300000001,32.845134],[-83.694201,32.845104],[-83.694325,32.845022],[-83.6944,32.844982],[-83.69455400000001,32.844923],[-83.694663,32.844915],[-83.694844,32.844913000000005],[-83.69513900000001,32.844917],[-83.69526400000001,32.84491],[-83.69525800000001,32.844821],[-83.69524700000001,32.844786],[-83.69521,32.844611],[-83.695126,32.844296],[-83.69509500000001,32.844206],[-83.69504900000001,32.844132],[-83.695008,32.844078],[-83.694907,32.843992],[-83.69470100000001,32.843843]]},"id":"8844c0a245fffff-13fef06b3d36edf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a244ad1b4-17dff05bee09e132","8f44c0a244a52e6-17df717c097e0851"]},"geometry":{"type":"LineString","coordinates":[[-83.69470100000001,32.843843],[-83.69435800000001,32.843595],[-83.694297,32.843521],[-83.694258,32.843432],[-83.69424500000001,32.843336],[-83.69424000000001,32.843032]]},"id":"8944c0a244bffff-17fef1283d4c9d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a212916d9-17de7a05ea5f5bdb","8f44c0a2165428c-17b7c26e658a579e"]},"geometry":{"type":"LineString","coordinates":[[-83.71695700000001,32.889927],[-83.713513,32.889862]]},"id":"8744c0a21ffffff-17be3e3a2e12de2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216f0b25-179668afa939ece3","8f44c0a2165428c-17b7c26e658a579e"]},"geometry":{"type":"LineString","coordinates":[[-83.713513,32.889862],[-83.71095100000001,32.889815]]},"id":"8844c0a217fffff-1797558f018b8b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a216f0b25-179668afa939ece3","8f44c0a2169a496-17dff192abd3018c"]},"geometry":{"type":"LineString","coordinates":[[-83.71095100000001,32.889815],[-83.709157,32.889778],[-83.707829,32.889756000000006],[-83.707311,32.889747]]},"id":"8644c0a27ffffff-17f65d2120be6a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2169a496-17dff192abd3018c","8f44c0a23a41060-17ff551560109b92"]},"geometry":{"type":"LineString","coordinates":[[-83.707311,32.889747],[-83.70667,32.889739],[-83.706524,32.889742000000005],[-83.70625000000001,32.889749],[-83.70587300000001,32.889778]]},"id":"8944c0a23a7ffff-17def35448f4d221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a23a41060-17ff551560109b92","8f44c0a23a08d85-13b7db1d2fc13495"]},"geometry":{"type":"LineString","coordinates":[[-83.70587300000001,32.889778],[-83.705786,32.889789],[-83.70572,32.889789],[-83.705628,32.889778],[-83.705488,32.889754],[-83.705377,32.889725],[-83.705286,32.889688],[-83.70519,32.889637],[-83.705055,32.889553],[-83.70496,32.889469000000005],[-83.704864,32.889376],[-83.704777,32.889303000000005],[-83.704598,32.889201],[-83.704496,32.889159],[-83.704389,32.889127],[-83.704302,32.889106000000005],[-83.70419100000001,32.889091],[-83.704085,32.889079],[-83.70397600000001,32.889055],[-83.703826,32.889004],[-83.703699,32.888934],[-83.70360600000001,32.888863],[-83.70354400000001,32.888799],[-83.703491,32.888728],[-83.703435,32.888635],[-83.703401,32.888548],[-83.70338000000001,32.888477],[-83.70335700000001,32.888337],[-83.70340300000001,32.888022]]},"id":"8844c0a23bfffff-17d758b80d967ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69307500000001,32.904848]},"id":"8f44c0a058cd39c-13be745424c5a2d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a058cd39c-13be745424c5a2d0","8f44c0a05bb072b-13be727ce21e6940"]},"geometry":{"type":"LineString","coordinates":[[-83.69307500000001,32.904848],[-83.69382900000001,32.905034]]},"id":"8744c0a05ffffff-13f673688e2122d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05ba2650-17f6707c6aee06bc","8f44c0a05bb072b-13be727ce21e6940"]},"geometry":{"type":"LineString","coordinates":[[-83.69382900000001,32.905034],[-83.69406500000001,32.905115],[-83.694287,32.905202],[-83.694649,32.905351]]},"id":"8944c0a05bbffff-179e717b62046d6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05ba3302-179fef32628fc3e1","8f44c0a05ba2650-17f6707c6aee06bc"]},"geometry":{"type":"LineString","coordinates":[[-83.694649,32.905351],[-83.695104,32.905537],[-83.695177,32.905593]]},"id":"8a44c0a05ba7fff-17be7fd4347c92e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baa8112-13b7e8b1cbbd8654","8f44c0b1ba1e75e-139ea671835d2ef0"]},"geometry":{"type":"LineString","coordinates":[[-83.672548,32.834753],[-83.671626,32.834767]]},"id":"8844c0b1bbfffff-139fa791a91c3927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baaa835-13b7e995e3f243e3","8f44c0b1baa8112-13b7e8b1cbbd8654"]},"geometry":{"type":"LineString","coordinates":[[-83.671626,32.834767],[-83.671261,32.834774]]},"id":"8a44c0b1baaffff-13b7b923dd6669dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baaa835-13b7e995e3f243e3","8f44c0b1ba82a20-13d7ec87a783cfa7"]},"geometry":{"type":"LineString","coordinates":[[-83.671261,32.834774],[-83.67046400000001,32.834790000000005],[-83.670055,32.834818]]},"id":"8944c0b1babffff-13bffb0ef3d77ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a230caadd-139e742fe772e87b","8f44c0a2377651e-13b679c18ed8def7"]},"geometry":{"type":"LineString","coordinates":[[-83.693133,32.890647],[-83.692992,32.889932],[-83.69296,32.889845],[-83.692907,32.889752],[-83.69283300000001,32.889671],[-83.692768,32.889623],[-83.692679,32.889575],[-83.692582,32.889536],[-83.692507,32.889513],[-83.692299,32.889500000000005],[-83.692115,32.889532],[-83.691505,32.889787000000005],[-83.69140300000001,32.889837],[-83.69131900000001,32.889899],[-83.69120600000001,32.89005],[-83.691022,32.890509],[-83.690852,32.890912]]},"id":"8744c0a23ffffff-17f7f6de25422f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2377651e-13b679c18ed8def7","8f44c0a2376bcc6-17f6744ac7ccb272"]},"geometry":{"type":"LineString","coordinates":[[-83.690852,32.890912],[-83.69076700000001,32.89112],[-83.690729,32.891253],[-83.690703,32.891415],[-83.690695,32.891692],[-83.69069400000001,32.892086],[-83.690746,32.892308],[-83.69085700000001,32.892487],[-83.690921,32.89255],[-83.691095,32.892677],[-83.69127200000001,32.892764],[-83.69138500000001,32.892792],[-83.691585,32.892823],[-83.69309000000001,32.892832]]},"id":"8844c0a237fffff-17bf78520180390b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2376bcc6-17f6744ac7ccb272","8f44c0a23232cd2-17f7eb9102518060"]},"geometry":{"type":"LineString","coordinates":[[-83.69309000000001,32.892832],[-83.696664,32.892857]]},"id":"8744c0a23ffffff-17ffffedebb8a867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232266cb-17ffe7fd6b44b10c","8f44c0a23232cd2-17f7eb9102518060"]},"geometry":{"type":"LineString","coordinates":[[-83.696664,32.892857],[-83.69812900000001,32.89287]]},"id":"8944c0a2323ffff-17f7f9c73129d090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69977800000001,32.892518]},"id":"8f44c0a23309252-179fe3f6c9d61c59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232266cb-17ffe7fd6b44b10c","8f44c0a23309252-179fe3f6c9d61c59"]},"geometry":{"type":"LineString","coordinates":[[-83.69812900000001,32.89287],[-83.698496,32.892873],[-83.698739,32.892868],[-83.698912,32.89284],[-83.69912400000001,32.892788],[-83.699337,32.892716],[-83.699561,32.892615],[-83.69977800000001,32.892518]]},"id":"8844c0a233fffff-17d665ef86f8b8fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34389429-13deed92eca84a11","8f44c0a3421cd26-17beeb03ecd63f77"]},"geometry":{"type":"LineString","coordinates":[[-83.64341300000001,32.845073],[-83.64325000000001,32.845429],[-83.643237,32.8454758],[-83.64323900000001,32.845508],[-83.6432601,32.8455479],[-83.643291,32.845577],[-83.64386800000001,32.845909],[-83.644461,32.846251]]},"id":"8844c0a343fffff-13feecd9ad2c47e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645334,32.846762000000005]},"id":"8f44c0a3420e0f3-17fee8e245ed99c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3420e0f3-17fee8e245ed99c7","8f44c0a3421cd26-17beeb03ecd63f77"]},"geometry":{"type":"LineString","coordinates":[[-83.644461,32.846251],[-83.64493900000001,32.846525],[-83.645334,32.846762000000005]]},"id":"8944c0a3423ffff-17dff9f24586abf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3420e3a1-179fe8ad2db88f7b","8f44c0a3420e0f3-17fee8e245ed99c7"]},"geometry":{"type":"LineString","coordinates":[[-83.645334,32.846762000000005],[-83.645419,32.846812]]},"id":"8b44c0a3420efff-17ffe8c7b660b01e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6458362,32.8470591]},"id":"8f44c0a34208ab1-17b7f7a86f6cd505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3420e3a1-179fe8ad2db88f7b","8f44c0a34208ab1-17b7f7a86f6cd505"]},"geometry":{"type":"LineString","coordinates":[[-83.645419,32.846812],[-83.64572100000001,32.846988],[-83.6458362,32.8470591]]},"id":"8a44c0a3420ffff-17d6f82a6e8dece4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64592680000001,32.847108]},"id":"8f44c0a34208a52-17d6e76fcdc44865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34208a52-17d6e76fcdc44865","8f44c0a34208ab1-17b7f7a86f6cd505"]},"geometry":{"type":"LineString","coordinates":[[-83.6458362,32.8470591],[-83.64592680000001,32.847108]]},"id":"8c44c0a34208bff-17b7e78c19c17a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34208a52-17d6e76fcdc44865","8f44c0a34254963-17d7e5bc0c9c3256"]},"geometry":{"type":"LineString","coordinates":[[-83.64592680000001,32.847108],[-83.646197,32.847282],[-83.646624,32.847526]]},"id":"8844c0a343fffff-17d7e69798ca01d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34271051-17dfe3c58354a682","8f44c0a34272ad1-17d7e5878743acaf"]},"geometry":{"type":"LineString","coordinates":[[-83.646708,32.847347],[-83.646793,32.847365],[-83.646994,32.847416],[-83.647428,32.847529]]},"id":"8a44c0a34277fff-179fe4a6374031bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648168,32.847706]},"id":"8f44c0a34263084-17bee1f70259c022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34271051-17dfe3c58354a682","8f44c0a34263084-17bee1f70259c022"]},"geometry":{"type":"LineString","coordinates":[[-83.647428,32.847529],[-83.64751100000001,32.847544],[-83.64808500000001,32.847683],[-83.648168,32.847706]]},"id":"8944c0a3427ffff-17fef2ddc80900dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745372,32.914565]},"id":"8f44c0a2d442952-13f7f4a68ed6855d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d442952-13f7f4a68ed6855d","8f44c0a2d4f1313-13d7fc6be660a2e7"]},"geometry":{"type":"LineString","coordinates":[[-83.745372,32.914565],[-83.745157,32.914557],[-83.744988,32.914561],[-83.744797,32.91458],[-83.744287,32.914657000000005],[-83.74406400000001,32.914679],[-83.743971,32.914689],[-83.743773,32.914702000000005],[-83.74218900000001,32.914693]]},"id":"8844c0a2d5fffff-13bdf887f5043aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d4f3428-13d5fe2b68d2235c","8f44c0a2d4f1313-13d7fc6be660a2e7"]},"geometry":{"type":"LineString","coordinates":[[-83.74218900000001,32.914693],[-83.741473,32.914689]]},"id":"8a44c0a2d4f7fff-13d5fd4baa1873d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.741039,32.914686]},"id":"8f44c0a2d4d4cf6-13bfff3aad626371"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2d4f3428-13d5fe2b68d2235c","8f44c0a2d4d4cf6-13bfff3aad626371"]},"geometry":{"type":"LineString","coordinates":[[-83.741473,32.914689],[-83.741039,32.914686]]},"id":"8944c0a2d4fffff-13bffeb30a135b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80a65251-13f7d6f59168f439","8f44c0b80b59325-139fe8aa9ccc9c16"]},"geometry":{"type":"LineString","coordinates":[[-83.5536727,32.802167000000004],[-83.5543719,32.8029565]]},"id":"8844c0b80bfffff-1397e7d0179a9ded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80a65251-13f7d6f59168f439","8f44c0b85692286-13bfc658a92cdaf5"]},"geometry":{"type":"LineString","coordinates":[[-83.5543719,32.8029565],[-83.554623,32.80324]]},"id":"8944c0b80a7ffff-13d7f6a72079f11c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb93a69-17d7a09f262264b1","8f44c0b8bb9671a-179fa22531c2bdb4"]},"geometry":{"type":"LineString","coordinates":[[-83.5694509,32.8732312],[-83.570075,32.873961]]},"id":"8a44c0b8bb97fff-17ffb162247a0bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.570363,32.874361]},"id":"8f44c0b8bb98d98-13dfbfeb2ebc1932"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb98d98-13dfbfeb2ebc1932","8f44c0b8bb93a69-17d7a09f262264b1"]},"geometry":{"type":"LineString","coordinates":[[-83.570075,32.873961],[-83.570363,32.874361]]},"id":"8944c0b8bbbffff-13dfa04529b99f42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5784989,32.8832469]},"id":"8f44c0a16c058e5-17ffdc0e32bfe343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16c058e5-17ffdc0e32bfe343","8f44c0a16d1a190-139fee8eec9d2317"]},"geometry":{"type":"LineString","coordinates":[[-83.5784989,32.8832469],[-83.5778949,32.8822041],[-83.57760540000001,32.881684],[-83.5774738,32.881455800000005]]},"id":"8844c0a16dfffff-17dfed4fff38c37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.576778,32.8805491]},"id":"8f44c0a16d126b0-17f7b041c184cea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d126b0-17f7b041c184cea0","8f44c0a16d1a190-139fee8eec9d2317"]},"geometry":{"type":"LineString","coordinates":[[-83.5774738,32.881455800000005],[-83.5772958,32.8811904],[-83.5770911,32.8809239],[-83.576778,32.8805491]]},"id":"8844c0a16dfffff-13ffaf61cd9ba541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5760834,32.8792877]},"id":"8f44c0b8ba59968-17d7d1f3ecaecfe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d126b0-17f7b041c184cea0","8f44c0b8ba59968-17d7d1f3ecaecfe7"]},"geometry":{"type":"LineString","coordinates":[[-83.576778,32.8805491],[-83.57641810000001,32.8799238],[-83.5762557,32.8795986],[-83.5760834,32.8792877]]},"id":"8644c0b8fffffff-17df911d8d2c8334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5873375,32.898864100000004]},"id":"8f44c0a1622ab41-179f767a101718bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1622ab41-179f767a101718bb","8f44c0a16274cf1-17bf74732f1b75d8"]},"geometry":{"type":"LineString","coordinates":[[-83.5873375,32.898864100000004],[-83.58753300000001,32.899005800000005],[-83.58777040000001,32.8991084],[-83.5880078,32.8992163],[-83.58816780000001,32.8992963]]},"id":"8844c0a163fffff-17bf757b6b54c673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.589358,32.901599000000004]},"id":"8f44c0a1624c46c-13df718b48036bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1624c46c-13df718b48036bfb","8f44c0a16274cf1-17bf74732f1b75d8"]},"geometry":{"type":"LineString","coordinates":[[-83.58816780000001,32.8992963],[-83.5882478,32.899504300000004],[-83.58847180000001,32.8999843],[-83.5886638,32.9004963],[-83.5889825,32.901004900000004],[-83.5891802,32.9013835],[-83.589358,32.901599000000004]]},"id":"8944c0a1627ffff-139f731e7b1f79ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d126b0-17f7b041c184cea0","8f44c0a16d81551-13b7931628623667"]},"geometry":{"type":"LineString","coordinates":[[-83.576778,32.8805491],[-83.5763829,32.880845300000004],[-83.57582520000001,32.8812974],[-83.575619,32.8814633]]},"id":"8944c0a16dbffff-139791ae31da72da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5743178,32.8833064]},"id":"8f44c0a16cb1890-17b7964368dc576d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d81551-13b7931628623667","8f44c0a16cb1890-17b7964368dc576d"]},"geometry":{"type":"LineString","coordinates":[[-83.575619,32.8814633],[-83.5753071,32.8817175],[-83.5751956,32.881806600000004],[-83.57510880000001,32.881945200000004],[-83.5750615,32.8822099],[-83.5750106,32.882482],[-83.5749565,32.8826829],[-83.5748341,32.8828923],[-83.5747058,32.8830252],[-83.5745424,32.8831518],[-83.5743178,32.8833064]]},"id":"8844c0a16dfffff-17ffd49f73b82980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5687666,32.8861465]},"id":"8f44c0b8b2eb590-1797b3d0edfc8d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a165b6603-17dfe28d2a61634a","8f44c0b8b2eb590-1797b3d0edfc8d33"]},"geometry":{"type":"LineString","coordinates":[[-83.5687666,32.8861465],[-83.56881530000001,32.886228],[-83.5692846,32.8866804]]},"id":"8844c0b8b3fffff-17bfb33465e8178c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.574083,32.8894873]},"id":"8f44c0a16421871-17bf96d62c65e195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1655600c-17b7d5b452dcc83f","8f44c0a16421871-17bf96d62c65e195"]},"geometry":{"type":"LineString","coordinates":[[-83.574083,32.8894873],[-83.5745467,32.8890636]]},"id":"8844c0a165fffff-17b7b6453fa4b72e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16570d94-1397f38015533d0e","8f44c0a1655600c-17b7d5b452dcc83f"]},"geometry":{"type":"LineString","coordinates":[[-83.5745467,32.8890636],[-83.5754495,32.8881959]]},"id":"8944c0a1657ffff-13b7b49a39574896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5768676,32.886853]},"id":"8f44c0a16cc3195-17dfb009ce0de36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16570d94-1397f38015533d0e","8f44c0a16cc3195-17dfb009ce0de36c"]},"geometry":{"type":"LineString","coordinates":[[-83.5754495,32.8881959],[-83.57576010000001,32.8879121],[-83.5763268,32.887327400000004],[-83.5768676,32.886853]]},"id":"8744c0a16ffffff-13fff1c88bf3cbfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54493000000001,32.909677]},"id":"8f44c0aa1cb18de-1797fe02cf1cd18d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1cb18de-1797fe02cf1cd18d","8f44c0aa1cb011b-17dfdf04e8b59382"]},"geometry":{"type":"LineString","coordinates":[[-83.54493000000001,32.909677],[-83.54482200000001,32.909409000000004],[-83.544662,32.909382],[-83.544517,32.909382]]},"id":"8a44c0aa1cb7fff-17ffde66d33b2f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54392200000001,32.907926]},"id":"8f44c0aa036c46e-13bfe078c0791104"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa036c46e-13bfe078c0791104","8f44c0aa1cb011b-17dfdf04e8b59382"]},"geometry":{"type":"LineString","coordinates":[[-83.544517,32.909382],[-83.544244,32.908923],[-83.54403500000001,32.908627],[-83.543874,32.908546],[-83.543761,32.908425],[-83.54358500000001,32.908155],[-83.54358500000001,32.908061000000004],[-83.543681,32.908007000000005],[-83.54381000000001,32.907926],[-83.54392200000001,32.907926]]},"id":"8644c0aa7ffffff-17d7f04f26b2a267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.577928,32.885327700000005]},"id":"8f44c0a16ce0972-1397dd7303318a55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a16c4a70a-17b7f74b6d50c0ee","8f44c0a16ce0972-1397dd7303318a55"]},"geometry":{"type":"LineString","coordinates":[[-83.577928,32.885327700000005],[-83.5785963,32.8862802],[-83.57882450000001,32.8865124],[-83.5790303,32.8866494],[-83.5793036,32.8867647],[-83.57962040000001,32.8868547],[-83.58012880000001,32.886937700000004],[-83.580449,32.887024700000005]]},"id":"8844c0a16dfffff-17b7cabfc6dcb470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a16c4a70a-17b7f74b6d50c0ee","8f44c0a16c0daf1-1397aa7829af552a"]},"geometry":{"type":"LineString","coordinates":[[-83.580449,32.887024700000005],[-83.58085360000001,32.8871604],[-83.58133000000001,32.8873604],[-83.5815577,32.8874122],[-83.5817521,32.8874008],[-83.58190710000001,32.887334],[-83.5820003,32.8872394],[-83.5820561,32.887108500000004],[-83.5820236,32.8869982],[-83.5818316,32.8867338],[-83.58169360000001,32.8865483],[-83.5815006,32.8863743],[-83.5805428,32.8859639],[-83.5803425,32.8858473],[-83.5802204,32.88572],[-83.57983490000001,32.8852161],[-83.57935640000001,32.884680200000005],[-83.57914860000001,32.8844906]]},"id":"8744c0a16ffffff-17dff663f120d2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58062840000001,32.875947100000005]},"id":"8f44c0b896a4b14-17bff6db416797cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8979d7a6-139fb83a29d9ec2e","8f44c0b896a4b14-17bff6db416797cf"]},"geometry":{"type":"LineString","coordinates":[[-83.58062840000001,32.875947100000005],[-83.580067,32.875314700000004]]},"id":"8944c0b897bffff-13f7d78ab581c6cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57813230000001,32.8733991]},"id":"8f44c0b894ca3a9-17f7fcf35c204e86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8979d7a6-139fb83a29d9ec2e","8f44c0b894ca3a9-17f7fcf35c204e86"]},"geometry":{"type":"LineString","coordinates":[[-83.580067,32.875314700000004],[-83.5789352,32.8740921],[-83.5784508,32.8735735],[-83.5783229,32.8734618],[-83.57813230000001,32.8733991]]},"id":"8744c0b89ffffff-13bf9a83960ef307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5778159,32.873433600000006]},"id":"8f44c0b894d9a70-179f8db91bc9cdc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894d9a70-179f8db91bc9cdc2","8f44c0b894ca3a9-17f7fcf35c204e86"]},"geometry":{"type":"LineString","coordinates":[[-83.57813230000001,32.8733991],[-83.5778159,32.873433600000006]]},"id":"8944c0b894fffff-17ffcd56367ae4b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62773530000001,32.898053100000006]},"id":"8f44c0a158c5734-13b733d975f832d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a158c5734-13b733d975f832d4","8f44c0a15bb638e-17b750e736f536ab"]},"geometry":{"type":"LineString","coordinates":[[-83.62773530000001,32.898053100000006],[-83.6289421,32.8991044]]},"id":"8844c0a159fffff-13ffd2605d7eac87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15b8540a-139f5df39af4ee36","8f44c0a15bb638e-17b750e736f536ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6289421,32.8991044],[-83.6295631,32.8996616],[-83.6301511,32.9002949]]},"id":"8944c0a15bbffff-179fbf64e4e3ba58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62662,32.902041000000004]},"id":"8f44c0a1514e61c-17dfb69281446749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1515e861-13ffb91286d5f171","8f44c0a1514e61c-17dfb69281446749"]},"geometry":{"type":"LineString","coordinates":[[-83.62662,32.902041000000004],[-83.625884,32.901801],[-83.625596,32.901673]]},"id":"8944c0a1517ffff-13f777d51ef7ec6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1515e861-13ffb91286d5f171","8f44c0a158dc8d9-13f7b61190ff84b0"]},"geometry":{"type":"LineString","coordinates":[[-83.625596,32.901673],[-83.62486,32.901097],[-83.62463600000001,32.900857],[-83.62438,32.900553],[-83.6268263,32.898597800000005]]},"id":"8744c0a15ffffff-17bfd9992a58f32c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a158c5734-13b733d975f832d4","8f44c0a158dc8d9-13f7b61190ff84b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6268263,32.898597800000005],[-83.62773530000001,32.898053100000006]]},"id":"8944c0a158fffff-13df74f58564fb1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62767600000001,32.897673000000005]},"id":"8f44c0a158c4a20-13b7b3fe8cb7fd6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a158c5734-13b733d975f832d4","8f44c0a158c4a20-13b7b3fe8cb7fd6c"]},"geometry":{"type":"LineString","coordinates":[[-83.62773530000001,32.898053100000006],[-83.6276892,32.8979707],[-83.62767600000001,32.897673000000005]]},"id":"8a44c0a158c7fff-13bf53f5f50751a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6399153,32.9214763]},"id":"8f44c0a020c334c-13d6f61cfb982ccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a02698976-17dfda19d7c96858","8f44c0a020c334c-13d6f61cfb982ccb"]},"geometry":{"type":"LineString","coordinates":[[-83.6399153,32.9214763],[-83.6389678,32.921736200000005],[-83.63866730000001,32.921846],[-83.6383483,32.922016500000005],[-83.63808370000001,32.9222083],[-83.6374569,32.9226535],[-83.6362465,32.9235954],[-83.63595360000001,32.923782200000005],[-83.6356176,32.9239741],[-83.63534770000001,32.9240912],[-83.6348985,32.9242687],[-83.6346587,32.9243911],[-83.6341647,32.9247219],[-83.6336627,32.9250818],[-83.6334695,32.925299],[-83.633256,32.9255571],[-83.6331584,32.9256686],[-83.63303640000001,32.9257578],[-83.63288440000001,32.9258365],[-83.63273450000001,32.9259049],[-83.6317283,32.926178900000004]]},"id":"8744c0a02ffffff-13ff802feea1c491"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63136850000001,32.926317000000004]},"id":"8f44c0a02698436-17b72afab06f433d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a02698436-17b72afab06f433d","8f44c0a02698976-17dfda19d7c96858"]},"geometry":{"type":"LineString","coordinates":[[-83.6317283,32.926178900000004],[-83.6314526,32.9262882],[-83.63136850000001,32.926317000000004]]},"id":"8b44c0a02698fff-17fffa89eb9726fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a02698436-17b72afab06f433d","8f44c0a11a4101c-139790107164c697"]},"geometry":{"type":"LineString","coordinates":[[-83.63136850000001,32.926317000000004],[-83.6307551,32.9265275],[-83.6305061,32.9266061],[-83.6302787,32.9266201],[-83.6299092,32.9266038],[-83.6294781,32.9265307],[-83.62928570000001,32.9264681]]},"id":"8544c0a3fffffff-13bf0d80ef85abd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6272728,32.924320900000005]},"id":"8f44c0a11a0c90a-13d794fa84308526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a11a0c90a-13d794fa84308526","8f44c0a11a4101c-139790107164c697"]},"geometry":{"type":"LineString","coordinates":[[-83.62928570000001,32.9264681],[-83.62903440000001,32.926348600000004],[-83.6287894,32.9261464],[-83.62836150000001,32.9255559],[-83.62808480000001,32.9251358],[-83.628054,32.9250837],[-83.627835,32.924713000000004],[-83.62770400000001,32.9245043],[-83.62755150000001,32.9243966],[-83.6272728,32.924320900000005]]},"id":"8844c0a11bfffff-17dfb289b7048436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206585,32.9017252]},"id":"8f44c0a150a0ad1-139f65207e30a8ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6179773,32.9037601]},"id":"8f44c0a15469540-13973bac38064d1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15469540-13973bac38064d1e","8f44c0a150a0ad1-139f65207e30a8ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6206585,32.9017252],[-83.619995,32.902601000000004],[-83.61954560000001,32.903179800000004],[-83.61910160000001,32.903412800000005],[-83.61866210000001,32.9035608],[-83.6182605,32.903661500000005],[-83.6179773,32.9037601]]},"id":"8744c0a15ffffff-179fa80891cc73f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6122485,32.9053849]},"id":"8f44c0a154db89d-179fb9a8b4859fcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15469540-13973bac38064d1e","8f44c0a154db89d-179fb9a8b4859fcf"]},"geometry":{"type":"LineString","coordinates":[[-83.6179773,32.9037601],[-83.6177562,32.903989700000004],[-83.6175796,32.904082800000005],[-83.61723160000001,32.9041421],[-83.61694920000001,32.9041802],[-83.61670960000001,32.9042861],[-83.61647,32.9044322],[-83.6162759,32.9045931],[-83.6160842,32.9048175],[-83.6158774,32.9049932],[-83.6157438,32.9050652],[-83.6155622,32.9051033],[-83.6152747,32.9051309],[-83.61498970000001,32.905109700000004],[-83.61471230000001,32.9050377],[-83.61445760000001,32.904999600000004],[-83.6142282,32.9049594],[-83.61405160000001,32.904917000000005],[-83.6137288,32.904965700000005],[-83.613459,32.905092700000004],[-83.61314630000001,32.905260000000006],[-83.61287390000001,32.905321400000005],[-83.61259150000001,32.9053616],[-83.6122485,32.9053849]]},"id":"8744c0a15ffffff-139f7274bd63f2b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5427794,32.8735832]},"id":"8f44c0aa4884c01-17f7e342ede86b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54207050000001,32.8741946]},"id":"8f44c0aa488251c-13f7e4fdf25f1fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4884c01-17f7e342ede86b69","8f44c0aa488251c-13f7e4fdf25f1fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.5427794,32.8735832],[-83.54207050000001,32.8741946]]},"id":"8a44c0aa4887fff-17b7f4207c7c1c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5443609,32.876028500000004]},"id":"8f44c0aa48d5d76-17dfdf6674c91d5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa48d5d76-17dfdf6674c91d5a","8f44c0aa488251c-13f7e4fdf25f1fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.54207050000001,32.8741946],[-83.5417444,32.8745338],[-83.54170140000001,32.87463],[-83.5417055,32.874721],[-83.5417566,32.8748516],[-83.5418538,32.875007000000004],[-83.542018,32.875154200000004],[-83.54343560000001,32.8762771],[-83.54361180000001,32.8764034],[-83.54374410000001,32.876413],[-83.54393110000001,32.876343],[-83.5443609,32.876028500000004]]},"id":"8844c0aa49fffff-13b7e343e9957607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5364775,32.889189200000004]},"id":"8f44c0aa46525ac-17fff2a59ad2b794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5358538,32.8888289]},"id":"8f44c0aa46e46ca-179ff42b62d7f9b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa46e46ca-179ff42b62d7f9b5","8f44c0aa46525ac-17fff2a59ad2b794"]},"geometry":{"type":"LineString","coordinates":[[-83.5364775,32.889189200000004],[-83.5358538,32.8888289]]},"id":"8a44c0aa46e7fff-179ff3688bc23dcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5334835,32.8867001]},"id":"8f44c0aa46a0ba2-17fff9f4dd77c738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa46e46ca-179ff42b62d7f9b5","8f44c0aa46a0ba2-17fff9f4dd77c738"]},"geometry":{"type":"LineString","coordinates":[[-83.5358538,32.8888289],[-83.53563460000001,32.8887014],[-83.53502230000001,32.8883454],[-83.5347947,32.888180600000005],[-83.5345654,32.8879778],[-83.53433290000001,32.8877339],[-83.533918,32.887197300000004],[-83.5334835,32.8867001]]},"id":"8844c0aa47fffff-13d7f74494673715"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5326005,32.885606100000004]},"id":"8f44c0aa479850d-17bffc1cb328f83d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa46a0ba2-17fff9f4dd77c738","8f44c0aa479850d-17bffc1cb328f83d"]},"geometry":{"type":"LineString","coordinates":[[-83.5334835,32.8867001],[-83.5330615,32.8861952],[-83.5326005,32.885606100000004]]},"id":"8844c0aa47fffff-1797fb0b8bd9bcb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54507690000001,32.8765896]},"id":"8f44c0aa48c06a3-17bfdda6f9df3761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa48c06a3-17bfdda6f9df3761","8f44c0aa48d5d76-17dfdf6674c91d5a"]},"geometry":{"type":"LineString","coordinates":[[-83.54507690000001,32.8765896],[-83.5443609,32.876028500000004]]},"id":"8944c0aa48fffff-179ffe86b8cae3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa48d5d76-17dfdf6674c91d5a","8f44c0aa488251c-13f7e4fdf25f1fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.5443609,32.876028500000004],[-83.54207050000001,32.8741946]]},"id":"8844c0aa49fffff-13b7f23234986cc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538893,32.8751801]},"id":"8f44c0aa4c4229e-13dffcbfe13a96c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c4229e-13dffcbfe13a96c6","8f44c0aa4c75a54-17d7fb4ff70c6ace"]},"geometry":{"type":"LineString","coordinates":[[-83.538893,32.8751801],[-83.53891680000001,32.874999700000004],[-83.5389719,32.874873300000004],[-83.53934260000001,32.874309100000005],[-83.5394344,32.874087100000004],[-83.53948170000001,32.873759500000006]]},"id":"8944c0aa4c7ffff-1397fbfaec03aabb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c75a54-17d7fb4ff70c6ace","8f44c0aa4d5c575-13f7eb3f2e0157d3"]},"geometry":{"type":"LineString","coordinates":[[-83.53948170000001,32.873759500000006],[-83.53951330000001,32.8733783],[-83.53952890000001,32.8729772],[-83.5395086,32.8723534]]},"id":"8844c0aa4dfffff-179ffb3c05490eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4d73b86-139ffaeca0427e1b","8f44c0aa4d5c575-13f7eb3f2e0157d3"]},"geometry":{"type":"LineString","coordinates":[[-83.5395086,32.8723534],[-83.53953150000001,32.8718518],[-83.5396406,32.8711849]]},"id":"8944c0aa4d7ffff-13f7eb205bd174cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4d73b86-139ffaeca0427e1b","8f44c0b8a6dccce-17fff92062f20b8e"]},"geometry":{"type":"LineString","coordinates":[[-83.5396406,32.8711849],[-83.5401944,32.8699085],[-83.540356,32.8694545],[-83.540377,32.869314700000004]]},"id":"8744c0aa4ffffff-17d7e9f6621c1359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a6dccce-17fff92062f20b8e","8f44c0b8a6f3484-13bff9c9030ea715"]},"geometry":{"type":"LineString","coordinates":[[-83.540377,32.869314700000004],[-83.5403807,32.869289800000004],[-83.54037790000001,32.8690604],[-83.54032360000001,32.8687579],[-83.54010720000001,32.868191100000004]]},"id":"8944c0b8a6fffff-1397e958d22492c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539764,32.8672029]},"id":"8f44c0b8a6ab0c8-17d7fa9f8782106c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a6ab0c8-17d7fa9f8782106c","8f44c0b8a6f3484-13bff9c9030ea715"]},"geometry":{"type":"LineString","coordinates":[[-83.54010720000001,32.868191100000004],[-83.539764,32.8672029]]},"id":"8844c0b8a7fffff-1397ea34428ff6e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a6ab0c8-17d7fa9f8782106c","8f44c0b8a6aab1a-17bffb0aceb5b523"]},"geometry":{"type":"LineString","coordinates":[[-83.539764,32.8672029],[-83.5395924,32.8667613]]},"id":"8a44c0b8a6affff-17d7fad52bd37019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5392413,32.865731000000004]},"id":"8f44c0b8a6a075e-13bfebe639973dc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a6aab1a-17bffb0aceb5b523","8f44c0b8a6a075e-13bfebe639973dc2"]},"geometry":{"type":"LineString","coordinates":[[-83.5395924,32.8667613],[-83.5393904,32.8662213],[-83.5392413,32.865731000000004]]},"id":"8944c0b8a6bffff-17fffb7d87f19eac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567611,32.8826185]},"id":"8f44c0b8b211da4-17f7b6a32155622f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567892,32.882857300000005]},"id":"8f44c0b8b211a14-179ff5f38e33446c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b211da4-17f7b6a32155622f","8f44c0b8b211a14-179ff5f38e33446c"]},"geometry":{"type":"LineString","coordinates":[[-83.567611,32.8826185],[-83.567892,32.882857300000005]]},"id":"8a44c0b8b217fff-17bfb64b519e17b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56862000000001,32.883486500000004]},"id":"8f44c0b8b21da34-1797b42c8e06ebd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b21da34-1797b42c8e06ebd2","8f44c0b8b211a14-179ff5f38e33446c"]},"geometry":{"type":"LineString","coordinates":[[-83.567892,32.882857300000005],[-83.56862000000001,32.883486500000004]]},"id":"8944c0b8b23ffff-17dff5100bd84057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b21da34-1797b42c8e06ebd2","8f44c0b8b20b41c-13b7e35a5a2887a0"]},"geometry":{"type":"LineString","coordinates":[[-83.56862000000001,32.883486500000004],[-83.56878180000001,32.8836397],[-83.5688654,32.883805800000005],[-83.56892160000001,32.8839495],[-83.56895630000001,32.8841486]]},"id":"8944c0b8b23ffff-17d7b3a7ca39bd2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2e3409-139fb50521d32466","8f44c0b8b20b41c-13b7e35a5a2887a0"]},"geometry":{"type":"LineString","coordinates":[[-83.56895630000001,32.8841486],[-83.56894150000001,32.8843331],[-83.56886490000001,32.8845314],[-83.5687618,32.884703],[-83.56827340000001,32.8851353]]},"id":"8844c0b8b3fffff-1397e3fe09f10ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2e3409-139fb50521d32466","8f44c0aa592d89d-17f7e9d17dad9d3c"]},"geometry":{"type":"LineString","coordinates":[[-83.56827340000001,32.8851353],[-83.56718380000001,32.8860487],[-83.5669403,32.886191000000004],[-83.5665658,32.8862837],[-83.5663081,32.886303000000005]]},"id":"8944c0b8b2fffff-17d7a748b4fe8aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56474180000001,32.8853504]},"id":"8f44c0aa5922992-13b7ada468bf06a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5922992-13b7ada468bf06a1","8f44c0aa592d89d-17f7e9d17dad9d3c"]},"geometry":{"type":"LineString","coordinates":[[-83.5663081,32.886303000000005],[-83.56602090000001,32.8862595],[-83.56582660000001,32.8861973],[-83.56562480000001,32.886096200000004],[-83.56474180000001,32.8853504]]},"id":"8844c0aa59fffff-1797ebd665d61476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5922992-13b7ada468bf06a1","8f44c0b8b66848c-13ffb1c4401a6476"]},"geometry":{"type":"LineString","coordinates":[[-83.56474180000001,32.8853504],[-83.56413590000001,32.8848785],[-83.56390800000001,32.8847601],[-83.56359730000001,32.8846105],[-83.563366,32.8844833],[-83.5630524,32.8842419]]},"id":"8744c0b8bffffff-13bfffaf482dd12a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5809748,32.8975]},"id":"8f44c0a16741a4a-13df8602c5fdfa43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16741a4a-13df8602c5fdfa43","8f44c0a16670614-17d7fb4ee9356fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.5809748,32.8975],[-83.5799578,32.8971104],[-83.5795198,32.896961000000005],[-83.5791835,32.896869],[-83.5788244,32.8968499],[-83.57861940000001,32.8968809],[-83.5783921,32.8969582],[-83.57819450000001,32.89703],[-83.5778782,32.8972594],[-83.57764440000001,32.8976204],[-83.5775984,32.8980064],[-83.5775926,32.8981902],[-83.5776077,32.898561],[-83.5776361,32.8988701],[-83.5776778,32.8990944],[-83.5777542,32.899191800000004],[-83.5778605,32.8993064],[-83.57799560000001,32.8993758],[-83.5781209,32.8994234],[-83.5782671,32.8994164],[-83.57845160000001,32.899360800000004],[-83.578805,32.8991519]]},"id":"8844c0a167fffff-13b7cbabf5391d30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16741a4a-13df8602c5fdfa43","8f44c0a16670614-17d7fb4ee9356fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.578805,32.8991519],[-83.5798712,32.8984449],[-83.5802197,32.8981962],[-83.5805397,32.8979303],[-83.5807719,32.8977662],[-83.5808928,32.8976537],[-83.5809748,32.8975]]},"id":"8844c0a167fffff-13ffa88d92efdf62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16741a4a-13df8602c5fdfa43","8f44c0a16761356-179f948f4408a1ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5809748,32.8975],[-83.5813767,32.896740900000005],[-83.5815692,32.8965769]]},"id":"8944c0a1677ffff-139fb55afe07162f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58335550000001,32.8963313]},"id":"8f44c0a1638280e-17ff9032dacf1129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1638280e-17ff9032dacf1129","8f44c0a16761356-179f948f4408a1ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5815692,32.8965769],[-83.5821327,32.8963994],[-83.58265970000001,32.896330400000004],[-83.5832178,32.8964005],[-83.58335550000001,32.8963313]]},"id":"8744c0a16ffffff-179ff2618da9d396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58788390000001,32.8930683]},"id":"8f44c0a16a8306e-17f7f52498e66f4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1638280e-17ff9032dacf1129","8f44c0a16a8306e-17f7f52498e66f4a"]},"geometry":{"type":"LineString","coordinates":[[-83.58335550000001,32.8963313],[-83.58588200000001,32.894169000000005],[-83.586394,32.893833],[-83.5865663,32.8936171],[-83.58698270000001,32.893453300000004],[-83.58754660000001,32.8932321],[-83.58788390000001,32.8930683]]},"id":"8744c0a16ffffff-139ffae047eef7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06d6d19c-13fef36ad9fc8428","8f44c0a06a358c4-17b6cf2e3d3a51a7"]},"geometry":{"type":"LineString","coordinates":[[-83.65586210000001,32.8962312],[-83.65580080000001,32.8961656],[-83.6558115,32.8957344],[-83.6557794,32.895243300000004],[-83.65569020000001,32.8947821],[-83.6557045,32.894476700000006],[-83.65579720000001,32.8940694],[-83.6558222,32.8937759],[-83.65580440000001,32.8935454],[-83.65572590000001,32.8933836],[-83.65520160000001,32.8928985],[-83.65484860000001,32.8925362],[-83.65473800000001,32.8923475],[-83.6546988,32.8921948],[-83.6546667,32.892063],[-83.65478080000001,32.8914251],[-83.6547523,32.8913023],[-83.6545632,32.891197500000004],[-83.65417090000001,32.891200500000004],[-83.6539427,32.8911346],[-83.6538785,32.8910478],[-83.65386070000001,32.8909669],[-83.6538714,32.8907393],[-83.65396770000001,32.8905507],[-83.6539855,32.89038],[-83.6539891,32.889945700000006],[-83.6541495,32.8896942],[-83.65501970000001,32.8890084],[-83.655437,32.8885951],[-83.6554691,32.8884843],[-83.65541560000001,32.8883765],[-83.6553336,32.888340500000005],[-83.6550162,32.8882776],[-83.6544848,32.8882956],[-83.6535254,32.8882926],[-83.6533471,32.8882926],[-83.65229500000001,32.888556200000004],[-83.6517565,32.8887239],[-83.6513999,32.8887658],[-83.65088630000001,32.8887628],[-83.65030850000001,32.888705900000005],[-83.64988410000001,32.888643],[-83.64964160000001,32.8886191],[-83.6492137,32.8886161],[-83.6489533,32.8885651],[-83.6487393,32.8884573],[-83.6483649,32.888226700000004],[-83.6481651,32.8881579],[-83.6479975,32.8881549],[-83.6478299,32.8881968],[-83.6475731,32.8883375]]},"id":"8744c0a06ffffff-1397d53b395f92c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06d6d19c-13fef36ad9fc8428","8f44c0a06c75085-1796fa23d920a040"]},"geometry":{"type":"LineString","coordinates":[[-83.6475731,32.8883375],[-83.6471594,32.8888766],[-83.64692050000001,32.8890892],[-83.64661020000001,32.8892869],[-83.6462393,32.8894067],[-83.64574,32.889508500000005],[-83.6455117,32.8895864],[-83.64533700000001,32.8896852],[-83.64510870000001,32.8898559],[-83.6449946,32.8899877],[-83.64481950000001,32.8902153]]},"id":"8744c0a06ffffff-17d7e6b1fbc4d28b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06c75085-1796fa23d920a040","8f44c0a06c71c83-13b7eaadec583a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.64481950000001,32.8902153],[-83.64462370000001,32.890469800000005],[-83.64459860000001,32.8905048]]},"id":"8a44c0a06c77fff-17defa693c0e91e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6386647,32.8931884]},"id":"8f44c0a0650102c-17d6f92a90902ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0650102c-17d6f92a90902ea9","8f44c0a06c71c83-13b7eaadec583a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.64459860000001,32.8905048],[-83.6441886,32.891077700000004],[-83.6439782,32.8913323],[-83.6438284,32.8914461],[-83.6435467,32.8915809],[-83.64300460000001,32.8917845],[-83.6426658,32.8919133],[-83.64240190000001,32.892069],[-83.6421914,32.892236700000005],[-83.64200600000001,32.8925062],[-83.6418598,32.892880500000004],[-83.6416921,32.8931381],[-83.6415317,32.893239900000005],[-83.64136400000001,32.893275800000005],[-83.6411786,32.893275800000005],[-83.6399731,32.8931291],[-83.639481,32.8930542],[-83.63910290000001,32.8930512],[-83.6386647,32.8931884]]},"id":"8744c0a06ffffff-17def1691e3e45d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a1034c693-13dff4d261917d68","8f44c0a13821ba9-1397d79326743548"]},"geometry":{"type":"LineString","coordinates":[[-83.6076762,32.9147067],[-83.607325,32.914750500000004],[-83.60695530000001,32.9149058],[-83.6063707,32.9154689],[-83.60553,32.916233000000005],[-83.6043494,32.9172132],[-83.6030133,32.9182004],[-83.6024797,32.9186162],[-83.6018854,32.9191652],[-83.6014201,32.9195708],[-83.60115040000001,32.9197799],[-83.6005427,32.9202336],[-83.60017210000001,32.9205817],[-83.599995,32.9207564]]},"id":"8644c0a17ffffff-13f7ce52a6ff9779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a13821ba9-1397d79326743548","8f44c0a1381b42e-179ffd1b825d00da"]},"geometry":{"type":"LineString","coordinates":[[-83.599995,32.9207564],[-83.599632,32.921129],[-83.5990048,32.921692],[-83.5977933,32.9227316],[-83.5977288,32.9227946]]},"id":"8844c0a139fffff-1797fa4ed26f6939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a1310542d-179f64178923901d","8f44c0a1381b42e-179ffd1b825d00da"]},"geometry":{"type":"LineString","coordinates":[[-83.5977288,32.9227946],[-83.5966219,32.9238761],[-83.59598600000001,32.924374],[-83.5952314,32.924842000000005],[-83.594868,32.9250544]]},"id":"8744c0a13ffffff-13fff073664fd163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a1310542d-179f64178923901d","8f44c0a13c580b6-139fecffde7079c6"]},"geometry":{"type":"LineString","coordinates":[[-83.594868,32.9250544],[-83.594666,32.925177000000005],[-83.5942967,32.9255718],[-83.5938967,32.9258412],[-83.5936121,32.9259568],[-83.59323400000001,32.9259676],[-83.5929493,32.9258882],[-83.5927097,32.925728],[-83.5923533,32.925411100000005],[-83.5919073,32.92479],[-83.5913797,32.9240288],[-83.59121950000001,32.9238458]]},"id":"8744c0a13ffffff-179ff8dee802e0a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a13c5e221-13b77d68bb950f55","8f44c0a1355d694-13ff765dbd93d062"]},"geometry":{"type":"LineString","coordinates":[[-83.59105170000001,32.923677500000004],[-83.59076280000001,32.9235491],[-83.5906856,32.9235269],[-83.590598,32.9235513],[-83.59051070000001,32.923624100000005],[-83.5889813,32.9256034],[-83.5886524,32.926031300000005],[-83.58738290000001,32.9276567]]},"id":"8744c0a13ffffff-17f7721278eeff2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5813626,32.9365998]},"id":"8f44c0aaca4208a-13bfe51067bd2958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0aaca4208a-13bfe51067bd2958","8f44c0a1355d694-13ff765dbd93d062"]},"geometry":{"type":"LineString","coordinates":[[-83.58738290000001,32.9276567],[-83.5873035,32.9277722],[-83.5862592,32.929038600000005],[-83.585435,32.9300128],[-83.58465790000001,32.930958000000004],[-83.5836848,32.9320916],[-83.5831581,32.9327442],[-83.58282410000001,32.9332342],[-83.58241790000001,32.9338487],[-83.58180730000001,32.934913900000005],[-83.58114640000001,32.936354800000004],[-83.58114640000001,32.936438100000004],[-83.581192,32.9365012],[-83.5813626,32.9365998]]},"id":"8444c0bffffffff-179f7ebb3c423504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa4b02d19-13f7d04b7182e8eb","8f44c0aa4b1101b-13d7f155c9d746c7"]},"geometry":{"type":"LineString","coordinates":[[-83.5505481,32.8779101],[-83.550122,32.878237]]},"id":"8944c0aa4b3ffff-13dfd0d0a86b9a1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa4b88d5e-17bff5c8a5b07123","8f44c0aa4b1101b-13d7f155c9d746c7"]},"geometry":{"type":"LineString","coordinates":[[-83.550122,32.878237],[-83.54829980000001,32.8796607]]},"id":"8844c0aa4bfffff-13ffd38f325000d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5460032,32.881446600000004]},"id":"8f44c0aa4a95c5a-139ffb640118e0a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa4b88d5e-17bff5c8a5b07123","8f44c0aa4a95c5a-139ffb640118e0a2"]},"geometry":{"type":"LineString","coordinates":[[-83.54829980000001,32.8796607],[-83.5474516,32.8803118],[-83.5460032,32.881446600000004]]},"id":"8844c0aa4bfffff-17fff897a1e9dcce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5457143,32.881659500000005]},"id":"8f44c0aa4a90aae-139ffc1899235d42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa4a90aae-139ffc1899235d42","8f44c0aa4a95c5a-139ffb640118e0a2"]},"geometry":{"type":"LineString","coordinates":[[-83.5460032,32.881446600000004],[-83.5457143,32.881659500000005]]},"id":"8a44c0aa4a97fff-13dffbbe4aeb0462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa405dae5-17f7e185d8e4900e","8f44c0aa4a90aae-139ffc1899235d42"]},"geometry":{"type":"LineString","coordinates":[[-83.5457143,32.881659500000005],[-83.5434915,32.883405800000006]]},"id":"8744c0aa4ffffff-17bffecf38cb8e45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5633952,32.8758001]},"id":"8f44c0b8b01e773-17dfb0ee0d5b1649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b01e773-17dfb0ee0d5b1649","8f44c0b8b0a4710-1397f4981be1765e"]},"geometry":{"type":"LineString","coordinates":[[-83.5618943,32.8744534],[-83.5621665,32.874685400000004],[-83.5623205,32.874816700000004],[-83.5633952,32.8758001]]},"id":"8844c0b8b1fffff-13b7f2c01a2d7f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b01e773-17dfb0ee0d5b1649","8f44c0b8b052cb1-17b7acd639889546"]},"geometry":{"type":"LineString","coordinates":[[-83.5633952,32.8758001],[-83.5639033,32.8762264],[-83.5650717,32.877162600000005]]},"id":"8844c0b8b1fffff-17ffeee428a9715e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b052cb1-17b7acd639889546","8f44c0b8b05ec42-13dfaacf3b846c66"]},"geometry":{"type":"LineString","coordinates":[[-83.5650717,32.877162600000005],[-83.5659021,32.877867200000004]]},"id":"8844c0b8b1fffff-13fffbd2bd9ba3e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56658660000001,32.8784337]},"id":"8f44c0b8b059d19-13bfb92363d5cfb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b05ec42-13dfaacf3b846c66","8f44c0b8b059d19-13bfb92363d5cfb6"]},"geometry":{"type":"LineString","coordinates":[[-83.5659021,32.877867200000004],[-83.56658660000001,32.8784337]]},"id":"8a44c0b8b05ffff-139fb9f95916c577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b059d19-13bfb92363d5cfb6","8f44c0b8b3a5b03-17bfb6b2282ea3c0"]},"geometry":{"type":"LineString","coordinates":[[-83.56658660000001,32.8784337],[-83.567587,32.8792473]]},"id":"8744c0b8bffffff-13bff7eac1e2cf4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b313b41-17ffe4cdb0274696","8f44c0b8b3a5b03-17bfb6b2282ea3c0"]},"geometry":{"type":"LineString","coordinates":[[-83.567587,32.8792473],[-83.5683621,32.8799422]]},"id":"8a44c0b8b317fff-1797e5bfffd7022c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b313b41-17ffe4cdb0274696","8f44c0b8b311685-1797b4af4bca49d5"]},"geometry":{"type":"LineString","coordinates":[[-83.5683621,32.8799422],[-83.56841080000001,32.879980100000004]]},"id":"8b44c0b8b311fff-17f7b4be88930c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b311685-1797b4af4bca49d5","8f44c0b8b30b4ce-13ffb1471b79ecf3"]},"geometry":{"type":"LineString","coordinates":[[-83.56841080000001,32.879980100000004],[-83.5693012,32.8807561],[-83.56980630000001,32.8811963]]},"id":"8944c0b8b33ffff-17ffa2fb32baf9c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b30b4ce-13ffb1471b79ecf3","8f44c0b8b30b602-13bfb1106016b633"]},"geometry":{"type":"LineString","coordinates":[[-83.56980630000001,32.8811963],[-83.5698938,32.8812699]]},"id":"8b44c0b8b30bfff-1397b12bb56051df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b225915-13f7e0d34c6f5ab7","8f44c0b8b30b602-13bfb1106016b633"]},"geometry":{"type":"LineString","coordinates":[[-83.5698938,32.8812699],[-83.56999160000001,32.8813588]]},"id":"8b44c0b8b30bfff-13d7a0f1d57d5688"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b350634-13b7df4e38d2e27d","8f44c0b8b225915-13f7e0d34c6f5ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.56999160000001,32.8813588],[-83.5702681,32.881593],[-83.5703242,32.8816409],[-83.5706141,32.8818964]]},"id":"8844c0b8b3fffff-139ff00fee4b739e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b350634-13b7df4e38d2e27d","8f44c0b8b351592-1397ded654820e20"]},"geometry":{"type":"LineString","coordinates":[[-83.5706141,32.8818964],[-83.57080590000001,32.882051600000004]]},"id":"8a44c0b8b357fff-13f7df1245d9f698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.572242,32.8830838]},"id":"8f44c0b8b34a16a-1797fb54cf4f045b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b34a16a-1797fb54cf4f045b","8f44c0b8b351592-1397ded654820e20"]},"geometry":{"type":"LineString","coordinates":[[-83.57080590000001,32.882051600000004],[-83.57119560000001,32.8824008],[-83.57160060000001,32.8827249],[-83.5719272,32.882923000000005],[-83.572242,32.8830838]]},"id":"8944c0b8b37ffff-17ffbd26da9c0085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5743906,32.884002200000005]},"id":"8f44c0a16c80d9e-13d7f615e50cf20d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b34a16a-1797fb54cf4f045b","8f44c0a16c80d9e-13d7f615e50cf20d"]},"geometry":{"type":"LineString","coordinates":[[-83.572242,32.8830838],[-83.5725659,32.8832065],[-83.5728907,32.883316400000005],[-83.5734731,32.883515100000004],[-83.5739099,32.8837059],[-83.574161,32.883849600000005],[-83.5743906,32.884002200000005]]},"id":"8644c0b8fffffff-179ff8a7b29c619e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57522990000001,32.884888000000004]},"id":"8f44c0a16c8c0f3-13ff94095ff9ca42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16c8c0f3-13ff94095ff9ca42","8f44c0a16c80d9e-13d7f615e50cf20d"]},"geometry":{"type":"LineString","coordinates":[[-83.5743906,32.884002200000005],[-83.57460010000001,32.8841772],[-83.5747817,32.8843522],[-83.5750215,32.8846168],[-83.57522990000001,32.884888000000004]]},"id":"8944c0a16cbffff-13dfd5032d8d411e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16c8c0f3-13ff94095ff9ca42","8f44c0a16c8d602-1397b356ec5b30f4"]},"geometry":{"type":"LineString","coordinates":[[-83.57522990000001,32.884888000000004],[-83.5755154,32.8853043]]},"id":"8a44c0a16c8ffff-1397b3b02c216416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57585590000001,32.8857784]},"id":"8f44c0a16cd4d48-17bf92821f3bdfb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16c8d602-1397b356ec5b30f4","8f44c0a16cd4d48-17bf92821f3bdfb9"]},"geometry":{"type":"LineString","coordinates":[[-83.5755154,32.8853043],[-83.57585590000001,32.8857784]]},"id":"8844c0a16dfffff-1797d2ec8c15a5d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57589800000001,32.885837]},"id":"8f44c0a16cd4124-17d7b267c225f9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16cd4d48-17bf92821f3bdfb9","8f44c0a16cd4124-17d7b267c225f9ba"]},"geometry":{"type":"LineString","coordinates":[[-83.57585590000001,32.8857784],[-83.57589800000001,32.885837]]},"id":"8b44c0a16cd4fff-17bfd274e0f12210"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16cc3195-17dfb009ce0de36c","8f44c0a16cd4124-17d7b267c225f9ba"]},"geometry":{"type":"LineString","coordinates":[[-83.57589800000001,32.885837],[-83.57619190000001,32.8862052],[-83.57656370000001,32.886569800000004],[-83.5768676,32.886853]]},"id":"8944c0a16cfffff-1797d1433f042221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16cc3195-17dfb009ce0de36c","8f44c0a16cceaa0-13bfaea99ad5a2db"]},"geometry":{"type":"LineString","coordinates":[[-83.5768676,32.886853],[-83.5774311,32.887241800000005]]},"id":"8944c0a16cfffff-17d7af59be1f2cb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57803030000001,32.8875739]},"id":"8f44c0a16ccd622-139fbd331e760425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a16cceaa0-13bfaea99ad5a2db","8f44c0a16ccd622-139fbd331e760425"]},"geometry":{"type":"LineString","coordinates":[[-83.5774311,32.887241800000005],[-83.57803030000001,32.8875739]]},"id":"8a44c0a16ccffff-13b7fdee53a03632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a161b2a49-13d7bb70c0d4a7ab","8f44c0a16ccd622-139fbd331e760425"]},"geometry":{"type":"LineString","coordinates":[[-83.57803030000001,32.8875739],[-83.57875080000001,32.887869900000005]]},"id":"8744c0a16ffffff-13ffbc51ebd756ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a161b2a49-13d7bb70c0d4a7ab","8f44c0a1618486b-13b7a8b7b760ec48"]},"geometry":{"type":"LineString","coordinates":[[-83.57875080000001,32.887869900000005],[-83.5798661,32.8882458]]},"id":"8944c0a161bffff-13bfba143be35e2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1614d366-13f7f81c9ac46505","8f44c0a1618486b-13b7a8b7b760ec48"]},"geometry":{"type":"LineString","coordinates":[[-83.5798661,32.8882458],[-83.58282,32.8893045],[-83.584055,32.889715100000004],[-83.58486160000001,32.8900048],[-83.5853586,32.8902329],[-83.585779,32.8904799],[-83.5860208,32.8906744],[-83.5862443,32.890872800000004],[-83.5864548,32.8911202],[-83.58666790000001,32.8914026]]},"id":"8844c0a161fffff-17f7f009add65f2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1614d366-13f7f81c9ac46505","8f44c0a16a8306e-17f7f52498e66f4a"]},"geometry":{"type":"LineString","coordinates":[[-83.58666790000001,32.8914026],[-83.5872353,32.892182500000004],[-83.58750810000001,32.8925671],[-83.5878168,32.8929776],[-83.58788390000001,32.8930683]]},"id":"8744c0a16ffffff-17f776a1eb565b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1636b4a4-139f6e9fa1f41148","8f44c0a16a8306e-17f7f52498e66f4a"]},"geometry":{"type":"LineString","coordinates":[[-83.58788390000001,32.8930683],[-83.58813590000001,32.8933881],[-83.5884755,32.893850400000005],[-83.58884090000001,32.894356],[-83.589083,32.894649],[-83.589371,32.895065],[-83.589819,32.895753],[-83.590075,32.896329],[-83.59013900000001,32.896569],[-83.590186,32.896889],[-83.59033000000001,32.897673000000005],[-83.5905542,32.8984192]]},"id":"8744c0a16ffffff-17b7f13c6d553d17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89096ae9-17dff09962607231","8f44c0b8909e699-13bfc017ae685fe6"]},"geometry":{"type":"LineString","coordinates":[[-83.583399,32.871438000000005],[-83.58278770000001,32.8710748],[-83.58282840000001,32.8705463],[-83.5831914,32.8702695]]},"id":"8744c0b89ffffff-13d7a11c63b43089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58390320000001,32.8968514]},"id":"8f44c0a16381698-17b77edc87028770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16381698-17b77edc87028770","8f44c0a1638280e-17ff9032dacf1129"]},"geometry":{"type":"LineString","coordinates":[[-83.58335550000001,32.8963313],[-83.58390320000001,32.8968514]]},"id":"8a44c0a16387fff-1797ff87ae8403e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16388833-13d77d9d1f2dc981","8f44c0a16381698-17b77edc87028770"]},"geometry":{"type":"LineString","coordinates":[[-83.58390320000001,32.8968514],[-83.5844143,32.8972807]]},"id":"8944c0a163bffff-13bf7e3cdb6b4a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5829375,32.901054200000004]},"id":"8f44c0a1292404c-13f7e1381bb5124b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16388833-13d77d9d1f2dc981","8f44c0a1292404c-13f7e1381bb5124b"]},"geometry":{"type":"LineString","coordinates":[[-83.5844143,32.8972807],[-83.58522690000001,32.8979708],[-83.58547010000001,32.898265200000004],[-83.58560510000001,32.8986132],[-83.5856644,32.899036200000005],[-83.5855636,32.8993057],[-83.58543130000001,32.89943],[-83.5851658,32.899569],[-83.584928,32.8996404],[-83.5844244,32.8998301],[-83.5841058,32.8999994],[-83.58377010000001,32.900293000000005],[-83.5829375,32.901054200000004]]},"id":"8844c0a163fffff-17977d079cc19b17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63971880000001,32.8959355]},"id":"8f44c0a0655e39b-17f7f697ccacdff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a0655e39b-17f7f697ccacdff7","8f44c0a0650102c-17d6f92a90902ea9"]},"geometry":{"type":"LineString","coordinates":[[-83.63971880000001,32.8959355],[-83.63979020000001,32.8956019],[-83.6398327,32.8952139],[-83.63983680000001,32.8949158],[-83.6398126,32.8946368],[-83.63974610000001,32.894360400000004],[-83.6396531,32.894097800000004],[-83.6395256,32.8938398],[-83.63936000000001,32.8936334],[-83.6392065,32.8934826],[-83.6389851,32.893327],[-83.6388589,32.8932626],[-83.6386647,32.8931884]]},"id":"8844c0a065fffff-13b6f7032bd1c3c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a0650102c-17d6f92a90902ea9","8f44c0a33258272-13b7c1bc51237d65"]},"geometry":{"type":"LineString","coordinates":[[-83.6386647,32.8931884],[-83.638405,32.8931297],[-83.63807600000001,32.893113],[-83.6374905,32.893123100000004],[-83.63711830000001,32.8931058],[-83.63683250000001,32.8930652],[-83.6366929,32.893029500000004],[-83.63647680000001,32.8929525],[-83.63622860000001,32.8928444],[-83.63596100000001,32.8926782],[-83.6357928,32.8925264],[-83.6355982,32.8922998],[-83.6351547,32.8917372]]},"id":"8744c0a06ffffff-17defdd7ec8532ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a332ad9b6-17b77a1e0d55b4a0","8f44c0a33258272-13b7c1bc51237d65"]},"geometry":{"type":"LineString","coordinates":[[-83.6351547,32.8917372],[-83.634659,32.8910786],[-83.63425670000001,32.8905711],[-83.6339459,32.8901717],[-83.63377340000001,32.889988100000004],[-83.6336294,32.8898494],[-83.6334195,32.8897204],[-83.63318480000001,32.8895871],[-83.63290040000001,32.889477],[-83.6326332,32.8893987],[-83.6323531,32.889278700000006],[-83.63213490000001,32.8891629],[-83.6320269,32.8890906],[-83.6318645,32.888969700000004],[-83.6317216,32.8888327]]},"id":"8844c0a333fffff-17d7759468bc46b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a332a5809-13bfeb569a9a11f5","8f44c0a332ad9b6-17b77a1e0d55b4a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6317216,32.8888327],[-83.63163300000001,32.8887279],[-83.6314444,32.8884745],[-83.63128730000001,32.888133],[-83.63122150000001,32.887859]]},"id":"8844c0a333fffff-13ffbad74f1b4234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66347520000001,32.9822496]},"id":"8f44c0a0a6dbb41-13b6bc9809f8513d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a022c62e5-179eecafb10078c1","8f44c0a0a6dbb41-13b6bc9809f8513d"]},"geometry":{"type":"LineString","coordinates":[[-83.66347520000001,32.9822496],[-83.6634832,32.982159100000004],[-83.6635255,32.9816833],[-83.66359080000001,32.981053100000004],[-83.663621,32.9807782],[-83.6637113,32.979948900000004],[-83.66379280000001,32.9789582],[-83.6638149,32.9786261],[-83.6637886,32.9783105],[-83.6637391,32.9781287],[-83.6636105,32.977807],[-83.6634389,32.977461000000005],[-83.66324730000001,32.977111900000004],[-83.66304840000001,32.976635],[-83.6629443,32.9762927],[-83.6629078,32.976109],[-83.66284680000001,32.9756816],[-83.66282700000001,32.9753087],[-83.6628421,32.9751459],[-83.6628822,32.974881],[-83.66324610000001,32.973319000000004],[-83.66350200000001,32.972656300000004],[-83.6636218,32.9723807],[-83.6637693,32.972128000000005],[-83.66397620000001,32.971850100000005],[-83.6641307,32.9716916],[-83.6645271,32.971347200000004],[-83.6649556,32.970996400000004],[-83.665115,32.9708397],[-83.6652842,32.9706167],[-83.6654044,32.970364000000004],[-83.6654448,32.9702201],[-83.66547580000001,32.970077700000004],[-83.6654845,32.9698632],[-83.6654579,32.969634],[-83.66541380000001,32.9694376],[-83.6652866,32.969002700000004],[-83.66506820000001,32.9682746],[-83.6649885,32.9680258],[-83.6648589,32.967705800000005],[-83.6647238,32.967384200000005],[-83.66452930000001,32.9669988],[-83.6641745,32.9664057],[-83.6637973,32.965791700000004],[-83.66362330000001,32.9655282],[-83.6634188,32.9652955],[-83.6632383,32.9651324],[-83.6629886,32.9649681],[-83.66262920000001,32.9647902],[-83.66233980000001,32.9647049],[-83.6620094,32.9646178],[-83.66161360000001,32.9645157],[-83.6612126,32.9643887],[-83.6609222,32.9642573],[-83.6604916,32.9640135],[-83.6601514,32.963816300000005],[-83.65974150000001,32.9635648],[-83.65950600000001,32.963374900000005],[-83.659413,32.963289200000006],[-83.65930850000001,32.9631826],[-83.659214,32.963047200000005],[-83.6591228,32.962891],[-83.65905210000001,32.9627272],[-83.6590118,32.962532800000005],[-83.6589577,32.9618022],[-83.6589587,32.9614208],[-83.6589922,32.9611436],[-83.6590762,32.9605434],[-83.65911100000001,32.9602145],[-83.65911100000001,32.9600412],[-83.6590685,32.9598268],[-83.6590103,32.9596557],[-83.6589007,32.9594345],[-83.6585067,32.9589238],[-83.65803600000001,32.958359800000004],[-83.657359,32.9575357],[-83.65704600000001,32.957219200000004],[-83.65672210000001,32.956958300000004],[-83.656504,32.956825],[-83.6562533,32.956712],[-83.65577090000001,32.956556500000005],[-83.6552309,32.956408100000004],[-83.6547668,32.956259800000005],[-83.6543932,32.956129100000005],[-83.6540751,32.955973900000004],[-83.65374770000001,32.955763000000005],[-83.653453,32.955532000000005],[-83.6531539,32.9552366],[-83.6529884,32.9550057],[-83.65280770000001,32.9547155],[-83.65272510000001,32.9545054],[-83.65266030000001,32.954318300000004],[-83.652609,32.9541156],[-83.6524928,32.9535134],[-83.65233570000001,32.9527492],[-83.6522037,32.9523503],[-83.6521134,32.952183600000005],[-83.6519737,32.951970100000004],[-83.65181910000001,32.951767700000005],[-83.65166260000001,32.951595000000005],[-83.6514552,32.9514277],[-83.6510767,32.9511495],[-83.65106750000001,32.9511428],[-83.650717,32.9509057],[-83.6504287,32.9506947],[-83.65027040000001,32.9505483],[-83.650118,32.9503919],[-83.6499919,32.9502207],[-83.64987190000001,32.9500216],[-83.6495094,32.9492897],[-83.64932900000001,32.948907600000005],[-83.6488898,32.9480318],[-83.6486727,32.9475787],[-83.6485126,32.9473144],[-83.6483073,32.9470338],[-83.64813840000001,32.9468617],[-83.64797060000001,32.9467036],[-83.6479463,32.946685200000005],[-83.64776330000001,32.9465468],[-83.6476763,32.9465],[-83.6474285,32.9463505],[-83.6469125,32.946091800000005],[-83.64617100000001,32.94572],[-83.64580140000001,32.9455207],[-83.6456191,32.9454061],[-83.6454629,32.9452682],[-83.6453455,32.9451483],[-83.6452507,32.945032000000005],[-83.6451553,32.9448778],[-83.6450926,32.9447368],[-83.6450489,32.9446117],[-83.6450092,32.94444],[-83.64499710000001,32.944238600000006],[-83.64501320000001,32.9439682],[-83.6452311,32.942728],[-83.64536530000001,32.9419824],[-83.6456206,32.9405267],[-83.64575,32.9398454],[-83.645835,32.9394],[-83.6459289,32.939067900000005],[-83.6460244,32.938775400000004],[-83.6462577,32.9382395],[-83.6464497,32.9378253],[-83.6465788,32.937524800000006],[-83.6466752,32.9372502],[-83.64670070000001,32.9371334],[-83.646798,32.9367204],[-83.6469828,32.9354169],[-83.64706070000001,32.9348114],[-83.6472171,32.9337639],[-83.64732500000001,32.933001100000006],[-83.6473277,32.9327652],[-83.64732810000001,32.9324713],[-83.64729050000001,32.932154000000004],[-83.6472409,32.931910800000004],[-83.6471605,32.931604300000004],[-83.6470386,32.931348400000005],[-83.6469251,32.9311145],[-83.64675720000001,32.9308761],[-83.6465881,32.930686200000004],[-83.6463597,32.9304645],[-83.6455518,32.9298015],[-83.64439030000001,32.928859100000004],[-83.6437915,32.9283651],[-83.6437765,32.9283528]]},"id":"8544c0a3fffffff-17f6f1e81708e6d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a022c62e5-179eecafb10078c1","8f44c0a020c334c-13d6f61cfb982ccb"]},"geometry":{"type":"LineString","coordinates":[[-83.6437765,32.9283528],[-83.6432546,32.927925300000005],[-83.64272030000001,32.927474700000005],[-83.64249050000001,32.9272537],[-83.64232530000001,32.9270587],[-83.642204,32.9268765],[-83.6420956,32.9266839],[-83.64201820000001,32.926432600000005],[-83.641964,32.926228900000005],[-83.6419382,32.9260007],[-83.6419072,32.925301600000004],[-83.6418891,32.924981],[-83.641851,32.924601],[-83.6418117,32.924396],[-83.6418041,32.9243678],[-83.6417704,32.9242422],[-83.64169770000001,32.9240768],[-83.6415716,32.9238717],[-83.64137570000001,32.9236098],[-83.6407331,32.9229253],[-83.6405733,32.922730900000005],[-83.640388,32.9224728],[-83.64025620000001,32.9222588],[-83.64006950000001,32.921881400000004],[-83.6399986,32.921698400000004],[-83.6399153,32.9214763]]},"id":"8744c0a02ffffff-17fef1ac1c393032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a020c334c-13d6f61cfb982ccb","8f44c0a0201ab4b-17bef6702a4eef07"]},"geometry":{"type":"LineString","coordinates":[[-83.6399153,32.9214763],[-83.6398533,32.921215000000004],[-83.6398173,32.9210213],[-83.63978850000001,32.9207861],[-83.6397807,32.9205509],[-83.6397781,32.9200457],[-83.6397822,32.9189765]]},"id":"8844c0a021fffff-13def6664f2c2d9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a021b5ce9-13d7fabe7b82eb3a","8f44c0a0201ab4b-17bef6702a4eef07"]},"geometry":{"type":"LineString","coordinates":[[-83.6397822,32.9189765],[-83.6397755,32.9186131],[-83.6397664,32.917983400000004],[-83.63975310000001,32.9176773],[-83.63972050000001,32.9174768],[-83.63968150000001,32.9173314],[-83.6396004,32.9171098],[-83.6394885,32.9169081],[-83.63937920000001,32.916752100000004],[-83.63924630000001,32.9165879],[-83.6390593,32.9164],[-83.6387828,32.9161416],[-83.6384974,32.9158738],[-83.63842740000001,32.915801900000005],[-83.63834960000001,32.9157061],[-83.638261,32.9155704],[-83.6381758,32.9154056],[-83.63812390000001,32.915227],[-83.6380752,32.914974],[-83.6380185,32.9143127]]},"id":"8744c0a02ffffff-17fef8480ef07561"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a021b5ce9-13d7fabe7b82eb3a","8f44c0a02d503a0-179ff93c8c51bab6"]},"geometry":{"type":"LineString","coordinates":[[-83.6380185,32.9143127],[-83.6379849,32.9141258],[-83.63776750000001,32.913336],[-83.6377207,32.9130824],[-83.6377181,32.9129103],[-83.63773880000001,32.912751400000005],[-83.6377655,32.912614600000005],[-83.6378322,32.912444300000004],[-83.63812180000001,32.9117326],[-83.63834580000001,32.911159500000004],[-83.6384366,32.9108873],[-83.6385456,32.9103559],[-83.63861560000001,32.9097701],[-83.638636,32.909513000000004]]},"id":"8844c0a02dfffff-17fffa74e0835c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a02d540a6-17dff934b4b9dddc","8f44c0a02d503a0-179ff93c8c51bab6"]},"geometry":{"type":"LineString","coordinates":[[-83.638636,32.909513000000004],[-83.63866110000001,32.9092021],[-83.6386485,32.9089781]]},"id":"8a44c0a02d57fff-17f6f933099198c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a02d7248b-17def960ecc98cec","8f44c0a02d540a6-17dff934b4b9dddc"]},"geometry":{"type":"LineString","coordinates":[[-83.6386485,32.9089781],[-83.63862110000001,32.9087812],[-83.63857780000001,32.9085897]]},"id":"8944c0a02d7ffff-17d7f9484af96d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a02d7248b-17def960ecc98cec","8f44c0a02d046de-139ffc5435a78b44"]},"geometry":{"type":"LineString","coordinates":[[-83.63857780000001,32.9085897],[-83.6384484,32.9082627],[-83.6383363,32.9080518],[-83.63813470000001,32.907793000000005],[-83.63791830000001,32.907566700000004],[-83.63758,32.907225000000004],[-83.6373693,32.9070331]]},"id":"8844c0a02dfffff-13d6faae1a430a1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a15b5a8eb-1797f30266ec907d","8f44c0a02d046de-139ffc5435a78b44"]},"geometry":{"type":"LineString","coordinates":[[-83.6373693,32.9070331],[-83.63683300000001,32.9065278],[-83.63629080000001,32.9060988],[-83.6358369,32.9057351],[-83.6356294,32.9055391],[-83.635452,32.905337],[-83.6352895,32.9051144],[-83.63512870000001,32.904805100000004],[-83.63488810000001,32.904259100000004],[-83.634763,32.9039274],[-83.63470070000001,32.9036661],[-83.6346438,32.9032988],[-83.63463300000001,32.9029503]]},"id":"8644c0a07ffffff-179fe07eb4140c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6349203,32.9012059]},"id":"8f44c0a15b73cc1-13d7b24edeb7cedb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a15b5a8eb-1797f30266ec907d","8f44c0a15b73cc1-13d7b24edeb7cedb"]},"geometry":{"type":"LineString","coordinates":[[-83.63463300000001,32.9029503],[-83.6346676,32.902449100000005],[-83.6346984,32.9021373],[-83.6347612,32.9017592],[-83.63485650000001,32.901381900000004],[-83.6349203,32.9012059]]},"id":"8944c0a15b7ffff-17f7c2c3d6f2efd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a064d814d-17b7ffceb5c4edf8","8f44c0a15b73cc1-13d7b24edeb7cedb"]},"geometry":{"type":"LineString","coordinates":[[-83.6349203,32.9012059],[-83.6350436,32.900959900000004],[-83.6351384,32.9008198],[-83.63515530000001,32.9007949],[-83.6356726,32.9002071],[-83.63594450000001,32.8998968]]},"id":"8644c0a07ffffff-13bfd121544858d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a064d814d-17b7ffceb5c4edf8","8f44c0a0655e39b-17f7f697ccacdff7"]},"geometry":{"type":"LineString","coordinates":[[-83.63594450000001,32.8998968],[-83.63675450000001,32.899056300000005],[-83.6371182,32.8986575],[-83.637612,32.898169],[-83.638396,32.897417000000004],[-83.63902420000001,32.896815100000005],[-83.639255,32.896599900000005],[-83.63944120000001,32.8964014],[-83.63959820000001,32.8961617],[-83.63971880000001,32.8959355]]},"id":"8844c0a065fffff-13defb1d621fcc55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60991,32.8884004]},"id":"8f44c0a1406992c-13977f5e490421f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a14772608-13bf50f3c221ba26","8f44c0a1406992c-13977f5e490421f5"]},"geometry":{"type":"LineString","coordinates":[[-83.60991,32.8884004],[-83.60928170000001,32.8887677],[-83.6083966,32.889312000000004],[-83.60769300000001,32.8896339],[-83.6070578,32.8898801],[-83.6067333,32.8900748],[-83.6060913,32.8904312],[-83.60569190000001,32.8906079],[-83.60533170000001,32.8906707],[-83.60498220000001,32.8907067],[-83.60461480000001,32.8908025],[-83.60401920000001,32.8909972],[-83.60362690000001,32.891054100000005],[-83.60334160000001,32.8910361],[-83.6027076,32.891109300000004]]},"id":"8744c0a14ffffff-17b7c7e8fa42ef46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6006833,32.891503]},"id":"8f44c0a14635b49-13b775e4fbb00cfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a14772608-13bf50f3c221ba26","8f44c0a14635b49-13b775e4fbb00cfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6027076,32.891109300000004],[-83.6026676,32.891114],[-83.60203990000001,32.891248700000006],[-83.6013052,32.891419400000004],[-83.6006833,32.891503]]},"id":"8844c0a147fffff-13b7d36ac50ff7bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67558480000001,32.9210775]},"id":"8f44c0a01c12486-13dfff07898c3e9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6749396,32.9219681]},"id":"8f44c0a01caa514-1796b09ac306a862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01caa514-1796b09ac306a862","8f44c0a01c12486-13dfff07898c3e9d"]},"geometry":{"type":"LineString","coordinates":[[-83.67558480000001,32.9210775],[-83.67531860000001,32.9212326],[-83.6750969,32.921470500000005],[-83.6749712,32.9217001],[-83.67494160000001,32.9218738],[-83.6749396,32.9219681]]},"id":"8944c0a01cbffff-13dfa008869b3ed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6726106,32.9221117]},"id":"8f44c0a01c9358a-17dff64a64a00379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01caa514-1796b09ac306a862","8f44c0a01c9358a-17dff64a64a00379"]},"geometry":{"type":"LineString","coordinates":[[-83.6749396,32.9219681],[-83.6748012,32.9220083],[-83.6745252,32.9221282],[-83.67421470000001,32.9222875],[-83.6739807,32.9223123],[-83.6733203,32.9222916],[-83.67309850000001,32.9222358],[-83.67282750000001,32.922190300000004],[-83.6726106,32.9221117]]},"id":"8944c0a01cbffff-179ef36ad81c7e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5777243,32.8721839]},"id":"8f44c0b894c2b62-13fffdf25cc73556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894c501c-1397cc43a3dfa073","8f44c0b894c2b62-13fffdf25cc73556"]},"geometry":{"type":"LineString","coordinates":[[-83.5777243,32.8721839],[-83.57807120000001,32.8720774],[-83.5784134,32.8719972]]},"id":"8a44c0b894c7fff-13bffd1bfa5351d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894ec4a4-13ffda79aac4836b","8f44c0b894c501c-1397cc43a3dfa073"]},"geometry":{"type":"LineString","coordinates":[[-83.5784134,32.8719972],[-83.57870820000001,32.871928100000005],[-83.57914620000001,32.8717501]]},"id":"8944c0b894fffff-13d79b5beca3f7a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58021910000001,32.8726827]},"id":"8f44c0b8945b5b1-17b7b7db18050a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894ec4a4-13ffda79aac4836b","8f44c0b8945b5b1-17b7b7db18050a6d"]},"geometry":{"type":"LineString","coordinates":[[-83.57914620000001,32.8717501],[-83.5793125,32.8718402],[-83.57944660000001,32.8721376],[-83.579806,32.872547600000004],[-83.58021910000001,32.8726827]]},"id":"8844c0b895fffff-13b7a9487dfab422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5446577,32.880718800000004]},"id":"8f44c0aa414aaf3-13d7deacf422c033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa414818d-17d7fdf5d0051e7e","8f44c0aa414aaf3-13d7deacf422c033"]},"geometry":{"type":"LineString","coordinates":[[-83.5446577,32.880718800000004],[-83.5449507,32.8805215]]},"id":"8a44c0aa414ffff-1397fe5162e94289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa08728d5-17b7f60904249bec","8f44c0aa095028d-1397e4a1a9d24120"]},"geometry":{"type":"LineString","coordinates":[[-83.54164320000001,32.8958007],[-83.54221820000001,32.893912]]},"id":"8844c0aa09fffff-13d7e55555b98b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.541821,32.8859836]},"id":"8f44c0aa439c590-17bfe599e87821d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa439c590-17bfe599e87821d7","8f44c0aa095028d-1397e4a1a9d24120"]},"geometry":{"type":"LineString","coordinates":[[-83.54221820000001,32.893912],[-83.54229430000001,32.8934517],[-83.5423445,32.8930427],[-83.5423536,32.892777200000005],[-83.54235,32.8924481],[-83.5422386,32.8902854],[-83.54212550000001,32.8886872],[-83.5420227,32.886969400000005],[-83.541927,32.8862709],[-83.541821,32.8859836]]},"id":"8644c0aa7ffffff-17d7f4b79af0fd72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa405dae5-17f7e185d8e4900e","8f44c0aa439c590-17bfe599e87821d7"]},"geometry":{"type":"LineString","coordinates":[[-83.541821,32.8859836],[-83.54169990000001,32.885665200000005],[-83.54362180000001,32.884210700000004],[-83.5437582,32.8840941],[-83.54382860000001,32.8839976],[-83.5438573,32.883887800000004],[-83.5438489,32.883777900000005],[-83.54380160000001,32.8836877],[-83.5437368,32.8836132],[-83.5434915,32.883405800000006]]},"id":"8744c0aa4ffffff-139ff307123a22f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5990a1e-17d7f94632091edd","8f44c0aa59b3635-17bfb87cead8fd3a"]},"geometry":{"type":"LineString","coordinates":[[-83.5602994,32.8865977],[-83.5601247,32.8868657],[-83.5599773,32.8870519]]},"id":"8944c0aa59bffff-17bff8de6f308bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5993981-13d7f9d6b247bda1","8f44c0aa5990a1e-17d7f94632091edd"]},"geometry":{"type":"LineString","coordinates":[[-83.5599773,32.8870519],[-83.5597461,32.8872756]]},"id":"8a44c0aa5997fff-139ff98e75a206f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5993981-13d7f9d6b247bda1","8f44c0aa5c73c8d-17d7e2cecc08de37"]},"geometry":{"type":"LineString","coordinates":[[-83.5597461,32.8872756],[-83.5595066,32.8874754],[-83.559053,32.887838900000006],[-83.55752600000001,32.8890369],[-83.5560724,32.8901246]]},"id":"8744c0aa5ffffff-13d7be4b5c6e2254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1051e54e-13d76fd564a7e7c7","8f44c0a162cb093-17b77a5183096e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.5900586,32.9038358],[-83.58989310000001,32.903827],[-83.58934550000001,32.903666],[-83.58885070000001,32.903460200000005],[-83.58863330000001,32.903401],[-83.58844260000001,32.9033778],[-83.58723930000001,32.9036618],[-83.58696900000001,32.9036613],[-83.58663530000001,32.9035888],[-83.5861273,32.9034123],[-83.58576400000001,32.9031942]]},"id":"8644c0a17ffffff-139f751e7abecb44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a162d3b88-17b7fe629597a41f","8f44c0a162cb093-17b77a5183096e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.58576400000001,32.9031942],[-83.5852677,32.9028681],[-83.58409830000001,32.9019709]]},"id":"8944c0a162fffff-17bf7c5fa34228ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a162d3b88-17b7fe629597a41f","8f44c0a1292404c-13f7e1381bb5124b"]},"geometry":{"type":"LineString","coordinates":[[-83.58409830000001,32.9019709],[-83.5829375,32.901054200000004]]},"id":"8844c0a163fffff-13977fcd54fe29d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1292404c-13f7e1381bb5124b","8f44c0a16292a81-17ffe56cd2e869c7"]},"geometry":{"type":"LineString","coordinates":[[-83.5829375,32.901054200000004],[-83.58156860000001,32.899981000000004],[-83.5813691,32.8997824],[-83.58125720000001,32.8995812],[-83.5812147,32.8993982]]},"id":"8744c0a16ffffff-1397d384d14cb720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1639b88e-13b7f1407ef16bb4","8f44c0a16292a81-17ffe56cd2e869c7"]},"geometry":{"type":"LineString","coordinates":[[-83.5812147,32.8993982],[-83.58125100000001,32.899141],[-83.5813708,32.898957700000004],[-83.58185,32.898553],[-83.582122,32.898281000000004],[-83.5829241,32.8976423]]},"id":"8744c0a16ffffff-13b7c391dc42b529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16381698-17b77edc87028770","8f44c0a1639b88e-13b7f1407ef16bb4"]},"geometry":{"type":"LineString","coordinates":[[-83.5829241,32.8976423],[-83.58390320000001,32.8968514]]},"id":"8944c0a163bffff-13bfc00e717f132e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68621320000001,32.9189014]},"id":"8f44c0a01912b49-179fe514c1a515f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a052906a3-17be82e8348c55d9","8f44c0a01912b49-179fe514c1a515f9"]},"geometry":{"type":"LineString","coordinates":[[-83.68621320000001,32.9189014],[-83.6861442,32.9186793],[-83.6860954,32.918491800000005],[-83.6861332,32.918275300000005],[-83.6861664,32.918051500000004],[-83.6862256,32.917854000000005],[-83.6864207,32.9175381],[-83.68681450000001,32.9172031],[-83.6869626,32.9170905],[-83.68707590000001,32.916958900000004],[-83.6871438,32.916843300000004],[-83.68723270000001,32.916564],[-83.6872362,32.9164016],[-83.6872379,32.916316800000004],[-83.68710370000001,32.9158824]]},"id":"8644c0a07ffffff-13d7f3fd843d62ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a052906a3-17be82e8348c55d9","8f44c0a05609332-17f7db1bb1052300"]},"geometry":{"type":"LineString","coordinates":[[-83.68710370000001,32.9158824],[-83.6869382,32.915622],[-83.68675,32.915418700000004],[-83.68664720000001,32.9153236],[-83.68648,32.9152359],[-83.6862761,32.9151715],[-83.6861664,32.9151423],[-83.6859137,32.915134900000005],[-83.6856314,32.915154],[-83.6853718,32.9152622],[-83.68477250000001,32.915462600000005],[-83.6845146,32.9155503],[-83.6837445,32.9157917]]},"id":"8844c0a057fffff-179fd6c480bee8de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67820900000001,32.917394800000004]},"id":"8f44c0a01d31729-13dfd89f6b79b46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05609332-17f7db1bb1052300","8f44c0a01d31729-13dfd89f6b79b46e"]},"geometry":{"type":"LineString","coordinates":[[-83.6837445,32.9157917],[-83.6834709,32.9158356],[-83.68319910000001,32.9158926],[-83.68234190000001,32.916006700000004],[-83.68181390000001,32.9160784],[-83.6815456,32.916114900000004],[-83.68134520000001,32.9161574],[-83.6811832,32.9161954],[-83.6804932,32.9165508],[-83.67993390000001,32.916800900000005],[-83.67946520000001,32.9170028],[-83.6785365,32.917283600000005],[-83.67820900000001,32.917394800000004]]},"id":"8644c0a07ffffff-179791f1dc89acfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53749260000001,32.888213300000004]},"id":"8f44c0aa46728c0-139ff02b24a9e163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53678910000001,32.888888900000005]},"id":"8f44c0aa46560c0-17d7f1e2d91f46be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa46560c0-17d7f1e2d91f46be","8f44c0aa46728c0-139ff02b24a9e163"]},"geometry":{"type":"LineString","coordinates":[[-83.53749260000001,32.888213300000004],[-83.53678910000001,32.888888900000005]]},"id":"8944c0aa467ffff-13f7f106ff223c8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa46560c0-17d7f1e2d91f46be","8f44c0aa46525ac-17fff2a59ad2b794"]},"geometry":{"type":"LineString","coordinates":[[-83.53678910000001,32.888888900000005],[-83.5364775,32.889189200000004]]},"id":"8844c0aa47fffff-17b7f24430dc6a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53342,32.892468300000004]},"id":"8f44c0aa0d737aa-1797fa1c8e3b89bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa0d737aa-1797fa1c8e3b89bf","8f44c0aa46525ac-17fff2a59ad2b794"]},"geometry":{"type":"LineString","coordinates":[[-83.5364775,32.889189200000004],[-83.5350063,32.8907672],[-83.53432620000001,32.8915109],[-83.5341144,32.8917347],[-83.53342,32.892468300000004]]},"id":"8644c0aa7ffffff-1397f65fe6d31fcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa0d737aa-1797fa1c8e3b89bf","8f44c0aa0c0c630-139ffebd0b2519f5"]},"geometry":{"type":"LineString","coordinates":[[-83.53342,32.892468300000004],[-83.5315248,32.8945293]]},"id":"8844c0aa0dfffff-1797fc6ccd5b0555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5264717,32.9000347]},"id":"8f44c0aa042300b-17f9bb1330d3e8ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa042300b-17f9bb1330d3e8ac","8f44c0aa0c0c630-139ffebd0b2519f5"]},"geometry":{"type":"LineString","coordinates":[[-83.5315248,32.8945293],[-83.5291327,32.897159800000004],[-83.52791400000001,32.8984323],[-83.527009,32.899438],[-83.5267041,32.8997693],[-83.5264717,32.9000347]]},"id":"8744c0aa0ffffff-13d954e81ffbf8a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53842730000001,32.877924300000004]},"id":"8f44c0aa4180096-13fffde2ffab18bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa4180096-13fffde2ffab18bc","8f44c0aa4180986-1397ed8b99a93319"]},"geometry":{"type":"LineString","coordinates":[[-83.53842730000001,32.877924300000004],[-83.53844720000001,32.877862900000004],[-83.53849530000001,32.877799700000004],[-83.53856710000001,32.8777258]]},"id":"8b44c0aa4180fff-13bfedbd6dea6112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5391159,32.8778328]},"id":"8f44c0aa4185ab3-13d7ec3498365016"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0aa4180986-1397ed8b99a93319","8f44c0aa4185ab3-13d7ec3498365016"]},"geometry":{"type":"LineString","coordinates":[[-83.53856710000001,32.8777258],[-83.5387089,32.877701200000004],[-83.5388188,32.8777321],[-83.5391159,32.8778328]]},"id":"8a44c0aa4187fff-1397ecdea6f973a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5420052,32.8766181]},"id":"8f44c0aa4104896-17dff526cb083d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4150346-17dfe231b575c369","8f44c0aa4104896-17dff526cb083d16"]},"geometry":{"type":"LineString","coordinates":[[-83.5420052,32.8766181],[-83.541031,32.8773739],[-83.5410066,32.8774445],[-83.5410174,32.8775084],[-83.5410853,32.8776065],[-83.5432165,32.8794832]]},"id":"8844c0aa41fffff-13d7e5661ab86d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4150346-17dfe231b575c369","8f44c0aa415cad2-17d7f0779e4cfff8"]},"geometry":{"type":"LineString","coordinates":[[-83.5432165,32.8794832],[-83.54392390000001,32.8800819]]},"id":"8944c0aa417ffff-179fe154a589e50c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa415cad2-17d7f0779e4cfff8","8f44c0aa414aaf3-13d7deacf422c033"]},"geometry":{"type":"LineString","coordinates":[[-83.54392390000001,32.8800819],[-83.5446577,32.880718800000004]]},"id":"8944c0aa417ffff-179fdf924c9984cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa414aaf3-13d7deacf422c033","8f44c0aa4a90aae-139ffc1899235d42"]},"geometry":{"type":"LineString","coordinates":[[-83.5446577,32.880718800000004],[-83.5457143,32.881659500000005]]},"id":"8744c0aa4ffffff-13f7dd62c21e87af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5980892,32.9195828]},"id":"8f44c0a139a9a06-17b75c3a4115c2e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a138a2434-13d7e2b9b0f2356b","8f44c0a139a9a06-17b75c3a4115c2e9"]},"geometry":{"type":"LineString","coordinates":[[-83.5980892,32.9195828],[-83.59741790000001,32.9199708],[-83.596784,32.920123600000004],[-83.5962447,32.920460500000004],[-83.5954277,32.921244200000004]]},"id":"8844c0a139fffff-13ff5fa1f7c275dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5944331,32.922014700000005]},"id":"8f44c0a13895713-17b77527512ad262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a138a2434-13d7e2b9b0f2356b","8f44c0a13895713-17b77527512ad262"]},"geometry":{"type":"LineString","coordinates":[[-83.5954277,32.921244200000004],[-83.5944331,32.922014700000005]]},"id":"8944c0a138bffff-17b773f08dbf6b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.529166,32.8887038]},"id":"8f44c0aa6a43992-13dfe47f4205305e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6a43992-13dfe47f4205305e","8f44c0aa6b4b4e6-1799d1815e09d17f"]},"geometry":{"type":"LineString","coordinates":[[-83.529166,32.8887038],[-83.52922620000001,32.8881181],[-83.52926360000001,32.8879277],[-83.52931810000001,32.8877277],[-83.5294444,32.8875807],[-83.5296539,32.8873975],[-83.5301275,32.8871227],[-83.53039150000001,32.8869661]]},"id":"8844c0aa6bfffff-13dc0381c51672e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6b4b4e6-1799d1815e09d17f","8f44c0aa6b48253-17fb2074432f285a"]},"geometry":{"type":"LineString","coordinates":[[-83.53039150000001,32.8869661],[-83.530822,32.886725000000006]]},"id":"8a44c0aa6b4ffff-17de80fad93b13c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6b48253-17fb2074432f285a","8f44c0aa46b690b-179ffe13bf11abf8"]},"geometry":{"type":"LineString","coordinates":[[-83.530822,32.886725000000006],[-83.5317957,32.8861395]]},"id":"8944c0aa6b7ffff-17d7ff4401d5be72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa479850d-17bffc1cb328f83d","8f44c0aa46b690b-179ffe13bf11abf8"]},"geometry":{"type":"LineString","coordinates":[[-83.5317957,32.8861395],[-83.53218820000001,32.8859008],[-83.5326005,32.885606100000004]]},"id":"8844c0aa47fffff-17fffd1521a9d67d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5345264,32.884002800000005]},"id":"8f44c0aa47a11ac-13d7f76901f0f8cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa479850d-17bffc1cb328f83d","8f44c0aa47a11ac-13d7f76901f0f8cf"]},"geometry":{"type":"LineString","coordinates":[[-83.5326005,32.885606100000004],[-83.5345264,32.884002800000005]]},"id":"8944c0aa47bffff-13dff9c2edc760b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.535375,32.8796112]},"id":"8f44c0aa454e64c-179ff556ae32a074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa454e64c-179ff556ae32a074","8f44c0aa47a11ac-13d7f76901f0f8cf"]},"geometry":{"type":"LineString","coordinates":[[-83.5345264,32.884002800000005],[-83.5356381,32.883023900000005],[-83.53596370000001,32.882747200000004],[-83.5361027,32.8825634],[-83.5361831,32.8823511],[-83.5362128,32.882148900000004],[-83.53618920000001,32.8819357],[-83.53609870000001,32.8817344],[-83.53577390000001,32.8813186],[-83.5355772,32.8810862],[-83.5354576,32.8808746],[-83.5353654,32.880632500000004],[-83.53533420000001,32.8804359],[-83.53533440000001,32.8801235],[-83.53534730000001,32.879944],[-83.535368,32.8797742],[-83.535375,32.8796112]]},"id":"8744c0aa4ffffff-13f7f4e2e66eaa88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5787493,32.8772181]},"id":"8f44c0b896950f5-17d7db71b208274a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b896950f5-17d7db71b208274a","8f44c0b89682533-13d7aafc96b1185b"]},"geometry":{"type":"LineString","coordinates":[[-83.5787493,32.8772181],[-83.5789367,32.8774178]]},"id":"8a44c0b89697fff-1397cb372c542840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57967640000001,32.879605000000005]},"id":"8f44c0a16d21d9a-179fa92e4a25c4fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89682533-13d7aafc96b1185b","8f44c0a16d21d9a-179fa92e4a25c4fb"]},"geometry":{"type":"LineString","coordinates":[[-83.5789367,32.8774178],[-83.5791233,32.877703600000004],[-83.57933750000001,32.8782651],[-83.5794032,32.878568300000005],[-83.5795485,32.879156300000005],[-83.5796255,32.8794497],[-83.5796581,32.8795494],[-83.57967640000001,32.879605000000005]]},"id":"8644c0b8fffffff-13dfb9f436250d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5797046,32.8796914]},"id":"8f44c0a16d21cd0-17dfa91cae568c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d21cd0-17dfa91cae568c71","8f44c0a16d21d9a-179fa92e4a25c4fb"]},"geometry":{"type":"LineString","coordinates":[[-83.57967640000001,32.879605000000005],[-83.5797046,32.8796914]]},"id":"8c44c0a16d21dff-17b7a92579fdda96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58021450000001,32.8809914]},"id":"8f44c0a16d2bb4e-13ffa7ddf19acb26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d21cd0-17dfa91cae568c71","8f44c0a16d2bb4e-13ffa7ddf19acb26"]},"geometry":{"type":"LineString","coordinates":[[-83.5797046,32.8796914],[-83.57972050000001,32.8797398],[-83.58021450000001,32.8809914]]},"id":"8944c0a16d3ffff-17f7b87e2ed65417"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5802474,32.8810744]},"id":"8f44c0a16d76d04-13bf87c96b627b42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d76d04-13bf87c96b627b42","8f44c0a16d2bb4e-13ffa7ddf19acb26"]},"geometry":{"type":"LineString","coordinates":[[-83.58021450000001,32.8809914],[-83.5802318,32.8810352],[-83.5802474,32.8810744]]},"id":"8a44c0a16d2ffff-139797d3bcbfd8a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d73151-1397c6efb7264cd1","8f44c0a16d76d04-13bf87c96b627b42"]},"geometry":{"type":"LineString","coordinates":[[-83.5802474,32.8810744],[-83.5804339,32.881542200000005],[-83.5805957,32.8820508]]},"id":"8844c0a16dfffff-13dfb75714f137ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16d73151-1397c6efb7264cd1","8f44c0a16c058e5-17ffdc0e32bfe343"]},"geometry":{"type":"LineString","coordinates":[[-83.5805957,32.8820508],[-83.57958190000001,32.8826586],[-83.5784989,32.8832469]]},"id":"8844c0a16dfffff-179f897af89df07c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16c00b29-17f79ce921fb591d","8f44c0a16c058e5-17ffdc0e32bfe343"]},"geometry":{"type":"LineString","coordinates":[[-83.5784989,32.8832469],[-83.5781486,32.8834153]]},"id":"8a44c0a16c07fff-17b7fc7baa22a09b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16c00b29-17f79ce921fb591d","8f44c0a16c8c0f3-13ff94095ff9ca42"]},"geometry":{"type":"LineString","coordinates":[[-83.5781486,32.8834153],[-83.57522990000001,32.884888000000004]]},"id":"8844c0a16dfffff-13b7d0793d544f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa085402c-17f7e66f708a1436","8f44c0aa08728d5-17b7f60904249bec"]},"geometry":{"type":"LineString","coordinates":[[-83.54164320000001,32.8958007],[-83.5414793,32.8963106]]},"id":"8944c0aa087ffff-17d7f63c4391b17f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa085402c-17f7e66f708a1436","8f44c0aa0b94664-17b7e8a9969bcf80"]},"geometry":{"type":"LineString","coordinates":[[-83.5414793,32.8963106],[-83.54120280000001,32.897168300000004],[-83.5410626,32.8975694],[-83.5408584,32.8981407],[-83.5407199,32.8986084],[-83.54063380000001,32.8989344],[-83.5405916,32.8991938],[-83.54056800000001,32.899466000000004],[-83.5405671,32.899488600000005]]},"id":"8744c0aa0ffffff-13bfe7ad96acf75c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5406633,32.9010223]},"id":"8f44c0aa0b9a04d-13f7f86d715ba3ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa0b9a04d-13f7f86d715ba3ab","8f44c0aa0b94664-17b7e8a9969bcf80"]},"geometry":{"type":"LineString","coordinates":[[-83.5405671,32.899488600000005],[-83.54055890000001,32.8996887],[-83.5405482,32.9001693],[-83.5405386,32.900467],[-83.54055050000001,32.9006208],[-83.5405762,32.9007641],[-83.5406174,32.9008969],[-83.5406633,32.9010223]]},"id":"8944c0aa0bbffff-1397f8ab6c417ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.542108,32.902316]},"id":"8f44c0aa0aa1069-179fe4e6898c0c53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa0b9a04d-13f7f86d715ba3ab","8f44c0aa0aa1069-179fe4e6898c0c53"]},"geometry":{"type":"LineString","coordinates":[[-83.5406633,32.9010223],[-83.5407326,32.9011549],[-83.5408769,32.9013696],[-83.5410263,32.9015227],[-83.54138420000001,32.901801500000005],[-83.542108,32.902316]]},"id":"8844c0aa0bfffff-139fe6cc48f42f1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1d1cca4-13bff51a6bfdffa0","8f44c0aa0aa1069-179fe4e6898c0c53"]},"geometry":{"type":"LineString","coordinates":[[-83.542108,32.902316],[-83.54243170000001,32.9025429],[-83.54347250000001,32.9032892],[-83.54387,32.9035719],[-83.544899,32.9043019],[-83.54509230000001,32.9044302],[-83.54529740000001,32.9045549],[-83.5455228,32.904674],[-83.5457727,32.9047831],[-83.54606220000001,32.9048795],[-83.54661680000001,32.9050389],[-83.5469578,32.905141],[-83.5471983,32.9052367],[-83.5473609,32.9053234],[-83.5475263,32.9054201],[-83.54766830000001,32.9055279],[-83.5478575,32.9056962],[-83.5479882,32.9058486],[-83.54809510000001,32.9059814],[-83.5482497,32.906227900000005],[-83.5483947,32.906484],[-83.54847050000001,32.9066318],[-83.54852840000001,32.9068087],[-83.548563,32.9069475],[-83.5485786,32.9071099]]},"id":"8644c0aa7ffffff-1397dc6fdd0c10d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5481769,32.9081837]},"id":"8f44c0aa1c34b32-13dfd615720f0673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1d1cca4-13bff51a6bfdffa0","8f44c0aa1c34b32-13dfd615720f0673"]},"geometry":{"type":"LineString","coordinates":[[-83.5485786,32.9071099],[-83.54858510000001,32.9072096],[-83.5485768,32.9073228],[-83.54855350000001,32.9074782],[-83.54852240000001,32.9076004],[-83.5484783,32.907727200000004],[-83.5484055,32.9078776],[-83.548332,32.907997800000004],[-83.5482616,32.9080865],[-83.5481769,32.9081837]]},"id":"8844c0aa1dfffff-13b7f5689a8acf99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1c16068-17d7f9473eccf8c6","8f44c0aa1c34b32-13dfd615720f0673"]},"geometry":{"type":"LineString","coordinates":[[-83.5481769,32.9081837],[-83.54775640000001,32.908621600000004],[-83.5475009,32.908875800000004],[-83.54709700000001,32.909241],[-83.5468685,32.9093687]]},"id":"8944c0aa1c3ffff-17f7f79ea48adeb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1ca5aee-1797da2ed0b3ebf5","8f44c0aa1c16068-17d7f9473eccf8c6"]},"geometry":{"type":"LineString","coordinates":[[-83.5468685,32.9093687],[-83.54665990000001,32.9094451],[-83.5464979,32.9094953]]},"id":"8a44c0aa1c17fff-17fff9ba833718dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1ca5aee-1797da2ed0b3ebf5","8f44c0aa1ca5621-17b7fad5cf84278e"]},"geometry":{"type":"LineString","coordinates":[[-83.5464979,32.9094953],[-83.5462308,32.9095479]]},"id":"8b44c0aa1ca5fff-17b7da825a56f5e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1ca5621-17b7fad5cf84278e","8f44c0aa1ca216c-17dfdcbd36762638"]},"geometry":{"type":"LineString","coordinates":[[-83.5462308,32.9095479],[-83.5454509,32.909615200000005]]},"id":"8a44c0aa1ca7fff-17dffbc984bf6eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1cb18de-1797fe02cf1cd18d","8f44c0aa1ca216c-17dfdcbd36762638"]},"geometry":{"type":"LineString","coordinates":[[-83.5454509,32.909615200000005],[-83.54514400000001,32.909641],[-83.54493000000001,32.909677]]},"id":"8944c0aa1cbffff-17ffdd60621b7655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1cb14b3-17b7fecfc410d8c0","8f44c0aa1cb18de-1797fe02cf1cd18d"]},"geometry":{"type":"LineString","coordinates":[[-83.54493000000001,32.909677],[-83.54460200000001,32.909725800000004]]},"id":"8a44c0aa1cb7fff-1797fe6948659faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5375582,32.9140979]},"id":"8f44c0aa396258b-13dff002246acb45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa1cb14b3-17b7fecfc410d8c0","8f44c0aa396258b-13dff002246acb45"]},"geometry":{"type":"LineString","coordinates":[[-83.54460200000001,32.909725800000004],[-83.54412470000001,32.909818900000005],[-83.54365700000001,32.9099315],[-83.54324050000001,32.910067500000004],[-83.542929,32.9101954],[-83.5426764,32.910331400000004],[-83.5423938,32.910512700000005],[-83.54216050000001,32.910690800000005],[-83.54179020000001,32.9110073],[-83.54060770000001,32.9120464],[-83.5396999,32.912814600000004],[-83.5387481,32.913569],[-83.538365,32.913837400000006],[-83.53802300000001,32.9139837],[-83.5375582,32.9140979]]},"id":"8644c0aa7ffffff-17b7e792d71e5adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa396258b-13dff002246acb45","8f44c0aa391b529-13bff88d1117eefc"]},"geometry":{"type":"LineString","coordinates":[[-83.5375582,32.9140979],[-83.53695450000001,32.9141111],[-83.5361702,32.914021600000005],[-83.5349235,32.9139009],[-83.5345776,32.913926000000004],[-83.53405910000001,32.9140406]]},"id":"8844c0aa39fffff-1397f44aa8f5d870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53301090000001,32.9148099]},"id":"8f44c0aa3832733-139ffb1c32067cab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa3832733-139ffb1c32067cab","8f44c0aa391b529-13bff88d1117eefc"]},"geometry":{"type":"LineString","coordinates":[[-83.53405910000001,32.9140406],[-83.53354180000001,32.9143509],[-83.53301090000001,32.9148099]]},"id":"8844c0aa39fffff-139ff9deee42a7e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.52891000000001,32.9181307]},"id":"8f44c0aa3136449-13bfb51f4cbe1844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa3832733-139ffb1c32067cab","8f44c0aa3136449-13bfb51f4cbe1844"]},"geometry":{"type":"LineString","coordinates":[[-83.53301090000001,32.9148099],[-83.5317272,32.9158892],[-83.53068,32.916793000000006],[-83.52968800000001,32.917593000000004],[-83.5292414,32.917909800000004],[-83.5289736,32.9180883],[-83.52891000000001,32.9181307]]},"id":"8744c0aa3ffffff-17bf700d3dec17b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5838643,32.8737943]},"id":"8f44c0b89700210-17ff7ef4d6f5d173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8970350e-17f77fcc100fcbf4","8f44c0b89700210-17ff7ef4d6f5d173"]},"geometry":{"type":"LineString","coordinates":[[-83.5838643,32.8737943],[-83.5835199,32.8740132]]},"id":"8a44c0b89707fff-17bfff6079b7f97a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8970350e-17f77fcc100fcbf4","8f44c0b89718da0-13dfe12393cdef93"]},"geometry":{"type":"LineString","coordinates":[[-83.5835199,32.8740132],[-83.5829703,32.8743886]]},"id":"8944c0b8973ffff-13f79077d27a4f2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b897a9765-13bfc336d0ff3f32","8f44c0b89718da0-13dfe12393cdef93"]},"geometry":{"type":"LineString","coordinates":[[-83.5829703,32.8743886],[-83.5821203,32.874926]]},"id":"8844c0b897fffff-1397d22d344449ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b896a4b14-17bff6db416797cf","8f44c0b897a9765-13bfc336d0ff3f32"]},"geometry":{"type":"LineString","coordinates":[[-83.5821203,32.874926],[-83.58062840000001,32.875947100000005]]},"id":"8944c0b897bffff-13ffe50914d03709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b896950f5-17d7db71b208274a","8f44c0b896a4b14-17bff6db416797cf"]},"geometry":{"type":"LineString","coordinates":[[-83.58062840000001,32.875947100000005],[-83.5787493,32.8772181]]},"id":"8844c0b897fffff-17bfa92685bf7ed5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b896950f5-17d7db71b208274a","8f44c0b8ba59968-17d7d1f3ecaecfe7"]},"geometry":{"type":"LineString","coordinates":[[-83.5787493,32.8772181],[-83.57789500000001,32.8778251],[-83.5775081,32.878145700000005],[-83.5771194,32.8784549],[-83.5760834,32.8792877]]},"id":"8644c0b8fffffff-13d7deba8ec4b16c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8ba59968-17d7d1f3ecaecfe7","8f44c0a16d90104-13f7b6c89f981624"]},"geometry":{"type":"LineString","coordinates":[[-83.5760834,32.8792877],[-83.57551980000001,32.879743000000005],[-83.5749488,32.8801926],[-83.5744884,32.8805685],[-83.57430380000001,32.880734600000004],[-83.5741047,32.8809819]]},"id":"8744c0b8bffffff-17d7f46dadc8f807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a16d90104-13f7b6c89f981624","8f44c0a16cb1890-17b7964368dc576d"]},"geometry":{"type":"LineString","coordinates":[[-83.5741047,32.8809819],[-83.57402400000001,32.8811125],[-83.5739514,32.8812579],[-83.5738372,32.8815776],[-83.5738092,32.881757900000004],[-83.57379630000001,32.8819364],[-83.5737936,32.882099600000004],[-83.57381260000001,32.8822591],[-83.5738683,32.8824723],[-83.5740073,32.882796400000004],[-83.5743178,32.8833064]]},"id":"8844c0a16dfffff-13d7f7281bc7a7a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a16cb1890-17b7964368dc576d","8f44c0a16c80d9e-13d7f615e50cf20d"]},"geometry":{"type":"LineString","coordinates":[[-83.5743178,32.8833064],[-83.5744197,32.883493200000004],[-83.57445410000001,32.8836224],[-83.57445750000001,32.8837731],[-83.5743906,32.884002200000005]]},"id":"8944c0a16cbffff-17f7f6057c426a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5843645,32.875568900000005]},"id":"8f44c0b89625b19-13bffdbc3dae5719"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b89625b19-13bffdbc3dae5719","8f44c0b89700210-17ff7ef4d6f5d173"]},"geometry":{"type":"LineString","coordinates":[[-83.5838643,32.8737943],[-83.58404200000001,32.873936300000004],[-83.5841977,32.8741177],[-83.58425460000001,32.8742698],[-83.58433070000001,32.875224700000004],[-83.5843645,32.875568900000005]]},"id":"8844c0b897fffff-13f77e0cc65ef1a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5844294,32.876533200000004]},"id":"8f44c0b8962c28c-179f7d93a037f28c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8962c28c-179f7d93a037f28c","8f44c0b89625b19-13bffdbc3dae5719"]},"geometry":{"type":"LineString","coordinates":[[-83.5843645,32.875568900000005],[-83.5844294,32.876533200000004]]},"id":"8944c0b8963ffff-17fffda7ec2d966c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5891177,32.8777281]},"id":"8f44c0b89284b16-13977221787ced58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8962c28c-179f7d93a037f28c","8f44c0b89284b16-13977221787ced58"]},"geometry":{"type":"LineString","coordinates":[[-83.5844294,32.876533200000004],[-83.5845312,32.877884300000005],[-83.58457560000001,32.8780817],[-83.58465240000001,32.878208],[-83.58478840000001,32.878276400000004],[-83.58496310000001,32.8782711],[-83.58574130000001,32.8781617],[-83.5865576,32.8780123],[-83.5879171,32.8778123],[-83.5882601,32.8777749],[-83.5891177,32.8777281]]},"id":"8744c0b89ffffff-13bf7931cd7081bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a1141c36d-17dfd5199dd9b2c1","8f44c0a11434824-139f44f8ed7ca76a"]},"geometry":{"type":"LineString","coordinates":[[-83.6076146,32.920544],[-83.6075943,32.9213809],[-83.6075916,32.9221985],[-83.60756230000001,32.922900500000004]]},"id":"8944c0a1143ffff-17ffc506dac502bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a1141c36d-17dfd5199dd9b2c1","8f44c0a13b59d46-17b769341afbbf87"]},"geometry":{"type":"LineString","coordinates":[[-83.60756230000001,32.922900500000004],[-83.60753240000001,32.923312200000005],[-83.6074706,32.9236258],[-83.60738880000001,32.9240119],[-83.6073247,32.924261300000005],[-83.6070921,32.9250379],[-83.6066955,32.926305400000004],[-83.6065143,32.926893500000006],[-83.60610580000001,32.9284709],[-83.60588150000001,32.929390600000005]]},"id":"8644c0a17ffffff-17bff71219fa419b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59139,32.958906]},"id":"8f44c0aad2e2912-17b76c954fd33a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0aad2e2912-17b76c954fd33a43","8f44c0a13b59d46-17b769341afbbf87"]},"geometry":{"type":"LineString","coordinates":[[-83.60588150000001,32.929390600000005],[-83.605759,32.9298609],[-83.6055688,32.930613],[-83.6053627,32.9314081],[-83.6052542,32.9319933],[-83.6052111,32.9324552],[-83.6051987,32.933034400000004],[-83.6052111,32.9336695],[-83.60520840000001,32.9340238],[-83.6051881,32.934378200000005],[-83.6051394,32.9347726],[-83.605073,32.9350928],[-83.6049643,32.935484100000004],[-83.6048202,32.9358724],[-83.6043664,32.936830300000004],[-83.6042338,32.9370856],[-83.6041129,32.937344200000005],[-83.60396200000001,32.93764],[-83.6039071,32.937817100000004],[-83.6038269,32.938155800000004],[-83.60380400000001,32.938468400000005],[-83.60383060000001,32.9387898],[-83.6039243,32.9391922],[-83.6040888,32.9395991],[-83.6044426,32.940359300000004],[-83.604809,32.9411642],[-83.60507220000001,32.9417405],[-83.60519550000001,32.942031],[-83.6052835,32.9422739],[-83.60533380000001,32.9425535],[-83.60537550000001,32.9428198],[-83.6053784,32.9430539],[-83.6053598,32.9432591],[-83.6052875,32.9435942],[-83.6051683,32.9439346],[-83.6049753,32.9443117],[-83.6046867,32.9446889],[-83.6044925,32.9448999],[-83.6041495,32.945272800000005],[-83.60339760000001,32.9460719],[-83.6025927,32.9469348],[-83.6022686,32.947287],[-83.6015935,32.948030100000004],[-83.6014531,32.9482006],[-83.60137280000001,32.948320700000004],[-83.60131050000001,32.948413900000006],[-83.6012058,32.9485704],[-83.6010742,32.9488349],[-83.60098550000001,32.949085700000005],[-83.60092510000001,32.949378100000004],[-83.60086820000001,32.9497851],[-83.6008316,32.9500644],[-83.6007917,32.9502897],[-83.60074750000001,32.9505258],[-83.6007029,32.9507497],[-83.6006157,32.9509497],[-83.60045550000001,32.9512543],[-83.6003317,32.9514693],[-83.6001691,32.9516992],[-83.5999948,32.9519001],[-83.5998632,32.9520416],[-83.5997186,32.9521565],[-83.5991458,32.9526118],[-83.5985692,32.9529572],[-83.5977015,32.953451900000005],[-83.59727240000001,32.953692700000005],[-83.5967092,32.9540153],[-83.5960787,32.954383],[-83.5955091,32.9547814],[-83.59508310000001,32.9551235],[-83.5948437,32.9553457],[-83.5946571,32.9555475],[-83.59436860000001,32.9558677],[-83.5936102,32.956713300000004],[-83.59293550000001,32.9574607],[-83.5924743,32.957920200000004],[-83.5920834,32.958286900000004],[-83.59139,32.958906]]},"id":"8544c0a3fffffff-17d7f46a8932fe67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b351592-1397ded654820e20","8f44c0b8baca3a5-17ff9950b722f8b4"]},"geometry":{"type":"LineString","coordinates":[[-83.57080590000001,32.882051600000004],[-83.57144620000001,32.8815316],[-83.57236780000001,32.880765700000005],[-83.57306770000001,32.880152100000004]]},"id":"8744c0b8bffffff-13d7dc0ec80f1cd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8baca3a5-17ff9950b722f8b4","8f44c0b8bac8d69-1797b840a2b8fd11"]},"geometry":{"type":"LineString","coordinates":[[-83.57306770000001,32.880152100000004],[-83.573503,32.8797986]]},"id":"8a44c0b8bacffff-1797b8c8a83366df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5760947,32.8699754]},"id":"8f44c0b894aa518-1797b1ecdeb3ec6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.575102,32.8702272]},"id":"8f44c0b89483410-17b794594b07d8e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89483410-17b794594b07d8e5","8f44c0b894aa518-1797b1ecdeb3ec6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5760947,32.8699754],[-83.575102,32.8702272]]},"id":"8944c0b894bffff-17f7d3230fba2e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57415540000001,32.870727800000004]},"id":"8f44c0b8949ac00-17fff6a8ef7a1308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8949ac00-17fff6a8ef7a1308","8f44c0b89483410-17b794594b07d8e5"]},"geometry":{"type":"LineString","coordinates":[[-83.575102,32.8702272],[-83.5746549,32.8704185],[-83.57415540000001,32.870727800000004]]},"id":"8944c0b894bffff-17d7f586dc9f7896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89495ceb-17ffd5c10600f675","8f44c0b89494c11-13ffd6b1f3d06ace"]},"geometry":{"type":"LineString","coordinates":[[-83.5741409,32.869109200000004],[-83.57452640000001,32.8695036]]},"id":"8a44c0b89497fff-17f796398fc15f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89495ceb-17ffd5c10600f675","8f44c0b89483410-17b794594b07d8e5"]},"geometry":{"type":"LineString","coordinates":[[-83.57452640000001,32.8695036],[-83.574966,32.8700531],[-83.575102,32.8702272]]},"id":"8944c0b894bffff-17d7950ca21749c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b093054-179fb9ced62711b2","8f44c0b8b099210-17dff71fba1b5ea0"]},"geometry":{"type":"LineString","coordinates":[[-83.5608581,32.8772279],[-83.5607884,32.8769468],[-83.560682,32.876729000000005],[-83.5605649,32.8765534],[-83.5604581,32.876474900000005],[-83.5597587,32.8761312]]},"id":"8944c0b8b0bffff-17b7b82f715a0208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55880850000001,32.875754400000005]},"id":"8f44c0b8b461ce4-17b7bc20bf73acbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b093054-179fb9ced62711b2","8f44c0b8b461ce4-17b7bc20bf73acbb"]},"geometry":{"type":"LineString","coordinates":[[-83.5597587,32.8761312],[-83.55880850000001,32.875754400000005]]},"id":"8844c0b8b5fffff-17bffaf7ca2fbca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5758658,32.8692954]},"id":"8f44c0b894a3456-17ffb27be50b5d32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894a3456-17ffb27be50b5d32","8f44c0b8959bd71-13d7938f77813962"]},"geometry":{"type":"LineString","coordinates":[[-83.5754249,32.868003200000004],[-83.5758658,32.8692954]]},"id":"8844c0b895fffff-13dfd305bf4cee86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894a3456-17ffb27be50b5d32","8f44c0b894aa518-1797b1ecdeb3ec6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5758658,32.8692954],[-83.5760947,32.8699754]]},"id":"8944c0b894bffff-17d7b2346a62d487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8948da9a-13b790ad82582b35","8f44c0b894aa518-1797b1ecdeb3ec6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5760947,32.8699754],[-83.57660560000001,32.8708449]]},"id":"8944c0b894bffff-17b7f14d3c78addd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8948da9a-13b790ad82582b35","8f44c0b894c2b62-13fffdf25cc73556"]},"geometry":{"type":"LineString","coordinates":[[-83.57660560000001,32.8708449],[-83.5777243,32.8721839]]},"id":"8844c0b895fffff-13df8f4ffd41e98e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894c2a41-13b7ddf7580cf840","8f44c0b894c2b62-13fffdf25cc73556"]},"geometry":{"type":"LineString","coordinates":[[-83.5777243,32.8721839],[-83.5777163,32.8722725]]},"id":"8c44c0b894c2bff-1397adf4dfed9538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894d9a70-179f8db91bc9cdc2","8f44c0b894c2a41-13b7ddf7580cf840"]},"geometry":{"type":"LineString","coordinates":[[-83.5777163,32.8722725],[-83.5778159,32.873433600000006]]},"id":"8944c0b894fffff-179fbdd83e23b489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb6444a-17dfbdbe981af1c2","8f44c0b894d9a70-179f8db91bc9cdc2"]},"geometry":{"type":"LineString","coordinates":[[-83.5778159,32.873433600000006],[-83.5778071,32.8737731]]},"id":"8744c0b89ffffff-17f7adbbd092c44d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb6444a-17dfbdbe981af1c2","8f44c0b8bb4115b-13ff9e79db6da415"]},"geometry":{"type":"LineString","coordinates":[[-83.5778071,32.8737731],[-83.57754870000001,32.8751447],[-83.5775385,32.875290400000004],[-83.57750750000001,32.875460100000005]]},"id":"8944c0b8bb7ffff-13ffde203b8056ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb48a98-17ffbdc64179c33c","8f44c0b8bb4115b-13ff9e79db6da415"]},"geometry":{"type":"LineString","coordinates":[[-83.57750750000001,32.875460100000005],[-83.57749000000001,32.8756142],[-83.5774952,32.875766500000005],[-83.5775522,32.8759463],[-83.5776446,32.876082100000005],[-83.5777948,32.8762563]]},"id":"8944c0b8bb7ffff-1797fe4d893ec6e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b896950f5-17d7db71b208274a","8f44c0b8bb48a98-17ffbdc64179c33c"]},"geometry":{"type":"LineString","coordinates":[[-83.5777948,32.8762563],[-83.57802120000001,32.876476700000005],[-83.5782337,32.8766957],[-83.5787493,32.8772181]]},"id":"8744c0b89ffffff-1797ec9b1afc8513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b01e773-17dfb0ee0d5b1649","8f44c0b8b099210-17dff71fba1b5ea0"]},"geometry":{"type":"LineString","coordinates":[[-83.5633952,32.8758001],[-83.56295970000001,32.8761667],[-83.5623869,32.876637],[-83.5621065,32.8768504],[-83.56191510000001,32.8769511],[-83.5617108,32.8770429],[-83.5614979,32.8771057],[-83.5612275,32.877161300000004],[-83.5608581,32.8772279]]},"id":"8844c0b8b1fffff-17fff3d962fa37e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5583694,32.8776408]},"id":"8f44c0b8b4480f6-13dfbd3323bacdd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b4480f6-13dfbd3323bacdd1","8f44c0b8b099210-17dff71fba1b5ea0"]},"geometry":{"type":"LineString","coordinates":[[-83.5608581,32.8772279],[-83.5583694,32.8776408]]},"id":"8744c0b8bffffff-13dffa296cc9f960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54349710000001,32.8779236]},"id":"8f44c0aa41768ac-13ffe1825840ece1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa48c06a3-17bfdda6f9df3761","8f44c0aa41768ac-13ffe1825840ece1"]},"geometry":{"type":"LineString","coordinates":[[-83.54349710000001,32.8779236],[-83.54394690000001,32.877542500000004],[-83.54507690000001,32.8765896]]},"id":"8744c0aa4ffffff-17dfff94db397617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5478138,32.874095600000004]},"id":"8f44c0aa48292dc-13b7d6f86e2a144f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa48c06a3-17bfdda6f9df3761","8f44c0aa48292dc-13b7d6f86e2a144f"]},"geometry":{"type":"LineString","coordinates":[[-83.54507690000001,32.8765896],[-83.547666,32.8742643],[-83.5478138,32.874095600000004]]},"id":"8844c0aa49fffff-13b7fa4a16fcbeef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6737573,32.928292400000004]},"id":"8f44c0a0142bd5b-17f6e37db1fe2244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a014116c1-17ffb8f30d9e29d8","8f44c0a0142bd5b-17f6e37db1fe2244"]},"geometry":{"type":"LineString","coordinates":[[-83.6737573,32.928292400000004],[-83.6734862,32.9282965],[-83.6728899,32.9283172],[-83.6726287,32.9283213],[-83.67219010000001,32.928251],[-83.67191910000001,32.9282303],[-83.6715216,32.928306500000005]]},"id":"8944c0a0143ffff-17f7e63aa9b15d56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6714604,32.9310964]},"id":"8f44c0a014c2aea-13dfe91944859a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a014c2aea-13dfe91944859a02","8f44c0a014116c1-17ffb8f30d9e29d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6715216,32.928306500000005],[-83.6714657,32.9283172],[-83.67084960000001,32.928433000000005],[-83.6705687,32.9284951],[-83.6702928,32.9286274],[-83.6698887,32.9289377],[-83.66972600000001,32.9290824],[-83.6694698,32.9293265],[-83.6694648,32.929525000000005],[-83.66949190000001,32.929667800000004],[-83.6696373,32.9298622],[-83.6697728,32.929947],[-83.6700045,32.930126900000005],[-83.6702583,32.9304392],[-83.67035440000001,32.9305302],[-83.67066240000001,32.9307267],[-83.6709359,32.930838300000005],[-83.6714604,32.9310964]]},"id":"8844c0a015fffff-179febc9ea16e3f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b059d19-13bfb92363d5cfb6","8f44c0b8bba8d6a-17bfba8f908295f7"]},"geometry":{"type":"LineString","coordinates":[[-83.56658660000001,32.8784337],[-83.5685558,32.877042200000005],[-83.56968280000001,32.8761755],[-83.5702364,32.8757603],[-83.571138,32.8749467],[-83.5720316,32.874000200000005],[-83.5725575,32.8735219]]},"id":"8744c0b8bffffff-1797b1a043f21c19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb13156-17d7b9038dbacb2b","8f44c0b8bba8d6a-17bfba8f908295f7"]},"geometry":{"type":"LineString","coordinates":[[-83.5725575,32.8735219],[-83.57319120000001,32.8731243]]},"id":"8844c0b8bbfffff-17d7f9c9824b0f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb13156-17d7b9038dbacb2b","8f44c0b8bb330a2-13f7b77ea51ea815"]},"geometry":{"type":"LineString","coordinates":[[-83.57319120000001,32.8731243],[-83.573599,32.872638],[-83.5736332,32.872414400000004],[-83.5738134,32.8721763]]},"id":"8944c0b8bb3ffff-17b7b834552d9272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb3571b-13ff9622c03a1696","8f44c0b8bb330a2-13f7b77ea51ea815"]},"geometry":{"type":"LineString","coordinates":[[-83.5738134,32.8721763],[-83.57437,32.871745600000004]]},"id":"8a44c0b8bb37fff-13ffb6d0b4bca331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb24803-13d7f34cb1ccb028","8f44c0b8bb3571b-13ff9622c03a1696"]},"geometry":{"type":"LineString","coordinates":[[-83.57437,32.871745600000004],[-83.5745146,32.8716384],[-83.5749912,32.8714922],[-83.5755317,32.871305400000004]]},"id":"8744c0b8bffffff-13d7b4be05126401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8bb24803-13d7f34cb1ccb028","8f44c0b8948da9a-13b790ad82582b35"]},"geometry":{"type":"LineString","coordinates":[[-83.5755317,32.871305400000004],[-83.5760638,32.8711058],[-83.57660560000001,32.8708449]]},"id":"8944c0b894bffff-13df91f9ee16f4e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa44e3b49-13bffdf2f1844d48","8f44c0aa445b088-17bffa198ece4347"]},"geometry":{"type":"LineString","coordinates":[[-83.5318481,32.8819073],[-83.5321134,32.8820586],[-83.53233130000001,32.8821703],[-83.5327793,32.8823292],[-83.532914,32.8824442],[-83.5331129,32.882665800000005],[-83.5333219,32.8829949],[-83.5334248,32.8831155]]},"id":"8844c0aa45fffff-17fffbd7bac56247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa445b088-17bffa198ece4347","8f44c0aa47a11ac-13d7f76901f0f8cf"]},"geometry":{"type":"LineString","coordinates":[[-83.5334248,32.8831155],[-83.5345264,32.884002800000005]]},"id":"8944c0aa47bffff-17d7f8c14552583b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5356103,32.8848834]},"id":"8f44c0aa471ad4e-13fff4c391268981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa471ad4e-13fff4c391268981","8f44c0aa47a11ac-13d7f76901f0f8cf"]},"geometry":{"type":"LineString","coordinates":[[-83.5345264,32.884002800000005],[-83.5356103,32.8848834]]},"id":"8844c0aa47fffff-13fff616532b9e48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0d737aa-1797fa1c8e3b89bf","8f44c0aa0d42d6a-17bff932290c16af"]},"geometry":{"type":"LineString","coordinates":[[-83.53342,32.892468300000004],[-83.53356840000001,32.8926241],[-83.53369070000001,32.8927798],[-83.53379500000001,32.8929676]]},"id":"8944c0aa0d7ffff-1797f99e5924a364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5340244,32.8956287]},"id":"8f44c0aa0c6376c-17b7f8a2c7c31a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0d42d6a-17bff932290c16af","8f44c0aa0c6376c-17b7f8a2c7c31a96"]},"geometry":{"type":"LineString","coordinates":[[-83.53379500000001,32.8929676],[-83.5338431,32.8930998],[-83.5338632,32.8932589],[-83.5338742,32.8934711],[-83.5339352,32.8953087],[-83.5339673,32.895482200000004],[-83.5340244,32.8956287]]},"id":"8844c0aa0dfffff-13fff8eed927ce50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56314470000001,32.888125200000005]},"id":"8f44c0aa5830933-13f7f18a95986647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5830933-13f7f18a95986647","8f44c0aa59b3635-17bfb87cead8fd3a"]},"geometry":{"type":"LineString","coordinates":[[-83.5602994,32.8865977],[-83.5604905,32.8867287],[-83.5625064,32.887760300000004],[-83.56314470000001,32.888125200000005]]},"id":"8844c0aa59fffff-139fb5043a5bbfed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa58510c4-13dffc9c722d25a8","8f44c0aa5830933-13f7f18a95986647"]},"geometry":{"type":"LineString","coordinates":[[-83.56314470000001,32.888125200000005],[-83.56377470000001,32.8885212],[-83.56402680000001,32.8886923],[-83.56414480000001,32.888827500000005],[-83.56423600000001,32.8889942],[-83.564338,32.8892059],[-83.5644345,32.8894942],[-83.56450260000001,32.890085],[-83.5645604,32.890396800000005],[-83.5646183,32.8906621],[-83.5646866,32.8908482],[-83.56477170000001,32.8910728],[-83.5649126,32.891395100000004],[-83.5651641,32.8919717]]},"id":"8844c0aa59fffff-17bfbe8fce6af0cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa41768ac-13ffe1825840ece1","8f44c0aa41718d1-13bfffc18ba711ba"]},"geometry":{"type":"LineString","coordinates":[[-83.54421520000001,32.8786367],[-83.54349710000001,32.8779236]]},"id":"8a44c0aa4177fff-13dfe0a1e2c5a232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa41768ac-13ffe1825840ece1","8f44c0aa4104896-17dff526cb083d16"]},"geometry":{"type":"LineString","coordinates":[[-83.54349710000001,32.8779236],[-83.5420052,32.8766181]]},"id":"8944c0aa413ffff-17f7f35488afb4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5404003,32.8747741]},"id":"8f44c0aa4c6e312-13dff911d5b0f3d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c6e312-13dff911d5b0f3d4","8f44c0aa4104896-17dff526cb083d16"]},"geometry":{"type":"LineString","coordinates":[[-83.5420052,32.8766181],[-83.5406251,32.8753927],[-83.54054500000001,32.8752961],[-83.54051650000001,32.875207200000006],[-83.54046770000001,32.87492],[-83.54044710000001,32.87485],[-83.5404003,32.8747741]]},"id":"8744c0aa4ffffff-17b7e75dca234256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5373088,32.854158500000004]},"id":"8f44c0b8a5325a2-17fff09e0d05e11a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.52376840000001,32.851018100000005]},"id":"8f44c0b9d6182e8-17de51accff1bf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8a5325a2-17fff09e0d05e11a","8f44c0b9d6182e8-17de51accff1bf37"]},"geometry":{"type":"LineString","coordinates":[[-83.5373088,32.854158500000004],[-83.53692290000001,32.854171],[-83.5364505,32.8542001],[-83.5360175,32.8542227],[-83.53558740000001,32.8542381],[-83.5352307,32.8542511],[-83.53481280000001,32.854280700000004],[-83.5343046,32.854300800000004],[-83.53374550000001,32.854324500000004],[-83.5329916,32.854373200000005],[-83.5320231,32.8544087],[-83.53149230000001,32.854393900000005],[-83.53059160000001,32.854395700000005],[-83.53005610000001,32.8543833],[-83.5297841,32.8543566],[-83.5295037,32.854300900000005],[-83.5291498,32.8542037],[-83.52889850000001,32.8541137],[-83.5286001,32.8539673],[-83.528282,32.8537891],[-83.5279548,32.8535757],[-83.5275658,32.8533139],[-83.527169,32.8530066],[-83.52683920000001,32.8526766],[-83.52620540000001,32.8520096],[-83.5260015,32.851827400000005],[-83.52584470000001,32.8517445],[-83.52567420000001,32.851673500000004],[-83.52540210000001,32.8516203],[-83.5249799,32.8516051],[-83.52466220000001,32.8516311],[-83.52435390000001,32.8516141],[-83.52412600000001,32.8515561],[-83.5239263,32.851391400000004],[-83.52383420000001,32.851240700000005],[-83.52376840000001,32.851018100000005]]},"id":"8644c0b9fffffff-17fda1ff0147659b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5653588,32.8834967]},"id":"8f44c0b8b280383-179ffc22c9a8e4e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b28e52c-13f7abfb1a00562e","8f44c0b8b280383-179ffc22c9a8e4e5"]},"geometry":{"type":"LineString","coordinates":[[-83.5653588,32.8834967],[-83.56542230000001,32.8840482]]},"id":"8944c0b8b2bffff-17d7fc0ef9692e8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5655619,32.8848979]},"id":"8f44c0b8b28b4aa-1397bba3dc4525bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b28e52c-13f7abfb1a00562e","8f44c0b8b28b4aa-1397bba3dc4525bd"]},"geometry":{"type":"LineString","coordinates":[[-83.56542230000001,32.8840482],[-83.5655619,32.8848979]]},"id":"8a44c0b8b28ffff-13ffbbcf7d5b8023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5c73c8d-17d7e2cecc08de37","8f44c0aa5c01116-17b7f609a42d8ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.5560724,32.8901246],[-83.5560222,32.8900507],[-83.5554941,32.8895345],[-83.5547816,32.8889127],[-83.5547494,32.8888679]]},"id":"8844c0aa5dfffff-17bff4659987b76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15a82cf0-17b7b230505527a5","8f44c0a1514d6e2-1797f48766805f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.627457,32.902299],[-83.6278333,32.9026718],[-83.6282862,32.9032647],[-83.6284155,32.903409]]},"id":"8744c0a15ffffff-17d7d3541bdc8c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62954520000001,32.904245200000005]},"id":"8f44c0a15a8c698-13d74f6e4d01c62d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15a82cf0-17b7b230505527a5","8f44c0a15a8c698-13d74f6e4d01c62d"]},"geometry":{"type":"LineString","coordinates":[[-83.6284155,32.903409],[-83.6285572,32.903567100000004],[-83.6289388,32.9038411],[-83.62954520000001,32.904245200000005]]},"id":"8944c0a15abffff-13df30d9a42e7fe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6790179,32.9273535]},"id":"8f44c0a0119d728-13bff6a5da013823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0119d728-13bff6a5da013823","8f44c0a011b43a8-17fff6ec4ddad8b1"]},"geometry":{"type":"LineString","coordinates":[[-83.6790179,32.9273535],[-83.6791286,32.9264074],[-83.67909730000001,32.925995],[-83.679052,32.9255416],[-83.6789265,32.9250502],[-83.6789052,32.9249975]]},"id":"8944c0a011bffff-17d7d68c41c4d058"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6782051,32.923898200000004]},"id":"8f44c0a01cec774-13bef8a1d157e9e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a011b43a8-17fff6ec4ddad8b1","8f44c0a01cec774-13bef8a1d157e9e8"]},"geometry":{"type":"LineString","coordinates":[[-83.6789052,32.9249975],[-83.6788045,32.924748900000004],[-83.67867910000001,32.924512],[-83.6784665,32.9242166],[-83.6782051,32.923898200000004]]},"id":"8844c0a01dfffff-1396f7b0e90188d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5426037,32.8709508]},"id":"8f44c0aa4995443-13ffe3b0bbeb3eb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4995443-13ffe3b0bbeb3eb4","8f44c0aa4982404-13b7f2eee634cd69"]},"geometry":{"type":"LineString","coordinates":[[-83.5426037,32.8709508],[-83.54291380000001,32.8712201]]},"id":"8a44c0aa4997fff-13dff34fcd1b3bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4995443-13ffe3b0bbeb3eb4","8f44c0aa4982404-13b7f2eee634cd69"]},"geometry":{"type":"LineString","coordinates":[[-83.54291380000001,32.8712201],[-83.5437873,32.8704939],[-83.5452163,32.8692792],[-83.5454212,32.869095300000005],[-83.54637500000001,32.868277],[-83.5487281,32.8662647],[-83.5490597,32.8659382],[-83.5491238,32.8657616],[-83.5491452,32.865605800000004],[-83.5491203,32.865444100000005],[-83.5490561,32.8652764],[-83.5489063,32.8650907],[-83.5487566,32.8649859],[-83.54853560000001,32.864887100000004],[-83.54829670000001,32.8648272],[-83.54805780000001,32.8648362],[-83.5478403,32.8648961],[-83.54748020000001,32.865162600000005],[-83.5470524,32.865528000000005],[-83.5468278,32.8656717],[-83.5465497,32.8657825],[-83.54606480000001,32.8659352],[-83.5458402,32.8660131],[-83.5457404,32.866061],[-83.5455692,32.866207800000005],[-83.54505230000001,32.8667618],[-83.5445959,32.8672649],[-83.54444260000001,32.867528400000005],[-83.544275,32.867845800000005],[-83.5441182,32.8680225],[-83.54251690000001,32.869374900000004],[-83.542118,32.8697803],[-83.5420182,32.8699899],[-83.5420004,32.8702115],[-83.5420618,32.8704247],[-83.54222080000001,32.8706355],[-83.5426037,32.8709508]]},"id":"8644c0b8fffffff-13dfdc780b4540b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53927780000001,32.8751461]},"id":"8f44c0aa4c43993-13b7fbcf66c12b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c58bb3-17dfed0926444c8b","8f44c0aa4c43993-13b7fbcf66c12b74"]},"geometry":{"type":"LineString","coordinates":[[-83.53927780000001,32.8751461],[-83.5391848,32.8752762],[-83.5389572,32.875573100000004],[-83.53877580000001,32.8758222]]},"id":"8944c0aa4c7ffff-139fec6c6cfacbfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5384604,32.8767158]},"id":"8f44c0aa41b5151-179fedce4c15c6b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c58bb3-17dfed0926444c8b","8f44c0aa41b5151-179fedce4c15c6b5"]},"geometry":{"type":"LineString","coordinates":[[-83.53877580000001,32.8758222],[-83.5385172,32.876120400000005],[-83.5384657,32.8762592],[-83.5384604,32.8767158]]},"id":"8744c0aa4ffffff-17f7fd9cb39a0caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53795810000001,32.8774888]},"id":"8f44c0aa41b3248-13ffef0835bd65de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa41b5151-179fedce4c15c6b5","8f44c0aa41b3248-13ffef0835bd65de"]},"geometry":{"type":"LineString","coordinates":[[-83.5384604,32.8767158],[-83.5383745,32.8769848],[-83.53808240000001,32.8773301],[-83.53795810000001,32.8774888]]},"id":"8a44c0aa41b7fff-1797fe57a1b361b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5376657,32.877712700000004]},"id":"8f44c0aa419501e-13ffffbef513ba04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa419501e-13ffffbef513ba04","8f44c0aa41b3248-13ffef0835bd65de"]},"geometry":{"type":"LineString","coordinates":[[-83.53795810000001,32.8774888],[-83.5376657,32.877712700000004]]},"id":"8944c0aa41bffff-13b7ef639d8ff01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4180096-13fffde2ffab18bc","8f44c0aa41b3248-13ffef0835bd65de"]},"geometry":{"type":"LineString","coordinates":[[-83.53795810000001,32.8774888],[-83.53822000000001,32.8777461],[-83.53842730000001,32.877924300000004]]},"id":"8944c0aa41bffff-13ffee77cb6745d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5396893,32.8788055]},"id":"8f44c0aa418d8e2-13b7face3381c4ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4180096-13fffde2ffab18bc","8f44c0aa418d8e2-13b7face3381c4ec"]},"geometry":{"type":"LineString","coordinates":[[-83.53842730000001,32.877924300000004],[-83.53954630000001,32.8788199],[-83.5396893,32.8788055]]},"id":"8944c0aa41bffff-13bffc615295f976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa418d8e2-13b7face3381c4ec","8f44c0aa41b5151-179fedce4c15c6b5"]},"geometry":{"type":"LineString","coordinates":[[-83.5384604,32.8767158],[-83.5386417,32.876820200000004],[-83.5391805,32.877090700000004],[-83.5395045,32.8772511],[-83.53957700000001,32.8773044],[-83.53960070000001,32.8773817],[-83.5396023,32.8777445],[-83.5396106,32.8780318],[-83.5396252,32.878203500000005],[-83.5396432,32.878458900000005],[-83.5396893,32.8788055]]},"id":"8944c0aa41bffff-13b7fba31f321ad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5396958,32.8790092]},"id":"8f44c0aa418d31d-17b7eaca22bbd10e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa418d31d-17b7eaca22bbd10e","8f44c0aa418d8e2-13b7face3381c4ec"]},"geometry":{"type":"LineString","coordinates":[[-83.5396893,32.8788055],[-83.5396958,32.8790092]]},"id":"8b44c0aa418dfff-13f7eacc21184589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa471ad4e-13fff4c391268981","8f44c0aa46a0ba2-17fff9f4dd77c738"]},"geometry":{"type":"LineString","coordinates":[[-83.5334835,32.8867001],[-83.5356103,32.8848834]]},"id":"8844c0aa47fffff-17b7f75c3853d2d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53749660000001,32.8832139]},"id":"8f44c0aa47239a4-17fff028a8c45bc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa471ad4e-13fff4c391268981","8f44c0aa47239a4-17fff028a8c45bc1"]},"geometry":{"type":"LineString","coordinates":[[-83.5356103,32.8848834],[-83.5363001,32.8842613],[-83.5373799,32.8833219],[-83.53749660000001,32.8832139]]},"id":"8944c0aa473ffff-13f7f2775e972110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5342998,32.9131001]},"id":"8f44c0aa391ccae-17dff7f6a6156f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa391ccae-17dff7f6a6156f30","8f44c0aa39ad94d-17fff97fbc445e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.5342998,32.9131001],[-83.53389770000001,32.913237200000005],[-83.5336709,32.913319200000004]]},"id":"8944c0aa393ffff-17b7f8bb79646d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa391ccae-17dff7f6a6156f30","8f44c0aa39ad94d-17fff97fbc445e6a"]},"geometry":{"type":"LineString","coordinates":[[-83.5336709,32.913319200000004],[-83.53343550000001,32.9130921],[-83.53309390000001,32.9127748],[-83.53290170000001,32.9127132],[-83.53282010000001,32.9126381],[-83.5326673,32.9124339],[-83.5325639,32.9123047],[-83.5315935,32.911468400000004],[-83.5315362,32.911394300000005],[-83.53151360000001,32.9113119],[-83.5315513,32.911204000000005],[-83.5319632,32.910706000000005],[-83.5324959,32.9100843],[-83.5326244,32.910017700000004],[-83.5327415,32.9100018],[-83.5328738,32.9100526],[-83.5330098,32.910150900000005],[-83.53418860000001,32.9111977],[-83.53493680000001,32.9118796],[-83.53502370000001,32.912006500000004],[-83.5350501,32.9121207],[-83.5350501,32.9122761],[-83.53498210000001,32.9124855],[-83.5348539,32.9127784],[-83.53475440000001,32.9128878],[-83.5346129,32.9129908],[-83.5342998,32.9131001]]},"id":"8644c0aa7ffffff-13b7fa7dfdb606e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b251d9c-13b7a095f914cea7","8f44c0b8b2eb590-1797b3d0edfc8d33"]},"geometry":{"type":"LineString","coordinates":[[-83.5687666,32.8861465],[-83.56930820000001,32.8856484],[-83.56968110000001,32.885315600000006],[-83.5697773,32.8852157],[-83.56989010000001,32.8851157],[-83.57008970000001,32.8849456]]},"id":"8844c0b8b3fffff-179fb234dc3c36c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b251d9c-13b7a095f914cea7","8f44c0b8b34a16a-1797fb54cf4f045b"]},"geometry":{"type":"LineString","coordinates":[[-83.57008970000001,32.8849456],[-83.5702684,32.8847727],[-83.5705891,32.8844763],[-83.5709928,32.8841101],[-83.5714253,32.883741400000005],[-83.57168130000001,32.8835368],[-83.57204,32.883264000000004],[-83.572242,32.8830838]]},"id":"8844c0b8b3fffff-13d7bdfecee4c169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16563425-17d7b09259fba818","8f44c0a16ccd622-139fbd331e760425"]},"geometry":{"type":"LineString","coordinates":[[-83.57803030000001,32.8875739],[-83.5773253,32.888255300000004],[-83.57664910000001,32.8889195]]},"id":"8744c0a16ffffff-13b7dee3937caa71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5758412,32.889757800000005]},"id":"8f44c0a16542228-17f7b28b4a3c1921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16542228-17f7b28b4a3c1921","8f44c0a16563425-17d7b09259fba818"]},"geometry":{"type":"LineString","coordinates":[[-83.57664910000001,32.8889195],[-83.5758412,32.889757800000005]]},"id":"8944c0a1657ffff-17dfb18ed18e6d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5449816,32.8754542]},"id":"8f44c0aa48f56d5-13f7fde280b1be75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa48d5d76-17dfdf6674c91d5a","8f44c0aa48f56d5-13f7fde280b1be75"]},"geometry":{"type":"LineString","coordinates":[[-83.5443609,32.876028500000004],[-83.5449816,32.8754542]]},"id":"8944c0aa48fffff-17bffea4826111cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5464436,32.8740735]},"id":"8f44c0aa480e809-1397fa50cf8e16d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa480e809-1397fa50cf8e16d8","8f44c0aa48f56d5-13f7fde280b1be75"]},"geometry":{"type":"LineString","coordinates":[[-83.5449816,32.8754542],[-83.54584510000001,32.8746761],[-83.5461681,32.8743616],[-83.5464436,32.8740735]]},"id":"8844c0aa49fffff-13dfdc13183f9957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5466138,32.873813500000004]},"id":"8f44c0aa4801af1-17f7f9e667817d76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa480e809-1397fa50cf8e16d8","8f44c0aa4801af1-17f7f9e667817d76"]},"geometry":{"type":"LineString","coordinates":[[-83.5464436,32.8740735],[-83.5465205,32.873967],[-83.5466138,32.873813500000004]]},"id":"8944c0aa483ffff-17d7da1a0154d6a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa432a001-13d7d9380a9d9fca","8f44c0aa4a95c5a-139ffb640118e0a2"]},"geometry":{"type":"LineString","coordinates":[[-83.5460032,32.881446600000004],[-83.54709700000001,32.8824065],[-83.54709150000001,32.8824717],[-83.5470209,32.8825652],[-83.546368,32.8830587],[-83.5460748,32.8833859],[-83.5459553,32.8836686],[-83.54591190000001,32.8839923],[-83.54611820000001,32.8843571],[-83.5465037,32.884708100000005],[-83.54689280000001,32.884999300000004]]},"id":"8744c0aa4ffffff-17d7da5698eb2135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa432a001-13d7d9380a9d9fca","8f44c0aa5cb0806-13f7f0451f9b26b4"]},"geometry":{"type":"LineString","coordinates":[[-83.54689280000001,32.884999300000004],[-83.5505583,32.8881183]]},"id":"8644c0aa7ffffff-1797d4be9f11e1ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b204c4d-13bff3bd5f3bb819","8f44c0b8b2044c9-17b7e429e91cf3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.5687979,32.8821165],[-83.5686242,32.882283]]},"id":"8b44c0b8b204fff-13fff3f3a30de23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2044c9-17b7e429e91cf3b7","8f44c0b8b211a14-179ff5f38e33446c"]},"geometry":{"type":"LineString","coordinates":[[-83.5686242,32.882283],[-83.567892,32.882857300000005]]},"id":"8944c0b8b23ffff-17d7e50ebb7ec81e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2ad4c3-17f7a8562d34eb7f","8f44c0b8b211a14-179ff5f38e33446c"]},"geometry":{"type":"LineString","coordinates":[[-83.567892,32.882857300000005],[-83.5672636,32.8833537],[-83.56705410000001,32.8834334],[-83.56691500000001,32.8834426]]},"id":"8844c0b8b3fffff-17f7a716b3ea02ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5663186,32.8831046]},"id":"8f44c0b8b2ae105-17b7e9cae76abac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2ad4c3-17f7a8562d34eb7f","8f44c0b8b2ae105-17b7e9cae76abac4"]},"geometry":{"type":"LineString","coordinates":[[-83.56691500000001,32.8834426],[-83.5667179,32.8834168],[-83.5665719,32.883373500000005],[-83.56644510000001,32.8832806],[-83.5663186,32.8831046]]},"id":"8a44c0b8b2affff-17b7f925362438b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01912b49-179fe514c1a515f9","8f44c0a052ac06e-17fefb97a004de6f"]},"geometry":{"type":"LineString","coordinates":[[-83.6900998,32.9155784],[-83.69015590000001,32.9157232],[-83.6901782,32.9158947],[-83.69017860000001,32.9161213],[-83.6901029,32.916330900000005],[-83.6899894,32.916527800000004],[-83.68990620000001,32.916650600000004],[-83.6896468,32.916916],[-83.68932600000001,32.9171884],[-83.6891671,32.9172816],[-83.6889653,32.9173599],[-83.6886425,32.917431900000004],[-83.68832470000001,32.917501800000004],[-83.6881456,32.9175674],[-83.6879741,32.917664800000004],[-83.68717450000001,32.9184038],[-83.6868996,32.9185922],[-83.6865288,32.9187722],[-83.68621320000001,32.9189014]]},"id":"8644c0a07ffffff-13fe7f7f408a6849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6833938,32.920208200000005]},"id":"8f44c0a0199e8c8-13beabf6eb618f93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01912b49-179fe514c1a515f9","8f44c0a0199e8c8-13beabf6eb618f93"]},"geometry":{"type":"LineString","coordinates":[[-83.68621320000001,32.9189014],[-83.6856611,32.9191724],[-83.6844902,32.9196985],[-83.6840014,32.9199198],[-83.6833938,32.920208200000005]]},"id":"8844c0a019fffff-17b7b88525a9edcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01d6b6da-13f7df335c02a2d1","8f44c0a0199e8c8-13beabf6eb618f93"]},"geometry":{"type":"LineString","coordinates":[[-83.6833938,32.920208200000005],[-83.68334560000001,32.9202311],[-83.68304040000001,32.920411],[-83.68224330000001,32.9209954],[-83.68206830000001,32.9211261]]},"id":"8744c0a01ffffff-13dfdd9b51660494"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6790476,32.9233435]},"id":"8f44c0a01c50ae8-13f7b69349b1434a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c50ae8-13f7b69349b1434a","8f44c0a01d6b6da-13f7df335c02a2d1"]},"geometry":{"type":"LineString","coordinates":[[-83.68206830000001,32.9211261],[-83.681126,32.9218296],[-83.68011700000001,32.9225431],[-83.6790476,32.9233435]]},"id":"8844c0a01dfffff-17beb2e3c6a30cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01cec774-13bef8a1d157e9e8","8f44c0a01c50ae8-13f7b69349b1434a"]},"geometry":{"type":"LineString","coordinates":[[-83.6790476,32.9233435],[-83.6782051,32.923898200000004]]},"id":"8844c0a01dfffff-139f979a9544a3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01cec774-13bef8a1d157e9e8","8f44c0a014c2aea-13dfe91944859a02"]},"geometry":{"type":"LineString","coordinates":[[-83.6782051,32.923898200000004],[-83.677625,32.924184000000004],[-83.67746860000001,32.924285600000005],[-83.67732480000001,32.9244148],[-83.6772239,32.924563],[-83.6771533,32.924694200000005],[-83.67707,32.9253167],[-83.6770549,32.9256216],[-83.67707510000001,32.9262948],[-83.6771508,32.9266632],[-83.6772844,32.9274402],[-83.6773702,32.9279272],[-83.6774207,32.928181200000004],[-83.67741810000001,32.9283718],[-83.6773752,32.9285729],[-83.6772617,32.9289158],[-83.67705240000001,32.9292546],[-83.6768809,32.9294578],[-83.6766312,32.9296081],[-83.6761872,32.9297606],[-83.67600560000001,32.929786],[-83.67570040000001,32.929775400000004],[-83.67537250000001,32.9297246],[-83.6749034,32.929652600000004],[-83.6745956,32.929631400000005],[-83.67435850000001,32.9296589],[-83.67401550000001,32.9297246],[-83.67348580000001,32.929864300000006],[-83.67309490000001,32.9300464],[-83.6725778,32.930289800000004],[-83.67215660000001,32.9304994],[-83.67183870000001,32.9307006],[-83.6716269,32.9308932],[-83.6714604,32.9310964]]},"id":"8744c0a01ffffff-17bedeac58b3ed07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648638,32.9462297]},"id":"8f44c0a1dc26315-13d7f0d14648b6d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a1dc26315-13d7f0d14648b6d6","8f44c0a014c2aea-13dfe91944859a02"]},"geometry":{"type":"LineString","coordinates":[[-83.6714604,32.9310964],[-83.67130300000001,32.9314836],[-83.6712334,32.931871300000005],[-83.6711779,32.9321592],[-83.6710669,32.9324937],[-83.67092310000001,32.9327731],[-83.67079700000001,32.9330378],[-83.6704943,32.9333532],[-83.6701488,32.9336665],[-83.66977800000001,32.933971400000004],[-83.6685219,32.9349896],[-83.66802,32.935375],[-83.66778500000001,32.9355938],[-83.6674928,32.935866000000004],[-83.66718,32.9360925],[-83.6668925,32.9362725],[-83.6665595,32.936391],[-83.66641680000001,32.936426000000004],[-83.6662139,32.9364757],[-83.6659693,32.9364863],[-83.66530390000001,32.9365149],[-83.6651319,32.9365223],[-83.6648443,32.936554],[-83.6645089,32.9366324],[-83.6640397,32.936841900000005],[-83.66384040000001,32.936981700000004],[-83.6622463,32.9383195],[-83.66198650000001,32.9385884],[-83.6618882,32.9388085],[-83.6617873,32.9390414],[-83.66175390000001,32.9393754],[-83.66179840000001,32.9396554],[-83.66182230000001,32.9397085],[-83.6620044,32.9402655],[-83.6621353,32.940626900000005],[-83.66219840000001,32.940936],[-83.6621403,32.9411367],[-83.66206720000001,32.9413487],[-83.6619914,32.941481200000005],[-83.66187830000001,32.9416786],[-83.66160090000001,32.941958],[-83.66128810000001,32.9421485],[-83.66037560000001,32.9424064],[-83.6593412,32.9427291],[-83.6587434,32.942928],[-83.6574727,32.9433286],[-83.6571543,32.9434252],[-83.6558499,32.9438589],[-83.6544147,32.944328500000005],[-83.6538573,32.944510900000004],[-83.65253100000001,32.9449502],[-83.6512967,32.945341500000005],[-83.65021390000001,32.9456933],[-83.648638,32.9462297]]},"id":"8544c0a3fffffff-13d7c26b36ffaeef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1552c032-13df300ed8982600","8f44c0a1434acdc-13dff7948ccde6b6"]},"geometry":{"type":"LineString","coordinates":[[-83.6131,32.8938445],[-83.6161811,32.897705900000005]]},"id":"8644c0a17ffffff-1797b3d1b46a21ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1552c032-13df300ed8982600","8f44c0a15563ca2-17972c4a0b598b07"]},"geometry":{"type":"LineString","coordinates":[[-83.6161811,32.897705900000005],[-83.6177248,32.8996354]]},"id":"8844c0a155fffff-17b72e2c66db0e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61934480000001,32.901113200000005]},"id":"8f44c0a150b4076-139fe8558efc52bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15563ca2-17972c4a0b598b07","8f44c0a150b4076-139fe8558efc52bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6177248,32.8996354],[-83.6188034,32.900758100000004],[-83.61934480000001,32.901113200000005]]},"id":"8744c0a15ffffff-13f7aa6443cd64b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a150b5da0-13d7f7da59aebbc0","8f44c0a150b4076-139fe8558efc52bf"]},"geometry":{"type":"LineString","coordinates":[[-83.61934480000001,32.901113200000005],[-83.6195419,32.9012029]]},"id":"8b44c0a150b4fff-13b7f817e043ae3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a150a0ad1-139f65207e30a8ec","8f44c0a150b5da0-13d7f7da59aebbc0"]},"geometry":{"type":"LineString","coordinates":[[-83.6195419,32.9012029],[-83.62042720000001,32.9016144],[-83.6206585,32.9017252]]},"id":"8944c0a150bffff-13f7667d14ec822e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a1515e861-13ffb91286d5f171","8f44c0a150a0ad1-139f65207e30a8ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6206585,32.9017252],[-83.621947,32.902345000000004],[-83.62309900000001,32.902729],[-83.623563,32.902697],[-83.623931,32.902649000000004],[-83.624235,32.902553000000005],[-83.624651,32.902329],[-83.624859,32.902201000000005],[-83.624891,32.902217],[-83.625596,32.901673]]},"id":"8844c0a151fffff-179f1efc65da45df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5904278,32.907780200000005]},"id":"8f44c0a104e4123-13f7eeeea8f64b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a104e4123-13f7eeeea8f64b9f","8f44c0a1040b48b-13f76e6ba1b1983f"]},"geometry":{"type":"LineString","coordinates":[[-83.5906374,32.907776000000005],[-83.5904278,32.907780200000005]]},"id":"8944c0a1043ffff-13f77ead2b5f4c6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a104e4123-13f7eeeea8f64b9f","8f44c0a12ba2388-17df90c205411841"]},"geometry":{"type":"LineString","coordinates":[[-83.5904278,32.907780200000005],[-83.5900855,32.9077889],[-83.58978660000001,32.9078277],[-83.58953600000001,32.907891],[-83.588221,32.908359700000005],[-83.5876484,32.9085654],[-83.5868568,32.908844800000004],[-83.58623850000001,32.9090748],[-83.5860736,32.9091377],[-83.5853187,32.9094074],[-83.5845414,32.909672900000004],[-83.5841891,32.9097796],[-83.583657,32.909904600000004],[-83.58312640000001,32.9099929]]},"id":"8644c0a17ffffff-179ff7d74d1b342d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12b94c25-17dfd48599f63693","8f44c0a12ba2388-17df90c205411841"]},"geometry":{"type":"LineString","coordinates":[[-83.58312640000001,32.9099929],[-83.5825868,32.9100325],[-83.58158470000001,32.9100021]]},"id":"8944c0a12bbffff-17d7d2a398feca8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12b94c25-17dfd48599f63693","8f44c0a12525862-13fff2f4d902c344"]},"geometry":{"type":"LineString","coordinates":[[-83.58158470000001,32.9100021],[-83.58072650000001,32.9098666],[-83.5793479,32.9096369],[-83.57863090000001,32.9095254],[-83.577968,32.9094342],[-83.5773037,32.9093816],[-83.5762486,32.909342],[-83.57452350000001,32.9092793],[-83.5733282,32.909223700000005],[-83.57293800000001,32.9091844],[-83.5726305,32.9091332],[-83.5722662,32.9090463],[-83.57194480000001,32.9089448],[-83.5716482,32.9088153],[-83.5706153,32.908166200000004],[-83.56949180000001,32.907391700000005],[-83.5691187,32.907185500000004]]},"id":"8744c0a12ffffff-1797942ee76ec2f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5649516,32.9065385]},"id":"8f44c0aa5243452-17dfbd2140c6897b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a12525862-13fff2f4d902c344","8f44c0aa5243452-17dfbd2140c6897b"]},"geometry":{"type":"LineString","coordinates":[[-83.5691187,32.907185500000004],[-83.56872010000001,32.907018],[-83.568409,32.906921000000004],[-83.567334,32.906625600000005],[-83.5668483,32.9065012],[-83.5663703,32.906429700000004],[-83.5657984,32.9064262],[-83.5654308,32.9064551],[-83.5649516,32.9065385]]},"id":"8744c0a12ffffff-17b7a7fc07842c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa5922992-13b7ada468bf06a1","8f44c0b8b28b4aa-1397bba3dc4525bd"]},"geometry":{"type":"LineString","coordinates":[[-83.56474180000001,32.8853504],[-83.565089,32.8850733],[-83.5652779,32.8849649],[-83.5655619,32.8848979]]},"id":"8744c0b8bffffff-13ffecb13565b0d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b2f204d-13bfb88648b60afe","8f44c0b8b28b4aa-1397bba3dc4525bd"]},"geometry":{"type":"LineString","coordinates":[[-83.5655619,32.8848979],[-83.566838,32.884748900000005]]},"id":"8844c0b8b3fffff-13d7aa151992b509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8b21da34-1797b42c8e06ebd2","8f44c0b8b2f204d-13bfb88648b60afe"]},"geometry":{"type":"LineString","coordinates":[[-83.566838,32.884748900000005],[-83.5670774,32.8846928],[-83.56722950000001,32.884636],[-83.5673725,32.8845461],[-83.56862000000001,32.883486500000004]]},"id":"8844c0b8b3fffff-13dfb64231cca2fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a6ab0c8-17d7fa9f8782106c","8f44c0b8a615883-13b7f74fe5f3142c"]},"geometry":{"type":"LineString","coordinates":[[-83.539764,32.8672029],[-83.5403754,32.867057200000005],[-83.5404604,32.8670241],[-83.54054670000001,32.866937300000004],[-83.54085040000001,32.8661655],[-83.54112020000001,32.8654973]]},"id":"8844c0b8a7fffff-17bfe895aab50e5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a615883-13b7f74fe5f3142c","8f44c0b8a6a075e-13bfebe639973dc2"]},"geometry":{"type":"LineString","coordinates":[[-83.54112020000001,32.8654973],[-83.54069340000001,32.8655075],[-83.54033390000001,32.8655137],[-83.5400621,32.865535300000005],[-83.5397097,32.8655939],[-83.5392413,32.865731000000004]]},"id":"8844c0b8a7fffff-13dfe9a009685772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89414aa0-1397edea518190ed","8f44c0b894a3456-17ffb27be50b5d32"]},"geometry":{"type":"LineString","coordinates":[[-83.5758658,32.8692954],[-83.576976,32.8690184],[-83.57773710000001,32.8685366]]},"id":"8844c0b895fffff-13bfb01f6bbe6d76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5779285,32.868415500000005]},"id":"8f44c0b89433429-13d7bd72b351a3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89433429-13d7bd72b351a3bc","8f44c0b89414aa0-1397edea518190ed"]},"geometry":{"type":"LineString","coordinates":[[-83.57773710000001,32.8685366],[-83.5779285,32.868415500000005]]},"id":"8944c0b8943ffff-13ff9dae81c0d4c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6833836,32.9192521]},"id":"8f44c0a01995c80-17f69bfd43df4707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68300190000001,32.9197647]},"id":"8f44c0a0199398c-17b6fcebd0b49957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0199398c-17b6fcebd0b49957","8f44c0a01995c80-17f69bfd43df4707"]},"geometry":{"type":"LineString","coordinates":[[-83.6833836,32.9192521],[-83.6830778,32.9197257],[-83.68300190000001,32.9197647]]},"id":"8a44c0a01997fff-179fac6c8b2e5780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6828593,32.9193072]},"id":"8f44c0a01996363-17978d44fbabf4f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0199398c-17b6fcebd0b49957","8f44c0a01996363-17978d44fbabf4f5"]},"geometry":{"type":"LineString","coordinates":[[-83.68300190000001,32.9197647],[-83.68271800000001,32.9198064],[-83.6826219,32.919727800000004],[-83.68257510000001,32.9196637],[-83.6825505,32.9195975],[-83.6825529,32.9195189],[-83.68257510000001,32.919432],[-83.68264900000001,32.9193555],[-83.6828593,32.9193072]]},"id":"8a44c0a01997fff-17b7bda6de19b551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01996363-17978d44fbabf4f5","8f44c0a01995c80-17f69bfd43df4707"]},"geometry":{"type":"LineString","coordinates":[[-83.6828593,32.9193072],[-83.6833836,32.9192521]]},"id":"8a44c0a01997fff-17f7dca12bf1ce78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68389590000001,32.919198300000005]},"id":"8f44c0a01986cd1-17d6fabd161aa717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01995c80-17f69bfd43df4707","8f44c0a01986cd1-17d6fabd161aa717"]},"geometry":{"type":"LineString","coordinates":[[-83.6833836,32.9192521],[-83.68389590000001,32.919198300000005]]},"id":"8944c0a019bffff-17d7cb5d3f344958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1c254a5-179fd304f0b6afa4","8f44c0aa5243452-17dfbd2140c6897b"]},"geometry":{"type":"LineString","coordinates":[[-83.5649516,32.9065385],[-83.5638567,32.906886400000005],[-83.563507,32.9069717],[-83.56306380000001,32.9070569],[-83.56255130000001,32.9070908],[-83.561721,32.9071147],[-83.5607813,32.9071245],[-83.5602059,32.907138800000006],[-83.5597573,32.907149700000005],[-83.55914960000001,32.907155700000004],[-83.558553,32.907177000000004],[-83.5581451,32.907250000000005],[-83.55759520000001,32.9073827],[-83.55644740000001,32.907783300000006],[-83.555593,32.908073],[-83.55463300000001,32.908441],[-83.5543025,32.908623],[-83.55406930000001,32.908776700000004],[-83.553782,32.9089799],[-83.5534947,32.909148900000005],[-83.5532829,32.9092375],[-83.5530626,32.909302000000004],[-83.55284060000001,32.909348],[-83.55252150000001,32.9093509],[-83.55216700000001,32.9093211],[-83.5517483,32.909247400000005],[-83.551246,32.9091645],[-83.550629,32.9090525],[-83.5502931,32.9089668],[-83.5500483,32.908882500000004],[-83.54985620000001,32.908814],[-83.5494321,32.9086628]]},"id":"8644c0aa7ffffff-13b7e03b592b05d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1c254a5-179fd304f0b6afa4","8f44c0aa1d1b269-13dfd4f6b1dda45b"]},"geometry":{"type":"LineString","coordinates":[[-83.5494321,32.9086628],[-83.5486357,32.9083537]]},"id":"8944c0aa1c3ffff-17bff3fddbee5bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa1c34b32-13dfd615720f0673","8f44c0aa1d1b269-13dfd4f6b1dda45b"]},"geometry":{"type":"LineString","coordinates":[[-83.5486357,32.9083537],[-83.5485525,32.9083276],[-83.5481769,32.9081837]]},"id":"8944c0aa1c3ffff-1397d58682bf1ada"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5355708,32.8717127]},"id":"8f44c0aa4d89b75-13d7f4dc4f67af3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c14ca0-13dff4f1d37606c4","8f44c0aa4d89b75-13d7f4dc4f67af3f"]},"geometry":{"type":"LineString","coordinates":[[-83.5355708,32.8717127],[-83.5355363,32.8718991]]},"id":"8944c0aa4c3ffff-139ff4e70d7163fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c14ca0-13dff4f1d37606c4","8f44c0aa4cadd0a-17f7f5a6ac8b7a57"]},"geometry":{"type":"LineString","coordinates":[[-83.5355363,32.8718991],[-83.5353769,32.8725601],[-83.5353139,32.8728594],[-83.535247,32.873165]]},"id":"8844c0aa4dfffff-17d7f54e8d8cd0e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5347574,32.8758366]},"id":"8f44c0aa4cd3860-17f7f6d8ad276236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4cadd0a-17f7f5a6ac8b7a57","8f44c0aa4cd3860-17f7f6d8ad276236"]},"geometry":{"type":"LineString","coordinates":[[-83.535247,32.873165],[-83.5347574,32.8758366]]},"id":"8844c0aa4dfffff-13b7f63fa98d16d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0b9a04d-13f7f86d715ba3ab","8f44c0aa004cd4a-1397ee3bced61ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.5406633,32.9010223],[-83.5404877,32.9011336],[-83.5403349,32.9012699],[-83.54019410000001,32.9014162],[-83.5388126,32.903067300000004],[-83.5384258,32.903560500000005],[-83.53836290000001,32.903660800000004],[-83.5383237,32.903753200000004],[-83.53829660000001,32.9038496],[-83.5382793,32.9039658],[-83.53828100000001,32.9040413],[-83.5382852,32.9041494]]},"id":"8744c0aa0ffffff-17fffbb35211525f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0a99922-139fe85467a51bd8","8f44c0aa004cd4a-1397ee3bced61ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.5382852,32.9041494],[-83.5383575,32.9043401],[-83.5384422,32.9044875],[-83.538533,32.9046007],[-83.5386416,32.9046919],[-83.5387896,32.9047931],[-83.53893880000001,32.904859300000005],[-83.5391048,32.9049014],[-83.5392755,32.9049254],[-83.5394581,32.9049174],[-83.5396336,32.904885300000004],[-83.5397768,32.9048372],[-83.53994630000001,32.90475],[-83.5401612,32.9045897],[-83.5402699,32.9044734],[-83.5407034,32.9039866]]},"id":"8744c0aa0ffffff-13b7eb575f1b0ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa0a99922-139fe85467a51bd8","8f44c0aa0aa1069-179fe4e6898c0c53"]},"geometry":{"type":"LineString","coordinates":[[-83.5407034,32.9039866],[-83.5419445,32.9025035],[-83.542108,32.902316]]},"id":"8944c0aa0abffff-1797e69e8b8daadc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5222359,32.9141465]},"id":"8f44c0aa3d9924a-13fd956a9bb66bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0aa3d9924a-13fd956a9bb66bc3","8f44c0aa3136449-13bfb51f4cbe1844"]},"geometry":{"type":"LineString","coordinates":[[-83.5222359,32.9141465],[-83.5222497,32.914225900000005],[-83.522271,32.914301800000004],[-83.5223472,32.9143826],[-83.5229403,32.914688600000005],[-83.52430910000001,32.915383500000004],[-83.52448770000001,32.9154709],[-83.5255281,32.9159942],[-83.526443,32.916476800000005],[-83.52744100000001,32.9169732],[-83.5277664,32.9171484],[-83.5281314,32.917385],[-83.5283892,32.9175945],[-83.5286174,32.9178018],[-83.52891000000001,32.9181307]]},"id":"8744c0aa3ffffff-179e0d346a7466ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0aa3228b00-139ff6b69c0d7bcc","8f44c0aa3136449-13bfb51f4cbe1844"]},"geometry":{"type":"LineString","coordinates":[[-83.52891000000001,32.9181307],[-83.52905600000001,32.9183886],[-83.5291681,32.9186102],[-83.529278,32.918943500000005],[-83.52935090000001,32.9193104],[-83.5294255,32.920114500000004],[-83.529475,32.9207835],[-83.52952280000001,32.9212015],[-83.5295737,32.9214538],[-83.52966570000001,32.921742],[-83.52978540000001,32.9220315],[-83.5299169,32.9222751],[-83.53002690000001,32.9224593],[-83.5302961,32.9228937],[-83.53071560000001,32.9235089],[-83.531166,32.9241473],[-83.53147390000001,32.9245925],[-83.53288760000001,32.9265952],[-83.533303,32.927208400000005],[-83.5335946,32.927617600000005],[-83.5340056,32.928281600000005],[-83.5343611,32.9289768],[-83.5345781,32.9295786],[-83.53481190000001,32.9301714]]},"id":"8744c0aa3ffffff-13b7feb9c521bc06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5553749,32.9984867]},"id":"8f44c0a8d0631b1-17d7f482b7f3731d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a8d0631b1-17d7f482b7f3731d","8f44c0aa3228b00-139ff6b69c0d7bcc"]},"geometry":{"type":"LineString","coordinates":[[-83.53481190000001,32.9301714],[-83.53494570000001,32.9305334],[-83.5351376,32.930999400000005],[-83.5354927,32.931857900000004],[-83.5355756,32.9320983],[-83.5356545,32.9323661],[-83.5357171,32.9326595],[-83.53575330000001,32.9329221],[-83.5357845,32.9333589],[-83.5357894,32.933592600000004],[-83.53578630000001,32.9339235],[-83.53578,32.9342878],[-83.5357718,32.9350429],[-83.5357613,32.9359978],[-83.5357539,32.936467300000004],[-83.5357489,32.9367936],[-83.5357309,32.9372023],[-83.53569900000001,32.9375522],[-83.53564130000001,32.9379226],[-83.53557430000001,32.938199000000004],[-83.53547850000001,32.9385477],[-83.5353827,32.9389004],[-83.53528060000001,32.9392593],[-83.5351997,32.939627900000005],[-83.535188,32.9398082],[-83.535195,32.9399845],[-83.535223,32.940392],[-83.53539980000001,32.9408539],[-83.5356653,32.941304],[-83.5359081,32.941681200000005],[-83.53613700000001,32.9419958],[-83.5364347,32.942365200000005],[-83.53669500000001,32.942664],[-83.5371396,32.943119800000005],[-83.5379157,32.9438578],[-83.539265,32.9450882],[-83.54016770000001,32.945921600000005],[-83.5410985,32.946782500000005],[-83.5421274,32.947729700000004],[-83.5429367,32.9484887],[-83.54320700000001,32.948792000000005],[-83.543431,32.949128],[-83.54357800000001,32.949431700000005],[-83.5437447,32.9498248],[-83.5438587,32.9502284],[-83.5438998,32.9504523],[-83.5439339,32.9506802],[-83.5439448,32.950972400000005],[-83.5439516,32.9512306],[-83.5439127,32.9520703],[-83.54389780000001,32.9530472],[-83.54388180000001,32.9537094],[-83.5438835,32.9543011],[-83.5439126,32.9547253],[-83.5439661,32.9551086],[-83.5440264,32.9553989],[-83.54411520000001,32.955668800000005],[-83.5443091,32.9562177],[-83.544503,32.956712],[-83.54466310000001,32.9570908],[-83.544807,32.957432000000004],[-83.54498810000001,32.957861300000005],[-83.54536080000001,32.958722200000004],[-83.545591,32.959277300000004],[-83.5457926,32.9598767],[-83.5459412,32.960397900000004],[-83.54612230000001,32.9611954],[-83.5463486,32.962239100000005],[-83.54647410000001,32.962826],[-83.5467156,32.9639487],[-83.5469978,32.9652401],[-83.5475419,32.9678163],[-83.5476385,32.9682399],[-83.54772150000001,32.968686600000005],[-83.5478001,32.9691861],[-83.54785170000001,32.9696426],[-83.5478985,32.9703344],[-83.54792090000001,32.970992100000004],[-83.5479243,32.9713565],[-83.54791150000001,32.971707200000004],[-83.5478626,32.972218600000005],[-83.54779860000001,32.9726488],[-83.54771690000001,32.9730939],[-83.5476028,32.9736959],[-83.54747110000001,32.974335100000005],[-83.54729230000001,32.9752906],[-83.54710990000001,32.9762876],[-83.54705510000001,32.976641400000005],[-83.5469978,32.977053600000005],[-83.5469441,32.977471800000004],[-83.54690280000001,32.977814200000005],[-83.5468862,32.9781269],[-83.5468898,32.978289600000004],[-83.54690760000001,32.9784523],[-83.54695550000001,32.978691500000004],[-83.5470265,32.9789315],[-83.54707520000001,32.979077600000004],[-83.5471455,32.97919],[-83.54724180000001,32.9793442],[-83.5473965,32.9795742],[-83.5475328,32.979734],[-83.54764440000001,32.9798552],[-83.54785700000001,32.9800649],[-83.54819760000001,32.9803688],[-83.54852580000001,32.980675600000005],[-83.5487774,32.980945600000005],[-83.54893700000001,32.9811621],[-83.5491161,32.981451],[-83.54927040000001,32.9817458],[-83.54938800000001,32.982016200000004],[-83.5496548,32.982661900000004],[-83.5499339,32.9833299],[-83.5501129,32.9837652],[-83.55026720000001,32.9841797],[-83.55033680000001,32.9844521],[-83.5503927,32.984692100000004],[-83.55042730000001,32.9849292],[-83.5504528,32.9851266],[-83.5504677,32.985350700000005],[-83.55046200000001,32.9857174],[-83.55043950000001,32.986250500000004],[-83.55041460000001,32.986875600000005],[-83.55037150000001,32.9876048],[-83.55033780000001,32.988176800000005],[-83.5503183,32.9887043],[-83.55028680000001,32.9894067],[-83.5502429,32.990118],[-83.5502136,32.9908349],[-83.5501689,32.9916421],[-83.5501294,32.9925487],[-83.5501215,32.992852400000004],[-83.5501608,32.993163700000004],[-83.55022360000001,32.9934717],[-83.5502646,32.993609400000004],[-83.55031260000001,32.993753000000005],[-83.55042920000001,32.9939923],[-83.5505459,32.994202],[-83.5507402,32.9944678],[-83.5509487,32.994707000000005],[-83.5511592,32.994911800000004],[-83.55128470000001,32.995015800000004],[-83.55158440000001,32.9952763],[-83.55197050000001,32.995627500000005],[-83.5522493,32.9958806],[-83.5529578,32.9964984],[-83.55358840000001,32.9970063],[-83.5542894,32.997584800000006],[-83.5546451,32.9978679],[-83.5548964,32.9980745],[-83.5550949,32.998237700000004],[-83.55527140000001,32.9983828],[-83.5552828,32.9983942],[-83.5553749,32.9984867]]},"id":"8544c0abfffffff-17fffe0c54f5d601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4884c01-17f7e342ede86b69","8f44c0aa48f56d5-13f7fde280b1be75"]},"geometry":{"type":"LineString","coordinates":[[-83.5449816,32.8754542],[-83.5427794,32.8735832]]},"id":"8844c0aa49fffff-13bff092b9319b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4884c01-17f7e342ede86b69","8f44c0aa48b0576-1797f5284f97fcb9"]},"geometry":{"type":"LineString","coordinates":[[-83.5427794,32.8735832],[-83.54250920000001,32.8733604],[-83.5421132,32.8730776],[-83.5420028,32.8730149]]},"id":"8944c0aa48bffff-17bff430be71c0c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5acd6864-13f7d852b6c85505","8f44c0b5aca0515-13bde98040dc2ec4"]},"geometry":{"type":"LineString","coordinates":[[-83.763046,32.921211],[-83.7630196,32.921728300000005],[-83.76290110000001,32.9226821],[-83.76290110000001,32.9229513],[-83.7629081,32.9230624],[-83.76301260000001,32.9234135],[-83.7632217,32.9237178],[-83.7635285,32.9239869]]},"id":"8844c0b5adfffff-17d7f98352a977be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650411,32.924419900000004]},"id":"8f44c0b5acc0894-1397f4a1580369d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5acc0894-1397f4a1580369d5","8f44c0b5acd6864-13f7d852b6c85505"]},"geometry":{"type":"LineString","coordinates":[[-83.7635285,32.9239869],[-83.7643092,32.924338],[-83.7650411,32.924419900000004]]},"id":"8944c0b5acfffff-13b5e6842f10007f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c744090-13f7d53a401bf8c8","8f44c0b8c7549b6-139fb81f816c6f59"]},"geometry":{"type":"LineString","coordinates":[[-83.574742,32.838350000000005],[-83.57460490000001,32.8383142],[-83.574481,32.838273],[-83.574056,32.838147],[-83.57355600000001,32.838009]]},"id":"8944c0b8c77ffff-13f7f6ac7ddbeadb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c7549b6-139fb81f816c6f59","8f44c0b8c4ea636-13dfa7fcc9b8da9e"]},"geometry":{"type":"LineString","coordinates":[[-83.57355600000001,32.838009],[-83.572884,32.837821000000005],[-83.572466,32.837686000000005],[-83.571718,32.837402000000004],[-83.567058,32.835265]]},"id":"8744c0b8cffffff-17f7f020caa5bdf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c493d43-13dfb3656a64195b","8f44c0b8c4ea636-13dfa7fcc9b8da9e"]},"geometry":{"type":"LineString","coordinates":[[-83.567058,32.835265],[-83.566907,32.835185],[-83.566623,32.835056],[-83.566428,32.834974],[-83.565994,32.834812],[-83.565348,32.834603],[-83.564317,32.834287],[-83.563916,32.834148],[-83.563759,32.834079],[-83.56355900000001,32.833979],[-83.563387,32.833877],[-83.563151,32.833703],[-83.562926,32.833517],[-83.562787,32.833368],[-83.562696,32.833263],[-83.562584,32.833115],[-83.562385,32.832808]]},"id":"8644c0b8fffffff-17dffe0efce63b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c493d43-13dfb3656a64195b","8f44c0b8e963c2c-13bff4a061467c92"]},"geometry":{"type":"LineString","coordinates":[[-83.562385,32.832808],[-83.562262,32.83245],[-83.562223,32.83232],[-83.56219,32.832158],[-83.562168,32.831963],[-83.56214200000001,32.831566],[-83.562083,32.830911],[-83.56200000000001,32.830297],[-83.561881,32.829667]]},"id":"8844c0b8e9fffff-1797f411e7517ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b812de6b1-17fff6f2c981c161","8f44c0b8e963c2c-13bff4a061467c92"]},"geometry":{"type":"LineString","coordinates":[[-83.561881,32.829667],[-83.56174200000001,32.829331],[-83.56163500000001,32.829104],[-83.56156800000001,32.828978],[-83.561375,32.828668],[-83.561232,32.828479],[-83.56093,32.828122]]},"id":"8844c0b8e9fffff-13b7b5a929a16b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56033400000001,32.827457]},"id":"8f44c0b812d2751-17dfb86749c24940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b812de6b1-17fff6f2c981c161","8f44c0b812d2751-17dfb86749c24940"]},"geometry":{"type":"LineString","coordinates":[[-83.56093,32.828122],[-83.56033400000001,32.827457]]},"id":"8744c0b81ffffff-179ff7ad0ebf40d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8129915b-139ffac26a61babb","8f44c0b812d2751-17dfb86749c24940"]},"geometry":{"type":"LineString","coordinates":[[-83.56033400000001,32.827457],[-83.559369,32.826366]]},"id":"8844c0b813fffff-17f7b994d2b89a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8129915b-139ffac26a61babb","8f44c0b81293874-13f7fd2aa9890eb0"]},"geometry":{"type":"LineString","coordinates":[[-83.559369,32.826366],[-83.558383,32.825254]]},"id":"8944c0b812bffff-13d7fbf68343c05b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8174a255-17bfff898694e8a6","8f44c0b81293874-13f7fd2aa9890eb0"]},"geometry":{"type":"LineString","coordinates":[[-83.558383,32.825254],[-83.557412,32.824162]]},"id":"8744c0b81ffffff-1797be5a1ca2ff32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81703c8d-1797d6d71ceb65a2","8f44c0b8174a255-17bfff898694e8a6"]},"geometry":{"type":"LineString","coordinates":[[-83.557412,32.824162],[-83.557196,32.823914],[-83.55565700000001,32.822178],[-83.554653,32.821053],[-83.55442070000001,32.820799300000004]]},"id":"8844c0b817fffff-13b7c32de19259fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b814a8ba3-179ff711fd0cbe18","8f44c0b81703c8d-1797d6d71ceb65a2"]},"geometry":{"type":"LineString","coordinates":[[-83.55442070000001,32.820799300000004],[-83.5542011,32.8205797],[-83.55377220000001,32.8201662],[-83.55332700000001,32.819763],[-83.5527077,32.819209900000004],[-83.55224700000001,32.818816000000005],[-83.55215700000001,32.818745],[-83.55172300000001,32.818451],[-83.551349,32.818236],[-83.55094820000001,32.8180333],[-83.55055370000001,32.817849200000005],[-83.550174,32.817683],[-83.54974700000001,32.817511],[-83.5491647,32.817281300000005],[-83.5477729,32.816735800000004]]},"id":"8744c0b81ffffff-13dfde7fe3db6046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b814a8ba3-179ff711fd0cbe18","8f44c0b81484a50-1397d9d6947d4fd0"]},"geometry":{"type":"LineString","coordinates":[[-83.5477729,32.816735800000004],[-83.54663910000001,32.8162845]]},"id":"8944c0b814bffff-139ff8744bc672aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81484a50-1397d9d6947d4fd0","8f44c0b8394e205-1397dff4e01ccaa7"]},"geometry":{"type":"LineString","coordinates":[[-83.54663910000001,32.8162845],[-83.54497350000001,32.815624],[-83.544133,32.815286]]},"id":"8644c0b87ffffff-13dffce61894a4f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b83915b1b-13bff87762fa017e","8f44c0b8394e205-1397dff4e01ccaa7"]},"geometry":{"type":"LineString","coordinates":[[-83.544133,32.815286],[-83.542597,32.814676],[-83.542096,32.814462],[-83.541971,32.8144],[-83.541826,32.814304],[-83.54168200000001,32.814169],[-83.541567,32.814022],[-83.541499,32.81389],[-83.54114,32.813041000000005],[-83.540836,32.8123],[-83.54064740000001,32.8118491]]},"id":"8844c0b839fffff-17bfe5135a39dc3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b83915b1b-13bff87762fa017e","8f44c0b83915843-1397f88aa750b8c3"]},"geometry":{"type":"LineString","coordinates":[[-83.54064740000001,32.8118491],[-83.5406166,32.811780500000005]]},"id":"8b44c0b83915fff-139fe88106eb9ccf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8066b153-1797e9f9ec6b20b8","8f44c0b83915843-1397f88aa750b8c3"]},"geometry":{"type":"LineString","coordinates":[[-83.5406166,32.811780500000005],[-83.540559,32.811642],[-83.540293,32.810983],[-83.540029,32.810343]]},"id":"8744c0b80ffffff-17d7f941d2eae014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8066b153-1797e9f9ec6b20b8","8f44c0b8066e013-13bffab88da67ca6"]},"geometry":{"type":"LineString","coordinates":[[-83.540029,32.810343],[-83.539724,32.809597700000005]]},"id":"8a44c0b8066ffff-1397ea5937a48dec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8066e013-13bffab88da67ca6","8f44c0b80751010-17dffd5349499e97"]},"geometry":{"type":"LineString","coordinates":[[-83.539724,32.809597700000005],[-83.539405,32.808818],[-83.538933,32.80765],[-83.538717,32.807138],[-83.5386572,32.8069855]]},"id":"8844c0b807fffff-17fffc05650cf748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5382197,32.806088]},"id":"8f44c0b80709271-139fee64bc6d4d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80709271-139fee64bc6d4d5e","8f44c0b80751010-17dffd5349499e97"]},"geometry":{"type":"LineString","coordinates":[[-83.5386572,32.8069855],[-83.538426,32.806419000000005],[-83.538346,32.806269],[-83.5382197,32.806088]]},"id":"8a44c0b80757fff-13bfedcf9c031174"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80708cda-13b7efe30bda298a","8f44c0b80709271-139fee64bc6d4d5e"]},"geometry":{"type":"LineString","coordinates":[[-83.5382197,32.806088],[-83.5381021,32.8059571],[-83.537952,32.805816],[-83.537608,32.805509]]},"id":"8844c0b807fffff-13f7ef201506b43e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b80708cda-13b7efe30bda298a","8f44c0b807140db-179ff4060f3f5d97"]},"geometry":{"type":"LineString","coordinates":[[-83.537608,32.805509],[-83.536561,32.804594],[-83.53618200000001,32.804268],[-83.5359136,32.8040399]]},"id":"8944c0b8073ffff-17f7f1f356bb4bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b807140db-179ff4060f3f5d97","8f44c0b804495b0-13f7f56e69bdcae3"]},"geometry":{"type":"LineString","coordinates":[[-83.5359136,32.8040399],[-83.535579,32.803741],[-83.535337,32.803538]]},"id":"8844c0b807fffff-17fff4b909e67e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.4811293,32.766499100000004]},"id":"8f44c0b94d58436-13fdf9c63739c9b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b94d58436-13fdf9c63739c9b1","8f44c0b804495b0-13f7f56e69bdcae3"]},"geometry":{"type":"LineString","coordinates":[[-83.535337,32.803538],[-83.5348268,32.803106],[-83.53435610000001,32.8026908],[-83.53433700000001,32.802674],[-83.53428500000001,32.802625],[-83.534169,32.802518],[-83.534,32.80237],[-83.53383980000001,32.8022149],[-83.5336331,32.801984700000006],[-83.53347500000001,32.801794],[-83.533366,32.801668],[-83.53253500000001,32.800686],[-83.53243590000001,32.800563100000005],[-83.5322551,32.800361200000005],[-83.53205600000001,32.800173],[-83.5318642,32.8000063],[-83.53165200000001,32.799867],[-83.53118,32.799585],[-83.53063900000001,32.799283],[-83.5296771,32.7987503],[-83.528807,32.798285],[-83.527859,32.79775],[-83.527676,32.7976424],[-83.5274807,32.7975143],[-83.5272049,32.797299200000005],[-83.527055,32.797137],[-83.5268824,32.7969117],[-83.5265308,32.796419900000004],[-83.5263278,32.7961813],[-83.5259199,32.795728700000005],[-83.52533000000001,32.795113],[-83.52471510000001,32.7944983],[-83.52439430000001,32.7941925],[-83.5240491,32.793883300000005],[-83.523407,32.793332],[-83.523098,32.793073],[-83.522772,32.792813],[-83.5226026,32.792706200000005],[-83.522417,32.79262],[-83.52218900000001,32.792535],[-83.5214297,32.7922846],[-83.5198874,32.7917925],[-83.51949880000001,32.7916635],[-83.51919550000001,32.7915413],[-83.5188517,32.7913796],[-83.518421,32.7911422],[-83.5179102,32.790849],[-83.5173297,32.7905113],[-83.5167117,32.7901412],[-83.51614740000001,32.7898056],[-83.51576630000001,32.7895892],[-83.51548840000001,32.789427100000005],[-83.5152235,32.7892555],[-83.514987,32.789080500000004],[-83.514576,32.788754600000004],[-83.5144171,32.788597800000005],[-83.51386760000001,32.7880417],[-83.513458,32.7876165],[-83.5133447,32.7874737],[-83.5132476,32.7873308],[-83.51309400000001,32.7870417],[-83.5130147,32.7868566],[-83.51276270000001,32.7861143],[-83.5126687,32.7858225],[-83.51259490000001,32.7855444],[-83.5125484,32.7853105],[-83.5125058,32.7845072],[-83.5124851,32.7840331],[-83.5124803,32.783689],[-83.51248770000001,32.783464800000004],[-83.51250730000001,32.783261100000004],[-83.5125684,32.782935800000004],[-83.5127271,32.782302900000005],[-83.51278020000001,32.7820522],[-83.51288790000001,32.7811789],[-83.5129869,32.7800929],[-83.5130161,32.7796642],[-83.5130414,32.779480500000005],[-83.51314190000001,32.7790831],[-83.5134263,32.7780003],[-83.51347720000001,32.777719000000005],[-83.5135205,32.7774224],[-83.51356120000001,32.7770287],[-83.5135362,32.7768193],[-83.51345020000001,32.77662],[-83.51312940000001,32.7761255],[-83.51286370000001,32.7757328],[-83.51273110000001,32.7755616],[-83.51252790000001,32.775355000000005],[-83.51234500000001,32.775203000000005],[-83.5120093,32.774971300000004],[-83.51173730000001,32.774829000000004],[-83.51146530000001,32.7746969],[-83.51107040000001,32.7745158],[-83.5106999,32.774362],[-83.5103323,32.7742505],[-83.50998510000001,32.774176600000004],[-83.5086484,32.773890200000004],[-83.5083831,32.7738116],[-83.50814790000001,32.7737266],[-83.5078761,32.773597200000005],[-83.5074281,32.7733487],[-83.5068823,32.7729979],[-83.5059519,32.772358000000004],[-83.50547560000001,32.7720338],[-83.5050277,32.771713000000005],[-83.5047667,32.7715216],[-83.5044228,32.771264],[-83.50412180000001,32.7710461],[-83.5038371,32.7708315],[-83.50352120000001,32.7705852],[-83.50324180000001,32.7703526],[-83.50285140000001,32.7700297],[-83.50263670000001,32.7698544],[-83.50241720000001,32.7696285],[-83.5022277,32.7693926],[-83.5021042,32.7692245],[-83.50197920000001,32.7690641],[-83.501852,32.768930600000004],[-83.5017205,32.768812100000005],[-83.5015262,32.7686542],[-83.50128860000001,32.7684878],[-83.5011178,32.768373600000004],[-83.5004052,32.767865],[-83.4996811,32.767289000000005],[-83.4987298,32.7665001],[-83.4982059,32.7660563],[-83.4977118,32.7656342],[-83.4963697,32.764499300000004],[-83.4952141,32.7635085],[-83.494532,32.762934],[-83.4941677,32.762678],[-83.4937223,32.7623966],[-83.49341460000001,32.762206],[-83.493036,32.761963],[-83.4928953,32.7618695],[-83.492396,32.761585000000004],[-83.491462,32.761015],[-83.49084260000001,32.7607159],[-83.49027670000001,32.7604934],[-83.4897983,32.760347800000005],[-83.4894493,32.7602648],[-83.4890606,32.7602203],[-83.48875260000001,32.7602478],[-83.4884947,32.7603359],[-83.488127,32.7605331],[-83.48788920000001,32.7607141],[-83.4867217,32.7617501],[-83.48539860000001,32.762867400000005],[-83.4843567,32.763809200000004],[-83.48280670000001,32.7651403],[-83.48129870000001,32.7663579],[-83.4811293,32.766499100000004]]},"id":"8544c0bbfffffff-139db5a94ebcb5c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0bb50d9191-1397f7a4fc4365e3","8f44c0bb5099318-13f7fd5ef4c20246"]},"geometry":{"type":"LineString","coordinates":[[-83.5344305,32.7466817],[-83.53366530000001,32.7460076],[-83.532707,32.745117],[-83.5320849,32.7445514]]},"id":"8744c0bb5ffffff-17fffa846e97e753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.51930750000001,32.733820200000004]},"id":"8f44c0bb42a28de-13bdbc90d1ae7c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0bb5099318-13f7fd5ef4c20246","8f44c0bb42a28de-13bdbc90d1ae7c09"]},"geometry":{"type":"LineString","coordinates":[[-83.5320849,32.7445514],[-83.53146890000001,32.743993800000005],[-83.52959890000001,32.742396400000004],[-83.52861770000001,32.7415411],[-83.5277556,32.740807700000005],[-83.5268465,32.7400393],[-83.525996,32.739324],[-83.5256141,32.739006],[-83.5254512,32.7388703],[-83.52485630000001,32.738375500000004],[-83.5244974,32.7380815],[-83.5237285,32.7374279],[-83.52320470000001,32.7370011],[-83.5223687,32.736295000000005],[-83.5206205,32.7348438],[-83.51965,32.7340506],[-83.51945900000001,32.733903000000005],[-83.51930750000001,32.733820200000004]]},"id":"8644c0bb7ffffff-17bf8cde9abc7271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.499831,32.637295]},"id":"8f44c0856741b99-179d6c1dabfc1468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0856741b99-179d6c1dabfc1468","8f44c0ba62a949e-17f7b5e24c76ad26"]},"geometry":{"type":"LineString","coordinates":[[-83.499831,32.637295],[-83.5001761,32.6378913],[-83.500934,32.639346],[-83.50229300000001,32.641912000000005],[-83.50262000000001,32.642540000000004],[-83.50371,32.644546000000005],[-83.50429000000001,32.645661000000004],[-83.5048,32.646623000000005],[-83.50538200000001,32.647767],[-83.50577840000001,32.6483598],[-83.5060014,32.6486997],[-83.506084,32.648813700000005],[-83.5065508,32.6494517],[-83.5067413,32.6496835],[-83.5071963,32.6502373],[-83.5079144,32.6510194],[-83.5117934,32.6550712],[-83.512763,32.6560866],[-83.51598800000001,32.659485000000004],[-83.518546,32.662196],[-83.51929200000001,32.662977000000005],[-83.52100200000001,32.664858],[-83.52119300000001,32.665122000000004],[-83.521375,32.665386000000005],[-83.521558,32.665664],[-83.521944,32.666340000000005],[-83.52213,32.666745],[-83.52230800000001,32.667164],[-83.522508,32.667738],[-83.52261700000001,32.668088000000004],[-83.52275800000001,32.668662000000005],[-83.52280800000001,32.668957],[-83.522975,32.67013],[-83.523066,32.67072],[-83.52313500000001,32.671092],[-83.523307,32.672456000000004],[-83.5238547,32.676386900000004],[-83.5239075,32.6767611],[-83.52396710000001,32.6771472],[-83.52428,32.678339],[-83.52444,32.678681000000005],[-83.524572,32.678946],[-83.524775,32.679337000000004],[-83.524957,32.679601000000005],[-83.525113,32.679816],[-83.525424,32.680225],[-83.525692,32.680544000000005],[-83.526052,32.680917],[-83.526718,32.681517],[-83.52782,32.682488],[-83.52826400000001,32.682859],[-83.529691,32.68412],[-83.53060400000001,32.684911],[-83.532595,32.686653],[-83.534149,32.688003],[-83.534805,32.688539],[-83.53489300000001,32.688615],[-83.535139,32.688828],[-83.535421,32.689111000000004],[-83.535679,32.689381000000004],[-83.53599700000001,32.689734],[-83.536646,32.690573],[-83.5366917,32.6906386],[-83.53693200000001,32.690983],[-83.53718500000001,32.691386],[-83.537361,32.691714000000005],[-83.537687,32.692341],[-83.53784900000001,32.692754],[-83.538075,32.693376],[-83.53833300000001,32.694351000000005],[-83.538762,32.696244],[-83.538821,32.696595],[-83.53932300000001,32.699015],[-83.53943600000001,32.699464],[-83.53986,32.700899],[-83.540698,32.702841],[-83.541291,32.704055000000004],[-83.54146700000001,32.704382],[-83.541677,32.704751],[-83.54189600000001,32.705106],[-83.54213100000001,32.705461],[-83.542426,32.705898000000005],[-83.542816,32.706419000000004],[-83.543256,32.707051],[-83.544571,32.708940000000005],[-83.54471000000001,32.709149000000004],[-83.5455306,32.710325600000004],[-83.546796,32.712171000000005],[-83.547593,32.713254],[-83.54817,32.714002],[-83.54862800000001,32.7145689],[-83.5488845,32.7148723],[-83.5499049,32.716003900000004],[-83.5501875,32.7162966],[-83.55034160000001,32.716453800000004],[-83.5543227,32.7204883],[-83.555242,32.721425],[-83.555999,32.722226],[-83.55682300000001,32.723083],[-83.55775200000001,32.724093],[-83.55823500000001,32.724653],[-83.55841000000001,32.724876],[-83.559628,32.726442],[-83.56072800000001,32.727899],[-83.560828,32.728026],[-83.56124700000001,32.72864],[-83.561653,32.729335],[-83.561896,32.72979],[-83.562161,32.73037],[-83.56242800000001,32.731037],[-83.562601,32.731586],[-83.56282300000001,32.732457000000004],[-83.56292400000001,32.733057],[-83.56301,32.733758],[-83.563113,32.734703],[-83.563125,32.734869],[-83.563159,32.735769000000005],[-83.563129,32.736377000000005],[-83.563134,32.736562],[-83.563114,32.736883],[-83.563074,32.737279],[-83.563055,32.737619],[-83.56299700000001,32.738018000000004],[-83.5627175,32.739413],[-83.56264060000001,32.7397968],[-83.5624969,32.740616200000005],[-83.56231100000001,32.741338],[-83.56226000000001,32.741617000000005],[-83.56198300000001,32.743026],[-83.561661,32.744418],[-83.561366,32.7460152]]},"id":"8344c0fffffffff-1397f7dc647b3a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6276969,32.8487598]},"id":"8f44c0a30db0641-13dff3f178b2df38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30db0641-13dff3f178b2df38","8f44c0a30d86b04-139792bed49b39dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6276969,32.8487598],[-83.62818750000001,32.8492808]]},"id":"8944c0a30dbffff-13ffb3582d15dce3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233876,32.8432801]},"id":"8f44c0a36b9b985-17ff1e76c64792c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6237938,32.842791500000004]},"id":"8f44c0a36b9dcaa-13bfbd78ef2351ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"primary","surface":"paved","flags":["isBridge"],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b9b985-17ff1e76c64792c2","8f44c0a36b9dcaa-13bfbd78ef2351ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6233876,32.8432801],[-83.6237938,32.842791500000004]]},"id":"8a44c0a36b9ffff-17d77df7d0d9a835"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63174860000001,32.844172]},"id":"8f44c0a36b6938e-17978a0d29853eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6ab65-17b75b7ff0ae7aa2","8f44c0a36b6938e-17978a0d29853eff"]},"geometry":{"type":"LineString","coordinates":[[-83.6311553,32.8438101],[-83.63174860000001,32.844172]]},"id":"8a44c0a36b6ffff-17b77ac68d0eb069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63188380000001,32.844254500000005]},"id":"8f44c0a36b6926d-17df19b8a602de30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6926d-17df19b8a602de30","8f44c0a36b6938e-17978a0d29853eff"]},"geometry":{"type":"LineString","coordinates":[[-83.63174860000001,32.844172],[-83.63188380000001,32.844254500000005]]},"id":"8c44c0a36b693ff-17b759e2e3c89d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6320568,32.844361]},"id":"8f44c0a346b4033-179fa94c84b8d2ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6926d-17df19b8a602de30","8f44c0a346b4033-179fa94c84b8d2ae"]},"geometry":{"type":"LineString","coordinates":[[-83.63188380000001,32.844254500000005],[-83.6320568,32.844361]]},"id":"8b44c0a346b4fff-17ff5982940f3cc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346b4adc-17df38e01e5fc6ce","8f44c0a346b4033-179fa94c84b8d2ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6320568,32.844361],[-83.6322303,32.8444643]]},"id":"8b44c0a346b4fff-17bfe91656037c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63259740000001,32.8446829]},"id":"8f44c0a346b5ba9-13d7d7faa3f613f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346b5ba9-13d7d7faa3f613f1","8f44c0a346b4adc-17df38e01e5fc6ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6322303,32.8444643],[-83.63259740000001,32.8446829]]},"id":"8a44c0a346b7fff-1397886d5c725272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346b5ba9-13d7d7faa3f613f1","8f44c0a346b5a65-13ff27bdac34ab54"]},"geometry":{"type":"LineString","coordinates":[[-83.63259740000001,32.8446829],[-83.632695,32.844741]]},"id":"8c44c0a346b5bff-13ff07dc2128ecfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6330463,32.8449722]},"id":"8f44c0a346a04c2-139fa6e21c3d5e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346a04c2-139fa6e21c3d5e00","8f44c0a346b5a65-13ff27bdac34ab54"]},"geometry":{"type":"LineString","coordinates":[[-83.632695,32.844741],[-83.6330463,32.8449722]]},"id":"8a44c0a346a7fff-13d7674fe61f2009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346a04c2-139fa6e21c3d5e00","8f44c0a346a3924-13ffc6500c1d53a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6330463,32.8449722],[-83.63328,32.845126]]},"id":"8b44c0a346a0fff-13bfb6991a77fe32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63403000000001,32.845660800000005]},"id":"8f44c0a346ac3a0-13bf047b4de46277"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346a3924-13ffc6500c1d53a5","8f44c0a346ac3a0-13bf047b4de46277"]},"geometry":{"type":"LineString","coordinates":[[-83.63328,32.845126],[-83.63403000000001,32.845660800000005]]},"id":"8944c0a346bffff-1397e565ae947c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63435000000001,32.845889]},"id":"8f44c0a346ad023-13dfa3b34b7ea8d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a346ad023-13dfa3b34b7ea8d7","8f44c0a346ac3a0-13bf047b4de46277"]},"geometry":{"type":"LineString","coordinates":[[-83.63403000000001,32.845660800000005],[-83.63435000000001,32.845889]]},"id":"8a44c0a346affff-13975417422c207a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3461ad8c-13b7c326a5f6f03a","8f44c0a346ad023-13dfa3b34b7ea8d7"]},"geometry":{"type":"LineString","coordinates":[[-83.63435000000001,32.845889],[-83.634575,32.846038]]},"id":"8944c0a3463ffff-13f7336cfd87b6bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3461ad8c-13b7c326a5f6f03a","8f44c0a346e4d0a-17ff2016eb981045"]},"geometry":{"type":"LineString","coordinates":[[-83.634575,32.846038],[-83.635059,32.846276],[-83.635427,32.846427000000006],[-83.635829,32.846581]]},"id":"8944c0a3463ffff-17d7c1a2688d317f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34656c9d-17b6fe44a4850da4","8f44c0a346e4d0a-17ff2016eb981045"]},"geometry":{"type":"LineString","coordinates":[[-83.635829,32.846581],[-83.63638,32.846795],[-83.63657500000001,32.846874]]},"id":"8844c0a347fffff-17d6ff2d8381b9b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34656c9d-17b6fe44a4850da4","8f44c0a34655471-179efc2e4f46a3c6"]},"geometry":{"type":"LineString","coordinates":[[-83.63657500000001,32.846874],[-83.636936,32.847017],[-83.63743000000001,32.847229]]},"id":"8a44c0a34657fff-179ffd38b0886a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36370313-13f77bd8e9cfd8e6","8f44c0a3637516c-13d71aa142213a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.624958,32.849184],[-83.624694,32.849322],[-83.6244594,32.8494134]]},"id":"8a44c0a36377fff-139ffb3b2329f0dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36370313-13f77bd8e9cfd8e6","8f44c0a36372354-17b75ce4018449fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6244594,32.8494134],[-83.624368,32.849449],[-83.6242012,32.849503500000004],[-83.624032,32.849546100000005]]},"id":"8a44c0a36377fff-17975c5d607a6e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36372231-17bf3d02e031e759","8f44c0a36372354-17b75ce4018449fa"]},"geometry":{"type":"LineString","coordinates":[[-83.624032,32.849546100000005],[-83.6239826,32.8495586]]},"id":"8c44c0a363723ff-17bf5cf370c0c8ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63074060000001,32.842819]},"id":"8f44c0a36b6066d-13dfec8329bc269d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6066d-13dfec8329bc269d","8f44c0a36b60b8c-13df2c1b52ce0ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.63074060000001,32.842819],[-83.63090670000001,32.8426226]]},"id":"8b44c0a36b60fff-139f8c4f3b523154"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6311513,32.8423375]},"id":"8f44c0a36b65d18-139ffb82780efc1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b65d18-139ffb82780efc1b","8f44c0a36b60b8c-13df2c1b52ce0ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.63090670000001,32.8426226],[-83.6311513,32.8423375]]},"id":"8a44c0a36b67fff-13f71bceeb51a5c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b65d18-139ffb82780efc1b","8f44c0a344cb8d5-13d7cad94beeece1"]},"geometry":{"type":"LineString","coordinates":[[-83.6311513,32.8423375],[-83.631422,32.842022]]},"id":"8744c0a34ffffff-13bf6b2de55a89f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c7638ad-13dfd3aa4940ffff","8f44c0b8c745931-139ff3d885daa528"]},"geometry":{"type":"LineString","coordinates":[[-83.575382,32.83811],[-83.57531990000001,32.8383927],[-83.575308,32.838447]]},"id":"8b44c0b8c763fff-13b793c1669ed21c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c7458e2-13ff93e968a27fdb","8f44c0b8c745931-139ff3d885daa528"]},"geometry":{"type":"LineString","coordinates":[[-83.575308,32.838447],[-83.575281,32.838572]]},"id":"8c44c0b8c7459ff-13d7f3e0fbfdbf89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81b00031-17b7e36b6638156c","8f44c0b81b0e41a-139fe358ad0da3af"]},"geometry":{"type":"LineString","coordinates":[[-83.56892900000001,32.814498],[-83.568959,32.815274]]},"id":"8944c0b81b3ffff-1797e3620f51abaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81a2482a-13d7e31fc815738a","8f44c0b81b0e41a-139fe358ad0da3af"]},"geometry":{"type":"LineString","coordinates":[[-83.568959,32.815274],[-83.568984,32.815652],[-83.56901400000001,32.81586],[-83.56905,32.816003]]},"id":"8a44c0b81b0ffff-13ffe3445380b43b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594539,32.771921500000005]},"id":"8f44c0b11100616-17b6f669513004cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11100616-17b6f669513004cc","8f44c0b11103d59-1797d66d0fd3de25"]},"geometry":{"type":"LineString","coordinates":[[-83.65944800000001,32.772076500000004],[-83.6594539,32.771921500000005]]},"id":"8a44c0b11107fff-17f7e66b2f1ef7c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6595013,32.7716669]},"id":"8f44c0b11100c19-1797d64bbfaad0f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11100616-17b6f669513004cc","8f44c0b11100c19-1797d64bbfaad0f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6594539,32.771921500000005],[-83.65945500000001,32.771892],[-83.659468,32.771845],[-83.6595013,32.7716669]]},"id":"8b44c0b11100fff-17f7f65af49325a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6595688,32.7712323]},"id":"8f44c0b11104c8e-1796f6218322d4e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11104c8e-1796f6218322d4e3","8f44c0b11100c19-1797d64bbfaad0f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6595013,32.7716669],[-83.659519,32.771572],[-83.6595688,32.7712323]]},"id":"8a44c0b11107fff-179ee635b13bc57e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65963090000001,32.770809400000005]},"id":"8f44c0b1113526a-13ffe5fab0befaf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1113526a-13ffe5fab0befaf4","8f44c0b11104c8e-1796f6218322d4e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6595688,32.7712323],[-83.65963090000001,32.770809400000005]]},"id":"8944c0b1113ffff-1796d60e1fbe2b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62185600000001,32.837169]},"id":"8f44c0a3681cc73-17ffa2340de2388f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3681a18e-1797e3a7eee9a7df","8f44c0a3681cc73-17ffa2340de2388f"]},"geometry":{"type":"LineString","coordinates":[[-83.621261,32.837795],[-83.62144,32.837632],[-83.62185600000001,32.837169]]},"id":"8a44c0a3681ffff-17d732ea10a9e811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3599d44e-1797e3642013c82b","8f44c0a3599db5b-13fec27c67b1d06b"]},"geometry":{"type":"LineString","coordinates":[[-83.6610618,32.8461696],[-83.660691,32.846185000000006]]},"id":"8b44c0a3599dfff-13fed2f04fc3e110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3599d44e-1797e3642013c82b","8f44c0a35d69d64-17b6c690ae2051cb"]},"geometry":{"type":"LineString","coordinates":[[-83.660691,32.846185000000006],[-83.660137,32.846213],[-83.659391,32.84626]]},"id":"8844c0a359fffff-1797d4fa70c62aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d6875e-17bec79909c57901","8f44c0a35d69d64-17b6c690ae2051cb"]},"geometry":{"type":"LineString","coordinates":[[-83.659391,32.84626],[-83.658968,32.846272]]},"id":"8a44c0a35d6ffff-17b6c714de7580d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d6875e-17bec79909c57901","8f44c0a35d41ba4-17d6c96a0f31b8f0"]},"geometry":{"type":"LineString","coordinates":[[-83.658968,32.846272],[-83.65863200000001,32.846286],[-83.658224,32.846286]]},"id":"8944c0a35d7ffff-17bec8817f7e19a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d41ba4-17d6c96a0f31b8f0","8f44c0a35d41cdd-17beca0fa44e6d88"]},"geometry":{"type":"LineString","coordinates":[[-83.658224,32.846286],[-83.657959,32.846272]]},"id":"8b44c0a35d41fff-17bee9bcd3a4ee99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65731600000001,32.846213]},"id":"8f44c0a35d42315-1797eba183c40e3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d42315-1797eba183c40e3b","8f44c0a35d41cdd-17beca0fa44e6d88"]},"geometry":{"type":"LineString","coordinates":[[-83.657959,32.846272],[-83.657567,32.846246],[-83.65731600000001,32.846213]]},"id":"8a44c0a35d47fff-17beead8e400e76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61395850000001,32.8480828]},"id":"8f44c0a3670c768-13b7f57bfab0fc2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3670c768-13b7f57bfab0fc2c","8f44c0a36718901-13b7b8aa1486f18e"]},"geometry":{"type":"LineString","coordinates":[[-83.61395850000001,32.8480828],[-83.61277670000001,32.848082600000005],[-83.61265590000001,32.848082600000005]]},"id":"8944c0a3673ffff-13b7b713098fe439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61918390000001,32.8401537]},"id":"8f44c0a3612ec01-17df38ba18201188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3612ec01-17df38ba18201188","8f44c0a36125a0e-139f777b27b3eec1"]},"geometry":{"type":"LineString","coordinates":[[-83.61969420000001,32.8394709],[-83.61918390000001,32.8401537]]},"id":"8944c0a3613ffff-17f7b81a9362256a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3610e48d-139faaddc037f78d","8f44c0a3612ec01-17df38ba18201188"]},"geometry":{"type":"LineString","coordinates":[[-83.61918390000001,32.8401537],[-83.618792,32.8407162],[-83.61830760000001,32.841292]]},"id":"8944c0a3613ffff-17b729c3d3a38b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0c42d2-179ffc2ebeae5283","8f44c0b8e0c5459-1797dbbdac10390b"]},"geometry":{"type":"LineString","coordinates":[[-83.5524134,32.8408597],[-83.5522325,32.840697500000005]]},"id":"8a44c0b8e0c7fff-17dfebf63fdf2f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0f175d-17b7ed3b277a9128","8f44c0b8e0c42d2-179ffc2ebeae5283"]},"geometry":{"type":"LineString","coordinates":[[-83.5522325,32.840697500000005],[-83.552103,32.840584],[-83.551803,32.840299]]},"id":"8944c0b8e0fffff-17b7dcb5fece5fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0f175d-17b7ed3b277a9128","8f44c0b8e0f041c-17ffce8039aeb30a"]},"geometry":{"type":"LineString","coordinates":[[-83.551803,32.840299],[-83.5512829,32.839820800000005]]},"id":"8a44c0b8e0f7fff-179ffdddbd6043ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54933000000001,32.838481]},"id":"8f44c0b8e086272-13b7f344c2258df9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0f041c-17ffce8039aeb30a","8f44c0b8e086272-13b7f344c2258df9"]},"geometry":{"type":"LineString","coordinates":[[-83.5512829,32.839820800000005],[-83.551034,32.839592],[-83.55069400000001,32.839278],[-83.550551,32.839157],[-83.55041100000001,32.839049],[-83.55021400000001,32.838921],[-83.54997,32.838783],[-83.54933000000001,32.838481]]},"id":"8844c0b8e1fffff-13bff0c4fc829817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54663000000001,32.837352]},"id":"8f44c0b8e55d694-17f7d9dc444eff78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e55d694-17f7d9dc444eff78","8f44c0b8e086272-13b7f344c2258df9"]},"geometry":{"type":"LineString","coordinates":[[-83.54933000000001,32.838481],[-83.548957,32.838306],[-83.54854800000001,32.838127],[-83.547966,32.837885],[-83.547448,32.837668],[-83.547021,32.837497],[-83.54663000000001,32.837352]]},"id":"8744c0b8effffff-17d7d68c0f31dc4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e55d694-17f7d9dc444eff78","8f44c0b8e436362-139fe2ebaa01b359"]},"geometry":{"type":"LineString","coordinates":[[-83.54663000000001,32.837352],[-83.54603900000001,32.837145],[-83.54411300000001,32.836481],[-83.543863,32.836380000000005],[-83.54355600000001,32.83623],[-83.543287,32.836064],[-83.54291900000001,32.835787]]},"id":"8844c0b8e5fffff-17d7de801764f243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e5b56db-17d7e7b4a74bb253","8f44c0b8e436362-139fe2ebaa01b359"]},"geometry":{"type":"LineString","coordinates":[[-83.54291900000001,32.835787],[-83.54128100000001,32.834138],[-83.541134,32.83399],[-83.540959,32.83383]]},"id":"8844c0b8e5fffff-13bff54de7675c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e5b56db-17d7e7b4a74bb253","8f44c0b832eb94d-13b7e9cecf5434fe"]},"geometry":{"type":"LineString","coordinates":[[-83.540959,32.83383],[-83.54075800000001,32.833607],[-83.54024600000001,32.833087],[-83.540098,32.832926]]},"id":"8544c0bbfffffff-17bff8c0d56f7f09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b832a360e-179ff2158a75e306","8f44c0b832eb94d-13b7e9cecf5434fe"]},"geometry":{"type":"LineString","coordinates":[[-83.540098,32.832926],[-83.536708,32.829838]]},"id":"8844c0b833fffff-17dfedf22458ca74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b832b1955-13dff382845e3498","8f44c0b832a360e-179ff2158a75e306"]},"geometry":{"type":"LineString","coordinates":[[-83.536708,32.829838],[-83.536124,32.829309]]},"id":"8944c0b832bffff-13f7f2cc0e5615bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b832b1955-13dff382845e3498","8f44c0b8376878c-1397f69063d80788"]},"geometry":{"type":"LineString","coordinates":[[-83.536124,32.829309],[-83.534873,32.828162]]},"id":"8744c0b83ffffff-13f7f50979e6294b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8372340c-139ffe84159746b9","8f44c0b8376878c-1397f69063d80788"]},"geometry":{"type":"LineString","coordinates":[[-83.534873,32.828162],[-83.53432600000001,32.827669],[-83.531816,32.825288],[-83.5316159,32.8251129]]},"id":"8844c0b837fffff-17dffa8b7fbe6612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8372358e-13f7fea4766072c5","8f44c0b8372340c-139ffe84159746b9"]},"geometry":{"type":"LineString","coordinates":[[-83.5316159,32.8251129],[-83.53156410000001,32.825067600000004]]},"id":"8c44c0b837235ff-1397fe9441e637ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8372358e-13f7fea4766072c5","8f44c0b837344ed-17d9c11d0a4dfa16"]},"geometry":{"type":"LineString","coordinates":[[-83.53156410000001,32.825067600000004],[-83.5313603,32.8248892],[-83.530552,32.824182]]},"id":"8944c0b8373ffff-17dfffe0b70861ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6249657,32.8482074]},"id":"8f44c0a36ad8caa-13f7ba9c749385ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36adad24-13ff9b914d0716e4","8f44c0a36ad8caa-13f7ba9c749385ab"]},"geometry":{"type":"LineString","coordinates":[[-83.62457400000001,32.848204],[-83.6249657,32.8482074]]},"id":"8a44c0a36adffff-13f79b16e72451dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62543670000001,32.848211400000004]},"id":"8f44c0a36add553-13f739761292d541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36add553-13f739761292d541","8f44c0a36ad8caa-13f7ba9c749385ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6249657,32.8482074],[-83.62543670000001,32.848211400000004]]},"id":"8a44c0a36adffff-13f7fa09460ce1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36addb93-13f798d606bde907","8f44c0a36add553-13f739761292d541"]},"geometry":{"type":"LineString","coordinates":[[-83.62543670000001,32.848211400000004],[-83.62569280000001,32.8482136]]},"id":"8b44c0a36addfff-13f7d9260a160609"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36addb93-13f798d606bde907","8f44c0a36addb0a-13f718935277d2ab"]},"geometry":{"type":"LineString","coordinates":[[-83.62569280000001,32.8482136],[-83.6257995,32.848214500000005]]},"id":"8c44c0a36addbff-13f7d8b4b5e71dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328f6a53-17d7f2fec65c3cff","8f44c0a328f2044-17bff3ae2e669985"]},"geometry":{"type":"LineString","coordinates":[[-83.61497800000001,32.859603],[-83.61469740000001,32.8600061]]},"id":"8a44c0a328f7fff-17d7f35674399e09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328f23b4-17d7b3bea087a65b","8f44c0a328f2044-17bff3ae2e669985"]},"geometry":{"type":"LineString","coordinates":[[-83.61469740000001,32.8600061],[-83.614671,32.860044]]},"id":"8c44c0a328f21ff-17dfb3b6601f6651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328f23b4-17d7b3bea087a65b","8f44c0a328f276b-17ffb3d649114a3b"]},"geometry":{"type":"LineString","coordinates":[[-83.614671,32.860044],[-83.6146332,32.860101900000004]]},"id":"8b44c0a328f2fff-17ffb3ca7f5f1051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6144842,32.8603297]},"id":"8f44c0a328d41a6-179f343363d310bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328d41a6-179f343363d310bb","8f44c0a328f276b-17ffb3d649114a3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6146332,32.860101900000004],[-83.6144842,32.8603297]]},"id":"8944c0a328fffff-17d7f404dd21c6b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328d41a6-179f343363d310bb","8f44c0a328d4695-1797b48e064881ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6144842,32.8603297],[-83.6143392,32.8605515]]},"id":"8b44c0a328d4fff-17df7460bfc107af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36049a1e-17b76415395a09b5","8f44c0a363106d1-13ff644339171c80"]},"geometry":{"type":"LineString","coordinates":[[-83.6210125,32.848202],[-83.62101820000001,32.84801],[-83.62102800000001,32.847785],[-83.6210542,32.8474784],[-83.6210861,32.8472644]]},"id":"8944c0a3633ffff-17dfa4332e4ff631"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.622495,32.844426]},"id":"8f44c0a36ab3548-17b760a4a90d403b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ab3548-17b760a4a90d403b","8f44c0a36049a1e-17b76415395a09b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6210861,32.8472644],[-83.621111,32.847113],[-83.621195,32.846806],[-83.62132600000001,32.846386],[-83.621414,32.846148],[-83.62151700000001,32.845914],[-83.62163100000001,32.845678],[-83.621712,32.845526],[-83.621879,32.845243],[-83.62204100000001,32.845003000000005],[-83.62225000000001,32.844718],[-83.622495,32.844426]]},"id":"8744c0a36ffffff-1397b2ad14f0b624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ab3548-17b760a4a90d403b","8f44c0a36ab5498-17f79f938e90af38"]},"geometry":{"type":"LineString","coordinates":[[-83.622495,32.844426],[-83.622932,32.843916]]},"id":"8a44c0a36ab7fff-1797e01c1d18e3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ab5498-17f79f938e90af38","8f44c0a36b9b985-17ff1e76c64792c2"]},"geometry":{"type":"LineString","coordinates":[[-83.622932,32.843916],[-83.623171,32.843643],[-83.6233876,32.8432801]]},"id":"8844c0a36bfffff-17b75efc38cb95ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65430810000001,32.814005200000004]},"id":"8f44c0b1a859a76-17f7d2f973739253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a859a76-17f7d2f973739253","8f44c0b1a85d200-17bfd30131b9cc74"]},"geometry":{"type":"LineString","coordinates":[[-83.6542957,32.8136953],[-83.65430810000001,32.814005200000004]]},"id":"8a44c0b1a85ffff-1796f2fd59a951df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a859a76-17f7d2f973739253","8f44c0b1aba4d1b-17b7d2da2506beb8"]},"geometry":{"type":"LineString","coordinates":[[-83.65430810000001,32.814005200000004],[-83.6543582,32.8141084]]},"id":"8944c0b1a87ffff-1797d2e9c35d41a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65419370000001,32.7435734]},"id":"8f44c0b14370359-13fff340f262180d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6524169,32.7435892]},"id":"8f44c0b1430bc92-1397d7977eaf1357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14370359-13fff340f262180d","8f44c0b1430bc92-1397d7977eaf1357"]},"geometry":{"type":"LineString","coordinates":[[-83.65419370000001,32.7435734],[-83.6524169,32.7435892]]},"id":"8844c0b143fffff-1396d56c3d948f8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6486847,32.7415857]},"id":"8f44c0b143b5993-17b7f0b411f48941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1430bc92-1397d7977eaf1357","8f44c0b143b5993-17b7f0b411f48941"]},"geometry":{"type":"LineString","coordinates":[[-83.6524169,32.7435892],[-83.65200370000001,32.7435889],[-83.6515203,32.7435738],[-83.6511524,32.743510400000005],[-83.65076900000001,32.7433764],[-83.65059790000001,32.7433051],[-83.65031970000001,32.7431049],[-83.6498095,32.7426113],[-83.648942,32.7417929],[-83.6486847,32.7415857]]},"id":"8744c0b14ffffff-17dedc79cd488658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c50866c-179fb04a2daffb6f","8f44c0b1cce3861-1397b79c986be4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.668515,32.7882424],[-83.6686389,32.788084600000005],[-83.66892,32.787785400000004],[-83.6691715,32.787548],[-83.6693865,32.7873579],[-83.6696172,32.7871741],[-83.66983330000001,32.787018100000004],[-83.6700416,32.7868815],[-83.67035650000001,32.7866719],[-83.670506,32.786580400000005],[-83.6707303,32.7864333],[-83.6720695,32.785595300000004]]},"id":"8744c0b1cffffff-1397ac2220d433dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66642610000001,32.7917367]},"id":"8f44c0b1c4e640e-1797f563be78fde2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c4e640e-1797f563be78fde2","8f44c0b1eb72a5c-17feb9f652d3901a"]},"geometry":{"type":"LineString","coordinates":[[-83.66642610000001,32.7917367],[-83.66610870000001,32.792496400000005],[-83.6658919,32.7930158],[-83.6656925,32.7934606],[-83.6654553,32.7939074],[-83.66525940000001,32.7942391],[-83.6650123,32.7945967],[-83.6647174,32.794969800000004],[-83.6645531,32.7951554]]},"id":"8644c0b1fffffff-13f7b76c90e5233d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659577,32.811146]},"id":"8f44c0b18412b01-17f6c61c626e4e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18412b01-17f6c61c626e4e59","8f44c0b18412bb3-17f7e6536db8091e"]},"geometry":{"type":"LineString","coordinates":[[-83.65948900000001,32.811141],[-83.659577,32.811146]]},"id":"8c44c0b18412bff-17f6f637e233e9d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18412b01-17f6c61c626e4e59","8f44c0b18400a74-17b6e1ac2d6aa2cc"]},"geometry":{"type":"LineString","coordinates":[[-83.659577,32.811146],[-83.660255,32.811171],[-83.661395,32.811223000000005]]},"id":"8944c0b1843ffff-179fe3e4378ca144"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b184281aa-17bebf1873e8eebe","8f44c0b18400a74-17b6e1ac2d6aa2cc"]},"geometry":{"type":"LineString","coordinates":[[-83.661395,32.811223000000005],[-83.661697,32.811228],[-83.6624505,32.811261]]},"id":"8944c0b1843ffff-17b6f062408cb4c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662937,32.81127]},"id":"8f44c0b1842d0c3-17d7fde864ee414d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1842d0c3-17d7fde864ee414d","8f44c0b184281aa-17bebf1873e8eebe"]},"geometry":{"type":"LineString","coordinates":[[-83.6624505,32.811261],[-83.662632,32.811269],[-83.662937,32.81127]]},"id":"8a44c0b1842ffff-17d6fe807bf0bfd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab56916-13d6ca41ab9fd319","8f44c0b1ab7314e-13d6c7f08951a127"]},"geometry":{"type":"LineString","coordinates":[[-83.65787900000001,32.816592],[-83.658828,32.816592]]},"id":"8944c0b1ab7ffff-13d6c91917b96c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab44db1-13d7c66da0a68a8e","8f44c0b1ab7314e-13d6c7f08951a127"]},"geometry":{"type":"LineString","coordinates":[[-83.658828,32.816592],[-83.659447,32.816598]]},"id":"8944c0b1ab7ffff-13d7e72f1ce72f3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab6149c-13dee461ee952023","8f44c0b1ab44db1-13d7c66da0a68a8e"]},"geometry":{"type":"LineString","coordinates":[[-83.659447,32.816598],[-83.660285,32.816609]]},"id":"8944c0b1ab7ffff-13dff567c2e551f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab6149c-13dee461ee952023","8f44c0b1879231b-13d7c25940e03704"]},"geometry":{"type":"LineString","coordinates":[[-83.660285,32.816609],[-83.661118,32.816616]]},"id":"8744c0b18ffffff-13ded35d999f166c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b187918f1-13d7c052860d25eb","8f44c0b1879231b-13d7c25940e03704"]},"geometry":{"type":"LineString","coordinates":[[-83.661118,32.816616],[-83.66194800000001,32.816626]]},"id":"8a44c0b18797fff-13d6e155e060822c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66280300000001,32.816626]},"id":"8f44c0b18780745-13d7fe3c24579a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18780745-13d7fe3c24579a9e","8f44c0b187918f1-13d7c052860d25eb"]},"geometry":{"type":"LineString","coordinates":[[-83.66194800000001,32.816626],[-83.66280300000001,32.816626]]},"id":"8944c0b187bffff-13d7ff475ac18d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19599426-1397dec7a822327b","8f44c0b1959bc00-1397ffb70867b662"]},"geometry":{"type":"LineString","coordinates":[[-83.67568700000001,32.826150000000005],[-83.67530400000001,32.826147]]},"id":"8a44c0b1959ffff-1396df3f59dd26d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b9694c6-1397e2168a85c837","8f44c0b1959bc00-1397ffb70867b662"]},"geometry":{"type":"LineString","coordinates":[[-83.67530400000001,32.826147],[-83.674332,32.826115]]},"id":"8844c0b195fffff-139fe0e6c73d9cce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b941344-13f7e46a2a622aec","8f44c0b1b9694c6-1397e2168a85c837"]},"geometry":{"type":"LineString","coordinates":[[-83.674332,32.826115],[-83.67337900000001,32.826095]]},"id":"8944c0b1b97ffff-13ffa3405f6f84ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b943029-13ffa5e1202791f8","8f44c0b1b941344-13f7e46a2a622aec"]},"geometry":{"type":"LineString","coordinates":[[-83.67337900000001,32.826095],[-83.672779,32.826085]]},"id":"8944c0b1b97ffff-13f6e525a3b1f722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b943029-13ffa5e1202791f8","8f44c0b1b95c855-13fea6ce0c4cf7e9"]},"geometry":{"type":"LineString","coordinates":[[-83.672779,32.826085],[-83.67240000000001,32.826081]]},"id":"8944c0b1b97ffff-13ffe6579a1557c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b95c855-13fea6ce0c4cf7e9","8f44c0b1b95c898-13ffa714a2655f59"]},"geometry":{"type":"LineString","coordinates":[[-83.67240000000001,32.826081],[-83.67228700000001,32.826076]]},"id":"8c44c0b1b95c9ff-13ffb6f15aefae5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b82c599-13dfeaf16ea06928","8f44c0b1b95c898-13ffa714a2655f59"]},"geometry":{"type":"LineString","coordinates":[[-83.67228700000001,32.826076],[-83.670705,32.826031]]},"id":"8844c0b1b9fffff-13dff90309c6e23e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b82c599-13dfeaf16ea06928","8f44c0b1b82ed4a-13dfab8e4dd24bd4"]},"geometry":{"type":"LineString","coordinates":[[-83.670705,32.826031],[-83.670454,32.826028]]},"id":"8a44c0b1b82ffff-13defb3fda94a336"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67010900000001,32.826028]},"id":"8f44c0b1b82329e-13dfac65e558a596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b82329e-13dfac65e558a596","8f44c0b1b82ed4a-13dfab8e4dd24bd4"]},"geometry":{"type":"LineString","coordinates":[[-83.670454,32.826028],[-83.67010900000001,32.826028]]},"id":"8944c0b1b83ffff-13dfabfa1ef7f91f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b806b11-13d7ee45ee19fce0","8f44c0b1b82329e-13dfac65e558a596"]},"geometry":{"type":"LineString","coordinates":[[-83.67010900000001,32.826028],[-83.669341,32.826015000000005]]},"id":"8944c0b1b83ffff-13d7fd55e47ba4a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b806b11-13d7ee45ee19fce0","8f44c0b1b816af5-13b6f18acd49af7b"]},"geometry":{"type":"LineString","coordinates":[[-83.669341,32.826015000000005],[-83.668002,32.825994]]},"id":"8944c0b1b83ffff-13beffe855075469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8160c5-13bef1fa07f9297e","8f44c0b1b816af5-13b6f18acd49af7b"]},"geometry":{"type":"LineString","coordinates":[[-83.668002,32.825994],[-83.66782400000001,32.825998000000006]]},"id":"8b44c0b1b816fff-13b7b1c265761d4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8160c5-13bef1fa07f9297e","8f44c0b1b8a0971-13bef3e0e24df8f6"]},"geometry":{"type":"LineString","coordinates":[[-83.66782400000001,32.825998000000006],[-83.66715400000001,32.825985],[-83.667045,32.825982]]},"id":"8844c0b1b9fffff-13b6b2ed7c860cbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8a0971-13bef3e0e24df8f6","8f44c0b1b8a0d98-13bef4aac7e1270a"]},"geometry":{"type":"LineString","coordinates":[[-83.667045,32.825982],[-83.66672200000001,32.825975]]},"id":"8b44c0b1b8a0fff-13beb445dc805e04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8a0d98-13bef4aac7e1270a","8f44c0b1b8b5a8c-13bef6032d5db516"]},"geometry":{"type":"LineString","coordinates":[[-83.66672200000001,32.825975],[-83.666171,32.825975]]},"id":"8944c0b1b8bffff-13bef556f1693b95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8b0cda-13b6b7d4c02cbe32","8f44c0b1b8b5a8c-13bef6032d5db516"]},"geometry":{"type":"LineString","coordinates":[[-83.666171,32.825975],[-83.66542600000001,32.825968]]},"id":"8a44c0b1b8b7fff-13beb6ebfd8fea6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd4d616-139ef9e4e4a1d20d","8f44c0b1b8b0cda-13b6b7d4c02cbe32"]},"geometry":{"type":"LineString","coordinates":[[-83.66542600000001,32.825968],[-83.664581,32.82595]]},"id":"8744c0b1bffffff-13b6f8dcda68449a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd4d616-139ef9e4e4a1d20d","8f44c0b1bd4840b-1397fb29e7243f54"]},"geometry":{"type":"LineString","coordinates":[[-83.664581,32.82595],[-83.664061,32.825939000000005]]},"id":"8a44c0b1bd4ffff-1397fa876288fc92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631729,32.8258841]},"id":"8f44c0b1bd58a4c-13f7bd54f041e258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd58a4c-13f7bd54f041e258","8f44c0b1bd4840b-1397fb29e7243f54"]},"geometry":{"type":"LineString","coordinates":[[-83.664061,32.825939000000005],[-83.663829,32.825944],[-83.66366500000001,32.825933],[-83.663486,32.825918],[-83.66334,32.825905],[-83.6631729,32.8258841]]},"id":"8944c0b1bd7ffff-139efc3fd6ccea76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627102,32.8258375]},"id":"8f44c0b1bd584f1-13d6fe7621b99e8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd58a4c-13f7bd54f041e258","8f44c0b1bd584f1-13d6fe7621b99e8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6631729,32.8258841],[-83.66293300000001,32.825854],[-83.6627102,32.8258375]]},"id":"8b44c0b1bd58fff-13f7bde56c76c717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4ac424-13b7f5d1023568c0","8f44c0b1b41138b-13b7d2f34e357116"]},"geometry":{"type":"LineString","coordinates":[[-83.65314400000001,32.832755],[-83.653799,32.832731],[-83.654318,32.832726]]},"id":"8844c0b1b5fffff-13bef4623b0d125b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b411351-13b7f2bba86d798e","8f44c0b1b41138b-13b7d2f34e357116"]},"geometry":{"type":"LineString","coordinates":[[-83.654318,32.832726],[-83.654407,32.832729]]},"id":"8c44c0b1b4113ff-13b6f2d77dadc20c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b411351-13b7f2bba86d798e","8f44c0b1b40352c-13b6f159e7b30563"]},"geometry":{"type":"LineString","coordinates":[[-83.654407,32.832729],[-83.654973,32.832721]]},"id":"8944c0b1b43ffff-13b7f20acd74853d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b40352c-13b6f159e7b30563","8f44c0b1b4038e3-139ef0c7ad893a31"]},"geometry":{"type":"LineString","coordinates":[[-83.654973,32.832721],[-83.655207,32.832715]]},"id":"8b44c0b1b403fff-13b6d110c6b065f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b42a380-1396ce970b81aeff","8f44c0b1b4038e3-139ef0c7ad893a31"]},"geometry":{"type":"LineString","coordinates":[[-83.655207,32.832715],[-83.656104,32.832698]]},"id":"8944c0b1b43ffff-139fdfaf52a3b7da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.656574,32.83269]},"id":"8f44c0b1b42828b-139fcd714708a860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b42828b-139fcd714708a860","8f44c0b1b42a380-1396ce970b81aeff"]},"geometry":{"type":"LineString","coordinates":[[-83.656104,32.832698],[-83.656574,32.83269]]},"id":"8a44c0b1b42ffff-1397ce0426670fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6570148,32.832683100000004]},"id":"8f44c0b1b429801-139efc5dc8ce8043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b42828b-139fcd714708a860","8f44c0b1b429801-139efc5dc8ce8043"]},"geometry":{"type":"LineString","coordinates":[[-83.656574,32.83269],[-83.6570148,32.832683100000004]]},"id":"8a44c0b1b42ffff-139fece78f1602b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b42994a-139ecc31e5306cbe","8f44c0b1b429801-139efc5dc8ce8043"]},"geometry":{"type":"LineString","coordinates":[[-83.6570148,32.832683100000004],[-83.65708500000001,32.832682000000005]]},"id":"8c44c0b1b4299ff-139eec47dcea80bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6583344,32.832683800000005]},"id":"8f44c0b1b55d66d-139fe9250e459950"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b42994a-139ecc31e5306cbe","8f44c0b1b55d66d-139fe9250e459950"]},"geometry":{"type":"LineString","coordinates":[[-83.65708500000001,32.832682000000005],[-83.6574755,32.8326798],[-83.657796,32.832683],[-83.6583344,32.832683800000005]]},"id":"8844c0b1b5fffff-139edaab7bc72816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b55d66d-139fe9250e459950","8f44c0b1b55d260-1397e8bc43b36d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6583344,32.832683800000005],[-83.658502,32.832675]]},"id":"8b44c0b1b55dfff-139ee8f0ad24d0fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b55d260-1397e8bc43b36d0a","8f44c0b1b548bac-139fc6a7c7108656"]},"geometry":{"type":"LineString","coordinates":[[-83.658502,32.832675],[-83.65935400000001,32.832684]]},"id":"8944c0b1b57ffff-139ef7b20c8666ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0b666c-139fc4c4a90d9f16","8f44c0b1b548bac-139fc6a7c7108656"]},"geometry":{"type":"LineString","coordinates":[[-83.65935400000001,32.832684],[-83.660127,32.832684]]},"id":"8744c0b1bffffff-139fc5b638ae0196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0b0cb3-139fc4434f81d062","8f44c0b1b0b666c-139fc4c4a90d9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.660127,32.832684],[-83.660334,32.83268]]},"id":"8a44c0b1b0b7fff-139ec483f1a03042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6616717,32.8323903]},"id":"8f44c0b1b1992e1-13d7f0ff361af174"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0b0cb3-139fc4434f81d062","8f44c0b1b1992e1-13d7f0ff361af174"]},"geometry":{"type":"LineString","coordinates":[[-83.660334,32.83268],[-83.66050800000001,32.83267],[-83.660663,32.832651000000006],[-83.66083400000001,32.832614],[-83.661018,32.832566],[-83.661596,32.832405],[-83.6616717,32.8323903]]},"id":"8844c0b1b1fffff-13bed29ec688e781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0a49a1-13b7d0298080b50d","8f44c0b1b1992e1-13d7f0ff361af174"]},"geometry":{"type":"LineString","coordinates":[[-83.6616717,32.8323903],[-83.661946,32.832337],[-83.66201360000001,32.8323161]]},"id":"8944c0b1b1bffff-13bee093e8b6577d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66264000000001,32.832123]},"id":"8f44c0b1b188223-13befea20505ddb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0a49a1-13b7d0298080b50d","8f44c0b1b188223-13befea20505ddb4"]},"geometry":{"type":"LineString","coordinates":[[-83.66201360000001,32.8323161],[-83.66264000000001,32.832123]]},"id":"8a44c0b1b18ffff-13ffff65c987a506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18d2b0-13febdb24c0cbd07","8f44c0b1b188223-13befea20505ddb4"]},"geometry":{"type":"LineString","coordinates":[[-83.66264000000001,32.832123],[-83.6630236,32.8320163]]},"id":"8a44c0b1b18ffff-139fbe2a221a5e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66339210000001,32.8319139]},"id":"8f44c0b1b03661c-13bebccbffda267d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18d2b0-13febdb24c0cbd07","8f44c0b1b03661c-13bebccbffda267d"]},"geometry":{"type":"LineString","coordinates":[[-83.6630236,32.8320163],[-83.66339210000001,32.8319139]]},"id":"8844c0b1b1fffff-13debd3f1d23ea56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b036a52-13f7bc05bf10a59a","8f44c0b1b03661c-13bebccbffda267d"]},"geometry":{"type":"LineString","coordinates":[[-83.66339210000001,32.8319139],[-83.66370930000001,32.8318257]]},"id":"8b44c0b1b036fff-139ebc68d97d412a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b036a52-13f7bc05bf10a59a","8f44c0b1b034775-13dffb6fe894b780"]},"geometry":{"type":"LineString","coordinates":[[-83.66370930000001,32.8318257],[-83.663949,32.831759000000005]]},"id":"8a44c0b1b037fff-13defbbadfb3b1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b034335-13b6bb1e03056771","8f44c0b1b034775-13dffb6fe894b780"]},"geometry":{"type":"LineString","coordinates":[[-83.663949,32.831759000000005],[-83.66408,32.831729]]},"id":"8b44c0b1b034fff-13d6bb46f0b5db27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b034335-13b6bb1e03056771","8f44c0b1b119a30-1397f89725c77533"]},"geometry":{"type":"LineString","coordinates":[[-83.66408,32.831729],[-83.66424900000001,32.831685],[-83.665115,32.831443]]},"id":"8844c0b1b1fffff-13deb9da6b27e04c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b108ba0-17f6b64a68ceec61","8f44c0b1b119a30-1397f89725c77533"]},"geometry":{"type":"LineString","coordinates":[[-83.665115,32.831443],[-83.66556100000001,32.831321],[-83.66605700000001,32.831184]]},"id":"8944c0b1b13ffff-17b7b770bb162bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b108ba0-17f6b64a68ceec61","8f44c0b1b1768c5-17def415644cd359"]},"geometry":{"type":"LineString","coordinates":[[-83.66605700000001,32.831184],[-83.66628200000001,32.831127],[-83.666961,32.830942]]},"id":"8844c0b1b1fffff-1797f52fab88d181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b1768c5-17def415644cd359","8f44c0b1b174412-17b6b3b162e2e27e"]},"geometry":{"type":"LineString","coordinates":[[-83.666961,32.830942],[-83.66712100000001,32.8309]]},"id":"8a44c0b1b177fff-17bfb3e366dcea1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8dbcd8-17dfb245056215fd","8f44c0b1b174412-17b6b3b162e2e27e"]},"geometry":{"type":"LineString","coordinates":[[-83.66712100000001,32.8309],[-83.667309,32.830844],[-83.667704,32.830741]]},"id":"8844c0b1b1fffff-17fff2fb9a8ea7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b8dbcd8-17dfb245056215fd","8f44c0b1b8ca530-17b7f01640a144ba"]},"geometry":{"type":"LineString","coordinates":[[-83.667704,32.830741],[-83.668598,32.830495]]},"id":"8944c0b1b8fffff-1796f12da65107ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64448300000001,32.840628]},"id":"8f44c0a3406e2f0-17f6eaf623c5cddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3406e2f0-17f6eaf623c5cddc","8f44c0a34045082-17d6ec754d44b659"]},"geometry":{"type":"LineString","coordinates":[[-83.64387,32.840558],[-83.64448300000001,32.840628]]},"id":"8944c0a3407ffff-17deebb5b090b8cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3406e2f0-17f6eaf623c5cddc","8f44c0a34068cec-1796fa68f11a3d3a"]},"geometry":{"type":"LineString","coordinates":[[-83.64448300000001,32.840628],[-83.64470890000001,32.8406631]]},"id":"8a44c0a3406ffff-17ffeaaf8ce6d564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34068b2a-17bef9b1c45ee2fd","8f44c0a34068cec-1796fa68f11a3d3a"]},"geometry":{"type":"LineString","coordinates":[[-83.64470890000001,32.8406631],[-83.645002,32.8407235]]},"id":"8b44c0a34068fff-179ffa0d52cb0f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34068b2a-17bef9b1c45ee2fd","8f44c0a34a9ac11-17fff87334bef54a"]},"geometry":{"type":"LineString","coordinates":[[-83.645002,32.8407235],[-83.6455117,32.840830700000005]]},"id":"8744c0a34ffffff-17dff91279a54411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a21a6650e-1797fc331dde2630","8f44c0b526924e2-17b7b959886d8b90"]},"geometry":{"type":"LineString","coordinates":[[-83.7291727,32.8828735],[-83.72987300000001,32.883273],[-83.73034,32.883513]]},"id":"8a44c0a21a67fff-17dfbac865f56348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b526924e2-17b7b959886d8b90","8f44c0b5269d0ae-13b6552e0420a3e1"]},"geometry":{"type":"LineString","coordinates":[[-83.73034,32.883513],[-83.730997,32.883912],[-83.73106800000001,32.883949],[-83.73119100000001,32.884014],[-83.731499,32.884162],[-83.731772,32.884275],[-83.731899,32.884318],[-83.732048,32.884362]]},"id":"8544c0a3fffffff-13d6574fc30cd993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73286350000001,32.8846845]},"id":"8f44c0b5268870b-13ffd3305d6f65e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5268870b-13ffd3305d6f65e1","8f44c0b5269d0ae-13b6552e0420a3e1"]},"geometry":{"type":"LineString","coordinates":[[-83.732048,32.884362],[-83.732426,32.884507],[-83.732675,32.884617],[-83.73286350000001,32.8846845]]},"id":"8944c0b526bffff-139f342f38facae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b526e8541-17f66b6280c00df3","8f44c0b5268870b-13ffd3305d6f65e1"]},"geometry":{"type":"LineString","coordinates":[[-83.73286350000001,32.8846845],[-83.733393,32.884874],[-83.735095,32.885492],[-83.735557,32.885682],[-83.73606000000001,32.885863]]},"id":"8844c0b527fffff-13fe9f4810087142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b526e8541-17f66b6280c00df3","8f44c0b5265b8f4-179647fc8a986f97"]},"geometry":{"type":"LineString","coordinates":[[-83.73606000000001,32.885863],[-83.73647700000001,32.886018],[-83.73711800000001,32.886226],[-83.737452,32.88633]]},"id":"8844c0b527fffff-17f729b12a976e93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c915702-1397c24246a97e26","8f44c0b5265b8f4-179647fc8a986f97"]},"geometry":{"type":"LineString","coordinates":[[-83.737452,32.88633],[-83.73793,32.886519],[-83.738691,32.886794],[-83.73979800000001,32.887174]]},"id":"8644c0b57ffffff-17968521c50dd2c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c976ca9-13bdfc77cdc45146","8f44c0a2c915702-1397c24246a97e26"]},"geometry":{"type":"LineString","coordinates":[[-83.73979800000001,32.887174],[-83.740138,32.887298],[-83.740571,32.887479],[-83.74217,32.88806]]},"id":"8944c0a2c93ffff-13bdff5e647fc725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c962db3-13ddf99dca9b2a9d","8f44c0a2c976ca9-13bdfc77cdc45146"]},"geometry":{"type":"LineString","coordinates":[[-83.74217,32.88806],[-83.742948,32.888343],[-83.74333800000001,32.8885191]]},"id":"8844c0a2c9fffff-13d7fb0846c1536b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c962db3-13ddf99dca9b2a9d","8f44c0b53593cd9-17dff56b09faa507"]},"geometry":{"type":"LineString","coordinates":[[-83.74333800000001,32.8885191],[-83.74505760000001,32.8891128]]},"id":"8644c0b57ffffff-1797f7846444b70e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6403957,32.8362305]},"id":"8f44c0a341ad340-13b6f4f0be6cfebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a341ad340-13b6f4f0be6cfebc","8f44c0a3411e718-13d7f465bbb8fe99"]},"geometry":{"type":"LineString","coordinates":[[-83.6403957,32.8362305],[-83.64061810000001,32.8360797]]},"id":"8944c0a3413ffff-1396f4ab36bdf63b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3411e718-13d7f465bbb8fe99","8f44c0a341058ed-1396f00816f64d36"]},"geometry":{"type":"LineString","coordinates":[[-83.64061810000001,32.8360797],[-83.64065400000001,32.836055],[-83.64094700000001,32.835866],[-83.641143,32.83576],[-83.641703,32.835471000000005],[-83.641948,32.835361],[-83.6424063,32.8351567]]},"id":"8944c0a3413ffff-13b6f23fd0fbcd47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640106,32.8366838]},"id":"8f44c0a341a9290-17dff5a5cb319e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a341ad340-13b6f4f0be6cfebc","8f44c0a341a9290-17dff5a5cb319e51"]},"geometry":{"type":"LineString","coordinates":[[-83.6403957,32.8362305],[-83.64030170000001,32.8363194],[-83.640214,32.836441],[-83.640106,32.8366838]]},"id":"8a44c0a341affff-17bff55734fb15de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686d296-13ff96234381cca9","8f44c0a3449a318-13b7f500a626ddd6"]},"geometry":{"type":"LineString","coordinates":[[-83.62679800000001,32.839212],[-83.6269583,32.8393068],[-83.627263,32.8394879]]},"id":"8744c0a36ffffff-13d7b591ee0e3779"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62751420000001,32.8396393]},"id":"8f44c0a3449b112-17979463aa0a6070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3449a318-13b7f500a626ddd6","8f44c0a3449b112-17979463aa0a6070"]},"geometry":{"type":"LineString","coordinates":[[-83.627263,32.8394879],[-83.62751420000001,32.8396393]]},"id":"8a44c0a3449ffff-13d754b22d812a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3449b14d-17bf542027882137","8f44c0a3449b112-17979463aa0a6070"]},"geometry":{"type":"LineString","coordinates":[[-83.62751420000001,32.8396393],[-83.6276222,32.8397045]]},"id":"8c44c0a3449b1ff-179ff441e882ea87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3449bae6-17dfb3ec2a1077d4","8f44c0a3449b14d-17bf542027882137"]},"geometry":{"type":"LineString","coordinates":[[-83.6276222,32.8397045],[-83.62770540000001,32.8397546]]},"id":"8b44c0a3449bfff-17bf140624db149b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36b2464b-17bf3268ebd60613","8f44c0a3449bae6-17dfb3ec2a1077d4"]},"geometry":{"type":"LineString","coordinates":[[-83.62770540000001,32.8397546],[-83.6282613,32.8400941],[-83.628325,32.840133]]},"id":"8944c0a36b3ffff-17d7f32a80c75aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6288304,32.84044]},"id":"8f44c0a36b25256-17ff112d05682f23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36b2464b-17bf3268ebd60613","8f44c0a36b25256-17ff112d05682f23"]},"geometry":{"type":"LineString","coordinates":[[-83.628325,32.840133],[-83.6283939,32.8401748],[-83.6288304,32.84044]]},"id":"8a44c0a36b27fff-179f11cafbacd3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62914430000001,32.840630700000006]},"id":"8f44c0a344d2041-17f73068da7c2457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36b25256-17ff112d05682f23","8f44c0a344d2041-17f73068da7c2457"]},"geometry":{"type":"LineString","coordinates":[[-83.6288304,32.84044],[-83.62914430000001,32.840630700000006]]},"id":"8844c0a345fffff-17b7b0cafd179002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a344d2041-17f73068da7c2457","8f44c0a344d3c1d-17d77fe50c794020"]},"geometry":{"type":"LineString","coordinates":[[-83.62914430000001,32.840630700000006],[-83.6293552,32.8407639]]},"id":"8a44c0a344d7fff-179fd026e8183775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a344d3c1d-17d77fe50c794020","8f44c0a344de98a-17970ea8e9e1bff6"]},"geometry":{"type":"LineString","coordinates":[[-83.6293552,32.8407639],[-83.629861,32.841064]]},"id":"8944c0a344fffff-17b74f46f247dcd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8531e29d-179fb3d75096299d","8f44c0b8531a0ec-17d7b424f8303347"]},"geometry":{"type":"LineString","coordinates":[[-83.5687563,32.800962500000004],[-83.5686321,32.8012619]]},"id":"8a44c0b8531ffff-17f7a3fe2bf61221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1135292c-17fff9c64781f8ba","8f44c0b1135e568-1396b89c2f01a01e"]},"geometry":{"type":"LineString","coordinates":[[-83.665107,32.782288],[-83.66463,32.781455]]},"id":"8944c0b1137ffff-17ffb9313d20c7e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66412270000001,32.780579800000005]},"id":"8f44c0b1130ab51-13d6fb0353fe8f75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1135292c-17fff9c64781f8ba","8f44c0b1130ab51-13d6fb0353fe8f75"]},"geometry":{"type":"LineString","coordinates":[[-83.66463,32.781455],[-83.66412270000001,32.780579800000005]]},"id":"8844c0b113fffff-17f7fa64dcd06aff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630293,32.778693000000004]},"id":"8f44c0b113331a9-17bfbdaebb96b7f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b113331a9-17bfbdaebb96b7f5","8f44c0b1130ab51-13d6fb0353fe8f75"]},"geometry":{"type":"LineString","coordinates":[[-83.66412270000001,32.780579800000005],[-83.6630293,32.778693000000004]]},"id":"8944c0b1133ffff-139efc590f71bf9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624281,32.7776553]},"id":"8f44c0b1106b013-17b6bf267e73a507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1106b013-17b6bf267e73a507","8f44c0b113331a9-17bfbdaebb96b7f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6630293,32.778693000000004],[-83.6624281,32.7776553]]},"id":"8744c0b11ffffff-17f6fe6a9dbf49ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6605541,32.774395000000005]},"id":"8f44c0b1115354b-17bee3b9b8f8f39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1115354b-17bee3b9b8f8f39f","8f44c0b1106b013-17b6bf267e73a507"]},"geometry":{"type":"LineString","coordinates":[[-83.6624281,32.7776553],[-83.662221,32.777298],[-83.661367,32.775815],[-83.6605541,32.774395000000005]]},"id":"8844c0b111fffff-13bec1710e1a5fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6604169,32.7741555]},"id":"8f44c0b11152305-17b7f40f70cddbbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11152305-17b7f40f70cddbbf","8f44c0b1115354b-17bee3b9b8f8f39f"]},"geometry":{"type":"LineString","coordinates":[[-83.6605541,32.774395000000005],[-83.6604169,32.7741555]]},"id":"8a44c0b11157fff-17f6d3e498b4e4b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11152305-17b7f40f70cddbbf","8f44c0b11152d0e-13f6c4784956c087"]},"geometry":{"type":"LineString","coordinates":[[-83.6604169,32.7741555],[-83.66024920000001,32.7738624]]},"id":"8b44c0b11152fff-13dfe443e5e947bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6601468,32.7736832]},"id":"8f44c0b11025b31-1396c4b843556efa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11025b31-1396c4b843556efa","8f44c0b11152d0e-13f6c4784956c087"]},"geometry":{"type":"LineString","coordinates":[[-83.66024920000001,32.7738624],[-83.66021,32.773794],[-83.6601468,32.7736832]]},"id":"8a44c0b11157fff-13bec4984ab57c6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6599764,32.7733846]},"id":"8f44c0b1110b702-13d7e522c6c26bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110b702-13d7e522c6c26bea","8f44c0b11025b31-1396c4b843556efa"]},"geometry":{"type":"LineString","coordinates":[[-83.6601468,32.7736832],[-83.6599764,32.7733846]]},"id":"8844c0b111fffff-13b6f4ed8ed01857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6597751,32.7730344]},"id":"8f44c0b1110a041-13fec5a09a694a4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110b702-13d7e522c6c26bea","8f44c0b1110a041-13fec5a09a694a4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6599764,32.7733846],[-83.65978600000001,32.773051],[-83.6597751,32.7730344]]},"id":"8a44c0b1110ffff-13d7c5615b87053f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1110ada9-13dff605782fa6ee","8f44c0b1110a041-13fec5a09a694a4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6597751,32.7730344],[-83.65961370000001,32.7727871]]},"id":"8b44c0b1110afff-139fc5d30dfa4bc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633104,32.839959]},"id":"8f44c0a34451531-17df66be0267997f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344ed19b-17df47efa7c9daf9","8f44c0a34451531-17df66be0267997f"]},"geometry":{"type":"LineString","coordinates":[[-83.632615,32.84057],[-83.633104,32.839959]]},"id":"8844c0a345fffff-179f5756d2d98557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63363000000001,32.839337]},"id":"8f44c0a3447322e-13dfa5754ba21174"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34451531-17df66be0267997f","8f44c0a3447322e-13dfa5754ba21174"]},"geometry":{"type":"LineString","coordinates":[[-83.633104,32.839959],[-83.63363000000001,32.839337]]},"id":"8944c0a3447ffff-179f0619a98d1804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34473b75-13df0519fe2948f1","8f44c0a3447322e-13dfa5754ba21174"]},"geometry":{"type":"LineString","coordinates":[[-83.63363000000001,32.839337],[-83.6337761,32.8391632]]},"id":"8a44c0a34477fff-13975547904f3430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344756c8-13bf94818df54b73","8f44c0a34473b75-13df0519fe2948f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6337761,32.8391632],[-83.63402,32.8388761]]},"id":"8b44c0a34471fff-139754cdc3d413ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a344756c8-13bf94818df54b73","8f44c0a34559c68-139fc2cfcbb0581e"]},"geometry":{"type":"LineString","coordinates":[[-83.63402,32.8388761],[-83.63465400000001,32.838124],[-83.634714,32.838006]]},"id":"8844c0a345fffff-139f43a1afdb55e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3479691b-13ff79e1c79544df","8f44c0a344cb8d5-13d7cad94beeece1"]},"geometry":{"type":"LineString","coordinates":[[-83.631422,32.842022],[-83.63181800000001,32.842258300000005]]},"id":"8744c0a34ffffff-13b7aa5d81846400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3479691b-13ff79e1c79544df","8f44c0a3479428c-139758e00c7e9859"]},"geometry":{"type":"LineString","coordinates":[[-83.63181800000001,32.842258300000005],[-83.63223040000001,32.842504500000004]]},"id":"8a44c0a34797fff-13bf6960eb0bafd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632947,32.842947]},"id":"8f44c0a34782156-179fe72024048a1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34782156-179fe72024048a1b","8f44c0a3479428c-139758e00c7e9859"]},"geometry":{"type":"LineString","coordinates":[[-83.63223040000001,32.842504500000004],[-83.632947,32.842947]]},"id":"8944c0a347bffff-139fa8001833ecb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34782156-179fe72024048a1b","8f44c0a347816e5-17b7a564f8649436"]},"geometry":{"type":"LineString","coordinates":[[-83.632947,32.842947],[-83.63365610000001,32.8433706]]},"id":"8a44c0a34787fff-179f46429155222b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a347816e5-17b7a564f8649436","8f44c0a3478d56d-17b7c39e090a3134"]},"geometry":{"type":"LineString","coordinates":[[-83.63365610000001,32.8433706],[-83.63438400000001,32.843814]]},"id":"8944c0a347bffff-17bf3481883bced9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34631493-17b7012eec1d4dff","8f44c0a3478d56d-17b7c39e090a3134"]},"geometry":{"type":"LineString","coordinates":[[-83.63438400000001,32.843814],[-83.63538100000001,32.8444]]},"id":"8844c0a347fffff-17ffe26676794513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34605966-13defe4d6796e18f","8f44c0a34631493-17b7012eec1d4dff"]},"geometry":{"type":"LineString","coordinates":[[-83.63538100000001,32.8444],[-83.63558300000001,32.84449],[-83.636189,32.844716000000005],[-83.636561,32.844865]]},"id":"8944c0a3463ffff-13beffbec9237855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34605966-13defe4d6796e18f","8f44c0a3462886c-1396fc3d698684c6"]},"geometry":{"type":"LineString","coordinates":[[-83.636561,32.844865],[-83.63740580000001,32.8451694]]},"id":"8944c0a3463ffff-13b7fd456d87e3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3462886c-1396fc3d698684c6","8f44c0a3475ab88-13d6fa4b3ab7f06d"]},"geometry":{"type":"LineString","coordinates":[[-83.63740580000001,32.8451694],[-83.63820290000001,32.845476000000005]]},"id":"8844c0a347fffff-13f6fb444c3bf3ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64944,32.841712]},"id":"8f44c0a34ac41ad-1396dedc05a20ca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ac41ad-1396dedc05a20ca0","8f44c0a34af63b3-179ef16b0b2b82f2"]},"geometry":{"type":"LineString","coordinates":[[-83.64944,32.841712],[-83.649185,32.841454],[-83.648392,32.8408743]]},"id":"8944c0a34afffff-1396f01ae3897be9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34af63b3-179ef16b0b2b82f2","8f44c0a34af6552-17bee1d549af2f8f"]},"geometry":{"type":"LineString","coordinates":[[-83.648392,32.8408743],[-83.648222,32.84075]]},"id":"8b44c0a34af6fff-17f7e1a02bbab0dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34aab456-1796f2c02321e92f","8f44c0a34af6552-17bee1d549af2f8f"]},"geometry":{"type":"LineString","coordinates":[[-83.648222,32.84075],[-83.6478462,32.8404747]]},"id":"8944c0a34abffff-17f6e24ab9661bfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34aaa671-17b6e35641067303","8f44c0a34aab456-1796f2c02321e92f"]},"geometry":{"type":"LineString","coordinates":[[-83.6478462,32.8404747],[-83.64760600000001,32.8402988]]},"id":"8a44c0a34aaffff-17dfe30b3c6d2633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34aaa671-17b6e35641067303","8f44c0a34aaa78d-17fef389e91eb5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.64760600000001,32.8402988],[-83.64752340000001,32.8402383]]},"id":"8c44c0a34aaa7ff-179fe37010031f2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647379,32.8401325]},"id":"8f44c0a34aaa493-17bef3e428f1dd6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34aaa78d-17fef389e91eb5cc","8f44c0a34aaa493-17bef3e428f1dd6f"]},"geometry":{"type":"LineString","coordinates":[[-83.64752340000001,32.8402383],[-83.647379,32.8401325]]},"id":"8944c0a34abffff-17dfe3b70b22cf3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7210824,32.7443716]},"id":"8f44c0b04a01453-13f66ff38d3bbb58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7215934,32.7442949]},"id":"8f44c0b04a2a7a5-13d67eb4267f0198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a2a7a5-13d67eb4267f0198","8f44c0b04a01453-13f66ff38d3bbb58"]},"geometry":{"type":"LineString","coordinates":[[-83.7210824,32.7443716],[-83.7215934,32.7442949]]},"id":"8944c0b04a3ffff-13de7f53d2a847b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72166560000001,32.744283800000005]},"id":"8f44c0b04a2a725-13bf6e870ed21d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a2a7a5-13d67eb4267f0198","8f44c0b04a2a725-13bf6e870ed21d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.7215934,32.7442949],[-83.72166560000001,32.744283800000005]]},"id":"8b44c0b04a2afff-13beee9d98477504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7172869,32.7382052]},"id":"8f44c0b0485659e-17f67937b16973ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0485659e-17f67937b16973ce","8f44c0b04b90322-17deb983e10cbed1"]},"geometry":{"type":"LineString","coordinates":[[-83.7172869,32.7382052],[-83.71738420000001,32.7382863],[-83.7174986,32.7383966],[-83.7175929,32.738510600000005],[-83.7176518,32.7385899],[-83.71770190000001,32.738674200000005],[-83.71775500000001,32.738756],[-83.71781100000001,32.738902200000005],[-83.71785,32.739044],[-83.717854,32.739387],[-83.71783500000001,32.739714],[-83.717791,32.739987],[-83.717769,32.740079],[-83.717686,32.740344],[-83.71716500000001,32.741681]]},"id":"8744c0b04ffffff-1396f86c8a2872b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71691700000001,32.7423039]},"id":"8f44c0b0416d91b-17f7fa1ee358ec60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04b90322-17deb983e10cbed1","8f44c0b0416d91b-17f7fa1ee358ec60"]},"geometry":{"type":"LineString","coordinates":[[-83.71716500000001,32.741681],[-83.71691700000001,32.7423039]]},"id":"8944c0b04bbffff-17b779d167769b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04ab3ca0-13f63ab67ef55a0a","8f44c0b04ab4c29-13df79e8e9847696"]},"geometry":{"type":"LineString","coordinates":[[-83.71700340000001,32.743090200000005],[-83.7167422,32.7436464],[-83.71669030000001,32.743765],[-83.7166758,32.7438225],[-83.71667450000001,32.7438768],[-83.71667450000001,32.7439393]]},"id":"8a44c0b04ab7fff-13d6ba5fa9b09054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04ab3ca0-13f63ab67ef55a0a","8f44c0b04ab3011-13dffa69b44cf205"]},"geometry":{"type":"LineString","coordinates":[[-83.71667450000001,32.7439393],[-83.7166842,32.743990100000005],[-83.7167051,32.7440231],[-83.7167352,32.7440518],[-83.71679730000001,32.7441054]]},"id":"8b44c0b04ab3fff-139efa97f6dc13cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7207893,32.7444769]},"id":"8f44c0b04a03056-13b630aab32884a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a03056-13b630aab32884a5","8f44c0b04a1e103-179673086287bc32"]},"geometry":{"type":"LineString","coordinates":[[-83.7198202,32.744602],[-83.72003480000001,32.7445839],[-83.7203252,32.744550600000004],[-83.7204521,32.7445304],[-83.7206646,32.744496600000005],[-83.72078330000001,32.7444778],[-83.7207893,32.7444769]]},"id":"8944c0b04a3ffff-13de31d8ff623cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a03056-13b630aab32884a5","8f44c0b04a01453-13f66ff38d3bbb58"]},"geometry":{"type":"LineString","coordinates":[[-83.7207893,32.7444769],[-83.7209765,32.744449800000005],[-83.7210824,32.7443716]]},"id":"8a44c0b04a07fff-139e304aaeeadfb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a104e4123-13f7eeeea8f64b9f","8f44c0a1079e754-17f7edb80c299689"]},"geometry":{"type":"LineString","coordinates":[[-83.5904278,32.907780200000005],[-83.5905111,32.9089511],[-83.59066630000001,32.9101203],[-83.5907502,32.910773500000005],[-83.59092480000001,32.912291]]},"id":"8744c0a10ffffff-17f76e5e3bfc333e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59126180000001,32.914998600000004]},"id":"8f44c0a10683a14-17976ce568e5b188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10683a14-17976ce568e5b188","8f44c0a1079e754-17f7edb80c299689"]},"geometry":{"type":"LineString","coordinates":[[-83.59092480000001,32.912291],[-83.59126180000001,32.914998600000004]]},"id":"8844c0a107fffff-13b76d4ebf1bb946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10683a14-17976ce568e5b188","8f44c0a13d09368-179ffc4d09342aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.59126180000001,32.914998600000004],[-83.5912625,32.9150043],[-83.59145170000001,32.916588000000004],[-83.5915131,32.9172233],[-83.591537,32.9179077],[-83.5915473,32.9184973],[-83.5915056,32.9191341]]},"id":"8644c0a17ffffff-139fec6bdd5cf147"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a13d530e4-13d77c79572a45c5","8f44c0a13d09368-179ffc4d09342aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.5915056,32.9191341],[-83.59143470000001,32.9202181]]},"id":"8a44c0a13d57fff-17fffc6329335600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36802d2b-17bf71e3da7e4608","8f44c0a36806153-17bfe1620a5a2fba"]},"geometry":{"type":"LineString","coordinates":[[-83.622192,32.836419],[-83.6220411,32.836588500000005],[-83.62203000000001,32.836601],[-83.62198430000001,32.8366567]]},"id":"8a44c0a36807fff-17f7b1a379606cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621656,32.837047000000005]},"id":"8f44c0a36811304-17b762b103b55705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36802d2b-17bf71e3da7e4608","8f44c0a36811304-17b762b103b55705"]},"geometry":{"type":"LineString","coordinates":[[-83.62198430000001,32.8366567],[-83.62182,32.836857],[-83.621656,32.837047000000005]]},"id":"8944c0a3683ffff-17bf3249af6ccb81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36956d52-13bf7ca5ed6ff077","8f44c0a3690b64d-13df3d77897906f1"]},"geometry":{"type":"LineString","coordinates":[[-83.623796,32.835453],[-83.62413140000001,32.835402300000005]]},"id":"8844c0a369fffff-13bf5d0eb25cc6c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36956d52-13bf7ca5ed6ff077","8f44c0a36973961-13bf39b023a50de1"]},"geometry":{"type":"LineString","coordinates":[[-83.62413140000001,32.835402300000005],[-83.62444500000001,32.835355],[-83.624735,32.83531],[-83.6251893,32.835232500000004],[-83.62534380000001,32.8351938]]},"id":"8944c0a3697ffff-13f75b2a1a71d608"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340d4431-17f6f90b094ee3cd","8f44c0a340d6514-1797fa3722a77c90"]},"geometry":{"type":"LineString","coordinates":[[-83.63823500000001,32.8408595],[-83.63871520000001,32.8408107]]},"id":"8a44c0a340d7fff-17f7f9a110b99da4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6397209,32.840763800000005]},"id":"8f44c0a340f16a5-17d7f696704ef580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340f16a5-17d7f696704ef580","8f44c0a340d4431-17f6f90b094ee3cd"]},"geometry":{"type":"LineString","coordinates":[[-83.63871520000001,32.8408107],[-83.6397209,32.840763800000005]]},"id":"8944c0a340fffff-17d6f7d0b4b8404a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340f16a5-17d7f696704ef580","8f44c0a340c4d90-17bff5bf67de1739"]},"geometry":{"type":"LineString","coordinates":[[-83.6397209,32.840763800000005],[-83.640065,32.8407478]]},"id":"8b44c0a340f1fff-17d6f62afcd5a4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340c4d90-17bff5bf67de1739","8f44c0a340c49b4-17b7f53d68996250"]},"geometry":{"type":"LineString","coordinates":[[-83.640065,32.8407478],[-83.64027300000001,32.8407379]]},"id":"8944c0a340fffff-17bef57e6593f486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340c49b4-17b7f53d68996250","8f44c0a3405201b-179ef1e3e1e9aeda"]},"geometry":{"type":"LineString","coordinates":[[-83.64027300000001,32.8407379],[-83.64164500000001,32.8406667]]},"id":"8944c0a340fffff-179ef390afeba023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34050add-17f7f042654f3bc0","8f44c0a3405201b-179ef1e3e1e9aeda"]},"geometry":{"type":"LineString","coordinates":[[-83.64164500000001,32.8406667],[-83.642313,32.840632]]},"id":"8a44c0a34057fff-17fff1132c50195b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3680194b-17ff1f48303eab23","8f44c0a36800da2-17f7f0eed5e07e2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6223763,32.8365373],[-83.6224717,32.8365968],[-83.6230525,32.8369584]]},"id":"8a44c0a36807fff-17f7701b8a264a6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3680194b-17ff1f48303eab23","8f44c0a3682b3a6-17975d9766be45dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6230525,32.8369584],[-83.623603,32.8373],[-83.623745,32.837378]]},"id":"8944c0a3683ffff-17971e70e673c6f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36870d70-17f7bc03ba88330c","8f44c0a3682b3a6-17975d9766be45dd"]},"geometry":{"type":"LineString","coordinates":[[-83.623745,32.837378],[-83.62439090000001,32.8377627]]},"id":"8844c0a369fffff-17ff9ccd8e30117d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36870d70-17f7bc03ba88330c","8f44c0a368708a1-17975bcb7106c73b"]},"geometry":{"type":"LineString","coordinates":[[-83.62439090000001,32.8377627],[-83.62448090000001,32.8378164]]},"id":"8b44c0a36870fff-17979be7953327ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36870b6e-17f71b42b04bb9db","8f44c0a368708a1-17975bcb7106c73b"]},"geometry":{"type":"LineString","coordinates":[[-83.62448090000001,32.8378164],[-83.62469970000001,32.8379473]]},"id":"8a44c0a36877fff-17bf3b871f4e96dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62490840000001,32.838073800000004]},"id":"8f44c0a36871905-13b73ac04ff9d765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36871905-13b73ac04ff9d765","8f44c0a36870b6e-17f71b42b04bb9db"]},"geometry":{"type":"LineString","coordinates":[[-83.62469970000001,32.8379473],[-83.62490840000001,32.838073800000004]]},"id":"8b44c0a36875fff-139fbb017ba16a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36871905-13b73ac04ff9d765","8f44c0a3686244c-139f3a30c8f34181"]},"geometry":{"type":"LineString","coordinates":[[-83.62490840000001,32.838073800000004],[-83.625138,32.838213]]},"id":"8944c0a3687ffff-13dfba788d675553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686244c-139f3a30c8f34181","8f44c0a36862399-13d719d62ccfe9d7"]},"geometry":{"type":"LineString","coordinates":[[-83.625138,32.838213],[-83.62528300000001,32.838304]]},"id":"8b44c0a36862fff-13b79a0379f67486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36862240-13ff99902d863651","8f44c0a36862399-13d719d62ccfe9d7"]},"geometry":{"type":"LineString","coordinates":[[-83.62528300000001,32.838304],[-83.62539500000001,32.838372]]},"id":"8c44c0a368623ff-13df59b32017661c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a36862240-13ff99902d863651","8f44c0a3686332c-13f758b16d42e454"]},"geometry":{"type":"LineString","coordinates":[[-83.62539500000001,32.838372],[-83.6254699,32.8384166],[-83.6257514,32.8385844]]},"id":"8a44c0a36867fff-13b7f920cbee7046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686ed96-139fb88d87d2e612","8f44c0a3686332c-13f758b16d42e454"]},"geometry":{"type":"LineString","coordinates":[[-83.6257514,32.8385844],[-83.6258088,32.838618600000004]]},"id":"8b44c0a36863fff-13fff89f77a46345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686ed96-139fb88d87d2e612","8f44c0a3686eb94-13f7b7df033ba979"]},"geometry":{"type":"LineString","coordinates":[[-83.6258088,32.838618600000004],[-83.62608800000001,32.838785]]},"id":"8944c0a3687ffff-13bfb83640183afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686eb94-13f7b7df033ba979","8f44c0a36868864-139f56da75e1c07c"]},"geometry":{"type":"LineString","coordinates":[[-83.62608800000001,32.838785],[-83.6265049,32.839035700000004]]},"id":"8a44c0a3686ffff-13bf175cbfd9c27d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686d4c2-13b7369d4bbb00ca","8f44c0a36868864-139f56da75e1c07c"]},"geometry":{"type":"LineString","coordinates":[[-83.6265049,32.839035700000004],[-83.6266028,32.8390946]]},"id":"8a44c0a3686ffff-139fd6bbefa0e9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3686d296-13ff96234381cca9","8f44c0a3686d4c2-13b7369d4bbb00ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6266028,32.8390946],[-83.6266975,32.8391516],[-83.62679800000001,32.839212]]},"id":"8b44c0a3686dfff-13d7d66043aa2a10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6192872,32.8528644]},"id":"8f44c0a3628d0ae-17d768798baea559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362ab286-13b72807482005de","8f44c0a3628d0ae-17d768798baea559"]},"geometry":{"type":"LineString","coordinates":[[-83.61947,32.852584],[-83.6192872,32.8528644]]},"id":"8944c0a362bffff-13ffa8406bd59e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6192623,32.8529026]},"id":"8f44c0a3628d726-17ff28891f94e499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3628d726-17ff28891f94e499","8f44c0a3628d0ae-17d768798baea559"]},"geometry":{"type":"LineString","coordinates":[[-83.6192872,32.8528644],[-83.6192623,32.8529026]]},"id":"8c44c0a3628d1ff-17df388156cf5afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36289d00-17d7e8ce01dc302d","8f44c0a3628d726-17ff28891f94e499"]},"geometry":{"type":"LineString","coordinates":[[-83.6192623,32.8529026],[-83.619152,32.8530718]]},"id":"8a44c0a3628ffff-179f28ab9de768ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61903240000001,32.8532553]},"id":"8f44c0a36289431-17d7b918c9361e09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36289d00-17d7e8ce01dc302d","8f44c0a36289431-17d7b918c9361e09"]},"geometry":{"type":"LineString","coordinates":[[-83.619152,32.8530718],[-83.61903240000001,32.8532553]]},"id":"8b44c0a36289fff-179f68f36cfdef8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61887630000001,32.853494600000005]},"id":"8f44c0a3628b329-17df297a516bdbf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36289431-17d7b918c9361e09","8f44c0a3628b329-17df297a516bdbf0"]},"geometry":{"type":"LineString","coordinates":[[-83.61903240000001,32.8532553],[-83.61887630000001,32.853494600000005]]},"id":"8a44c0a3628ffff-179f6949844deed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61859630000001,32.8539243]},"id":"8f44c0a32925766-17f7ba295295fc27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32925766-17f7ba295295fc27","8f44c0a3628b329-17df297a516bdbf0"]},"geometry":{"type":"LineString","coordinates":[[-83.61887630000001,32.853494600000005],[-83.61879110000001,32.853625300000004],[-83.618612,32.8539],[-83.61859630000001,32.8539243]]},"id":"8844c0a363fffff-17f769d1d08ee5b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6184324,32.8541849]},"id":"8f44c0a329211b0-179fba8fcccf547f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a329211b0-179fba8fcccf547f","8f44c0a32925766-17f7ba295295fc27"]},"geometry":{"type":"LineString","coordinates":[[-83.61859630000001,32.8539243],[-83.618542,32.854008],[-83.6184324,32.8541849]]},"id":"8a44c0a32927fff-17b7ea5ce8d3a435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61812,32.854689]},"id":"8f44c0a3292e480-13d7ab530913e52f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a329211b0-179fba8fcccf547f","8f44c0a3292e480-13d7ab530913e52f"]},"geometry":{"type":"LineString","coordinates":[[-83.6184324,32.8541849],[-83.61812,32.854689]]},"id":"8944c0a3293ffff-13b72af1696c00e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61795860000001,32.8549367]},"id":"8f44c0a32905214-13df7bb7e4c3bac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32905214-13df7bb7e4c3bac3","8f44c0a3292e480-13d7ab530913e52f"]},"geometry":{"type":"LineString","coordinates":[[-83.61812,32.854689],[-83.61795860000001,32.8549367]]},"id":"8b44c0a32905fff-13973b85764ffb2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178539,32.855097400000005]},"id":"8f44c0a32901813-13d7ebf9598c5821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32905214-13df7bb7e4c3bac3","8f44c0a32901813-13d7ebf9598c5821"]},"geometry":{"type":"LineString","coordinates":[[-83.61795860000001,32.8549367],[-83.6178539,32.855097400000005]]},"id":"8a44c0a32907fff-1397bbd8a8e66f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.753061,32.865994]},"id":"8f44c0b5625905c-17dfe1e0e420ac23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5625905c-17dfe1e0e420ac23","8f44c0b505a098a-17b5f142b5f29f41"]},"geometry":{"type":"LineString","coordinates":[[-83.753061,32.865994],[-83.753152,32.866138],[-83.75319610000001,32.8662179],[-83.753231,32.866296500000004],[-83.7532929,32.8664824],[-83.753309,32.866528800000005],[-83.75331410000001,32.8665375]]},"id":"8744c0b50ffffff-1797e188e5c0b1e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50474549-17f5f848ece07d3b","8f44c0b50736425-17b7d37a0a512b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.75699060000001,32.8707158],[-83.75698600000001,32.870736],[-83.757039,32.870844000000005],[-83.757204,32.871039],[-83.757428,32.871291],[-83.758097,32.872068],[-83.75896,32.873068]]},"id":"8944c0b5047ffff-13dff5ee70747f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7591539,32.8732927]},"id":"8f44c0b5073628c-17bff300d09e22ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5073628c-17bff300d09e22ec","8f44c0b50736425-17b7d37a0a512b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.75896,32.873068],[-83.7591539,32.8732927]]},"id":"8b44c0b50736fff-17fdf33d7c96eb66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7594857,32.873677300000004]},"id":"8f44c0b50733903-17b5d2317bfd6067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5073628c-17bff300d09e22ec","8f44c0b50733903-17b5d2317bfd6067"]},"geometry":{"type":"LineString","coordinates":[[-83.7591539,32.8732927],[-83.7594857,32.873677300000004]]},"id":"8a44c0b50737fff-17bdf29924ed05c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5070c1b4-139dff211bc3bc99","8f44c0b50733903-17b5d2317bfd6067"]},"geometry":{"type":"LineString","coordinates":[[-83.7594857,32.873677300000004],[-83.76016100000001,32.87446],[-83.76059400000001,32.874944],[-83.7607407,32.8750991]]},"id":"8944c0b5073ffff-13dfd0ac7bc2bd4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5070c1b4-139dff211bc3bc99","8f44c0b5070d18c-13fdfe31ae11a5e6"]},"geometry":{"type":"LineString","coordinates":[[-83.7607407,32.8750991],[-83.761093,32.875436],[-83.76112380000001,32.875464300000004]]},"id":"8a44c0b5070ffff-139fcea987e8729f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76152250000001,32.875814000000005]},"id":"8f44c0b50772004-17d7cd3873b24553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50772004-17d7cd3873b24553","8f44c0b5070d18c-13fdfe31ae11a5e6"]},"geometry":{"type":"LineString","coordinates":[[-83.76112380000001,32.875464300000004],[-83.761314,32.875639],[-83.76152250000001,32.875814000000005]]},"id":"8844c0b507fffff-13ffedb648e054e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7615609,32.875846200000005]},"id":"8f44c0b50772070-17ffed2078c4451d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50772070-17ffed2078c4451d","8f44c0b50772004-17d7cd3873b24553"]},"geometry":{"type":"LineString","coordinates":[[-83.76152250000001,32.875814000000005],[-83.7615609,32.875846200000005]]},"id":"8c44c0b507721ff-17f5dd2c7687dc11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50772070-17ffed2078c4451d","8f44c0b50773ad1-17dfcbfad845a2b2"]},"geometry":{"type":"LineString","coordinates":[[-83.7615609,32.875846200000005],[-83.76203070000001,32.8762364]]},"id":"8a44c0b50777fff-17f5dc8da9e043e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50773ad1-17dfcbfad845a2b2","8f44c0b50746d96-17f7ebe4cefdb74a"]},"geometry":{"type":"LineString","coordinates":[[-83.76203070000001,32.8762364],[-83.762066,32.8762658]]},"id":"8b44c0b50773fff-17fdfbefc99e18a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50746d96-17f7ebe4cefdb74a","8f44c0b50741da4-17fdea0247af1017"]},"geometry":{"type":"LineString","coordinates":[[-83.762066,32.8762658],[-83.762203,32.876385],[-83.762838,32.8768982]]},"id":"8944c0b5077ffff-17bddaf49a5e7d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7634764,32.8774639]},"id":"8f44c0b5074ca16-13dff8734580e6d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50741da4-17fdea0247af1017","8f44c0b5074ca16-13dff8734580e6d0"]},"geometry":{"type":"LineString","coordinates":[[-83.762838,32.8768982],[-83.76329100000001,32.87728],[-83.763453,32.877435000000006],[-83.7634764,32.8774639]]},"id":"8944c0b5077ffff-17bfd93757887ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7636051,32.8776187]},"id":"8f44c0b5074dc23-13bff822d8cf2512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5074dc23-13bff822d8cf2512","8f44c0b5074ca16-13dff8734580e6d0"]},"geometry":{"type":"LineString","coordinates":[[-83.7634764,32.8774639],[-83.7636051,32.8776187]]},"id":"8a44c0b5074ffff-139fd84b1f869b87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5074dc23-13bff822d8cf2512","8f44c0b50294804-13b5c720590bdf38"]},"geometry":{"type":"LineString","coordinates":[[-83.7636051,32.8776187],[-83.763765,32.877848],[-83.763839,32.877977],[-83.763942,32.878185],[-83.76399400000001,32.878314],[-83.76401870000001,32.8783936]]},"id":"8744c0b50ffffff-13bfc793f1922758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50294804-13b5c720590bdf38","8f44c0b50291d74-17dff6daecd893dd"]},"geometry":{"type":"LineString","coordinates":[[-83.76401870000001,32.8783936],[-83.764038,32.878456],[-83.764064,32.878563],[-83.764071,32.878591],[-83.7641298,32.8791011]]},"id":"8944c0b502bffff-13ffd6f6f1e56428"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d436843-13dfed114e0b646e","8f44c0b0d583a9e-139ff14e0016b8e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7467424,32.8097699],[-83.7470018,32.8097664],[-83.747304,32.809767],[-83.747476,32.809786],[-83.74762100000001,32.809807],[-83.74778500000001,32.809843],[-83.747888,32.809865],[-83.74808900000001,32.809928],[-83.74824100000001,32.809983],[-83.748478,32.810084]]},"id":"8844c0b0d5fffff-13ddff26ea238d77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.754222,32.812343000000006]},"id":"8f44c0b0d0b2241-13f7ff0b485dc64b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d436843-13dfed114e0b646e","8f44c0b0d0b2241-13f7ff0b485dc64b"]},"geometry":{"type":"LineString","coordinates":[[-83.748478,32.810084],[-83.74868400000001,32.810183],[-83.748778,32.810239],[-83.749008,32.810395],[-83.74912900000001,32.810487],[-83.74926,32.810602],[-83.74957900000001,32.81091],[-83.750231,32.811562],[-83.750586,32.811874],[-83.75080600000001,32.812021],[-83.750938,32.812101000000006],[-83.75113900000001,32.812205],[-83.751428,32.81233],[-83.75157200000001,32.812384],[-83.75171,32.812427],[-83.75201600000001,32.812505],[-83.75217500000001,32.812537],[-83.752351,32.812561],[-83.752491,32.812573],[-83.752842,32.812587],[-83.75307400000001,32.812581],[-83.753219,32.812569],[-83.753521,32.812528],[-83.75382,32.812461],[-83.754222,32.812343000000006]]},"id":"8744c0b0dffffff-1395f675ebc4b67b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d0b5119-13d7dd07af5c01b1","8f44c0b0d0b2241-13f7ff0b485dc64b"]},"geometry":{"type":"LineString","coordinates":[[-83.754222,32.812343000000006],[-83.7543469,32.8122933],[-83.7544884,32.8122269],[-83.7546001,32.8121766],[-83.754745,32.812098],[-83.755047,32.811884]]},"id":"8a44c0b0d0b7fff-13f5de022a93c194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8531bc94-179fe3bc1b69c324","8f44c0b85318556-17d7b35faf715a32"]},"geometry":{"type":"LineString","coordinates":[[-83.5687999,32.8013812],[-83.5689478,32.801056100000004]]},"id":"8a44c0b8531ffff-17bfb38de67c5318"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85318556-17d7b35faf715a32","8f44c0b85322711-13bfb0e7799c6f05"]},"geometry":{"type":"LineString","coordinates":[[-83.5689478,32.801056100000004],[-83.56900200000001,32.800936],[-83.569238,32.800533],[-83.569479,32.800143],[-83.569649,32.799875],[-83.56986810000001,32.799496000000005],[-83.56995930000001,32.7993475]]},"id":"8944c0b8533ffff-13bff227ddcf5a4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57014670000001,32.799030300000005]},"id":"8f44c0b85326641-13f7f0725a6b6fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85326641-13f7f0725a6b6fc8","8f44c0b85322711-13bfb0e7799c6f05"]},"geometry":{"type":"LineString","coordinates":[[-83.56995930000001,32.7993475],[-83.57014670000001,32.799030300000005]]},"id":"8a44c0b85327fff-13d7b0acefdf9217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85a993a8-179fdfe80aaa73fb","8f44c0b85326641-13f7f0725a6b6fc8"]},"geometry":{"type":"LineString","coordinates":[[-83.57014670000001,32.799030300000005],[-83.57019000000001,32.798945],[-83.570316,32.798655100000005],[-83.570368,32.79851]]},"id":"8744c0b85ffffff-13d7f029b717d276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b5c31d-17df8f769bfd55ab","8f44c0a36b58812-17bfcfd5806a266d"]},"geometry":{"type":"LineString","coordinates":[[-83.62938000000001,32.8444396],[-83.6295319,32.8442584]]},"id":"8a44c0a36b5ffff-17972fa6012d161f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b5cb2a-17ff5f25fba21d84","8f44c0a36b5c31d-17df8f769bfd55ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6295319,32.8442584],[-83.6296609,32.8441045]]},"id":"8b44c0a36b5cfff-179f7f4e4a11e5d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b5cb2a-17ff5f25fba21d84","8f44c0a36b43423-17b74ef62c2bdf63"]},"geometry":{"type":"LineString","coordinates":[[-83.6296609,32.8441045],[-83.62973740000001,32.8440132]]},"id":"8944c0a36b7ffff-17d7df0e0ab6f19b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30958541-179eef91372b1065","8f44c0a309582b1-17f6ff4375e8f989"]},"geometry":{"type":"LineString","coordinates":[[-83.64259650000001,32.8529536],[-83.6427209,32.853130900000004]]},"id":"8b44c0a30958fff-17bfef6a55657962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64379140000001,32.8543773]},"id":"8f44c0a30861b9d-1397fca665b440a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30861b9d-1397fca665b440a4","8f44c0a309582b1-17f6ff4375e8f989"]},"geometry":{"type":"LineString","coordinates":[[-83.6427209,32.853130900000004],[-83.64379140000001,32.8543773]]},"id":"8844c0a309fffff-17fefdf4efba64c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64441810000001,32.8551327]},"id":"8f44c0a3086d3a2-13dffb1eb14fa70a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30861b9d-1397fca665b440a4","8f44c0a3086d3a2-13dffb1eb14fa70a"]},"geometry":{"type":"LineString","coordinates":[[-83.64379140000001,32.8543773],[-83.64441810000001,32.8551327]]},"id":"8844c0a309fffff-13ffebe28d084d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64454900000001,32.855291]},"id":"8f44c0a3549a511-13beeaccee8c8fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549a511-13beeaccee8c8fc4","8f44c0a3086d3a2-13dffb1eb14fa70a"]},"geometry":{"type":"LineString","coordinates":[[-83.64441810000001,32.8551327],[-83.64454900000001,32.855291]]},"id":"8a44c0a3086ffff-139ffaf5c5ff8e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6446487,32.8554146]},"id":"8f44c0a3549a735-139eea8e96795131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549a511-13beeaccee8c8fc4","8f44c0a3549a735-139eea8e96795131"]},"geometry":{"type":"LineString","coordinates":[[-83.64454900000001,32.855291],[-83.6446487,32.8554146]]},"id":"8b44c0a3549afff-13f7eaadbd789a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644946,32.855781]},"id":"8f44c0a3549b780-13ffe9d4c98cca91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549b780-13ffe9d4c98cca91","8f44c0a3549a735-139eea8e96795131"]},"geometry":{"type":"LineString","coordinates":[[-83.6446487,32.8554146],[-83.644946,32.855781]]},"id":"8a44c0a3549ffff-13feea31b4bc4d88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc94aab-13d6ff2581d59783","8f44c0b1bc94724-13dedfab25abeb28"]},"geometry":{"type":"LineString","coordinates":[[-83.65566220000001,32.825820900000004],[-83.655876,32.8258151]]},"id":"8b44c0b1bc94fff-13decf6858769768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b037b2-17f6ff4b66f18a53","8f44c0a31b18a76-13beffc7c39d07c6"]},"geometry":{"type":"LineString","coordinates":[[-83.66217,32.874314000000005],[-83.662369,32.873815]]},"id":"8944c0a31b3ffff-1396ff899f12243f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b00523-1797fef5cbea4907","8f44c0a31b037b2-17f6ff4b66f18a53"]},"geometry":{"type":"LineString","coordinates":[[-83.662369,32.873815],[-83.6624915,32.8734884],[-83.66250600000001,32.873219]]},"id":"8a44c0a31b07fff-17bfbf12716f02ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.660218,32.754348300000004]},"id":"8f44c0b15091db4-13dff48bcaa15bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1509d591-17d6d3153a6d32f7","8f44c0b15091db4-13dff48bcaa15bfb"]},"geometry":{"type":"LineString","coordinates":[[-83.6608173,32.7551785],[-83.66059200000001,32.754835],[-83.660218,32.754348300000004]]},"id":"8944c0b150bffff-17dfd3cbdfaf3c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6598591,32.7538782]},"id":"8f44c0b15096b23-13b7e56c1ec2317c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b15091db4-13dff48bcaa15bfb","8f44c0b15096b23-13b7e56c1ec2317c"]},"geometry":{"type":"LineString","coordinates":[[-83.660218,32.754348300000004],[-83.659885,32.753915],[-83.6598591,32.7538782]]},"id":"8a44c0b15097fff-13bfe4fc6be78b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b15548389-13d6c6662353a874","8f44c0b15096b23-13b7e56c1ec2317c"]},"geometry":{"type":"LineString","coordinates":[[-83.6598591,32.7538782],[-83.659459,32.75331]]},"id":"8844c0b155fffff-13f6d5e923b013ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1554292e-179ee8d021a7b885","8f44c0b15548389-13d6c6662353a874"]},"geometry":{"type":"LineString","coordinates":[[-83.659459,32.75331],[-83.658906,32.752471],[-83.65870500000001,32.752183],[-83.65847020000001,32.751991000000004]]},"id":"8944c0b1557ffff-1796c788cb2dc161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30d8529d-17b7d12c0d6e7859","8f44c0a30db0641-13dff3f178b2df38"]},"geometry":{"type":"LineString","coordinates":[[-83.6276969,32.8487598],[-83.628832,32.849742]]},"id":"8944c0a30dbffff-13ffd28eb41229ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7105926,32.754256500000004]},"id":"8f44c0b00914248-1396598fad1be4f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0089a2ab-13b7541c757ad73e","8f44c0b00914248-1396598fad1be4f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7105926,32.754256500000004],[-83.7098323,32.7550708],[-83.709027,32.756005200000004],[-83.7074135,32.7580787],[-83.70681,32.7588859],[-83.70627130000001,32.7596116]]},"id":"8844c0b009fffff-13ff6ef8b9923af0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3610e48d-139faaddc037f78d","8f44c0a36026d84-13dfec64c233480e"]},"geometry":{"type":"LineString","coordinates":[[-83.61830760000001,32.841292],[-83.617682,32.8420348]]},"id":"8844c0a361fffff-13f7aba148c762ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3612acf2-17ff392131c15fde","8f44c0a3612e899-17ffb878a9ecc452"]},"geometry":{"type":"LineString","coordinates":[[-83.6190189,32.8406259],[-83.6192886,32.8402091]]},"id":"8a44c0a3612ffff-17fff8ccee37ae55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3612e899-17ffb878a9ecc452","8f44c0a368d2d36-13bfb747fcea0944"]},"geometry":{"type":"LineString","coordinates":[[-83.6192886,32.8402091],[-83.61971270000001,32.839606700000004],[-83.61977610000001,32.839520900000004]]},"id":"8944c0a3613ffff-179767e0d03c1e38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36354da5-17ff5dc2e6bd71a5","8f44c0a36372231-17bf3d02e031e759"]},"geometry":{"type":"LineString","coordinates":[[-83.6239826,32.8495586],[-83.62367540000001,32.8496261]]},"id":"8944c0a3637ffff-17d75d62e7cdab2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36354da5-17ff5dc2e6bd71a5","8f44c0a36309208-1797de2041b513f9"]},"geometry":{"type":"LineString","coordinates":[[-83.62367540000001,32.8496261],[-83.6236147,32.8496394],[-83.623526,32.849702]]},"id":"8a44c0a36357fff-17ff9df390333324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81b26595-13dfe321bca83890","8f44c0baa49c70b-13f7b2fbe91eab6f"]},"geometry":{"type":"LineString","coordinates":[[-83.5690469,32.8131502],[-83.5690605,32.8129593],[-83.569089,32.81246],[-83.56910740000001,32.8121345]]},"id":"8844c0baa5fffff-139fa30e1bb64182"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa4b3250-17bff2ceab83eab2","8f44c0baa49c70b-13f7b2fbe91eab6f"]},"geometry":{"type":"LineString","coordinates":[[-83.56910740000001,32.8121345],[-83.56915980000001,32.811482000000005],[-83.5691798,32.8110311]]},"id":"8944c0baa4bffff-1797f2e24b7b5dc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85a9954e-17dfe0560d4f666a","8f44c0b85a9d685-17bff02478dfcfe1"]},"geometry":{"type":"LineString","coordinates":[[-83.5702713,32.7981191],[-83.570192,32.798387000000005]]},"id":"8a44c0b85a9ffff-17ffb03d34f3eb97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5699683,32.798926300000005]},"id":"8f44c0b85335b62-13b7f0e1d64ee06d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85a9954e-17dfe0560d4f666a","8f44c0b85335b62-13b7f0e1d64ee06d"]},"geometry":{"type":"LineString","coordinates":[[-83.570192,32.798387000000005],[-83.5699683,32.798926300000005]]},"id":"8744c0b85ffffff-17fff09bf1daa5e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85335b62-13b7f0e1d64ee06d","8f44c0b85331b9b-13b7b182ffd5f47e"]},"geometry":{"type":"LineString","coordinates":[[-83.5699683,32.798926300000005],[-83.56981710000001,32.7991929],[-83.5697105,32.7993681]]},"id":"8944c0b8533ffff-13bfa1316d8161a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129661,32.9274623]},"id":"8f44c0a2aad186a-13fff3c4322421cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aad186a-13fff3c4322421cd","8f44c0a2aad1a28-13b663a66acf216c"]},"geometry":{"type":"LineString","coordinates":[[-83.7130138,32.9275654],[-83.7129661,32.9274623]]},"id":"8b44c0a2aad1fff-139673b546d05980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aad5754-13def406f9256938","8f44c0a2aad186a-13fff3c4322421cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7129661,32.9274623],[-83.7128593,32.9272267]]},"id":"8a44c0a2aad7fff-13b653e59c938f34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b02a1e-13f7d521c18feec3","8f44c0a36b0dad1-13bfd15d6cbb0115"]},"geometry":{"type":"LineString","coordinates":[[-83.62721,32.841454],[-83.627947,32.841898],[-83.628753,32.842382]]},"id":"8944c0a36b3ffff-1397f33fb452057c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b739b5-139f0fdfdd42b73e","8f44c0a36b0dad1-13bfd15d6cbb0115"]},"geometry":{"type":"LineString","coordinates":[[-83.628753,32.842382],[-83.62936350000001,32.8427424]]},"id":"8844c0a36bfffff-13bf709e9bf57643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b73948-13df6f8a80aa2168","8f44c0a36b739b5-139f0fdfdd42b73e"]},"geometry":{"type":"LineString","coordinates":[[-83.62936350000001,32.8427424],[-83.62950000000001,32.842823]]},"id":"8b44c0a36b73fff-13b73fb5274f3a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a368e5562-139fe00807ac807c","8f44c0a36852a2d-13977e5096ff39c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6227456,32.838654000000005],[-83.62344870000001,32.8390439]]},"id":"8844c0a369fffff-139fbf2c5c5377ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36852a2d-13977e5096ff39c9","8f44c0a3685c406-13dfdc6f2652d075"]},"geometry":{"type":"LineString","coordinates":[[-83.62344870000001,32.8390439],[-83.624018,32.839399],[-83.62421900000001,32.83955]]},"id":"8944c0a3687ffff-13bf9d5d1e7e8a5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3685d24c-17b7bab7251475fe","8f44c0a3684bc08-17ff397fa19ee98b"]},"geometry":{"type":"LineString","coordinates":[[-83.62492300000001,32.840121],[-83.62523900000001,32.840321],[-83.62542140000001,32.8404195]]},"id":"8944c0a3687ffff-17977a1cda7da7b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b169b5-179f5857a491d2d8","8f44c0a3684bc08-17ff397fa19ee98b"]},"geometry":{"type":"LineString","coordinates":[[-83.62542140000001,32.8404195],[-83.625674,32.840556],[-83.625895,32.840674]]},"id":"8844c0a36bfffff-17bff8ebc49ce188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5555107,32.874230100000005]},"id":"8f44c0b8b400a20-13ffd42ddfa1676c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b405951-17dfc326590b6023","8f44c0b8b400a20-13ffd42ddfa1676c"]},"geometry":{"type":"LineString","coordinates":[[-83.55593230000001,32.8739772],[-83.5555107,32.874230100000005]]},"id":"8a44c0b8b407fff-13bfd3aa17690f7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa4b20185-17bfcd482007910f","8f44c0b8b4f6514-17b7d98ffacb1c6c"]},"geometry":{"type":"LineString","coordinates":[[-83.55330570000001,32.875754900000004],[-83.5517822,32.8769756]]},"id":"8844c0b8b5fffff-17b7db6c1e9ce0c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34032616-17d7f68a8b4cfecf","8f44c0a340147b6-17bff6ea29ee61c9"]},"geometry":{"type":"LineString","coordinates":[[-83.63974,32.837507],[-83.639587,32.837877]]},"id":"8944c0a3403ffff-17d7f6ba5b49da01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340a8176-13f7f870c46e428a","8f44c0a340147b6-17bff6ea29ee61c9"]},"geometry":{"type":"LineString","coordinates":[[-83.639587,32.837877],[-83.63906200000001,32.839015],[-83.638962,32.839177]]},"id":"8844c0a341fffff-13d6f7a7f86afcae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340ab44c-17bef9283fc47afa","8f44c0a340a8176-13f7f870c46e428a"]},"geometry":{"type":"LineString","coordinates":[[-83.638962,32.839177],[-83.638845,32.839335000000005],[-83.63866850000001,32.8396941]]},"id":"8a44c0a340affff-1397f8d2dec164b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340ab44c-17bef9283fc47afa","8f44c0a340ab781-17def938cf0948c4"]},"geometry":{"type":"LineString","coordinates":[[-83.63866850000001,32.8396941],[-83.638642,32.839748]]},"id":"8b44c0a340abfff-17bff9308860d468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a340d6514-1797fa3722a77c90","8f44c0a340ab781-17def938cf0948c4"]},"geometry":{"type":"LineString","coordinates":[[-83.638642,32.839748],[-83.63859140000001,32.8398643],[-83.638349,32.840421],[-83.638283,32.840601],[-83.63823500000001,32.8408595]]},"id":"8844c0a341fffff-17b7f9c72f206679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34142485-17dfed27604af5fb","8f44c0a34156ac1-17beef08cd0b4a41"]},"geometry":{"type":"LineString","coordinates":[[-83.643585,32.837727],[-83.64281480000001,32.8372678]]},"id":"8a44c0a34157fff-17dfee181601a26b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34156a9d-17b7ef3003f32646","8f44c0a34156ac1-17beef08cd0b4a41"]},"geometry":{"type":"LineString","coordinates":[[-83.64281480000001,32.8372678],[-83.642752,32.837231]]},"id":"8c44c0a34156bff-17b6ef1c62d2505d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34156a9d-17b7ef3003f32646","8f44c0a3410b484-17b6f0f80995c724"]},"geometry":{"type":"LineString","coordinates":[[-83.642752,32.837231],[-83.6422065,32.836933300000005],[-83.6421145,32.8368862],[-83.6420224,32.836842700000005]]},"id":"8844c0a341fffff-17bef013096dcd9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3410b484-17b6f0f80995c724","8f44c0a341ad340-13b6f4f0be6cfebc"]},"geometry":{"type":"LineString","coordinates":[[-83.6420224,32.836842700000005],[-83.6403957,32.8362305]]},"id":"8944c0a3413ffff-17f7f2f46259bcab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34050add-17f7f042654f3bc0","8f44c0a3404059e-17deee16fc018283"]},"geometry":{"type":"LineString","coordinates":[[-83.642313,32.840632],[-83.64300800000001,32.840606],[-83.6432017,32.8405952]]},"id":"8944c0a3407ffff-17feef2ca0205dba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34045082-17d6ec754d44b659","8f44c0a3404059e-17deee16fc018283"]},"geometry":{"type":"LineString","coordinates":[[-83.6432017,32.8405952],[-83.64387,32.840558]]},"id":"8a44c0a34047fff-17d6ed4610850d01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64663800000001,32.841094000000005]},"id":"8f44c0a34a99861-1797e5b34e8d59b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a8a0d4-17b6e513abf10864","8f44c0a34a99861-1797e5b34e8d59b8"]},"geometry":{"type":"LineString","coordinates":[[-83.64663800000001,32.841094000000005],[-83.64689340000001,32.841146]]},"id":"8944c0a34abffff-17b6e56375a9fff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6471896,32.8412062]},"id":"8f44c0a34a8bd12-17dfe45a8e3f5623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a8bd12-17dfe45a8e3f5623","8f44c0a34a8a0d4-17b6e513abf10864"]},"geometry":{"type":"LineString","coordinates":[[-83.64689340000001,32.841146],[-83.6471896,32.8412062]]},"id":"8a44c0a34a8ffff-17d7f4b710fbe73e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a8b824-17f7f3cb1f632241","8f44c0a34a8bd12-17dfe45a8e3f5623"]},"geometry":{"type":"LineString","coordinates":[[-83.6471896,32.8412062],[-83.6472348,32.8412154],[-83.64741910000001,32.8412529]]},"id":"8b44c0a34a8bfff-17fee412d5d90039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a8b824-17f7f3cb1f632241","8f44c0a34a89a54-13bff267375e3fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.64741910000001,32.8412529],[-83.64798850000001,32.841368700000004]]},"id":"8a44c0a34a8ffff-139fe3192de66448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34af12c6-13ffff8ffdff6c38","8f44c0a34a89a54-13bff267375e3fa2"]},"geometry":{"type":"LineString","coordinates":[[-83.64798850000001,32.841368700000004],[-83.64915210000001,32.8416439]]},"id":"8944c0a34afffff-1397f0fb95bd0654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ac41ad-1396dedc05a20ca0","8f44c0a34af12c6-13ffff8ffdff6c38"]},"geometry":{"type":"LineString","coordinates":[[-83.64915210000001,32.8416439],[-83.64944,32.841712]]},"id":"8a44c0a34ac7fff-1396df36011941b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352341a6-179fbfc183fa0e28","8f44c0a3514196e-179fff2228792db6"]},"geometry":{"type":"LineString","coordinates":[[-83.662435,32.853782],[-83.66245400000001,32.855058],[-83.66247200000001,32.857601],[-83.66245,32.858007],[-83.66237100000001,32.858668],[-83.66218,32.86036]]},"id":"8744c0a35ffffff-179eff3487053f6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352341a6-179fbfc183fa0e28","8f44c0a35230122-17b6bfe16313acf8"]},"geometry":{"type":"LineString","coordinates":[[-83.66218,32.86036],[-83.66212900000001,32.860784]]},"id":"8a44c0a35237fff-17b7bfd17d9bd7c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352c6da9-139fe1aea6923645","8f44c0a35230122-17b6bfe16313acf8"]},"geometry":{"type":"LineString","coordinates":[[-83.66212900000001,32.860784],[-83.66211200000001,32.860895],[-83.662068,32.861097],[-83.66199300000001,32.861316],[-83.66185,32.86162],[-83.66157000000001,32.862128000000006],[-83.66149100000001,32.862339],[-83.66144100000001,32.862555],[-83.66141800000001,32.862738],[-83.661404,32.862971],[-83.661377,32.863796],[-83.66137,32.864029],[-83.661376,32.864285],[-83.66139100000001,32.864451]]},"id":"8844c0a353fffff-179fe12d98533dc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352c6da9-139fe1aea6923645","8f44c0a352c6193-13fef1a17e37096a"]},"geometry":{"type":"LineString","coordinates":[[-83.66139100000001,32.864451],[-83.6614121,32.8646091]]},"id":"8b44c0a352c6fff-13dfc1a80370c4e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352c3da3-13fee1248305b8a9","8f44c0a352c6193-13fef1a17e37096a"]},"geometry":{"type":"LineString","coordinates":[[-83.6614121,32.8646091],[-83.66146400000001,32.864831],[-83.661533,32.865011],[-83.661612,32.865191]]},"id":"8a44c0a352c7fff-13b7d16abde264a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352ce5aa-1397e082003e9345","8f44c0a352c3da3-13fee1248305b8a9"]},"geometry":{"type":"LineString","coordinates":[[-83.661612,32.865191],[-83.66174500000001,32.865425],[-83.661872,32.865673]]},"id":"8944c0a352fffff-13fee0d1aa166047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352ce5aa-1397e082003e9345","8f44c0a352ca374-179ebfec0fcb3309"]},"geometry":{"type":"LineString","coordinates":[[-83.661872,32.865673],[-83.661994,32.865921],[-83.662065,32.86611],[-83.66211200000001,32.866273]]},"id":"8a44c0a352cffff-17dec02fab33581e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a352ca374-179ebfec0fcb3309","8f44c0a31961ad8-17ffff98e6ae2d8a"]},"geometry":{"type":"LineString","coordinates":[[-83.66211200000001,32.866273],[-83.662172,32.866509],[-83.662211,32.866715],[-83.66223500000001,32.866964],[-83.662245,32.867455]]},"id":"8644c0a37ffffff-17ffbfb01ef1da94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2249e291-13d6ff240d711878","8f44c0a31961ad8-17ffff98e6ae2d8a"]},"geometry":{"type":"LineString","coordinates":[[-83.662245,32.867455],[-83.66229700000001,32.868253],[-83.662356,32.869636],[-83.66243200000001,32.871098]]},"id":"8744c0a31ffffff-17f7bf5caba9d7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624445,32.871671400000004]},"id":"8f44c0a2249b412-13bebf1c3b20d1cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2249e291-13d6ff240d711878","8f44c0a2249b412-13bebf1c3b20d1cd"]},"geometry":{"type":"LineString","coordinates":[[-83.66243200000001,32.871098],[-83.6624445,32.871671400000004]]},"id":"8a44c0a2249ffff-1397ff2013aae9b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624481,32.871836800000004]},"id":"8f44c0a31b34a60-13b6bf19f3ac41b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b34a60-13b6bf19f3ac41b4","8f44c0a2249b412-13bebf1c3b20d1cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6624445,32.871671400000004],[-83.6624481,32.871836800000004]]},"id":"8944c0a31b3ffff-13feff1b12a61dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624673,32.8723467]},"id":"8f44c0a31b319b3-13f6bf0df8956bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b34a60-13b6bf19f3ac41b4","8f44c0a31b319b3-13f6bf0df8956bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6624481,32.871836800000004],[-83.662451,32.871971],[-83.6624673,32.8723467]]},"id":"8a44c0a31b37fff-13d7ff14a453ec58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b31150-17d7ff08f7ab3b08","8f44c0a31b319b3-13f6bf0df8956bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6624673,32.8723467],[-83.66247530000001,32.8725309]]},"id":"8b44c0a31b31fff-179eff0b73fc28a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a344cd8a6-13df497047455ca2","8f44c0a344eb21b-139fa91606da843b"]},"geometry":{"type":"LineString","coordinates":[[-83.6319996,32.84141],[-83.63214400000001,32.841313]]},"id":"8944c0a344fffff-13bff9432dad040e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200c3541-13b6e6f966cf128b","8f44c0a200c890b-13f774a0e44b2556"]},"geometry":{"type":"LineString","coordinates":[[-83.69854500000001,32.868590000000005],[-83.69882600000001,32.868744],[-83.69950580000001,32.8691029]]},"id":"8944c0a200fffff-13d665cdad443e1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200c890b-13f774a0e44b2556","8f44c0a200cd4a9-179e6453e93d5f74"]},"geometry":{"type":"LineString","coordinates":[[-83.69950580000001,32.8691029],[-83.699629,32.869168]]},"id":"8a44c0a200cffff-179fe47a603cb28f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69965020000001,32.8691793]},"id":"8f44c0a200cd4f5-17b77446a05d40b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200cd4f5-17b77446a05d40b6","8f44c0a200cd4a9-179e6453e93d5f74"]},"geometry":{"type":"LineString","coordinates":[[-83.699629,32.869168],[-83.69965020000001,32.8691793]]},"id":"8c44c0a200cd5ff-17b7f44d42cafe63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200cd4f5-17b77446a05d40b6","8f44c0a200cd70c-17d7e3efc160a38b"]},"geometry":{"type":"LineString","coordinates":[[-83.69965020000001,32.8691793],[-83.69978920000001,32.8692536]]},"id":"8b44c0a200cdfff-17be741b324b14c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200cd70c-17d7e3efc160a38b","8f44c0a203b2cd9-17be6327b4f23b68"]},"geometry":{"type":"LineString","coordinates":[[-83.69978920000001,32.8692536],[-83.70010930000001,32.8694246]]},"id":"8844c0a201fffff-179ef38bc7ea527a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002236,32.869485700000006]},"id":"8f44c0a203b2005-17f6f2e04440f689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203b2005-17f6f2e04440f689","8f44c0a203b2cd9-17be6327b4f23b68"]},"geometry":{"type":"LineString","coordinates":[[-83.70010930000001,32.8694246],[-83.7002236,32.869485700000006]]},"id":"8b44c0a203b2fff-17d7e303f92eb857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70041880000001,32.8695919]},"id":"8f44c0a203b3db2-17b6f266452c4c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203b2005-17f6f2e04440f689","8f44c0a203b3db2-17b6f266452c4c68"]},"geometry":{"type":"LineString","coordinates":[[-83.7002236,32.869485700000006],[-83.70025600000001,32.869503],[-83.70041880000001,32.8695919]]},"id":"8b44c0a203b2fff-1797f2a33a29a6d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203b3db2-17b6f266452c4c68","8f44c0a203b3d58-17d7e217ded115a3"]},"geometry":{"type":"LineString","coordinates":[[-83.70041880000001,32.8695919],[-83.7005443,32.8696604]]},"id":"8a44c0a203b7fff-17be723f060523bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203b38f1-17f771d2d6bad27f","8f44c0a203b3d58-17d7e217ded115a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7005443,32.8696604],[-83.7006547,32.8697207]]},"id":"8b44c0a203b3fff-17f6e1f555e83430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203b16ac-17def131ecc445ad","8f44c0a203b38f1-17f771d2d6bad27f"]},"geometry":{"type":"LineString","coordinates":[[-83.7006547,32.8697207],[-83.700778,32.869788],[-83.7009122,32.8698575]]},"id":"8a44c0a203b7fff-17b6e1829cac0c76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203b16ac-17def131ecc445ad","8f44c0a203843a9-17965fcbc6880d26"]},"geometry":{"type":"LineString","coordinates":[[-83.7009122,32.8698575],[-83.70148520000001,32.8701541]]},"id":"8944c0a203bffff-17bfe07ed6f5b11d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20385a6b-17b77e6fccc67093","8f44c0a203843a9-17965fcbc6880d26"]},"geometry":{"type":"LineString","coordinates":[[-83.70148520000001,32.8701541],[-83.70157,32.870198],[-83.702042,32.870437]]},"id":"8944c0a203bffff-17deff1de6ee8972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20385a6b-17b77e6fccc67093","8f44c0a203a8259-13b65cb8693cc044"]},"geometry":{"type":"LineString","coordinates":[[-83.702042,32.870437],[-83.702218,32.870528],[-83.70274500000001,32.8708128]]},"id":"8a44c0a203affff-17bfdd93bd819984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a203a8259-13b65cb8693cc044","8f44c0a2035ec74-17dfd4abcdfa85c1"]},"geometry":{"type":"LineString","coordinates":[[-83.70274500000001,32.8708128],[-83.703186,32.871051],[-83.70421900000001,32.871567],[-83.705347,32.872149],[-83.70604200000001,32.872518]]},"id":"8844c0a203fffff-13b778b15504fefa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2035d208-179e52442e7234ad","8f44c0a2035ec74-17dfd4abcdfa85c1"]},"geometry":{"type":"LineString","coordinates":[[-83.70604200000001,32.872518],[-83.70622300000001,32.872628],[-83.70638600000001,32.872717],[-83.70702700000001,32.87305]]},"id":"8a44c0a2035ffff-17f7f379f1930f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c94464-17df7f01400ac195","8f44c0a2035d208-179e52442e7234ad"]},"geometry":{"type":"LineString","coordinates":[[-83.70702700000001,32.87305],[-83.7083628,32.8737463]]},"id":"8844c0a203fffff-17f7f0a2bc8d4bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c94464-17df7f01400ac195","8f44c0a21c802a3-13964bb8aa4a2bdb"]},"geometry":{"type":"LineString","coordinates":[[-83.7083628,32.8737463],[-83.708792,32.87397],[-83.709646,32.874422],[-83.7097078,32.8744548]]},"id":"8944c0a21cbffff-13be4d5ca7af5dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a0417131e-17dfe46d9e0c3441","8f44c0a04140d91-13f6b46a6b46fb3c"]},"geometry":{"type":"LineString","coordinates":[[-83.67337350000001,32.890127],[-83.6733945,32.8904068],[-83.6733786,32.8905825]]},"id":"8944c0a0417ffff-17d7e4666abca6fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a04158c51-13ffe5ec62dc99b4","8f44c0a04140d91-13f6b46a6b46fb3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6733786,32.8905825],[-83.67334260000001,32.8907298],[-83.6733073,32.8908634],[-83.6732683,32.8909664],[-83.673043,32.891357],[-83.67276100000001,32.891647]]},"id":"8944c0a0417ffff-13d7e506772869ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a04158c51-13ffe5ec62dc99b4","8f44c0a040ea040-13beac1fefe77196"]},"geometry":{"type":"LineString","coordinates":[[-83.67276100000001,32.891647],[-83.67161300000001,32.893119],[-83.67126400000001,32.893574],[-83.671053,32.893849],[-83.67051400000001,32.894523],[-83.67035,32.894694],[-83.67022100000001,32.894813]]},"id":"8844c0a041fffff-17f7e8f9b0186275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a28a4e889-17d7ff706408d34d","8f44c0a29d91cdc-13de84d6dcb168b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7387411,32.924567200000006],[-83.7396635,32.9235196],[-83.74065,32.922402000000005],[-83.740953,32.922071]]},"id":"8744c0a28ffffff-13d6c225794297a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a28a4e889-17d7ff706408d34d","8f44c0a2d7b1b41-139ff5cf66550660"]},"geometry":{"type":"LineString","coordinates":[[-83.740953,32.922071],[-83.741093,32.921933],[-83.741273,32.921776],[-83.741524,32.921583000000005],[-83.741826,32.921382],[-83.74258300000001,32.920901],[-83.74285300000001,32.920713],[-83.74306200000001,32.920532],[-83.743243,32.920336],[-83.743369,32.920163],[-83.743514,32.919907],[-83.743882,32.919083],[-83.74471000000001,32.917254],[-83.74489700000001,32.916888]]},"id":"8644c0a2fffffff-1795f9ddd90d8a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d442854-1395f4a86d09b855","8f44c0a2d7b1b41-139ff5cf66550660"]},"geometry":{"type":"LineString","coordinates":[[-83.74489700000001,32.916888],[-83.745174,32.916172],[-83.74522,32.916013],[-83.745265,32.915821],[-83.745316,32.915542],[-83.74535300000001,32.915146],[-83.74536400000001,32.914885000000005],[-83.74536900000001,32.914614]]},"id":"8744c0a2dffffff-17f7f5056701bec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d442854-1395f4a86d09b855","8f44c0a2d442952-13f7f4a68ed6855d"]},"geometry":{"type":"LineString","coordinates":[[-83.74536900000001,32.914614],[-83.745372,32.914565]]},"id":"8c44c0a2d4429ff-1397f4a77ef72f77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d442952-13f7f4a68ed6855d","8f44c0a2d442920-13ddf4a4a5233a85"]},"geometry":{"type":"LineString","coordinates":[[-83.745372,32.914565],[-83.74537500000001,32.914496]]},"id":"8a44c0a2d447fff-13ddf4a59d9b6ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d5542e4-13dff47348b83823","8f44c0a2d442920-13ddf4a4a5233a85"]},"geometry":{"type":"LineString","coordinates":[[-83.74537500000001,32.914496],[-83.74545400000001,32.911229]]},"id":"8844c0a2d5fffff-17dff48bfb260c51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7719431,32.9024525]},"id":"8f44c0b5ece0a68-17f5f3c793f67d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b5ece0a68-17f5f3c793f67d20","8f44c0b5ec8c916-139dba5e377df09c"]},"geometry":{"type":"LineString","coordinates":[[-83.7719431,32.9024525],[-83.7718232,32.902447200000005],[-83.77133160000001,32.9024255],[-83.7693897,32.901659800000004],[-83.7692445,32.9015257]]},"id":"8844c0b5edfffff-1795f7288870e531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7680261,32.901390500000005]},"id":"8f44c0b5ec822c4-13ddbd57b90f9a0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b5ec8c916-139dba5e377df09c","8f44c0b5ec822c4-13ddbd57b90f9a0c"]},"geometry":{"type":"LineString","coordinates":[[-83.7692445,32.9015257],[-83.7690678,32.9013626],[-83.76873520000001,32.9012905],[-83.76839190000001,32.9013446],[-83.7680261,32.901390500000005]]},"id":"8944c0b5ecbffff-13b5bbcab30a98ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443574,32.8576629]},"id":"8f44c0a30b1cd83-1397fb44a5742d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1cd83-1397fb44a5742d05","8f44c0a30b11166-179ffba2834c746d"]},"geometry":{"type":"LineString","coordinates":[[-83.6443574,32.8576629],[-83.64420720000001,32.8574871]]},"id":"8944c0a30b3ffff-17d6eb7395a50749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b11166-179ffba2834c746d","8f44c0a30b16b2e-17fffd0599c51b0b"]},"geometry":{"type":"LineString","coordinates":[[-83.64420720000001,32.8574871],[-83.6436391,32.856822300000005]]},"id":"8a44c0a30b17fff-17dffc54030b5266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b16b2e-17fffd0599c51b0b","8f44c0a30849609-17f7ed78e55b86aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6436391,32.856822300000005],[-83.6434546,32.856606400000004]]},"id":"8944c0a30b3ffff-17b6ed3f3d62fb46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64188890000001,32.8253117]},"id":"8f44c0b1a60a75a-139ff14b7df88c89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.640927,32.824513]},"id":"8f44c0b1a61e861-179ef3a4ade6cdaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a61e861-179ef3a4ade6cdaf","8f44c0b1a60a75a-139ff14b7df88c89"]},"geometry":{"type":"LineString","coordinates":[[-83.64188890000001,32.8253117],[-83.64187390000001,32.8252438],[-83.64185880000001,32.8251884],[-83.6418182,32.8251012],[-83.6417584,32.8250224],[-83.64166900000001,32.824956],[-83.64112,32.824629],[-83.640927,32.824513]]},"id":"8944c0b1a63ffff-17f6f252e6e9cc23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a61e861-179ef3a4ade6cdaf","8f44c0b1a6138d6-17def4d28d70607b"]},"geometry":{"type":"LineString","coordinates":[[-83.640927,32.824513],[-83.640444,32.824208]]},"id":"8944c0b1a63ffff-17bff43b93b47eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a612ac8-1797f55d4f504d8c","8f44c0b1a6138d6-17def4d28d70607b"]},"geometry":{"type":"LineString","coordinates":[[-83.640444,32.824208],[-83.64022200000001,32.82407]]},"id":"8a44c0b1a617fff-17bef517ecd0cd14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a612ac8-1797f55d4f504d8c","8f44c0b1a6a5722-179ef6e1756f630b"]},"geometry":{"type":"LineString","coordinates":[[-83.64022200000001,32.82407],[-83.6396009,32.8236962]]},"id":"8844c0b1a7fffff-179ef61f688d4a4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6a6d2b-13fef8d56a1e98a2","8f44c0b1a6a5722-179ef6e1756f630b"]},"geometry":{"type":"LineString","coordinates":[[-83.6396009,32.8236962],[-83.638801,32.823211]]},"id":"8944c0b1a6bffff-1796f7db7fef7eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63812700000001,32.822806]},"id":"8f44c0b1a79a0e5-13fffa7aa0b498de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6a6d2b-13fef8d56a1e98a2","8f44c0b1a79a0e5-13fffa7aa0b498de"]},"geometry":{"type":"LineString","coordinates":[[-83.638801,32.823211],[-83.63812700000001,32.822806]]},"id":"8a44c0b1a79ffff-13fef9a80891cff4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a79a0e5-13fffa7aa0b498de","8f44c0ba9b68948-13fefc122e11c92b"]},"geometry":{"type":"LineString","coordinates":[[-83.63812700000001,32.822806],[-83.63747500000001,32.822417]]},"id":"8844c0b1a7fffff-13f6fb4668fe2eb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636696,32.821947]},"id":"8f44c0ba9b63a8a-13d6fdf9030170dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b63a8a-13d6fdf9030170dc","8f44c0ba9b68948-13fefc122e11c92b"]},"geometry":{"type":"LineString","coordinates":[[-83.63747500000001,32.822417],[-83.63678800000001,32.821992],[-83.636696,32.821947]]},"id":"8944c0ba9b7ffff-13f7fd0436d2775d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b63a8a-13d6fdf9030170dc","8f44c0ba9b6258d-17dfffafcf75ee56"]},"geometry":{"type":"LineString","coordinates":[[-83.636696,32.821947],[-83.6363144,32.8217165],[-83.63599400000001,32.821523]]},"id":"8944c0ba9b7ffff-13d6fed4603c79af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6353,32.821095]},"id":"8f44c0ba9b7469a-17d761618faf08ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b7469a-17d761618faf08ec","8f44c0ba9b6258d-17dfffafcf75ee56"]},"geometry":{"type":"LineString","coordinates":[[-83.63599400000001,32.821523],[-83.6353,32.821095]]},"id":"8a44c0ba9b77fff-17d72088abdcc6a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b2b04e-17fff2cdce196bb7","8f44c0ba9b7469a-17d761618faf08ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6353,32.821095],[-83.63476030000001,32.8207832],[-83.63471720000001,32.8207583]]},"id":"8844c0ba9bfffff-17d72217a72d838f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9b2b04e-17fff2cdce196bb7","8f44c0ba9b056ed-17bf54e987e6ef22"]},"geometry":{"type":"LineString","coordinates":[[-83.63471720000001,32.8207583],[-83.634701,32.820749],[-83.634465,32.820613200000004],[-83.63438830000001,32.820569],[-83.6341828,32.8204428],[-83.63414300000001,32.820417],[-83.63385360000001,32.8202421]]},"id":"8944c0ba9b3ffff-17df23dc81b011a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9848a4c-13b729ee4f0da73a","8f44c0ba9b056ed-17bf54e987e6ef22"]},"geometry":{"type":"LineString","coordinates":[[-83.63385360000001,32.8202421],[-83.63343,32.819988],[-83.633142,32.819815000000006],[-83.631798,32.819021]]},"id":"8844c0ba9bfffff-13bfb76b48dd4c48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652939,32.830600000000004]},"id":"8f44c0b1b5816f2-17f7d65124d943dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b582960-179ed78f15ab8627","8f44c0b1b5816f2-17f7d65124d943dd"]},"geometry":{"type":"LineString","coordinates":[[-83.652939,32.830600000000004],[-83.6528419,32.8305361],[-83.65270240000001,32.830450400000004],[-83.6524303,32.8300204]]},"id":"8a44c0b1b587fff-17d7f7018469be5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65141050000001,32.830128]},"id":"8f44c0b1b5902b1-17deda0c7f167a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b5902b1-17deda0c7f167a5a","8f44c0b1b582960-179ed78f15ab8627"]},"geometry":{"type":"LineString","coordinates":[[-83.6524303,32.8300204],[-83.65221430000001,32.829742700000004],[-83.6521501,32.8297073],[-83.652071,32.8297042],[-83.65198720000001,32.8297133],[-83.65141050000001,32.830128]]},"id":"8944c0b1b5bffff-17bef8c0933b3e9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4b1b56-13b6f8f3d16b9811","8f44c0b1b4847a6-13b7f8fceed91a07"]},"geometry":{"type":"LineString","coordinates":[[-83.65184500000001,32.832751],[-83.6518595,32.832343800000004]]},"id":"8944c0b1b4bffff-13b6f8f86afd0898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6518793,32.8319812]},"id":"8f44c0b1b4b5a8a-13d6d8e775969636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4b1b56-13b6f8f3d16b9811","8f44c0b1b4b5a8a-13d6d8e775969636"]},"geometry":{"type":"LineString","coordinates":[[-83.6518595,32.832343800000004],[-83.6518793,32.8319812]]},"id":"8a44c0b1b4b7fff-13d7d8edac147e80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b599116-17b7d7c860b196bd","8f44c0b1b4b5a8a-13d6d8e775969636"]},"geometry":{"type":"LineString","coordinates":[[-83.6518793,32.8319812],[-83.6520096,32.831710300000005],[-83.65233860000001,32.8313173]]},"id":"8844c0b1b5fffff-13fed8644197943c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b599116-17b7d7c860b196bd","8f44c0b1b5816f2-17f7d65124d943dd"]},"geometry":{"type":"LineString","coordinates":[[-83.65233860000001,32.8313173],[-83.652939,32.830600000000004]]},"id":"8944c0b1b5bffff-17d7f70cc807d656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b58115a-179ef5dc94a1e66c","8f44c0b1b5816f2-17f7d65124d943dd"]},"geometry":{"type":"LineString","coordinates":[[-83.652939,32.830600000000004],[-83.6531255,32.830426200000005]]},"id":"8b44c0b1b581fff-17bef616e94687e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b58115a-179ef5dc94a1e66c","8f44c0b1b5aea30-17bed415626dacf2"]},"geometry":{"type":"LineString","coordinates":[[-83.6531255,32.830426200000005],[-83.65334340000001,32.8302427],[-83.65385380000001,32.82987]]},"id":"8944c0b1b5bffff-17d7d4fb91f645db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b5106a6-13fef2477ebb939b","8f44c0b1b5aea30-17bed415626dacf2"]},"geometry":{"type":"LineString","coordinates":[[-83.65385380000001,32.82987],[-83.65459290000001,32.8293611]]},"id":"8844c0b1b5fffff-139fd32e64664c38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6548085,32.829212600000005]},"id":"8f44c0b1b510155-1397f1c0b38b4569"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b510155-1397f1c0b38b4569","8f44c0b1b5106a6-13fef2477ebb939b"]},"geometry":{"type":"LineString","coordinates":[[-83.65459290000001,32.8293611],[-83.6548085,32.829212600000005]]},"id":"8b44c0b1b510fff-13d6d20410b98e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b081a244c-179633d4130f83d3","8f44c0b081a2674-17deb3ad0c435af3"]},"geometry":{"type":"LineString","coordinates":[[-83.732664,32.814583400000004],[-83.7326611,32.81454],[-83.73263920000001,32.8145005],[-83.7326015,32.8144707]]},"id":"8b44c0b081a2fff-17b7d3b9cc29218e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324378,32.8146548]},"id":"8f44c0b08184d90-1797543a6930c4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b081a244c-179633d4130f83d3","8f44c0b08184d90-1797543a6930c4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7326015,32.8144707],[-83.7325532,32.8144548],[-83.7325014,32.814455200000005],[-83.73245340000001,32.8144717],[-83.7324162,32.8145019],[-83.73239500000001,32.8145417],[-83.732393,32.8145852],[-83.7324102,32.8146262],[-83.7324378,32.8146548]]},"id":"8944c0b081bffff-17b6d42cec0321c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08184d54-179713ee7b1d9fa2","8f44c0b08184d90-1797543a6930c4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7324378,32.8146548],[-83.7324796,32.8146755],[-83.7325191,32.8146828],[-83.7325593,32.814680100000004]]},"id":"8c44c0b08184dff-1797b4155441f56c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a28660025-17deb13a0265f887","8f44c0a29513680-13fefa49f8e2d825"]},"geometry":{"type":"LineString","coordinates":[[-83.72711360000001,32.9264043],[-83.72824100000001,32.9268465],[-83.728944,32.9271308],[-83.72950780000001,32.9273662],[-83.7304603,32.927793],[-83.73114310000001,32.9281181],[-83.73179970000001,32.9284452],[-83.73298580000001,32.929067100000005],[-83.7341473,32.929689700000004],[-83.7349765,32.930136600000004],[-83.7365089,32.9309615]]},"id":"8644c0a2fffffff-17b7759f69149cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7741798,32.9400758]},"id":"8f44c0b5a2ea625-13bfee51a06a1ac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b5a2ea625-13bfee51a06a1ac1","8f44c0a29513680-13fefa49f8e2d825"]},"geometry":{"type":"LineString","coordinates":[[-83.7365089,32.9309615],[-83.7518122,32.9391602],[-83.75214340000001,32.9393222],[-83.7524734,32.939469700000004],[-83.7527496,32.939582200000004],[-83.7530232,32.9396835],[-83.7533008,32.939779200000004],[-83.7535781,32.9398622],[-83.75395730000001,32.9399643],[-83.75433550000001,32.9400533],[-83.754717,32.9401292],[-83.75510320000001,32.940191500000005],[-83.75550360000001,32.940240100000004],[-83.7559032,32.9402727],[-83.75630290000001,32.940291900000005],[-83.7566998,32.940299],[-83.7583055,32.940280200000004],[-83.761775,32.940232],[-83.76472700000001,32.9401966],[-83.767414,32.9401371],[-83.7712777,32.9401062],[-83.7741798,32.9400758]]},"id":"8444c0bffffffff-13fdfdbca4c8a43f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640408,32.8776102]},"id":"8f44c0b502b6cdb-13bfe7128f30db67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5074dc23-13bff822d8cf2512","8f44c0b502b6cdb-13bfe7128f30db67"]},"geometry":{"type":"LineString","coordinates":[[-83.7636051,32.8776187],[-83.7639046,32.8776053],[-83.7640408,32.8776102]]},"id":"8944c0b5077ffff-13bff79aba105116"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649674,32.8783485]},"id":"8f44c0b502b1a96-1397d4cf6373e97f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b502b1a96-1397d4cf6373e97f","8f44c0b502b6cdb-13bfe7128f30db67"]},"geometry":{"type":"LineString","coordinates":[[-83.7640408,32.8776102],[-83.7641579,32.8776306],[-83.764328,32.8776643],[-83.76455370000001,32.8777774],[-83.7647457,32.8779215],[-83.76485190000001,32.878041800000005],[-83.7649184,32.8781632],[-83.76494670000001,32.878246100000005],[-83.7649674,32.8783485]]},"id":"8a44c0b502b7fff-13f7c5bad37ba970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b502b1331-13bfd4c9558f47e1","8f44c0b502b1a96-1397d4cf6373e97f"]},"geometry":{"type":"LineString","coordinates":[[-83.7649674,32.8783485],[-83.76497590000001,32.8783807],[-83.76497710000001,32.8784105]]},"id":"8b44c0b502b1fff-139fc4cb5a630005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b502844a2-13bff4c3e9d31463","8f44c0b502b1331-13bfd4c9558f47e1"]},"geometry":{"type":"LineString","coordinates":[[-83.76497710000001,32.8784105],[-83.7649858,32.878633900000004]]},"id":"8944c0b502bffff-13f5e4c69d1e966e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76499150000001,32.878985]},"id":"8f44c0b50280cd4-1795e4c0512e78a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b502844a2-13bff4c3e9d31463","8f44c0b50280cd4-1795e4c0512e78a8"]},"geometry":{"type":"LineString","coordinates":[[-83.7649858,32.878633900000004],[-83.76499150000001,32.878985]]},"id":"8a44c0b50287fff-13b7f4c2161a2e1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649882,32.8796387]},"id":"8f44c0b5028376c-17bff4c26baa8238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5028376c-17bff4c26baa8238","8f44c0b50280cd4-1795e4c0512e78a8"]},"geometry":{"type":"LineString","coordinates":[[-83.76499150000001,32.878985],[-83.7649925,32.8791139],[-83.7649882,32.8796387]]},"id":"8a44c0b50287fff-17f5f4c0d57a74ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649803,32.879889]},"id":"8f44c0b5029d8cc-17dfe4c75476155a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5028376c-17bff4c26baa8238","8f44c0b5029d8cc-17dfe4c75476155a"]},"geometry":{"type":"LineString","coordinates":[[-83.7649882,32.8796387],[-83.7649803,32.879889]]},"id":"8944c0b502bffff-17fdf4c4e819d78c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7088552,32.924908300000006]},"id":"8f44c0a2a060a48-17b7fdcd8107417f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a060a48-17b7fdcd8107417f","8f44c0a2a0653a3-13ffed23a60d1ee7"]},"geometry":{"type":"LineString","coordinates":[[-83.70912700000001,32.924819],[-83.7088552,32.924908300000006]]},"id":"8a44c0a2a067fff-1797dd789b9f0faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7084785,32.9250321]},"id":"8f44c0a2a0606c3-17975eb8f65d2db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a060a48-17b7fdcd8107417f","8f44c0a2a0606c3-17975eb8f65d2db6"]},"geometry":{"type":"LineString","coordinates":[[-83.7088552,32.924908300000006],[-83.7084785,32.9250321]]},"id":"8a44c0a2a067fff-17de6e4342c61db8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a0606c3-17975eb8f65d2db6","8f44c0a2a044834-17f6cfa9e4c7b5b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7084785,32.9250321],[-83.70815300000001,32.925139],[-83.70810800000001,32.925162],[-83.708093,32.925188]]},"id":"8a44c0a2a067fff-17bf5f360fa9bad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649045,32.880020300000005]},"id":"8f44c0b5029d05a-179df4f6b8c463e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029a96e-1795d6eac10c8f43","8f44c0b5029d05a-179df4f6b8c463e7"]},"geometry":{"type":"LineString","coordinates":[[-83.76410440000001,32.880006900000005],[-83.7649045,32.880020300000005]]},"id":"8a44c0b5029ffff-179dc5f0c8ce9e2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029d05a-179df4f6b8c463e7","8f44c0b5028e6e6-17b5c422854bb8b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7649045,32.880020300000005],[-83.76524400000001,32.880026]]},"id":"8944c0b502bffff-179fc48caf778070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5028894c-17b7c288234742e2","8f44c0b5028e6e6-17b5c422854bb8b0"]},"geometry":{"type":"LineString","coordinates":[[-83.76524400000001,32.880026],[-83.76590060000001,32.880037200000004]]},"id":"8a44c0b5028ffff-17b7c3555748fde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b76ce9-17debd1ca29f819b","8f44c0a21b6498a-17b6786d77c2035e"]},"geometry":{"type":"LineString","coordinates":[[-83.72879900000001,32.879713],[-83.7307177,32.8796422]]},"id":"8844c0a21bfffff-17d69ac51ff7d92e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b6498a-17b6786d77c2035e","8f44c0b524cb1a6-17b6d77b6d16832e"]},"geometry":{"type":"LineString","coordinates":[[-83.7307177,32.8796422],[-83.731105,32.8796205]]},"id":"8944c0b524fffff-17bfb7f47edd3fe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52715149-17f67c086012f9a7","8f44c0b524cb1a6-17b6d77b6d16832e"]},"geometry":{"type":"LineString","coordinates":[[-83.731105,32.8796205],[-83.73157830000001,32.879581800000004],[-83.73184210000001,32.879568],[-83.73375850000001,32.8795104],[-83.73482800000001,32.8794947],[-83.7357946,32.879514300000004]]},"id":"8744c0b52ffffff-17ff91c273422da9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52715149-17f67c086012f9a7","8f44c0b520de590-17fee54a833e5bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.7357946,32.879514300000004],[-83.738556,32.8795566]]},"id":"8844c0b527fffff-17ffb8a97f3bb41d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b520ce832-17978137660fcfc3","8f44c0b520de590-17fee54a833e5bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.738556,32.8795566],[-83.74022500000001,32.8795768]]},"id":"8944c0b520fffff-17973340f6e493bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b520ce832-17978137660fcfc3","8f44c0b523b4c13-1797fd4b0e08bb55"]},"geometry":{"type":"LineString","coordinates":[[-83.74022500000001,32.8795768],[-83.741832,32.8795939]]},"id":"8844c0b521fffff-179dff4137ec5951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6529174,32.8291668]},"id":"8f44c0b1b5a2184-13f7d65ea10c25ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65284670000001,32.8292164]},"id":"8f44c0b1b5a254a-1396d68ad649b00b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b5a254a-1396d68ad649b00b","8f44c0b1b5a2184-13f7d65ea10c25ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6529174,32.8291668],[-83.6524995,32.8287576],[-83.6524244,32.828780200000004],[-83.65239220000001,32.8288207],[-83.6524163,32.828895100000004],[-83.65274090000001,32.8292061],[-83.65284670000001,32.8292164]]},"id":"8944c0b1b5bffff-1397f7134769ff82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b5a254a-1396d68ad649b00b","8f44c0b1b5a2184-13f7d65ea10c25ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65284670000001,32.8292164],[-83.6529174,32.8291668]]},"id":"8b44c0b1b5a2fff-1396d674bd14f667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b5a2970-13bed5db7323ce58","8f44c0b1b5a2184-13f7d65ea10c25ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6529174,32.8291668],[-83.65312730000001,32.829047200000005]]},"id":"8b44c0b1b5a2fff-13dff61d0979aa14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65342720000001,32.828876300000005]},"id":"8f44c0b1b5a46f3-13bff5200111d0b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b5a46f3-13bff5200111d0b7","8f44c0b1b5a2970-13bed5db7323ce58"]},"geometry":{"type":"LineString","coordinates":[[-83.65312730000001,32.829047200000005],[-83.65342720000001,32.828876300000005]]},"id":"8a44c0b1b5a7fff-13f7f57dc6a0fe6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b5a46f3-13bff5200111d0b7","8f44c0b1a24b8de-13f7f37621811c57"]},"geometry":{"type":"LineString","coordinates":[[-83.65342720000001,32.828876300000005],[-83.6540875,32.8285324],[-83.6541086,32.828521]]},"id":"8844c0b1b5fffff-13d6d44b05f8c684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65475,32.828296800000004]},"id":"8f44c0b1b532595-13d7d1e5477508ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b532595-13d7d1e5477508ab","8f44c0b1a24b8de-13f7f37621811c57"]},"geometry":{"type":"LineString","coordinates":[[-83.6541086,32.828521],[-83.65425730000001,32.828440900000004],[-83.65437770000001,32.8283804],[-83.6544559,32.8283471],[-83.6545866,32.8283107],[-83.6547008,32.8282972],[-83.65475,32.828296800000004]]},"id":"8a44c0b1a24ffff-139fd2b33db4e553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6549482,32.8283153]},"id":"8f44c0b1b532186-13f7d1696072f1ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b532186-13f7d1696072f1ac","8f44c0b1b532595-13d7d1e5477508ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65475,32.828296800000004],[-83.65482010000001,32.828296300000005],[-83.6549269,32.828310300000005],[-83.6549482,32.8283153]]},"id":"8b44c0b1b532fff-13ded1a7118a2ab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552738,32.8284199]},"id":"8f44c0b1b530692-13b6f09dee1db00e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b532186-13f7d1696072f1ac","8f44c0b1b530692-13b6f09dee1db00e"]},"geometry":{"type":"LineString","coordinates":[[-83.6549482,32.8283153],[-83.6550167,32.8283313],[-83.6552738,32.8284199]]},"id":"8b44c0b1b532fff-1396d1032eac1995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6554885,32.826731200000005]},"id":"8f44c0b1bc930c9-1797d017bb5dd6bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1bc930c9-1797d017bb5dd6bb","8f44c0b1bc93788-179fd073dfcd908b"]},"geometry":{"type":"LineString","coordinates":[[-83.6553411,32.826751300000005],[-83.65537590000001,32.826764700000005],[-83.6554141,32.8267672],[-83.6554437,32.8267614],[-83.65547640000001,32.8267447],[-83.6554885,32.826731200000005]]},"id":"8b44c0b1bc93fff-1797d04400e04791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1bc930c9-1797d017bb5dd6bb","8f44c0b1bc93552-17b7d07b05fa5edf"]},"geometry":{"type":"LineString","coordinates":[[-83.6554885,32.826731200000005],[-83.6555034,32.8267145],[-83.65551350000001,32.8266835],[-83.6555111,32.8266543],[-83.6554962,32.8266247],[-83.6554706,32.8266015],[-83.65543670000001,32.8265867],[-83.65540700000001,32.8265825],[-83.6553691,32.826587100000005],[-83.6553296,32.826606500000004]]},"id":"8b44c0b1bc93fff-17d6d02f689d0746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1bc93552-17b7d07b05fa5edf","8f44c0b1bc93788-179fd073dfcd908b"]},"geometry":{"type":"LineString","coordinates":[[-83.6553296,32.826606500000004],[-83.6553062,32.8266319],[-83.6552935,32.8266751],[-83.6553002,32.8267067],[-83.6553193,32.8267346],[-83.6553411,32.826751300000005]]},"id":"8b44c0b1bc93fff-17f7d0878b6df9de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4b509b-13ded9682dfb2508","8f44c0b1b4b5a8a-13d6d8e775969636"]},"geometry":{"type":"LineString","coordinates":[[-83.6516734,32.8319648],[-83.6517434,32.831978],[-83.6518793,32.8319812]]},"id":"8b44c0b1b4b5fff-13d7d928076dfafb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652596,32.831970000000005]},"id":"8f44c0b1b4a0d6e-13dfd727880f21af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4a0d6e-13dfd727880f21af","8f44c0b1b4b5a8a-13d6d8e775969636"]},"geometry":{"type":"LineString","coordinates":[[-83.6518793,32.8319812],[-83.652596,32.831970000000005]]},"id":"8944c0b1b4bffff-13d6d8078f2da6a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6526309,32.8280905]},"id":"8f44c0b1a2584dc-17d6d711b0c7ef91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65248290000001,32.8282005]},"id":"8f44c0b1a25aa99-139fd76e372214f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a25aa99-139fd76e372214f5","8f44c0b1a2584dc-17d6d711b0c7ef91"]},"geometry":{"type":"LineString","coordinates":[[-83.6526309,32.8280905],[-83.65248290000001,32.8282005]]},"id":"8a44c0b1a25ffff-17f6f73ffdae0b06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65264160000001,32.828356400000004]},"id":"8f44c0b1a25bce0-13fed70b082d16e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a25aa99-139fd76e372214f5","8f44c0b1a25bce0-13fed70b082d16e7"]},"geometry":{"type":"LineString","coordinates":[[-83.65248290000001,32.8282005],[-83.65205160000001,32.828521],[-83.6522044,32.8286675],[-83.65264160000001,32.828356400000004]]},"id":"8844c0b1a3fffff-13bef7dab5dcc59c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a25bce0-13fed70b082d16e7","8f44c0b1a25aa99-139fd76e372214f5"]},"geometry":{"type":"LineString","coordinates":[[-83.65264160000001,32.828356400000004],[-83.65248290000001,32.8282005]]},"id":"8a44c0b1a25ffff-13ded73cabc96228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b496372-13d6dcb24f775490","8f44c0b1b4b26eb-13befbc73a04b771"]},"geometry":{"type":"LineString","coordinates":[[-83.650326,32.832794],[-83.65042700000001,32.832668000000005],[-83.65060600000001,32.832459],[-83.6507021,32.8323498]]},"id":"8944c0b1b4bffff-13d6fc3e09aeaca3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4b2142-13bedb67e45602fe","8f44c0b1b4b26eb-13befbc73a04b771"]},"geometry":{"type":"LineString","coordinates":[[-83.6507021,32.8323498],[-83.650845,32.832168800000005],[-83.6508546,32.8321192]]},"id":"8a44c0b1b4b7fff-13f7fb91f4ff8188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b510155-1397f1c0b38b4569","8f44c0b1b530692-13b6f09dee1db00e"]},"geometry":{"type":"LineString","coordinates":[[-83.6548085,32.829212600000005],[-83.655046,32.828825800000004],[-83.6552738,32.8284199]]},"id":"8944c0b1b53ffff-139fd12cec172402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6788697,32.7837583]},"id":"8f44c0b1c8a0b83-139ef70271df82f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8a0b83-139ef70271df82f2","8f44c0b1c998944-139f98636357df33"]},"geometry":{"type":"LineString","coordinates":[[-83.67830500000001,32.782536],[-83.678419,32.782666],[-83.678533,32.782808],[-83.678623,32.782946],[-83.67868800000001,32.783054],[-83.678779,32.783262],[-83.678808,32.783349],[-83.678865,32.783622],[-83.6788697,32.7837583]]},"id":"8844c0b1c9fffff-1397d78230bb4e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.678863,32.785279]},"id":"8f44c0b1c88c829-17dff706a679a38f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c8a0b83-139ef70271df82f2","8f44c0b1c88c829-17dff706a679a38f"]},"geometry":{"type":"LineString","coordinates":[[-83.6788697,32.7837583],[-83.678875,32.783909],[-83.678866,32.78499],[-83.678863,32.785279]]},"id":"8944c0b1c8bffff-17f6b70297787ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6796321,32.778449]},"id":"8f44c0b0264469b-17b6b525fff444d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0264469b-17b6b525fff444d2","8f44c0b02648d2a-13def3a52b10b188"]},"geometry":{"type":"LineString","coordinates":[[-83.6802478,32.7795694],[-83.6798598,32.7791069],[-83.6797614,32.7789431],[-83.6797123,32.778798],[-83.6796321,32.778449]]},"id":"8944c0b0267ffff-1396f48d4a826e8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b026444a0-17b6b543798ad96a","8f44c0b0264469b-17b6b525fff444d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6796321,32.778449],[-83.67958490000001,32.7782434]]},"id":"8a44c0b02647fff-17f6f534b5db2499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.679545,32.7780697]},"id":"8f44c0b02671235-17b7955c6aaeac2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b026444a0-17b6b543798ad96a","8f44c0b02671235-17b7955c6aaeac2d"]},"geometry":{"type":"LineString","coordinates":[[-83.67958490000001,32.7782434],[-83.679545,32.7780697]]},"id":"8944c0b0267ffff-17fff54fe8627b49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67880650000001,32.7760587]},"id":"8f44c0b0262cb13-13deb729fda61687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0262cb13-13deb729fda61687","8f44c0b02671235-17b7955c6aaeac2d"]},"geometry":{"type":"LineString","coordinates":[[-83.679545,32.7780697],[-83.6795415,32.778054600000004],[-83.6795039,32.7779193],[-83.6794261,32.7777727],[-83.67909080000001,32.777466000000004],[-83.6790292,32.7773442],[-83.67902380000001,32.7772359],[-83.6790426,32.7768503],[-83.67880650000001,32.7764286],[-83.67880650000001,32.7760587]]},"id":"8844c0b027fffff-13d7967bdd236a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6784686,32.7759009]},"id":"8f44c0b0262cd93-13fe97fd2dc34694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0262cd93-13fe97fd2dc34694","8f44c0b0262cb13-13deb729fda61687"]},"geometry":{"type":"LineString","coordinates":[[-83.67880650000001,32.7760587],[-83.6788119,32.7758422],[-83.67880120000001,32.7756618],[-83.67872870000001,32.7755604],[-83.6785973,32.775526500000005],[-83.6784793,32.7755468],[-83.67839880000001,32.775619],[-83.6783559,32.7757272],[-83.67838540000001,32.7758242],[-83.6784686,32.7759009]]},"id":"8844c0b027fffff-17f7d7a1a5e9e34b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0262cd93-13fe97fd2dc34694","8f44c0b0262cb13-13deb729fda61687"]},"geometry":{"type":"LineString","coordinates":[[-83.6784686,32.7759009],[-83.67880650000001,32.7760587]]},"id":"8a44c0b0262ffff-139ff7939d986c63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6573249,32.8196667]},"id":"8f44c0b1aa54564-13d7fb9bf9dc5507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa73720-13deda5b707cacd8","8f44c0b1aa54564-13d7fb9bf9dc5507"]},"geometry":{"type":"LineString","coordinates":[[-83.6573249,32.8196667],[-83.6578377,32.8196741]]},"id":"8944c0b1aa7ffff-13d6cafbbfbb9170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65804130000001,32.819677]},"id":"8f44c0b1aa73a89-13dee9dc3dd4d463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa73720-13deda5b707cacd8","8f44c0b1aa73a89-13dee9dc3dd4d463"]},"geometry":{"type":"LineString","coordinates":[[-83.6578377,32.8196741],[-83.65804130000001,32.819677]]},"id":"8b44c0b1aa73fff-13dfca1bd91a716b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1ab5d1a2-17dfc716ba6c2052","8f44c0b1aa458d3-17dfd723a323403c"]},"geometry":{"type":"LineString","coordinates":[[-83.65915580000001,32.8200917],[-83.6591559,32.8199145],[-83.659113,32.8197387],[-83.65917200000001,32.818088700000004],[-83.6591765,32.8180436]]},"id":"8844c0b1abfffff-13dee72b4a9090cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1ab5d1a2-17dfc716ba6c2052","8f44c0b1ab4314d-17ffd672da61e5b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6591765,32.8180436],[-83.6591935,32.817872300000005],[-83.65943870000001,32.8176785]]},"id":"8944c0b1ab7ffff-17dee6dc9e3872b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aad6aec-17b6f43c8aae5b42","8f44c0b1aad6633-17d6d5087056b90a"]},"geometry":{"type":"LineString","coordinates":[[-83.6537912,32.8206403],[-83.65356680000001,32.820644800000004],[-83.6534649,32.8206944]]},"id":"8b44c0b1aad6fff-17bfd4a4d03a5766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aad30d2-17f7f44ad70b69eb","8f44c0b1aad6633-17d6d5087056b90a"]},"geometry":{"type":"LineString","coordinates":[[-83.6534649,32.8206944],[-83.65345950000001,32.8213706],[-83.65376830000001,32.8213887]]},"id":"8744c0b1affffff-17dff4ec6ea80a98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6581412,32.834272500000004]},"id":"8f44c0b1b463690-17fed99dc99b4a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b46cb2b-1796c683cbae0275","8f44c0b1b463690-17fed99dc99b4a09"]},"geometry":{"type":"LineString","coordinates":[[-83.6594116,32.834308400000005],[-83.6581412,32.834272500000004]]},"id":"8944c0b1b47ffff-17f7d810c8d0595f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b444069-17f6fa19638695ca","8f44c0b1b463690-17fed99dc99b4a09"]},"geometry":{"type":"LineString","coordinates":[[-83.6581412,32.834272500000004],[-83.65794340000001,32.8342791]]},"id":"8a44c0b1b447fff-17fee9db986557c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b4402c4-13deea6c284c3ac2","8f44c0b1b444069-17f6fa19638695ca"]},"geometry":{"type":"LineString","coordinates":[[-83.65794340000001,32.8342791],[-83.65781100000001,32.834865]]},"id":"8a44c0b1b447fff-17b7da42c90ebd94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6572919,32.8328897]},"id":"8f44c0b1b55a6e5-139edbb090ddbd3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b55d66d-139fe9250e459950","8f44c0b1b55a6e5-139edbb090ddbd3f"]},"geometry":{"type":"LineString","coordinates":[[-83.6583344,32.832683800000005],[-83.6582442,32.83283],[-83.65762620000001,32.8329127],[-83.6572919,32.8328897]]},"id":"8a44c0b1b55ffff-13ffca5512e72494"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b429801-139efc5dc8ce8043","8f44c0b1b55a6e5-139edbb090ddbd3f"]},"geometry":{"type":"LineString","coordinates":[[-83.6572919,32.8328897],[-83.6570148,32.832683100000004]]},"id":"8844c0b1b5fffff-13dfcc073d14471c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7b2001-17f7cf431d724c49","8f44c0b1b7b20de-179fff634acd59ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6557772,32.8367771],[-83.6558287,32.836712]]},"id":"8c44c0b1b7b21ff-17f7ef532c5656df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6559199,32.8365633]},"id":"8f44c0b1b7b2800-1796df0a109145e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7b2001-17f7cf431d724c49","8f44c0b1b7b2800-1796df0a109145e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6558287,32.836712],[-83.6559199,32.8365633]]},"id":"8b44c0b1b7b2fff-17b6df2690d98969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552333,32.8370636]},"id":"8f44c0b1b796d6c-17bed0b73e9be2c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b796d6c-17bed0b73e9be2c2","8f44c0b1b7b2800-1796df0a109145e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6552333,32.8370636],[-83.6556839,32.836567800000005],[-83.6559199,32.8365633]]},"id":"8944c0b1b7bffff-17ffdff286ccff6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7904a0-17fef076f816176f","8f44c0b1b7b2800-1796df0a109145e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6559199,32.8365633],[-83.65608080000001,32.836685],[-83.65613450000001,32.8368382],[-83.65608080000001,32.8370005],[-83.65557120000001,32.8375999],[-83.65542640000001,32.837604400000004],[-83.6553361,32.8375494]]},"id":"8944c0b1b7bffff-17fedf3709ca25da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7904a0-17fef076f816176f","8f44c0b1b79664a-17bfd0deb112b6de"]},"geometry":{"type":"LineString","coordinates":[[-83.6553361,32.8375494],[-83.6551701,32.8374481]]},"id":"8a44c0b1b797fff-17ded0aad26c9b41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b79664a-17bfd0deb112b6de","8f44c0b1b796d6c-17bed0b73e9be2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6551701,32.8374481],[-83.6550938,32.8374016],[-83.6550723,32.8372754],[-83.6552333,32.8370636]]},"id":"8b44c0b1b796fff-17bef0f77b2d4a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b4cb129-17d6f180aeb487ee","8f44c0b1b796d6c-17bed0b73e9be2c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6552333,32.8370636],[-83.654911,32.836865]]},"id":"8744c0b1bffffff-17fef11bf6ae4cec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65628500000001,32.835952]},"id":"8f44c0b1b7b4d84-1396ce25effc3de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b7b4d84-1396ce25effc3de9","8f44c0b1b453894-13dfee13c5a13b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.65628500000001,32.835952],[-83.65631400000001,32.834837]]},"id":"8844c0b1b5fffff-13bfde1cd0dca3a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b42828b-139fcd714708a860","8f44c0b1b453894-13dfee13c5a13b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.65631400000001,32.834837],[-83.656322,32.834708],[-83.65632000000001,32.834521],[-83.656332,32.834327],[-83.656574,32.83269]]},"id":"8844c0b1b5fffff-17bfcdd033e83c97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6574659,32.837035400000005]},"id":"8f44c0b1b7a3c40-17bfeb43d6fd6430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b785755-17dffb9f0dadb705","8f44c0b1b7a3c40-17bfeb43d6fd6430"]},"geometry":{"type":"LineString","coordinates":[[-83.6574659,32.837035400000005],[-83.657438,32.837464700000005],[-83.65732,32.8376991]]},"id":"8944c0b1b7bffff-17ffeb5dd21cf49c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b785755-17dffb9f0dadb705","8f44c0b1b78105d-13b6cbac71b4a9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.65732,32.8376991],[-83.65699280000001,32.837604400000004],[-83.6566935,32.837902400000004],[-83.65676,32.8380473],[-83.65729850000001,32.8380704]]},"id":"8a44c0b1b787fff-17b6dc787c41c9e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b7aa660-13b6cab409fd0d7a","8f44c0b1b78105d-13b6cbac71b4a9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.65729850000001,32.8380704],[-83.657696,32.838068]]},"id":"8944c0b1b7bffff-13b7cb3045f526cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6256427,32.8344855]},"id":"8f44c0a36974b71-17f778f55e300bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3697598e-17df988ffeb95717","8f44c0a36974b71-17f778f55e300bfb"]},"geometry":{"type":"LineString","coordinates":[[-83.6258049,32.8346536],[-83.6257636,32.8346122],[-83.6256427,32.8344855]]},"id":"8a44c0a36977fff-17b738c2d2953826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62528900000001,32.8342691]},"id":"8f44c0a36974d16-17ff39d26ea6c71d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36974b71-17f778f55e300bfb","8f44c0a36974d16-17ff39d26ea6c71d"]},"geometry":{"type":"LineString","coordinates":[[-83.6256427,32.8344855],[-83.62528900000001,32.8342691]]},"id":"8b44c0a36974fff-17bfd963db47ecab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369283a4-17971b35883b6669","8f44c0a36974d16-17ff39d26ea6c71d"]},"geometry":{"type":"LineString","coordinates":[[-83.62528900000001,32.8342691],[-83.6247208,32.833921600000004]]},"id":"8844c0a369fffff-17ff9a83fe937c57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62447440000001,32.833770900000005]},"id":"8f44c0a36928513-17b7dbcf851dd564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369283a4-17971b35883b6669","8f44c0a36928513-17b7dbcf851dd564"]},"geometry":{"type":"LineString","coordinates":[[-83.6247208,32.833921600000004],[-83.62447440000001,32.833770900000005]]},"id":"8b44c0a36928fff-17f7fb828d8164e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36928644-17df5b6f0cd3b723","8f44c0a36928498-17ff9bfdec394318"]},"geometry":{"type":"LineString","coordinates":[[-83.62440020000001,32.8338568],[-83.62456750000001,32.833973],[-83.62462880000001,32.8340212]]},"id":"8a44c0a3692ffff-179f1bb5dd3a4249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36928644-17df5b6f0cd3b723","8f44c0a369741a9-17f779a0f0998795"]},"geometry":{"type":"LineString","coordinates":[[-83.62462880000001,32.8340212],[-83.6253681,32.834459800000005]]},"id":"8844c0a369fffff-17df5a87f432bf80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6255783,32.8345846]},"id":"8f44c0a36974acc-17bf791d96c96696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a369741a9-17f779a0f0998795","8f44c0a36974acc-17bf791d96c96696"]},"geometry":{"type":"LineString","coordinates":[[-83.6253681,32.834459800000005],[-83.6255783,32.8345846]]},"id":"8b44c0a36974fff-179f795f4f2625a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3697598e-17df988ffeb95717","8f44c0a36974acc-17bf791d96c96696"]},"geometry":{"type":"LineString","coordinates":[[-83.6255783,32.8345846],[-83.6257314,32.8346347],[-83.6258049,32.8346536]]},"id":"8a44c0a36977fff-17d7f8d715329a49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34433141-17d74bab9b79eab3","8f44c0a3442a046-179767ef9eb6d504"]},"geometry":{"type":"LineString","coordinates":[[-83.63108550000001,32.8368964],[-83.6325667,32.8377859],[-83.63261510000001,32.837815]]},"id":"8944c0a3443ffff-17f759cd9147ad7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63338850000001,32.8382901]},"id":"8f44c0a34476800-13bf560c3b0d1017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34476800-13bf560c3b0d1017","8f44c0a3442a046-179767ef9eb6d504"]},"geometry":{"type":"LineString","coordinates":[[-83.63261510000001,32.837815],[-83.6326698,32.8378486],[-83.63338850000001,32.8382901]]},"id":"8944c0a3443ffff-13b7d6fdea7ad2c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62643800000001,32.8340978]},"id":"8f44c0ba92d99ad-17ff37044b2f2f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62655330000001,32.8341821]},"id":"8f44c0ba92ca491-17b7d6bc36c551fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d99ad-17ff37044b2f2f83","8f44c0ba92ca491-17b7d6bc36c551fe"]},"geometry":{"type":"LineString","coordinates":[[-83.62643800000001,32.8340978],[-83.62655330000001,32.8341821]]},"id":"8b44c0ba92d9fff-179f96e034b647ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92cb051-179fd51d2bd2a296","8f44c0ba92ca491-17b7d6bc36c551fe"]},"geometry":{"type":"LineString","coordinates":[[-83.62655330000001,32.8341821],[-83.6272174,32.8345597]]},"id":"8944c0ba92fffff-17bfd5eca7c24c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34590d75-139fb37a020ed3cf","8f44c0ba92cb051-179fd51d2bd2a296"]},"geometry":{"type":"LineString","coordinates":[[-83.6272174,32.8345597],[-83.627888,32.834961]]},"id":"8644c0a37ffffff-139f544b99be3d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba925d575-13f70f0c4b777bb1","8f44c0ba92436c9-139fceaf131f7a45"]},"geometry":{"type":"LineString","coordinates":[[-83.62970200000001,32.833056],[-83.629777,32.833001],[-83.62985110000001,32.8329116]]},"id":"8b44c0ba925dfff-13dfcedafcb0a151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba924386e-13dfde053da11d5b","8f44c0ba92436c9-139fceaf131f7a45"]},"geometry":{"type":"LineString","coordinates":[[-83.62985110000001,32.8329116],[-83.6301229,32.8325837]]},"id":"8944c0ba927ffff-13b74e5a263cfd75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92414b6-13b7bdf2df30c0bc","8f44c0ba924386e-13dfde053da11d5b"]},"geometry":{"type":"LineString","coordinates":[[-83.6301229,32.8325837],[-83.6301523,32.8325483]]},"id":"8b44c0ba9243fff-13d7cdfc056b4520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630218,32.832469]},"id":"8f44c0ba9240248-13972dc9cef88fa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92414b6-13b7bdf2df30c0bc","8f44c0ba9240248-13972dc9cef88fa6"]},"geometry":{"type":"LineString","coordinates":[[-83.6301523,32.8325483],[-83.630218,32.832469]]},"id":"8a44c0ba9247fff-139ffdde5ef0e2da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9263aa1-13bf2c572b1d15f5","8f44c0ba9240248-13972dc9cef88fa6"]},"geometry":{"type":"LineString","coordinates":[[-83.630218,32.832469],[-83.63081100000001,32.831733]]},"id":"8944c0ba927ffff-139f2d107fe01aab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9263aa1-13bf2c572b1d15f5","8f44c0ba926582e-17972aeb61c9b9e2"]},"geometry":{"type":"LineString","coordinates":[[-83.63081100000001,32.831733],[-83.63091,32.831625],[-83.631393,32.831029]]},"id":"8a44c0ba9267fff-17dfab9f88f3a915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba93494ca-17b7ea41be494992","8f44c0ba926582e-17972aeb61c9b9e2"]},"geometry":{"type":"LineString","coordinates":[[-83.631393,32.831029],[-83.6316645,32.8307006]]},"id":"8844c0ba93fffff-179f8a9690d6d90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba93494ca-17b7ea41be494992","8f44c0ba9349cea-17d729f2a291ad75"]},"geometry":{"type":"LineString","coordinates":[[-83.6316645,32.8307006],[-83.631791,32.8305474]]},"id":"8b44c0ba9349fff-17970a1a27731f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9349cea-17d729f2a291ad75","8f44c0ba934d6ed-17ff99a96d07f78c"]},"geometry":{"type":"LineString","coordinates":[[-83.631791,32.8305474],[-83.63190820000001,32.8304057]]},"id":"8a44c0ba934ffff-17b7e9ce08691432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6323052,32.8299141]},"id":"8f44c0ba936b36d-17df58b14442505e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba936b36d-17df58b14442505e","8f44c0ba934d6ed-17ff99a96d07f78c"]},"geometry":{"type":"LineString","coordinates":[[-83.63190820000001,32.8304057],[-83.6323052,32.8299141]]},"id":"8944c0ba937ffff-17f7f92d5f227b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba936b36d-17df58b14442505e","8f44c0ba93696b4-13ff8871a1235fe0"]},"geometry":{"type":"LineString","coordinates":[[-83.6323052,32.8299141],[-83.632407,32.829788]]},"id":"8a44c0ba936ffff-17b7f8917a1b9c1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d9e49b-13ffe72e86810722","8f44c0ba93696b4-13ff8871a1235fe0"]},"geometry":{"type":"LineString","coordinates":[[-83.632407,32.829788],[-83.632924,32.829155]]},"id":"8844c0a34dfffff-13b7b7d015e337db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d9e436-13bf67090f644138","8f44c0a34d9e49b-13ffe72e86810722"]},"geometry":{"type":"LineString","coordinates":[[-83.632924,32.829155],[-83.63298400000001,32.829079]]},"id":"8c44c0a34d9e5ff-13d7271bcff35791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63315700000001,32.828853]},"id":"8f44c0a34d916aa-13b7269ceca076b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d916aa-13b7269ceca076b4","8f44c0a34d9e436-13bf67090f644138"]},"geometry":{"type":"LineString","coordinates":[[-83.63298400000001,32.829079],[-83.63315700000001,32.828853]]},"id":"8944c0a34dbffff-13f7c6d2f4280cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6334198,32.8284767]},"id":"8f44c0a34d91933-13d7f5f8aba89322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d916aa-13b7269ceca076b4","8f44c0a34d91933-13d7f5f8aba89322"]},"geometry":{"type":"LineString","coordinates":[[-83.63315700000001,32.828853],[-83.6334198,32.8284767]]},"id":"8a44c0a34d97fff-13bf964acf245072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63350840000001,32.82835]},"id":"8f44c0a34d95310-13f7c5c1403344df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d91933-13d7f5f8aba89322","8f44c0a34d95310-13f7c5c1403344df"]},"geometry":{"type":"LineString","coordinates":[[-83.6334198,32.8284767],[-83.63350840000001,32.82835]]},"id":"8b44c0a34d95fff-139f65dcf5574a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d95849-139f958036fc328d","8f44c0a34d95310-13f7c5c1403344df"]},"geometry":{"type":"LineString","coordinates":[[-83.63350840000001,32.82835],[-83.6336125,32.8282009]]},"id":"8b44c0a34d95fff-13df35a0c902dc50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d865a5-17d72546a4483fe0","8f44c0a34d95849-139f958036fc328d"]},"geometry":{"type":"LineString","coordinates":[[-83.6336125,32.8282009],[-83.6337046,32.828069]]},"id":"8944c0a34dbffff-17f76563627a489e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63401400000001,32.827714]},"id":"8f44c0a34db1014-17ff4485420f9441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d865a5-17d72546a4483fe0","8f44c0a34db1014-17ff4485420f9441"]},"geometry":{"type":"LineString","coordinates":[[-83.6337046,32.828069],[-83.633859,32.827848],[-83.63401400000001,32.827714]]},"id":"8944c0a34dbffff-17d734eca39c960b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634245,32.827435]},"id":"8f44c0a34db5204-17bfe3f4ef5da383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34db5204-17bfe3f4ef5da383","8f44c0a34db1014-17ff4485420f9441"]},"geometry":{"type":"LineString","coordinates":[[-83.63401400000001,32.827714],[-83.634245,32.827435]]},"id":"8a44c0a34db7fff-1797143d1cb6dd4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a590ec-17b722ae066332a1","8f44c0a34db5204-17bfe3f4ef5da383"]},"geometry":{"type":"LineString","coordinates":[[-83.634245,32.827435],[-83.63476800000001,32.826805]]},"id":"8744c0ba9ffffff-17f703517aad1a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a4e446-13d7b1948ca8e0c3","8f44c0ba9a590ec-17b722ae066332a1"]},"geometry":{"type":"LineString","coordinates":[[-83.63476800000001,32.826805],[-83.6352184,32.826241100000004]]},"id":"8944c0ba9a7ffff-1797f22146a1d785"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6359829,32.825324200000004]},"id":"8f44c0ba9a6e702-1397ffb6b2398a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a4e446-13d7b1948ca8e0c3","8f44c0ba9a6e702-1397ffb6b2398a45"]},"geometry":{"type":"LineString","coordinates":[[-83.6352184,32.826241100000004],[-83.6359829,32.825324200000004]]},"id":"8944c0ba9a7ffff-13b730a5a2f3d4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a6e81c-1397ff43a560e78c","8f44c0ba9a6e702-1397ffb6b2398a45"]},"geometry":{"type":"LineString","coordinates":[[-83.6359829,32.825324200000004],[-83.63605340000001,32.8252448],[-83.636167,32.825119]]},"id":"8b44c0ba9a6efff-13d7ff7d55e5a1f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a6e81c-1397ff43a560e78c","8f44c0ba9b49a5b-17b6fcddef61b608"]},"geometry":{"type":"LineString","coordinates":[[-83.636167,32.825119],[-83.636319,32.824925],[-83.636725,32.824436],[-83.63714900000001,32.823936]]},"id":"8844c0ba9bfffff-179ffe132b45792c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a79a0e5-13fffa7aa0b498de","8f44c0ba9b49a5b-17b6fcddef61b608"]},"geometry":{"type":"LineString","coordinates":[[-83.63714900000001,32.823936],[-83.63721500000001,32.823881],[-83.63812700000001,32.822806]]},"id":"8744c0b1affffff-17d6fba93a1a4f4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.638542,32.822325]},"id":"8f44c0b1a79c793-13d7f97741abfc3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a79c793-13d7f97741abfc3a","8f44c0b1a79a0e5-13fffa7aa0b498de"]},"geometry":{"type":"LineString","coordinates":[[-83.63812700000001,32.822806],[-83.638542,32.822325]]},"id":"8a44c0b1a79ffff-13d7f9f8fd91e520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a782293-13f7f8c0cbd00dc2","8f44c0b1a79c793-13d7f97741abfc3a"]},"geometry":{"type":"LineString","coordinates":[[-83.638542,32.822325],[-83.638834,32.821976]]},"id":"8944c0b1a7bffff-13d6f91c05e7e229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a782293-13f7f8c0cbd00dc2","8f44c0b1a780506-17fff7fdc181a41c"]},"geometry":{"type":"LineString","coordinates":[[-83.638834,32.821976],[-83.638903,32.8219],[-83.63914600000001,32.821603]]},"id":"8a44c0b1a787fff-13f7f85e46fd69e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a784033-179ff747e2f0e267","8f44c0b1a780506-17fff7fdc181a41c"]},"geometry":{"type":"LineString","coordinates":[[-83.63914600000001,32.821603],[-83.639437,32.821247]]},"id":"8a44c0b1a787fff-179ef7a2de987fa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7a2adc-17def692a3b66c9b","8f44c0b1a784033-179ff747e2f0e267"]},"geometry":{"type":"LineString","coordinates":[[-83.639437,32.821247],[-83.63972700000001,32.820912]]},"id":"8944c0b1a7bffff-17b6f6ed447e4e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a7a2adc-17def692a3b66c9b","8f44c0b1a44a34c-179ef4ca6e9adcc3"]},"geometry":{"type":"LineString","coordinates":[[-83.63972700000001,32.820912],[-83.64008700000001,32.82047],[-83.64034500000001,32.820164000000005],[-83.64045700000001,32.820013]]},"id":"8844c0b1a7fffff-17b6f5ad44d88de4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625505,32.832489]},"id":"8f44c0ba92d40e2-1397b94b69373285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62603390000001,32.832805]},"id":"8f44c0ba92d5a1a-13d73800da52710d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92d40e2-1397b94b69373285","8f44c0ba92d5a1a-13d73800da52710d"]},"geometry":{"type":"LineString","coordinates":[[-83.625505,32.832489],[-83.62594700000001,32.832752],[-83.62603390000001,32.832805]]},"id":"8a44c0ba92d7fff-13f738a5f7c3bbdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6261923,32.8329016]},"id":"8f44c0ba92c2d72-1397979dd9b42751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92c2d72-1397979dd9b42751","8f44c0ba92d5a1a-13d73800da52710d"]},"geometry":{"type":"LineString","coordinates":[[-83.62603390000001,32.832805],[-83.6261923,32.8329016]]},"id":"8944c0ba92fffff-13f757cf54b58ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623945,32.831558]},"id":"8f44c0ba929d033-13dfdd1a6bcdc50e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba929d033-13dfdd1a6bcdc50e","8f44c0ba9292d5e-17d7e0f2cca14c27"]},"geometry":{"type":"LineString","coordinates":[[-83.62237,32.830542],[-83.623129,32.831029],[-83.6238273,32.8314845],[-83.62384800000001,32.831498],[-83.623945,32.831558]]},"id":"8944c0ba92bffff-179f1f06671f325a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba929d033-13dfdd1a6bcdc50e","8f44c0ba928a8c9-13ff5bef0d2c058c"]},"geometry":{"type":"LineString","coordinates":[[-83.623945,32.831558],[-83.62402800000001,32.831609],[-83.6240606,32.8316273],[-83.62417400000001,32.831691],[-83.624218,32.831718],[-83.624424,32.831842]]},"id":"8944c0ba92bffff-13b73c8486d904df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6309403,32.8355875]},"id":"8f44c0a345a9885-13b73c0654eb2e9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345a9885-13b73c0654eb2e9a","8f44c0a3451ec2c-13bfdacb8daa5856"]},"geometry":{"type":"LineString","coordinates":[[-83.6309403,32.8355875],[-83.631444,32.8350157]]},"id":"8844c0a345fffff-13ff8b68fc44a55f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63194610000001,32.834394]},"id":"8f44c0a34515aed-17bf4991b33d0f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34515aed-17bf4991b33d0f57","8f44c0a3451ec2c-13bfdacb8daa5856"]},"geometry":{"type":"LineString","coordinates":[[-83.631444,32.8350157],[-83.63194610000001,32.834394]]},"id":"8944c0a3453ffff-17ff9a2ea3a5c71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34515aed-17bf4991b33d0f57","8f44c0a3453166a-17bf38ad75e25538"]},"geometry":{"type":"LineString","coordinates":[[-83.63194610000001,32.834394],[-83.63231130000001,32.8339651]]},"id":"8944c0a3453ffff-17b7391f9e66e95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345313a5-17ff6877f7e0b6ca","8f44c0a3453166a-17bf38ad75e25538"]},"geometry":{"type":"LineString","coordinates":[[-83.63231130000001,32.8339651],[-83.6323969,32.833864600000005]]},"id":"8b44c0a34531fff-179fc892b8554c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63248,32.833767]},"id":"8f44c0a34531b8a-17b7684400fe3d23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34531b8a-17b7684400fe3d23","8f44c0a345313a5-17ff6877f7e0b6ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6323969,32.833864600000005],[-83.63248,32.833767]]},"id":"8b44c0a34531fff-17dfe85e070d807a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34531b8a-17b7684400fe3d23","8f44c0a3452682e-179f66d72c6ce4b9"]},"geometry":{"type":"LineString","coordinates":[[-83.63248,32.833767],[-83.6330638,32.8330902]]},"id":"8944c0a3453ffff-17dfe78d9eacc4e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3452682e-179f66d72c6ce4b9","8f44c0a34c8e769-13df9562d387cd94"]},"geometry":{"type":"LineString","coordinates":[[-83.6330638,32.8330902],[-83.63365950000001,32.8324009]]},"id":"8844c0a34dfffff-13b7061cf5476dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.633571,32.835379]},"id":"8f44c0a3450dc0a-139fe59a29cf821d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450b111-139fb6e0db6608e3","8f44c0a3450dc0a-139fe59a29cf821d"]},"geometry":{"type":"LineString","coordinates":[[-83.6330483,32.8359899],[-83.633571,32.835379]]},"id":"8a44c0a3450ffff-13dfd63d8a38f7ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63410010000001,32.834747]},"id":"8f44c0a34529db6-1397e44f712763d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3450dc0a-139fe59a29cf821d","8f44c0a34529db6-1397e44f712763d0"]},"geometry":{"type":"LineString","coordinates":[[-83.633571,32.835379],[-83.63410010000001,32.834747]]},"id":"8944c0a3453ffff-13df64f4cc723754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6433712,32.8324911]},"id":"8f44c0a348aa544-1396fdad04c676da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64351400000001,32.8316868]},"id":"8f44c0a348a14f0-139eed53c6f95f55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a14f0-139eed53c6f95f55","8f44c0a348aa544-1396fdad04c676da"]},"geometry":{"type":"LineString","coordinates":[[-83.6433712,32.8324911],[-83.6436242,32.832177900000005],[-83.64382900000001,32.8319248],[-83.6438347,32.8318972],[-83.64383020000001,32.831878800000005],[-83.643573,32.831723700000005],[-83.64351400000001,32.8316868]]},"id":"8944c0a348bffff-1396fd098f0dd838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6428151,32.831269]},"id":"8f44c0a348a2c26-1797ef089755d334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a14f0-139eed53c6f95f55","8f44c0a348a2c26-1797ef089755d334"]},"geometry":{"type":"LineString","coordinates":[[-83.64351400000001,32.8316868],[-83.6431754,32.831488],[-83.6428151,32.831269]]},"id":"8a44c0a348a7fff-139eee2ea212d65e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a2c26-1797ef089755d334","8f44c0a348b409a-1797f0d32ae7ae70"]},"geometry":{"type":"LineString","coordinates":[[-83.6428151,32.831269],[-83.64208140000001,32.8308282]]},"id":"8944c0a348bffff-179fefededad4a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436606,32.8326469]},"id":"8f44c0a348aa364-13f6fcf8205fffb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348aa544-1396fdad04c676da","8f44c0a348aa364-13f6fcf8205fffb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6436606,32.8326469],[-83.6433712,32.8324911]]},"id":"8b44c0a348aafff-13d7ed529d99303e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643011,32.8322765]},"id":"8f44c0a34885716-139efe8e2e0061f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348aa544-1396fdad04c676da","8f44c0a34885716-139efe8e2e0061f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6433712,32.8324911],[-83.643011,32.8322765]]},"id":"8944c0a348bffff-13dfee1d9425eac7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64232530000001,32.8318661]},"id":"8f44c0a34886883-139ef03abe2c0b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34886883-139ef03abe2c0b19","8f44c0a34885716-139efe8e2e0061f4"]},"geometry":{"type":"LineString","coordinates":[[-83.643011,32.8322765],[-83.64232530000001,32.8318661]]},"id":"8a44c0a34887fff-139eff646ecec5ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348b2394-17fff20d64b077c9","8f44c0a34886883-139ef03abe2c0b19"]},"geometry":{"type":"LineString","coordinates":[[-83.64232530000001,32.8318661],[-83.6415786,32.8314295]]},"id":"8944c0a348bffff-1397f12406ffe6ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34886690-13b7f0caf964573f","8f44c0a34886883-139ef03abe2c0b19"]},"geometry":{"type":"LineString","coordinates":[[-83.6420945,32.8321398],[-83.64232530000001,32.8318661]]},"id":"8b44c0a34886fff-13f7f082d915dd08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a2c26-1797ef089755d334","8f44c0a34886883-139ef03abe2c0b19"]},"geometry":{"type":"LineString","coordinates":[[-83.64232530000001,32.8318661],[-83.6428151,32.831269]]},"id":"8944c0a348bffff-13d7efa1a11b2f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a2c26-1797ef089755d334","8f44c0a348a6150-17feee70232ab42c"]},"geometry":{"type":"LineString","coordinates":[[-83.6428151,32.831269],[-83.64305900000001,32.830996]]},"id":"8a44c0a348a7fff-17d7febc684519d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a14f0-139eed53c6f95f55","8f44c0a348a560b-17feecbe6d57658c"]},"geometry":{"type":"LineString","coordinates":[[-83.643753,32.831406],[-83.64351400000001,32.8316868]]},"id":"8a44c0a348a7fff-13d6ed091a3f3105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a348a14f0-139eed53c6f95f55","8f44c0a34885716-139efe8e2e0061f4"]},"geometry":{"type":"LineString","coordinates":[[-83.64351400000001,32.8316868],[-83.643011,32.8322765]]},"id":"8944c0a348bffff-13d6fdf0fbce3e57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34885716-139efe8e2e0061f4","8f44c0a348815a3-13bfff1f5e033d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.643011,32.8322765],[-83.64277870000001,32.8325629]]},"id":"8a44c0a34887fff-13f6fed6c8204f33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64487150000001,32.8320717]},"id":"8f44c0a3481ec2b-139efa0350ee4060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6450758,32.8321927]},"id":"8f44c0a3481eb81-13def983a322305e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3481eb81-13def983a322305e","8f44c0a3481ec2b-139efa0350ee4060"]},"geometry":{"type":"LineString","coordinates":[[-83.64487150000001,32.8320717],[-83.6450758,32.8321927]]},"id":"8b44c0a3481efff-13b6e9c3868e1412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64533700000001,32.832347500000004]},"id":"8f44c0a34818984-13bff8e06fb72c63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3481eb81-13def983a322305e","8f44c0a34818984-13bff8e06fb72c63"]},"geometry":{"type":"LineString","coordinates":[[-83.6450758,32.8321927],[-83.64533700000001,32.832347500000004]]},"id":"8a44c0a3481ffff-139ef932008141a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6457977,32.832620500000004]},"id":"8f44c0a3481d28c-13f7f7c074d8295e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3481d28c-13f7f7c074d8295e","8f44c0a34818984-13bff8e06fb72c63"]},"geometry":{"type":"LineString","coordinates":[[-83.64533700000001,32.832347500000004],[-83.6457977,32.832620500000004]]},"id":"8a44c0a3481ffff-139ee85066546098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62012940000001,32.8447933]},"id":"8f44c0a36062c23-139ff66b2646e77c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6210028,32.8440561]},"id":"8f44c0a3614a04d-17df344945d37676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36062c23-139ff66b2646e77c","8f44c0a3614a04d-17df344945d37676"]},"geometry":{"type":"LineString","coordinates":[[-83.62012940000001,32.8447933],[-83.620165,32.844792500000004],[-83.6202846,32.844763900000004],[-83.6203926,32.8447115],[-83.62048390000001,32.8446222],[-83.6210028,32.8440561]]},"id":"8844c0a361fffff-17d735474d773076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62148520000001,32.8434893]},"id":"8f44c0a3614c08d-17fff31bc9162092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3614c08d-17fff31bc9162092","8f44c0a3614a04d-17df344945d37676"]},"geometry":{"type":"LineString","coordinates":[[-83.6210028,32.8440561],[-83.62104120000001,32.844013100000005],[-83.62148520000001,32.8434893]]},"id":"8a44c0a3614ffff-179f63b230a5b4ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621728,32.8432028]},"id":"8f44c0a3616a219-17bfe28406fc9dea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3614c08d-17fff31bc9162092","8f44c0a3616a219-17bfe28406fc9dea"]},"geometry":{"type":"LineString","coordinates":[[-83.62148520000001,32.8434893],[-83.621728,32.8432028]]},"id":"8944c0a3617ffff-179772cfe0fd179b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3616c741-13dfe14c303ec60b","8f44c0a3616a219-17bfe28406fc9dea"]},"geometry":{"type":"LineString","coordinates":[[-83.621728,32.8432028],[-83.6222269,32.8426142]]},"id":"8a44c0a3616ffff-1797f1e8243c2b39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3616c741-13dfe14c303ec60b","8f44c0a3616c4f1-139ff1c06176c054"]},"geometry":{"type":"LineString","coordinates":[[-83.6222269,32.8426142],[-83.62204100000001,32.842511900000005]]},"id":"8b44c0a3616cfff-13bff18643918c32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3616e824-13d7e21f7fd193e4","8f44c0a3616c4f1-139ff1c06176c054"]},"geometry":{"type":"LineString","coordinates":[[-83.62204100000001,32.842511900000005],[-83.6218889,32.8424222]]},"id":"8a44c0a3616ffff-13fff1effa91c6b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36161688-139fa28121d9f315","8f44c0a3616e824-13d7e21f7fd193e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6218889,32.8424222],[-83.6217326,32.842330600000004]]},"id":"8944c0a3617ffff-13b7625046b631a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36163bb3-13d722fcac6a8741","8f44c0a36161688-139fa28121d9f315"]},"geometry":{"type":"LineString","coordinates":[[-83.6217326,32.842330600000004],[-83.62153500000001,32.842219400000005]]},"id":"8a44c0a36167fff-13f7e2bee66f99bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36163bb3-13d722fcac6a8741","8f44c0a36163c65-139f3351ccb38f1f"]},"geometry":{"type":"LineString","coordinates":[[-83.62153500000001,32.842219400000005],[-83.62139880000001,32.8421347]]},"id":"8b44c0a36163fff-13bfb3273b628129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36163db3-13ff73a6f5b0cc5e","8f44c0a36163c65-139f3351ccb38f1f"]},"geometry":{"type":"LineString","coordinates":[[-83.62139880000001,32.8421347],[-83.6212625,32.8420501]]},"id":"8c44c0a36163dff-1397e37c67162dda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36163db3-13ff73a6f5b0cc5e","8f44c0a36162181-139fe447cef6fd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6212625,32.8420501],[-83.6210052,32.8418988]]},"id":"8b44c0a36162fff-13bf33f7549fe8a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61916400000001,32.840805]},"id":"8f44c0a3612a05a-17df28c683a0d4f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3612a05a-17df28c683a0d4f0","8f44c0a36162181-139fe447cef6fd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6210052,32.8418988],[-83.61916400000001,32.840805]]},"id":"8844c0a361fffff-13b7f6872f1d2bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6109175,32.8496601]},"id":"8f44c0a367892e2-17ffbce89e90fa3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366a4b0b-17f7bee72f6564cb","8f44c0a367892e2-17ffbce89e90fa3e"]},"geometry":{"type":"LineString","coordinates":[[-83.6109175,32.8496601],[-83.61010060000001,32.8496491]]},"id":"8844c0a367fffff-17ff3de7ee9a1e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366a4b0b-17f7bee72f6564cb","8f44c0a3679b244-17f76121084a856b"]},"geometry":{"type":"LineString","coordinates":[[-83.61010060000001,32.8496491],[-83.6091888,32.8496402]]},"id":"8844c0a367fffff-17f7f0041f74f0f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366b6b93-17ffc38ba5b3df54","8f44c0a3679b244-17f76121084a856b"]},"geometry":{"type":"LineString","coordinates":[[-83.6091888,32.8496402],[-83.60851600000001,32.849635],[-83.608199,32.849638]]},"id":"8944c0a366bffff-17ff425659563627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.607606,32.849645]},"id":"8f44c0b8db4dc6c-17f764fe4f07a972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a366b6b93-17ffc38ba5b3df54","8f44c0b8db4dc6c-17f764fe4f07a972"]},"geometry":{"type":"LineString","coordinates":[[-83.608199,32.849638],[-83.607606,32.849645]]},"id":"8744c0a36ffffff-17f7f444f412e819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db4dc6c-17f764fe4f07a972","8f44c0b8db4e0cb-17ff670c80a694bb"]},"geometry":{"type":"LineString","coordinates":[[-83.607606,32.849645],[-83.606764,32.849637]]},"id":"8a44c0b8db4ffff-17f7e605612fdaa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db5db88-17f7c7d4a5d76af5","8f44c0b8db4e0cb-17ff670c80a694bb"]},"geometry":{"type":"LineString","coordinates":[[-83.606764,32.849637],[-83.60644380000001,32.8496412]]},"id":"8944c0b8db7ffff-17f7777094af6702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db588e4-17f7491c0947e643","8f44c0b8db5db88-17f7c7d4a5d76af5"]},"geometry":{"type":"LineString","coordinates":[[-83.60644380000001,32.8496412],[-83.60592000000001,32.849648]]},"id":"8a44c0b8db5ffff-17f7e878503fe5c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db588e4-17f7491c0947e643","8f44c0b8da2d623-17ffeba1af651a00"]},"geometry":{"type":"LineString","coordinates":[[-83.60592000000001,32.849648],[-83.604887,32.849659]]},"id":"8844c0b8dbfffff-17ff7a5edaec1a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8da2848e-17f7ed3428487667","8f44c0b8da2d623-17ffeba1af651a00"]},"geometry":{"type":"LineString","coordinates":[[-83.604887,32.849659],[-83.60424300000001,32.849651]]},"id":"8a44c0b8da2ffff-17ff6c6ae8f6bb5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db613b0-13ff54e9cceb62c7","8f44c0b8db4dc6c-17f764fe4f07a972"]},"geometry":{"type":"LineString","coordinates":[[-83.6076388,32.8482289],[-83.607608,32.848914],[-83.607606,32.849645]]},"id":"8944c0b8db7ffff-13bfc4f8bc14682f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8db49276-17b76500cc767720","8f44c0b8db4dc6c-17f764fe4f07a972"]},"geometry":{"type":"LineString","coordinates":[[-83.607606,32.849645],[-83.607602,32.850367]]},"id":"8844c0b8dbfffff-17d7c4ff873da21f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36690614-17f7650022fde02e","8f44c0b8db49276-17b76500cc767720"]},"geometry":{"type":"LineString","coordinates":[[-83.607602,32.850367],[-83.60760300000001,32.851079]]},"id":"8a44c0a36697fff-1797e5007d6fb58a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36690614-17f7650022fde02e","8f44c0b8da6db9d-13bf64f77ce8bbd7"]},"geometry":{"type":"LineString","coordinates":[[-83.60760300000001,32.851079],[-83.60761690000001,32.8518102]]},"id":"8944c0a366bffff-13dfe4fbca5ab090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8da69260-13d74537c87ceba8","8f44c0b8da6db9d-13bf64f77ce8bbd7"]},"geometry":{"type":"LineString","coordinates":[[-83.60761690000001,32.8518102],[-83.60759800000001,32.852317],[-83.607588,32.852359],[-83.60756400000001,32.852401],[-83.60754,32.852426],[-83.60751400000001,32.852434]]},"id":"8644c0a37ffffff-139f65034d0850b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36013444-17f730c928756385","8f44c0a3601320c-17bf30382a0402f8"]},"geometry":{"type":"LineString","coordinates":[[-83.61588300000001,32.84388],[-83.61611500000001,32.844029]]},"id":"8b44c0a36013fff-179fb080ad391084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3601e324-17dfef4c8a6f2a63","8f44c0a3601320c-17bf30382a0402f8"]},"geometry":{"type":"LineString","coordinates":[[-83.61611500000001,32.844029],[-83.61649200000001,32.844254]]},"id":"8944c0a3603ffff-17977fc254d0b11b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b881446d8-17ffb77f8a9be246","8f44c0b88021753-179f9d2d4fa43c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.573812,32.852933],[-83.57353300000001,32.852972],[-83.57344,32.852988],[-83.573097,32.853046],[-83.57256000000001,32.853149],[-83.57170400000001,32.853319],[-83.57148600000001,32.853372]]},"id":"8844c0b881fffff-17fffa582ae2a564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367685a9-17ff6e5dcabec0f1","8f44c0a3676da89-17ffac5f2913b12d"]},"geometry":{"type":"LineString","coordinates":[[-83.61769100000001,32.84966],[-83.61687400000001,32.849655]]},"id":"8a44c0a3676ffff-17fffd5e70dcf98c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36740a42-17ff3086424d3b1c","8f44c0a367685a9-17ff6e5dcabec0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.61687400000001,32.849655],[-83.61599000000001,32.849656]]},"id":"8944c0a3677ffff-17ffbf72075155b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36740a42-17ff3086424d3b1c","8f44c0a3675061a-17ff349c11909db7"]},"geometry":{"type":"LineString","coordinates":[[-83.61599000000001,32.849656],[-83.615142,32.849635],[-83.61501700000001,32.849635],[-83.6143167,32.849637]]},"id":"8944c0a3677ffff-17f772912269600b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3675061a-17ff349c11909db7","8f44c0a3662110e-17ff3698adcf6093"]},"geometry":{"type":"LineString","coordinates":[[-83.6143167,32.849637],[-83.61350300000001,32.849637]]},"id":"8844c0a367fffff-17ff359a605ecacc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662229d-17ff38a81ef86dff","8f44c0a3662110e-17ff3698adcf6093"]},"geometry":{"type":"LineString","coordinates":[[-83.61350300000001,32.849637],[-83.6126591,32.849651300000005]]},"id":"8a44c0a36627fff-17f7b7a064dfb88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662229d-17ff38a81ef86dff","8f44c0a36633b98-17973abf53a44aa5"]},"geometry":{"type":"LineString","coordinates":[[-83.6126591,32.849651300000005],[-83.6118027,32.849669]]},"id":"8944c0a3663ffff-17ffb9b3b409ff2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367892e2-17ffbce89e90fa3e","8f44c0a36633b98-17973abf53a44aa5"]},"geometry":{"type":"LineString","coordinates":[[-83.6118027,32.849669],[-83.6109175,32.8496601]]},"id":"8944c0a3663ffff-17977bd3f67e8e40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6144041,32.847309700000004]},"id":"8f44c0a36728c99-17d7b4657ef459b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36728c99-17d7b4657ef459b5","8f44c0a360d456c-1397f22a4434764f"]},"geometry":{"type":"LineString","coordinates":[[-83.615318,32.845979],[-83.6144041,32.847309700000004]]},"id":"8744c0a36ffffff-17b7f347e728a251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36728c99-17d7b4657ef459b5","8f44c0a367284aa-1797f495a183c4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6144041,32.847309700000004],[-83.614327,32.847422]]},"id":"8b44c0a36728fff-17f7b47d94c525ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3670c768-13b7f57bfab0fc2c","8f44c0a367284aa-1797f495a183c4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.614327,32.847422],[-83.613971,32.847973],[-83.61395850000001,32.8480828]]},"id":"8944c0a3673ffff-17d7b51589624310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36928513-17b7dbcf851dd564","8f44c0a36928498-17ff9bfdec394318"]},"geometry":{"type":"LineString","coordinates":[[-83.62440020000001,32.8338568],[-83.62444400000001,32.833809],[-83.62447440000001,32.833770900000005]]},"id":"8c44c0a369285ff-17df1be641c90dbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6249269,32.8332047]},"id":"8f44c0a3692c923-17d7fab4ba5513da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36928513-17b7dbcf851dd564","8f44c0a3692c923-17d7fab4ba5513da"]},"geometry":{"type":"LineString","coordinates":[[-83.62447440000001,32.833770900000005],[-83.6249269,32.8332047]]},"id":"8944c0a3693ffff-1797fb421e4c57e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62523870000001,32.8328148]},"id":"8f44c0ba92d0508-13df59f1d9607a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3692c923-17d7fab4ba5513da","8f44c0ba92d0508-13df59f1d9607a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6249269,32.8332047],[-83.62495700000001,32.833167],[-83.625223,32.832834000000005],[-83.62523870000001,32.8328148]]},"id":"8a44c0ba92d7fff-13d71a535245e157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92d40e2-1397b94b69373285","8f44c0ba92d0508-13df59f1d9607a44"]},"geometry":{"type":"LineString","coordinates":[[-83.62523870000001,32.8328148],[-83.625505,32.832489]]},"id":"8a44c0ba92d7fff-13f7799e9f91baaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88b1e799-13d78a1d4e2d0e31","8f44c0b88ba849e-13978cbdc94f6b73"]},"geometry":{"type":"LineString","coordinates":[[-83.579294,32.852432],[-83.578218,32.852536]]},"id":"8844c0b88bfffff-13f78b6d8ec2461f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88ba849e-13978cbdc94f6b73","8f44c0b88b81c72-13bfee8b0c92b0f3"]},"geometry":{"type":"LineString","coordinates":[[-83.578218,32.852536],[-83.57748000000001,32.852603]]},"id":"8944c0b88bbffff-1397fda4644bc994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88b82200-13d7d03b8a180e2e","8f44c0b88b81c72-13bfee8b0c92b0f3"]},"geometry":{"type":"LineString","coordinates":[[-83.57748000000001,32.852603],[-83.57678800000001,32.852666]]},"id":"8a44c0b88b87fff-13d79f634f63e192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88b82200-13d7d03b8a180e2e","8f44c0b88b82688-13f7f0d406f7bf05"]},"geometry":{"type":"LineString","coordinates":[[-83.57678800000001,32.852666],[-83.576544,32.852691]]},"id":"8b44c0b88b82fff-13df9087caffa866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88b93044-179792a641e3d686","8f44c0b88b82688-13f7f0d406f7bf05"]},"geometry":{"type":"LineString","coordinates":[[-83.576544,32.852691],[-83.576436,32.852699],[-83.575798,32.852764]]},"id":"8944c0b88bbffff-13fff1bd3e719297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88145d4c-17df96506acea54d","8f44c0b88b93044-179792a641e3d686"]},"geometry":{"type":"LineString","coordinates":[[-83.575798,32.852764],[-83.575028,32.852831],[-83.574297,32.852888]]},"id":"8744c0b88ffffff-17bfd47b43629d18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88145d4c-17df96506acea54d","8f44c0b881446d8-17ffb77f8a9be246"]},"geometry":{"type":"LineString","coordinates":[[-83.574297,32.852888],[-83.57410700000001,32.85291],[-83.573812,32.852933]]},"id":"8a44c0b88147fff-17fff6e7d1fc7872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88944546-13df8b26422717b0","8f44c0b8894014b-17ff8aeea3ce4fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.57895900000001,32.84638],[-83.57887000000001,32.845888]]},"id":"8a44c0b88947fff-13f7cb0a75670c45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88944546-13df8b26422717b0","8f44c0b88926a48-13ffafbded314196"]},"geometry":{"type":"LineString","coordinates":[[-83.57887000000001,32.845888],[-83.578727,32.845086],[-83.578657,32.844715],[-83.57862200000001,32.844531],[-83.57855500000001,32.844316],[-83.57847000000001,32.844118],[-83.578411,32.843995],[-83.578321,32.843852000000005],[-83.578226,32.843722],[-83.578142,32.843621],[-83.57799800000001,32.843473],[-83.577869,32.843358],[-83.57768800000001,32.84322],[-83.57751400000001,32.843116],[-83.577315,32.84301],[-83.57698900000001,32.842869]]},"id":"8644c0b8fffffff-1797ecb1d685d805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c669313-139ff319b395a9d1","8f44c0b88926a48-13ffafbded314196"]},"geometry":{"type":"LineString","coordinates":[[-83.57698900000001,32.842869],[-83.57666800000001,32.842748],[-83.575873,32.8424497],[-83.5756133,32.842331]]},"id":"8744c0b8cffffff-13d7916db2bc2f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a366f3988-1397fcf56b9107ba","8f44c0a366dc088-17ff3cf5b10bf2b7"]},"geometry":{"type":"LineString","coordinates":[[-83.61089700000001,32.852539],[-83.61089650000001,32.853928]]},"id":"8944c0a366fffff-17b7fcf58ab89a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32d62c74-13f73cf38db4c6aa","8f44c0a366dc088-17ff3cf5b10bf2b7"]},"geometry":{"type":"LineString","coordinates":[[-83.61089650000001,32.853928],[-83.6109,32.855373]]},"id":"8744c0a32ffffff-13bfbcf4a27f45c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32d62c74-13f73cf38db4c6aa","8f44c0a32d414cd-17dffd0287b69514"]},"geometry":{"type":"LineString","coordinates":[[-83.6109,32.855373],[-83.610876,32.856774]]},"id":"8944c0a32d7ffff-17b7fcfb03215491"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32c64ba5-13bfbd0ae44f3208","8f44c0a32d414cd-17dffd0287b69514"]},"geometry":{"type":"LineString","coordinates":[[-83.610876,32.856774],[-83.6108626,32.8579497]]},"id":"8944c0a32d7ffff-17df3d06bf5dbe8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32c64ba5-13bfbd0ae44f3208","8f44c0a32c655ad-13ff7d0d2244bf4e"]},"geometry":{"type":"LineString","coordinates":[[-83.6108626,32.8579497],[-83.610859,32.858263]]},"id":"8a44c0a32c67fff-139fbd0c095ac130"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32c655ad-13ff7d0d2244bf4e","8f44c0a32c6e994-13d7fd1547fc0a64"]},"geometry":{"type":"LineString","coordinates":[[-83.610859,32.858263],[-83.61084600000001,32.858995]]},"id":"8944c0a32c7ffff-13f73d11310ff204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32c6a921-17df3d1cae2ec5be","8f44c0a32c6e994-13d7fd1547fc0a64"]},"geometry":{"type":"LineString","coordinates":[[-83.61084600000001,32.858995],[-83.6108342,32.8594097]]},"id":"8b44c0a32c6efff-13dfbd18f4cd62c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61082900000001,32.859591]},"id":"8f44c0a32c6ab80-17bf7d1fe148ff7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a32c6ab80-17bf7d1fe148ff7f","8f44c0a32c6a921-17df3d1cae2ec5be"]},"geometry":{"type":"LineString","coordinates":[[-83.6108342,32.8594097],[-83.61082900000001,32.859591]]},"id":"8a44c0a32c6ffff-1797fd1e4863dc35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362b4096-17b7ac61ab8e4711","8f44c0a3676da89-17ffac5f2913b12d"]},"geometry":{"type":"LineString","coordinates":[[-83.61769100000001,32.84966],[-83.617687,32.850361]]},"id":"8844c0a363fffff-17dfbc6060a5fa4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362b4096-17b7ac61ab8e4711","8f44c0a362b3950-17ffec5de112c8a2"]},"geometry":{"type":"LineString","coordinates":[[-83.617687,32.850361],[-83.617693,32.85107]]},"id":"8a44c0a362b7fff-17973c5fc5142452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36282d1b-13b72c56bb359744","8f44c0a362b3950-17ffec5de112c8a2"]},"geometry":{"type":"LineString","coordinates":[[-83.617693,32.85107],[-83.6177045,32.8517936]]},"id":"8944c0a362bffff-13d7ec5a5638ea8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3629c2a0-1397ec5ac0bb4df4","8f44c0a36282d1b-13b72c56bb359744"]},"geometry":{"type":"LineString","coordinates":[[-83.6177045,32.8517936],[-83.617698,32.852566]]},"id":"8944c0a362bffff-13b76c58bd801964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3629c2a0-1397ec5ac0bb4df4","8f44c0a32922904-17bf2c24611afa74"]},"geometry":{"type":"LineString","coordinates":[[-83.617698,32.852566],[-83.6176884,32.8529955],[-83.617675,32.853592],[-83.617672,32.853727],[-83.6177,32.853785],[-83.61778500000001,32.853824]]},"id":"8744c0a36ffffff-17b77c6051f25518"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178821,32.854455300000005]},"id":"8f44c0a329237aa-13b7bbe7b64dfcac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32922904-17bf2c24611afa74","8f44c0a329237aa-13b7bbe7b64dfcac"]},"geometry":{"type":"LineString","coordinates":[[-83.61778500000001,32.853824],[-83.61785,32.853855],[-83.617885,32.853879],[-83.61790900000001,32.853906],[-83.61791500000001,32.853944000000006],[-83.617913,32.853994],[-83.61791000000001,32.854024],[-83.61787700000001,32.854352],[-83.617878,32.854442],[-83.6178821,32.854455300000005]]},"id":"8a44c0a32927fff-17df2be5b30052ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617896,32.854501]},"id":"8f44c0a32923611-13df2bdf05404194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a329237aa-13b7bbe7b64dfcac","8f44c0a32923611-13df2bdf05404194"]},"geometry":{"type":"LineString","coordinates":[[-83.6178821,32.854455300000005],[-83.617896,32.854501]]},"id":"8c44c0a329237ff-13d7ebe364c78597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3292e480-13d7ab530913e52f","8f44c0a32923611-13df2bdf05404194"]},"geometry":{"type":"LineString","coordinates":[[-83.617896,32.854501],[-83.617963,32.854574],[-83.61812,32.854689]]},"id":"8944c0a3293ffff-139feb9bb43de905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36013444-17f730c928756385","8f44c0a360ae395-1797b2c0eb456ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.61588300000001,32.84388],[-83.615077,32.844172]]},"id":"8844c0a361fffff-17bf71c504e0a51d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360ae395-1797b2c0eb456ddd","8f44c0a36083cd2-13bfb5c4c3b9775b"]},"geometry":{"type":"LineString","coordinates":[[-83.615077,32.844172],[-83.613842,32.84462]]},"id":"8944c0a360bffff-17b7b442d7545b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3646da10-13b7b88d4766f5e5","8f44c0a36083cd2-13bfb5c4c3b9775b"]},"geometry":{"type":"LineString","coordinates":[[-83.613842,32.84462],[-83.612702,32.845041]]},"id":"8944c0a360bffff-13b737290d62217f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3646da10-13b7b88d4766f5e5","8f44c0a3646d0db-13ff390b8ddc143b"]},"geometry":{"type":"LineString","coordinates":[[-83.612702,32.845041],[-83.61250000000001,32.84512]]},"id":"8b44c0a3646dfff-13df78cc69068f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3646d0db-13ff390b8ddc143b","8f44c0a3644e876-13bf3c6b4eef056f"]},"geometry":{"type":"LineString","coordinates":[[-83.61250000000001,32.84512],[-83.611118,32.845661]]},"id":"8944c0a3647ffff-13973abb6d18213c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3644e112-13df3ccc28b27f76","8f44c0a3644e876-13bf3c6b4eef056f"]},"geometry":{"type":"LineString","coordinates":[[-83.611118,32.845661],[-83.610963,32.84572]]},"id":"8b44c0a3644efff-13dfbc9bbb0e1118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3644e112-13df3ccc28b27f76","8f44c0a364583a2-13d7bf03e795d6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.610963,32.84572],[-83.61005460000001,32.846082700000004]]},"id":"8944c0a3647ffff-13d77de80b1babc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a364583a2-13d7bf03e795d6a8","8f44c0a364cd853-17b7e29c24c719f6"]},"geometry":{"type":"LineString","coordinates":[[-83.61005460000001,32.846082700000004],[-83.6085822,32.846650600000004]]},"id":"8844c0a365fffff-17f770d006ac8522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a364c80a9-17bf7429039b1ae5","8f44c0a364cd853-17b7e29c24c719f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6085822,32.846650600000004],[-83.6079472,32.846870700000004]]},"id":"8a44c0a364cffff-17ff73629c6a4708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a364d9ad4-17df66114756ff11","8f44c0a364c80a9-17bf7429039b1ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.6079472,32.846870700000004],[-83.607517,32.847009],[-83.607166,32.847127]]},"id":"8944c0a364fffff-17ffc51d6bac1456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368243b0-13d75e7e2d1c513a","8f44c0a3690b718-13979da1639b5130"]},"geometry":{"type":"LineString","coordinates":[[-83.62372900000001,32.83534],[-83.623575,32.835378],[-83.6233758,32.8354389]]},"id":"8844c0a369fffff-13b7fe103da2e200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368243b0-13d75e7e2d1c513a","8f44c0a36822134-13b7a0036269db1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6233758,32.8354389],[-83.623284,32.835467],[-83.623097,32.835551],[-83.62299300000001,32.835611],[-83.62285200000001,32.835712],[-83.622753,32.835796]]},"id":"8a44c0a36827fff-13b73f49152f9d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6481615,32.8302404]},"id":"8f44c0a3495411a-1796e1fb112b73c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3495411a-1796e1fb112b73c1","8f44c0a349540d4-17def210eae64bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.64812660000001,32.8303305],[-83.6482902,32.830289900000004],[-83.6486611,32.829883],[-83.6485821,32.8298335],[-83.6485186,32.8298258],[-83.6484741,32.8298423],[-83.64822050000001,32.8301412],[-83.6481615,32.8302404]]},"id":"8944c0a3497ffff-17b7e1664f0e58cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3495411a-1796e1fb112b73c1","8f44c0a349540d4-17def210eae64bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.6481615,32.8302404],[-83.64812660000001,32.8303305]]},"id":"8c44c0a349541ff-17b6f205fbe90162"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6614641,32.8420648]},"id":"8f44c0b1b646605-13f6c180f5b6f914"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b646605-13f6c180f5b6f914","8f44c0b1b643551-13f7e107c951772f"]},"geometry":{"type":"LineString","coordinates":[[-83.661658,32.842661],[-83.6616489,32.8420896],[-83.6614641,32.8420648]]},"id":"8a44c0b1b647fff-1396c1198c7bd8b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661473,32.8426138]},"id":"8f44c0b1b65c970-13dfe17b6373ae35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65c970-13dfe17b6373ae35","8f44c0b1b646605-13f6c180f5b6f914"]},"geometry":{"type":"LineString","coordinates":[[-83.6614641,32.8420648],[-83.661473,32.8426138]]},"id":"8a44c0b1b647fff-139ed17e30b891ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65c970-13dfe17b6373ae35","8f44c0b1b643551-13f7e107c951772f"]},"geometry":{"type":"LineString","coordinates":[[-83.661473,32.8426138],[-83.661658,32.842661]]},"id":"8a44c0b1b647fff-13dee1419d4a59de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b11c4a1a6-139efc05701f8a81","8f44c0b11102740-17f6f750ec1a371f"]},"geometry":{"type":"LineString","coordinates":[[-83.6590834,32.772019900000004],[-83.658642,32.7718975],[-83.658347,32.771793800000005],[-83.65805110000001,32.7714528],[-83.6573379,32.7707582],[-83.65715610000001,32.7706255]]},"id":"8744c0b11ffffff-17fee9cb87287921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b11544ac1-13bed5b9b5397ee9","8f44c0b11c4a1a6-139efc05701f8a81"]},"geometry":{"type":"LineString","coordinates":[[-83.65715610000001,32.7706255],[-83.65687170000001,32.7704181],[-83.6565762,32.770234900000005],[-83.65628650000001,32.7701718],[-83.6558466,32.769901100000006],[-83.6553102,32.769838],[-83.6548011,32.769714400000005],[-83.6546021,32.7696034],[-83.65394760000001,32.7694501],[-83.6534541,32.7694501],[-83.6531059,32.769525],[-83.6524407,32.7698768],[-83.6516897,32.7700933],[-83.65118550000001,32.770057200000004],[-83.6508421,32.770057200000004],[-83.65068120000001,32.7702286],[-83.65063830000001,32.771942700000004],[-83.650649,32.7727816],[-83.65075630000001,32.7728628],[-83.6513357,32.772817700000004],[-83.6531813,32.7729317]]},"id":"8744c0b11ffffff-179ff69eedb3ca9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6538999,32.774667]},"id":"8f44c0b11549146-17f6f3f89f03e5c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b11549146-17f6f3f89f03e5c1","8f44c0b11544ac1-13bed5b9b5397ee9"]},"geometry":{"type":"LineString","coordinates":[[-83.6531813,32.7729317],[-83.6532347,32.772935000000004],[-83.6537818,32.7730252],[-83.6538999,32.7731334],[-83.6538999,32.774667]]},"id":"8844c0b115fffff-13dff4402aa2df0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65531080000001,32.7762125]},"id":"8f44c0b110832d3-13bed086c2a7fe65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b110832d3-13bed086c2a7fe65","8f44c0b11549146-17f6f3f89f03e5c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6538999,32.774667],[-83.65410370000001,32.7748113],[-83.65458650000001,32.7750008],[-83.65542330000001,32.775027800000004],[-83.65561650000001,32.7751992],[-83.6555735,32.775569100000006],[-83.65531080000001,32.7762125]]},"id":"8944c0b110bffff-17ded1385cdf2d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b110832d3-13bed086c2a7fe65","8f44c0b1109d291-139ff0ea12e1b273"]},"geometry":{"type":"LineString","coordinates":[[-83.65531080000001,32.7762125],[-83.6551519,32.776601500000005]]},"id":"8944c0b110bffff-13b6f0b8624423f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65091500000001,32.7761122]},"id":"8f44c0b11450b34-13fefb4223a65e4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b115486dd-17bff54e539aa459","8f44c0b11450b34-13fefb4223a65e4d"]},"geometry":{"type":"LineString","coordinates":[[-83.65091500000001,32.7761122],[-83.65079750000001,32.776048100000004],[-83.650734,32.7760042],[-83.6506919,32.775975],[-83.6506919,32.7758217],[-83.6508099,32.775695400000004],[-83.6522905,32.7745678],[-83.6526017,32.7744866],[-83.65325610000001,32.7745587],[-83.6533531,32.7745751]]},"id":"8844c0b115fffff-17fed91547603d85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b115486dd-17bff54e539aa459","8f44c0b11549146-17f6f3f89f03e5c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6533531,32.7745751],[-83.6538999,32.774667]]},"id":"8a44c0b1154ffff-17def4a37f85d449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6571239,32.7731379]},"id":"8f44c0b1118cb12-13bffc1993ce62fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b111abae4-13b6dae1d2efaf23","8f44c0b1118cb12-13bffc1993ce62fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6571239,32.7731379],[-83.6576227,32.7731269]]},"id":"8944c0b111bffff-13b7cb7dbaf47f9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b111abae4-13b6dae1d2efaf23","8f44c0b111a9686-13b6ca9b62e10419"]},"geometry":{"type":"LineString","coordinates":[[-83.6576227,32.7731269],[-83.6577354,32.7731244]]},"id":"8a44c0b111affff-13b7dabe93a28de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1103472c-13bfe96f805dbf45","8f44c0b111a9686-13b6ca9b62e10419"]},"geometry":{"type":"LineString","coordinates":[[-83.6577354,32.7731244],[-83.6580734,32.773304800000005],[-83.6582152,32.7733682]]},"id":"8844c0b111fffff-13f7ea06832e8996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6584157,32.773457900000004]},"id":"8f44c0b11034358-13f7f8f23a915f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1103472c-13bfe96f805dbf45","8f44c0b11034358-13f7f8f23a915f03"]},"geometry":{"type":"LineString","coordinates":[[-83.6582152,32.7733682],[-83.6584157,32.773457900000004]]},"id":"8b44c0b11034fff-13d7e930d7642aae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65509610000001,32.7741709]},"id":"8f44c0b110b4361-17b6d10cfa8b48bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110b4361-17b6d10cfa8b48bd","8f44c0b11014530-17b6db8270554908"]},"geometry":{"type":"LineString","coordinates":[[-83.65509610000001,32.7741709],[-83.6572604,32.7741318],[-83.6573657,32.7741737]]},"id":"8844c0b111fffff-17b6ee45558c91f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6579748,32.774378500000005]},"id":"8f44c0b11033659-17b6da05c062581e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11014530-17b6db8270554908","8f44c0b11033659-17b6da05c062581e"]},"geometry":{"type":"LineString","coordinates":[[-83.6573657,32.7741737],[-83.6575852,32.774261100000004],[-83.6579748,32.774378500000005]]},"id":"8a44c0b11017fff-17f6eac5794e9586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6563407,32.7764576]},"id":"8f44c0b1108dcde-13d6ce03124c896f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11088934-13bece9809d03e12","8f44c0b1108dcde-13d6ce03124c896f"]},"geometry":{"type":"LineString","coordinates":[[-83.6563407,32.7764576],[-83.65610240000001,32.7764104]]},"id":"8a44c0b1108ffff-13b7ce4d9cd229cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11088934-13bece9809d03e12","8f44c0b110832d3-13bed086c2a7fe65"]},"geometry":{"type":"LineString","coordinates":[[-83.65610240000001,32.7764104],[-83.6558632,32.7763629],[-83.65531080000001,32.7762125]]},"id":"8944c0b110bffff-13fedf904c975962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0bada36048-17dffba019b302ba","8f44c0badad622e-17dfff597a8144a9"]},"geometry":{"type":"LineString","coordinates":[[-83.63613210000001,32.804731600000004],[-83.6375161,32.8016474],[-83.6376743,32.8012948],[-83.6376575,32.800654800000004]]},"id":"8844c0badbfffff-13f6fd3243f4bdf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63770650000001,32.7998969]},"id":"8f44c0badbad6f0-13fffb81743fcf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0bada36048-17dffba019b302ba","8f44c0badbad6f0-13fffb81743fcf11"]},"geometry":{"type":"LineString","coordinates":[[-83.6376575,32.800654800000004],[-83.63765280000001,32.8004741],[-83.63770650000001,32.7998969]]},"id":"8844c0badbfffff-13fefb95e0bcf017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0badbad6f0-13fffb81743fcf11","8f44c0badbac2c4-13d7fbe61b7090ae"]},"geometry":{"type":"LineString","coordinates":[[-83.63770650000001,32.7998969],[-83.6378631,32.799604],[-83.6379926,32.799485600000004],[-83.63815380000001,32.799381100000005],[-83.6382758,32.7992876],[-83.63832860000001,32.7991903],[-83.63836780000001,32.799055200000005],[-83.6383826,32.7989316],[-83.6383752,32.7988419],[-83.63832810000001,32.7987245],[-83.63825820000001,32.7986415],[-83.6381356,32.7985802],[-83.6378076,32.7985786],[-83.6376183,32.798587500000004],[-83.63750970000001,32.79864],[-83.6373631,32.798742600000004],[-83.6373739,32.7993198],[-83.6375455,32.799599300000004]]},"id":"8844c0badbfffff-13fefb2af6aa0dde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0badbad6f0-13fffb81743fcf11","8f44c0badbac2c4-13d7fbe61b7090ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6375455,32.799599300000004],[-83.63770650000001,32.7998969]]},"id":"8a44c0badbaffff-13b6fbb3c848cd6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6473744,32.7778538]},"id":"8f44c0b13b2da45-17bee3e7055d0cf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13b32675-1397fba7e0d36f69","8f44c0b13b2da45-17bee3e7055d0cf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6473744,32.7778538],[-83.6447941,32.7769878],[-83.64419860000001,32.7769653]]},"id":"8844c0b13bfffff-13fee7bfa7b2993e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13b32675-1397fba7e0d36f69","8f44c0b13849068-1396fc8536533df3"]},"geometry":{"type":"LineString","coordinates":[[-83.64419860000001,32.7769653],[-83.6438445,32.7769613]]},"id":"8944c0b13b3ffff-1396fc16990e0302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13849068-1396fc8536533df3","8f44c0b1385b4c6-13f7f19c50d8f89c"]},"geometry":{"type":"LineString","coordinates":[[-83.6438445,32.7769613],[-83.6421655,32.7769427],[-83.6417595,32.7769405]]},"id":"8744c0b13ffffff-13ffef10ccd0ff8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1385b4c6-13f7f19c50d8f89c","8f44c0b13b9d215-13def1866a08f83a"]},"geometry":{"type":"LineString","coordinates":[[-83.6417595,32.7769405],[-83.6405991,32.7769156],[-83.64039530000001,32.776938200000004],[-83.6403792,32.777100600000004],[-83.6407011,32.777317100000005],[-83.6411624,32.7776283],[-83.6414306,32.7779801],[-83.6416023,32.778386000000005],[-83.64177930000001,32.778927200000005],[-83.64180610000001,32.779184300000004],[-83.64179460000001,32.7795403]]},"id":"8744c0b13ffffff-17f6f2e92ad1fbf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13aa4c93-13f6f190047efbcc","8f44c0b13b9d215-13def1866a08f83a"]},"geometry":{"type":"LineString","coordinates":[[-83.64179460000001,32.7795403],[-83.6417792,32.780016700000004]]},"id":"8944c0b13bbffff-13f7f18b3832ff17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64970790000001,32.7757384]},"id":"8f44c0b114e4ac8-1396de349ef53aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b114e4ac8-1396de349ef53aac","8f44c0b1395e518-13fef00b0986dd8f"]},"geometry":{"type":"LineString","coordinates":[[-83.64970790000001,32.7757384],[-83.6497616,32.7739974],[-83.64961140000001,32.7736997],[-83.64942900000001,32.7735554],[-83.6482273,32.773122400000005],[-83.6473368,32.7730863],[-83.64474050000001,32.7730863],[-83.6424016,32.7730602]]},"id":"8644c0b17ffffff-1396f5234af430c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b138b1888-1396fdd06ac3779b","8f44c0b1395e518-13fef00b0986dd8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6424016,32.7730602],[-83.64231570000001,32.7730592],[-83.6392902,32.7730502],[-83.6381422,32.7730502],[-83.63763800000001,32.773068300000006],[-83.637241,32.773185500000004],[-83.63697280000001,32.773131400000004],[-83.636761,32.773099]]},"id":"8844c0b139fffff-13fef6f3f588d1df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60328030000001,32.8425381]},"id":"8f44c0b8d9491a2-139f5f8dd3cd1f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8d94eb8e-139ff0da6b8191fa","8f44c0b8d9491a2-139f5f8dd3cd1f08"]},"geometry":{"type":"LineString","coordinates":[[-83.60328030000001,32.8425381],[-83.60318000000001,32.8424682],[-83.60277500000001,32.8421831],[-83.60270390000001,32.8421369],[-83.60268380000001,32.842100800000004],[-83.60268380000001,32.8420727],[-83.6026865,32.8420423],[-83.6026999,32.841993800000004],[-83.60274820000001,32.8419307]]},"id":"8a44c0b8d94ffff-13ff706e6eb98b13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8d94eb8e-139ff0da6b8191fa","8f44c0b8d9491a2-139f5f8dd3cd1f08"]},"geometry":{"type":"LineString","coordinates":[[-83.60274820000001,32.8419307],[-83.60278980000001,32.841893500000005],[-83.6028689,32.8418586],[-83.6029252,32.8418507],[-83.6029601,32.8418575],[-83.603054,32.841907],[-83.60345720000001,32.8421864],[-83.60348850000001,32.842207900000005],[-83.6035047,32.8422405],[-83.6035073,32.8422665],[-83.6035032,32.8422901],[-83.6034939,32.8423115],[-83.6034814,32.842331200000004],[-83.6034673,32.842345],[-83.6033467,32.8424636],[-83.60328030000001,32.8425381]]},"id":"8a44c0b8d94ffff-1397cfb3546d43b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6030762,32.8427669]},"id":"8f44c0b8d94ba46-13bf500d69dba8d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8d94ba46-13bf500d69dba8d7","8f44c0b8d9491a2-139f5f8dd3cd1f08"]},"geometry":{"type":"LineString","coordinates":[[-83.60328030000001,32.8425381],[-83.6030762,32.8427669]]},"id":"8a44c0b8d94ffff-13f7dfcd91084f51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6535836,32.808596]},"id":"8f44c0b1a909d9a-13bed4be4a16c42f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a956758-1397d4c7c0e234b2","8f44c0b1a909d9a-13bed4be4a16c42f"]},"geometry":{"type":"LineString","coordinates":[[-83.6535836,32.808596],[-83.65356840000001,32.8093489]]},"id":"8844c0b1a9fffff-13b7d4c30dde14c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6533239,32.8103373]},"id":"8f44c0b1a82898c-17fed5609d7828e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a956758-1397d4c7c0e234b2","8f44c0b1a82898c-17fed5609d7828e3"]},"geometry":{"type":"LineString","coordinates":[[-83.65356840000001,32.8093489],[-83.65355670000001,32.8099306],[-83.6534709,32.810097400000004],[-83.6533582,32.8102552],[-83.6533239,32.8103373]]},"id":"8844c0b1a9fffff-13d7d4ed91ec1c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a82898c-17fed5609d7828e3","8f44c0b1a82b244-17fed57de04888b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6533239,32.8103373],[-83.6532885,32.810422],[-83.653277,32.811134]]},"id":"8a44c0b1a82ffff-17f7d578afb0cd5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65226390000001,32.810922500000004]},"id":"8f44c0b1a80164d-17fed7f71d07da1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a82e102-13f6f664cd5a4086","8f44c0b1a80164d-17fed7f71d07da1e"]},"geometry":{"type":"LineString","coordinates":[[-83.65226390000001,32.810922500000004],[-83.65224780000001,32.810119900000004],[-83.65228540000001,32.810034300000005],[-83.65233900000001,32.809980200000005],[-83.65251070000001,32.8099757],[-83.65274670000001,32.810002700000005],[-83.6529076,32.8101154]]},"id":"8944c0b1a83ffff-17d6f79f0ae6e7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a82e102-13f6f664cd5a4086","8f44c0b1a82898c-17fed5609d7828e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6529076,32.8101154],[-83.65308470000001,32.8102597],[-83.6531973,32.8103138],[-83.6533239,32.8103373]]},"id":"8a44c0b1a82ffff-17d6d5e9d589d031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6712552,32.8202088]},"id":"8f44c0b182808aa-1796a99981911d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b182a2d96-13d6f98af05f5ec8","8f44c0b182808aa-1796a99981911d73"]},"geometry":{"type":"LineString","coordinates":[[-83.6712552,32.8202088],[-83.6712785,32.8192527]]},"id":"8944c0b182bffff-13ffe992498a1170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6704184,32.820212000000005]},"id":"8f44c0b182953ae-179eaba4862a33aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b182953ae-179eaba4862a33aa","8f44c0b182a2d96-13d6f98af05f5ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.6712785,32.8192527],[-83.6712821,32.819104],[-83.67116940000001,32.818910200000005],[-83.6710836,32.8188696],[-83.6705311,32.818865100000004],[-83.6704399,32.818887600000004],[-83.67038620000001,32.8190003],[-83.6704184,32.820212000000005]]},"id":"8944c0b182bffff-13dffb114a48fc27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6541521,32.8753791]},"id":"8f44c0a3102c229-13d7f35afbf7cc3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3102c229-13d7f35afbf7cc3c","8f44c0a3115e693-13dfd217bacfabd5"]},"geometry":{"type":"LineString","coordinates":[[-83.6541521,32.8753791],[-83.6545239,32.8755199],[-83.654632,32.8755662],[-83.65466930000001,32.8755893]]},"id":"8844c0a311fffff-1396d2b7e38f83bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3107484c-17d6f1c6521659bd","8f44c0a3115e693-13dfd217bacfabd5"]},"geometry":{"type":"LineString","coordinates":[[-83.65466930000001,32.8755893],[-83.6547211,32.8756214],[-83.6547975,32.8756927],[-83.65485050000001,32.8757907],[-83.65488660000001,32.8759065],[-83.6548781,32.8760205],[-83.6548336,32.876155000000004],[-83.65479950000001,32.876214700000006]]},"id":"8844c0a311fffff-1797d1b5c1d47cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6537971,32.8756554]},"id":"8f44c0a31028465-13f6f438d25c927b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3107484c-17d6f1c6521659bd","8f44c0a31028465-13f6f438d25c927b"]},"geometry":{"type":"LineString","coordinates":[[-83.65479950000001,32.876214700000006],[-83.6547848,32.8762405],[-83.654683,32.8763349],[-83.6545451,32.8764168],[-83.6544157,32.8764739],[-83.65430330000001,32.876504100000005],[-83.6541421,32.8765148],[-83.6540106,32.8764952],[-83.6539066,32.876457800000004],[-83.653773,32.8763723],[-83.6536871,32.876253000000005],[-83.65364890000001,32.876149600000005],[-83.65363620000001,32.876026700000004],[-83.65365530000001,32.8759109],[-83.6537062,32.875802300000004],[-83.65377190000001,32.8756811],[-83.6537971,32.8756554]]},"id":"8844c0a311fffff-17fef397f3551658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31028465-13f6f438d25c927b","8f44c0a3102c229-13d7f35afbf7cc3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6537971,32.8756554],[-83.65382070000001,32.8756312],[-83.65390980000001,32.8755742],[-83.654015,32.875506],[-83.6541375,32.875396800000004],[-83.6541521,32.8753791]]},"id":"8a44c0a3102ffff-13b7d3c7488cd249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769967,32.851680800000004]},"id":"8f44c0a2673622d-13fe9b951b4126cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2673622d-13fe9b951b4126cb","8f44c0a2609a256-13bffa28e0d65b8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6769967,32.851680800000004],[-83.6775794,32.851174300000004]]},"id":"8744c0a26ffffff-13dedadf0c4db8cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609a256-13bffa28e0d65b8c","8f44c0a2609aa5b-17f699df67bf6db0"]},"geometry":{"type":"LineString","coordinates":[[-83.6775794,32.851174300000004],[-83.67769700000001,32.851072]]},"id":"8b44c0a2609afff-13969a042d2fbfa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26721d31-13d6d7171d5514aa","8f44c0a260d2251-13bfb573e5f79508"]},"geometry":{"type":"LineString","coordinates":[[-83.6795074,32.852392300000005],[-83.6792927,32.852446900000004],[-83.67914780000001,32.852415300000004],[-83.6790244,32.8523522],[-83.67891180000001,32.8522576],[-83.6788313,32.8521449],[-83.6788367,32.852054800000005]]},"id":"8744c0a26ffffff-1396d66d5442847c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26721d31-13d6d7171d5514aa","8f44c0a267257a1-139ef6eda99b3802"]},"geometry":{"type":"LineString","coordinates":[[-83.6788367,32.852054800000005],[-83.678903,32.851939800000004]]},"id":"8a44c0a26727fff-13b6d7025b690540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688621,32.8144999]},"id":"8f44c0b180f338a-17b6ff713386bf47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668867,32.8143635]},"id":"8f44c0b180f315e-17d7bf6e22ee8de2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f338a-17b6ff713386bf47","8f44c0b180f315e-17d7bf6e22ee8de2"]},"geometry":{"type":"LineString","coordinates":[[-83.6688621,32.8144999],[-83.668867,32.8143635]]},"id":"8b44c0b180f3fff-17ffff6fb19e3e82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66886190000001,32.813505400000004]},"id":"8f44c0b180f4418-17beef7158fe5095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f4418-17beef7158fe5095","8f44c0b180f315e-17d7bf6e22ee8de2"]},"geometry":{"type":"LineString","coordinates":[[-83.668867,32.8143635],[-83.66886190000001,32.813505400000004]]},"id":"8a44c0b180f7fff-17d7bf6fc9fd7751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6735986,32.820201600000004]},"id":"8f44c0b1821eb91-1796a3e0e3575f3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67359830000001,32.820003]},"id":"8f44c0b1821e935-1797e3e11c348fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1821e935-1797e3e11c348fec","8f44c0b1821eb91-1796a3e0e3575f3f"]},"geometry":{"type":"LineString","coordinates":[[-83.6735986,32.820201600000004],[-83.6735972,32.8200592],[-83.67359830000001,32.820003]]},"id":"8a44c0b1821ffff-17d7f3e1548e2602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67360910000001,32.8194654]},"id":"8f44c0b1821571a-13d7e3da543f51aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1821e935-1797e3e11c348fec","8f44c0b1821571a-13d7e3da543f51aa"]},"geometry":{"type":"LineString","coordinates":[[-83.67359830000001,32.820003],[-83.67360910000001,32.8194654]]},"id":"8944c0b1823ffff-13ffe3ddb98e93aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6743174,32.819453]},"id":"8f44c0b18206254-13bea21fa1353cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1821e935-1797e3e11c348fec","8f44c0b18206254-13bea21fa1353cfe"]},"geometry":{"type":"LineString","coordinates":[[-83.6743174,32.819453],[-83.6743005,32.8199963],[-83.67359830000001,32.820003]]},"id":"8944c0b1823ffff-13def2a39c5b7b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1821e935-1797e3e11c348fec","8f44c0b1821571a-13d7e3da543f51aa"]},"geometry":{"type":"LineString","coordinates":[[-83.67359830000001,32.820003],[-83.6731587,32.819998500000004],[-83.6731573,32.8194733],[-83.67360910000001,32.8194654]]},"id":"8944c0b1823ffff-13ffb49c96e0bb1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18206254-13bea21fa1353cfe","8f44c0b1821571a-13d7e3da543f51aa"]},"geometry":{"type":"LineString","coordinates":[[-83.67360910000001,32.8194654],[-83.6743174,32.819453]]},"id":"8944c0b1823ffff-13d6a2fcfb1288cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67471900000001,32.8195173]},"id":"8f44c0b1820084a-13f6f124ada8a794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18206254-13bea21fa1353cfe","8f44c0b1820084a-13f6f124ada8a794"]},"geometry":{"type":"LineString","coordinates":[[-83.6743174,32.819453],[-83.6744448,32.819450800000006],[-83.6746215,32.8194733],[-83.67471900000001,32.8195173]]},"id":"8a44c0b18207fff-13d7b19ff4b90306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808d649-17bff15dd179ad0d","8f44c0b18089d10-17bef1ce89ea76f8"]},"geometry":{"type":"LineString","coordinates":[[-83.66807390000001,32.8139254],[-83.6678936,32.813923800000005]]},"id":"8a44c0b1808ffff-17bef1963c9ae36a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18089d10-17bef1ce89ea76f8","8f44c0b18089db5-17beb1e9a40cf2ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6678936,32.813923800000005],[-83.6678502,32.8139234]]},"id":"8c44c0b18089dff-17bef1dc1aaad38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18088313-17bff247fdd8e0cf","8f44c0b18089db5-17beb1e9a40cf2ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6678502,32.8139234],[-83.66769930000001,32.813922000000005]]},"id":"8b44c0b18088fff-17bfb218c0b5f343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18088313-17bff247fdd8e0cf","8f44c0b180887ab-17beb2c4cd4f614e"]},"geometry":{"type":"LineString","coordinates":[[-83.66769930000001,32.813922000000005],[-83.6674996,32.813920100000004]]},"id":"8b44c0b18088fff-17beb2865f5fc266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673892,32.8139191]},"id":"8f44c0b1808ab55-17bff309c0d1951f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180887ab-17beb2c4cd4f614e","8f44c0b1808ab55-17bff309c0d1951f"]},"geometry":{"type":"LineString","coordinates":[[-83.6674996,32.813920100000004],[-83.6673892,32.8139191]]},"id":"8a44c0b1808ffff-17bff2e74b9f077d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673866,32.814052100000005]},"id":"8f44c0b1808bdaa-179eb30b6606ef56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808bdaa-179eb30b6606ef56","8f44c0b1808ab55-17bff309c0d1951f"]},"geometry":{"type":"LineString","coordinates":[[-83.6673892,32.8139191],[-83.6673866,32.814052100000005]]},"id":"8a44c0b1808ffff-17f7b30a9dbef2b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66723370000001,32.814306800000004]},"id":"8f44c0b18724b04-17bff36afd7bd5b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808bdaa-179eb30b6606ef56","8f44c0b18724b04-17bff36afd7bd5b1"]},"geometry":{"type":"LineString","coordinates":[[-83.6673866,32.814052100000005],[-83.66723370000001,32.814306800000004]]},"id":"8944c0b180bffff-17deb33b3b6a4a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672204,32.814452100000004]},"id":"8f44c0b18724acd-179eb3734144bea1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18724b04-17bff36afd7bd5b1","8f44c0b18724acd-179eb3734144bea1"]},"geometry":{"type":"LineString","coordinates":[[-83.66723370000001,32.814306800000004],[-83.6672204,32.814452100000004]]},"id":"8c44c0b18724bff-17dfb36f1ba92b9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67311980000001,32.8150484]},"id":"8f44c0b1804e01e-17ffe50c2434f11c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1804e01e-17ffe50c2434f11c","8f44c0b18058920-17f6e7047b594996"]},"geometry":{"type":"LineString","coordinates":[[-83.67311980000001,32.8150484],[-83.67231290000001,32.815031600000005]]},"id":"8944c0b1807ffff-17fea6085bf0f071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18058920-17f6e7047b594996","8f44c0b180edb6c-17ffe8b2180ffb2b"]},"geometry":{"type":"LineString","coordinates":[[-83.67231290000001,32.815031600000005],[-83.6716255,32.8150172]]},"id":"8a44c0b1805ffff-17fee7db4bdb78c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b180e88a1-17deea6a465a80d1","8f44c0b180edb6c-17ffe8b2180ffb2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6716255,32.8150172],[-83.6709646,32.8150034],[-83.67092120000001,32.814996400000005]]},"id":"8844c0b181fffff-17f7b98e598de925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6709311,32.8146774]},"id":"8f44c0b180ec18a-1797ea641c700af6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b180e88a1-17deea6a465a80d1","8f44c0b180ec18a-1797ea641c700af6"]},"geometry":{"type":"LineString","coordinates":[[-83.67092120000001,32.814996400000005],[-83.6709311,32.8146774]]},"id":"8a44c0b180effff-17ffba672b7a26f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67093530000001,32.8145408]},"id":"8f44c0b180ecd53-17d6aa617ccbf869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b180ecd53-17d6aa617ccbf869","8f44c0b180ec18a-1797ea641c700af6"]},"geometry":{"type":"LineString","coordinates":[[-83.6709311,32.8146774],[-83.67093530000001,32.8145408]]},"id":"8b44c0b180ecfff-17feba62cc6abc77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67094390000001,32.8142658]},"id":"8f44c0b18052476-1796aa5c1bb0fa72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b180ecd53-17d6aa617ccbf869","8f44c0b18052476-1796aa5c1bb0fa72"]},"geometry":{"type":"LineString","coordinates":[[-83.67093530000001,32.8145408],[-83.67094390000001,32.8142658]]},"id":"8944c0b180fffff-17feba5ec5a5dad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66651750000001,32.8136193]},"id":"8f44c0b1809d498-1796b52a99b407cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6662908,32.8137135]},"id":"8f44c0b18098011-17bef5b845f3a275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809d498-1796b52a99b407cc","8f44c0b18098011-17bef5b845f3a275"]},"geometry":{"type":"LineString","coordinates":[[-83.66651750000001,32.8136193],[-83.66634040000001,32.8137148],[-83.6662908,32.8137135]]},"id":"8b44c0b18098fff-17b7f56ffb8f76c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809841d-17b7f6282d6d57a2","8f44c0b18098011-17bef5b845f3a275"]},"geometry":{"type":"LineString","coordinates":[[-83.6662908,32.8137135],[-83.66611180000001,32.8137087]]},"id":"8b44c0b18098fff-17bff5f03d98f851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66589780000001,32.813703000000004]},"id":"8f44c0b1809a8f6-17b6f6adee544942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809a8f6-17b6f6adee544942","8f44c0b1809841d-17b7f6282d6d57a2"]},"geometry":{"type":"LineString","coordinates":[[-83.66611180000001,32.8137087],[-83.66589780000001,32.813703000000004]]},"id":"8a44c0b1809ffff-17b6b66b02e7639b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665315,32.8136875]},"id":"8f44c0b1846d6d2-17beb81a267c489f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809a8f6-17b6f6adee544942","8f44c0b1846d6d2-17beb81a267c489f"]},"geometry":{"type":"LineString","coordinates":[[-83.66589780000001,32.813703000000004],[-83.665315,32.8136875]]},"id":"8744c0b18ffffff-17bfb7640c2dfb9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66521510000001,32.813683000000005]},"id":"8f44c0b18468a5b-17b7f8589a200026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846d6d2-17beb81a267c489f","8f44c0b18468a5b-17b7f8589a200026"]},"geometry":{"type":"LineString","coordinates":[[-83.665315,32.8136875],[-83.66521510000001,32.813683000000005]]},"id":"8a44c0b1846ffff-17bff8395aaa28c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66519530000001,32.814416]},"id":"8f44c0b187360d1-17f6b864f2870869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18468a5b-17b7f8589a200026","8f44c0b187360d1-17f6b864f2870869"]},"geometry":{"type":"LineString","coordinates":[[-83.66521510000001,32.813683000000005],[-83.66519530000001,32.814416]]},"id":"8744c0b18ffffff-179ef85ec007ec05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674171,32.8161663]},"id":"8f44c0b18314759-13b7f27b2c50a7bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b183044dc-13d6dfaee0819e05","8f44c0b18314759-13b7f27b2c50a7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.675317,32.816186],[-83.6749075,32.8161846],[-83.674171,32.8161663]]},"id":"8944c0b1833ffff-13bfe1150f12159a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1804e01e-17ffe50c2434f11c","8f44c0b18314759-13b7f27b2c50a7bb"]},"geometry":{"type":"LineString","coordinates":[[-83.674171,32.8161663],[-83.6730943,32.816139500000006],[-83.67311980000001,32.8150484]]},"id":"8744c0b18ffffff-13ffe470f41cf027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731218,32.8147332]},"id":"8f44c0b18041616-17bee50aefd8466c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1804e01e-17ffe50c2434f11c","8f44c0b18041616-17bee50aefd8466c"]},"geometry":{"type":"LineString","coordinates":[[-83.67311980000001,32.8150484],[-83.6731211,32.8149899],[-83.6731218,32.8147332]]},"id":"8944c0b1807ffff-179ee50b385e1755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731219,32.814609700000005]},"id":"8f44c0b18041475-17ffb50ade26e37d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18041616-17bee50aefd8466c","8f44c0b18041475-17ffb50ade26e37d"]},"geometry":{"type":"LineString","coordinates":[[-83.6731218,32.8147332],[-83.6731219,32.814609700000005]]},"id":"8b44c0b18041fff-1797b50ae323231b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808ab8d-17bfb33d0f81bce7","8f44c0b1808ab55-17bff309c0d1951f"]},"geometry":{"type":"LineString","coordinates":[[-83.6673892,32.8139191],[-83.66730720000001,32.8139163]]},"id":"8c44c0b1808abff-17beb3236f30a410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808ab8d-17bfb33d0f81bce7","8f44c0b1808a189-17b7b3b46881c9fb"]},"geometry":{"type":"LineString","coordinates":[[-83.66730720000001,32.8139163],[-83.66711620000001,32.8139099]]},"id":"8b44c0b1808afff-17b7b378b88c2448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808a189-17b7b3b46881c9fb","8f44c0b1808a4a5-17b7b42f11310069"]},"geometry":{"type":"LineString","coordinates":[[-83.66711620000001,32.8139099],[-83.66691990000001,32.8139033]]},"id":"8b44c0b1808afff-17b7b3f1c927fd18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18724b04-17bff36afd7bd5b1","8f44c0b1808a4a5-17b7b42f11310069"]},"geometry":{"type":"LineString","coordinates":[[-83.66691990000001,32.8139033],[-83.6669145,32.813984500000004],[-83.6669038,32.8143023],[-83.66704320000001,32.8143204],[-83.6671505,32.8143204],[-83.66723370000001,32.814306800000004]]},"id":"8944c0b180bffff-17fef407efc57d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66830130000001,32.8134948]},"id":"8f44c0b180ab2c5-17b6f0cfb581e541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180d480d-17dfb064fbed681a","8f44c0b180ab2c5-17b6f0cfb581e541"]},"geometry":{"type":"LineString","coordinates":[[-83.66830130000001,32.8134948],[-83.6682804,32.814350000000005],[-83.6684721,32.8143544]]},"id":"8844c0b181fffff-17feb0cc7f4c8301"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180d480d-17dfb064fbed681a","8f44c0b180f342b-17deefed8604beb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6684721,32.8143544],[-83.66866320000001,32.8143588]]},"id":"8944c0b180fffff-17def0294e2f797e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f315e-17d7bf6e22ee8de2","8f44c0b180f342b-17deefed8604beb9"]},"geometry":{"type":"LineString","coordinates":[[-83.66866320000001,32.8143588],[-83.668867,32.8143635]]},"id":"8b44c0b180f3fff-17dfefadd51b3af5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f315e-17d7bf6e22ee8de2","8f44c0b180f0a9d-17f6fef5523daea8"]},"geometry":{"type":"LineString","coordinates":[[-83.668867,32.8143635],[-83.6690495,32.814367700000005],[-83.6690603,32.813984500000004]]},"id":"8a44c0b180f7fff-1796ef0c33e02d72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f56a9-17f6be687d411e95","8f44c0b180f0a9d-17f6fef5523daea8"]},"geometry":{"type":"LineString","coordinates":[[-83.6690603,32.813984500000004],[-83.6692857,32.8139873]]},"id":"8a44c0b180f7fff-17f7beaee8fc66c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f5276-17ffadc9d94897a5","8f44c0b180f56a9-17f6be687d411e95"]},"geometry":{"type":"LineString","coordinates":[[-83.6692857,32.8139873],[-83.6695395,32.813996200000005]]},"id":"8b44c0b180f5fff-17feee192430ce6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f5276-17ffadc9d94897a5","8f44c0b180f4b5e-17beee5cfcde1410"]},"geometry":{"type":"LineString","coordinates":[[-83.6695395,32.813996200000005],[-83.66952780000001,32.8135181],[-83.6693041,32.8135142]]},"id":"8944c0b180fffff-17b6bde4f07474ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f4003-17bfeef0566c3044","8f44c0b180f4b5e-17beee5cfcde1410"]},"geometry":{"type":"LineString","coordinates":[[-83.6693041,32.8135142],[-83.6690683,32.8135094]]},"id":"8b44c0b180f4fff-17beeea6a7c8a5da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f4418-17beef7158fe5095","8f44c0b180f4003-17bfeef0566c3044"]},"geometry":{"type":"LineString","coordinates":[[-83.6690683,32.8135094],[-83.66886190000001,32.813505400000004]]},"id":"8b44c0b180f4fff-17beaf30d94ecfb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f4418-17beef7158fe5095","8f44c0b180f68e4-17b6ffddd5f847b1"]},"geometry":{"type":"LineString","coordinates":[[-83.66886190000001,32.813505400000004],[-83.6686883,32.8135021]]},"id":"8a44c0b180f7fff-17b7efa7992a80b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f68e4-17b6ffddd5f847b1","8f44c0b180f6ce2-17b6b05a045a0d91"]},"geometry":{"type":"LineString","coordinates":[[-83.6686883,32.8135021],[-83.6684896,32.8134984]]},"id":"8b44c0b180f6fff-17b7b01bfd749029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180f6ce2-17b6b05a045a0d91","8f44c0b180ab2c5-17b6f0cfb581e541"]},"geometry":{"type":"LineString","coordinates":[[-83.6684896,32.8134984],[-83.66830130000001,32.8134948]]},"id":"8944c0b180bffff-17b7f094ee2a9920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180ab2c5-17b6f0cfb581e541","8f44c0b180ab6d1-17bff1543ab945bf"]},"geometry":{"type":"LineString","coordinates":[[-83.66830130000001,32.8134948],[-83.6680893,32.813490800000004]]},"id":"8944c0b180bffff-17b7b111f856c0df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808cad8-17bff1c7aee86f62","8f44c0b180ab6d1-17bff1543ab945bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6680893,32.813490800000004],[-83.6679046,32.8134868]]},"id":"8a44c0b1808ffff-17beb18df6ebc76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808c774-17beb243d8fef243","8f44c0b1808cad8-17bff1c7aee86f62"]},"geometry":{"type":"LineString","coordinates":[[-83.6679046,32.8134868],[-83.6677059,32.8134826]]},"id":"8b44c0b1808cfff-17bff205c1ea9c72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808c774-17beb243d8fef243","8f44c0b1808eb72-17b7f2c150176099"]},"geometry":{"type":"LineString","coordinates":[[-83.6677059,32.8134826],[-83.6675051,32.8134782]]},"id":"8a44c0b1808ffff-17bff28291cf878f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808e155-17b7f336c1487eb8","8f44c0b1808eb72-17b7f2c150176099"]},"geometry":{"type":"LineString","coordinates":[[-83.6675051,32.8134782],[-83.6673172,32.8134742]]},"id":"8b44c0b1808efff-17b6b2fc187b4df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808e551-17b6f3acef149faf","8f44c0b1808e155-17b7f336c1487eb8"]},"geometry":{"type":"LineString","coordinates":[[-83.6673172,32.8134742],[-83.66712820000001,32.8134701]]},"id":"8b44c0b1808efff-17b6b371d3beabc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808e551-17b6f3acef149faf","8f44c0b1809d95a-17b6f4251feab10c"]},"geometry":{"type":"LineString","coordinates":[[-83.66712820000001,32.8134701],[-83.6669359,32.813466000000005]]},"id":"8944c0b180bffff-17b7b3e906473191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64708,32.83514]},"id":"8f44c0a34bb4da5-139ee49f02ba94b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34842074-17b6f23073d845a1","8f44c0a34bb4da5-139ee49f02ba94b3"]},"geometry":{"type":"LineString","coordinates":[[-83.64708,32.83514],[-83.64713250000001,32.835078700000004],[-83.64804600000001,32.8340131],[-83.64807610000001,32.8339779]]},"id":"8844c0a349fffff-179fe367b96298db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34842074-17b6f23073d845a1","8f44c0a34860513-13dfdfd8e70e8524"]},"geometry":{"type":"LineString","coordinates":[[-83.64807610000001,32.8339779],[-83.64829900000001,32.833697],[-83.648752,32.833153],[-83.6489633,32.8328987],[-83.6490354,32.832812000000004]]},"id":"8944c0a3487ffff-17d6e1062bfb3bc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647908,32.848326]},"id":"8f44c0a34241d36-13bfe29980d4cf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34241d36-13bfe29980d4cf37","8f44c0a342452d1-13def1f8e6965852"]},"geometry":{"type":"LineString","coordinates":[[-83.647908,32.848326],[-83.648165,32.8483563]]},"id":"8a44c0a34247fff-13d7e249393fd3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a342452d1-13def1f8e6965852","8f44c0a34268312-1397dfe286b741cd"]},"geometry":{"type":"LineString","coordinates":[[-83.648165,32.8483563],[-83.64902000000001,32.848444]]},"id":"8944c0a3427ffff-13fee0edbeb2dcb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c9abb4-13b7ddb14a13d530","8f44c0a34268312-1397dfe286b741cd"]},"geometry":{"type":"LineString","coordinates":[[-83.64902000000001,32.848444],[-83.649918,32.848514]]},"id":"8744c0a35ffffff-139ffec9e1ea30c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c980c6-13befce3ae57488f","8f44c0a35c9abb4-13b7ddb14a13d530"]},"geometry":{"type":"LineString","coordinates":[[-83.649918,32.848514],[-83.65024700000001,32.848529]]},"id":"8a44c0a35c9ffff-13b7fd4a73e39de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c9d6f6-13bffc002a81269f","8f44c0a35c980c6-13befce3ae57488f"]},"geometry":{"type":"LineString","coordinates":[[-83.65024700000001,32.848529],[-83.65061100000001,32.848531]]},"id":"8a44c0a35c9ffff-13bfdc71ee4c0362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c9d6f6-13bffc002a81269f","8f44c0a35c888ca-13bfd962c9e8ccb7"]},"geometry":{"type":"LineString","coordinates":[[-83.65061100000001,32.848531],[-83.65168200000001,32.848530100000005]]},"id":"8944c0a35cbffff-13bffab17412e41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531758,32.848563]},"id":"8f44c0a35cf5414-13dff5bd28eacd68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c888ca-13bfd962c9e8ccb7","8f44c0a35cf5414-13dff5bd28eacd68"]},"geometry":{"type":"LineString","coordinates":[[-83.65168200000001,32.848530100000005],[-83.6531758,32.848563]]},"id":"8844c0a35dfffff-13d7f78ff2f6afe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf5005-13f7f5340ee42816","8f44c0a35cf5414-13dff5bd28eacd68"]},"geometry":{"type":"LineString","coordinates":[[-83.6531758,32.848563],[-83.6533952,32.848591400000004]]},"id":"8b44c0a35cf5fff-13ded5789a6dccfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a86163-13d6f5ed746645ff","8f44c0a34ab3061-13bee6d52d5b5c6a"]},"geometry":{"type":"LineString","coordinates":[[-83.64654490000001,32.8395567],[-83.6461742,32.839284400000004]]},"id":"8944c0a34abffff-13ffe661503d9bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6474093,32.8454335]},"id":"8f44c0a34351465-13bff3d139875f50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34351465-13bff3d139875f50","8f44c0a3435cd91-13f7e308e58db19d"]},"geometry":{"type":"LineString","coordinates":[[-83.6474093,32.8454335],[-83.64772980000001,32.8455536]]},"id":"8b44c0a34351fff-13d7e36d062e0026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a343466d1-13dee268f0c690a8","8f44c0a3435cd91-13f7e308e58db19d"]},"geometry":{"type":"LineString","coordinates":[[-83.64772980000001,32.8455536],[-83.6479857,32.845095]]},"id":"8944c0a3437ffff-13f7f2b8ed8d299b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b150f0311-1797bcfa42f26a7c","8f44c0b1501b251-17f7fb6d6501146a"]},"geometry":{"type":"LineString","coordinates":[[-83.663318,32.755673],[-83.663503,32.755533],[-83.66364,32.755437],[-83.663953,32.755235]]},"id":"8944c0b150fffff-17fffc363ded1f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664163,32.755087]},"id":"8f44c0b150196aa-179ffaea2405b7cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b150196aa-179ffaea2405b7cd","8f44c0b1501b251-17f7fb6d6501146a"]},"geometry":{"type":"LineString","coordinates":[[-83.663953,32.755235],[-83.664163,32.755087]]},"id":"8a44c0b1501ffff-17d7bb2bc202d6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b150196aa-179ffaea2405b7cd","8f44c0b1500c79a-13fef8558a2da0f4"]},"geometry":{"type":"LineString","coordinates":[[-83.664163,32.755087],[-83.66522,32.754398]]},"id":"8944c0b1503ffff-17d6b99fd58a32a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1502d8f6-13deb51bb8f947ea","8f44c0b1500c79a-13fef8558a2da0f4"]},"geometry":{"type":"LineString","coordinates":[[-83.66522,32.754398],[-83.66550600000001,32.754206],[-83.66594900000001,32.753918],[-83.666295,32.753692],[-83.66639,32.75363],[-83.6665413,32.7535298]]},"id":"8844c0b151fffff-13def6b8f93cb52b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1502d8f6-13deb51bb8f947ea","8f44c0b1514291e-1397f263a56c5e71"]},"geometry":{"type":"LineString","coordinates":[[-83.6665413,32.7535298],[-83.667535,32.752872],[-83.66763300000001,32.752819],[-83.66765500000001,32.752802]]},"id":"8944c0b1517ffff-13f6f3c0b8f4feef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15146219-17dff228e35903a2","8f44c0b1514291e-1397f263a56c5e71"]},"geometry":{"type":"LineString","coordinates":[[-83.66765500000001,32.752802],[-83.667749,32.752738]]},"id":"8a44c0b15147fff-17f7f24643bf819a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668085,32.752513]},"id":"8f44c0b15144720-17d6b156e2e8b393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15146219-17dff228e35903a2","8f44c0b15144720-17d6b156e2e8b393"]},"geometry":{"type":"LineString","coordinates":[[-83.667749,32.752738],[-83.668085,32.752513]]},"id":"8a44c0b15147fff-1796f1bfec7a6582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6682959,32.7523835]},"id":"8f44c0b15144858-17ffb0d319dc3e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15144720-17d6b156e2e8b393","8f44c0b15144858-17ffb0d319dc3e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.668085,32.752513],[-83.6682959,32.7523835]]},"id":"8b44c0b15144fff-17beb1150ab3696c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15144858-17ffb0d319dc3e5e","8f44c0b15160640-17deafd408a9686e"]},"geometry":{"type":"LineString","coordinates":[[-83.6682959,32.7523835],[-83.668339,32.752357],[-83.668553,32.752215],[-83.668704,32.752097]]},"id":"8944c0b1517ffff-17bef051a380381b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1585052d-179efac273a543ed","8f44c0b15160640-17deafd408a9686e"]},"geometry":{"type":"LineString","coordinates":[[-83.668704,32.752097],[-83.66914200000001,32.751697],[-83.669414,32.751382],[-83.66954600000001,32.751204],[-83.669697,32.750971],[-83.669787,32.750814000000005],[-83.669892,32.750616],[-83.670473,32.749467],[-83.6707801,32.748922300000004]]},"id":"8744c0b15ffffff-139fbd0e9c527c20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6712799,32.748035800000004]},"id":"8f44c0b15872856-17f6e98a1e7eadc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1585052d-179efac273a543ed","8f44c0b15872856-17f6e98a1e7eadc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6707801,32.748922300000004],[-83.6712799,32.748035800000004]]},"id":"8944c0b1587ffff-17f7fa264e10f127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.671428,32.747773]},"id":"8f44c0b15876ad4-13bea92d8772ee63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15872856-17f6e98a1e7eadc5","8f44c0b15876ad4-13bea92d8772ee63"]},"geometry":{"type":"LineString","coordinates":[[-83.6712799,32.748035800000004],[-83.671428,32.747773]]},"id":"8a44c0b15877fff-1796e95bd1d2c227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6716203,32.7474458]},"id":"8f44c0b15874ca3-13f7a8b555355b89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15876ad4-13bea92d8772ee63","8f44c0b15874ca3-13f7a8b555355b89"]},"geometry":{"type":"LineString","coordinates":[[-83.671428,32.747773],[-83.6716203,32.7474458]]},"id":"8a44c0b15877fff-13d7e8f16bb39107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67178530000001,32.747165200000005]},"id":"8f44c0b1595a094-13d6e84e3f3e770e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15874ca3-13f7a8b555355b89","8f44c0b1595a094-13d6e84e3f3e770e"]},"geometry":{"type":"LineString","coordinates":[[-83.6716203,32.7474458],[-83.67178530000001,32.747165200000005]]},"id":"8844c0b159fffff-139ff881cf22159b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15951a34-139ea70be0a72f20","8f44c0b1595a094-13d6e84e3f3e770e"]},"geometry":{"type":"LineString","coordinates":[[-83.67178530000001,32.747165200000005],[-83.672301,32.746288]]},"id":"8944c0b1597ffff-13b6a7ad0411a30f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6726362,32.7456586]},"id":"8f44c0b15946ce3-1796a63a662f7e0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15951a34-139ea70be0a72f20","8f44c0b15946ce3-1796a63a662f7e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.672301,32.746288],[-83.672548,32.745818],[-83.6726362,32.7456586]]},"id":"8944c0b1597ffff-17dee6a3f7f1ebc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b15946ce3-1796a63a662f7e0d","8f44c0b1597595d-17f7a502d187bc44"]},"geometry":{"type":"LineString","coordinates":[[-83.6726362,32.7456586],[-83.6731347,32.7447578]]},"id":"8944c0b1597ffff-17ffa59eabf6bb17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b332dbadb-13fea4c2e2d0c5dd","8f44c0b1597595d-17f7a502d187bc44"]},"geometry":{"type":"LineString","coordinates":[[-83.6731347,32.7447578],[-83.673237,32.744573]]},"id":"8944c0b1597ffff-17b7e4e2d0eb6941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b332dbadb-13fea4c2e2d0c5dd","8f44c0b332dba25-13bfb49d7b348480"]},"geometry":{"type":"LineString","coordinates":[[-83.673237,32.744573],[-83.67329690000001,32.7444627]]},"id":"8b44c0b332dbfff-13dfb4b03f8d371d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b332dba25-13bfb49d7b348480","8f44c0b332c302e-13dea352ceb975a4"]},"geometry":{"type":"LineString","coordinates":[[-83.67329690000001,32.7444627],[-83.673826,32.743488]]},"id":"8944c0b332fffff-13fea3f81fa8e348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b3320a2f2-17bea09ee44e7e36","8f44c0b332c302e-13dea352ceb975a4"]},"geometry":{"type":"LineString","coordinates":[[-83.673826,32.743488],[-83.67493300000001,32.741424]]},"id":"8844c0b333fffff-17d7a1f8d43ecf75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b3320a2f2-17bea09ee44e7e36","8f44c0b3322a816-13979ecca946bdbf"]},"geometry":{"type":"LineString","coordinates":[[-83.67493300000001,32.741424],[-83.675679,32.740104]]},"id":"8944c0b3323ffff-13b79fb5ca55b1ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b3322a816-13979ecca946bdbf","8f44c0b33221371-17979e018e63c129"]},"geometry":{"type":"LineString","coordinates":[[-83.675679,32.740104],[-83.676004,32.739516]]},"id":"8a44c0b3322ffff-13dfde671a4edf4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b33376cb3-13b7fb8cc373ec76","8f44c0b33221371-17979e018e63c129"]},"geometry":{"type":"LineString","coordinates":[[-83.676004,32.739516],[-83.676951,32.73782],[-83.67701000000001,32.737727]]},"id":"8844c0b333fffff-17f79cc8b25e896f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889783,32.717503400000005]},"id":"8f44c0b31da8a60-13d7fe54916414d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b33376cb3-13b7fb8cc373ec76","8f44c0b31da8a60-13d7fe54916414d5"]},"geometry":{"type":"LineString","coordinates":[[-83.67701000000001,32.737727],[-83.67706600000001,32.737612],[-83.677345,32.737101],[-83.677408,32.736989],[-83.677767,32.736358],[-83.6779394,32.7360489],[-83.6786062,32.7348598],[-83.67887800000001,32.734386],[-83.679562,32.733201],[-83.67985,32.732737],[-83.680311,32.73201],[-83.680628,32.73153],[-83.6808098,32.731220400000005],[-83.6810657,32.7307909],[-83.68177200000001,32.729689],[-83.68266600000001,32.72827],[-83.682964,32.727781],[-83.683395,32.727033],[-83.683542,32.726796],[-83.68363000000001,32.726635],[-83.683914,32.72614],[-83.684042,32.725907],[-83.68442200000001,32.7251915],[-83.6845821,32.724897],[-83.68469900000001,32.724707200000005],[-83.6849847,32.7242546],[-83.68528,32.723792],[-83.68685,32.721063],[-83.687273,32.72032],[-83.688141,32.718818],[-83.688355,32.718473],[-83.6889783,32.717503400000005]]},"id":"8644c0b37ffffff-1396acfca6c7b5af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34514428-17bf0b56e38d3afb","8f44c0a34515aed-17bf4991b33d0f57"]},"geometry":{"type":"LineString","coordinates":[[-83.63122100000001,32.833968],[-83.63194610000001,32.834394]]},"id":"8944c0a3453ffff-17b72a745b2abd1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34515aed-17bf4991b33d0f57","8f44c0a34502d18-17d7996331376a79"]},"geometry":{"type":"LineString","coordinates":[[-83.63194610000001,32.834394],[-83.63202050000001,32.8344393]]},"id":"8a44c0a34507fff-17d7797a7b998b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34502d18-17d7996331376a79","8f44c0a345028f5-1797a8fbb82d6f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.63202050000001,32.8344393],[-83.6321861,32.8345402]]},"id":"8b44c0a34502fff-17f7292f7353ccf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a345006b1-17f768757943243f","8f44c0a345028f5-1797a8fbb82d6f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.6321861,32.8345402],[-83.63240090000001,32.834671]]},"id":"8a44c0a34507fff-17bf88b892b53205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34501452-13ffe793cc1cd39f","8f44c0a345006b1-17f768757943243f"]},"geometry":{"type":"LineString","coordinates":[[-83.63240090000001,32.834671],[-83.632762,32.834891]]},"id":"8a44c0a34507fff-13bf2804a78d88dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34501452-13ffe793cc1cd39f","8f44c0a3450c056-13bfc63983df8b39"]},"geometry":{"type":"LineString","coordinates":[[-83.632762,32.834891],[-83.63331600000001,32.835225200000004]]},"id":"8944c0a3453ffff-13d756e6abcc8999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3450c375-13f795e8819fe1b7","8f44c0a3450c056-13bfc63983df8b39"]},"geometry":{"type":"LineString","coordinates":[[-83.63331600000001,32.835225200000004],[-83.6334456,32.8353033]]},"id":"8b44c0a3450cfff-13df361107d1960e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3450dc0a-139fe59a29cf821d","8f44c0a3450c375-13f795e8819fe1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6334456,32.8353033],[-83.633571,32.835379]]},"id":"8a44c0a3450ffff-139f45c15ef3b603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3450dc0a-139fe59a29cf821d","8f44c0a345704d3-139f13ee31f718cb"]},"geometry":{"type":"LineString","coordinates":[[-83.633571,32.835379],[-83.63414870000001,32.8357213],[-83.63425570000001,32.835784100000005]]},"id":"8844c0a345fffff-139f94c449b25307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3690ea5d-17b7fd6489f13812","8f44c0a3690e1a5-17dffe0664a47732"]},"geometry":{"type":"LineString","coordinates":[[-83.6238264,32.834563100000004],[-83.6235674,32.8344207]]},"id":"8b44c0a3690efff-17f77db57a987e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba921a1b4-17d7375c6d66f5b6","8f44c0a3690e1a5-17dffe0664a47732"]},"geometry":{"type":"LineString","coordinates":[[-83.6235674,32.8344207],[-83.62323640000001,32.8342387],[-83.62320960000001,32.8341666],[-83.62353680000001,32.8337293],[-83.62430930000001,32.8328008],[-83.6244219,32.832805300000004],[-83.62451850000001,32.832764700000006],[-83.6250603,32.8320841],[-83.6252963,32.8319218],[-83.62551040000001,32.8315903],[-83.6258698,32.8312297],[-83.6260951,32.8310449],[-83.62629700000001,32.8309603]]},"id":"8644c0a37ffffff-13ff1b91726b7a46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920841d-179f534acfecfed5","8f44c0ba920a975-17f79391692da8ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6278506,32.8309768],[-83.6279636,32.831046900000004]]},"id":"8a44c0ba920ffff-17f7736e19845b5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920841d-179f534acfecfed5","8f44c0ba9208736-17bf331581f8d450"]},"geometry":{"type":"LineString","coordinates":[[-83.6279636,32.831046900000004],[-83.6280488,32.8310979]]},"id":"8b44c0ba9208fff-179f533021571b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9208398-17df72c3658f34da","8f44c0ba9208736-17bf331581f8d450"]},"geometry":{"type":"LineString","coordinates":[[-83.6280488,32.8310979],[-83.6281802,32.8311767]]},"id":"8b44c0ba9208fff-17d7d2ec7005f868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6285254,32.8313837]},"id":"8f44c0ba9209001-17dfd1eba90d6baa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9209001-17dfd1eba90d6baa","8f44c0ba9208398-17df72c3658f34da"]},"geometry":{"type":"LineString","coordinates":[[-83.6281802,32.8311767],[-83.6285254,32.8313837]]},"id":"8a44c0ba920ffff-179f32578314ea48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6286745,32.8314734]},"id":"8f44c0ba9209ad8-1397f18e783bf2f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9209ad8-1397f18e783bf2f5","8f44c0ba9209001-17dfd1eba90d6baa"]},"geometry":{"type":"LineString","coordinates":[[-83.6285254,32.8313837],[-83.6286745,32.8314734]]},"id":"8b44c0ba9209fff-17fff1bd1a7aca61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62879140000001,32.831545500000004]},"id":"8f44c0ba9254c00-13d7f14562e08b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9209ad8-1397f18e783bf2f5","8f44c0ba9254c00-13d7f14562e08b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6286745,32.8314734],[-83.62879140000001,32.831545500000004]]},"id":"8944c0ba927ffff-13bf7169fd3e56fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629422,32.83194]},"id":"8f44c0ba925586d-13bf8fbb4669f773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba925586d-13bf8fbb4669f773","8f44c0ba9254c00-13d7f14562e08b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.62879140000001,32.831545500000004],[-83.629422,32.83194]]},"id":"8a44c0ba9257fff-13bf5080500fc8fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba925586d-13bf8fbb4669f773","8f44c0ba9240248-13972dc9cef88fa6"]},"geometry":{"type":"LineString","coordinates":[[-83.629422,32.83194],[-83.630218,32.832469]]},"id":"8944c0ba927ffff-13dfdec281644d0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6310134,32.8329255]},"id":"8f44c0ba924cb5a-13b77bd8a4166d1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9240248-13972dc9cef88fa6","8f44c0ba924cb5a-13b77bd8a4166d1d"]},"geometry":{"type":"LineString","coordinates":[[-83.630218,32.832469],[-83.6310134,32.8329255]]},"id":"8944c0ba927ffff-1397dcd137e7a28d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63175700000001,32.83334]},"id":"8f44c0a3453625d-17b78a07e181e508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3453625d-17b78a07e181e508","8f44c0ba924cb5a-13b77bd8a4166d1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6310134,32.8329255],[-83.63175700000001,32.83334]]},"id":"8744c0a34ffffff-17b70af04f94d74e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34531b8a-17b7684400fe3d23","8f44c0a3453625d-17b78a07e181e508"]},"geometry":{"type":"LineString","coordinates":[[-83.63175700000001,32.83334],[-83.63248,32.833767]]},"id":"8a44c0a34537fff-17bff925f46103d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34531b8a-17b7684400fe3d23","8f44c0a3452366e-17bfa6a281c69ca1"]},"geometry":{"type":"LineString","coordinates":[[-83.63248,32.833767],[-83.633148,32.8341738]]},"id":"8944c0a3453ffff-17bf87734bf47740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3452366e-17bfa6a281c69ca1","8f44c0a3452e583-17f7f647a8f16bfd"]},"geometry":{"type":"LineString","coordinates":[[-83.633148,32.8341738],[-83.6332934,32.8342623]]},"id":"8944c0a3453ffff-17df567510034982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3452e099-17b7a5dfba6c2721","8f44c0a3452e583-17f7f647a8f16bfd"]},"geometry":{"type":"LineString","coordinates":[[-83.6332934,32.8342623],[-83.6334597,32.8343642]]},"id":"8b44c0a3452efff-1797d613a5f49f39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3452e099-17b7a5dfba6c2721","8f44c0a34529db6-1397e44f712763d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6334597,32.8343642],[-83.63410010000001,32.834747]]},"id":"8a44c0a3452ffff-179f451790ddde88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cdb484-13b7a2809fcac60a","8f44c0a34529db6-1397e44f712763d0"]},"geometry":{"type":"LineString","coordinates":[[-83.63410010000001,32.834747],[-83.63484070000001,32.8351866]]},"id":"8844c0a345fffff-139f4368055871b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9350c71-13977f66891f82d2","8f44c0ba9373c58-13d7cdf264834c65"]},"geometry":{"type":"LineString","coordinates":[[-83.6295576,32.828986300000004],[-83.630153,32.8284796]]},"id":"8944c0ba937ffff-13f72eac7c360922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6304046,32.8281593]},"id":"8f44c0ba9370a96-17ff9d5525f0be1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9373c58-13d7cdf264834c65","8f44c0ba9370a96-17ff9d5525f0be1c"]},"geometry":{"type":"LineString","coordinates":[[-83.630153,32.8284796],[-83.63017260000001,32.828462900000005],[-83.6304046,32.8281593]]},"id":"8a44c0ba9377fff-13f7cda294d258aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b2e346-17f7f1ac823a4b20","8f44c0a344d2041-17f73068da7c2457"]},"geometry":{"type":"LineString","coordinates":[[-83.6286264,32.8412463],[-83.62909570000001,32.8406885],[-83.62914430000001,32.840630700000006]]},"id":"8644c0a37ffffff-17b7910aa3c01741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6294853,32.840219600000005]},"id":"8f44c0a344d0d34-17f74f93bc1cac4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d0d34-17f74f93bc1cac4c","8f44c0a344d2041-17f73068da7c2457"]},"geometry":{"type":"LineString","coordinates":[[-83.62914430000001,32.840630700000006],[-83.6294853,32.840219600000005]]},"id":"8a44c0a344d7fff-17f7bffe464d8ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d41ad-17f75f1df719e548","8f44c0a344d0d34-17f74f93bc1cac4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6294853,32.840219600000005],[-83.62967370000001,32.8399925]]},"id":"8a44c0a344d7fff-17bf5f58dff4b72f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6560851,32.8736343]},"id":"8f44c0a31175a66-1797fea2db1a8ca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a31372260-13fee70a60f00139","8f44c0a31175a66-1797fea2db1a8ca7"]},"geometry":{"type":"LineString","coordinates":[[-83.6560851,32.8736343],[-83.6560024,32.8737324],[-83.6559311,32.8738465],[-83.65589030000001,32.873932100000005],[-83.65585300000001,32.8740319],[-83.6558428,32.874134600000005],[-83.6558564,32.8742231],[-83.65590730000001,32.8743429],[-83.65599900000001,32.8744827],[-83.6561417,32.874619700000004],[-83.65629460000001,32.8746881],[-83.6564712,32.8747224],[-83.6566988,32.8747338],[-83.6569163,32.8747338],[-83.65707590000001,32.8747623],[-83.65721860000001,32.8748165],[-83.6573087,32.874896400000004],[-83.65737440000001,32.8750811],[-83.65756230000001,32.8757256],[-83.6577056,32.8760868],[-83.6577961,32.8764428],[-83.65796990000001,32.876887700000005],[-83.6581898,32.8772031],[-83.6584857,32.877768],[-83.65870650000001,32.878173100000005],[-83.6589086,32.8784105],[-83.6592466,32.8788655],[-83.6593539,32.8791493],[-83.6593807,32.8793791],[-83.6593271,32.879703500000005],[-83.65935920000001,32.880176500000005],[-83.65925730000001,32.881000900000004],[-83.65922830000001,32.8814946],[-83.65919620000001,32.8815842]]},"id":"8744c0a31ffffff-17f7d9e278504982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a3130969c-13b7c904adc9ff63","8f44c0a31372260-13fee70a60f00139"]},"geometry":{"type":"LineString","coordinates":[[-83.65919620000001,32.8815842],[-83.65913400000001,32.8816312],[-83.6590276,32.8816556],[-83.6587638,32.8816451],[-83.65852410000001,32.8816513],[-83.65844510000001,32.8816535],[-83.65838620000001,32.8816764]]},"id":"8944c0a3137ffff-1396d803b4dd7b5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a3130969c-13b7c904adc9ff63","8f44c0a31354ac2-13bfe74a2f47fa82"]},"geometry":{"type":"LineString","coordinates":[[-83.65838620000001,32.8816764],[-83.6583303,32.8817236],[-83.65831320000001,32.881784800000005],[-83.6583231,32.8818555],[-83.6583384,32.8818958],[-83.65838790000001,32.8819132],[-83.6584883,32.881922],[-83.65868470000001,32.8819316],[-83.6590942,32.881915400000004]]},"id":"8844c0a313fffff-13bfc8729822d636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65914910000001,32.8843654]},"id":"8f44c0a3127574d-13bee727d0160886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a3127574d-13bee727d0160886","8f44c0a31354ac2-13bfe74a2f47fa82"]},"geometry":{"type":"LineString","coordinates":[[-83.6590942,32.881915400000004],[-83.65904780000001,32.8828192],[-83.6590565,32.8830198],[-83.6591118,32.883584500000005],[-83.6591525,32.8839011],[-83.6591604,32.88398],[-83.65916220000001,32.884050200000004],[-83.65915840000001,32.8841614],[-83.65914910000001,32.8843654]]},"id":"8844c0a313fffff-17bff74899f5ca84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659187,32.8844954]},"id":"8f44c0a31271950-139fe7102b58232a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a31271950-139fe7102b58232a","8f44c0a3127574d-13bee727d0160886"]},"geometry":{"type":"LineString","coordinates":[[-83.65914910000001,32.8843654],[-83.6591126,32.884489],[-83.65907,32.884687400000004],[-83.65907650000001,32.8847819],[-83.6591035,32.884838900000005],[-83.6591527,32.8848604],[-83.6592145,32.8848392],[-83.6592323,32.884776200000005],[-83.6592097,32.8846204],[-83.659187,32.8844954]]},"id":"8944c0a3127ffff-13fec728ce102b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"unpaved"},"subType":"road","connectors":["8f44c0a31271950-139fe7102b58232a","8f44c0a3127574d-13bee727d0160886"]},"geometry":{"type":"LineString","coordinates":[[-83.659187,32.8844954],[-83.65914910000001,32.8843654]]},"id":"8a44c0a31277fff-13f7c71c0f0260a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c012e1-17befca780f56534","8f44c0a34c0895e-13befbf24c514af8"]},"geometry":{"type":"LineString","coordinates":[[-83.637236,32.831296],[-83.63752600000001,32.831712]]},"id":"8a44c0a34c0ffff-13befc4cedf54b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34c0895e-13befbf24c514af8","8f44c0a34c08a66-139efbb1e18f1ed9"]},"geometry":{"type":"LineString","coordinates":[[-83.63752600000001,32.831712],[-83.637629,32.831885]]},"id":"8b44c0a34c08fff-13f6fbd21278e32e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34582202-13971135ca8f1792","8f44c0a34590b29-13ffd2daa55713e4"]},"geometry":{"type":"LineString","coordinates":[[-83.62814300000001,32.835118],[-83.6288164,32.835532900000004]]},"id":"8944c0a345bffff-13ff720830cab629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62953830000001,32.835973800000005]},"id":"8f44c0a3458e8dd-1397af72921f2ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34582202-13971135ca8f1792","8f44c0a3458e8dd-1397af72921f2ece"]},"geometry":{"type":"LineString","coordinates":[[-83.6288164,32.835532900000004],[-83.62953830000001,32.835973800000005]]},"id":"8944c0a345bffff-139ff0542be02960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92ee1b0-139f1428449aa90e","8f44c0ba9252c80-139f12e6f0eeeb59"]},"geometry":{"type":"LineString","coordinates":[[-83.6281233,32.8320992],[-83.62760920000001,32.8327089]]},"id":"8944c0ba92fffff-13df9387a4c41d44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92ee1b0-139f1428449aa90e","8f44c0ba92c10db-17df958ee98a418c"]},"geometry":{"type":"LineString","coordinates":[[-83.62760920000001,32.8327089],[-83.6275602,32.8327685],[-83.6271679,32.8332436],[-83.62703540000001,32.8334041]]},"id":"8944c0ba92fffff-13f754db8e62a1e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344b455b-179f93ca94452d49","8f44c0a3696b993-179795744603d82b"]},"geometry":{"type":"LineString","coordinates":[[-83.62707800000001,32.836380000000005],[-83.6277591,32.836780000000005]]},"id":"8744c0a36ffffff-179f949f61d22e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.628501,32.8372041]},"id":"8f44c0a344a2da4-179791faede14e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a2da4-179791faede14e8d","8f44c0a344b455b-179f93ca94452d49"]},"geometry":{"type":"LineString","coordinates":[[-83.6277591,32.836780000000005],[-83.628501,32.8372041]]},"id":"8944c0a344bffff-179712e2b4408edf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a524619-13d7f7c3082b22c6","8f44c0b1ac9dac0-17d7f7a78c694938"]},"geometry":{"type":"LineString","coordinates":[[-83.63924,32.812117],[-83.639284,32.811272]]},"id":"8844c0b1adfffff-17dff7b54092678d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ac9dac0-17d7f7a78c694938","8f44c0b1ac8478e-13bff78b6e018994"]},"geometry":{"type":"LineString","coordinates":[[-83.639284,32.811272],[-83.63936700000001,32.810153],[-83.63936700000001,32.810068],[-83.639329,32.810006]]},"id":"8944c0b1acbffff-17b6f78b1e7e6efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64113800000001,32.813032]},"id":"8f44c0b1acdcc8d-1397f320c9351c4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a52cb13-13fff5980f09ae60","8f44c0b1acdcc8d-1397f320c9351c4b"]},"geometry":{"type":"LineString","coordinates":[[-83.640128,32.813004],[-83.64113800000001,32.813032]]},"id":"8744c0b1affffff-139ef45c6d77f596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acc178b-13b7f0d2c60a4464","8f44c0b1acdcc8d-1397f320c9351c4b"]},"geometry":{"type":"LineString","coordinates":[[-83.64113800000001,32.813032],[-83.642082,32.813062]]},"id":"8944c0b1acfffff-139ef1f9c4235bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64258500000001,32.813068]},"id":"8f44c0b1acccd64-13b7ef98619c1772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acc178b-13b7f0d2c60a4464","8f44c0b1acccd64-13b7ef98619c1772"]},"geometry":{"type":"LineString","coordinates":[[-83.642082,32.813062],[-83.64258500000001,32.813068]]},"id":"8944c0b1acfffff-13b7f035945dd1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1accc146-139eef742f7c2475","8f44c0b1acccd64-13b7ef98619c1772"]},"geometry":{"type":"LineString","coordinates":[[-83.642643,32.813249],[-83.642593,32.813141],[-83.64258500000001,32.813068]]},"id":"8b44c0b1acccfff-13f7ff8ab56cb981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acccd64-13b7ef98619c1772","8f44c0b1acc5a4c-13ffef8f02e5fd3b"]},"geometry":{"type":"LineString","coordinates":[[-83.64258500000001,32.813068],[-83.6426,32.812584]]},"id":"8944c0b1acfffff-1396ef93b2a055ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acc5a4c-13ffef8f02e5fd3b","8f44c0b1ace3354-139eef9221845357"]},"geometry":{"type":"LineString","coordinates":[[-83.6426,32.812584],[-83.642595,32.812206]]},"id":"8944c0b1acfffff-1396ef909a69e233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace0284-1397ef8b445c35ba","8f44c0b1ace3354-139eef9221845357"]},"geometry":{"type":"LineString","coordinates":[[-83.642595,32.812206],[-83.642606,32.811807]]},"id":"8a44c0b1ace7fff-1396ff8eb9ac67ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace4602-17feef8dce7a479a","8f44c0b1ace0284-1397ef8b445c35ba"]},"geometry":{"type":"LineString","coordinates":[[-83.642606,32.811807],[-83.64260200000001,32.811354]]},"id":"8a44c0b1ace7fff-1797ff8c817a3ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ace4602-17feef8dce7a479a","8f44c0b1ace4c1e-17d6ef8d2d132c00"]},"geometry":{"type":"LineString","coordinates":[[-83.64260200000001,32.811354],[-83.64260300000001,32.81107]]},"id":"8b44c0b1ace4fff-179fef8d79b6362f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad1b623-1796ef7ba81e0f8e","8f44c0b1ace4c1e-17d6ef8d2d132c00"]},"geometry":{"type":"LineString","coordinates":[[-83.64260300000001,32.81107],[-83.64261,32.810574],[-83.642623,32.809576],[-83.64263100000001,32.808096]]},"id":"8944c0b1ac3ffff-13b7ef827034f928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad1b623-1796ef7ba81e0f8e","8f44c0b1ad18414-1796ef7a6f37b29f"]},"geometry":{"type":"LineString","coordinates":[[-83.64263100000001,32.808096],[-83.642633,32.807505]]},"id":"8a44c0b1ad1ffff-17dfff7b020d3eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad18414-1796ef7a6f37b29f","8f44c0b1e69231c-17b7ef4c2bdfa58a"]},"geometry":{"type":"LineString","coordinates":[[-83.642633,32.807505],[-83.642655,32.80614],[-83.64265900000001,32.805942],[-83.642685,32.80472],[-83.642707,32.803638]]},"id":"8644c0b1fffffff-13deff647c3e2bbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb49546-13beef3fa0abf87b","8f44c0b1e69231c-17b7ef4c2bdfa58a"]},"geometry":{"type":"LineString","coordinates":[[-83.642707,32.803638],[-83.64271600000001,32.803174],[-83.642729,32.802898],[-83.64272700000001,32.802624]]},"id":"8844c0badbfffff-13f6ef44a807f4bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb49546-13beef3fa0abf87b","8f44c0badb4c305-13b6ef3c8df3c89b"]},"geometry":{"type":"LineString","coordinates":[[-83.64272700000001,32.802624],[-83.64273200000001,32.802]]},"id":"8a44c0badb4ffff-13f7ef3e127df100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb6032e-17b7ef36e4916db4","8f44c0badb4c305-13b6ef3c8df3c89b"]},"geometry":{"type":"LineString","coordinates":[[-83.64273200000001,32.802],[-83.64274300000001,32.800733],[-83.64274400000001,32.800646],[-83.642741,32.800371000000005]]},"id":"8944c0badb7ffff-17b6ff385a3faf18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0badb6032e-17b7ef36e4916db4","8f44c0badb64c6c-139fef33cdddce46"]},"geometry":{"type":"LineString","coordinates":[[-83.642741,32.800371000000005],[-83.642746,32.799736]]},"id":"8a44c0badb67fff-13f7ff355e11fa96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4c0895-179fef27ebc81bbb","8f44c0badb64c6c-139fef33cdddce46"]},"geometry":{"type":"LineString","coordinates":[[-83.642746,32.799736],[-83.64275,32.799003],[-83.642753,32.798797],[-83.64276500000001,32.798098]]},"id":"8944c0b1e4fffff-139fef2f53410bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4c0895-179fef27ebc81bbb","8f44c0b1e4f5856-13d7ef314498db11"]},"geometry":{"type":"LineString","coordinates":[[-83.64276500000001,32.798098],[-83.642769,32.797761],[-83.64275,32.796937]]},"id":"8944c0b1e4fffff-17b6ff29f0533025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642655,32.795512]},"id":"8f44c0b1e4113b3-13dfef6ca267fd06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e4113b3-13dfef6ca267fd06","8f44c0b1e4f5856-13d7ef314498db11"]},"geometry":{"type":"LineString","coordinates":[[-83.64275,32.796937],[-83.64274300000001,32.796773],[-83.64273700000001,32.796204],[-83.64274400000001,32.795949],[-83.642745,32.795674000000005],[-83.642655,32.795512]]},"id":"8844c0b1e5fffff-1396ef39ad73f010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acdcc8d-1397f320c9351c4b","8f44c0b1acd5925-13f7f309a9271839"]},"geometry":{"type":"LineString","coordinates":[[-83.64113800000001,32.813032],[-83.641164,32.812432],[-83.641175,32.812168]]},"id":"8944c0b1acfffff-1397f3151679ae99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acf0d01-17f7f2f1e50f6d3f","8f44c0b1acd5925-13f7f309a9271839"]},"geometry":{"type":"LineString","coordinates":[[-83.641175,32.812168],[-83.64121300000001,32.811318]]},"id":"8a44c0b1acf7fff-17fff2fdc10e248d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64124500000001,32.810755]},"id":"8f44c0b1aca9b0a-1797f2ddeca689bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1acf0d01-17f7f2f1e50f6d3f","8f44c0b1aca9b0a-1797f2ddeca689bb"]},"geometry":{"type":"LineString","coordinates":[[-83.64121300000001,32.811318],[-83.64124500000001,32.810755]]},"id":"8844c0b1adfffff-17b7f2e7e02fb437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4da388-1797e07f435e6fd2","8f44c0b1a4de112-179f005ec583ede2"]},"geometry":{"type":"LineString","coordinates":[[-83.63566200000001,32.820611],[-83.63571400000001,32.819992]]},"id":"8a44c0b1a4dffff-17d7706f0b196aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6357749,32.8188881]},"id":"8f44c0b1a4d4aad-13df1038bc827af4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4de112-179f005ec583ede2","8f44c0b1a4d4aad-13df1038bc827af4"]},"geometry":{"type":"LineString","coordinates":[[-83.63571400000001,32.819992],[-83.6357285,32.8197296],[-83.6357749,32.8188881]]},"id":"8944c0b1a4fffff-13b7104bbb9a9bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4d4aad-13df1038bc827af4","8f44c0b1a4f22da-13d720312b2f6ec4"]},"geometry":{"type":"LineString","coordinates":[[-83.6357749,32.8188881],[-83.63578700000001,32.818669]]},"id":"8944c0b1a4fffff-139fa034f3762831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4a9702-17d7fff29965c620","8f44c0b1a4f22da-13d720312b2f6ec4"]},"geometry":{"type":"LineString","coordinates":[[-83.63578700000001,32.818669],[-83.63579770000001,32.8185854],[-83.6358871,32.8176403]]},"id":"8844c0b1a5fffff-1797c0111219cd71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4a9702-17d7fff29965c620","8f44c0b1a4162a3-1396ffa34332e0cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6358871,32.8176403],[-83.6358969,32.817537200000004],[-83.636014,32.816103000000005]]},"id":"8844c0b1a5fffff-17f6ffca81268e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4162a3-1396ffa34332e0cc","8f44c0b1a5a5d5b-13b7fee2c222cac4"]},"geometry":{"type":"LineString","coordinates":[[-83.636014,32.816103000000005],[-83.6360739,32.8156144],[-83.6362027,32.8141807],[-83.63627600000001,32.813315],[-83.636322,32.812879]]},"id":"8844c0b1a5fffff-17b7ff4008c82cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad24e26c-139ffeb1611aff49","8f44c0b1a5a5d5b-13b7fee2c222cac4"]},"geometry":{"type":"LineString","coordinates":[[-83.636322,32.812879],[-83.636373,32.812328],[-83.636401,32.812024]]},"id":"8744c0b1affffff-13b6feca1db88a4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad24e26c-139ffeb1611aff49","8f44c0bad241922-179ffe7ba51b70ea"]},"geometry":{"type":"LineString","coordinates":[[-83.636401,32.812024],[-83.636487,32.811183]]},"id":"8944c0bad27ffff-1796fe9688e49549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad260dac-13f7fe2b0a1d08dc","8f44c0bad241922-179ffe7ba51b70ea"]},"geometry":{"type":"LineString","coordinates":[[-83.636487,32.811183],[-83.63650100000001,32.810934],[-83.636616,32.80989]]},"id":"8944c0bad27ffff-17fffe56b795a019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad260dac-13f7fe2b0a1d08dc","8f44c0bad340c4b-17b6fda4a8ed04cf"]},"geometry":{"type":"LineString","coordinates":[[-83.636616,32.80989],[-83.636831,32.807968]]},"id":"8844c0bad3fffff-139efde7d0323276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63705850000001,32.8065216]},"id":"8f44c0bad366db6-13befd167ee06cd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad340c4b-17b6fda4a8ed04cf","8f44c0bad366db6-13befd167ee06cd6"]},"geometry":{"type":"LineString","coordinates":[[-83.636831,32.807968],[-83.63705850000001,32.8065216]]},"id":"8944c0bad37ffff-17f6fd5d95f32d8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62062,32.835434]},"id":"8f44c0a36988882-13d7653883aabff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36988882-13d7653883aabff3","8f44c0a369acb58-17b722a3406ef644"]},"geometry":{"type":"LineString","coordinates":[[-83.62062,32.835434],[-83.620689,32.835332],[-83.621678,32.834176]]},"id":"8944c0a369bffff-13b7b3f11ec46102"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36910b2e-17b721357f246ef0","8f44c0a369acb58-17b722a3406ef644"]},"geometry":{"type":"LineString","coordinates":[[-83.621678,32.834176],[-83.62171400000001,32.83411],[-83.621915,32.833917],[-83.62222200000001,32.833612],[-83.6222633,32.8335632]]},"id":"8844c0a369fffff-17ff61efabe25a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36910b2e-17b721357f246ef0","8f44c0a369302eb-13ffffc4e8b93a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6222633,32.8335632],[-83.622853,32.832867]]},"id":"8944c0a3693ffff-17d7707d3270f24c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36935d6d-13d79ec41ae1253c","8f44c0a369302eb-13ffffc4e8b93a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.622853,32.832867],[-83.62326390000001,32.8323704]]},"id":"8a44c0a36937fff-13f7bf448cb8126b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36935d6d-13d79ec41ae1253c","8f44c0ba929d033-13dfdd1a6bcdc50e"]},"geometry":{"type":"LineString","coordinates":[[-83.62326390000001,32.8323704],[-83.62354300000001,32.832033],[-83.62379700000001,32.8317329],[-83.623945,32.831558]]},"id":"8744c0ba9ffffff-13df1deff0f40f23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6304947,32.833524600000004]},"id":"8f44c0ba924bd24-179fed1cd64a9f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a345a0998-1797be5de3e8e63d","8f44c0ba924bd24-179fed1cd64a9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.629981,32.8341371],[-83.6304947,32.833524600000004]]},"id":"8844c0a345fffff-17df5dbd66eaf946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba924bd24-179fed1cd64a9f16","8f44c0ba924cb5a-13b77bd8a4166d1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6304947,32.833524600000004],[-83.6310134,32.8329255]]},"id":"8a44c0ba924ffff-17dfbc7abcd0e5bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba926d4a4-13ff4a596699c0eb","8f44c0ba924cb5a-13b77bd8a4166d1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6310134,32.8329255],[-83.6316266,32.832222800000004]]},"id":"8944c0ba927ffff-13d7eb190c606e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c90225-13b728e8c824c3b7","8f44c0ba926d4a4-13ff4a596699c0eb"]},"geometry":{"type":"LineString","coordinates":[[-83.6316266,32.832222800000004],[-83.6322164,32.831525]]},"id":"8744c0a34ffffff-139739a11a577fbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb3053-17b737a464a9c7be","8f44c0a34c90225-13b728e8c824c3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6322164,32.831525],[-83.6327354,32.8309075]]},"id":"8944c0a34cbffff-17f7384695c9dcf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6361839,32.8322212]},"id":"8f44c0a34c1ba44-13feff391b1470a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34c1ba44-13feff391b1470a7","8f44c0a34c1946e-1397fef1d8bbca87"]},"geometry":{"type":"LineString","coordinates":[[-83.6362979,32.832088500000005],[-83.6362373,32.832153000000005],[-83.6361839,32.8322212]]},"id":"8a44c0a34c1ffff-13d6ff166c28eeee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63586380000001,32.8326002]},"id":"8f44c0a34cf515e-13d7200125d18931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf515e-13d7200125d18931","8f44c0a34c1ba44-13feff391b1470a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6361839,32.8322212],[-83.63586380000001,32.8326002]]},"id":"8844c0a34dfffff-13f6ff9d1b97f1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6357516,32.8327328]},"id":"8f44c0a34cf5753-13bf00474a2ea84b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf515e-13d7200125d18931","8f44c0a34cf5753-13bf00474a2ea84b"]},"geometry":{"type":"LineString","coordinates":[[-83.63586380000001,32.8326002],[-83.6357516,32.8327328]]},"id":"8b44c0a34cf5fff-139790243fbe28ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63521800000001,32.8324106]},"id":"8f44c0a34cf6b5b-13f7a194c67b77f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf6b5b-13f7a194c67b77f5","8f44c0a34cf635a-13b781d517f04b09"]},"geometry":{"type":"LineString","coordinates":[[-83.63521800000001,32.8324106],[-83.63511510000001,32.8325448]]},"id":"8b44c0a34cf6fff-139f91b4e163963c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf0085-139fd16dae0c1692","8f44c0a34cf635a-13b781d517f04b09"]},"geometry":{"type":"LineString","coordinates":[[-83.63511510000001,32.8325448],[-83.63508130000001,32.8326002],[-83.6350762,32.8326569],[-83.63511170000001,32.8327094],[-83.6351573,32.8327279],[-83.635208,32.832729300000004],[-83.6352806,32.832716500000004]]},"id":"8a44c0a34cf7fff-139731c4befadb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6355285,32.832598100000006]},"id":"8f44c0a34cf5492-13d7d0d2b398a0d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf0085-139fd16dae0c1692","8f44c0a34cf5492-13d7d0d2b398a0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6352806,32.832716500000004],[-83.63541570000001,32.8327009],[-83.6354731,32.832664],[-83.6355285,32.832598100000006]]},"id":"8b44c0a34cf0fff-139fb1190bf1b5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9359069-17f7dcc58c5ed62b","8f44c0ba934e1a8-17d71b8e608b59bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6306344,32.830575700000004],[-83.63113220000001,32.829936100000005]]},"id":"8944c0ba937ffff-179ffc29f9cbd521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba934e1a8-17d71b8e608b59bb","8f44c0ba936acf1-13f73a4cfdf96b7a"]},"geometry":{"type":"LineString","coordinates":[[-83.63113220000001,32.829936100000005],[-83.6316465,32.8293379]]},"id":"8944c0ba937ffff-139f2aedaf018a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba936cd92-13d788ff89eb647b","8f44c0ba936acf1-13f73a4cfdf96b7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6316465,32.8293379],[-83.63218,32.8287064]]},"id":"8a44c0ba936ffff-139fe9a645cce5ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627913,32.833739]},"id":"8f44c0ba92cd926-179ff36a637c650f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92cd926-179ff36a637c650f","8f44c0ba92ed6f2-17bfb24ea9fc8226"]},"geometry":{"type":"LineString","coordinates":[[-83.627913,32.833739],[-83.62836700000001,32.833177]]},"id":"8a44c0ba92effff-17ff52dc861f7995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62889100000001,32.832551]},"id":"8f44c0ba9253b62-13bf710723af77ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9253b62-13bf710723af77ea","8f44c0ba92ed6f2-17bfb24ea9fc8226"]},"geometry":{"type":"LineString","coordinates":[[-83.62836700000001,32.833177],[-83.62889100000001,32.832551]]},"id":"8844c0ba93fffff-13ff11aae742008e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9255a90-13970ffb22b038b0","8f44c0ba9253b62-13bf710723af77ea"]},"geometry":{"type":"LineString","coordinates":[[-83.62889100000001,32.832551],[-83.6293198,32.8320576]]},"id":"8a44c0ba9257fff-139f30812b11e702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9255a90-13970ffb22b038b0","8f44c0ba925586d-13bf8fbb4669f773"]},"geometry":{"type":"LineString","coordinates":[[-83.6293198,32.8320576],[-83.629422,32.83194]]},"id":"8b44c0ba9255fff-13df4fdb3bf382b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba925586d-13bf8fbb4669f773","8f44c0ba92752a9-17970e520b474aa3"]},"geometry":{"type":"LineString","coordinates":[[-83.629422,32.83194],[-83.63000000000001,32.83124]]},"id":"8944c0ba927ffff-13dfcf06a2ffbebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128795,32.742330700000004]},"id":"8f44c0b0402528a-17f6f3fa5f5a288c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7131688,32.742455500000005]},"id":"8f44c0b041520a0-17d6f345860b6863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0402528a-17f6f3fa5f5a288c","8f44c0b041520a0-17d6f345860b6863"]},"geometry":{"type":"LineString","coordinates":[[-83.7128795,32.742330700000004],[-83.712967,32.742362],[-83.7131688,32.742455500000005]]},"id":"8944c0b0403ffff-179e439f3c34989b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7216063,32.7446039]},"id":"8f44c0b04a0c111-17977eac12c50449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a2a7a5-13d67eb4267f0198","8f44c0b04a0c111-17977eac12c50449"]},"geometry":{"type":"LineString","coordinates":[[-83.7215934,32.7442949],[-83.7216063,32.7446039]]},"id":"8944c0b04a3ffff-13b6eeb02980a646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72162060000001,32.7449457]},"id":"8f44c0b04a0882c-17d73ea32d501910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a0882c-17d73ea32d501910","8f44c0b04a0c111-17977eac12c50449"]},"geometry":{"type":"LineString","coordinates":[[-83.7216063,32.7446039],[-83.72162060000001,32.7449457]]},"id":"8a44c0b04a0ffff-17fe6ea79befc97d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7216303,32.745178]},"id":"8f44c0b04a08ad3-17fe6e9d15f049e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a0882c-17d73ea32d501910","8f44c0b04a08ad3-17fe6e9d15f049e1"]},"geometry":{"type":"LineString","coordinates":[[-83.72162060000001,32.7449457],[-83.7216303,32.745178]]},"id":"8b44c0b04a08fff-179fbea025ca873d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7224427,32.7505347]},"id":"8f44c0b05d8a4f2-13fe3ca15935090e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72230900000001,32.7507852]},"id":"8f44c0b05d99276-139eecf4ecff00b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b05d8a4f2-13fe3ca15935090e","8f44c0b05d99276-139eecf4ecff00b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7224427,32.7505347],[-83.7223877,32.750523],[-83.72233130000001,32.7505278],[-83.72228030000001,32.7505486],[-83.72224080000001,32.750582800000004],[-83.72221760000001,32.7506263],[-83.7222134,32.7506739],[-83.7222289,32.7507198],[-83.72226210000001,32.7507584],[-83.72230900000001,32.7507852]]},"id":"8944c0b05dbffff-13b6ad038b3fda12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b12e7b0-1796f62eec5c2264","8f44c0b1b12dc93-179fb42dc9f8fd55"]},"geometry":{"type":"LineString","coordinates":[[-83.66610100000001,32.83001],[-83.666255,32.830008],[-83.666922,32.830024]]},"id":"8a44c0b1b12ffff-1797b52e5a364e4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b8deb89-179eb22d4696ac2d","8f44c0b1b12dc93-179fb42dc9f8fd55"]},"geometry":{"type":"LineString","coordinates":[[-83.666922,32.830024],[-83.667742,32.830049]]},"id":"8744c0b1bffffff-1796f32d8c3b2928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6648787,32.829870400000004]},"id":"8f44c0b1b106724-17bfb92ad59c57c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6646913,32.8299025]},"id":"8f44c0b1b115b0d-17d7b99ffdfd231a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b106724-17bfb92ad59c57c3","8f44c0b1b115b0d-17d7b99ffdfd231a"]},"geometry":{"type":"LineString","coordinates":[[-83.6648787,32.829870400000004],[-83.6646913,32.8299025]]},"id":"8a44c0b1b107fff-17b7b9656593d4f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b110b86-17febb04c9fa1010","8f44c0b1b115b0d-17d7b99ffdfd231a"]},"geometry":{"type":"LineString","coordinates":[[-83.6646913,32.8299025],[-83.6641204,32.8300001]]},"id":"8944c0b1b13ffff-17dfba5256bf620a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b110b86-17febb04c9fa1010","8f44c0b1b110014-179fbb679625883c"]},"geometry":{"type":"LineString","coordinates":[[-83.6641204,32.8300001],[-83.66396230000001,32.8300272]]},"id":"8b44c0b1b110fff-1796bb363a32bafd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6501497,32.8129367]},"id":"8f44c0b1a8d4a6a-13d7fd207047c0f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8d4a6a-13d7fd207047c0f4","8f44c0b1a8f3408-13fefd03b782590c"]},"geometry":{"type":"LineString","coordinates":[[-83.65019570000001,32.8127683],[-83.65016700000001,32.8128383],[-83.6501497,32.8129367]]},"id":"8944c0b1a8fffff-13b6dd14d2cf9fa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8d152c-17dffd867b69c47c","8f44c0b1a8d4a6a-13d7fd207047c0f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6501497,32.8129367],[-83.650108,32.813172],[-83.6500061,32.8133478],[-83.64998650000001,32.8135418]]},"id":"8a44c0b1a8d7fff-1396fd552fe72c5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6499847,32.813918]},"id":"8f44c0b1a8ded59-17bedd879658ad8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8d152c-17dffd867b69c47c","8f44c0b1a8ded59-17bedd879658ad8b"]},"geometry":{"type":"LineString","coordinates":[[-83.64998650000001,32.8135418],[-83.6499847,32.8135597],[-83.6499847,32.813918]]},"id":"8944c0b1a8fffff-17d7fd8796e2cc4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8d4a6a-13d7fd207047c0f4","8f44c0b1a8c692d-13b6fb5100e7da2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6501497,32.8129367],[-83.650328,32.8129105],[-83.6506659,32.812924],[-83.6508912,32.8128879]]},"id":"8944c0b1a8fffff-13dedc389cf17bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa69724-17f6e484eb084367","8f44c0b1869bc03-17ffc28509cdbf37"]},"geometry":{"type":"LineString","coordinates":[[-83.660229,32.820763],[-83.66104800000001,32.820786000000005]]},"id":"8644c0b1fffffff-17fed384f5989add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18699b74-1796c08983bb481a","8f44c0b1869bc03-17ffc28509cdbf37"]},"geometry":{"type":"LineString","coordinates":[[-83.66104800000001,32.820786000000005],[-83.66186,32.820798]]},"id":"8a44c0b1869ffff-1797c1874d68ba58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662744,32.820819]},"id":"8f44c0b18688268-1797fe6106001f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18688268-1797fe6106001f22","8f44c0b18699b74-1796c08983bb481a"]},"geometry":{"type":"LineString","coordinates":[[-83.66186,32.820798],[-83.662744,32.820819]]},"id":"8944c0b186bffff-179fff7540e07073"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188a80b5-13ffa48aab1cfb80","8f44c0b188ab8d4-13f6a4849c14588b"]},"geometry":{"type":"LineString","coordinates":[[-83.673327,32.806041],[-83.67333670000001,32.8064002]]},"id":"8a44c0b188affff-13ffe48790e4fda3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6741056,32.806396400000004]},"id":"8f44c0b1881a789-13dfe2a404dc80e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188ab8d4-13f6a4849c14588b","8f44c0b1881a789-13dfe2a404dc80e4"]},"geometry":{"type":"LineString","coordinates":[[-83.67333670000001,32.8064002],[-83.6741056,32.806396400000004]]},"id":"8844c0b189fffff-13def3945a89fbb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1881a372-13def1fc6445f1e8","8f44c0b1881a789-13dfe2a404dc80e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6741056,32.806396400000004],[-83.67437380000001,32.8063951]]},"id":"8b44c0b1881afff-13dfe2503a4d5e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6746986,32.8083706]},"id":"8f44c0b188c022e-17bfa13161fee546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1881a372-13def1fc6445f1e8","8f44c0b188c022e-17bfa13161fee546"]},"geometry":{"type":"LineString","coordinates":[[-83.67437380000001,32.8063951],[-83.674648,32.8063937],[-83.6747553,32.806527100000004],[-83.67480710000001,32.8072016],[-83.6747953,32.8075136],[-83.67470900000001,32.807876],[-83.674711,32.808193],[-83.6746986,32.8083706]]},"id":"8844c0b189fffff-17f7a120a9b072d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b188cb092-1397a08b87ad8c79","8f44c0b188c022e-17bfa13161fee546"]},"geometry":{"type":"LineString","coordinates":[[-83.6746986,32.8083706],[-83.67476860000001,32.8085084],[-83.6747732,32.808798],[-83.674825,32.809116],[-83.67495000000001,32.80948],[-83.674964,32.809756]]},"id":"8944c0b188fffff-13dea0d89eabb9eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da32321-13ff52209a5f35de","8f44c0b8da3224b-13d7f21445b59f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6022263,32.848627300000004],[-83.60224600000001,32.848779]]},"id":"8a44c0b8da37fff-13b7d21a668574a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da14ac3-1397f25007169c5e","8f44c0b8da3224b-13d7f21445b59f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.60224600000001,32.848779],[-83.60225790000001,32.848851100000005],[-83.6022543,32.848911300000005],[-83.6022238,32.848988],[-83.6021504,32.849060200000004]]},"id":"8944c0b8da3ffff-13b7721f39535d2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da14ac3-1397f25007169c5e","8f44c0b8da1468b-13d7f31c039269c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6021504,32.849060200000004],[-83.60196900000001,32.849128],[-83.60182400000001,32.849161]]},"id":"8b44c0b8da14fff-13bfd2b505756d59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70975320000001,32.8251246]},"id":"8f44c0b0a0f3425-1396eb9c46e0b52a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d5c43-13fffb9b5ac989c5","8f44c0b0a0f3425-1396eb9c46e0b52a"]},"geometry":{"type":"LineString","coordinates":[[-83.7097547,32.8254879],[-83.70975320000001,32.8251246]]},"id":"8944c0b0a0fffff-139e6b9bc930a853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c4184d3-17deb619f95c486c","8f44c0b1c4a9b23-179ef755a999e5c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6661345,32.7910344],[-83.6656294,32.791133300000006]]},"id":"8844c0b1c5fffff-17fff6b7dc69c352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c4a9b23-179ef755a999e5c0","8f44c0b1c4a9162-17bff7ac4dd68f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6656294,32.791133300000006],[-83.6654908,32.791158200000005]]},"id":"8b44c0b1c4a9fff-17b6b780f5338bc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c49d94b-17febc1c06ab23b0","8f44c0b1c4a9162-17bff7ac4dd68f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6654908,32.791158200000005],[-83.66494700000001,32.791252],[-83.66467200000001,32.791308],[-83.66367360000001,32.7914912]]},"id":"8944c0b1c4bffff-1797b9e443b40398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c49d5b4-179ffd2b02d119c9","8f44c0b1c49d94b-17febc1c06ab23b0"]},"geometry":{"type":"LineString","coordinates":[[-83.66367360000001,32.7914912],[-83.66342300000001,32.791507],[-83.66324,32.791519]]},"id":"8b44c0b1c49dfff-1796bca38d613ac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c49d5b4-179ffd2b02d119c9","8f44c0b1e86ad52-1797e23aaf5cd713"]},"geometry":{"type":"LineString","coordinates":[[-83.66324,32.791519],[-83.661613,32.791539],[-83.661167,32.791539]]},"id":"8744c0b1effffff-1797bfb2d3f4d96f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e86ad52-1797e23aaf5cd713","8f44c0b1e850283-17b6f7530b7939e0"]},"geometry":{"type":"LineString","coordinates":[[-83.661167,32.791539],[-83.65908,32.7915591]]},"id":"8944c0b1e87ffff-179ef4c6d380da23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6747588,32.7874885]},"id":"8f44c0b1c1a0b25-17b6f10bc963d68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67522290000001,32.7870201]},"id":"8f44c0b1cc4b14d-139f9fe9b464349d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1cc4b14d-139f9fe9b464349d","8f44c0b1c1a0b25-17b6f10bc963d68a"]},"geometry":{"type":"LineString","coordinates":[[-83.6747588,32.7874885],[-83.674817,32.787419],[-83.674963,32.787256],[-83.675094,32.787132],[-83.67522290000001,32.7870201]]},"id":"8844c0b1c1fffff-179fb07f803057ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6761388,32.7864086]},"id":"8f44c0b1c13608a-1397fdad49551498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1cc4b14d-139f9fe9b464349d","8f44c0b1c13608a-1397fdad49551498"]},"geometry":{"type":"LineString","coordinates":[[-83.67522290000001,32.7870201],[-83.675421,32.786848],[-83.675747,32.786622],[-83.675917,32.786524],[-83.6761388,32.7864086]]},"id":"8944c0b1cc7ffff-13d6fed4a15e597d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c13608a-1397fdad49551498","8f44c0b1c134508-1396bcb8c1cb7f58"]},"geometry":{"type":"LineString","coordinates":[[-83.6761388,32.7864086],[-83.67653,32.786205]]},"id":"8a44c0b1c137fff-13d7dd33078c70e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67698030000001,32.7859554]},"id":"8f44c0b1c89a361-13f6bb9f566af18a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c89a361-13f6bb9f566af18a","8f44c0b1c134508-1396bcb8c1cb7f58"]},"geometry":{"type":"LineString","coordinates":[[-83.67653,32.786205],[-83.67698030000001,32.7859554]]},"id":"8744c0b1cffffff-13d6bc2c101c50ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c88e4a0-17d7f91e4e60a972","8f44c0b1c89a361-13f6bb9f566af18a"]},"geometry":{"type":"LineString","coordinates":[[-83.67698030000001,32.7859554],[-83.677082,32.785899],[-83.677417,32.785725],[-83.67758400000001,32.785646],[-83.677771,32.785567],[-83.67800600000001,32.785487]]},"id":"8944c0b1c8bffff-13deda63a8ee9569"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c88c829-17dff706a679a38f","8f44c0b1c88e4a0-17d7f91e4e60a972"]},"geometry":{"type":"LineString","coordinates":[[-83.67800600000001,32.785487],[-83.678261,32.7854],[-83.67844600000001,32.785353],[-83.678684,32.785302],[-83.678863,32.785279]]},"id":"8944c0b1c8bffff-1797b81501807b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c88c829-17dff706a679a38f","8f44c0b1c81b893-17de92f4c3372091"]},"geometry":{"type":"LineString","coordinates":[[-83.678863,32.785279],[-83.67901300000001,32.785266],[-83.67923300000001,32.785261000000006],[-83.67933000000001,32.78526],[-83.67959400000001,32.785258],[-83.68053,32.785296]]},"id":"8844c0b1c9fffff-17def4fdc2c1e43b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c80bd0b-17feafe644d68353","8f44c0b1c81b893-17de92f4c3372091"]},"geometry":{"type":"LineString","coordinates":[[-83.68053,32.785296],[-83.680603,32.785299],[-83.68137200000001,32.785336],[-83.681782,32.785345]]},"id":"8944c0b1c83ffff-17fff16d949a39b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68345000000001,32.785368000000005]},"id":"8f44c0b1c870348-17978bd3ccb1be11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c80bd0b-17feafe644d68353","8f44c0b1c870348-17978bd3ccb1be11"]},"geometry":{"type":"LineString","coordinates":[[-83.681782,32.785345],[-83.68345000000001,32.785368000000005]]},"id":"8844c0b1c9fffff-17ffdddd06e4d077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c862b75-17b6a994eed87a64","8f44c0b1c870348-17978bd3ccb1be11"]},"geometry":{"type":"LineString","coordinates":[[-83.68345000000001,32.785368000000005],[-83.683774,32.78539],[-83.6843698,32.7854082]]},"id":"8944c0b1c87ffff-17968ab47fded603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6848496,32.7854228]},"id":"8f44c0b1c861da5-17bfc86903f7c6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c861da5-17bfc86903f7c6bc","8f44c0b1c862b75-17b6a994eed87a64"]},"geometry":{"type":"LineString","coordinates":[[-83.6843698,32.7854082],[-83.6848496,32.7854228]]},"id":"8a44c0b1c867fff-17b6b8feffa37aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68787370000001,32.7855104]},"id":"8f44c0b03485af3-17f68106f240aae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c861da5-17bfc86903f7c6bc","8f44c0b03485af3-17f68106f240aae6"]},"geometry":{"type":"LineString","coordinates":[[-83.6848496,32.7854228],[-83.687351,32.785499],[-83.68787370000001,32.7855104]]},"id":"8644c0b07ffffff-17d7d4b801e4be26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03485af3-17f68106f240aae6","8f44c0b034ae66c-17f7904b6973eeea"]},"geometry":{"type":"LineString","coordinates":[[-83.68787370000001,32.7855104],[-83.68800200000001,32.785514],[-83.6881738,32.785521700000004]]},"id":"8944c0b034bffff-17f7a0a92882dd49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688406,32.785532]},"id":"8f44c0b034a8c81-17ffffba4dab3b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b034a8c81-17ffffba4dab3b74","8f44c0b034ae66c-17f7904b6973eeea"]},"geometry":{"type":"LineString","coordinates":[[-83.6881738,32.785521700000004],[-83.688406,32.785532]]},"id":"8a44c0b034affff-17fed002d38d80ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b034a8c81-17ffffba4dab3b74","8f44c0b03408493-13d7799eb1908672"]},"geometry":{"type":"LineString","coordinates":[[-83.688406,32.785532],[-83.688922,32.785559],[-83.689245,32.78559],[-83.689576,32.785632],[-83.689918,32.785688],[-83.690234,32.78575],[-83.69090770000001,32.785899300000004]]},"id":"8844c0b035fffff-13d6fca8ac8b240d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03408493-13d7799eb1908672","8f44c0b03460775-139ff294a60e3a8a"]},"geometry":{"type":"LineString","coordinates":[[-83.69090770000001,32.785899300000004],[-83.69136200000001,32.786],[-83.69164400000001,32.786051],[-83.691753,32.786071],[-83.69205500000001,32.786119],[-83.692448,32.786164],[-83.692772,32.786192],[-83.693154,32.786216],[-83.693791,32.786217]]},"id":"8844c0b035fffff-13df761de723c074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03460775-139ff294a60e3a8a","8f44c0b030ae54d-13dfe9f344399c8d"]},"geometry":{"type":"LineString","coordinates":[[-83.693791,32.786217],[-83.695599,32.786149],[-83.69594400000001,32.786136],[-83.696644,32.786109],[-83.697326,32.786121]]},"id":"8744c0b03ffffff-13f66e440bc5ec03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b030ae149-13ffe97fa091a621","8f44c0b030ae54d-13dfe9f344399c8d"]},"geometry":{"type":"LineString","coordinates":[[-83.697326,32.786121],[-83.697511,32.786147]]},"id":"8b44c0b030aefff-13f7e9b9711352b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0301e4a6-139ee71daf3deb5f","8f44c0b030ae149-13ffe97fa091a621"]},"geometry":{"type":"LineString","coordinates":[[-83.697511,32.786147],[-83.697867,32.786170000000006],[-83.698487,32.786219]]},"id":"8844c0b031fffff-1397684e9b98e721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70213910000001,32.7865434]},"id":"8f44c0b03075c05-13f7fe33136857e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0301e4a6-139ee71daf3deb5f","8f44c0b03075c05-13f7fe33136857e0"]},"geometry":{"type":"LineString","coordinates":[[-83.698487,32.786219],[-83.70213910000001,32.7865434]]},"id":"8844c0b031fffff-139662a86513bfe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7022913,32.786557300000005]},"id":"8f44c0b03075810-13fe5dd3f64e0587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03075c05-13f7fe33136857e0","8f44c0b03075810-13fe5dd3f64e0587"]},"geometry":{"type":"LineString","coordinates":[[-83.70213910000001,32.7865434],[-83.7022913,32.786557300000005]]},"id":"8b44c0b03075fff-13fe5e038e191056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0307595a-13f7fda9088e32ae","8f44c0b03075810-13fe5dd3f64e0587"]},"geometry":{"type":"LineString","coordinates":[[-83.7022913,32.786557300000005],[-83.70236,32.786563]]},"id":"8c44c0b030759ff-13f67dbe8af32a8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03066400-13f7fd509373ff1f","8f44c0b0307595a-13f7fda9088e32ae"]},"geometry":{"type":"LineString","coordinates":[[-83.70236,32.786563],[-83.70250150000001,32.7865727]]},"id":"8944c0b0307ffff-13f6fd7cd3fa22e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70270570000001,32.7865867]},"id":"8f44c0b03066005-1396fcd0f7b9facd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03066400-13f7fd509373ff1f","8f44c0b03066005-1396fcd0f7b9facd"]},"geometry":{"type":"LineString","coordinates":[[-83.70250150000001,32.7865727],[-83.70270570000001,32.7865867]]},"id":"8b44c0b03066fff-13fe5d10c40db79d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03066005-1396fcd0f7b9facd","8f44c0b03066a04-139e7c60ee7209c2"]},"geometry":{"type":"LineString","coordinates":[[-83.70270570000001,32.7865867],[-83.70288500000001,32.786599]]},"id":"8b44c0b03066fff-1396dc98f4d1395c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03066a04-139e7c60ee7209c2","8f44c0b03064223-139e7b6dcacb0279"]},"geometry":{"type":"LineString","coordinates":[[-83.70288500000001,32.786599],[-83.70327400000001,32.786631]]},"id":"8a44c0b03067fff-13967be7571f09cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03064223-139e7b6dcacb0279","8f44c0b03a94758-13f75893c923cf14"]},"geometry":{"type":"LineString","coordinates":[[-83.70327400000001,32.786631],[-83.704442,32.786744]]},"id":"8744c0b03ffffff-13bffa00cc02d8c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03a94358-13fff81dae24b95e","8f44c0b03a94758-13f75893c923cf14"]},"geometry":{"type":"LineString","coordinates":[[-83.704442,32.786744],[-83.704631,32.786761]]},"id":"8b44c0b03a94fff-13fe5858b67d7653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03a94358-13fff81dae24b95e","8f44c0b03a86028-1397f6588f73648f"]},"geometry":{"type":"LineString","coordinates":[[-83.704631,32.786761],[-83.70535600000001,32.786825]]},"id":"8944c0b03abffff-1397f73b14878ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068557,32.7869392]},"id":"8f44c0b03aaea21-13df52af348790c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03a86028-1397f6588f73648f","8f44c0b03aaea21-13df52af348790c7"]},"geometry":{"type":"LineString","coordinates":[[-83.70535600000001,32.786825],[-83.706294,32.7869],[-83.70675700000001,32.786929],[-83.7068557,32.7869392]]},"id":"8944c0b03abffff-13be5483e679da4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7071545,32.7869854]},"id":"8f44c0b03aac2a3-13fff1f475a28749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03aac2a3-13fff1f475a28749","8f44c0b03aaea21-13df52af348790c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7068557,32.7869392],[-83.707076,32.786959],[-83.7071545,32.7869854]]},"id":"8a44c0b03aaffff-13f77250e4fe750f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70727380000001,32.7870422]},"id":"8f44c0b03aac24c-139f71a9eef1ab29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03aac2a3-13fff1f475a28749","8f44c0b03aac24c-139f71a9eef1ab29"]},"geometry":{"type":"LineString","coordinates":[[-83.7071545,32.7869854],[-83.707181,32.786996],[-83.707248,32.787025],[-83.70727380000001,32.7870422]]},"id":"8c44c0b03aac3ff-139e51ce7a52602d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b03aad0ad-13ffd13823ed3b63","8f44c0b03aac24c-139f71a9eef1ab29"]},"geometry":{"type":"LineString","coordinates":[[-83.70727380000001,32.7870422],[-83.7074558,32.787164100000005]]},"id":"8b44c0b03aadfff-13d7d1710cb2d260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c88f4-17de8c45cfde0b5a","8f44c0b0c6c8042-17befc59b6ed9a51"]},"geometry":{"type":"LineString","coordinates":[[-83.7356645,32.807345500000004],[-83.7356676,32.8072535],[-83.73569640000001,32.8071848]]},"id":"8b44c0b0c6c8fff-17ffcc5447f41a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6cc215-17f66bfe56269dcf","8f44c0b0c6c88f4-17de8c45cfde0b5a"]},"geometry":{"type":"LineString","coordinates":[[-83.73569640000001,32.8071848],[-83.7357186,32.8071317],[-83.7358107,32.807015]]},"id":"8a44c0b0c6cffff-1797ac2517e28abe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6cc215-17f66bfe56269dcf","8f44c0b0c6ccb10-13f74bb8fa8696b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7358107,32.807015],[-83.7358822,32.8069243],[-83.7359198,32.806859],[-83.7359217,32.806818]]},"id":"8b44c0b0c6ccfff-17b7bbd4b33bc443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ea2c0-13fe6bb3ef3669f9","8f44c0b0c6ccb10-13f74bb8fa8696b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7359217,32.806818],[-83.73592980000001,32.806647000000005]]},"id":"8944c0b0c6fffff-13bfdbb66a9975d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ea145-13f69bace2a4a340","8f44c0b0c6ea2c0-13fe6bb3ef3669f9"]},"geometry":{"type":"LineString","coordinates":[[-83.73592980000001,32.806647000000005],[-83.73594100000001,32.806410500000005]]},"id":"8b44c0b0c6eafff-13b68bb06c52f6a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ea913-13fe7ba7b1d9847c","8f44c0b0c6ea145-13f69bace2a4a340"]},"geometry":{"type":"LineString","coordinates":[[-83.73594100000001,32.806410500000005],[-83.7359493,32.8062343]]},"id":"8b44c0b0c6eafff-13bf8baa4b3fbbc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ea913-13fe7ba7b1d9847c","8f44c0b0c6c014b-13f78dbb2a0b3fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.7359493,32.8062343],[-83.7359546,32.8061218],[-83.7359225,32.8060834],[-83.73587690000001,32.8060654],[-83.73518750000001,32.806054100000004],[-83.7351285,32.8060744],[-83.7351151,32.806133],[-83.735099,32.806223200000005]]},"id":"8944c0b0c6fffff-139e2cad27e76de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c066e-13debe00e58269fb","8f44c0b0c6c014b-13f78dbb2a0b3fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.735099,32.806223200000005],[-83.73498740000001,32.8063883]]},"id":"8b44c0b0c6c0fff-13b72dde0ff18640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c066e-13debe00e58269fb","8f44c0b0c6c315e-13f63e1ba221eb78"]},"geometry":{"type":"LineString","coordinates":[[-83.73498740000001,32.8063883],[-83.73496490000001,32.8064216],[-83.7349434,32.806496],[-83.7349446,32.806640300000005]]},"id":"8a44c0b0c6c7fff-13b74e1719ad5a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6c315e-13f63e1ba221eb78","8f44c0b0c6c3212-13dfae1ad353d084"]},"geometry":{"type":"LineString","coordinates":[[-83.7349446,32.806640300000005],[-83.7349459,32.806802600000005]]},"id":"8b44c0b0c6c3fff-13befe1b328a4977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6dd8d5-17d78e55797f3de7","8f44c0b0c6c3212-13dfae1ad353d084"]},"geometry":{"type":"LineString","coordinates":[[-83.7349459,32.806802600000005],[-83.7349461,32.8068364],[-83.73491130000001,32.806904100000004],[-83.73485210000001,32.8069976]]},"id":"8944c0b0c6fffff-179e5e32a7bc8d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6dd8d5-17d78e55797f3de7","8f44c0b0c6dd766-17d6be91b944e855"]},"geometry":{"type":"LineString","coordinates":[[-83.73485210000001,32.8069976],[-83.7347745,32.8071205],[-83.73475570000001,32.807172300000005]]},"id":"8b44c0b0c6ddfff-179efe76007e2d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6dd766-17d6be91b944e855","8f44c0b0c6d99ab-17b79e9e859b5a6e"]},"geometry":{"type":"LineString","coordinates":[[-83.73475570000001,32.807172300000005],[-83.7347352,32.8073337]]},"id":"8a44c0b0c6dffff-17f72e9820468d4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d20c29e-13fee6675d3635dc","8f44c0b1d208732-13bf66f0ac0b12fd"]},"geometry":{"type":"LineString","coordinates":[[-83.698559,32.8155318],[-83.6986322,32.8154302],[-83.6987055,32.8153285],[-83.6987787,32.815226800000005]]},"id":"8a44c0b1d20ffff-13de76abfc8531f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6989545,32.814982900000004]},"id":"8f44c0b1d20c84b-17d675f97808ac50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d20c29e-13fee6675d3635dc","8f44c0b1d20c84b-17d675f97808ac50"]},"geometry":{"type":"LineString","coordinates":[[-83.6987787,32.815226800000005],[-83.69886650000001,32.815105],[-83.6989545,32.814982900000004]]},"id":"8b44c0b1d20cfff-13b6f6306f89aa07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d22bd80-17bff58b79e0e9dd","8f44c0b1d20c84b-17d675f97808ac50"]},"geometry":{"type":"LineString","coordinates":[[-83.6989545,32.814982900000004],[-83.6990425,32.814860800000005],[-83.69913050000001,32.8147387]]},"id":"8944c0b1d23ffff-179e65c27ca44bcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e5531-13f7e7b302e7140f","8f44c0b1d20b796-13dff76ec46cbea0"]},"geometry":{"type":"LineString","coordinates":[[-83.698248,32.816243],[-83.6983132,32.816093900000006],[-83.6983572,32.8159933]]},"id":"8a44c0b1d2e7fff-139ff790e90867af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d20b796-13dff76ec46cbea0","8f44c0b1d20bcd8-13f7f7430b1774ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6983572,32.8159933],[-83.69842720000001,32.8158331]]},"id":"8b44c0b1d20bfff-139fe758ee81ff1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d20bcd8-13f7f7430b1774ff","8f44c0b1d208732-13bf66f0ac0b12fd"]},"geometry":{"type":"LineString","coordinates":[[-83.69842720000001,32.8158331],[-83.69847130000001,32.8157324],[-83.698559,32.8155318]]},"id":"8a44c0b1d20ffff-139ff719d44947e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66088780000001,32.8142961]},"id":"8f44c0b184c520b-17b7d2e9284119c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184c520b-17b7d2e9284119c3","8f44c0b184c0a6a-17b6c3ad8b9b94c3"]},"geometry":{"type":"LineString","coordinates":[[-83.66088780000001,32.8142961],[-83.66072700000001,32.814293],[-83.6605736,32.8142884]]},"id":"8a44c0b184c7fff-17b6f34b5855bbcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65968500000001,32.814262]},"id":"8f44c0b184c250d-1797c5d8e9b1a705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184c250d-1797c5d8e9b1a705","8f44c0b184c0a6a-17b6c3ad8b9b94c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6605736,32.8142884],[-83.65968500000001,32.814262]]},"id":"8a44c0b184c7fff-179ec4c3390470d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625508,32.8143291]},"id":"8f44c0b1845e648-17bfbed9cfd4d67f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1845e648-17bfbed9cfd4d67f","8f44c0b18458ce3-17d6fe14c9b9b99e"]},"geometry":{"type":"LineString","coordinates":[[-83.66286600000001,32.8143407],[-83.6625508,32.8143291]]},"id":"8a44c0b1845ffff-17bffe774b218fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6622567,32.814318400000005]},"id":"8f44c0b184ed32d-17b7bf91917c1a19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1845e648-17bfbed9cfd4d67f","8f44c0b184ed32d-17b7bf91917c1a19"]},"geometry":{"type":"LineString","coordinates":[[-83.6625508,32.8143291],[-83.6622567,32.814318400000005]]},"id":"8944c0b1847ffff-17beff35a6b46673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6618663,32.814312300000005]},"id":"8f44c0b184e8b72-17b7f0859a1bfb34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184ed32d-17b7bf91917c1a19","8f44c0b184e8b72-17b7f0859a1bfb34"]},"geometry":{"type":"LineString","coordinates":[[-83.6622567,32.814318400000005],[-83.6621925,32.814316000000005],[-83.6618663,32.814312300000005]]},"id":"8a44c0b184effff-17b6f00b92b2bb30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73348680000001,32.827797600000004]},"id":"8f44c0b0864d75b-179f91aace68107d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b9130a3-13b671b36797ddcf","8f44c0b0864d75b-179f91aace68107d"]},"geometry":{"type":"LineString","coordinates":[[-83.73348680000001,32.827797600000004],[-83.733479,32.828159],[-83.733473,32.829267800000004]]},"id":"8844c0b0b9fffff-13fef1b0768abc92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73378650000001,32.8300355]},"id":"8f44c0b0b91a00c-179630ef7397d795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b9130a3-13b671b36797ddcf","8f44c0b0b91a00c-179630ef7397d795"]},"geometry":{"type":"LineString","coordinates":[[-83.733473,32.829267800000004],[-83.73354880000001,32.8295285],[-83.7336544,32.829782200000004],[-83.7337437,32.8299782],[-83.73378650000001,32.8300355]]},"id":"8944c0b0b93ffff-13bf715cfe6ff485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b91b384-17967003b3bb3b01","8f44c0b0b91a00c-179630ef7397d795"]},"geometry":{"type":"LineString","coordinates":[[-83.73378650000001,32.8300355],[-83.7338893,32.830173],[-83.7340635,32.8303645],[-83.73416370000001,32.830448700000005]]},"id":"8a44c0b0b91ffff-179eb07f4d3f92e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73743300000001,32.8330594]},"id":"8f44c0b0b86464a-13f6280863abbcd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b86464a-13f6280863abbcd5","8f44c0b0b91b384-17967003b3bb3b01"]},"geometry":{"type":"LineString","coordinates":[[-83.73416370000001,32.830448700000005],[-83.73429060000001,32.8305479],[-83.7345327,32.8306868],[-83.7353238,32.8310812],[-83.7363009,32.8315624],[-83.7366434,32.831760800000005],[-83.7368146,32.8318998],[-83.7370006,32.8320858],[-83.7371983,32.8323636],[-83.7373194,32.8326116],[-83.7373766,32.8327605],[-83.73742560000001,32.8329564],[-83.73743300000001,32.8330594]]},"id":"8844c0b0b9fffff-13de8b7d81c50f0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73743970000001,32.8333839]},"id":"8f44c0b0b860313-17d6f80439c9c68e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b86464a-13f6280863abbcd5","8f44c0b0b860313-17d6f80439c9c68e"]},"geometry":{"type":"LineString","coordinates":[[-83.73743300000001,32.8330594],[-83.7374434,32.8332045],[-83.73743970000001,32.8333839]]},"id":"8a44c0b0b867fff-17df8803f0ad2ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737437,32.833515500000004]},"id":"8f44c0b0b8602ce-17973805efc6f5d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b860313-17d6f80439c9c68e","8f44c0b0b8602ce-17973805efc6f5d6"]},"geometry":{"type":"LineString","coordinates":[[-83.73743970000001,32.8333839],[-83.737437,32.833515500000004]]},"id":"8c44c0b0b8603ff-17fe1805105680d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7374302,32.833847]},"id":"8f44c0b0b86ed92-17f6680a214fea9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8602ce-17973805efc6f5d6","8f44c0b0b86ed92-17f6680a214fea9c"]},"geometry":{"type":"LineString","coordinates":[[-83.737437,32.833515500000004],[-83.7374302,32.833847]]},"id":"8a44c0b0b867fff-17fec8080a7e3b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107313,32.825811]},"id":"8f44c0b0a0c0ab6-13d7e938f3943667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0c0ab6-13d7e938f3943667","8f44c0b0a0d50d0-13dfeb9d5eb7fd4a"]},"geometry":{"type":"LineString","coordinates":[[-83.70975150000001,32.8256506],[-83.71027570000001,32.8257355],[-83.7105997,32.825797],[-83.7107313,32.825811]]},"id":"8944c0b0a0fffff-1396da6b3942f30d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8a8376-13bfb4c4c2c87529","8f44c0b0b8a98a2-13de7419b45be619"]},"geometry":{"type":"LineString","coordinates":[[-83.7322164,32.832943400000005],[-83.7324901,32.833018200000005]]},"id":"8a44c0b0b8affff-13d7146f48033e98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a736871-13df53a05af3e272","8f44c0b0a726a9e-13965087db1eaaeb"]},"geometry":{"type":"LineString","coordinates":[[-83.7064699,32.8250357],[-83.7067978,32.825136900000004],[-83.70773790000001,32.8253028]]},"id":"8944c0b0a73ffff-13be5216697b89db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a72550e-13de7f247f5234b3","8f44c0b0a726a9e-13965087db1eaaeb"]},"geometry":{"type":"LineString","coordinates":[[-83.70773790000001,32.8253028],[-83.7083065,32.8254147]]},"id":"8a44c0b0a727fff-13bf4fd62d704328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b80b474-17978f4a186a4d16","8f44c0b0b8e494d-17f7cfa43abcb731"]},"geometry":{"type":"LineString","coordinates":[[-83.7343165,32.8334652],[-83.7344607,32.833493600000004]]},"id":"8a44c0b0b80ffff-17feaf772ba217fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b80b474-17978f4a186a4d16","8f44c0b0b80b00b-179e9ee976a7b788"]},"geometry":{"type":"LineString","coordinates":[[-83.7344607,32.833493600000004],[-83.7346153,32.833524100000005]]},"id":"8b44c0b0b80bfff-179f0f19c4b4214b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73681660000001,32.8337516]},"id":"8f44c0b0b8448d3-17b6c989a365a298"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8448d3-17b6c989a365a298","8f44c0b0b86ed92-17f6680a214fea9c"]},"geometry":{"type":"LineString","coordinates":[[-83.7374302,32.833847],[-83.7372943,32.8337787],[-83.73681660000001,32.8337516]]},"id":"8944c0b0b87ffff-17b678c6157243fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b80b00b-179e9ee976a7b788","8f44c0b0b856d68-17f78e0c0675570c"]},"geometry":{"type":"LineString","coordinates":[[-83.7346153,32.833524100000005],[-83.7347984,32.8336075],[-83.7349696,32.8336472]]},"id":"8844c0b0b9fffff-17d69e7ca720751c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3479a695-17f7196dc0d9580d","8f44c0a36b6926d-17df19b8a602de30"]},"geometry":{"type":"LineString","coordinates":[[-83.63188380000001,32.844254500000005],[-83.6320036,32.8440913]]},"id":"8844c0a347fffff-179f19933fd00b06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6322468,32.8437961]},"id":"8f44c0a3479a8a5-17bf98d5c4f769d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3479a695-17f7196dc0d9580d","8f44c0a3479a8a5-17bf98d5c4f769d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6320036,32.8440913],[-83.6322468,32.8437961]]},"id":"8b44c0a3479afff-179fd921cfea5091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3479e212-17df9890aae46ba9","8f44c0a3479a8a5-17bf98d5c4f769d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6322468,32.8437961],[-83.6323574,32.843661700000006]]},"id":"8a44c0a3479ffff-179798b33cdfba26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3479e212-17df9890aae46ba9","8f44c0a3479ea8c-1797a858a1149429"]},"geometry":{"type":"LineString","coordinates":[[-83.6323574,32.843661700000006],[-83.632447,32.843553]]},"id":"8b44c0a3479efff-17b7a874a1a6aa0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34782156-179fe72024048a1b","8f44c0a3479ea8c-1797a858a1149429"]},"geometry":{"type":"LineString","coordinates":[[-83.632447,32.843553],[-83.632947,32.842947]]},"id":"8944c0a347bffff-17d747bc6580e5c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6137997,32.848218700000004]},"id":"8f44c0a36708d50-13ffb5df33c5e83c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36708d50-13ffb5df33c5e83c","8f44c0a36718bb4-13f778ab48795713"]},"geometry":{"type":"LineString","coordinates":[[-83.612654,32.8482166],[-83.6137997,32.848218700000004]]},"id":"8944c0a3673ffff-13ff37454a5d9ac9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3670d106-13f7b49181978bc1","8f44c0a36708d50-13ffb5df33c5e83c"]},"geometry":{"type":"LineString","coordinates":[[-83.6137997,32.848218700000004],[-83.61433360000001,32.8482154]]},"id":"8a44c0a3670ffff-13f7b5385cfc6ad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61460960000001,32.848217600000005]},"id":"8f44c0a367764e3-13ff33e5058ad077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3670d106-13f7b49181978bc1","8f44c0a367764e3-13ff33e5058ad077"]},"geometry":{"type":"LineString","coordinates":[[-83.61433360000001,32.8482154],[-83.61460960000001,32.848217600000005]]},"id":"8944c0a3673ffff-13f7743b44864d8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8dc82331-13ff799a6818710c","8f44c0b8c264131-17b7feca8ab3140f"]},"geometry":{"type":"LineString","coordinates":[[-83.583932,32.841121],[-83.584321,32.841282],[-83.58514500000001,32.841648],[-83.58533600000001,32.841734],[-83.58605700000001,32.84205]]},"id":"8644c0b8fffffff-13d77c31a5ed5c5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34570022-13f7135963fddfed","8f44c0a34566325-13b760b6e247375f"]},"geometry":{"type":"LineString","coordinates":[[-83.6344938,32.8357121],[-83.63465450000001,32.8356672],[-83.6347367,32.8356446],[-83.63482350000001,32.8356292],[-83.6349734,32.835616300000005],[-83.63557300000001,32.835591]]},"id":"8944c0a3457ffff-13bf620a81f264e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34566325-13b760b6e247375f","8f44c0a341968d6-139efdac9e0b9731"]},"geometry":{"type":"LineString","coordinates":[[-83.63557300000001,32.835591],[-83.6368183,32.835553000000004]]},"id":"8744c0a34ffffff-139eff31c5590b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34185c4c-13d7f8932e200409","8f44c0a34194705-13befcd1c7b1fbc6"]},"geometry":{"type":"LineString","coordinates":[[-83.63716840000001,32.8356046],[-83.638907,32.835875]]},"id":"8944c0a341bffff-1397fab278435745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a34185c4c-13d7f8932e200409","8f44c0a341ae350-13b7f70b49840141"]},"geometry":{"type":"LineString","coordinates":[[-83.638907,32.835875],[-83.63953400000001,32.8360055]]},"id":"8944c0a341bffff-13fef7cf3909b92e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63983610000001,32.8360854]},"id":"8f44c0a341a88f4-13dff64e788ab28a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a341ae350-13b7f70b49840141","8f44c0a341a88f4-13dff64e788ab28a"]},"geometry":{"type":"LineString","coordinates":[[-83.63953400000001,32.8360055],[-83.63983610000001,32.8360854]]},"id":"8a44c0a341affff-13d6f6acd96a4597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6399727,32.8361208]},"id":"8f44c0a341a8b26-13fff5f91bf42f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a341a8b26-13fff5f91bf42f7a","8f44c0a341a88f4-13dff64e788ab28a"]},"geometry":{"type":"LineString","coordinates":[[-83.63983610000001,32.8360854],[-83.6399727,32.8361208]]},"id":"8b44c0a341a8fff-13f6f623c1920b98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402377,32.8361895]},"id":"8f44c0a341ad392-139ef5537c87656e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a341a8b26-13fff5f91bf42f7a","8f44c0a341ad392-139ef5537c87656e"]},"geometry":{"type":"LineString","coordinates":[[-83.6399727,32.8361208],[-83.6402377,32.8361895]]},"id":"8a44c0a341affff-1397f5a647c3cb4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a341ad340-13b6f4f0be6cfebc","8f44c0a341ad392-139ef5537c87656e"]},"geometry":{"type":"LineString","coordinates":[[-83.6402377,32.8361895],[-83.6403957,32.8362305]]},"id":"8c44c0a341ad3ff-13b7f5221475a6f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e79d641-17dffda5092f3b00","8f44c0b8e71e692-13f7d7e520a0c00c"]},"geometry":{"type":"LineString","coordinates":[[-83.54743500000001,32.842446],[-83.54508,32.843443]]},"id":"8844c0b8e7fffff-179fdac5103bce79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e79d641-17dffda5092f3b00","8f44c0b9da66a31-13d7e5dfe022498c"]},"geometry":{"type":"LineString","coordinates":[[-83.54508,32.843443],[-83.54170900000001,32.844853]]},"id":"8644c0b8fffffff-179fe1c272adf5cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b9da66a31-13d7e5dfe022498c","8f44c0b9dac48cb-179feede66473d08"]},"geometry":{"type":"LineString","coordinates":[[-83.54170900000001,32.844853],[-83.53841,32.846243],[-83.538025,32.846404]]},"id":"8844c0b9dbfffff-13b7ea5f08ac065b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca422da-13d5e3ebe9a4889f","8f44c0b0c260595-1397ee08cab47815"]},"geometry":{"type":"LineString","coordinates":[[-83.7522242,32.7998034],[-83.75073300000001,32.801246],[-83.750488,32.801504],[-83.750304,32.801724],[-83.75018700000001,32.801872],[-83.750051,32.802059],[-83.74985500000001,32.802355],[-83.74970300000001,32.802614000000005],[-83.74893900000001,32.804038000000006],[-83.74879,32.804291],[-83.748552,32.804648],[-83.748343,32.804917],[-83.74808200000001,32.805227]]},"id":"8744c0b0cffffff-13b5f94db48767f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d594021-1395f41c603546bc","8f44c0b0c260595-1397ee08cab47815"]},"geometry":{"type":"LineString","coordinates":[[-83.74808200000001,32.805227],[-83.746133,32.807546],[-83.745912,32.807864],[-83.74582600000001,32.808028],[-83.745765,32.808163],[-83.74570700000001,32.808304],[-83.74561800000001,32.80861],[-83.745593,32.808731]]},"id":"8644c0b0fffffff-179ff15e4484b408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34055db3-17feefdaa545b015","8f44c0a340454b6-17b7ecf3cb137b2a"]},"geometry":{"type":"LineString","coordinates":[[-83.64247900000001,32.840209],[-83.6436676,32.840507200000005]]},"id":"8944c0a3407ffff-17d7fe67377166c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34045082-17d6ec754d44b659","8f44c0a340454b6-17b7ecf3cb137b2a"]},"geometry":{"type":"LineString","coordinates":[[-83.6436676,32.840507200000005],[-83.64387,32.840558]]},"id":"8a44c0a34047fff-17b6ecb48bcef1cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0c5a26-13ff67cf122eefe6","8f44c0b0a05ea24-13fed366172dbfb0"]},"geometry":{"type":"LineString","coordinates":[[-83.7131167,32.8257001],[-83.71265720000001,32.8256042],[-83.712314,32.825578300000004],[-83.7119784,32.8256042],[-83.71158890000001,32.825659300000005],[-83.71131030000001,32.825695]]},"id":"8844c0b0a1fffff-13d65599681c9b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8a8588-13df95a4a8f9720b","8f44c0b0b8a8376-13bfb4c4c2c87529"]},"geometry":{"type":"LineString","coordinates":[[-83.7322164,32.832943400000005],[-83.7320648,32.8328459],[-83.7318582,32.8327864]]},"id":"8b44c0b0b8a8fff-13f6753107ca16bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3488db1c-17fffc58c6b2fdd9","8f44c0a3488d8aa-17befcad7fa57308"]},"geometry":{"type":"LineString","coordinates":[[-83.6437801,32.8331749],[-83.6439156,32.8332531]]},"id":"8b44c0a3488dfff-17d6ec832afaea29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6439491,32.8332725]},"id":"8f44c0a3488db09-17fffc43d6ec06db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3488db1c-17fffc58c6b2fdd9","8f44c0a3488db09-17fffc43d6ec06db"]},"geometry":{"type":"LineString","coordinates":[[-83.6439156,32.8332531],[-83.6439491,32.8332725]]},"id":"8d44c0a3488db3f-17f7ec4e5e3922d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a3488db09-17fffc43d6ec06db","8f44c0a348f66e4-17b7fbe65590915e"]},"geometry":{"type":"LineString","coordinates":[[-83.6439491,32.8332725],[-83.6440987,32.8333589]]},"id":"8a44c0a348f7fff-1796fc1513f2c9ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64412370000001,32.833373300000005]},"id":"8f44c0a348f6653-17befbd6b2c4d76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a348f66e4-17b7fbe65590915e","8f44c0a348f6653-17befbd6b2c4d76c"]},"geometry":{"type":"LineString","coordinates":[[-83.6440987,32.8333589],[-83.64412370000001,32.833373300000005]]},"id":"8c44c0a348f67ff-17b7fbde83293834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a348f6653-17befbd6b2c4d76c","8f44c0a348f2976-17f6eb91c0021848"]},"geometry":{"type":"LineString","coordinates":[[-83.64412370000001,32.833373300000005],[-83.64423400000001,32.833437]]},"id":"8a44c0a348f7fff-17deebb445aed4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a348f0454-179ffb2b23a71dc2","8f44c0a348f2976-17f6eb91c0021848"]},"geometry":{"type":"LineString","coordinates":[[-83.64423400000001,32.833437],[-83.64439820000001,32.8335317]]},"id":"8a44c0a348f7fff-17ffeb5e79f6b0b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a348f0273-1796ea77871c8c6f","8f44c0a348f0454-179ffb2b23a71dc2"]},"geometry":{"type":"LineString","coordinates":[[-83.64439820000001,32.8335317],[-83.6446074,32.833652300000004],[-83.6446856,32.833697400000005]]},"id":"8b44c0a348f0fff-17d7fad1569e7a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8c391a-13b67c1bf3de8284","8f44c0a2a8cec15-139f6bb57574d619"]},"geometry":{"type":"LineString","coordinates":[[-83.7097129,32.9203442],[-83.7095489,32.9199975]]},"id":"8a44c0a2a8c7fff-13b6dbe8bf5ff01f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8c391a-13b67c1bf3de8284","8f44c0a2a8c0552-1796cc6d2aeaba8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7095489,32.9199975],[-83.70941900000001,32.9197164]]},"id":"8a44c0a2a8c7fff-17deec448ef231d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a05aa420b-1397f0a7d2ec5023","8f44c0a05aa4241-139e708a9a4a7edc"]},"geometry":{"type":"LineString","coordinates":[[-83.6945795,32.907839700000004],[-83.69462630000001,32.9078693]]},"id":"8c44c0a05aa43ff-13977099321b0e8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043036,32.9144591]},"id":"8f44c0a2ad710e0-13b6f8ea41fcb7a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a05aa4241-139e708a9a4a7edc","8f44c0a2ad710e0-13b6f8ea41fcb7a5"]},"geometry":{"type":"LineString","coordinates":[[-83.69462630000001,32.9078693],[-83.6949307,32.9080624],[-83.69597350000001,32.9087234],[-83.6967305,32.909204200000005],[-83.6982335,32.9102349],[-83.69870900000001,32.9105884],[-83.7015415,32.9125102],[-83.7028135,32.9133859],[-83.7039036,32.9141623],[-83.7043036,32.9144591]]},"id":"8544c0a3fffffff-139f74a8bdd9aaf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6466,32.857793]},"id":"8f44c0a30b29453-13dee5cb03d35ed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b2854a-17f6f68d6144efff","8f44c0a30b29453-13dee5cb03d35ed8"]},"geometry":{"type":"LineString","coordinates":[[-83.64628900000001,32.8574219],[-83.6466,32.857793]]},"id":"8a44c0a30b2ffff-17f6f62c3c85b33f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b29453-13dee5cb03d35ed8","8f44c0a30b450c5-17b7e2308cace741"]},"geometry":{"type":"LineString","coordinates":[[-83.6466,32.857793],[-83.648076,32.859554]]},"id":"8844c0a30bfffff-13fef3fdca9bdd43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b6a42c-17bef1b02a2fc2cb","8f44c0a30b450c5-17b7e2308cace741"]},"geometry":{"type":"LineString","coordinates":[[-83.648076,32.859554],[-83.6482814,32.859795500000004]]},"id":"8944c0a30b7ffff-17f6e1f05f16e825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a356f2885-17bed99b04522cd8","8f44c0a30b6a42c-17bef1b02a2fc2cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6482814,32.859795500000004],[-83.64838300000001,32.859915],[-83.649178,32.860774],[-83.65002600000001,32.861637],[-83.650737,32.862313],[-83.65118700000001,32.862726],[-83.65159200000001,32.863066]]},"id":"8744c0a35ffffff-13d6ddbd94a244c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a356f2885-17bed99b04522cd8","8f44c0a3198ca2e-179fdeb32f127410"]},"geometry":{"type":"LineString","coordinates":[[-83.65159200000001,32.863066],[-83.652004,32.863411],[-83.652359,32.863731],[-83.656059,32.8671157]]},"id":"8644c0a37ffffff-13b6f422289e651f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6567514,32.867734500000005]},"id":"8f44c0a31832b1a-139edd026fc8f40a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31832b1a-139edd026fc8f40a","8f44c0a3198ca2e-179fdeb32f127410"]},"geometry":{"type":"LineString","coordinates":[[-83.656059,32.8671157],[-83.6567514,32.867734500000005]]},"id":"8844c0a319fffff-17defddac899079c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31832b1a-139edd026fc8f40a","8f44c0a31832a6d-13d7fcc4855de5b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6567514,32.867734500000005],[-83.65685040000001,32.8678231]]},"id":"8c44c0a31832bff-13bfcce37f1df079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31832a6d-13d7fcc4855de5b0","8f44c0a31833998-1396ec7dcae5784d"]},"geometry":{"type":"LineString","coordinates":[[-83.65685040000001,32.8678231],[-83.65696360000001,32.867924200000004]]},"id":"8a44c0a31837fff-13f7dca120abb913"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65727340000001,32.8681712]},"id":"8f44c0a318316f3-13bfcbbc29f4e6a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a318316f3-13bfcbbc29f4e6a9","8f44c0a31833998-1396ec7dcae5784d"]},"geometry":{"type":"LineString","coordinates":[[-83.65696360000001,32.867924200000004],[-83.656979,32.867938],[-83.657033,32.867981],[-83.65718600000001,32.868107],[-83.65727340000001,32.8681712]]},"id":"8a44c0a31837fff-13f6ec1dca30bd44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6574057,32.868261100000005]},"id":"8f44c0a31806823-13f7fb697c517ce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31806823-13f7fb697c517ce5","8f44c0a318316f3-13bfcbbc29f4e6a9"]},"geometry":{"type":"LineString","coordinates":[[-83.65727340000001,32.8681712],[-83.657314,32.868201],[-83.6574057,32.868261100000005]]},"id":"8944c0a3183ffff-13dfdb9320ba607e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65770970000001,32.8684607]},"id":"8f44c0a31804674-13f7faab73f137a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31806823-13f7fb697c517ce5","8f44c0a31804674-13f7faab73f137a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6574057,32.868261100000005],[-83.65770970000001,32.8684607]]},"id":"8a44c0a31807fff-13b7db0a73cb0f39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6583567,32.8688853]},"id":"8f44c0a3182acda-13ffd917144ae6d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31804674-13f7faab73f137a2","8f44c0a3182acda-13ffd917144ae6d2"]},"geometry":{"type":"LineString","coordinates":[[-83.65770970000001,32.8684607],[-83.6583567,32.8688853]]},"id":"8944c0a3183ffff-13fee9e149052322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6586041,32.8690518]},"id":"8f44c0a3182a32e-13d7e87c70b53943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3182a32e-13d7e87c70b53943","8f44c0a3182acda-13ffd917144ae6d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6583567,32.8688853],[-83.65853,32.868999],[-83.6586041,32.8690518]]},"id":"8b44c0a3182afff-13b6f8c95099be73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65904160000001,32.869373800000005]},"id":"8f44c0a3182baeb-179ee76b0c921336"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3182a32e-13d7e87c70b53943","8f44c0a3182baeb-179ee76b0c921336"]},"geometry":{"type":"LineString","coordinates":[[-83.6586041,32.8690518],[-83.65891900000001,32.869276],[-83.65904160000001,32.869373800000005]]},"id":"8a44c0a3182ffff-17bec7f29b4888c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31876c74-17def7202a6275be","8f44c0a3182baeb-179ee76b0c921336"]},"geometry":{"type":"LineString","coordinates":[[-83.65904160000001,32.869373800000005],[-83.6591614,32.8694695]]},"id":"8944c0a3183ffff-17bed74598be8b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31876b99-17b7e6b38f08bcf9","8f44c0a31876c74-17def7202a6275be"]},"geometry":{"type":"LineString","coordinates":[[-83.6591614,32.8694695],[-83.6593352,32.8696082]]},"id":"8b44c0a31876fff-1797d6e9d051fc16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31876b99-17b7e6b38f08bcf9","8f44c0a31870d11-17ffc65e90f1359c"]},"geometry":{"type":"LineString","coordinates":[[-83.6593352,32.8696082],[-83.65936,32.869628],[-83.6594711,32.869726400000005]]},"id":"8a44c0a31877fff-17d7c688cf35df6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31870a11-179ff5bafdbd8413","8f44c0a31870d11-17ffc65e90f1359c"]},"geometry":{"type":"LineString","coordinates":[[-83.6594711,32.869726400000005],[-83.65973290000001,32.8699583]]},"id":"8b44c0a31870fff-17d7c60cc9a7eb63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65990310000001,32.8701312]},"id":"8f44c0a31871c64-17fec5509a196a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31870a11-179ff5bafdbd8413","8f44c0a31871c64-17fec5509a196a7f"]},"geometry":{"type":"LineString","coordinates":[[-83.65973290000001,32.8699583],[-83.659754,32.869977],[-83.65990310000001,32.8701312]]},"id":"8a44c0a31877fff-17d7d5855b42ec81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6602209,32.870467500000004]},"id":"8f44c0a31844c72-17def489f9302a9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31844c72-17def489f9302a9f","8f44c0a31871c64-17fec5509a196a7f"]},"geometry":{"type":"LineString","coordinates":[[-83.65990310000001,32.8701312],[-83.660134,32.87037],[-83.6602209,32.870467500000004]]},"id":"8944c0a3187ffff-17f6d4ec67326e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31844156-179fc44ffd284474","8f44c0a31844c72-17def489f9302a9f"]},"geometry":{"type":"LineString","coordinates":[[-83.6602209,32.870467500000004],[-83.6603137,32.870571600000005]]},"id":"8b44c0a31844fff-17fec46cf17542d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31844156-179fc44ffd284474","8f44c0a3184519c-13dfe3acc9be574a"]},"geometry":{"type":"LineString","coordinates":[[-83.6603137,32.870571600000005],[-83.66035500000001,32.870618],[-83.6605748,32.870883]]},"id":"8a44c0a31847fff-17fef3fdf534af86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6607721,32.8711208]},"id":"8f44c0a31845240-13f6c3317c6b2603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3184519c-13dfe3acc9be574a","8f44c0a31845240-13f6c3317c6b2603"]},"geometry":{"type":"LineString","coordinates":[[-83.6605748,32.870883],[-83.6607721,32.8711208]]},"id":"8b44c0a31845fff-139ef36f2c4e73c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66105920000001,32.8714669]},"id":"8f44c0a3186a2c3-13bed27e0333299a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3186a2c3-13bed27e0333299a","8f44c0a31845240-13f6c3317c6b2603"]},"geometry":{"type":"LineString","coordinates":[[-83.6607721,32.8711208],[-83.66105920000001,32.8714669]]},"id":"8944c0a3187ffff-13def2d7b79d3b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3186a2c3-13bed27e0333299a","8f44c0a31b366cb-13d7d127d09539d4"]},"geometry":{"type":"LineString","coordinates":[[-83.66105920000001,32.8714669],[-83.66160670000001,32.872126900000005]]},"id":"8744c0a31ffffff-139fd1d2f995673f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b3312e-17fee0380505103f","8f44c0a31b366cb-13d7d127d09539d4"]},"geometry":{"type":"LineString","coordinates":[[-83.66160670000001,32.872126900000005],[-83.66199040000001,32.8725894]]},"id":"8a44c0a31b37fff-13f7e0afe4806412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6816963,32.8962452]},"id":"8f44c0a05da44a9-17bfd01bdfe4ee29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6820532,32.8966761]},"id":"8f44c0a05da0b43-17d69f3cc3c47ccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05da0b43-17d69f3cc3c47ccb","8f44c0a05da44a9-17bfd01bdfe4ee29"]},"geometry":{"type":"LineString","coordinates":[[-83.6816963,32.8962452],[-83.6819796,32.8965813],[-83.6820532,32.8966761]]},"id":"8a44c0a05da7fff-17bfbfab68653e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05dad193-139ecd6e0f9c2526","8f44c0a05da0b43-17d69f3cc3c47ccb"]},"geometry":{"type":"LineString","coordinates":[[-83.6820532,32.8966761],[-83.68222440000001,32.896896500000004],[-83.68279360000001,32.897603600000004]]},"id":"8944c0a05dbffff-13ffae5650cac852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d1a424-13d69cc89d4b698d","8f44c0a05dad193-139ecd6e0f9c2526"]},"geometry":{"type":"LineString","coordinates":[[-83.68279360000001,32.897603600000004],[-83.6830583,32.897924100000004]]},"id":"8844c0a05dfffff-13fefd1b50617c38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6833182,32.8982541]},"id":"8f44c0a05c3496d-13b6dc262d65793c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c3496d-13b6dc262d65793c","8f44c0a05d1a424-13d69cc89d4b698d"]},"geometry":{"type":"LineString","coordinates":[[-83.6830583,32.897924100000004],[-83.6831586,32.8980456],[-83.6833182,32.8982541]]},"id":"8a44c0a05d1ffff-13bf8c767bb82408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68358570000001,32.8986034]},"id":"8f44c0a05c3580c-13ffab7ef898c096"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c3496d-13b6dc262d65793c","8f44c0a05c3580c-13ffab7ef898c096"]},"geometry":{"type":"LineString","coordinates":[[-83.6833182,32.8982541],[-83.68358570000001,32.8986034]]},"id":"8944c0a05c3ffff-139e8bd2911e56b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c22d73-17b6cafbf39fd76a","8f44c0a05c3580c-13ffab7ef898c096"]},"geometry":{"type":"LineString","coordinates":[[-83.68358570000001,32.8986034],[-83.6837953,32.8988772]]},"id":"8944c0a05c3ffff-17d6bb3d771940ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c23ac1-1797e9948c37aae2","8f44c0a05c22d73-17b6cafbf39fd76a"]},"geometry":{"type":"LineString","coordinates":[[-83.6837953,32.8988772],[-83.683907,32.899023],[-83.684112,32.899247],[-83.684279,32.8994],[-83.6843704,32.899467800000004]]},"id":"8a44c0a05c27fff-17f7ba5123a1e19a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a34642385-1797fada4c3dada4","8f44c0a3464e431-13def9ac8553ee9e"]},"geometry":{"type":"LineString","coordinates":[[-83.637974,32.847651],[-83.6384568,32.8481668]]},"id":"8944c0a3467ffff-13b7fa436345762a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3464e29d-13def92f574870dd","8f44c0a3464e431-13def9ac8553ee9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6384568,32.8481668],[-83.6386571,32.8483808]]},"id":"8b44c0a3464efff-139ff96decaebf66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3464e29d-13def92f574870dd","8f44c0a3464b901-13def85221825b75"]},"geometry":{"type":"LineString","coordinates":[[-83.6386571,32.8483808],[-83.63901100000001,32.848759]]},"id":"8a44c0a3464ffff-13d6f8c0bf026fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3090a541-17fef3a4648bfa48","8f44c0a3464b901-13def85221825b75"]},"geometry":{"type":"LineString","coordinates":[[-83.63901100000001,32.848759],[-83.639387,32.849147],[-83.64001,32.84982],[-83.64092740000001,32.8508875]]},"id":"8844c0a309fffff-17dff5f2d6b08ce3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6759323,32.8893663]},"id":"8f44c0a04bb34a0-17fffe2e5d2a4db1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6761773,32.8896675]},"id":"8f44c0a04b95821-17bebd9537fd9dfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b95821-17bebd9537fd9dfb","8f44c0a04bb34a0-17fffe2e5d2a4db1"]},"geometry":{"type":"LineString","coordinates":[[-83.6759323,32.8893663],[-83.6761773,32.8896675]]},"id":"8944c0a04bbffff-17de9de1cfcf739a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67637140000001,32.8899063]},"id":"8f44c0a04b82d25-17bffd1be9e0e7ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b95821-17bebd9537fd9dfb","8f44c0a04b82d25-17bffd1be9e0e7ad"]},"geometry":{"type":"LineString","coordinates":[[-83.6761773,32.8896675],[-83.67637140000001,32.8899063]]},"id":"8944c0a04bbffff-17f6dd5894d1900b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b82d25-17bffd1be9e0e7ad","8f44c0a04b83ad3-13d6fbc67ab129f5"]},"geometry":{"type":"LineString","coordinates":[[-83.67637140000001,32.8899063],[-83.676485,32.890046000000005],[-83.67654300000001,32.89012],[-83.6769177,32.8905583]]},"id":"8a44c0a04b87fff-179edc72773dc52f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7157188,32.7397548]},"id":"8f44c0b048c3c63-13befd0bc6af5482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145285,32.741573100000004]},"id":"8f44c0b04170256-179f3ff3bdc60262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b04170256-179f3ff3bdc60262","8f44c0b048c3c63-13befd0bc6af5482"]},"geometry":{"type":"LineString","coordinates":[[-83.7157188,32.7397548],[-83.7154565,32.740087],[-83.71527970000001,32.7403299],[-83.7150764,32.7406347],[-83.71487900000001,32.7409594],[-83.71470810000001,32.7412469],[-83.7145285,32.741573100000004]]},"id":"8744c0b04ffffff-13d6fe923bf0627f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71422960000001,32.7421087]},"id":"8f44c0b041558a0-17fff0ae83570580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b04170256-179f3ff3bdc60262","8f44c0b041558a0-17fff0ae83570580"]},"geometry":{"type":"LineString","coordinates":[[-83.7145285,32.741573100000004],[-83.7144871,32.7416484],[-83.71422960000001,32.7421087]]},"id":"8944c0b0417ffff-17d6e050f9706ad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436427,32.7410757]},"id":"8f44c0b14723242-13f6fd035aa72c53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64070600000001,32.741055]},"id":"8f44c0b147a5199-13d7f42ecd41a5c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14723242-13f6fd035aa72c53","8f44c0b147a5199-13d7f42ecd41a5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6436427,32.7410757],[-83.64263700000001,32.741068],[-83.641011,32.741056],[-83.64070600000001,32.741055]]},"id":"8844c0b147fffff-13dff0990d30086a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b16b03555-13bf25e7aa125edf","8f44c0b147a5199-13d7f42ecd41a5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.64070600000001,32.741055],[-83.638452,32.741048],[-83.63817970000001,32.741047200000004],[-83.633447,32.741013]]},"id":"8644c0b17ffffff-13defd0b32130745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b16a1272e-13dfcbe56fd4223e","8f44c0b16b03555-13bf25e7aa125edf"]},"geometry":{"type":"LineString","coordinates":[[-83.633447,32.741013],[-83.632452,32.740988],[-83.631811,32.740983],[-83.631572,32.741003],[-83.63148000000001,32.741017],[-83.631242,32.741067],[-83.631145,32.741097],[-83.631071,32.741146],[-83.63099700000001,32.741238],[-83.630976,32.741317],[-83.630967,32.741396],[-83.630995,32.742981],[-83.630993,32.743702]]},"id":"8844c0b16bfffff-17975a6db2759982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630941,32.747473]},"id":"8f44c0b16ade286-1397ac05ecc47abe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b16a1272e-13dfcbe56fd4223e","8f44c0b16ade286-1397ac05ecc47abe"]},"geometry":{"type":"LineString","coordinates":[[-83.630993,32.743702],[-83.63098400000001,32.744251000000006],[-83.63095100000001,32.745075],[-83.63094500000001,32.745624],[-83.63094600000001,32.746536],[-83.63094600000001,32.746738],[-83.630941,32.747473]]},"id":"8744c0b16ffffff-17ff1bfc29268bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5348e259-17fff2cccabb4429","8f44c0b534a210d-13dff303b80a0bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.74613000000001,32.892876],[-83.746131,32.892667],[-83.74610700000001,32.892425],[-83.746093,32.891801],[-83.746077,32.891483],[-83.74604210000001,32.890975600000004]]},"id":"8944c0b534bffff-13bdf2e43e2b2abc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a4cd644-17f7fb2ea428efdf","8f44c0b1a4cbaca-1796fc190032d3db"]},"geometry":{"type":"LineString","coordinates":[[-83.63746400000001,32.821024],[-83.637839,32.820566]]},"id":"8a44c0b1a4cffff-1796fba3dcd9428b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7b6cb4-17defa4587e98851","8f44c0b1a4cd644-17f7fb2ea428efdf"]},"geometry":{"type":"LineString","coordinates":[[-83.637839,32.820566],[-83.63821200000001,32.82011]]},"id":"8944c0b1a4fffff-17f7faba1a6ff570"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7b6cb4-17defa4587e98851","8f44c0b1a4e9913-13bff95d0ecdab70"]},"geometry":{"type":"LineString","coordinates":[[-83.63821200000001,32.82011],[-83.63858400000001,32.819657]]},"id":"8a44c0b1a4effff-13dff9d14fea6945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a4e9913-13bff95d0ecdab70","8f44c0b1a45ecf2-139ff86bc75876ac"]},"geometry":{"type":"LineString","coordinates":[[-83.63858400000001,32.819657],[-83.63897,32.819193]]},"id":"8844c0b1a5fffff-13bef8e46832c08d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a45ec02-1397f857cab85878","8f44c0b1a45ecf2-139ff86bc75876ac"]},"geometry":{"type":"LineString","coordinates":[[-83.63897,32.819193],[-83.639002,32.819155]]},"id":"8c44c0b1a45edff-139ff861c0abf7d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a4465b6-17dff6fe2d73af43","8f44c0b1a45ec02-1397f857cab85878"]},"geometry":{"type":"LineString","coordinates":[[-83.639002,32.819155],[-83.63928800000001,32.818725],[-83.63930500000001,32.818699],[-83.63942800000001,32.818494],[-83.639555,32.818246]]},"id":"8944c0b1a47ffff-13fef7a3e7dfb2d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a4465b6-17dff6fe2d73af43","8f44c0b1a471515-17d6f68648e9e014"]},"geometry":{"type":"LineString","coordinates":[[-83.639555,32.818246],[-83.63974680000001,32.817821200000004]]},"id":"8a44c0b1a477fff-17d7f6c232183446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a471515-17d6f68648e9e014","8f44c0b1a474b26-17f6f61e67023950"]},"geometry":{"type":"LineString","coordinates":[[-83.63974680000001,32.817821200000004],[-83.639819,32.817501],[-83.639913,32.817079]]},"id":"8944c0b1a47ffff-17def6523eeec44e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a55e170-13fff5ec69f6dc99","8f44c0b1a474b26-17f6f61e67023950"]},"geometry":{"type":"LineString","coordinates":[[-83.639913,32.817079],[-83.639953,32.816789],[-83.63997900000001,32.816532],[-83.639993,32.816246]]},"id":"8a44c0b1a55ffff-13fef600375a43cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64002470000001,32.8155214]},"id":"8f44c0b1a555783-13b6f5d89de6f63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a55e170-13fff5ec69f6dc99","8f44c0b1a555783-13b6f5d89de6f63f"]},"geometry":{"type":"LineString","coordinates":[[-83.639993,32.816246],[-83.64002470000001,32.8155214]]},"id":"8944c0b1a57ffff-1397f5e27a60bb6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a793c4c-13d6fb1dc69332e8","8f44c0b1a79c793-13d7f97741abfc3a"]},"geometry":{"type":"LineString","coordinates":[[-83.637866,32.821914],[-83.638542,32.822325]]},"id":"8944c0b1a7bffff-13d6fa4a8f4098c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a78bb56-13f6f5d9a04a78ad","8f44c0b1a79c793-13d7f97741abfc3a"]},"geometry":{"type":"LineString","coordinates":[[-83.638542,32.822325],[-83.640023,32.8232]]},"id":"8944c0b1a7bffff-13d6f7a874b30ae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b11391224-139fd6282791cd64","8f44c0b113a911a-13b6c00143d485db"]},"geometry":{"type":"LineString","coordinates":[[-83.6595582,32.7804637],[-83.66207800000001,32.780526]]},"id":"8944c0b113bffff-13b7d314b9bd6b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b113a911a-13b6c00143d485db","8f44c0b1130ab51-13d6fb0353fe8f75"]},"geometry":{"type":"LineString","coordinates":[[-83.66207800000001,32.780526],[-83.66337700000001,32.780562],[-83.663871,32.780582],[-83.66412270000001,32.780579800000005]]},"id":"8844c0b113fffff-13d7bd824829e5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1552b21d-13f6faf9ef0c6f96","8f44c0b1554292e-179ee8d021a7b885"]},"geometry":{"type":"LineString","coordinates":[[-83.65847020000001,32.751991000000004],[-83.65815500000001,32.751453000000005],[-83.65769370000001,32.750709300000004],[-83.6575842,32.7505231]]},"id":"8844c0b155fffff-17bec9e38eba6b50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6567675,32.7490593]},"id":"8f44c0b15523d84-17f6dcf857a9c957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1552b21d-13f6faf9ef0c6f96","8f44c0b15523d84-17f6dcf857a9c957"]},"geometry":{"type":"LineString","coordinates":[[-83.6575842,32.7505231],[-83.6572866,32.7500074],[-83.6569628,32.7494478],[-83.6567675,32.7490593]]},"id":"8944c0b1553ffff-13becbfe3cacfa33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6565858,32.748709000000005]},"id":"8f44c0b155266ed-1797ed69eea12799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b155266ed-1797ed69eea12799","8f44c0b15523d84-17f6dcf857a9c957"]},"geometry":{"type":"LineString","coordinates":[[-83.6567675,32.7490593],[-83.6565961,32.7487289],[-83.6565858,32.748709000000005]]},"id":"8a44c0b15527fff-17f6ed312ed68292"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65647940000001,32.7485037]},"id":"8f44c0b15526403-1796ddac6ee3d5a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b15526403-1796ddac6ee3d5a7","8f44c0b155266ed-1797ed69eea12799"]},"geometry":{"type":"LineString","coordinates":[[-83.6565858,32.748709000000005],[-83.65647940000001,32.7485037]]},"id":"8b44c0b15526fff-17d7cd8b2861651e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1554292e-179ee8d021a7b885","8f44c0b1554bd0e-1396c6f7c5f617d9"]},"geometry":{"type":"LineString","coordinates":[[-83.65847020000001,32.751991000000004],[-83.65851160000001,32.7522341],[-83.65874480000001,32.752633],[-83.658879,32.752879],[-83.659226,32.753408]]},"id":"8944c0b1557ffff-17d6e7ff25b9f0ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1554bd0e-1396c6f7c5f617d9","8f44c0b15090716-13bff55f3de2221d"]},"geometry":{"type":"LineString","coordinates":[[-83.659226,32.753408],[-83.6598797,32.7543255]]},"id":"8844c0b155fffff-139ef62b7d63b982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b150916d3-17f6f4906fa6e1d9","8f44c0b15090716-13bff55f3de2221d"]},"geometry":{"type":"LineString","coordinates":[[-83.6598797,32.7543255],[-83.66017500000001,32.754740000000005],[-83.6602106,32.7547911]]},"id":"8a44c0b15097fff-17ded4f7a60b0585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b150916d3-17f6f4906fa6e1d9","8f44c0b15726836-17bee2d14bc307e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6602106,32.7547911],[-83.66050100000001,32.755208],[-83.660763,32.755637],[-83.660926,32.755937]]},"id":"8844c0b151fffff-17d7c3a850846348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34db2085-17ffa6a64ad8ae2f","8f44c0ba9ac842b-17dfc8f80893dfcb"]},"geometry":{"type":"LineString","coordinates":[[-83.632192,32.827278],[-83.633142,32.827513]]},"id":"8844c0ba9bfffff-17b737cf2acf3c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34db2085-17ffa6a64ad8ae2f","8f44c0a34db1014-17ff4485420f9441"]},"geometry":{"type":"LineString","coordinates":[[-83.633142,32.827513],[-83.63401400000001,32.827714]]},"id":"8a44c0a34db7fff-17bf7595c391b811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34da3560-17dfc2aa44a4ec41","8f44c0a34db1014-17ff4485420f9441"]},"geometry":{"type":"LineString","coordinates":[[-83.63401400000001,32.827714],[-83.63477400000001,32.827894]]},"id":"8944c0a34dbffff-17b78397c8294d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6349119,32.827924800000005]},"id":"8f44c0a34da3150-17ff02541564c118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34da3560-17dfc2aa44a4ec41","8f44c0a34da3150-17ff02541564c118"]},"geometry":{"type":"LineString","coordinates":[[-83.63477400000001,32.827894],[-83.6349119,32.827924800000005]]},"id":"8b44c0a34da3fff-17f7627f2556449f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63578700000001,32.828120000000006]},"id":"8f44c0a34dac166-17f70031213432ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34da3150-17ff02541564c118","8f44c0a34dac166-17f70031213432ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6349119,32.827924800000005],[-83.63578700000001,32.828120000000006]]},"id":"8944c0a34dbffff-17bf01429dc125c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d1d84d-13fffbdb22d87f40","8f44c0a34dac166-17f70031213432ff"]},"geometry":{"type":"LineString","coordinates":[[-83.63578700000001,32.828120000000006],[-83.636702,32.828333],[-83.637563,32.828533]]},"id":"8844c0a34dfffff-13fefe062b66ffc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1331bdb1-1397f7a504b20acd","8f44c0b132359a4-1396f76a421d82d6"]},"geometry":{"type":"LineString","coordinates":[[-83.63938200000001,32.786205],[-83.63934300000001,32.786047],[-83.63928800000001,32.785769]]},"id":"8844c0b133fffff-139ef78920167430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6391023,32.7847998]},"id":"8f44c0b1331141a-17b7f81914896935"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1331bdb1-1397f7a504b20acd","8f44c0b1331141a-17b7f81914896935"]},"geometry":{"type":"LineString","coordinates":[[-83.63928800000001,32.785769],[-83.639145,32.785052],[-83.6391023,32.7847998]]},"id":"8944c0b1333ffff-17d7f7e0c830e52c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13332486-13b6f883f48edfc3","8f44c0b1331141a-17b7f81914896935"]},"geometry":{"type":"LineString","coordinates":[[-83.6391023,32.7847998],[-83.639053,32.784508],[-83.63893130000001,32.7835951]]},"id":"8944c0b1333ffff-17bff850fc720858"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13332486-13b6f883f48edfc3","8f44c0b1304d3ac-13bff89642b8e201"]},"geometry":{"type":"LineString","coordinates":[[-83.63893130000001,32.7835951],[-83.638902,32.783375]]},"id":"8a44c0b1304ffff-13fef88d23e73025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6385801,32.7810031]},"id":"8f44c0b13064762-17def95f7d1d167e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13064762-17def95f7d1d167e","8f44c0b1304d3ac-13bff89642b8e201"]},"geometry":{"type":"LineString","coordinates":[[-83.638902,32.783375],[-83.638838,32.782915],[-83.63872500000001,32.782035],[-83.6385801,32.7810031]]},"id":"8944c0b1307ffff-17d6f8f9feb1d618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b13064762-17def95f7d1d167e","8f44c0b1315dd6e-13d7f9dd28150c7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6385801,32.7810031],[-83.638553,32.78081],[-83.638478,32.7804],[-83.638379,32.779958]]},"id":"8844c0b131fffff-1397f999247e39b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1314368c-139ff9f55403f9ee","8f44c0b1315dd6e-13d7f9dd28150c7c"]},"geometry":{"type":"LineString","coordinates":[[-83.638379,32.779958],[-83.63834030000001,32.7798717]]},"id":"8a44c0b1315ffff-13b6f9e93127565e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1314368c-139ff9f55403f9ee","8f44c0b13105baa-13bffddf63413342"]},"geometry":{"type":"LineString","coordinates":[[-83.63834030000001,32.7798717],[-83.638103,32.779342],[-83.63778,32.77874],[-83.63673700000001,32.776857]]},"id":"8844c0b131fffff-17f7fbddd6c42502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63459300000001,32.774349]},"id":"8f44c0b13c6e8a2-17b7231b6d789d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b13c6e8a2-17b7231b6d789d21","8f44c0b13c639b1-13bfe3f3ab75144c"]},"geometry":{"type":"LineString","coordinates":[[-83.63459300000001,32.774349],[-83.634557,32.774307],[-83.634247,32.773963]]},"id":"8944c0b13c7ffff-17b743873b1be860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63407210000001,32.773769200000004]},"id":"8f44c0b13c62b25-13b7c460f6c6f8ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b13c62b25-13b7c460f6c6f8ee","8f44c0b13c639b1-13bfe3f3ab75144c"]},"geometry":{"type":"LineString","coordinates":[[-83.634247,32.773963],[-83.63407210000001,32.773769200000004]]},"id":"8a44c0b13c67fff-13f7542a4bf97e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b13c62b25-13b7c460f6c6f8ee","8f44c0b13d5b2a9-13f7f566a24413ed"]},"geometry":{"type":"LineString","coordinates":[[-83.63407210000001,32.773769200000004],[-83.633747,32.773409],[-83.6336534,32.773254300000005]]},"id":"8944c0b13c7ffff-139f84ea1920dea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b13d5b76a-13d7f58dec1a553b","8f44c0b13d5b2a9-13f7f566a24413ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6336534,32.773254300000005],[-83.6335906,32.773206300000005]]},"id":"8b44c0b13d5bfff-13f7f57a4c8afaa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a20191894-17f66ccb60b9af88","8f44c0a20ccc450-13d76f416102848c"]},"geometry":{"type":"LineString","coordinates":[[-83.696161,32.862951],[-83.69601700000001,32.862732],[-83.69591600000001,32.862547],[-83.69588800000001,32.862502],[-83.695548,32.861938],[-83.695267,32.861448],[-83.695153,32.861266]]},"id":"8744c0a20ffffff-13f6ee08142ea1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a20cc1cb3-17967026c09bdabe","8f44c0a20ccc450-13d76f416102848c"]},"geometry":{"type":"LineString","coordinates":[[-83.695153,32.861266],[-83.694992,32.86101],[-83.69478600000001,32.860759]]},"id":"8944c0a20cfffff-13b77faf10b1b4a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea64c72-13f6a93bc19013ed","8f44c0a2c6b1b99-13f6233404171e42"]},"geometry":{"type":"LineString","coordinates":[[-83.72383400000001,32.903889],[-83.726304,32.903917]]},"id":"8644c0a2fffffff-13ff6637ed587d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c6b1b99-13f6233404171e42","8f44c0a2c6a1826-13d6600644cf0758"]},"geometry":{"type":"LineString","coordinates":[[-83.726304,32.903917],[-83.72682300000001,32.903919],[-83.72709400000001,32.903912000000005],[-83.727393,32.903891],[-83.72760600000001,32.903866]]},"id":"8944c0a2c6bffff-13fe219ca789e0da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c610106-139e3decc639d965","8f44c0a2c6a1826-13d6600644cf0758"]},"geometry":{"type":"LineString","coordinates":[[-83.72760600000001,32.903866],[-83.728104,32.903825600000005],[-83.72846600000001,32.903753900000005]]},"id":"8844c0a2c7fffff-13bedef879ad9ba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c610106-139e3decc639d965","8f44c0a2c633348-17df5c1580162975"]},"geometry":{"type":"LineString","coordinates":[[-83.72846600000001,32.903753900000005],[-83.72863600000001,32.903691300000006],[-83.728786,32.903635200000004],[-83.72896800000001,32.9035571],[-83.72922000000001,32.903438900000005]]},"id":"8944c0a2c63ffff-13b67cff33098fa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c633348-17df5c1580162975","8f44c0a2c62638b-17bfb9be298573c4"]},"geometry":{"type":"LineString","coordinates":[[-83.72922000000001,32.903438900000005],[-83.729394,32.903329],[-83.72959300000001,32.903196300000005],[-83.72985100000001,32.903019],[-83.730011,32.9029006],[-83.730179,32.902777]]},"id":"8944c0a2c63ffff-17fedae6d7694f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.733367,32.899371]},"id":"8f44c0a2c0f3800-17def1f5a873ad6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c0f3800-17def1f5a873ad6d","8f44c0a2c62638b-17bfb9be298573c4"]},"geometry":{"type":"LineString","coordinates":[[-83.730179,32.902777],[-83.73035,32.902577],[-83.730383,32.902543],[-83.730547,32.902372],[-83.733367,32.899371]]},"id":"8744c0a2cffffff-139775dc02b6304b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7192175,32.9038497]},"id":"8f44c0a2eaadb74-13de34811d30c28e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2eaadb74-13de34811d30c28e","8f44c0a2eaae759-13b6373f9751acac"]},"geometry":{"type":"LineString","coordinates":[[-83.71809350000001,32.9038082],[-83.7186173,32.903840200000005],[-83.7192175,32.9038497]]},"id":"8844c0a2ebfffff-13d735e072e3851a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea18d24-13df73300ec46a7b","8f44c0a2eaadb74-13de34811d30c28e"]},"geometry":{"type":"LineString","coordinates":[[-83.7192175,32.9038497],[-83.7197568,32.9038582]]},"id":"8a44c0a2ea1ffff-13deb3d89abb40ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7204219,32.903866]},"id":"8f44c0a2ea1d82b-13d6719052c645a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea18d24-13df73300ec46a7b","8f44c0a2ea1d82b-13d6719052c645a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7197568,32.9038582],[-83.7204219,32.903866]]},"id":"8a44c0a2ea1ffff-13d7f260373e4d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a059a4ca4-17bf795d8e93263c","8f44c0a2365ab68-17d67b40b86655c0"]},"geometry":{"type":"LineString","coordinates":[[-83.69023890000001,32.8964962],[-83.6905406,32.8966316],[-83.691012,32.896869]]},"id":"8944c0a2367ffff-17de7a4de6c6eaee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6912983,32.8969924]},"id":"8f44c0a059a4ba3-139e78aa924a61c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a059a4ca4-17bf795d8e93263c","8f44c0a059a4ba3-139e78aa924a61c0"]},"geometry":{"type":"LineString","coordinates":[[-83.691012,32.896869],[-83.6912983,32.8969924]]},"id":"8b44c0a059a4fff-17f7f9041031246f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914713,32.897067]},"id":"8f44c0a2364b6a0-13bef83e71406f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2364b6a0-13bef83e71406f24","8f44c0a059a4ba3-139e78aa924a61c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6912983,32.8969924],[-83.6914713,32.897067]]},"id":"8a44c0a059a7fff-13b7f87485d328da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917698,32.8972041]},"id":"8f44c0a059165aa-1396f783e1001934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2364b6a0-13bef83e71406f24","8f44c0a059165aa-1396f783e1001934"]},"geometry":{"type":"LineString","coordinates":[[-83.6914713,32.897067],[-83.69164020000001,32.8971455],[-83.6917698,32.8972041]]},"id":"8844c0a059fffff-13f7f7e14ff7bb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05916336-13dff6c512f5138b","8f44c0a059165aa-1396f783e1001934"]},"geometry":{"type":"LineString","coordinates":[[-83.6917698,32.8972041],[-83.691984,32.897294],[-83.692026,32.897309],[-83.69207510000001,32.8973272]]},"id":"8b44c0a05916fff-13b7f724d34e3dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05916336-13dff6c512f5138b","8f44c0a059108a4-13b6f5f5f9b0a05b"]},"geometry":{"type":"LineString","coordinates":[[-83.69207510000001,32.8973272],[-83.692131,32.897348],[-83.6924065,32.8974344]]},"id":"8a44c0a05917fff-13fff65dc1c378fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a059108a4-13b6f5f5f9b0a05b","8f44c0a05910829-13bff5c2d1d23a3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6924065,32.8974344],[-83.692453,32.897449],[-83.69248830000001,32.897459000000005]]},"id":"8c44c0a059109ff-13be75dc72b1a4ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05915481-13d675898cd1c37e","8f44c0a05910829-13bff5c2d1d23a3a"]},"geometry":{"type":"LineString","coordinates":[[-83.69248830000001,32.897459000000005],[-83.69258,32.897485]]},"id":"8a44c0a05917fff-13be75a63d592e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926973,32.8975111]},"id":"8f44c0a05915440-13d675403938ae85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05915481-13d675898cd1c37e","8f44c0a05915440-13d675403938ae85"]},"geometry":{"type":"LineString","coordinates":[[-83.69258,32.897485],[-83.6926973,32.8975111]]},"id":"8c44c0a059155ff-13de7564db9caebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05915440-13d675403938ae85","8f44c0a059150d6-13def50f403ee5c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6926973,32.8975111],[-83.69276,32.897525],[-83.6927756,32.8975274]]},"id":"8b44c0a05915fff-13d7f527cde674fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a059150d6-13def50f403ee5c7","8f44c0a05902d2c-13fef423652a25c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6927756,32.8975274],[-83.69315300000001,32.897585]]},"id":"8944c0a0593ffff-13fef4995b4dab56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0590050b-13bf7344e41cf285","8f44c0a05902d2c-13fef423652a25c0"]},"geometry":{"type":"LineString","coordinates":[[-83.69315300000001,32.897585],[-83.693509,32.897653000000005]]},"id":"8a44c0a05907fff-1397f3b42bc9b65e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.693904,32.897727]},"id":"8f44c0a05900b5a-13d7724e0efd3528"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0590050b-13bf7344e41cf285","8f44c0a05900b5a-13d7724e0efd3528"]},"geometry":{"type":"LineString","coordinates":[[-83.693509,32.897653000000005],[-83.693904,32.897727]]},"id":"8b44c0a05900fff-13d672c97a640f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05900b5a-13d7724e0efd3528","8f44c0a0592ac89-139f71298f751999"]},"geometry":{"type":"LineString","coordinates":[[-83.693904,32.897727],[-83.694372,32.897807]]},"id":"8944c0a0593ffff-13f671bbc55f03cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69443980000001,32.897818400000006]},"id":"8f44c0a0592ac53-1396f0ff220fd1d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0592ac53-1396f0ff220fd1d7","8f44c0a0592ac89-139f71298f751999"]},"geometry":{"type":"LineString","coordinates":[[-83.694372,32.897807],[-83.69443980000001,32.897818400000006]]},"id":"8c44c0a0592adff-139ef114532e124c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0592ac53-1396f0ff220fd1d7","8f44c0a0592ab33-13bff05d1cdfc7ba"]},"geometry":{"type":"LineString","coordinates":[[-83.69443980000001,32.897818400000006],[-83.69469910000001,32.8978622]]},"id":"8b44c0a0592afff-139e70ae1e9016f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695762,32.898043900000005]},"id":"8f44c0a232da084-139f7dc4c067ae7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0592ab33-13bff05d1cdfc7ba","8f44c0a232da084-139f7dc4c067ae7a"]},"geometry":{"type":"LineString","coordinates":[[-83.69469910000001,32.8978622],[-83.69554000000001,32.898004],[-83.695712,32.898035],[-83.695762,32.898043900000005]]},"id":"8844c0a059fffff-13f67f10d5adfc46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a232d82c3-13f7ec464cfa6707","8f44c0a232da084-139f7dc4c067ae7a"]},"geometry":{"type":"LineString","coordinates":[[-83.695762,32.898043900000005],[-83.696374,32.898153]]},"id":"8a44c0a232dffff-13bffd0587bd96d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a232d82c3-13f7ec464cfa6707","8f44c0a232d9a30-139ffb20db8ff38a"]},"geometry":{"type":"LineString","coordinates":[[-83.696374,32.898153],[-83.696488,32.898173],[-83.6968435,32.898246300000004]]},"id":"8a44c0a232dffff-13fe6bb36f9ec4dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a232d9a30-139ffb20db8ff38a","8f44c0a232ca62a-13b7fa9a45f4d8b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6968435,32.898246300000004],[-83.69705880000001,32.898290700000004]]},"id":"8944c0a232fffff-13bffadd94d37b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a232ca285-13d67a53727a1715","8f44c0a232ca62a-13b7fa9a45f4d8b9"]},"geometry":{"type":"LineString","coordinates":[[-83.69705880000001,32.898290700000004],[-83.6971721,32.8983141]]},"id":"8b44c0a232cafff-13bf6a76da1db9e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69785180000001,32.8984691]},"id":"8f44c0a232c97aa-13b778aaafd47e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a232c97aa-13b778aaafd47e0e","8f44c0a232ca285-13d67a53727a1715"]},"geometry":{"type":"LineString","coordinates":[[-83.6971721,32.8983141],[-83.69750520000001,32.8983897],[-83.69785180000001,32.8984691]]},"id":"8a44c0a232cffff-13f6e97f0633fcd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e5b3709-17b666705768e80f","8f44c0a232c97aa-13b778aaafd47e0e"]},"geometry":{"type":"LineString","coordinates":[[-83.69785180000001,32.8984691],[-83.6978869,32.8984771],[-83.69876430000001,32.898697600000006]]},"id":"8544c0a3fffffff-13fe678d7e248ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003255,32.899043500000005]},"id":"8f44c0a2e5ae40b-179e72a09b7caa1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e5b3709-17b666705768e80f","8f44c0a2e5ae40b-179e72a09b7caa1c"]},"geometry":{"type":"LineString","coordinates":[[-83.69876430000001,32.898697600000006],[-83.6992649,32.8988183],[-83.6996367,32.8989141],[-83.6998332,32.8989534],[-83.70003480000001,32.8989957],[-83.70024790000001,32.8990347],[-83.7003255,32.899043500000005]]},"id":"8944c0a2e5bffff-17bfe489fa82a6f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7010298,32.8991062]},"id":"8f44c0a2e5ac2ab-17b760e86f8f82a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e5ac2ab-17b760e86f8f82a5","8f44c0a2e5ae40b-179e72a09b7caa1c"]},"geometry":{"type":"LineString","coordinates":[[-83.7003255,32.899043500000005],[-83.7004902,32.899064],[-83.7008119,32.899093300000004],[-83.7010298,32.8991062]]},"id":"8a44c0a2e5affff-17b6f1c4c55a1ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70117400000001,32.8991095]},"id":"8f44c0a2e5adc95-17b7708e4e5b7519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e5adc95-17b7708e4e5b7519","8f44c0a2e5ac2ab-17b760e86f8f82a5"]},"geometry":{"type":"LineString","coordinates":[[-83.7010298,32.8991062],[-83.70117400000001,32.8991095]]},"id":"8a44c0a2e5affff-17b670bb5562170d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7019046,32.89914]},"id":"8f44c0a2e51e141-17dedec5a16e6953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e5adc95-17b7708e4e5b7519","8f44c0a2e51e141-17dedec5a16e6953"]},"geometry":{"type":"LineString","coordinates":[[-83.70117400000001,32.8991095],[-83.7017577,32.8991356],[-83.7019046,32.89914]]},"id":"8844c0a2e5fffff-17d7dfa9f8b1f4ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b81a430ca-17ff9fb06283c09e","8f44c0b8cda5232-13bffe59e89ba4cd"]},"geometry":{"type":"LineString","coordinates":[[-83.570457,32.82034],[-83.571005,32.821903]]},"id":"8544c0bbfffffff-17d7ff0526a0f3be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8cda5232-13bffe59e89ba4cd","8f44c0b8cc30d6e-1797bcc017ab8e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.571005,32.821903],[-83.57166070000001,32.8238658]]},"id":"8844c0b8cdfffff-139fdd8d06885c31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c0ddb40-17b7932fccbb5d05","8f44c0b8cc30d6e-1797bcc017ab8e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.57166070000001,32.8238658],[-83.571976,32.824813],[-83.57202000000001,32.82495],[-83.57266,32.826929],[-83.57307,32.828162],[-83.57378200000001,32.830353],[-83.5742453,32.8318127],[-83.574354,32.832155],[-83.57476100000001,32.833336],[-83.575079,32.834302],[-83.575108,32.834393],[-83.57525600000001,32.834854],[-83.575376,32.835245],[-83.57545900000001,32.835599],[-83.575491,32.835734],[-83.575536,32.836035],[-83.57556500000001,32.836266],[-83.57557600000001,32.836457],[-83.57557800000001,32.836612]]},"id":"8744c0b8cffffff-1797d7b50db7cdb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c7638ad-13dfd3aa4940ffff","8f44c0b8c0ddb40-17b7932fccbb5d05"]},"geometry":{"type":"LineString","coordinates":[[-83.57557800000001,32.836612],[-83.575574,32.836869],[-83.575556,32.837117],[-83.57553,32.837376],[-83.575491,32.837611],[-83.575382,32.83811]]},"id":"8744c0b8cffffff-17ff9359862864db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0ba37126d9-17f7ade9a09d22eb","8f44c0ba3429cb2-13f7f1cca32904e1"]},"geometry":{"type":"LineString","coordinates":[[-83.563039,32.773867],[-83.563191,32.774281],[-83.56346400000001,32.775064],[-83.563564,32.775332],[-83.563739,32.775861],[-83.563927,32.776361],[-83.564631,32.778377]]},"id":"8744c0ba3ffffff-13f7bfd9302dfc5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0ba3651b9a-13f7a73b0a02d924","8f44c0ba360919d-13bff9172e9715d5"]},"geometry":{"type":"LineString","coordinates":[[-83.56660620000001,32.7825605],[-83.566737,32.78278],[-83.56723600000001,32.783489],[-83.567368,32.783669]]},"id":"8844c0ba37fffff-139fb82e2502b0f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0ba3651b9a-13f7a73b0a02d924","8f44c0b859acb58-139fa3242546241c"]},"geometry":{"type":"LineString","coordinates":[[-83.567368,32.783669],[-83.56821000000001,32.784757],[-83.56849100000001,32.785141],[-83.56858700000001,32.785286],[-83.56872700000001,32.785522],[-83.568909,32.785877],[-83.568976,32.786049000000006],[-83.56904300000001,32.786197]]},"id":"8644c0b87ffffff-17dfe508d8f4ed88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b85b9a4c1-179fe07fe2af388a","8f44c0b859acb58-139fa3242546241c"]},"geometry":{"type":"LineString","coordinates":[[-83.56904300000001,32.786197],[-83.56918800000001,32.786706],[-83.56921600000001,32.786823000000005],[-83.569253,32.787019],[-83.569292,32.787292],[-83.56930200000001,32.78741],[-83.569309,32.787582],[-83.56931,32.787883],[-83.569303,32.788052],[-83.56928500000001,32.788245],[-83.569198,32.788797],[-83.56913300000001,32.789102],[-83.569069,32.789448],[-83.56901900000001,32.789797],[-83.568977,32.790163],[-83.56895300000001,32.790818],[-83.568983,32.791430000000005],[-83.56906500000001,32.791977],[-83.56915400000001,32.792386],[-83.56924000000001,32.79272],[-83.569383,32.793163],[-83.56964400000001,32.793885],[-83.56973400000001,32.794148],[-83.570125,32.795211]]},"id":"8744c0b85ffffff-17b7a28f3fd74341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5701619,32.795316500000006]},"id":"8f44c0b85b9a681-17d7f068de4a1457"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b85b9a4c1-179fe07fe2af388a","8f44c0b85b9a681-17d7f068de4a1457"]},"geometry":{"type":"LineString","coordinates":[[-83.570125,32.795211],[-83.5701619,32.795316500000006]]},"id":"8b44c0b85b9afff-17bfe0746ca12c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5703459,32.7958426]},"id":"8f44c0b85ab55a1-139fbff5d4a9fb45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b85b9a681-17d7f068de4a1457","8f44c0b85ab55a1-139fbff5d4a9fb45"]},"geometry":{"type":"LineString","coordinates":[[-83.5701619,32.795316500000006],[-83.5703459,32.7958426]]},"id":"8844c0b85bfffff-13f7e02f5d87d7f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b85ab55a1-139fbff5d4a9fb45","8f44c0b85a80c16-13d79f71eaeac8e9"]},"geometry":{"type":"LineString","coordinates":[[-83.5703459,32.7958426],[-83.57043200000001,32.796089],[-83.570468,32.796225],[-83.57049900000001,32.796366],[-83.570547,32.796711],[-83.57055700000001,32.79694]]},"id":"8944c0b85abffff-13ffbf9fc52589b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0ba3601528-17fffac5a7c344c0","8f44c0ba360919d-13bff9172e9715d5"]},"geometry":{"type":"LineString","coordinates":[[-83.5659174,32.781430300000004],[-83.56622560000001,32.781943600000005],[-83.56660620000001,32.7825605]]},"id":"8944c0ba363ffff-17dfe9ef77717cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916226,32.859566]},"id":"8f44c0a20c9956e-17bef7dfe615f691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2053512b-17f7790095d7bc68","8f44c0a20c9956e-17bef7dfe615f691"]},"geometry":{"type":"LineString","coordinates":[[-83.69116070000001,32.8600881],[-83.6916226,32.859566]]},"id":"8744c0a20ffffff-17dff87034929a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c9956e-17bef7dfe615f691","8f44c0a20c8e588-13df76b3a7a46fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.6916226,32.859566],[-83.692103,32.859023]]},"id":"8944c0a20cbffff-17977749c32818e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6205303,32.8373367]},"id":"8f44c0a368ac675-17f775709f581d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368ac675-17f775709f581d1a","8f44c0a368aed76-17d7268fa10094fb"]},"geometry":{"type":"LineString","coordinates":[[-83.62007100000001,32.83708],[-83.620165,32.837133],[-83.62043,32.837276],[-83.6205303,32.8373367]]},"id":"8944c0a368bffff-179775ffa73330e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b56000551-13dff1ceac327c83","8f44c0b5611e323-13d7f1be20746d5a"]},"geometry":{"type":"LineString","coordinates":[[-83.7465366,32.8547317],[-83.74654360000001,32.8543266],[-83.74656300000001,32.85246]]},"id":"8844c0b561fffff-179df1c5b95aed83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b56892289-13b7f1a527394b0f","8f44c0b5611e323-13d7f1be20746d5a"]},"geometry":{"type":"LineString","coordinates":[[-83.74656300000001,32.85246],[-83.746587,32.850352],[-83.74660300000001,32.8489]]},"id":"8744c0b56ffffff-17fff1b18ea677ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745118,32.8362739]},"id":"8f44c0b0945b9a8-13dff5454e187785"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0945b9a8-13dff5454e187785","8f44c0b56892289-13b7f1a527394b0f"]},"geometry":{"type":"LineString","coordinates":[[-83.74660300000001,32.8489],[-83.74661,32.848571],[-83.746592,32.848188],[-83.74656900000001,32.848089],[-83.74652900000001,32.847949],[-83.746476,32.847823000000005],[-83.746404,32.847682],[-83.746284,32.847503],[-83.746064,32.847245],[-83.745542,32.846676],[-83.74537000000001,32.846477],[-83.745282,32.846366],[-83.74521800000001,32.846259],[-83.74516700000001,32.846156],[-83.745118,32.846041],[-83.745069,32.845854],[-83.74504400000001,32.845547],[-83.7450347,32.8451694],[-83.74504400000001,32.84479],[-83.74506500000001,32.840916],[-83.74505900000001,32.838757],[-83.745064,32.837766],[-83.745118,32.8362739]]},"id":"8444c0bffffffff-13b5f4cb27df4f2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0945b9a8-13dff5454e187785","8f44c0b0945ccd3-13f7f53403a7cce2"]},"geometry":{"type":"LineString","coordinates":[[-83.745118,32.8362739],[-83.7451456,32.835511000000004]]},"id":"8a44c0b0945ffff-13f5f53ca7cfad74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b09451b2c-13bdf52d427de58a","8f44c0b0945ccd3-13f7f53403a7cce2"]},"geometry":{"type":"LineString","coordinates":[[-83.7451456,32.835511000000004],[-83.7451564,32.835213700000004]]},"id":"8944c0b0947ffff-1395f530a8f425c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5638064,32.811005800000004]},"id":"8f44c0b8181d242-179fafed0cf2a959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8181976a-1797b091af03e624","8f44c0b8181d242-179fafed0cf2a959"]},"geometry":{"type":"LineString","coordinates":[[-83.5638064,32.811005800000004],[-83.563697,32.811171],[-83.56354300000001,32.811369]]},"id":"8a44c0b8181ffff-1797b03d34ecf345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56327990000001,32.811709400000005]},"id":"8f44c0b818e645e-17d7f13611d0de7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b818e645e-17d7f13611d0de7e","8f44c0b8181976a-1797b091af03e624"]},"geometry":{"type":"LineString","coordinates":[[-83.56354300000001,32.811369],[-83.56327990000001,32.811709400000005]]},"id":"8844c0b819fffff-17ffb0e3d6431eab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5619929,32.8133743]},"id":"8f44c0b818d16c0-13f7f45a7f4c61c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b818e645e-17d7f13611d0de7e","8f44c0b818d16c0-13f7f45a7f4c61c7"]},"geometry":{"type":"LineString","coordinates":[[-83.56327990000001,32.811709400000005],[-83.5619929,32.8133743]]},"id":"8944c0b818fffff-13dfb2c84a34d458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b818d16c0-13f7f45a7f4c61c7","8f44c0b81129805-17f7b58b19bb6fe2"]},"geometry":{"type":"LineString","coordinates":[[-83.5619929,32.8133743],[-83.56150550000001,32.8140048]]},"id":"8744c0b81ffffff-17bfb4f2c8ddb3bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5613433,32.8142104]},"id":"8f44c0b811290d2-17f7b5f07f3d601c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b81129805-17f7b58b19bb6fe2","8f44c0b811290d2-17f7b5f07f3d601c"]},"geometry":{"type":"LineString","coordinates":[[-83.56150550000001,32.8140048],[-83.5613433,32.8142104]]},"id":"8b44c0b81129fff-17b7f5bdc863086c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b811290d2-17f7b5f07f3d601c","8f44c0b81006184-13bffcf58c638b18"]},"geometry":{"type":"LineString","coordinates":[[-83.5613433,32.8142104],[-83.560793,32.814908],[-83.56060400000001,32.815129],[-83.560371,32.815354],[-83.56018710000001,32.815508300000005],[-83.56002450000001,32.8156355],[-83.5598021,32.815771600000005],[-83.559599,32.815877],[-83.559325,32.816001],[-83.558468,32.816346]]},"id":"8844c0b811fffff-13fff92275806218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8531bc94-179fe3bc1b69c324","8f44c0b8531826d-17ffe2928e81cd81"]},"geometry":{"type":"LineString","coordinates":[[-83.5687999,32.8013812],[-83.5689306,32.8013002],[-83.56906790000001,32.8012813],[-83.569276,32.801302]]},"id":"8a44c0b8531ffff-17f7a32c29d52404"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b53805af2-13fff70a6e7674fb","8f44c0b5382d58c-1395e4ba20e79579"]},"geometry":{"type":"LineString","coordinates":[[-83.7640538,32.8850931],[-83.7650014,32.885103400000006]]},"id":"8944c0b5383ffff-1397f5e24908a701"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76595420000001,32.8851139]},"id":"8f44c0b5395ea41-139df266ac3a01d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5395ea41-139df266ac3a01d7","8f44c0b5382d58c-1395e4ba20e79579"]},"geometry":{"type":"LineString","coordinates":[[-83.7650014,32.885103400000006],[-83.76595420000001,32.8851139]]},"id":"8844c0b539fffff-139df3906a3324a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76657560000001,32.8851207]},"id":"8f44c0b5395d8b5-1395f0e24095e548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5395ea41-139df266ac3a01d7","8f44c0b5395d8b5-1395f0e24095e548"]},"geometry":{"type":"LineString","coordinates":[[-83.76595420000001,32.8851139],[-83.76657560000001,32.8851207]]},"id":"8a44c0b5395ffff-139fd1a47744b9f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7685155,32.8851421]},"id":"8f44c0b514b6959-139dfc25d5a77db0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b514b6959-139dfc25d5a77db0","8f44c0b5395d8b5-1395f0e24095e548"]},"geometry":{"type":"LineString","coordinates":[[-83.76657560000001,32.8851207],[-83.7685155,32.8851421]]},"id":"8744c0b53ffffff-1397be84025144ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.774524,32.899403]},"id":"8f44c0b5ed55a0e-17ffed7a88eb4ae0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b514b6959-139dfc25d5a77db0","8f44c0b5ed55a0e-17ffed7a88eb4ae0"]},"geometry":{"type":"LineString","coordinates":[[-83.7685155,32.8851421],[-83.77242550000001,32.8852021],[-83.7725947,32.8852147],[-83.7728015,32.8852526],[-83.773121,32.8853347],[-83.7733917,32.8854357],[-83.7736699,32.885574600000005],[-83.77389930000001,32.8857293],[-83.77410400000001,32.885896],[-83.77437,32.886189],[-83.774462,32.886317000000005],[-83.77453600000001,32.886446],[-83.77457100000001,32.886518],[-83.77462600000001,32.886646],[-83.774668,32.886774],[-83.774691,32.886882],[-83.774708,32.887017],[-83.774719,32.887326],[-83.774703,32.888016],[-83.77463,32.892493],[-83.77455,32.898634],[-83.774524,32.899403]]},"id":"8544c0b7fffffff-17f5bf9a93f0ffb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a242422e3-17ffe67c8d9ab7c4","8f44c0a25513851-17df72921a861c55"]},"geometry":{"type":"LineString","coordinates":[[-83.7134559,32.8563703],[-83.71340760000001,32.856161300000004],[-83.713245,32.855711],[-83.713108,32.8553],[-83.71294800000001,32.854922],[-83.712933,32.854903],[-83.712781,32.854712],[-83.71270200000001,32.854613],[-83.712395,32.854359],[-83.711894,32.854168],[-83.71185200000001,32.854163]]},"id":"8644c0a27ffffff-13be5408fe6e0818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24213c75-139fcf418f98a700","8f44c0a242422e3-17ffe67c8d9ab7c4"]},"geometry":{"type":"LineString","coordinates":[[-83.71185200000001,32.854163],[-83.71092900000001,32.853917],[-83.710254,32.853701],[-83.70981400000001,32.853538],[-83.709416,32.853279],[-83.709112,32.852981],[-83.709011,32.852873],[-83.708876,32.852694],[-83.708746,32.852503],[-83.708641,32.852379],[-83.708554,32.852207],[-83.708419,32.85201],[-83.70826000000001,32.851756]]},"id":"8844c0a243fffff-17d7cb660af268d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2551e623-17bfe23e1c752365","8f44c0a25430ae3-13b7e277cac517c0"]},"geometry":{"type":"LineString","coordinates":[[-83.713498,32.858147],[-83.71359860000001,32.8580075],[-83.7135903,32.856905000000005]]},"id":"8844c0a255fffff-17bed23f69beedb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2551e623-17bfe23e1c752365","8f44c0a25513851-17df72921a861c55"]},"geometry":{"type":"LineString","coordinates":[[-83.7135903,32.856905000000005],[-83.71356420000001,32.8566987],[-83.713507,32.8564552],[-83.7134559,32.8563703]]},"id":"8944c0a2553ffff-1796d25c9eaa2722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.632818,32.826559]},"id":"8f44c0ba9aebd9d-17976770c82bd306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34db6b34-17b765bc80af3ab5","8f44c0ba9aebd9d-17976770c82bd306"]},"geometry":{"type":"LineString","coordinates":[[-83.632818,32.826559],[-83.633516,32.826991]]},"id":"8844c0ba9bfffff-179f6696af33765c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34db6b34-17b765bc80af3ab5","8f44c0a34db5204-17bfe3f4ef5da383"]},"geometry":{"type":"LineString","coordinates":[[-83.633516,32.826991],[-83.634245,32.827435]]},"id":"8a44c0a34db7fff-17b724d8b5b73026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a69d789-1397fa8b2294d02a","8f44c0b1a680331-17dff9602fe0a908"]},"geometry":{"type":"LineString","coordinates":[[-83.6381006,32.825704900000005],[-83.6380871,32.8256359],[-83.6380846,32.825566900000005],[-83.6380907,32.8254979],[-83.6381066,32.8254317],[-83.6381375,32.8253581],[-83.6381807,32.8252897],[-83.63857900000001,32.824796]]},"id":"8944c0b1a6bffff-13d6fa2199a0f66d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a680331-17dff9602fe0a908","8f44c0b1a6a5722-179ef6e1756f630b"]},"geometry":{"type":"LineString","coordinates":[[-83.63857900000001,32.824796],[-83.639268,32.823985],[-83.6394417,32.8237894],[-83.6396009,32.8236962]]},"id":"8944c0b1a6bffff-17f6f82c8fd0f937"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9b7469a-17d761618faf08ec","8f44c0b1a4da388-1797e07f435e6fd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6353,32.821095],[-83.63566200000001,32.820611]]},"id":"8844c0ba9bfffff-17bf20f0653c5d34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4da388-1797e07f435e6fd2","8f44c0b1a4d8d1d-1797ffa0294d4a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.63566200000001,32.820611],[-83.636019,32.820175]]},"id":"8a44c0b1a4dffff-179fa00fbb0bf39c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4c22f0-13dffeb3e1fd6f63","8f44c0b1a4d8d1d-1797ffa0294d4a5a"]},"geometry":{"type":"LineString","coordinates":[[-83.636019,32.820175],[-83.636397,32.819708]]},"id":"8944c0b1a4fffff-13ffff2a0d8065af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4c22f0-13dffeb3e1fd6f63","8f44c0b1a4c0d53-13befdcc0f11261b"]},"geometry":{"type":"LineString","coordinates":[[-83.636397,32.819708],[-83.636768,32.819246]]},"id":"8a44c0b1a4c7fff-13dffe3ffaa78b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4c4961-13bffce7498205f5","8f44c0b1a4c0d53-13befdcc0f11261b"]},"geometry":{"type":"LineString","coordinates":[[-83.636768,32.819246],[-83.637134,32.818806]]},"id":"8944c0b1a4fffff-13b7fd59abbd1b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4e0c48-139efbf74a00121e","8f44c0b1a4c4961-13bffce7498205f5"]},"geometry":{"type":"LineString","coordinates":[[-83.637134,32.818806],[-83.637518,32.818346000000005]]},"id":"8a44c0b1a4e7fff-139efc6f4e32cd08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4e0c48-139efbf74a00121e","8f44c0b1a408033-17defa2e66ec64c3"]},"geometry":{"type":"LineString","coordinates":[[-83.637518,32.818346000000005],[-83.637859,32.817931],[-83.638249,32.817456]]},"id":"8844c0b1a5fffff-17f6fb12dcf392f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a408824-17fef9dbc5ae3638","8f44c0b1a408033-17defa2e66ec64c3"]},"geometry":{"type":"LineString","coordinates":[[-83.638249,32.817456],[-83.63838120000001,32.8172967]]},"id":"8b44c0b1a408fff-17befa051543d088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4280eb-13b7f86083dee1ca","8f44c0b1a408824-17fef9dbc5ae3638"]},"geometry":{"type":"LineString","coordinates":[[-83.63838120000001,32.8172967],[-83.63898800000001,32.816566]]},"id":"8944c0b1a43ffff-1796f91e279c12b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4280eb-13b7f86083dee1ca","8f44c0b1a553016-13b6f701e6a5d996"]},"geometry":{"type":"LineString","coordinates":[[-83.63898800000001,32.816566],[-83.639312,32.816192],[-83.639549,32.815952]]},"id":"8844c0b1a5fffff-13fff7b43e863042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a553016-13b6f701e6a5d996","8f44c0b1a555783-13b6f5d89de6f63f"]},"geometry":{"type":"LineString","coordinates":[[-83.639549,32.815952],[-83.64002470000001,32.8155214]]},"id":"8a44c0b1a557fff-13bff66d357e5f33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14320c5c-139ff6a44f86d53d","8f44c0b14ac46b0-139fd03d5cf59646"]},"geometry":{"type":"LineString","coordinates":[[-83.65542830000001,32.741164000000005],[-83.653197,32.741145],[-83.652806,32.741141]]},"id":"8844c0b14bfffff-1396d370d8ab81f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1404a464-13fefe6722593be3","8f44c0b14320c5c-139ff6a44f86d53d"]},"geometry":{"type":"LineString","coordinates":[[-83.652806,32.741141],[-83.64962700000001,32.741117]]},"id":"8744c0b14ffffff-1397fa85b63b107b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1404a464-13fefe6722593be3","8f44c0b143b5993-17b7f0b411f48941"]},"geometry":{"type":"LineString","coordinates":[[-83.64962700000001,32.741117],[-83.6492903,32.741131700000004],[-83.64912670000001,32.7412031],[-83.648893,32.741367100000005],[-83.6486847,32.7415857]]},"id":"8844c0b141fffff-13dfdfa4e628140e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6021012,32.8579852]},"id":"8f44c0a32c92605-13d7d26ec3ec1c1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60234290000001,32.857727600000004]},"id":"8f44c0a32c92875-13bfd1d7bc5c8018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c92875-13bfd1d7bc5c8018","8f44c0a32c92605-13d7d26ec3ec1c1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6021012,32.8579852],[-83.6020907,32.8574122],[-83.6021176,32.8573356],[-83.60220340000001,32.857295],[-83.60228380000001,32.857313000000005],[-83.6023321,32.8573626],[-83.60234290000001,32.857727600000004]]},"id":"8a44c0a32c97fff-17d7f235e7a21c89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c92875-13bfd1d7bc5c8018","8f44c0a32c92605-13d7d26ec3ec1c1e"]},"geometry":{"type":"LineString","coordinates":[[-83.60234290000001,32.857727600000004],[-83.6021012,32.8579852]]},"id":"8b44c0a32c92fff-1397522336e40345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32c92605-13d7d26ec3ec1c1e","8f44c0b8d26cc16-13b772ce0561fb3e"]},"geometry":{"type":"LineString","coordinates":[[-83.6021012,32.8579852],[-83.6020639,32.858025000000005],[-83.6019488,32.8581175]]},"id":"8944c0b8d27ffff-13ff729d3199b9a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d26cc16-13b772ce0561fb3e","8f44c0b8d26e698-13b75421756f1f54"]},"geometry":{"type":"LineString","coordinates":[[-83.6019488,32.8581175],[-83.6014057,32.858554000000005]]},"id":"8a44c0b8d26ffff-13bff377cfa36f61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d24534e-13ffd476405bd60d","8f44c0b8d26e698-13b75421756f1f54"]},"geometry":{"type":"LineString","coordinates":[[-83.6014057,32.858554000000005],[-83.60127,32.8586424]]},"id":"8944c0b8d27ffff-13dff44beb230b84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.600369,32.859682]},"id":"8f44c0b8d259914-17f756a969886eb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d24534e-13ffd476405bd60d","8f44c0b8d259914-17f756a969886eb9"]},"geometry":{"type":"LineString","coordinates":[[-83.60127,32.8586424],[-83.6006407,32.8591576],[-83.60041700000001,32.859340800000005],[-83.60037410000001,32.859525600000005],[-83.600369,32.859682]]},"id":"8944c0b8d27ffff-139755c564e04aef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77382300000001,32.85221]},"id":"8f44c0b5406bc32-13b7ef30a631c043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5406bc32-13b7ef30a631c043","8f44c0b540d5d99-13bffc7bc2c3683d"]},"geometry":{"type":"LineString","coordinates":[[-83.77382300000001,32.85221],[-83.77315,32.852223],[-83.771872,32.85222],[-83.77067000000001,32.852209],[-83.77024700000001,32.852215],[-83.769609,32.852218],[-83.76927,32.85221],[-83.76895400000001,32.852198],[-83.768378,32.85219]]},"id":"8844c0b541fffff-13bdb5d645b65a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b547354ee-13b5e3044156cd8a","8f44c0b540d5d99-13bffc7bc2c3683d"]},"geometry":{"type":"LineString","coordinates":[[-83.768378,32.85219],[-83.76673500000001,32.852187],[-83.765702,32.852173]]},"id":"8744c0b54ffffff-13b7ffc000bdaa34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b544ec903-13ffccd69905886b","8f44c0b547354ee-13b5e3044156cd8a"]},"geometry":{"type":"LineString","coordinates":[[-83.765702,32.852173],[-83.765214,32.852145],[-83.76477,32.852103],[-83.76442700000001,32.852061],[-83.76388200000001,32.851967],[-83.763593,32.851902],[-83.763411,32.851857],[-83.76295900000001,32.85173],[-83.76265400000001,32.851635],[-83.762314,32.85152],[-83.76202400000001,32.851407],[-83.76167910000001,32.8512744]]},"id":"8744c0b54ffffff-13d5c7fe65e4674c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b544a8b31-17bdd30e6b33db66","8f44c0b5441a6f1-17f5f1cf20389e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.75964300000001,32.850023],[-83.75913220000001,32.8495568]]},"id":"8844c0b545fffff-17dff26ec264baab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b544a8984-13f7d36d1762534a","8f44c0b544a8b31-17bdd30e6b33db66"]},"geometry":{"type":"LineString","coordinates":[[-83.75913220000001,32.8495568],[-83.75898070000001,32.849418400000005]]},"id":"8b44c0b544a8fff-1795d33dce367051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7565472,32.846673200000005]},"id":"8f44c0b545926ea-17b7d95e059f8edd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b544a8984-13f7d36d1762534a","8f44c0b545926ea-17b7d95e059f8edd"]},"geometry":{"type":"LineString","coordinates":[[-83.75898070000001,32.849418400000005],[-83.758863,32.849311],[-83.7565472,32.846673200000005]]},"id":"8844c0b545fffff-1395d669581555b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75282220000001,32.8424301]},"id":"8f44c0b0929c031-13d7f276287801d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b0929c031-13d7f276287801d8","8f44c0b545926ea-17b7d95e059f8edd"]},"geometry":{"type":"LineString","coordinates":[[-83.7565472,32.846673200000005],[-83.75282220000001,32.8424301]]},"id":"8544c0b7fffffff-1395ddea1991b58c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75040800000001,32.83968]},"id":"8f44c0b097421ac-17b5e85b06e4565a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b097421ac-17b5e85b06e4565a","8f44c0b0929c031-13d7f276287801d8"]},"geometry":{"type":"LineString","coordinates":[[-83.75282220000001,32.8424301],[-83.75040800000001,32.83968]]},"id":"8744c0b09ffffff-17fff56898e7b011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b097421ac-17b5e85b06e4565a","8f44c0b09706349-1795edb8b8565991"]},"geometry":{"type":"LineString","coordinates":[[-83.75040800000001,32.83968],[-83.74987200000001,32.839069],[-83.74821010000001,32.8371796]]},"id":"8844c0b097fffff-1397fb09aaff761f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d8ab609-17fdedb66c32f33c","8f44c0b76593824-1797bb0bac233113"]},"geometry":{"type":"LineString","coordinates":[[-83.76132100000001,32.807029],[-83.76157900000001,32.806829],[-83.761739,32.806711],[-83.761959,32.806556],[-83.762099,32.806469],[-83.762247,32.806387],[-83.762597,32.806216],[-83.76288000000001,32.806105],[-83.763221,32.80599],[-83.763964,32.80575],[-83.76547400000001,32.805253],[-83.76718000000001,32.804704],[-83.768049,32.804415],[-83.76824500000001,32.804336],[-83.76854300000001,32.804279],[-83.768732,32.804252000000005],[-83.768967,32.8042274]]},"id":"8544c0b3fffffff-1395d49574d249ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.807606,32.802282000000005]},"id":"8f44c0b7415a463-13d75cb64643c8a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b7415a463-13d75cb64643c8a6","8f44c0b76593824-1797bb0bac233113"]},"geometry":{"type":"LineString","coordinates":[[-83.768967,32.8042274],[-83.769025,32.804223],[-83.76931,32.804217],[-83.769571,32.804229],[-83.769822,32.804257],[-83.770049,32.804298],[-83.770319,32.80437],[-83.77053000000001,32.804446],[-83.770707,32.804515],[-83.770808,32.804563],[-83.771078,32.804707],[-83.77499200000001,32.806984],[-83.77705800000001,32.808186],[-83.777173,32.808251],[-83.777444,32.808389000000005],[-83.77767100000001,32.80848],[-83.77792500000001,32.808565],[-83.778113,32.808614],[-83.77826400000001,32.808642],[-83.77850600000001,32.808678],[-83.778709,32.808695],[-83.778902,32.8087],[-83.779256,32.808687],[-83.779475,32.808667],[-83.779865,32.808622],[-83.781197,32.808432],[-83.781667,32.808349],[-83.7819422,32.808301900000004],[-83.78256400000001,32.808154],[-83.783901,32.807803],[-83.78428000000001,32.80773],[-83.78453,32.807692],[-83.78464500000001,32.80767],[-83.785329,32.80756],[-83.785534,32.807527],[-83.786265,32.807391],[-83.78673,32.807297600000005],[-83.788182,32.807006],[-83.790238,32.806583],[-83.790397,32.806556],[-83.79052800000001,32.806525],[-83.79159200000001,32.806306],[-83.792063,32.806201],[-83.792202,32.806179],[-83.79280100000001,32.806054],[-83.793586,32.805874],[-83.794031,32.805781],[-83.794353,32.805725],[-83.795175,32.80554],[-83.795336,32.805494],[-83.795482,32.805463],[-83.79557000000001,32.805438],[-83.796023,32.805326],[-83.79616,32.8053],[-83.798997,32.804668],[-83.799862,32.804478],[-83.8069864,32.802852900000005],[-83.8070874,32.802829800000005],[-83.80715520000001,32.802811000000005],[-83.807219,32.802784],[-83.8072614,32.802759900000005],[-83.8073006,32.8027321],[-83.807336,32.802701],[-83.8074955,32.8024535],[-83.807606,32.802282000000005]]},"id":"8644c0b77ffffff-13f5dc4e899ca8b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2cd834-139ffb15a3a52570","8f44c0b7659466c-17ddbacc825d573f"]},"geometry":{"type":"LineString","coordinates":[[-83.769068,32.803708],[-83.76904,32.803638],[-83.769001,32.8035],[-83.76899,32.803361],[-83.768994,32.802892],[-83.768989,32.802767],[-83.768951,32.802602]]},"id":"8544c0b3fffffff-13f5baf8f91d8c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2cd834-139ffb15a3a52570","8f44c0b2b2c5d45-17f5bcca8ee5652e"]},"geometry":{"type":"LineString","coordinates":[[-83.768951,32.802602],[-83.768873,32.802365],[-83.76880100000001,32.802219],[-83.768687,32.802022],[-83.76852600000001,32.801817],[-83.768252,32.801513]]},"id":"8944c0b2b2fffff-13b7fbd23581b910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2c5d45-17f5bcca8ee5652e","8f44c0b2b2ad376-13d7ff61001078bf"]},"geometry":{"type":"LineString","coordinates":[[-83.768252,32.801513],[-83.768028,32.801264],[-83.767846,32.801036],[-83.767708,32.80084],[-83.767573,32.800589],[-83.767446,32.800293],[-83.76719200000001,32.799627]]},"id":"8844c0b2b3fffff-17bffe4463d598b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766884,32.798844]},"id":"8f44c0b2b2123a5-13fdc021803a77fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b2b2ad376-13d7ff61001078bf","8f44c0b2b2123a5-13fdc021803a77fd"]},"geometry":{"type":"LineString","coordinates":[[-83.76719200000001,32.799627],[-83.767081,32.799369],[-83.76697800000001,32.799107],[-83.766884,32.798844]]},"id":"8944c0b2b23ffff-13f7bfc4bb101d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30943303-1396fd9691825610","8f44c0a309454d1-1397ecea47e46f51"]},"geometry":{"type":"LineString","coordinates":[[-83.6434071,32.8525419],[-83.6433748,32.8524107],[-83.6436269,32.8520187],[-83.64368280000001,32.851947800000005]]},"id":"8a44c0a30947fff-13d7ed5cd43550db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443672,32.8513157]},"id":"8f44c0a30961554-139efb3e8f18a74f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a309454d1-1397ecea47e46f51","8f44c0a30961554-139efb3e8f18a74f"]},"geometry":{"type":"LineString","coordinates":[[-83.64368280000001,32.851947800000005],[-83.6439112,32.8516582],[-83.6440721,32.8516221],[-83.6443672,32.8513157]]},"id":"8944c0a3097ffff-13deec18db3ed204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6454454,32.8509461]},"id":"8f44c0a35590d74-17b7f89ca02af1e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35590d74-17b7f89ca02af1e3","8f44c0a30961554-139efb3e8f18a74f"]},"geometry":{"type":"LineString","coordinates":[[-83.6454454,32.8509461],[-83.6451557,32.8510317],[-83.64488220000001,32.8511669],[-83.64458180000001,32.8513833],[-83.6443672,32.8513157]]},"id":"8644c0a37ffffff-13bef9f1d696ea16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30960023-17d7fbbd189efa57","8f44c0a30961554-139efb3e8f18a74f"]},"geometry":{"type":"LineString","coordinates":[[-83.6443672,32.8513157],[-83.6442384,32.8511985],[-83.6441647,32.851029700000005]]},"id":"8a44c0a30967fff-13b7eb87410aad30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644115,32.8504188]},"id":"8f44c0a30964d9e-17d7ebdc2da22290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30960023-17d7fbbd189efa57","8f44c0a30964d9e-17d7ebdc2da22290"]},"geometry":{"type":"LineString","coordinates":[[-83.6441647,32.851029700000005],[-83.6440829,32.8508425],[-83.644115,32.8504188]]},"id":"8a44c0a30967fff-179eebe12e61840c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d399464-13ffef704373bd36","8f44c0b1d39da82-1396ee96cb83e6f7"]},"geometry":{"type":"LineString","coordinates":[[-83.69507800000001,32.813404000000006],[-83.69542600000001,32.813009]]},"id":"8a44c0b1d39ffff-13fe7f038e1105d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d385455-139e6d788fe666ef","8f44c0b1d39da82-1396ee96cb83e6f7"]},"geometry":{"type":"LineString","coordinates":[[-83.69542600000001,32.813009],[-83.69559600000001,32.812838],[-83.69579,32.812624],[-83.69583300000001,32.812556],[-83.695852,32.812517],[-83.69586500000001,32.812455],[-83.695885,32.812134],[-83.695884,32.812029]]},"id":"8944c0b1d3bffff-13fefdce6e70a300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b188f4d48-13d6a29efe76ac82","8f44c0b1881a789-13dfe2a404dc80e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6741056,32.806396400000004],[-83.6741137,32.8065578]]},"id":"8844c0b189fffff-1396b2a18c6e1bf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b188c6c01-17bea281d10feca4","8f44c0b188f4d48-13d6a29efe76ac82"]},"geometry":{"type":"LineString","coordinates":[[-83.6741137,32.8065578],[-83.67413780000001,32.807040300000004],[-83.67416030000001,32.8077482]]},"id":"8944c0b188fffff-17b6b28ec8701f78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b188c6c01-17bea281d10feca4","8f44c0b188c022e-17bfa13161fee546"]},"geometry":{"type":"LineString","coordinates":[[-83.67416030000001,32.8077482],[-83.67416250000001,32.8078176],[-83.6746986,32.8083706]]},"id":"8a44c0b188c7fff-17f6e1e6de89db15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89625b19-13bffdbc3dae5719","8f44c0b890da12c-17b7f9b7ef61a243"]},"geometry":{"type":"LineString","coordinates":[[-83.5843645,32.875568900000005],[-83.585104,32.8755304],[-83.58540980000001,32.875422300000004],[-83.58585500000001,32.8750979],[-83.58605890000001,32.874769],[-83.5861098,32.874488500000005],[-83.5860098,32.8739128]]},"id":"8844c0b897fffff-13f77ae145cea68e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890de54d-17dff9c2e87ad421","8f44c0b890da12c-17b7f9b7ef61a243"]},"geometry":{"type":"LineString","coordinates":[[-83.5860098,32.8739128],[-83.5859922,32.8735386]]},"id":"8a44c0b890dffff-17bff9bd6a7ef52b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3482e604-13b7e52401a8e010","8f44c0a348018ed-13fff60f7dbee378"]},"geometry":{"type":"LineString","coordinates":[[-83.6468672,32.83149],[-83.6468042,32.8314862],[-83.6467796,32.8314922],[-83.6467573,32.8315047],[-83.64673180000001,32.8315259],[-83.6464905,32.8318169]]},"id":"8944c0a3483ffff-13f7f5a3b246174b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3481d28c-13f7f7c074d8295e","8f44c0a348018ed-13fff60f7dbee378"]},"geometry":{"type":"LineString","coordinates":[[-83.6464905,32.8318169],[-83.64609970000001,32.8322698],[-83.6457977,32.832620500000004]]},"id":"8944c0a3483ffff-13fee6e800311146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a348f505d-17f6f97d726185dc","8f44c0a3481d28c-13f7f7c074d8295e"]},"geometry":{"type":"LineString","coordinates":[[-83.6457977,32.832620500000004],[-83.6457843,32.832636400000005],[-83.64508570000001,32.8334691]]},"id":"8844c0a349fffff-13ffe89ef382153b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a348f505d-17f6f97d726185dc","8f44c0a348f1d41-17f6f9e8c03e039a"]},"geometry":{"type":"LineString","coordinates":[[-83.64508570000001,32.8334691],[-83.644982,32.833592700000004],[-83.644914,32.8336737]]},"id":"8a44c0a348f7fff-17b6e9b3115fa612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650968,32.833973]},"id":"8f44c0b1b498534-17b7fb210d723190"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b498534-17b7fb210d723190","8f44c0b1b49c89d-17b7da4fe308f88e"]},"geometry":{"type":"LineString","coordinates":[[-83.650968,32.833973],[-83.65103210000001,32.833866],[-83.65130260000001,32.833548400000005]]},"id":"8a44c0b1b49ffff-17bfdabc8821a158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6515243,32.833288200000005]},"id":"8f44c0b1b482325-1797f9c557da01c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b49c89d-17b7da4fe308f88e","8f44c0b1b482325-1797f9c557da01c3"]},"geometry":{"type":"LineString","coordinates":[[-83.65130260000001,32.833548400000005],[-83.6515243,32.833288200000005]]},"id":"8944c0b1b4bffff-17d6fa0a9f731219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b482325-1797f9c557da01c3","8f44c0b1b4847a6-13b7f8fceed91a07"]},"geometry":{"type":"LineString","coordinates":[[-83.6515243,32.833288200000005],[-83.6518032,32.8329778],[-83.6518162,32.8329621],[-83.6518267,32.8329451],[-83.65183640000001,32.8329212],[-83.6518412,32.8328964],[-83.65184210000001,32.8328355],[-83.65184500000001,32.832751]]},"id":"8a44c0b1b487fff-13fef947150e5f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18688268-1797fe6106001f22","8f44c0b1868c071-1797fe606e7729fa"]},"geometry":{"type":"LineString","coordinates":[[-83.662744,32.820819],[-83.662745,32.820211]]},"id":"8a44c0b1868ffff-17d7fe60b28b7ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66275060000001,32.8197228]},"id":"8f44c0b186aa198-13f6fe5ce24fb6e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186aa198-13f6fe5ce24fb6e2","8f44c0b1868c071-1797fe606e7729fa"]},"geometry":{"type":"LineString","coordinates":[[-83.662745,32.820211],[-83.66275060000001,32.8197228]]},"id":"8944c0b186bffff-13fffe5ea93a7bab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186ae4e5-13f6fe5a23748240","8f44c0b186aa198-13f6fe5ce24fb6e2"]},"geometry":{"type":"LineString","coordinates":[[-83.66275060000001,32.8197228],[-83.662755,32.819339]]},"id":"8a44c0b186affff-13fefe5b8e376ea3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186a3a02-13b7fe58469aa8be","8f44c0b186ae4e5-13f6fe5a23748240"]},"geometry":{"type":"LineString","coordinates":[[-83.662755,32.819339],[-83.66275800000001,32.819007]]},"id":"8944c0b186bffff-139fbe59389a53b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186a3a02-13b7fe58469aa8be","8f44c0b186a03a5-13d6be584dca7659"]},"geometry":{"type":"LineString","coordinates":[[-83.66275800000001,32.819007],[-83.66275800000001,32.818644]]},"id":"8a44c0b186a7fff-13b7fe584031ae5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1878a78e-17b7be4085d87be5","8f44c0b186a03a5-13d6be584dca7659"]},"geometry":{"type":"LineString","coordinates":[[-83.66275800000001,32.818644],[-83.662796,32.817797]]},"id":"8844c0b187fffff-17bffe4c63c74b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627995,32.817205200000004]},"id":"8f44c0b1878e593-17d7fe3e5a6e1055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1878e593-17d7fe3e5a6e1055","8f44c0b1878a78e-17b7be4085d87be5"]},"geometry":{"type":"LineString","coordinates":[[-83.662796,32.817797],[-83.6627995,32.817205200000004]]},"id":"8a44c0b1878ffff-17febe3f69f82ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628003,32.817082500000005]},"id":"8f44c0b18783223-17f6be3ddf680857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18783223-17f6be3ddf680857","8f44c0b1878e593-17d7fe3e5a6e1055"]},"geometry":{"type":"LineString","coordinates":[[-83.6627995,32.817205200000004],[-83.6628003,32.817082500000005]]},"id":"8944c0b187bffff-179efe3e12f6169e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628012,32.8169283]},"id":"8f44c0b1878316b-1796be3d469787c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18783223-17f6be3ddf680857","8f44c0b1878316b-1796be3d469787c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6628003,32.817082500000005],[-83.6628012,32.8169283]]},"id":"8b44c0b18783fff-17d6fe3d91e4da3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18780745-13d7fe3c24579a9e","8f44c0b1878316b-1796be3d469787c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6628012,32.8169283],[-83.66280300000001,32.816626]]},"id":"8a44c0b18787fff-17b7fe3cb871c2a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66239470000001,32.841318900000005]},"id":"8f44c0b1b6604d6-13b6ff3b5c6118cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b66344a-13b7bf40c9fc2b70","8f44c0b1b6604d6-13b6ff3b5c6118cb"]},"geometry":{"type":"LineString","coordinates":[[-83.66238600000001,32.841765],[-83.66239470000001,32.841318900000005]]},"id":"8a44c0b1b667fff-13bfff3e0d8bef12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66240090000001,32.8409977]},"id":"8f44c0b1b666a83-17d7bf37706883a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b666a83-17d7bf37706883a0","8f44c0b1b6604d6-13b6ff3b5c6118cb"]},"geometry":{"type":"LineString","coordinates":[[-83.66239470000001,32.841318900000005],[-83.66240090000001,32.8409977]]},"id":"8a44c0b1b667fff-17bfff3963ac4fa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624043,32.8408196]},"id":"8f44c0b1b666828-17feff3552fa9ec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b666a83-17d7bf37706883a0","8f44c0b1b666828-17feff3552fa9ec1"]},"geometry":{"type":"LineString","coordinates":[[-83.66240090000001,32.8409977],[-83.6624043,32.8408196]]},"id":"8b44c0b1b666fff-179fff3669144c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b666828-17feff3552fa9ec1","8f44c0b1b75911d-1796bf312780b9ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6624043,32.8408196],[-83.662411,32.840477]]},"id":"8844c0b1b7fffff-17ffbf33478a3564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b75d6ee-179fff29a051d6bd","8f44c0b1b75911d-1796bf312780b9ff"]},"geometry":{"type":"LineString","coordinates":[[-83.662411,32.840477],[-83.662423,32.840291]]},"id":"8a44c0b1b75ffff-17debf2d61ed14d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b75d6ee-179fff29a051d6bd","8f44c0b1b75ca69-1796bf2183475fcf"]},"geometry":{"type":"LineString","coordinates":[[-83.662423,32.840291],[-83.662436,32.839841]]},"id":"8a44c0b1b75ffff-1797ff2591922928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b742843-1397ff20e034561f","8f44c0b1b75ca69-1796bf2183475fcf"]},"geometry":{"type":"LineString","coordinates":[[-83.662436,32.839841],[-83.66243700000001,32.83925]]},"id":"8944c0b1b77ffff-13dfff21309dddab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66243700000001,32.838898]},"id":"8f44c0b1b74602d-13b7ff20eb5139f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b74602d-13b7ff20eb5139f0","8f44c0b1b742843-1397ff20e034561f"]},"geometry":{"type":"LineString","coordinates":[[-83.66243700000001,32.83925],[-83.66243700000001,32.838898]]},"id":"8a44c0b1b747fff-13b7ff20e9af2ea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b74602d-13b7ff20eb5139f0","8f44c0b1b775c91-17debf0baa2b9c39"]},"geometry":{"type":"LineString","coordinates":[[-83.66243700000001,32.838898],[-83.66247100000001,32.837904]]},"id":"8944c0b1b77ffff-1396bf1643af801b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0da141-17beff02e0579b07","8f44c0b1b775c91-17debf0baa2b9c39"]},"geometry":{"type":"LineString","coordinates":[[-83.66247100000001,32.837904],[-83.662485,32.837271]]},"id":"8844c0b1b7fffff-1796bf074cd8fa3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0d17a1-17dfbeee9aa59198","8f44c0b1b0da141-17beff02e0579b07"]},"geometry":{"type":"LineString","coordinates":[[-83.662485,32.837271],[-83.6625175,32.8364952]]},"id":"8944c0b1b0fffff-17dffef8c54e4a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662535,32.836081]},"id":"8f44c0b1b0d0b55-13d6bee3a656c5bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0d17a1-17dfbeee9aa59198","8f44c0b1b0d0b55-13d6bee3a656c5bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6625175,32.8364952],[-83.662535,32.836081]]},"id":"8a44c0b1b0d7fff-13debee9161a8572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0d4905-13defee123f732b0","8f44c0b1b0d0b55-13d6bee3a656c5bd"]},"geometry":{"type":"LineString","coordinates":[[-83.662535,32.836081],[-83.66253900000001,32.83545]]},"id":"8944c0b1b0fffff-1397fee267044c3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0d4905-13defee123f732b0","8f44c0b1b0f66ab-1396fef0c336e6de"]},"geometry":{"type":"LineString","coordinates":[[-83.66253900000001,32.83545],[-83.662514,32.834955]]},"id":"8a44c0b1b0f7fff-13b7bee8f44a9d95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0f6462-13b7fee8a5b5e0de","8f44c0b1b0f66ab-1396fef0c336e6de"]},"geometry":{"type":"LineString","coordinates":[[-83.662514,32.834955],[-83.66252700000001,32.834802]]},"id":"8b44c0b1b0f6fff-13f7beecbc1cdfe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0a8354-17b7fede0335bb57","8f44c0b1b0f6462-13b7fee8a5b5e0de"]},"geometry":{"type":"LineString","coordinates":[[-83.66252700000001,32.834802],[-83.66254400000001,32.834162]]},"id":"8944c0b1b0bffff-17fffee35cbf7272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0a8354-17b7fede0335bb57","8f44c0b1b0ac105-17b6bed22432e2ac"]},"geometry":{"type":"LineString","coordinates":[[-83.66254400000001,32.834162],[-83.662563,32.833537]]},"id":"8a44c0b1b0affff-17f7fed81c8a3b44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0126ea-17befed3611060fe","8f44c0b1b0ac105-17b6bed22432e2ac"]},"geometry":{"type":"LineString","coordinates":[[-83.662563,32.833537],[-83.66256100000001,32.83337]]},"id":"8944c0b1b0bffff-17fefed2c081303a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6625961,32.8328156]},"id":"8f44c0b1b016796-13dffebd720bbbe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b016796-13dffebd720bbbe1","8f44c0b1b0126ea-17befed3611060fe"]},"geometry":{"type":"LineString","coordinates":[[-83.66256100000001,32.83337],[-83.6625961,32.8328156]]},"id":"8a44c0b1b017fff-179fbec8643b4a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b016796-13dffebd720bbbe1","8f44c0b1b016519-139ebeb84ad7f118"]},"geometry":{"type":"LineString","coordinates":[[-83.6625961,32.8328156],[-83.6626044,32.832685000000005]]},"id":"8b44c0b1b016fff-13b6febae5eafed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18ba01-13fffeae3e295d3f","8f44c0b1b016519-139ebeb84ad7f118"]},"geometry":{"type":"LineString","coordinates":[[-83.6626044,32.832685000000005],[-83.6626205,32.8324316]]},"id":"8844c0b1b1fffff-13befeb338ff4eba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18ba01-13fffeae3e295d3f","8f44c0b1b188223-13befea20505ddb4"]},"geometry":{"type":"LineString","coordinates":[[-83.6626205,32.8324316],[-83.66264000000001,32.832123]]},"id":"8a44c0b1b18ffff-139ffea8156c9923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18c11a-13bebe96c46eb4ff","8f44c0b1b188223-13befea20505ddb4"]},"geometry":{"type":"LineString","coordinates":[[-83.66264000000001,32.832123],[-83.66265800000001,32.831504]]},"id":"8a44c0b1b18ffff-13fffe9c683fa8a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18c11a-13bebe96c46eb4ff","8f44c0b1b18cc6b-1396fe96a7062c4e"]},"geometry":{"type":"LineString","coordinates":[[-83.66265800000001,32.831504],[-83.66265820000001,32.831447700000005]]},"id":"8b44c0b1b18cfff-139efe96b0d0843d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b18cc6b-1396fe96a7062c4e","8f44c0b1b1aa611-179ebe962c963b84"]},"geometry":{"type":"LineString","coordinates":[[-83.66265820000001,32.831447700000005],[-83.662659,32.831252]]},"id":"8944c0b1b1bffff-17dfbe966db5b993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b185a59-179fbe96c0f01d5f","8f44c0b1b1aa611-179ebe962c963b84"]},"geometry":{"type":"LineString","coordinates":[[-83.662659,32.831252],[-83.66265800000001,32.830869]]},"id":"8a44c0b1b1affff-1796fe96742a4988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b185a59-179fbe96c0f01d5f","8f44c0b1b1a3856-179efe8f4213b279"]},"geometry":{"type":"LineString","coordinates":[[-83.66265800000001,32.830869],[-83.66267,32.830247]]},"id":"8944c0b1b1bffff-17defe930a7540d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b1a4732-13f7be8909c2fbaa","8f44c0b1b1a3856-179efe8f4213b279"]},"geometry":{"type":"LineString","coordinates":[[-83.66267,32.830247],[-83.66268000000001,32.829544]]},"id":"8a44c0b1b1a7fff-17bebe8c2455fe92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc4315a-13defe70066d68fe","8f44c0b1b1a4732-13f7be8909c2fbaa"]},"geometry":{"type":"LineString","coordinates":[[-83.66268000000001,32.829544],[-83.66272000000001,32.828302]]},"id":"8744c0b1bffffff-13defe7c86b77c3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc4315a-13defe70066d68fe","8f44c0b1bc71a14-17f7be6ec266a4a6"]},"geometry":{"type":"LineString","coordinates":[[-83.66272000000001,32.828302],[-83.662722,32.827112]]},"id":"8944c0b1bc7ffff-17f6fe6f66472367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662727,32.826794]},"id":"8f44c0b1bc7538c-17befe6ba65096b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc7538c-17befe6ba65096b3","8f44c0b1bc71a14-17f7be6ec266a4a6"]},"geometry":{"type":"LineString","coordinates":[[-83.662722,32.827112],[-83.662727,32.826794]]},"id":"8a44c0b1bc77fff-179fbe6d305f796d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc7538c-17befe6ba65096b3","8f44c0b1bd584f1-13d6fe7621b99e8f"]},"geometry":{"type":"LineString","coordinates":[[-83.662727,32.826794],[-83.662718,32.826241],[-83.6627102,32.8258375]]},"id":"8844c0b1bdfffff-13fffe70ad068f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c5527b3-13b7f05f6d73daf2","8f44c0b1c42c022-139ef03da3143a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.668481,32.7893366],[-83.668535,32.7896741]]},"id":"8944c0b1c43ffff-13b6f04e863a8931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66856440000001,32.7898828]},"id":"8f44c0b1c42c288-139ef02b494c1b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c42c022-139ef03da3143a0a","8f44c0b1c42c288-139ef02b494c1b66"]},"geometry":{"type":"LineString","coordinates":[[-83.668535,32.7896741],[-83.66856440000001,32.7898828]]},"id":"8b44c0b1c42cfff-13dfb034723097bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6685848,32.7901295]},"id":"8f44c0b1c428a33-13b6f01e88f84aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c428a33-13b6f01e88f84aec","8f44c0b1c42c288-139ef02b494c1b66"]},"geometry":{"type":"LineString","coordinates":[[-83.66856440000001,32.7898828],[-83.66857060000001,32.7899264],[-83.6685848,32.7901295]]},"id":"8a44c0b1c42ffff-13dff024187ddbd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6685904,32.790209700000005]},"id":"8f44c0b1c428ac1-13dfb01b068c7585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c428a33-13b6f01e88f84aec","8f44c0b1c428ac1-13dfb01b068c7585"]},"geometry":{"type":"LineString","coordinates":[[-83.6685848,32.7901295],[-83.6685904,32.790209700000005]]},"id":"8c44c0b1c428bff-13d6b01cc7cc2aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c428ac1-13dfb01b068c7585","8f44c0b1c42968d-17def0092747f807"]},"geometry":{"type":"LineString","coordinates":[[-83.6685904,32.790209700000005],[-83.668619,32.790619]]},"id":"8a44c0b1c42ffff-13dfb0121cca33c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629613,32.810419200000005]},"id":"8f44c0b18552b72-17b6bdd93c85a648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1842d0c3-17d7fde864ee414d","8f44c0b18552b72-17b6bdd93c85a648"]},"geometry":{"type":"LineString","coordinates":[[-83.662937,32.81127],[-83.662951,32.810881],[-83.6629613,32.810419200000005]]},"id":"8844c0b185fffff-17bffddfeb2d3f8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662963,32.8103417]},"id":"8f44c0b185504aa-17ffbdd82884d5c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b185504aa-17ffbdd82884d5c1","8f44c0b18552b72-17b6bdd93c85a648"]},"geometry":{"type":"LineString","coordinates":[[-83.6629613,32.810419200000005],[-83.662963,32.8103417]]},"id":"8a44c0b18557fff-1797fdd8b4cdc085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629709,32.809986800000004]},"id":"8f44c0b18556b9c-13b7fdd330057564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b185504aa-17ffbdd82884d5c1","8f44c0b18556b9c-13b7fdd330057564"]},"geometry":{"type":"LineString","coordinates":[[-83.662963,32.8103417],[-83.6629709,32.809986800000004]]},"id":"8a44c0b18557fff-1796bdd5b10f6876"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18556923-13bebdd09c97472e","8f44c0b18556b9c-13b7fdd330057564"]},"geometry":{"type":"LineString","coordinates":[[-83.6629709,32.809986800000004],[-83.66297510000001,32.809795300000005]]},"id":"8a44c0b18557fff-13f7fdd1eead512a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18556923-13bebdd09c97472e","8f44c0b18509020-1397bdcd40b47010"]},"geometry":{"type":"LineString","coordinates":[[-83.66297510000001,32.809795300000005],[-83.66298040000001,32.8095571]]},"id":"8b44c0b18509fff-13dfbdcee1e71620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18509020-1397bdcd40b47010","8f44c0b1852b435-13febdb5ceb36dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.66298040000001,32.8095571],[-83.66298300000001,32.809441],[-83.663003,32.809134],[-83.66301800000001,32.808672]]},"id":"8944c0b1853ffff-1396bdc0aaa2e5cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1852e2dd-17bfbdae4173e214","8f44c0b1852b435-13febdb5ceb36dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.66301800000001,32.808672],[-83.66303,32.808188]]},"id":"8a44c0b1852ffff-17d6fdb20ed504cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66303930000001,32.8078057]},"id":"8f44c0b1852e816-17debda87a33fa84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1852e2dd-17bfbdae4173e214","8f44c0b1852e816-17debda87a33fa84"]},"geometry":{"type":"LineString","coordinates":[[-83.66303,32.808188],[-83.66303930000001,32.8078057]]},"id":"8b44c0b1852efff-17d6bdab5fc1cce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66305410000001,32.8072001]},"id":"8f44c0b1852579d-17d6bd9f3458daf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1852579d-17d6bd9f3458daf1","8f44c0b1852e816-17debda87a33fa84"]},"geometry":{"type":"LineString","coordinates":[[-83.66303930000001,32.8078057],[-83.66305410000001,32.8072001]]},"id":"8944c0b1853ffff-1797fda3d9c5e9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18525db3-179efd9a3675f0be","8f44c0b1852579d-17d6bd9f3458daf1"]},"geometry":{"type":"LineString","coordinates":[[-83.66305410000001,32.8072001],[-83.6630621,32.806874]]},"id":"8a44c0b18527fff-17febd9cbe217b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18525db3-179efd9a3675f0be","8f44c0b18524b22-139fbd979488d04d"]},"geometry":{"type":"LineString","coordinates":[[-83.6630621,32.806874],[-83.66306630000001,32.8067024]]},"id":"8b44c0b18524fff-13d6bd98e7e28558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663082,32.806058]},"id":"8f44c0b18c8e296-139efd8dc44275c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18c8e296-139efd8dc44275c0","8f44c0b18524b22-139fbd979488d04d"]},"geometry":{"type":"LineString","coordinates":[[-83.66306630000001,32.8067024],[-83.663082,32.806058]]},"id":"8944c0b18cbffff-13d7bd92b23d8dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18c8e296-139efd8dc44275c0","8f44c0b18c8432c-17f6bd7e20cc8dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.663082,32.806058],[-83.66310700000001,32.804797]]},"id":"8944c0b18cbffff-1396bd85f49d7d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18d9d471-139ebcf5b34b5c1b","8f44c0b18c8432c-17f6bd7e20cc8dd0"]},"geometry":{"type":"LineString","coordinates":[[-83.66310700000001,32.804797],[-83.663111,32.804454],[-83.663121,32.804181],[-83.663138,32.803998],[-83.663183,32.80368],[-83.66325,32.803258],[-83.66332530000001,32.8029929]]},"id":"8844c0b18dfffff-17befd54ade67d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18d8068c-13defc6b6df36934","8f44c0b18d9d471-139ebcf5b34b5c1b"]},"geometry":{"type":"LineString","coordinates":[[-83.66332530000001,32.8029929],[-83.663397,32.802737],[-83.6635466,32.802276500000005]]},"id":"8944c0b18dbffff-13bebcb2a26ed332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18da2909-17dffb1a4a457f4f","8f44c0b18d8068c-13defc6b6df36934"]},"geometry":{"type":"LineString","coordinates":[[-83.6635466,32.802276500000005],[-83.66358070000001,32.8021716],[-83.663728,32.801799],[-83.663801,32.801617],[-83.66408600000001,32.801074]]},"id":"8944c0b18dbffff-17d7fbcea38376a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18da2909-17dffb1a4a457f4f","8f44c0b1ea61011-17f6f75ea8c7f590"]},"geometry":{"type":"LineString","coordinates":[[-83.66408600000001,32.801074],[-83.66425000000001,32.800815],[-83.664674,32.800072],[-83.664968,32.799581],[-83.66504900000001,32.799433],[-83.665615,32.798443]]},"id":"8744c0b1effffff-13bfb938ef1354bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ea61011-17f6f75ea8c7f590","8f44c0b1ea6529b-17f6f70bac5ef9b3"]},"geometry":{"type":"LineString","coordinates":[[-83.665615,32.798443],[-83.6657478,32.7982087]]},"id":"8a44c0b1ea67fff-17bfb7352b009333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6658094,32.798100000000005]},"id":"8f44c0b1ea653a5-179eb6e5271a56f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ea6529b-17f6f70bac5ef9b3","8f44c0b1ea653a5-179eb6e5271a56f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6657478,32.7982087],[-83.6658094,32.798100000000005]]},"id":"8c44c0b1ea653ff-17beb6f865cd67a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ea653a5-179eb6e5271a56f0","8f44c0b1ea65b82-17d6b6bb0b7504cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6658094,32.798100000000005],[-83.6658768,32.7979811]]},"id":"8b44c0b1ea65fff-17f7f6d01b34f5ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb494e2-17b6f6100a471804","8f44c0b1ea65b82-17d6b6bb0b7504cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6658768,32.7979811],[-83.6661504,32.7974983]]},"id":"8844c0b1ebfffff-17bff6658c9e68c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb494e2-17b6f6100a471804","8f44c0b1eb4950c-17fff5f0c56e6eed"]},"geometry":{"type":"LineString","coordinates":[[-83.6661504,32.7974983],[-83.66620040000001,32.79741]]},"id":"8c44c0b1eb495ff-179ef6006546f0ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb4d18c-13f7b55d3f3e9a86","8f44c0b1eb4950c-17fff5f0c56e6eed"]},"geometry":{"type":"LineString","coordinates":[[-83.66620040000001,32.79741],[-83.666269,32.797289],[-83.6664365,32.797006700000004]]},"id":"8a44c0b1eb4ffff-17fef5a78f11308e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb4d18c-13f7b55d3f3e9a86","8f44c0b1eb4d998-139ff52cab35c9d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6664365,32.797006700000004],[-83.66651420000001,32.7968758]]},"id":"8b44c0b1eb4dfff-13def544e29a7771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb6b3b3-13b7f4edf08d3f60","8f44c0b1eb4d998-139ff52cab35c9d4"]},"geometry":{"type":"LineString","coordinates":[[-83.66651420000001,32.7968758],[-83.66661450000001,32.7967068]]},"id":"8944c0b1eb7ffff-13feb50d438b92c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66666090000001,32.796628600000005]},"id":"8f44c0b1eb6b064-1396f4d0f1d6337f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb6b3b3-13b7f4edf08d3f60","8f44c0b1eb6b064-1396f4d0f1d6337f"]},"geometry":{"type":"LineString","coordinates":[[-83.66661450000001,32.7967068],[-83.66666090000001,32.796628600000005]]},"id":"8b44c0b1eb6bfff-139ff4df7dbb7357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667829,32.796409600000004]},"id":"8f44c0b1eb682dd-13feb484b26bbbbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb6b064-1396f4d0f1d6337f","8f44c0b1eb682dd-13feb484b26bbbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.66666090000001,32.796628600000005],[-83.66671000000001,32.796546],[-83.6667829,32.796409600000004]]},"id":"8a44c0b1eb6ffff-13d6f4aa19b83d09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66685840000001,32.7962684]},"id":"8f44c0b1eb6832d-13b7f45580e536a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb6832d-13b7f45580e536a1","8f44c0b1eb682dd-13feb484b26bbbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6667829,32.796409600000004],[-83.66685840000001,32.7962684]]},"id":"8c44c0b1eb683ff-13dff46d23916d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6670737,32.7958656]},"id":"8f44c0b1eb6dd85-13beb3cefaa0850a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1eb6832d-13b7f45580e536a1","8f44c0b1eb6dd85-13beb3cefaa0850a"]},"geometry":{"type":"LineString","coordinates":[[-83.66685840000001,32.7962684],[-83.6670737,32.7958656]]},"id":"8a44c0b1eb6ffff-13b7f412397855af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66713630000001,32.7957486]},"id":"8f44c0b1c79379a-13def3a7de816a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c79379a-13def3a7de816a84","8f44c0b1eb6dd85-13beb3cefaa0850a"]},"geometry":{"type":"LineString","coordinates":[[-83.6670737,32.7958656],[-83.66713630000001,32.7957486]]},"id":"8a44c0b1eb6ffff-1397f3bb68e345c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672655,32.795506800000005]},"id":"8f44c0b1c793c72-13d7f35710e35ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c79379a-13def3a7de816a84","8f44c0b1c793c72-13d7f35710e35ac5"]},"geometry":{"type":"LineString","coordinates":[[-83.66713630000001,32.7957486],[-83.6672655,32.795506800000005]]},"id":"8b44c0b1c793fff-1397f37f7b66d923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673851,32.7952972]},"id":"8f44c0b1c790776-17d6f30c52c1ab10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c790776-17d6f30c52c1ab10","8f44c0b1c793c72-13d7f35710e35ac5"]},"geometry":{"type":"LineString","coordinates":[[-83.6672655,32.795506800000005],[-83.66729000000001,32.795461],[-83.6673851,32.7952972]]},"id":"8a44c0b1c797fff-1396b3321fc60af2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c790776-17d6f30c52c1ab10","8f44c0b1c79495d-17b7b235c95a8135"]},"geometry":{"type":"LineString","coordinates":[[-83.6673851,32.7952972],[-83.66749800000001,32.795108],[-83.66757600000001,32.794967],[-83.6677284,32.7946363]]},"id":"8944c0b1c7bffff-17fef29bd02c48c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c7b45aa-13fff16656e1a4dc","8f44c0b1c79495d-17b7b235c95a8135"]},"geometry":{"type":"LineString","coordinates":[[-83.6677284,32.7946363],[-83.66806030000001,32.793747]]},"id":"8a44c0b1c7b7fff-1797f1ce0cde85d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6682052,32.7933244]},"id":"8f44c0b1c45a434-13f7f10bc6841159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c45a434-13f7f10bc6841159","8f44c0b1c7b45aa-13fff16656e1a4dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66806030000001,32.793747],[-83.6682052,32.7933244]]},"id":"8844c0b1c5fffff-13f7f1390935e708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c45a434-13f7f10bc6841159","8f44c0b1c4eda59-13fff0e0caea94ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6682052,32.7933244],[-83.66827,32.793149],[-83.66827400000001,32.7931325]]},"id":"8944c0b1c47ffff-13b7f0f5b7708393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c45e4f1-1397b0c7fd3e5bcb","8f44c0b1c4eda59-13fff0e0caea94ed"]},"geometry":{"type":"LineString","coordinates":[[-83.66827400000001,32.7931325],[-83.6683137,32.792968900000005]]},"id":"8a44c0b1c45ffff-13deb0d4679531eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c45e4f1-1397b0c7fd3e5bcb","8f44c0b1c45e506-13deb0b5a6a034bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6683137,32.792968900000005],[-83.66834300000001,32.792848]]},"id":"8c44c0b1c45e5ff-13fff0bedebe95c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c45e506-13deb0b5a6a034bc","8f44c0b1c453b2d-139ef08d2334a2e6"]},"geometry":{"type":"LineString","coordinates":[[-83.66834300000001,32.792848],[-83.66838100000001,32.792693],[-83.66840780000001,32.7925637]]},"id":"8944c0b1c47ffff-13f7f0a0902320e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b66e825-13ffbdbde4f665c6","8f44c0b1b66344a-13b7bf40c9fc2b70"]},"geometry":{"type":"LineString","coordinates":[[-83.66238600000001,32.841765],[-83.662445,32.841751],[-83.662518,32.841741],[-83.66258300000001,32.841746],[-83.66265100000001,32.841763],[-83.662677,32.841775000000005],[-83.662801,32.841831],[-83.663005,32.841881]]},"id":"8944c0b1b67ffff-13defe7e7cee9d25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b66e825-13ffbdbde4f665c6","8f44c0b1b66ca0a-13bffc69e072cc2f"]},"geometry":{"type":"LineString","coordinates":[[-83.663005,32.841881],[-83.663549,32.841974]]},"id":"8a44c0b1b66ffff-139ebd13e13dcd23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1b66ca0a-13bffc69e072cc2f","8f44c0b1b29d0c6-13d6f8d82ade728e"]},"geometry":{"type":"LineString","coordinates":[[-83.663549,32.841974],[-83.663938,32.842058],[-83.66419400000001,32.842126],[-83.66444700000001,32.842215],[-83.665011,32.842427]]},"id":"8744c0b1bffffff-13beba9c7f339c40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a265b3c21-13beedd60e6abb96","8f44c0b1b29d0c6-13d6f8d82ade728e"]},"geometry":{"type":"LineString","coordinates":[[-83.665011,32.842427],[-83.665431,32.842613],[-83.66601800000001,32.842911],[-83.666308,32.843072],[-83.666703,32.843339],[-83.666973,32.84355],[-83.66737300000001,32.843836],[-83.66866800000001,32.844782],[-83.66898400000001,32.844991],[-83.66922100000001,32.845125],[-83.66952,32.845259]]},"id":"8544c0a3fffffff-17b6f3494ff8f665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2651c795-13f7a5a201d2f7c1","8f44c0a265b3c21-13beedd60e6abb96"]},"geometry":{"type":"LineString","coordinates":[[-83.66952,32.845259],[-83.66970400000001,32.845332],[-83.670231,32.845484],[-83.671626,32.845865],[-83.67186500000001,32.845906],[-83.67209600000001,32.845937],[-83.672503,32.845962],[-83.67288,32.845964]]},"id":"8844c0a265fffff-13d6b9c6832eb097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2651c795-13f7a5a201d2f7c1","8f44c0a2656a68d-13ffdbeaf2c322cb"]},"geometry":{"type":"LineString","coordinates":[[-83.67288,32.845964],[-83.67322100000001,32.84595],[-83.673472,32.845951],[-83.673569,32.845965],[-83.673687,32.845999],[-83.6738411,32.8460705],[-83.67395970000001,32.8461548],[-83.674189,32.846333],[-83.674479,32.846545],[-83.67521500000001,32.847054],[-83.67568100000001,32.847353000000005],[-83.6768593,32.848018100000004]]},"id":"8844c0a265fffff-179fa0b157aadc5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2656a68d-13ffdbeaf2c322cb","8f44c0a260a32d3-17d7d5eae65af34b"]},"geometry":{"type":"LineString","coordinates":[[-83.6768593,32.848018100000004],[-83.67852400000001,32.848965],[-83.67862050000001,32.849025600000004],[-83.678737,32.849103],[-83.67896300000001,32.84928],[-83.67915400000001,32.849441],[-83.67931700000001,32.84959]]},"id":"8744c0a26ffffff-13deb8d711f2eb73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a260a32d3-17d7d5eae65af34b","8f44c0a260ae629-17f7d54eb20e381c"]},"geometry":{"type":"LineString","coordinates":[[-83.67931700000001,32.84959],[-83.67956690000001,32.8498461]]},"id":"8944c0a260bffff-17b7d59cc82061be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a260aa92a-17bfb5184c6fcbb8","8f44c0a260ae629-17f7d54eb20e381c"]},"geometry":{"type":"LineString","coordinates":[[-83.67956690000001,32.8498461],[-83.679654,32.8499354]]},"id":"8a44c0a260affff-179fb5337d8aef38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a260aa92a-17bfb5184c6fcbb8","8f44c0a260a84ce-179694bda93a88a1"]},"geometry":{"type":"LineString","coordinates":[[-83.679654,32.8499354],[-83.679799,32.850084]]},"id":"8a44c0a260affff-17de94eafc4dd1bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a260ab958-179ff42acea92bde","8f44c0a260a84ce-179694bda93a88a1"]},"geometry":{"type":"LineString","coordinates":[[-83.679799,32.850084],[-83.680034,32.850323]]},"id":"8a44c0a260affff-17d7b474366eb074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a260ab958-179ff42acea92bde","8f44c0a260f6b33-1796b335a89929bd"]},"geometry":{"type":"LineString","coordinates":[[-83.680034,32.850323],[-83.6804262,32.8507243]]},"id":"8844c0a261fffff-179fd3b03cdd2713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a260ced55-179f90d9f1bad895","8f44c0a260f6b33-1796b335a89929bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6804262,32.8507243],[-83.68110800000001,32.851414000000005],[-83.681227,32.851543],[-83.68130400000001,32.851641],[-83.681342,32.851743],[-83.681396,32.851960000000005],[-83.6814348,32.8522175],[-83.68144620000001,32.8523202],[-83.6814511,32.8524045],[-83.6814511,32.852496200000004],[-83.6814413,32.8525806],[-83.68143140000001,32.8526319],[-83.68139210000001,32.8527768]]},"id":"8944c0a260fffff-13f6b17f5da339f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662615,32.842681]},"id":"8f44c0b1b66a6d1-13f7beb1a04ece89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b66a6d1-13f7beb1a04ece89","8f44c0a35936995-1797bc8268c28239"]},"geometry":{"type":"LineString","coordinates":[[-83.662615,32.842681],[-83.6635098,32.842937]]},"id":"8944c0b1b67ffff-13d7bd9a0b1b511f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35935998-17befa7404d9cf96","8f44c0a35936995-1797bc8268c28239"]},"geometry":{"type":"LineString","coordinates":[[-83.6635098,32.842937],[-83.66435200000001,32.843178]]},"id":"8a44c0a35937fff-17defb7b3e7e1463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20586381-13d7e1c9c6b35f53","8f44c0a262c8ae2-13978541e4974928"]},"geometry":{"type":"LineString","coordinates":[[-83.687562,32.861855000000006],[-83.687228,32.861649],[-83.686141,32.860936]]},"id":"8644c0a27ffffff-13b6e387400750ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a262c3236-1796c74a881569f0","8f44c0a262c8ae2-13978541e4974928"]},"geometry":{"type":"LineString","coordinates":[[-83.686141,32.860936],[-83.68570600000001,32.860643],[-83.68554200000001,32.860525],[-83.685308,32.860346]]},"id":"8944c0a262fffff-17d6b648cc088bc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a262c3236-1796c74a881569f0","8f44c0a262c20dc-17b6c86462721825"]},"geometry":{"type":"LineString","coordinates":[[-83.685308,32.860346],[-83.68503000000001,32.860113000000005],[-83.68485700000001,32.859962]]},"id":"8a44c0a262c7fff-179ef7d805c8b375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a262d452b-13b7ea6eee164cae","8f44c0a262c20dc-17b6c86462721825"]},"geometry":{"type":"LineString","coordinates":[[-83.68485700000001,32.859962],[-83.684021,32.859171]]},"id":"8944c0a262fffff-17bf9969a31c5135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a262d452b-13b7ea6eee164cae","8f44c0a2628826e-13d68b7246938ade"]},"geometry":{"type":"LineString","coordinates":[[-83.684021,32.859171],[-83.68360600000001,32.858784]]},"id":"8844c0a263fffff-13befaf096ca76be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2628826e-13d68b7246938ade","8f44c0a2628e31b-13dfec7be9e7c3ed"]},"geometry":{"type":"LineString","coordinates":[[-83.68360600000001,32.858784],[-83.683181,32.858387]]},"id":"8a44c0a2628ffff-13d7fbf71006894c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2628e3a1-13be8c91cb6dc64a","8f44c0a2628e31b-13dfec7be9e7c3ed"]},"geometry":{"type":"LineString","coordinates":[[-83.683181,32.858387],[-83.68314600000001,32.858356]]},"id":"8c44c0a2628e3ff-13d6bc86d426d6e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2628e3a1-13be8c91cb6dc64a","8f44c0a2628300a-13d78d91634be839"]},"geometry":{"type":"LineString","coordinates":[[-83.68314600000001,32.858356],[-83.683006,32.858212],[-83.682737,32.85796]]},"id":"8944c0a262bffff-13bfed10482c20c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2628300a-13d78d91634be839","8f44c0a26283182-13968dba0beb6a76"]},"geometry":{"type":"LineString","coordinates":[[-83.682737,32.85796],[-83.68267200000001,32.857892]]},"id":"8c44c0a262831ff-13bfcda5bd6df8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26294076-17ded02062cdc762","8f44c0a26283182-13968dba0beb6a76"]},"geometry":{"type":"LineString","coordinates":[[-83.68267200000001,32.857892],[-83.682266,32.857526],[-83.681689,32.856974]]},"id":"8944c0a262bffff-17ffdeef4ccf95aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26294076-17ded02062cdc762","8f44c0a26748328-17f691a1680314d0"]},"geometry":{"type":"LineString","coordinates":[[-83.681689,32.856974],[-83.68107300000001,32.8564]]},"id":"8744c0a26ffffff-17b7f0e0e85c95f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26748d9a-17d6b25867a454a6","8f44c0a26748328-17f691a1680314d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68107300000001,32.8564],[-83.6807802,32.856119500000005]]},"id":"8a44c0a2674ffff-179ef1fced4554af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6805619,32.855911]},"id":"8f44c0a2674e112-13d6f2e0d14eb4d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26748d9a-17d6b25867a454a6","8f44c0a2674e112-13d6f2e0d14eb4d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6807802,32.856119500000005],[-83.680599,32.855946],[-83.6805619,32.855911]]},"id":"8b44c0a2674efff-1797f29c8f69f469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2674e112-13d6f2e0d14eb4d2","8f44c0a26743151-1397d3957620224d"]},"geometry":{"type":"LineString","coordinates":[[-83.6805619,32.855911],[-83.6802729,32.8556381]]},"id":"8944c0a2677ffff-13ffb33b27cbdb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26742ac3-1396942dca4daf4e","8f44c0a26743151-1397d3957620224d"]},"geometry":{"type":"LineString","coordinates":[[-83.6802729,32.8556381],[-83.6800292,32.855408100000005]]},"id":"8a44c0a26747fff-13dff3e19445b18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6799525,32.855335700000005]},"id":"8f44c0a26742149-13ded45db658fc6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26742ac3-1396942dca4daf4e","8f44c0a26742149-13ded45db658fc6e"]},"geometry":{"type":"LineString","coordinates":[[-83.6800292,32.855408100000005],[-83.6799525,32.855335700000005]]},"id":"8b44c0a26742fff-13fff445c1a92b06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67979290000001,32.855185]},"id":"8f44c0a26742c0c-13feb4c17b68df19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26742149-13ded45db658fc6e","8f44c0a26742c0c-13feb4c17b68df19"]},"geometry":{"type":"LineString","coordinates":[[-83.6799525,32.855335700000005],[-83.67979290000001,32.855185]]},"id":"8b44c0a26742fff-13bfd48f9f3812c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26755ab2-139fb53932899ba5","8f44c0a26742c0c-13feb4c17b68df19"]},"geometry":{"type":"LineString","coordinates":[[-83.67979290000001,32.855185],[-83.679759,32.855153],[-83.6796013,32.855007400000005]]},"id":"8944c0a2677ffff-13d794fd4dbf1d2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6794861,32.854901000000005]},"id":"8f44c0a26755c4c-13dfb58135fba55f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26755ab2-139fb53932899ba5","8f44c0a26755c4c-13dfb58135fba55f"]},"geometry":{"type":"LineString","coordinates":[[-83.6796013,32.855007400000005],[-83.6794861,32.854901000000005]]},"id":"8b44c0a26755fff-13fef55d3a2e40ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6792405,32.854674200000005]},"id":"8f44c0a2675414d-13bff61ab48a6830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26755c4c-13dfb58135fba55f","8f44c0a2675414d-13bff61ab48a6830"]},"geometry":{"type":"LineString","coordinates":[[-83.6794861,32.854901000000005],[-83.6792405,32.854674200000005]]},"id":"8a44c0a26757fff-1396d5cdf82933a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26754145-13b7d625a591c507","8f44c0a2675414d-13bff61ab48a6830"]},"geometry":{"type":"LineString","coordinates":[[-83.6792405,32.854674200000005],[-83.67922300000001,32.854658]]},"id":"8d44c0a2675417f-13b6d6202ad66c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6791443,32.854587200000005]},"id":"8f44c0a26754132-13979656de37e763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26754132-13979656de37e763","8f44c0a26754145-13b7d625a591c507"]},"geometry":{"type":"LineString","coordinates":[[-83.67922300000001,32.854658],[-83.6791443,32.854587200000005]]},"id":"8c44c0a267541ff-139fb63e460abf7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26754132-13979656de37e763","8f44c0a26709141-17f6d706a18e4d53"]},"geometry":{"type":"LineString","coordinates":[[-83.6791443,32.854587200000005],[-83.678863,32.854334]]},"id":"8944c0a2677ffff-13b7f6aec086e739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26709141-17f6d706a18e4d53","8f44c0a26708c06-17be98533ca56c81"]},"geometry":{"type":"LineString","coordinates":[[-83.678863,32.854334],[-83.678352,32.853876],[-83.6783309,32.8538561]]},"id":"8a44c0a2670ffff-17d797ad1ed0700f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6781569,32.853695800000004]},"id":"8f44c0a2670e14d-17d7f8bff50e64d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2670e14d-17d7f8bff50e64d0","8f44c0a26708c06-17be98533ca56c81"]},"geometry":{"type":"LineString","coordinates":[[-83.6783309,32.8538561],[-83.67831600000001,32.853842],[-83.6781569,32.853695800000004]]},"id":"8a44c0a2670ffff-179ff8898be9dbe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2670e14d-17d7f8bff50e64d0","8f44c0a2670ec41-179799068369a317"]},"geometry":{"type":"LineString","coordinates":[[-83.6781569,32.853695800000004],[-83.678044,32.853592]]},"id":"8b44c0a2670efff-17b7f8e3434bd3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779466,32.8535052]},"id":"8f44c0a2670ed8c-17f6d9436da722ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2670ed8c-17f6d9436da722ff","8f44c0a2670ec41-179799068369a317"]},"geometry":{"type":"LineString","coordinates":[[-83.678044,32.853592],[-83.6779466,32.8535052]]},"id":"8c44c0a2670edff-17fff924fd0311e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67771490000001,32.853298800000005]},"id":"8f44c0a26703115-17dfd9d4357b8b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26703115-17dfd9d4357b8b21","8f44c0a2670ed8c-17f6d9436da722ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6779466,32.8535052],[-83.67771490000001,32.853298800000005]]},"id":"8a44c0a26707fff-17b6d98bd9311483"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67752150000001,32.8531265]},"id":"8f44c0a26702ac3-17f69a4d1e4df1a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26703115-17dfd9d4357b8b21","8f44c0a26702ac3-17f69a4d1e4df1a2"]},"geometry":{"type":"LineString","coordinates":[[-83.67771490000001,32.853298800000005],[-83.67752150000001,32.8531265]]},"id":"8a44c0a26707fff-17bffa10a632aa72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67666,32.852359]},"id":"8f44c0a2671410b-1396fc67866f5c51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2671410b-1396fc67866f5c51","8f44c0a26702ac3-17f69a4d1e4df1a2"]},"geometry":{"type":"LineString","coordinates":[[-83.67752150000001,32.8531265],[-83.67666,32.852359]]},"id":"8944c0a2673ffff-1796db5a50494567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2671410b-1396fc67866f5c51","8f44c0a26714cac-13defcc3b226828e"]},"geometry":{"type":"LineString","coordinates":[[-83.67666,32.852359],[-83.6765125,32.8522406]]},"id":"8b44c0a26714fff-13fffc95afcafec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26714cac-13defcc3b226828e","8f44c0a26449070-13f7fd40d6f95b88"]},"geometry":{"type":"LineString","coordinates":[[-83.6765125,32.8522406],[-83.6763123,32.8520798]]},"id":"8944c0a2673ffff-139ebd024d338144"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26448306-13d6ddfd43c6ce95","8f44c0a26449070-13f7fd40d6f95b88"]},"geometry":{"type":"LineString","coordinates":[[-83.6763123,32.8520798],[-83.676142,32.851943],[-83.6760108,32.8518221]]},"id":"8a44c0a2644ffff-1396fda0662e83a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2644e006-13be9f1a7bf4a2c6","8f44c0a26448306-13d6ddfd43c6ce95"]},"geometry":{"type":"LineString","coordinates":[[-83.6760108,32.8518221],[-83.6755545,32.851401700000004]]},"id":"8a44c0a2644ffff-13d7fe8be34fb363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2644e006-13be9f1a7bf4a2c6","8f44c0a26455018-17fea1c4a73e29dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6755545,32.851401700000004],[-83.67532200000001,32.851196],[-83.674463,32.850448]]},"id":"8944c0a2647ffff-1797b06f230b0109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26455018-17fea1c4a73e29dd","8f44c0a264080b0-13f7e48a00547064"]},"geometry":{"type":"LineString","coordinates":[[-83.674463,32.850448],[-83.67332800000001,32.849442]]},"id":"8844c0a265fffff-17bfa3275ed64a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26402472-139ea75be8adcae6","8f44c0a264080b0-13f7e48a00547064"]},"geometry":{"type":"LineString","coordinates":[[-83.67332800000001,32.849442],[-83.672936,32.849086],[-83.672605,32.848799],[-83.67236700000001,32.848599],[-83.672173,32.84848]]},"id":"8944c0a2643ffff-13bee5eb0c56f685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26410c56-13d6a932847daacc","8f44c0a26402472-139ea75be8adcae6"]},"geometry":{"type":"LineString","coordinates":[[-83.672173,32.84848],[-83.67142000000001,32.848132]]},"id":"8944c0a2643ffff-13bfe8473afad149"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67063,32.847776]},"id":"8f44c0a2658b6f2-17f6ab20488b39f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26410c56-13d6a932847daacc","8f44c0a2658b6f2-17f6ab20488b39f6"]},"geometry":{"type":"LineString","coordinates":[[-83.67142000000001,32.848132],[-83.67063,32.847776]]},"id":"8844c0a265fffff-13d7ea2968e8521c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2658b6f2-17f6ab20488b39f6","8f44c0a2659935d-17dfec777b440513"]},"geometry":{"type":"LineString","coordinates":[[-83.67063,32.847776],[-83.6700809,32.847529200000004]]},"id":"8a44c0a264a7fff-1796ebcbeb91983b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2659935d-17dfec777b440513","8f44c0a3596895a-1796f0916763039a"]},"geometry":{"type":"LineString","coordinates":[[-83.6700809,32.847529200000004],[-83.6691469,32.847112200000005],[-83.668401,32.846807000000005]]},"id":"8844c0a265fffff-17f6ae82ba102d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6681083,32.8466922]},"id":"8f44c0a3596ea5a-17beb14859ea98ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3596ea5a-17beb14859ea98ff","8f44c0a3596895a-1796f0916763039a"]},"geometry":{"type":"LineString","coordinates":[[-83.668401,32.846807000000005],[-83.6681083,32.8466922]]},"id":"8a44c0a3596ffff-17f6b0ece5f7dd1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35944b45-17fff3300258d755","8f44c0a3596ea5a-17beb14859ea98ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6681083,32.8466922],[-83.66784650000001,32.8465896],[-83.667567,32.84648],[-83.66732800000001,32.846387]]},"id":"8944c0a3597ffff-17dfb23c24491b0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35944b45-17fff3300258d755","8f44c0a35944b86-17fff386e2a9084e"]},"geometry":{"type":"LineString","coordinates":[[-83.66732800000001,32.846387],[-83.66718900000001,32.846355]]},"id":"8c44c0a35944bff-17f7f35b779e5aa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3597354b-13f6f62b21be9235","8f44c0a35944b86-17fff386e2a9084e"]},"geometry":{"type":"LineString","coordinates":[[-83.66718900000001,32.846355],[-83.66704,32.846317],[-83.666667,32.846249],[-83.66610700000001,32.846167]]},"id":"8944c0a3597ffff-17bff4d7ea41cd89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3597354b-13f6f62b21be9235","8f44c0a3590bb9b-13beb8d00a1876e9"]},"geometry":{"type":"LineString","coordinates":[[-83.66610700000001,32.846167],[-83.665519,32.846089],[-83.665024,32.846049]]},"id":"8844c0a359fffff-13dfb77d265cf45c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3590bb9b-13beb8d00a1876e9","8f44c0a35919651-139fbb5504feb44f"]},"geometry":{"type":"LineString","coordinates":[[-83.665024,32.846049],[-83.66399200000001,32.846024]]},"id":"8944c0a3593ffff-13b6fa1284fe7c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671706,32.795219100000004]},"id":"8f44c0b1c790498-1797f3926d1d9292"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c790776-17d6f30c52c1ab10","8f44c0b1c790498-1797f3926d1d9292"]},"geometry":{"type":"LineString","coordinates":[[-83.6673851,32.7952972],[-83.6671706,32.795219100000004]]},"id":"8a44c0b1c797fff-17bef34f67980a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6665146,32.794980200000005]},"id":"8f44c0b1eb650b2-17feb52c6d74d75d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb650b2-17feb52c6d74d75d","8f44c0b1c790498-1797f3926d1d9292"]},"geometry":{"type":"LineString","coordinates":[[-83.6671706,32.795219100000004],[-83.6665146,32.794980200000005]]},"id":"8744c0b1cffffff-17dff45f6dd2c350"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57918210000001,32.8579765]},"id":"8f44c0b88ac1116-13dfda633be572d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88ac1116-13dfda633be572d2","8f44c0b88ac1018-1397ea63e45d86cb"]},"geometry":{"type":"LineString","coordinates":[[-83.57918210000001,32.8579765],[-83.579181,32.858067000000005]]},"id":"8c44c0b88ac11ff-13f7aa638e918949"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88ac1018-1397ea63e45d86cb","8f44c0b88aceab6-1397aa6701dca4bf"]},"geometry":{"type":"LineString","coordinates":[[-83.579181,32.858067000000005],[-83.579176,32.858477]]},"id":"8944c0b88afffff-13978a657fb3a2a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628848,32.813285900000004]},"id":"8f44c0b18455071-13bfbe09030f443e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18455071-13bfbe09030f443e","8f44c0b184554d6-13b7bebc70a83076"]},"geometry":{"type":"LineString","coordinates":[[-83.6628848,32.813285900000004],[-83.66271250000001,32.813285900000004],[-83.6625977,32.8132922]]},"id":"8b44c0b18455fff-13b6be62cffa4873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18452bb4-13ffc02d213967da","8f44c0b184554d6-13b7bebc70a83076"]},"geometry":{"type":"LineString","coordinates":[[-83.6625977,32.8132922],[-83.6621171,32.8132904],[-83.66200780000001,32.8134044]]},"id":"8a44c0b18457fff-13bfff8046764e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18452bb4-13ffc02d213967da","8f44c0b184521b5-13f7e0a017440ace"]},"geometry":{"type":"LineString","coordinates":[[-83.66200780000001,32.8134044],[-83.6618239,32.813401400000004]]},"id":"8b44c0b18452fff-13fed0669b170bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184525a3-13f6e10d6bafd215","8f44c0b184521b5-13f7e0a017440ace"]},"geometry":{"type":"LineString","coordinates":[[-83.6618239,32.813401400000004],[-83.66164900000001,32.813396600000004]]},"id":"8b44c0b18452fff-13f6e0d6bb3b3f4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e19ad-13f6d172d74b628e","8f44c0b184525a3-13f6e10d6bafd215"]},"geometry":{"type":"LineString","coordinates":[[-83.66164900000001,32.813396600000004],[-83.66148670000001,32.8133921]]},"id":"8a44c0b184e7fff-13f7c14013684f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e1c34-13fed1e90a484a71","8f44c0b184e19ad-13f6d172d74b628e"]},"geometry":{"type":"LineString","coordinates":[[-83.66148670000001,32.8133921],[-83.66129760000001,32.813386900000005]]},"id":"8b44c0b184e1fff-13f6f1adfc733857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6611288,32.8133822]},"id":"8f44c0b184e0222-13ffe252828c932d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e0222-13ffe252828c932d","8f44c0b184e1c34-13fed1e90a484a71"]},"geometry":{"type":"LineString","coordinates":[[-83.66129760000001,32.813386900000005],[-83.6611288,32.8133822]]},"id":"8a44c0b184e7fff-13ffe21dc512a6f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609399,32.813377]},"id":"8f44c0b184e0604-13fee2c898c0f1df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e0604-13fee2c898c0f1df","8f44c0b184e0222-13ffe252828c932d"]},"geometry":{"type":"LineString","coordinates":[[-83.6611288,32.8133822],[-83.6609399,32.813377]]},"id":"8b44c0b184e0fff-13fec28d9375862d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65955430000001,32.813331000000005]},"id":"8f44c0b184f3d25-13dfe62a938aa0e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e0604-13fee2c898c0f1df","8f44c0b184f3d25-13dfe62a938aa0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6609399,32.813377],[-83.660776,32.813340000000004],[-83.65955430000001,32.813331000000005]]},"id":"8944c0b184fffff-13d6f4787a9033fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184f3d25-13dfe62a938aa0e0","8f44c0b18489b11-13bfe7a3afd40761"]},"geometry":{"type":"LineString","coordinates":[[-83.65955430000001,32.813331000000005],[-83.658951,32.813305]]},"id":"8944c0b184fffff-13d7c6e7139208c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e0604-13fee2c898c0f1df","8f44c0b184554d6-13b7bebc70a83076"]},"geometry":{"type":"LineString","coordinates":[[-83.6625977,32.8132922],[-83.662616,32.812961300000005],[-83.6626267,32.8126412],[-83.6625355,32.8125781],[-83.66208490000001,32.8125601],[-83.6611086,32.8125465],[-83.6609906,32.8125826],[-83.6609399,32.813377]]},"id":"8844c0b185fffff-13f7f0c4d6116870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e0604-13fee2c898c0f1df","8f44c0b184e3003-17bfc2d960df2083"]},"geometry":{"type":"LineString","coordinates":[[-83.6609399,32.813377],[-83.66091300000001,32.8136924]]},"id":"8a44c0b184e7fff-17dff2d10d958033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e3003-17bfc2d960df2083","8f44c0b184c591c-17bfd2df6012e943"]},"geometry":{"type":"LineString","coordinates":[[-83.66091300000001,32.8136924],[-83.66090340000001,32.8139217]]},"id":"8944c0b184fffff-17f7f2dc6497d3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c591c-17bfd2df6012e943","8f44c0b184c5918-17d6d2df8348e4a1"]},"geometry":{"type":"LineString","coordinates":[[-83.66090340000001,32.8139217],[-83.6609032,32.8139273]]},"id":"8e44c0b184c591f-17bed2df798fee8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c520b-17b7d2e9284119c3","8f44c0b184c5918-17d6d2df8348e4a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6609032,32.8139273],[-83.66088780000001,32.8142961]]},"id":"8b44c0b184c5fff-17b7d2e451e10223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6608817,32.8144413]},"id":"8f44c0b184ea491-1797d2ecff946795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ea491-1797d2ecff946795","8f44c0b184c520b-17b7d2e9284119c3"]},"geometry":{"type":"LineString","coordinates":[[-83.66088780000001,32.8142961],[-83.6608817,32.8144413]]},"id":"8a44c0b184c7fff-17d6f2eb006a35b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6606472,32.812731400000004]},"id":"8f44c0b184e6d70-13d7e37f8381f66d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e6d70-13d7e37f8381f66d","8f44c0b184f3d25-13dfe62a938aa0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6606472,32.812731400000004],[-83.6597782,32.812677300000004],[-83.6596495,32.812731400000004],[-83.6595636,32.812853100000005],[-83.65955430000001,32.813331000000005]]},"id":"8944c0b184fffff-139ff5436bd6e79a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184f3776-1797d62e22343ad0","8f44c0b184f3d25-13dfe62a938aa0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.65955430000001,32.813331000000005],[-83.65954860000001,32.8136565]]},"id":"8b44c0b184f3fff-17b7e62c502c4eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184f3776-1797d62e22343ad0","8f44c0b184c250d-1797c5d8e9b1a705"]},"geometry":{"type":"LineString","coordinates":[[-83.65954860000001,32.8136565],[-83.65953680000001,32.814079400000004],[-83.6596779,32.8141292],[-83.65968500000001,32.814262]]},"id":"8944c0b184fffff-17f7e618ef7e2e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea5686b-17befda17e9a3d63","8f44c0b1ea546de-13b6bd3ce14f7512"]},"geometry":{"type":"LineString","coordinates":[[-83.66321140000001,32.7987555],[-83.6631361,32.7987181],[-83.66306660000001,32.7986547],[-83.66305050000001,32.798564500000005]]},"id":"8a44c0b1ea57fff-1396bd7caf96f145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ea5686b-17befda17e9a3d63","8f44c0b1ea546de-13b6bd3ce14f7512"]},"geometry":{"type":"LineString","coordinates":[[-83.66305050000001,32.798564500000005],[-83.663131,32.7984924],[-83.66323820000001,32.7984789],[-83.6633455,32.7984969],[-83.66336700000001,32.7985826],[-83.6633348,32.7986637],[-83.66321140000001,32.7987555]]},"id":"8a44c0b1ea57fff-17d7bd22dbfe3d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6789832,32.8136938]},"id":"8f44c0b18a188c1-17beb6bb8b433c40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a188c1-17beb6bb8b433c40","8f44c0b18a18226-17be96b92ac3a578"]},"geometry":{"type":"LineString","coordinates":[[-83.678987,32.8138889],[-83.6789832,32.8136938]]},"id":"8b44c0b18a18fff-17ffb6ba5c52a576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67897070000001,32.813064600000004]},"id":"8f44c0b18a0268e-13b7f6c35d7f4b4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a188c1-17beb6bb8b433c40","8f44c0b18a0268e-13b7f6c35d7f4b4e"]},"geometry":{"type":"LineString","coordinates":[[-83.6789832,32.8136938],[-83.67897070000001,32.813064600000004]]},"id":"8944c0b18a3ffff-13fe96bf6da56dca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68075400000001,32.8130273]},"id":"8f44c0b18a286b4-139e9268c4655ba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a286b4-139e9268c4655ba5","8f44c0b18a0268e-13b7f6c35d7f4b4e"]},"geometry":{"type":"LineString","coordinates":[[-83.67897070000001,32.813064600000004],[-83.6789615,32.8125956],[-83.6786385,32.812335700000006],[-83.67851950000001,32.8122137],[-83.6785919,32.8121285],[-83.67873540000001,32.812150800000005],[-83.67880910000001,32.8122678],[-83.6804292,32.8122453],[-83.6806438,32.812272300000004],[-83.6807081,32.8123535],[-83.6806985,32.812929000000004],[-83.68075400000001,32.8130273]]},"id":"8944c0b18a3ffff-139fb543b72d5c79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68077930000001,32.8138294]},"id":"8f44c0b18a0d069-1797f258f28f953f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a0d069-1797f258f28f953f","8f44c0b18a286b4-139e9268c4655ba5"]},"geometry":{"type":"LineString","coordinates":[[-83.68075400000001,32.8130273],[-83.68081570000001,32.8131368],[-83.6808307,32.8136499],[-83.680794,32.8138142],[-83.68077930000001,32.8138294]]},"id":"8944c0b18a3ffff-1797b24322a8f6fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a09c42-17beb2f86a38c079","8f44c0b18a0d069-1797f258f28f953f"]},"geometry":{"type":"LineString","coordinates":[[-83.68077930000001,32.8138294],[-83.68052420000001,32.8140939]]},"id":"8a44c0b18a0ffff-17d692a8a45c2172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6580524,32.802598800000005]},"id":"8f44c0b1e2257a3-139ec9d541ff5283"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e2257a3-139ec9d541ff5283","8f44c0b1e221026-13f6d9c7adf97921"]},"geometry":{"type":"LineString","coordinates":[[-83.6580742,32.8029285],[-83.6580524,32.802598800000005]]},"id":"8a44c0b1e227fff-13ffd9ce76fc9172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6584203,32.801656200000004]},"id":"8f44c0b1e308002-17dfe8ef50ad5772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e308002-17dfe8ef50ad5772","8f44c0b1e2257a3-139ec9d541ff5283"]},"geometry":{"type":"LineString","coordinates":[[-83.6580524,32.802598800000005],[-83.6580404,32.8024172],[-83.6584203,32.801656200000004]]},"id":"8844c0b1e3fffff-13fee97a534335c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e308002-17dfe8ef50ad5772","8f44c0b1e32a8e6-17fed8171094e634"]},"geometry":{"type":"LineString","coordinates":[[-83.6584203,32.801656200000004],[-83.6584478,32.801601000000005],[-83.6587624,32.8008133],[-83.65876630000001,32.8006881]]},"id":"8944c0b1e33ffff-179fe87625ee2195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6530353,32.8023133]},"id":"8f44c0b1e39a5b1-13f7d614ffd9c2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e39a5b1-13f7d614ffd9c2fa","8f44c0b1e3930e1-17dff60e412a2122"]},"geometry":{"type":"LineString","coordinates":[[-83.6530353,32.8023133],[-83.653046,32.8016786]]},"id":"8944c0b1e3bffff-139fd61195ce468f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6530621,32.800989200000004]},"id":"8f44c0b1e390d13-17bed604385c8d84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e3930e1-17dff60e412a2122","8f44c0b1e390d13-17bed604385c8d84"]},"geometry":{"type":"LineString","coordinates":[[-83.653046,32.8016786],[-83.6530621,32.800989200000004]]},"id":"8a44c0b1e397fff-1797f60938d81c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65198930000001,32.8022907]},"id":"8f44c0b1e76a02b-13d7f8a2b28e968b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e76ec24-17dfd8921b3f5bf8","8f44c0b1e76a02b-13d7f8a2b28e968b"]},"geometry":{"type":"LineString","coordinates":[[-83.65198930000001,32.8022907],[-83.65201590000001,32.8016565]]},"id":"8944c0b1e77ffff-1397d89a630c8451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652022,32.8014166]},"id":"8f44c0b1e76140a-17b7f88e436e8112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e76140a-17b7f88e436e8112","8f44c0b1e76ec24-17dfd8921b3f5bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.65201590000001,32.8016565],[-83.652022,32.8014166]]},"id":"8a44c0b1e767fff-1796f890233cace4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16cd4124-17d7b267c225f9ba","8f44c0a16ce0972-1397dd7303318a55"]},"geometry":{"type":"LineString","coordinates":[[-83.57589800000001,32.885837],[-83.5763491,32.8856599],[-83.57666660000001,32.8855146],[-83.57685760000001,32.8854503],[-83.57707380000001,32.885413400000004],[-83.57739790000001,32.885402500000005],[-83.5777285,32.8853723],[-83.577928,32.885327700000005]]},"id":"8944c0a16cfffff-1797bff7dd5b2140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a16c0daf1-1397aa7829af552a","8f44c0a16ce0972-1397dd7303318a55"]},"geometry":{"type":"LineString","coordinates":[[-83.577928,32.885327700000005],[-83.578534,32.8849269],[-83.57914860000001,32.8844906]]},"id":"8844c0a16dfffff-139febf36bdf8381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a168a1b13-139f7c1f312e1a09","8f44c0a16c0daf1-1397aa7829af552a"]},"geometry":{"type":"LineString","coordinates":[[-83.57914860000001,32.8844906],[-83.5795957,32.8841507],[-83.580087,32.8839593],[-83.58052260000001,32.883912],[-83.5813595,32.8841192],[-83.5818959,32.8843264],[-83.58246460000001,32.8847679],[-83.5829152,32.8851463],[-83.5839773,32.8852094],[-83.58502530000001,32.8843168]]},"id":"8744c0a16ffffff-13b7a321c51186c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a168a1b13-139f7c1f312e1a09","8f44c0b8964a718-17b7fafec6876d24"]},"geometry":{"type":"LineString","coordinates":[[-83.58502530000001,32.8843168],[-83.58523170000001,32.884030700000004],[-83.5852917,32.883914700000005],[-83.5853412,32.8837968],[-83.5853852,32.883666000000005],[-83.58541500000001,32.8835336],[-83.5854298,32.8833306],[-83.5854108,32.8831326],[-83.5853381,32.8827459],[-83.58522190000001,32.881956800000005],[-83.5850288,32.881173000000004],[-83.5850609,32.8806504],[-83.58539350000001,32.880317000000005],[-83.5854868,32.8802424]]},"id":"8544c0a3fffffff-179f7b9a09f9c813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58877650000001,32.880475100000005]},"id":"8f44c0a169202e3-17bff2f6b31e298b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8964a718-17b7fafec6876d24","8f44c0a169202e3-17bff2f6b31e298b"]},"geometry":{"type":"LineString","coordinates":[[-83.5854868,32.8802424],[-83.5856188,32.8801368],[-83.58697070000001,32.8798935],[-83.58734940000001,32.879813],[-83.58770890000001,32.8797944],[-83.5879101,32.8798243],[-83.5880968,32.879891400000005],[-83.58825540000001,32.879991000000004],[-83.58877650000001,32.880475100000005]]},"id":"8744c0b89ffffff-179776d2fa808bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62899940000001,32.8536395]},"id":"8f44c0a30cf60da-17b7b0c36f761cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30cf60da-17b7b0c36f761cf1","8f44c0a30caa2e9-17f77226d8eed8a6"]},"geometry":{"type":"LineString","coordinates":[[-83.62899940000001,32.8536395],[-83.62843070000001,32.853130300000004]]},"id":"8844c0a30dfffff-1797917512bcb195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a30caa2e9-17f77226d8eed8a6","8f44c0a30c84ce3-1397545ec92325c2"]},"geometry":{"type":"LineString","coordinates":[[-83.62843070000001,32.853130300000004],[-83.62816790000001,32.8528509],[-83.6280177,32.8526165],[-83.627522,32.8521492]]},"id":"8944c0a30cbffff-13bf333b8b09dced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32bb026e-13f7ec21eb4fca65","8f44c0a32bb2ace-13f76d40eafe1a17"]},"geometry":{"type":"LineString","coordinates":[[-83.617789,32.862347],[-83.6176245,32.8623354],[-83.6175762,32.862327],[-83.61750210000001,32.8623173],[-83.6174129,32.8623266],[-83.61732980000001,32.8623478]]},"id":"8a44c0a32bb7fff-13ffecb2065aabb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61686850000001,32.8624613]},"id":"8f44c0a328c9acd-13bf7e6139c17b53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328c9acd-13bf7e6139c17b53","8f44c0a32bb2ace-13f76d40eafe1a17"]},"geometry":{"type":"LineString","coordinates":[[-83.61732980000001,32.8623478],[-83.6172633,32.8623558],[-83.6171731,32.862363900000005],[-83.61708490000001,32.8623867],[-83.61686850000001,32.8624613]]},"id":"8944c0a32bbffff-13976dd2c7e791e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ccdcd3-13d74562d23ee120","8f44c0a32ccd8e0-13bfd4d3b88e437c"]},"geometry":{"type":"LineString","coordinates":[[-83.6074451,32.861032],[-83.6075655,32.861025000000005],[-83.60762650000001,32.8610222],[-83.60767410000001,32.8610205]]},"id":"8b44c0a32ccdfff-13bf551b4aef3ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ccd8e0-13bfd4d3b88e437c","8f44c0a32ce8461-17f744c29e69a1fb"]},"geometry":{"type":"LineString","coordinates":[[-83.60767410000001,32.8610205],[-83.6076967,32.860978700000004],[-83.6076998,32.860939300000005],[-83.6077061,32.860834600000004],[-83.60770070000001,32.860474100000005],[-83.6077015,32.8602736]]},"id":"8944c0a32cfffff-17d764c2b0a9233e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cea856-17f74558e62a2a63","8f44c0a32ce8461-17f744c29e69a1fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6077015,32.8602736],[-83.6076582,32.8602711],[-83.60759110000001,32.8602648],[-83.607461,32.8602624]]},"id":"8a44c0a32ceffff-17f7c50dbb25d373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6045964,32.860924700000005]},"id":"8f44c0a32528858-17fffc5743c19df5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6065816,32.8604508]},"id":"8f44c0a32cc14b3-17d7c77e88e3a775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32528858-17fffc5743c19df5","8f44c0a32cc14b3-17d7c77e88e3a775"]},"geometry":{"type":"LineString","coordinates":[[-83.6045964,32.860924700000005],[-83.60472150000001,32.8608872],[-83.6048396,32.860840800000005],[-83.60513660000001,32.860749000000006],[-83.60536900000001,32.860725],[-83.6055695,32.8607249],[-83.605658,32.8607241],[-83.6057749,32.8607174],[-83.60588650000001,32.860693500000004],[-83.6059733,32.8606665],[-83.6061988,32.860579],[-83.6064401,32.8604876],[-83.6065816,32.8604508]]},"id":"8744c0a32ffffff-17f769e92c51361a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc1025-17d766c4bcb3fb38","8f44c0a32cc14b3-17d7c77e88e3a775"]},"geometry":{"type":"LineString","coordinates":[[-83.6065816,32.8604508],[-83.60659600000001,32.8604471],[-83.60681360000001,32.8604435],[-83.6068789,32.8604438]]},"id":"8a44c0a32cc7fff-17d77721c4084f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6071005,32.8604448]},"id":"8f44c0a32cc1b70-17d7463a3d2d02bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc1025-17d766c4bcb3fb38","8f44c0a32cc1b70-17d7463a3d2d02bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6068789,32.8604438],[-83.6071005,32.8604448]]},"id":"8b44c0a32cc1fff-17d7f67f7fb6c497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60718630000001,32.8604452]},"id":"8f44c0a32cea784-17d74604957f097a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc1b70-17d7463a3d2d02bc","8f44c0a32cea784-17d74604957f097a"]},"geometry":{"type":"LineString","coordinates":[[-83.6071005,32.8604448],[-83.60718630000001,32.8604452]]},"id":"8944c0a32cfffff-17d7661f62135ea2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cea784-17d74604957f097a","8f44c0a32cea323-17dfe55f56bec6fa"]},"geometry":{"type":"LineString","coordinates":[[-83.60718630000001,32.8604452],[-83.60726190000001,32.8604441],[-83.60733640000001,32.860443000000004],[-83.6074507,32.8604414]]},"id":"8b44c0a32ceafff-17d755b1f206eea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6160746,32.8618034]},"id":"8f44c0a328ce32a-13b7305164256bdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61604150000001,32.8620778]},"id":"8f44c0a328cab31-13dfb06613511d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328ce32a-13b7305164256bdf","8f44c0a328cab31-13dfb06613511d58"]},"geometry":{"type":"LineString","coordinates":[[-83.6160746,32.8618034],[-83.61604150000001,32.8620778]]},"id":"8a44c0a328cffff-13fff05bb4b6ca99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61617910000001,32.864105]},"id":"8f44c0a32168018-17d7b0101aa62653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328cab31-13dfb06613511d58","8f44c0a32168018-17d7b0101aa62653"]},"geometry":{"type":"LineString","coordinates":[[-83.61604150000001,32.8620778],[-83.6160078,32.862354],[-83.6159679,32.8624689],[-83.61588660000001,32.8627178],[-83.6158539,32.8631033],[-83.6158197,32.8632757],[-83.6157498,32.8634755],[-83.6157342,32.863564100000005],[-83.61574560000001,32.8636551],[-83.6157836,32.863777],[-83.6158328,32.863857800000005],[-83.6158862,32.8639105],[-83.61602090000001,32.8640033],[-83.61617910000001,32.864105]]},"id":"8744c0a32ffffff-17f770c03539417c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178196,32.8611048]},"id":"8f44c0a3285ac25-13ffac0ecf60a98a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3285ac25-13ffac0ecf60a98a","8f44c0a328ed761-13d7acd30da9e6d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6178196,32.8611048],[-83.61755790000001,32.8611002],[-83.6175056,32.861068]]},"id":"8844c0a329fffff-13ffec733f5bca52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328e9803-13dfbcd8c8ad70d9","8f44c0a328ed761-13d7acd30da9e6d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6175056,32.861068],[-83.617514,32.8608459],[-83.61750740000001,32.8608016],[-83.6174874,32.8607724],[-83.6174326,32.860751300000004],[-83.6169919,32.86074],[-83.61693840000001,32.8607542],[-83.6169222,32.860794],[-83.6169115,32.861460900000004],[-83.6169323,32.8614945],[-83.61697790000001,32.8615208],[-83.6174155,32.8615298],[-83.61745950000001,32.8615122],[-83.6174862,32.861474300000005],[-83.61749640000001,32.8612555]]},"id":"8a44c0a328effff-13ff6d9badb96f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6178163,32.8612155]},"id":"8f44c0a3285a1b0-13b7bc10d1c37a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3285a1b0-13b7bc10d1c37a6c","8f44c0a328e9803-13dfbcd8c8ad70d9"]},"geometry":{"type":"LineString","coordinates":[[-83.61749640000001,32.8612555],[-83.6175551,32.8612095],[-83.6178163,32.8612155]]},"id":"8844c0a329fffff-13b7bc78a2dbcf60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6137891,32.8614339]},"id":"8f44c0a3212c0c0-13bf35e5da115e13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6140862,32.861575800000004]},"id":"8f44c0a3212dc0b-1397f52c20b2151a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212c0c0-13bf35e5da115e13","8f44c0a3212dc0b-1397f52c20b2151a"]},"geometry":{"type":"LineString","coordinates":[[-83.6137891,32.8614339],[-83.6140862,32.861575800000004]]},"id":"8a44c0a3212ffff-13ffb589013fbc57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212d88a-13b7b4e3934b60ad","8f44c0a3212dc0b-1397f52c20b2151a"]},"geometry":{"type":"LineString","coordinates":[[-83.6140862,32.861575800000004],[-83.6142023,32.8615963]]},"id":"8b44c0a3212dfff-139f7507e16e4ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212d88a-13b7b4e3934b60ad","8f44c0a328de852-13f7f386879cf449"]},"geometry":{"type":"LineString","coordinates":[[-83.6142023,32.8615963],[-83.6142789,32.8614278],[-83.6147608,32.861500500000005]]},"id":"8944c0a328fffff-13d7744d22f6fb75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61489680000001,32.861521]},"id":"8f44c0a328dc4f3-13f7b33185bed824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328dc4f3-13f7b33185bed824","8f44c0a328de852-13f7f386879cf449"]},"geometry":{"type":"LineString","coordinates":[[-83.6147608,32.861500500000005],[-83.61489680000001,32.861521]]},"id":"8a44c0a328dffff-13ff735c0c91415e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328c9acd-13bf7e6139c17b53","8f44c0a328cab31-13dfb06613511d58"]},"geometry":{"type":"LineString","coordinates":[[-83.61604150000001,32.8620778],[-83.61671510000001,32.862151000000004],[-83.61676150000001,32.8621599],[-83.6168018,32.8621971],[-83.61682950000001,32.8622403],[-83.616837,32.8622868],[-83.61686850000001,32.8624613]]},"id":"8a44c0a328cffff-139f7f309e027fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b94509-17bf2e58deaa864b","8f44c0a328c9acd-13bf7e6139c17b53"]},"geometry":{"type":"LineString","coordinates":[[-83.61686850000001,32.8624613],[-83.61688190000001,32.862632000000005]]},"id":"8944c0a32bbffff-13f7be5d09554924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b90d41-17f76e4930903d8f","8f44c0a32b94509-17bf2e58deaa864b"]},"geometry":{"type":"LineString","coordinates":[[-83.61688190000001,32.862632000000005],[-83.6169069,32.862952400000005]]},"id":"8a44c0a32b97fff-179f2e5101379ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32b90d41-17f76e4930903d8f","8f44c0a3216d832-17972eaa913e9bb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6169069,32.862952400000005],[-83.6169115,32.863011],[-83.6167511,32.863827400000005]]},"id":"8944c0a32bbffff-1797fe754a9469b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3216d832-17972eaa913e9bb6","8f44c0a32168018-17d7b0101aa62653"]},"geometry":{"type":"LineString","coordinates":[[-83.6167511,32.863827400000005],[-83.6167398,32.863885100000005],[-83.61617910000001,32.864105]]},"id":"8a44c0a3216ffff-17f73f50f7355d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a32152851-17b737508ffb5c2e","8f44c0a32168018-17d7b0101aa62653"]},"geometry":{"type":"LineString","coordinates":[[-83.61617910000001,32.864105],[-83.61610870000001,32.864339],[-83.61609610000001,32.8643808],[-83.6151627,32.8646872],[-83.61480850000001,32.8646066],[-83.6141327,32.8644529],[-83.6131426,32.8642916],[-83.61320880000001,32.863873600000005]]},"id":"8844c0a321fffff-139f73f5a74ebd86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558863,32.797542]},"id":"8f44c0b1e063d2b-17bfcf1f194301e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e063d2b-17bfcf1f194301e3","8f44c0b1e0458a9-179fef271d052d10"]},"geometry":{"type":"LineString","coordinates":[[-83.6558863,32.797542],[-83.6558735,32.7980698]]},"id":"8944c0b1e07ffff-17f6ff2318c1a9b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6558662,32.7983253]},"id":"8f44c0b1e045214-17bfdf2ba5f4373c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e045214-17bfdf2ba5f4373c","8f44c0b1e0458a9-179fef271d052d10"]},"geometry":{"type":"LineString","coordinates":[[-83.6558735,32.7980698],[-83.6558662,32.7983253]]},"id":"8b44c0b1e045fff-17dfcf296a3d84df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0467a5-17f6d1af0cbb51c6","8f44c0b1e055c0c-17bff2b4505e484d"]},"geometry":{"type":"LineString","coordinates":[[-83.6548368,32.7980333],[-83.6548446,32.7975646],[-83.65441870000001,32.7979198]]},"id":"8944c0b1e07ffff-17dff1f366467db0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542922,32.7980202]},"id":"8f44c0b1e055434-17fef3036f60ad22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e055434-17fef3036f60ad22","8f44c0b1e055c0c-17bff2b4505e484d"]},"geometry":{"type":"LineString","coordinates":[[-83.65441870000001,32.7979198],[-83.6542922,32.7980202]]},"id":"8b44c0b1e055fff-17dfd2dbeec069fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542907,32.7982554]},"id":"8f44c0b1e051d34-17fff3045bfd7c08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e055434-17fef3036f60ad22","8f44c0b1e051d34-17fff3045bfd7c08"]},"geometry":{"type":"LineString","coordinates":[[-83.6542922,32.7980202],[-83.65399140000001,32.7982588],[-83.6542907,32.7982554]]},"id":"8a44c0b1e057fff-17d7f3619d909e1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e055434-17fef3036f60ad22","8f44c0b1e051d34-17fff3045bfd7c08"]},"geometry":{"type":"LineString","coordinates":[[-83.6542907,32.7982554],[-83.6542922,32.7980202]]},"id":"8a44c0b1e057fff-17b6f303e7e39d75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69594810000001,32.7999926]},"id":"8f44c0b1d8a2308-13bf6d5077528f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d8a2308-13bf6d5077528f5c","8f44c0b1d88598a-17f66ce5262d32d1"]},"geometry":{"type":"LineString","coordinates":[[-83.69594810000001,32.7999926],[-83.6961198,32.800470600000004]]},"id":"8944c0b1d8bffff-13d6ed1ac36ac896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d88c9a8-17b6fc3e95b6a294","8f44c0b1d88598a-17f66ce5262d32d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6961198,32.800470600000004],[-83.6963863,32.8012105]]},"id":"8944c0b1d8bffff-17df6c91ee7a5f32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d889805-13b76b94274bafdf","8f44c0b1d88c9a8-17b6fc3e95b6a294"]},"geometry":{"type":"LineString","coordinates":[[-83.6963863,32.8012105],[-83.6965811,32.801751200000005],[-83.69665900000001,32.802008]]},"id":"8944c0b1d8bffff-17beebe69180c0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994653,32.8091069]},"id":"8f44c0b1da9dc5e-13fff4ba30072a30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69936340000001,32.8091881]},"id":"8f44c0b1da9d428-13bef4f9e58e1e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da9dc5e-13fff4ba30072a30","8f44c0b1da9d428-13bef4f9e58e1e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.6994653,32.8091069],[-83.69945990000001,32.8092106],[-83.6994653,32.8093639],[-83.69934190000001,32.8093774],[-83.6992561,32.809291800000004],[-83.69936340000001,32.8091881]]},"id":"8a44c0b1da9ffff-13fe64ebdd9235c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da9dc5e-13fff4ba30072a30","8f44c0b1da9d428-13bef4f9e58e1e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.69936340000001,32.8091881],[-83.6994653,32.8091069]]},"id":"8b44c0b1da9dfff-139774da0b782439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699526,32.808483200000005]},"id":"8f44c0b1da82a75-17f664944bbf7798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da82a75-17f664944bbf7798","8f44c0b1da9dc5e-13fff4ba30072a30"]},"geometry":{"type":"LineString","coordinates":[[-83.6994653,32.8091069],[-83.69945990000001,32.808989700000005],[-83.69952430000001,32.8088454],[-83.699526,32.808483200000005]]},"id":"8944c0b1dabffff-13bef4a1292ad10f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6984678,32.8085764]},"id":"8f44c0b1da9385c-13b66729a003903b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69821,32.8085613]},"id":"8f44c0b1da93cc2-13b6f7cac7bc6aca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da9385c-13b66729a003903b","8f44c0b1da93cc2-13b6f7cac7bc6aca"]},"geometry":{"type":"LineString","coordinates":[[-83.6984678,32.8085764],[-83.6984139,32.8087552],[-83.69821,32.808750700000004],[-83.69821,32.8085613]]},"id":"8b44c0b1da93fff-13ff6785ef5570d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da9385c-13b66729a003903b","8f44c0b1da93cc2-13b6f7cac7bc6aca"]},"geometry":{"type":"LineString","coordinates":[[-83.69821,32.8085613],[-83.6984678,32.8085764]]},"id":"8b44c0b1da93fff-13bff77a3ad7dfc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69937370000001,32.8084714]},"id":"8f44c0b1da82a90-17fee4f378587ce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da9385c-13b66729a003903b","8f44c0b1da82a90-17fee4f378587ce2"]},"geometry":{"type":"LineString","coordinates":[[-83.6984678,32.8085764],[-83.6985963,32.8085839],[-83.6988752,32.8085613],[-83.6991756,32.8084847],[-83.69937370000001,32.8084714]]},"id":"8944c0b1dabffff-1397660df053fdfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da82a75-17f664944bbf7798","8f44c0b1da82a90-17fee4f378587ce2"]},"geometry":{"type":"LineString","coordinates":[[-83.69937370000001,32.8084714],[-83.69944380000001,32.808466700000004],[-83.699526,32.808483200000005]]},"id":"8b44c0b1da82fff-17ff74c3abb1c979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003023,32.8085523]},"id":"8f44c0b1da81865-13b772af10e3ba3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da82a75-17f664944bbf7798","8f44c0b1da81865-13b772af10e3ba3e"]},"geometry":{"type":"LineString","coordinates":[[-83.699526,32.808483200000005],[-83.6997121,32.808520800000004],[-83.6999803,32.8085478],[-83.7003023,32.8085523]]},"id":"8a44c0b1da87fff-139773a2a4239e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6993741,32.80839]},"id":"8f44c0b1da828ca-17bfe4f332ca15cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6992829,32.8083404]},"id":"8f44c0b1da82c69-179ee52c3c993579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da82c69-179ee52c3c993579","8f44c0b1da828ca-17bfe4f332ca15cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6993741,32.80839],[-83.6994787,32.8083319],[-83.699476,32.8081916],[-83.6992936,32.8081961],[-83.6992829,32.8083404]]},"id":"8a44c0b1da87fff-17fe74e84770923f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da82c69-179ee52c3c993579","8f44c0b1da828ca-17bfe4f332ca15cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6992829,32.8083404],[-83.6993741,32.80839]]},"id":"8b44c0b1da82fff-17be650fb55022a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1da82a90-17fee4f378587ce2","8f44c0b1da828ca-17bfe4f332ca15cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6993741,32.80839],[-83.69937370000001,32.8084714]]},"id":"8b44c0b1da82fff-17d774f35c0a6198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6947056,32.8221012]},"id":"8f44c0b19876a81-13b770590f28899d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19876a81-13b770590f28899d","8f44c0b1995bd49-13d66e4eead3670e"]},"geometry":{"type":"LineString","coordinates":[[-83.695541,32.821709000000006],[-83.6954042,32.8217706],[-83.6953184,32.8219419],[-83.6951038,32.8222034],[-83.694739,32.8221222],[-83.6947056,32.8221012]]},"id":"8844c0b199fffff-13977f3f237be76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19876a81-13b770590f28899d","8f44c0b198761aa-13fef0c18c860fc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6947056,32.8221012],[-83.6945384,32.8220143]]},"id":"8b44c0b19876fff-139e708d4fb1aa1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b268-13de712323c0d544","8f44c0b198761aa-13fef0c18c860fc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6945384,32.8220143],[-83.6943822,32.821933300000005]]},"id":"8b44c0b19876fff-13f7f0f2567ab9c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694246,32.8218209]},"id":"8f44c0b1982b3b5-139671784d63b0a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b3b5-139671784d63b0a7","8f44c0b1982b268-13de712323c0d544"]},"geometry":{"type":"LineString","coordinates":[[-83.6943822,32.821933300000005],[-83.69434150000001,32.8219122],[-83.694246,32.8218209]]},"id":"8c44c0b1982b3ff-13bff14f75cfbcf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b3b5-139671784d63b0a7","8f44c0b1982b563-13b771ced1765294"]},"geometry":{"type":"LineString","coordinates":[[-83.694246,32.8218209],[-83.6941075,32.8216885]]},"id":"8b44c0b1982bfff-13def1a392abe9be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b563-13b771ced1765294","8f44c0b1982a274-17fff2199ea69e68"]},"geometry":{"type":"LineString","coordinates":[[-83.6941075,32.8216885],[-83.69398790000001,32.8215742]]},"id":"8a44c0b1982ffff-139ff1f43131bfc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982a0ec-17b7f264992b82f6","8f44c0b1982a274-17fff2199ea69e68"]},"geometry":{"type":"LineString","coordinates":[[-83.69398790000001,32.8215742],[-83.6938679,32.821458400000004]]},"id":"8b44c0b1982afff-17d7f23f12b4b136"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982a0ec-17b7f264992b82f6","8f44c0b1982acd9-17df72afaca8fdf0"]},"geometry":{"type":"LineString","coordinates":[[-83.6938679,32.821458400000004],[-83.69374780000001,32.8213424]]},"id":"8b44c0b1982afff-17ff728a157824cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69362240000001,32.8212214]},"id":"8f44c0b19805350-179f72fe03a74dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982acd9-17df72afaca8fdf0","8f44c0b19805350-179f72fe03a74dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.69374780000001,32.8213424],[-83.69362240000001,32.8212214]]},"id":"8944c0b1983ffff-17b772d6d637b17d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934358,32.8209423]},"id":"8f44c0b19805c0d-17f6f372ac430dd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19805c0d-17f6f372ac430dd5","8f44c0b19805350-179f72fe03a74dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.69362240000001,32.8212214],[-83.69359100000001,32.8211936],[-83.6935011,32.8210509],[-83.6934358,32.8209423]]},"id":"8b44c0b19805fff-17bef33b442e0168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65496060000001,32.8451406]},"id":"8f44c0a35d1930d-13f6f161ac04ac12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65508100000001,32.844920800000004]},"id":"8f44c0a35d0a4ae-13ffd1166690df55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1930d-13f6f161ac04ac12","8f44c0a35d0a4ae-13ffd1166690df55"]},"geometry":{"type":"LineString","coordinates":[[-83.65496060000001,32.8451406],[-83.6550148,32.8450398],[-83.65508100000001,32.844920800000004]]},"id":"8a44c0a35d1ffff-13b6d13c47352016"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552039,32.844699500000004]},"id":"8f44c0a35d0ada5-13f7f0c99012e95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d0a4ae-13ffd1166690df55","8f44c0a35d0ada5-13f7f0c99012e95f"]},"geometry":{"type":"LineString","coordinates":[[-83.65508100000001,32.844920800000004],[-83.6552039,32.844699500000004]]},"id":"8944c0a35d3ffff-13b6f0f00ee4ce6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1d996-17bfd155b6831b0f","8f44c0a35d0ada5-13f7f0c99012e95f"]},"geometry":{"type":"LineString","coordinates":[[-83.6552039,32.844699500000004],[-83.6552401,32.844634400000004],[-83.65519180000001,32.8445352],[-83.6549797,32.8444056]]},"id":"8944c0a35d3ffff-17ffd0f010058fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1d996-17bfd155b6831b0f","8f44c0a35d1cb4a-17f6d1a265afc659"]},"geometry":{"type":"LineString","coordinates":[[-83.6549797,32.8444056],[-83.65495580000001,32.844391],[-83.65486460000001,32.844341400000005],[-83.654857,32.8442944]]},"id":"8a44c0a35d1ffff-179ed183b793049c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1cb4a-17f6d1a265afc659","8f44c0a35d054b6-17b6d05065c4b51e"]},"geometry":{"type":"LineString","coordinates":[[-83.654857,32.8442944],[-83.6548485,32.844242300000005],[-83.6553978,32.843597200000005]]},"id":"8944c0a35d3ffff-1796f105f6c78555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7069831,32.827919200000004]},"id":"8f44c0b0a71904d-17ffd25f94279411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7060282,32.8282077]},"id":"8f44c0b0a634206-139fd4b46791147f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a71904d-17ffd25f94279411","8f44c0b0a634206-139fd4b46791147f"]},"geometry":{"type":"LineString","coordinates":[[-83.7069831,32.827919200000004],[-83.7069831,32.829109200000005],[-83.7068543,32.829325600000004],[-83.706393,32.8292986],[-83.70616770000001,32.828965000000004],[-83.70598530000001,32.8286585],[-83.7060282,32.8282077]]},"id":"8844c0b0a7fffff-139ef356713852a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7062106,32.826287400000005]},"id":"8f44c0b0a71558c-13fff442618fc6ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a634206-139fd4b46791147f","8f44c0b0a71558c-13fff442618fc6ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7060282,32.8282077],[-83.7062106,32.8277659],[-83.7063715,32.8274865],[-83.7065539,32.8273512],[-83.70665050000001,32.827017600000005],[-83.7066398,32.826621],[-83.7062106,32.826287400000005]]},"id":"8844c0b0a7fffff-17be73c4f98ef53f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7030027,32.8279823]},"id":"8f44c0b0a79ea1b-1796fc175a648579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a79ea1b-1796fc175a648579","8f44c0b0a7b2765-13d67c82a2436eee"]},"geometry":{"type":"LineString","coordinates":[[-83.7030027,32.8279823],[-83.702831,32.8278381],[-83.70254130000001,32.827603700000004],[-83.7025091,32.827288100000004],[-83.70268080000001,32.8271168],[-83.7028525,32.826972600000005],[-83.702831,32.8264226]]},"id":"8944c0b0a7bffff-17df5cc29bc58165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70159720000001,32.8247457]},"id":"8f44c0b0a4c421c-17be5f85c93759fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a4c421c-17be5f85c93759fd","8f44c0b0a7b2765-13d67c82a2436eee"]},"geometry":{"type":"LineString","coordinates":[[-83.702831,32.8264226],[-83.7027237,32.8257284],[-83.7024877,32.825403800000004],[-83.7021658,32.8252596],[-83.70195120000001,32.825196500000004],[-83.70173670000001,32.8249981],[-83.7015006,32.824908],[-83.70159720000001,32.8247457]]},"id":"8744c0b0affffff-13feddd74367687d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7060819,32.826053]},"id":"8f44c0b0a7140e1-13df7492d25e77ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a7140e1-13df7492d25e77ab","8f44c0b0a45da1c-13be77f698b3c21d"]},"geometry":{"type":"LineString","coordinates":[[-83.7060819,32.826053],[-83.7056634,32.8261702],[-83.705127,32.8262513],[-83.7048266,32.8263595],[-83.7046227,32.8263234],[-83.7043009,32.8261251],[-83.7041507,32.8258546],[-83.7044082,32.825494],[-83.70467640000001,32.8252055],[-83.7046935,32.8251622]]},"id":"8744c0b0affffff-13b6d78e0710fd78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70486340000001,32.8247003]},"id":"8f44c0b0a443b52-179ff78c63118447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a443b52-179ff78c63118447","8f44c0b0a45da1c-13be77f698b3c21d"]},"geometry":{"type":"LineString","coordinates":[[-83.7046935,32.8251622],[-83.7047622,32.8249891],[-83.70486340000001,32.8247003]]},"id":"8944c0b0a47ffff-139ed7c01826e8d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70376440000001,32.827919200000004]},"id":"8f44c0b0a78366a-17ffda3b492cf6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a6a4926-13df79914e70db91","8f44c0b0a78366a-17ffda3b492cf6aa"]},"geometry":{"type":"LineString","coordinates":[[-83.70376440000001,32.827919200000004],[-83.7040364,32.8286962]]},"id":"8944c0b0a7bffff-13de59e647a7f155"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7051055,32.8296952]},"id":"8f44c0b0a613900-13bfd6f51987af27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a6a4926-13df79914e70db91","8f44c0b0a613900-13bfd6f51987af27"]},"geometry":{"type":"LineString","coordinates":[[-83.7040364,32.8286962],[-83.7040863,32.8288388],[-83.70552400000001,32.8291363],[-83.7057922,32.829632100000005],[-83.7061891,32.8299206],[-83.70658610000001,32.8300198],[-83.7069187,32.8301821],[-83.7069616,32.8304345],[-83.7067578,32.8306869],[-83.7064574,32.830714],[-83.7059102,32.8306689],[-83.7054918,32.8304345],[-83.7051055,32.8296952]]},"id":"8844c0b0a7fffff-179fd574bfb7c818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043223,32.8279823]},"id":"8f44c0b0a78e848-1796f8de9f5e0d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a7a17b3-179657a374e95ab3","8f44c0b0a78e848-1796f8de9f5e0d48"]},"geometry":{"type":"LineString","coordinates":[[-83.7043223,32.8279823],[-83.7044511,32.8276668],[-83.7044403,32.8273242],[-83.7043223,32.8269636],[-83.7045262,32.826765200000004],[-83.7047086,32.8267292],[-83.70482650000001,32.8267268]]},"id":"8944c0b0a7bffff-17bfd88a39e1b88c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a7a17b3-179657a374e95ab3","8f44c0b0a71558c-13fff442618fc6ea"]},"geometry":{"type":"LineString","coordinates":[[-83.70482650000001,32.8267268],[-83.70515920000001,32.8267201],[-83.7058995,32.8264857],[-83.7060175,32.8264767],[-83.7062106,32.826287400000005]]},"id":"8844c0b0a7fffff-17b6f5df8480512d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a7140e1-13df7492d25e77ab","8f44c0b0a71558c-13fff442618fc6ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7062106,32.826287400000005],[-83.7060819,32.826053]]},"id":"8a44c0b0a717fff-13b6746aa9e7d94c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a7140e1-13df7492d25e77ab","8f44c0b0a44d31c-13b654f33d84cf3f"]},"geometry":{"type":"LineString","coordinates":[[-83.7060819,32.826053],[-83.7061999,32.8258456],[-83.7061784,32.8256292],[-83.705996,32.825403800000004],[-83.7059277,32.8253536]]},"id":"8844c0b0a7fffff-13f6f47d3031f5e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a44d31c-13b654f33d84cf3f","8f44c0b0a46b793-13977553eebcb44a"]},"geometry":{"type":"LineString","coordinates":[[-83.7059277,32.8253536],[-83.70573850000001,32.8252145],[-83.70577300000001,32.824911]]},"id":"8a44c0b0a44ffff-13be5549aaab8b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7046656,32.8291453]},"id":"8f44c0b0a6160b3-13f7d8080002911c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a6b4702-13d67d52800da805","8f44c0b0a6160b3-13f7d8080002911c"]},"geometry":{"type":"LineString","coordinates":[[-83.7046656,32.8291453],[-83.7042043,32.8296231],[-83.7041185,32.829848500000004],[-83.7037966,32.830100900000005],[-83.70370000000001,32.8305427],[-83.70350690000001,32.8305877],[-83.70316360000001,32.8305427],[-83.7024877,32.8305066],[-83.70213360000001,32.830479600000004],[-83.7017581,32.830578700000004],[-83.7016401,32.830416400000004],[-83.7016938,32.829533000000005],[-83.7017689,32.8292445],[-83.7021766,32.828947],[-83.70249840000001,32.8288838]]},"id":"8744c0b0affffff-17f7dc8f862bd0bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a6b4702-13d67d52800da805","8f44c0b0a79ea1b-1796fc175a648579"]},"geometry":{"type":"LineString","coordinates":[[-83.70249840000001,32.8288838],[-83.7027666,32.8286765],[-83.7028954,32.8283069],[-83.7030027,32.8279823]]},"id":"8844c0b0a7fffff-13d77c9254ee9d4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a79ea1b-1796fc175a648579","8f44c0b0a78366a-17ffda3b492cf6aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7030027,32.8279823],[-83.7033031,32.827910200000005],[-83.70376440000001,32.827919200000004]]},"id":"8a44c0b0a79ffff-17fefb2aeb725127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a78e848-1796f8de9f5e0d48","8f44c0b0a78366a-17ffda3b492cf6aa"]},"geometry":{"type":"LineString","coordinates":[[-83.70376440000001,32.827919200000004],[-83.7043223,32.8279823]]},"id":"8944c0b0a7bffff-17ff598ce9863b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a634206-139fd4b46791147f","8f44c0b0a78e848-1796f8de9f5e0d48"]},"geometry":{"type":"LineString","coordinates":[[-83.7043223,32.8279823],[-83.7060282,32.8282077]]},"id":"8844c0b0a7fffff-17d776c9849cfd4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7029083,32.8166376]},"id":"8f44c0b0ac9e05d-13dedc52546c0af1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac9e05d-13dedc52546c0af1","8f44c0b0ace155b-17b651594e15bd04"]},"geometry":{"type":"LineString","coordinates":[[-83.7029083,32.8166376],[-83.7032023,32.8167697],[-83.7034448,32.816836],[-83.70424410000001,32.8169532],[-83.7044211,32.8168901],[-83.7045659,32.8168766],[-83.7047483,32.8169216],[-83.7049468,32.817102000000006],[-83.70512380000001,32.8171606],[-83.7058255,32.8172701],[-83.7061688,32.8172927],[-83.7064003,32.817386],[-83.70670530000001,32.817427900000006],[-83.70692600000001,32.817534800000004],[-83.7073015,32.817579900000005],[-83.70740280000001,32.8175684]]},"id":"8844c0b0adfffff-179656dc02af2037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70912700000001,32.817512400000005]},"id":"8f44c0b0ac425ac-17974d23a0e226f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ac425ac-17974d23a0e226f9","8f44c0b0ace155b-17b651594e15bd04"]},"geometry":{"type":"LineString","coordinates":[[-83.70740280000001,32.8175684],[-83.7077299,32.8175316],[-83.70795600000001,32.8175303],[-83.70810540000001,32.8175632],[-83.7086254,32.8175766],[-83.70893790000001,32.8175473],[-83.70912700000001,32.817512400000005]]},"id":"8844c0b0adfffff-179eff3e24504467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b035abca3-139e7df4234bc9e2","8f44c0b0351d7a8-139ef9393b91e869"]},"geometry":{"type":"LineString","coordinates":[[-83.68913260000001,32.7829184],[-83.69086200000001,32.7829543],[-83.6909629,32.7829454],[-83.6910301,32.782909700000005],[-83.69106020000001,32.7828308],[-83.6910701,32.7827433]]},"id":"8844c0b035fffff-1397fb6e22b54a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b035aab72-1396fde6c6625fa3","8f44c0b0351d7a8-139ef9393b91e869"]},"geometry":{"type":"LineString","coordinates":[[-83.6910701,32.7827433],[-83.6910726,32.7827207],[-83.69104250000001,32.7826285],[-83.69096350000001,32.7825748],[-83.6893112,32.7825477],[-83.689161,32.782656],[-83.689154,32.7827208]]},"id":"8844c0b035fffff-13b77b8b4da8fbe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b035abca3-139e7df4234bc9e2","8f44c0b035aab72-1396fde6c6625fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.689154,32.7827208],[-83.68913260000001,32.7829184]]},"id":"8a44c0b035affff-13de7ded7960b06f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68950650000001,32.781808500000004]},"id":"8f44c0b03512441-17d67d0a78ac42f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b03512441-17d67d0a78ac42f9","8f44c0b035a434d-179e7e09ee9083f0"]},"geometry":{"type":"LineString","coordinates":[[-83.68950650000001,32.781808500000004],[-83.68951510000001,32.7814202],[-83.6894357,32.781322200000005],[-83.68932810000001,32.781283300000005],[-83.6890978,32.781280200000005]]},"id":"8944c0b035bffff-17f77d47ab8d100c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b035a6a8e-179e7f549e2be3dd","8f44c0b035a434d-179e7e09ee9083f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6890978,32.781280200000005],[-83.6885687,32.7812774]]},"id":"8a44c0b035a7fff-179f7eaf4d0609f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6572072,32.846181300000005]},"id":"8f44c0a35d420c6-13ffdbe584b91df9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d42315-1797eba183c40e3b","8f44c0a35d420c6-13ffdbe584b91df9"]},"geometry":{"type":"LineString","coordinates":[[-83.65731600000001,32.846213],[-83.6572072,32.846181300000005]]},"id":"8b44c0a35d42fff-179fcbc387c7b602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d420c6-13ffdbe584b91df9","8f44c0a35d51d2c-1397dd17a1c1a311"]},"geometry":{"type":"LineString","coordinates":[[-83.6572072,32.846181300000005],[-83.65700700000001,32.846123],[-83.6567174,32.8460081]]},"id":"8944c0a35d7ffff-13defc7fc2117d51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d51d2c-1397dd17a1c1a311","8f44c0a35c25816-13ffefc41723673c"]},"geometry":{"type":"LineString","coordinates":[[-83.6567174,32.8460081],[-83.65607700000001,32.845754],[-83.65582500000001,32.845638],[-83.6556223,32.8455354]]},"id":"8844c0a35dfffff-1397ce70bf588175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35c24cad-13b6d115c756700d","8f44c0a35c25816-13ffefc41723673c"]},"geometry":{"type":"LineString","coordinates":[[-83.6556223,32.8455354],[-83.65508200000001,32.845216]]},"id":"8a44c0a35c27fff-1397d06cffbc7157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d1930d-13f6f161ac04ac12","8f44c0a35c24cad-13b6d115c756700d"]},"geometry":{"type":"LineString","coordinates":[[-83.65508200000001,32.845216],[-83.65496060000001,32.8451406]]},"id":"8944c0a35d3ffff-139ef13bb70f50e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d1930d-13f6f161ac04ac12","8f44c0a35d1821a-13d6d267e6502899"]},"geometry":{"type":"LineString","coordinates":[[-83.65496060000001,32.8451406],[-83.65454100000001,32.84488]]},"id":"8a44c0a35d1ffff-13b7f1e4c2a23f5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65434470000001,32.844756700000005]},"id":"8f44c0a35d1844a-1396f2e297b8ffe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d1844a-1396f2e297b8ffe0","8f44c0a35d1821a-13d6d267e6502899"]},"geometry":{"type":"LineString","coordinates":[[-83.65454100000001,32.84488],[-83.65434470000001,32.844756700000005]]},"id":"8b44c0a35d18fff-13bfd2a5393732d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65428150000001,32.844717]},"id":"8f44c0a35d18419-13fef30a1e6b5773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d1844a-1396f2e297b8ffe0","8f44c0a35d18419-13fef30a1e6b5773"]},"geometry":{"type":"LineString","coordinates":[[-83.65434470000001,32.844756700000005],[-83.65428150000001,32.844717]]},"id":"8c44c0a35d185ff-13fed2f655339e59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35d18419-13fef30a1e6b5773","8f44c0a35d1e652-139ef3a569877094"]},"geometry":{"type":"LineString","coordinates":[[-83.65428150000001,32.844717],[-83.654033,32.844561]]},"id":"8a44c0a35d1ffff-13bff357c29c3106"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35dac11c-17ffd57a2c96167c","8f44c0a35d1e652-139ef3a569877094"]},"geometry":{"type":"LineString","coordinates":[[-83.654033,32.844561],[-83.65334890000001,32.8441478],[-83.653283,32.844108]]},"id":"8844c0a35dfffff-17ffd48fc448200b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35dac11c-17ffd57a2c96167c","8f44c0a35daccf1-17def5bd770f0ddf"]},"geometry":{"type":"LineString","coordinates":[[-83.653283,32.844108],[-83.6531753,32.844045]]},"id":"8b44c0a35dacfff-17dfd59bdb4fd46b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6526297,32.8436942]},"id":"8f44c0a35da02f5-17fef7127968ece3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35da02f5-17fef7127968ece3","8f44c0a35daccf1-17def5bd770f0ddf"]},"geometry":{"type":"LineString","coordinates":[[-83.6531753,32.844045],[-83.6530956,32.8439937],[-83.6526297,32.8436942]]},"id":"8944c0a35dbffff-17ded667fc79e8ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6524918,32.8436055]},"id":"8f44c0a35da0708-17b7f768acd11b1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35da02f5-17fef7127968ece3","8f44c0a35da0708-17b7f768acd11b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6526297,32.8436942],[-83.6524918,32.8436055]]},"id":"8b44c0a35da0fff-17d7f73d81b5378c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65223160000001,32.8434383]},"id":"8f44c0a35da2972-17def80b40e7834d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35da2972-17def80b40e7834d","8f44c0a35da0708-17b7f768acd11b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6524918,32.8436055],[-83.65223160000001,32.8434383]]},"id":"8a44c0a35da7fff-1797f7b9fd21289e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35da2972-17def80b40e7834d","8f44c0a35da66e6-1796d862f04a8589"]},"geometry":{"type":"LineString","coordinates":[[-83.65223160000001,32.8434383],[-83.65209130000001,32.8433481]]},"id":"8a44c0a35da7fff-17b6d8371b5762b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.652032,32.84331]},"id":"8f44c0a35da66b5-17fed8880219051d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35da66b5-17fed8880219051d","8f44c0a35da66e6-1796d862f04a8589"]},"geometry":{"type":"LineString","coordinates":[[-83.65209130000001,32.8433481],[-83.652032,32.84331]]},"id":"8c44c0a35da67ff-179ef8757389191e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35da66b5-17fed8880219051d","8f44c0a35db4175-179fd9ff08187486"]},"geometry":{"type":"LineString","coordinates":[[-83.652032,32.84331],[-83.651432,32.84292]]},"id":"8944c0a35dbffff-1796f94384bfc551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a35db4175-179fd9ff08187486","8f44c0a34ae8242-139fdb998bb79b36"]},"geometry":{"type":"LineString","coordinates":[[-83.651432,32.84292],[-83.6507752,32.8425104]]},"id":"8844c0a34bfffff-139fdacc4313696b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ae8775-13dfdc00205a1a47","8f44c0a34ae8242-139fdb998bb79b36"]},"geometry":{"type":"LineString","coordinates":[[-83.6507752,32.8425104],[-83.65061100000001,32.842408]]},"id":"8b44c0a34ae8fff-13ffdbccd1948cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ac584b-13d7dd8ee3268087","8f44c0a34ae8775-13dfdc00205a1a47"]},"geometry":{"type":"LineString","coordinates":[[-83.65061100000001,32.842408],[-83.649973,32.842022]]},"id":"8944c0a34afffff-13d6fcc783c13e42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ac584b-13d7dd8ee3268087","8f44c0a34ac5d1d-1396de1f556d7cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.649973,32.842022],[-83.64974190000001,32.8418848]]},"id":"8b44c0a34ac5fff-13befdd713f56d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ac41ad-1396dedc05a20ca0","8f44c0a34ac5d1d-1396de1f556d7cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.64974190000001,32.8418848],[-83.649461,32.841718],[-83.64944,32.841712]]},"id":"8a44c0a34ac7fff-13dede7d036d216e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a253865ab-13b6a83b8577bac5","8f44c0a253126d8-13df635a23496f33"]},"geometry":{"type":"LineString","coordinates":[[-83.724244,32.864897],[-83.72440800000001,32.865062],[-83.724489,32.865159000000006],[-83.724562,32.865271],[-83.724829,32.865702],[-83.724974,32.865935],[-83.725036,32.865997],[-83.725102,32.866042],[-83.725183,32.866083],[-83.725261,32.866107],[-83.725375,32.866118],[-83.725485,32.866109],[-83.72556200000001,32.866093],[-83.72561400000001,32.866079],[-83.725684,32.866045],[-83.72573200000001,32.866014],[-83.72580500000001,32.865943],[-83.72583900000001,32.865902000000006],[-83.72588400000001,32.865806],[-83.725899,32.865744],[-83.72589400000001,32.86522],[-83.725898,32.865091],[-83.725907,32.865054],[-83.72594500000001,32.864964],[-83.72599600000001,32.864894],[-83.726051,32.864839],[-83.726117,32.864793],[-83.72624300000001,32.864738]]},"id":"8944c0a253bffff-13beb591ae6913c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a253126d8-13df635a23496f33","8f44c0a25311d41-13ff60ff046bec01"]},"geometry":{"type":"LineString","coordinates":[[-83.72624300000001,32.864738],[-83.72641200000001,32.864691],[-83.726636,32.86464],[-83.72686300000001,32.864597],[-83.72697600000001,32.864584],[-83.727108,32.864575],[-83.727208,32.864578]]},"id":"8a44c0a25317fff-139e322eb71c026c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a25302028-139edfba011d7255","8f44c0a25311d41-13ff60ff046bec01"]},"geometry":{"type":"LineString","coordinates":[[-83.727208,32.864578],[-83.727249,32.864604],[-83.7274,32.864645],[-83.727728,32.864638]]},"id":"8944c0a2533ffff-139ef05f84b124af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029e233-17d5e6e8c87c64cd","8f44c0b5029d8cc-17dfe4c75476155a"]},"geometry":{"type":"LineString","coordinates":[[-83.7649803,32.879889],[-83.76429040000001,32.8798813],[-83.7641076,32.8798794]]},"id":"8a44c0b5029ffff-17d7d5d80999ee5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68727630000001,32.8709052]},"id":"8f44c0a22b53283-13dfc27c5af10a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887153,32.8691559]},"id":"8f44c0a22b7585b-17967ef8f8af3651"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a22b53283-13dfc27c5af10a0d","8f44c0a22b7585b-17967ef8f8af3651"]},"geometry":{"type":"LineString","coordinates":[[-83.68727630000001,32.8709052],[-83.6876132,32.8707755],[-83.6879672,32.870361],[-83.68819,32.870149600000005],[-83.68828760000001,32.869798],[-83.68843770000001,32.869437600000005],[-83.6887153,32.8691559]]},"id":"8944c0a22b7ffff-17ffd08c28df731a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68957230000001,32.8681751]},"id":"8f44c0a204ce4c6-13b77ce15430f549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a22b7585b-17967ef8f8af3651","8f44c0a204ce4c6-13b77ce15430f549"]},"geometry":{"type":"LineString","coordinates":[[-83.6887153,32.8691559],[-83.6888373,32.8689726],[-83.6890267,32.8682267],[-83.68957230000001,32.8681751]]},"id":"8744c0a20ffffff-139ffe2d926f3466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6880423,32.8710819]},"id":"8f44c0a22b5c75e-13deb09d9550882e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a22b40104-17fe7ef64c16faa9","8f44c0a22b5c75e-13deb09d9550882e"]},"geometry":{"type":"LineString","coordinates":[[-83.6880423,32.8710819],[-83.6884983,32.8704288],[-83.68862440000001,32.8703451],[-83.6887196,32.8703366]]},"id":"8944c0a22b7ffff-17d6ffddb2ca83c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a22b6824d-17ff7b680ab70472","8f44c0a22b40104-17fe7ef64c16faa9"]},"geometry":{"type":"LineString","coordinates":[[-83.6887196,32.8703366],[-83.6887885,32.870496700000004],[-83.68930830000001,32.8707665],[-83.69017600000001,32.8707477]]},"id":"8944c0a22b7ffff-17de7d554c50595b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a22b629a8-179efe39bc448789","8f44c0a22b60826-17df7cf8ac86eda4"]},"geometry":{"type":"LineString","coordinates":[[-83.689535,32.869269],[-83.68912010000001,32.869340300000005],[-83.68902130000001,32.8693642]]},"id":"8a44c0a22b67fff-17ff7d998efab576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a22b629a8-179efe39bc448789","8f44c0a22b7585b-17967ef8f8af3651"]},"geometry":{"type":"LineString","coordinates":[[-83.68902130000001,32.8693642],[-83.6887153,32.8691559]]},"id":"8944c0a22b7ffff-17d7fe995944de27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614109,32.8690635]},"id":"8f44c0a323a0a2e-13dfb51dee6cec5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6143474,32.868503600000004]},"id":"8f44c0a3204b429-13fff488e92c1e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a323a0a2e-13dfb51dee6cec5d","8f44c0a3204b429-13fff488e92c1e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.614109,32.8690635],[-83.61457460000001,32.8689216],[-83.6143474,32.868503600000004]]},"id":"8844c0a323fffff-13dff46799ebf624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61400710000001,32.868000200000004]},"id":"8f44c0a3204ad8e-13d7355d98e7b94c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3204ad8e-13d7355d98e7b94c","8f44c0a3204b429-13fff488e92c1e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.6143474,32.868503600000004],[-83.61400710000001,32.868000200000004]]},"id":"8a44c0a3204ffff-13f774f337e6bbd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134706,32.868207500000004]},"id":"8f44c0a32059515-13d7b6aceb95fd13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32059515-13d7b6aceb95fd13","8f44c0a3204ad8e-13d7355d98e7b94c"]},"geometry":{"type":"LineString","coordinates":[[-83.6134706,32.868207500000004],[-83.61400710000001,32.868000200000004]]},"id":"8944c0a3207ffff-1397f605476b67dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6152624,32.868230000000004]},"id":"8f44c0a32332513-13d7f24d0ef400e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32332513-13d7f24d0ef400e7","8f44c0a3204ad8e-13d7355d98e7b94c"]},"geometry":{"type":"LineString","coordinates":[[-83.61400710000001,32.868000200000004],[-83.61452050000001,32.8677943],[-83.614624,32.8679326],[-83.61485470000001,32.867856],[-83.61503710000001,32.868194],[-83.61520870000001,32.8681894],[-83.6152624,32.868230000000004]]},"id":"8a44c0a3204ffff-13b7b3c06369f0dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61349750000001,32.8691176]},"id":"8f44c0a323a2166-13ffb69c1af27220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a323a2166-13ffb69c1af27220","8f44c0a3204b429-13fff488e92c1e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.61349750000001,32.8691176],[-83.6134385,32.8687436],[-83.61417870000001,32.8684553],[-83.6143474,32.868503600000004]]},"id":"8844c0a323fffff-13ff35f07766a97a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32332513-13d7f24d0ef400e7","8f44c0a3204b429-13fff488e92c1e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.6143474,32.868503600000004],[-83.6144148,32.8685229],[-83.6151068,32.868248],[-83.6152624,32.868230000000004]]},"id":"8a44c0a3204ffff-13bff36cf90383ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61551820000001,32.8683737]},"id":"8f44c0a32332048-13bfb1ad234bf735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32332513-13d7f24d0ef400e7","8f44c0a32332048-13bfb1ad234bf735"]},"geometry":{"type":"LineString","coordinates":[[-83.6152624,32.868230000000004],[-83.61551820000001,32.8683737]]},"id":"8b44c0a32332fff-1397b1fd1a896adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32901813-13d7ebf9598c5821","8f44c0a3290e428-139f2cd86398f9bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6178539,32.855097400000005],[-83.617497,32.855645]]},"id":"8944c0a3293ffff-13ff2c68dcc037a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6172447,32.8560377]},"id":"8f44c0a3291996e-179fbd76111fcbfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3290e428-139f2cd86398f9bb","8f44c0a3291996e-179fbd76111fcbfa"]},"geometry":{"type":"LineString","coordinates":[[-83.617497,32.855645],[-83.6172447,32.8560377]]},"id":"8944c0a3293ffff-1397ed2749a7076f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3291964c-17ff2e04615ca733","8f44c0a3291996e-179fbd76111fcbfa"]},"geometry":{"type":"LineString","coordinates":[[-83.6172447,32.8560377],[-83.617017,32.8563922]]},"id":"8b44c0a32919fff-17ff6dbd4cc6aaea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328260b1-1797ae63bc902aea","8f44c0a3291964c-17ff2e04615ca733"]},"geometry":{"type":"LineString","coordinates":[[-83.617017,32.8563922],[-83.6168645,32.856629600000005]]},"id":"8844c0a329fffff-17b77e341cb35ded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6166771,32.856921400000004]},"id":"8f44c0a32822caa-17b7eed8df640af4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328260b1-1797ae63bc902aea","8f44c0a32822caa-17b7eed8df640af4"]},"geometry":{"type":"LineString","coordinates":[[-83.6168645,32.856629600000005],[-83.6166771,32.856921400000004]]},"id":"8a44c0a32827fff-17dfbe9e490bd8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61647310000001,32.857239]},"id":"8f44c0a32831ad0-17ff6f58582a770e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32822caa-17b7eed8df640af4","8f44c0a32831ad0-17ff6f58582a770e"]},"geometry":{"type":"LineString","coordinates":[[-83.6166771,32.856921400000004],[-83.61647310000001,32.857239]]},"id":"8944c0a3283ffff-179f2f189c916b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61622700000001,32.857622]},"id":"8f44c0a32806008-17ffeff22874ecd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32831ad0-17ff6f58582a770e","8f44c0a32806008-17ffeff22874ecd1"]},"geometry":{"type":"LineString","coordinates":[[-83.61647310000001,32.857239],[-83.61622700000001,32.857622]]},"id":"8944c0a3283ffff-17f73fa53209c4a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3212c0c0-13bf35e5da115e13","8f44c0a321281b5-13f7b64b3c8b34b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6137891,32.8614339],[-83.6136269,32.8617274]]},"id":"8a44c0a3212ffff-1397f61880ef5f20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6135046,32.8619487]},"id":"8f44c0a32128686-13fff697a632e1b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a32128686-13fff697a632e1b2","8f44c0a321281b5-13f7b64b3c8b34b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6136269,32.8617274],[-83.6135046,32.8619487]]},"id":"8b44c0a32128fff-13bff6717748c65a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6133966,32.862149]},"id":"8f44c0a3212b504-13ff36db201faa2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a32128686-13fff697a632e1b2","8f44c0a3212b504-13ff36db201faa2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6135046,32.8619487],[-83.6134224,32.8620974],[-83.6133966,32.862149]]},"id":"8a44c0a3212ffff-13bf76b9eaaa19f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61319870000001,32.8625753]},"id":"8f44c0a3210d5b5-1797b756d063de38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3210d5b5-1797b756d063de38","8f44c0a3212b504-13ff36db201faa2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6133966,32.862149],[-83.613253,32.8624367],[-83.61319870000001,32.8625753]]},"id":"8944c0a3213ffff-13ff371b9c220b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130845,32.862866700000005]},"id":"8f44c0a32108328-17bfb79e3feeed8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3210d5b5-1797b756d063de38","8f44c0a32108328-17bfb79e3feeed8a"]},"geometry":{"type":"LineString","coordinates":[[-83.61319870000001,32.8625753],[-83.6130845,32.862866700000005]]},"id":"8a44c0a3210ffff-17f7b77a8df4dfb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130438,32.8629704]},"id":"8f44c0a321082e0-17ffb7b7a3564acb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a321082e0-17ffb7b7a3564acb","8f44c0a32108328-17bfb79e3feeed8a"]},"geometry":{"type":"LineString","coordinates":[[-83.6130845,32.862866700000005],[-83.6130438,32.8629704]]},"id":"8c44c0a321083ff-17df37aaf5ac323a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175507,32.8099781]},"id":"8f44c0b0e28251a-139e7892d3ca5d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7185841,32.8100151]},"id":"8f44c0b0e2856c4-13b7760cfdd8186b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2856c4-13b7760cfdd8186b","8f44c0b0e28251a-139e7892d3ca5d9b"]},"geometry":{"type":"LineString","coordinates":[[-83.7175507,32.8099781],[-83.7185841,32.8100151]]},"id":"8944c0b0e2bffff-13b7f74fe9bb73b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e21a991-13de71979ea4cd88","8f44c0b0e2856c4-13b7760cfdd8186b"]},"geometry":{"type":"LineString","coordinates":[[-83.7185841,32.8100151],[-83.72041030000001,32.810080500000005]]},"id":"8844c0b0e3fffff-13d7f3d249a86599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7828164,32.8313718]},"id":"8f44c0b72a897a6-17d7f93bce9daf6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b72a897a6-17d7f93bce9daf6b","8f44c0b727a4999-17b7b9e22d264583"]},"geometry":{"type":"LineString","coordinates":[[-83.7828164,32.8313718],[-83.77992900000001,32.83135],[-83.77900700000001,32.831352],[-83.777704,32.831346],[-83.77739000000001,32.831338],[-83.77717200000001,32.831336],[-83.776521,32.831339],[-83.77616900000001,32.831349],[-83.774242,32.831349],[-83.774022,32.831347],[-83.77351970000001,32.8313434],[-83.77181,32.831331],[-83.771612,32.831328],[-83.7711745,32.8313252],[-83.77072720000001,32.8313222],[-83.770075,32.831318],[-83.76944300000001,32.831313]]},"id":"8744c0b72ffffff-17d7b98ef5f9e9c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b724d8daa-17dfe43cc14a135c","8f44c0b09b00271-13b7ea132cef2a92"]},"geometry":{"type":"LineString","coordinates":[[-83.765202,32.831359],[-83.764863,32.831406],[-83.76477100000001,32.831422],[-83.764539,32.831452],[-83.76427500000001,32.831477],[-83.763596,32.831502],[-83.763108,32.831513],[-83.762811,32.831519]]},"id":"8644c0b0fffffff-1395c7266da946f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09b00271-13b7ea132cef2a92","8f44c0b0910db53-13b7fdc3ce0d2e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.762811,32.831519],[-83.76259440000001,32.831521200000005],[-83.761814,32.831529],[-83.76137650000001,32.8315362],[-83.760717,32.831547],[-83.76009,32.831549],[-83.758764,32.831533],[-83.75778700000001,32.831518],[-83.755689,32.831499],[-83.755341,32.831505],[-83.75513000000001,32.831516],[-83.75474600000001,32.831525]]},"id":"8744c0b09ffffff-13b7d3eb86c892e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0909ecd9-13fdee1cc8cd7e66","8f44c0b0910db53-13b7fdc3ce0d2e2f"]},"geometry":{"type":"LineString","coordinates":[[-83.75474600000001,32.831525],[-83.754452,32.831626],[-83.754084,32.831761],[-83.75379000000001,32.831879],[-83.751258,32.832971],[-83.750917,32.833138000000005],[-83.750612,32.833304000000005],[-83.74965900000001,32.833886],[-83.74874200000001,32.834457],[-83.74857,32.834559],[-83.74805,32.834887]]},"id":"8844c0b091fffff-13fdf61d18e8f5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a369664c8-13bf97fea2c47e4a","8f44c0ba92ca491-17b7d6bc36c551fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6260374,32.8347848],[-83.6261497,32.834656200000005],[-83.62655330000001,32.8341821]]},"id":"8644c0a37ffffff-17f7975d0ef59d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92ce81e-17d7d592dc68865d","8f44c0ba92ca491-17b7d6bc36c551fe"]},"geometry":{"type":"LineString","coordinates":[[-83.62655330000001,32.8341821],[-83.6269915,32.833663200000004],[-83.6270291,32.8336221]]},"id":"8944c0ba92fffff-17977628068b9d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6347623,32.8242744]},"id":"8f44c0ba9a7548c-179782b198e7533b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a7548c-179782b198e7533b","8f44c0ba9a500c2-13dfa5196b8104bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6347623,32.8242744],[-83.6344667,32.824614700000005],[-83.63417100000001,32.824955],[-83.63377700000001,32.825409]]},"id":"8944c0ba9a7ffff-17f703e581d4a4b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9aebd9d-17976770c82bd306","8f44c0ba9a500c2-13dfa5196b8104bb"]},"geometry":{"type":"LineString","coordinates":[[-83.63377700000001,32.825409],[-83.632818,32.826559]]},"id":"8844c0ba9bfffff-13b706451f2a922c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9aebd9d-17976770c82bd306","8f44c0ba9ac842b-17dfc8f80893dfcb"]},"geometry":{"type":"LineString","coordinates":[[-83.632818,32.826559],[-83.632192,32.827278]]},"id":"8944c0ba9afffff-17ff18346220fe80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63170430000001,32.827901000000004]},"id":"8f44c0ba9364728-17df2a28dba91d74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9364728-17df2a28dba91d74","8f44c0ba9ac842b-17dfc8f80893dfcb"]},"geometry":{"type":"LineString","coordinates":[[-83.632192,32.827278],[-83.63170430000001,32.827901000000004]]},"id":"8744c0ba9ffffff-179f79907b6c80bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631326,32.828401]},"id":"8f44c0ba9362a1b-1397ab1540aa3a3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9362a1b-1397ab1540aa3a3f","8f44c0ba9364728-17df2a28dba91d74"]},"geometry":{"type":"LineString","coordinates":[[-83.63170430000001,32.827901000000004],[-83.6314091,32.828278000000005],[-83.631326,32.828401]]},"id":"8a44c0ba9367fff-17fffaa114764353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36951554-13973b1b1bd4b288","8f44c0a3695ca71-179f994d4586bed6"]},"geometry":{"type":"LineString","coordinates":[[-83.62476310000001,32.8361778],[-83.62497300000001,32.83628],[-83.62550200000001,32.836596]]},"id":"8944c0a3697ffff-1797da3202785ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694e2c3-1797f7ae4cb86369","8f44c0a3695ca71-179f994d4586bed6"]},"geometry":{"type":"LineString","coordinates":[[-83.62550200000001,32.836596],[-83.6260701,32.836937400000004],[-83.62616600000001,32.836995]]},"id":"8944c0a3697ffff-1797387dce8c137e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694e2c3-1797f7ae4cb86369","8f44c0a369480d5-17ff770da1302c05"]},"geometry":{"type":"LineString","coordinates":[[-83.62616600000001,32.836995],[-83.626423,32.837159]]},"id":"8a44c0a3694ffff-17d7375df4db84b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36949c92-17d7f68babcb1cb5","8f44c0a369480d5-17ff770da1302c05"]},"geometry":{"type":"LineString","coordinates":[[-83.626423,32.837159],[-83.626631,32.837283]]},"id":"8a44c0a3694ffff-179f36ccadb33039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36949c92-17d7f68babcb1cb5","8f44c0a3449591d-17d7f40e266da4bd"]},"geometry":{"type":"LineString","coordinates":[[-83.626631,32.837283],[-83.627651,32.837899]]},"id":"8744c0a36ffffff-1797754ce4c280a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76192400000001,32.895234]},"id":"8f44c0b5304d0ab-13d5cc3d8820726b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5304d0ab-13d5cc3d8820726b","8f44c0b53330698-17b5fa8d225e0c08"]},"geometry":{"type":"LineString","coordinates":[[-83.76192400000001,32.895234],[-83.762224,32.895389],[-83.7626158,32.8955995]]},"id":"8844c0b533fffff-17b7eb64ebee6621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b53333985-17d5ea3eb21c4510","8f44c0b53330698-17b5fa8d225e0c08"]},"geometry":{"type":"LineString","coordinates":[[-83.7626158,32.8955995],[-83.76268200000001,32.895635],[-83.7627413,32.8956698]]},"id":"8a44c0b53337fff-17bfca65ba8c166e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5ec822c4-13ddbd57b90f9a0c","8f44c0b53333985-17d5ea3eb21c4510"]},"geometry":{"type":"LineString","coordinates":[[-83.7627413,32.8956698],[-83.762991,32.895816],[-83.76325200000001,32.895981],[-83.763453,32.896118],[-83.76371300000001,32.896309],[-83.763942,32.896487],[-83.76433200000001,32.896822],[-83.764567,32.897042],[-83.764736,32.897207],[-83.764848,32.897326],[-83.76510300000001,32.897619],[-83.765288,32.897847],[-83.767874,32.9012],[-83.7680261,32.901390500000005]]},"id":"8644c0b57ffffff-13f5c3625f27c92f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5ec822c4-13ddbd57b90f9a0c","8f44c0b5ecd1499-13bdf92c441290ff"]},"geometry":{"type":"LineString","coordinates":[[-83.7680261,32.901390500000005],[-83.768056,32.901428],[-83.769734,32.9035998]]},"id":"8844c0b5edfffff-17fffb41dacfd1f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77712600000001,32.913167]},"id":"8f44c0b5e382d0b-179de72041f00f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5e382d0b-179de72041f00f58","8f44c0b5ecd1499-13bdf92c441290ff"]},"geometry":{"type":"LineString","coordinates":[[-83.769734,32.9035998],[-83.7717653,32.906229],[-83.77434930000001,32.9095474],[-83.77476750000001,32.9100819],[-83.775958,32.911656],[-83.77649500000001,32.912345],[-83.77712600000001,32.913167]]},"id":"8744c0b5effffff-13ddb02380785515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3445e2cc-17b786654b525bb3","8f44c0a3445d24c-17bf442e66bf081c"]},"geometry":{"type":"LineString","coordinates":[[-83.633246,32.840716],[-83.6336043,32.8407974],[-83.63415300000001,32.840922]]},"id":"8a44c0a3445ffff-17f7e549d611eefc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34448480-17bfa322e0e5fe09","8f44c0a3445d24c-17bf442e66bf081c"]},"geometry":{"type":"LineString","coordinates":[[-83.63415300000001,32.840922],[-83.634405,32.84093],[-83.63458100000001,32.840929]]},"id":"8944c0a3447ffff-17bfa3a8a75adab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34448480-17bfa322e0e5fe09","8f44c0a34732da5-17bf40bbe8b9e393"]},"geometry":{"type":"LineString","coordinates":[[-83.63458100000001,32.840929],[-83.635288,32.840927],[-83.635565,32.840922]]},"id":"8744c0a34ffffff-17bf61ef6e72d694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34732da5-17bf40bbe8b9e393","8f44c0a3473664e-17b73049feb260f1"]},"geometry":{"type":"LineString","coordinates":[[-83.635565,32.840922],[-83.6357473,32.8409187]]},"id":"8a44c0a34737fff-17b74082f866c938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.636832,32.840899]},"id":"8f44c0a34735b03-179ffda408f8a3c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34735b03-179ffda408f8a3c0","8f44c0a3473664e-17b73049feb260f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6357473,32.8409187],[-83.636832,32.840899]]},"id":"8944c0a3473ffff-17b6fef6fbc01867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34735b03-179ffda408f8a3c0","8f44c0a340d6514-1797fa3722a77c90"]},"geometry":{"type":"LineString","coordinates":[[-83.636832,32.840899],[-83.63775550000001,32.8408795],[-83.63823500000001,32.8408595]]},"id":"8744c0a34ffffff-179ffbed8e075270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344c4929-17dfcb7eebf1907b","8f44c0a344e30da-17b75acfa9bcf1b5"]},"geometry":{"type":"LineString","coordinates":[[-83.631157,32.839958],[-83.63143740000001,32.840125300000004]]},"id":"8a44c0a344e7fff-17971b274af00680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.773892,32.898949]},"id":"8f44c0b5ed54cec-17d7af05898cce23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b53ace6a3-17d7e036211da533","8f44c0b5ed54cec-17d7af05898cce23"]},"geometry":{"type":"LineString","coordinates":[[-83.773892,32.898949],[-83.773756,32.898846],[-83.77350600000001,32.898681],[-83.77337800000001,32.898606],[-83.77154800000001,32.897685],[-83.771243,32.897537],[-83.77109,32.897472],[-83.77092300000001,32.897419],[-83.770688,32.89736],[-83.76893600000001,32.897042],[-83.768468,32.89696],[-83.76751300000001,32.896785],[-83.766851,32.896669]]},"id":"8644c0b57ffffff-13dff75ebb78214c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b5304d0ab-13d5cc3d8820726b","8f44c0b53ace6a3-17d7e036211da533"]},"geometry":{"type":"LineString","coordinates":[[-83.766851,32.896669],[-83.76544200000001,32.896411],[-83.765169,32.896354],[-83.764778,32.896243000000005],[-83.764446,32.896133],[-83.76269500000001,32.895497],[-83.76192400000001,32.895234]]},"id":"8744c0b53ffffff-17bdc648b744f30e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.611671,32.83961]},"id":"8f44c0a36cdc79c-13f77b11a8a26536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6116463,32.8395778]},"id":"8f44c0a36cdc4c8-13f73b211aed253a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36cdc79c-13f77b11a8a26536","8f44c0a36cdc4c8-13f73b211aed253a"]},"geometry":{"type":"LineString","coordinates":[[-83.611671,32.83961],[-83.6116463,32.8395778]]},"id":"8b44c0a36cdcfff-13ff3b195f7a416d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61119260000001,32.8391615]},"id":"8f44c0a36cd3949-13dffc3cacbbc9c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36cdc4c8-13f73b211aed253a","8f44c0a36cd3949-13dffc3cacbbc9c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6116463,32.8395778],[-83.61159500000001,32.839511],[-83.611298,32.839257],[-83.61119260000001,32.8391615]]},"id":"8944c0a36cfffff-13dfbbac13e06da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36cd3949-13dffc3cacbbc9c7","8f44c0bab26920a-13b7c338868f2b12"]},"geometry":{"type":"LineString","coordinates":[[-83.61119260000001,32.8391615],[-83.611106,32.839083],[-83.610743,32.838783],[-83.61066930000001,32.838732400000005],[-83.61064400000001,32.838715],[-83.61056,32.838659],[-83.610276,32.838498],[-83.610084,32.83841],[-83.609746,32.838279],[-83.60946700000001,32.838198000000006],[-83.60929200000001,32.838155],[-83.60897200000001,32.838101],[-83.608332,32.838046]]},"id":"8744c0a36ffffff-139f3f8c9624faa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bab24ccf4-17ffd60c9a6cb461","8f44c0bab26920a-13b7c338868f2b12"]},"geometry":{"type":"LineString","coordinates":[[-83.608332,32.838046],[-83.607988,32.83802],[-83.6071735,32.837957700000004]]},"id":"8944c0bab27ffff-139744a292b0ac95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5469659,32.8494972]},"id":"8f44c0b8ad64644-1797d90a5dcb329c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8ad64644-1797d90a5dcb329c","8f44c0b8a9b1359-13d7d3000347f231"]},"geometry":{"type":"LineString","coordinates":[[-83.54944,32.849386],[-83.54739400000001,32.84948],[-83.5469659,32.8494972]]},"id":"8744c0b8affffff-13f7f60529257f50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8ad66783-17b7da7596a273f5","8f44c0b8ad64644-1797d90a5dcb329c"]},"geometry":{"type":"LineString","coordinates":[[-83.5469659,32.8494972],[-83.5463847,32.8495204]]},"id":"8a44c0b8ad67fff-179fd9bff26796aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8ad66783-17b7da7596a273f5","8f44c0b8ad7086a-17b7dc03a3a1f91e"]},"geometry":{"type":"LineString","coordinates":[[-83.5463847,32.8495204],[-83.5457478,32.849546000000004]]},"id":"8944c0b8ad7ffff-17bfdb3cacc4af71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5453986,32.8495599]},"id":"8f44c0b8ad70502-17bffcdde9f7b14f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8ad70502-17bffcdde9f7b14f","8f44c0b8ad7086a-17b7dc03a3a1f91e"]},"geometry":{"type":"LineString","coordinates":[[-83.5457478,32.849546000000004],[-83.5453986,32.8495599]]},"id":"8b44c0b8ad70fff-17bffc70c3087192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8ad70502-17bffcdde9f7b14f","8f44c0b8ad1a2dc-17bfe3e3ceaeb260"]},"geometry":{"type":"LineString","coordinates":[[-83.5453986,32.8495599],[-83.54325100000001,32.849646],[-83.542522,32.849733]]},"id":"8844c0b8adfffff-17f7e061e531ef30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b9ac796-13d7e4e58967feba","8f44c0b8b99b854-1797a9b20f193c09"]},"geometry":{"type":"LineString","coordinates":[[-83.568324,32.865746],[-83.56804500000001,32.865949],[-83.56750810000001,32.8663856],[-83.56725660000001,32.8665861],[-83.5668986,32.866869],[-83.5663584,32.8672768]]},"id":"8944c0b8b9bffff-17b7f74b1c815261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b99b854-1797a9b20f193c09","8f44c0b8b896302-13dfede2c7380c61"]},"geometry":{"type":"LineString","coordinates":[[-83.5663584,32.8672768],[-83.564642,32.868651]]},"id":"8744c0b8bffffff-13bffbca6555cde7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8bc4032b-17d7b1eb4fbdbf59","8f44c0b8b896302-13dfede2c7380c61"]},"geometry":{"type":"LineString","coordinates":[[-83.564642,32.868651],[-83.564335,32.868879],[-83.563845,32.869253],[-83.56345400000001,32.869535],[-83.56314400000001,32.869743],[-83.56299,32.869841]]},"id":"8844c0b8bdfffff-17d7efe21e28cf1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8bce9202-13d7f6252d90cf58","8f44c0b8bc4032b-17d7b1eb4fbdbf59"]},"geometry":{"type":"LineString","coordinates":[[-83.56299,32.869841],[-83.562769,32.869973],[-83.56249700000001,32.870168],[-83.562037,32.87052],[-83.56149,32.870914],[-83.561259,32.871071]]},"id":"8844c0b8bdfffff-17d7f409eef8827a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8bce9202-13d7f6252d90cf58","8f44c0b8b566b4b-139ffaf50224c4fc"]},"geometry":{"type":"LineString","coordinates":[[-83.561259,32.871071],[-83.561014,32.871232],[-83.56074000000001,32.871408],[-83.56035800000001,32.871637],[-83.559787,32.871958],[-83.55928800000001,32.872231]]},"id":"8744c0b8bffffff-13b7f8871f818d68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.543616,32.885228500000004]},"id":"8f44c0aa43ae1a4-13d7f138086446a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa43ae4d2-139ff1bd50dfa190","8f44c0aa43ae1a4-13d7f138086446a9"]},"geometry":{"type":"LineString","coordinates":[[-83.543616,32.885228500000004],[-83.5434027,32.885348300000004]]},"id":"8a44c0aa43affff-13ffe17ab2d9e0c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54306100000001,32.8855402]},"id":"8f44c0aa4385606-1797e292e77437ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4385606-1797e292e77437ca","8f44c0aa43ae4d2-139ff1bd50dfa190"]},"geometry":{"type":"LineString","coordinates":[[-83.5434027,32.885348300000004],[-83.54306100000001,32.8855402]]},"id":"8b44c0aa4385fff-13dff2281824c8d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5425525,32.885783]},"id":"8f44c0aa4383d43-17bfe3d0b0b448c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4385606-1797e292e77437ca","8f44c0aa4383d43-17bfe3d0b0b448c5"]},"geometry":{"type":"LineString","coordinates":[[-83.54306100000001,32.8855402],[-83.5430132,32.885567],[-83.5425525,32.885783]]},"id":"8a44c0aa4387fff-17f7e331464c21dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4383d43-17bfe3d0b0b448c5","8f44c0aa439c590-17bfe599e87821d7"]},"geometry":{"type":"LineString","coordinates":[[-83.5425525,32.885783],[-83.54239510000001,32.8858668],[-83.54220310000001,32.8858894],[-83.541821,32.8859836]]},"id":"8944c0aa43bffff-17f7f4b1e8320c47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5431478,32.886519400000005]},"id":"8f44c0aa438852d-17ffe25ca6335102"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5441765,32.887611]},"id":"8f44c0aa42154e1-13b7ffd9bd805844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa438852d-17ffe25ca6335102","8f44c0aa42154e1-13b7ffd9bd805844"]},"geometry":{"type":"LineString","coordinates":[[-83.5431478,32.886519400000005],[-83.5430862,32.8865793],[-83.54296330000001,32.886743800000005],[-83.5428827,32.8869114],[-83.5428827,32.8871145],[-83.5430055,32.8873144],[-83.5432013,32.8874756],[-83.54345860000001,32.887575500000004],[-83.5436889,32.8876432],[-83.54395380000001,32.887649700000004],[-83.5441765,32.887611]]},"id":"8844c0aa43fffff-13dfe1f6782ae1d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa4385606-1797e292e77437ca","8f44c0aa42154e1-13b7ffd9bd805844"]},"geometry":{"type":"LineString","coordinates":[[-83.5441765,32.887611],[-83.5441189,32.8873757],[-83.5438962,32.8869727],[-83.54306100000001,32.8855402]]},"id":"8844c0aa43fffff-1797e1228753809e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5439769,32.8855219]},"id":"8f44c0aa43a8c41-179ff056768ac5d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa43a8c41-179ff056768ac5d1","8f44c0aa43ae1a4-13d7f138086446a9"]},"geometry":{"type":"LineString","coordinates":[[-83.543616,32.885228500000004],[-83.5439769,32.8855219]]},"id":"8a44c0aa43affff-13bfe0c744bcb60a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5449981,32.8872531]},"id":"8f44c0aa42312d0-13d7fdd83996695f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa42312d0-13d7fdd83996695f","8f44c0aa43a8c41-179ff056768ac5d1"]},"geometry":{"type":"LineString","coordinates":[[-83.5439769,32.8855219],[-83.5449981,32.8872531]]},"id":"8844c0aa43fffff-17bfff175023a6bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54335110000001,32.8868211]},"id":"8f44c0aa43882c3-17b7f1dd99305f93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa43882c3-17b7f1dd99305f93","8f44c0aa438852d-17ffe25ca6335102"]},"geometry":{"type":"LineString","coordinates":[[-83.54335110000001,32.8868211],[-83.5431478,32.886519400000005]]},"id":"8b44c0aa4388fff-17dff21d2768338a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa438852d-17ffe25ca6335102","8f44c0aa4383d43-17bfe3d0b0b448c5"]},"geometry":{"type":"LineString","coordinates":[[-83.5431478,32.886519400000005],[-83.5430362,32.8863537],[-83.5425525,32.885783]]},"id":"8944c0aa43bffff-1797e31251c16430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5464992,32.8865439]},"id":"8f44c0aa4225918-179ffa2e0776afb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa431102c-13bffd8dd2bb73d0","8f44c0aa4225918-179ffa2e0776afb0"]},"geometry":{"type":"LineString","coordinates":[[-83.5464992,32.8865439],[-83.5455202,32.8848416],[-83.5451171,32.8849802]]},"id":"8844c0aa43fffff-179fdbad05f65cda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa431102c-13bffd8dd2bb73d0","8f44c0aa4313a8a-139ffe8294a2d04a"]},"geometry":{"type":"LineString","coordinates":[[-83.5451171,32.8849802],[-83.5447255,32.885144700000005]]},"id":"8a44c0aa4317fff-13ffde083dbd9d9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa43add83-1397df702f7d1d22","8f44c0aa4313a8a-139ffe8294a2d04a"]},"geometry":{"type":"LineString","coordinates":[[-83.5447255,32.885144700000005],[-83.54434540000001,32.8853316]]},"id":"8844c0aa43fffff-13dffef95d6d4a5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa43add83-1397df702f7d1d22","8f44c0aa43a8c41-179ff056768ac5d1"]},"geometry":{"type":"LineString","coordinates":[[-83.54434540000001,32.8853316],[-83.5439769,32.8855219]]},"id":"8a44c0aa43affff-13dfdfe340018919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa42154e1-13b7ffd9bd805844","8f44c0aa4206426-13b7deadcb8d4c61"]},"geometry":{"type":"LineString","coordinates":[[-83.5441765,32.887611],[-83.54465640000001,32.8874305]]},"id":"8944c0aa423ffff-13ffdf43cea1f3e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa42312d0-13d7fdd83996695f","8f44c0aa4206426-13b7deadcb8d4c61"]},"geometry":{"type":"LineString","coordinates":[[-83.54465640000001,32.8874305],[-83.5449981,32.8872531]]},"id":"8a44c0aa4207fff-13fffe4303c48525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa42312d0-13d7fdd83996695f","8f44c0aa4222740-17dfdcdc4752e51b"]},"geometry":{"type":"LineString","coordinates":[[-83.5449981,32.8872531],[-83.5454012,32.8870565]]},"id":"8944c0aa423ffff-1397dd5a46743ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4222740-17dfdcdc4752e51b","8f44c0aa4220443-17d7fbf381b63b61"]},"geometry":{"type":"LineString","coordinates":[[-83.5454012,32.8870565],[-83.5457736,32.8868663]]},"id":"8a44c0aa4227fff-179ffc67e22201d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4220443-17d7fbf381b63b61","8f44c0aa4225484-17f7fb0f9a5ae56f"]},"geometry":{"type":"LineString","coordinates":[[-83.5457736,32.8868663],[-83.54613830000001,32.886711500000004]]},"id":"8a44c0aa4227fff-17b7db81863c9eae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4225484-17f7fb0f9a5ae56f","8f44c0aa4225918-179ffa2e0776afb0"]},"geometry":{"type":"LineString","coordinates":[[-83.54613830000001,32.886711500000004],[-83.5464992,32.8865439]]},"id":"8b44c0aa4225fff-17bfda9ec77ebda2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa4225918-179ffa2e0776afb0","8f44c0aa4309332-17dff8c6103a825b"]},"geometry":{"type":"LineString","coordinates":[[-83.5464992,32.8865439],[-83.54687290000001,32.886361900000004],[-83.5470751,32.886263400000004]]},"id":"8844c0aa43fffff-17b7d97a0fd42026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a155b16-17d7ffbe08dbf26f","8f44c0a2a1422ea-17d7df1208fb4f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.7080608,32.922498700000006],[-83.7081416,32.9226637],[-83.708336,32.9230973]]},"id":"8944c0a2a17ffff-179e6f66ca6efde9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a15dab2-139fce77dfa5f90d","8f44c0a2a1422ea-17d7df1208fb4f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.708336,32.9230973],[-83.70858270000001,32.9236476]]},"id":"8944c0a2a17ffff-13f7cec4f999a67f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69540280000001,32.913837400000006]},"id":"8f44c0a05344c41-13be6ea541375907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05344c41-13be6ea541375907","8f44c0a05344a68-13966dec8a6ccb05"]},"geometry":{"type":"LineString","coordinates":[[-83.69540280000001,32.913837400000006],[-83.69569840000001,32.9140036]]},"id":"8b44c0a05344fff-13f67e48e201ebda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05345832-13d67d837b6b40b2","8f44c0a05344a68-13966dec8a6ccb05"]},"geometry":{"type":"LineString","coordinates":[[-83.69569840000001,32.9140036],[-83.69586650000001,32.914103100000005]]},"id":"8a44c0a05347fff-13b76db7f9063b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6961631,32.9143072]},"id":"8f44c0a0536e603-13d66cca1f2c6c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0536e603-13d66cca1f2c6c02","8f44c0a0536ec73-13bffca60be2dd08"]},"geometry":{"type":"LineString","coordinates":[[-83.6961631,32.9143072],[-83.6963762,32.914100600000005],[-83.696295,32.9140533],[-83.6962208,32.9140383]]},"id":"8b44c0a0536efff-13f77c8063d39898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05363318-13fffd32e0ef4cfb","8f44c0a0536ec73-13bffca60be2dd08"]},"geometry":{"type":"LineString","coordinates":[[-83.6962208,32.9140383],[-83.69605030000001,32.9139725],[-83.6959954,32.9139417]]},"id":"8944c0a0537ffff-139feced584b779c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964353,32.9140487]},"id":"8f44c0a0536e860-13b67c1ff1533e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0536e860-13b67c1ff1533e00","8f44c0a05361050-1397ec2dbf64fba9"]},"geometry":{"type":"LineString","coordinates":[[-83.6964353,32.9140487],[-83.6966099,32.913864000000004],[-83.69657690000001,32.9138097],[-83.69652330000001,32.913784400000004],[-83.6964133,32.9137694]]},"id":"8944c0a0537ffff-13d76be946a8a4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05361501-13be6ca399020560","8f44c0a05361050-1397ec2dbf64fba9"]},"geometry":{"type":"LineString","coordinates":[[-83.6964133,32.9137694],[-83.6962247,32.9136546]]},"id":"8b44c0a05361fff-13de6c68a7cb2f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69617910000001,32.913446900000004]},"id":"8f44c0a05360af6-13be7cc01428b735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05361501-13be6ca399020560","8f44c0a05360af6-13be7cc01428b735"]},"geometry":{"type":"LineString","coordinates":[[-83.6962247,32.9136546],[-83.69638420000001,32.9136297],[-83.6964425,32.9136097],[-83.6964561,32.913597],[-83.6964659,32.9135644],[-83.6964464,32.913523600000005],[-83.69629180000001,32.9134387],[-83.69624420000001,32.9134371],[-83.69617910000001,32.913446900000004]]},"id":"8a44c0a05367fff-13f76c58068a08e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05361501-13be6ca399020560","8f44c0a05360af6-13be7cc01428b735"]},"geometry":{"type":"LineString","coordinates":[[-83.69617910000001,32.913446900000004],[-83.6962247,32.9136546]]},"id":"8a44c0a05367fff-13ff6cb1d70fe3fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a70a402-17de60caab4ffdc4","8f44c0a2a71d243-179f70db42bfd542"]},"geometry":{"type":"LineString","coordinates":[[-83.7010508,32.9283505],[-83.7010774,32.928455]]},"id":"8b44c0a2a70afff-17bfe0d2f52fd899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7011004,32.929234300000005]},"id":"8f44c0a2a6208f2-17d770bc4d9ef196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a70a402-17de60caab4ffdc4","8f44c0a2a6208f2-17d770bc4d9ef196"]},"geometry":{"type":"LineString","coordinates":[[-83.7010774,32.928455],[-83.7010601,32.928506],[-83.7010516,32.9285329],[-83.7009998,32.9286965],[-83.7011004,32.929234300000005]]},"id":"8844c0a2a7fffff-17de70de10dde6cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7005774,32.929309100000005]},"id":"8f44c0a2a622886-17f672032de69ffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a6208f2-17d770bc4d9ef196","8f44c0a2a622886-17f672032de69ffd"]},"geometry":{"type":"LineString","coordinates":[[-83.7011004,32.929234300000005],[-83.7011808,32.9295503],[-83.701198,32.9296588],[-83.7011865,32.929738400000005],[-83.7011118,32.9297914],[-83.70072970000001,32.9298614],[-83.70063490000001,32.9298614],[-83.7005544,32.929810700000004],[-83.7004998,32.9295744],[-83.7004768,32.9294297],[-83.7004883,32.9293573],[-83.7005774,32.929309100000005]]},"id":"8944c0a2a63ffff-17be715e8ce5579c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a6208f2-17d770bc4d9ef196","8f44c0a2a622886-17f672032de69ffd"]},"geometry":{"type":"LineString","coordinates":[[-83.7005774,32.929309100000005],[-83.7011004,32.929234300000005]]},"id":"8a44c0a2a627fff-17def15fb09859f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a730770-1797e22bd044e5a3","8f44c0a2a732043-17bf631c465045f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7005123,32.926287800000004],[-83.70043940000001,32.9262967],[-83.70029650000001,32.926314000000005],[-83.7001276,32.926351000000004]]},"id":"8a44c0a2a737fff-17b6f2a4837e0ee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a732043-17bf631c465045f7","8f44c0a2a7327ac-17dff389630a7387"]},"geometry":{"type":"LineString","coordinates":[[-83.7001276,32.926351000000004],[-83.69995300000001,32.9263805]]},"id":"8b44c0a2a732fff-17d6e352db304fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a4490e4-17ffe465043b36b6","8f44c0a2a7327ac-17dff389630a7387"]},"geometry":{"type":"LineString","coordinates":[[-83.69995300000001,32.9263805],[-83.69960160000001,32.9264376]]},"id":"8944c0a2a73ffff-17dff3f7324f3888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69884230000001,32.9264324]},"id":"8f44c0a2a44b596-17fe663f9943113a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a4490e4-17ffe465043b36b6","8f44c0a2a44b596-17fe663f9943113a"]},"geometry":{"type":"LineString","coordinates":[[-83.69960160000001,32.9264376],[-83.6994739,32.9264558],[-83.6992731,32.92646],[-83.6989597,32.9264291],[-83.69884230000001,32.9264324]]},"id":"8a44c0a2a44ffff-17f6f5521e234e98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69616230000001,32.9133477]},"id":"8f44c0a05360bb5-17fe7cca981449ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05360bb5-17fe7cca981449ef","8f44c0a05360af6-13be7cc01428b735"]},"geometry":{"type":"LineString","coordinates":[[-83.69617910000001,32.913446900000004],[-83.69616230000001,32.9133477]]},"id":"8c44c0a05360bff-139f7cc55a785e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69611470000001,32.9132849]},"id":"8f44c0a05360818-17d77ce8507a2b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05360818-17d77ce8507a2b09","8f44c0a05360bb5-17fe7cca981449ef"]},"geometry":{"type":"LineString","coordinates":[[-83.69616230000001,32.9133477],[-83.6964073,32.9130653],[-83.6962343,32.9129731],[-83.6960389,32.9132],[-83.6960748,32.913226900000005],[-83.69611470000001,32.9132849]]},"id":"8a44c0a05367fff-17f66ca4b4762368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05360818-17d77ce8507a2b09","8f44c0a05360bb5-17fe7cca981449ef"]},"geometry":{"type":"LineString","coordinates":[[-83.69611470000001,32.9132849],[-83.69616230000001,32.9133477]]},"id":"8b44c0a05360fff-17f6fcd97f3a92f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a091361-13fe6070814c59aa","8f44c0a2a09d59b-179f7fc11b7a07cc"]},"geometry":{"type":"LineString","coordinates":[[-83.70122160000001,32.9245888],[-83.7015023,32.925080200000004]]},"id":"8a44c0a2a09ffff-1797f018cfe3c0fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a70d864-17965d8cb264cfbb","8f44c0a2a09d59b-179f7fc11b7a07cc"]},"geometry":{"type":"LineString","coordinates":[[-83.7015023,32.925080200000004],[-83.702208,32.926316],[-83.70233900000001,32.926564],[-83.70242400000001,32.926768],[-83.702466,32.9269],[-83.702509,32.927098],[-83.702528,32.927337],[-83.702528,32.927498],[-83.702504,32.927721000000005],[-83.70246200000001,32.927918000000005],[-83.70240530000001,32.9281376]]},"id":"8744c0a2affffff-13bf7e1245a143eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a64e6a8-13bfdc4c37cb5e0b","8f44c0a2a70d864-17965d8cb264cfbb"]},"geometry":{"type":"LineString","coordinates":[[-83.70240530000001,32.9281376],[-83.702228,32.928573],[-83.702123,32.92895],[-83.702049,32.929498],[-83.702044,32.929755],[-83.702077,32.930177],[-83.70227,32.931646],[-83.70243,32.9322529],[-83.70263800000001,32.933053],[-83.702691,32.933197],[-83.702748,32.933297],[-83.70282900000001,32.933401],[-83.7029181,32.933503200000004]]},"id":"8844c0a2a7fffff-13b77dd331f0851e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71706900000001,32.936601200000005]},"id":"8f44c0a2b575834-13bff9bfec3ab9ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a64e6a8-13bfdc4c37cb5e0b","8f44c0a2b575834-13bff9bfec3ab9ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7029181,32.933503200000004],[-83.702938,32.933526],[-83.703168,32.933701],[-83.70325000000001,32.933745],[-83.703558,32.933905],[-83.70411700000001,32.934111],[-83.704598,32.934208000000005],[-83.70931800000001,32.934891],[-83.71002700000001,32.935021],[-83.710412,32.935124],[-83.711048,32.935343],[-83.71150820000001,32.935521],[-83.713181,32.9361681],[-83.713296,32.93621],[-83.713741,32.93636],[-83.714152,32.936464],[-83.714444,32.93652],[-83.71470500000001,32.936557],[-83.714937,32.936577],[-83.715953,32.9366],[-83.7166562,32.9366131],[-83.71706900000001,32.936601200000005]]},"id":"8644c0a2fffffff-17f67b23700eb2b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8b406a0e-17d7e516e76e5378","8f44c0b8b400a20-13ffd42ddfa1676c"]},"geometry":{"type":"LineString","coordinates":[[-83.5555107,32.874230100000005],[-83.5553637,32.8740509],[-83.555287,32.8739901],[-83.55513780000001,32.873938200000005]]},"id":"8a44c0b8b407fff-139fd497527d3bed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8b406a0e-17d7e516e76e5378","8f44c0aa48292dc-13b7d6f86e2a144f"]},"geometry":{"type":"LineString","coordinates":[[-83.55513780000001,32.873938200000005],[-83.5548437,32.873936400000005],[-83.55440460000001,32.873931],[-83.5536256,32.8739847],[-83.55315560000001,32.874042],[-83.5527144,32.8741208],[-83.5521688,32.8742192],[-83.55175320000001,32.874264000000004],[-83.5513251,32.87428],[-83.5483555,32.8741774],[-83.5478138,32.874095600000004]]},"id":"8644c0b8fffffff-13d7ee070dfa0879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4801af1-17f7f9e667817d76","8f44c0aa48292dc-13b7d6f86e2a144f"]},"geometry":{"type":"LineString","coordinates":[[-83.5478138,32.874095600000004],[-83.5473199,32.873997200000005],[-83.5466138,32.873813500000004]]},"id":"8944c0aa483ffff-17d7f8709e2c4727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4801af1-17f7f9e667817d76","8f44c0aa48b0576-1797f5284f97fcb9"]},"geometry":{"type":"LineString","coordinates":[[-83.5466138,32.873813500000004],[-83.5459854,32.873587],[-83.54567850000001,32.8734533],[-83.5446794,32.8729621],[-83.5443383,32.8727728],[-83.5439767,32.8726227],[-83.5437289,32.8725721],[-83.543537,32.8725352],[-83.5432519,32.872534800000004],[-83.5429987,32.8725651],[-83.5427669,32.8726101],[-83.5424929,32.872712],[-83.5422642,32.872837600000004],[-83.5420028,32.8730149]]},"id":"8844c0aa49fffff-17f7df8723def39e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c6e312-13dff911d5b0f3d4","8f44c0aa48b0576-1797f5284f97fcb9"]},"geometry":{"type":"LineString","coordinates":[[-83.5420028,32.8730149],[-83.54183640000001,32.873185],[-83.5404003,32.8747741]]},"id":"8744c0aa4ffffff-17b7e71ef80d2d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c6e312-13dff911d5b0f3d4","8f44c0aa4c43993-13b7fbcf66c12b74"]},"geometry":{"type":"LineString","coordinates":[[-83.5404003,32.8747741],[-83.54022850000001,32.8749248],[-83.54001570000001,32.875019900000005],[-83.5398052,32.8750809],[-83.539574,32.8751151],[-83.53927780000001,32.8751461]]},"id":"8944c0aa4c7ffff-13ffea5ffd4efa67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c4229e-13dffcbfe13a96c6","8f44c0aa4c43993-13b7fbcf66c12b74"]},"geometry":{"type":"LineString","coordinates":[[-83.53927780000001,32.8751461],[-83.53907000000001,32.8751637],[-83.538893,32.8751801]]},"id":"8a44c0aa4c47fff-13d7fc47a3c96de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4c4229e-13dffcbfe13a96c6","8f44c0aa4cd3860-17f7f6d8ad276236"]},"geometry":{"type":"LineString","coordinates":[[-83.538893,32.8751801],[-83.53827220000001,32.8752682],[-83.5365756,32.875537200000004],[-83.53569510000001,32.8756872],[-83.53534400000001,32.875749500000005],[-83.5347574,32.8758366]]},"id":"8844c0aa4dfffff-1397f1ccd6f335f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.4845866,32.868713400000004]},"id":"8f44c0ab4866b9b-1399f15568fd443a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0aa4cd3860-17f7f6d8ad276236","8f44c0ab4866b9b-1399f15568fd443a"]},"geometry":{"type":"LineString","coordinates":[[-83.5347574,32.8758366],[-83.5340927,32.8759521],[-83.53343860000001,32.876057],[-83.5329853,32.8761552],[-83.5324243,32.8763024],[-83.53152150000001,32.8765513],[-83.5310326,32.876661500000004],[-83.5306687,32.876726500000004],[-83.5303274,32.8767699],[-83.5295483,32.8768392],[-83.52894160000001,32.8768972],[-83.52820340000001,32.8769744],[-83.52708770000001,32.8770757],[-83.52592410000001,32.877196500000004],[-83.52553830000001,32.8772207],[-83.52525680000001,32.877226],[-83.5250441,32.8772072],[-83.5247001,32.877162000000006],[-83.5243107,32.8770739],[-83.5235584,32.876895000000005],[-83.5231826,32.8768243],[-83.5228843,32.8767937],[-83.5224651,32.8767976],[-83.522193,32.876821500000005],[-83.5218725,32.8768776],[-83.521583,32.8769523],[-83.52132850000001,32.8770572],[-83.52048620000001,32.8774253],[-83.5201136,32.8775637],[-83.5198491,32.8776348],[-83.5196184,32.877674],[-83.5193208,32.8777021],[-83.5191147,32.8777059],[-83.51887760000001,32.8776953],[-83.5185888,32.8776577],[-83.518321,32.877586900000004],[-83.5180373,32.8774873],[-83.51763170000001,32.877294400000004],[-83.5161781,32.8765139],[-83.51462950000001,32.875689],[-83.5140903,32.8754099],[-83.51373910000001,32.8752232],[-83.51311960000001,32.8748926],[-83.5126413,32.874624100000005],[-83.51227370000001,32.874433700000004],[-83.5119615,32.874278100000005],[-83.51176810000001,32.8741879],[-83.51159150000001,32.8741196],[-83.5113408,32.874051300000005],[-83.5110698,32.874003300000005],[-83.5107346,32.87398],[-83.5104484,32.873998900000004],[-83.51018640000001,32.8740425],[-83.5099479,32.8741166],[-83.50965740000001,32.874222800000005],[-83.50933210000001,32.8743828],[-83.5088717,32.874630100000005],[-83.50861830000001,32.8747726],[-83.5079413,32.875145],[-83.5076686,32.8752848],[-83.5072629,32.8754943],[-83.5069124,32.8756311],[-83.50662820000001,32.875703800000004],[-83.50634020000001,32.875759],[-83.50606470000001,32.875765200000004],[-83.50578560000001,32.8757467],[-83.5054415,32.875686300000005],[-83.5050812,32.8755699],[-83.504368,32.8752202],[-83.504012,32.8750396],[-83.5036025,32.874827700000004],[-83.5030376,32.87454],[-83.50237320000001,32.8742122],[-83.5017112,32.873886500000005],[-83.5012361,32.8737067],[-83.5008767,32.8736138],[-83.5004978,32.873558],[-83.50022030000001,32.8735383],[-83.49968790000001,32.8735323],[-83.4990939,32.8735651],[-83.4985309,32.8736108],[-83.4980263,32.8736144],[-83.4975601,32.8735998],[-83.4970763,32.8735692],[-83.4965549,32.873517],[-83.4960763,32.8734452],[-83.49523980000001,32.873273000000005],[-83.4948542,32.873177600000005],[-83.4944493,32.8730501],[-83.4930655,32.8725016],[-83.4925752,32.8722857],[-83.49116950000001,32.8716613],[-83.48903820000001,32.8706599],[-83.4889562,32.8705895],[-83.4888706,32.870467000000005],[-83.48775880000001,32.8699734],[-83.4869322,32.8696177],[-83.4860713,32.8692416],[-83.48547140000001,32.8689866],[-83.48519710000001,32.8688841],[-83.4845866,32.868713400000004]]},"id":"8444c0bffffffff-13fa34b85220c455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6159732,32.859604700000006]},"id":"8f44c0a328e6562-17d7f090c324f9ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328e6562-17d7f090c324f9ad","8f44c0a328e612b-17d73033320e71d5"]},"geometry":{"type":"LineString","coordinates":[[-83.61612290000001,32.859605],[-83.6159732,32.859604700000006]]},"id":"8b44c0a328e6fff-17d730620b08360c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3289acac-17bf7a8c39792dcf","8f44c0a32898119-17d7f90866e5b4de"]},"geometry":{"type":"LineString","coordinates":[[-83.612505,32.859598000000005],[-83.6118845,32.8595927]]},"id":"8a44c0a3289ffff-17bf39ca526f7671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3289acac-17bf7a8c39792dcf","8f44c0a32c6d68d-17bf7b7946dafacf"]},"geometry":{"type":"LineString","coordinates":[[-83.6118845,32.8595927],[-83.61150520000001,32.859589500000006]]},"id":"8744c0a32ffffff-17bf7b02b2d14ef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b89832818-139feae4267104d0","8f44c0b8998b229-13d76d2a0e412691"]},"geometry":{"type":"LineString","coordinates":[[-83.592083,32.861995],[-83.59115200000001,32.86249]]},"id":"8844c0b899fffff-13b7fc071f15f473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b898a5492-17ffee736989f0af","8f44c0b8998b229-13d76d2a0e412691"]},"geometry":{"type":"LineString","coordinates":[[-83.59115200000001,32.86249],[-83.590625,32.862763]]},"id":"8844c0b899fffff-17b7fdceb9955f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b898a5492-17ffee736989f0af","8f44c0b898935ad-17b7f4ac88cb0b09"]},"geometry":{"type":"LineString","coordinates":[[-83.590625,32.862763],[-83.58951300000001,32.863343],[-83.588076,32.864086]]},"id":"8944c0b898bffff-179f718f9fb3dee3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b89c43064-13fff8fecf96994a","8f44c0b898935ad-17b7f4ac88cb0b09"]},"geometry":{"type":"LineString","coordinates":[[-83.588076,32.864086],[-83.58630600000001,32.865022]]},"id":"8844c0b89dfffff-13df76d5accdf198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b89c43064-13fff8fecf96994a","8f44c0b8952caa1-13d78564848d28e6"]},"geometry":{"type":"LineString","coordinates":[[-83.58630600000001,32.865022],[-83.586115,32.865122],[-83.58591200000001,32.865219],[-83.585582,32.865356000000006],[-83.585379,32.865429],[-83.58515,32.865496],[-83.58473400000001,32.865595],[-83.584658,32.865606],[-83.584303,32.865660000000005],[-83.584002,32.865684],[-83.583644,32.865699],[-83.583132,32.865705000000005],[-83.582673,32.865719],[-83.58122800000001,32.865752]]},"id":"8744c0b89ffffff-13f77f1799775481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b882ce844-13d7f69d40fad998","8f44c0b8952caa1-13d78564848d28e6"]},"geometry":{"type":"LineString","coordinates":[[-83.58122800000001,32.865752],[-83.580493,32.865771],[-83.579847,32.865772],[-83.579323,32.865781000000005],[-83.577948,32.865783],[-83.57773,32.865772],[-83.57708000000001,32.865721],[-83.576589,32.865667],[-83.57589700000001,32.865561],[-83.575276,32.865434],[-83.574174,32.865159000000006]]},"id":"8644c0b8fffffff-13978e0d5cc3042c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57317400000001,32.864917000000005]},"id":"8f44c0b882dcc61-13bfb90e4922b1bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b882ce844-13d7f69d40fad998","8f44c0b882dcc61-13bfb90e4922b1bb"]},"geometry":{"type":"LineString","coordinates":[[-83.574174,32.865159000000006],[-83.573323,32.864953],[-83.57317400000001,32.864917000000005]]},"id":"8944c0b882fffff-139fd7d5cc651638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b882dcc61-13bfb90e4922b1bb","8f44c0b8b921548-13ff9d622481dd42"]},"geometry":{"type":"LineString","coordinates":[[-83.57317400000001,32.864917000000005],[-83.572457,32.864735],[-83.5723097,32.864704200000006],[-83.5720756,32.8646578],[-83.5718684,32.8646247],[-83.57167430000001,32.8646017],[-83.5714014,32.864584900000004]]},"id":"8744c0b88ffffff-13d7fb34c8ab8f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b9214b3-13fffdcabdb4dcbc","8f44c0b8b921548-13ff9d622481dd42"]},"geometry":{"type":"LineString","coordinates":[[-83.5714014,32.864584900000004],[-83.57123410000001,32.8645814]]},"id":"8c44c0b8b9215ff-13fffd967000a6eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b906c08-13f7e0ce8f430c8b","8f44c0b8b9214b3-13fffdcabdb4dcbc"]},"geometry":{"type":"LineString","coordinates":[[-83.57123410000001,32.8645814],[-83.5710584,32.8645875],[-83.5708228,32.8646061],[-83.5706088,32.864633000000005],[-83.57036260000001,32.864679],[-83.57013330000001,32.864738200000005],[-83.56999920000001,32.864778]]},"id":"8944c0b8b93ffff-1397bf4fa06e73f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d22c66a-1797e4b4c373dbb9","8f44c0b1d355ce1-13d6622de43c9921"]},"geometry":{"type":"LineString","coordinates":[[-83.69947400000001,32.814262],[-83.699669,32.814126],[-83.70050900000001,32.813319]]},"id":"8844c0b1d3fffff-17f6e36b341a8402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d355ce1-13d6622de43c9921","8f44c0b1d371576-1397e0d761c70967"]},"geometry":{"type":"LineString","coordinates":[[-83.70050900000001,32.813319],[-83.700653,32.813204],[-83.700839,32.813035],[-83.701057,32.812828]]},"id":"8944c0b1d37ffff-13bff18000fda06a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d366400-13dedf8222e1cf3d","8f44c0b1d371576-1397e0d761c70967"]},"geometry":{"type":"LineString","coordinates":[[-83.701057,32.812828],[-83.70117400000001,32.81273],[-83.701603,32.812334]]},"id":"8944c0b1d37ffff-13fee02b9d34b445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d366400-13dedf8222e1cf3d","8f44c0b1dad9b8b-13df5e6541c56627"]},"geometry":{"type":"LineString","coordinates":[[-83.701603,32.812334],[-83.7018783,32.812085],[-83.7020588,32.811921600000005]]},"id":"8844c0b1d3fffff-13dffef3b949542b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1dad9b8b-13df5e6541c56627","8f44c0b1daca4a9-139fde2145b1bf7e"]},"geometry":{"type":"LineString","coordinates":[[-83.7020588,32.811921600000005],[-83.70216760000001,32.8118232]]},"id":"8a44c0b1dadffff-13be5e43427dea44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1daca4a9-139fde2145b1bf7e","8f44c0b1daecb12-17dff9ef40aac7ce"]},"geometry":{"type":"LineString","coordinates":[[-83.70216760000001,32.8118232],[-83.702264,32.811736],[-83.70388600000001,32.810259]]},"id":"8944c0b1dafffff-17b6dc083b753d89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70661840000001,32.8073027]},"id":"8f44c0b1db43b4e-17967343894decd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db43b4e-17967343894decd0","8f44c0b1daecb12-17dff9ef40aac7ce"]},"geometry":{"type":"LineString","coordinates":[[-83.70388600000001,32.810259],[-83.704141,32.810031],[-83.704514,32.809689],[-83.70506300000001,32.809175],[-83.70555200000001,32.808667],[-83.705875,32.808298],[-83.70616000000001,32.807938],[-83.70658,32.807356],[-83.70661840000001,32.8073027]]},"id":"8844c0b1dbfffff-13d776701f4efbee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db43b4e-17967343894decd0","8f44c0b1db41d43-17f772c3c5dcd08c"]},"geometry":{"type":"LineString","coordinates":[[-83.70661840000001,32.8073027],[-83.70682280000001,32.8070194]]},"id":"8a44c0b1db47fff-17bff303a3f39706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6566167,32.8141174]},"id":"8f44c0b1ab31cc3-17b7ed569bd1acb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ab31cc3-17b7ed569bd1acb0","8f44c0b1ab224c0-17d6ec668dd3ce80"]},"geometry":{"type":"LineString","coordinates":[[-83.6570008,32.814141400000004],[-83.65672,32.814123200000004],[-83.6566167,32.8141174]]},"id":"8a44c0b1ab37fff-17befcde8655165e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180d686c-1797b16c201114b8","8f44c0b18724acd-179eb3734144bea1"]},"geometry":{"type":"LineString","coordinates":[[-83.668051,32.8144763],[-83.6675652,32.8144614],[-83.66733950000001,32.814454500000004],[-83.66728900000001,32.814453],[-83.6672204,32.814452100000004]]},"id":"8844c0b181fffff-179ff26fb55fabe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6680111,32.8143243]},"id":"8f44c0b18089281-17beb1851c21e82a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808d649-17bff15dd179ad0d","8f44c0b18089281-17beb1851c21e82a"]},"geometry":{"type":"LineString","coordinates":[[-83.66807390000001,32.8139254],[-83.66802220000001,32.8140318],[-83.6680111,32.8143243]]},"id":"8a44c0b1808ffff-17bff17bf8fd9248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180d686c-1797b16c201114b8","8f44c0b18089281-17beb1851c21e82a"]},"geometry":{"type":"LineString","coordinates":[[-83.6680111,32.8143243],[-83.66800810000001,32.814419],[-83.668051,32.8144763]]},"id":"8944c0b180fffff-17fef180a6a19c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e210689-13df32519b7c553b","8f44c0b0e212869-13f6f2a7a1738add"]},"geometry":{"type":"LineString","coordinates":[[-83.7201127,32.8092595],[-83.719975,32.8090926]]},"id":"8a44c0b0e217fff-13b7327ca859ed67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e212869-13f6f2a7a1738add","8f44c0b0e216655-139f72fd0e3e8ede"]},"geometry":{"type":"LineString","coordinates":[[-83.719975,32.8090926],[-83.7198384,32.808927000000004]]},"id":"8a44c0b0e217fff-13bf32d25bf90d28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2164e8-13b7f3420a24a003","8f44c0b0e216655-139f72fd0e3e8ede"]},"geometry":{"type":"LineString","coordinates":[[-83.7198384,32.808927000000004],[-83.719728,32.808793200000004]]},"id":"8b44c0b0e216fff-13f7b31f807f19fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2164e8-13b7f3420a24a003","8f44c0b0e38b2d0-13d7b3999759b6f7"]},"geometry":{"type":"LineString","coordinates":[[-83.719728,32.808793200000004],[-83.71958790000001,32.8086363]]},"id":"8844c0b0e3fffff-1396f36dd0483e75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e38b2d0-13d7b3999759b6f7","8f44c0b0e38b734-17fe73eeee950a36"]},"geometry":{"type":"LineString","coordinates":[[-83.71958790000001,32.8086363],[-83.71945140000001,32.8084647]]},"id":"8b44c0b0e38bfff-13b633c43aaa01bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e38a24e-179eb4395388195d","8f44c0b0e38b734-17fe73eeee950a36"]},"geometry":{"type":"LineString","coordinates":[[-83.71945140000001,32.8084647],[-83.7193323,32.8083112]]},"id":"8b44c0b0e38bfff-17beb41418d09bd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e399c4a-179635d5acacc1d1","8f44c0b0e38a24e-179eb4395388195d"]},"geometry":{"type":"LineString","coordinates":[[-83.7193323,32.8083112],[-83.71918090000001,32.8081249],[-83.7186726,32.8081187]]},"id":"8944c0b0e3bffff-17b774f4a0ab4421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70856830000001,32.816535900000005]},"id":"8f44c0b0ac724ed-139efe80d28b1760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac724ed-139efe80d28b1760","8f44c0b0ac70298-13bf4ceb67740e97"]},"geometry":{"type":"LineString","coordinates":[[-83.70856830000001,32.816535900000005],[-83.70921700000001,32.816578]]},"id":"8a44c0b0ac77fff-13be6db61ba0803d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac70298-13bf4ceb67740e97","8f44c0b0a929051-1796f4d0c5e20737"]},"geometry":{"type":"LineString","coordinates":[[-83.70921700000001,32.816578],[-83.70951860000001,32.8165822],[-83.7098203,32.816580800000004],[-83.7101877,32.8165716],[-83.71055460000001,32.816554000000004],[-83.71092080000001,32.8165281],[-83.711286,32.816494],[-83.71251600000001,32.816297],[-83.713302,32.816119],[-83.714377,32.815799000000005],[-83.714979,32.815576],[-83.715629,32.815298],[-83.71633200000001,32.814963],[-83.71679900000001,32.814707],[-83.71748500000001,32.814331],[-83.718355,32.813854],[-83.718773,32.813625],[-83.7189123,32.813548600000004],[-83.71909000000001,32.813451]]},"id":"8744c0b0affffff-139e4083e97e96a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69088810000001,32.812663900000004]},"id":"8f44c0b1d750106-13bef9aafbc55df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d750106-13bef9aafbc55df6","8f44c0b1d62dac2-17b679dee0113e41"]},"geometry":{"type":"LineString","coordinates":[[-83.69080500000001,32.813680600000005],[-83.69088810000001,32.812663900000004]]},"id":"8944c0b1d77ffff-13fef9c4fb8488e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d750106-13bef9aafbc55df6","8f44c0b1d7546eb-13df79a1236243ca"]},"geometry":{"type":"LineString","coordinates":[[-83.69088810000001,32.812663900000004],[-83.6909038,32.812517]]},"id":"8b44c0b1d750fff-13ff79a6118bab0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d7546eb-13df79a1236243ca","8f44c0b1d754cc5-139ef99b5ade944c"]},"geometry":{"type":"LineString","coordinates":[[-83.6909038,32.812517],[-83.6909139,32.8124228],[-83.6909193,32.812322900000005],[-83.6909131,32.812206100000004]]},"id":"8a44c0b1d757fff-13fe799abdf00564"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19823c10-17def3441e6505a7","8f44c0b19822276-17de73959d81ef0b"]},"geometry":{"type":"LineString","coordinates":[[-83.69337990000001,32.8204961],[-83.6935103,32.820494000000004]]},"id":"8a44c0b19827fff-17df736cd18bfb8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6980363,32.8176275]},"id":"8f44c0b1d2ea014-17df783754b89b86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d2ea5ab-17bf68aeef989211","8f44c0b1d2ea014-17df783754b89b86"]},"geometry":{"type":"LineString","coordinates":[[-83.697845,32.817586],[-83.6980363,32.8176275]]},"id":"8b44c0b1d2eafff-17be787320e5e530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d2e8651-1796672882687e17","8f44c0b1d2ea014-17df783754b89b86"]},"geometry":{"type":"LineString","coordinates":[[-83.6980363,32.8176275],[-83.69846960000001,32.8177216]]},"id":"8a44c0b1d2effff-17f6e7afed24b237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d2e8651-1796672882687e17","8f44c0b1d2e9515-17b7e68e6958b411"]},"geometry":{"type":"LineString","coordinates":[[-83.69846960000001,32.8177216],[-83.6987162,32.8177752]]},"id":"8a44c0b1d2effff-1796e6db7ca3ac0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d248a20-1797e00ce17270f4","8f44c0b1d2e9515-17b7e68e6958b411"]},"geometry":{"type":"LineString","coordinates":[[-83.6987162,32.8177752],[-83.69895500000001,32.817827],[-83.699039,32.817827],[-83.699111,32.817800000000005],[-83.699135,32.817779],[-83.699177,32.817724000000005],[-83.699194,32.817686],[-83.69921500000001,32.81761],[-83.699252,32.817503],[-83.699306,32.817394],[-83.69936200000001,32.817349],[-83.699408,32.817331],[-83.699475,32.817327],[-83.699551,32.817334],[-83.700224,32.817462],[-83.70057800000001,32.817541],[-83.70092100000001,32.817622],[-83.701166,32.817684],[-83.70138100000001,32.817753]]},"id":"8644c0b1fffffff-179ee379d493c8c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65586b-13d7fa260f2f51cb","8f44c0b1d642450-13d7fa1b2b2aa0de"]},"geometry":{"type":"LineString","coordinates":[[-83.69070860000001,32.8160058],[-83.6906786,32.815854800000004],[-83.6906783,32.8157124],[-83.6906912,32.815571]]},"id":"8944c0b1d67ffff-13de7a29602b790e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69685000000001,32.819760200000005]},"id":"8f44c0b19963cac-13fe6b1ccf38acf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19963cac-13fe6b1ccf38acf2","8f44c0b19962391-13d6eba5a7204565"]},"geometry":{"type":"LineString","coordinates":[[-83.69663100000001,32.8196936],[-83.6967834,32.8197684],[-83.69685000000001,32.819760200000005]]},"id":"8a44c0b19967fff-13f7eb62a3a14169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19963cac-13fe6b1ccf38acf2","8f44c0b1996206a-13bf7b832bd6f1bf"]},"geometry":{"type":"LineString","coordinates":[[-83.69685000000001,32.819760200000005],[-83.69683280000001,32.8197106],[-83.6966862,32.8196309]]},"id":"8a44c0b19967fff-13dfeb491ed1d471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69614530000001,32.8192174]},"id":"8f44c0b19975544-13beecd5324a5a33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19975544-13beecd5324a5a33","8f44c0b1996206a-13bf7b832bd6f1bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6966862,32.8196309],[-83.6965814,32.819562600000005],[-83.6963451,32.819376500000004],[-83.69614530000001,32.8192174]]},"id":"8944c0b1997ffff-13beec2e03d28f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913729,32.819676]},"id":"8f44c0b1998c371-13dff87bf2f94804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691381,32.818811000000004]},"id":"8f44c0b199ae620-13bef876ee7be704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae620-13bef876ee7be704","8f44c0b1998c371-13dff87bf2f94804"]},"geometry":{"type":"LineString","coordinates":[[-83.6913729,32.819676],[-83.691388,32.8192638],[-83.691381,32.818811000000004]]},"id":"8944c0b199bffff-13bf7875e7fb5a78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69135250000001,32.8185729]},"id":"8f44c0b199aecf0-139e7888b9992412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae620-13bef876ee7be704","8f44c0b199aecf0-139e7888b9992412"]},"geometry":{"type":"LineString","coordinates":[[-83.691381,32.818811000000004],[-83.69137810000001,32.8186277],[-83.69135250000001,32.8185729]]},"id":"8b44c0b199aefff-13f7787a0f8b68ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908348,32.8178476]},"id":"8f44c0b199a29ac-17d6f9cc4db19de8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a29ac-17d6f9cc4db19de8","8f44c0b199aecf0-139e7888b9992412"]},"geometry":{"type":"LineString","coordinates":[[-83.69135250000001,32.8185729],[-83.69126,32.8183753],[-83.6908982,32.8179771],[-83.6908348,32.8178476]]},"id":"8944c0b199bffff-17b6f92670b5998a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d65c2eb-13f679c510eb69e2","8f44c0b1d65d542-179e7970a17d7995"]},"geometry":{"type":"LineString","coordinates":[[-83.6908463,32.8166403],[-83.69088310000001,32.816674500000005],[-83.6909292,32.8166995],[-83.6909814,32.8167137]]},"id":"8a44c0b1d65ffff-13fff99d64e4a385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d65d826-13b7f8d8474557a3","8f44c0b1d65d542-179e7970a17d7995"]},"geometry":{"type":"LineString","coordinates":[[-83.6909814,32.8167137],[-83.6910462,32.8167151],[-83.6911085,32.8166999],[-83.69116220000001,32.8166694],[-83.69120240000001,32.8166267],[-83.6912252,32.8165757]]},"id":"8b44c0b1d65dfff-13f6f9199f44f18d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d65d826-13b7f8d8474557a3","8f44c0b1d6437b4-13b7793d077dd00d"]},"geometry":{"type":"LineString","coordinates":[[-83.6912252,32.8165757],[-83.6912283,32.8165208],[-83.6912113,32.816467800000005],[-83.6911757,32.8164217],[-83.6911249,32.816387],[-83.69106400000001,32.8163671]]},"id":"8944c0b1d67ffff-13ff78f83a576e70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d6437b4-13b7793d077dd00d","8f44c0b1d65ca92-13fe79c99cdd3b85"]},"geometry":{"type":"LineString","coordinates":[[-83.69106400000001,32.8163671],[-83.690999,32.8163639],[-83.69093600000001,32.8163775],[-83.69088090000001,32.8164067],[-83.6908391,32.8164486]]},"id":"8944c0b1d67ffff-13d6f987fbffca38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05006102-13df9226be610469","8f44c0a050006f5-13bfb197ecdecc8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6874133,32.9071257],[-83.68751900000001,32.907432],[-83.68764180000001,32.9076891]]},"id":"8a44c0a05007fff-13ffb1e443128693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69078180000001,32.9112687]},"id":"8f44c0a0504b10e-13f6f9ed6c19c99e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a050006f5-13bfb197ecdecc8c","8f44c0a0504b10e-13f6f9ed6c19c99e"]},"geometry":{"type":"LineString","coordinates":[[-83.68764180000001,32.9076891],[-83.687753,32.907922],[-83.687882,32.908174],[-83.68796900000001,32.908366],[-83.688586,32.909481],[-83.688744,32.90975],[-83.68890300000001,32.909962],[-83.68899300000001,32.910072],[-83.68914500000001,32.910214],[-83.689435,32.910434],[-83.689706,32.910609],[-83.689969,32.91077],[-83.690754,32.911251],[-83.69078180000001,32.9112687]]},"id":"8744c0a05ffffff-179f7e5425ff8f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05316819-139f78dfe75a3367","8f44c0a0504b10e-13f6f9ed6c19c99e"]},"geometry":{"type":"LineString","coordinates":[[-83.69078180000001,32.9112687],[-83.691112,32.911479],[-83.691213,32.911535]]},"id":"8844c0a053fffff-13bff9678f3dcf14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05316819-139f78dfe75a3367","8f44c0a05316b74-13d7f881f124ace9"]},"geometry":{"type":"LineString","coordinates":[[-83.691213,32.911535],[-83.6913633,32.9116191]]},"id":"8a44c0a05317fff-13b7f8b0f694c48a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0530c630-17d67388643a5a80","8f44c0a05316b74-13d7f881f124ace9"]},"geometry":{"type":"LineString","coordinates":[[-83.6913633,32.9116191],[-83.69340100000001,32.912855]]},"id":"8944c0a0533ffff-17d676052ea59550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0530c630-17d67388643a5a80","8f44c0a0530d5b3-179e7300c50be230"]},"geometry":{"type":"LineString","coordinates":[[-83.69340100000001,32.912855],[-83.693618,32.912989]]},"id":"8a44c0a0530ffff-17f673449459b832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05345085-13d76ddbfdbec737","8f44c0a0530d5b3-179e7300c50be230"]},"geometry":{"type":"LineString","coordinates":[[-83.693618,32.912989],[-83.6957249,32.9142804]]},"id":"8844c0a053fffff-13bff06e60a48e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05345085-13d76ddbfdbec737","8f44c0a2aca2453-179f688b4ca36aea"]},"geometry":{"type":"LineString","coordinates":[[-83.6957249,32.9142804],[-83.69630500000001,32.914636],[-83.696776,32.91492],[-83.697075,32.915104],[-83.697349,32.915295],[-83.697477,32.915398],[-83.69757600000001,32.915491],[-83.69771,32.915591],[-83.6978284,32.915727700000005],[-83.697902,32.915829]]},"id":"8544c0a3fffffff-17967b1840fd1c48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7281372,32.931005]},"id":"8f44c0a2b91b8ee-13963eba4229741e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728982,32.930284300000004]},"id":"8f44c0a2b90eca0-13d7bcaa4311ff65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2b91b8ee-13963eba4229741e","8f44c0a2b90eca0-13d7bcaa4311ff65"]},"geometry":{"type":"LineString","coordinates":[[-83.7281372,32.931005],[-83.72892560000001,32.9303326],[-83.728982,32.930284300000004]]},"id":"8944c0a2b93ffff-13b6fdb24a3c1f4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2b90eca0-13d7bcaa4311ff65","8f44c0a2b901841-13f67ba4532da8d4"]},"geometry":{"type":"LineString","coordinates":[[-83.728982,32.930284300000004],[-83.7292869,32.9300233],[-83.7294011,32.929923800000005]]},"id":"8a44c0a2b907fff-13f75c271318890b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a263203a0-17d7e1206e69e426","8f44c0a26ad28ae-17de7f122db8d33a"]},"geometry":{"type":"LineString","coordinates":[[-83.68783300000001,32.852851],[-83.688675,32.852855000000005]]},"id":"8744c0a26ffffff-17dfa019400c3341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26ac66c3-17d7fbf9afcfd179","8f44c0a26ad28ae-17de7f122db8d33a"]},"geometry":{"type":"LineString","coordinates":[[-83.688675,32.852855000000005],[-83.689943,32.852873]]},"id":"8944c0a26afffff-17d67d85e2fc29b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6830817,32.9027491]},"id":"8f44c0a05cc5cd2-179ebcb9f9483d62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683316,32.902623000000006]},"id":"8f44c0a05cc5932-17dfec278aa07785"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cc5932-17dfec278aa07785","8f44c0a05cc5cd2-179ebcb9f9483d62"]},"geometry":{"type":"LineString","coordinates":[[-83.6830817,32.9027491],[-83.683316,32.902623000000006]]},"id":"8a44c0a05cc7fff-17f6dc70c6c54f0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68369390000001,32.9024197]},"id":"8f44c0a05ce1632-17dedb3b5c700fb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cc5932-17dfec278aa07785","8f44c0a05ce1632-17dedb3b5c700fb5"]},"geometry":{"type":"LineString","coordinates":[[-83.683316,32.902623000000006],[-83.68369390000001,32.9024197]]},"id":"8944c0a05cfffff-179febb16e8fb34e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68396990000001,32.9022712]},"id":"8f44c0a05ce1b85-17ff8a8edb876976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05ce1b85-17ff8a8edb876976","8f44c0a05ce1632-17dedb3b5c700fb5"]},"geometry":{"type":"LineString","coordinates":[[-83.68369390000001,32.9024197],[-83.68396990000001,32.9022712]]},"id":"8b44c0a05ce1fff-179feae51786cca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68421810000001,32.901970500000004]},"id":"8f44c0a05c52d33-17b799f3b7db5c63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05ce1b85-17ff8a8edb876976","8f44c0a05c52d33-17b799f3b7db5c63"]},"geometry":{"type":"LineString","coordinates":[[-83.68396990000001,32.9022712],[-83.68404100000001,32.902233],[-83.684151,32.902119],[-83.684206,32.902033],[-83.68421810000001,32.901970500000004]]},"id":"8944c0a05cfffff-179eaa32e6972dd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68312800000001,32.900259000000005]},"id":"8f44c0a05c1c928-1397ec9d02f242c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05c1c928-1397ec9d02f242c6","8f44c0a05c52d33-17b799f3b7db5c63"]},"geometry":{"type":"LineString","coordinates":[[-83.68421810000001,32.901970500000004],[-83.68422500000001,32.901935],[-83.68423800000001,32.901812],[-83.684202,32.901688],[-83.684105,32.901544],[-83.68380300000001,32.901141],[-83.683521,32.900779],[-83.68312800000001,32.900259000000005]]},"id":"8844c0a05dfffff-139fcb1a96549ce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b4aaac-17d6b7c702a7c85b","8f44c0a22696245-13def60968e59cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.66544800000001,32.8768097],[-83.666161,32.8776388]]},"id":"8844c0a31bfffff-17dfb6e83e8106a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667149,32.878278900000005]},"id":"8f44c0a2269166d-13def4af35f6b6a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a22696245-13def60968e59cfb","8f44c0a2269166d-13def4af35f6b6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.666161,32.8776388],[-83.6665677,32.878106700000004],[-83.6667149,32.878278900000005]]},"id":"8a44c0a22697fff-1396b55bffef5b8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a226d37a6-17f7f009cf3e305a","8f44c0a2269166d-13def4af35f6b6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6667149,32.878278900000005],[-83.667292,32.878954],[-83.667454,32.879149000000005],[-83.66861800000001,32.88055]]},"id":"8844c0a227fffff-17b6f25a636ccaca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6689171,32.8809011]},"id":"8f44c0a04d2db63-13d7bf4edfff9b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d2db63-13d7bf4edfff9b62","8f44c0a226d37a6-17f7f009cf3e305a"]},"geometry":{"type":"LineString","coordinates":[[-83.66861800000001,32.88055],[-83.6689171,32.8809011]]},"id":"8944c0a226fffff-13d7afac4c49a590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6689717,32.880965100000004]},"id":"8f44c0a226de6aa-13ffbf2cbb4d4976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d2db63-13d7bf4edfff9b62","8f44c0a226de6aa-13ffbf2cbb4d4976"]},"geometry":{"type":"LineString","coordinates":[[-83.6689171,32.8809011],[-83.6689717,32.880965100000004]]},"id":"8b44c0a226defff-13d7bf3dcc87669e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a226da810-13bfaee73f9f944e","8f44c0a226de6aa-13ffbf2cbb4d4976"]},"geometry":{"type":"LineString","coordinates":[[-83.6689717,32.880965100000004],[-83.6690829,32.881099400000004]]},"id":"8a44c0a226dffff-1397bf09fb40a896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6692692,32.8813246]},"id":"8f44c0a226dbd32-13dfee72c316d0e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a226da810-13bfaee73f9f944e","8f44c0a226dbd32-13dfee72c316d0e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6690829,32.881099400000004],[-83.6692692,32.8813246]]},"id":"8a44c0a226dffff-1397aead04be9bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6694327,32.8815222]},"id":"8f44c0a226db166-13d7ee0c9c80824d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a226db166-13d7ee0c9c80824d","8f44c0a226dbd32-13dfee72c316d0e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6692692,32.8813246],[-83.6694327,32.8815222]]},"id":"8b44c0a226dbfff-139fae3fb5560373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a226db166-13d7ee0c9c80824d","8f44c0a04d661a3-139eed7058c044fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6694327,32.8815222],[-83.669641,32.881774],[-83.66968270000001,32.8818342]]},"id":"8844c0a04dfffff-13b7fdbd31de0d56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66985050000001,32.882037100000005]},"id":"8f44c0a04d66351-139fbd0770c5157b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d661a3-139eed7058c044fa","8f44c0a04d66351-139fbd0770c5157b"]},"geometry":{"type":"LineString","coordinates":[[-83.66968270000001,32.8818342],[-83.66985050000001,32.882037100000005]]},"id":"8b44c0a04d66fff-13dffd3be76cdc39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67004510000001,32.8822722]},"id":"8f44c0a04d600d5-179eac8dd61c4a0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d600d5-179eac8dd61c4a0a","8f44c0a04d66351-139fbd0770c5157b"]},"geometry":{"type":"LineString","coordinates":[[-83.66985050000001,32.882037100000005],[-83.67004510000001,32.8822722]]},"id":"8a44c0a04d67fff-13d6bccaa6942ac9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d60218-17ffbc4dcc21d80d","8f44c0a04d600d5-179eac8dd61c4a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.67004510000001,32.8822722],[-83.6701476,32.8823961]]},"id":"8b44c0a04d60fff-17d6ec6dc4d2175e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d60218-17ffbc4dcc21d80d","8f44c0a04d61472-17dffbfc679d088c"]},"geometry":{"type":"LineString","coordinates":[[-83.6701476,32.8823961],[-83.67027780000001,32.8825535]]},"id":"8a44c0a04d67fff-179eec25159a6088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6707009,32.8830637]},"id":"8f44c0a04d6c6ec-179efaf3f25c92d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d61472-17dffbfc679d088c","8f44c0a04d6c6ec-179efaf3f25c92d0"]},"geometry":{"type":"LineString","coordinates":[[-83.67027780000001,32.8825535],[-83.670461,32.882775],[-83.6707009,32.8830637]]},"id":"8944c0a04d7ffff-17fffb784b771446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67121470000001,32.8836816]},"id":"8f44c0a04d69ae6-179fa9b2dffc5ec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d69ae6-179fa9b2dffc5ec8","8f44c0a04d6c6ec-179efaf3f25c92d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6707009,32.8830637],[-83.671194,32.883657],[-83.67121470000001,32.8836816]]},"id":"8a44c0a04d6ffff-17dffa5377e1f29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6719063,32.884513500000004]},"id":"8f44c0a048b5249-1396f802914aead6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d69ae6-179fa9b2dffc5ec8","8f44c0a048b5249-1396f802914aead6"]},"geometry":{"type":"LineString","coordinates":[[-83.67121470000001,32.8836816],[-83.671541,32.884068],[-83.6719063,32.884513500000004]]},"id":"8844c0a049fffff-1396b8d9c05e5175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67252470000001,32.885269300000004]},"id":"8f44c0a0488586e-13fff6801ac2fd98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a048b5249-1396f802914aead6","8f44c0a0488586e-13fff6801ac2fd98"]},"geometry":{"type":"LineString","coordinates":[[-83.6719063,32.884513500000004],[-83.67242900000001,32.885151],[-83.67252470000001,32.885269300000004]]},"id":"8944c0a048bffff-1396f7412c1cc1a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67295010000001,32.885789100000004]},"id":"8f44c0a048abda4-17b6b576323e1a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a0488586e-13fff6801ac2fd98","8f44c0a048abda4-17b6b576323e1a25"]},"geometry":{"type":"LineString","coordinates":[[-83.67252470000001,32.885269300000004],[-83.672848,32.885669],[-83.67295010000001,32.885789100000004]]},"id":"8944c0a048bffff-1796f5fbd729a93d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a048abda4-17b6b576323e1a25","8f44c0a048f6ca6-17b7e4aac212e35c"]},"geometry":{"type":"LineString","coordinates":[[-83.67295010000001,32.885789100000004],[-83.673035,32.885889],[-83.67327560000001,32.8861782]]},"id":"8a44c0a048affff-17bfb51045105ffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a048c1d46-13def1240011cba8","8f44c0a048f6ca6-17b7e4aac212e35c"]},"geometry":{"type":"LineString","coordinates":[[-83.67327560000001,32.8861782],[-83.67353,32.88648],[-83.67418500000001,32.887255],[-83.67472000000001,32.8879077]]},"id":"8844c0a049fffff-17d6f2e590a62c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a048c1d46-13def1240011cba8","8f44c0a048c1aa0-13d7e0c28b1ef842"]},"geometry":{"type":"LineString","coordinates":[[-83.67472000000001,32.8879077],[-83.67487600000001,32.888098]]},"id":"8b44c0a048c1fff-139ff0f34e90824c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76831770000001,32.922630500000004]},"id":"8f44c0b5ac75029-17b5bca179299706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7678253,32.922203700000004]},"id":"8f44c0b5ac74cc1-179dfdd53ccd199d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5ac75029-17b5bca179299706","8f44c0b5ac74cc1-179dfdd53ccd199d"]},"geometry":{"type":"LineString","coordinates":[[-83.76831770000001,32.922630500000004],[-83.76856400000001,32.923219100000004],[-83.76855330000001,32.923335900000005],[-83.7684516,32.9235066],[-83.7682856,32.9235965],[-83.76810900000001,32.9236189],[-83.7677611,32.9235605],[-83.7671456,32.9234347],[-83.7665461,32.9232236],[-83.76618210000001,32.9230394],[-83.76593050000001,32.9227518],[-83.76588770000001,32.9225227],[-83.76597340000001,32.922298000000005],[-83.76615530000001,32.9221183],[-83.766514,32.921790300000005],[-83.7666478,32.9216825],[-83.76686190000001,32.9216106],[-83.7670439,32.9216106],[-83.7671991,32.921673500000004],[-83.7673597,32.9217993],[-83.7678253,32.922203700000004]]},"id":"8844c0b5adfffff-17dfbf78efcd6eb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5ac75029-17b5bca179299706","8f44c0b5ac74cc1-179dfdd53ccd199d"]},"geometry":{"type":"LineString","coordinates":[[-83.7678253,32.922203700000004],[-83.76831770000001,32.922630500000004]]},"id":"8a44c0b5ac77fff-179fbd3b54f28904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77010030000001,32.9221862]},"id":"8f44c0b5ad49548-179ff8475facf8e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5ac75029-17b5bca179299706","8f44c0b5ad49548-179ff8475facf8e8"]},"geometry":{"type":"LineString","coordinates":[[-83.76831770000001,32.922630500000004],[-83.7685854,32.9225676],[-83.7696291,32.922289],[-83.77010030000001,32.9221862]]},"id":"8844c0b5adfffff-1797fa7519cef80a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77515310000001,32.920427600000004]},"id":"8f44c0b5a91860a-13d7ebf15366d8b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b5ad49548-179ff8475facf8e8","8f44c0b5a91860a-13d7ebf15366d8b6"]},"geometry":{"type":"LineString","coordinates":[[-83.77010030000001,32.9221862],[-83.77028750000001,32.922145300000004],[-83.7711599,32.922006],[-83.77128300000001,32.921979],[-83.77219290000001,32.921687],[-83.77238030000001,32.921678],[-83.7725248,32.921678],[-83.7728031,32.921776900000005],[-83.77300170000001,32.921873600000005],[-83.77313500000001,32.921938600000004],[-83.7733063,32.922006],[-83.7735067,32.9220415],[-83.7739004,32.921955700000005],[-83.7743356,32.921854],[-83.7749374,32.9217047],[-83.775138,32.9215618],[-83.7752969,32.9214093],[-83.77535370000001,32.9212091],[-83.7753689,32.9210439],[-83.775244,32.920656300000005],[-83.77515310000001,32.920427600000004]]},"id":"8744c0b5affffff-17fdb0d65bb4124b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7702821,32.9226709]},"id":"8f44c0b5a896a0b-17bdf7d5b033f566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5ad49548-179ff8475facf8e8","8f44c0b5a896a0b-17bdf7d5b033f566"]},"geometry":{"type":"LineString","coordinates":[[-83.7702821,32.9226709],[-83.7701804,32.9225092],[-83.77010030000001,32.9221862]]},"id":"8844c0b5adfffff-17bfb8199e9ffe84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76996630000001,32.921129900000004]},"id":"8f44c0b5ad6a633-13ffb89b1ee30bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5ad49548-179ff8475facf8e8","8f44c0b5ad6a633-13ffb89b1ee30bd4"]},"geometry":{"type":"LineString","coordinates":[[-83.77010030000001,32.9221862],[-83.77000380000001,32.9219296],[-83.7699984,32.9217499],[-83.76999310000001,32.921408400000004],[-83.76996630000001,32.921129900000004]]},"id":"8944c0b5ad7ffff-17ddb881c3872f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28361154-13b7f7ab38d03c7a","8f44c0a283687b3-17d6779addf25811"]},"geometry":{"type":"LineString","coordinates":[[-83.73758210000001,32.9245023],[-83.73754790000001,32.9245679],[-83.73760150000001,32.924699700000005],[-83.73795820000001,32.9249243],[-83.73796180000001,32.9249722],[-83.7376083,32.925370300000004]]},"id":"8944c0a2837ffff-17d77740e8337e1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28341782-17f6c9f0f91445dd","8f44c0a283687b3-17d6779addf25811"]},"geometry":{"type":"LineString","coordinates":[[-83.7376083,32.925370300000004],[-83.7372411,32.925783800000005],[-83.73717690000001,32.9258407],[-83.73679870000001,32.9255951],[-83.7366513,32.925598]]},"id":"8944c0a2837ffff-179768ae962c522b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7371739,32.92707]},"id":"8f44c0a29c9644d-13fec8aa5d9322b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372665,32.9270463]},"id":"8f44c0a29c9601a-13fff8707e577055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c9601a-13fff8707e577055","8f44c0a29c9644d-13fec8aa5d9322b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7371739,32.92707],[-83.7372665,32.9270463]]},"id":"8b44c0a29c96fff-13f7688d62d8bc51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7373092,32.9270025]},"id":"8f44c0a29c96021-13d69855c53e52ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c9601a-13fff8707e577055","8f44c0a29c96021-13d69855c53e52ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7372665,32.9270463],[-83.7373092,32.9270025]]},"id":"8d44c0a29c9603f-13de4863202da4d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372564,32.926850800000004]},"id":"8f44c0a29c96d51-13f7c876c7ede1c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c96d51-13f7c876c7ede1c9","8f44c0a29c96021-13d69855c53e52ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7373092,32.9270025],[-83.7373228,32.9269466],[-83.7373037,32.9268918],[-83.7372564,32.926850800000004]]},"id":"8b44c0a29c96fff-139f2859ff897330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73720080000001,32.926833900000005]},"id":"8f44c0a29c96d1b-13f7389983a96ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c96d1b-13f7389983a96ba3","8f44c0a29c96d51-13f7c876c7ede1c9"]},"geometry":{"type":"LineString","coordinates":[[-83.7372564,32.926850800000004],[-83.73720080000001,32.926833900000005]]},"id":"8c44c0a29c96dff-13fe88882c018278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73710870000001,32.926849700000005]},"id":"8f44c0a2834b34d-13f718d31ece7a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c96d1b-13f7389983a96ba3","8f44c0a2834b34d-13f718d31ece7a5d"]},"geometry":{"type":"LineString","coordinates":[[-83.73720080000001,32.926833900000005],[-83.7371531,32.9268352],[-83.73710870000001,32.926849700000005]]},"id":"8a44c0a2834ffff-13fe18b6a35c41f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7370659,32.926883100000005]},"id":"8f44c0a2834b244-1397f8edd5dd81b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b244-1397f8edd5dd81b3","8f44c0a2834b34d-13f718d31ece7a5d"]},"geometry":{"type":"LineString","coordinates":[[-83.73710870000001,32.926849700000005],[-83.7370659,32.926883100000005]]},"id":"8c44c0a2834b3ff-13ff88e075282de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73709910000001,32.927047900000005]},"id":"8f44c0a29c964e0-13fef8d91dbffdab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b244-1397f8edd5dd81b3","8f44c0a29c964e0-13fef8d91dbffdab"]},"geometry":{"type":"LineString","coordinates":[[-83.7370659,32.926883100000005],[-83.73704070000001,32.9269405],[-83.7370528,32.9270007],[-83.73709910000001,32.927047900000005]]},"id":"8844c0a283fffff-13be38f21f65fb45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c9644d-13fec8aa5d9322b5","8f44c0a29c964e0-13fef8d91dbffdab"]},"geometry":{"type":"LineString","coordinates":[[-83.73709910000001,32.927047900000005],[-83.7371739,32.92707]]},"id":"8b44c0a29c96fff-13f7e8c1bf1350f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7369651,32.9264998]},"id":"8f44c0a2834b995-1396692cdcc11349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28348425-17ffe95cf91ed08d","8f44c0a2834b995-1396692cdcc11349"]},"geometry":{"type":"LineString","coordinates":[[-83.7368881,32.9262238],[-83.7368982,32.9263357],[-83.7369651,32.9264998]]},"id":"8a44c0a2834ffff-17d7a94b11e32fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b34d-13f718d31ece7a5d","8f44c0a2834b995-1396692cdcc11349"]},"geometry":{"type":"LineString","coordinates":[[-83.7369651,32.9264998],[-83.73710870000001,32.926849700000005]]},"id":"8b44c0a2834bfff-1397c8fff996becb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74312540000001,32.930701500000005]},"id":"8f44c0a291b6314-13ddfa22a7d9e4f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a291b46c9-13fff9678f7c9e90","8f44c0a291b6314-13ddfa22a7d9e4f0"]},"geometry":{"type":"LineString","coordinates":[[-83.74312540000001,32.930701500000005],[-83.7434248,32.9307378]]},"id":"8a44c0a291b7fff-13f7f9c51649939c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a291b46c9-13fff9678f7c9e90","8f44c0a291a2124-13d7f7504d000a1e"]},"geometry":{"type":"LineString","coordinates":[[-83.7434248,32.9307378],[-83.7436148,32.9307608],[-83.7437561,32.9308074],[-83.7439428,32.9308794],[-83.7442812,32.9310768]]},"id":"8944c0a291bffff-13d7f853de16e70f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c6b409-1795f369afb486cd","8f44c0a291a2124-13d7f7504d000a1e"]},"geometry":{"type":"LineString","coordinates":[[-83.7442812,32.9310768],[-83.74508490000001,32.9316577],[-83.7458998,32.9322466],[-83.74625900000001,32.9325062],[-83.7463355,32.932561500000006],[-83.74664390000001,32.932777900000005],[-83.7467038,32.932819900000005],[-83.74695100000001,32.932946900000005],[-83.7471781,32.933002],[-83.74740510000001,32.9330231],[-83.7475548,32.9330057],[-83.7477049,32.932973700000005],[-83.7478744,32.932925700000006],[-83.74809210000001,32.932819],[-83.7481623,32.932759000000004],[-83.74832350000001,32.9326166],[-83.748377,32.932549200000004],[-83.7484446,32.932464100000004],[-83.7485556,32.9321931],[-83.7485858,32.9318882],[-83.74849,32.931600200000005],[-83.7483739,32.9314478],[-83.74821250000001,32.9312995],[-83.74753100000001,32.930751],[-83.745879,32.929564]]},"id":"8744c0a29ffffff-17b7f0fd12016208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c6b409-1795f369afb486cd","8f44c0a29c419ac-179df4da61e97d66"]},"geometry":{"type":"LineString","coordinates":[[-83.745879,32.929564],[-83.745289,32.929141]]},"id":"8944c0a29c7ffff-179df422098eaf83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c4084a-179ff58b48a72c64","8f44c0a29c419ac-179df4da61e97d66"]},"geometry":{"type":"LineString","coordinates":[[-83.745289,32.929141],[-83.745006,32.928939]]},"id":"8a44c0a29c47fff-17dff532dde431de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c72b00-13b5f80eaa443ff1","8f44c0a29c4084a-179ff58b48a72c64"]},"geometry":{"type":"LineString","coordinates":[[-83.745006,32.928939],[-83.744926,32.928882],[-83.74477200000001,32.928786],[-83.74472300000001,32.928766],[-83.744561,32.928719],[-83.74449100000001,32.928694],[-83.74442300000001,32.928654],[-83.74438,32.928612],[-83.74432900000001,32.928542],[-83.744298,32.92848],[-83.7442475,32.928362],[-83.7441885,32.9282562],[-83.7440785,32.928100900000004],[-83.74397660000001,32.9279748]]},"id":"8944c0a29c7ffff-1795f6f07030fbbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c72b00-13b5f80eaa443ff1","8f44c0a29c0c172-13b5fa32f2cf457d"]},"geometry":{"type":"LineString","coordinates":[[-83.74397660000001,32.9279748],[-83.7439015,32.927911800000004],[-83.7438425,32.927842000000005],[-83.74309930000001,32.927335500000005]]},"id":"8844c0a29dfffff-13f7f91b57b5c577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c00440-13b5fc6976635e50","8f44c0a29c0c172-13b5fa32f2cf457d"]},"geometry":{"type":"LineString","coordinates":[[-83.74309930000001,32.927335500000005],[-83.7421929,32.9267483]]},"id":"8944c0a29c3ffff-13fdfb4e3c1a4f49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a29c00440-13b5fc6976635e50","8f44c0a29d98db2-17dec4602e1f9723"]},"geometry":{"type":"LineString","coordinates":[[-83.7421929,32.9267483],[-83.7419296,32.926534700000005],[-83.74165550000001,32.926247700000005],[-83.74119400000001,32.925742],[-83.74116000000001,32.925711],[-83.74103000000001,32.925613000000006],[-83.740903,32.925539],[-83.74079,32.925482],[-83.740673,32.925431],[-83.74054500000001,32.925387],[-83.740468,32.925369],[-83.740323,32.925344],[-83.740173,32.925327],[-83.739946,32.925313],[-83.73974000000001,32.92532],[-83.739531,32.925334],[-83.73939700000001,32.925331],[-83.73926900000001,32.92532],[-83.73915000000001,32.925291],[-83.73904900000001,32.925248],[-83.73893100000001,32.925182]]},"id":"8844c0a29dfffff-17bfd01b336611ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7370635,32.926471500000005]},"id":"8f44c0a2834b920-1396b8ef51dac0c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b920-1396b8ef51dac0c1","8f44c0a29c96d1b-13f7389983a96ba3"]},"geometry":{"type":"LineString","coordinates":[[-83.73720080000001,32.926833900000005],[-83.7370635,32.926471500000005]]},"id":"8a44c0a2834ffff-13f7f8c461972182"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b920-1396b8ef51dac0c1","8f44c0a28348425-17ffe95cf91ed08d"]},"geometry":{"type":"LineString","coordinates":[[-83.7370635,32.926471500000005],[-83.7369961,32.9262991],[-83.7368881,32.9262238]]},"id":"8b44c0a28348fff-17bea91b3770056e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376931,32.9235552]},"id":"8f44c0a28acbce0-13f60765d059a81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7364493,32.9231655]},"id":"8f44c0a28ad844e-17f67a6f3270178a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ad844e-17f67a6f3270178a","8f44c0a28acbce0-13f60765d059a81d"]},"geometry":{"type":"LineString","coordinates":[[-83.7376931,32.9235552],[-83.7374382,32.9233265],[-83.7373323,32.923246],[-83.7371456,32.9231338],[-83.73699420000001,32.9230956],[-83.7368958,32.9230851],[-83.73661080000001,32.923102],[-83.7364493,32.9231655]]},"id":"8944c0a28afffff-139778d43063e3c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2832b0c0-13d6edae2da1d11b","8f44c0a28ad844e-17f67a6f3270178a"]},"geometry":{"type":"LineString","coordinates":[[-83.7364493,32.9231655],[-83.73635850000001,32.9232418],[-83.7360936,32.9233964],[-83.735917,32.9234154],[-83.73573280000001,32.9234218],[-83.7355083,32.9234408],[-83.73524090000001,32.9235107],[-83.7351198,32.9235022]]},"id":"8844c0a283fffff-1397dc0087f8eaa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73512480000001,32.922077]},"id":"8f44c0a2832191b-17de2dab0e096882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2832b0c0-13d6edae2da1d11b","8f44c0a2832191b-17de2dab0e096882"]},"geometry":{"type":"LineString","coordinates":[[-83.7351198,32.9235022],[-83.7349482,32.923464100000004],[-83.73483970000001,32.9233879],[-83.7347464,32.9232968],[-83.7347338,32.9232354],[-83.7347312,32.923157100000005],[-83.734812,32.922521800000005],[-83.7348523,32.9223693],[-83.7349255,32.9222443],[-83.73512480000001,32.922077]]},"id":"8944c0a2833ffff-17b70e524bced7bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73828010000001,32.926750600000005]},"id":"8f44c0a29cb312a-13b725f6f6768c6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73851570000001,32.927347000000005]},"id":"8f44c0a29c866eb-13b7e563bd11eb4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c866eb-13b7e563bd11eb4e","8f44c0a29cb312a-13b725f6f6768c6d"]},"geometry":{"type":"LineString","coordinates":[[-83.73828010000001,32.926750600000005],[-83.7383286,32.9268656],[-83.73851570000001,32.927347000000005]]},"id":"8944c0a29cbffff-13ff35ac8321702f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73858200000001,32.927517200000004]},"id":"8f44c0a29c828cb-1396453a45ab07fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c828cb-1396453a45ab07fb","8f44c0a29c866eb-13b7e563bd11eb4e"]},"geometry":{"type":"LineString","coordinates":[[-83.73851570000001,32.927347000000005],[-83.73858200000001,32.927517200000004]]},"id":"8b44c0a29c82fff-13df154f055ef747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73741240000001,32.927655800000004]},"id":"8f44c0a29c93cf4-13fee81546463d28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93cf4-13fee81546463d28","8f44c0a29c9644d-13fec8aa5d9322b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7371739,32.92707],[-83.73741240000001,32.927655800000004]]},"id":"8a44c0a29c97fff-13b7d85fd4299d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73747870000001,32.927829700000004]},"id":"8f44c0a29c930d6-13d797ebd8ebf678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93cf4-13fee81546463d28","8f44c0a29c930d6-13d797ebd8ebf678"]},"geometry":{"type":"LineString","coordinates":[[-83.73741240000001,32.927655800000004],[-83.73747870000001,32.927829700000004]]},"id":"8b44c0a29c93fff-139f480086d0b34b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7375878,32.927961100000005]},"id":"8f44c0a29c932f4-13b7b7a7aedddbb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c932f4-13b7b7a7aedddbb8","8f44c0a29c930d6-13d797ebd8ebf678"]},"geometry":{"type":"LineString","coordinates":[[-83.73747870000001,32.927829700000004],[-83.7375045,32.9278975],[-83.7375288,32.9279262],[-83.737561,32.9279431],[-83.7375878,32.927961100000005]]},"id":"8b44c0a29c93fff-139627d056e26d85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7370193,32.9279425]},"id":"8f44c0a2826c0c6-139e190affa86e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826c0c6-139e190affa86e79","8f44c0a29c930d6-13d797ebd8ebf678"]},"geometry":{"type":"LineString","coordinates":[[-83.7370193,32.9279425],[-83.73747870000001,32.927829700000004]]},"id":"8844c0a283fffff-13fed87b61104168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73757730000001,32.9278016]},"id":"8f44c0a29c93075-13d607ae33c3eda9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93075-13d607ae33c3eda9","8f44c0a29c930d6-13d797ebd8ebf678"]},"geometry":{"type":"LineString","coordinates":[[-83.73747870000001,32.927829700000004],[-83.73757730000001,32.9278016]]},"id":"8c44c0a29c931ff-13ded7cd0c75ed21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93075-13d607ae33c3eda9","8f44c0a29c828cb-1396453a45ab07fb"]},"geometry":{"type":"LineString","coordinates":[[-83.73757730000001,32.9278016],[-83.73858200000001,32.927517200000004]]},"id":"8944c0a29cbffff-13ff26744b67f455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93075-13d607ae33c3eda9","8f44c0a29c932f4-13b7b7a7aedddbb8"]},"geometry":{"type":"LineString","coordinates":[[-83.7375878,32.927961100000005],[-83.73759310000001,32.927933],[-83.73760390000001,32.9279048],[-83.73760440000001,32.9278706],[-83.73757730000001,32.9278016]]},"id":"8b44c0a29c93fff-13f767a3399b6e4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7375081,32.9276258]},"id":"8f44c0a29c93d5d-13d627d9728b9068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93075-13d607ae33c3eda9","8f44c0a29c93d5d-13d627d9728b9068"]},"geometry":{"type":"LineString","coordinates":[[-83.73757730000001,32.9278016],[-83.7375542,32.927743],[-83.7375081,32.9276258]]},"id":"8b44c0a29c93fff-139f17c3d84828e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c9601a-13fff8707e577055","8f44c0a29c93d5d-13d627d9728b9068"]},"geometry":{"type":"LineString","coordinates":[[-83.7375081,32.9276258],[-83.7372665,32.9270463]]},"id":"8a44c0a29c97fff-13b71824fa24b335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93d5d-13d627d9728b9068","8f44c0a29c866eb-13b7e563bd11eb4e"]},"geometry":{"type":"LineString","coordinates":[[-83.73851570000001,32.927347000000005],[-83.7375081,32.9276258]]},"id":"8944c0a29cbffff-13ff069e92924cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c93cf4-13fee81546463d28","8f44c0a29c93d5d-13d627d9728b9068"]},"geometry":{"type":"LineString","coordinates":[[-83.7375081,32.9276258],[-83.73741240000001,32.927655800000004]]},"id":"8c44c0a29c93dff-13df87f76bc63fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826c908-139ea8a53158815c","8f44c0a29c93cf4-13fee81546463d28"]},"geometry":{"type":"LineString","coordinates":[[-83.73741240000001,32.927655800000004],[-83.7371821,32.9277098]]},"id":"8a44c0a29c97fff-13ffc85d3332135a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7369051,32.9277748]},"id":"8f44c0a2826cc8b-13b749525e0b51b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826c908-139ea8a53158815c","8f44c0a2826cc8b-13b749525e0b51b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7371821,32.9277098],[-83.7369051,32.9277748]]},"id":"8b44c0a2826cfff-139ef8fbce57497c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7378525,32.9239072]},"id":"8f44c0a28acb2c8-13d607023ea51e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7377563,32.923908600000004]},"id":"8f44c0a2836591e-13d6e73e52211e29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2836591e-13d6e73e52211e29","8f44c0a28acb2c8-13d607023ea51e23"]},"geometry":{"type":"LineString","coordinates":[[-83.7378525,32.9239072],[-83.7377563,32.923908600000004]]},"id":"8744c0a28ffffff-13d67720412eb842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7373364,32.9242232]},"id":"8f44c0a28360a10-13978844c9081d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28360a10-13978844c9081d22","8f44c0a2836591e-13d6e73e52211e29"]},"geometry":{"type":"LineString","coordinates":[[-83.7377563,32.923908600000004],[-83.73756320000001,32.9239076],[-83.73747490000001,32.9239258],[-83.73743900000001,32.9239748],[-83.7373364,32.9242232]]},"id":"8a44c0a28367fff-13fe57dec2629776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73819370000001,32.9230011]},"id":"8f44c0a28acc26d-179fb62cf3e2dca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7377099,32.9224581]},"id":"8f44c0a28ac1155-17be575b551dc97e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac1155-17be575b551dc97e","8f44c0a28acc26d-179fb62cf3e2dca1"]},"geometry":{"type":"LineString","coordinates":[[-83.73819370000001,32.9230011],[-83.7377099,32.9224581]]},"id":"8944c0a28afffff-17f606c428d3a32e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac1155-17be575b551dc97e","8f44c0a28ac06d3-17fec8bb4666aa47"]},"geometry":{"type":"LineString","coordinates":[[-83.7377099,32.9224581],[-83.7374401,32.9222057],[-83.7372837,32.922265],[-83.7371468,32.922356400000005]]},"id":"8a44c0a28ac7fff-17d7f80430b88d86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368653,32.9225444]},"id":"8f44c0a28adc943-17fe496b3e4b4b89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28adc943-17fe496b3e4b4b89","8f44c0a28ac06d3-17fec8bb4666aa47"]},"geometry":{"type":"LineString","coordinates":[[-83.7371468,32.922356400000005],[-83.7368653,32.9225444]]},"id":"8a44c0a28ac7fff-17b789134fe4bd5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73454960000001,32.921674700000004]},"id":"8f44c0a28326a4e-17debf128dd7417e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28326a4e-17debf128dd7417e","8f44c0a2832191b-17de2dab0e096882"]},"geometry":{"type":"LineString","coordinates":[[-83.73454960000001,32.921674700000004],[-83.73512480000001,32.922077]]},"id":"8a44c0a28327fff-17de7e5ece8c35ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2832191b-17de2dab0e096882","8f44c0a28ad229a-17fe0cc5f6c68e50"]},"geometry":{"type":"LineString","coordinates":[[-83.73512480000001,32.922077],[-83.7354913,32.922336]]},"id":"8944c0a2833ffff-179f1d387ec00819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ad844e-17f67a6f3270178a","8f44c0a28ad229a-17fe0cc5f6c68e50"]},"geometry":{"type":"LineString","coordinates":[[-83.7354913,32.922336],[-83.7357631,32.9225281],[-83.7358892,32.922627600000006],[-83.7364493,32.9231655]]},"id":"8744c0a28ffffff-17f71b9225c68f18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28343484-17f78b599f88e3df","8f44c0a28341473-17bfb9eb0eae3c51"]},"geometry":{"type":"LineString","coordinates":[[-83.73666080000001,32.925516300000005],[-83.7364927,32.925527100000004],[-83.7360743,32.9255992]]},"id":"8a44c0a28347fff-17d7aaa2cc56c6ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28343484-17f78b599f88e3df","8f44c0a2835c120-17f67bd0768ba8a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7360743,32.9255992],[-83.7358841,32.9256295]]},"id":"8944c0a2837ffff-17ff0b950cb4d4a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835c508-179f6c4701d9c9b2","8f44c0a2835c120-17f67bd0768ba8a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7358841,32.9256295],[-83.7356944,32.925659800000005]]},"id":"8b44c0a2835cfff-17fffc0bb1ecb9eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835c508-179f6c4701d9c9b2","8f44c0a2835c51b-179fac5b21fba151"]},"geometry":{"type":"LineString","coordinates":[[-83.7356944,32.925659800000005],[-83.73566220000001,32.9256666]]},"id":"8c44c0a2835c5ff-179f8c511da4780c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835e958-179f9cb0923e99b0","8f44c0a2835c51b-179fac5b21fba151"]},"geometry":{"type":"LineString","coordinates":[[-83.73566220000001,32.9256666],[-83.73552550000001,32.925688900000004]]},"id":"8a44c0a2835ffff-1796ac85df5316fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835e82b-179ebcbfd717c8c3","8f44c0a2835e958-179f9cb0923e99b0"]},"geometry":{"type":"LineString","coordinates":[[-83.73552550000001,32.925688900000004],[-83.73550110000001,32.925690700000004]]},"id":"8c44c0a2835e9ff-179e2cb83afedafa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835e82b-179ebcbfd717c8c3","8f44c0a2835ec53-17bf8d3608ea0afa"]},"geometry":{"type":"LineString","coordinates":[[-83.73550110000001,32.925690700000004],[-83.73531200000001,32.9257208]]},"id":"8b44c0a2835efff-17b62cfaee4edc46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835e595-17d79db3a5c42043","8f44c0a2835ec53-17bf8d3608ea0afa"]},"geometry":{"type":"LineString","coordinates":[[-83.73531200000001,32.9257208],[-83.735111,32.9257529]]},"id":"8b44c0a2835efff-17bf9d74dc77777f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835e595-17d79db3a5c42043","8f44c0a2822d8b5-17d66e2936feb780"]},"geometry":{"type":"LineString","coordinates":[[-83.735111,32.9257529],[-83.7349229,32.925783]]},"id":"8944c0a2837ffff-17df0dee71fe9f18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73478610000001,32.9258103]},"id":"8f44c0a2822dcf5-17f77e7eb1f24f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822dcf5-17f77e7eb1f24f72","8f44c0a2822d8b5-17d66e2936feb780"]},"geometry":{"type":"LineString","coordinates":[[-83.7349229,32.925783],[-83.73478610000001,32.9258103]]},"id":"8b44c0a2822dfff-17defe53f1bbfbe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376675,32.9242423]},"id":"8f44c0a283652b5-13977775dcfad4dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7377685,32.924262]},"id":"8f44c0a2836522b-139fc736b2244ded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283652b5-13977775dcfad4dc","8f44c0a2836522b-139fc736b2244ded"]},"geometry":{"type":"LineString","coordinates":[[-83.7376675,32.9242423],[-83.7377685,32.924262]]},"id":"8c44c0a283653ff-139fa7564e3cf8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73860590000001,32.924173700000004]},"id":"8f44c0a29d90804-13fe952b54c4e810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2836522b-139fc736b2244ded","8f44c0a29d90804-13fe952b54c4e810"]},"geometry":{"type":"LineString","coordinates":[[-83.7377685,32.924262],[-83.73786670000001,32.924313500000004],[-83.7379928,32.924394],[-83.7381417,32.9244914],[-83.73823250000001,32.924529500000006],[-83.7383006,32.924529500000006],[-83.73860590000001,32.924173700000004]]},"id":"8744c0a28ffffff-13ff661ff4d33212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28361b99-13d667754d6e2b21","8f44c0a2836522b-139fc736b2244ded"]},"geometry":{"type":"LineString","coordinates":[[-83.7376684,32.9245254],[-83.7377685,32.924262]]},"id":"8a44c0a28367fff-13f617560f516695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2836522b-139fc736b2244ded","8f44c0a28acb2c8-13d607023ea51e23"]},"geometry":{"type":"LineString","coordinates":[[-83.7377685,32.924262],[-83.7378339,32.9240678],[-83.7378541,32.923932300000004],[-83.7378525,32.9239072]]},"id":"8744c0a28ffffff-13b627161554a1c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28acbce0-13f60765d059a81d","8f44c0a28acb2c8-13d607023ea51e23"]},"geometry":{"type":"LineString","coordinates":[[-83.7378525,32.9239072],[-83.7378415,32.9237375],[-83.7378188,32.923690900000004],[-83.7376931,32.9235552]]},"id":"8b44c0a28acbfff-13dfc720dc0fd3ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7363607,32.9272609]},"id":"8f44c0a28260072-13f61aa6940a47e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28260970-13f60a550a028787","8f44c0a28260072-13f61aa6940a47e6"]},"geometry":{"type":"LineString","coordinates":[[-83.7364912,32.927056],[-83.7364733,32.9270865],[-83.7364658,32.9271298],[-83.7364819,32.9271777],[-83.7363607,32.9272609]]},"id":"8b44c0a28260fff-13bfca711d7c9a5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7386197,32.9218737]},"id":"8f44c0a28aec44c-17df1522b77dd68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeeaf1-179ed599ec2f2c68","8f44c0a28aec44c-17df1522b77dd68a"]},"geometry":{"type":"LineString","coordinates":[[-83.7386197,32.9218737],[-83.73842900000001,32.9219981]]},"id":"8a44c0a28aeffff-17f7f55e5b0e5c49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeeaf1-179ed599ec2f2c68","8f44c0a28aea920-17f785f872b37bed"]},"geometry":{"type":"LineString","coordinates":[[-83.73842900000001,32.9219981],[-83.73827770000001,32.9221464]]},"id":"8b44c0a28aeefff-17d725c9298cc1b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeac42-17bef66a0e8190df","8f44c0a28aea920-17f785f872b37bed"]},"geometry":{"type":"LineString","coordinates":[[-83.73827770000001,32.9221464],[-83.738096,32.9222607]]},"id":"8a44c0a28aeffff-179f46313de3c6c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aea588-17feb6dbe20200a3","8f44c0a28aeac42-17bef66a0e8190df"]},"geometry":{"type":"LineString","coordinates":[[-83.738096,32.9222607],[-83.73798500000001,32.9222861],[-83.7379138,32.9223307]]},"id":"8b44c0a28aeafff-17de36a4e57cfbf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aea588-17feb6dbe20200a3","8f44c0a28ac1155-17be575b551dc97e"]},"geometry":{"type":"LineString","coordinates":[[-83.7379138,32.9223307],[-83.7377099,32.9224581]]},"id":"8a44c0a28ac7fff-1796871bafc5a63e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73733750000001,32.922691]},"id":"8f44c0a28ac3adb-17dfe84412db65e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac1155-17be575b551dc97e","8f44c0a28ac3adb-17dfe84412db65e9"]},"geometry":{"type":"LineString","coordinates":[[-83.7377099,32.9224581],[-83.73733750000001,32.922691]]},"id":"8a44c0a28ac7fff-179727cfb2ecd5eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73482510000001,32.9253066]},"id":"8f44c0a2835236e-17beae665d50cafb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835236e-17beae665d50cafb","8f44c0a2822dcf5-17f77e7eb1f24f72"]},"geometry":{"type":"LineString","coordinates":[[-83.73478610000001,32.9258103],[-83.73482510000001,32.9253066]]},"id":"8844c0a283fffff-17de0e72893de3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.734865,32.9247925]},"id":"8f44c0a28356a9a-13ff5e4d6290542a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2835236e-17beae665d50cafb","8f44c0a28356a9a-13ff5e4d6290542a"]},"geometry":{"type":"LineString","coordinates":[[-83.73482510000001,32.9253066],[-83.734865,32.9247925]]},"id":"8a44c0a28357fff-179ffe59ece8559a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2830900c-13bfae3228f64653","8f44c0a28356a9a-13ff5e4d6290542a"]},"geometry":{"type":"LineString","coordinates":[[-83.734865,32.9247925],[-83.73490860000001,32.924313000000005]]},"id":"8944c0a2837ffff-13d78e3fcee92160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7349307,32.9241037]},"id":"8f44c0a283099b3-13bede245383fc1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2830900c-13bfae3228f64653","8f44c0a283099b3-13bede245383fc1b"]},"geometry":{"type":"LineString","coordinates":[[-83.73490860000001,32.924313000000005],[-83.7349307,32.9241037]]},"id":"8b44c0a28309fff-13fe4e2b4b0954b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7365953,32.9247895]},"id":"8f44c0a28344050-13ff7a13f65bb1d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28344050-13ff7a13f65bb1d3","8f44c0a283099b3-13bede245383fc1b"]},"geometry":{"type":"LineString","coordinates":[[-83.7349307,32.9241037],[-83.7350754,32.9240857],[-83.7360816,32.9241277],[-83.7362885,32.9241996],[-83.7364562,32.9243104],[-83.7365133,32.9244092],[-83.7365953,32.9247895]]},"id":"8844c0a283fffff-139f5bbf426553f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2831909e-1397d1ae4b96ecfe","8f44c0a283099b3-13bede245383fc1b"]},"geometry":{"type":"LineString","coordinates":[[-83.7349307,32.9241037],[-83.7338974,32.924055800000005],[-83.7337686,32.924078300000005],[-83.7334812,32.9242173]]},"id":"8944c0a2833ffff-13b65ff1553d9a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7332214,32.9246907]},"id":"8f44c0a282264da-13bfb250a509bd62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282264da-13bfb250a509bd62","8f44c0a2831909e-1397d1ae4b96ecfe"]},"geometry":{"type":"LineString","coordinates":[[-83.7334812,32.9242173],[-83.7332751,32.9243169],[-83.73324290000001,32.9243845],[-83.7332214,32.9246907]]},"id":"8844c0a283fffff-13fe5225a204864a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73404550000001,32.9247329]},"id":"8f44c0a2822425e-13d6104d9add2f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822425e-13d6104d9add2f3d","8f44c0a282264da-13bfb250a509bd62"]},"geometry":{"type":"LineString","coordinates":[[-83.7332214,32.9246907],[-83.73404550000001,32.9247329]]},"id":"8a44c0a28227fff-13bef14f1ef05493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822425e-13d6104d9add2f3d","8f44c0a28356a9a-13ff5e4d6290542a"]},"geometry":{"type":"LineString","coordinates":[[-83.73404550000001,32.9247329],[-83.734865,32.9247925]]},"id":"8844c0a283fffff-13debf4d7d41b42e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28356a9a-13ff5e4d6290542a","8f44c0a28356a46-13fe2df82b4ba063"]},"geometry":{"type":"LineString","coordinates":[[-83.734865,32.9247925],[-83.7350014,32.9247906]]},"id":"8c44c0a28356bff-13fece22c956b66e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28354673-13f6ed84ef113b2b","8f44c0a28356a46-13fe2df82b4ba063"]},"geometry":{"type":"LineString","coordinates":[[-83.7350014,32.9247906],[-83.73518580000001,32.9248014]]},"id":"8a44c0a28357fff-13ff8dbe83555ffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28354673-13f6ed84ef113b2b","8f44c0a28354271-13f7fd0a695910df"]},"geometry":{"type":"LineString","coordinates":[[-83.73518580000001,32.9248014],[-83.7353818,32.924812700000004]]},"id":"8b44c0a28354fff-13f67d47a0de7cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28354271-13f7fd0a695910df","8f44c0a28355c70-13fe3c9603e3ddbd"]},"geometry":{"type":"LineString","coordinates":[[-83.7353818,32.924812700000004],[-83.735568,32.9248227]]},"id":"8a44c0a28357fff-13ff1cd035086643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28355874-17979c2026a8b9d5","8f44c0a28355c70-13fe3c9603e3ddbd"]},"geometry":{"type":"LineString","coordinates":[[-83.735568,32.9248227],[-83.7357566,32.9248345]]},"id":"8b44c0a28355fff-1797ec5b1d17cb41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28346429-179e5babc296a05d","8f44c0a28355874-17979c2026a8b9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7357566,32.9248345],[-83.7359428,32.9248453]]},"id":"8944c0a2837ffff-179efbe5f1973e4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28346153-1796eb35057fb8a9","8f44c0a28346429-179e5babc296a05d"]},"geometry":{"type":"LineString","coordinates":[[-83.7359428,32.9248453],[-83.73601380000001,32.9248494],[-83.73613280000001,32.9248366]]},"id":"8b44c0a28346fff-179feb705c935b76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28344050-13ff7a13f65bb1d3","8f44c0a28346153-1796eb35057fb8a9"]},"geometry":{"type":"LineString","coordinates":[[-83.73613280000001,32.9248366],[-83.73624570000001,32.924822500000005],[-83.7365953,32.9247895]]},"id":"8a44c0a28347fff-13f76aa49f4c62a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28345c22-17bee970dd2a0abb","8f44c0a28344050-13ff7a13f65bb1d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7365953,32.9247895],[-83.7368563,32.9249006]]},"id":"8a44c0a28347fff-179e29c26a69a10f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7273334,32.924433400000005]},"id":"8f44c0a28740a8a-139ee0b0afad3c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28740a8a-139ee0b0afad3c37","8f44c0a280d8086-17f6a0de593c12c4"]},"geometry":{"type":"LineString","coordinates":[[-83.72726030000001,32.9223274],[-83.72712650000001,32.922426900000005],[-83.7270551,32.922588600000005],[-83.72708370000001,32.922714400000004],[-83.7272763,32.9231276],[-83.72734770000001,32.923313300000004],[-83.72737620000001,32.923427100000005],[-83.7273334,32.924433400000005]]},"id":"8844c0a287fffff-13dff0da2b00d748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7276921,32.9247224]},"id":"8f44c0a28741a84-13bf9fd07c587bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28741a84-13bf9fd07c587bb3","8f44c0a28740a8a-139ee0b0afad3c37"]},"geometry":{"type":"LineString","coordinates":[[-83.7273334,32.924433400000005],[-83.7274333,32.9245831],[-83.7276921,32.9247224]]},"id":"8a44c0a28747fff-13f7b04bee586e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7279113,32.9248178]},"id":"8f44c0a2876a6d8-13ff3f477eeddc26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28741a84-13bf9fd07c587bb3","8f44c0a2876a6d8-13ff3f477eeddc26"]},"geometry":{"type":"LineString","coordinates":[[-83.7276921,32.9247224],[-83.7279113,32.9248178]]},"id":"8944c0a2877ffff-13df5f8bfe8a2f8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2874ddb3-17d6debaa4bd2c18","8f44c0a2876a6d8-13ff3f477eeddc26"]},"geometry":{"type":"LineString","coordinates":[[-83.7279113,32.9248178],[-83.7279883,32.9248416],[-83.7282332,32.9250534],[-83.7281366,32.9251373]]},"id":"8944c0a2877ffff-17d75eceec100e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2874ddb3-17d6debaa4bd2c18","8f44c0a2874cc03-17b6df728727f819"]},"geometry":{"type":"LineString","coordinates":[[-83.7281366,32.9251373],[-83.72749850000001,32.925691900000004],[-83.72741690000001,32.9256888],[-83.7271868,32.9254988],[-83.7272016,32.925439600000004],[-83.7278424,32.9248781]]},"id":"8a44c0a2874ffff-17d7a00c5cdcf9df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2874cc03-17b6df728727f819","8f44c0a2876a6d8-13ff3f477eeddc26"]},"geometry":{"type":"LineString","coordinates":[[-83.7278424,32.9248781],[-83.7279113,32.9248178]]},"id":"8c44c0a2874cdff-179e1f5d0e081d21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7321565,32.9223279]},"id":"8f44c0a28316c1b-17f6f4ea39495f7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7303383,32.9233075]},"id":"8f44c0a28386b9b-13df395a978c646c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28386b9b-13df395a978c646c","8f44c0a28316c1b-17f6f4ea39495f7d"]},"geometry":{"type":"LineString","coordinates":[[-83.7321565,32.9223279],[-83.73224880000001,32.922476100000004],[-83.73218440000001,32.922507700000004],[-83.732045,32.9225566],[-83.7310868,32.923082400000006],[-83.7308648,32.9231544],[-83.7304763,32.9232433],[-83.7303383,32.9233075]]},"id":"8844c0a283fffff-17d7f6d2377aa2ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.729695,32.9240354]},"id":"8f44c0a283912e4-13963aecac692d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28386b9b-13df395a978c646c","8f44c0a283912e4-13963aecac692d66"]},"geometry":{"type":"LineString","coordinates":[[-83.7303383,32.9233075],[-83.7300575,32.923438100000006],[-83.72975980000001,32.923590600000004],[-83.72968920000001,32.923688],[-83.72968920000001,32.9237981],[-83.729695,32.9240354]]},"id":"8944c0a283bffff-13963a6bbfafac7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2839e226-13f75b33e0e3cb38","8f44c0a283912e4-13963aecac692d66"]},"geometry":{"type":"LineString","coordinates":[[-83.729695,32.9240354],[-83.72969930000001,32.924209000000005],[-83.72958100000001,32.924402]]},"id":"8a44c0a2839ffff-139f3aff7438a95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7301836,32.9231755]},"id":"8f44c0a28386c66-17feb9bb4b688781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28386b9b-13df395a978c646c","8f44c0a28386c66-17feb9bb4b688781"]},"geometry":{"type":"LineString","coordinates":[[-83.7303383,32.9233075],[-83.7301836,32.9231755]]},"id":"8b44c0a28386fff-13b7f98af707454e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28386c66-17feb9bb4b688781","8f44c0a28386d1a-17d679e35312a050"]},"geometry":{"type":"LineString","coordinates":[[-83.7301836,32.9231755],[-83.7301195,32.923111]]},"id":"8c44c0a28386dff-17f699cf5847beae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7299314,32.9229214]},"id":"8f44c0a283b38dd-17dffa58ecc09883"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283b38dd-17dffa58ecc09883","8f44c0a28386d1a-17d679e35312a050"]},"geometry":{"type":"LineString","coordinates":[[-83.7301195,32.923111],[-83.7299314,32.9229214]]},"id":"8a44c0a283b7fff-17973a1e2b2168b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283912e4-13963aecac692d66","8f44c0a28382661-13d75a03c894a7b3"]},"geometry":{"type":"LineString","coordinates":[[-83.729695,32.9240354],[-83.72994150000001,32.923971800000004],[-83.7300676,32.9239125]]},"id":"8944c0a283bffff-13f6ba7664ad3f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283a3759-13b7176d87d52f01","8f44c0a28382661-13d75a03c894a7b3"]},"geometry":{"type":"LineString","coordinates":[[-83.7300676,32.9239125],[-83.73013320000001,32.923713400000004],[-83.73026940000001,32.9235398],[-83.73045110000001,32.9234297],[-83.7311272,32.9232433]]},"id":"8944c0a283bffff-13be38eaa9131c11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7313172,32.923135900000005]},"id":"8f44c0a283a3aab-17dff6f6c3a02749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283a3aab-17dff6f6c3a02749","8f44c0a283a3759-13b7176d87d52f01"]},"geometry":{"type":"LineString","coordinates":[[-83.7311272,32.9232433],[-83.7313172,32.923135900000005]]},"id":"8b44c0a283a3fff-1397973228f9b242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731548,32.923173600000005]},"id":"8f44c0a283a16e0-17f79666810a2f89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283a16e0-17f79666810a2f89","8f44c0a283a3aab-17dff6f6c3a02749"]},"geometry":{"type":"LineString","coordinates":[[-83.7313172,32.923135900000005],[-83.7320397,32.9227276],[-83.7321362,32.922694],[-83.7322864,32.922667000000004],[-83.73270000000001,32.9225827],[-83.7328354,32.9231362],[-83.7324916,32.923189900000004],[-83.7321984,32.9232348],[-83.73207640000001,32.9232486],[-83.7318829,32.9232336],[-83.731548,32.923173600000005]]},"id":"8844c0a283fffff-17f714d0357b467a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283a16e0-17f79666810a2f89","8f44c0a283a3aab-17dff6f6c3a02749"]},"geometry":{"type":"LineString","coordinates":[[-83.731548,32.923173600000005],[-83.7313172,32.923135900000005]]},"id":"8a44c0a283a7fff-17ffd6aea652e284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71752380000001,32.913245700000004]},"id":"8f44c0a2e258a45-17beb8a3ab63ac11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e2c8525-13fe7e99ebeed743","8f44c0a2e258a45-17beb8a3ab63ac11"]},"geometry":{"type":"LineString","coordinates":[[-83.71752380000001,32.913245700000004],[-83.7165038,32.913908500000005],[-83.71636090000001,32.9139611],[-83.71508180000001,32.9139399]]},"id":"8844c0a2e3fffff-13977b7d8522d58f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7139008,32.9139203]},"id":"8f44c0a2e2d8002-13f6717c08c26468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e2c8525-13fe7e99ebeed743","8f44c0a2e2d8002-13f6717c08c26468"]},"geometry":{"type":"LineString","coordinates":[[-83.71508180000001,32.9139399],[-83.7139008,32.9139203]]},"id":"8944c0a2e2fffff-13f6500af0c5b9a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7127438,32.9131683]},"id":"8f44c0a2a92c9b2-179e744f2bef9ba4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2a92c9b2-179e744f2bef9ba4","8f44c0a2e2d8002-13f6717c08c26468"]},"geometry":{"type":"LineString","coordinates":[[-83.7139008,32.9139203],[-83.71300860000001,32.913905500000006],[-83.7128971,32.9138821],[-83.7127473,32.9137651],[-83.7127298,32.9136569],[-83.7127438,32.9131683]]},"id":"8744c0a2effffff-13fe43662779f7e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71390070000001,32.9143356]},"id":"8f44c0a2e2dbb9e-13f7c17c1324cf9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e2d8002-13f6717c08c26468","8f44c0a2e2dbb9e-13f7c17c1324cf9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71390070000001,32.9143356],[-83.7139008,32.9139203]]},"id":"8a44c0a2e2dffff-13f6417c088c4acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7139216,32.913197600000004]},"id":"8f44c0a2e2d1a66-179ec16f0397e0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e2d1a66-179ec16f0397e0a0","8f44c0a2e2d8002-13f6717c08c26468"]},"geometry":{"type":"LineString","coordinates":[[-83.7139008,32.9139203],[-83.7139216,32.913197600000004]]},"id":"8944c0a2e2fffff-13fe61758216ba04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71901980000001,32.9170194]},"id":"8f44c0a28433206-13f734fca5b30ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28433206-13f734fca5b30ef8","8f44c0a284113ac-13ff3599ff0b038c"]},"geometry":{"type":"LineString","coordinates":[[-83.7187681,32.9178352],[-83.7190142,32.917320700000005],[-83.71901980000001,32.9170194]]},"id":"8944c0a2843ffff-13f63531d88321cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71958570000001,32.917168600000004]},"id":"8f44c0a284044cb-13de739af8cdc617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a284044cb-13de739af8cdc617","8f44c0a28433206-13f734fca5b30ef8"]},"geometry":{"type":"LineString","coordinates":[[-83.71901980000001,32.9170194],[-83.71903850000001,32.9160102],[-83.7190734,32.9159166],[-83.71914310000001,32.9158873],[-83.7197773,32.915896100000005],[-83.7198784,32.9159955],[-83.7198644,32.9163554],[-83.71958570000001,32.917168600000004]]},"id":"8844c0a285fffff-17d633f7ffe88d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a284044cb-13de739af8cdc617","8f44c0a28433206-13f734fca5b30ef8"]},"geometry":{"type":"LineString","coordinates":[[-83.71901980000001,32.9170194],[-83.71920580000001,32.9170779],[-83.71958570000001,32.917168600000004]]},"id":"8944c0a2843ffff-13b6b44c925643ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a284044cb-13de739af8cdc617","8f44c0a2840510a-13d7722f062db1e9"]},"geometry":{"type":"LineString","coordinates":[[-83.71958570000001,32.917168600000004],[-83.720168,32.917378]]},"id":"8a44c0a28407fff-139ff2e500ddd0f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76110870000001,32.8771428]},"id":"8f44c0b507530aa-1797ce3b1bc3c7b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b507530aa-1797ce3b1bc3c7b4","8f44c0b50621030-17f7f02ff454cd34"]},"geometry":{"type":"LineString","coordinates":[[-83.76030730000001,32.8768814],[-83.76052,32.8770958],[-83.7605601,32.8771215],[-83.7605884,32.8771314],[-83.76110870000001,32.8771428]]},"id":"8844c0b507fffff-17f7ef48c33609ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7617817,32.876947300000005]},"id":"8f44c0b50751858-179ddc9673f5a181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b507530aa-1797ce3b1bc3c7b4","8f44c0b50751858-179ddc9673f5a181"]},"geometry":{"type":"LineString","coordinates":[[-83.76110870000001,32.8771428],[-83.7617824,32.877157000000004],[-83.7617817,32.876947300000005]]},"id":"8944c0b5077ffff-179dfd36a44bb232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50751858-179ddc9673f5a181","8f44c0b50743015-17dffaeba47fb71e"]},"geometry":{"type":"LineString","coordinates":[[-83.7624646,32.8772347],[-83.7621493,32.876984300000004],[-83.7621213,32.8769695],[-83.762095,32.8769597],[-83.7620457,32.876954500000004],[-83.7617817,32.876947300000005]]},"id":"8944c0b5077ffff-17d7fbb42da119b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b507530aa-1797ce3b1bc3c7b4","8f44c0b50751858-179ddc9673f5a181"]},"geometry":{"type":"LineString","coordinates":[[-83.7617817,32.876947300000005],[-83.76111440000001,32.8769337],[-83.76110870000001,32.8771428]]},"id":"8a44c0b50757fff-17b7ed9928ab2072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53928346-17d7e2ef5947a10c","8f44c0b502ce2a4-179fbda3b50ea21d"]},"geometry":{"type":"LineString","coordinates":[[-83.7657355,32.882359],[-83.7657154,32.8827686],[-83.765786,32.8828284],[-83.7678942,32.882884000000004],[-83.76802930000001,32.8826443],[-83.76794620000001,32.8823215],[-83.7679045,32.882270600000005]]},"id":"8644c0b57ffffff-17ddd0160654fb4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76756180000001,32.8819946]},"id":"8f44c0b502c32f6-13ffbe79ef7c953f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502ce2a4-179fbda3b50ea21d","8f44c0b502c32f6-13ffbe79ef7c953f"]},"geometry":{"type":"LineString","coordinates":[[-83.7679045,32.882270600000005],[-83.7678114,32.8821668],[-83.76756180000001,32.8819946]]},"id":"8944c0b502fffff-13bfbe0a2ef8c3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502c3746-13d7feb1dadec654","8f44c0b502c32f6-13ffbe79ef7c953f"]},"geometry":{"type":"LineString","coordinates":[[-83.76756180000001,32.8819946],[-83.76747230000001,32.8819262]]},"id":"8b44c0b502c3fff-13ddfe95d8f78b56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502c3746-13d7feb1dadec654","8f44c0b502dc96a-13dfff4df1a14c14"]},"geometry":{"type":"LineString","coordinates":[[-83.76747230000001,32.8819262],[-83.7672225,32.8817654]]},"id":"8a44c0b502c7fff-1395beffe25063ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76658640000001,32.881761700000006]},"id":"8f44c0b502d1656-13ddd0db84f11f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d1656-13ddd0db84f11f11","8f44c0b502dc96a-13dfff4df1a14c14"]},"geometry":{"type":"LineString","coordinates":[[-83.7672225,32.8817654],[-83.76658640000001,32.881761700000006]]},"id":"8944c0b502fffff-13dfc014cce0002a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d1656-13ddd0db84f11f11","8f44c0b502d3a51-13ddf14604dd2f2f"]},"geometry":{"type":"LineString","coordinates":[[-83.76658640000001,32.881761700000006],[-83.766416,32.8817607]]},"id":"8a44c0b502d7fff-13ddc110c879392c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76635010000001,32.8817603]},"id":"8f44c0b502d3af3-13ddf16f3276b091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d3af3-13ddf16f3276b091","8f44c0b502d3a51-13ddf14604dd2f2f"]},"geometry":{"type":"LineString","coordinates":[[-83.766416,32.8817607],[-83.76635010000001,32.8817603]]},"id":"8c44c0b502d3bff-13ddd15aa2b68b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d3af3-13ddf16f3276b091","8f44c0b502d30ea-13dfe1d0e5f9601b"]},"geometry":{"type":"LineString","coordinates":[[-83.76635010000001,32.8817603],[-83.76619380000001,32.8817594]]},"id":"8b44c0b502d3fff-13dff1a01ab13d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d30ea-13dfe1d0e5f9601b","8f44c0b502d34d8-13dfd259d9a0272c"]},"geometry":{"type":"LineString","coordinates":[[-83.76619380000001,32.8817594],[-83.7659747,32.8817581]]},"id":"8b44c0b502d3fff-13dfc2156006fc10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d34d8-13dfd259d9a0272c","8f44c0b5392c10d-13dfc2e612d3be8d"]},"geometry":{"type":"LineString","coordinates":[[-83.7659747,32.8817581],[-83.76575030000001,32.881756800000005]]},"id":"8744c0b50ffffff-13dff29ffd260303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5392c10d-13dfc2e612d3be8d","8f44c0b5392c425-13ddc362da67f735"]},"geometry":{"type":"LineString","coordinates":[[-83.76575030000001,32.881756800000005],[-83.7655507,32.881755600000005]]},"id":"8b44c0b5392cfff-13dde32476bbf470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d4cd89-1397d5756c069cbe","8f44c0b53d430ec-139df73161c09c68"]},"geometry":{"type":"LineString","coordinates":[[-83.75814820000001,32.884080000000004],[-83.7574378,32.8840919]]},"id":"8944c0b53d7ffff-139df6536fb1e912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d430ec-139df73161c09c68","8f44c0b53d5ccd9-1395f8a9dd233c23"]},"geometry":{"type":"LineString","coordinates":[[-83.7574378,32.8840919],[-83.75683550000001,32.8840787]]},"id":"8944c0b53d7ffff-139dd7ed92cbaa94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53891786-17bfd385cc7cde1b","8f44c0b538901b5-17fdd42738862671"]},"geometry":{"type":"LineString","coordinates":[[-83.75868290000001,32.8857024],[-83.7584156,32.8860635],[-83.7587163,32.886230600000005],[-83.7588096,32.886238500000005],[-83.75894120000001,32.8861864]]},"id":"8a44c0b53897fff-17d5f44f04cc11da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7596664,32.8858617]},"id":"8f44c0b53882811-17dfd1c08da3211c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53882811-17dfd1c08da3211c","8f44c0b53891786-17bfd385cc7cde1b"]},"geometry":{"type":"LineString","coordinates":[[-83.75894120000001,32.8861864],[-83.7596664,32.8858617]]},"id":"8944c0b538bffff-17d5d2a32d009889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7655495,32.8823549]},"id":"8f44c0b53928742-17dfd3639cc74e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53928742-17dfd3639cc74e17","8f44c0b53928346-17d7e2ef5947a10c"]},"geometry":{"type":"LineString","coordinates":[[-83.7655495,32.8823549],[-83.7657355,32.882359]]},"id":"8b44c0b53928fff-17d5e3297c537525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53929996-17d5f25ddd1cf9b5","8f44c0b53928346-17d7e2ef5947a10c"]},"geometry":{"type":"LineString","coordinates":[[-83.7657355,32.882359],[-83.76596830000001,32.8823643]]},"id":"8a44c0b5392ffff-17d5d2a69b50eae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502da5b1-17ddd1d640f92a76","8f44c0b53929996-17d5f25ddd1cf9b5"]},"geometry":{"type":"LineString","coordinates":[[-83.76596830000001,32.8823643],[-83.76618520000001,32.8823693]]},"id":"8a44c0b5392ffff-17d7c21a067395a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dac4b-17dff14cb902fbed","8f44c0b502da5b1-17ddd1d640f92a76"]},"geometry":{"type":"LineString","coordinates":[[-83.76618520000001,32.8823693],[-83.7664053,32.8823743]]},"id":"8b44c0b502dafff-17dfe191730f720f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76658950000001,32.8823786]},"id":"8f44c0b502da84a-17dfe0d9985105e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502da84a-17dfe0d9985105e9","8f44c0b502dac4b-17dff14cb902fbed"]},"geometry":{"type":"LineString","coordinates":[[-83.7664053,32.8823743],[-83.76658950000001,32.8823786]]},"id":"8b44c0b502dafff-17ddd1132fc9344c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502da84a-17dfe0d9985105e9","8f44c0b502d808a-17f5d036da67364b"]},"geometry":{"type":"LineString","coordinates":[[-83.76658950000001,32.8823786],[-83.76684990000001,32.8823833]]},"id":"8a44c0b502dffff-17f5e0883bec6d6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502d8a8c-17f7ffbb28fffec3","8f44c0b502d808a-17f5d036da67364b"]},"geometry":{"type":"LineString","coordinates":[[-83.76684990000001,32.8823833],[-83.7670478,32.882387]]},"id":"8b44c0b502d8fff-17f7fff904b805bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76726640000001,32.882391000000005]},"id":"8f44c0b502dd61e-17f7ff328f66f383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502d8a8c-17f7ffbb28fffec3","8f44c0b502dd61e-17f7ff328f66f383"]},"geometry":{"type":"LineString","coordinates":[[-83.7670478,32.882387],[-83.76726640000001,32.882391000000005]]},"id":"8a44c0b502dffff-17f5bf76db14fafd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53890d06-179ff4337e2defdd","8f44c0b53c63d6c-1797f7802fd5a41b"]},"geometry":{"type":"LineString","coordinates":[[-83.75866330000001,32.885547],[-83.7584137,32.8855516],[-83.75821470000001,32.885582],[-83.7579961,32.885632300000005],[-83.75766080000001,32.8857238],[-83.7574043,32.885815300000004],[-83.75731180000001,32.885917]]},"id":"8844c0b53dfffff-17f5f5e980a1f50c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53c63d6c-1797f7802fd5a41b","8f44c0b53c4ca76-13ffd6b32f5a7196"]},"geometry":{"type":"LineString","coordinates":[[-83.75731180000001,32.885917],[-83.7571477,32.885842100000005],[-83.7569445,32.885689400000004],[-83.7568018,32.8856744],[-83.7566628,32.8856624],[-83.7565273,32.8857433],[-83.75642380000001,32.885839100000005],[-83.75635960000001,32.8859439],[-83.75633110000001,32.886087700000004],[-83.7564131,32.8863602],[-83.7563846,32.8866357],[-83.7563703,32.8870968],[-83.75643450000001,32.8873454],[-83.7565629,32.887483100000004],[-83.7568268,32.887602900000005],[-83.7570051,32.8876209],[-83.75733670000001,32.887570000000004],[-83.7575008,32.8875011],[-83.7576398,32.8873124]]},"id":"8944c0b53c7ffff-17fdf8e5089a56d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76321270000001,32.8775782]},"id":"8f44c0b5074c631-13b7e918195a8a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5074c631-13b7e918195a8a74","8f44c0b5074ca16-13dff8734580e6d0"]},"geometry":{"type":"LineString","coordinates":[[-83.7634764,32.8774639],[-83.76321270000001,32.8775782]]},"id":"8b44c0b5074cfff-1397e8c5ba61e4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50758d14-1397dc979e90a2c7","8f44c0b5074c631-13b7e918195a8a74"]},"geometry":{"type":"LineString","coordinates":[[-83.76321270000001,32.8775782],[-83.76177990000001,32.8775461]]},"id":"8944c0b5077ffff-139dead7d687e53c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7615902,32.877541900000004]},"id":"8f44c0b5075e310-139ffd0e253116c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075e310-139ffd0e253116c6","8f44c0b50758d14-1397dc979e90a2c7"]},"geometry":{"type":"LineString","coordinates":[[-83.76177990000001,32.8775461],[-83.7615902,32.877541900000004]]},"id":"8a44c0b5075ffff-1395ccd2d8a85352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075e310-139ffd0e253116c6","8f44c0b5075e7aa-1397cd9031f09984"]},"geometry":{"type":"LineString","coordinates":[[-83.7615902,32.877541900000004],[-83.7614284,32.877538300000005],[-83.7613821,32.8775464]]},"id":"8b44c0b5075efff-139fed4f55b26ad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075e7aa-1397cd9031f09984","8f44c0b5062daae-13bdce1088a0ac27"]},"geometry":{"type":"LineString","coordinates":[[-83.7613821,32.8775464],[-83.7611768,32.8775824]]},"id":"8944c0b5077ffff-139dcdd0619e6542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7609662,32.8775813]},"id":"8f44c0b5062d083-13bdde942421c6e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5062d083-13bdde942421c6e3","8f44c0b5062daae-13bdce1088a0ac27"]},"geometry":{"type":"LineString","coordinates":[[-83.7611768,32.8775824],[-83.76115220000001,32.8775867],[-83.7609662,32.8775813]]},"id":"8b44c0b5062dfff-13bfde5236a7fc0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5062d083-13bdde942421c6e3","8f44c0b50605470-13d7d1fbce0970f2"]},"geometry":{"type":"LineString","coordinates":[[-83.7609662,32.8775813],[-83.7596877,32.8775485],[-83.7595716,32.8774497]]},"id":"8944c0b5063ffff-139df05210ecca4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506ea423-13fdf3402c79ea2b","8f44c0b506c1d59-13fdf40dfed7259a"]},"geometry":{"type":"LineString","coordinates":[[-83.7587233,32.8807558],[-83.7590526,32.880763900000005]]},"id":"8944c0b506fffff-13fff3a71f3af842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506ea026-13f5d2cf1d9d7bd9","8f44c0b506ea423-13fdf3402c79ea2b"]},"geometry":{"type":"LineString","coordinates":[[-83.7590526,32.880763900000005],[-83.75923350000001,32.8807701]]},"id":"8b44c0b506eafff-13fff307ac71aa92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506ea026-13f5d2cf1d9d7bd9","8f44c0b506eab1b-13f7d25a7807078b"]},"geometry":{"type":"LineString","coordinates":[[-83.75923350000001,32.8807701],[-83.7594201,32.880774100000004]]},"id":"8b44c0b506eafff-13f7d294ca58042a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e871e-13f7f1e8dde2a6a8","8f44c0b506eab1b-13f7d25a7807078b"]},"geometry":{"type":"LineString","coordinates":[[-83.7594201,32.880774100000004],[-83.7596019,32.8807787]]},"id":"8a44c0b506effff-13f5d221aee7520b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e871e-13f7f1e8dde2a6a8","8f44c0b506e8300-13fff16365d8b8cb"]},"geometry":{"type":"LineString","coordinates":[[-83.7596019,32.8807787],[-83.75981540000001,32.880784600000005]]},"id":"8b44c0b506e8fff-13fdd1a61d058876"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e8300-13fff16365d8b8cb","8f44c0b506e9d28-1397f0ded9b1c4c3"]},"geometry":{"type":"LineString","coordinates":[[-83.75981540000001,32.880784600000005],[-83.7600275,32.8807971]]},"id":"8a44c0b506effff-13ffd1211b3c5b32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e9d28-1397f0ded9b1c4c3","8f44c0b506e9915-139df0813b752fef"]},"geometry":{"type":"LineString","coordinates":[[-83.7600275,32.8807971],[-83.76017730000001,32.880809400000004]]},"id":"8a44c0b506effff-1397d0b00ba88556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7603809,32.8808123]},"id":"8f44c0b5065a522-139ff001fec34a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065a522-139ff001fec34a36","8f44c0b506e9915-139df0813b752fef"]},"geometry":{"type":"LineString","coordinates":[[-83.76017730000001,32.880809400000004],[-83.7603809,32.8808123]]},"id":"8844c0b507fffff-139fd04195760eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7607828,32.8808176]},"id":"8f44c0b5065848e-139fcf06ceb59cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065a522-139ff001fec34a36","8f44c0b5065848e-139fcf06ceb59cac"]},"geometry":{"type":"LineString","coordinates":[[-83.7603809,32.8808123],[-83.7607828,32.8808176]]},"id":"8a44c0b5065ffff-139def8460b52515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5064ad93-1397fcc6982e5801","8f44c0b5065848e-139fcf06ceb59cac"]},"geometry":{"type":"LineString","coordinates":[[-83.7607828,32.8808176],[-83.7614049,32.880825800000004],[-83.7615092,32.880828],[-83.76170470000001,32.8808311]]},"id":"8944c0b5067ffff-1397cde6a4464383"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5064a995-139dcc45baeb65d1","8f44c0b5064ad93-1397fcc6982e5801"]},"geometry":{"type":"LineString","coordinates":[[-83.76170470000001,32.8808311],[-83.7619109,32.880834400000005]]},"id":"8a44c0b5064ffff-139dcc862a143759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506485b1-139ffbc94ccaf152","8f44c0b5064a995-139dcc45baeb65d1"]},"geometry":{"type":"LineString","coordinates":[[-83.7619109,32.880834400000005],[-83.76211,32.880837500000005]]},"id":"8a44c0b5064ffff-139fcc07857acca0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76214180000001,32.880838000000004]},"id":"8f44c0b50648512-139fcbb562f1bbc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50648512-139fcbb562f1bbc9","8f44c0b506485b1-139ffbc94ccaf152"]},"geometry":{"type":"LineString","coordinates":[[-83.76211,32.880837500000005],[-83.76214180000001,32.880838000000004]]},"id":"8d44c0b506485bf-139febbf5a8a0954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506481a4-139dfb499edbb055","8f44c0b50648512-139fcbb562f1bbc9"]},"geometry":{"type":"LineString","coordinates":[[-83.76214180000001,32.880838000000004],[-83.7623143,32.8808407]]},"id":"8b44c0b50648fff-139deb7f8edfd8e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76242620000001,32.8808425]},"id":"8f44c0b506488c2-139fdb03a5335304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506488c2-139fdb03a5335304","8f44c0b506481a4-139dfb499edbb055"]},"geometry":{"type":"LineString","coordinates":[[-83.7623143,32.8808407],[-83.76242620000001,32.8808425]]},"id":"8b44c0b50648fff-139fcb26a5e42746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506488c2-139fdb03a5335304","8f44c0b50648848-139ffacaa47f1942"]},"geometry":{"type":"LineString","coordinates":[[-83.76242620000001,32.8808425],[-83.76251740000001,32.8808439]]},"id":"8c44c0b506489ff-139fcae7267dea0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7627174,32.880847100000004]},"id":"8f44c0b5064d46a-13b5fa4dad61b683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5064d46a-13b5fa4dad61b683","8f44c0b50648848-139ffacaa47f1942"]},"geometry":{"type":"LineString","coordinates":[[-83.76251740000001,32.8808439],[-83.7627174,32.880847100000004]]},"id":"8a44c0b5064ffff-13b5fa8c2af5514a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76283020000001,32.880848900000004]},"id":"8f44c0b5064d0e0-13b7da072dbd5d18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5064d0e0-13b7da072dbd5d18","8f44c0b5064d46a-13b5fa4dad61b683"]},"geometry":{"type":"LineString","coordinates":[[-83.7627174,32.880847100000004],[-83.76283020000001,32.880848900000004]]},"id":"8b44c0b5064dfff-13b7ca2a65326bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53936690-13b5d957dd486650","8f44c0b5064d0e0-13b7da072dbd5d18"]},"geometry":{"type":"LineString","coordinates":[[-83.76283020000001,32.880848900000004],[-83.7631107,32.880853300000005]]},"id":"8944c0b5067ffff-13b7f9af73b12de6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53936690-13b5d957dd486650","8f44c0b53935186-13bfd6f0402c98d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7631107,32.880853300000005],[-83.7640956,32.8808689]]},"id":"8a44c0b53937fff-13bff8241596e602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50772004-17d7cd3873b24553","8f44c0b50709a43-17dfcdd148ef1c88"]},"geometry":{"type":"LineString","coordinates":[[-83.76152250000001,32.875814000000005],[-83.761278,32.8760044]]},"id":"8944c0b5077ffff-1797cd84d9840bc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50709a43-17dfcdd148ef1c88","8f44c0b507508a6-179ffdb7b88e1876"]},"geometry":{"type":"LineString","coordinates":[[-83.761278,32.8760044],[-83.76128250000001,32.876355700000005],[-83.7613189,32.876537500000005]]},"id":"8944c0b5077ffff-17f7ddcb78a85af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760045,32.8843705]},"id":"8f44c0b5399b760-13bfd0d3ea11936d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5399b760-13bfd0d3ea11936d","8f44c0b538a2083-13dfd05fd10b023a"]},"geometry":{"type":"LineString","coordinates":[[-83.76023070000001,32.8850417],[-83.7602725,32.8848967],[-83.7602835,32.8847923],[-83.7602609,32.8846986],[-83.76009450000001,32.8845547],[-83.760045,32.8843705]]},"id":"8944c0b538bffff-139dd0789c896a92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7602121,32.8842268]},"id":"8f44c0b5399bb85-13f5d06b7a3255e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5399b760-13bfd0d3ea11936d","8f44c0b5399bb85-13f5d06b7a3255e5"]},"geometry":{"type":"LineString","coordinates":[[-83.760045,32.8843705],[-83.7598901,32.8842353],[-83.760068,32.8840944],[-83.7602121,32.8842268]]},"id":"8b44c0b5399bfff-13d7f0e02b4eb578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5399b760-13bfd0d3ea11936d","8f44c0b5399bb85-13f5d06b7a3255e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7602121,32.8842268],[-83.760045,32.8843705]]},"id":"8b44c0b5399bfff-139ff09fbe467474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76796370000001,32.8839425]},"id":"8f44c0b5396120b-13b5bd7eb21e30e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539616e2-13bfbdffc346dbab","8f44c0b5396120b-13b5bd7eb21e30e2"]},"geometry":{"type":"LineString","coordinates":[[-83.76796370000001,32.8839425],[-83.7677572,32.883941]]},"id":"8b44c0b53961fff-13bfbdbf4be6e105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539616e2-13bfbdffc346dbab","8f44c0b53963ac0-13bfbe7b85b21ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.7677572,32.883941],[-83.76755920000001,32.883939500000004]]},"id":"8a44c0b53967fff-13bfbe3da66b608d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539630dc-13bdfef939a6e166","8f44c0b53963ac0-13bfbe7b85b21ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.76755920000001,32.883939500000004],[-83.76735810000001,32.883938]]},"id":"8b44c0b53963fff-13bdfeba551b66fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539630dc-13bdfef939a6e166","8f44c0b53944b74-13bdff7585076364"]},"geometry":{"type":"LineString","coordinates":[[-83.76735810000001,32.883938],[-83.76715920000001,32.883936500000004]]},"id":"8b44c0b53963fff-13bdff37689fdecf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53944b74-13bdff7585076364","8f44c0b53944172-13bffff5ef70a12f"]},"geometry":{"type":"LineString","coordinates":[[-83.76715920000001,32.883936500000004],[-83.76695380000001,32.8839349]]},"id":"8a44c0b53947fff-13bfffb5bf55dfc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53944172-13bffff5ef70a12f","8f44c0b53944552-13bfe07587ba519e"]},"geometry":{"type":"LineString","coordinates":[[-83.76695380000001,32.8839349],[-83.76674960000001,32.883933400000004]]},"id":"8b44c0b53944fff-13bfe035bc5172d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53944552-13bfe07587ba519e","8f44c0b5394682e-13bdf0f281420f1e"]},"geometry":{"type":"LineString","coordinates":[[-83.76674960000001,32.883933400000004],[-83.7665496,32.8839319]]},"id":"8a44c0b53947fff-13bdf0b40a22b0e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5394682e-13bdf0f281420f1e","8f44c0b53946c13-13bdf1861b8cd36a"]},"geometry":{"type":"LineString","coordinates":[[-83.7665496,32.8839319],[-83.76631350000001,32.883929900000005]]},"id":"8b44c0b53946fff-13bdd13c47d3274a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53946c13-13bdf1861b8cd36a","8f44c0b539732ab-13b7e207a15ae66d"]},"geometry":{"type":"LineString","coordinates":[[-83.76631350000001,32.883929900000005],[-83.76610620000001,32.883927]]},"id":"8a44c0b53977fff-13b7c1c6dd652454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539732ab-13b7e207a15ae66d","8f44c0b5397368e-13b5d28783399170"]},"geometry":{"type":"LineString","coordinates":[[-83.76610620000001,32.883927],[-83.7659016,32.8839197]]},"id":"8b44c0b53973fff-13b5e24790d6ad19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53954ab4-17ffd3078678acf4","8f44c0b5397368e-13b5d28783399170"]},"geometry":{"type":"LineString","coordinates":[[-83.7659016,32.8839197],[-83.7656968,32.8838561]]},"id":"8a44c0b53957fff-139df2c78cce6a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5395419a-17fde3792db4a7e3","8f44c0b53954ab4-17ffd3078678acf4"]},"geometry":{"type":"LineString","coordinates":[[-83.7656968,32.8838561],[-83.76551500000001,32.8838286]]},"id":"8b44c0b53954fff-17f5c3405b21818b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76830360000001,32.8846851]},"id":"8f44c0b53969cb3-1395bcaa410cb9b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53969cb3-1395bcaa410cb9b9","8f44c0b514b6959-139dfc25d5a77db0"]},"geometry":{"type":"LineString","coordinates":[[-83.7685155,32.8851421],[-83.76851760000001,32.8849067],[-83.76830360000001,32.8846851]]},"id":"8844c0b515fffff-1397fc4abd588de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53969cb3-1395bcaa410cb9b9","8f44c0b5396120b-13b5bd7eb21e30e2"]},"geometry":{"type":"LineString","coordinates":[[-83.76830360000001,32.8846851],[-83.7679755,32.884445500000005],[-83.76795410000001,32.884176000000004],[-83.76796370000001,32.8839425]]},"id":"8a44c0b5396ffff-13b5fd4e3470bcb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5396120b-13b5bd7eb21e30e2","8f44c0b53964aa1-17ffbdf3efbee57f"]},"geometry":{"type":"LineString","coordinates":[[-83.76796370000001,32.8839425],[-83.76799050000001,32.883061000000005],[-83.76795720000001,32.8830164],[-83.7677762,32.883013000000005]]},"id":"8844c0b539fffff-17ddfd81970b100b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539640ae-17fdfe6eea7b9934","8f44c0b53964aa1-17ffbdf3efbee57f"]},"geometry":{"type":"LineString","coordinates":[[-83.7677762,32.883013000000005],[-83.7675794,32.883009300000005]]},"id":"8b44c0b53964fff-17ffbe316cc1f307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53964483-17f7feef41857184","8f44c0b539640ae-17fdfe6eea7b9934"]},"geometry":{"type":"LineString","coordinates":[[-83.7675794,32.883009300000005],[-83.767374,32.8830054]]},"id":"8a44c0b53967fff-17f7beaf13e67498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53964483-17f7feef41857184","8f44c0b53966898-17f5bf6c3fbe1e97"]},"geometry":{"type":"LineString","coordinates":[[-83.767374,32.8830054],[-83.7671741,32.8830016]]},"id":"8b44c0b53966fff-17f5bf2dc31243b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53966530-17f5bfedf622b85d","8f44c0b53966898-17f5bf6c3fbe1e97"]},"geometry":{"type":"LineString","coordinates":[[-83.7671741,32.8830016],[-83.76696650000001,32.882997700000004]]},"id":"8b44c0b53966fff-17f7ffad166dd994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53966530-17f5bfedf622b85d","8f44c0b53975914-17dff06d898bef82"]},"geometry":{"type":"LineString","coordinates":[[-83.76696650000001,32.882997700000004],[-83.7667624,32.8829939]]},"id":"8944c0b5397ffff-17f5e02db9419320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53975914-17dff06d898bef82","8f44c0b53975d12-17dde0e89f8963f6"]},"geometry":{"type":"LineString","coordinates":[[-83.7667624,32.8829939],[-83.7665655,32.8829902]]},"id":"8a44c0b53977fff-17dfc0ab0b6333ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53975d12-17dde0e89f8963f6","8f44c0b53974390-17dfc1822ef20499"]},"geometry":{"type":"LineString","coordinates":[[-83.7665655,32.8829902],[-83.7663198,32.882985600000005]]},"id":"8a44c0b53977fff-17dff1356fc382f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53974390-17dfc1822ef20499","8f44c0b53974793-17d7c1fa76924a90"]},"geometry":{"type":"LineString","coordinates":[[-83.7663198,32.882985600000005],[-83.76612730000001,32.882982000000005]]},"id":"8b44c0b53974fff-17dde1be43442fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53974793-17d7c1fa76924a90","8f44c0b5397616a-17d5d27c2611697a"]},"geometry":{"type":"LineString","coordinates":[[-83.76612730000001,32.882982000000005],[-83.7659198,32.8829781]]},"id":"8a44c0b53977fff-17d7d23b536103a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5397616a-17d5d27c2611697a","8f44c0b5397654e-17d7e2fbdf97079c"]},"geometry":{"type":"LineString","coordinates":[[-83.7659198,32.8829781],[-83.7657155,32.8829742]]},"id":"8b44c0b53976fff-17d5e2bc0a885fee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7655397,32.882970900000004]},"id":"8f44c0b5390d949-17d5d369b4909c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5397654e-17d7e2fbdf97079c","8f44c0b5390d949-17d5d369b4909c83"]},"geometry":{"type":"LineString","coordinates":[[-83.7657155,32.8829742],[-83.7655397,32.882970900000004]]},"id":"8944c0b5393ffff-17d5e332ce70c4bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5391934c-17d7f6fb1cc66106","8f44c0b5398c413-179fcd7cb37b787a"]},"geometry":{"type":"LineString","coordinates":[[-83.76407830000001,32.883571100000005],[-83.7614133,32.883504]]},"id":"8844c0b539fffff-17b7ca3be5e07e54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5398324a-17b7deaba9e80829","8f44c0b5398c413-179fcd7cb37b787a"]},"geometry":{"type":"LineString","coordinates":[[-83.7614133,32.883504],[-83.7612215,32.8834992],[-83.7609286,32.8835197]]},"id":"8a44c0b5398ffff-179ffe144c2c0880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7589907,32.8822545]},"id":"8f44c0b506cb229-1795d366d5b06211"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506cb229-1795d366d5b06211","8f44c0b5398324a-17b7deaba9e80829"]},"geometry":{"type":"LineString","coordinates":[[-83.7609286,32.8835197],[-83.7608792,32.8835232],[-83.7606367,32.883631],[-83.7593743,32.883648900000004],[-83.75924260000001,32.8836281],[-83.75915810000001,32.8835713],[-83.759088,32.8834801],[-83.7590373,32.883386800000004],[-83.7589842,32.882837],[-83.7589907,32.8822545]]},"id":"8744c0b53ffffff-17bfd1e80986019b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506d3376-1395d81105c9bae1","8f44c0b506d3391-1397f859b93c455c"]},"geometry":{"type":"LineString","coordinates":[[-83.75708,32.8810057],[-83.7569637,32.8810038]]},"id":"8c44c0b506d33ff-1395d8356d7cd551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75638550000001,32.8811692]},"id":"8f44c0b53d2c609-13ffd9c316a7aa3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d2c609-13ffd9c316a7aa3d","8f44c0b506d3391-1397f859b93c455c"]},"geometry":{"type":"LineString","coordinates":[[-83.7569637,32.8810038],[-83.75638670000001,32.880994900000005],[-83.75638550000001,32.8811692]]},"id":"8744c0b53ffffff-139dd937f8c1a026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d2c609-13ffd9c316a7aa3d","8f44c0b53d66c89-13fdd6625bc5d4dd"]},"geometry":{"type":"LineString","coordinates":[[-83.75638550000001,32.8811692],[-83.75637900000001,32.882185],[-83.7577691,32.882195200000005]]},"id":"8844c0b53dfffff-13f5f8cb458be5cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637211,32.9100581]},"id":"8f44c0a0011304d-17f6fbfe5720dad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0011c513-13b6fa9adebd7b03","8f44c0a0011304d-17f6fbfe5720dad5"]},"geometry":{"type":"LineString","coordinates":[[-83.6637211,32.9100581],[-83.6642899,32.9101359]]},"id":"8944c0a0013ffff-139ebb4c90877d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a001012b6-13b6b7c8f70b7229","8f44c0a0011c513-13b6fa9adebd7b03"]},"geometry":{"type":"LineString","coordinates":[[-83.6642899,32.9101359],[-83.66436230000001,32.9101458],[-83.66544490000001,32.9101376]]},"id":"8944c0a0013ffff-13b6b9321796c064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a001012b6-13b6b7c8f70b7229","8f44c0a0012b299-13d7f5b70e69a9d2"]},"geometry":{"type":"LineString","coordinates":[[-83.66544490000001,32.9101376],[-83.6658956,32.9101341],[-83.66616040000001,32.9102629],[-83.66629280000001,32.910415]]},"id":"8944c0a0013ffff-13deb6ac83bd67a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0012b299-13d7f5b70e69a9d2","8f44c0a0010db24-13b7f57e61c84fd4"]},"geometry":{"type":"LineString","coordinates":[[-83.66629280000001,32.910415],[-83.6663834,32.9105788]]},"id":"8944c0a0013ffff-1396b59abb9b6e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00154c4c-1397b58000186b3c","8f44c0a0010db24-13b7f57e61c84fd4"]},"geometry":{"type":"LineString","coordinates":[[-83.6663834,32.9105788],[-83.6663808,32.9113169]]},"id":"8844c0a001fffff-139ef57f3abb40c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00154c4c-1397b58000186b3c","8f44c0a00150306-1797f5815e0de76f"]},"geometry":{"type":"LineString","coordinates":[[-83.6663808,32.9113169],[-83.66637870000001,32.9119254]]},"id":"8a44c0a00157fff-13d7f580b32115e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0015ac48-17ffb5838a11fb3b","8f44c0a00150306-1797f5815e0de76f"]},"geometry":{"type":"LineString","coordinates":[[-83.66637870000001,32.9119254],[-83.6663752,32.912943500000004]]},"id":"8944c0a0017ffff-17bfb582766c3786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663717,32.9139381]},"id":"8f44c0a00070a72-13fff585b48f5f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00070a72-13fff585b48f5f6c","8f44c0a0015ac48-17ffb5838a11fb3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6663752,32.912943500000004],[-83.6663717,32.9139381]]},"id":"8844c0a001fffff-13b6b58499de44d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66636840000001,32.9149035]},"id":"8f44c0a0004291a-13d6b587c211f572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00070a72-13fff585b48f5f6c","8f44c0a0004291a-13d6b587c211f572"]},"geometry":{"type":"LineString","coordinates":[[-83.6663717,32.9139381],[-83.66636840000001,32.9149035]]},"id":"8944c0a0007ffff-139fb586b1307a8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6663649,32.9159039]},"id":"8f44c0a0005d459-17b7f589f85ab5d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0004291a-13d6b587c211f572","8f44c0a0005d459-17b7f589f85ab5d5"]},"geometry":{"type":"LineString","coordinates":[[-83.66636840000001,32.9149035],[-83.6663649,32.9159039]]},"id":"8944c0a0007ffff-17fff588de65f6c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6778044,32.916456000000004]},"id":"8f44c0a00a6924a-1797999c47562833"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a00a6924a-1797999c47562833","8f44c0a01d31729-13dfd89f6b79b46e"]},"geometry":{"type":"LineString","coordinates":[[-83.6778044,32.916456000000004],[-83.677895,32.9166783],[-83.6780379,32.9168743],[-83.6781634,32.917257500000005],[-83.67820900000001,32.917394800000004]]},"id":"8a44c0a01d37fff-13b7d913ec822f0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c218e8-13b7d710264fa98f","8f44c0a01d31729-13dfd89f6b79b46e"]},"geometry":{"type":"LineString","coordinates":[[-83.67820900000001,32.917394800000004],[-83.67817380000001,32.9176203],[-83.6780379,32.918079500000005],[-83.67800650000001,32.9182463],[-83.67800310000001,32.9183984],[-83.67807970000001,32.9186119],[-83.6782714,32.9190302],[-83.6785467,32.9196182],[-83.6787523,32.9201652],[-83.6788478,32.9203828]]},"id":"8844c0a01dfffff-179ed85928ab3b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67819820000001,32.9224819]},"id":"8f44c0a01c0b813-17d7b8a62569d0be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c218e8-13b7d710264fa98f","8f44c0a01c0b813-17d7b8a62569d0be"]},"geometry":{"type":"LineString","coordinates":[[-83.6788478,32.9203828],[-83.67887420000001,32.9204431],[-83.67894050000001,32.9207151],[-83.6789195,32.9209638],[-83.678815,32.9215283],[-83.6786373,32.9218823],[-83.67819820000001,32.9224819]]},"id":"8944c0a01c3ffff-13d797666e0aab80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c0b813-17d7b8a62569d0be","8f44c0a01c50ae8-13f7b69349b1434a"]},"geometry":{"type":"LineString","coordinates":[[-83.6790476,32.9233435],[-83.6788429,32.9231167],[-83.6784073,32.922689600000005],[-83.67819820000001,32.9224819]]},"id":"8844c0a01dfffff-17d7d799e9c75424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c0b813-17d7b8a62569d0be","8f44c0a01c19809-17deba903b6afa34"]},"geometry":{"type":"LineString","coordinates":[[-83.67819820000001,32.9224819],[-83.67796820000001,32.922397100000005],[-83.6777278,32.9223298],[-83.67741410000001,32.9222859]]},"id":"8944c0a01c3ffff-17fff998361458ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6762793,32.9227385]},"id":"8f44c0a01cf475c-17f79d557cc4acf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01c19809-17deba903b6afa34","8f44c0a01cf475c-17f79d557cc4acf7"]},"geometry":{"type":"LineString","coordinates":[[-83.67741410000001,32.9222859],[-83.67733050000001,32.9222976],[-83.6770099,32.9224322],[-83.6766405,32.922645700000004],[-83.6763408,32.9227422],[-83.6762793,32.9227385]]},"id":"8844c0a01dfffff-17f6bbf19d2f5a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01caa514-1796b09ac306a862","8f44c0a01cf475c-17f79d557cc4acf7"]},"geometry":{"type":"LineString","coordinates":[[-83.6762793,32.9227385],[-83.676198,32.9227335],[-83.6760041,32.9226134],[-83.6758193,32.9225183],[-83.67555320000001,32.9222618],[-83.67539790000001,32.922117],[-83.6752723,32.9220509],[-83.6749396,32.9219681]]},"id":"8844c0a01dfffff-17fffef25d610a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909162,32.911117700000005]},"id":"8f44c0a0504b92d-139ef9996d9ce1ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0504b92d-139ef9996d9ce1ee","8f44c0a0504b10e-13f6f9ed6c19c99e"]},"geometry":{"type":"LineString","coordinates":[[-83.69078180000001,32.9112687],[-83.6909162,32.911117700000005]]},"id":"8a44c0a0504ffff-13b7f9c36dc83662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911553,32.9108363]},"id":"8f44c0a0504d4ce-13def903f972d16f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0504b92d-139ef9996d9ce1ee","8f44c0a0504d4ce-13def903f972d16f"]},"geometry":{"type":"LineString","coordinates":[[-83.6909162,32.911117700000005],[-83.6911553,32.9108363]]},"id":"8a44c0a0504ffff-13b6f94eb2580303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917811,32.911266600000005]},"id":"8f44c0a05332211-13f7f77cdac9f921"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0533319e-13b6f6f2fc277c30","8f44c0a05332211-13f7f77cdac9f921"]},"geometry":{"type":"LineString","coordinates":[[-83.6917811,32.911266600000005],[-83.6920017,32.9113963]]},"id":"8a44c0a05337fff-139e7737e26f9810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69216800000001,32.9114941]},"id":"8f44c0a05333334-13f7f68b09d3bbdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05333334-13f7f68b09d3bbdd","8f44c0a0533319e-13b6f6f2fc277c30"]},"geometry":{"type":"LineString","coordinates":[[-83.6920017,32.9113963],[-83.69216800000001,32.9114941]]},"id":"8b44c0a05333fff-13d776bef49aea05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69148050000001,32.9110101]},"id":"8f44c0a0504d25b-13d77838b6a12f78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0504d25b-13d77838b6a12f78","8f44c0a0504d4ce-13def903f972d16f"]},"geometry":{"type":"LineString","coordinates":[[-83.69148050000001,32.9110101],[-83.6911553,32.9108363]]},"id":"8a44c0a0504ffff-139f789e5b28b3d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907807,32.9105943]},"id":"8f44c0a0504eb4b-13d779ee105c5f9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0504d4ce-13def903f972d16f","8f44c0a0504eb4b-13d779ee105c5f9d"]},"geometry":{"type":"LineString","coordinates":[[-83.6911553,32.9108363],[-83.6907807,32.9105943]]},"id":"8a44c0a0504ffff-139f79790d30d11c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69221970000001,32.911893400000004]},"id":"8f44c0a05315b4b-17ff766ab9d35ce2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05315b4b-17ff766ab9d35ce2","8f44c0a05315da2-13d67765e2c7ab4c"]},"geometry":{"type":"LineString","coordinates":[[-83.69221970000001,32.911893400000004],[-83.69181780000001,32.911645400000005]]},"id":"8944c0a0533ffff-179ff6e8422f56b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05315da2-13d67765e2c7ab4c","8f44c0a0504b92d-139ef9996d9ce1ee"]},"geometry":{"type":"LineString","coordinates":[[-83.69181780000001,32.911645400000005],[-83.69103940000001,32.9111652],[-83.6909162,32.911117700000005]]},"id":"8844c0a053fffff-13b7f87cb3cf6d01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69137950000001,32.9104826]},"id":"8f44c0a0506b605-13fff877da961075"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0504eb4b-13d779ee105c5f9d","8f44c0a0506b605-13fff877da961075"]},"geometry":{"type":"LineString","coordinates":[[-83.69137950000001,32.9104826],[-83.6911602,32.9103378],[-83.69107890000001,32.910346000000004],[-83.69090390000001,32.910495000000004],[-83.6907807,32.9105943]]},"id":"8944c0a0507ffff-13dff9372a7e1e34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69062550000001,32.910828]},"id":"8f44c0a05048582-13d7fa4f1cc4cf57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05048582-13d7fa4f1cc4cf57","8f44c0a0504eb4b-13d779ee105c5f9d"]},"geometry":{"type":"LineString","coordinates":[[-83.6907807,32.9105943],[-83.6906797,32.910633600000004],[-83.6906206,32.9107763],[-83.69062550000001,32.910828]]},"id":"8a44c0a0504ffff-13ff7a3142366504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68331930000001,32.918621200000004]},"id":"8f44c0a019b2021-17decc257d5aee5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a01996363-17978d44fbabf4f5","8f44c0a019b2021-17decc257d5aee5b"]},"geometry":{"type":"LineString","coordinates":[[-83.68331930000001,32.918621200000004],[-83.68306050000001,32.9187536],[-83.6829644,32.918828000000005],[-83.6828856,32.9189211],[-83.6828634,32.918991500000004],[-83.6828462,32.919090700000005],[-83.6828462,32.919198300000005],[-83.6828593,32.9193072]]},"id":"8944c0a019bffff-179e8cf3116e9ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0199398c-17b6fcebd0b49957","8f44c0a01996363-17978d44fbabf4f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6828593,32.9193072],[-83.6828634,32.919341],[-83.6828782,32.919475500000004],[-83.682962,32.9197195],[-83.68300190000001,32.9197647]]},"id":"8a44c0a01997fff-179eed254f0d3b7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0199398c-17b6fcebd0b49957","8f44c0a0199e8c8-13beabf6eb618f93"]},"geometry":{"type":"LineString","coordinates":[[-83.68300190000001,32.9197647],[-83.6833938,32.920208200000005]]},"id":"8944c0a019bffff-13bf9c716e86aba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a000ea56c-17b7baf7a01be687","8f44c0a0005d459-17b7f589f85ab5d5"]},"geometry":{"type":"LineString","coordinates":[[-83.6663649,32.9159039],[-83.6641414,32.9158994]]},"id":"8844c0a001fffff-17b6b840cfaff269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a000ea56c-17b7baf7a01be687","8f44c0a000f191b-1396fd1d55954563"]},"geometry":{"type":"LineString","coordinates":[[-83.6641414,32.9158994],[-83.66350720000001,32.9158981],[-83.66333990000001,32.915827900000004],[-83.6632493,32.9156816],[-83.66326190000001,32.914791900000004]]},"id":"8944c0a000fffff-17f6fc9cd858cd6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66327410000001,32.9139265]},"id":"8f44c0a0001bd8b-13f6bd15bf593ab1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0001bd8b-13f6bd15bf593ab1","8f44c0a000f191b-1396fd1d55954563"]},"geometry":{"type":"LineString","coordinates":[[-83.66326190000001,32.914791900000004],[-83.66327410000001,32.9139265]]},"id":"8844c0a001fffff-13f6bd198a13e9d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0001bd8b-13f6bd15bf593ab1","8f44c0a001a904c-1397fc9a18379212"]},"geometry":{"type":"LineString","coordinates":[[-83.66327410000001,32.9139265],[-83.6632981,32.9122238],[-83.66326330000001,32.911621100000005],[-83.6634719,32.9109087]]},"id":"8844c0a001fffff-17bffd02754d3309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a001a904c-1397fc9a18379212","8f44c0a0011304d-17f6fbfe5720dad5"]},"geometry":{"type":"LineString","coordinates":[[-83.6634719,32.9109087],[-83.6637211,32.9100581]]},"id":"8844c0a001fffff-13febc4c36b3386a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00c65ce9-179fbc0697727a29","8f44c0a0011304d-17f6fbfe5720dad5"]},"geometry":{"type":"LineString","coordinates":[[-83.6637211,32.9100581],[-83.66429480000001,32.907911600000006],[-83.6643157,32.907431800000005],[-83.6642599,32.9072211],[-83.6641606,32.9069327],[-83.66402950000001,32.906598200000005],[-83.6637079,32.906229100000004]]},"id":"8744c0a00ffffff-13b6bb27f6237ab9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00d0b210-139ed18b9e31b6df","8f44c0a00c65ce9-179fbc0697727a29"]},"geometry":{"type":"LineString","coordinates":[[-83.6637079,32.906229100000004],[-83.6632326,32.9056836],[-83.6628846,32.905306700000004],[-83.6621078,32.904481000000004],[-83.6615228,32.9038416],[-83.6614471,32.9037481]]},"id":"8844c0a00dfffff-1396fec772f6c43f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6541498,32.8979477]},"id":"8f44c0a06aaca02-13f7d35c6fbb68a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00d0b210-139ed18b9e31b6df","8f44c0a06aaca02-13f7d35c6fbb68a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6614471,32.9037481],[-83.66134120000001,32.903617100000005],[-83.66127060000001,32.9034223],[-83.6612403,32.9028549],[-83.6611445,32.9025924],[-83.6609478,32.902325600000005],[-83.6603274,32.9019402],[-83.6588749,32.9010425],[-83.65774010000001,32.9003607],[-83.6562976,32.8994968],[-83.65597480000001,32.899306200000005],[-83.6558487,32.8991792],[-83.6557428,32.8989759],[-83.6555259,32.8986414],[-83.65526870000001,32.8984381],[-83.65493070000001,32.8983322],[-83.6541498,32.8979477]]},"id":"8644c0a07ffffff-13dfd9b4f09219ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00070a72-13fff585b48f5f6c","8f44c0a0004291a-13d6b587c211f572"]},"geometry":{"type":"LineString","coordinates":[[-83.66636840000001,32.9149035],[-83.667208,32.9149034],[-83.6673056,32.9148391],[-83.66729860000001,32.9140375],[-83.66724980000001,32.9139615],[-83.66704770000001,32.913932200000005],[-83.6663717,32.9139381]]},"id":"8944c0a0007ffff-139fb407bb533246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a00070a72-13fff585b48f5f6c","8f44c0a0001bd8b-13f6bd15bf593ab1"]},"geometry":{"type":"LineString","coordinates":[[-83.6663717,32.9139381],[-83.66327410000001,32.9139265]]},"id":"8844c0a001fffff-13f7b94db7ac7015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a06a358c4-17b6cf2e3d3a51a7","8f44c0a06aaca02-13f7d35c6fbb68a6"]},"geometry":{"type":"LineString","coordinates":[[-83.65586210000001,32.8962312],[-83.65571580000001,32.8965995],[-83.65560880000001,32.8967642],[-83.65550540000001,32.8968541],[-83.6553806,32.8969559],[-83.6550917,32.8971116],[-83.6548849,32.8972404],[-83.65458430000001,32.8974994],[-83.6541498,32.8979477]]},"id":"8844c0a06bfffff-13f6d11f95eab532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a060ad459-13dee9cf424b0764","8f44c0a06aaca02-13f7d35c6fbb68a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6541498,32.8979477],[-83.6536239,32.8982742],[-83.6521723,32.8991478],[-83.65095720000001,32.8999092],[-83.6506351,32.9000545],[-83.6487314,32.900261900000004],[-83.6481136,32.900078],[-83.646108,32.898313],[-83.645452,32.897721000000004],[-83.64523820000001,32.897602],[-83.64495480000001,32.897508200000004]]},"id":"8744c0a06ffffff-17f7ded0eac6c6fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a060a889a-13bffa9b1dca882e","8f44c0a060ad459-13dee9cf424b0764"]},"geometry":{"type":"LineString","coordinates":[[-83.64495480000001,32.897508200000004],[-83.6446287,32.8974525]]},"id":"8a44c0a060affff-13bfea3539223f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a060a889a-13bffa9b1dca882e","8f44c0a0655e39b-17f7f697ccacdff7"]},"geometry":{"type":"LineString","coordinates":[[-83.6446287,32.8974525],[-83.6441839,32.8974732],[-83.6425323,32.8979069],[-83.64224940000001,32.897905900000005],[-83.6419826,32.8978476],[-83.64166,32.897705],[-83.64078,32.897257],[-83.6402551,32.896903200000004],[-83.6400955,32.8967036],[-83.63987680000001,32.8960901],[-83.63971880000001,32.8959355]]},"id":"8744c0a06ffffff-13fef13c36de57af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a15a1548d-17f7db28ebe5ad76","8f44c0a15b73cc1-13d7b24edeb7cedb"]},"geometry":{"type":"LineString","coordinates":[[-83.6349203,32.9012059],[-83.63477440000001,32.9011823],[-83.63438790000001,32.9012235],[-83.63377340000001,32.9013116],[-83.6333068,32.9013821],[-83.6328895,32.901471900000004],[-83.63238390000001,32.9016575],[-83.6320367,32.9018521],[-83.63173730000001,32.902064800000005],[-83.6312946,32.9024829]]},"id":"8844c0a15bfffff-13d766f9d3ae1538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a15a1548d-17f7db28ebe5ad76","8f44c0a15a10383-17f7aba9ee001a57"]},"geometry":{"type":"LineString","coordinates":[[-83.6312946,32.9024829],[-83.63108820000001,32.9026842]]},"id":"8a44c0a15a17fff-17b7cb6961b011fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a15aaa2c3-13d71e864c6e769d","8f44c0a15a10383-17f7aba9ee001a57"]},"geometry":{"type":"LineString","coordinates":[[-83.63108820000001,32.9026842],[-83.6309051,32.9028731],[-83.630537,32.903257700000005],[-83.63000070000001,32.903777500000004],[-83.6299164,32.9038673]]},"id":"8844c0a15bfffff-17f75d16201dda15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a15aaa2c3-13d71e864c6e769d","8f44c0a15a8c698-13d74f6e4d01c62d"]},"geometry":{"type":"LineString","coordinates":[[-83.6299164,32.9038673],[-83.62954520000001,32.904245200000005]]},"id":"8944c0a15abffff-13df3efa4024f093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a153267a6-179ff246b3bbfb6a","8f44c0a15a8c698-13d74f6e4d01c62d"]},"geometry":{"type":"LineString","coordinates":[[-83.62954520000001,32.904245200000005],[-83.6288559,32.904884700000004],[-83.62841370000001,32.905194200000004],[-83.62837970000001,32.905211]]},"id":"8744c0a15ffffff-13ff90cff7d8d471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a153267a6-179ff246b3bbfb6a","8f44c0a150c3390-17bf216a1320df97"]},"geometry":{"type":"LineString","coordinates":[[-83.62837970000001,32.905211],[-83.6279731,32.905412000000005],[-83.6277202,32.9055139],[-83.62747900000001,32.9055903],[-83.62723510000001,32.9056482],[-83.62702390000001,32.9056711],[-83.62674820000001,32.905684900000004],[-83.6263311,32.9056786],[-83.62581580000001,32.9056488],[-83.6248901,32.905598000000005],[-83.6240413,32.9055501],[-83.6234921,32.905520200000005],[-83.62296380000001,32.9054864],[-83.62217910000001,32.905436800000004]]},"id":"8744c0a15ffffff-17f739c236485e11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a150c3390-17bf216a1320df97","8f44c0a15469540-13973bac38064d1e"]},"geometry":{"type":"LineString","coordinates":[[-83.62217910000001,32.905436800000004],[-83.6219871,32.9054274],[-83.62157110000001,32.9054021],[-83.62105700000001,32.9053768],[-83.6206896,32.9053486],[-83.62040710000001,32.9053016],[-83.6200077,32.9051878],[-83.61969500000001,32.9050679],[-83.6192944,32.9048764],[-83.6191125,32.9047508],[-83.61889740000001,32.904581400000005],[-83.6186335,32.904359],[-83.6179773,32.9037601]]},"id":"8744c0a15ffffff-13ff66e006f171ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6041213,32.881143300000005]},"id":"8f44c0a14c4ed73-13dfdd8036bd8494"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c4ed73-13dfdd8036bd8494","8f44c0a14c43550-13ff4ea8b1eadf5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6041213,32.881143300000005],[-83.6036469,32.8809636]]},"id":"8a44c0a14c47fff-13b77e1473557285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60342940000001,32.8806731]},"id":"8f44c0a14c42002-13b7ff30a8241eff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c42002-13b7ff30a8241eff","8f44c0a14c43550-13ff4ea8b1eadf5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6036469,32.8809636],[-83.60342940000001,32.8806731]]},"id":"8a44c0a14c47fff-139fceecbd0a27de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c42002-13b7ff30a8241eff","8f44c0a14c55062-17ff7feaeab277d0"]},"geometry":{"type":"LineString","coordinates":[[-83.60342940000001,32.8806731],[-83.6033616,32.8805473],[-83.6031655,32.8804065],[-83.60313140000001,32.8803751]]},"id":"8944c0a14c7ffff-17dfff84b9541f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c521a9-17d7f26ed6c18752","8f44c0a14c55062-17ff7feaeab277d0"]},"geometry":{"type":"LineString","coordinates":[[-83.60313140000001,32.8803751],[-83.6029408,32.8801998],[-83.60281950000001,32.880133900000004],[-83.6025164,32.8802777],[-83.602281,32.8804305],[-83.6021011,32.8805211]]},"id":"8a44c0a14c57fff-17df7124baddf24e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60193860000001,32.8806012]},"id":"8f44c0a14c524ec-1397d2d469b2a194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c521a9-17d7f26ed6c18752","8f44c0a14c524ec-1397d2d469b2a194"]},"geometry":{"type":"LineString","coordinates":[[-83.6021011,32.8805211],[-83.6020314,32.8805562],[-83.60193860000001,32.8806012]]},"id":"8b44c0a14c52fff-17fff2a186e3b91b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6018174,32.881996900000004]},"id":"8f44c0a14ceb214-13f75320254dfcc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14ceb214-13f75320254dfcc0","8f44c0a14ce9822-13f751d97a935380"]},"geometry":{"type":"LineString","coordinates":[[-83.6018174,32.881996900000004],[-83.6018887,32.881583500000005],[-83.60194580000001,32.8815296],[-83.6023401,32.881588900000004]]},"id":"8a44c0a14ceffff-13b7f2b5c87d024b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60289,32.8816871]},"id":"8f44c0a14c5aa19-13bf7081c0ad0a1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14ce9822-13f751d97a935380","8f44c0a14c5aa19-13bf7081c0ad0a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6023401,32.881588900000004],[-83.6028623,32.881667400000005],[-83.60289,32.8816871]]},"id":"8844c0a14dfffff-139f712beb854358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c595a1-13ffef6c626312b4","8f44c0a14c5aa19-13bf7081c0ad0a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.60289,32.8816871],[-83.60293370000001,32.8817183],[-83.60311200000001,32.8817812],[-83.6033338,32.8817898]]},"id":"8a44c0a14c5ffff-13dfeffb0a4a80e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6038333,32.8818299]},"id":"8f44c0a14c4a4c8-1397fe3433fcbcc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c595a1-13ffef6c626312b4","8f44c0a14c4a4c8-1397fe3433fcbcc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6033338,32.8817898],[-83.6035756,32.8817992],[-83.6038333,32.8818299]]},"id":"8a44c0a14c5ffff-13ff5ed01a934cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c48006-13976c91bbfff155","8f44c0a14c4a4c8-1397fe3433fcbcc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6038333,32.8818299],[-83.6042532,32.881880100000004],[-83.6043317,32.8818621],[-83.6045029,32.8816434]]},"id":"8944c0a14c7ffff-1397fd4dd5454f1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60427820000001,32.8810115]},"id":"8f44c0a14c41393-139f7d1e2a298af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c48006-13976c91bbfff155","8f44c0a14c41393-139f7d1e2a298af8"]},"geometry":{"type":"LineString","coordinates":[[-83.6045029,32.8816434],[-83.6047097,32.881311000000004],[-83.60465620000001,32.881221100000005],[-83.6044672,32.8811313],[-83.6043246,32.8810444],[-83.60427820000001,32.8810115]]},"id":"8944c0a14c7ffff-13b76c754dd4821a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6044066,32.880733]},"id":"8f44c0a14c41956-13df6ccde4944375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c41956-13df6ccde4944375","8f44c0a14c41393-139f7d1e2a298af8"]},"geometry":{"type":"LineString","coordinates":[[-83.60427820000001,32.8810115],[-83.6044066,32.880733]]},"id":"8b44c0a14c41fff-13b76cf6033d4a36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60984470000001,32.882724200000006]},"id":"8f44c0a148cec94-17b7bf871558a147"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6091822,32.8825513]},"id":"8f44c0a148dcc69-17dfd12526da7c87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a148cec94-17b7bf871558a147","8f44c0a148dcc69-17dfd12526da7c87"]},"geometry":{"type":"LineString","coordinates":[[-83.60984470000001,32.882724200000006],[-83.6092673,32.8825724],[-83.6091822,32.8825513]]},"id":"8944c0a148fffff-179740560e2bfe86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14129415-179fe44a1d22357b","8f44c0a148dcc69-17dfd12526da7c87"]},"geometry":{"type":"LineString","coordinates":[[-83.6091822,32.8825513],[-83.60908540000001,32.8825274],[-83.6090034,32.8824526],[-83.60887860000001,32.8822878],[-83.60877160000001,32.882150100000004],[-83.60862180000001,32.8821171],[-83.6084364,32.8821171],[-83.6083187,32.882150100000004],[-83.60799060000001,32.882308800000004],[-83.6078871,32.882470500000004],[-83.6076874,32.8826802],[-83.6074627,32.882779],[-83.60745920000001,32.8828838],[-83.6075412,32.8829617],[-83.6078943,32.883276200000005]]},"id":"8744c0a14ffffff-17bf53a4ab2f98d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14129415-179fe44a1d22357b","8f44c0a148dcc69-17dfd12526da7c87"]},"geometry":{"type":"LineString","coordinates":[[-83.6078943,32.883276200000005],[-83.608012,32.883282200000004],[-83.60833650000001,32.8832073],[-83.60876090000001,32.883030600000005],[-83.6089285,32.882946700000005],[-83.6090355,32.882812],[-83.6091746,32.882704100000005],[-83.60919240000001,32.882626300000005],[-83.6091822,32.8825513]]},"id":"8744c0a14ffffff-17f7e27d81dff57a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c41393-139f7d1e2a298af8","8f44c0a14c4ed73-13dfdd8036bd8494"]},"geometry":{"type":"LineString","coordinates":[[-83.60427820000001,32.8810115],[-83.6041213,32.881143300000005]]},"id":"8a44c0a14c47fff-13b76d4f34196131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c4ed73-13dfdd8036bd8494","8f44c0a14c4a4c8-1397fe3433fcbcc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6041213,32.881143300000005],[-83.6038333,32.8818299]]},"id":"8944c0a14c7ffff-13b76dda37cafeb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60275180000001,32.8821047]},"id":"8f44c0a141b4aad-13b770d82f89af36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a141b4aad-13b770d82f89af36","8f44c0a14c5aa19-13bf7081c0ad0a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.60275180000001,32.8821047],[-83.60289,32.8816871]]},"id":"8844c0a14dfffff-13b7f0acf7af5f82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14c42002-13b7ff30a8241eff","8f44c0a14c5aa19-13bf7081c0ad0a1d"]},"geometry":{"type":"LineString","coordinates":[[-83.60289,32.8816871],[-83.6030228,32.8814068],[-83.6030549,32.881143300000005],[-83.6031904,32.880816800000005],[-83.60324750000001,32.8807539],[-83.60342940000001,32.8806731]]},"id":"8944c0a14c7ffff-13d7effc0fe7d65c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a10c9d686-13df6bdc4cb6f059","8f44c0a10c8334a-13df6abfab18c7fc"]},"geometry":{"type":"LineString","coordinates":[[-83.59168600000001,32.9011906],[-83.5921414,32.9007798]]},"id":"8944c0a10cbffff-13dfeb4dfcef42d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a10d19535-139761e12eceb43f","8f44c0a10c8334a-13df6abfab18c7fc"]},"geometry":{"type":"LineString","coordinates":[[-83.5921414,32.9007798],[-83.5922963,32.900640100000004],[-83.59392030000001,32.899187600000005],[-83.5955696,32.8977647],[-83.59577420000001,32.8976208]]},"id":"8844c0a10dfffff-17f77659831edbb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a10d19535-139761e12eceb43f","8f44c0a1460ec49-17b755bce80f1121"]},"geometry":{"type":"LineString","coordinates":[[-83.59577420000001,32.8976208],[-83.59597310000001,32.897480900000005],[-83.5967347,32.896993900000005],[-83.5970171,32.8967483],[-83.5973702,32.8963545],[-83.5978443,32.8955371],[-83.59805610000001,32.895295700000005],[-83.5983739,32.895012],[-83.5993574,32.8944445],[-83.60031570000001,32.893860100000005],[-83.6005981,32.8935933],[-83.6007474,32.8933425]]},"id":"8644c0a17ffffff-17dfdbd974b700eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a14635b49-13b775e4fbb00cfc","8f44c0a1460ec49-17b755bce80f1121"]},"geometry":{"type":"LineString","coordinates":[[-83.6007474,32.8933425],[-83.60082,32.8932206],[-83.60090070000001,32.8929072],[-83.6009461,32.8926488],[-83.6009339,32.8924705],[-83.6008149,32.8920507],[-83.6006833,32.891503]]},"id":"8944c0a1463ffff-17ff55825075f795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a14635b49-13b775e4fbb00cfc","8f44c0a1409a6b1-13bf758575b8ac9d"]},"geometry":{"type":"LineString","coordinates":[[-83.6006833,32.891503],[-83.6005284,32.890865000000005],[-83.60045740000001,32.8904061],[-83.60047010000001,32.8900187],[-83.6006397,32.888715000000005],[-83.60071930000001,32.8882241],[-83.60083610000001,32.887827800000004]]},"id":"8744c0a14ffffff-17bf56209c5b9b7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6702573,32.8735784]},"id":"8f44c0a22716124-17f6ac093e69340f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22700801-17dee7c09e31fc92","8f44c0a22716124-17f6ac093e69340f"]},"geometry":{"type":"LineString","coordinates":[[-83.6702573,32.8735784],[-83.6704461,32.8737694],[-83.6705963,32.8738595],[-83.6708193,32.8739568],[-83.6710381,32.873982000000005],[-83.67189180000001,32.8739784],[-83.6720119,32.873979]]},"id":"8944c0a2273ffff-17b6aa01ba2420e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22700801-17dee7c09e31fc92","8f44c0a2272d416-13b7e42abcb11b73"]},"geometry":{"type":"LineString","coordinates":[[-83.6720119,32.873979],[-83.6725782,32.873982000000005],[-83.6729986,32.8740432],[-83.67348050000001,32.8740948]]},"id":"8944c0a2273ffff-17f7e5f5088cfd74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2272d416-13b7e42abcb11b73","8f44c0a220dd1ae-13dea07fd2c1d2d1"]},"geometry":{"type":"LineString","coordinates":[[-83.67348050000001,32.8740948],[-83.6741097,32.874180100000004],[-83.67480900000001,32.8741982],[-83.6749827,32.874182600000005]]},"id":"8744c0a22ffffff-13d6b2561f3d0f0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7034486,32.8519522]},"id":"8f44c0a246662e2-13967b00aa700d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70342090000001,32.8504425]},"id":"8f44c0a2475c866-17f6db11fca08b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2475c866-17f6db11fca08b99","8f44c0a246662e2-13967b00aa700d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.7034486,32.8519522],[-83.70342090000001,32.8504425]]},"id":"8844c0a247fffff-13be7b0942b0b509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7065623,32.849024]},"id":"8f44c0a24395b13-13f653669cd71afc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24395b13-13f653669cd71afc","8f44c0a2475c866-17f6db11fca08b99"]},"geometry":{"type":"LineString","coordinates":[[-83.70342090000001,32.8504425],[-83.7034627,32.8501149],[-83.7035463,32.849951000000004],[-83.7036716,32.849705300000004],[-83.7038388,32.849559],[-83.7040686,32.849377700000005],[-83.7042636,32.8492957],[-83.7046815,32.8492314],[-83.705566,32.8492431],[-83.7061092,32.8492314],[-83.7064156,32.849114400000005],[-83.7065623,32.849024]]},"id":"8744c0a24ffffff-13f757cbc6071b21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24395b13-13f653669cd71afc","8f44c0a243b1c73-13ff527e4ad23329"]},"geometry":{"type":"LineString","coordinates":[[-83.7065623,32.849024],[-83.70662460000001,32.8489857],[-83.7067639,32.848816],[-83.70685440000001,32.8486697],[-83.706934,32.848402]]},"id":"8944c0a243bffff-13bef2dac65ec3a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707442,32.850505000000005]},"id":"8f44c0a2438aa95-179ff140cc8dc9cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70706530000001,32.849792]},"id":"8f44c0a243830de-17d6522c3cc6422a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2438aa95-179ff140cc8dc9cd","8f44c0a243830de-17d6522c3cc6422a"]},"geometry":{"type":"LineString","coordinates":[[-83.707442,32.850505000000005],[-83.70706530000001,32.849792]]},"id":"8944c0a243bffff-17bed1b67d3ff579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24395b13-13f653669cd71afc","8f44c0a243830de-17d6522c3cc6422a"]},"geometry":{"type":"LineString","coordinates":[[-83.70706530000001,32.849792],[-83.7069618,32.8496162],[-83.70684150000001,32.8493903],[-83.7065623,32.849024]]},"id":"8944c0a243bffff-13ded2c1702aa35a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7023633,32.853953600000004]},"id":"8f44c0a246588dc-17ff5da6f158986d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7023633,32.8538378]},"id":"8f44c0a246589aa-17b6fda6f5651509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a246588dc-17ff5da6f158986d","8f44c0a246589aa-17b6fda6f5651509"]},"geometry":{"type":"LineString","coordinates":[[-83.7023633,32.853953600000004],[-83.7023633,32.8538378]]},"id":"8c44c0a246589ff-17d6dda6ffb2771c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7023635,32.852952200000004]},"id":"8f44c0a24642d92-17977da6dcbea88b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24642d92-17977da6dcbea88b","8f44c0a246589aa-17b6fda6f5651509"]},"geometry":{"type":"LineString","coordinates":[[-83.7023633,32.8538378],[-83.7023635,32.852952200000004]]},"id":"8944c0a2467ffff-179ffda6e2313d5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70238300000001,32.8519403]},"id":"8f44c0a2467018d-139efd9aa464effb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2467018d-139efd9aa464effb","8f44c0a24642d92-17977da6dcbea88b"]},"geometry":{"type":"LineString","coordinates":[[-83.7023635,32.852952200000004],[-83.70238300000001,32.8519403]]},"id":"8944c0a2467ffff-13defda0b199213c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2467018d-139efd9aa464effb","8f44c0a2475c866-17f6db11fca08b99"]},"geometry":{"type":"LineString","coordinates":[[-83.70238300000001,32.8519403],[-83.70240270000001,32.8508674],[-83.7024076,32.8507474],[-83.7025504,32.8505778],[-83.7027425,32.8504826],[-83.70287540000001,32.8504371],[-83.70342090000001,32.8504425]]},"id":"8844c0a247fffff-179f7d0140fc9146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70446120000001,32.8519637]},"id":"8f44c0a24665b73-139f5887c8e4178f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2475c866-17f6db11fca08b99","8f44c0a24665b73-139f5887c8e4178f"]},"geometry":{"type":"LineString","coordinates":[[-83.70342090000001,32.8504425],[-83.70388990000001,32.8504495],[-83.704082,32.8504785],[-83.7042593,32.850553000000005],[-83.70438730000001,32.8506771],[-83.7044661,32.8508136],[-83.70448090000001,32.8509212],[-83.70446120000001,32.8519637]]},"id":"8844c0a247fffff-17b75919007eedd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7044417,32.8529714]},"id":"8f44c0a24668902-17977893fa3e5e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24668902-17977893fa3e5e6d","8f44c0a24665b73-139f5887c8e4178f"]},"geometry":{"type":"LineString","coordinates":[[-83.70446120000001,32.8519637],[-83.7044417,32.8529714]]},"id":"8944c0a2467ffff-13de588dd5f025c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70424940000001,32.8538295]},"id":"8f44c0a2464d92d-17bf790c231d578a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24668902-17977893fa3e5e6d","8f44c0a2464d92d-17bf790c231d578a"]},"geometry":{"type":"LineString","coordinates":[[-83.7044417,32.8529714],[-83.70446120000001,32.8531469],[-83.70424940000001,32.8538295]]},"id":"8944c0a2467ffff-17b758be13f2972b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.704279,32.8540571]},"id":"8f44c0a2464da03-17bff8f9a98c84e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2464da03-17bff8f9a98c84e1","8f44c0a2464d92d-17bf790c231d578a"]},"geometry":{"type":"LineString","coordinates":[[-83.70424940000001,32.8538295],[-83.704279,32.8540571]]},"id":"8944c0a2467ffff-17f6d902e04574eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7018905,32.8519348]},"id":"8f44c0a24672c74-139f5ece7e8945db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2467018d-139efd9aa464effb","8f44c0a24672c74-139f5ece7e8945db"]},"geometry":{"type":"LineString","coordinates":[[-83.7018905,32.8519348],[-83.70238300000001,32.8519403]]},"id":"8a44c0a24677fff-139f5e3480f996ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2467018d-139efd9aa464effb","8f44c0a246662e2-13967b00aa700d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.70238300000001,32.8519403],[-83.7034486,32.8519522]]},"id":"8944c0a2467ffff-13967c4daf1b49a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24665b73-139f5887c8e4178f","8f44c0a246662e2-13967b00aa700d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.7034486,32.8519522],[-83.70446120000001,32.8519637]]},"id":"8944c0a2467ffff-139ff9c43e092b1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7052196,32.8518437]},"id":"8f44c0a242943a6-13d656adc70d5aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a242943a6-13d656adc70d5aed","8f44c0a24665b73-139f5887c8e4178f"]},"geometry":{"type":"LineString","coordinates":[[-83.70446120000001,32.8519637],[-83.7049635,32.8519596],[-83.7052196,32.8518437]]},"id":"8a44c0a24297fff-139ed795c88f24c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7054251,32.851244]},"id":"8f44c0a242b2853-13dfd62d5f0cce19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a242943a6-13d656adc70d5aed","8f44c0a242b2853-13dfd62d5f0cce19"]},"geometry":{"type":"LineString","coordinates":[[-83.7052196,32.8518437],[-83.70538210000001,32.8516617],[-83.70544120000001,32.851504500000004],[-83.70542640000001,32.8512852],[-83.7054251,32.851244]]},"id":"8944c0a242bffff-13b75649c6ce0318"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a243830de-17d6522c3cc6422a","8f44c0a242b2853-13dfd62d5f0cce19"]},"geometry":{"type":"LineString","coordinates":[[-83.7054251,32.851244],[-83.7054166,32.8509832],[-83.70542640000001,32.8507805],[-83.7054806,32.8505861],[-83.7056677,32.8503709],[-83.70584500000001,32.850279900000004],[-83.7065788,32.849986200000004],[-83.70706530000001,32.849792]]},"id":"8844c0a243fffff-17bf54b98369ce91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2438aa95-179ff140cc8dc9cd","8f44c0a243830de-17d6522c3cc6422a"]},"geometry":{"type":"LineString","coordinates":[[-83.70706530000001,32.849792],[-83.7074652,32.849663500000005],[-83.7081448,32.849498000000004],[-83.7085388,32.8494401],[-83.70925290000001,32.8491753],[-83.70940060000001,32.8491298],[-83.7097798,32.849725500000005],[-83.709863,32.8498585],[-83.7093859,32.850064800000006],[-83.70914950000001,32.8501475],[-83.7087358,32.850217900000004],[-83.70787890000001,32.8503585],[-83.7076201,32.8504339],[-83.707442,32.850505000000005]]},"id":"8844c0a243fffff-17d6de5b68e6a8f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2438aa95-179ff140cc8dc9cd","8f44c0a242b2853-13dfd62d5f0cce19"]},"geometry":{"type":"LineString","coordinates":[[-83.707442,32.850505000000005],[-83.70691860000001,32.850722600000005],[-83.7065295,32.8508798],[-83.7059435,32.8512025],[-83.7056874,32.8512521],[-83.7054251,32.851244]]},"id":"8844c0a243fffff-1797f3b0ca66196c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a246589aa-17b6fda6f5651509","8f44c0a2464d92d-17bf790c231d578a"]},"geometry":{"type":"LineString","coordinates":[[-83.70424940000001,32.8538295],[-83.7023633,32.8538378]]},"id":"8944c0a2467ffff-17be5b599117b0bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.701925,32.8538295]},"id":"8f44c0a2465e76b-17bf7eb8ee5aebb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a246589aa-17b6fda6f5651509","8f44c0a2465e76b-17bf7eb8ee5aebb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7023633,32.8538378],[-83.701925,32.8538295]]},"id":"8a44c0a2465ffff-17be5e2fef15b6e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7055157,32.852981400000004]},"id":"8f44c0a2429ea29-179f75f4b929625f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2429ea29-179f75f4b929625f","8f44c0a24668902-17977893fa3e5e6d"]},"geometry":{"type":"LineString","coordinates":[[-83.7055157,32.852981400000004],[-83.7044417,32.8529714]]},"id":"8744c0a24ffffff-179657445dcd8f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24668902-17977893fa3e5e6d","8f44c0a24642d92-17977da6dcbea88b"]},"geometry":{"type":"LineString","coordinates":[[-83.7044417,32.8529714],[-83.7023635,32.852952200000004]]},"id":"8944c0a2467ffff-179f7b1d61050598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7019447,32.8529483]},"id":"8f44c0a24650b43-1796feac9ab3d40c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24642d92-17977da6dcbea88b","8f44c0a24650b43-1796feac9ab3d40c"]},"geometry":{"type":"LineString","coordinates":[[-83.7023635,32.852952200000004],[-83.7019447,32.8529483]]},"id":"8944c0a2467ffff-1797fe29b8582fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2429ea29-179f75f4b929625f","8f44c0a242943a6-13d656adc70d5aed"]},"geometry":{"type":"LineString","coordinates":[[-83.7052196,32.8518437],[-83.7052639,32.8519389],[-83.70552,32.8522326],[-83.70553480000001,32.8523361],[-83.7055157,32.852981400000004]]},"id":"8944c0a242bffff-13b7d617a97f9b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7054954,32.8536723]},"id":"8f44c0a2429b1aa-17df76016ef2c07f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2429b1aa-17df76016ef2c07f","8f44c0a2429ea29-179f75f4b929625f"]},"geometry":{"type":"LineString","coordinates":[[-83.7055157,32.852981400000004],[-83.7054954,32.8536723]]},"id":"8a44c0a2429ffff-17f755fb10d6c0ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76171450000001,32.8387849]},"id":"8f44c0b09ac94a1-13f5dcc0743e0122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7610102,32.837084100000006]},"id":"8f44c0b09ac4604-17ddde78a5fac04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ac94a1-13f5dcc0743e0122","8f44c0b09ac4604-17ddde78a5fac04d"]},"geometry":{"type":"LineString","coordinates":[[-83.76171450000001,32.8387849],[-83.7624059,32.8387909],[-83.76269110000001,32.838677100000005],[-83.76277660000001,32.8384555],[-83.7628693,32.837563],[-83.7627125,32.837239600000004],[-83.76239170000001,32.8371198],[-83.7610102,32.837084100000006]]},"id":"8844c0b09bfffff-179feb5eb0f20a9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.759911,32.838162000000004]},"id":"8f44c0b09ade76d-13ffd127a92155f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ade76d-13ffd127a92155f5","8f44c0b09ac4604-17ddde78a5fac04d"]},"geometry":{"type":"LineString","coordinates":[[-83.7610102,32.837084100000006],[-83.76057660000001,32.8371178],[-83.76034650000001,32.8372254],[-83.76024600000001,32.8374013],[-83.76017470000001,32.837605],[-83.759911,32.838162000000004]]},"id":"8944c0b09afffff-17bdd018968a1e8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75292660000001,32.8380877]},"id":"8f44c0b090c9a5a-13bdf234ed251146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b090c9a5a-13bdf234ed251146","8f44c0b09398398-17ddf0a4d57783ab"]},"geometry":{"type":"LineString","coordinates":[[-83.75292660000001,32.8380877],[-83.7532601,32.8382638],[-83.753973,32.838677100000005],[-83.75412270000001,32.8388088],[-83.7541583,32.8389765],[-83.7541369,32.839156200000005],[-83.7539373,32.8393838],[-83.7536237,32.8396893],[-83.75356670000001,32.8399827]]},"id":"8944c0b093bffff-13d5e049d3105ec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09398398-17ddf0a4d57783ab","8f44c0b092a2ced-17b7f09143073631"]},"geometry":{"type":"LineString","coordinates":[[-83.75356670000001,32.8399827],[-83.75353100000001,32.840312100000006],[-83.75359800000001,32.8409447]]},"id":"8844c0b093fffff-179df0a99b977bc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7538317,32.8419504]},"id":"8f44c0b09285629-13bfdfff3af7e380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09285629-13bfdfff3af7e380","8f44c0b092a2ced-17b7f09143073631"]},"geometry":{"type":"LineString","coordinates":[[-83.75359800000001,32.8409447],[-83.7537021,32.8417376],[-83.75376630000001,32.841875300000005],[-83.7538317,32.8419504]]},"id":"8944c0b092bffff-13ffe06058293333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7602389,32.8382938]},"id":"8f44c0b09ad81a5-13bdf05abb8209c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ade76d-13ffd127a92155f5","8f44c0b09ad81a5-13bdf05abb8209c5"]},"geometry":{"type":"LineString","coordinates":[[-83.7602389,32.8382938],[-83.759911,32.838162000000004]]},"id":"8a44c0b09adffff-1395f0c139272c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ade76d-13ffd127a92155f5","8f44c0b09301d5e-13d7f5f09027979b"]},"geometry":{"type":"LineString","coordinates":[[-83.759911,32.838162000000004],[-83.75965430000001,32.8381021],[-83.7594334,32.8380901],[-83.7588274,32.83818],[-83.7579511,32.8383078]]},"id":"8844c0b093fffff-13f5d38b6bb7b70e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b093a081b-179ddcf39c020882","8f44c0b09301d5e-13d7f5f09027979b"]},"geometry":{"type":"LineString","coordinates":[[-83.7579511,32.8383078],[-83.757473,32.8383776],[-83.7567246,32.8384555],[-83.7564893,32.8384195],[-83.7550791,32.837799600000004]]},"id":"8844c0b093fffff-13b5f9840759103d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75294810000001,32.8380626]},"id":"8f44c0b090c9a46-13bde22774fc7197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b093a081b-179ddcf39c020882","8f44c0b090c9a46-13bde22774fc7197"]},"geometry":{"type":"LineString","coordinates":[[-83.7550791,32.837799600000004],[-83.7541868,32.8374073],[-83.7539373,32.8374193],[-83.7535809,32.837521100000004],[-83.7533243,32.8376229],[-83.75294810000001,32.8380626]]},"id":"8944c0b093bffff-1797dfb18d47d6bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b090c9a5a-13bdf234ed251146","8f44c0b090c9a46-13bde22774fc7197"]},"geometry":{"type":"LineString","coordinates":[[-83.75294810000001,32.8380626],[-83.75292660000001,32.8380877]]},"id":"8d44c0b090c9a7f-13b5e22e2f51938b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b090c9a5a-13bdf234ed251146","8f44c0b097421ac-17b5e85b06e4565a"]},"geometry":{"type":"LineString","coordinates":[[-83.75292660000001,32.8380877],[-83.7525402,32.8385393],[-83.7522835,32.8387909],[-83.75190570000001,32.839036400000005],[-83.7512428,32.839252],[-83.75040800000001,32.83968]]},"id":"8744c0b09ffffff-13f5f516c3131a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7526005,32.8448871]},"id":"8f44c0b5690010e-13d7f300bd14b42c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0929c031-13d7f276287801d8","8f44c0b5690010e-13d7f300bd14b42c"]},"geometry":{"type":"LineString","coordinates":[[-83.75282220000001,32.8424301],[-83.7526538,32.8425849],[-83.75256610000001,32.8427366],[-83.7526229,32.8429057],[-83.7527931,32.8431398],[-83.7528396,32.843482300000005],[-83.7528181,32.8437238],[-83.7527828,32.844119500000005],[-83.75268480000001,32.8443579],[-83.7526074,32.844613700000004],[-83.7526005,32.8448871]]},"id":"8744c0b09ffffff-17b7f2b563d80344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b56908623-13fdf1d5533a286b","8f44c0b5690010e-13d7f300bd14b42c"]},"geometry":{"type":"LineString","coordinates":[[-83.7526005,32.8448871],[-83.7525868,32.8454373],[-83.7528551,32.8459445],[-83.7529944,32.846091900000005],[-83.7530795,32.846146700000006]]},"id":"8944c0b5693ffff-13fde2b40948ed83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7535723,32.8462219]},"id":"8f44c0b56909880-179df0a1574b4cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b56908623-13fdf1d5533a286b","8f44c0b56909880-179df0a1574b4cbf"]},"geometry":{"type":"LineString","coordinates":[[-83.7530795,32.846146700000006],[-83.75314920000001,32.846191600000004],[-83.7533401,32.8462393],[-83.7535723,32.8462219]]},"id":"8a44c0b5690ffff-1795e13f3919094b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b56909880-179df0a1574b4cbf","8f44c0b5692a932-13f5f0c3f4de0ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.7535723,32.8462219],[-83.75379930000001,32.846161200000004],[-83.75393860000001,32.846052900000004],[-83.7540831,32.8458448],[-83.75412440000001,32.845558700000005],[-83.75402120000001,32.8452726],[-83.7538664,32.845081900000004],[-83.7535826,32.8449345],[-83.75351690000001,32.8449297]]},"id":"8844c0b569fffff-1395dfcf7c59db57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5690010e-13d7f300bd14b42c","8f44c0b5692a932-13f5f0c3f4de0ab3"]},"geometry":{"type":"LineString","coordinates":[[-83.75351690000001,32.8449297],[-83.7532214,32.8449085],[-83.7526005,32.8448871]]},"id":"8944c0b5693ffff-13f5f1e234a22216"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09a1b2e1-1395fe4d09befdd3","8f44c0b09ac4604-17ddde78a5fac04d"]},"geometry":{"type":"LineString","coordinates":[[-83.7610102,32.837084100000006],[-83.76108,32.8359699]]},"id":"8944c0b09afffff-17fdee62d075d8bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7612369,32.8351193]},"id":"8f44c0b09a18904-13fdddeafa785ae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09a18904-13fdddeafa785ae6","8f44c0b09a1b2e1-1395fe4d09befdd3"]},"geometry":{"type":"LineString","coordinates":[[-83.76108,32.8359699],[-83.7612369,32.8351193]]},"id":"8a44c0b09a1ffff-1397ee1bf8fe8a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758447,32.8371086]},"id":"8f44c0b093208c8-17ddf4baaf563e9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09322181-17b5d63fa9c278ef","8f44c0b093208c8-17ddf4baaf563e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.758447,32.8371086],[-83.7582928,32.8372157],[-83.7578246,32.837231200000005]]},"id":"8a44c0b09327fff-1795f575b57cd990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75709520000001,32.8372157]},"id":"8f44c0b0933021e-179fd8078ca62558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0933021e-179fd8078ca62558","8f44c0b09322181-17b5d63fa9c278ef"]},"geometry":{"type":"LineString","coordinates":[[-83.7578246,32.837231200000005],[-83.75709520000001,32.8372157]]},"id":"8944c0b0933ffff-17b5f7239cc60da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5696ac76-17bdfaffd871a471","8f44c0b545926ea-17b7d95e059f8edd"]},"geometry":{"type":"LineString","coordinates":[[-83.7565472,32.846673200000005],[-83.7560438,32.8470412],[-83.75594570000001,32.8471496],[-83.75587870000001,32.847297000000005]]},"id":"8944c0b5697ffff-17f5fa427d2b9fcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7558477,32.8496161]},"id":"8f44c0b5449238e-17f7db133591943e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5696ac76-17bdfaffd871a471","8f44c0b5449238e-17f7db133591943e"]},"geometry":{"type":"LineString","coordinates":[[-83.75587870000001,32.847297000000005],[-83.7558477,32.8496161]]},"id":"8844c0b569fffff-139dfb0983260ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b56909880-179df0a1574b4cbf","8f44c0b56825232-179ff20756bd2a56"]},"geometry":{"type":"LineString","coordinates":[[-83.7535723,32.8462219],[-83.7536032,32.846443],[-83.75356190000001,32.846590400000004],[-83.7534536,32.8468071],[-83.75327300000001,32.846958900000004],[-83.7529995,32.8470195]]},"id":"8844c0b569fffff-17dff105ae1d4dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7525403,32.8470065]},"id":"8f44c0b56820149-1797f326580c9c21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b56825232-179ff20756bd2a56","8f44c0b56820149-1797f326580c9c21"]},"geometry":{"type":"LineString","coordinates":[[-83.7529995,32.8470195],[-83.7525403,32.8470065]]},"id":"8a44c0b56827fff-1797e296dd4f9530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b725880c5-13bfd4d0c52862c9","8f44c0b7258bd13-17bde557c60b9b63"]},"geometry":{"type":"LineString","coordinates":[[-83.76474920000001,32.8265866],[-83.76484980000001,32.8265631],[-83.76494960000001,32.8264792],[-83.7649652,32.826418100000005]]},"id":"8a44c0b7258ffff-1795c507d0b7c72c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b725880c5-13bfd4d0c52862c9","8f44c0b7258e22c-13bff566e5ea97f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7649652,32.826418100000005],[-83.7649772,32.826371],[-83.7649186,32.8262511],[-83.76478320000001,32.826185100000004],[-83.764725,32.826181500000004]]},"id":"8a44c0b7258ffff-13f5e50335a72cda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76350280000001,32.8247286]},"id":"8f44c0b725b378e-179fe862cfc758c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b725847a3-139dc64ec32e7894","8f44c0b725b378e-179fe862cfc758c2"]},"geometry":{"type":"LineString","coordinates":[[-83.76350280000001,32.8247286],[-83.7641064,32.824884600000004],[-83.764256,32.8248976],[-83.76435400000001,32.824928]]},"id":"8944c0b725bffff-17f5f759381a70b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b725a14d3-1795f4342b9f1c26","8f44c0b725847a3-139dc64ec32e7894"]},"geometry":{"type":"LineString","coordinates":[[-83.76435400000001,32.824928],[-83.76465320000001,32.8248413],[-83.7651381,32.8246982],[-83.76521580000001,32.824681500000004]]},"id":"8944c0b725bffff-17dde541c8a5b769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7676866,32.8246258]},"id":"8f44c0b72500774-17dfbe2be49a54fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b725a14d3-1795f4342b9f1c26","8f44c0b72500774-17dfbe2be49a54fb"]},"geometry":{"type":"LineString","coordinates":[[-83.76521580000001,32.824681500000004],[-83.76536,32.824650500000004],[-83.7660719,32.8245942],[-83.7676866,32.8246258]]},"id":"8844c0b725fffff-17ddd1316d613821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7680838,32.8248456]},"id":"8f44c0b72501033-17fdbd33afd27c9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b72501033-17fdbd33afd27c9e","8f44c0b72500774-17dfbe2be49a54fb"]},"geometry":{"type":"LineString","coordinates":[[-83.7676866,32.8246258],[-83.7680631,32.8246332],[-83.76823850000001,32.8246635],[-83.7683004,32.8247589],[-83.76823850000001,32.8248413],[-83.7680838,32.8248456]]},"id":"8a44c0b72507fff-179dbd3d71cadac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b72501033-17fdbd33afd27c9e","8f44c0b72500774-17dfbe2be49a54fb"]},"geometry":{"type":"LineString","coordinates":[[-83.7680838,32.8248456],[-83.7676866,32.8246258]]},"id":"8a44c0b72507fff-17b7fdafce4d1b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7579022,32.824604400000005]},"id":"8f44c0b09918854-17d5d60f22946759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0994696d-139dced5bc4560d5","8f44c0b09918854-17d5d60f22946759"]},"geometry":{"type":"LineString","coordinates":[[-83.7608613,32.825538],[-83.760523,32.8253963],[-83.75850080000001,32.8249714],[-83.7583202,32.824876100000004],[-83.7579022,32.824604400000005]]},"id":"8844c0b099fffff-139df282d210514b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7560091,32.8238573]},"id":"8f44c0b099a14f5-17ffdaae505042b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b099a14f5-17ffdaae505042b9","8f44c0b09918854-17d5d60f22946759"]},"geometry":{"type":"LineString","coordinates":[[-83.7579022,32.824604400000005],[-83.75738650000001,32.8242692],[-83.7571595,32.824178100000005],[-83.7560091,32.8238573]]},"id":"8844c0b099fffff-17d5d84d25425f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09904101-1797d442c2929191","8f44c0b09918854-17d5d60f22946759"]},"geometry":{"type":"LineString","coordinates":[[-83.7579022,32.824604400000005],[-83.75813450000001,32.8243342],[-83.7583666,32.8240177],[-83.7585317,32.8237186],[-83.7586246,32.823402200000004],[-83.7586388,32.8232493]]},"id":"8944c0b0993ffff-17d5d4f93483f4ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09904101-1797d442c2929191","8f44c0b0d29959c-13ddd40b250e1de3"]},"geometry":{"type":"LineString","coordinates":[[-83.7586388,32.8232493],[-83.7586658,32.82296],[-83.7587278,32.8219585]]},"id":"8744c0b0dffffff-13fff424c8411f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7521428,32.8238123]},"id":"8f44c0b09d66893-17f7f41ecc8a8e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09d45556-13fdf435a7af42d3","8f44c0b09d66893-17f7f41ecc8a8e52"]},"geometry":{"type":"LineString","coordinates":[[-83.7521428,32.8238123],[-83.7521062,32.825082300000005]]},"id":"8944c0b09d7ffff-17fff42a3470b8e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09c63d53-1797f5b8312ad1eb","8f44c0b09d45556-13fdf435a7af42d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7521062,32.825082300000005],[-83.7520571,32.8267852],[-83.7519664,32.8270689],[-83.7518203,32.8272764],[-83.7514877,32.8275559]]},"id":"8844c0b09dfffff-13b5f4801bcd0458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7486652,32.8235174]},"id":"8f44c0b09d1c0e5-17bfec9c43ae9f4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09d8d985-1797f0971e0129bb","8f44c0b09d1c0e5-17bfec9c43ae9f4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7486652,32.8235174],[-83.7483557,32.823508700000005],[-83.7481958,32.8235521],[-83.7480616,32.8236171],[-83.7470351,32.8244798]]},"id":"8844c0b09dfffff-1795eeb5b56110dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09d8d985-1797f0971e0129bb","8f44c0b09ca40dc-13b7f36fc8133b67"]},"geometry":{"type":"LineString","coordinates":[[-83.7470351,32.8244798],[-83.7460549,32.8253034],[-83.7458692,32.8253815]]},"id":"8844c0b09dfffff-13bff1faff3821ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b09ca40dc-13b7f36fc8133b67","8f44c0b09ca6193-13b5f4bbf5c7e3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7458692,32.8253815],[-83.74533770000001,32.825377100000004]]},"id":"8a44c0b09ca7fff-13b7f415e55a5829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7462945,32.816887200000004]},"id":"8f44c0b08b54dad-17fff265f8519fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08b54dad-17fff265f8519fc6","8f44c0b08b724d0-1797f27153d6d4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.7462945,32.816887200000004],[-83.7462763,32.816695800000005]]},"id":"8944c0b08b7ffff-17bff26ba576eb21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08b724d0-1797f27153d6d4b3","8f44c0b08b2aa6e-13f7f2b1eb4b1814"]},"geometry":{"type":"LineString","coordinates":[[-83.7462763,32.816695800000005],[-83.746205,32.815946700000005],[-83.746173,32.815626300000005]]},"id":"8844c0b08bfffff-13b5f29142d85161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7461521,32.8154168]},"id":"8f44c0b08b2859d-13f7f2bef657dff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08b2aa6e-13f7f2b1eb4b1814","8f44c0b08b2859d-13f7f2bef657dff5"]},"geometry":{"type":"LineString","coordinates":[[-83.746173,32.815626300000005],[-83.7461521,32.8154168]]},"id":"8a44c0b08b2ffff-13b5f2b8633c5472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74648540000001,32.8136522]},"id":"8f44c0b0d48b9ad-1795f1eeabdc00c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0d48b9ad-1795f1eeabdc00c0","8f44c0b0d48b71d-17d7f25d7ce3a05a"]},"geometry":{"type":"LineString","coordinates":[[-83.74648540000001,32.8136522],[-83.74629060000001,32.8136677],[-83.74630810000001,32.8139327]]},"id":"8b44c0b0d48bfff-17dff24b77c65875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7463561,32.8145594]},"id":"8f44c0b08b2196b-17dff23f76df0ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08b2196b-17dff23f76df0ed2","8f44c0b0d48b71d-17d7f25d7ce3a05a"]},"geometry":{"type":"LineString","coordinates":[[-83.74630810000001,32.8139327],[-83.7463561,32.8145594]]},"id":"8844c0b0d5fffff-1797f24e733ec9cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.747394,32.8146263]},"id":"8f44c0b0d4d1d1b-17f5ffb6c26857dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08b2196b-17dff23f76df0ed2","8f44c0b0d4d1d1b-17f5ffb6c26857dd"]},"geometry":{"type":"LineString","coordinates":[[-83.747394,32.8146263],[-83.7473712,32.8145113],[-83.7463561,32.8145594]]},"id":"8844c0b0d5fffff-17bff0e0b15d7111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745507,32.8146215]},"id":"8f44c0b08b2236d-17f7f45220fb7f02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08b2236d-17f7f45220fb7f02","8f44c0b08b2196b-17dff23f76df0ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.7463561,32.8145594],[-83.7462598,32.814564000000004],[-83.74589680000001,32.8145815],[-83.74565360000001,32.8146195],[-83.745507,32.8146215]]},"id":"8a44c0b08b27fff-17ddf3491f1e2331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72857350000001,32.8071505]},"id":"8f44c0b08d84875-17b71da9911a98f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d863ae-1797bf12599451f0","8f44c0b08d84875-17b71da9911a98f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7279963,32.8074779],[-83.72857350000001,32.8071505]]},"id":"8944c0b08dbffff-179f7e5df4d97e6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72843420000001,32.806907700000004]},"id":"8f44c0b08da2710-179f5e00aee36fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08da2710-179f5e00aee36fc4","8f44c0b08d84875-17b71da9911a98f5"]},"geometry":{"type":"LineString","coordinates":[[-83.72857350000001,32.8071505],[-83.7287823,32.8074285],[-83.7288449,32.8074372],[-83.7291477,32.807261700000005],[-83.72910250000001,32.8071915],[-83.7287823,32.8067556],[-83.728657,32.8067615],[-83.7284934,32.8068522],[-83.72843420000001,32.806907700000004]]},"id":"8944c0b08dbffff-1797dd09c7da6834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08da2710-179f5e00aee36fc4","8f44c0b08d84875-17b71da9911a98f5"]},"geometry":{"type":"LineString","coordinates":[[-83.72843420000001,32.806907700000004],[-83.72857350000001,32.8071505]]},"id":"8a44c0b08da7fff-17ff3dd51d56caea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270477,32.8075381]},"id":"8f44c0b08d908db-17b7716331a48243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7268119,32.807247000000004]},"id":"8f44c0b08d96b1b-17f761f6990ce36b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d96b1b-17f761f6990ce36b","8f44c0b08d908db-17b7716331a48243"]},"geometry":{"type":"LineString","coordinates":[[-83.7270477,32.8075381],[-83.7268119,32.807247000000004]]},"id":"8a44c0b08d97fff-17de61ace12fe911"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270003,32.8067556]},"id":"8f44c0b08db24f3-13be6180d67d2f9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d96b1b-17f761f6990ce36b","8f44c0b08db24f3-13be6180d67d2f9c"]},"geometry":{"type":"LineString","coordinates":[[-83.7268119,32.807247000000004],[-83.72660350000001,32.8069896],[-83.7266348,32.8069487],[-83.7270003,32.8067556]]},"id":"8944c0b08dbffff-17d6a217a8ac034d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08db3868-17bf9fa100ee5c0f","8f44c0b08d96b1b-17f761f6990ce36b"]},"geometry":{"type":"LineString","coordinates":[[-83.72776800000001,32.806956],[-83.7276305,32.806966800000005],[-83.72749300000001,32.806944],[-83.72738700000001,32.8069325],[-83.72704970000001,32.807107900000005],[-83.72686130000001,32.8072181],[-83.7268119,32.807247000000004]]},"id":"8944c0b08dbffff-17fe20d5525eabac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7263832,32.8075068]},"id":"8f44c0b08d92d8c-1797e30281ca2dcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d96b1b-17f761f6990ce36b","8f44c0b08d92d8c-1797e30281ca2dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.7268119,32.807247000000004],[-83.7263832,32.8075068]]},"id":"8a44c0b08d97fff-17d6b27c8378f44b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7274945,32.8072676]},"id":"8f44c0b08d959b6-17fe604bf915e07e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d959b6-17fe604bf915e07e","8f44c0b08d908db-17b7716331a48243"]},"geometry":{"type":"LineString","coordinates":[[-83.7274945,32.8072676],[-83.7270477,32.8075381]]},"id":"8a44c0b08d97fff-17d6f0d79ddb3a01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d92328-17d7e265c0215880","8f44c0b08d908db-17b7716331a48243"]},"geometry":{"type":"LineString","coordinates":[[-83.7270477,32.8075381],[-83.726634,32.8077886]]},"id":"8a44c0b08d97fff-17f7b1e4890a60b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72665570000001,32.8084377]},"id":"8f44c0b0e36d0b6-17dfb2583c2bb6bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08d92328-17d7e265c0215880","8f44c0b0e36d0b6-17dfb2583c2bb6bb"]},"geometry":{"type":"LineString","coordinates":[[-83.726634,32.8077886],[-83.7263494,32.807960900000005],[-83.72635290000001,32.8080281],[-83.72665570000001,32.8084377]]},"id":"8844c0b08dfffff-17fea2c0c1e95689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7599187,32.750577400000005]},"id":"8f44c0b2e859d55-1397f122da259372"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b2e859d55-1397f122da259372","8f44c0b2e858d6c-13ddf1e4f9c0cea9"]},"geometry":{"type":"LineString","coordinates":[[-83.7599187,32.750577400000005],[-83.75971840000001,32.750380400000004],[-83.75960810000001,32.7502554]]},"id":"8a44c0b2e85ffff-13b7d18597839767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b2e858d6c-13ddf1e4f9c0cea9","8f44c0b2e8ec4d6-13fdf57246dbc36f"]},"geometry":{"type":"LineString","coordinates":[[-83.75960810000001,32.7502554],[-83.75953770000001,32.750175500000005],[-83.759336,32.7500176],[-83.7591412,32.7499532],[-83.75847990000001,32.7499282],[-83.75815320000001,32.749921400000005]]},"id":"8844c0b2e9fffff-13b7d393fef1ecdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b2e8c4263-1395f7b3a04fc8ad","8f44c0b2e8ec4d6-13fdf57246dbc36f"]},"geometry":{"type":"LineString","coordinates":[[-83.75815320000001,32.749921400000005],[-83.7573254,32.7498947],[-83.7572294,32.7499611]]},"id":"8944c0b2e8fffff-13f7d698ad09fc65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75699850000001,32.7505266]},"id":"8f44c0b2e8c3862-13f7f843f770207d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b2e8c3862-13f7f843f770207d","8f44c0b2e8c4263-1395f7b3a04fc8ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7572294,32.7499611],[-83.75708200000001,32.750052700000005],[-83.75700540000001,32.7501814],[-83.75699850000001,32.7505266]]},"id":"8a44c0b2e8c7fff-13b5d82308011304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2c488649-13b7d698383ec1c2","8f44c0b2e85da2e-1395d042a948cc4b"]},"geometry":{"type":"LineString","coordinates":[[-83.76423650000001,32.7500073],[-83.7633778,32.7501346],[-83.7629813,32.7501346],[-83.7627054,32.750064200000004],[-83.7624387,32.750005900000005],[-83.7621326,32.749941500000006],[-83.76182650000001,32.7499181],[-83.7614456,32.7499459],[-83.7611725,32.7499708],[-83.76074530000001,32.7500994],[-83.76039820000001,32.750265500000005],[-83.7602774,32.7503364]]},"id":"8644c0b2fffffff-13dfdb7d986f2245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2e85da2e-1395d042a948cc4b","8f44c0b2e859d55-1397f122da259372"]},"geometry":{"type":"LineString","coordinates":[[-83.7602774,32.7503364],[-83.7601429,32.7504154],[-83.7599187,32.750577400000005]]},"id":"8944c0b2e87ffff-13ddd0b454c24920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75884900000001,32.751258]},"id":"8f44c0b2ebb0d59-17d5d3bf66fd4c5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2e859d55-1397f122da259372","8f44c0b2ebb0d59-17d5d3bf66fd4c5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7599187,32.750577400000005],[-83.75975340000001,32.750719700000005],[-83.7593513,32.7510017],[-83.75907860000001,32.7512053],[-83.75884900000001,32.751258]]},"id":"8844c0b2e9fffff-1395f264fdd1baac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0671ea1d-13b7dcbf61f03ead","8f44c0b066e6ba8-1397bd69ca9c06c6"]},"geometry":{"type":"LineString","coordinates":[[-83.68307300000001,32.7528725],[-83.68313,32.753985300000004],[-83.6830906,32.7542749],[-83.683007,32.754659700000005],[-83.68300210000001,32.7549492],[-83.6831497,32.7562069],[-83.6831152,32.7564675],[-83.68301190000001,32.7566992],[-83.6828004,32.7569267]]},"id":"8844c0b067fffff-17d7bcc2afa04d7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06689ba4-139eb21df34441bd","8f44c0b066e6ba8-1397bd69ca9c06c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6828004,32.7569267],[-83.68246590000001,32.7570715],[-83.68203790000001,32.7570963],[-83.6816838,32.757117],[-83.6813788,32.7571377],[-83.6811476,32.757191500000005],[-83.6808737,32.7573187]]},"id":"8944c0b066fffff-139ebfc4b370c6ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a4daf5-1796b9fdf70440bd","8f44c0b06689ba4-139eb21df34441bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6808737,32.7573187],[-83.6804097,32.7575762],[-83.6797899,32.7578368],[-83.6794455,32.7579609],[-83.679175,32.7580023],[-83.6786929,32.7580023],[-83.6781272,32.7578989],[-83.6776481,32.757744200000005]]},"id":"8644c0b07ffffff-17beb5fb2be3ba01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67638090000001,32.7565958]},"id":"8f44c0b15a40c45-13defd15fd028443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a4daf5-1796b9fdf70440bd","8f44c0b15a40c45-13defd15fd028443"]},"geometry":{"type":"LineString","coordinates":[[-83.6776481,32.757744200000005],[-83.6773155,32.757530700000004],[-83.6769416,32.7571956],[-83.67638090000001,32.7565958]]},"id":"8944c0b15a7ffff-13d7db9b7c46f02e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66816180000001,32.749957200000004]},"id":"8f44c0b158c24ae-1397f126e2505022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66867110000001,32.7507424]},"id":"8f44c0b158dd076-13feafe8924a8a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158c24ae-1397f126e2505022","8f44c0b158dd076-13feafe8924a8a96"]},"geometry":{"type":"LineString","coordinates":[[-83.66816180000001,32.749957200000004],[-83.6684548,32.7501636],[-83.66863280000001,32.7502714],[-83.66873960000001,32.750457100000006],[-83.66867110000001,32.7507424]]},"id":"8944c0b158fffff-13fef03be5700b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6677267,32.7515749]},"id":"8f44c0b15174269-1796f236d14dd84c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15174269-1796f236d14dd84c","8f44c0b158dd076-13feafe8924a8a96"]},"geometry":{"type":"LineString","coordinates":[[-83.66867110000001,32.7507424],[-83.66866130000001,32.750783500000004],[-83.668672,32.751071],[-83.6685865,32.751187800000004],[-83.6683658,32.7512776],[-83.6677267,32.7515749]]},"id":"8744c0b15ffffff-17b6b0c286de09c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66751830000001,32.7512357]},"id":"8f44c0b15174c75-17b6f2b910af8621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66726200000001,32.7513165]},"id":"8f44c0b15176945-17f6f359488ac5fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15176945-17f6f359488ac5fa","8f44c0b15174c75-17b6f2b910af8621"]},"geometry":{"type":"LineString","coordinates":[[-83.66751830000001,32.7512357],[-83.66726200000001,32.7513165]]},"id":"8a44c0b15177fff-17dfb3092c2d1334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15176945-17f6f359488ac5fa","8f44c0b15176cc1-1796b408e2aa3ed9"]},"geometry":{"type":"LineString","coordinates":[[-83.66726200000001,32.7513165],[-83.66708750000001,32.7513345],[-83.6669985,32.7513734],[-83.666981,32.751389]]},"id":"8b44c0b15176fff-17f7b3b3f05ec355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675549,32.7518911]},"id":"8f44c0b1517032e-17dff2a23489bc31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1517032e-17dff2a23489bc31","8f44c0b15176cc1-1796b408e2aa3ed9"]},"geometry":{"type":"LineString","coordinates":[[-83.666981,32.751389],[-83.6669344,32.7514303],[-83.6669344,32.7515232],[-83.6669842,32.7516759],[-83.66708750000001,32.7518526],[-83.66722630000001,32.7519694],[-83.6673009,32.7519823],[-83.6673916,32.7519823],[-83.6675549,32.7518911]]},"id":"8a44c0b15177fff-179eb39e0dd8082c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15144858-17ffb0d319dc3e5e","8f44c0b151624b3-1796b18b9d7defd9"]},"geometry":{"type":"LineString","coordinates":[[-83.6682959,32.7523835],[-83.66800070000001,32.7520035]]},"id":"8944c0b1517ffff-179ef12f5f166377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b151624b3-1796b18b9d7defd9","8f44c0b15174269-1796f236d14dd84c"]},"geometry":{"type":"LineString","coordinates":[[-83.66800070000001,32.7520035],[-83.6679496,32.7519378],[-83.6677267,32.7515749]]},"id":"8a44c0b15177fff-179fb1e33a2429f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15174269-1796f236d14dd84c","8f44c0b15174c75-17b6f2b910af8621"]},"geometry":{"type":"LineString","coordinates":[[-83.6677267,32.7515749],[-83.66751830000001,32.7512357]]},"id":"8a44c0b15177fff-179ef277f1618d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158da7b2-13b7f2c3f0977370","8f44c0b15174c75-17b6f2b910af8621"]},"geometry":{"type":"LineString","coordinates":[[-83.66751830000001,32.7512357],[-83.66750090000001,32.7510046]]},"id":"8844c0b151fffff-13feb2be8a737c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66781470000001,32.7504164]},"id":"8f44c0b158de135-13b6f1ffd5785db8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158de135-13b6f1ffd5785db8","8f44c0b158da7b2-13b7f2c3f0977370"]},"geometry":{"type":"LineString","coordinates":[[-83.66750090000001,32.7510046],[-83.6675044,32.750829],[-83.66757050000001,32.7507091],[-83.66781470000001,32.7504164]]},"id":"8a44c0b158dffff-13dfb27d5d8cdbbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158de135-13b6f1ffd5785db8","8f44c0b158c24ae-1397f126e2505022"]},"geometry":{"type":"LineString","coordinates":[[-83.66781470000001,32.7504164],[-83.66787310000001,32.750346300000004],[-83.66816180000001,32.749957200000004]]},"id":"8944c0b158fffff-13b7b1925f4421e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6684367,32.749108400000004]},"id":"8f44c0b158f141b-1796f07b15cc55bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158c24ae-1397f126e2505022","8f44c0b158f141b-1796f07b15cc55bb"]},"geometry":{"type":"LineString","coordinates":[[-83.66816180000001,32.749957200000004],[-83.6683218,32.749726100000004],[-83.6683775,32.749574],[-83.66842960000001,32.749275600000004],[-83.6684367,32.749108400000004]]},"id":"8944c0b158fffff-1397b0b18967c69a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668447,32.7488631]},"id":"8f44c0b158f0ac3-17f7f074a36fefc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158f0ac3-17f7f074a36fefc1","8f44c0b158f141b-1796f07b15cc55bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6684367,32.749108400000004],[-83.668447,32.7488631]]},"id":"8a44c0b158f7fff-17b6b077e2bb8595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158de135-13b6f1ffd5785db8","8f44c0b158dd076-13feafe8924a8a96"]},"geometry":{"type":"LineString","coordinates":[[-83.66867110000001,32.7507424],[-83.66843370000001,32.7507457],[-83.66827760000001,32.7507055],[-83.6679831,32.7505043],[-83.66781470000001,32.7504164]]},"id":"8a44c0b158dffff-13beb0fd5ede79da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158de135-13b6f1ffd5785db8","8f44c0b158f141b-1796f07b15cc55bb"]},"geometry":{"type":"LineString","coordinates":[[-83.66781470000001,32.7504164],[-83.66769860000001,32.7503286],[-83.6676759,32.7502714],[-83.6676432,32.7501613],[-83.66760040000001,32.750004600000004],[-83.66760040000001,32.749843600000005],[-83.66761550000001,32.749778],[-83.66773880000001,32.749640400000004],[-83.66785970000001,32.7493757],[-83.6679075,32.7492486],[-83.667973,32.7491787],[-83.6680989,32.7491131],[-83.6684367,32.749108400000004]]},"id":"8944c0b158fffff-13d7f1eb65b77e9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1517032e-17dff2a23489bc31","8f44c0b15144720-17d6b156e2e8b393"]},"geometry":{"type":"LineString","coordinates":[[-83.668085,32.752513],[-83.6675549,32.7518911]]},"id":"8944c0b1517ffff-179ef1fc9562cd07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15176945-17f6f359488ac5fa","8f44c0b1517032e-17dff2a23489bc31"]},"geometry":{"type":"LineString","coordinates":[[-83.6675549,32.7518911],[-83.6674685,32.7517897],[-83.66726200000001,32.7513165]]},"id":"8a44c0b15177fff-179fb305f7324fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b159a0a68-13beb10c60440e63","8f44c0b15912803-13b7af6b2d4a1ef9"]},"geometry":{"type":"LineString","coordinates":[[-83.6688718,32.7436656],[-83.6682042,32.743645900000004]]},"id":"8844c0b159fffff-13b6f03bcea6448f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66758420000001,32.7436303]},"id":"8f44c0b159a2bb0-13b6f28fe7229d8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b159a0a68-13beb10c60440e63","8f44c0b159a2bb0-13b6f28fe7229d8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6682042,32.743645900000004],[-83.66758420000001,32.7436303]]},"id":"8a44c0b159a7fff-13b7f1ce2c97dfbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657988,32.820686200000004]},"id":"8f44c0b1aa5cc44-17d6e9fd8daaf48a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65803480000001,32.8207289]},"id":"8f44c0b1aa5c131-17dfd9e0465119e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aa5c131-17dfd9e0465119e3","8f44c0b1aa5cc44-17d6e9fd8daaf48a"]},"geometry":{"type":"LineString","coordinates":[[-83.657988,32.820686200000004],[-83.65799990000001,32.8218113],[-83.65822270000001,32.8218142],[-83.6583585,32.8217996],[-83.6584038,32.821708900000004],[-83.65841420000001,32.820881],[-83.65803480000001,32.8207289]]},"id":"8744c0b1affffff-17bed9816debc4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aa5c131-17dfd9e0465119e3","8f44c0b1aa5cc44-17d6e9fd8daaf48a"]},"geometry":{"type":"LineString","coordinates":[[-83.65803480000001,32.8207289],[-83.657988,32.820686200000004]]},"id":"8b44c0b1aa5cfff-17dec9eee2b8a23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aa5cc44-17d6e9fd8daaf48a","8f44c0b1aa55a02-17bfea0dfb790323"]},"geometry":{"type":"LineString","coordinates":[[-83.657988,32.820686200000004],[-83.6579547,32.8206557],[-83.6579617,32.8200698]]},"id":"8944c0b1aa7ffff-1796ca0f99f28e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6403564,32.8174001]},"id":"8f44c0b1a4664e1-17bff5094b749857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a47590c-17f7f57145cef74c","8f44c0b1a4664e1-17bff5094b749857"]},"geometry":{"type":"LineString","coordinates":[[-83.64019,32.8172919],[-83.6403564,32.8174001]]},"id":"8944c0b1a47ffff-179ff53d49377f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64044650000001,32.817268600000006]},"id":"8f44c0b1a466ce3-17fef4d0f1140a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4664e1-17bff5094b749857","8f44c0b1a466ce3-17fef4d0f1140a31"]},"geometry":{"type":"LineString","coordinates":[[-83.6403564,32.8174001],[-83.64050300000001,32.8174955],[-83.6406508,32.817585900000005],[-83.64073470000001,32.8176104],[-83.64078760000001,32.8175936],[-83.64082950000001,32.8175353],[-83.6408313,32.8174955],[-83.6408131,32.817461800000004],[-83.64049030000001,32.817264],[-83.64044650000001,32.817268600000006]]},"id":"8a44c0b1a467fff-17def45f978d9a7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4664e1-17bff5094b749857","8f44c0b1a466ce3-17fef4d0f1140a31"]},"geometry":{"type":"LineString","coordinates":[[-83.64044650000001,32.817268600000006],[-83.6403564,32.8174001]]},"id":"8b44c0b1a466fff-1796f4ed101d32b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65305980000001,32.818758]},"id":"8f44c0b1aa856b1-139fd605a63ea01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aa8a04d-179fd64de14e2a89","8f44c0b1aa856b1-139fd605a63ea01a"]},"geometry":{"type":"LineString","coordinates":[[-83.65294420000001,32.8199824],[-83.6529687,32.8189111],[-83.65305980000001,32.818758]]},"id":"8944c0b1aabffff-1397f6411ad901dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65301550000001,32.8187146]},"id":"8f44c0b1aa80b62-13f6f62150af7c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aa856b1-139fd605a63ea01a","8f44c0b1aa80b62-13f6f62150af7c68"]},"geometry":{"type":"LineString","coordinates":[[-83.65305980000001,32.818758],[-83.653141,32.818774600000005],[-83.6532124,32.8187663],[-83.6532665,32.8187373],[-83.6533084,32.8186898],[-83.65333050000001,32.8186318],[-83.653301,32.818094],[-83.6532641,32.8179968],[-83.65320750000001,32.817943],[-83.65313610000001,32.8179388],[-83.65304250000001,32.8179657],[-83.6530056,32.8179947],[-83.6529859,32.8180464],[-83.65295880000001,32.8185656],[-83.65298100000001,32.8186629],[-83.65301550000001,32.8187146]]},"id":"8944c0b1aabffff-139ef5cf32cf3bdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aa856b1-139fd605a63ea01a","8f44c0b1aa80b62-13f6f62150af7c68"]},"geometry":{"type":"LineString","coordinates":[[-83.65301550000001,32.8187146],[-83.65305980000001,32.818758]]},"id":"8b44c0b1aa85fff-13fef6137a68d3af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a463581-17dff495b1f422b0","8f44c0b1a440c82-13fef5e179500aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.6400105,32.8185261],[-83.640151,32.8184044],[-83.64038810000001,32.818219],[-83.64054130000001,32.8180703]]},"id":"8944c0b1a47ffff-17fef539b6b81b51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64068540000001,32.817883300000005]},"id":"8f44c0b1a463d36-17fff43ba9823111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a463581-17dff495b1f422b0","8f44c0b1a463d36-17fff43ba9823111"]},"geometry":{"type":"LineString","coordinates":[[-83.64054130000001,32.8180703],[-83.64068540000001,32.817883300000005]]},"id":"8a44c0b1a467fff-17b7f468a695d812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a405b04-13def9ecb33af707","8f44c0b1a420ca6-13fefa3287aebb5b"]},"geometry":{"type":"LineString","coordinates":[[-83.6383541,32.816218],[-83.6384048,32.816094400000004],[-83.63840230000001,32.815986],[-83.63824240000001,32.815245000000004]]},"id":"8944c0b1a43ffff-13bff9f6411b4b2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6381624,32.814874]},"id":"8f44c0b1a426923-1796fa6487220c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a420ca6-13fefa3287aebb5b","8f44c0b1a426923-1796fa6487220c28"]},"geometry":{"type":"LineString","coordinates":[[-83.63824240000001,32.815245000000004],[-83.6381624,32.814874]]},"id":"8a44c0b1a427fff-1396fa4b862688ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62798930000001,32.8151049]},"id":"8f44c0ba9806c1c-13b7933abec5654a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9806c1c-13b7933abec5654a","8f44c0ba9989930-179fd5a7212a91da"]},"geometry":{"type":"LineString","coordinates":[[-83.62798930000001,32.8151049],[-83.62739970000001,32.8149101],[-83.62712760000001,32.8147703],[-83.6270167,32.8146221],[-83.6269966,32.8144781]]},"id":"8844c0ba99fffff-179f949f7bbaacea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9989930-179fd5a7212a91da","8f44c0ba998dab3-17b7f55c68b3c057"]},"geometry":{"type":"LineString","coordinates":[[-83.6269966,32.8144781],[-83.6271162,32.8142943]]},"id":"8b44c0ba998dfff-17df7581c48a087e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9822840-17f79128b30e08c3","8f44c0ba9831168-17f77276cf83ce3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6288373,32.8146201],[-83.6285436,32.8147068],[-83.6283028,32.8148071]]},"id":"8944c0ba983ffff-17b791d150252df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9806c1c-13b7933abec5654a","8f44c0ba9831168-17f77276cf83ce3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6283028,32.8148071],[-83.6281404,32.8149779],[-83.62798930000001,32.8151049]]},"id":"8944c0ba983ffff-17d752d62f9cad87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6271679,32.815647000000006]},"id":"8f44c0ba98102ab-13f7753c10ec52ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9806c1c-13b7933abec5654a","8f44c0ba98102ab-13f7753c10ec52ff"]},"geometry":{"type":"LineString","coordinates":[[-83.62798930000001,32.8151049],[-83.6277625,32.8154776],[-83.627566,32.8156851],[-83.62732910000001,32.8157063],[-83.6271679,32.815647000000006]]},"id":"8944c0ba983ffff-139f9416c5c56b62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf515e-13d7200125d18931","8f44c0a34cf5c8b-1397607a79708dfe"]},"geometry":{"type":"LineString","coordinates":[[-83.63586380000001,32.8326002],[-83.6358036,32.8325667],[-83.63566970000001,32.8324918]]},"id":"8b44c0a34cf5fff-13b7403ddd749069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf5c8b-1397607a79708dfe","8f44c0a34cf4394-13d7f0f4fe91c657"]},"geometry":{"type":"LineString","coordinates":[[-83.63566970000001,32.8324918],[-83.6354737,32.8323695]]},"id":"8a44c0a34cf7fff-13ff30b7b20f8625"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34c1bd98-13d7102dddf06b4d","8f44c0a34cf4394-13d7f0f4fe91c657"]},"geometry":{"type":"LineString","coordinates":[[-83.6354737,32.8323695],[-83.63530610000001,32.8322675],[-83.6352932,32.8322395],[-83.6353002,32.832217400000005],[-83.6355946,32.8318835],[-83.6356272,32.8318887],[-83.6357923,32.831985700000004]]},"id":"8844c0a34dfffff-1397e0ecbbc3f905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34c1b12d-13b6ffb1a6d333a1","8f44c0a34c1bd98-13d7102dddf06b4d"]},"geometry":{"type":"LineString","coordinates":[[-83.6357923,32.831985700000004],[-83.635991,32.832106]]},"id":"8b44c0a34c1bfff-13feffefc0dd5b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a34c1ba44-13feff391b1470a7","8f44c0a34c1b12d-13b6ffb1a6d333a1"]},"geometry":{"type":"LineString","coordinates":[[-83.635991,32.832106],[-83.6361839,32.8322212]]},"id":"8b44c0a34c1bfff-13d6ff7560989901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6259452,32.8332038]},"id":"8f44c0ba92d1a04-17d778384c887bc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1a04-17d778384c887bc4","8f44c0ba92c2d72-1397979dd9b42751"]},"geometry":{"type":"LineString","coordinates":[[-83.6261923,32.8329016],[-83.6261037,32.83301],[-83.6259452,32.8332038]]},"id":"8944c0ba92fffff-13f7f7eb0bea9706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625613,32.8336102]},"id":"8f44c0ba92de032-17df7907efc5c655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1a04-17d778384c887bc4","8f44c0ba92de032-17df7907efc5c655"]},"geometry":{"type":"LineString","coordinates":[[-83.6259452,32.8332038],[-83.625613,32.8336102]]},"id":"8944c0ba92fffff-17df78a012632ae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3692c923-17d7fab4ba5513da","8f44c0ba92d3454-179fba441a9d48f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6249269,32.8332047],[-83.6250753,32.833304500000004],[-83.62510710000001,32.8333226]]},"id":"8a44c0ba92d7fff-17f77a7ccd188b02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d339e-17df19d2bbc5d088","8f44c0ba92d3454-179fba441a9d48f0"]},"geometry":{"type":"LineString","coordinates":[[-83.62510710000001,32.8333226],[-83.62528850000001,32.8334257]]},"id":"8b44c0ba92d3fff-17bffa0b602438bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62545920000001,32.8335227]},"id":"8f44c0ba92dec9b-1797b9680581ff58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d339e-17df19d2bbc5d088","8f44c0ba92dec9b-1797b9680581ff58"]},"geometry":{"type":"LineString","coordinates":[[-83.62528850000001,32.8334257],[-83.62545920000001,32.8335227]]},"id":"8944c0ba92fffff-17ff799d55710bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92de032-17df7907efc5c655","8f44c0ba92dec9b-1797b9680581ff58"]},"geometry":{"type":"LineString","coordinates":[[-83.62545920000001,32.8335227],[-83.625613,32.8336102]]},"id":"8b44c0ba92defff-17b71937f9dc3e5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.625766,32.8337001]},"id":"8f44c0ba92dead6-179798a84fdef03f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92de032-17df7907efc5c655","8f44c0ba92dead6-179798a84fdef03f"]},"geometry":{"type":"LineString","coordinates":[[-83.625613,32.8336102],[-83.6257561,32.833694200000004],[-83.625766,32.8337001]]},"id":"8b44c0ba92defff-17ff78d815b92f6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d99ad-17ff37044b2f2f83","8f44c0ba92dead6-179798a84fdef03f"]},"geometry":{"type":"LineString","coordinates":[[-83.625766,32.8337001],[-83.62643800000001,32.8340978]]},"id":"8a44c0ba92dffff-1797f7d646af7dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36974b71-17f778f55e300bfb","8f44c0a36974acc-17bf791d96c96696"]},"geometry":{"type":"LineString","coordinates":[[-83.6256427,32.8344855],[-83.6255783,32.8345846]]},"id":"8c44c0a36974bff-1797790978fadbf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3697059c-13f75a7afccc9fb8","8f44c0a36974acc-17bf791d96c96696"]},"geometry":{"type":"LineString","coordinates":[[-83.6255783,32.8345846],[-83.62525090000001,32.834953],[-83.6252041,32.8349727],[-83.62513630000001,32.834968700000005],[-83.6250193,32.8348724]]},"id":"8a44c0a36977fff-13dfb9c3185c2ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62490460000001,32.8347957]},"id":"8f44c0a3697629a-13b75ac2a9618766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3697629a-13b75ac2a9618766","8f44c0a3697059c-13f75a7afccc9fb8"]},"geometry":{"type":"LineString","coordinates":[[-83.6250193,32.8348724],[-83.62490460000001,32.8347957]]},"id":"8a44c0a36977fff-13df5a9ed6a8d657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63440840000001,32.770616600000004]},"id":"8f44c0b13d75235-1397638ec957bdfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63117580000001,32.770792400000005]},"id":"8f44c0b13d1b14c-13f74b732fadb24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d75235-1397638ec957bdfc","8f44c0b13d1b14c-13f74b732fadb24f"]},"geometry":{"type":"LineString","coordinates":[[-83.63440840000001,32.770616600000004],[-83.63448480000001,32.771231900000004],[-83.6344285,32.7713096],[-83.634324,32.7713333],[-83.63269960000001,32.7713265],[-83.6324664,32.771269100000005],[-83.6321528,32.7711812],[-83.63117580000001,32.770792400000005]]},"id":"8844c0b13dfffff-17dfa6d3026c86af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63048020000001,32.770430600000005]},"id":"8f44c0b13d1a59b-139f2d25e6600f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d1a59b-139f2d25e6600f28","8f44c0b13d1b14c-13f74b732fadb24f"]},"geometry":{"type":"LineString","coordinates":[[-83.63117580000001,32.770792400000005],[-83.63073750000001,32.7705895],[-83.63048020000001,32.770430600000005]]},"id":"8944c0b13d3ffff-13975c4fd7b021f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6416222,32.7691935]},"id":"8f44c0b139204b5-139ff1f228061f71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139146e4-139ef64444ab65eb","8f44c0b139204b5-139ff1f228061f71"]},"geometry":{"type":"LineString","coordinates":[[-83.6416222,32.7691935],[-83.64009440000001,32.7697324],[-83.63985240000001,32.7698154]]},"id":"8944c0b1393ffff-13def41b0d5f5004"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63950580000001,32.769315500000005]},"id":"8f44c0b10649549-13d6f71ce8aaf64a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139146e4-139ef64444ab65eb","8f44c0b10649549-13d6f71ce8aaf64a"]},"geometry":{"type":"LineString","coordinates":[[-83.63985240000001,32.7698154],[-83.6397888,32.769837200000005],[-83.6396682,32.7698271],[-83.6395878,32.769776400000005],[-83.63949930000001,32.7696581],[-83.6394511,32.769522800000004],[-83.6394672,32.7693977],[-83.63950580000001,32.769315500000005]]},"id":"8844c0b139fffff-13b6f6f2d9cc6fbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6395717,32.7686742]},"id":"8f44c0b1064ddb3-17d7f6f3bdf1d8c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1064ddb3-17d7f6f3bdf1d8c3","8f44c0b10649549-13d6f71ce8aaf64a"]},"geometry":{"type":"LineString","coordinates":[[-83.63950580000001,32.769315500000005],[-83.63953550000001,32.7692524],[-83.63960390000001,32.769107000000005],[-83.6395717,32.7686742]]},"id":"8a44c0b1064ffff-1796f6f0cafe0cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6347679,32.767582000000004]},"id":"8f44c0b106f0064-179fc2ae1af15e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106f2b09-17d72379ad2fccad","8f44c0b106f0064-179fc2ae1af15e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6347679,32.767582000000004],[-83.63444220000001,32.767653]]},"id":"8a44c0b106f7fff-17b7f313ebe7b03d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106f2b09-17d72379ad2fccad","8f44c0b106d424b-17f7f3f4ca89cc3f"]},"geometry":{"type":"LineString","coordinates":[[-83.63444220000001,32.767653],[-83.6343176,32.767697000000005],[-83.63424930000001,32.7677849],[-83.6342412,32.7679471],[-83.63424520000001,32.768335900000004]]},"id":"8944c0b106fffff-1797b3e401433918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106d424b-17f7f3f4ca89cc3f","8f44c0b106d54de-17d733fe2ed50a80"]},"geometry":{"type":"LineString","coordinates":[[-83.63424520000001,32.768335900000004],[-83.6342302,32.7684931]]},"id":"8b44c0b106d5fff-17b713f977da988e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106d54de-17d733fe2ed50a80","8f44c0b106d1da4-17bfd4065b18b5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6342302,32.7684931],[-83.6342171,32.7686301]]},"id":"8a44c0b106d7fff-17ff0402433f7b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63476610000001,32.7702825]},"id":"8f44c0b13d66c5c-13b792af3b8747eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d66c5c-13b792af3b8747eb","8f44c0b106d1da4-17bfd4065b18b5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6342171,32.7686301],[-83.63418490000001,32.768860000000004],[-83.6341407,32.7698911],[-83.634201,32.7700703],[-83.6343216,32.7701751],[-83.63476610000001,32.7702825]]},"id":"8744c0b13ffffff-139fe3ebc9092d9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6406814,32.7686404]},"id":"8f44c0b1393411b-17b6f43e2dc724f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1064ddb3-17d7f6f3bdf1d8c3","8f44c0b1393411b-17b6f43e2dc724f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6406814,32.7686404],[-83.6395717,32.7686742]]},"id":"8744c0b10ffffff-17bef598fd9cd7de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1064ddb3-17d7f6f3bdf1d8c3","8f44c0b1065ab6d-1797fb6d9e1a3fb7"]},"geometry":{"type":"LineString","coordinates":[[-83.6395717,32.7686742],[-83.63888820000001,32.768681],[-83.6387193,32.768677600000004],[-83.6385424,32.768701300000004],[-83.63773830000001,32.768985300000004]]},"id":"8944c0b1067ffff-17f7f938f3ef882e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377636,32.7698064]},"id":"8f44c0b139b5336-139ffb5dc6735ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139b5336-139ffb5dc6735ddb","8f44c0b1065ab6d-1797fb6d9e1a3fb7"]},"geometry":{"type":"LineString","coordinates":[[-83.63773830000001,32.768985300000004],[-83.63754130000001,32.769076600000005],[-83.6374729,32.7691746],[-83.6375051,32.7693031],[-83.6377636,32.7698064]]},"id":"8644c0b17ffffff-13fefbc2a8972242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139b5336-139ffb5dc6735ddb","8f44c0b13985211-17fff9f2db66fccd"]},"geometry":{"type":"LineString","coordinates":[[-83.6377636,32.7698064],[-83.6383333,32.7709157],[-83.6383443,32.7709844]]},"id":"8944c0b139bffff-13f7faa22c4a65f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139aa4b3-17dff9e310850d12","8f44c0b13985211-17fff9f2db66fccd"]},"geometry":{"type":"LineString","coordinates":[[-83.6383443,32.7709844],[-83.63836950000001,32.7711422]]},"id":"8a44c0b13987fff-179ef9eaf9edf4bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.634387,32.7744761]},"id":"8f44c0b13c6e42a-17ff939c2a04dc63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c6e8a2-17b7231b6d789d21","8f44c0b13c6e42a-17ff939c2a04dc63"]},"geometry":{"type":"LineString","coordinates":[[-83.63459300000001,32.774349],[-83.634387,32.7744761]]},"id":"8b44c0b13c6efff-17d7e35bca9c286e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6304817,32.7748871]},"id":"8f44c0b13cc480c-17f77d24f72abce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cc480c-17f77d24f72abce8","8f44c0b13c6e42a-17ff939c2a04dc63"]},"geometry":{"type":"LineString","coordinates":[[-83.634387,32.7744761],[-83.6340909,32.7746021],[-83.6335564,32.7747455],[-83.633346,32.7747742],[-83.63287980000001,32.774802900000005],[-83.63238510000001,32.774874600000004],[-83.63187330000001,32.7749463],[-83.6313047,32.7748794],[-83.6308896,32.774869800000005],[-83.63052,32.774869800000005],[-83.6304817,32.7748871]]},"id":"8844c0b13dfffff-17bf48567f710fd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6296808,32.7751824]},"id":"8f44c0b13cc64ce-17bf0f1987fc4a1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cc64ce-17bf0f1987fc4a1d","8f44c0b13cc480c-17f77d24f72abce8"]},"geometry":{"type":"LineString","coordinates":[[-83.6304817,32.7748871],[-83.6303608,32.774941500000004],[-83.62997990000001,32.7751089],[-83.6296808,32.7751824]]},"id":"8a44c0b13cc7fff-17d71e1bb67d133c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6282513,32.7753383]},"id":"8f44c0b13cd2532-179f7296f7b8676d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cc64ce-17bf0f1987fc4a1d","8f44c0b13cd2532-179f7296f7b8676d"]},"geometry":{"type":"LineString","coordinates":[[-83.6296808,32.7751824],[-83.62961030000001,32.7751997],[-83.6292179,32.775257100000005],[-83.628348,32.7753383],[-83.6282513,32.7753383]]},"id":"8844c0b13dfffff-17f790d714badd45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139a411a-13d7f93e2181a817","8f44c0b10649549-13d6f71ce8aaf64a"]},"geometry":{"type":"LineString","coordinates":[[-83.63950580000001,32.769315500000005],[-83.6393666,32.769299700000005],[-83.6391696,32.769299700000005],[-83.6386334,32.7694929]]},"id":"8944c0b1067ffff-13f7f83136c79578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139a411a-13d7f93e2181a817","8f44c0b139a4456-13fef9a4f1b105d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6386334,32.7694929],[-83.6384689,32.7695522]]},"id":"8b44c0b139a4fff-13d7f9718deaab21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139b5336-139ffb5dc6735ddb","8f44c0b139a4456-13fef9a4f1b105d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6384689,32.7695522],[-83.6377636,32.7698064]]},"id":"8944c0b139bffff-13bffa816dc638bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139b5336-139ffb5dc6735ddb","8f44c0b139b0292-139efcc8d54e9b19"]},"geometry":{"type":"LineString","coordinates":[[-83.6377636,32.7698064],[-83.63718270000001,32.7700203]]},"id":"8a44c0b139b7fff-13dffc1357a4fc43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6368899,32.771007000000004]},"id":"8f44c0b139918a0-17f7fd7fdf280eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139918a0-17f7fd7fdf280eec","8f44c0b139b0292-139efcc8d54e9b19"]},"geometry":{"type":"LineString","coordinates":[[-83.63718270000001,32.7700203],[-83.63708290000001,32.770057],[-83.6369382,32.7700942],[-83.6368738,32.770138100000004],[-83.6368175,32.770239600000004],[-83.6368537,32.770746700000004],[-83.6368899,32.771007000000004]]},"id":"8944c0b139bffff-1396fd7bfdd0cf9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13991201-17b7fd61aa7999ff","8f44c0b139918a0-17f7fd7fdf280eec"]},"geometry":{"type":"LineString","coordinates":[[-83.6368899,32.771007000000004],[-83.6369382,32.7713045]]},"id":"8b44c0b13991fff-17d6fd70ce66c957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13991201-17b7fd61aa7999ff","8f44c0b138b5232-1397fd793bb60038"]},"geometry":{"type":"LineString","coordinates":[[-83.6369382,32.7713045],[-83.6368899,32.7722883],[-83.6368698,32.7723998],[-83.6368216,32.7725385],[-83.6368336,32.772788600000005],[-83.63690050000001,32.7729018]]},"id":"8844c0b139fffff-17befd80c990658f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63535490000001,32.766189100000005]},"id":"8f44c0b1061c4e0-13b7313f3fdb2c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1061c4e0-13b7313f3fdb2c8a","8f44c0b10618b6e-13b710677cea61c7"]},"geometry":{"type":"LineString","coordinates":[[-83.63535490000001,32.766189100000005],[-83.63570010000001,32.7665937]]},"id":"8a44c0b1061ffff-13b7a0d359bca03c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106eab2e-179ffecd333d4869","8f44c0b10618b6e-13b710677cea61c7"]},"geometry":{"type":"LineString","coordinates":[[-83.63570010000001,32.7665937],[-83.63613790000001,32.767602600000004],[-83.6363142,32.7684202],[-83.6363565,32.7688191]]},"id":"8844c0b107fffff-17dfff6d5a90d0a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b106eab2e-179ffecd333d4869","8f44c0b13d6110d-17ff40bcc1f480ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6363565,32.7688191],[-83.63637100000001,32.7689557],[-83.6363085,32.7700744],[-83.63620610000001,32.7703374],[-83.63588770000001,32.770710300000005],[-83.635683,32.7709111],[-83.63556360000001,32.770992400000004]]},"id":"8644c0b17ffffff-13ffff43de3cdf1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d66c5c-13b792af3b8747eb","8f44c0b13d6110d-17ff40bcc1f480ac"]},"geometry":{"type":"LineString","coordinates":[[-83.63556360000001,32.770992400000004],[-83.63527930000001,32.7710737],[-83.63497790000001,32.771112],[-83.6348358,32.771030700000004],[-83.63480170000001,32.7709446],[-83.6347221,32.7705526],[-83.6347221,32.770356500000005],[-83.63476610000001,32.7702825]]},"id":"8a44c0b13d67fff-179f922d5501ebb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63480170000001,32.770222700000005]},"id":"8f44c0b13d66d4e-139f3298fea9454f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d66d4e-139f3298fea9454f","8f44c0b13d66c5c-13b792af3b8747eb"]},"geometry":{"type":"LineString","coordinates":[[-83.63476610000001,32.7702825],[-83.63480170000001,32.770222700000005]]},"id":"8c44c0b13d66dff-139fe2a41a94fa6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13546b4b-17f7f0065beca314","8f44c0b135636d3-17f72eaf49065255"]},"geometry":{"type":"LineString","coordinates":[[-83.6298508,32.7781378],[-83.6296995,32.7781664],[-83.6293019,32.778172600000005]]},"id":"8a44c0b13547fff-17f7ef5a3dddc1bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1355c9a1-17977114bca80ec5","8f44c0b13546b4b-17f7f0065beca314"]},"geometry":{"type":"LineString","coordinates":[[-83.6293019,32.778172600000005],[-83.62908540000001,32.778176],[-83.6289034,32.778219],[-83.6288238,32.778338600000005],[-83.6288466,32.7785011],[-83.6288921,32.778649300000005],[-83.6288693,32.7788071]]},"id":"8a44c0b13547fff-17f7f0de78908bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1355c9a1-17977114bca80ec5","8f44c0b135636d3-17f72eaf49065255"]},"geometry":{"type":"LineString","coordinates":[[-83.6288693,32.7788071],[-83.62894320000001,32.7788692],[-83.62904560000001,32.7789075],[-83.6297052,32.7788453],[-83.6297905,32.778792700000004],[-83.62984730000001,32.7787019],[-83.6298508,32.7781378]]},"id":"8a44c0b13547fff-17d73f7356eb694c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b135636d3-17f72eaf49065255","8f44c0b13562a2c-179f6ead3c91d2ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6298508,32.7781378],[-83.6298541,32.7776166]]},"id":"8944c0b1357ffff-17bf4eae4f6b4919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cdc030-13974f3655281a28","8f44c0b13562a2c-179f6ead3c91d2ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6298541,32.7776166],[-83.62985540000001,32.7774038],[-83.629783,32.777194200000004],[-83.6295989,32.776567],[-83.62963470000001,32.775962]]},"id":"8744c0b13ffffff-139f5f0c66836c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cc64ce-17bf0f1987fc4a1d","8f44c0b13cdc030-13974f3655281a28"]},"geometry":{"type":"LineString","coordinates":[[-83.62963470000001,32.775962],[-83.6296808,32.7751824]]},"id":"8944c0b13cfffff-179faf27ea23ed0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62982550000001,32.7744449]},"id":"8f44c0b13cf0ac1-17df1ebf124acaf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cc64ce-17bf0f1987fc4a1d","8f44c0b13cf0ac1-17df1ebf124acaf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6296808,32.7751824],[-83.62967280000001,32.7747838],[-83.6298263,32.7745351],[-83.62982550000001,32.7744449]]},"id":"8944c0b13cfffff-17bf3f00418c6fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298242,32.774310400000005]},"id":"8f44c0b13cf0b10-179f0ebfedc86ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cf0b10-179f0ebfedc86ec4","8f44c0b13cf0ac1-17df1ebf124acaf9"]},"geometry":{"type":"LineString","coordinates":[[-83.62982550000001,32.7744449],[-83.6298242,32.774310400000005]]},"id":"8c44c0b13cf0bff-17b71ebf8f949536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c0e551-13b7cb6b0ee48c85","8f44c0b13cf0b10-179f0ebfedc86ec4"]},"geometry":{"type":"LineString","coordinates":[[-83.6298242,32.774310400000005],[-83.62981500000001,32.7733304],[-83.62988890000001,32.7731869],[-83.6311888,32.773148400000004]]},"id":"8844c0b13dfffff-13f74dd20d36d594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63178470000001,32.770549100000004]},"id":"8f44c0b13d0a4b4-13df39f6943c47ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d0a4b4-13df39f6943c47ee","8f44c0b13d1a59b-139f2d25e6600f28"]},"geometry":{"type":"LineString","coordinates":[[-83.63178470000001,32.770549100000004],[-83.6313487,32.770484700000004],[-83.631023,32.7704577],[-83.6307951,32.7704389],[-83.63048020000001,32.770430600000005]]},"id":"8944c0b13d3ffff-13bf2b8d519c8ede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6290247,32.769315]},"id":"8f44c0b13da2a0b-13d7f0b3999231a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d1a59b-139f2d25e6600f28","8f44c0b13da2a0b-13d7f0b3999231a1"]},"geometry":{"type":"LineString","coordinates":[[-83.63048020000001,32.770430600000005],[-83.6302691,32.7704006],[-83.6300985,32.7703289],[-83.629945,32.770207],[-83.629655,32.7700922],[-83.6294759,32.7700181],[-83.6293878,32.7699082],[-83.62934510000001,32.7698006],[-83.62925410000001,32.7696595],[-83.6291035,32.7694683],[-83.6290247,32.769315]]},"id":"8844c0b13dfffff-13ff0f26d392e507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13da2a0b-13d7f0b3999231a1","8f44c0b12ace7a6-17d7b7aedc378fbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6290247,32.769315],[-83.6288646,32.7691456],[-83.6281908,32.7686483],[-83.62774730000001,32.7684069],[-83.6273834,32.768215600000005],[-83.6270394,32.768117600000004],[-83.62679770000001,32.7681033],[-83.6266556,32.768163],[-83.6264623,32.7682802],[-83.6262746,32.7684475],[-83.6261865,32.7685862],[-83.62616510000001,32.768669800000005]]},"id":"8744c0b12ffffff-17f7f43a7f6b6938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b12361c29-13b71772e8cafb8c","8f44c0b12ace7a6-17d7b7aedc378fbb"]},"geometry":{"type":"LineString","coordinates":[[-83.62616510000001,32.768669800000005],[-83.6261467,32.768741600000006],[-83.62610690000001,32.768842],[-83.626033,32.768987800000005],[-83.6259107,32.769128800000004],[-83.62583910000001,32.7692282],[-83.62583910000001,32.7693427],[-83.6259308,32.769559900000004],[-83.6259474,32.7696953],[-83.6259613,32.7699312],[-83.6259974,32.770043300000005],[-83.62608080000001,32.7700783],[-83.626261,32.7700848]]},"id":"8744c0b12ffffff-13bfb81be65efa11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d0a4b4-13df39f6943c47ee","8f44c0b13d1b14c-13f74b732fadb24f"]},"geometry":{"type":"LineString","coordinates":[[-83.63117580000001,32.770792400000005],[-83.63154970000001,32.7707417],[-83.63171050000001,32.770660500000005],[-83.63178470000001,32.770549100000004]]},"id":"8a44c0b13d1ffff-13d71aa43edd2d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d0a4b4-13df39f6943c47ee","8f44c0b13d1da44-13d73995b7d4ec46"]},"geometry":{"type":"LineString","coordinates":[[-83.63178470000001,32.770549100000004],[-83.6318231,32.7704915],[-83.63186730000001,32.7703732],[-83.6319397,32.7703123]]},"id":"8944c0b13d3ffff-139f19cb0d970de8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d1da44-13d73995b7d4ec46","8f44c0b13d22344-17bf189f703461f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6319397,32.7703123],[-83.6322171,32.7703563],[-83.6338375,32.7703056],[-83.63394600000001,32.770261600000005],[-83.6339822,32.7701568],[-83.63399030000001,32.768831500000005],[-83.63392590000001,32.7686997],[-83.6338415,32.7686659],[-83.63329870000001,32.7686794],[-83.6328082,32.768676],[-83.6323337,32.768662500000005]]},"id":"8744c0b13ffffff-13ff6637fcd6c9f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d22344-17bf189f703461f0","8f44c0b13d33b00-17dffad757e7da69"]},"geometry":{"type":"LineString","coordinates":[[-83.6323337,32.768662500000005],[-83.6319076,32.7686591],[-83.6314251,32.7686895]]},"id":"8944c0b13d3ffff-17d789bb84351681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13d33b00-17dffad757e7da69","8f44c0b13da2a0b-13d7f0b3999231a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6314251,32.7686895],[-83.6310713,32.7686794],[-83.63066520000001,32.768605],[-83.6303475,32.7685611],[-83.63016660000001,32.7685441],[-83.6300339,32.7685881],[-83.6298771,32.7686794],[-83.62972830000001,32.768885600000004],[-83.62961580000001,32.769017500000004],[-83.6295032,32.769102000000004],[-83.6293102,32.7691831],[-83.6290247,32.769315]]},"id":"8844c0b13dfffff-17973de6cef7e679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6413086,32.7687351]},"id":"8f44c0b1029b359-17fff2b623684d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1029b359-17fff2b623684d60","8f44c0b1393411b-17b6f43e2dc724f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6406814,32.7686404],[-83.6408382,32.7687419],[-83.6413086,32.7687351]]},"id":"8944c0b1393ffff-17f7f380dd6d7ec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1029b359-17fff2b623684d60","8f44c0b139204b5-139ff1f228061f71"]},"geometry":{"type":"LineString","coordinates":[[-83.6413086,32.7687351],[-83.64142120000001,32.7687892],[-83.6416222,32.7691935]]},"id":"8944c0b1393ffff-17fef2463ce7e1c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139204b5-139ff1f228061f71","8f44c0b1392e726-1396f0ef415a17de"]},"geometry":{"type":"LineString","coordinates":[[-83.6416222,32.7691935],[-83.64203640000001,32.7700266]]},"id":"8944c0b1393ffff-139ef170be45a157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1391c436-13bef5117d6627ae","8f44c0b1392e726-1396f0ef415a17de"]},"geometry":{"type":"LineString","coordinates":[[-83.64203640000001,32.7700266],[-83.6420042,32.7700807],[-83.6407618,32.7705438],[-83.64034330000001,32.7706851]]},"id":"8944c0b1393ffff-13fff2f733d0c68b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64019090000001,32.770736500000005]},"id":"8f44c0b1391e8e5-13def570b395aae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1391c436-13bef5117d6627ae","8f44c0b1391e8e5-13def570b395aae2"]},"geometry":{"type":"LineString","coordinates":[[-83.64034330000001,32.7706851],[-83.64019090000001,32.770736500000005]]},"id":"8a44c0b1391ffff-13bef54110896d84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139918a0-17f7fd7fdf280eec","8f44c0b139812e3-1797fa34562f663a"]},"geometry":{"type":"LineString","coordinates":[[-83.6368899,32.771007000000004],[-83.6370347,32.771169300000004],[-83.6372719,32.7713011],[-83.6375091,32.7713856],[-83.6377423,32.7714228],[-83.63799560000001,32.7714465],[-83.63823950000001,32.7714687]]},"id":"8944c0b139bffff-17d7fbf33f992b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63910130000001,32.771875800000004]},"id":"8f44c0b1398db2a-1796f819ba2ef47a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b139812e3-1797fa34562f663a","8f44c0b1398db2a-1796f819ba2ef47a"]},"geometry":{"type":"LineString","coordinates":[[-83.63823950000001,32.7714687],[-83.6383936,32.7715073],[-83.63910130000001,32.771875800000004]]},"id":"8944c0b139bffff-179ef9239ab080e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a33431c-17f7f9c64be9b725","8f44c0b1aa9a292-1797f9bfedf1ddd2"]},"geometry":{"type":"LineString","coordinates":[[-83.651533,32.819977],[-83.65152280000001,32.8203382]]},"id":"8744c0b1affffff-17f6d9c313e51720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a33431c-17f7f9c64be9b725","8f44c0b1a331cb4-179ef9ceebb8db9b"]},"geometry":{"type":"LineString","coordinates":[[-83.65152280000001,32.8203382],[-83.651509,32.820827]]},"id":"8a44c0b1a337fff-1796f9ca96550482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a331cb4-179ef9ceebb8db9b","8f44c0b1a31d698-13f7d9e4c018cadf"]},"geometry":{"type":"LineString","coordinates":[[-83.651509,32.820827],[-83.65147400000001,32.822792]]},"id":"8944c0b1a33ffff-13fef9d9d9887c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a2234c4-1797d9f0a0f21cbf","8f44c0b1a31d698-13f7d9e4c018cadf"]},"geometry":{"type":"LineString","coordinates":[[-83.65147400000001,32.822792],[-83.651455,32.82428]]},"id":"8844c0b1a3fffff-17b6d9eabf4af1c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.650991,32.825469000000005]},"id":"8f44c0b1a21d962-13fefb12a3f1f9d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a2234c4-1797d9f0a0f21cbf","8f44c0b1a21d962-13fefb12a3f1f9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.651455,32.82428],[-83.65142800000001,32.825215],[-83.651424,32.825344],[-83.651393,32.825394],[-83.65132700000001,32.825418],[-83.65109000000001,32.825445],[-83.650991,32.825469000000005]]},"id":"8944c0b1a23ffff-13deda2459de1e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2e4da8-13befb2ec968de44","8f44c0b1a2e6b18-13f7dba1653230ab"]},"geometry":{"type":"LineString","coordinates":[[-83.650946,32.826203],[-83.6508548,32.8263637],[-83.65076260000001,32.8264817]]},"id":"8a44c0b1a2e7fff-1396db64e2b23f67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2e6b18-13f7dba1653230ab","8f44c0b1a2e2714-17bfdca4f4e4f55e"]},"geometry":{"type":"LineString","coordinates":[[-83.65076260000001,32.8264817],[-83.6503473,32.827004]]},"id":"8a44c0b1a2e7fff-179edc2321c8099f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2d1b6b-17befea3d918f970","8f44c0b1a2e2714-17bfdca4f4e4f55e"]},"geometry":{"type":"LineString","coordinates":[[-83.6503473,32.827004],[-83.650171,32.827221],[-83.64965360000001,32.8278715],[-83.6495299,32.828027]]},"id":"8944c0b1a2fffff-17fedda4fdd0ee66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649169,32.828495600000004]},"id":"8f44c0b1a2de042-13d7df8560185d45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2d1b6b-17befea3d918f970","8f44c0b1a2de042-13d7df8560185d45"]},"geometry":{"type":"LineString","coordinates":[[-83.6495299,32.828027],[-83.6493918,32.828206300000005],[-83.649169,32.828495600000004]]},"id":"8944c0b1a2fffff-13bfdf14ad98f45e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b112864a5-13d6c795e2f5fa1c","8f44c0b112b3baa-13fec781ecd9b5f3"]},"geometry":{"type":"LineString","coordinates":[[-83.65900500000001,32.78248],[-83.658973,32.782804]]},"id":"8944c0b112bffff-13dfc78bea351aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b112864a5-13d6c795e2f5fa1c","8f44c0b1128261e-13d7e79d6a4f9ff3"]},"geometry":{"type":"LineString","coordinates":[[-83.658973,32.782804],[-83.658961,32.783417]]},"id":"8a44c0b11287fff-1396d799a6e27a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b11298166-17f7e7bb6df38ad6","8f44c0b1128261e-13d7e79d6a4f9ff3"]},"geometry":{"type":"LineString","coordinates":[[-83.658961,32.783417],[-83.65894,32.78369],[-83.658927,32.783966],[-83.658913,32.784083]]},"id":"8944c0b112bffff-1397d7abb956e57e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b11298166-17f7e7bb6df38ad6","8f44c0b112982e3-17ffe7b487bf58aa"]},"geometry":{"type":"LineString","coordinates":[[-83.658913,32.784083],[-83.65890800000001,32.784233],[-83.658924,32.784329]]},"id":"8b44c0b11298fff-17b7c7bb902d96d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b112982e3-17ffe7b487bf58aa","8f44c0b1e922528-17b7e7f76b3a5d92"]},"geometry":{"type":"LineString","coordinates":[[-83.658924,32.784329],[-83.658882,32.784602],[-83.658854,32.784886],[-83.658821,32.78515],[-83.658817,32.785241]]},"id":"8744c0b11ffffff-179ec7d986aeed6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e9224ce-179fe81d8e08e565","8f44c0b1e922528-17b7e7f76b3a5d92"]},"geometry":{"type":"LineString","coordinates":[[-83.658817,32.785241],[-83.65875600000001,32.785379]]},"id":"8c44c0b1e9225ff-17f6c80a7b14bafd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e90056d-13ffe867447f87f3","8f44c0b1e9224ce-179fe81d8e08e565"]},"geometry":{"type":"LineString","coordinates":[[-83.65875600000001,32.785379],[-83.658759,32.785466],[-83.658671,32.785924],[-83.65863800000001,32.786147]]},"id":"8944c0b1e93ffff-13fff83f22528654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e90056d-13ffe867447f87f3","8f44c0b1e9037b0-13bec8e948eddb08"]},"geometry":{"type":"LineString","coordinates":[[-83.65863800000001,32.786147],[-83.658545,32.786396],[-83.65848000000001,32.786594],[-83.65843000000001,32.786682]]},"id":"8a44c0b1e907fff-1396d8a53889fbc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b110c9a75-13b7d74cfcc609cb","8f44c0b1139314e-1397e7698433ac03"]},"geometry":{"type":"LineString","coordinates":[[-83.65908970000001,32.779298100000005],[-83.65907,32.779454],[-83.65904400000001,32.780451]]},"id":"8944c0b113bffff-139fc75f774f23ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64144200000001,32.826524]},"id":"8f44c0b1a6e3459-1797f262c67c79a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6dc214-17d7f4ceca244074","8f44c0b1a6e3459-1797f262c67c79a0"]},"geometry":{"type":"LineString","coordinates":[[-83.64045,32.827682],[-83.640781,32.827302],[-83.641277,32.826712],[-83.64144200000001,32.826524]]},"id":"8944c0b1a6fffff-17fff3986e5f6f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6e3459-1797f262c67c79a0","8f44c0b1a6e5c19-13bff0c71ecc42b3"]},"geometry":{"type":"LineString","coordinates":[[-83.64144200000001,32.826524],[-83.641592,32.826341],[-83.64194400000001,32.82595],[-83.6421007,32.825794]]},"id":"8a44c0b1a6e7fff-139ff1990a39276d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6424702,32.8254028]},"id":"8f44c0b1a60b841-13d6efe025aad2c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6e5c19-13bff0c71ecc42b3","8f44c0b1a60b841-13d6efe025aad2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6421007,32.825794],[-83.6421595,32.8257339],[-83.6422568,32.8256302],[-83.6423491,32.8255318],[-83.64240720000001,32.8254699],[-83.6424702,32.8254028]]},"id":"8844c0b1a7fffff-13bff053475a601b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a60d8d4-17f7eea5973f58e3","8f44c0b1a60b841-13d6efe025aad2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6424702,32.8254028],[-83.64260060000001,32.8252638],[-83.64297350000001,32.824866400000005]]},"id":"8a44c0b1a60ffff-139fef42e5cd0152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a60d8d4-17f7eea5973f58e3","8f44c0b1a629cda-17b6eda32018c9f6"]},"geometry":{"type":"LineString","coordinates":[[-83.64297350000001,32.824866400000005],[-83.643387,32.824346000000006]]},"id":"8944c0b1a63ffff-17d6ee2468b541c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a751458-179eebf2083cda39","8f44c0b1a629cda-17b6eda32018c9f6"]},"geometry":{"type":"LineString","coordinates":[[-83.643387,32.824346000000006],[-83.64408,32.823492]]},"id":"8844c0b1a7fffff-17b7ecca9bc25e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a75531e-13b6eb142663aa0f","8f44c0b1a751458-179eebf2083cda39"]},"geometry":{"type":"LineString","coordinates":[[-83.64408,32.823492],[-83.644322,32.823216],[-83.644435,32.823117]]},"id":"8a44c0b1a757fff-17b6fb863ded2488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64457800000001,32.823]},"id":"8f44c0b1a755b09-13f7eabac57acf14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a75531e-13b6eb142663aa0f","8f44c0b1a755b09-13f7eabac57acf14"]},"geometry":{"type":"LineString","coordinates":[[-83.644435,32.823117],[-83.64457800000001,32.823]]},"id":"8b44c0b1a755fff-139ffae7766d9a75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7712e4-1397e99b487f1f7e","8f44c0b1a755b09-13f7eabac57acf14"]},"geometry":{"type":"LineString","coordinates":[[-83.64457800000001,32.823],[-83.645038,32.822665]]},"id":"8a44c0b1a747fff-13fefa2b07805b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646235,32.8138455]},"id":"8f44c0b1a116361-179ff6af23ce8ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a116868-1797f6aa78ff6f21","8f44c0b1a116361-179ff6af23ce8ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.646235,32.8138455],[-83.64623900000001,32.8137234],[-83.6462425,32.8136251]]},"id":"8b44c0b1a116fff-17def6acd914bf73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a116960-17d6f6aa7d83e0a0","8f44c0b1a116868-1797f6aa78ff6f21"]},"geometry":{"type":"LineString","coordinates":[[-83.6462425,32.8136251],[-83.6462425,32.8135439]]},"id":"8c44c0b1a1169ff-17fef6aa74e6846e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6591542,32.773173]},"id":"8f44c0b11119701-13d7e724a2f36c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11119701-13d7e724a2f36c77","8f44c0b11119c42-13dfe70f874f2b4f"]},"geometry":{"type":"LineString","coordinates":[[-83.659188,32.772981],[-83.6591542,32.773173]]},"id":"8b44c0b11119fff-1397e71a1794f8d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6590793,32.7734868]},"id":"8f44c0b1102618c-1397c753743b90f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1102618c-1397c753743b90f7","8f44c0b11119701-13d7e724a2f36c77"]},"geometry":{"type":"LineString","coordinates":[[-83.6591542,32.773173],[-83.659142,32.773242],[-83.6590793,32.7734868]]},"id":"8844c0b111fffff-13b7f73ac3db29b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.659013,32.773760100000004]},"id":"8f44c0b11022996-13b6d77cef3f72e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11022996-13b6d77cef3f72e9","8f44c0b1102618c-1397c753743b90f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6590793,32.7734868],[-83.659013,32.773760100000004]]},"id":"8a44c0b11027fff-13def7683253a242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6589355,32.7740479]},"id":"8f44c0b11022776-13f7f7ad52f298e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11022776-13f7f7ad52f298e4","8f44c0b11022996-13b6d77cef3f72e9"]},"geometry":{"type":"LineString","coordinates":[[-83.659013,32.773760100000004],[-83.6589355,32.7740479]]},"id":"8b44c0b11022fff-139ec79521ae1aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6590463,32.777172400000005]},"id":"8f44c0b110e1171-1396c7681777fffa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11022776-13f7f7ad52f298e4","8f44c0b110e1171-1396c7681777fffa"]},"geometry":{"type":"LineString","coordinates":[[-83.6589355,32.7740479],[-83.658842,32.774413],[-83.658805,32.774597],[-83.658777,32.774862],[-83.658771,32.774957],[-83.658775,32.775219],[-83.658809,32.775494],[-83.65889200000001,32.776029],[-83.659024,32.776967],[-83.6590463,32.777172400000005]]},"id":"8844c0b111fffff-17b6e7d0b09243da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a13c5e221-13b77d68bb950f55","8f44c0aaca4208a-13bfe51067bd2958"]},"geometry":{"type":"LineString","coordinates":[[-83.59105170000001,32.923677500000004],[-83.5909305,32.9241112],[-83.59065770000001,32.924719800000005],[-83.5904033,32.9251568],[-83.5900984,32.9255914],[-83.5893504,32.9264938],[-83.5880491,32.9280004],[-83.5877348,32.9283796],[-83.5855762,32.9308943],[-83.58506030000001,32.9314953],[-83.58445490000001,32.9322208],[-83.58361620000001,32.933215600000004],[-83.5830512,32.9339086],[-83.5825956,32.934557500000004],[-83.58218400000001,32.9351879],[-83.5813626,32.9365998]]},"id":"8444c0bffffffff-13ff792262db1bd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.579515,32.948545]},"id":"8f44c0aad42e2d0-17ffa9932b8de508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0aaca4208a-13bfe51067bd2958","8f44c0aad42e2d0-17ffa9932b8de508"]},"geometry":{"type":"LineString","coordinates":[[-83.5813626,32.9365998],[-83.58106190000001,32.9371446],[-83.5806594,32.937839100000005],[-83.5805766,32.937982000000005],[-83.5802675,32.9385471],[-83.57987800000001,32.939297700000004],[-83.57957470000001,32.9400275],[-83.5794611,32.940392700000004],[-83.5793189,32.9408562],[-83.5791896,32.9414212],[-83.57909280000001,32.9420165],[-83.5790348,32.942686800000004],[-83.57902940000001,32.943251000000004],[-83.57912280000001,32.9446044],[-83.5794115,32.9475143],[-83.579515,32.948545]]},"id":"8644c0aafffffff-17f7b95945e23795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c9c8ac-13d7ec25b8b9b27a","8f44c0a10da3566-1797e7932a9defca"]},"geometry":{"type":"LineString","coordinates":[[-83.59156850000001,32.90059],[-83.59226100000001,32.899089000000004],[-83.5934414,32.896569]]},"id":"8844c0a10dfffff-13ff69de28a570f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59400740000001,32.8953612]},"id":"8f44c0a16a4aa92-1797e63164e89a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10da3566-1797e7932a9defca","8f44c0a16a4aa92-1797e63164e89a2f"]},"geometry":{"type":"LineString","coordinates":[[-83.5934414,32.896569],[-83.59400740000001,32.8953612]]},"id":"8744c0a16ffffff-179f76e24a602249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59568900000001,32.89195]},"id":"8f44c0a16b4dd5a-13bfe216619adbed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a16b4dd5a-13bfe216619adbed","8f44c0a16a4aa92-1797e63164e89a2f"]},"geometry":{"type":"LineString","coordinates":[[-83.59400740000001,32.8953612],[-83.59434370000001,32.8946491],[-83.59489570000001,32.8934729],[-83.5953915,32.892470100000004],[-83.59568900000001,32.89195]]},"id":"8844c0a16bfffff-17dfe4314feb470b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59659070000001,32.8924083]},"id":"8f44c0a146b03b1-17df7fe2d8bf7733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a16b4dd5a-13bfe216619adbed","8f44c0a146b03b1-17df7fe2d8bf7733"]},"geometry":{"type":"LineString","coordinates":[[-83.59659070000001,32.8924083],[-83.59568900000001,32.89195]]},"id":"8744c0a14ffffff-17df60fc9d22c1b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5955242,32.8918662]},"id":"8f44c0a16b4cad8-139f627d631383f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a16b4dd5a-13bfe216619adbed","8f44c0a16b4cad8-139f627d631383f4"]},"geometry":{"type":"LineString","coordinates":[[-83.59568900000001,32.89195],[-83.5955242,32.8918662]]},"id":"8a44c0a16b4ffff-13b7f249eba1cac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5917266,32.9173139]},"id":"8f44c0a13d2c726-13bf7bc2ebe1dc6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a1079eade-17df7d356587bc86","8f44c0a13d2c726-13bf7bc2ebe1dc6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5917266,32.9173139],[-83.59172310000001,32.917213600000004],[-83.59166110000001,32.9165721],[-83.5914716,32.9149863],[-83.59113380000001,32.9122721]]},"id":"8644c0a17ffffff-1397fc73ef797c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a1079eade-17df7d356587bc86","8f44c0a107b2662-1397edabe7214e83"]},"geometry":{"type":"LineString","coordinates":[[-83.59113380000001,32.9122721],[-83.59094420000001,32.9107262]]},"id":"8944c0a107bffff-13f76d70a78c361e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a1040b48b-13f76e6ba1b1983f","8f44c0a107b2662-1397edabe7214e83"]},"geometry":{"type":"LineString","coordinates":[[-83.59094420000001,32.9107262],[-83.59085130000001,32.910094],[-83.5907207,32.9089374],[-83.59066030000001,32.9082716],[-83.5906374,32.907776000000005]]},"id":"8744c0a10ffffff-17ffee1b8bfe0c55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5797074,32.9483769]},"id":"8f44c0aad42ea71-17ff991ae26f91f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0aad42ea71-17ff991ae26f91f0","8f44c0a134642ee-17fff51707289cc7"]},"geometry":{"type":"LineString","coordinates":[[-83.5797074,32.9483769],[-83.57962,32.9475004],[-83.5793414,32.944589],[-83.57923860000001,32.943246900000005],[-83.57924390000001,32.9426939],[-83.5793009,32.9420347],[-83.57939610000001,32.9414496],[-83.5795231,32.9408947],[-83.5796669,32.940428700000005],[-83.57977500000001,32.9400787],[-83.5800729,32.9393617],[-83.58045820000001,32.9386193],[-83.58075570000001,32.9380709],[-83.58125100000001,32.9372196],[-83.5815515,32.9366752],[-83.58238340000001,32.9352565],[-83.5827775,32.9346443],[-83.5832278,32.9340028],[-83.5837879,32.933315900000004],[-83.5846259,32.932321900000005],[-83.5852308,32.9315969],[-83.58575330000001,32.9309882],[-83.5879056,32.928481000000005]]},"id":"8444c0bffffffff-13bf837d5559c17a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a13c580b6-139fecffde7079c6","8f44c0a134642ee-17fff51707289cc7"]},"geometry":{"type":"LineString","coordinates":[[-83.5879056,32.928481000000005],[-83.5880197,32.928352600000004],[-83.5895211,32.9265953],[-83.5902746,32.9256862],[-83.5905877,32.92524],[-83.59085,32.9247894],[-83.591131,32.9241624],[-83.59121950000001,32.9238458]]},"id":"8744c0a13ffffff-17fff0abf6245de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a13c580b6-139fecffde7079c6","8f44c0a13c702ce-17b77c4b5d176c4a"]},"geometry":{"type":"LineString","coordinates":[[-83.59121950000001,32.9238458],[-83.59125630000001,32.9237139],[-83.59139130000001,32.9231153],[-83.5914827,32.9223385],[-83.5915083,32.9220355]]},"id":"8944c0a13c7ffff-17ff6c92cef97a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60658690000001,32.860134200000005]},"id":"8f44c0a32cc016a-179fe77b3efbcc2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60718580000001,32.8603238]},"id":"8f44c0a32cea556-17976604ea253a88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc016a-179fe77b3efbcc2d","8f44c0a32cea556-17976604ea253a88"]},"geometry":{"type":"LineString","coordinates":[[-83.60658690000001,32.860134200000005],[-83.60718100000001,32.8601395],[-83.60718580000001,32.8603238]]},"id":"8944c0a32cfffff-179fd6953d9b0d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cea784-17d74604957f097a","8f44c0a32cea556-17976604ea253a88"]},"geometry":{"type":"LineString","coordinates":[[-83.60718580000001,32.8603238],[-83.60718630000001,32.8604452]]},"id":"8b44c0a32ceafff-17bf5604b97bf87c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6065877,32.8603143]},"id":"8f44c0a32cc020e-1797777ab6d08734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc020e-1797777ab6d08734","8f44c0a32cc016a-179fe77b3efbcc2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6065877,32.8603143],[-83.60658690000001,32.860134200000005]]},"id":"8b44c0a32cc0fff-17df677af235975f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc0811-17d7577d09f0c661","8f44c0a32cc016a-179fe77b3efbcc2d"]},"geometry":{"type":"LineString","coordinates":[[-83.60658690000001,32.860134200000005],[-83.60658400000001,32.860010100000004]]},"id":"8b44c0a32cc0fff-17ff677c1bdb3c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60665940000001,32.859943300000005]},"id":"8f44c0a32cc092d-179fd74de585fc6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc0811-17d7577d09f0c661","8f44c0a32cc092d-179fd74de585fc6f"]},"geometry":{"type":"LineString","coordinates":[[-83.60658400000001,32.860010100000004],[-83.60665940000001,32.859943300000005]]},"id":"8c44c0a32cc09ff-17bf77657d399280"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc020e-1797777ab6d08734","8f44c0a32cea556-17976604ea253a88"]},"geometry":{"type":"LineString","coordinates":[[-83.60718580000001,32.8603238],[-83.6065877,32.8603143]]},"id":"8944c0a32cfffff-179766bfd5741f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cc020e-1797777ab6d08734","8f44c0a32cc14b3-17d7c77e88e3a775"]},"geometry":{"type":"LineString","coordinates":[[-83.6065877,32.8603143],[-83.6065816,32.8604508]]},"id":"8a44c0a32cc7fff-17bf677ca1c450f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a325652b0-13b766d1d9d616f9","8f44c0a32cc14b3-17d7c77e88e3a775"]},"geometry":{"type":"LineString","coordinates":[[-83.6065816,32.8604508],[-83.606621,32.8605029],[-83.6066404,32.8605371],[-83.6066387,32.8612058],[-83.6066457,32.8612824],[-83.60663690000001,32.8622109],[-83.60664750000001,32.8622213],[-83.606674,32.8622302],[-83.6068015,32.8622421],[-83.60685790000001,32.8622406]]},"id":"8744c0a32ffffff-13b747532dec3a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a325652b0-13b766d1d9d616f9","8f44c0a32cc1b70-17d7463a3d2d02bc"]},"geometry":{"type":"LineString","coordinates":[[-83.60685790000001,32.8622406],[-83.60703500000001,32.862236100000004],[-83.60707040000001,32.8622183],[-83.6071005,32.8621633],[-83.60709700000001,32.8615925],[-83.6070969,32.861277],[-83.60709270000001,32.8612084],[-83.6071005,32.8604448]]},"id":"8744c0a32ffffff-13bfe6455805b4e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6308896,32.8367847]},"id":"8f44c0a34433cf6-179f7c2604900c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a344302ee-17dfab5571a227b4","8f44c0a34433cf6-179f7c2604900c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6312233,32.836681],[-83.6308896,32.8367847]]},"id":"8a44c0a34437fff-17ff1bbdc1ce0b00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3441642b-17df8e96c3c21fc8","8f44c0a34433cf6-179f7c2604900c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6308896,32.8367847],[-83.62989,32.837108]]},"id":"8944c0a3443ffff-17f78d5e6c1492c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71682890000001,32.904425]},"id":"8f44c0a2ea9cb43-13b7ba55f23300e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e3204a2-17d67a68d25fe574","8f44c0a2ea9cb43-13b7ba55f23300e6"]},"geometry":{"type":"LineString","coordinates":[[-83.71682890000001,32.904425],[-83.7167987,32.905911]]},"id":"8744c0a2effffff-17963a5f6aed34ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e3204a2-17d67a68d25fe574","8f44c0a2e225922-17f67a66cc57d1cc"]},"geometry":{"type":"LineString","coordinates":[[-83.7167987,32.905911],[-83.7167735,32.9071693],[-83.71677000000001,32.907344],[-83.71677000000001,32.907812],[-83.716784,32.908332],[-83.716802,32.908631]]},"id":"8944c0a2e33ffff-13b6ba73ae9944ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e254c69-139e7a6e4f96bb15","8f44c0a2e225922-17f67a66cc57d1cc"]},"geometry":{"type":"LineString","coordinates":[[-83.716802,32.908631],[-83.716829,32.90907],[-83.71683,32.909228],[-83.71682,32.90938],[-83.716778,32.909661],[-83.7167076,32.910012],[-83.71668600000001,32.91012],[-83.71664200000001,32.910365],[-83.71663000000001,32.910466],[-83.71661800000001,32.910674],[-83.716627,32.91086],[-83.716654,32.911101],[-83.71669700000001,32.911282],[-83.71679,32.911562]]},"id":"8844c0a2e3fffff-139f3a9565b20a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e254c69-139e7a6e4f96bb15","8f44c0a2e258a45-17beb8a3ab63ac11"]},"geometry":{"type":"LineString","coordinates":[[-83.71679,32.911562],[-83.717173,32.912737],[-83.71728300000001,32.912967],[-83.71735600000001,32.913072],[-83.71746,32.913187],[-83.71752380000001,32.913245700000004]]},"id":"8944c0a2e27ffff-17d739ade07e2d8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2840510a-13d7722f062db1e9","8f44c0a2e258a45-17beb8a3ab63ac11"]},"geometry":{"type":"LineString","coordinates":[[-83.71752380000001,32.913245700000004],[-83.717561,32.91328],[-83.71773400000001,32.913411],[-83.717917,32.913503],[-83.718063,32.913559],[-83.71818300000001,32.913597],[-83.718396,32.913652],[-83.71898,32.913797],[-83.71922500000001,32.913874],[-83.71938800000001,32.913935],[-83.719621,32.914049],[-83.71978200000001,32.914154],[-83.719882,32.914232000000005],[-83.720015,32.91435],[-83.720032,32.914368],[-83.720133,32.914474000000006],[-83.72031700000001,32.914713],[-83.720415,32.914876],[-83.720493,32.915049],[-83.72055900000001,32.915273],[-83.720585,32.915413],[-83.720599,32.915551],[-83.720602,32.915673000000005],[-83.720589,32.91588],[-83.720571,32.915987],[-83.72051900000001,32.916241],[-83.72043000000001,32.916596000000006],[-83.720318,32.916972],[-83.720168,32.917378]]},"id":"8744c0a28ffffff-13b7f3693f1b5c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2840510a-13d7722f062db1e9","8f44c0a2840e574-13def328ba54885c"]},"geometry":{"type":"LineString","coordinates":[[-83.720168,32.917378],[-83.7197685,32.9182191]]},"id":"8944c0a2843ffff-13de32abeeb7d44e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a284e2024-17deb4dacee6f015","8f44c0a2840e574-13def328ba54885c"]},"geometry":{"type":"LineString","coordinates":[[-83.7197685,32.9182191],[-83.71925900000001,32.919238],[-83.71914600000001,32.919504],[-83.719074,32.919649]]},"id":"8844c0a285fffff-179e7404ff82048c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62636260000001,32.8330031]},"id":"8f44c0ba92c2850-13d7f73364e2dab1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92c2d72-1397979dd9b42751","8f44c0ba92c2850-13d7f73364e2dab1"]},"geometry":{"type":"LineString","coordinates":[[-83.6261923,32.8329016],[-83.62636260000001,32.8330031]]},"id":"8b44c0ba92c2fff-13b75768981a154c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92c2850-13d7f73364e2dab1","8f44c0ba92c10db-17df958ee98a418c"]},"geometry":{"type":"LineString","coordinates":[[-83.62636260000001,32.8330031],[-83.6269467,32.8333512],[-83.62703540000001,32.8334041]]},"id":"8a44c0ba92c7fff-17d756612ac3b3be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36cdc4c8-13f73b211aed253a","8f44c0a36cd3949-13dffc3cacbbc9c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6116463,32.8395778],[-83.6117299,32.839528200000004],[-83.6117708,32.8394921],[-83.6117837,32.839457800000005],[-83.6117837,32.8394108],[-83.6117407,32.8393639],[-83.6115,32.8391472],[-83.61143990000001,32.839103900000005],[-83.61137760000001,32.8390967],[-83.61128090000001,32.8391129],[-83.61119260000001,32.8391615]]},"id":"8944c0a36cfffff-13b7fb557cd00449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36cdc4c8-13f73b211aed253a","8f44c0a36cd3949-13dffc3cacbbc9c7"]},"geometry":{"type":"LineString","coordinates":[[-83.61119260000001,32.8391615],[-83.61116050000001,32.8392122],[-83.6111305,32.8393007],[-83.6111283,32.8393567],[-83.61116270000001,32.8393928],[-83.611283,32.839510100000005],[-83.61143770000001,32.8396455],[-83.6114893,32.8396744],[-83.61153870000001,32.8396672],[-83.6115838,32.839632900000005],[-83.6116463,32.8395778]]},"id":"8944c0a36cfffff-13b77bea2357315e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59979200000001,32.8461506]},"id":"8f44c0b8dbb0490-13ff78120a74e04a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5997571,32.8460762]},"id":"8f44c0b8dbb2974-13bff827d75a4bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8dbb0490-13ff78120a74e04a","8f44c0b8dbb2974-13bff827d75a4bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.59979200000001,32.8461506],[-83.59958680000001,32.846222700000006],[-83.59937620000001,32.8462982],[-83.59934000000001,32.8462982],[-83.59929310000001,32.846276800000005],[-83.59919380000001,32.8460424],[-83.59919520000001,32.8460097],[-83.5992193,32.8459838],[-83.5995331,32.8459027],[-83.59959880000001,32.845901600000005],[-83.599635,32.845905],[-83.5996753,32.845932000000005],[-83.59971420000001,32.8459771],[-83.5997571,32.8460762]]},"id":"8844c0b8d9fffff-13d7f8dd85e57ef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8dbb0490-13ff78120a74e04a","8f44c0b8dbb2974-13bff827d75a4bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.5997571,32.8460762],[-83.59979200000001,32.8461506]]},"id":"8c44c0b8dbb29ff-13d7f81cee9bffde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8dbb0490-13ff78120a74e04a","8f44c0b8dbaed4a-17b7739b4653e00a"]},"geometry":{"type":"LineString","coordinates":[[-83.59979200000001,32.8461506],[-83.599855,32.846245200000006],[-83.5999408,32.8463725],[-83.60006960000001,32.846483],[-83.60021040000001,32.8465314],[-83.60036190000001,32.8465708],[-83.6005068,32.846606900000005],[-83.60109130000001,32.8467932],[-83.60124540000001,32.8468423],[-83.60144190000001,32.8468698],[-83.6016204,32.8468822]]},"id":"8944c0b8dbbffff-1797d5fdd19e4766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614115,32.841298]},"id":"8f44c0a3619190b-1397751a234950ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36196ab0-17ff36e63d81ccdf","8f44c0a3619190b-1397751a234950ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6133789,32.8408243],[-83.61366500000001,32.841012],[-83.614115,32.841298]]},"id":"8a44c0a36197fff-17973600b46735cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3619190b-1397751a234950ea","8f44c0a36182709-13fff4662fbe41c8"]},"geometry":{"type":"LineString","coordinates":[[-83.614115,32.841298],[-83.61440300000001,32.84147]]},"id":"8944c0a361bffff-13df34c02f1cf910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36182709-13fff4662fbe41c8","8f44c0a3618301a-1397736bb77e319d"]},"geometry":{"type":"LineString","coordinates":[[-83.61440300000001,32.84147],[-83.61480370000001,32.8417077]]},"id":"8a44c0a36187fff-13df33e8eb348963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6153183,32.842012600000004]},"id":"8f44c0a3618eb8a-13d7f22a1a833ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3618eb8a-13d7f22a1a833ac5","8f44c0a3618301a-1397736bb77e319d"]},"geometry":{"type":"LineString","coordinates":[[-83.61480370000001,32.8417077],[-83.6153183,32.842012600000004]]},"id":"8944c0a361bffff-13f7b2caeb0ce6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36006d91-17d72e33d178fc8a","8f44c0a3618eb8a-13d7f22a1a833ac5"]},"geometry":{"type":"LineString","coordinates":[[-83.6153183,32.842012600000004],[-83.616507,32.842717],[-83.616838,32.842921700000005],[-83.6169411,32.8430162]]},"id":"8844c0a361fffff-1397b0293ed15111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6270391,32.846162]},"id":"8f44c0a36ae5894-13f7558c9487fb2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a50581-17bfd418923e07d1","8f44c0a36ae5894-13f7558c9487fb2e"]},"geometry":{"type":"LineString","coordinates":[[-83.62763430000001,32.846457300000004],[-83.6275502,32.846397700000004],[-83.6274992,32.8463634],[-83.6274336,32.8462936],[-83.6273534,32.8462483],[-83.62724850000001,32.8462471],[-83.6271785,32.8462691],[-83.6271188,32.8462655],[-83.6270751,32.8462447],[-83.62704450000001,32.846217700000004],[-83.6270343,32.8461724],[-83.6270391,32.846162]]},"id":"8844c0a36bfffff-17d754d9e59a8d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6274044,32.8458333]},"id":"8f44c0a36a094db-13b7d4a8417869b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a094db-13b7d4a8417869b1","8f44c0a36ae5894-13f7558c9487fb2e"]},"geometry":{"type":"LineString","coordinates":[[-83.6270391,32.846162],[-83.62705030000001,32.846138100000005],[-83.6270805,32.846111300000004],[-83.6274044,32.8458333]]},"id":"8844c0a36bfffff-139f751d2bf54ea2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ae5894-13f7558c9487fb2e","8f44c0a36ae4822-139fb62f3be213f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6270391,32.846162],[-83.6269891,32.8461443],[-83.62691910000001,32.8461063],[-83.6268739,32.8460671],[-83.6268579,32.846036500000004],[-83.6268215,32.8459165],[-83.6267789,32.8458154]]},"id":"8844c0a36bfffff-139f15f0604da023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a0a5b5-13b7b6bae550bc85","8f44c0a36ae4822-139fb62f3be213f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6267789,32.8458154],[-83.6267224,32.845681400000004],[-83.6266801,32.845581],[-83.62663930000001,32.8455247],[-83.6265554,32.8454507]]},"id":"8944c0a36a3ffff-13b7366a4c6ef668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6261831,32.845188]},"id":"8f44c0a36a1d4a2-139797a39a060704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a0a5b5-13b7b6bae550bc85","8f44c0a36a1d4a2-139797a39a060704"]},"geometry":{"type":"LineString","coordinates":[[-83.6265554,32.8454507],[-83.6265212,32.845420600000004],[-83.6264105,32.845343500000006],[-83.62629390000001,32.8452712],[-83.6261831,32.845188]]},"id":"8a44c0a36a1ffff-13f7372ed2d09218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63755570000001,32.8476299]},"id":"8f44c0a3465116d-179efbdfbba9ad9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63758010000001,32.8477428]},"id":"8f44c0a34651328-17dffbd07f78e8e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34651328-17dffbd07f78e8e2","8f44c0a3465116d-179efbdfbba9ad9a"]},"geometry":{"type":"LineString","coordinates":[[-83.63755570000001,32.8476299],[-83.63758010000001,32.8477428]]},"id":"8b44c0a34651fff-17befbd8103c6673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6376173,32.8479487]},"id":"8f44c0a3465c406-13dffbb93e3d07f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34651328-17dffbd07f78e8e2","8f44c0a3465c406-13dffbb93e3d07f1"]},"geometry":{"type":"LineString","coordinates":[[-83.63758010000001,32.8477428],[-83.6375873,32.847776],[-83.63760710000001,32.8479023],[-83.6376173,32.8479487]]},"id":"8944c0a3467ffff-139ffbc50fb48cd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465c6c4-13d6fb8cba171fe7","8f44c0a3465c406-13dffbb93e3d07f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6376173,32.8479487],[-83.63764660000001,32.8480817],[-83.63768850000001,32.8481638]]},"id":"8b44c0a3465cfff-1396fba71a85b46b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377731,32.8484272]},"id":"8f44c0a34658a96-13fffb57d2ad0018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465c6c4-13d6fb8cba171fe7","8f44c0a34658a96-13fffb57d2ad0018"]},"geometry":{"type":"LineString","coordinates":[[-83.63768850000001,32.8481638],[-83.63775340000001,32.848291],[-83.6377731,32.8484272]]},"id":"8a44c0a3465ffff-13b6fb6b7ca8a2b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34659534-13f7fb1d639b1bd6","8f44c0a34658a96-13fffb57d2ad0018"]},"geometry":{"type":"LineString","coordinates":[[-83.6377731,32.8484272],[-83.63786660000001,32.848622500000005]]},"id":"8a44c0a3465ffff-13befb3aac10aa3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6388227,32.849507700000004]},"id":"8f44c0a309a53ab-179ef8c7d6fda4d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34659534-13f7fb1d639b1bd6","8f44c0a309a53ab-179ef8c7d6fda4d3"]},"geometry":{"type":"LineString","coordinates":[[-83.63786660000001,32.848622500000005],[-83.6380341,32.848809200000005],[-83.6381844,32.8489122],[-83.6384098,32.8490185],[-83.6385798,32.8490982],[-83.6386629,32.849138100000005],[-83.63874200000001,32.8492145],[-83.63878150000001,32.849280900000004],[-83.63880230000001,32.8493743],[-83.6388227,32.849507700000004]]},"id":"8644c0a37ffffff-13f7f9cf73403feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63875560000001,32.8496143]},"id":"8f44c0a309a1906-17f6f8f1cf2246aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a53ab-179ef8c7d6fda4d3","8f44c0a309a1906-17f6f8f1cf2246aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6388227,32.849507700000004],[-83.6388155,32.849541800000004],[-83.63879940000001,32.8495714],[-83.63875560000001,32.8496143]]},"id":"8b44c0a309a5fff-17d6f8d843fedb9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a1906-17f6f8f1cf2246aa","8f44c0a309a3881-17defa48f7d07c12"]},"geometry":{"type":"LineString","coordinates":[[-83.63875560000001,32.8496143],[-83.63868570000001,32.849690200000005],[-83.6385953,32.8497453],[-83.6385195,32.849780800000005],[-83.6383665,32.8498053],[-83.6382528,32.8498138],[-83.63820650000001,32.8498053]]},"id":"8a44c0a309a7fff-17bff99258840aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63802550000001,32.849744]},"id":"8f44c0a309a3d8a-17b6faba121cb249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a3d8a-17b6faba121cb249","8f44c0a309a3881-17defa48f7d07c12"]},"geometry":{"type":"LineString","coordinates":[[-83.63820650000001,32.8498053],[-83.6381727,32.849799100000006],[-83.63810120000001,32.849778300000004],[-83.63802550000001,32.849744]]},"id":"8b44c0a309a3fff-17defa8276683c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6378579,32.8496228]},"id":"8f44c0a309a2062-17f6fb22da40ca33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a3d8a-17b6faba121cb249","8f44c0a309a2062-17f6fb22da40ca33"]},"geometry":{"type":"LineString","coordinates":[[-83.63802550000001,32.849744],[-83.63796570000001,32.8497049],[-83.6378579,32.8496228]]},"id":"8a44c0a309a7fff-179ffaef1d244dc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63762770000001,32.8491495]},"id":"8f44c0a309b594b-13befbb2b5450e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a2062-17f6fb22da40ca33","8f44c0a309b594b-13befbb2b5450e17"]},"geometry":{"type":"LineString","coordinates":[[-83.6378579,32.8496228],[-83.6378054,32.8495665],[-83.6377267,32.849471],[-83.63768730000001,32.849409800000004],[-83.637664,32.849341200000005],[-83.63763920000001,32.849248200000005],[-83.637629,32.849164900000005],[-83.63762770000001,32.8491495]]},"id":"8944c0a309bffff-13dffb7ee6ee5738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465b2ac-13f6fbbc4dc216f6","8f44c0a309b594b-13befbb2b5450e17"]},"geometry":{"type":"LineString","coordinates":[[-83.63762770000001,32.8491495],[-83.6376247,32.8491135],[-83.637613,32.8490363],[-83.63761240000001,32.8490063]]},"id":"8944c0a309bffff-1397fbb7eeefe2ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6376276,32.8487829]},"id":"8f44c0a3465b8da-13dffbb2c2a1c9ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465b2ac-13f6fbbc4dc216f6","8f44c0a3465b8da-13dffbb2c2a1c9ab"]},"geometry":{"type":"LineString","coordinates":[[-83.63761240000001,32.8490063],[-83.6376116,32.8489604],[-83.6376116,32.848884500000004],[-83.6376276,32.8487829]]},"id":"8b44c0a3465bfff-139efbba7fe90305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465b8da-13dffbb2c2a1c9ab","8f44c0a346582d2-13f7fb7b3daa58c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6376276,32.8487829],[-83.6376582,32.8487217],[-83.63771650000001,32.848623700000005]]},"id":"8a44c0a3465ffff-13b7fb97dd97ba86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34658a96-13fffb57d2ad0018","8f44c0a346582d2-13f7fb7b3daa58c2"]},"geometry":{"type":"LineString","coordinates":[[-83.63771650000001,32.848623700000005],[-83.6377471,32.8485478],[-83.6377731,32.8484272]]},"id":"8b44c0a34658fff-13bffb670a1bbbea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6375491,32.8477291]},"id":"8f44c0a34651331-17d6fbe3d31fa9cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34651331-17d6fbe3d31fa9cc","8f44c0a346515a9-17f7fc9edc20d904"]},"geometry":{"type":"LineString","coordinates":[[-83.6372499,32.8475965],[-83.63742,32.8476717],[-83.6375491,32.8477291]]},"id":"8b44c0a34651fff-179ffc4153848ea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34651328-17dffbd07f78e8e2","8f44c0a34651331-17d6fbe3d31fa9cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6375491,32.8477291],[-83.63758010000001,32.8477428]]},"id":"8d44c0a3465133f-17dffbda2e9849fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a34651328-17dffbd07f78e8e2","8f44c0a3465db8e-13b6fa08e9337ed0"]},"geometry":{"type":"LineString","coordinates":[[-83.63758010000001,32.8477428],[-83.63771150000001,32.847825900000004],[-83.63789220000001,32.8479472],[-83.6380496,32.8480672],[-83.638309,32.848285100000005]]},"id":"8944c0a3467ffff-13f6fae7b570a4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3464ad4a-139ff9878e562e5e","8f44c0a3465db8e-13b6fa08e9337ed0"]},"geometry":{"type":"LineString","coordinates":[[-83.638309,32.848285100000005],[-83.63851600000001,32.8484822]]},"id":"8944c0a3467ffff-13dff9c8319559f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3464ad4a-139ff9878e562e5e","8f44c0a30916395-13d6f7b34f0d80c9"]},"geometry":{"type":"LineString","coordinates":[[-83.63851600000001,32.8484822],[-83.6387273,32.8487087],[-83.63893130000001,32.848914400000005],[-83.6390377,32.8490185],[-83.6391004,32.849083400000005],[-83.6391514,32.8491422],[-83.6391849,32.8491985],[-83.63920680000001,32.849257300000005],[-83.63922860000001,32.849327100000004],[-83.63926520000001,32.8493827]]},"id":"8644c0a37ffffff-13bff88c504a21da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3091625c-1796f7703028e1d6","8f44c0a30916395-13d6f7b34f0d80c9"]},"geometry":{"type":"LineString","coordinates":[[-83.63926520000001,32.8493827],[-83.6392898,32.8494201],[-83.6393642,32.8494874],[-83.63937250000001,32.849492600000005]]},"id":"8c44c0a309163ff-13f6f793f8df3987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30910381-17b6f6c5e4ea4bbb","8f44c0a3091625c-1796f7703028e1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.63937250000001,32.849492600000005],[-83.63952450000001,32.8495866],[-83.63962070000001,32.849694400000004],[-83.639645,32.849721800000005]]},"id":"8b44c0a30910fff-17d6f715d3938023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6398918,32.8500005]},"id":"8f44c0a30911723-17d6f62babf3068a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30910381-17b6f6c5e4ea4bbb","8f44c0a30911723-17d6f62babf3068a"]},"geometry":{"type":"LineString","coordinates":[[-83.639645,32.849721800000005],[-83.6398918,32.8500005]]},"id":"8a44c0a30917fff-17fff678c6e96be7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30911723-17d6f62babf3068a","8f44c0a30824d92-139ff41ae77c24dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6398918,32.8500005],[-83.64001130000001,32.850129],[-83.6402139,32.8503874],[-83.6403305,32.8505318],[-83.6404456,32.850681200000004],[-83.6404981,32.8507669],[-83.6405301,32.8508587],[-83.64054610000001,32.850948100000004],[-83.640568,32.8510216],[-83.64060740000001,32.851084],[-83.64064230000001,32.8511097],[-83.64073780000001,32.8511418]]},"id":"8944c0a3093ffff-17bef51a35743d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3465b8da-13dffbb2c2a1c9ab","8f44c0a3465b78d-13d7fc2afd73368f"]},"geometry":{"type":"LineString","coordinates":[[-83.6376276,32.8487829],[-83.6375131,32.848879000000004],[-83.6374353,32.8489522]]},"id":"8b44c0a3465bfff-139ffbef984e469b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6369659,32.849291300000004]},"id":"8f44c0a309b0132-1397fd505c56995c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309b0132-1397fd505c56995c","8f44c0a3465b78d-13d7fc2afd73368f"]},"geometry":{"type":"LineString","coordinates":[[-83.6374353,32.8489522],[-83.6373468,32.8490029],[-83.6372609,32.8490513],[-83.6371697,32.8491009],[-83.63708390000001,32.8491662],[-83.6370067,32.8492399],[-83.63698600000001,32.8492598],[-83.6369659,32.849291300000004]]},"id":"8944c0a309bffff-13b7fcc5dec35e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309b0132-1397fd505c56995c","8f44c0a30984299-17f7fb8990b403cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6369659,32.849291300000004],[-83.63691220000001,32.849383700000004],[-83.6368774,32.8494952],[-83.6368626,32.8496485],[-83.63688140000001,32.8497961],[-83.6369136,32.8498828],[-83.6369712,32.8499774],[-83.63702090000001,32.850042800000004],[-83.63712140000001,32.850110400000005],[-83.63719660000001,32.850132900000006],[-83.6372717,32.850141900000004],[-83.63729980000001,32.850140800000005],[-83.6375426,32.850196000000004],[-83.63768200000001,32.8502242],[-83.63769350000001,32.8502296]]},"id":"8944c0a309bffff-1797fcf3a2e8390d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6379905,32.8503278]},"id":"8f44c0a3098519d-179efacff523d782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3098519d-179efacff523d782","8f44c0a30984299-17f7fb8990b403cf"]},"geometry":{"type":"LineString","coordinates":[[-83.63769350000001,32.8502296],[-83.6377987,32.850279400000005],[-83.6379905,32.8503278]]},"id":"8a44c0a30987fff-1796fb2e47123fe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309b0132-1397fd505c56995c","8f44c0a309a2062-17f6fb22da40ca33"]},"geometry":{"type":"LineString","coordinates":[[-83.6378579,32.8496228],[-83.63777590000001,32.8496631],[-83.6376659,32.8496879],[-83.6375493,32.849690100000004],[-83.63742590000001,32.849675500000004],[-83.6373468,32.8496485],[-83.637269,32.8495933],[-83.63719250000001,32.849522300000004],[-83.63700340000001,32.8493465],[-83.6369659,32.849291300000004]]},"id":"8944c0a309bffff-17defc4f3b2d7c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63658790000001,32.850329200000004]},"id":"8f44c0a309957ae-179ffe3c9df59002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309957ae-179ffe3c9df59002","8f44c0a309b0132-1397fd505c56995c"]},"geometry":{"type":"LineString","coordinates":[[-83.6369659,32.849291300000004],[-83.6368961,32.8492654],[-83.63683850000001,32.8492778],[-83.6367754,32.8493195],[-83.63668960000001,32.849405100000006],[-83.63664,32.8494727],[-83.6365729,32.849536900000004],[-83.6364752,32.8496161],[-83.6363974,32.8497141],[-83.6363398,32.849811],[-83.6363398,32.849882],[-83.63637460000001,32.8499642],[-83.6364913,32.85014],[-83.63657040000001,32.8502977],[-83.63658790000001,32.850329200000004]]},"id":"8944c0a309bffff-17b6fe5182fee7a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a356d-179efa9812f4331b","8f44c0a309a3d8a-17b6faba121cb249"]},"geometry":{"type":"LineString","coordinates":[[-83.63802550000001,32.849744],[-83.6380625,32.849807000000006],[-83.6380786,32.8498593],[-83.63807990000001,32.8498895]]},"id":"8b44c0a309a3fff-17defaa49a183806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a356d-179efa9812f4331b","8f44c0a309851a4-1797fac6825b9f4b"]},"geometry":{"type":"LineString","coordinates":[[-83.63807990000001,32.8498895],[-83.63808080000001,32.8499098],[-83.6380539,32.850094],[-83.6380314,32.8502068],[-83.6380056,32.8502844]]},"id":"8944c0a309bffff-179ffaaa1283a1d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309851a4-1797fac6825b9f4b","8f44c0a3098519d-179efacff523d782"]},"geometry":{"type":"LineString","coordinates":[[-83.6380056,32.8502844],[-83.6379905,32.8503278]]},"id":"8d44c0a309851bf-1797facb410309dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3098519d-179efacff523d782","8f44c0a309856a6-17fffb15ea0d71ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6379905,32.8503278],[-83.63790780000001,32.850449600000005],[-83.63787860000001,32.8504829]]},"id":"8b44c0a30985fff-17d6faf1e652282e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6377499,32.8506264]},"id":"8f44c0a30981cb2-17dffb665b8620a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309856a6-17fffb15ea0d71ab","8f44c0a30981cb2-17dffb665b8620a6"]},"geometry":{"type":"LineString","coordinates":[[-83.63787860000001,32.8504829],[-83.63781540000001,32.8505551],[-83.6377499,32.8506264]]},"id":"8a44c0a30987fff-17befb3dd4c3af5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63770480000001,32.8506968]},"id":"8f44c0a3098024b-1797fb828e072d5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30981cb2-17dffb665b8620a6","8f44c0a3098024b-1797fb828e072d5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6377499,32.8506264],[-83.63770480000001,32.8506968]]},"id":"8b44c0a30981fff-17fffb747c36ac35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30983a13-179ffbc1a87b0b3f","8f44c0a3098024b-1797fb828e072d5d"]},"geometry":{"type":"LineString","coordinates":[[-83.63770480000001,32.8506968],[-83.63765430000001,32.8508088],[-83.63760380000001,32.8509143]]},"id":"8a44c0a30987fff-17dffba1b17d6a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6371245,32.8515698]},"id":"8f44c0a30999d19-13b7fced343a7f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30999d19-13b7fced343a7f21","8f44c0a30983a13-179ffbc1a87b0b3f"]},"geometry":{"type":"LineString","coordinates":[[-83.63760380000001,32.8509143],[-83.63757050000001,32.851058800000004],[-83.63753720000001,32.851161600000005],[-83.6375017,32.8512356],[-83.6374308,32.8513241],[-83.6373653,32.8513972],[-83.6372815,32.851459500000004],[-83.6371601,32.8515497],[-83.6371245,32.8515698]]},"id":"8944c0a309bffff-13f6fc355536e3a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6369571,32.8516117]},"id":"8f44c0a30998272-13d7fd55df9482cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30999d19-13b7fced343a7f21","8f44c0a30998272-13d7fd55df9482cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6371245,32.8515698],[-83.63709460000001,32.8515867],[-83.637043,32.851606600000004],[-83.63699890000001,32.8516138],[-83.6369571,32.8516117]]},"id":"8a44c0a3099ffff-13befd2027be5a14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309982a0-13bffd8886114248","8f44c0a30998272-13d7fd55df9482cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6369571,32.8516117],[-83.6369452,32.8516111],[-83.6368894,32.851592100000005],[-83.636876,32.8515838]]},"id":"8c44c0a309983ff-13befd6fb0082ca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6365918,32.851121]},"id":"8f44c0a3099eab1-139efe3a2f1ecc46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309982a0-13bffd8886114248","8f44c0a3099eab1-139efe3a2f1ecc46"]},"geometry":{"type":"LineString","coordinates":[[-83.636876,32.8515838],[-83.6368518,32.8515687],[-83.6368163,32.851519],[-83.6367733,32.8514405],[-83.6367336,32.8513728],[-83.6366831,32.8512636],[-83.6366036,32.851139100000005],[-83.6365918,32.851121]]},"id":"8a44c0a3099ffff-13b6fde44823f707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309a1906-17f6f8f1cf2246aa","8f44c0a309a0a2b-17b6f9960f23cc72"]},"geometry":{"type":"LineString","coordinates":[[-83.63875560000001,32.8496143],[-83.63865650000001,32.849590500000005],[-83.6385695,32.849566100000004],[-83.6385104,32.84953],[-83.63849280000001,32.8495182]]},"id":"8a44c0a309a7fff-17def9465b3fae0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309a600d-13d6fae8364b53fe","8f44c0a309a0a2b-17b6f9960f23cc72"]},"geometry":{"type":"LineString","coordinates":[[-83.63849280000001,32.8495182],[-83.63846740000001,32.849501100000005],[-83.6384373,32.8494632],[-83.63841690000001,32.849424400000004],[-83.6383933,32.8493901],[-83.63836640000001,32.849368500000004],[-83.63829340000001,32.8493279],[-83.63813970000001,32.849262],[-83.6380398,32.8492187],[-83.6379517,32.8491816]]},"id":"8a44c0a309a7fff-13bffa32a9d6c460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309a600d-13d6fae8364b53fe","8f44c0a309b594b-13befbb2b5450e17"]},"geometry":{"type":"LineString","coordinates":[[-83.6379517,32.8491816],[-83.6378851,32.8491645],[-83.63779170000001,32.8491573],[-83.63771750000001,32.849156400000005],[-83.63762770000001,32.8491495]]},"id":"8944c0a309bffff-13d7fb4cfc29d6bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309957ae-179ffe3c9df59002","8f44c0a3098002a-17f7fbd362e6d036"]},"geometry":{"type":"LineString","coordinates":[[-83.6375754,32.850463600000005],[-83.63748650000001,32.8503987],[-83.63738740000001,32.850354700000004],[-83.6372621,32.8503045],[-83.63713820000001,32.850286100000005],[-83.636975,32.850280000000005],[-83.63680880000001,32.850292200000005],[-83.63667620000001,32.8503143],[-83.63658790000001,32.850329200000004]]},"id":"8944c0a309bffff-179ffcff7d5abdc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3099569a-17dffe6089261804","8f44c0a309957ae-179ffe3c9df59002"]},"geometry":{"type":"LineString","coordinates":[[-83.63658790000001,32.850329200000004],[-83.63653040000001,32.8504208]]},"id":"8c44c0a309957ff-17befe4e800e9cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63586240000001,32.8514969]},"id":"8f44c0a30d69d4a-13ff90020cc436f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3099569a-17dffe6089261804","8f44c0a30d69d4a-13ff90020cc436f3"]},"geometry":{"type":"LineString","coordinates":[[-83.63653040000001,32.8504208],[-83.6363687,32.850557900000005],[-83.6362331,32.8506608],[-83.63611510000001,32.850740300000005],[-83.6360422,32.8507709],[-83.63590520000001,32.850807700000004],[-83.6356502,32.8508689],[-83.63557870000001,32.850913000000006],[-83.6355015,32.8509766],[-83.6354592,32.8510379],[-83.63543010000001,32.8511113],[-83.63544470000001,32.8511909],[-83.6354884,32.8512827],[-83.63554090000001,32.8513648],[-83.6355977,32.8514186],[-83.63567640000001,32.851448000000005],[-83.63586240000001,32.8514969]]},"id":"8744c0a30ffffff-17b7200b1708883e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3099eba2-17f6fe2392e55869","8f44c0a3098024b-1797fb828e072d5d"]},"geometry":{"type":"LineString","coordinates":[[-83.63770480000001,32.8506968],[-83.6374349,32.850725600000004],[-83.63724690000001,32.8507537],[-83.63703120000001,32.8507782],[-83.6369248,32.8508039],[-83.63681700000001,32.8508492],[-83.6367324,32.850914100000004],[-83.6366479,32.851020600000005],[-83.63662790000001,32.8510565]]},"id":"8944c0a309bffff-17d6fceb9706af72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3099eba2-17f6fe2392e55869","8f44c0a3099eab1-139efe3a2f1ecc46"]},"geometry":{"type":"LineString","coordinates":[[-83.63662790000001,32.8510565],[-83.6365918,32.851121]]},"id":"8c44c0a3099ebff-17fefe2ed063e7e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30d69d4a-13ff90020cc436f3","8f44c0a3099eab1-139efe3a2f1ecc46"]},"geometry":{"type":"LineString","coordinates":[[-83.6365918,32.851121],[-83.63650510000001,32.8511639],[-83.636387,32.8512263],[-83.6362821,32.851274100000005],[-83.6361189,32.8513084],[-83.63600810000001,32.851361000000004],[-83.6359192,32.8514137],[-83.63587840000001,32.851466300000006],[-83.63586240000001,32.8514969]]},"id":"8844c0a309fffff-13feff27ebe13952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30d69d4a-13ff90020cc436f3","8f44c0a308b096e-13defee6e5910e4c"]},"geometry":{"type":"LineString","coordinates":[[-83.63586240000001,32.8514969],[-83.6358871,32.8516157],[-83.6359221,32.8517381],[-83.63594110000001,32.851829900000006],[-83.6359381,32.851902200000005],[-83.63592650000001,32.851992800000005],[-83.63594110000001,32.852067500000004],[-83.63599210000001,32.8521324],[-83.6360664,32.8521838],[-83.636167,32.8522266],[-83.6362544,32.852242600000004],[-83.6363154,32.8522443]]},"id":"8844c0a309fffff-1397ffac63ad2ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308b096e-13defee6e5910e4c","8f44c0a30998272-13d7fd55df9482cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6363154,32.8522443],[-83.6363389,32.852245],[-83.63641030000001,32.8522328],[-83.6365153,32.8522034],[-83.63659840000001,32.8521458],[-83.6366508,32.8520577],[-83.6367208,32.8519205],[-83.6368286,32.8517822],[-83.6368826,32.851711200000004],[-83.6369571,32.8516117]]},"id":"8844c0a309fffff-13befe0919a834a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6371805,32.851615800000005]},"id":"8f44c0a30999d59-13d7fcca3828b513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30999d59-13d7fcca3828b513","8f44c0a30999d19-13b7fced343a7f21"]},"geometry":{"type":"LineString","coordinates":[[-83.6371245,32.8515698],[-83.6371805,32.851615800000005]]},"id":"8c44c0a30999dff-13b7fcdbb20d8cea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63812990000001,32.851606600000004]},"id":"8f44c0a309880c2-13befa78d22d6842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30999d59-13d7fcca3828b513","8f44c0a309880c2-13befa78d22d6842"]},"geometry":{"type":"LineString","coordinates":[[-83.6371805,32.851615800000005],[-83.6373518,32.8517565],[-83.6374509,32.851812800000005],[-83.63757190000001,32.851863],[-83.6376652,32.851887500000004],[-83.6377293,32.8518789],[-83.6378007,32.8518581],[-83.63787070000001,32.8518275],[-83.6379873,32.851743],[-83.6380747,32.8516598],[-83.6381214,32.8516157],[-83.63812990000001,32.851606600000004]]},"id":"8944c0a309bffff-13b7fb9e1e5380d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6382815,32.851413900000004]},"id":"8f44c0a3098882a-13d7fa1a1faf014a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3098882a-13d7fa1a1faf014a","8f44c0a309880c2-13befa78d22d6842"]},"geometry":{"type":"LineString","coordinates":[[-83.63812990000001,32.851606600000004],[-83.63818110000001,32.851552000000005],[-83.6382815,32.851413900000004]]},"id":"8b44c0a30988fff-1397fa47ec3b33fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309a53ab-179ef8c7d6fda4d3","8f44c0a30912548-1797f8528caaec68"]},"geometry":{"type":"LineString","coordinates":[[-83.6388227,32.849507700000004],[-83.6388486,32.8495526],[-83.6388967,32.8495955],[-83.6390104,32.849702]]},"id":"8944c0a309bffff-17dff8901fe36eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30912729-17d7f82c065b5d0b","8f44c0a30912548-1797f8528caaec68"]},"geometry":{"type":"LineString","coordinates":[[-83.6390104,32.849702],[-83.63905700000001,32.8497706],[-83.639072,32.849794200000005]]},"id":"8b44c0a30912fff-17b6f83f1273377d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30912729-17d7f82c065b5d0b","8f44c0a309acb02-1796f7ddd39e1ca5"]},"geometry":{"type":"LineString","coordinates":[[-83.639072,32.849794200000005],[-83.6391037,32.849844000000004],[-83.6391605,32.8499628],[-83.6391911,32.8500852],[-83.6391971,32.8501035]]},"id":"8944c0a309bffff-17bff7fedd968003"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6392201,32.850163200000004]},"id":"8f44c0a309aca28-17bef7cf77ca73a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309aca28-17bef7cf77ca73a3","8f44c0a309acb02-1796f7ddd39e1ca5"]},"geometry":{"type":"LineString","coordinates":[[-83.6391971,32.8501035],[-83.6392101,32.8501428],[-83.6392201,32.850163200000004]]},"id":"8c44c0a309acbff-17b7f7d73ba89301"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63946560000001,32.8504263]},"id":"8f44c0a309ad8c9-17def73602556c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309aca28-17bef7cf77ca73a3","8f44c0a309ad8c9-17def73602556c27"]},"geometry":{"type":"LineString","coordinates":[[-83.6392201,32.850163200000004],[-83.6392436,32.850211300000005],[-83.6393135,32.850290900000005],[-83.6393232,32.8503002],[-83.63942580000001,32.8503987],[-83.63946560000001,32.8504263]]},"id":"8a44c0a309affff-179ff788f7724640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63966020000001,32.851448600000005]},"id":"8f44c0a308342c2-13dff6bc66d0b7a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a309ad8c9-17def73602556c27","8f44c0a308342c2-13dff6bc66d0b7a7"]},"geometry":{"type":"LineString","coordinates":[[-83.63946560000001,32.8504263],[-83.6394841,32.8504391],[-83.63957880000001,32.8505211],[-83.63966190000001,32.850597],[-83.6397304,32.8506876],[-83.63976530000001,32.8507599],[-83.6397857,32.8508407],[-83.63980760000001,32.8509411],[-83.63982800000001,32.8510317],[-83.63983970000001,32.8511394],[-83.6398455,32.8512227],[-83.6398338,32.851274100000005],[-83.63982890000001,32.8512831],[-83.6398047,32.851328],[-83.6397464,32.8513843],[-83.63966020000001,32.851448600000005]]},"id":"8844c0a309fffff-1797f68da80d8714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384551,32.8509802]},"id":"8f44c0a3098c94e-17b6f9ad916eb2e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3098c94e-17b6f9ad916eb2e8","8f44c0a308342c2-13dff6bc66d0b7a7"]},"geometry":{"type":"LineString","coordinates":[[-83.63966020000001,32.851448600000005],[-83.6396283,32.8514724],[-83.6395657,32.8515104],[-83.63943160000001,32.851579],[-83.63932960000001,32.8516181],[-83.6392275,32.851636500000005],[-83.63910080000001,32.851638900000005],[-83.6390104,32.851638900000005],[-83.63886760000001,32.851619400000004],[-83.6387787,32.8515912],[-83.6387029,32.8515545],[-83.6386387,32.8515092],[-83.6385863,32.851456500000005],[-83.63852510000001,32.8513892],[-83.63850740000001,32.851367],[-83.63845950000001,32.8513071],[-83.6384245,32.8512545],[-83.6384041,32.8512129],[-83.6384056,32.85117],[-83.63840850000001,32.8511137],[-83.63842890000001,32.8510439],[-83.6384551,32.8509802]]},"id":"8844c0a309fffff-13fef8923d3b4fce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3098c94e-17b6f9ad916eb2e8","8f44c0a309acc8d-17f6f8a732f1c60b"]},"geometry":{"type":"LineString","coordinates":[[-83.6384551,32.8509802],[-83.6385455,32.850811300000004],[-83.6386111,32.8506803],[-83.6387277,32.8504158],[-83.63875970000001,32.8503326],[-83.6387801,32.8502603],[-83.63880780000001,32.8501685],[-83.63884420000001,32.850097500000004],[-83.6388749,32.850026500000006]]},"id":"8a44c0a309affff-179ff92310e6104a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30912729-17d7f82c065b5d0b","8f44c0a309acc8d-17f6f8a732f1c60b"]},"geometry":{"type":"LineString","coordinates":[[-83.6388749,32.850026500000006],[-83.6389594,32.8499199],[-83.6390308,32.849836700000004],[-83.639072,32.849794200000005]]},"id":"8944c0a309bffff-179ef86b087c62e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400275,32.852083400000005]},"id":"8f44c0a30831acd-13fef5d6db31416d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6401026,32.8520271]},"id":"8f44c0a30831a65-13d6f5a7e22b54a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30831acd-13fef5d6db31416d","8f44c0a30831a65-13d6f5a7e22b54a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6400275,32.852083400000005],[-83.6401026,32.8520271]]},"id":"8c44c0a30831bff-13d6f5bf6bf24537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30824d92-139ff41ae77c24dc","8f44c0a30831a65-13d6f5a7e22b54a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6401026,32.8520271],[-83.64023800000001,32.851938100000005],[-83.6403708,32.851809700000004],[-83.640462,32.8517117],[-83.6405572,32.8515855],[-83.6406189,32.8514683],[-83.6406833,32.851333100000005],[-83.64072750000001,32.8512238],[-83.64073780000001,32.8511418]]},"id":"8844c0a309fffff-13def4bb8f051fa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3082345a-13d7f4a8b5fe9f8b","8f44c0a30804824-1396f5250169a801"]},"geometry":{"type":"LineString","coordinates":[[-83.64051090000001,32.852261],[-83.64031200000001,32.8521486]]},"id":"8a44c0a30827fff-13b6f4e6d10a9703"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30804824-1396f5250169a801","8f44c0a30831a65-13d6f5a7e22b54a5"]},"geometry":{"type":"LineString","coordinates":[[-83.64031200000001,32.8521486],[-83.6401026,32.8520271]]},"id":"8944c0a3083ffff-13fef5667a032384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63987610000001,32.8517723]},"id":"8f44c0a308319b4-13b7f63574fd8915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308319b4-13b7f63574fd8915","8f44c0a30831a65-13d6f5a7e22b54a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6401026,32.8520271],[-83.6400344,32.8519886],[-83.6400102,32.8519559],[-83.63987610000001,32.8517723]]},"id":"8b44c0a30831fff-13fff5f406b5e23f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3083578e-13f7f661e7f3c740","8f44c0a308319b4-13b7f63574fd8915"]},"geometry":{"type":"LineString","coordinates":[[-83.63987610000001,32.8517723],[-83.63980500000001,32.8516631]]},"id":"8c44c0a308357ff-1397f64bb6f35202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6397743,32.8516159]},"id":"8f44c0a308354eb-13d7f6751c19b43e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3083578e-13f7f661e7f3c740","8f44c0a308354eb-13d7f6751c19b43e"]},"geometry":{"type":"LineString","coordinates":[[-83.63980500000001,32.8516631],[-83.6397743,32.8516159]]},"id":"8b44c0a30835fff-13d6f66b759a7b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308354eb-13d7f6751c19b43e","8f44c0a308342c2-13dff6bc66d0b7a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6397743,32.8516159],[-83.6397675,32.851605500000005],[-83.63966020000001,32.851448600000005]]},"id":"8a44c0a30837fff-139ff698a3e89f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639329,32.851254000000004]},"id":"8f44c0a30834499-13f7f78b61cca348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308342c2-13dff6bc66d0b7a7","8f44c0a30834499-13f7f78b61cca348"]},"geometry":{"type":"LineString","coordinates":[[-83.63966020000001,32.851448600000005],[-83.63957570000001,32.851407300000005],[-83.63946800000001,32.851340400000005],[-83.639329,32.851254000000004]]},"id":"8a44c0a30837fff-13b6f724f7ba83e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309ab842-179ff89596eaf176","8f44c0a30834499-13f7f78b61cca348"]},"geometry":{"type":"LineString","coordinates":[[-83.639329,32.851254000000004],[-83.6392967,32.851280200000005],[-83.6392672,32.8512925],[-83.6392289,32.851305],[-83.6391868,32.851314],[-83.6391473,32.851317900000005],[-83.6391049,32.851317300000005],[-83.63906030000001,32.8513137],[-83.63901510000001,32.8513061],[-83.6389674,32.8512967],[-83.63892680000001,32.8512792],[-83.63889420000001,32.851260100000005],[-83.6388649,32.851234000000005],[-83.6388448,32.8512033],[-83.6388314,32.8511675],[-83.6388314,32.8511322],[-83.6388354,32.8510943],[-83.63883890000001,32.85107],[-83.63884780000001,32.8510405],[-83.638872,32.850977400000005],[-83.63890310000001,32.8509151]]},"id":"8844c0a309fffff-13d7f85adeef7079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309ab842-179ff89596eaf176","8f44c0a309aca28-17bef7cf77ca73a3"]},"geometry":{"type":"LineString","coordinates":[[-83.63890310000001,32.8509151],[-83.63891050000001,32.8508994],[-83.6389826,32.8507112],[-83.6389977,32.8506718],[-83.6390781,32.850460000000005],[-83.639117,32.8503439],[-83.6391371,32.8502887],[-83.63916400000001,32.8502279],[-83.6391868,32.8501896],[-83.6392201,32.850163200000004]]},"id":"8a44c0a309affff-179ef83952c51aba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309a904c-17bef79de14f3089","8f44c0a30834499-13f7f78b61cca348"]},"geometry":{"type":"LineString","coordinates":[[-83.639329,32.851254000000004],[-83.63932890000001,32.851196800000004],[-83.63932220000001,32.851066100000004],[-83.6392994,32.8509613]]},"id":"8844c0a309fffff-1397f7907477173a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309ad8c9-17def73602556c27","8f44c0a309a904c-17bef79de14f3089"]},"geometry":{"type":"LineString","coordinates":[[-83.6392994,32.8509613],[-83.6392967,32.8509253],[-83.6393101,32.8508599],[-83.63932630000001,32.8508086],[-83.6393383,32.8507709],[-83.6393611,32.8506943],[-83.6394094,32.8505952],[-83.63943350000001,32.850476900000004],[-83.63946560000001,32.8504263]]},"id":"8a44c0a309affff-1797f77216c7442f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a309ad8c9-17def73602556c27","8f44c0a3091ec84-17d7f6a9f650ede1"]},"geometry":{"type":"LineString","coordinates":[[-83.63946560000001,32.8504263],[-83.6395301,32.8503507],[-83.6395931,32.8502932],[-83.6396897,32.8502132]]},"id":"8944c0a3093ffff-1797f6f2a2528e3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3091ec84-17d7f6a9f650ede1","8f44c0a30911723-17d6f62babf3068a"]},"geometry":{"type":"LineString","coordinates":[[-83.6396897,32.8502132],[-83.63976480000001,32.8501265],[-83.63985190000001,32.850042],[-83.6398918,32.8500005]]},"id":"8a44c0a30917fff-1797f66bde4a5eb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a308354eb-13d7f6751c19b43e","8f44c0a3098882a-13d7fa1a1faf014a"]},"geometry":{"type":"LineString","coordinates":[[-83.6397743,32.8516159],[-83.6396213,32.851691],[-83.6394751,32.8517631],[-83.6393316,32.8518026],[-83.6392122,32.8518172],[-83.63909550000001,32.851827400000005],[-83.6389453,32.851818300000005],[-83.63883270000001,32.851806],[-83.6387361,32.851766500000004],[-83.63859260000001,32.851697800000004],[-83.63851620000001,32.8516471],[-83.63841690000001,32.8515705],[-83.6383459,32.851490500000004],[-83.63833170000001,32.8514736],[-83.6382815,32.851413900000004]]},"id":"8844c0a309fffff-1397f85c695c41eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63816080000001,32.8512043]},"id":"8f44c0a3098c7ad-13d6fa658fb097ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098882a-13d7fa1a1faf014a","8f44c0a3098c7ad-13d6fa658fb097ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6382815,32.851413900000004],[-83.63824530000001,32.851326],[-83.6381796,32.8512235],[-83.63816080000001,32.8512043]]},"id":"8a44c0a3098ffff-1397fa3bb769e143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098c94e-17b6f9ad916eb2e8","8f44c0a3098c7ad-13d6fa658fb097ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6384551,32.8509802],[-83.6382882,32.8511108],[-83.63816080000001,32.8512043]]},"id":"8b44c0a3098cfff-17fffa090333d68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098c7ad-13d6fa658fb097ed","8f44c0a3098eb59-13defaa895d634a2"]},"geometry":{"type":"LineString","coordinates":[[-83.63816080000001,32.8512043],[-83.63808970000001,32.8512325],[-83.63805350000001,32.8512494]]},"id":"8a44c0a3098ffff-13d6fa874cf418d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6375184,32.8514995]},"id":"8f44c0a3098acb1-13fffbf708637bf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098eb59-13defaa895d634a2","8f44c0a3098acb1-13fffbf708637bf1"]},"geometry":{"type":"LineString","coordinates":[[-83.63805350000001,32.8512494],[-83.63799320000001,32.851335],[-83.6378993,32.8514725],[-83.63782950000001,32.8515547],[-83.6377866,32.8515784],[-83.63773830000001,32.851596400000005],[-83.6377008,32.851598700000004],[-83.63765120000001,32.8515874],[-83.6376056,32.851567100000004],[-83.6375385,32.8515243],[-83.6375184,32.8514995]]},"id":"8a44c0a3098ffff-13f7fb3fcdb92393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098e892-17fffb47620de5c2","8f44c0a30981cb2-17dffb665b8620a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6377499,32.8506264],[-83.6377545,32.8507066],[-83.63775580000001,32.850773100000005],[-83.6377666,32.850849700000005],[-83.637792,32.8509297],[-83.6378028,32.8510074],[-83.6378028,32.8510829],[-83.6377994,32.8510963]]},"id":"8944c0a309bffff-17fefb562d03bc2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3098acb1-13fffbf708637bf1","8f44c0a3098e892-17fffb47620de5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6377994,32.8510963],[-83.637788,32.851141500000004],[-83.6377612,32.8512057],[-83.63767700000001,32.8513226],[-83.6376687,32.8513341],[-83.6375761,32.8514434],[-83.6375184,32.8514995]]},"id":"8a44c0a3098ffff-1396fb93f8db1c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30999d59-13d7fcca3828b513","8f44c0a3098acb1-13fffbf708637bf1"]},"geometry":{"type":"LineString","coordinates":[[-83.6375184,32.8514995],[-83.6374273,32.851531300000005],[-83.6373253,32.8515685],[-83.6371805,32.851615800000005]]},"id":"8944c0a309bffff-13b6fc606509bf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6383256,32.8517616]},"id":"8f44c0a30989536-139ff9fe85ec59ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30989536-139ff9fe85ec59ad","8f44c0a308319b4-13b7f63574fd8915"]},"geometry":{"type":"LineString","coordinates":[[-83.63987610000001,32.8517723],[-83.6395554,32.8519047],[-83.6392819,32.851998200000004],[-83.63913430000001,32.8520252],[-83.6389238,32.8520376],[-83.63874410000001,32.8520072],[-83.6385496,32.8519294],[-83.6384584,32.8518573],[-83.6383256,32.8517616]]},"id":"8844c0a309fffff-139ff82292b47489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30989536-139ff9fe85ec59ad","8f44c0a309880c2-13befa78d22d6842"]},"geometry":{"type":"LineString","coordinates":[[-83.6383256,32.8517616],[-83.6382184,32.8516838],[-83.63812990000001,32.851606600000004]]},"id":"8a44c0a3098ffff-13fffa3cca390bed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30989536-139ff9fe85ec59ad","8f44c0a30812b03-13fef9a1452fead2"]},"geometry":{"type":"LineString","coordinates":[[-83.6383256,32.8517616],[-83.63822370000001,32.8518582],[-83.6381618,32.8519621],[-83.6381327,32.8520233],[-83.63814,32.852118000000004],[-83.6381727,32.852240300000005],[-83.638271,32.852384],[-83.6383656,32.852573500000005],[-83.6384202,32.852665200000004],[-83.63847480000001,32.8526988]]},"id":"8844c0a309fffff-13d7fa2b478a8919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30812b03-13fef9a1452fead2","8f44c0a3082e526-13d6f3c9e5383bad"]},"geometry":{"type":"LineString","coordinates":[[-83.63847480000001,32.8526988],[-83.6385839,32.8527355],[-83.6387404,32.852778300000004],[-83.6388896,32.8528302],[-83.6390715,32.85287],[-83.63929350000001,32.852900500000004],[-83.63936620000001,32.852900500000004],[-83.63970830000001,32.852921900000005],[-83.63988660000001,32.8529372],[-83.6400758,32.852909700000005],[-83.6402868,32.8528394],[-83.6404942,32.8527141],[-83.64065430000001,32.8525918],[-83.64079620000001,32.8524726],[-83.6408674,32.8524291]]},"id":"8944c0a3083ffff-17bff69c1c8030c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34651331-17d6fbe3d31fa9cc","8f44c0a3465ea06-13b7fbfc24fc3d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.6375491,32.8477291],[-83.6374619,32.847837000000006],[-83.6372836,32.8480579],[-83.63717630000001,32.8481919],[-83.6371173,32.8482685],[-83.6371039,32.848305700000004],[-83.637128,32.8483395],[-83.6371575,32.8483632],[-83.6372044,32.8483699],[-83.63725140000001,32.8483587],[-83.637293,32.848337300000004],[-83.63739620000001,32.8482246],[-83.63751020000001,32.848086]]},"id":"8944c0a3467ffff-13bffc7346a999d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3465c406-13dffbb93e3d07f1","8f44c0a3465ea06-13b7fbfc24fc3d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.63751020000001,32.848086],[-83.63758,32.847984600000004],[-83.6376173,32.8479487]]},"id":"8a44c0a3465ffff-13fffbdc68b92621"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6430876,32.8547201]},"id":"8f44c0a308459b2-13defe5e4bdffc72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30861b9d-1397fca665b440a4","8f44c0a308459b2-13defe5e4bdffc72"]},"geometry":{"type":"LineString","coordinates":[[-83.64379140000001,32.8543773],[-83.64364420000001,32.854449],[-83.6430876,32.8547201]]},"id":"8944c0a3087ffff-13fefd825aac77be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6428202,32.854846]},"id":"8f44c0a308455b1-13b6ef0564bb606a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308459b2-13defe5e4bdffc72","8f44c0a308455b1-13b6ef0564bb606a"]},"geometry":{"type":"LineString","coordinates":[[-83.6430876,32.8547201],[-83.6428202,32.854846]]},"id":"8b44c0a30845fff-13fffeb1d3c16e21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6436357,32.8553918]},"id":"8f44c0a3086bd9d-13ffed07b5e41bac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6433897,32.855113]},"id":"8f44c0a3086ad5b-13dfeda17e59ee89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3086bd9d-13ffed07b5e41bac","8f44c0a3086ad5b-13dfeda17e59ee89"]},"geometry":{"type":"LineString","coordinates":[[-83.6436357,32.8553918],[-83.64343550000001,32.8551595],[-83.6433897,32.855113]]},"id":"8a44c0a3086ffff-13b6ed53c506a38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.643321,32.8550435]},"id":"8f44c0a3086ad13-13b6fdcc66579fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3086ad5b-13dfeda17e59ee89","8f44c0a3086ad13-13b6fdcc66579fd3"]},"geometry":{"type":"LineString","coordinates":[[-83.6433897,32.855113],[-83.643321,32.8550435]]},"id":"8c44c0a3086adff-13b7fdb6e5c77b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308459b2-13defe5e4bdffc72","8f44c0a3086ad13-13b6fdcc66579fd3"]},"geometry":{"type":"LineString","coordinates":[[-83.643321,32.8550435],[-83.6433118,32.8550342],[-83.6432391,32.854930200000005],[-83.6430876,32.8547201]]},"id":"8944c0a3087ffff-13bffe15859a3f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64283520000001,32.854358600000005]},"id":"8f44c0a3086229d-17f6eefc0e3677ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308459b2-13defe5e4bdffc72","8f44c0a3086229d-17f6eefc0e3677ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6430876,32.8547201],[-83.64283520000001,32.854358600000005]]},"id":"8944c0a3087ffff-13f7eead2fabe091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30870541-17f7f1565a5ce1cb","8f44c0a3086229d-17f6eefc0e3677ff"]},"geometry":{"type":"LineString","coordinates":[[-83.64283520000001,32.854358600000005],[-83.6426496,32.8540988],[-83.6426146,32.8540243],[-83.6425849,32.8539611],[-83.6425031,32.8538529],[-83.642436,32.8537752],[-83.6423877,32.853724500000006],[-83.64234880000001,32.853717700000004],[-83.6422979,32.853729],[-83.6422093,32.8537696],[-83.641948,32.8538853],[-83.64187150000001,32.8539192]]},"id":"8944c0a3087ffff-17f7f003d49ece88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64144440000001,32.854724000000004]},"id":"8f44c0a308542d9-13def26145c5588e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30870541-17f7f1565a5ce1cb","8f44c0a308542d9-13def26145c5588e"]},"geometry":{"type":"LineString","coordinates":[[-83.64187150000001,32.8539192],[-83.6417145,32.854000500000005],[-83.64163860000001,32.854075],[-83.64152030000001,32.854211],[-83.6414621,32.85437],[-83.6414549,32.8545147],[-83.64144440000001,32.854724000000004]]},"id":"8944c0a3087ffff-17bef21431ab06b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6414013,32.855531500000005]},"id":"8f44c0a3085ec1c-13d7f27c323435f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308542d9-13def26145c5588e","8f44c0a3085ec1c-13d7f27c323435f6"]},"geometry":{"type":"LineString","coordinates":[[-83.64144440000001,32.854724000000004],[-83.6414221,32.8549018],[-83.6413893,32.8551449],[-83.64137480000001,32.8552855],[-83.64139300000001,32.855394000000004],[-83.64140400000001,32.8554654],[-83.64140040000001,32.8555143],[-83.6414013,32.855531500000005]]},"id":"8944c0a3087ffff-13d6f27aa1b08032"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3085d62e-179ef064f3db36ce","8f44c0a3085ec1c-13d7f27c323435f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6414013,32.855531500000005],[-83.64140730000001,32.8556441],[-83.64144730000001,32.8557969],[-83.64151100000001,32.855933],[-83.6415765,32.8559971],[-83.64173840000001,32.856053700000004],[-83.6418603,32.856072000000005],[-83.6420186,32.8560782],[-83.64221140000001,32.856053700000004],[-83.6422577,32.8560328]]},"id":"8a44c0a3085ffff-13d7f1b3b9140ca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3085d62e-179ef064f3db36ce","8f44c0a3086ad5b-13dfeda17e59ee89"]},"geometry":{"type":"LineString","coordinates":[[-83.6422577,32.8560328],[-83.6423297,32.856000200000004],[-83.6424843,32.8559253],[-83.64262260000001,32.855845800000004],[-83.6427591,32.8557878],[-83.642881,32.8557434],[-83.6430119,32.855670100000005],[-83.6430811,32.8556242],[-83.64316480000001,32.8555555],[-83.6432303,32.8554592],[-83.6432721,32.8553797],[-83.64331580000001,32.8552911],[-83.64337040000001,32.8551933],[-83.6433897,32.855113]]},"id":"8944c0a3087ffff-13b6eed01e3ee19b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3086229d-17f6eefc0e3677ff","8f44c0a308444b2-13feffffc8f888da"]},"geometry":{"type":"LineString","coordinates":[[-83.64283520000001,32.854358600000005],[-83.64260900000001,32.8544776],[-83.64241960000001,32.8545773]]},"id":"8944c0a3087ffff-13beff7def3a385f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308444b2-13feffffc8f888da","8f44c0a30855b25-13f7f1169a1de335"]},"geometry":{"type":"LineString","coordinates":[[-83.64241960000001,32.8545773],[-83.64223510000001,32.8546636],[-83.64213210000001,32.854711800000004],[-83.6419975,32.8547454],[-83.6419735,32.8547454]]},"id":"8a44c0a30847fff-13bff088ce6b5a18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a308542d9-13def26145c5588e","8f44c0a30855b25-13f7f1169a1de335"]},"geometry":{"type":"LineString","coordinates":[[-83.6419735,32.8547454],[-83.6419429,32.8547454],[-83.6418155,32.8547576],[-83.6416736,32.8547393],[-83.64144440000001,32.854724000000004]]},"id":"8944c0a3087ffff-13f7f1bbd5d4047d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30851374-13f6f195fd6fc3d0","8f44c0a3085ec1c-13d7f27c323435f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6414013,32.855531500000005],[-83.64176970000001,32.8553538]]},"id":"8944c0a3087ffff-139ff2091f4273b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30851374-13f6f195fd6fc3d0","8f44c0a30842b88-13d7f06a094ec630"]},"geometry":{"type":"LineString","coordinates":[[-83.64176970000001,32.8553538],[-83.6422496,32.8551262]]},"id":"8944c0a3087ffff-139ff100070305a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6425134,32.8550011]},"id":"8f44c0a30840198-1397ffc52c0a8f34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30840198-1397ffc52c0a8f34","8f44c0a30842b88-13d7f06a094ec630"]},"geometry":{"type":"LineString","coordinates":[[-83.6422496,32.8551262],[-83.6425134,32.8550011]]},"id":"8a44c0a30847fff-13bef0179f5b0fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30841c41-13b7feccb822dc5d","8f44c0a3086ad13-13b6fdcc66579fd3"]},"geometry":{"type":"LineString","coordinates":[[-83.643321,32.8550435],[-83.6430323,32.855199500000005],[-83.6429109,32.8552533]]},"id":"8944c0a3087ffff-13f7fe4b8efa9e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64234280000001,32.855529600000004]},"id":"8f44c0a30843716-13d6f02fc70ae185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a30841c41-13b7feccb822dc5d","8f44c0a30843716-13d6f02fc70ae185"]},"geometry":{"type":"LineString","coordinates":[[-83.6429109,32.8552533],[-83.6428704,32.855271300000005],[-83.64253380000001,32.855444],[-83.64234280000001,32.855529600000004]]},"id":"8a44c0a30847fff-13ffff7d84c8a001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a30840198-1397ffc52c0a8f34","8f44c0a308446d4-1396ffa61ab4c325"]},"geometry":{"type":"LineString","coordinates":[[-83.6425631,32.8547887],[-83.64252060000001,32.8548209],[-83.6424925,32.8548628],[-83.64248140000001,32.854910000000004],[-83.64248860000001,32.8549577],[-83.6425134,32.8550011]]},"id":"8a44c0a30847fff-13d6efca64cb23ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a30840a15-13b7ff2d894abd27","8f44c0a30840198-1397ffc52c0a8f34"]},"geometry":{"type":"LineString","coordinates":[[-83.6425134,32.8550011],[-83.6425509,32.8550343],[-83.6425985,32.8550565],[-83.64265180000001,32.855065700000004],[-83.642706,32.855061],[-83.642756,32.8550429]]},"id":"8b44c0a30840fff-13b7ef7c5cf1e434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a30840a15-13b7ff2d894abd27","8f44c0a308455b1-13b6ef0564bb606a"]},"geometry":{"type":"LineString","coordinates":[[-83.642756,32.8550429],[-83.64279640000001,32.8550138],[-83.64282490000001,32.8549761],[-83.6428389,32.854933],[-83.64283730000001,32.8548884],[-83.6428202,32.854846]]},"id":"8a44c0a30847fff-13ffef07e2a891ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a348f3201-1796ead56f652abe","8f44c0a348f14c3-17fefa65e2944517"]},"geometry":{"type":"LineString","coordinates":[[-83.6447138,32.8338893],[-83.64466,32.833954],[-83.64453540000001,32.8341038]]},"id":"8a44c0a348f7fff-17bfea9daaa27f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6439895,32.8346654]},"id":"8f44c0a348d0260-17f7ec2a94779933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a348d0260-17f7ec2a94779933","8f44c0a348f3201-1796ead56f652abe"]},"geometry":{"type":"LineString","coordinates":[[-83.64453540000001,32.8341038],[-83.6443022,32.8343858],[-83.6442655,32.834427500000004],[-83.64422280000001,32.834476],[-83.64416680000001,32.834532],[-83.6441131,32.834577100000004],[-83.6440395,32.834632],[-83.644006,32.8346558],[-83.6439895,32.8346654]]},"id":"8944c0a348fffff-17bffb7708abfdbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6435991,32.834770500000005]},"id":"8f44c0a348d3cac-13b7fd1e91918ed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a348d0260-17f7ec2a94779933","8f44c0a348d3cac-13b7fd1e91918ed4"]},"geometry":{"type":"LineString","coordinates":[[-83.6439895,32.8346654],[-83.6439653,32.8346796],[-83.6438962,32.8347108],[-83.6438131,32.8347391],[-83.6437228,32.8347599],[-83.643652,32.8347688],[-83.6435991,32.834770500000005]]},"id":"8a44c0a348d7fff-139efca1d9d05fe3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34bb4da5-139ee49f02ba94b3","8f44c0a34ba672a-13d6e2772609265b"]},"geometry":{"type":"LineString","coordinates":[[-83.64708,32.83514],[-83.647963,32.835665]]},"id":"8744c0a34ffffff-13bef38b123bab6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34968696-17b7fc53a15a9818","8f44c0a3494c674-13fffd718683334c"]},"geometry":{"type":"LineString","coordinates":[[-83.65002000000001,32.831637],[-83.6504774,32.8310898]]},"id":"8944c0a3497ffff-17d6fce29b8d4822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6506796,32.8308478]},"id":"8f44c0a34968c69-179ffbd545bb5cd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34968696-17b7fc53a15a9818","8f44c0a34968c69-179ffbd545bb5cd3"]},"geometry":{"type":"LineString","coordinates":[[-83.6504774,32.8310898],[-83.6506796,32.8308478]]},"id":"8b44c0a34968fff-17dfdc1473739482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6555393,32.8272058]},"id":"8f44c0b1a26d36e-17bfeff7fb7b7e83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a26d36e-17bfeff7fb7b7e83","8f44c0b1a26dd80-17ded0bac1e29e7d"]},"geometry":{"type":"LineString","coordinates":[[-83.6555393,32.8272058],[-83.6555149,32.8271597],[-83.6554485,32.8270661],[-83.655372,32.8269843],[-83.6553076,32.826925800000005],[-83.6552276,32.8268677]]},"id":"8a44c0b1a26ffff-17bed050988469ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654345,32.826662400000004]},"id":"8f44c0b1a26336e-17ded2e26bfed347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a26dd80-17ded0bac1e29e7d","8f44c0b1a26336e-17ded2e26bfed347"]},"geometry":{"type":"LineString","coordinates":[[-83.6552276,32.8268677],[-83.6551242,32.8268082],[-83.6550194,32.8267588],[-83.6548916,32.8267161],[-83.6547803,32.8266902],[-83.654655,32.826672300000006],[-83.654345,32.826662400000004]]},"id":"8944c0b1a27ffff-17fef1c774e96360"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a24401d-17d6f47e7260bcf7","8f44c0b1a26336e-17ded2e26bfed347"]},"geometry":{"type":"LineString","coordinates":[[-83.654345,32.826662400000004],[-83.65368570000001,32.826653]]},"id":"8944c0b1a27ffff-17d7d3b06a59c88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68974370000001,32.907217100000004]},"id":"8f44c0a0515338d-1396fc76378dcba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0515338d-1396fc76378dcba9","8f44c0a0510a431-17be7f68bbe74764"]},"geometry":{"type":"LineString","coordinates":[[-83.68853650000001,32.9056453],[-83.689538,32.906986],[-83.68969200000001,32.907162],[-83.68974370000001,32.907217100000004]]},"id":"8844c0a051fffff-179e7df4f1e711d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905828,32.9079366]},"id":"8f44c0a05159c93-13d67a69c62e6006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0515338d-1396fc76378dcba9","8f44c0a05159c93-13d67a69c62e6006"]},"geometry":{"type":"LineString","coordinates":[[-83.68974370000001,32.907217100000004],[-83.68986100000001,32.907342],[-83.690217,32.90766],[-83.6905828,32.9079366]]},"id":"8944c0a0517ffff-13fffb771806c66d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69068510000001,32.908008800000005]},"id":"8f44c0a05159cc9-13f7fa29db6638de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05159cc9-13f7fa29db6638de","8f44c0a05159c93-13d67a69c62e6006"]},"geometry":{"type":"LineString","coordinates":[[-83.6905828,32.9079366],[-83.690623,32.907967],[-83.69068510000001,32.908008800000005]]},"id":"8c44c0a05159dff-13df7a4a16a9ad1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69766990000001,32.912771400000004]},"id":"8f44c0a2adb2234-1796691c58379ae0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05159cc9-13f7fa29db6638de","8f44c0a2adb2234-1796691c58379ae0"]},"geometry":{"type":"LineString","coordinates":[[-83.69068510000001,32.908008800000005],[-83.693667,32.910017],[-83.69390100000001,32.910175],[-83.69491400000001,32.910852000000006],[-83.69708700000001,32.912332],[-83.69764500000001,32.912751],[-83.69766990000001,32.912771400000004]]},"id":"8744c0a05ffffff-13b7719b64d36737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69851480000001,32.913481100000006]},"id":"8f44c0a2ad80c84-13dff70c47eb8791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2adb2234-1796691c58379ae0","8f44c0a2ad80c84-13dff70c47eb8791"]},"geometry":{"type":"LineString","coordinates":[[-83.69766990000001,32.912771400000004],[-83.698158,32.913171000000006],[-83.69851480000001,32.913481100000006]]},"id":"8944c0a2adbffff-17fe6812baf4b133"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ac0d164-13967db180cb81e5","8f44c0a2ad80c84-13dff70c47eb8791"]},"geometry":{"type":"LineString","coordinates":[[-83.69851480000001,32.913481100000006],[-83.699022,32.913922],[-83.70106100000001,32.915711],[-83.70234640000001,32.9168455]]},"id":"8844c0a2adfffff-17f7e25da56c5636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70385780000001,32.9180781]},"id":"8f44c0a2ac40866-1396da00e0740b9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ac0d164-13967db180cb81e5","8f44c0a2ac40866-1396da00e0740b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.70234640000001,32.9168455],[-83.70269900000001,32.917164],[-83.703564,32.917859],[-83.70385780000001,32.9180781]]},"id":"8844c0a2adfffff-139f7bdf7cabe845"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70440880000001,32.9184736]},"id":"8f44c0a2ac6a448-17fe58a881eb24f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ac6a448-17fe58a881eb24f3","8f44c0a2ac40866-1396da00e0740b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.70385780000001,32.9180781],[-83.704036,32.918211],[-83.70440880000001,32.9184736]]},"id":"8944c0a2ac7ffff-179779557906712b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ac6a448-17fe58a881eb24f3","8f44c0a2a136044-179ed67252cdd171"]},"geometry":{"type":"LineString","coordinates":[[-83.70440880000001,32.9184736],[-83.7053147,32.9191117]]},"id":"8744c0a2affffff-17d7778d6ead3e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a136069-179ef66141b75ba6","8f44c0a2a136044-179ed67252cdd171"]},"geometry":{"type":"LineString","coordinates":[[-83.7053147,32.9191117],[-83.705342,32.919131]]},"id":"8d44c0a2a13607f-1796f669d5bdfb43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a136069-179ef66141b75ba6","8f44c0a2a136adb-17b7d638a4e5f0c9"]},"geometry":{"type":"LineString","coordinates":[[-83.705342,32.919131],[-83.70540700000001,32.9191768]]},"id":"8b44c0a2a136fff-17b7764cf4edf945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a131ba8-17ff5471a5cf387c","8f44c0a2a136adb-17b7d638a4e5f0c9"]},"geometry":{"type":"LineString","coordinates":[[-83.70540700000001,32.9191768],[-83.70600900000001,32.919601],[-83.706135,32.9196948]]},"id":"8a44c0a2a137fff-17d6d5548d7b1e54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a131ba8-17ff5471a5cf387c","8f44c0a2a1236c1-139e530fc5588883"]},"geometry":{"type":"LineString","coordinates":[[-83.706135,32.9196948],[-83.70634600000001,32.919852],[-83.70659900000001,32.920059],[-83.70670120000001,32.9201569]]},"id":"8944c0a2a13ffff-1397f3bd6cbf0ca3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a12aaab-139e71db2bda4f6f","8f44c0a2a1236c1-139e530fc5588883"]},"geometry":{"type":"LineString","coordinates":[[-83.70670120000001,32.9201569],[-83.706793,32.920245],[-83.706974,32.920447],[-83.707155,32.920685],[-83.707195,32.920749]]},"id":"8944c0a2a13ffff-13df726e52add6b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.770241,32.852579]},"id":"8f44c0b540ee6e9-139df7ef6a020d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b540ee6e9-139df7ef6a020d13","8f44c0b54761310-13bdf94cc3798f74"]},"geometry":{"type":"LineString","coordinates":[[-83.770241,32.852579],[-83.770235,32.852688],[-83.77020900000001,32.852874],[-83.77018500000001,32.852981],[-83.770132,32.853088],[-83.770036,32.853259],[-83.769937,32.853361],[-83.769715,32.853566],[-83.769642,32.853639],[-83.769473,32.853823000000006],[-83.769424,32.853892],[-83.76936500000001,32.854003],[-83.76932000000001,32.854115],[-83.769299,32.854186],[-83.769288,32.854315],[-83.769298,32.854464],[-83.76930700000001,32.854511],[-83.76934,32.854615],[-83.769389,32.854706],[-83.769485,32.854835],[-83.769682,32.855055]]},"id":"8744c0b54ffffff-17bdb948e0f4577b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5439a282-17d5b6d8a1423b6f","8f44c0b54761310-13bdf94cc3798f74"]},"geometry":{"type":"LineString","coordinates":[[-83.769682,32.855055],[-83.770488,32.855898],[-83.77068700000001,32.856116]]},"id":"8744c0b54ffffff-13f7f8117b9ba9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5439a282-17d5b6d8a1423b6f","8f44c0b542f4b93-13f7f0c147d88a17"]},"geometry":{"type":"LineString","coordinates":[[-83.77068700000001,32.856116],[-83.770853,32.856287],[-83.77207,32.857577],[-83.772378,32.857903],[-83.77256200000001,32.858089],[-83.77279,32.858308],[-83.772937,32.858437],[-83.773089,32.858547],[-83.77314000000001,32.85859],[-83.773182,32.858635]]},"id":"8844c0b543fffff-17f5f3d9f532229e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0864d75b-179f91aace68107d","8f44c0b0876350b-1396f108c4a6e44a"]},"geometry":{"type":"LineString","coordinates":[[-83.73348680000001,32.827797600000004],[-83.73355000000001,32.824874],[-83.733563,32.82403],[-83.73357200000001,32.823692],[-83.733581,32.823559],[-83.73362800000001,32.823351],[-83.73374600000001,32.823051]]},"id":"8744c0b08ffffff-13de51861eb45fa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73605590000001,32.820655200000004]},"id":"8f44c0b080eda9c-17bf8b6510c124bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b080eda9c-17bf8b6510c124bd","8f44c0b0876350b-1396f108c4a6e44a"]},"geometry":{"type":"LineString","coordinates":[[-83.73374600000001,32.823051],[-83.733941,32.822786],[-83.73413000000001,32.822605],[-83.734352,32.822446],[-83.73518100000001,32.821978],[-83.73540700000001,32.82183],[-83.735505,32.821756],[-83.735664,32.821615],[-83.735799,32.821441],[-83.735898,32.821271],[-83.735955,32.821164],[-83.735999,32.821041],[-83.73603100000001,32.820915],[-83.73605590000001,32.820655200000004]]},"id":"8744c0b08ffffff-13d77dda94dbb5fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7360474,32.8188082]},"id":"8f44c0b0800991a-13bf2b6a6631ae88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b080eda9c-17bf8b6510c124bd","8f44c0b0800991a-13bf2b6a6631ae88"]},"geometry":{"type":"LineString","coordinates":[[-83.73605590000001,32.820655200000004],[-83.736058,32.820604],[-83.736058,32.81969],[-83.73604800000001,32.81899],[-83.73604750000001,32.8188417],[-83.7360474,32.8188082]]},"id":"8844c0b081fffff-13fe5b6590e7ec3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7358253,32.8171683]},"id":"8f44c0b0802ed81-17be3bf53d96a386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0802ed81-17be3bf53d96a386","8f44c0b0800991a-13bf2b6a6631ae88"]},"geometry":{"type":"LineString","coordinates":[[-83.7360474,32.8188082],[-83.736045,32.818105],[-83.73604,32.817937],[-83.73602600000001,32.817784],[-83.73598600000001,32.817586],[-83.735883,32.817273],[-83.7358253,32.8171683]]},"id":"8944c0b0803ffff-17b68b857c647134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b081ae42b-139ed22a4754e87f","8f44c0b0802ed81-17be3bf53d96a386"]},"geometry":{"type":"LineString","coordinates":[[-83.7358253,32.8171683],[-83.735663,32.816874],[-83.735506,32.81666],[-83.735354,32.816504],[-83.735194,32.816374],[-83.734913,32.81617],[-83.7339431,32.8155194],[-83.73328280000001,32.8150765]]},"id":"8844c0b081fffff-13f65ed9459c1cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b03581315-1397ff71a4a211b1","8f44c0b03585665-13b67f6b5a85ceae"]},"geometry":{"type":"LineString","coordinates":[[-83.68852220000001,32.782937100000005],[-83.6885323,32.7825763]]},"id":"8a44c0b03587fff-13b6ff6e76404752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b035a6a8e-179e7f549e2be3dd","8f44c0b03585665-13b67f6b5a85ceae"]},"geometry":{"type":"LineString","coordinates":[[-83.6885323,32.7825763],[-83.6885661,32.7813694],[-83.6885687,32.7812774]]},"id":"8944c0b035bffff-17b67f5ffc6e69fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d328524-1797e33bec3ae5cb","8f44c0b1d30dd06-13dee39f44aafa61"]},"geometry":{"type":"LineString","coordinates":[[-83.69991800000001,32.812123],[-83.70007700000001,32.811369]]},"id":"8944c0b1d33ffff-17ff636d9d0eca61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d328524-1797e33bec3ae5cb","8f44c0b1dad2485-17b6e2db04d04e23"]},"geometry":{"type":"LineString","coordinates":[[-83.70007700000001,32.811369],[-83.700232,32.810609]]},"id":"8944c0b1d33ffff-1796630b73bcb773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1da81865-13b772af10e3ba3e","8f44c0b1dad2485-17b6e2db04d04e23"]},"geometry":{"type":"LineString","coordinates":[[-83.700232,32.810609],[-83.700297,32.810166],[-83.70032300000001,32.809877],[-83.70032400000001,32.809447],[-83.7003023,32.8085523]]},"id":"8844c0b1dbfffff-13b772addd3cb56d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db9d71a-139762cb6cefa3bd","8f44c0b1da81865-13b772af10e3ba3e"]},"geometry":{"type":"LineString","coordinates":[[-83.7003023,32.8085523],[-83.700269,32.807181],[-83.70025700000001,32.806274]]},"id":"8844c0b1dbfffff-17df62bf27ff1bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db9d71a-139762cb6cefa3bd","8f44c0b1db9dcf4-139762c9dc939b54"]},"geometry":{"type":"LineString","coordinates":[[-83.70025700000001,32.806274],[-83.7002595,32.8060532]]},"id":"8b44c0b1db9dfff-13de62caabfd97c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db82b83-13fff2c3125fdaa3","8f44c0b1db9dcf4-139762c9dc939b54"]},"geometry":{"type":"LineString","coordinates":[[-83.7002595,32.8060532],[-83.700266,32.805494],[-83.7002703,32.805395100000005]]},"id":"8944c0b1dbbffff-13bff2c749606f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db82b83-13fff2c3125fdaa3","8f44c0b1dbb108e-17ffe2a89f7df79b"]},"geometry":{"type":"LineString","coordinates":[[-83.7002703,32.805395100000005],[-83.70028500000001,32.805056],[-83.70031270000001,32.8045786]]},"id":"8944c0b1dbbffff-17fee2b6cdcc907f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1dbb108e-17ffe2a89f7df79b","8f44c0b1d85a85e-13d6e27988ab71ce"]},"geometry":{"type":"LineString","coordinates":[[-83.70031270000001,32.8045786],[-83.700388,32.803278]]},"id":"8744c0b1dffffff-17d7729107d1d20d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003849,32.802595600000004]},"id":"8f44c0b1d85171a-1396627b7debb7e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d85171a-1396627b7debb7e5","8f44c0b1d85a85e-13d6e27988ab71ce"]},"geometry":{"type":"LineString","coordinates":[[-83.700388,32.803278],[-83.70039700000001,32.803184],[-83.700405,32.80292],[-83.700387,32.802611],[-83.7003849,32.802595600000004]]},"id":"8944c0b1d87ffff-13ffe273c2ed2495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d85171a-1396627b7debb7e5","8f44c0b1d9183ac-17f76589e4c7a05c"]},"geometry":{"type":"LineString","coordinates":[[-83.7003849,32.802595600000004],[-83.700337,32.802247],[-83.700242,32.801811],[-83.70010400000001,32.801246],[-83.699897,32.80044],[-83.69974900000001,32.799816],[-83.69954800000001,32.79901],[-83.699442,32.798678],[-83.69939600000001,32.798565],[-83.69926500000001,32.798291],[-83.699133,32.79804]]},"id":"8844c0b1d9fffff-13f773cba16b5c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d9183ac-17f76589e4c7a05c","8f44c0b1d916d18-13df68382fac6e77"]},"geometry":{"type":"LineString","coordinates":[[-83.699133,32.79804],[-83.698964,32.797786],[-83.698183,32.79658],[-83.698035,32.796335]]},"id":"8944c0b1d93ffff-17f666e3e9a199df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0364ba54-139e6862aa364c7c","8f44c0b1d916d18-13df68382fac6e77"]},"geometry":{"type":"LineString","coordinates":[[-83.698035,32.796335],[-83.697997,32.796301],[-83.697967,32.796253]]},"id":"8a44c0b0364ffff-13b7684f31378eae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0364ba54-139e6862aa364c7c","8f44c0b0364e565-17fe69b882cdf89e"]},"geometry":{"type":"LineString","coordinates":[[-83.697967,32.796253],[-83.69742000000001,32.795389]]},"id":"8a44c0b0364ffff-139e690d988248cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0364e565-17fe69b882cdf89e","8f44c0b03609112-13fe6de68864ae20"]},"geometry":{"type":"LineString","coordinates":[[-83.69742000000001,32.795389],[-83.696955,32.794673],[-83.696803,32.794468],[-83.696719,32.794372],[-83.696602,32.794257],[-83.696504,32.794171],[-83.69638400000001,32.794079],[-83.696247,32.793985],[-83.696123,32.793917],[-83.69600600000001,32.793858],[-83.695879,32.79381],[-83.69570800000001,32.793751]]},"id":"8844c0b037fffff-17b7eb8f6a81b768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b036acb52-13bf7456aa7336d1","8f44c0b03609112-13fe6de68864ae20"]},"geometry":{"type":"LineString","coordinates":[[-83.69570800000001,32.793751],[-83.695614,32.793722],[-83.695231,32.793642000000006],[-83.694705,32.793543],[-83.694472,32.793484],[-83.694139,32.793363],[-83.693897,32.793247],[-83.693292,32.792924],[-83.69317000000001,32.792869],[-83.693071,32.792831]]},"id":"8844c0b037fffff-1396712fdf93878e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1cb69553-17f67ac8ac638cd3","8f44c0b036acb52-13bf7456aa7336d1"]},"geometry":{"type":"LineString","coordinates":[[-83.693071,32.792831],[-83.692949,32.792729],[-83.691467,32.791896],[-83.690903,32.791564],[-83.690431,32.791277]]},"id":"8844c0b037fffff-17de778e0a30fa5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1cb69553-17f67ac8ac638cd3","8f44c0b1cb45c64-17defd656680a364"]},"geometry":{"type":"LineString","coordinates":[[-83.690431,32.791277],[-83.68975300000001,32.790861],[-83.689451,32.790681],[-83.689361,32.790619]]},"id":"8944c0b1cb7ffff-17b77c1785f7830c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1cb71b93-1396fed8a23251a2","8f44c0b1cb45c64-17defd656680a364"]},"geometry":{"type":"LineString","coordinates":[[-83.689361,32.790619],[-83.689255,32.790545],[-83.689119,32.790442],[-83.68901600000001,32.790352],[-83.68887500000001,32.790207],[-83.688767,32.790075]]},"id":"8944c0b1cb7ffff-13bf7e289e282ae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b034d0624-179fffe1058c8472","8f44c0b1cb71b93-1396fed8a23251a2"]},"geometry":{"type":"LineString","coordinates":[[-83.688767,32.790075],[-83.68866100000001,32.789930000000005],[-83.688574,32.789776],[-83.688497,32.789614],[-83.688423,32.789417],[-83.68836900000001,32.789198],[-83.688349,32.789042],[-83.688333,32.788778],[-83.688344,32.787833]]},"id":"8544c0b3fffffff-13dfffb0793cfc6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b034d0624-179fffe1058c8472","8f44c0b03489944-13977fd20403fdeb"]},"geometry":{"type":"LineString","coordinates":[[-83.688344,32.787833],[-83.688366,32.787131],[-83.68836800000001,32.786802]]},"id":"8844c0b035fffff-17dfffd7cfcc00fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883863,32.7862882]},"id":"8f44c0b034ab641-13d67fc69b7a2cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b034ab641-13d67fc69b7a2cbe","8f44c0b03489944-13977fd20403fdeb"]},"geometry":{"type":"LineString","coordinates":[[-83.68836800000001,32.786802],[-83.68838600000001,32.786357],[-83.6883863,32.7862882]]},"id":"8a44c0b0348ffff-13f6ffcba181b3a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7086328,32.806373]},"id":"8f44c0b0e793b2c-13df6e5887081c0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7093114,32.806368500000005]},"id":"8f44c0b0e78275b-13de5cb06e59231d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e793b2c-13df6e5887081c0b","8f44c0b0e78275b-13de5cb06e59231d"]},"geometry":{"type":"LineString","coordinates":[[-83.7086328,32.806373],[-83.7093114,32.806368500000005]]},"id":"8944c0b0e7bffff-13dffd8478a1c244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71011870000001,32.806366100000005]},"id":"8f44c0b0e781cc9-13dedab7d092a1ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e781cc9-13dedab7d092a1ea","8f44c0b0e78275b-13de5cb06e59231d"]},"geometry":{"type":"LineString","coordinates":[[-83.7093114,32.806368500000005],[-83.71011870000001,32.806366100000005]]},"id":"8a44c0b0e787fff-13dfdbb42176eca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e781cc9-13dedab7d092a1ea","8f44c0b0e7a9990-13d6673f8dc62484"]},"geometry":{"type":"LineString","coordinates":[[-83.71011870000001,32.806366100000005],[-83.71154,32.806359]]},"id":"8944c0b0e7bffff-13dee8fbac423299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e70ad19-13de63172fb434e0","8f44c0b0e7a9990-13d6673f8dc62484"]},"geometry":{"type":"LineString","coordinates":[[-83.71154,32.806359],[-83.713243,32.806365]]},"id":"8844c0b0e7fffff-13de452b5981d16e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71444600000001,32.80637]},"id":"8f44c0b0e70da1e-13df4027428ccb03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e70da1e-13df4027428ccb03","8f44c0b0e70ad19-13de63172fb434e0"]},"geometry":{"type":"LineString","coordinates":[[-83.713243,32.806365],[-83.714275,32.806368],[-83.71444600000001,32.80637]]},"id":"8a44c0b0e70ffff-13df519f30ee97e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e70da1e-13df4027428ccb03","8f44c0b0e770d0b-13d67ea820c55478"]},"geometry":{"type":"LineString","coordinates":[[-83.71444600000001,32.80637],[-83.71505900000001,32.806375]]},"id":"8844c0b0e7fffff-13deff67b5ffe3d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71727800000001,32.8064592]},"id":"8f44c0b0e39654a-1397393d4c1ab0a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e39654a-1397393d4c1ab0a5","8f44c0b0e770d0b-13d67ea820c55478"]},"geometry":{"type":"LineString","coordinates":[[-83.71505900000001,32.806375],[-83.71539200000001,32.806386],[-83.71633200000001,32.806419000000005],[-83.71690500000001,32.806452],[-83.717167,32.806457],[-83.71727800000001,32.8064592]]},"id":"8744c0b0effffff-13fe7bf2a3f25b7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e39654a-1397393d4c1ab0a5","8f44c0b0e394746-139fb7e3690073a3"]},"geometry":{"type":"LineString","coordinates":[[-83.71727800000001,32.8064592],[-83.71783140000001,32.8064699]]},"id":"8a44c0b0e397fff-139e7890593f262d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7180124,32.8064734]},"id":"8f44c0b0e394370-139ff772478a3701"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e394370-139ff772478a3701","8f44c0b0e394746-139fb7e3690073a3"]},"geometry":{"type":"LineString","coordinates":[[-83.71783140000001,32.8064699],[-83.71783500000001,32.806470000000004],[-83.7180124,32.8064734]]},"id":"8b44c0b0e394fff-139ef7aade28828c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71835870000001,32.8064801]},"id":"8f44c0b0e395905-13963699dc9ba0b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e394370-139ff772478a3701","8f44c0b0e395905-13963699dc9ba0b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7180124,32.8064734],[-83.718306,32.806479],[-83.71835870000001,32.8064801]]},"id":"8a44c0b0e397fff-139ff70600d9eea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e395905-13963699dc9ba0b0","8f44c0b0e386124-139735a9a2841868"]},"geometry":{"type":"LineString","coordinates":[[-83.71835870000001,32.8064801],[-83.718743,32.806488]]},"id":"8944c0b0e3bffff-1396b621b6bf3bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720062,32.806509000000005]},"id":"8f44c0b0e3ae991-13b632714939f67d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3ae991-13b632714939f67d","8f44c0b0e386124-139735a9a2841868"]},"geometry":{"type":"LineString","coordinates":[[-83.718743,32.806488],[-83.719166,32.806495000000005],[-83.720062,32.806509000000005]]},"id":"8944c0b0e3bffff-139fb40d76466925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7224183,32.8065289]},"id":"8f44c0b0e3038eb-13b6bcb09076ddaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3038eb-13b6bcb09076ddaa","8f44c0b0e3ae991-13b632714939f67d"]},"geometry":{"type":"LineString","coordinates":[[-83.720062,32.806509000000005],[-83.7224183,32.8065289]]},"id":"8844c0b0e3fffff-13be6f90f08c0c2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72339360000001,32.806609800000004]},"id":"8f44c0b0e32a259-13f72a4f0c864a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3038eb-13b6bcb09076ddaa","8f44c0b0e32a259-13f72a4f0c864a23"]},"geometry":{"type":"LineString","coordinates":[[-83.7224183,32.8065289],[-83.72301900000001,32.806534],[-83.723157,32.806540000000005],[-83.723274,32.806562],[-83.723364,32.806593],[-83.72339360000001,32.806609800000004]]},"id":"8944c0b0e33ffff-13be6b7cb94ccaff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72372370000001,32.807689]},"id":"8f44c0b0e3726da-1797a980bef5c975"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3726da-1797a980bef5c975","8f44c0b0e32a259-13f72a4f0c864a23"]},"geometry":{"type":"LineString","coordinates":[[-83.72339360000001,32.806609800000004],[-83.72345200000001,32.806643],[-83.723539,32.806711],[-83.72357000000001,32.806751000000006],[-83.723607,32.806796],[-83.72365900000001,32.806891],[-83.723684,32.806998],[-83.72372370000001,32.807689]]},"id":"8844c0b0e3fffff-179f69b05bc59c95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7237509,32.808154300000005]},"id":"8f44c0b0e35090a-17be796fb72dd00b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3726da-1797a980bef5c975","8f44c0b0e35090a-17be796fb72dd00b"]},"geometry":{"type":"LineString","coordinates":[[-83.72372370000001,32.807689],[-83.72375000000001,32.808146],[-83.7237509,32.808154300000005]]},"id":"8a44c0b0e357fff-1797397850516d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66832430000001,32.7906469]},"id":"8f44c0b1c42b3a2-17fef0c159f7271d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c42b3a2-17fef0c159f7271d","8f44c0b1c42968d-17def0092747f807"]},"geometry":{"type":"LineString","coordinates":[[-83.668619,32.790619],[-83.66832430000001,32.7906469]]},"id":"8a44c0b1c42ffff-17f7b065304c824a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c42b3a2-17fef0c159f7271d","8f44c0b1c40c0c2-179ef2114695d5b2"]},"geometry":{"type":"LineString","coordinates":[[-83.66832430000001,32.7906469],[-83.668261,32.790652900000005],[-83.6677868,32.7907237]]},"id":"8944c0b1c43ffff-1797f16963914d1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72073230000001,32.8100231]},"id":"8f44c0b0e218ca8-13be70ce58fec862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e21a991-13de71979ea4cd88","8f44c0b0e218ca8-13be70ce58fec862"]},"geometry":{"type":"LineString","coordinates":[[-83.72041030000001,32.810080500000005],[-83.72061240000001,32.8100685],[-83.72073230000001,32.8100231]]},"id":"8a44c0b0e21ffff-13d7b1316716c615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e218ca8-13be70ce58fec862","8f44c0b0e218c00-13bf30b08bc8e38a"]},"geometry":{"type":"LineString","coordinates":[[-83.72073230000001,32.8100231],[-83.72078,32.810005100000005]]},"id":"8c44c0b0e218dff-13b6f0bf70fa42ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05130a72-17d7802701d3c0a1","8f44c0a05c69023-17d7d13dec120545"]},"geometry":{"type":"LineString","coordinates":[[-83.6877858,32.9026365],[-83.687877,32.902897],[-83.687965,32.903063],[-83.688066,32.903224],[-83.688232,32.903452]]},"id":"8744c0a05ffffff-17dfe0c2fe525a68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894675,32.904410500000004]},"id":"8f44c0a0512e606-13befd22dafef5b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05130a72-17d7802701d3c0a1","8f44c0a0512e606-13befd22dafef5b0"]},"geometry":{"type":"LineString","coordinates":[[-83.688232,32.903452],[-83.68831300000001,32.90355],[-83.688502,32.903733],[-83.68868400000001,32.903886],[-83.688812,32.903984],[-83.68904400000001,32.904138],[-83.6894675,32.904410500000004]]},"id":"8944c0a0513ffff-1396feb5327d2dbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6899142,32.9047051]},"id":"8f44c0a05128764-13f6fc0ba0688f90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05128764-13f6fc0ba0688f90","8f44c0a0512e606-13befd22dafef5b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6894675,32.904410500000004],[-83.6896746,32.904543700000005],[-83.6899142,32.9047051]]},"id":"8a44c0a0512ffff-1397fc96c7402513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05128764-13f6fc0ba0688f90","8f44c0a0517410e-17b67a32d3458558"]},"geometry":{"type":"LineString","coordinates":[[-83.6899142,32.9047051],[-83.6901904,32.9048912],[-83.6906707,32.905216100000004]]},"id":"8844c0a051fffff-13967b1f2e8bcafe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3442438e-13d757f0229b8c12","8f44c0a3450baf4-13f7167a1be9f218"]},"geometry":{"type":"LineString","coordinates":[[-83.6326142,32.836282100000005],[-83.6332127,32.8360977]]},"id":"8844c0a345fffff-139fb735250347e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3450baf4-13f7167a1be9f218","8f44c0a345704d3-139f13ee31f718cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6332127,32.8360977],[-83.634077,32.835835100000004],[-83.63425570000001,32.835784100000005]]},"id":"8844c0a345fffff-13ff453465a633ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92cd926-179ff36a637c650f","8f44c0a345b018a-17b731cb35324274"]},"geometry":{"type":"LineString","coordinates":[[-83.6285773,32.834161800000004],[-83.62851,32.83411],[-83.627913,32.833739]]},"id":"8844c0ba93fffff-17b712997ca6dc6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b5a8d53-179ff3be365cb847","8f44c0b1b5aea30-17bed415626dacf2"]},"geometry":{"type":"LineString","coordinates":[[-83.65385380000001,32.82987],[-83.65399330000001,32.8300435]]},"id":"8a44c0b1b5affff-17f7d3e9df39dfed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b58c756-1797d5417730223b","8f44c0b1b5a8d53-179ff3be365cb847"]},"geometry":{"type":"LineString","coordinates":[[-83.65399330000001,32.8300435],[-83.6533093,32.8304357],[-83.6533737,32.830857200000004]]},"id":"8944c0b1b5bffff-17ffd4d7e565d4f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b58ea75-17b6d5af345af631","8f44c0b1b58c756-1797d5417730223b"]},"geometry":{"type":"LineString","coordinates":[[-83.6533737,32.830857200000004],[-83.65319810000001,32.830884000000005]]},"id":"8a44c0b1b58ffff-179ef5785026ae18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76034990000001,32.8822897]},"id":"8f44c0b539b3ac2-17b7d01550791900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7603773,32.880984600000005]},"id":"8f44c0b5065a7b2-13f7f00433d5fb63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539b3ac2-17b7d01550791900","8f44c0b5065a7b2-13f7f00433d5fb63"]},"geometry":{"type":"LineString","coordinates":[[-83.76034990000001,32.8822897],[-83.7603773,32.880984600000005]]},"id":"8644c0b57ffffff-139fd00cca3e9bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065a522-139ff001fec34a36","8f44c0b5065a7b2-13f7f00433d5fb63"]},"geometry":{"type":"LineString","coordinates":[[-83.7603773,32.880984600000005],[-83.7603809,32.8808123]]},"id":"8b44c0b5065afff-13d5d00316877d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53610900000001,32.917592400000004]},"id":"8f44c0aa38465a4-13d7f38be188ae26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53467330000001,32.9163269]},"id":"8f44c0aa380c581-17d7f70d3646d0b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa380c581-17d7f70d3646d0b6","8f44c0aa38465a4-13d7f38be188ae26"]},"geometry":{"type":"LineString","coordinates":[[-83.53610900000001,32.917592400000004],[-83.53467330000001,32.9163269]]},"id":"8844c0aa39fffff-13dff54c82a9d473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa3832733-139ffb1c32067cab","8f44c0aa380c581-17d7f70d3646d0b6"]},"geometry":{"type":"LineString","coordinates":[[-83.53467330000001,32.9163269],[-83.5337476,32.9155085],[-83.5332413,32.9150328],[-83.53301090000001,32.9148099]]},"id":"8944c0aa383ffff-17fff9192a92ed37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53942640000001,32.9154514]},"id":"8f44c0aa3969a2a-179feb72834cae61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5383269,32.916085800000005]},"id":"8f44c0aa3948a04-17bfee21b17a6cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa3969a2a-179feb72834cae61","8f44c0aa3948a04-17bfee21b17a6cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.53942640000001,32.9154514],[-83.53911280000001,32.9156703],[-83.5383269,32.916085800000005]]},"id":"8944c0aa397ffff-17ffecc4cc79620f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa380c581-17d7f70d3646d0b6","8f44c0aa3948a04-17bfee21b17a6cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.5383269,32.916085800000005],[-83.5380851,32.916244400000004],[-83.5379415,32.9162951],[-83.53781690000001,32.916307800000006],[-83.5376317,32.916292],[-83.53624880000001,32.9160477],[-83.5357841,32.915997000000004],[-83.5355045,32.915968500000005],[-83.5353911,32.915968500000005],[-83.5352778,32.9159811],[-83.5351947,32.9160033],[-83.535036,32.9160604],[-83.5349113,32.9161175],[-83.5347677,32.9162285],[-83.53467330000001,32.9163269]]},"id":"8844c0aa39fffff-17d7f2a33b063ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa396258b-13dff002246acb45","8f44c0aa3948a04-17bfee21b17a6cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.5375582,32.9140979],[-83.5376657,32.9150423],[-83.5377224,32.915340400000005],[-83.53777910000001,32.9155022],[-83.537878,32.9156448],[-83.53802470000001,32.915794000000005],[-83.5382098,32.9159494],[-83.5383269,32.916085800000005]]},"id":"8944c0aa397ffff-17ffff712ccf8113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.538667,32.916729700000005]},"id":"8f44c0aa149440e-13bffd4d255962e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa149440e-13bffd4d255962e8","8f44c0aa3948a04-17bfee21b17a6cb8"]},"geometry":{"type":"LineString","coordinates":[[-83.5383269,32.916085800000005],[-83.53842900000001,32.916260300000005],[-83.538667,32.916729700000005]]},"id":"8844c0aa39fffff-17f7edb50609912c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5370211,32.8859354]},"id":"8f44c0aa4625455-179ff151dc5dfc9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5371246,32.8864279]},"id":"8f44c0aa4621316-17d7f1112f528d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa4621316-17d7f1112f528d3f","8f44c0aa4625455-179ff151dc5dfc9f"]},"geometry":{"type":"LineString","coordinates":[[-83.5370211,32.8859354],[-83.53711220000001,32.8859535],[-83.5371581,32.8859945],[-83.53718110000001,32.8860619],[-83.5371446,32.88628],[-83.53713230000001,32.8863536],[-83.5371246,32.8864279]]},"id":"8a44c0aa4627fff-1797f1088edeaaf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5378068,32.887161]},"id":"8f44c0aa462d2ae-139fef66cf89ef20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa4621316-17d7f1112f528d3f","8f44c0aa462d2ae-139fef66cf89ef20"]},"geometry":{"type":"LineString","coordinates":[[-83.5371246,32.8864279],[-83.53714670000001,32.8864837],[-83.5372241,32.8865536],[-83.53772640000001,32.887045300000004],[-83.5378068,32.887161]]},"id":"8944c0aa463ffff-17b7f03be8343a6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5375427,32.8872852]},"id":"8f44c0aa4629c1e-13dff00bd9749289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa4629c1e-13dff00bd9749289","8f44c0aa462d2ae-139fef66cf89ef20"]},"geometry":{"type":"LineString","coordinates":[[-83.5375427,32.8872852],[-83.5376317,32.887267],[-83.53772070000001,32.8872116],[-83.5378068,32.887161]]},"id":"8a44c0aa462ffff-13bfffb70cf4e552"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5383693,32.8853991]},"id":"8f44c0aa4772225-13bffe0732b76274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa462d2ae-139fef66cf89ef20","8f44c0aa4772225-13bffe0732b76274"]},"geometry":{"type":"LineString","coordinates":[[-83.5378068,32.887161],[-83.5380106,32.8869971],[-83.53808810000001,32.8869392],[-83.5382402,32.8868814],[-83.53842390000001,32.8868019],[-83.53857310000001,32.886698200000005],[-83.5388085,32.886510200000004],[-83.53895770000001,32.886370400000004],[-83.53900940000001,32.8862572],[-83.5390151,32.8861824],[-83.5389749,32.886112600000004],[-83.5383693,32.8853991]]},"id":"8844c0aa47fffff-1797fd922ca6fcf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5312485,32.8888921]},"id":"8f44c0aa469a791-17d7ff69bc674bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6a43992-13dfe47f4205305e","8f44c0aa469a791-17d7ff69bc674bfc"]},"geometry":{"type":"LineString","coordinates":[[-83.5312485,32.8888921],[-83.5309522,32.888841],[-83.5304529,32.888800100000005],[-83.52967360000001,32.888749000000004],[-83.529166,32.8887038]]},"id":"8644c0aa7ffffff-179bf1f3a98883e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6aeecc8-17d84a50492e5e85","8f44c0aa6a43992-13dfe47f4205305e"]},"geometry":{"type":"LineString","coordinates":[[-83.529166,32.8887038],[-83.5288496,32.8887081],[-83.5284965,32.8887388],[-83.52766030000001,32.8888206],[-83.52701490000001,32.888885300000005],[-83.5267836,32.8889092]]},"id":"8844c0aa6bfffff-179f97684e8933bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5246729,32.8878866]},"id":"8f44c0aa6a8da22-13d92f777f434e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa6aeecc8-17d84a50492e5e85","8f44c0aa6a8da22-13d92f777f434e7c"]},"geometry":{"type":"LineString","coordinates":[[-83.5267836,32.8889092],[-83.52664150000001,32.8889092],[-83.52646700000001,32.8889058],[-83.5263168,32.8888683],[-83.5261991,32.8888035],[-83.5260164,32.888687600000004],[-83.5258419,32.888585400000004],[-83.5256755,32.888507000000004],[-83.52544010000001,32.8884354],[-83.5251722,32.8883638],[-83.525022,32.8882854],[-83.5248272,32.888135500000004],[-83.5247176,32.8880366],[-83.5246729,32.8878866]]},"id":"8844c0aa6bfffff-13db5d11c472aedf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53719360000001,32.8880044]},"id":"8f44c0aa460daab-139ff0e60244207a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa460daab-139ff0e60244207a","8f44c0aa4629c1e-13dff00bd9749289"]},"geometry":{"type":"LineString","coordinates":[[-83.53719360000001,32.8880044],[-83.53724840000001,32.8878987],[-83.5373397,32.8877624],[-83.53745140000001,32.887597],[-83.53752850000001,32.887462400000004],[-83.5375386,32.8873959],[-83.5375427,32.8872852]]},"id":"8944c0aa463ffff-13d7f065d530b43e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53692570000001,32.886431200000004]},"id":"8f44c0aa46217ae-17d7f18d7ec861f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46217ae-17d7f18d7ec861f0","8f44c0aa4629c1e-13dff00bd9749289"]},"geometry":{"type":"LineString","coordinates":[[-83.5375427,32.8872852],[-83.5375224,32.887169300000004],[-83.5374676,32.887063600000005],[-83.5373986,32.8869716],[-83.53728290000001,32.886855700000005],[-83.5371003,32.886687],[-83.5369622,32.886535300000006],[-83.53693790000001,32.8864791],[-83.53692570000001,32.886431200000004]]},"id":"8944c0aa463ffff-17d7f0bff78a9e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46217ae-17d7f18d7ec861f0","8f44c0aa4625455-179ff151dc5dfc9f"]},"geometry":{"type":"LineString","coordinates":[[-83.53692570000001,32.886431200000004],[-83.5369156,32.8863598],[-83.53699680000001,32.886025700000005],[-83.5370211,32.8859354]]},"id":"8a44c0aa4627fff-17bff177765901cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53654010000001,32.8851395]},"id":"8f44c0aa471981a-139ff27e7702e96a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa471981a-139ff27e7702e96a","8f44c0aa4625455-179ff151dc5dfc9f"]},"geometry":{"type":"LineString","coordinates":[[-83.5370211,32.8859354],[-83.53701910000001,32.8858638],[-83.5369907,32.8857633],[-83.5369277,32.885584300000005],[-83.53689530000001,32.885477],[-83.5368222,32.885386600000004],[-83.53671870000001,32.8852895],[-83.53654010000001,32.8851395]]},"id":"8844c0aa47fffff-13fff1c07f5d6af9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa460daab-139ff0e60244207a","8f44c0aa46728c0-139ff02b24a9e163"]},"geometry":{"type":"LineString","coordinates":[[-83.53749260000001,32.888213300000004],[-83.53727020000001,32.8880703],[-83.53719360000001,32.8880044]]},"id":"8844c0aa47fffff-13dff08a7a92f3f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa460daab-139ff0e60244207a","8f44c0aa46217ae-17d7f18d7ec861f0"]},"geometry":{"type":"LineString","coordinates":[[-83.53719360000001,32.8880044],[-83.5370434,32.8879515],[-83.536944,32.8879328],[-83.5364488,32.8879123],[-83.5363311,32.887893600000005],[-83.53620120000001,32.8878561],[-83.53608750000001,32.8878067],[-83.535984,32.887747000000005],[-83.5357446,32.88758],[-83.5356756,32.8875101],[-83.535635,32.8874317],[-83.53560250000001,32.8873176],[-83.5355964,32.887167600000005],[-83.53560660000001,32.8870568],[-83.5356471,32.8869494],[-83.5357101,32.8868335],[-83.5357973,32.886727900000004],[-83.5360246,32.8865779],[-83.53617480000001,32.886485900000004],[-83.53635340000001,32.886433000000004],[-83.5365462,32.8864194],[-83.53680800000001,32.8864211],[-83.53692570000001,32.886431200000004]]},"id":"8944c0aa463ffff-13bff34e0e53d97d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa4621316-17d7f1112f528d3f","8f44c0aa46217ae-17d7f18d7ec861f0"]},"geometry":{"type":"LineString","coordinates":[[-83.53692570000001,32.886431200000004],[-83.53700690000001,32.8864382],[-83.5371246,32.8864279]]},"id":"8b44c0aa4621fff-17d7f14f4b5cfb43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53271190000001,32.8923396]},"id":"8f44c0aa0d0966d-17b7fbd717398302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa0d0966d-17b7fbd717398302","8f44c0aa0d566f1-17bffc67768c5669"]},"geometry":{"type":"LineString","coordinates":[[-83.53271190000001,32.8923396],[-83.5325253,32.8926481],[-83.53248090000001,32.8927716]]},"id":"8944c0aa0d7ffff-17b7fc24a3cdc23d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5323876,32.893031300000004]},"id":"8f44c0aa0d52090-17f7fca1c9f325ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa0d566f1-17bffc67768c5669","8f44c0aa0d52090-17f7fca1c9f325ee"]},"geometry":{"type":"LineString","coordinates":[[-83.53248090000001,32.8927716],[-83.5323876,32.893031300000004]]},"id":"8a44c0aa0d57fff-179ffc849cd55553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5322613,32.892293800000004]},"id":"8f44c0aa0d0b056-1797fcf0b54c9de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa0d0966d-17b7fbd717398302","8f44c0aa0d0b056-1797fcf0b54c9de7"]},"geometry":{"type":"LineString","coordinates":[[-83.5322613,32.892293800000004],[-83.5324765,32.8923372],[-83.53271190000001,32.8923396]]},"id":"8a44c0aa0d0ffff-17bffc6494c74ebf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa0d0966d-17b7fbd717398302","8f44c0aa0d54d40-179ffafbb3e8b85d"]},"geometry":{"type":"LineString","coordinates":[[-83.53271190000001,32.8923396],[-83.5329128,32.89233],[-83.5330629,32.8923124]]},"id":"8944c0aa0d7ffff-17bffb6945dd7115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa0d737aa-1797fa1c8e3b89bf","8f44c0aa0d54d40-179ffafbb3e8b85d"]},"geometry":{"type":"LineString","coordinates":[[-83.5330629,32.8923124],[-83.5331682,32.8923348],[-83.53342,32.892468300000004]]},"id":"8944c0aa0d7ffff-17dffa89d915c9e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5447851,32.8732236]},"id":"8f44c0aa4810135-1797de5d5cfd536c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa480e809-1397fa50cf8e16d8","8f44c0aa4810135-1797de5d5cfd536c"]},"geometry":{"type":"LineString","coordinates":[[-83.5447851,32.8732236],[-83.54577540000001,32.873744200000004],[-83.54615290000001,32.8739652],[-83.54632260000001,32.874037900000005],[-83.5464436,32.8740735]]},"id":"8944c0aa483ffff-1797fc59f876ab09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5471917,32.8741368]},"id":"8f44c0aa482b60b-13bfd87d3a647194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0aa480e809-1397fa50cf8e16d8","8f44c0aa482b60b-13bfd87d3a647194"]},"geometry":{"type":"LineString","coordinates":[[-83.5464436,32.8740735],[-83.54659960000001,32.874093200000004],[-83.5471917,32.8741368]]},"id":"8a44c0aa480ffff-13bfd96731d526a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53536220000001,32.8894085]},"id":"8f44c0aa46c4826-179ff55ea7673d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c4826-179ff55ea7673d1a","8f44c0aa46e46ca-179ff42b62d7f9b5"]},"geometry":{"type":"LineString","coordinates":[[-83.5358538,32.8888289],[-83.5353765,32.889388100000005],[-83.53536220000001,32.8894085]]},"id":"8a44c0aa46e7fff-17d7f4c59fb26a54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5350063,32.8900773]},"id":"8f44c0aa46c0716-17bff63d12eabc24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c4826-179ff55ea7673d1a","8f44c0aa46c0716-17bff63d12eabc24"]},"geometry":{"type":"LineString","coordinates":[[-83.53536220000001,32.8894085],[-83.5352182,32.889613000000004],[-83.535137,32.8898005],[-83.5350063,32.8900773]]},"id":"8944c0aa46fffff-17d7f5d5875e7992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53475920000001,32.8904051]},"id":"8f44c0aa46c34a6-17f7f6d7856968a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c0716-17bff63d12eabc24","8f44c0aa46c34a6-17f7f6d7856968a3"]},"geometry":{"type":"LineString","coordinates":[[-83.5350063,32.8900773],[-83.5349422,32.8902129],[-83.5348651,32.890311700000005],[-83.5347799,32.8903833],[-83.53475920000001,32.8904051]]},"id":"8a44c0aa46c7fff-1797f680f1fd39bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5342756,32.890916700000005]},"id":"8f44c0aa46d8570-13b7f805c603a829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c34a6-17f7f6d7856968a3","8f44c0aa46d8570-13b7f805c603a829"]},"geometry":{"type":"LineString","coordinates":[[-83.53475920000001,32.8904051],[-83.5342756,32.890916700000005]]},"id":"8944c0aa46fffff-1397f76eadbc0778"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46d8570-13b7f805c603a829","8f44c0aa0d54d40-179ffafbb3e8b85d"]},"geometry":{"type":"LineString","coordinates":[[-83.5342756,32.890916700000005],[-83.53426440000001,32.8909286],[-83.5330629,32.8923124]]},"id":"8844c0aa0dfffff-13fff980ea33c965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a264b58a3-17f7ae2befb49cb8","8f44c0a3596ea5a-17beb14859ea98ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6681083,32.8466922],[-83.6681234,32.8468559],[-83.66816440000001,32.8469246],[-83.66832500000001,32.8471939],[-83.6685566,32.847288500000005],[-83.6688792,32.8472026],[-83.6692187,32.8473649],[-83.6693527,32.847715400000006],[-83.6693826,32.847781000000005]]},"id":"8544c0a3fffffff-1797afc46fa485d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a264b58a3-17f7ae2befb49cb8","8f44c0a264a0575-13b6ec8bed3bdfbf"]},"geometry":{"type":"LineString","coordinates":[[-83.6693826,32.847781000000005],[-83.67004820000001,32.8480772]]},"id":"8944c0a264bffff-13d7bd5bead389ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6701165,32.8482761]},"id":"8f44c0a264a075e-139ebc613a21e14b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a264a075e-139ebc613a21e14b","8f44c0a264a0575-13b6ec8bed3bdfbf"]},"geometry":{"type":"LineString","coordinates":[[-83.67004820000001,32.8480772],[-83.6701165,32.8482761]]},"id":"8b44c0a264a0fff-13defc769c18b204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04ab24f5-1396fbc38fe5a25a","8f44c0b04ab3ca0-13f63ab67ef55a0a"]},"geometry":{"type":"LineString","coordinates":[[-83.71667450000001,32.7439393],[-83.7165501,32.7438984],[-83.716244,32.7437934]]},"id":"8944c0b04abffff-13b6fb3d1a7931de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b04a74d89-13ff7bbacc06ba77","8f44c0b04a708d2-17d77ba0dc9a8507"]},"geometry":{"type":"LineString","coordinates":[[-83.7228116,32.744597500000005],[-83.72285310000001,32.7451255]]},"id":"8a44c0b04a77fff-17b67badda453432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b05d8a4f2-13fe3ca15935090e","8f44c0b04a708d2-17d77ba0dc9a8507"]},"geometry":{"type":"LineString","coordinates":[[-83.72285310000001,32.7451255],[-83.7228711,32.7463627],[-83.7229684,32.7467921],[-83.72317500000001,32.747513000000005],[-83.7232541,32.748003700000005],[-83.7232601,32.748351400000004],[-83.7232176,32.7487195],[-83.7230292,32.7495272],[-83.7227617,32.750007700000005],[-83.7224427,32.7505347]]},"id":"8644c0b07ffffff-179e6b4c8869f58b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7225116,32.7451402]},"id":"8f44c0b04a72960-17d6ac7642b2bf41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a72960-17d6ac7642b2bf41","8f44c0b04a708d2-17d77ba0dc9a8507"]},"geometry":{"type":"LineString","coordinates":[[-83.72285310000001,32.7451255],[-83.7225116,32.7451402]]},"id":"8a44c0b04a77fff-17de3c0b859e8261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a72960-17d6ac7642b2bf41","8f44c0b04a08ad3-17fe6e9d15f049e1"]},"geometry":{"type":"LineString","coordinates":[[-83.7225116,32.7451402],[-83.7216303,32.745178]]},"id":"8844c0b04bfffff-17de7d89b39177aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72135870000001,32.745199]},"id":"8f44c0b04a08636-17f76f46d6ce9d2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b04a08636-17f76f46d6ce9d2e","8f44c0b04a08ad3-17fe6e9d15f049e1"]},"geometry":{"type":"LineString","coordinates":[[-83.7216303,32.745178],[-83.72135870000001,32.745199]]},"id":"8b44c0b04a08fff-17fefef1f07ada19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64643810000001,32.8295112]},"id":"8f44c0a3491d79e-13dee630353d48d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3491c862-13ffe6427cccc0e0","8f44c0a3491d79e-13dee630353d48d4"]},"geometry":{"type":"LineString","coordinates":[[-83.64643810000001,32.8295112],[-83.6463739,32.8291625],[-83.64640890000001,32.8289752]]},"id":"8944c0a3493ffff-13b7e6477fefe304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34902223-139fe619b6efdb8a","8f44c0a3491c862-13ffe6427cccc0e0"]},"geometry":{"type":"LineString","coordinates":[[-83.64640890000001,32.8289752],[-83.6464217,32.8289069],[-83.6464741,32.8287952]]},"id":"8a44c0a34907fff-13d6f63169c72942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34902223-139fe619b6efdb8a","8f44c0a34902b09-13bff5cdd5b3a02d"]},"geometry":{"type":"LineString","coordinates":[[-83.6464741,32.8287952],[-83.6464869,32.828768100000005],[-83.6465955,32.828636700000004]]},"id":"8b44c0a34902fff-13dee5f57715cd8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490018b-13f7e547fc816e47","8f44c0a34902b09-13bff5cdd5b3a02d"]},"geometry":{"type":"LineString","coordinates":[[-83.6465955,32.828636700000004],[-83.6468097,32.828526600000004]]},"id":"8a44c0a34907fff-1397f58ae0bc6adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490018b-13f7e547fc816e47","8f44c0a34900002-13f6f53088edb4a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6468097,32.828526600000004],[-83.64684720000001,32.8285477]]},"id":"8c44c0a349001ff-13ffe53c3fa37ce7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490c919-139ef322eef648bb","8f44c0a34900002-13f6f53088edb4a7"]},"geometry":{"type":"LineString","coordinates":[[-83.64684720000001,32.8285477],[-83.6476882,32.8290211]]},"id":"8944c0a3493ffff-1396e429b1d83085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6477383,32.8290493]},"id":"8f44c0a3490c943-13bff3039c1d622d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490c919-139ef322eef648bb","8f44c0a3490c943-13bff3039c1d622d"]},"geometry":{"type":"LineString","coordinates":[[-83.6476882,32.8290211],[-83.6477383,32.8290493]]},"id":"8c44c0a3490c9ff-13b7e313334b4af3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490c158-139fe34bdc5a79ce","8f44c0a3490c943-13bff3039c1d622d"]},"geometry":{"type":"LineString","coordinates":[[-83.6477383,32.8290493],[-83.6476227,32.829202200000005]]},"id":"8b44c0a3490cfff-13dfe327b6695deb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490c158-139fe34bdc5a79ce","8f44c0a3490c654-13f6f39d0af7b5e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6476227,32.829202200000005],[-83.64749280000001,32.8293741]]},"id":"8b44c0a3490cfff-13d7e3747ef76d30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a349032c1-139fe54b7d5d466d","8f44c0a3490c654-13f6f39d0af7b5e1"]},"geometry":{"type":"LineString","coordinates":[[-83.64749280000001,32.8293741],[-83.6473747,32.8295303],[-83.64680410000001,32.8292026]]},"id":"8944c0a3493ffff-13fef467c870e3a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a349032c1-139fe54b7d5d466d","8f44c0a3491d79e-13dee630353d48d4"]},"geometry":{"type":"LineString","coordinates":[[-83.64680410000001,32.8292026],[-83.64643810000001,32.8295112]]},"id":"8944c0a3493ffff-13fef5bddbe24fa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3491965d-179ff62ffa2b7024","8f44c0a3491d79e-13dee630353d48d4"]},"geometry":{"type":"LineString","coordinates":[[-83.64643810000001,32.8295112],[-83.6463068,32.829827],[-83.6463014,32.8299024],[-83.6463276,32.829965],[-83.6463729,32.8300062],[-83.6464385,32.830047300000004]]},"id":"8a44c0a3491ffff-13ffe66122e99f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6466055,32.830142900000006]},"id":"8f44c0a348244a0-17d7f5c79405a7b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3491965d-179ff62ffa2b7024","8f44c0a348244a0-17d7f5c79405a7b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6464385,32.830047300000004],[-83.6466055,32.830142900000006]]},"id":"8844c0a349fffff-17bff5fbcc7dde4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3482284c-1796e63acc7b72da","8f44c0a348244a0-17d7f5c79405a7b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6466055,32.830142900000006],[-83.6468064,32.830257800000005],[-83.6466798,32.8304126],[-83.64654920000001,32.830572100000005],[-83.6465208,32.8305981],[-83.64650250000001,32.8306088],[-83.6464577,32.8306216],[-83.6464212,32.830628000000004]]},"id":"8a44c0a34827fff-17ffe5aad5c18965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63125760000001,32.781227900000005]},"id":"8f44c0b1309c1a2-17ff7b400175c93f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1309c1a2-17ff7b400175c93f","8f44c0bad18b5a3-179f757e4ab8be7f"]},"geometry":{"type":"LineString","coordinates":[[-83.63125760000001,32.781227900000005],[-83.6311733,32.7814562],[-83.63094120000001,32.7823171],[-83.6298922,32.7862195],[-83.6292444,32.7886113],[-83.62912580000001,32.788924800000004],[-83.6289986,32.7894834],[-83.6285656,32.791101600000005],[-83.6281498,32.79262],[-83.62798400000001,32.7932171],[-83.6278983,32.7935955],[-83.6278697,32.793924600000004],[-83.6279011,32.7942489],[-83.6279683,32.7945],[-83.62811690000001,32.7948724],[-83.62867220000001,32.7957252],[-83.62872300000001,32.7958244],[-83.62868850000001,32.7958611],[-83.6285965,32.795909],[-83.62849150000001,32.7959],[-83.6283686,32.795839400000006],[-83.62805200000001,32.795647800000005],[-83.62786630000001,32.7955877],[-83.6277541,32.795590100000005],[-83.6276412,32.7956394],[-83.6275705,32.7957138],[-83.6275536,32.795777900000004],[-83.62706200000001,32.800351]]},"id":"8444c0bffffffff-1797b132aaeb861e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0bad18b5a3-179f757e4ab8be7f","8f44c0bad7726ee-1397f6fb197e4266"]},"geometry":{"type":"LineString","coordinates":[[-83.62706200000001,32.800351],[-83.6270082,32.8011276],[-83.62692940000001,32.8019175],[-83.6267444,32.803733],[-83.6264527,32.8064606]]},"id":"8744c0badffffff-13979633269a5480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62491800000001,32.820749]},"id":"8f44c0ba9109495-17ff3aba44fcb54e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9109495-17ff3aba44fcb54e","8f44c0bad7726ee-1397f6fb197e4266"]},"geometry":{"type":"LineString","coordinates":[[-83.6264527,32.8064606],[-83.6264426,32.806582500000005],[-83.626354,32.807470200000004],[-83.62628120000001,32.8080307],[-83.6258765,32.8118677],[-83.62577230000001,32.8126455],[-83.6257052,32.8130935],[-83.625618,32.8139498],[-83.62549220000001,32.8151724],[-83.625281,32.8170329],[-83.62508820000001,32.8188194],[-83.62492250000001,32.8200303],[-83.62484780000001,32.820550000000004],[-83.62486390000001,32.8206587],[-83.62491800000001,32.820749]]},"id":"8644c0bafffffff-17ff58e8e6119f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6216922,32.844458]},"id":"8f44c0a36a96980-17df629a6dea17d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621519,32.844357]},"id":"8f44c0a3614ba75-179f2306a5e4394b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614ba75-179f2306a5e4394b","8f44c0a36a96980-17df629a6dea17d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6216922,32.844458],[-83.621519,32.844357]]},"id":"8844c0a361fffff-17bfb2d083fdf6df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614ba75-179f2306a5e4394b","8f44c0a3614b8d9-17d7b367bbeaf95b"]},"geometry":{"type":"LineString","coordinates":[[-83.621519,32.844357],[-83.6213637,32.8442665]]},"id":"8b44c0a3614bfff-17ffe33739275f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.621195,32.8441682]},"id":"8f44c0a3614bc02-179723d125aef375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614b8d9-17d7b367bbeaf95b","8f44c0a3614bc02-179723d125aef375"]},"geometry":{"type":"LineString","coordinates":[[-83.6213637,32.8442665],[-83.621195,32.8441682]]},"id":"8b44c0a3614bfff-17b7e39c61013b0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614bc02-179723d125aef375","8f44c0a3614a04d-17df344945d37676"]},"geometry":{"type":"LineString","coordinates":[[-83.621195,32.8441682],[-83.6210028,32.8440561]]},"id":"8a44c0a3614ffff-17f7240d347fe5a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614a56e-179fe4b76620cbbc","8f44c0a3614a04d-17df344945d37676"]},"geometry":{"type":"LineString","coordinates":[[-83.6210028,32.8440561],[-83.6208266,32.843953400000004]]},"id":"8b44c0a3614afff-17bf248059220aca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d251-17df351010c8d1e1","8f44c0a3614a56e-179fe4b76620cbbc"]},"geometry":{"type":"LineString","coordinates":[[-83.6208266,32.843953400000004],[-83.6206847,32.843870700000004]]},"id":"8944c0a3617ffff-17f734e3b3f7ec67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62061820000001,32.843831900000005]},"id":"8f44c0a3615d2ac-17d7f539a94f7f47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d251-17df351010c8d1e1","8f44c0a3615d2ac-17d7f539a94f7f47"]},"geometry":{"type":"LineString","coordinates":[[-83.6206847,32.843870700000004],[-83.62061820000001,32.843831900000005]]},"id":"8c44c0a3615d3ff-17df3524edbf7c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d773-179fb57627f9d484","8f44c0a3615d2ac-17d7f539a94f7f47"]},"geometry":{"type":"LineString","coordinates":[[-83.62061820000001,32.843831900000005],[-83.6205214,32.8437755]]},"id":"8b44c0a3615dfff-17b77557e4256a28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d773-179fb57627f9d484","8f44c0a3615d44b-179735a75841ccab"]},"geometry":{"type":"LineString","coordinates":[[-83.6205214,32.8437755],[-83.6204427,32.843729700000004]]},"id":"8c44c0a3615d7ff-1797658ec6158757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d4a8-17df65e643d5ba0f","8f44c0a3615d44b-179735a75841ccab"]},"geometry":{"type":"LineString","coordinates":[[-83.6204427,32.843729700000004],[-83.62034200000001,32.843671]]},"id":"8b44c0a3615dfff-17f7e5c6d0cf8602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615d4a8-17df65e643d5ba0f","8f44c0a3615894c-17d7a610b8e7f554"]},"geometry":{"type":"LineString","coordinates":[[-83.62034200000001,32.843671],[-83.6202741,32.8436314]]},"id":"8a44c0a3615ffff-17d725fb80a4b006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615894c-17d7a610b8e7f554","8f44c0a36158913-17b7f64c5554bfd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6202741,32.8436314],[-83.62017870000001,32.8435757]]},"id":"8c44c0a361589ff-17b7662e88edc71a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36158913-17b7f64c5554bfd1","8f44c0a3615c6ee-179f36788c4495e9"]},"geometry":{"type":"LineString","coordinates":[[-83.62017870000001,32.8435757],[-83.620108,32.843534500000004]]},"id":"8a44c0a3615ffff-1797f6626c47c316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615c680-17ff36a6ba2549e7","8f44c0a3615c6ee-179f36788c4495e9"]},"geometry":{"type":"LineString","coordinates":[[-83.620108,32.843534500000004],[-83.62003410000001,32.8434915]]},"id":"8c44c0a3615c7ff-17ffa68f9a8538f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615ea25-17dfb6dcee70a5e0","8f44c0a3615c680-17ff36a6ba2549e7"]},"geometry":{"type":"LineString","coordinates":[[-83.62003410000001,32.8434915],[-83.6199474,32.843440900000004]]},"id":"8a44c0a3615ffff-17df66c1d0fd799c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615ea25-17dfb6dcee70a5e0","8f44c0a3615e8f3-179f37387f0e361b"]},"geometry":{"type":"LineString","coordinates":[[-83.6199474,32.843440900000004],[-83.6198009,32.8433555]]},"id":"8b44c0a3615efff-17b7e70ab73b1e3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6197812,32.8433445]},"id":"8f44c0a3615e888-17977744ccbf619a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615e888-17977744ccbf619a","8f44c0a3615e8f3-179f37387f0e361b"]},"geometry":{"type":"LineString","coordinates":[[-83.6198009,32.8433555],[-83.6197812,32.8433445]]},"id":"8c44c0a3615e9ff-1797e73ea642d942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619636,32.8432636]},"id":"8f44c0a3615ec34-17dfe79f83044c5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615e888-17977744ccbf619a","8f44c0a3615ec34-17dfe79f83044c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6197812,32.8433445],[-83.619636,32.8432636]]},"id":"8b44c0a3615efff-17ff377225995c67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36708d50-13ffb5df33c5e83c","8f44c0a36622b28-13ff7821f7a895e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6137997,32.848218700000004],[-83.61353670000001,32.8486174],[-83.61333090000001,32.8489351],[-83.61323610000001,32.849080400000005],[-83.613134,32.8492126],[-83.61300870000001,32.8493316],[-83.61287370000001,32.8494231]]},"id":"8844c0a367fffff-1397f6ec2300d955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3662229d-17ff38a81ef86dff","8f44c0a36622b28-13ff7821f7a895e0"]},"geometry":{"type":"LineString","coordinates":[[-83.61287370000001,32.8494231],[-83.6128017,32.8494971],[-83.6127457,32.8495663],[-83.6126591,32.849651300000005]]},"id":"8b44c0a36622fff-17b778648b461725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a662a0c-13d7ea38024b888a","8f44c0b1a60b841-13d6efe025aad2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.64478720000001,32.8254232],[-83.6444929,32.825392400000005],[-83.6442827,32.825391100000004],[-83.6440883,32.8254005],[-83.6436228,32.8254515],[-83.64326200000001,32.8254972],[-83.6429895,32.8255031],[-83.64272790000001,32.825472000000005],[-83.6424702,32.8254028]]},"id":"8844c0b1a7fffff-13dffd0e8639575c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a60a75a-139ff14b7df88c89","8f44c0b1a60b841-13d6efe025aad2c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6424702,32.8254028],[-83.6422584,32.8253529],[-83.64215270000001,32.8253302],[-83.6420581,32.8253178],[-83.6419616,32.825311400000004],[-83.64188890000001,32.8253117]]},"id":"8a44c0b1a60ffff-13b6f094b58be3a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a69d789-1397fa8b2294d02a","8f44c0b1a60a75a-139ff14b7df88c89"]},"geometry":{"type":"LineString","coordinates":[[-83.64188890000001,32.8253117],[-83.6417926,32.8253208],[-83.6416768,32.825338],[-83.64154,32.825366],[-83.64143270000001,32.8253908],[-83.64068560000001,32.8255835],[-83.64053030000001,32.8256177],[-83.6404157,32.8256395],[-83.64027510000001,32.825658100000005],[-83.6401457,32.8256674],[-83.64000510000001,32.8256736],[-83.639798,32.8256736],[-83.6385961,32.8256332],[-83.6384888,32.8256332],[-83.63837050000001,32.8256395],[-83.6382706,32.825651900000004],[-83.6381892,32.8256736],[-83.6381006,32.825704900000005]]},"id":"8844c0b1a7fffff-13b6f5e7475408eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1866241d-1796b1ce4b9e1a12","8f44c0b1866078d-1797f07d61fcfd62"]},"geometry":{"type":"LineString","coordinates":[[-83.667894,32.820208],[-83.66843300000001,32.820211]]},"id":"8944c0b1867ffff-1796f125dd68684d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1866078d-1797f07d61fcfd62","8f44c0b186652ed-1797eebca67497b0"]},"geometry":{"type":"LineString","coordinates":[[-83.66843300000001,32.820211],[-83.669151,32.820207]]},"id":"8a44c0b18667fff-1796af9d0d3f24c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18290004-1796acee2bcab2bf","8f44c0b186652ed-1797eebca67497b0"]},"geometry":{"type":"LineString","coordinates":[[-83.669151,32.820207],[-83.669891,32.820208]]},"id":"8744c0b18ffffff-1797bdd563eea5c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18290004-1796acee2bcab2bf","8f44c0b182953ae-179eaba4862a33aa"]},"geometry":{"type":"LineString","coordinates":[[-83.669891,32.820208],[-83.6704184,32.820212000000005]]},"id":"8a44c0b18297fff-1797ec4956c2f817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18282d2c-179feafdebba8420","8f44c0b182953ae-179eaba4862a33aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6704184,32.820212000000005],[-83.670685,32.820214]]},"id":"8944c0b182bffff-179fab5134354a78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18282d2c-179feafdebba8420","8f44c0b182808aa-1796a99981911d73"]},"geometry":{"type":"LineString","coordinates":[[-83.670685,32.820214],[-83.6712552,32.8202088]]},"id":"8a44c0b18287fff-179eaa4bbef6a429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b182854a1-1797e9206c8f5894","8f44c0b182808aa-1796a99981911d73"]},"geometry":{"type":"LineString","coordinates":[[-83.6712552,32.8202088],[-83.67144900000001,32.820207]]},"id":"8a44c0b18287fff-1797f95cf6af63ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b182ae394-1797e75c8118d66f","8f44c0b182854a1-1797e9206c8f5894"]},"geometry":{"type":"LineString","coordinates":[[-83.67144900000001,32.820207],[-83.672172,32.820211]]},"id":"8944c0b182bffff-1796a83e788040ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b182ae394-1797e75c8118d66f","8f44c0b182adc70-1796a5732ded5d16"]},"geometry":{"type":"LineString","coordinates":[[-83.672172,32.820211],[-83.672955,32.820208]]},"id":"8a44c0b182affff-1796f667d3d6c403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1821eb91-1796a3e0e3575f3f","8f44c0b182adc70-1796a5732ded5d16"]},"geometry":{"type":"LineString","coordinates":[[-83.672955,32.820208],[-83.6735986,32.820201600000004]]},"id":"8844c0b183fffff-1796a4aa077b1a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1821eb91-1796a3e0e3575f3f","8f44c0b1821c4cb-1797a37acc699204"]},"geometry":{"type":"LineString","coordinates":[[-83.6735986,32.820201600000004],[-83.67376200000001,32.8202]]},"id":"8a44c0b1821ffff-1797a3adde7d273b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18203219-1796e19de71cabc1","8f44c0b1821c4cb-1797a37acc699204"]},"geometry":{"type":"LineString","coordinates":[[-83.67376200000001,32.8202],[-83.674525,32.820203]]},"id":"8944c0b1823ffff-1797f28c5a27845e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6850398,32.744942900000005]},"id":"8f44c0b061b0c45-17d7d7f22a46cb1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b061b0c45-17d7d7f22a46cb1a","8f44c0b06180930-17be962ac786762e"]},"geometry":{"type":"LineString","coordinates":[[-83.6857684,32.7459209],[-83.6857193,32.745838400000004],[-83.68564230000001,32.7457127],[-83.68556290000001,32.7455988],[-83.68549750000001,32.7455085],[-83.6854485,32.745394600000004],[-83.6854181,32.745263],[-83.68538310000001,32.7451354],[-83.68531300000001,32.745047],[-83.68521030000001,32.744966500000004],[-83.6850398,32.744942900000005]]},"id":"8944c0b061bffff-17f686f47a3d40bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b061b0c45-17d7d7f22a46cb1a","8f44c0b06180d45-17d6d67681f28a81"]},"geometry":{"type":"LineString","coordinates":[[-83.6850398,32.744942900000005],[-83.6851869,32.7451491],[-83.6852523,32.7452787],[-83.6853037,32.7454476],[-83.68539240000001,32.7456126],[-83.68549750000001,32.745736300000004],[-83.6855932,32.745889500000004],[-83.6856472,32.745966100000004]]},"id":"8944c0b061bffff-1797e7389803ceef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8312e90e-13dff09430d5d57a","8f44c0b83131ae9-17bff348a4204a00"]},"geometry":{"type":"LineString","coordinates":[[-83.53732450000001,32.818475],[-83.5362166,32.8181974]]},"id":"8944c0b8313ffff-1397f1ee71ff05a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53514320000001,32.8179284]},"id":"8f44c0b831320f0-1797f5e78728ed53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b831320f0-1797f5e78728ed53","8f44c0b83131ae9-17bff348a4204a00"]},"geometry":{"type":"LineString","coordinates":[[-83.5362166,32.8181974],[-83.53514320000001,32.8179284]]},"id":"8a44c0b83137fff-17dff4981b45826d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5344615,32.8177576]},"id":"8f44c0b83c4832e-179ff791972816c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b831320f0-1797f5e78728ed53","8f44c0b83c4832e-179ff791972816c0"]},"geometry":{"type":"LineString","coordinates":[[-83.53514320000001,32.8179284],[-83.5344615,32.8177576]]},"id":"8844c0b831fffff-17dff6bc8f7b2b02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b838b42e4-17b7f2180109f30f","8f44c0b8389022a-139ff41811058720"]},"geometry":{"type":"LineString","coordinates":[[-83.536704,32.814518],[-83.5365312,32.8146383],[-83.5363035,32.8148536],[-83.53613270000001,32.8152125],[-83.53588470000001,32.815893200000005]]},"id":"8944c0b838bffff-13bff349a9355be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b831320f0-1797f5e78728ed53","8f44c0b8389022a-139ff41811058720"]},"geometry":{"type":"LineString","coordinates":[[-83.53588470000001,32.815893200000005],[-83.53514320000001,32.8179284]]},"id":"8744c0b83ffffff-179ff4ffc9cc1aa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5348137,32.8188528]},"id":"8f44c0b831107a9-13d7f6b57b280db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b831320f0-1797f5e78728ed53","8f44c0b831107a9-13d7f6b57b280db4"]},"geometry":{"type":"LineString","coordinates":[[-83.53514320000001,32.8179284],[-83.5348137,32.8188528]]},"id":"8944c0b8313ffff-13b7f64e770b780b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7361997,32.8098991]},"id":"8f44c0b088b4c68-13fefb0b3b9a5f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7365315,32.8099195]},"id":"8f44c0b0899b454-13f7ba3bd3c85572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b088b4c68-13fefb0b3b9a5f57","8f44c0b0899b454-13f7ba3bd3c85572"]},"geometry":{"type":"LineString","coordinates":[[-83.7361997,32.8098991],[-83.7365315,32.8099195]]},"id":"8944c0b088bffff-13f75aa3806027e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0899b454-13f7ba3bd3c85572","8f44c0b088a3899-17d6085376c9811d"]},"geometry":{"type":"LineString","coordinates":[[-83.7365315,32.8099195],[-83.737035,32.8099238],[-83.73718810000001,32.809942400000004],[-83.7374456,32.8100753],[-83.73762260000001,32.8103593],[-83.7379927,32.8111483],[-83.73810540000001,32.811265500000005],[-83.7383575,32.811436900000004],[-83.7382985,32.8117795],[-83.7381161,32.811797500000004],[-83.7379176,32.8117074],[-83.7376387,32.811481900000004],[-83.7374563,32.8112204],[-83.7373129,32.8108864]]},"id":"8844c0b089fffff-17df07785665c95b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b088b50f2-1797da3ded7d6292","8f44c0b088a3899-17d6085376c9811d"]},"geometry":{"type":"LineString","coordinates":[[-83.7373129,32.8108864],[-83.7371505,32.8105081],[-83.73702180000001,32.8104044],[-83.73686620000001,32.8103773],[-83.73652820000001,32.8103773]]},"id":"8944c0b088bffff-17ff6917fa5edb68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b088b50f2-1797da3ded7d6292","8f44c0b0899b454-13f7ba3bd3c85572"]},"geometry":{"type":"LineString","coordinates":[[-83.73652820000001,32.8103773],[-83.73652870000001,32.8103082],[-83.7365315,32.8099195]]},"id":"8944c0b088bffff-1796ca3cdc688d43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7620129,32.9012491]},"id":"8f44c0b532e6199-13f5fc05f7da5f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614796,32.9016935]},"id":"8f44c0b532f1c6d-1397fd534a1e4180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b532e6199-13f5fc05f7da5f6d","8f44c0b532f1c6d-1397fd534a1e4180"]},"geometry":{"type":"LineString","coordinates":[[-83.7620129,32.9012491],[-83.7618913,32.9011803],[-83.7617476,32.901155800000005],[-83.7616038,32.901179400000004],[-83.76148160000001,32.9012474],[-83.7613997,32.9013494],[-83.7613705,32.901470100000004],[-83.7613986,32.9015909],[-83.7614796,32.9016935]]},"id":"8944c0b532fffff-139fcd0e7ef8a476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7619521,32.901727900000004]},"id":"8f44c0b532e20e4-139ffc2bf677e979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b532f1c6d-1397fd534a1e4180","8f44c0b532e20e4-139ffc2bf677e979"]},"geometry":{"type":"LineString","coordinates":[[-83.7614796,32.9016935],[-83.76160110000001,32.9017622],[-83.7617448,32.9017867],[-83.7618887,32.901763100000004],[-83.7619521,32.901727900000004]]},"id":"8944c0b532fffff-13bffcc111a527e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b532e6199-13f5fc05f7da5f6d","8f44c0b532e20e4-139ffc2bf677e979"]},"geometry":{"type":"LineString","coordinates":[[-83.7619521,32.901727900000004],[-83.7620109,32.9016952],[-83.7620928,32.9015931],[-83.76212190000001,32.901472500000004],[-83.76209390000001,32.9013517],[-83.7620129,32.9012491]]},"id":"8a44c0b532e7fff-139dfbe38b190fb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2d96ab58-17b5cc3102bb7b17","8f44c0b532e20e4-139ffc2bf677e979"]},"geometry":{"type":"LineString","coordinates":[[-83.7619521,32.901727900000004],[-83.7621886,32.9019275],[-83.7622977,32.902058100000005],[-83.76237850000001,32.9021972],[-83.7624189,32.902377],[-83.7624351,32.902655200000005],[-83.762423,32.903140300000004],[-83.76237850000001,32.9053163],[-83.76234620000001,32.905486],[-83.762225,32.9056522],[-83.7620311,32.9057946],[-83.761944,32.9058312]]},"id":"8544c0b7fffffff-13b7cb36e00c58cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b532de56e-17b5ffa5f3212d48","8f44c0a2d96ab58-17b5cc3102bb7b17"]},"geometry":{"type":"LineString","coordinates":[[-83.761944,32.9058312],[-83.7618533,32.9058693],[-83.76166740000001,32.905903200000004],[-83.7614291,32.9059168],[-83.76117860000001,32.905886200000005],[-83.7609967,32.905815000000004],[-83.760827,32.905716600000005],[-83.76068160000001,32.905579200000005],[-83.7605927,32.9054469],[-83.76054020000001,32.9052841],[-83.76052,32.9051111],[-83.7605159,32.9048601],[-83.7605281,32.9031759]]},"id":"8544c0b7fffffff-13f5fefa0da41580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b532de56e-17b5ffa5f3212d48","8f44c0b532f1c6d-1397fd534a1e4180"]},"geometry":{"type":"LineString","coordinates":[[-83.7605281,32.9031759],[-83.7605321,32.902762],[-83.7605927,32.9025313],[-83.7606937,32.902388900000005],[-83.7608957,32.9021887],[-83.7614796,32.9016935]]},"id":"8944c0b532fffff-17b7cedae934ea31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8d72e04c-13ff6e11eefc2545","8f44c0b8d72dc95-139f6c9cc8376b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.591378,32.852344],[-83.590781,32.852325]]},"id":"8a44c0b8d72ffff-13977d5754e5331c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8d72e04c-13ff6e11eefc2545","8f44c0b8d700d6c-13fff08b0ec703e0"]},"geometry":{"type":"LineString","coordinates":[[-83.590781,32.852325],[-83.589768,32.8523]]},"id":"8944c0b8d73ffff-13f77f4e733d3745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8d7154ac-13d7f32cc08c237c","8f44c0b8d700d6c-13fff08b0ec703e0"]},"geometry":{"type":"LineString","coordinates":[[-83.589768,32.8523],[-83.58922840000001,32.8522805],[-83.58918700000001,32.852279],[-83.58869,32.852252]]},"id":"8944c0b8d73ffff-13f771dbf0e9667b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b83468615-17fec2bde92990be","8f44c0b82280046-179d5dfe6ece49df"]},"geometry":{"type":"LineString","coordinates":[[-83.52988500000001,32.823614],[-83.52745800000001,32.821544],[-83.527071,32.821222],[-83.52674900000001,32.820957],[-83.524451,32.819068],[-83.52420000000001,32.818865],[-83.52406400000001,32.818755],[-83.52243200000001,32.817414],[-83.521563,32.816706],[-83.520802,32.816073],[-83.52016400000001,32.815524],[-83.51920600000001,32.814687],[-83.5187226,32.8142676]]},"id":"8644c0b87ffffff-1399906131de6551"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5025653,32.804231800000004]},"id":"8f44c0b9195dd45-179ce570b6ff214b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b9195dd45-179ce570b6ff214b","8f44c0b82280046-179d5dfe6ece49df"]},"geometry":{"type":"LineString","coordinates":[[-83.5187226,32.8142676],[-83.51858200000001,32.814144],[-83.518395,32.813969],[-83.51831800000001,32.813902],[-83.517992,32.813622],[-83.51725,32.812979],[-83.516081,32.811981],[-83.514937,32.810995000000005],[-83.51379700000001,32.810001],[-83.513553,32.809793],[-83.513388,32.809641],[-83.512691,32.809041],[-83.51250800000001,32.808877],[-83.51187300000001,32.808326],[-83.51152300000001,32.808033],[-83.511407,32.807958],[-83.511285,32.807862],[-83.510959,32.807668],[-83.510636,32.807502],[-83.510272,32.807347],[-83.50622700000001,32.805783000000005],[-83.505668,32.805559],[-83.504608,32.805165],[-83.504553,32.80514],[-83.504428,32.805084],[-83.50368900000001,32.804803],[-83.503411,32.804692],[-83.50323800000001,32.804615000000005],[-83.502987,32.804488],[-83.502761,32.804361],[-83.5025653,32.804231800000004]]},"id":"8544c0bbfffffff-13bdf0be16d051f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626593,32.831209]},"id":"8f44c0ba921bc12-17f7b6a36d8f0792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba921bc12-17f7b6a36d8f0792","8f44c0ba9200873-17b753ee4ef92ed6"]},"geometry":{"type":"LineString","coordinates":[[-83.626593,32.831209],[-83.62663500000001,32.831128],[-83.627145,32.830522],[-83.627702,32.829858]]},"id":"8944c0ba923ffff-17df554da368851c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba930b70d-13f7d1342338266b","8f44c0ba9200873-17b753ee4ef92ed6"]},"geometry":{"type":"LineString","coordinates":[[-83.627702,32.829858],[-83.62881900000001,32.82855]]},"id":"8844c0ba93fffff-139f9291393a7452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.629355,32.82792]},"id":"8f44c0ba930d466-17ff0fe5202153c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba930d466-17ff0fe5202153c1","8f44c0ba930b70d-13f7d1342338266b"]},"geometry":{"type":"LineString","coordinates":[[-83.62881900000001,32.82855],[-83.629355,32.82792]]},"id":"8a44c0ba930ffff-13bff08ca856b2e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba930d466-17ff0fe5202153c1","8f44c0ba9ade4d4-17df2d350572ef00"]},"geometry":{"type":"LineString","coordinates":[[-83.629355,32.82792],[-83.629551,32.8277],[-83.629659,32.827619],[-83.629867,32.827475],[-83.630114,32.827275],[-83.63045600000001,32.826877]]},"id":"8844c0ba93fffff-17bf3e8673e705df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a19ad9-17d7886d6a6ca4f4","8f44c0ba9ade4d4-17df2d350572ef00"]},"geometry":{"type":"LineString","coordinates":[[-83.63045600000001,32.826877],[-83.63241380000001,32.8245784]]},"id":"8744c0ba9ffffff-139fdad13e27b6c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6333647,32.8234233]},"id":"8f44c0ba9a2a09e-17ff961b17157e80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a19ad9-17d7886d6a6ca4f4","8f44c0ba9a2a09e-17ff961b17157e80"]},"geometry":{"type":"LineString","coordinates":[[-83.63241380000001,32.8245784],[-83.6327495,32.824174400000004],[-83.6333647,32.8234233]]},"id":"8944c0ba9a3ffff-17df0743ab836379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348ca286-1396f90120da76e7","8f44c0a348d8a99-13beeacecca21de7"]},"geometry":{"type":"LineString","coordinates":[[-83.644546,32.835627],[-83.64528460000001,32.8359535]]},"id":"8944c0a348fffff-13b6f9e7fc1d155b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.646129,32.836329400000004]},"id":"8f44c0a34b96872-13f7e6f165d8f627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348ca286-1396f90120da76e7","8f44c0a34b96872-13f7e6f165d8f627"]},"geometry":{"type":"LineString","coordinates":[[-83.64528460000001,32.8359535],[-83.646129,32.836329400000004]]},"id":"8744c0a34ffffff-13fef7f94700597c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34435d41-13b70a6740343775","8f44c0a34434308-1397cafa25047b72"]},"geometry":{"type":"LineString","coordinates":[[-83.63136940000001,32.8361548],[-83.6314188,32.836166],[-83.6316044,32.836208]]},"id":"8a44c0a34437fff-13976ab0b8cc1424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34514428-17bf0b56e38d3afb","8f44c0a3453625d-17b78a07e181e508"]},"geometry":{"type":"LineString","coordinates":[[-83.63122100000001,32.833968],[-83.63175700000001,32.83334]]},"id":"8944c0a3453ffff-17ffcaaf67ae5de3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34534132-13b7b932dd79d564","8f44c0a3453625d-17b78a07e181e508"]},"geometry":{"type":"LineString","coordinates":[[-83.63175700000001,32.83334],[-83.6320979,32.8329307]]},"id":"8a44c0a34537fff-17b7a99d520a6da1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34534132-13b7b932dd79d564","8f44c0a34c9a326-13f7889ea1f18362"]},"geometry":{"type":"LineString","coordinates":[[-83.6320979,32.8329307],[-83.63233500000001,32.832652]]},"id":"8744c0a34ffffff-13dfa8e8b4e8e46b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c9852a-13df981a9f6122ad","8f44c0a34c9a326-13f7889ea1f18362"]},"geometry":{"type":"LineString","coordinates":[[-83.63233500000001,32.832652],[-83.6325463,32.832404100000005]]},"id":"8a44c0a34c9ffff-13bf185c92a7e4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c9852a-13df981a9f6122ad","8f44c0a34c9c603-13df37ab65614f01"]},"geometry":{"type":"LineString","coordinates":[[-83.6325463,32.832404100000005],[-83.6327242,32.832195500000005]]},"id":"8a44c0a34c9ffff-139f67e30c1e21a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c9c603-13df37ab65614f01","8f44c0a34c9c8c5-13df6731a33e91a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6327242,32.832195500000005],[-83.632919,32.831967]]},"id":"8b44c0a34c9cfff-1397c76e8965398e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6330872,32.831766]},"id":"8f44c0a34c8235c-13dfc6c88fe1311f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c8235c-13dfc6c88fe1311f","8f44c0a34c9c8c5-13df6731a33e91a4"]},"geometry":{"type":"LineString","coordinates":[[-83.632919,32.831967],[-83.6330872,32.831766]]},"id":"8944c0a34cbffff-139f96fd1161247b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c80d6d-17d705e7a7554b37","8f44c0a34c8235c-13dfc6c88fe1311f"]},"geometry":{"type":"LineString","coordinates":[[-83.6330872,32.831766],[-83.633447,32.831336]]},"id":"8a44c0a34c87fff-13d76658152b86ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c84a95-17bfe5690c397461","8f44c0a34c80d6d-17d705e7a7554b37"]},"geometry":{"type":"LineString","coordinates":[[-83.633447,32.831336],[-83.6336496,32.831099]]},"id":"8a44c0a34c87fff-17f7f5a85a0ead74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c84a95-17bfe5690c397461","8f44c0a34ca3d24-17d7449f84b7a7d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6336496,32.831099],[-83.633972,32.830722]]},"id":"8944c0a34cbffff-17b715044987a3f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6340778,32.8305974]},"id":"8f44c0a34ca0720-17f7645d6f9c994a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ca0720-17f7645d6f9c994a","8f44c0a34ca3d24-17d7449f84b7a7d8"]},"geometry":{"type":"LineString","coordinates":[[-83.633972,32.830722],[-83.6340778,32.8305974]]},"id":"8c44c0a34ca07ff-179f547e7484adf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6342218,32.8304278]},"id":"8f44c0a34ca08f4-179f64036b337966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ca08f4-179f64036b337966","8f44c0a34ca0720-17f7645d6f9c994a"]},"geometry":{"type":"LineString","coordinates":[[-83.6340778,32.8305974],[-83.6342218,32.8304278]]},"id":"8b44c0a34ca0fff-17bf64306438f963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ca08f4-179f64036b337966","8f44c0a34d8b4e3-1797a331ea3c0c86"]},"geometry":{"type":"LineString","coordinates":[[-83.6342218,32.8304278],[-83.634557,32.830033]]},"id":"8844c0a34dfffff-179f039aa6c4f862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d8b4e3-1797a331ea3c0c86","8f44c0a34d8c26e-13dfe1c44ac7799a"]},"geometry":{"type":"LineString","coordinates":[[-83.634557,32.830033],[-83.634766,32.829771],[-83.635142,32.829331]]},"id":"8a44c0a34d8ffff-13b7d27cdbe3f6f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62902240000001,32.8365758]},"id":"8f44c0a34599a14-179ff0b50074b816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3458e8dd-1397af72921f2ece","8f44c0a34599a14-179ff0b50074b816"]},"geometry":{"type":"LineString","coordinates":[[-83.62902240000001,32.8365758],[-83.62953830000001,32.835973800000005]]},"id":"8944c0a345bffff-13dfd013cc4f86e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345aac6a-13b79e3742256c69","8f44c0a3458e8dd-1397af72921f2ece"]},"geometry":{"type":"LineString","coordinates":[[-83.62953830000001,32.835973800000005],[-83.6299372,32.8354907],[-83.6300428,32.8353897]]},"id":"8944c0a345bffff-13df2ed816af2d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3684d754-17bff802a633b412","8f44c0a3686bb4e-13ffd6ec9f7727c1"]},"geometry":{"type":"LineString","coordinates":[[-83.62603100000001,32.840131],[-83.6264759,32.839598]]},"id":"8944c0a3687ffff-179757779409a5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3686d296-13ff96234381cca9","8f44c0a3686bb4e-13ffd6ec9f7727c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6264759,32.839598],[-83.6267457,32.839274700000004],[-83.62679800000001,32.839212]]},"id":"8a44c0a3686ffff-13f73687e9d7d941"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344a2cb0-17bf721cb60e65d3","8f44c0a344b176e-17bf12ea46f5b13a"]},"geometry":{"type":"LineString","coordinates":[[-83.628118,32.837656],[-83.6284469,32.8372678]]},"id":"8944c0a344bffff-17b7b28387349069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344a2cb0-17bf721cb60e65d3","8f44c0a344a2da4-179791faede14e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.6284469,32.8372678],[-83.628501,32.8372041]]},"id":"8c44c0a344a2dff-17bf920bd5a3a020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344a2da4-179791faede14e8d","8f44c0a34599a14-179ff0b50074b816"]},"geometry":{"type":"LineString","coordinates":[[-83.628501,32.8372041],[-83.62902240000001,32.8365758]]},"id":"8844c0a345fffff-17d75157fa7a9f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a1ad9b0-17b7e6bd8f082c3b","8f44c0b1a113c20-17b7f6b627a7341d"]},"geometry":{"type":"LineString","coordinates":[[-83.646212,32.814703],[-83.6462238,32.814296500000005]]},"id":"8944c0b1a13ffff-17b6e6b9db837e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64623300000001,32.813975]},"id":"8f44c0b1a11051c-17dee6b0698ac3da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a113c20-17b7f6b627a7341d","8f44c0b1a11051c-17dee6b0698ac3da"]},"geometry":{"type":"LineString","coordinates":[[-83.6462238,32.814296500000005],[-83.64622890000001,32.8141187],[-83.64623300000001,32.813975]]},"id":"8a44c0b1a117fff-17d6e6b3489233cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a116361-179ff6af23ce8ee5","8f44c0b1a11051c-17dee6b0698ac3da"]},"geometry":{"type":"LineString","coordinates":[[-83.64623300000001,32.813975],[-83.646235,32.8138455]]},"id":"8a44c0b1a117fff-17b7f6afc849cfbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d10191-1796ff14ff22f092","8f44c0a34d14b34-17f6fe24caf7a370"]},"geometry":{"type":"LineString","coordinates":[[-83.6362417,32.8275809],[-83.636626,32.827121000000005]]},"id":"8a44c0a34d17fff-1796fe9cefeee559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac4dc8c-13d7e6db8c9acef1","8f44c0b1ac45649-1396e80dc5fa6622"]},"geometry":{"type":"LineString","coordinates":[[-83.646164,32.812725],[-83.64579,32.812064],[-83.645756,32.812016],[-83.645674,32.811984]]},"id":"8944c0b1ac7ffff-13dee76895b2701d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a180291-139feb372c2308ec","8f44c0b1a1842ae-17ffead281545232"]},"geometry":{"type":"LineString","coordinates":[[-83.64454,32.814633],[-83.644379,32.815075]]},"id":"8a44c0b1a187fff-1797eb04d9d522c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.644096,32.815652]},"id":"8f44c0b1a19dc46-13f6ebe804922b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a19dc46-13f6ebe804922b6a","8f44c0b1a180291-139feb372c2308ec"]},"geometry":{"type":"LineString","coordinates":[[-83.644379,32.815075],[-83.644154,32.815548],[-83.644096,32.815652]]},"id":"8944c0b1a1bffff-13d7fb8dd00cda9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a19dc46-13f6ebe804922b6a","8f44c0b1a19d1b4-139febf485dec5ab"]},"geometry":{"type":"LineString","coordinates":[[-83.644096,32.815652],[-83.644076,32.815689]]},"id":"8c44c0b1a19ddff-1396fbee44620488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a19ba96-139eed0e6e0d5bec","8f44c0b1a19d1b4-139febf485dec5ab"]},"geometry":{"type":"LineString","coordinates":[[-83.644076,32.815689],[-83.64391300000001,32.815942],[-83.64380600000001,32.816093],[-83.643625,32.816321]]},"id":"8a44c0b1a19ffff-13d6fc7ce8a3e88d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64358,32.816377]},"id":"8f44c0b1a19b059-13bfed2a869497e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a19ba96-139eed0e6e0d5bec","8f44c0b1a19b059-13bfed2a869497e2"]},"geometry":{"type":"LineString","coordinates":[[-83.643625,32.816321],[-83.64358,32.816377]]},"id":"8c44c0b1a19b1ff-13beed1c7b1a4e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0b556e-1797fdcfe12eb102","8f44c0b1a19b059-13bfed2a869497e2"]},"geometry":{"type":"LineString","coordinates":[[-83.64358,32.816377],[-83.643366,32.816643],[-83.6433154,32.816696900000004]]},"id":"8944c0b1a0bffff-13b6fd7c13a4c89b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0b0a0c-17feee3c5812067f","8f44c0b1a0b556e-1797fdcfe12eb102"]},"geometry":{"type":"LineString","coordinates":[[-83.6433154,32.816696900000004],[-83.643197,32.816823],[-83.6431419,32.8168674]]},"id":"8a44c0b1a0b7fff-17befe04af12e78c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a0b0a0c-17feee3c5812067f","8f44c0b1a0b39a5-17f7eed928a0e86c"]},"geometry":{"type":"LineString","coordinates":[[-83.6431419,32.8168674],[-83.64301800000001,32.816967000000005],[-83.642891,32.817062]]},"id":"8a44c0b1a0b7fff-17bfee8a3c2374b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a090c2d-17dff0a0c4e0a345","8f44c0b1a0b39a5-17f7eed928a0e86c"]},"geometry":{"type":"LineString","coordinates":[[-83.642891,32.817062],[-83.64239900000001,32.817469],[-83.642162,32.817653]]},"id":"8944c0b1a0bffff-17b6efbbbbe6588f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a09050a-179ef0e94cadd16d","8f44c0b1a090c2d-17dff0a0c4e0a345"]},"geometry":{"type":"LineString","coordinates":[[-83.642162,32.817653],[-83.64204600000001,32.817754]]},"id":"8b44c0b1a090fff-17fef0c50d1cfe77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a46e8d4-139ff2fbe5286196","8f44c0b1a09050a-179ef0e94cadd16d"]},"geometry":{"type":"LineString","coordinates":[[-83.64204600000001,32.817754],[-83.641197,32.81837]]},"id":"8844c0b1a5fffff-17def1f2975b1ceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a441d4b-13d6f49ea552a471","8f44c0b1a46e8d4-139ff2fbe5286196"]},"geometry":{"type":"LineString","coordinates":[[-83.641197,32.81837],[-83.640527,32.818852]]},"id":"8944c0b1a47ffff-13bff3cd423f0545"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a441d4b-13d6f49ea552a471","8f44c0b1a443b05-13d7f541c4563af7"]},"geometry":{"type":"LineString","coordinates":[[-83.640527,32.818852],[-83.64026600000001,32.819049]]},"id":"8a44c0b1a447fff-1396f4f033d12b20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a458873-13fef6e669fcaa16","8f44c0b1a443b05-13d7f541c4563af7"]},"geometry":{"type":"LineString","coordinates":[[-83.64026600000001,32.819049],[-83.639818,32.81937],[-83.639593,32.819527]]},"id":"8944c0b1a47ffff-13d7f613a0635254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7b6a21-17d7f95c677d9d66","8f44c0b1a458873-13fef6e669fcaa16"]},"geometry":{"type":"LineString","coordinates":[[-83.639593,32.819527],[-83.638585,32.820281]]},"id":"8844c0b1a5fffff-13def82160d8c273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7b6a03-17d6f96f23d022f5","8f44c0b1a7b6a21-17d7f95c677d9d66"]},"geometry":{"type":"LineString","coordinates":[[-83.638585,32.820281],[-83.63855500000001,32.820304]]},"id":"8d44c0b1a7b6a3f-17def965c5297c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a7b6a03-17d6f96f23d022f5","8f44c0b1a4c9662-17fefb74b1f67457"]},"geometry":{"type":"LineString","coordinates":[[-83.63855500000001,32.820304],[-83.638079,32.820678],[-83.6377269,32.8209825]]},"id":"8944c0b1a7bffff-17b7fa746aa801fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630024,32.838122000000006]},"id":"8f44c0a344add9d-13d74e4308b5fb3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a2b68-17bf710425ecab1c","8f44c0a344add9d-13d74e4308b5fb3f"]},"geometry":{"type":"LineString","coordinates":[[-83.62889580000001,32.8374406],[-83.62996910000001,32.8380889],[-83.630024,32.838122000000006]]},"id":"8944c0a344bffff-17ff5fa399aebcbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344add9d-13d74e4308b5fb3f","8f44c0a344187b1-1397fc3cb28e97c0"]},"geometry":{"type":"LineString","coordinates":[[-83.630024,32.838122000000006],[-83.6300958,32.838163800000004],[-83.6308533,32.8386063]]},"id":"8844c0a345fffff-13ff9d3fdf493bc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63120470000001,32.8388164]},"id":"8f44c0a34419425-13974b6116d0078f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344187b1-1397fc3cb28e97c0","8f44c0a34419425-13974b6116d0078f"]},"geometry":{"type":"LineString","coordinates":[[-83.6308533,32.8386063],[-83.63120470000001,32.8388164]]},"id":"8a44c0a3441ffff-13d79bcee38e9554"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34419342-13f79aa1e0fa6ba2","8f44c0a34419425-13974b6116d0078f"]},"geometry":{"type":"LineString","coordinates":[[-83.63120470000001,32.8388164],[-83.6315106,32.838999300000005]]},"id":"8b44c0a34419fff-13bf7b01751b925d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34419342-13f79aa1e0fa6ba2","8f44c0a344e4c85-139f6a78611709d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6315106,32.838999300000005],[-83.63157700000001,32.839039]]},"id":"8a44c0a344e7fff-13970a8d2a689d98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344e5b0d-13b7b8ad1e69004d","8f44c0a344e4c85-139f6a78611709d9"]},"geometry":{"type":"LineString","coordinates":[[-83.63157700000001,32.839039],[-83.6323119,32.8394811]]},"id":"8844c0a345fffff-139f9992b9b79302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344e5b0d-13b7b8ad1e69004d","8f44c0a34451531-17df66be0267997f"]},"geometry":{"type":"LineString","coordinates":[[-83.6323119,32.8394811],[-83.633104,32.839959]]},"id":"8a44c0a34457fff-17bf07b59a50657e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b169b5-179f5857a491d2d8","8f44c0a36b150a0-1797768b663fd222"]},"geometry":{"type":"LineString","coordinates":[[-83.625895,32.840674],[-83.62663140000001,32.8410998]]},"id":"8a44c0a36b17fff-179757718c09ca2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab31cc3-17b7ed569bd1acb0","8f44c0b1ab31461-17f7dd5cd8bdcdad"]},"geometry":{"type":"LineString","coordinates":[[-83.65660670000001,32.8142201],[-83.6566167,32.8141174]]},"id":"8b44c0b1ab31fff-17d7cd59b809ffb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab31cc3-17b7ed569bd1acb0","8f44c0b1ab354c6-17f6ed4e40af8e15"]},"geometry":{"type":"LineString","coordinates":[[-83.6566167,32.8141174],[-83.6566282,32.8140063],[-83.65663,32.813805]]},"id":"8a44c0b1ab37fff-17d7ed5058fe90a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6566614,32.809015]},"id":"8f44c0b1a961b6b-13d6ed3aad35fa20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a961b6b-13d6ed3aad35fa20","8f44c0b1ab354c6-17f6ed4e40af8e15"]},"geometry":{"type":"LineString","coordinates":[[-83.65663,32.813805],[-83.656636,32.813279],[-83.656621,32.813023],[-83.65659000000001,32.812745],[-83.65656100000001,32.812534],[-83.656541,32.812424],[-83.656435,32.811843],[-83.65635970000001,32.8113994],[-83.6563378,32.8111079],[-83.65634800000001,32.810822],[-83.65636470000001,32.810674],[-83.6565204,32.809844000000005],[-83.656597,32.8094289],[-83.6566614,32.809015]]},"id":"8744c0b1affffff-179edd9cd2014f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70973450000001,32.8200511]},"id":"8f44c0b0a1a3ac3-17b7fba7fdbf6e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a1aa0b6-17dfcbb06b08b780","8f44c0b0a1a3ac3-17b7fba7fdbf6e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.709721,32.8207036],[-83.70972400000001,32.820478],[-83.70973450000001,32.8200511]]},"id":"8944c0b0a1bffff-17ffdbacbbdee19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095565,32.8185102]},"id":"8f44c0b0ac5d293-13f6ec1731060d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac5d293-13f6ec1731060d48","8f44c0b0a1a3ac3-17b7fba7fdbf6e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.70973450000001,32.8200511],[-83.7097358,32.819996],[-83.70974190000001,32.8197251],[-83.709739,32.819538],[-83.709722,32.8194247],[-83.7096915,32.819098600000004],[-83.7096166,32.818732700000005],[-83.7095565,32.8185102]]},"id":"8744c0b0affffff-13df5bc49b3131fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095261,32.8184112]},"id":"8f44c0b0ac5d72d-13b74c2a32638780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac5d293-13f6ec1731060d48","8f44c0b0ac5d72d-13b74c2a32638780"]},"geometry":{"type":"LineString","coordinates":[[-83.7095565,32.8185102],[-83.7095415,32.818454700000004],[-83.7095261,32.8184112]]},"id":"8c44c0b0ac5d7ff-13d7cc2029f01692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac5ca33-17befc82c01e3237","8f44c0b0ac5d72d-13b74c2a32638780"]},"geometry":{"type":"LineString","coordinates":[[-83.7095261,32.8184112],[-83.7093844,32.8180111]]},"id":"8a44c0b0ac5ffff-17b64c5687e20520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092664,32.8177765]},"id":"8f44c0b0ac4265c-17b65ccc894f5997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac5ca33-17befc82c01e3237","8f44c0b0ac4265c-17b65ccc894f5997"]},"geometry":{"type":"LineString","coordinates":[[-83.7093844,32.8180111],[-83.7092664,32.8177765]]},"id":"8944c0b0ac7ffff-17ffeca7a84b2163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac425ac-17974d23a0e226f9","8f44c0b0ac4265c-17b65ccc894f5997"]},"geometry":{"type":"LineString","coordinates":[[-83.7092664,32.8177765],[-83.70924240000001,32.817728800000005],[-83.70912700000001,32.817512400000005]]},"id":"8b44c0b0ac42fff-17d7ecf7c3571158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70906980000001,32.8174116]},"id":"8f44c0b0ac55201-17d64d4760caa814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac425ac-17974d23a0e226f9","8f44c0b0ac55201-17d64d4760caa814"]},"geometry":{"type":"LineString","coordinates":[[-83.70912700000001,32.817512400000005],[-83.70906980000001,32.8174116]]},"id":"8a44c0b0ac57fff-17f7cd35874c3f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac55051-17ffcd6e580d919d","8f44c0b0ac55201-17d64d4760caa814"]},"geometry":{"type":"LineString","coordinates":[[-83.70906980000001,32.8174116],[-83.7090075,32.817302000000005]]},"id":"8b44c0b0ac55fff-17b64d5aeb22e5f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a311758b0-1796df3272e792ba","8f44c0a31175a66-1797fea2db1a8ca7"]},"geometry":{"type":"LineString","coordinates":[[-83.6558553,32.873452900000004],[-83.6560851,32.8736343]]},"id":"8b44c0a31175fff-17deceeaa39f576f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31162944-17d7ddf25643243b","8f44c0a31175a66-1797fea2db1a8ca7"]},"geometry":{"type":"LineString","coordinates":[[-83.6560851,32.8736343],[-83.6563175,32.873739900000004],[-83.6563675,32.8737593]]},"id":"8a44c0a31167fff-17bfce4aea684e10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31162944-17d7ddf25643243b","8f44c0a31b9578d-17d7e9204d8a3604"]},"geometry":{"type":"LineString","coordinates":[[-83.6563675,32.8737593],[-83.65648320000001,32.873804400000004],[-83.6566538,32.873854900000005],[-83.6569114,32.873907],[-83.6569889,32.8739204],[-83.6572555,32.8739507],[-83.6574114,32.8739633],[-83.6574952,32.873969100000004],[-83.658342,32.873939]]},"id":"8744c0a31ffffff-17b7eb8ea8b57734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6551544,32.8692671]},"id":"8f44c0a318ae0b2-17dff0e885d197e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65534980000001,32.8692474]},"id":"8f44c0a318ae16c-17dff06e6da5cbe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a318ae16c-17dff06e6da5cbe4","8f44c0a318ae0b2-17dff0e885d197e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6551544,32.8692671],[-83.6552403,32.869264900000005],[-83.65534980000001,32.8692474]]},"id":"8b44c0a318aefff-17d7d0ab45b58470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a318ae16c-17dff06e6da5cbe4","8f44c0a318ae0b2-17dff0e885d197e0"]},"geometry":{"type":"LineString","coordinates":[[-83.65534980000001,32.8692474],[-83.6554097,32.8691742],[-83.65541230000001,32.8690921],[-83.65537060000001,32.8690385],[-83.65531990000001,32.8690188],[-83.65530030000001,32.8690112],[-83.65519350000001,32.8690243],[-83.65514830000001,32.8690446],[-83.655101,32.8690659],[-83.65505540000001,32.869122700000005],[-83.6550515,32.8691807],[-83.655088,32.869243100000006],[-83.6551544,32.8692671]]},"id":"8944c0a318bffff-13fff0b8aec989d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3102cd9d-13fed3fd094af112","8f44c0a31028465-13f6f438d25c927b"]},"geometry":{"type":"LineString","coordinates":[[-83.6537971,32.8756554],[-83.65372950000001,32.8755903],[-83.6536871,32.8755315],[-83.65366370000001,32.8754745],[-83.6536447,32.8754032],[-83.65365530000001,32.875337300000005],[-83.65368070000001,32.8752553],[-83.65371250000001,32.8751983],[-83.653755,32.875164500000004],[-83.6538419,32.8750915],[-83.65389280000001,32.8750273]]},"id":"8a44c0a3102ffff-13bfd4639190af77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6539003,32.8746906]},"id":"8f44c0a311525b0-139ff3f853f2e324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3102cd9d-13fed3fd094af112","8f44c0a311525b0-139ff3f853f2e324"]},"geometry":{"type":"LineString","coordinates":[[-83.65389280000001,32.8750273],[-83.65393630000001,32.8749525],[-83.6539618,32.8748777],[-83.65394690000001,32.8747708],[-83.6539257,32.8747245],[-83.6539003,32.8746906]]},"id":"8944c0a3103ffff-1396d3e1b64192fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3117490b-17becfcd4c620da2","8f44c0a311741a6-17f7d03bd5343415"]},"geometry":{"type":"LineString","coordinates":[[-83.65560760000001,32.873102],[-83.65553530000001,32.873112400000004],[-83.6554732,32.8731451],[-83.65543070000001,32.8731953]]},"id":"8b44c0a31174fff-17def0097ebdc4d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31174085-17bed0447dfd060a","8f44c0a311741a6-17f7d03bd5343415"]},"geometry":{"type":"LineString","coordinates":[[-83.65543070000001,32.8731953],[-83.65541560000001,32.8732404],[-83.6554169,32.8732872]]},"id":"8b44c0a31174fff-179ff042b5592ad4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31174232-17fedff7cfdffd61","8f44c0a31174085-17bed0447dfd060a"]},"geometry":{"type":"LineString","coordinates":[[-83.6554169,32.8732872],[-83.6554395,32.8733394],[-83.6554821,32.873381800000004],[-83.65553960000001,32.8734093]]},"id":"8b44c0a31174fff-17ded02465bbee8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a31174232-17fedff7cfdffd61","8f44c0a3117436d-17fecfa765358adc"]},"geometry":{"type":"LineString","coordinates":[[-83.65553960000001,32.8734093],[-83.65560400000001,32.873418300000004],[-83.65566820000001,32.8734084]]},"id":"8b44c0a31174fff-17ffcfcf98845a62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a318db79c-179ecf5ada4b9f15","8f44c0a3117436d-17fecfa765358adc"]},"geometry":{"type":"LineString","coordinates":[[-83.65566820000001,32.8734084],[-83.65573090000001,32.873375800000005],[-83.6557739,32.8733255],[-83.65579070000001,32.8732652]]},"id":"8944c0a3117ffff-17d6cf7891234a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a311248b6-13f7d30267696e2d","8f44c0a31174d34-1797f053936df8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65539270000001,32.8730234],[-83.6553111,32.872943500000005],[-83.6551719,32.872815100000004],[-83.6549816,32.8726724],[-83.6548016,32.872564000000004],[-83.65457740000001,32.872461300000005],[-83.6543158,32.87234],[-83.65418670000001,32.8722773],[-83.65408140000001,32.8721831],[-83.65400670000001,32.8721004],[-83.65395910000001,32.8720176],[-83.65392510000001,32.871932],[-83.65390810000001,32.8718607],[-83.6538878,32.8717723],[-83.6538945,32.8716695],[-83.65392510000001,32.8715611],[-83.6540052,32.871411],[-83.65414770000001,32.8711809],[-83.6542682,32.870986200000004],[-83.6542938,32.8709489]]},"id":"8744c0a31ffffff-13d7f2b8360584b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3188c6e1-17ffd18445cbc007","8f44c0a311248b6-13f7d30267696e2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6542938,32.8709489],[-83.65438370000001,32.8708179],[-83.6546663,32.8705354],[-83.6547711,32.8704557],[-83.6549052,32.870319200000004]]},"id":"8944c0a318bffff-17bed24a56714b17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6552364,32.869389600000005]},"id":"8f44c0a318ae76e-17bed0b5496e3969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3188c6e1-17ffd18445cbc007","8f44c0a318ae76e-17bed0b5496e3969"]},"geometry":{"type":"LineString","coordinates":[[-83.6549052,32.870319200000004],[-83.6549973,32.8701937],[-83.655057,32.870084500000004],[-83.65514470000001,32.8697736],[-83.6552364,32.869389600000005]]},"id":"8944c0a318bffff-17d6d1082b5c1410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a318ae0b2-17dff0e885d197e0","8f44c0a318ae76e-17bed0b5496e3969"]},"geometry":{"type":"LineString","coordinates":[[-83.6551544,32.8692671],[-83.6551922,32.869325100000005],[-83.6552364,32.869389600000005]]},"id":"8b44c0a318aefff-1796f0cf217f5ce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a318ae16c-17dff06e6da5cbe4","8f44c0a318ae76e-17bed0b5496e3969"]},"geometry":{"type":"LineString","coordinates":[[-83.6552364,32.869389600000005],[-83.6552573,32.869319600000004],[-83.65534980000001,32.8692474]]},"id":"8b44c0a318aefff-17f7d098e01912f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76077430000001,32.880990100000005]},"id":"8f44c0b5065aa58-13ffdf0c1fe32a8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7607546,32.8819924]},"id":"8f44c0b539b181b-13fdcf18669f151f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539b181b-13fdcf18669f151f","8f44c0b5065aa58-13ffdf0c1fe32a8c"]},"geometry":{"type":"LineString","coordinates":[[-83.76077430000001,32.880990100000005],[-83.7607546,32.8819924]]},"id":"8644c0b57ffffff-13b5df12304d60c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7607507,32.8821888]},"id":"8f44c0b539b1315-13fdcf1adf3c67fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539b181b-13fdcf18669f151f","8f44c0b539b1315-13fdcf1adf3c67fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7607546,32.8819924],[-83.7607507,32.8821888]]},"id":"8b44c0b539b1fff-13bfef19aae05f75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539a2418-13ffce9e23f36eb6","8f44c0b539b181b-13fdcf18669f151f"]},"geometry":{"type":"LineString","coordinates":[[-83.7607546,32.8819924],[-83.76095020000001,32.8819952]]},"id":"8a44c0b539b7fff-13ffeedb4250e1a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b539a2418-13ffce9e23f36eb6","8f44c0b50658642-13fdce91da2010a9"]},"geometry":{"type":"LineString","coordinates":[[-83.76095020000001,32.8819952],[-83.7611507,32.8819979],[-83.76117040000001,32.8809956],[-83.7609699,32.8809928]]},"id":"8644c0b57ffffff-13b7ce2c95f7a4ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065aa58-13ffdf0c1fe32a8c","8f44c0b50658642-13fdce91da2010a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7609699,32.8809928],[-83.76077430000001,32.880990100000005]]},"id":"8a44c0b5065ffff-13fffecefab7a466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065aa58-13ffdf0c1fe32a8c","8f44c0b5065a3b4-13fddf89adec4bd9"]},"geometry":{"type":"LineString","coordinates":[[-83.76077430000001,32.880990100000005],[-83.7605734,32.8809873]]},"id":"8b44c0b5065afff-13fdff4ae75b2f74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5065a3b4-13fddf89adec4bd9","8f44c0b5065a7b2-13f7f00433d5fb63"]},"geometry":{"type":"LineString","coordinates":[[-83.7605734,32.8809873],[-83.7603773,32.880984600000005]]},"id":"8b44c0b5065afff-13fdcfc6e65a1e3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7575094,32.877810700000005]},"id":"8f44c0b506ac96e-13b7f704a86c03d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75744230000001,32.877833200000005]},"id":"8f44c0b506ac828-13d5d72e98391017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506ac96e-13b7f704a86c03d9","8f44c0b506ac828-13d5d72e98391017"]},"geometry":{"type":"LineString","coordinates":[[-83.7575094,32.877810700000005],[-83.75745210000001,32.8777595],[-83.7572205,32.8775844],[-83.75713640000001,32.8775537],[-83.7567659,32.8775466],[-83.7566879,32.877587500000004],[-83.75665380000001,32.8776633],[-83.75666840000001,32.877746200000004],[-83.7567781,32.8778209],[-83.75744230000001,32.877833200000005]]},"id":"8944c0b506bffff-13f5d825745bcaea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506ac96e-13b7f704a86c03d9","8f44c0b506ac828-13d5d72e98391017"]},"geometry":{"type":"LineString","coordinates":[[-83.75744230000001,32.877833200000005],[-83.7575094,32.877810700000005]]},"id":"8c44c0b506ac9ff-13bfd719a824d409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53d66c89-13fdd6625bc5d4dd","8f44c0b506dc6d6-13d7f6b523cb0546"]},"geometry":{"type":"LineString","coordinates":[[-83.7577691,32.882195200000005],[-83.7577839,32.8815985],[-83.75776060000001,32.8814705],[-83.75770560000001,32.8813656],[-83.75763660000001,32.881309]]},"id":"8744c0b53ffffff-13dff667d296e62b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506de562-13fdd7c6e8fe81e8","8f44c0b506dc6d6-13d7f6b523cb0546"]},"geometry":{"type":"LineString","coordinates":[[-83.75763660000001,32.881309],[-83.7575712,32.8812554],[-83.75742410000001,32.881193200000006],[-83.75728860000001,32.8811727],[-83.75719860000001,32.881172400000004]]},"id":"8a44c0b506dffff-1397d7381bf6e7dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640057,32.8865797]},"id":"8f44c0b5380b8ee-17b5d7287d30d72c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7650935,32.8870972]},"id":"8f44c0b53855c68-17f7c4809df74559"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53855c68-17f7c4809df74559","8f44c0b5380b8ee-17b5d7287d30d72c"]},"geometry":{"type":"LineString","coordinates":[[-83.7640057,32.8865797],[-83.7639982,32.886132],[-83.7640406,32.886080500000006],[-83.7650016,32.886068],[-83.765082,32.8861427],[-83.7650935,32.8870972]]},"id":"8844c0b539fffff-1795c5949e91d718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640183,32.8876293]},"id":"8f44c0b538526c3-13b5d720926e9ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53855c68-17f7c4809df74559","8f44c0b538526c3-13b5d720926e9ecc"]},"geometry":{"type":"LineString","coordinates":[[-83.7650935,32.8870972],[-83.7651053,32.8880731],[-83.765046,32.888126400000004],[-83.7640956,32.888134400000006],[-83.76402470000001,32.8880908],[-83.7640183,32.8876293]]},"id":"8844c0b539fffff-13d7d58783d5f2ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76449360000001,32.8871022]},"id":"8f44c0b53850da3-17f7e5f7875f112e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538526c3-13b5d720926e9ecc","8f44c0b53850da3-17f7e5f7875f112e"]},"geometry":{"type":"LineString","coordinates":[[-83.7640183,32.8876293],[-83.7640109,32.887106100000004],[-83.76449360000001,32.8871022]]},"id":"8a44c0b53857fff-13bdc6dbae2a38ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53855c68-17f7c4809df74559","8f44c0b53850da3-17f7e5f7875f112e"]},"geometry":{"type":"LineString","coordinates":[[-83.76449360000001,32.8871022],[-83.7650935,32.8870972]]},"id":"8a44c0b53857fff-17f5d53c08494f65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7598978,32.8873547]},"id":"8f44c0b53124cb1-1395f12fea25f31e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53889894-139fce6c44b445a8","8f44c0b53124cb1-1395f12fea25f31e"]},"geometry":{"type":"LineString","coordinates":[[-83.7598978,32.8873547],[-83.75992740000001,32.8875297],[-83.7600915,32.8876622],[-83.7606418,32.8879972],[-83.76076880000001,32.8880274],[-83.76092650000001,32.8879821],[-83.7610123,32.8879181],[-83.76125780000001,32.887601700000005],[-83.7612821,32.8875066],[-83.76127260000001,32.887403500000005],[-83.7612112,32.8872889],[-83.76103,32.8871648]]},"id":"8844c0b539fffff-13d5df38d9aac831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53889894-139fce6c44b445a8","8f44c0b53888af4-17b7eef1620bdcf8"]},"geometry":{"type":"LineString","coordinates":[[-83.76103,32.8871648],[-83.760817,32.887019]]},"id":"8a44c0b5388ffff-17f5feaedb378d6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76073600000001,32.8868081]},"id":"8f44c0b5388898d-17bfdf240d88dc94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388898d-17bfdf240d88dc94","8f44c0b53888af4-17b7eef1620bdcf8"]},"geometry":{"type":"LineString","coordinates":[[-83.760817,32.887019],[-83.76079320000001,32.887002700000004],[-83.76073600000001,32.8868081]]},"id":"8b44c0b53888fff-17f5df0f09d9f928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76052650000001,32.8866828]},"id":"8f44c0b5388ea70-17f5cfa6faf3eea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388ea70-17f5cfa6faf3eea9","8f44c0b5388898d-17bfdf240d88dc94"]},"geometry":{"type":"LineString","coordinates":[[-83.76052650000001,32.8866828],[-83.76055170000001,32.8867385],[-83.76060030000001,32.8867819],[-83.76066510000001,32.8868063],[-83.76073600000001,32.8868081]]},"id":"8a44c0b5388ffff-1797ef6f6b6dd1c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388898d-17bfdf240d88dc94","8f44c0b5388ca9a-17b7eece60e2be83"]},"geometry":{"type":"LineString","coordinates":[[-83.76073600000001,32.8868081],[-83.7608024,32.886786900000004],[-83.76085400000001,32.886746],[-83.7608831,32.8866917],[-83.7608853,32.8866321],[-83.760873,32.886589400000005]]},"id":"8a44c0b5388ffff-17fdeee22f451a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dd375-17dffe8782ebab40","8f44c0b502dd61e-17f7ff328f66f383"]},"geometry":{"type":"LineString","coordinates":[[-83.76726640000001,32.882391000000005],[-83.76726570000001,32.882432200000004],[-83.7672871,32.8824771],[-83.7673273,32.8825118],[-83.7673802,32.8825309],[-83.76743780000001,32.8825315],[-83.7674913,32.8825136],[-83.76753260000001,32.8824798],[-83.76755530000001,32.882435300000004],[-83.76755610000001,32.882387],[-83.76754000000001,32.882353200000004]]},"id":"8a44c0b502dffff-179dfed129cbedc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7674214,32.882288]},"id":"8f44c0b502dd051-17b7bed1a74d9317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dd051-17b7bed1a74d9317","8f44c0b502dd375-17dffe8782ebab40"]},"geometry":{"type":"LineString","coordinates":[[-83.76754000000001,32.882353200000004],[-83.7675347,32.882342],[-83.76749450000001,32.8823074],[-83.76744160000001,32.8822883],[-83.7674214,32.882288]]},"id":"8b44c0b502ddfff-17b5fea916f929de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76159290000001,32.878383400000004]},"id":"8f44c0b5075b688-139ded0c7d81245d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76159150000001,32.8779568]},"id":"8f44c0b5075aaee-1397cd0d5eaeb3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075aaee-1397cd0d5eaeb3d8","8f44c0b5075b688-139ded0c7d81245d"]},"geometry":{"type":"LineString","coordinates":[[-83.76159290000001,32.878383400000004],[-83.76159150000001,32.8779568]]},"id":"8844c0b507fffff-139ddd0cec5f44b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075e310-139ffd0e253116c6","8f44c0b5075aaee-1397cd0d5eaeb3d8"]},"geometry":{"type":"LineString","coordinates":[[-83.76159150000001,32.8779568],[-83.7615902,32.877541900000004]]},"id":"8a44c0b5075ffff-1395dd0dc671b328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76235720000001,32.8796119]},"id":"8f44c0b50645809-179dfb2ece6280ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50663131-17b5eb2b2ad32a6c","8f44c0b50645809-179dfb2ece6280ac"]},"geometry":{"type":"LineString","coordinates":[[-83.76235720000001,32.8796119],[-83.76236300000001,32.8792154]]},"id":"8944c0b5067ffff-17b5db2cfc1c47a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.762365,32.8790774]},"id":"8f44c0b506606ce-17dfeb29e8e8bad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506606ce-17dfeb29e8e8bad7","8f44c0b50663131-17b5eb2b2ad32a6c"]},"geometry":{"type":"LineString","coordinates":[[-83.76236300000001,32.8792154],[-83.762365,32.8790774]]},"id":"8b44c0b50663fff-17ffcb2a85cf52a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53800d95-139ff8f24faa3604","8f44c0b5380050d-13fde8f1cfc1c657"]},"geometry":{"type":"LineString","coordinates":[[-83.76327400000001,32.885082600000004],[-83.7632732,32.884937900000004]]},"id":"8a44c0b53807fff-13dff8f2051251ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53800d95-139ff8f24faa3604","8f44c0b53831235-1395c8f3c06f144d"]},"geometry":{"type":"LineString","coordinates":[[-83.7632732,32.884937900000004],[-83.7632708,32.884514800000005]]},"id":"8944c0b5383ffff-139fc8f3013b71c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7620278,32.8754621]},"id":"8f44c0b507746e5-13ffdbfca3078b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76179400000001,32.8756544]},"id":"8f44c0b507705ad-13f5cc8ec1610b9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b507746e5-13ffdbfca3078b66","8f44c0b507705ad-13f5cc8ec1610b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.7620278,32.8754621],[-83.76179400000001,32.8756544]]},"id":"8a44c0b50777fff-13b7ec45b21de033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50772070-17ffed2078c4451d","8f44c0b507705ad-13f5cc8ec1610b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.76179400000001,32.8756544],[-83.7615609,32.875846200000005]]},"id":"8a44c0b50777fff-17bffcd7918202c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dd051-17b7bed1a74d9317","8f44c0b502dd81d-13bfbea8f851e634"]},"geometry":{"type":"LineString","coordinates":[[-83.7674214,32.882288],[-83.7674865,32.882116100000005]]},"id":"8b44c0b502ddfff-13f5febd52ef287d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dd81d-13bfbea8f851e634","8f44c0b502c32f6-13ffbe79ef7c953f"]},"geometry":{"type":"LineString","coordinates":[[-83.7674865,32.882116100000005],[-83.76756180000001,32.8819946]]},"id":"8944c0b502fffff-1395be91612f91e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75793850000001,32.8779563]},"id":"8f44c0b5061332d-1397f5f874e410d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061332d-1397f5f874e410d1","8f44c0b50613281-13ddf641a45278d6"]},"geometry":{"type":"LineString","coordinates":[[-83.75793850000001,32.8779563],[-83.75782140000001,32.878043000000005]]},"id":"8c44c0b506133ff-13bdd61d0d153e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7573521,32.878027700000004]},"id":"8f44c0b506ac05c-13bfd766f68bf89f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50613281-13ddf641a45278d6","8f44c0b506ac05c-13bfd766f68bf89f"]},"geometry":{"type":"LineString","coordinates":[[-83.75782140000001,32.878043000000005],[-83.7573521,32.878027700000004]]},"id":"8844c0b507fffff-13d5f6d4530ef9dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75924110000001,32.8846715]},"id":"8f44c0b538b6244-13f7f2ca5cb9936c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b538b6244-13f7f2ca5cb9936c","8f44c0b538b0581-13b7f2d183ca04c2"]},"geometry":{"type":"LineString","coordinates":[[-83.75922960000001,32.8847418],[-83.7595854,32.884742200000005],[-83.75957460000001,32.884656],[-83.7595318,32.8845849],[-83.759493,32.8845578],[-83.75932660000001,32.8845572],[-83.75928010000001,32.8845967],[-83.75924110000001,32.8846715]]},"id":"8a44c0b538b7fff-13f5d258aa2d7244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b538b6244-13f7f2ca5cb9936c","8f44c0b538b0581-13b7f2d183ca04c2"]},"geometry":{"type":"LineString","coordinates":[[-83.75924110000001,32.8846715],[-83.75922960000001,32.8847418]]},"id":"8a44c0b538b7fff-139df2cde041ab3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502da84a-17dfe0d9985105e9","8f44c0b502da942-17bff0d9d249b768"]},"geometry":{"type":"LineString","coordinates":[[-83.76658950000001,32.8823786],[-83.7665891,32.8823011]]},"id":"8c44c0b502da9ff-17d7f0d9bab33daf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502d1656-13ddd0db84f11f11","8f44c0b502da942-17bff0d9d249b768"]},"geometry":{"type":"LineString","coordinates":[[-83.7665891,32.8823011],[-83.76658640000001,32.881761700000006]]},"id":"8944c0b502fffff-1395e0daaa15dd00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76269470000001,32.8821901]},"id":"8f44c0b53912a58-13fdda5bdd6e3e16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76270810000001,32.881396800000005]},"id":"8f44c0b506492b2-13fdca537d02dcb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53912a58-13fdda5bdd6e3e16","8f44c0b506492b2-13fdca537d02dcb1"]},"geometry":{"type":"LineString","coordinates":[[-83.76269470000001,32.8821901],[-83.76270810000001,32.881396800000005]]},"id":"8944c0b5393ffff-13f5fa57ab01236e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5064d46a-13b5fa4dad61b683","8f44c0b506492b2-13fdca537d02dcb1"]},"geometry":{"type":"LineString","coordinates":[[-83.76270810000001,32.881396800000005],[-83.7627174,32.880847100000004]]},"id":"8a44c0b5064ffff-13ddca5093a834d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506740c2-139fdde09416800c","8f44c0b50676b2d-139dde67c73a30fc"]},"geometry":{"type":"LineString","coordinates":[[-83.76125350000001,32.8783789],[-83.7610372,32.878376100000004]]},"id":"8a44c0b50677fff-139dfe242bd2c07b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5067611c-1397fef94d8ddd88","8f44c0b50676b2d-139dde67c73a30fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7610372,32.878376100000004],[-83.76099190000001,32.878375500000004],[-83.76080440000001,32.878373100000005]]},"id":"8b44c0b50676fff-139deeb084af8600"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5067611c-1397fef94d8ddd88","8f44c0b5067651b-1395df75b176b7d3"]},"geometry":{"type":"LineString","coordinates":[[-83.76080440000001,32.878373100000005],[-83.76060530000001,32.8783705]]},"id":"8b44c0b50676fff-1397ef3781b3692e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5067651b-1395df75b176b7d3","8f44c0b5060d832-1397eff8bec2279a"]},"geometry":{"type":"LineString","coordinates":[[-83.76060530000001,32.8783705],[-83.7603957,32.8783678]]},"id":"8944c0b5063ffff-1395cfb734025d01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5060d832-1397eff8bec2279a","8f44c0b5060dca5-1397f07af7ee29ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7603957,32.8783678],[-83.7601873,32.8783651]]},"id":"8b44c0b5060dfff-1397d039d95c44d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5060c284-1395d0fc4f631bf8","8f44c0b5060dca5-1397f07af7ee29ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7601873,32.8783651],[-83.7599804,32.8783624]]},"id":"8a44c0b5060ffff-1395f0bba5b5467d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7597762,32.878359800000005]},"id":"8f44c0b5060c682-139ff17bec6a7dec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5060c284-1395d0fc4f631bf8","8f44c0b5060c682-139ff17bec6a7dec"]},"geometry":{"type":"LineString","coordinates":[[-83.7599804,32.8783624],[-83.7597762,32.878359800000005]]},"id":"8b44c0b5060cfff-139ff13c134506a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7595699,32.8783571]},"id":"8f44c0b5060ea9a-139df1fcdccfbc50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5060c682-139ff17bec6a7dec","8f44c0b5060ea9a-139df1fcdccfbc50"]},"geometry":{"type":"LineString","coordinates":[[-83.7597762,32.878359800000005],[-83.75972990000001,32.878359200000006],[-83.7595699,32.8783571]]},"id":"8a44c0b5060ffff-139fd1bc6e5e9736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5060ea9a-139df1fcdccfbc50","8f44c0b5060e736-139fd279fe1d12c2"]},"geometry":{"type":"LineString","coordinates":[[-83.7595699,32.8783571],[-83.75936970000001,32.8783545]]},"id":"8b44c0b5060efff-139df23b682a6cd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5060e736-139fd279fe1d12c2","8f44c0b5061d858-1395d30c81ff7825"]},"geometry":{"type":"LineString","coordinates":[[-83.75936970000001,32.8783545],[-83.75918150000001,32.8783521],[-83.7591352,32.878344500000004]]},"id":"8944c0b5063ffff-139ff2c368ee385d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061dc09-13dfd38e67f790a3","8f44c0b5061d858-1395d30c81ff7825"]},"geometry":{"type":"LineString","coordinates":[[-83.7591352,32.878344500000004],[-83.7589274,32.8782817]]},"id":"8b44c0b5061dfff-13f5f34d7edae2f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75851630000001,32.878152400000005]},"id":"8f44c0b5061c716-139dd48f5a668bc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061dc09-13dfd38e67f790a3","8f44c0b5061c716-139dd48f5a668bc2"]},"geometry":{"type":"LineString","coordinates":[[-83.7589274,32.8782817],[-83.75851630000001,32.878152400000005]]},"id":"8a44c0b5061ffff-13b5f40ede3860e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061332d-1397f5f874e410d1","8f44c0b5061c716-139dd48f5a668bc2"]},"geometry":{"type":"LineString","coordinates":[[-83.75851630000001,32.878152400000005],[-83.75793850000001,32.8779563]]},"id":"8944c0b5063ffff-13d5d543e3a43dee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061332d-1397f5f874e410d1","8f44c0b506ac96e-13b7f704a86c03d9"]},"geometry":{"type":"LineString","coordinates":[[-83.75793850000001,32.8779563],[-83.7575094,32.877810700000005]]},"id":"8a44c0b50617fff-13f5f67e8e4b507b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53900303-13fff646491bedb5","8f44c0b5392ac40-13fff489e43b1b46"]},"geometry":{"type":"LineString","coordinates":[[-83.76507860000001,32.8822271],[-83.7643676,32.882219500000005]]},"id":"8944c0b5393ffff-13fdd56813e8723b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7640753,32.8822108]},"id":"8f44c0b53900792-13f5c6fcfb2cbb59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53900303-13fff646491bedb5","8f44c0b53900792-13f5c6fcfb2cbb59"]},"geometry":{"type":"LineString","coordinates":[[-83.7643676,32.882219500000005],[-83.7642007,32.882217700000005],[-83.7640753,32.8822108]]},"id":"8b44c0b53900fff-13fdf6a1ac5d4d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0b506488c2-139fdb03a5335304","8f44c0b5064c660-13b7fafd6f96e388"]},"geometry":{"type":"LineString","coordinates":[[-83.76243620000001,32.8806515],[-83.76242620000001,32.8808425]]},"id":"8a44c0b5064ffff-13f7eb008dd0012e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76482820000001,32.8796097]},"id":"8f44c0b50283795-179dd52666466074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7643942,32.879457900000006]},"id":"8f44c0b5029cd89-17bdf635a56f8a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5029cd89-17bdf635a56f8a7f","8f44c0b50283795-179dd52666466074"]},"geometry":{"type":"LineString","coordinates":[[-83.76482820000001,32.8796097],[-83.76482610000001,32.8794631],[-83.7643942,32.879457900000006]]},"id":"8944c0b502bffff-17dfd58c57093d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76417380000001,32.8794525]},"id":"8f44c0b502912a2-17bdd6bf6158b080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5029cd89-17bdf635a56f8a7f","8f44c0b502912a2-17bdd6bf6158b080"]},"geometry":{"type":"LineString","coordinates":[[-83.7643942,32.879457900000006],[-83.76417380000001,32.8794525]]},"id":"8944c0b502bffff-17bfc67a8208ee8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7595472,32.879565400000004]},"id":"8f44c0b506e50d3-1795f20b0d041b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060b782-1797d2073c711cbf","8f44c0b506e50d3-1795f20b0d041b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.7595472,32.879565400000004],[-83.7595526,32.8792526],[-83.75955330000001,32.8791601]]},"id":"8844c0b507fffff-1795d208efb12b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76403400000001,32.8773963]},"id":"8f44c0b5076ba71-13b5f716c598c399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50769083-17f5e6ac95ae2bd9","8f44c0b5076ba71-13b5f716c598c399"]},"geometry":{"type":"LineString","coordinates":[[-83.76403400000001,32.8773963],[-83.76412710000001,32.8773587],[-83.7642039,32.8772686]]},"id":"8a44c0b5076ffff-1397e6dcf98e0ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50769832-17f7e64b0ae80d25","8f44c0b50769083-17f5e6ac95ae2bd9"]},"geometry":{"type":"LineString","coordinates":[[-83.7642039,32.8772686],[-83.76436000000001,32.8770854]]},"id":"8b44c0b50769fff-17bfe67bd12097aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7641633,32.876661]},"id":"8f44c0b5076c270-17fde6c5f1cabe3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5076c270-17fde6c5f1cabe3f","8f44c0b50769832-17f7e64b0ae80d25"]},"geometry":{"type":"LineString","coordinates":[[-83.76436000000001,32.8770854],[-83.7645373,32.876877400000005],[-83.7641633,32.876661]]},"id":"8a44c0b5076ffff-17f5e6394dba52bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75779200000001,32.879840200000004]},"id":"8f44c0b506f38ec-17bdf6540f0a5b05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7577969,32.8792508]},"id":"8f44c0b506f46c4-17bfd650f245b1d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f38ec-17bdf6540f0a5b05","8f44c0b506f46c4-17bfd650f245b1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.75779200000001,32.879840200000004],[-83.7577969,32.8792508]]},"id":"8a44c0b506f7fff-17f7f65286c474c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7578015,32.8789936]},"id":"8f44c0b506f4cd9-179fd64e1c461ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4cd9-179fd64e1c461ee5","8f44c0b506f46c4-17bfd650f245b1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7577969,32.8792508],[-83.7578015,32.8789936]]},"id":"8b44c0b506f4fff-17fff64f82a5e8c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4cf0-13ffd64f6b3b2ae7","8f44c0b506f4cd9-179fd64e1c461ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.7578015,32.8789936],[-83.75779940000001,32.8789437]]},"id":"8d44c0b506f4cff-179ff64ec5518e55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76030250000001,32.8728275]},"id":"8f44c0b5009bb26-179df032f4c6d7ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5009bb26-179df032f4c6d7ca","8f44c0b50736b43-17d7d274f92ff834"]},"geometry":{"type":"LineString","coordinates":[[-83.76030250000001,32.8728275],[-83.7600486,32.8725942],[-83.7593777,32.873118000000005]]},"id":"8744c0b50ffffff-1795f14ff59765d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50736b43-17d7d274f92ff834","8f44c0b5073628c-17bff300d09e22ec"]},"geometry":{"type":"LineString","coordinates":[[-83.7593777,32.873118000000005],[-83.7591539,32.8732927]]},"id":"8b44c0b50736fff-17fdf2bae155024c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7597559,32.879570300000005]},"id":"8f44c0b506e5ac6-1797f1889fef4999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506726ed-17d5cf7d417e8bc3","8f44c0b506e5ac6-1797f1889fef4999"]},"geometry":{"type":"LineString","coordinates":[[-83.7605932,32.8790544],[-83.760579,32.8795805],[-83.7597559,32.879570300000005]]},"id":"8844c0b507fffff-17d7d02151286223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5390a955-17bdf5d7654a01f1","8f44c0b5391d213-17bde6f8f4bf17f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7640817,32.883139],[-83.764545,32.8831451]]},"id":"8944c0b5393ffff-17bfd6682f0b0070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53908b2e-17d7f47d6abab112","8f44c0b5390a955-17bdf5d7654a01f1"]},"geometry":{"type":"LineString","coordinates":[[-83.764545,32.8831451],[-83.7650986,32.8831523]]},"id":"8a44c0b5390ffff-17bff52a61df6e24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7651134,32.8823284]},"id":"8f44c0b5392a004-17bfc47426c4537e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b53908b2e-17d7f47d6abab112","8f44c0b5392a004-17bfc47426c4537e"]},"geometry":{"type":"LineString","coordinates":[[-83.7650986,32.8831523],[-83.7651134,32.8823284]]},"id":"8944c0b5393ffff-17d5c478c2434191"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7588195,32.8689059]},"id":"8f44c0b50545d1d-13fff3d1da78e7dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50545d1d-13fff3d1da78e7dc","8f44c0b5056342d-13dfd3bab19b4006"]},"geometry":{"type":"LineString","coordinates":[[-83.7588195,32.8689059],[-83.758982,32.8687792],[-83.75885650000001,32.8686525]]},"id":"8944c0b5057ffff-13bdf399bcb801e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7590234,32.8683695]},"id":"8f44c0b50560606-13bff35264266f6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50560606-13bff35264266f6b","8f44c0b5056342d-13dfd3bab19b4006"]},"geometry":{"type":"LineString","coordinates":[[-83.75885650000001,32.8686525],[-83.7587556,32.8685507],[-83.7590234,32.8683695]]},"id":"8a44c0b50567fff-13ffd3b61d059387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e5ac6-1797f1889fef4999","8f44c0b506e50d3-1795f20b0d041b9f"]},"geometry":{"type":"LineString","coordinates":[[-83.7597559,32.879570300000005],[-83.7595472,32.879565400000004]]},"id":"8b44c0b506e5fff-1795f1c9cd8a179c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e50d3-1795f20b0d041b9f","8f44c0b506e4791-17d5d33bc8941eea"]},"geometry":{"type":"LineString","coordinates":[[-83.7595472,32.879565400000004],[-83.75905870000001,32.8795537],[-83.7590596,32.8792664]]},"id":"8a44c0b506e7fff-17dff2dc130ab970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75874900000001,32.8792606]},"id":"8f44c0b506e6031-17d5f3fde1343896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506e6031-17d5f3fde1343896","8f44c0b506e4791-17d5d33bc8941eea"]},"geometry":{"type":"LineString","coordinates":[[-83.7590596,32.8792664],[-83.75874900000001,32.8792606]]},"id":"8a44c0b506e7fff-17d7f39cd79d985a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76503600000001,32.8808695]},"id":"8f44c0b5392460d-13bff4a48d5d5980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53924082-13dde4a4b176940d","8f44c0b5392460d-13bff4a48d5d5980"]},"geometry":{"type":"LineString","coordinates":[[-83.76503600000001,32.8808695],[-83.7650357,32.8807306]]},"id":"8b44c0b53924fff-1395d4a4ab87baa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5028a4c5-17dfe4a53295b192","8f44c0b53924082-13dde4a4b176940d"]},"geometry":{"type":"LineString","coordinates":[[-83.7650357,32.8807306],[-83.7650349,32.8803262]]},"id":"8844c0b503fffff-17dfc4a4f4d7b1df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7649068,32.880203900000005]},"id":"8f44c0b50299976-179ff4f54c84a4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50299976-179ff4f54c84a4cb","8f44c0b5028a4c5-17dfe4a53295b192"]},"geometry":{"type":"LineString","coordinates":[[-83.7650349,32.8803262],[-83.7649068,32.880203900000005]]},"id":"8a44c0b5029ffff-17b5f4cd428ba431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50299976-179ff4f54c84a4cb","8f44c0b5029d05a-179df4f6b8c463e7"]},"geometry":{"type":"LineString","coordinates":[[-83.7649068,32.880203900000005],[-83.7649045,32.880020300000005]]},"id":"8a44c0b5029ffff-17d7d4f603a00f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76217000000001,32.8759767]},"id":"8f44c0b5077151e-17bdfba3c6a8bfd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5077151e-17bdfba3c6a8bfd0","8f44c0b507705ad-13f5cc8ec1610b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.76217000000001,32.8759767],[-83.76179400000001,32.8756544]]},"id":"8a44c0b50777fff-17ddcc1949ac559a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5072b2f1-1395eda5ac9c0859","8f44c0b507705ad-13f5cc8ec1610b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.76179400000001,32.8756544],[-83.76134780000001,32.8752718]]},"id":"8844c0b507fffff-13fdfd1a3bd09262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7614642,32.8749424]},"id":"8f44c0b5072b94b-13b7cd5ceb25598f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5072b94b-13b7cd5ceb25598f","8f44c0b5072b2f1-1395eda5ac9c0859"]},"geometry":{"type":"LineString","coordinates":[[-83.76134780000001,32.8752718],[-83.7612125,32.8751559],[-83.7614642,32.8749424]]},"id":"8b44c0b5072bfff-139dddb85d422a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7659567,32.878105600000005]},"id":"8f44c0b502a0b98-13f5c26510ce0533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502a279c-13fdc443e7701a54","8f44c0b502a0b98-13f5c26510ce0533"]},"geometry":{"type":"LineString","coordinates":[[-83.7659567,32.878105600000005],[-83.7659498,32.8783394],[-83.76519060000001,32.878324]]},"id":"8a44c0b502a7fff-13fdc31e4c3a2b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502a279c-13fdc443e7701a54","8f44c0b502b1a96-1397d4cf6373e97f"]},"geometry":{"type":"LineString","coordinates":[[-83.76519060000001,32.878324],[-83.765094,32.878322000000004],[-83.7649674,32.8783485]]},"id":"8944c0b502bffff-13fdc48a0e60b736"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7634077,32.886582600000004]},"id":"8f44c0b538e4d62-17b7e89e39147a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5380c528-1797d72b60421cc9","8f44c0b538e4d62-17b7e89e39147a50"]},"geometry":{"type":"LineString","coordinates":[[-83.7634077,32.886582600000004],[-83.76341400000001,32.8862769],[-83.76400100000001,32.8857213]]},"id":"8944c0b5383ffff-17ffd815bf71afeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53805af2-13fff70a6e7674fb","8f44c0b5380c528-1797d72b60421cc9"]},"geometry":{"type":"LineString","coordinates":[[-83.76400100000001,32.8857213],[-83.76403,32.8856939],[-83.7640538,32.8850931]]},"id":"8944c0b5383ffff-13d7e712d582d1f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075a0c3-139fdd92270c4e99","8f44c0b5075aaee-1397cd0d5eaeb3d8"]},"geometry":{"type":"LineString","coordinates":[[-83.76159150000001,32.8779568],[-83.761379,32.877950500000004]]},"id":"8b44c0b5075afff-1395dd4fb51cd77e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5075a0c3-139fdd92270c4e99","8f44c0b5075a4d8-139ffe1257afb665"]},"geometry":{"type":"LineString","coordinates":[[-83.761379,32.877950500000004],[-83.7611739,32.8779443]]},"id":"8b44c0b5075afff-139dedd240be3259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5062d083-13bdde942421c6e3","8f44c0b5075a4d8-139ffe1257afb665"]},"geometry":{"type":"LineString","coordinates":[[-83.7611739,32.8779443],[-83.76096550000001,32.877938],[-83.7609662,32.8775813]]},"id":"8a44c0b5062ffff-13d5ee7c649dbffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502b6cdb-13bfe7128f30db67","8f44c0b5076ba71-13b5f716c598c399"]},"geometry":{"type":"LineString","coordinates":[[-83.7640408,32.8776102],[-83.76403400000001,32.8773963]]},"id":"8944c0b5077ffff-13f7d714ad7090b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5076ba71-13b5f716c598c399","8f44c0b5074ca16-13dff8734580e6d0"]},"geometry":{"type":"LineString","coordinates":[[-83.76403400000001,32.8773963],[-83.76387980000001,32.8773797],[-83.76373410000001,32.8772863],[-83.7634764,32.8774639]]},"id":"8944c0b5077ffff-13b7d7cb8fb24588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76600570000001,32.8791771]},"id":"8f44c0b502aa8a3-179df2467cd97a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502aa8a3-179df2467cd97a4b","8f44c0b50285a16-179df2e55ba776b2"]},"geometry":{"type":"LineString","coordinates":[[-83.76600570000001,32.8791771],[-83.7659955,32.8790349],[-83.7659481,32.8789937],[-83.76575150000001,32.8789919]]},"id":"8944c0b502bffff-17b5f27a9fd5e165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50285a16-179df2e55ba776b2","8f44c0b50280cd4-1795e4c0512e78a8"]},"geometry":{"type":"LineString","coordinates":[[-83.76575150000001,32.8789919],[-83.76499150000001,32.878985]]},"id":"8a44c0b50287fff-1797d3d2dd9cc57a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76348420000001,32.8790927]},"id":"8f44c0b50292a15-17ddf86e67c3e6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50293c96-17d5c86c8430ce47","8f44c0b50292a15-17ddf86e67c3e6be"]},"geometry":{"type":"LineString","coordinates":[[-83.76348420000001,32.8790927],[-83.7634872,32.87926]]},"id":"8a44c0b50297fff-179dc86d77213c6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50293c96-17d5c86c8430ce47","8f44c0b50293805-17d5e7b177ec7331"]},"geometry":{"type":"LineString","coordinates":[[-83.7634872,32.87926],[-83.7634706,32.8793288],[-83.7634661,32.879682800000005],[-83.7637729,32.8796905],[-83.76378650000001,32.879265000000004]]},"id":"8744c0b50ffffff-17ffd81744b3549a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7637919,32.879096000000004]},"id":"8f44c0b5029076c-17dfc7ae1267bdbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5029076c-17dfc7ae1267bdbc","8f44c0b50293805-17d5e7b177ec7331"]},"geometry":{"type":"LineString","coordinates":[[-83.76378650000001,32.879265000000004],[-83.7637919,32.879096000000004]]},"id":"8a44c0b50297fff-179fd7afc89f54f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5028376c-17bff4c26baa8238","8f44c0b50283795-179dd52666466074"]},"geometry":{"type":"LineString","coordinates":[[-83.7649882,32.8796387],[-83.76482820000001,32.8796097]]},"id":"8c44c0b502837ff-17b5e4f4656d779d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5029cd89-17bdf635a56f8a7f","8f44c0b50283795-179dd52666466074"]},"geometry":{"type":"LineString","coordinates":[[-83.76482820000001,32.8796097],[-83.7647755,32.8796002],[-83.76439040000001,32.879597100000005],[-83.7643942,32.879457900000006]]},"id":"8944c0b502bffff-179fd5cfb81f6267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76440380000001,32.879105100000004]},"id":"8f44c0b502825a6-17f5f62fac46f321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5029cd89-17bdf635a56f8a7f","8f44c0b502825a6-17f5f62fac46f321"]},"geometry":{"type":"LineString","coordinates":[[-83.7643942,32.879457900000006],[-83.7643929,32.8793327],[-83.76439590000001,32.8792437],[-83.76440380000001,32.879105100000004]]},"id":"8944c0b502bffff-17dfe63467feab4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7621448,32.8806503]},"id":"8f44c0b5064eaf2-13b7fbb38a58eb23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7617177,32.880409]},"id":"8f44c0b50643204-179fecbe792ddc0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0b50643204-179fecbe792ddc0b","8f44c0b5064eaf2-13b7fbb38a58eb23"]},"geometry":{"type":"LineString","coordinates":[[-83.7621448,32.8806503],[-83.76215160000001,32.8805105],[-83.7621568,32.8802977],[-83.762095,32.880202100000005],[-83.7617211,32.880199600000005],[-83.7617177,32.880409]]},"id":"8944c0b5067ffff-17d7ec1d07e5574f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0b50643204-179fecbe792ddc0b","8f44c0b5064eaf2-13b7fbb38a58eb23"]},"geometry":{"type":"LineString","coordinates":[[-83.7617177,32.880409],[-83.76171380000001,32.8806401],[-83.7617743,32.880642800000004],[-83.7621448,32.8806503]]},"id":"8944c0b5067ffff-139dfc68c92c815e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0b50648512-139fcbb562f1bbc9","8f44c0b5064eaf2-13b7fbb38a58eb23"]},"geometry":{"type":"LineString","coordinates":[[-83.7621448,32.8806503],[-83.76214180000001,32.880838000000004]]},"id":"8a44c0b5064ffff-13f5ebb47b4bcb3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5064dd4d-13bffa04ac49b19c","8f44c0b5064d0e0-13b7da072dbd5d18"]},"geometry":{"type":"LineString","coordinates":[[-83.76283020000001,32.880848900000004],[-83.7628342,32.8806571]]},"id":"8b44c0b5064dfff-13f7ea05e305090a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631832,32.8789158]},"id":"8f44c0b50292ca5-13ffe92a80cacfce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502946cd-139fd79aa69bad13","8f44c0b50292ca5-13ffe92a80cacfce"]},"geometry":{"type":"LineString","coordinates":[[-83.7631832,32.8789158],[-83.7638301,32.8789303],[-83.7638301,32.8788094],[-83.763823,32.878761700000005]]},"id":"8a44c0b50297fff-13f5e836975d0984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631908,32.8785727]},"id":"8f44c0b502965b1-1397f925ccc77bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502965b1-1397f925ccc77bfa","8f44c0b502946cd-139fd79aa69bad13"]},"geometry":{"type":"LineString","coordinates":[[-83.763823,32.878761700000005],[-83.763806,32.878647300000004],[-83.76378360000001,32.878586500000004],[-83.7631908,32.8785727]]},"id":"8a44c0b50297fff-13b5e83dd0d3fb00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76123290000001,32.8804163]},"id":"8f44c0b5065c068-1795fded77a46e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50643204-179fecbe792ddc0b","8f44c0b5065c068-1795fded77a46e66"]},"geometry":{"type":"LineString","coordinates":[[-83.7617177,32.880409],[-83.7615262,32.8804119],[-83.7614217,32.8804135],[-83.76123290000001,32.8804163]]},"id":"8944c0b5067ffff-1795fd55fdb03275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76078720000001,32.8806287]},"id":"8f44c0b5065e22c-139dff04009285e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5065c068-1795fded77a46e66","8f44c0b5065e22c-139dff04009285e1"]},"geometry":{"type":"LineString","coordinates":[[-83.76123290000001,32.8804163],[-83.7612278,32.880636100000004],[-83.76078720000001,32.8806287]]},"id":"8a44c0b5065ffff-1395fe4bf8347a20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5065e22c-139dff04009285e1","8f44c0b5065848e-139fcf06ceb59cac"]},"geometry":{"type":"LineString","coordinates":[[-83.76078720000001,32.8806287],[-83.7607828,32.8808176]]},"id":"8a44c0b5065ffff-13d5cf0565a7fc6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4cf0-13ffd64f6b3b2ae7","8f44c0b506f46c4-17bfd650f245b1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.75779940000001,32.8789437],[-83.757084,32.8789366],[-83.757017,32.879055300000005],[-83.7570316,32.8791699],[-83.7571279,32.8792303],[-83.75721440000001,32.8792436],[-83.7577969,32.8792508]]},"id":"8844c0b507fffff-17d7d75d06fc3e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7579827,32.8789948]},"id":"8f44c0b506f48de-179fd5dcd3365440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f48de-179fd5dcd3365440","8f44c0b506f46c4-17bfd650f245b1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7577969,32.8792508],[-83.75789110000001,32.8791146],[-83.7579827,32.8789948]]},"id":"8b44c0b506f4fff-17ffd617d63da641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061b2cb-179dd4ab4517a15b","8f44c0b506f56c4-179dd57297833a2a"]},"geometry":{"type":"LineString","coordinates":[[-83.75847160000001,32.8791944],[-83.75820080000001,32.879188500000005],[-83.75816300000001,32.8792443],[-83.75815270000001,32.879578]]},"id":"8944c0b506fffff-17ddf540f66c3b10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5074c6c8-13fdc91996e4722b","8f44c0b5074c631-13b7e918195a8a74"]},"geometry":{"type":"LineString","coordinates":[[-83.76321270000001,32.8775782],[-83.76321030000001,32.877684]]},"id":"8c44c0b5074c7ff-13d7f918d0dcb5b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5074c6c8-13fdc91996e4722b","8f44c0b5074b8ed-13d5f921489da740"]},"geometry":{"type":"LineString","coordinates":[[-83.76321030000001,32.877684],[-83.763198,32.8782427]]},"id":"8a44c0b5074ffff-1397e91d626f3504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631944,32.8784046]},"id":"8f44c0b5074b323-13bfe9238b7a6d01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5074b8ed-13d5f921489da740","8f44c0b5074b323-13bfe9238b7a6d01"]},"geometry":{"type":"LineString","coordinates":[[-83.763198,32.8782427],[-83.7631944,32.8784046]]},"id":"8b44c0b5074bfff-13fdd9226434a8a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502965b1-1397f925ccc77bfa","8f44c0b5074b323-13bfe9238b7a6d01"]},"geometry":{"type":"LineString","coordinates":[[-83.7631944,32.8784046],[-83.7631908,32.8785727]]},"id":"8844c0b507fffff-13dff924a82ad8da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502965b1-1397f925ccc77bfa","8f44c0b50665b50-1397e9283131ddf7"]},"geometry":{"type":"LineString","coordinates":[[-83.7631908,32.8785727],[-83.76318690000001,32.878749400000004]]},"id":"8a44c0b50297fff-13dff92706d9cfac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50665b50-1397e9283131ddf7","8f44c0b50292ca5-13ffe92a80cacfce"]},"geometry":{"type":"LineString","coordinates":[[-83.76318690000001,32.878749400000004],[-83.7631832,32.8789158]]},"id":"8a44c0b50297fff-13b7e9296629e35a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7631794,32.879088]},"id":"8f44c0b50292475-17d7c92ce8975170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50292ca5-13ffe92a80cacfce","8f44c0b50292475-17d7c92ce8975170"]},"geometry":{"type":"LineString","coordinates":[[-83.7631832,32.8789158],[-83.7631794,32.879088]]},"id":"8b44c0b50292fff-17b5f92bb6a42b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388ea70-17f5cfa6faf3eea9","8f44c0b5388e642-17d5f059a8038ef5"]},"geometry":{"type":"LineString","coordinates":[[-83.76052650000001,32.8866828],[-83.7603211,32.8867539],[-83.7602406,32.8868379]]},"id":"8b44c0b5388efff-1797f006403193f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388e642-17d5f059a8038ef5","8f44c0b5388a55e-17dff0d6cfb1763a"]},"geometry":{"type":"LineString","coordinates":[[-83.7602406,32.8868379],[-83.76013280000001,32.8869503],[-83.76004040000001,32.887056300000005]]},"id":"8a44c0b5388ffff-1795f09906a22960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53124cb1-1395f12fea25f31e","8f44c0b5388a55e-17dff0d6cfb1763a"]},"geometry":{"type":"LineString","coordinates":[[-83.76004040000001,32.887056300000005],[-83.75989890000001,32.887218700000005],[-83.7598978,32.8873547]]},"id":"8944c0b538bffff-13b5d114381a9d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7602143,32.887545700000004]},"id":"8f44c0b53124aad-13fdd06a1f9bfbc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53124aad-13fdd06a1f9bfbc0","8f44c0b53124cb1-1395f12fea25f31e"]},"geometry":{"type":"LineString","coordinates":[[-83.7598978,32.8873547],[-83.7602143,32.887545700000004]]},"id":"8b44c0b53124fff-13d5f0cd0be610ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76115940000001,32.8748572]},"id":"8f44c0b5072bda3-1395ce1b615d4660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5072a225-139dce6cb4bd53f7","8f44c0b5072bda3-1395ce1b615d4660"]},"geometry":{"type":"LineString","coordinates":[[-83.76115940000001,32.8748572],[-83.76156710000001,32.874543100000004],[-83.7609302,32.8739496],[-83.7605096,32.874269500000004],[-83.7604881,32.8743122],[-83.7605027,32.8743773],[-83.7610293,32.874876]]},"id":"8944c0b5073ffff-13fdee78a8e05a67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5072a225-139dce6cb4bd53f7","8f44c0b5072bda3-1395ce1b615d4660"]},"geometry":{"type":"LineString","coordinates":[[-83.7610293,32.874876],[-83.7610896,32.874884],[-83.76115940000001,32.8748572]]},"id":"8a44c0b5072ffff-139dce437c623344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7597095,32.8735049]},"id":"8f44c0b50730a51-17b5d1a59e560389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50730a51-17b5d1a59e560389","8f44c0b50733903-17b5d2317bfd6067"]},"geometry":{"type":"LineString","coordinates":[[-83.7594857,32.873677300000004],[-83.7597095,32.8735049]]},"id":"8a44c0b50737fff-17fff1eb8b99da4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50726d99-1797d03324130b7b","8f44c0b50730a51-17b5d1a59e560389"]},"geometry":{"type":"LineString","coordinates":[[-83.7597095,32.8735049],[-83.7603022,32.8730484]]},"id":"8944c0b5073ffff-17b5f0ec510098d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50726d99-1797d03324130b7b","8f44c0b50726a9a-17b7ff9a969fdc28"]},"geometry":{"type":"LineString","coordinates":[[-83.7603022,32.8730484],[-83.7604601,32.8729268],[-83.7607069,32.873153200000004],[-83.7605463,32.8732771]]},"id":"8844c0b501fffff-17b7cf9e2f574a01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50726a9a-17b7ff9a969fdc28","8f44c0b50730a51-17b5d1a59e560389"]},"geometry":{"type":"LineString","coordinates":[[-83.7605463,32.8732771],[-83.7599532,32.8737348],[-83.7597095,32.8735049]]},"id":"8944c0b5073ffff-17dff0a4b2e8b5a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7637148,32.8821962]},"id":"8f44c0b5390219a-13fde7de44f1e679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539331a1-13fdc85769db00f9","8f44c0b5390219a-13fde7de44f1e679"]},"geometry":{"type":"LineString","coordinates":[[-83.7637148,32.8821962],[-83.7637242,32.8814342],[-83.7636952,32.8814055],[-83.76352100000001,32.881404]]},"id":"8944c0b5393ffff-13d7f7e808c5ec4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53933585-13fde8d5bd53fcf6","8f44c0b539331a1-13fdc85769db00f9"]},"geometry":{"type":"LineString","coordinates":[[-83.76352100000001,32.881404],[-83.7633189,32.881402200000004]]},"id":"8b44c0b53933fff-13fdf89686946bc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5391499d-13ffc9518bfafea4","8f44c0b53933585-13fde8d5bd53fcf6"]},"geometry":{"type":"LineString","coordinates":[[-83.7633189,32.881402200000004],[-83.76312080000001,32.881400400000004]]},"id":"8944c0b5393ffff-13ffd9139379b733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5391499d-13ffc9518bfafea4","8f44c0b53914d9b-13ffe9d1278fec37"]},"geometry":{"type":"LineString","coordinates":[[-83.76312080000001,32.881400400000004],[-83.76291660000001,32.881398600000004]]},"id":"8b44c0b53914fff-13fff99152d9d186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53914d9b-13ffe9d1278fec37","8f44c0b506492b2-13fdca537d02dcb1"]},"geometry":{"type":"LineString","coordinates":[[-83.76291660000001,32.881398600000004],[-83.76270810000001,32.881396800000005]]},"id":"8944c0b5393ffff-13fdda1249fb7743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538e4d62-17b7e89e39147a50","8f44c0b5380b8ee-17b5d7287d30d72c"]},"geometry":{"type":"LineString","coordinates":[[-83.7640057,32.8865797],[-83.7634077,32.886582600000004]]},"id":"8944c0b5383ffff-17b5f7e3540e7624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538526c3-13b5d720926e9ecc","8f44c0b538e4d62-17b7e89e39147a50"]},"geometry":{"type":"LineString","coordinates":[[-83.7634077,32.886582600000004],[-83.7634151,32.8875692],[-83.76349450000001,32.887637600000005],[-83.7640183,32.8876293]]},"id":"8844c0b539fffff-13ddd85430c7caa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b538526c3-13b5d720926e9ecc","8f44c0b53850da3-17f7e5f7875f112e"]},"geometry":{"type":"LineString","coordinates":[[-83.7640183,32.8876293],[-83.76450630000001,32.8876216],[-83.76449360000001,32.8871022]]},"id":"8a44c0b53857fff-13ddc63b8b310ee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76313640000001,32.8790874]},"id":"8f44c0b50292408-17d5e947ce8e577f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50292686-17bdc94936dc6505","8f44c0b50292408-17d5e947ce8e577f"]},"geometry":{"type":"LineString","coordinates":[[-83.76313640000001,32.8790874],[-83.7631341,32.8792264]]},"id":"8b44c0b50292fff-1795d94883cf0f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50292686-17bdc94936dc6505","8f44c0b50645809-179dfb2ece6280ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7631341,32.8792264],[-83.7631277,32.8796222],[-83.76235720000001,32.8796119]]},"id":"8944c0b5067ffff-17f7c9eb9d339594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5064456b-179dfc983a656c30","8f44c0b50645809-179dfb2ece6280ac"]},"geometry":{"type":"LineString","coordinates":[[-83.76235720000001,32.8796119],[-83.7617747,32.8796041],[-83.76177890000001,32.8793819]]},"id":"8a44c0b50647fff-1797ec16b9a6196c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76182370000001,32.8790704]},"id":"8f44c0b5066279c-17dfcc7c347bdf9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5064456b-179dfc983a656c30","8f44c0b5066279c-17dfcc7c347bdf9a"]},"geometry":{"type":"LineString","coordinates":[[-83.76177890000001,32.8793819],[-83.76178250000001,32.8791937],[-83.76182130000001,32.8791561],[-83.76182370000001,32.8790704]]},"id":"8944c0b5067ffff-17bfcc8e1d5341b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061b54d-13f7d5171167b880","8f44c0b5061c716-139dd48f5a668bc2"]},"geometry":{"type":"LineString","coordinates":[[-83.75851630000001,32.878152400000005],[-83.758499,32.878835200000005],[-83.7584381,32.8789274],[-83.7583771,32.878938600000005],[-83.7582991,32.878936100000004]]},"id":"8a44c0b5061ffff-13bdf4a4a3de8763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4959-13f7d5a1005dcfd3","8f44c0b5061b54d-13f7d5171167b880"]},"geometry":{"type":"LineString","coordinates":[[-83.7582991,32.878936100000004],[-83.7580784,32.878928900000005]]},"id":"8a44c0b5061ffff-13f5d55c12448b25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f4959-13f7d5a1005dcfd3","8f44c0b506f48de-179fd5dcd3365440"]},"geometry":{"type":"LineString","coordinates":[[-83.7580784,32.878928900000005],[-83.75806150000001,32.8789284],[-83.7579827,32.8789948]]},"id":"8c44c0b506f49ff-1795f5c006814846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506f48de-179fd5dcd3365440","8f44c0b506f4cd9-179fd64e1c461ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.7579827,32.8789948],[-83.7578015,32.8789936]]},"id":"8b44c0b506f4fff-179ff61579775aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837694,32.7447235]},"id":"8f44c0b06ccc6eb-17debb0c2a0a1b70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b061b0c45-17d7d7f22a46cb1a","8f44c0b06ccc6eb-17debb0c2a0a1b70"]},"geometry":{"type":"LineString","coordinates":[[-83.6850398,32.744942900000005],[-83.684804,32.7448761],[-83.6845215,32.744830900000004],[-83.6842202,32.7448427],[-83.68392370000001,32.7448035],[-83.6837694,32.7447235]]},"id":"8844c0b06dfffff-1797c9820c55d332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06ccc6eb-17debb0c2a0a1b70","8f44c0b06cc56e9-13ff8b9b6bfc46f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6837694,32.7447235],[-83.68363880000001,32.7446287],[-83.6835011,32.744391],[-83.6834779,32.744163400000005],[-83.68354020000001,32.7439576]]},"id":"8944c0b06cfffff-13ffcb8fc1f3f0ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06cc56e9-13ff8b9b6bfc46f6","8f44c0b06cc53b6-139efb59f2b25e7d"]},"geometry":{"type":"LineString","coordinates":[[-83.68354020000001,32.7439576],[-83.6836449,32.7438319]]},"id":"8b44c0b06cc5fff-13d6cb7aa8b771bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06cc53b6-139efb59f2b25e7d","8f44c0b06c746da-17b6f5e2b26935be"]},"geometry":{"type":"LineString","coordinates":[[-83.6836449,32.7438319],[-83.68385830000001,32.7436801],[-83.6841268,32.743619200000005],[-83.6843977,32.743629],[-83.6846172,32.7437174],[-83.68479470000001,32.7438568],[-83.6850398,32.7440139],[-83.6852523,32.7440866],[-83.68551380000001,32.744114100000004],[-83.6858098,32.744085000000005],[-83.6860322,32.7439982],[-83.68623070000001,32.7438725],[-83.68638250000001,32.7437076],[-83.6864614,32.743588800000005],[-83.686521,32.7434279],[-83.6865258,32.743198500000005],[-83.68648610000001,32.7429964],[-83.6864668,32.7427743],[-83.6864936,32.7425826],[-83.68651510000001,32.7423841],[-83.68645880000001,32.7421833],[-83.68631930000001,32.7420096],[-83.6861181,32.7418787],[-83.6858837,32.7418191]]},"id":"8844c0b06dfffff-13f6d689315f6642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06cf3035-1397ae50a1a532af","8f44c0b06c746da-17b6f5e2b26935be"]},"geometry":{"type":"LineString","coordinates":[[-83.6858837,32.7418191],[-83.68571920000001,32.741824300000005],[-83.68553220000001,32.7418636],[-83.68535130000001,32.741950800000005],[-83.6852375,32.742043100000004],[-83.68515620000001,32.7421525],[-83.685085,32.7423475],[-83.6850362,32.7425082],[-83.6849224,32.7426467],[-83.68480650000001,32.7427322],[-83.68464390000001,32.7428005],[-83.68444570000001,32.7428199],[-83.6842618,32.7428023],[-83.6840768,32.742733900000005],[-83.6839284,32.7426091],[-83.68383080000001,32.742450000000005],[-83.68377190000001,32.7422722],[-83.6836885,32.7421286],[-83.6835422,32.7420021],[-83.6833836,32.741923400000005],[-83.6831803,32.7418824],[-83.6829385,32.7418944],[-83.68277180000001,32.741940500000005],[-83.6826254,32.742024300000004],[-83.68250950000001,32.7421457],[-83.6824079,32.7423167],[-83.6823876,32.742487700000005],[-83.682412,32.742645],[-83.68247500000001,32.742815900000004],[-83.6824869,32.7429866],[-83.68243100000001,32.743180200000005]]},"id":"8844c0b06dfffff-17ffaaccdd0f79b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06cf3035-1397ae50a1a532af","8f44c0b06cf371b-13d6fe922015a804"]},"geometry":{"type":"LineString","coordinates":[[-83.68243100000001,32.743180200000005],[-83.6823262,32.7433071]]},"id":"8b44c0b06cf3fff-13bfde716942960d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06cd6ac9-13dfd02fc0bf7568","8f44c0b06cf371b-13d6fe922015a804"]},"geometry":{"type":"LineString","coordinates":[[-83.6823262,32.7433071],[-83.6822377,32.7433793],[-83.6821139,32.7434462],[-83.6819864,32.7434924],[-83.681836,32.743520700000005],[-83.6816644,32.7435221]]},"id":"8944c0b06cfffff-13b79f57a668ff72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b06cd6ac9-13dfd02fc0bf7568","8f44c0b3324d30e-1397f7fd61615296"]},"geometry":{"type":"LineString","coordinates":[[-83.6816644,32.7435221],[-83.6815263,32.7434924],[-83.6813901,32.743434300000004],[-83.68127150000001,32.7433554],[-83.68116710000001,32.7432542],[-83.68108930000001,32.743121800000004],[-83.68105560000001,32.742964],[-83.6810609,32.7428151],[-83.6811229,32.7426559],[-83.6811577,32.7425257],[-83.6811636,32.7423865],[-83.6811105,32.742228700000005],[-83.68102730000001,32.7421111],[-83.68093710000001,32.7420278],[-83.6808132,32.7419504],[-83.68065920000001,32.7419013],[-83.68047700000001,32.7418834],[-83.6803053,32.741902700000004],[-83.68012660000001,32.741965300000004],[-83.680008,32.7420427],[-83.6799036,32.7421498],[-83.6798311,32.742274800000004],[-83.67979360000001,32.742417800000005],[-83.6798028,32.742547200000004],[-83.6798346,32.7426589],[-83.67990540000001,32.7427869],[-83.679962,32.742922300000004],[-83.6799673,32.7430712],[-83.6799249,32.743208100000004],[-83.6798452,32.7433242],[-83.6797408,32.7434165],[-83.67961700000001,32.743473],[-83.6794825,32.743507300000005],[-83.6793232,32.7435058],[-83.6790064,32.743458100000005],[-83.6785581,32.7434007],[-83.67846820000001,32.7434007]]},"id":"8744c0b06ffffff-179fb3a7893b4c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68359690000001,32.7450422]},"id":"8f44c0b06cc8781-1797eb77f40513cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06cc8781-1797eb77f40513cc","8f44c0b06ccc6eb-17debb0c2a0a1b70"]},"geometry":{"type":"LineString","coordinates":[[-83.6837694,32.7447235],[-83.6836662,32.7448738],[-83.68359690000001,32.7450422]]},"id":"8b44c0b06cc8fff-17befb4757829446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68364460000001,32.7451342]},"id":"8f44c0b06cc86ee-17deeb5a274a8230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06cc8781-1797eb77f40513cc","8f44c0b06cc86ee-17deeb5a274a8230"]},"geometry":{"type":"LineString","coordinates":[[-83.68359690000001,32.7450422],[-83.68348590000001,32.7451705],[-83.6834058,32.7452612],[-83.68340280000001,32.7453597],[-83.6834675,32.7454193],[-83.683563,32.7454504],[-83.68365390000001,32.7454296],[-83.6837247,32.74537],[-83.6837478,32.7452793],[-83.6837016,32.7452029],[-83.68364460000001,32.7451342]]},"id":"8a44c0b06ccffff-17bebb8903b1b95e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b06cc8781-1797eb77f40513cc","8f44c0b06cc86ee-17deeb5a274a8230"]},"geometry":{"type":"LineString","coordinates":[[-83.68364460000001,32.7451342],[-83.68359690000001,32.7450422]]},"id":"8c44c0b06cc87ff-17b6ab69008912f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b74602d-13b7ff20eb5139f0","8f44c0b1b76e8ed-13d6fbb0e09db6d1"]},"geometry":{"type":"LineString","coordinates":[[-83.66243700000001,32.838898],[-83.66384500000001,32.838939]]},"id":"8944c0b1b77ffff-13d6bd68eac5615a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b39c575-13f7b7e46c671801","8f44c0b1b76e8ed-13d6fbb0e09db6d1"]},"geometry":{"type":"LineString","coordinates":[[-83.66384500000001,32.838939],[-83.665401,32.838968]]},"id":"8744c0b1bffffff-13dff9caac62e36e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b39c575-13f7b7e46c671801","8f44c0b1b3a970d-1396b22f26d14b42"]},"geometry":{"type":"LineString","coordinates":[[-83.665401,32.838968],[-83.66773900000001,32.839025]]},"id":"8944c0b1b3bffff-13f6f509cc2f4691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b31b86c-1396ef8cca80dc1e","8f44c0b1b3a970d-1396b22f26d14b42"]},"geometry":{"type":"LineString","coordinates":[[-83.66773900000001,32.839025],[-83.668818,32.839047]]},"id":"8844c0b1b3fffff-139fb0ddf3b1cbc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b31b86c-1396ef8cca80dc1e","8f44c0b1b319a82-13b7be8b14835607"]},"geometry":{"type":"LineString","coordinates":[[-83.668818,32.839047],[-83.66923030000001,32.8390707]]},"id":"8a44c0b1b31ffff-139fff0be1693bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d94ba46-13bf500d69dba8d7","8f44c0b8d959cac-139ff2f949784090"]},"geometry":{"type":"LineString","coordinates":[[-83.6018796,32.842340300000004],[-83.602012,32.842364],[-83.602506,32.8425],[-83.60275800000001,32.842601],[-83.6030762,32.8427669]]},"id":"8944c0b8d97ffff-139fd17babbdd748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d94ba46-13bf500d69dba8d7","8f44c0a36495696-17b7de371dc2129f"]},"geometry":{"type":"LineString","coordinates":[[-83.6030762,32.8427669],[-83.60315700000001,32.842809],[-83.603328,32.842928],[-83.603638,32.843197],[-83.60382870000001,32.8434025]]},"id":"8744c0b8dffffff-17f7cf178a2da2f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36495696-17b7de371dc2129f","8f44c0b8db022c4-179f6eb7a5e6b043"]},"geometry":{"type":"LineString","coordinates":[[-83.60382870000001,32.8434025],[-83.603845,32.84342],[-83.603988,32.843631],[-83.604128,32.843899],[-83.60425500000001,32.844237],[-83.60432700000001,32.844577],[-83.604353,32.844918],[-83.604331,32.845269],[-83.60429,32.845469],[-83.604213,32.845709],[-83.603623,32.846815]]},"id":"8744c0b8dffffff-13f7cd846c50fd09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8db022c4-179f6eb7a5e6b043","8f44c0b8da36130-1397f21bcdad9f24"]},"geometry":{"type":"LineString","coordinates":[[-83.603623,32.846815],[-83.60356,32.84695],[-83.603482,32.847068],[-83.603412,32.847153],[-83.60332000000001,32.847244],[-83.603171,32.847341],[-83.60268400000001,32.847574],[-83.602558,32.847645],[-83.60241500000001,32.847763],[-83.60229600000001,32.847897],[-83.60223400000001,32.848027]]},"id":"8844c0b8dbfffff-179fd060bab5ddaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71172920000001,32.8184326]},"id":"8f44c0b0a1346c4-13d666c94f4efe73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1346c4-13d666c94f4efe73","8f44c0b0a134464-17df76c6827fc4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.71172920000001,32.8184326],[-83.7117336,32.818241900000004]]},"id":"8b44c0b0a134fff-1396d6c7e688b4c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7117381,32.8180429]},"id":"8f44c0b0a134da8-17ded6c3b3e8ac78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a134464-17df76c6827fc4b3","8f44c0b0a134da8-17ded6c3b3e8ac78"]},"geometry":{"type":"LineString","coordinates":[[-83.7117336,32.818241900000004],[-83.7117381,32.8180429]]},"id":"8b44c0b0a134fff-179f46c52a891421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a134da8-17ded6c3b3e8ac78","8f44c0b0a89a4d1-17dee6c10db5a1a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7117381,32.8180429],[-83.7117424,32.8178574]]},"id":"8744c0b0affffff-1796e6c260c77fe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710947,32.8176657]},"id":"8f44c0b0ac684c9-17f758b228ec7f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac684c9-17f758b228ec7f80","8f44c0b0a89a4d1-17dee6c10db5a1a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7117424,32.8178574],[-83.7117465,32.8176749],[-83.710947,32.8176657]]},"id":"8a44c0b0ac6ffff-17ff578a13801b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71072600000001,32.8176646]},"id":"8f44c0b0ac6a162-17f6693c4ce76cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac684c9-17f758b228ec7f80","8f44c0b0ac6a162-17f6693c4ce76cef"]},"geometry":{"type":"LineString","coordinates":[[-83.710947,32.8176657],[-83.71072600000001,32.8176646]]},"id":"8a44c0b0ac6ffff-17f6f8f73623bdee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7100747,32.8176563]},"id":"8f44c0b0ac41c1c-17df7ad358c669c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6a162-17f6693c4ce76cef","8f44c0b0ac41c1c-17df7ad358c669c2"]},"geometry":{"type":"LineString","coordinates":[[-83.71072600000001,32.8176646],[-83.7100747,32.8176563]]},"id":"8944c0b0ac7ffff-17dfda07cfba6464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71072690000001,32.8169849]},"id":"8f44c0b0ac61681-17b7d93bbd26e4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac61681-17b7d93bbd26e4ef","8f44c0b0ac41c1c-17df7ad358c669c2"]},"geometry":{"type":"LineString","coordinates":[[-83.7100747,32.8176563],[-83.7100808,32.8169776],[-83.71072690000001,32.8169849]]},"id":"8944c0b0ac7ffff-17b6ca6e03d5af2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918643,32.8138887]},"id":"8f44c0b1d75d6e5-17be7748d322cd33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918325,32.813932]},"id":"8f44c0b1d75d6dd-17d7f75cb8ae9df0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75d6e5-17be7748d322cd33","8f44c0b1d75d6dd-17d7f75cb8ae9df0"]},"geometry":{"type":"LineString","coordinates":[[-83.6918643,32.8138887],[-83.6918325,32.813932]]},"id":"8d44c0b1d75d6ff-17b67752c9f34054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917854,32.8145371]},"id":"8f44c0b1d666175-17bff77a2487c411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d666175-17bff77a2487c411","8f44c0b1d75d6dd-17d7f75cb8ae9df0"]},"geometry":{"type":"LineString","coordinates":[[-83.6918325,32.813932],[-83.6917854,32.8145371]]},"id":"8844c0b1d7fffff-1796f76b760abfd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6620a8-17f7780cb2875847","8f44c0b1d666175-17bff77a2487c411"]},"geometry":{"type":"LineString","coordinates":[[-83.6917854,32.8145371],[-83.6917475,32.8150234],[-83.69155090000001,32.8150289]]},"id":"8a44c0b1d667fff-1797f79b0fb17ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6913193,32.815035300000005]},"id":"8f44c0b1d66249b-17f7789d7dbbff16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6620a8-17f7780cb2875847","8f44c0b1d66249b-17f7789d7dbbff16"]},"geometry":{"type":"LineString","coordinates":[[-83.69155090000001,32.8150289],[-83.6913193,32.815035300000005]]},"id":"8944c0b1d67ffff-17f778551a5bfadb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d675b94-1796788bf7e0629b","8f44c0b1d66249b-17f7789d7dbbff16"]},"geometry":{"type":"LineString","coordinates":[[-83.6913193,32.815035300000005],[-83.69095270000001,32.8150454],[-83.69097980000001,32.814625],[-83.6913473,32.8146438]]},"id":"8a44c0b1d677fff-17fef931392f318f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d675b94-1796788bf7e0629b","8f44c0b1d66249b-17f7789d7dbbff16"]},"geometry":{"type":"LineString","coordinates":[[-83.6913473,32.8146438],[-83.6913193,32.815035300000005]]},"id":"8a44c0b1d677fff-17fef894bb15a0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917291,32.8135307]},"id":"8f44c0b1d75c351-17def79d5f7d653e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75d4aa-17bef7a667cd1059","8f44c0b1d75c351-17def79d5f7d653e"]},"geometry":{"type":"LineString","coordinates":[[-83.69171460000001,32.8137199],[-83.6917291,32.8135307]]},"id":"8a44c0b1d75ffff-1797f7a1d5b0cb19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69174290000001,32.8133513]},"id":"8f44c0b1d75cb84-13def794b120178c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75cb84-13def794b120178c","8f44c0b1d75c351-17def79d5f7d653e"]},"geometry":{"type":"LineString","coordinates":[[-83.6917291,32.8135307],[-83.69174290000001,32.8133513]]},"id":"8b44c0b1d75cfff-1796f79902dcf283"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915805,32.812798]},"id":"8f44c0b1d742ca0-13fef7fa3e38c880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75cb84-13def794b120178c","8f44c0b1d742ca0-13fef7fa3e38c880"]},"geometry":{"type":"LineString","coordinates":[[-83.69174290000001,32.8133513],[-83.6917715,32.8129791],[-83.6915805,32.812798]]},"id":"8944c0b1d77ffff-139ef7a0c10974eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7550e8-13bff87ac8656a45","8f44c0b1d742ca0-13fef7fa3e38c880"]},"geometry":{"type":"LineString","coordinates":[[-83.6915805,32.812798],[-83.69150180000001,32.8127234],[-83.69140390000001,32.8126923],[-83.6913748,32.812690700000005]]},"id":"8944c0b1d77ffff-13d67835ed96716e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911554,32.812678600000005]},"id":"8f44c0b1d7554c0-13b67903eea66e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7550e8-13bff87ac8656a45","8f44c0b1d7554c0-13b67903eea66e96"]},"geometry":{"type":"LineString","coordinates":[[-83.6913748,32.812690700000005],[-83.6911554,32.812678600000005]]},"id":"8b44c0b1d755fff-13b7f8bf576e8140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7554c0-13b67903eea66e96","8f44c0b1d750106-13bef9aafbc55df6"]},"geometry":{"type":"LineString","coordinates":[[-83.6911554,32.812678600000005],[-83.69088810000001,32.812663900000004]]},"id":"8a44c0b1d757fff-13bff957708a2328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66329680000001,32.8121175]},"id":"8f44c0b1847422a-13d7fd07860684d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66329350000001,32.8122983]},"id":"8f44c0b1847549d-13d6fd099c897a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1847422a-13d7fd07860684d7","8f44c0b1847549d-13d6fd099c897a83"]},"geometry":{"type":"LineString","coordinates":[[-83.66329680000001,32.8121175],[-83.66329350000001,32.8122983]]},"id":"8a44c0b18477fff-139ffd088326abe1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632905,32.8124625]},"id":"8f44c0b18470a53-13bfbd0b7c487b97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18470a53-13bfbd0b7c487b97","8f44c0b1847549d-13d6fd099c897a83"]},"geometry":{"type":"LineString","coordinates":[[-83.66329350000001,32.8122983],[-83.6632905,32.8124625]]},"id":"8b44c0b18470fff-13fffd0a82f87de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66328730000001,32.8126417]},"id":"8f44c0b18471528-139fbd0d725aebb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18470a53-13bfbd0b7c487b97","8f44c0b18471528-139fbd0d725aebb1"]},"geometry":{"type":"LineString","coordinates":[[-83.6632905,32.8124625],[-83.66328730000001,32.8126417]]},"id":"8a44c0b18477fff-13f7bd0c74ae32f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632843,32.812807500000005]},"id":"8f44c0b18471780-1396bd0f59976ea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18471780-1396bd0f59976ea6","8f44c0b18471528-139fbd0d725aebb1"]},"geometry":{"type":"LineString","coordinates":[[-83.66328730000001,32.8126417],[-83.6632843,32.812807500000005]]},"id":"8b44c0b18471fff-13d6fd0e60e405aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18446d51-13f6bd115d6c75a3","8f44c0b18471780-1396bd0f59976ea6"]},"geometry":{"type":"LineString","coordinates":[[-83.6632843,32.812807500000005],[-83.6632811,32.8129827]]},"id":"8944c0b1847ffff-13bffd105f2df836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66327790000001,32.8131603]},"id":"8f44c0b184460ac-13f7bd135402290c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18446d51-13f6bd115d6c75a3","8f44c0b184460ac-13f7bd135402290c"]},"geometry":{"type":"LineString","coordinates":[[-83.6632811,32.8129827],[-83.66327790000001,32.8131603]]},"id":"8b44c0b18446fff-13bfbd1250774c22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632749,32.813325500000005]},"id":"8f44c0b18446663-13defd1531b31e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18446663-13defd1531b31e6f","8f44c0b184460ac-13f7bd135402290c"]},"geometry":{"type":"LineString","coordinates":[[-83.66327790000001,32.8131603],[-83.6632749,32.813325500000005]]},"id":"8b44c0b18446fff-1396fd144d98a610"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633292,32.8134287]},"id":"8f44c0b18442952-179efcf34f909d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18446663-13defd1531b31e6f","8f44c0b18442952-179efcf34f909d60"]},"geometry":{"type":"LineString","coordinates":[[-83.6632749,32.813325500000005],[-83.66327430000001,32.8133576],[-83.6633292,32.8134287]]},"id":"8a44c0b18447fff-13fefd08e137210c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a0d080-17f7f2b8b893340a","8f44c0b18a0d069-1797f258f28f953f"]},"geometry":{"type":"LineString","coordinates":[[-83.68077930000001,32.8138294],[-83.68062610000001,32.813784600000005]]},"id":"8c44c0b18a0d1ff-17f7f288d3e342e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a0d080-17f7f2b8b893340a","8f44c0b18a0896b-17d79340a18a3f02"]},"geometry":{"type":"LineString","coordinates":[[-83.68062610000001,32.813784600000005],[-83.6804086,32.813730400000004]]},"id":"8a44c0b18a0ffff-17d6f2fcbada015e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a08d6c-17b7b3b510b55789","8f44c0b18a0896b-17d79340a18a3f02"]},"geometry":{"type":"LineString","coordinates":[[-83.6804086,32.813730400000004],[-83.68022230000001,32.813701]]},"id":"8c44c0b18a089ff-17bed37ade23eb5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a08d6c-17b7b3b510b55789","8f44c0b18a0e345-17bef43845efc008"]},"geometry":{"type":"LineString","coordinates":[[-83.68022230000001,32.813701],[-83.68001240000001,32.813690300000005]]},"id":"8a44c0b18a0ffff-17bfd3f6bd93e131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a0e345-17bef43845efc008","8f44c0b18a0e75d-17bef4b3f4a6117c"]},"geometry":{"type":"LineString","coordinates":[[-83.68001240000001,32.813690300000005],[-83.6798145,32.813691]]},"id":"8b44c0b18a0efff-17beb4761d3233f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67959950000001,32.813690300000005]},"id":"8f44c0b18a1da74-17bef53a5e62d4f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a1da74-17bef53a5e62d4f3","8f44c0b18a0e75d-17bef4b3f4a6117c"]},"geometry":{"type":"LineString","coordinates":[[-83.6798145,32.813691],[-83.67959950000001,32.813690300000005]]},"id":"8a44c0b18a0ffff-17beb4f72b21cfbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a1da74-17bef53a5e62d4f3","8f44c0b18a1d0e5-17bfd5c352f43501"]},"geometry":{"type":"LineString","coordinates":[[-83.67959950000001,32.813690300000005],[-83.6793803,32.8136925]]},"id":"8b44c0b18a1dfff-17bfb57ed5460e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a1d4e1-17beb63a39ea00cd","8f44c0b18a1d0e5-17bfd5c352f43501"]},"geometry":{"type":"LineString","coordinates":[[-83.6793803,32.8136925],[-83.6791901,32.8136931]]},"id":"8b44c0b18a1dfff-17be95feca04ae3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a1d4e1-17beb63a39ea00cd","8f44c0b18a188c1-17beb6bb8b433c40"]},"geometry":{"type":"LineString","coordinates":[[-83.6791901,32.8136931],[-83.6789832,32.8136938]]},"id":"8a44c0b18a1ffff-17bef67aeaa4968a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68509060000001,32.814453300000004]},"id":"8f44c0b1d682149-179fd7d26de32142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d682149-179fd7d26de32142","8f44c0b1d682419-1797d88260a2f542"]},"geometry":{"type":"LineString","coordinates":[[-83.68509060000001,32.814453300000004],[-83.684809,32.8144477]]},"id":"8b44c0b1d682fff-1797982a627e4fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6918f6-1797990b18c4587d","8f44c0b1d682419-1797d88260a2f542"]},"geometry":{"type":"LineString","coordinates":[[-83.684809,32.8144477],[-83.68459030000001,32.8144433]]},"id":"8a44c0b1d697fff-1796f8c6c2accb83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d69104c-17fea90d034e13f9","8f44c0b1d6918f6-1797990b18c4587d"]},"geometry":{"type":"LineString","coordinates":[[-83.68459030000001,32.8144433],[-83.6843836,32.8144391],[-83.68437800000001,32.8145955],[-83.68458720000001,32.814605]]},"id":"8b44c0b1d691fff-17b7a95ed4efbc2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68269a-17fec88564e95122","8f44c0b1d69104c-17fea90d034e13f9"]},"geometry":{"type":"LineString","coordinates":[[-83.68458720000001,32.814605],[-83.6848042,32.8146148]]},"id":"8a44c0b1d697fff-17ffb8c938f54963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68508960000001,32.814546]},"id":"8f44c0b1d68231e-17d7c7d30dac903f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68231e-17d7c7d30dac903f","8f44c0b1d68269a-17fec88564e95122"]},"geometry":{"type":"LineString","coordinates":[[-83.6848042,32.8146148],[-83.68496800000001,32.8146223],[-83.6850036,32.8145617],[-83.68508960000001,32.814546]]},"id":"8b44c0b1d682fff-17f68829541a2d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864367,32.8156637]},"id":"8f44c0b1d689132-13ffd489113beb17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d689132-13ffd489113beb17","8f44c0b1d689b1e-139fa41123b9ce8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6866286,32.8157146],[-83.68647890000001,32.8156662],[-83.6864367,32.8156637]]},"id":"8b44c0b1d689fff-139fa44ca4476aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d689132-13ffd489113beb17","8f44c0b1d688249-13f695041acefa1f"]},"geometry":{"type":"LineString","coordinates":[[-83.6864367,32.8156637],[-83.6862399,32.8156521]]},"id":"8b44c0b1d689fff-13feb4c69efaf009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b916-13fff57e366d9ddf","8f44c0b1d688249-13f695041acefa1f"]},"geometry":{"type":"LineString","coordinates":[[-83.6862399,32.8156521],[-83.68604450000001,32.8156407]]},"id":"8a44c0b1d68ffff-13f785412295f10a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b916-13fff57e366d9ddf","8f44c0b1d68bda5-13fee5f60b11bc74"]},"geometry":{"type":"LineString","coordinates":[[-83.68604450000001,32.8156407],[-83.6858528,32.8156294]]},"id":"8a44c0b1d68ffff-13fff5ba27e308f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68bda5-13fee5f60b11bc74","8f44c0b1d68a210-1396a6712745329e"]},"geometry":{"type":"LineString","coordinates":[[-83.6858528,32.8156294],[-83.6857423,32.8156229],[-83.6856558,32.8156746]]},"id":"8a44c0b1d68ffff-13ff9635e7299cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6854488,32.816051900000005]},"id":"8f44c0b19d24766-13f6f6f281c92f88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68a210-1396a6712745329e","8f44c0b19d24766-13f6f6f281c92f88"]},"geometry":{"type":"LineString","coordinates":[[-83.6856558,32.8156746],[-83.68545800000001,32.815792900000005],[-83.6854488,32.816051900000005]]},"id":"8844c0b1d7fffff-13fe86d1399f9caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d24766-13f6f6f281c92f88","8f44c0b19d26a24-13ffa78962b4ad9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6854488,32.816051900000005],[-83.68520740000001,32.8160498]]},"id":"8a44c0b19d27fff-13ffd73dffb29413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962707,32.818981900000004]},"id":"8f44c0b1d2db619-1397fc86d84711bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2db619-1397fc86d84711bf","8f44c0b19974341-13d66d0a975e9bde"]},"geometry":{"type":"LineString","coordinates":[[-83.6962707,32.818981900000004],[-83.6961496,32.8190272],[-83.69605990000001,32.8190724]]},"id":"8a44c0b19977fff-13b67cc97c54b3f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1997090e-139eed6c216b7be6","8f44c0b19974341-13d66d0a975e9bde"]},"geometry":{"type":"LineString","coordinates":[[-83.69605990000001,32.8190724],[-83.6959738,32.819116],[-83.69590380000001,32.8191726]]},"id":"8a44c0b19977fff-13ff6d3d0bd0eceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1997090e-139eed6c216b7be6","8f44c0b199701ac-13f77dc67b1bc094"]},"geometry":{"type":"LineString","coordinates":[[-83.69590380000001,32.8191726],[-83.6958204,32.8192401],[-83.6957593,32.8193107]]},"id":"8b44c0b19970fff-13be7d9b30dc2900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199706a6-13d6ee1f985c158f","8f44c0b199701ac-13f77dc67b1bc094"]},"geometry":{"type":"LineString","coordinates":[[-83.6957593,32.8193107],[-83.6956979,32.8193816],[-83.6956167,32.819489000000004]]},"id":"8b44c0b19970fff-139e7df3e770a84d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69545620000001,32.8196212]},"id":"8f44c0b1997234e-13b76e83e824b341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1997234e-13b76e83e824b341","8f44c0b199706a6-13d6ee1f985c158f"]},"geometry":{"type":"LineString","coordinates":[[-83.6956167,32.819489000000004],[-83.69557730000001,32.8195411],[-83.69545620000001,32.8196212]]},"id":"8a44c0b19977fff-13976e4e70254b00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69316450000001,32.809891]},"id":"8f44c0b1d0c0320-13f7f41c33e0f02a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0c0320-13f7f41c33e0f02a","8f44c0b1d0c1db2-13fff3eaacd3d4c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6932438,32.8099288],[-83.6932981,32.809862100000004],[-83.6933047,32.8097865],[-83.6932809,32.8096498],[-83.69323460000001,32.809592],[-83.6931804,32.8095687],[-83.6931235,32.8095887],[-83.69309840000001,32.809647600000005],[-83.69309840000001,32.8097243],[-83.6931235,32.809827600000006],[-83.69316450000001,32.809891]]},"id":"8a44c0b1d0c7fff-13fff405030f3bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0c0320-13f7f41c33e0f02a","8f44c0b1d0c1db2-13fff3eaacd3d4c4"]},"geometry":{"type":"LineString","coordinates":[[-83.69316450000001,32.809891],[-83.6932438,32.8099288]]},"id":"8c44c0b1d0c0bff-13f7f4036435c296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69165140000001,32.814526900000004]},"id":"8f44c0b1d666195-17b777cdeb049dd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d666175-17bff77a2487c411","8f44c0b1d666195-17b777cdeb049dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.6917854,32.8145371],[-83.69165140000001,32.814526900000004]]},"id":"8c44c0b1d6661ff-17bef7a409bded86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d666195-17b777cdeb049dd8","8f44c0b1d666570-17b677f7fcf2c125"]},"geometry":{"type":"LineString","coordinates":[[-83.69165140000001,32.814526900000004],[-83.6915841,32.8145218]]},"id":"8b44c0b1d666fff-17b7f7e2ec9ca90e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d67591d-17bf7886651b20b5","8f44c0b1d666570-17b677f7fcf2c125"]},"geometry":{"type":"LineString","coordinates":[[-83.6915841,32.8145218],[-83.6913562,32.814504400000004]]},"id":"8944c0b1d67ffff-17bef83f3c184acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691181,32.814491100000005]},"id":"8f44c0b1d675d08-17b6f8f3e069290c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d67591d-17bf7886651b20b5","8f44c0b1d675d08-17b6f8f3e069290c"]},"geometry":{"type":"LineString","coordinates":[[-83.6913562,32.814504400000004],[-83.691181,32.814491100000005]]},"id":"8b44c0b1d675fff-17b778bd2bd75253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911876,32.8143619]},"id":"8f44c0b1d75b798-17d678efccdc3d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d675d08-17b6f8f3e069290c","8f44c0b1d75b798-17d678efccdc3d65"]},"geometry":{"type":"LineString","coordinates":[[-83.691181,32.814491100000005],[-83.6911876,32.8143619]]},"id":"8a44c0b1d677fff-17fef8f1d8822b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75b798-17d678efccdc3d65","8f44c0b1d75ab0b-17b7f8e145bac16a"]},"geometry":{"type":"LineString","coordinates":[[-83.6911876,32.8143619],[-83.69121080000001,32.813913]]},"id":"8844c0b1d7fffff-17d7f8e887722a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75b798-17d678efccdc3d65","8f44c0b1d75ab0b-17b7f8e145bac16a"]},"geometry":{"type":"LineString","coordinates":[[-83.69121080000001,32.813913],[-83.6910976,32.8139059],[-83.6910677,32.8139342],[-83.69105180000001,32.8143594],[-83.6911876,32.8143619]]},"id":"8844c0b1d7fffff-17d7792e65465ff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac00635-139f71d8983e7c0a","8f44c0b0ac03d4d-139771def88338f8"]},"geometry":{"type":"LineString","coordinates":[[-83.70719910000001,32.8153043],[-83.7071889,32.8154738]]},"id":"8a44c0b0ac07fff-13d671dbc31474ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074032,32.815486]},"id":"8f44c0b0ac014b5-139ed15904c6d854"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac014b5-139ed15904c6d854","8f44c0b0ac03d4d-139771def88338f8"]},"geometry":{"type":"LineString","coordinates":[[-83.7071889,32.8154738],[-83.7074032,32.815486]]},"id":"8a44c0b0ac07fff-139ef19c069df723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac014b5-139ed15904c6d854","8f44c0b0ac0e52e-13fe5164409ebf6b"]},"geometry":{"type":"LineString","coordinates":[[-83.7074032,32.815486],[-83.70752540000001,32.8154929],[-83.7076091,32.815539],[-83.7075951,32.8158438],[-83.70757590000001,32.8158819],[-83.7075219,32.8159098],[-83.7073833,32.8159039],[-83.7073852,32.8158629]]},"id":"8944c0b0ac3ffff-139fd10667bea001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac014b5-139ed15904c6d854","8f44c0b0ac0e52e-13fe5164409ebf6b"]},"geometry":{"type":"LineString","coordinates":[[-83.7073852,32.8158629],[-83.7074032,32.815486]]},"id":"8944c0b0ac3ffff-1396d15eab370659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a022ac-13b6f63d7380b1d7","8f44c0b18a0268e-13b7f6c35d7f4b4e"]},"geometry":{"type":"LineString","coordinates":[[-83.67897070000001,32.813064600000004],[-83.67918490000001,32.813063]]},"id":"8b44c0b18a02fff-13b6f68066bad390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a03c14-13b7f5c24fc7d760","8f44c0b18a022ac-13b6f63d7380b1d7"]},"geometry":{"type":"LineString","coordinates":[[-83.67918490000001,32.813063],[-83.679382,32.8130614]]},"id":"8a44c0b18a07fff-13b7f5ffd5c1cc8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6796046,32.813059700000004]},"id":"8f44c0b18a03826-13b6d537225126af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a03826-13b6d537225126af","8f44c0b18a03c14-13b7f5c24fc7d760"]},"geometry":{"type":"LineString","coordinates":[[-83.679382,32.8130614],[-83.6796046,32.813059700000004]]},"id":"8b44c0b18a03fff-13b6f57cb71f462a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a03826-13b6d537225126af","8f44c0b18a01504-139e94b9d5db1e19"]},"geometry":{"type":"LineString","coordinates":[[-83.6796046,32.813059700000004],[-83.67967630000001,32.813028100000004],[-83.67980510000001,32.813028]]},"id":"8a44c0b18a07fff-1396d4f9c54b8c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a01504-139e94b9d5db1e19","8f44c0b18a01124-139ef438c42e7793"]},"geometry":{"type":"LineString","coordinates":[[-83.67980510000001,32.813028],[-83.6800116,32.8130279]]},"id":"8b44c0b18a01fff-139e94795f167463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a2a48d-139ed3b95476d4d5","8f44c0b18a01124-139ef438c42e7793"]},"geometry":{"type":"LineString","coordinates":[[-83.6800116,32.8130279],[-83.6802155,32.8130277]]},"id":"8a44c0b18a07fff-139ef3f91aa53775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a2a48d-139ed3b95476d4d5","8f44c0b18a2a0ae-139ed341e3bbcf5c"]},"geometry":{"type":"LineString","coordinates":[[-83.6802155,32.8130277],[-83.68040660000001,32.813027600000005]]},"id":"8b44c0b18a2afff-139ed37da4c7123f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a2aa10-139eb2bec54398b3","8f44c0b18a2a0ae-139ed341e3bbcf5c"]},"geometry":{"type":"LineString","coordinates":[[-83.68040660000001,32.813027600000005],[-83.6806164,32.8130274]]},"id":"8b44c0b18a2afff-139eb3005e4cfa8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a2aa10-139eb2bec54398b3","8f44c0b18a286b4-139e9268c4655ba5"]},"geometry":{"type":"LineString","coordinates":[[-83.6806164,32.8130274],[-83.68075400000001,32.8130273]]},"id":"8a44c0b18a2ffff-139eb293ccdd8595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac29224-13b7cd41dbfbd562","8f44c0b0ac29306-139ecd42187b083e"]},"geometry":{"type":"LineString","coordinates":[[-83.7090787,32.815756],[-83.7090783,32.815716]]},"id":"8c44c0b0ac293ff-13bf4d41f7b4afc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac298cb-13de4d42df689922","8f44c0b0ac29306-139ecd42187b083e"]},"geometry":{"type":"LineString","coordinates":[[-83.7090783,32.815716],[-83.7090771,32.815584]]},"id":"8b44c0b0ac29fff-13f74d427507b580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac298cb-13de4d42df689922","8f44c0b0ac29914-13f66d43cbd28e97"]},"geometry":{"type":"LineString","coordinates":[[-83.7090771,32.815584],[-83.7090756,32.8154182]]},"id":"8c44c0b0ac299ff-139e7d435d3d69e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac2d745-13b7dd445ccb2da9","8f44c0b0ac29914-13f66d43cbd28e97"]},"geometry":{"type":"LineString","coordinates":[[-83.7090756,32.8154182],[-83.7090747,32.8153145]]},"id":"8b44c0b0ac2dfff-13d64d441537f7f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac2d745-13b7dd445ccb2da9","8f44c0b0ac2d0c6-13fe5d44b6740175"]},"geometry":{"type":"LineString","coordinates":[[-83.7090747,32.8153145],[-83.70907410000001,32.8152545]]},"id":"8b44c0b0ac2dfff-1396dd448236d281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac2dc41-139efd4598a3e89f","8f44c0b0ac2d0c6-13fe5d44b6740175"]},"geometry":{"type":"LineString","coordinates":[[-83.70907410000001,32.8152545],[-83.70907270000001,32.815099100000005]]},"id":"8b44c0b0ac2dfff-13dfcd452ff37a26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70907150000001,32.814962300000005]},"id":"8f44c0b0ad536d0-17d77d4654096760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac2dc41-139efd4598a3e89f","8f44c0b0ad536d0-17d77d4654096760"]},"geometry":{"type":"LineString","coordinates":[[-83.70907270000001,32.815099100000005],[-83.70907150000001,32.814962300000005]]},"id":"8b44c0b0ac2dfff-17f67d45f88f7e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad536d0-17d77d4654096760","8f44c0b0ac0576d-13f6706e232f8cae"]},"geometry":{"type":"LineString","coordinates":[[-83.70907150000001,32.814962300000005],[-83.70854130000001,32.8149644],[-83.708307,32.8150038],[-83.70804940000001,32.8150831],[-83.707779,32.815207]]},"id":"8844c0b0adfffff-17ffdee2107888ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109231,32.8147809]},"id":"8f44c0b0ad41090-17d658c11b7de75b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad41090-17d658c11b7de75b","8f44c0b0ad4160b-17bfc8c17b0a0487"]},"geometry":{"type":"LineString","coordinates":[[-83.7109231,32.8147809],[-83.71092250000001,32.8149436]]},"id":"8b44c0b0ad41fff-179ef8c148e9ba8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4e899-13b6d8c1c6b2ba6f","8f44c0b0ad4160b-17bfc8c17b0a0487"]},"geometry":{"type":"LineString","coordinates":[[-83.71092250000001,32.8149436],[-83.71092200000001,32.8151053]]},"id":"8944c0b0ad7ffff-17fe58c19e9bb327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4e899-13b6d8c1c6b2ba6f","8f44c0b0ad4e053-1396d8c222813157"]},"geometry":{"type":"LineString","coordinates":[[-83.71092200000001,32.8151053],[-83.7109214,32.8152617]]},"id":"8b44c0b0ad4efff-13d7f8c1fa18f806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a921-13f7e8c2718d70ec","8f44c0b0ad4e053-1396d8c222813157"]},"geometry":{"type":"LineString","coordinates":[[-83.7109214,32.8152617],[-83.7109209,32.8154234]]},"id":"8b44c0b0ad4efff-13b768c25b4cc328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a921-13f7e8c2718d70ec","8f44c0b0ad4aba6-13de58c2caa733bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7109209,32.8154234],[-83.7109204,32.8155809]]},"id":"8a44c0b0ad4ffff-139ed8c2a06e0f93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a370-13b678c3241d0758","8f44c0b0ad4aba6-13de58c2caa733bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7109204,32.8155809],[-83.7109198,32.815753900000004]]},"id":"8b44c0b0ad4afff-139668c2fd5f610b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad4a370-13b678c3241d0758","8f44c0b0ad4a346-13d778c337033d8a"]},"geometry":{"type":"LineString","coordinates":[[-83.7109198,32.815753900000004],[-83.7109197,32.815771500000004]]},"id":"8d44c0b0ad4a37f-13bff8c335cc3ca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67419910000001,32.81513]},"id":"8f44c0b183364a2-13b6e26995fdb09f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18335599-13bfe057fbdfa9fc","8f44c0b183364a2-13b6e26995fdb09f"]},"geometry":{"type":"LineString","coordinates":[[-83.67419910000001,32.81513],[-83.6749925,32.8151444],[-83.6750284,32.8151594],[-83.6750506,32.8151938],[-83.67504650000001,32.815330200000005]]},"id":"8a44c0b18337fff-13d6a13638cdf40e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67504170000001,32.8154927]},"id":"8f44c0b18330a2d-1396f05af27708e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18335599-13bfe057fbdfa9fc","8f44c0b18330a2d-1396f05af27708e7"]},"geometry":{"type":"LineString","coordinates":[[-83.67504650000001,32.815330200000005],[-83.67504170000001,32.8154927]]},"id":"8a44c0b18337fff-13f6b0597dcf5898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18330a2d-1396f05af27708e7","8f44c0b18331cae-13f7e05df7426285"]},"geometry":{"type":"LineString","coordinates":[[-83.67504170000001,32.8154927],[-83.67503690000001,32.815654200000004]]},"id":"8a44c0b18337fff-13d7e05c72a433ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18331446-13f6f061354fde5c","8f44c0b18331cae-13f7e05df7426285"]},"geometry":{"type":"LineString","coordinates":[[-83.67503690000001,32.815654200000004],[-83.6750317,32.8158277]]},"id":"8b44c0b18331fff-13bea05f9d4bc82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6741763,32.8159682]},"id":"8f44c0b183141aa-13bea277d7385955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18331446-13f6f061354fde5c","8f44c0b183141aa-13bea277d7385955"]},"geometry":{"type":"LineString","coordinates":[[-83.6750317,32.8158277],[-83.6750284,32.8159402],[-83.6750045,32.8159818],[-83.67495070000001,32.815991100000005],[-83.6741763,32.8159682]]},"id":"8944c0b1833ffff-13bea148b2cdd422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71286,32.820197]},"id":"8f44c0b0a101364-179f640688043f33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a101364-179f640688043f33","8f44c0b0a101771-179e448c24ae9286"]},"geometry":{"type":"LineString","coordinates":[[-83.71286,32.820197],[-83.71264620000001,32.8201952]]},"id":"8b44c0b0a101fff-179ed44951101e43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a101771-179e448c24ae9286","8f44c0b0a103b51-179ee50cd6934249"]},"geometry":{"type":"LineString","coordinates":[[-83.71264620000001,32.8201952],[-83.71244030000001,32.8201934]]},"id":"8a44c0b0a107fff-179f74cc87ab2462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a103b51-179ee50cd6934249","8f44c0b0a10302d-179fd5882f9a6b21"]},"geometry":{"type":"LineString","coordinates":[[-83.71244030000001,32.8201934],[-83.712243,32.8201917]]},"id":"8b44c0b0a103fff-179e654a70af2887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11c954-17f6e6714633ba99","8f44c0b0a10302d-179fd5882f9a6b21"]},"geometry":{"type":"LineString","coordinates":[[-83.712243,32.8201917],[-83.71216530000001,32.820191],[-83.71204540000001,32.8201619],[-83.71187,32.8201326]]},"id":"8a44c0b0a107fff-17ffe5fcd18c631a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11c954-17f6e6714633ba99","8f44c0b0a11cd1b-17df6702873cbca7"]},"geometry":{"type":"LineString","coordinates":[[-83.71187,32.8201326],[-83.7117486,32.820112300000005],[-83.7116376,32.820111000000004]]},"id":"8b44c0b0a11cfff-17df56b9af7963a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11cd8d-17df77129b60b558","8f44c0b0a11cd1b-17df6702873cbca7"]},"geometry":{"type":"LineString","coordinates":[[-83.7116376,32.820111000000004],[-83.71161190000001,32.8201107]]},"id":"8c44c0b0a11cdff-17df570a9c534754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11cd8d-17df77129b60b558","8f44c0b0a111233-17d7f780e9a2aa19"]},"geometry":{"type":"LineString","coordinates":[[-83.71161190000001,32.8201107],[-83.7114354,32.8201087]]},"id":"8944c0b0a13ffff-17ded749c1a227ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7112022,32.820106]},"id":"8f44c0b0a1116a2-17d64812a79fbb39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a111233-17d7f780e9a2aa19","8f44c0b0a1116a2-17d64812a79fbb39"]},"geometry":{"type":"LineString","coordinates":[[-83.7114354,32.8201087],[-83.7112022,32.820106]]},"id":"8b44c0b0a111fff-17d767c9c669741a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69074160000001,32.8144678]},"id":"8f44c0b1d67478d-17967a068d42919e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d675d08-17b6f8f3e069290c","8f44c0b1d67478d-17967a068d42919e"]},"geometry":{"type":"LineString","coordinates":[[-83.691181,32.814491100000005],[-83.69074160000001,32.8144678]]},"id":"8a44c0b1d677fff-179ff97d383a4bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690398,32.8144495]},"id":"8f44c0b1d676031-1796fadd440106b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d67478d-17967a068d42919e","8f44c0b1d676031-1796fadd440106b3"]},"geometry":{"type":"LineString","coordinates":[[-83.69074160000001,32.8144678],[-83.690398,32.8144495]]},"id":"8a44c0b1d677fff-179efa71e8c5e215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6902034,32.8144372]},"id":"8f44c0b1d676406-17ff7b56e262ce52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d676406-17ff7b56e262ce52","8f44c0b1d676031-1796fadd440106b3"]},"geometry":{"type":"LineString","coordinates":[[-83.690398,32.8144495],[-83.6902034,32.8144372]]},"id":"8b44c0b1d676fff-17977b1a14325792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d676406-17ff7b56e262ce52","8f44c0b1d60d814-17f77bd60aea2cb2"]},"geometry":{"type":"LineString","coordinates":[[-83.6902034,32.8144372],[-83.69000000000001,32.8144243]]},"id":"8944c0b1d63ffff-17ff7b96799a6c1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60d814-17f77bd60aea2cb2","8f44c0b1d60dc12-17ff7c557212851b"]},"geometry":{"type":"LineString","coordinates":[[-83.69000000000001,32.8144243],[-83.68979610000001,32.814411400000004]]},"id":"8b44c0b1d60dfff-17f77c15b6a67082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60dc12-17ff7c557212851b","8f44c0b1d60c2a0-17f77cd622bcb235"]},"geometry":{"type":"LineString","coordinates":[[-83.68979610000001,32.814411400000004],[-83.68959020000001,32.8143984]]},"id":"8a44c0b1d60ffff-17ff7c95cff20be0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68938100000001,32.814385200000004]},"id":"8f44c0b1d60c6b1-17defd58e6d47d01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60c6b1-17defd58e6d47d01","8f44c0b1d60c2a0-17f77cd622bcb235"]},"geometry":{"type":"LineString","coordinates":[[-83.68959020000001,32.8143984],[-83.68938100000001,32.814385200000004]]},"id":"8b44c0b1d60cfff-17f6fd178c132531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891882,32.814373100000005]},"id":"8f44c0b1d60ea86-17d77dd1638de208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60c6b1-17defd58e6d47d01","8f44c0b1d60ea86-17d77dd1638de208"]},"geometry":{"type":"LineString","coordinates":[[-83.68938100000001,32.814385200000004],[-83.6891882,32.814373100000005]]},"id":"8a44c0b1d60ffff-17df7d952c1c3e28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68899160000001,32.8143607]},"id":"8f44c0b1d60e095-17df7e4c45d07ea9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60ea86-17d77dd1638de208","8f44c0b1d60e095-17df7e4c45d07ea9"]},"geometry":{"type":"LineString","coordinates":[[-83.6891882,32.814373100000005],[-83.68899160000001,32.8143607]]},"id":"8b44c0b1d60efff-17d77e0edf217657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60e095-17df7e4c45d07ea9","8f44c0b1d60e490-17d7fec780b5d981"]},"geometry":{"type":"LineString","coordinates":[[-83.68899160000001,32.8143607],[-83.6887944,32.814348200000005]]},"id":"8944c0b1d63ffff-17dffe89ee9eaad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68865530000001,32.8143394]},"id":"8f44c0b1d61d8aa-17d67f1e7d02dddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d61d8aa-17d67f1e7d02dddd","8f44c0b1d60e490-17d7fec780b5d981"]},"geometry":{"type":"LineString","coordinates":[[-83.6887944,32.814348200000005],[-83.68865530000001,32.8143394]]},"id":"8c44c0b1d61d9ff-17d6fef30335e18a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6852655,32.8145614]},"id":"8f44c0b1d683dad-17dee765144a4a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858885,32.8148228]},"id":"8f44c0b1d6812ac-17f6c5dfbd80a850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d683dad-17dee765144a4a58","8f44c0b1d6812ac-17f6c5dfbd80a850"]},"geometry":{"type":"LineString","coordinates":[[-83.6852655,32.8145614],[-83.6854964,32.8145885],[-83.68580180000001,32.8148071],[-83.6858885,32.8148228]]},"id":"8a44c0b1d687fff-1797c69dc9759efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68670660000001,32.8146349]},"id":"8f44c0b1d6a86e1-17fed3e06e090c13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a86e1-17fed3e06e090c13","8f44c0b1d6812ac-17f6c5dfbd80a850"]},"geometry":{"type":"LineString","coordinates":[[-83.6858885,32.8148228],[-83.68598030000001,32.814839400000004],[-83.686705,32.8148471],[-83.68670660000001,32.8146349]]},"id":"8944c0b1d6bffff-17ffb4ac3ee8fc8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a86e1-17fed3e06e090c13","8f44c0b1d6a809a-179f83dfb8dd6086"]},"geometry":{"type":"LineString","coordinates":[[-83.68670660000001,32.8146349],[-83.6867077,32.814488000000004]]},"id":"8b44c0b1d6a8fff-17dee3e015a2e3d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a809a-179f83dfb8dd6086","8f44c0b1d6a8c19-17b7f3dee4b11257"]},"geometry":{"type":"LineString","coordinates":[[-83.6867077,32.814488000000004],[-83.68670900000001,32.8143167]]},"id":"8b44c0b1d6a8fff-17ff83df5796f66a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6aeb48-17ded3de165443b2","8f44c0b1d6a8c19-17b7f3dee4b11257"]},"geometry":{"type":"LineString","coordinates":[[-83.68670900000001,32.8143167],[-83.6867103,32.8141477]]},"id":"8a44c0b1d6affff-17ffa3de72ce6591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ac414-17f6b3dd5779d709","8f44c0b1d6aeb48-17ded3de165443b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6867103,32.8141477],[-83.6867115,32.8139843]]},"id":"8b44c0b1d6acfff-1797c3ddb1f4f589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ac414-17f6b3dd5779d709","8f44c0b1d6a1371-17fe93dc8bb52e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6867115,32.8139843],[-83.68671280000001,32.8138153]]},"id":"8944c0b1d6bffff-17bfe3dcf033e451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a1ba3-179683dbba74331f","8f44c0b1d6a1371-17fe93dc8bb52e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.68671280000001,32.8138153],[-83.6867141,32.8136456]]},"id":"8b44c0b1d6a1fff-17d793dc1f60cc50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6867156,32.813449]},"id":"8f44c0b1d6a5288-1797a3dacfeca77e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a1ba3-179683dbba74331f","8f44c0b1d6a5288-1797a3dacfeca77e"]},"geometry":{"type":"LineString","coordinates":[[-83.6867141,32.8136456],[-83.6867156,32.813449]]},"id":"8a44c0b1d6a7fff-17d793db404142fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0246e3-17f6759a1e16ab3f","8f44c0b0a11d242-1796c59a28bdbad5"]},"geometry":{"type":"LineString","coordinates":[[-83.7122142,32.8208232],[-83.7122143,32.821565500000005]]},"id":"8844c0b0a1fffff-17fe759a27591b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a024209-17f7f5167517d539","8f44c0b0a0246e3-17f6759a1e16ab3f"]},"geometry":{"type":"LineString","coordinates":[[-83.7122143,32.821565500000005],[-83.7124249,32.8215675]]},"id":"8b44c0b0a024fff-17f755584e1fc865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7126264,32.8215694]},"id":"8f44c0b0a025c76-17fee49881333b82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a025c76-17fee49881333b82","8f44c0b0a024209-17f7f5167517d539"]},"geometry":{"type":"LineString","coordinates":[[-83.7124249,32.8215675],[-83.7126264,32.8215694]]},"id":"8a44c0b0a027fff-17fe54d78488a7fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128296,32.8215713]},"id":"8f44c0b0a02595a-17fe54198f78b4f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a02595a-17fe54198f78b4f4","8f44c0b0a025c76-17fee49881333b82"]},"geometry":{"type":"LineString","coordinates":[[-83.7126264,32.8215694],[-83.7128296,32.8215713]]},"id":"8b44c0b0a025fff-17ffc459028adb1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71304810000001,32.821573300000004]},"id":"8f44c0b0a156541-17ff5390f249ad01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156541-17ff5390f249ad01","8f44c0b0a02595a-17fe54198f78b4f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7128296,32.8215713],[-83.71304810000001,32.821573300000004]]},"id":"8844c0b0a1fffff-17fef3d5427f2841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156541-17ff5390f249ad01","8f44c0b0a156163-17fec31666f03329"]},"geometry":{"type":"LineString","coordinates":[[-83.71304810000001,32.821573300000004],[-83.7132442,32.821575200000005]]},"id":"8b44c0b0a156fff-17fff353b148d340"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71329850000001,32.821575700000004]},"id":"8f44c0b0a156b83-17fed2f4775ffac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156b83-17fed2f4775ffac8","8f44c0b0a156163-17fec31666f03329"]},"geometry":{"type":"LineString","coordinates":[[-83.7132442,32.821575200000005],[-83.71329850000001,32.821575700000004]]},"id":"8b44c0b0a156fff-17fef3056bba284a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a154796-17fff292d28142c4","8f44c0b0a156b83-17fed2f4775ffac8"]},"geometry":{"type":"LineString","coordinates":[[-83.71329850000001,32.821575700000004],[-83.7134547,32.8215771]]},"id":"8a44c0b0a157fff-17ff42c3a57fd835"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1543b2-17fee216ea68a547","8f44c0b0a154796-17fff292d28142c4"]},"geometry":{"type":"LineString","coordinates":[[-83.7134547,32.8215771],[-83.71365300000001,32.821579]]},"id":"8b44c0b0a154fff-17fe5254de068fa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a154a5b-17f65193e855bb5d","8f44c0b0a1543b2-17fee216ea68a547"]},"geometry":{"type":"LineString","coordinates":[[-83.71365300000001,32.821579],[-83.7138626,32.8215809]]},"id":"8b44c0b0a154fff-17ffc1d56ae25d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138953,32.8215814]},"id":"8f44c0b0a154a48-17f6617f7b7a6662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a154a48-17f6617f7b7a6662","8f44c0b0a154a5b-17f65193e855bb5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7138626,32.8215809],[-83.7138953,32.8215814]]},"id":"8d44c0b0a154a7f-17f67189aaa5a3d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a173643-17f7d112b8b1fcfb","8f44c0b0a154a48-17f6617f7b7a6662"]},"geometry":{"type":"LineString","coordinates":[[-83.7138953,32.8215814],[-83.7140693,32.821583700000005]]},"id":"8a44c0b0a157fff-17f7614916b736ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08ca20-17be78476332960c","8f44c0b1d0ab594-17d6f83ecd7fe093"]},"geometry":{"type":"LineString","coordinates":[[-83.691457,32.8081888],[-83.6914708,32.808013800000005]]},"id":"8944c0b1d0bffff-1797784318abb2fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa305-17ff7836ad81b6d0","8f44c0b1d0ab594-17d6f83ecd7fe093"]},"geometry":{"type":"LineString","coordinates":[[-83.6914708,32.808013800000005],[-83.6914838,32.8078487]]},"id":"8a44c0b1d0affff-179f783ab77d1cef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69100300000001,32.8103746]},"id":"8f44c0b1d72c614-17967963279e1fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69118060000001,32.8103865]},"id":"8f44c0b1d72c389-179ff8f426799ae7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72c614-17967963279e1fed","8f44c0b1d72c389-179ff8f426799ae7"]},"geometry":{"type":"LineString","coordinates":[[-83.69100300000001,32.8103746],[-83.69118060000001,32.8103865]]},"id":"8b44c0b1d72cfff-1797f92ba3955a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69139480000001,32.810397]},"id":"8f44c0b1d72dc30-17b6786e45c51b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72dc30-17b6786e45c51b79","8f44c0b1d72c389-179ff8f426799ae7"]},"geometry":{"type":"LineString","coordinates":[[-83.69118060000001,32.8103865],[-83.69139480000001,32.810397]]},"id":"8a44c0b1d72ffff-179ef8b13981a02a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72d826-17be77f0a936814d","8f44c0b1d72dc30-17b6786e45c51b79"]},"geometry":{"type":"LineString","coordinates":[[-83.69139480000001,32.810397],[-83.6915958,32.810407000000005]]},"id":"8b44c0b1d72dfff-17b7782f7e23fcca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69183430000001,32.8104187]},"id":"8f44c0b1d0de573-17bff75b91baeee0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0de573-17bff75b91baeee0","8f44c0b1d72d826-17be77f0a936814d"]},"geometry":{"type":"LineString","coordinates":[[-83.6915958,32.810407000000005],[-83.69183430000001,32.8104187]]},"id":"8944c0b1d0fffff-17be77a62a3529f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0de573-17bff75b91baeee0","8f44c0b1d0c161e-17f6f3d2298a8be2"]},"geometry":{"type":"LineString","coordinates":[[-83.69183430000001,32.8104187],[-83.6919056,32.8104223],[-83.6920233,32.810403400000006],[-83.6922759,32.8104078],[-83.6932412,32.810307800000004],[-83.69328300000001,32.8103022]]},"id":"8944c0b1d0fffff-1796f596b90d3904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937358,32.8101144]},"id":"8f44c0b1d0ea7a2-13f7f2b7221362c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0c161e-17f6f3d2298a8be2","8f44c0b1d0ea7a2-13f7f2b7221362c9"]},"geometry":{"type":"LineString","coordinates":[[-83.69328300000001,32.8103022],[-83.693466,32.8102778],[-83.6936366,32.8101933],[-83.6937358,32.8101144]]},"id":"8944c0b1d0fffff-17bef33dd1aa8ac6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970158,32.821571]},"id":"8f44c0b19948046-17ffeab5232e5133"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971599,32.8213616]},"id":"8f44c0b19948963-17f76a5b19a03dd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19948046-17ffeab5232e5133","8f44c0b19948963-17f76a5b19a03dd9"]},"geometry":{"type":"LineString","coordinates":[[-83.6970158,32.821571],[-83.6971599,32.8213616]]},"id":"8b44c0b19948fff-17be7a88208a8e44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69734070000001,32.8210986]},"id":"8f44c0b1994cb42-17d6e9ea1c3f6556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19948963-17f76a5b19a03dd9","8f44c0b1994cb42-17d6e9ea1c3f6556"]},"geometry":{"type":"LineString","coordinates":[[-83.6971599,32.8213616],[-83.69734070000001,32.8210986]]},"id":"8a44c0b1994ffff-1796fa2293404d82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69744580000001,32.8209457]},"id":"8f44c0b1996b573-17f779a86022c20a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996b573-17f779a86022c20a","8f44c0b1994cb42-17d6e9ea1c3f6556"]},"geometry":{"type":"LineString","coordinates":[[-83.69734070000001,32.8210986],[-83.69744580000001,32.8209457]]},"id":"8944c0b1997ffff-1796e9c9469d976a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6975523,32.8207907]},"id":"8f44c0b1996bd74-17967965d86f98a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996b573-17f779a86022c20a","8f44c0b1996bd74-17967965d86f98a9"]},"geometry":{"type":"LineString","coordinates":[[-83.69744580000001,32.8209457],[-83.6975523,32.8207907]]},"id":"8b44c0b1996bfff-17b6e9872d1a98da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996bd74-17967965d86f98a9","8f44c0b199680da-17b67926832cc782"]},"geometry":{"type":"LineString","coordinates":[[-83.6975523,32.8207907],[-83.69765360000001,32.8206435]]},"id":"8a44c0b1996ffff-17d6794636f9e873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199680da-17b67926832cc782","8f44c0b199688d1-17d7e8e14dcfe4b9"]},"geometry":{"type":"LineString","coordinates":[[-83.69765360000001,32.8206435],[-83.69776440000001,32.8204824]]},"id":"8b44c0b19968fff-17f7e903e2774c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69767060000001,32.8202549]},"id":"8f44c0b1996c6a5-17b7791be48c5826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199688d1-17d7e8e14dcfe4b9","8f44c0b1996c6a5-17b7791be48c5826"]},"geometry":{"type":"LineString","coordinates":[[-83.69776440000001,32.8204824],[-83.6977768,32.8204642],[-83.6977403,32.820289100000004],[-83.69767060000001,32.8202549]]},"id":"8a44c0b1996ffff-17f7f8ed9507317d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69720500000001,32.820026500000004]},"id":"8f44c0b1996ed84-17b6fa3ee6e122e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996ed84-17b6fa3ee6e122e8","8f44c0b1996c6a5-17b7791be48c5826"]},"geometry":{"type":"LineString","coordinates":[[-83.69767060000001,32.8202549],[-83.69720500000001,32.820026500000004]]},"id":"8944c0b1997ffff-17fff9ad6691faff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19963cac-13fe6b1ccf38acf2","8f44c0b1996ed84-17b6fa3ee6e122e8"]},"geometry":{"type":"LineString","coordinates":[[-83.69720500000001,32.820026500000004],[-83.6969842,32.819918200000004],[-83.69685000000001,32.819760200000005]]},"id":"8b44c0b19963fff-13deeab6addcfe78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69045240000001,32.8136944]},"id":"8f44c0b1d62d792-17bf7abb4dee8ee8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62d792-17bf7abb4dee8ee8","8f44c0b1d676031-1796fadd440106b3"]},"geometry":{"type":"LineString","coordinates":[[-83.69045240000001,32.8136944],[-83.690398,32.8144495]]},"id":"8944c0b1d63ffff-179f7acc45de2c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69016260000001,32.8150205]},"id":"8f44c0b1d672633-17fffb7064824891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d672633-17fffb7064824891","8f44c0b1d676031-1796fadd440106b3"]},"geometry":{"type":"LineString","coordinates":[[-83.690398,32.8144495],[-83.69035620000001,32.8150318],[-83.69016260000001,32.8150205]]},"id":"8a44c0b1d677fff-17ff7afca54c8c39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893386,32.8149728]},"id":"8f44c0b1d60b8b3-17de7d73643666a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60b8b3-17de7d73643666a1","8f44c0b1d672633-17fffb7064824891"]},"geometry":{"type":"LineString","coordinates":[[-83.69016260000001,32.8150205],[-83.6893386,32.8149728]]},"id":"8844c0b1d7fffff-17defc71e2680446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68914600000001,32.814961600000004]},"id":"8f44c0b1d60bc95-17d77debca7f3b50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60b8b3-17de7d73643666a1","8f44c0b1d60bc95-17d77debca7f3b50"]},"geometry":{"type":"LineString","coordinates":[[-83.6893386,32.8149728],[-83.68914600000001,32.814961600000004]]},"id":"8b44c0b1d60bfff-17defdaf9811d832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889622,32.814807]},"id":"8f44c0b1d60a00a-17f67e5ea1868a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60bc95-17d77debca7f3b50","8f44c0b1d60a00a-17f67e5ea1868a12"]},"geometry":{"type":"LineString","coordinates":[[-83.68914600000001,32.814961600000004],[-83.6890948,32.814958700000005],[-83.6889622,32.814807]]},"id":"8a44c0b1d60ffff-179ffe29935694c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d61d8aa-17d67f1e7d02dddd","8f44c0b1d60a00a-17f67e5ea1868a12"]},"geometry":{"type":"LineString","coordinates":[[-83.6889622,32.814807],[-83.6887526,32.8145673],[-83.68865530000001,32.8143394]]},"id":"8944c0b1d63ffff-17dffeca25bd9693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d61d8aa-17d67f1e7d02dddd","8f44c0b1d61dd60-1796ff436cff2982"]},"geometry":{"type":"LineString","coordinates":[[-83.68865530000001,32.8143394],[-83.6885962,32.8142696]]},"id":"8b44c0b1d61dfff-17be7f30f117881f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7180146,32.8143358]},"id":"8f44c0b0a90b95c-17bff770e00f36fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a90b95c-17bff770e00f36fb","8f44c0b0a909156-17d73696db71f747"]},"geometry":{"type":"LineString","coordinates":[[-83.7180146,32.8143358],[-83.71881230000001,32.813896400000004],[-83.7188802,32.8140115],[-83.7188419,32.8140747],[-83.71836350000001,32.814344000000006]]},"id":"8844c0b0a9fffff-17bfb62e9e4e03ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71817370000001,32.8144508]},"id":"8f44c0b0a9097b1-1797f70d75ad8833"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a9097b1-1797f70d75ad8833","8f44c0b0a909156-17d73696db71f747"]},"geometry":{"type":"LineString","coordinates":[[-83.71836350000001,32.814344000000006],[-83.71817370000001,32.8144508]]},"id":"8b44c0b0a909fff-17f676d22819c050"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7179012,32.8150891]},"id":"8f44c0b0a952c96-1396b7b7c92e3418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a952c96-1396b7b7c92e3418","8f44c0b0a9097b1-1797f70d75ad8833"]},"geometry":{"type":"LineString","coordinates":[[-83.71817370000001,32.8144508],[-83.718292,32.814552400000004],[-83.7179012,32.8150891]]},"id":"8844c0b0a9fffff-17df372d7d1f0b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a952c96-1396b7b7c92e3418","8f44c0b0a90b95c-17bff770e00f36fb"]},"geometry":{"type":"LineString","coordinates":[[-83.7179012,32.8150891],[-83.7176299,32.8149399],[-83.717625,32.8148021],[-83.7177162,32.8146456],[-83.7178605,32.814421800000005],[-83.7180146,32.8143358]]},"id":"8844c0b0a9fffff-17b7b80c7b640b6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a90b95c-17bff770e00f36fb","8f44c0b0a9097b1-1797f70d75ad8833"]},"geometry":{"type":"LineString","coordinates":[[-83.7180146,32.8143358],[-83.71817370000001,32.8144508]]},"id":"8a44c0b0a90ffff-17f7f73f35f4919f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69121770000001,32.809892600000005]},"id":"8f44c0b1d0d20d8-13f6f8dcf70fb6ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0d20d8-13f6f8dcf70fb6ac","8f44c0b1d72c389-179ff8f426799ae7"]},"geometry":{"type":"LineString","coordinates":[[-83.69118060000001,32.8103865],[-83.69121770000001,32.809892600000005]]},"id":"8944c0b1d73ffff-179778e88f76c36b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914666,32.809430500000005]},"id":"8f44c0b1d0d6a9e-13d6784161d82361"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0d20d8-13f6f8dcf70fb6ac","8f44c0b1d0d6a9e-13d6784161d82361"]},"geometry":{"type":"LineString","coordinates":[[-83.69121770000001,32.809892600000005],[-83.691248,32.8094893],[-83.691277,32.809420100000004],[-83.6914666,32.809430500000005]]},"id":"8a44c0b1d0d7fff-13bf78b8ce8c8b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0d469c-13def7c2fb56406c","8f44c0b1d0d6a9e-13d6784161d82361"]},"geometry":{"type":"LineString","coordinates":[[-83.6914666,32.809430500000005],[-83.69166890000001,32.809441500000005]]},"id":"8a44c0b1d0d7fff-13dff802340ced12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0de573-17bff75b91baeee0","8f44c0b1d0d469c-13def7c2fb56406c"]},"geometry":{"type":"LineString","coordinates":[[-83.69166890000001,32.809441500000005],[-83.6919091,32.8094547],[-83.69183430000001,32.8104187]]},"id":"8944c0b1d0fffff-13d7f74e832e9bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69152480000001,32.8105832]},"id":"8f44c0b1d72d029-1796f81d0ef495f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0de573-17bff75b91baeee0","8f44c0b1d72d029-1796f81d0ef495f0"]},"geometry":{"type":"LineString","coordinates":[[-83.69183430000001,32.8104187],[-83.69172490000001,32.8105919],[-83.69152480000001,32.8105832]]},"id":"8944c0b1d0fffff-17ff77ad92cfb22c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69151210000001,32.8107423]},"id":"8f44c0b1d72d285-17fff824f5684575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72d029-1796f81d0ef495f0","8f44c0b1d72d285-17fff824f5684575"]},"geometry":{"type":"LineString","coordinates":[[-83.69152480000001,32.8105832],[-83.69151210000001,32.8107423]]},"id":"8b44c0b1d72dfff-17de7820facb8da4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69128640000001,32.810723100000004]},"id":"8f44c0b1d72d690-17fff8b20d4802bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72d690-17fff8b20d4802bf","8f44c0b1d72d285-17fff824f5684575"]},"geometry":{"type":"LineString","coordinates":[[-83.69151210000001,32.8107423],[-83.69144440000001,32.8115892],[-83.6912181,32.811580500000005],[-83.69128640000001,32.810723100000004]]},"id":"8844c0b1d7fffff-179f788390e2ceb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72d690-17fff8b20d4802bf","8f44c0b1d72d285-17fff824f5684575"]},"geometry":{"type":"LineString","coordinates":[[-83.69128640000001,32.810723100000004],[-83.69151210000001,32.8107423]]},"id":"8b44c0b1d72dfff-17f7f86b763cf35a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d681154-17fec5debaea0868","8f44c0b1d6812ac-17f6c5dfbd80a850"]},"geometry":{"type":"LineString","coordinates":[[-83.6858885,32.8148228],[-83.68589010000001,32.814631600000006]]},"id":"8b44c0b1d681fff-17b685df3ba2f96e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d681154-17fec5debaea0868","8f44c0b1d6819b5-179fa5ddd6e662db"]},"geometry":{"type":"LineString","coordinates":[[-83.68589010000001,32.814631600000006],[-83.68589150000001,32.8144538]]},"id":"8b44c0b1d681fff-17d7b5de414b7994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6819b5-179fa5ddd6e662db","8f44c0b1d68509d-179785dcd238e5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.68589150000001,32.8144538],[-83.6858931,32.814264800000004]]},"id":"8a44c0b1d687fff-17de95dd5adde853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d685c08-17b7d5dbf70365f7","8f44c0b1d68509d-179785dcd238e5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6858931,32.814264800000004],[-83.6858945,32.8140925]]},"id":"8b44c0b1d685fff-17dfb5dc600b8bc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d685c08-17b7d5dbf70365f7","8f44c0b1d684b69-17b6a5db01060312"]},"geometry":{"type":"LineString","coordinates":[[-83.6858945,32.8140925],[-83.685896,32.8139114]]},"id":"8a44c0b1d687fff-17ffc5db8d27b9b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a351c-17d6b5da19d2adf2","8f44c0b1d684b69-17b6a5db01060312"]},"geometry":{"type":"LineString","coordinates":[[-83.685896,32.8139114],[-83.68589750000001,32.8137291]]},"id":"8b44c0b1d6a3fff-17ffb5da8ecc7c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a351c-17d6b5da19d2adf2","8f44c0b1d6a234c-1796b5d98d790323"]},"geometry":{"type":"LineString","coordinates":[[-83.68589750000001,32.8137291],[-83.6858984,32.8136235]]},"id":"8a44c0b1d6a7fff-17b7b5d9d2505f61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a2695-17ffc6bc282d21cc","8f44c0b1d6a234c-1796b5d98d790323"]},"geometry":{"type":"LineString","coordinates":[[-83.6858984,32.8136235],[-83.68618000000001,32.813624600000004],[-83.686188,32.8135102],[-83.685536,32.8134979],[-83.68553580000001,32.813618000000005]]},"id":"8a44c0b1d6a7fff-17d7f5d6c31ce85d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a2695-17ffc6bc282d21cc","8f44c0b1d684655-179f86bc887b6d52"]},"geometry":{"type":"LineString","coordinates":[[-83.68553580000001,32.813618000000005],[-83.6855352,32.8140792]]},"id":"8944c0b1d6bffff-179fe6bc5922b1fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d681154-17fec5debaea0868","8f44c0b1d684655-179f86bc887b6d52"]},"geometry":{"type":"LineString","coordinates":[[-83.6855352,32.8140792],[-83.6855347,32.814387],[-83.68589010000001,32.814631600000006]]},"id":"8a44c0b1d687fff-17f6f67bf3b6dd59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6778381,32.821474900000005]},"id":"8f44c0b18263345-17bfd9873fb85e5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6777713,32.821609800000004]},"id":"8f44c0b1826e59e-1396b9b0f9fcc351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18263345-17bfd9873fb85e5a","8f44c0b1826e59e-1396b9b0f9fcc351"]},"geometry":{"type":"LineString","coordinates":[[-83.6778381,32.821474900000005],[-83.6777713,32.821609800000004]]},"id":"8944c0b1827ffff-17de999c1566f6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1826e59e-1396b9b0f9fcc351","8f44c0b1824c4ab-13d69a364bd3cb42"]},"geometry":{"type":"LineString","coordinates":[[-83.6777713,32.821609800000004],[-83.6777594,32.8225318],[-83.677558,32.8225312]]},"id":"8944c0b1827ffff-13d7f9c0a43436d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1824c4ab-13d69a364bd3cb42","8f44c0b1824e899-13d79abfd52f1ca0"]},"geometry":{"type":"LineString","coordinates":[[-83.677558,32.8225312],[-83.67733790000001,32.8225305]]},"id":"8a44c0b1824ffff-13d7da7b0bb53faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1824e899-13d79abfd52f1ca0","8f44c0b1824e530-13d7bb41e2696a44"]},"geometry":{"type":"LineString","coordinates":[[-83.67733790000001,32.8225305],[-83.6771298,32.8225299]]},"id":"8b44c0b1824efff-13d7fb00e2744ea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825d914-13d6dbc0430b2a3c","8f44c0b1824e530-13d7bb41e2696a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6771298,32.8225299],[-83.6769276,32.8225293]]},"id":"8944c0b1827ffff-13d79b811152da2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825d914-13d6dbc0430b2a3c","8f44c0b1825ddae-13d6fc473ea8bd81"]},"geometry":{"type":"LineString","coordinates":[[-83.6769276,32.8225293],[-83.6767117,32.8225287]]},"id":"8a44c0b1825ffff-13d6bc03c9548225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825ddae-13d6fc473ea8bd81","8f44c0b1825c39c-13d69ccf21db87c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6767117,32.8225287],[-83.67649420000001,32.8225281]]},"id":"8a44c0b1825ffff-13d6dc8b288d8b3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1825c39c-13d69ccf21db87c3","8f44c0b18273923-179e9cd144840c58"]},"geometry":{"type":"LineString","coordinates":[[-83.67649420000001,32.8225281],[-83.6762741,32.8225275],[-83.67627920000001,32.8213266],[-83.6763219,32.821209700000004],[-83.67649080000001,32.8210112]]},"id":"8944c0b1827ffff-1396bd4234d97fea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67651740000001,32.820979900000005]},"id":"8f44c0b1827028d-17fefcc0aa45f4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18273923-179e9cd144840c58","8f44c0b1827028d-17fefcc0aa45f4cb"]},"geometry":{"type":"LineString","coordinates":[[-83.67649080000001,32.8210112],[-83.67651740000001,32.820979900000005]]},"id":"8b44c0b18270fff-1796dcc8f476d7fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67667060000001,32.820799900000004]},"id":"8f44c0b18270a05-1797fc60e7c5090d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18270a05-1797fc60e7c5090d","8f44c0b1827028d-17fefcc0aa45f4cb"]},"geometry":{"type":"LineString","coordinates":[[-83.67651740000001,32.820979900000005],[-83.67667060000001,32.820799900000004]]},"id":"8b44c0b18270fff-17d6bc90c9d544e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60000a-17fefea92b604ee8","8f44c0b1d6004c6-179e7f2c70836b97"]},"geometry":{"type":"LineString","coordinates":[[-83.6886329,32.813632500000004],[-83.6886927,32.8136353],[-83.6887573,32.813612500000005],[-83.688843,32.8136172]]},"id":"8b44c0b1d600fff-17967eeaf361acd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890398,32.813628]},"id":"8f44c0b1d600a08-1797fe2e24bc7825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60000a-17fefea92b604ee8","8f44c0b1d600a08-1797fe2e24bc7825"]},"geometry":{"type":"LineString","coordinates":[[-83.688843,32.8136172],[-83.6890398,32.813628]]},"id":"8b44c0b1d600fff-17967e6baff3f3e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68924080000001,32.813639]},"id":"8f44c0b1d60562b-179e7db082797c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60562b-179e7db082797c9c","8f44c0b1d600a08-1797fe2e24bc7825"]},"geometry":{"type":"LineString","coordinates":[[-83.6890398,32.813628],[-83.68924080000001,32.813639]]},"id":"8a44c0b1d607fff-179efdef555948c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894341,32.813649600000005]},"id":"8f44c0b1d60522b-17977d37b6aa79d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60562b-179e7db082797c9c","8f44c0b1d60522b-17977d37b6aa79d9"]},"geometry":{"type":"LineString","coordinates":[[-83.68924080000001,32.813639],[-83.6894341,32.813649600000005]]},"id":"8b44c0b1d605fff-179ffd741a62d2a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62ad5a-179e7cb8b54ef1b3","8f44c0b1d60522b-17977d37b6aa79d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6894341,32.813649600000005],[-83.6896373,32.8136608]]},"id":"8944c0b1d63ffff-1796fcf8313ca2e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62a95d-17b77c368f8d7d4d","8f44c0b1d62ad5a-179e7cb8b54ef1b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6896373,32.8136608],[-83.6898456,32.8136722]]},"id":"8b44c0b1d62afff-179ffc77aee12e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62854c-17be7bb4e9942799","8f44c0b1d62a95d-17b77c368f8d7d4d"]},"geometry":{"type":"LineString","coordinates":[[-83.6898456,32.8136722],[-83.690053,32.813683600000005]]},"id":"8a44c0b1d62ffff-17b6fbf5b931c725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69025540000001,32.8136947]},"id":"8f44c0b1d628168-17bf7b366128f0a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62854c-17be7bb4e9942799","8f44c0b1d628168-17bf7b366128f0a4"]},"geometry":{"type":"LineString","coordinates":[[-83.690053,32.813683600000005],[-83.69025540000001,32.8136947]]},"id":"8b44c0b1d628fff-17bffb75ad1d8dc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62d792-17bf7abb4dee8ee8","8f44c0b1d628168-17bf7b366128f0a4"]},"geometry":{"type":"LineString","coordinates":[[-83.69025540000001,32.8136947],[-83.69034780000001,32.8136997],[-83.69045240000001,32.8136944]]},"id":"8a44c0b1d62ffff-17b6faf8d802974e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d62d792-17bf7abb4dee8ee8","8f44c0b1d62dac2-17b679dee0113e41"]},"geometry":{"type":"LineString","coordinates":[[-83.69045240000001,32.8136944],[-83.69080500000001,32.813680600000005]]},"id":"8b44c0b1d62dfff-17befa4d1a926365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109389,32.8185184]},"id":"8f44c0b0ac4d05d-13f648b73c0ac1b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109398,32.818425000000005]},"id":"8f44c0b0ac4d173-13bfe8b6a84e0ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d05d-13f648b73c0ac1b3","8f44c0b0ac4d173-13bfe8b6a84e0ddc"]},"geometry":{"type":"LineString","coordinates":[[-83.7109389,32.8185184],[-83.7109398,32.818425000000005]]},"id":"8c44c0b0ac4d1ff-13ded8b6ffebdc20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d173-13bfe8b6a84e0ddc","8f44c0b0ac6b65b-17d6d8b58d08cb08"]},"geometry":{"type":"LineString","coordinates":[[-83.7109398,32.818425000000005],[-83.7109416,32.8182345]]},"id":"8b44c0b0ac4dfff-139668b616d0fcc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109435,32.8180325]},"id":"8f44c0b0ac6b080-17d658b4584e1b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6b65b-17d6d8b58d08cb08","8f44c0b0ac6b080-17d658b4584e1b24"]},"geometry":{"type":"LineString","coordinates":[[-83.7109416,32.8182345],[-83.7109435,32.8180325]]},"id":"8944c0b0ac7ffff-179778b4f7977747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6bc20-17d7f8b33bbe9330","8f44c0b0ac6b080-17d658b4584e1b24"]},"geometry":{"type":"LineString","coordinates":[[-83.7109435,32.8180325],[-83.7109453,32.8178459]]},"id":"8b44c0b0ac6bfff-179e48b3c63b947c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6bc20-17d7f8b33bbe9330","8f44c0b0ac684c9-17f758b228ec7f80"]},"geometry":{"type":"LineString","coordinates":[[-83.7109453,32.8178459],[-83.710947,32.8176657]]},"id":"8a44c0b0ac6ffff-179f68b2a8bf9ed0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac684c9-17f758b228ec7f80","8f44c0b0ac6a162-17f6693c4ce76cef"]},"geometry":{"type":"LineString","coordinates":[[-83.710947,32.8176657],[-83.71094760000001,32.817606600000005],[-83.71093160000001,32.8175796],[-83.7107713,32.817575500000004],[-83.71072690000001,32.8175941],[-83.71072600000001,32.8176646]]},"id":"8a44c0b0ac6ffff-17b778f6d7592fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6a162-17f6693c4ce76cef","8f44c0b0ac6a233-17ded93dc9b500f4"]},"geometry":{"type":"LineString","coordinates":[[-83.71072600000001,32.8176646],[-83.71072360000001,32.817837700000005]]},"id":"8b44c0b0ac6afff-1796c93d017eac42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107211,32.8180296]},"id":"8f44c0b0ac4c86d-17d6c93f5592e029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6a233-17ded93dc9b500f4","8f44c0b0ac4c86d-17d6c93f5592e029"]},"geometry":{"type":"LineString","coordinates":[[-83.71072360000001,32.817837700000005],[-83.7107211,32.8180296]]},"id":"8a44c0b0ac6ffff-179ec93e9bcfbb24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107185,32.818223100000004]},"id":"8f44c0b0ac4cac8-17bf7940fd3a366a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4cac8-17bf7940fd3a366a","8f44c0b0ac4c86d-17d6c93f5592e029"]},"geometry":{"type":"LineString","coordinates":[[-83.7107211,32.8180296],[-83.7107185,32.818223100000004]]},"id":"8b44c0b0ac4cfff-1797494024f514e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71071590000001,32.8184228]},"id":"8f44c0b0ac4d423-13be494299e81449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d423-13be494299e81449","8f44c0b0ac4cac8-17bf7940fd3a366a"]},"geometry":{"type":"LineString","coordinates":[[-83.7107185,32.818223100000004],[-83.71071590000001,32.8184228]]},"id":"8a44c0b0ac4ffff-17ffe941cad395ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107146,32.8185171]},"id":"8f44c0b0ac4d7b6-13f779436f56c0ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d7b6-13f779436f56c0ba","8f44c0b0ac4d423-13be494299e81449"]},"geometry":{"type":"LineString","coordinates":[[-83.71071590000001,32.8184228],[-83.7107146,32.8185171]]},"id":"8c44c0b0ac4d5ff-13d7c942fae50a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7053329,32.815169600000004]},"id":"8f44c0b0ac1242a-13df5666ffacc0ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac1242a-13df5666ffacc0ee","8f44c0b0aca181d-13ded6ec4bf3c00b"]},"geometry":{"type":"LineString","coordinates":[[-83.7051196,32.8151693],[-83.7053329,32.815169600000004]]},"id":"8944c0b0acbffff-13def6a991ff9e81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac12153-13df75e4cd36c884","8f44c0b0ac1242a-13df5666ffacc0ee"]},"geometry":{"type":"LineString","coordinates":[[-83.7053329,32.815169600000004],[-83.7055412,32.8151699]]},"id":"8b44c0b0ac12fff-13df7625e8a39200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac12153-13df75e4cd36c884","8f44c0b0ac12b54-13df556bc11ae534"]},"geometry":{"type":"LineString","coordinates":[[-83.7055412,32.8151699],[-83.7057348,32.8151701]]},"id":"8b44c0b0ac12fff-13df55a8492c95de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70594320000001,32.8151704]},"id":"8f44c0b0ac10775-13dfd4e988d9a3df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac10775-13dfd4e988d9a3df","8f44c0b0ac12b54-13df556bc11ae534"]},"geometry":{"type":"LineString","coordinates":[[-83.7057348,32.8151701],[-83.70594320000001,32.8151704]]},"id":"8a44c0b0ac17fff-13df752aa54da084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac10775-13dfd4e988d9a3df","8f44c0b0ac10ace-13dff465c5fd6d2c"]},"geometry":{"type":"LineString","coordinates":[[-83.70594320000001,32.8151704],[-83.70615400000001,32.8151707]]},"id":"8b44c0b0ac10fff-13dff4a7acdf1596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac10ace-13dff465c5fd6d2c","8f44c0b0ac11691-13bef4675cdc9f90"]},"geometry":{"type":"LineString","coordinates":[[-83.70615400000001,32.8151707],[-83.7063535,32.815171],[-83.7063528,32.8155565],[-83.7061515,32.8155562]]},"id":"8a44c0b0ac17fff-13d6d40933367611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059431,32.8155559]},"id":"8f44c0b0ac13068-13be74e99bfae1ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac13068-13be74e99bfae1ff","8f44c0b0ac11691-13bef4675cdc9f90"]},"geometry":{"type":"LineString","coordinates":[[-83.7061515,32.8155562],[-83.7059431,32.8155559]]},"id":"8a44c0b0ac17fff-13bed4a8748348bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac13068-13be74e99bfae1ff","8f44c0b0ac13448-13be556974e9c829"]},"geometry":{"type":"LineString","coordinates":[[-83.7059431,32.8155559],[-83.70573850000001,32.8155556]]},"id":"8b44c0b0ac13fff-13be552983157020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acacba4-13be55e64d680359","8f44c0b0ac13448-13be556974e9c829"]},"geometry":{"type":"LineString","coordinates":[[-83.70573850000001,32.8155556],[-83.7055388,32.8155553]]},"id":"8844c0b0adfffff-13be75a7e576af5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7053321,32.815555100000005]},"id":"8f44c0b0acac184-13bff66778d2d4b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acacba4-13be55e64d680359","8f44c0b0acac184-13bff66778d2d4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7055388,32.8155553],[-83.7053321,32.815555100000005]]},"id":"8b44c0b0acacfff-13be5626dc45ab11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acac591-13bfd6ed19443b0e","8f44c0b0acac184-13bff66778d2d4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7053321,32.815555100000005],[-83.70511830000001,32.8155548]]},"id":"8b44c0b0acacfff-13bff6aa45242a4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67991160000001,32.8169003]},"id":"8f44c0b18acd3ac-1796b477469bdc52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18acd360-179f943a40371af0","8f44c0b18acd3ac-1796b477469bdc52"]},"geometry":{"type":"LineString","coordinates":[[-83.67991160000001,32.8169003],[-83.6798813,32.8169155],[-83.67986020000001,32.8169393],[-83.6798516,32.816968100000004],[-83.67985680000001,32.8169975],[-83.6798749,32.817023],[-83.6799032,32.8170407],[-83.67993750000001,32.817048],[-83.6799725,32.817043600000005],[-83.68000280000001,32.817028400000005],[-83.68002390000001,32.817004600000004],[-83.68003250000001,32.8169758],[-83.6800273,32.8169464],[-83.6800092,32.8169209]]},"id":"8844c0b18bfffff-17beb46756cad1d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18acd360-179f943a40371af0","8f44c0b18acd3ac-1796b477469bdc52"]},"geometry":{"type":"LineString","coordinates":[[-83.6800092,32.8169209],[-83.6799809,32.8169032],[-83.67994660000001,32.8168959],[-83.67991160000001,32.8169003]]},"id":"8c44c0b18acd3ff-1796f457c3163b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19854c48-139771513da1ca84","8f44c0b19876a81-13b770590f28899d"]},"geometry":{"type":"LineString","coordinates":[[-83.6947056,32.8221012],[-83.69451790000001,32.822764],[-83.6944773,32.8228032],[-83.6943085,32.82284]]},"id":"8944c0b1987ffff-13bff0b1d57e20f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19854588-139ef1cf74186979","8f44c0b19854c48-139771513da1ca84"]},"geometry":{"type":"LineString","coordinates":[[-83.6943085,32.82284],[-83.6941065,32.8228841]]},"id":"8b44c0b19854fff-1396f190536f07fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19854588-139ef1cf74186979","8f44c0b19856916-13f772388a00bf48"]},"geometry":{"type":"LineString","coordinates":[[-83.6941065,32.8228841],[-83.6940551,32.8228953],[-83.694001,32.822889],[-83.69393840000001,32.8228181]]},"id":"8a44c0b19857fff-1397f20907a16c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19856916-13f772388a00bf48","8f44c0b198094eb-139f72948e6062c2"]},"geometry":{"type":"LineString","coordinates":[[-83.69393840000001,32.8228181],[-83.6937912,32.822651300000004]]},"id":"8b44c0b19809fff-13d7726686cdaff4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198082d3-13bff2e8ea044c94","8f44c0b198094eb-139f72948e6062c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6937912,32.822651300000004],[-83.6936562,32.8224984]]},"id":"8a44c0b1980ffff-13df72beb99f46ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934732,32.822291]},"id":"8f44c0b19808471-13bff35b42f7d3d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198082d3-13bff2e8ea044c94","8f44c0b19808471-13bff35b42f7d3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6936562,32.8224984],[-83.6934732,32.822291]]},"id":"8b44c0b19808fff-13fef3221b5a2f67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1980e2ec-13de73a4f0d70a00","8f44c0b19808471-13bff35b42f7d3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6934732,32.822291],[-83.69335530000001,32.8221574]]},"id":"8a44c0b1980ffff-139673802cd9ba6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1980e2ec-13de73a4f0d70a00","8f44c0b1980e0cb-139e73e6642d421b"]},"geometry":{"type":"LineString","coordinates":[[-83.69335530000001,32.8221574],[-83.6932506,32.8220387]]},"id":"8b44c0b1980efff-13b773c5b48c76fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1980e541-13d6f4293f3183aa","8f44c0b1980e0cb-139e73e6642d421b"]},"geometry":{"type":"LineString","coordinates":[[-83.6932506,32.8220387],[-83.69314370000001,32.8219176]]},"id":"8b44c0b1980efff-13fe7407d2425043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1980e541-13d6f4293f3183aa","8f44c0b19803275-13f6746e1c108d20"]},"geometry":{"type":"LineString","coordinates":[[-83.69314370000001,32.8219176],[-83.6930335,32.8217927]]},"id":"8944c0b1983ffff-139ff44baea4eb37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6929187,32.8216626]},"id":"8f44c0b19803050-13b774b5d0bf6cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19803275-13f6746e1c108d20","8f44c0b19803050-13b774b5d0bf6cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6930335,32.8217927],[-83.6929187,32.8216626]]},"id":"8b44c0b19803fff-13dff491fa13ea04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6809872,32.8183784]},"id":"8f44c0b19d83cb3-139e91d70c3bd3b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d83cb3-139e91d70c3bd3b8","8f44c0b19d83d02-17feb19c90a82c90"]},"geometry":{"type":"LineString","coordinates":[[-83.6809872,32.8183784],[-83.6809894,32.8184057],[-83.68100390000001,32.8184302],[-83.6810284,32.8184482],[-83.6810592,32.8184569],[-83.68109170000001,32.8184551],[-83.68112090000001,32.818443],[-83.6811423,32.8184224],[-83.6811527,32.818396400000005],[-83.6811505,32.818369100000005],[-83.6811361,32.8183446],[-83.68111160000001,32.8183266],[-83.68108070000001,32.818317900000004]]},"id":"8c44c0b19d83dff-13bed19a0ce50127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d83cb3-139e91d70c3bd3b8","8f44c0b19d83d02-17feb19c90a82c90"]},"geometry":{"type":"LineString","coordinates":[[-83.68108070000001,32.818317900000004],[-83.6810482,32.8183197],[-83.6810191,32.8183318],[-83.68099760000001,32.8183524],[-83.6809872,32.8183784]]},"id":"8c44c0b19d83dff-1396b1bea37878b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686385,32.8134135]},"id":"8f44c0b1d6a0ae6-13fff4a96d63f336"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a86e1-17fed3e06e090c13","8f44c0b1d6a0ae6-13fff4a96d63f336"]},"geometry":{"type":"LineString","coordinates":[[-83.686385,32.8134135],[-83.6863771,32.8143959],[-83.6863414,32.814431500000005],[-83.68634270000001,32.8146338],[-83.68670660000001,32.8146349]]},"id":"8944c0b1d6bffff-17d7e49afa4b6a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a8a60-17b69305c5f95dd6","8f44c0b1d6a86e1-17fed3e06e090c13"]},"geometry":{"type":"LineString","coordinates":[[-83.68670660000001,32.8146349],[-83.68705150000001,32.814636],[-83.6870564,32.8144897]]},"id":"8a44c0b1d6affff-17ffa35406eb1440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a8a60-17b69305c5f95dd6","8f44c0b1d6ad4a2-17b7d31925c1ea78"]},"geometry":{"type":"LineString","coordinates":[[-83.6870564,32.8144897],[-83.68705940000001,32.814400400000004],[-83.687025,32.8143437],[-83.68702540000001,32.814322100000005]]},"id":"8a44c0b1d6affff-17fe930b079cacd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ad4a2-17b7d31925c1ea78","8f44c0b1d6ac221-17dec31774b10d56"]},"geometry":{"type":"LineString","coordinates":[[-83.68702540000001,32.814322100000005],[-83.6870281,32.814154]]},"id":"8a44c0b1d6affff-1796d3185d770353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ac221-17dec31774b10d56","8f44c0b1d6acb93-17fea315da3742be"]},"geometry":{"type":"LineString","coordinates":[[-83.6870281,32.814154],[-83.68703070000001,32.813990600000004]]},"id":"8b44c0b1d6acfff-179fb316a5b34af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ac902-17fe931402796b54","8f44c0b1d6acb93-17fea315da3742be"]},"geometry":{"type":"LineString","coordinates":[[-83.68703070000001,32.813990600000004],[-83.6870336,32.8138153]]},"id":"8b44c0b1d6acfff-17b7e314ec15f832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6120c5-179e83125ee26031","8f44c0b1d6ac902-17fe931402796b54"]},"geometry":{"type":"LineString","coordinates":[[-83.6870336,32.8138153],[-83.6870363,32.8136424]]},"id":"8a44c0b1d617fff-17d69313388f9eb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6a5288-1797a3dacfeca77e","8f44c0b1d6120c5-179e83125ee26031"]},"geometry":{"type":"LineString","coordinates":[[-83.6870363,32.8136424],[-83.6870396,32.8134412],[-83.6867156,32.813449]]},"id":"8844c0b1d7fffff-17bed34f22f244a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938209,32.814337]},"id":"8f44c0b1d2b3c95-17d6f281f9a987c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b0596-17f6f274b2428c19","8f44c0b1d2b3c95-17d6f281f9a987c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6938209,32.814337],[-83.69384210000001,32.8139784]]},"id":"8a44c0b1d2b7fff-17d6f27b5eac5062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936893,32.8133041]},"id":"8f44c0b1d7694e4-13bf72d43a6a285e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b0596-17f6f274b2428c19","8f44c0b1d7694e4-13bf72d43a6a285e"]},"geometry":{"type":"LineString","coordinates":[[-83.69384210000001,32.8139784],[-83.6938757,32.8134105],[-83.6938645,32.8133421],[-83.6938009,32.8133099],[-83.6936893,32.8133041]]},"id":"8844c0b1d3fffff-17ff7274b845b154"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69349480000001,32.813294]},"id":"8f44c0b1d76b8e6-13b6f34dc1e18fb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d76b8e6-13b6f34dc1e18fb2","8f44c0b1d7694e4-13bf72d43a6a285e"]},"geometry":{"type":"LineString","coordinates":[[-83.6936893,32.8133041],[-83.69349480000001,32.813294]]},"id":"8a44c0b1d76ffff-13b7f310f35cf94a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6932821,32.813282900000004]},"id":"8f44c0b1d76bcf0-13bff3d2b27c3402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d76b8e6-13b6f34dc1e18fb2","8f44c0b1d76bcf0-13bff3d2b27c3402"]},"geometry":{"type":"LineString","coordinates":[[-83.69349480000001,32.813294],[-83.6932821,32.813282900000004]]},"id":"8b44c0b1d76bfff-13b77390336f1085"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d76a2f3-13b7f44a97157757","8f44c0b1d76bcf0-13bff3d2b27c3402"]},"geometry":{"type":"LineString","coordinates":[[-83.6932821,32.813282900000004],[-83.69309030000001,32.813273]]},"id":"8a44c0b1d76ffff-13bef40eaa9aeb4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928882,32.8132625]},"id":"8f44c0b1d76a6d6-13b774c8ef84ebab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d76a2f3-13b7f44a97157757","8f44c0b1d76a6d6-13b774c8ef84ebab"]},"geometry":{"type":"LineString","coordinates":[[-83.69309030000001,32.813273],[-83.6928882,32.8132625]]},"id":"8a44c0b1d76ffff-13b67489b954ba66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d741aea-139ef51e4eecd83f","8f44c0b1d76a6d6-13b774c8ef84ebab"]},"geometry":{"type":"LineString","coordinates":[[-83.6928882,32.8132625],[-83.69275160000001,32.8132554]]},"id":"8944c0b1d77ffff-139ef4f39abd6f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d741320-139e754c2afa7f10","8f44c0b1d741aea-139ef51e4eecd83f"]},"geometry":{"type":"LineString","coordinates":[[-83.69275160000001,32.8132554],[-83.6926782,32.8132516]]},"id":"8b44c0b1d741fff-139f75353830badb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d741320-139e754c2afa7f10","8f44c0b1d74ea72-1797f55a7e8dba4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6926782,32.8132516],[-83.6924834,32.813241500000004],[-83.69246650000001,32.8136391],[-83.6926553,32.813647800000005]]},"id":"8944c0b1d77ffff-1796f5adb330078a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928625,32.8136573]},"id":"8f44c0b1d74c75b-1797f4d8f1727a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74c75b-1797f4d8f1727a31","8f44c0b1d74ea72-1797f55a7e8dba4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6926553,32.813647800000005],[-83.6928625,32.8136573]]},"id":"8a44c0b1d74ffff-1796f519b171022f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141304,32.8221367]},"id":"8f44c0b0a1424ac-13df70ec8ba17acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a142014-13ded06e7fc60a41","8f44c0b0a1424ac-13df70ec8ba17acd"]},"geometry":{"type":"LineString","coordinates":[[-83.71433210000001,32.8221385],[-83.7141304,32.8221367]]},"id":"8b44c0b0a142fff-13de40ad76d8bce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1424ac-13df70ec8ba17acd","8f44c0b0a142496-13df5111752b5651"]},"geometry":{"type":"LineString","coordinates":[[-83.7141304,32.8221367],[-83.7140713,32.8221361]]},"id":"8d44c0b0a1424bf-13df40ff0f7f6512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a142496-13df5111752b5651","8f44c0b0a151c63-13dfe1995df8daf9"]},"geometry":{"type":"LineString","coordinates":[[-83.7140713,32.8221361],[-83.7138539,32.8221342]]},"id":"8b44c0b0a151fff-13dec1556ab1bf40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a151c63-13dfe1995df8daf9","8f44c0b0a150242-13def21aa1065e66"]},"geometry":{"type":"LineString","coordinates":[[-83.7138539,32.8221342],[-83.71364700000001,32.8221323]]},"id":"8a44c0b0a157fff-13df51da0f105794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a153986-13df72984e6464c6","8f44c0b0a150242-13def21aa1065e66"]},"geometry":{"type":"LineString","coordinates":[[-83.71364700000001,32.8221323],[-83.71353520000001,32.8221313],[-83.713446,32.8221683]]},"id":"8a44c0b0a157fff-13dfd25abfa45175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a153986-13df72984e6464c6","8f44c0b0a153c82-13fee31ab23909a6"]},"geometry":{"type":"LineString","coordinates":[[-83.713446,32.8221683],[-83.713323,32.8222195],[-83.7132373,32.8222186]]},"id":"8b44c0b0a153fff-13f752d831983b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7130458,32.822216600000004]},"id":"8f44c0b0a15229c-13ff63926eae8495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a153c82-13fee31ab23909a6","8f44c0b0a15229c-13ff63926eae8495"]},"geometry":{"type":"LineString","coordinates":[[-83.7132373,32.8222186],[-83.7130458,32.822216600000004]]},"id":"8a44c0b0a157fff-13fe43569d96db6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128251,32.8222144]},"id":"8f44c0b0a021a6b-13fe441c5f316d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15229c-13ff63926eae8495","8f44c0b0a021a6b-13fe441c5f316d38"]},"geometry":{"type":"LineString","coordinates":[[-83.7130458,32.822216600000004],[-83.7128251,32.8222144]]},"id":"8944c0b0a03ffff-13fef3d76d1283d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7126241,32.822212300000004]},"id":"8f44c0b0a021048-13fef499fa1629a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a021048-13fef499fa1629a5","8f44c0b0a021a6b-13fe441c5f316d38"]},"geometry":{"type":"LineString","coordinates":[[-83.7128251,32.8222144],[-83.7126241,32.822212300000004]]},"id":"8b44c0b0a021fff-13ff645b25edb1ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a021048-13fef499fa1629a5","8f44c0b0a0217a0-13ff7519b26e36fe"]},"geometry":{"type":"LineString","coordinates":[[-83.7126241,32.822212300000004],[-83.71241970000001,32.8222103]]},"id":"8b44c0b0a021fff-13fe54d9d8a99e09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0217a0-13ff7519b26e36fe","8f44c0b0a023b86-13fe659954525aed"]},"geometry":{"type":"LineString","coordinates":[[-83.71241970000001,32.8222103],[-83.7122155,32.8222082]]},"id":"8a44c0b0a027fff-13fed559868e9546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a023b86-13fe659954525aed","8f44c0b0a1424ac-13df70ec8ba17acd"]},"geometry":{"type":"LineString","coordinates":[[-83.7122155,32.8222082],[-83.7122192,32.8231562],[-83.71413650000001,32.8231562],[-83.7141304,32.8221367]]},"id":"8844c0b0a1fffff-13bec335ae173bb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6810251,32.819255500000004]},"id":"8f44c0b19d99804-13d6b1bf571a6c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d998d5-13f7b1d9a1fb269b","8f44c0b19d99804-13d6b1bf571a6c68"]},"geometry":{"type":"LineString","coordinates":[[-83.6810251,32.819255500000004],[-83.68100000000001,32.819273800000005],[-83.68098520000001,32.8192989],[-83.68098300000001,32.819313900000004]]},"id":"8c44c0b19d999ff-13d6f1cf9e3872c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19d998d5-13f7b1d9a1fb269b","8f44c0b19d99804-13d6b1bf571a6c68"]},"geometry":{"type":"LineString","coordinates":[[-83.68098300000001,32.819313900000004],[-83.68098280000001,32.8193268],[-83.6809934,32.8193533],[-83.6810152,32.8193744],[-83.68104500000001,32.819386900000005],[-83.6810782,32.8193888],[-83.6811098,32.81938],[-83.6811349,32.8193616],[-83.6811497,32.8193366],[-83.68115200000001,32.8193087],[-83.68114150000001,32.8192822],[-83.68111970000001,32.8192611],[-83.6810899,32.8192486],[-83.6810567,32.8192466],[-83.6810251,32.819255500000004]]},"id":"8a44c0b19d9ffff-13ffb19d24e42909"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632682,32.8103709]},"id":"8f44c0b18550063-1797fd1965ff3327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18550063-1797fd1965ff3327","8f44c0b18550aaa-1796bcebbafd5005"]},"geometry":{"type":"LineString","coordinates":[[-83.6632682,32.8103709],[-83.6633413,32.810372]]},"id":"8b44c0b18550fff-1796bd0281fff337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18542c32-179ebb76f57d20a2","8f44c0b18550aaa-1796bcebbafd5005"]},"geometry":{"type":"LineString","coordinates":[[-83.6633413,32.810372],[-83.6639377,32.8103811]]},"id":"8944c0b1857ffff-1797fc315b6e4749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18542c32-179ebb76f57d20a2","8f44c0b18542096-179fbb78a795e769"]},"geometry":{"type":"LineString","coordinates":[[-83.6639377,32.8103811],[-83.66393500000001,32.810562600000004]]},"id":"8b44c0b18542fff-17d6fb77df2bee93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854261d-17f7fb7a14c29eaf","8f44c0b18542096-179fbb78a795e769"]},"geometry":{"type":"LineString","coordinates":[[-83.66393500000001,32.810562600000004],[-83.6639327,32.8107135]]},"id":"8b44c0b18542fff-17befb795c4332d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854261d-17f7fb7a14c29eaf","8f44c0b1855c890-17d7bb7b7882e759"]},"geometry":{"type":"LineString","coordinates":[[-83.6639327,32.8107135],[-83.6639305,32.8108659]]},"id":"8944c0b1857ffff-1797bb7acf977e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855c008-17b7bb7cd54e95b2","8f44c0b1855c890-17d7bb7b7882e759"]},"geometry":{"type":"LineString","coordinates":[[-83.6639305,32.8108659],[-83.66392830000001,32.811013800000005]]},"id":"8b44c0b1855cfff-17f7fb7c2c00bf6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855c282-17fefb7e3226bcbf","8f44c0b1855c008-17b7bb7cd54e95b2"]},"geometry":{"type":"LineString","coordinates":[[-83.66392830000001,32.811013800000005],[-83.66392610000001,32.811159]]},"id":"8b44c0b1855cfff-17d7bb7d894df0e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66392420000001,32.811289200000004]},"id":"8f44c0b1855882b-17dffb7f68f006df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855c282-17fefb7e3226bcbf","8f44c0b1855882b-17dffb7f68f006df"]},"geometry":{"type":"LineString","coordinates":[[-83.66392610000001,32.811159],[-83.66392420000001,32.811289200000004]]},"id":"8a44c0b1855ffff-17b7bb7ec3163b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639215,32.811442500000005]},"id":"8f44c0b18558a84-17bfbb8110dcaf39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855882b-17dffb7f68f006df","8f44c0b18558a84-17bfbb8110dcaf39"]},"geometry":{"type":"LineString","coordinates":[[-83.66392420000001,32.811289200000004],[-83.6639215,32.811442500000005]]},"id":"8b44c0b18558fff-17ffbb804aad31d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663921,32.8114669]},"id":"8f44c0b18558a8e-17befb8161124dec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558a8e-17befb8161124dec","8f44c0b18558a84-17bfbb8110dcaf39"]},"geometry":{"type":"LineString","coordinates":[[-83.6639215,32.811442500000005],[-83.663921,32.8114669]]},"id":"8d44c0b18558abf-17b7bb814b0b61c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639184,32.8116161]},"id":"8f44c0b18558255-179ebb830cc08988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558255-179ebb830cc08988","8f44c0b18558a8e-17befb8161124dec"]},"geometry":{"type":"LineString","coordinates":[[-83.663921,32.8114669],[-83.6639184,32.8116161]]},"id":"8b44c0b18558fff-17fffb823471bb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558255-179ebb830cc08988","8f44c0b18558258-17befb8351b7eebd"]},"geometry":{"type":"LineString","coordinates":[[-83.6639184,32.8116161],[-83.6639179,32.8116429]]},"id":"8d44c0b1855827f-17b6fb8337c9605a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639155,32.8117788]},"id":"8f44c0b1855948b-1397fb84d0ba54fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855948b-1397fb84d0ba54fc","8f44c0b18558258-17befb8351b7eebd"]},"geometry":{"type":"LineString","coordinates":[[-83.6639179,32.8116429],[-83.6639155,32.8117788]]},"id":"8b44c0b18559fff-17d7fb841c97f2ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639122,32.8119627]},"id":"8f44c0b18466da3-13f6bb86e74f2cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855948b-1397fb84d0ba54fc","8f44c0b18466da3-13f6bb86e74f2cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6639155,32.8117788],[-83.6639122,32.8119627]]},"id":"8a44c0b1855ffff-13bffb85efab79d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639092,32.812130100000005]},"id":"8f44c0b18466571-13dffb88c51d70a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18466571-13dffb88c51d70a1","8f44c0b18466da3-13f6bb86e74f2cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6639122,32.8119627],[-83.6639092,32.812130100000005]]},"id":"8944c0b1847ffff-13bfbb87d45177a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66443360000001,32.8121388]},"id":"8f44c0b18464704-13f6fa410c417367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18466571-13dffb88c51d70a1","8f44c0b18464704-13f6fa410c417367"]},"geometry":{"type":"LineString","coordinates":[[-83.6639092,32.812130100000005],[-83.66443360000001,32.8121388]]},"id":"8a44c0b18467fff-13f6bae4ec837f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665379,32.812154500000005]},"id":"8f44c0b180968b1-13feb7f2222f182a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180968b1-13feb7f2222f182a","8f44c0b18464704-13f6fa410c417367"]},"geometry":{"type":"LineString","coordinates":[[-83.66443360000001,32.8121388],[-83.665379,32.812154500000005]]},"id":"8844c0b185fffff-13f7b9199c119cc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71455470000001,32.8224727]},"id":"8f44c0b0a14342b-139f7fe35a7ebff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15c8e6-139fc0705c96b118","8f44c0b0a14342b-139f7fe35a7ebff8"]},"geometry":{"type":"LineString","coordinates":[[-83.7143291,32.822473200000005],[-83.71455470000001,32.8224727]]},"id":"8944c0b0a17ffff-139fe029de79a824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71594660000001,32.8212062]},"id":"8f44c0b0a161990-1797fc7d6b03abc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a14342b-139f7fe35a7ebff8","8f44c0b0a161990-1797fc7d6b03abc0"]},"geometry":{"type":"LineString","coordinates":[[-83.71455470000001,32.8224727],[-83.7152722,32.822471],[-83.7157983,32.8224022],[-83.71633560000001,32.8222551],[-83.7164546,32.8220021],[-83.7164788,32.821289],[-83.7164365,32.8212143],[-83.71594660000001,32.8212062]]},"id":"8744c0b0affffff-1397fca86e8c0cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a161990-1797fc7d6b03abc0","8f44c0b0a161d83-17963ce811a7cfe8"]},"geometry":{"type":"LineString","coordinates":[[-83.71594660000001,32.8212062],[-83.71577590000001,32.8212034]]},"id":"8b44c0b0a161fff-17973cb2bd0ad168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a161d83-17963ce811a7cfe8","8f44c0b0a160398-17963d627cda058a"]},"geometry":{"type":"LineString","coordinates":[[-83.71577590000001,32.8212034],[-83.71558010000001,32.8212001]]},"id":"8a44c0b0a167fff-17973d25452f125b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1606b6-17fffde4591fa4c9","8f44c0b0a160398-17963d627cda058a"]},"geometry":{"type":"LineString","coordinates":[[-83.71558010000001,32.8212001],[-83.7153723,32.8211967]]},"id":"8b44c0b0a160fff-17973da36e7fec4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1606b6-17fffde4591fa4c9","8f44c0b0a16214b-17ffbe6a8a1722e2"]},"geometry":{"type":"LineString","coordinates":[[-83.7153723,32.8211967],[-83.71515760000001,32.8211931]]},"id":"8a44c0b0a167fff-17fefe27621b3e9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71494720000001,32.8214108]},"id":"8f44c0b0a144d66-1797feee074dfbcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16214b-17ffbe6a8a1722e2","8f44c0b0a144d66-1797feee074dfbcd"]},"geometry":{"type":"LineString","coordinates":[[-83.71515760000001,32.8211931],[-83.71495060000001,32.821189700000005],[-83.71494720000001,32.8214108]]},"id":"8944c0b0a17ffff-179ffecd2cb22850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7149419,32.821755700000004]},"id":"8f44c0b0a144748-13df7ef156349d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a144748-13df7ef156349d27","8f44c0b0a144d66-1797feee074dfbcd"]},"geometry":{"type":"LineString","coordinates":[[-83.71494720000001,32.8214108],[-83.7149419,32.821755700000004]]},"id":"8b44c0b0a144fff-17f7beefa8dbb8ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7147367,32.821755200000005]},"id":"8f44c0b0a146a60-13df3f719a6d3366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a144748-13df7ef156349d27","8f44c0b0a146a60-13df3f719a6d3366"]},"geometry":{"type":"LineString","coordinates":[[-83.7149419,32.821755700000004],[-83.7147367,32.821755200000005]]},"id":"8a44c0b0a147fff-13df3f317833941c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a14645c-13de606f6d1a2a48","8f44c0b0a146a60-13df3f719a6d3366"]},"geometry":{"type":"LineString","coordinates":[[-83.7147367,32.821755200000005],[-83.71433060000001,32.8217542]]},"id":"8b44c0b0a146fff-13debff0701ff3b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69181490000001,32.8177502]},"id":"8f44c0b199a58ea-1797f767b5f2cfcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a58ea-1797f767b5f2cfcb","8f44c0b199a5328-1797f7595c9a7b99"]},"geometry":{"type":"LineString","coordinates":[[-83.69181490000001,32.8177502],[-83.69183790000001,32.8179256]]},"id":"8b44c0b199a5fff-17def760819498a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a524b-17de774e343e77cb","8f44c0b199a5328-1797f7595c9a7b99"]},"geometry":{"type":"LineString","coordinates":[[-83.69183790000001,32.8179256],[-83.6918557,32.8180612]]},"id":"8a44c0b199a7fff-17bff753c7b372b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199124c5-17bff7430e495f32","8f44c0b199a524b-17de774e343e77cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6918557,32.8180612],[-83.69187360000001,32.8181978]]},"id":"8c44c0b199125ff-1796f74890d5394c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199124c5-17bff7430e495f32","8f44c0b199acd24-1397f737389d5e85"]},"geometry":{"type":"LineString","coordinates":[[-83.69187360000001,32.8181978],[-83.69189250000001,32.8183421]]},"id":"8944c0b199bffff-17def73d2050c928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69155450000001,32.8185506]},"id":"8f44c0b199ae815-139e780a7dfa55f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae815-139e780a7dfa55f8","8f44c0b199acd24-1397f737389d5e85"]},"geometry":{"type":"LineString","coordinates":[[-83.69189250000001,32.8183421],[-83.6919146,32.8185109],[-83.69155450000001,32.8185506]]},"id":"8944c0b199bffff-13fef77826e07223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae815-139e780a7dfa55f8","8f44c0b199aecf0-139e7888b9992412"]},"geometry":{"type":"LineString","coordinates":[[-83.69155450000001,32.8185506],[-83.69135250000001,32.8185729]]},"id":"8b44c0b199aefff-139778499853332d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911592,32.8082833]},"id":"8f44c0b1d08c71d-17ff79018f2e400c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6912528,32.8082536]},"id":"8f44c0b1d08c0ea-17f6f8c708d283f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08c71d-17ff79018f2e400c","8f44c0b1d08c0ea-17f6f8c708d283f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6911592,32.8082833],[-83.6912528,32.8082536]]},"id":"8b44c0b1d08cfff-17fff8e4404d988d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08c0ea-17f6f8c708d283f1","8f44c0b1d08ca20-17be78476332960c"]},"geometry":{"type":"LineString","coordinates":[[-83.6912528,32.8082536],[-83.691457,32.8081888]]},"id":"8b44c0b1d08cfff-17d6788734c827a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71535490000001,32.8168434]},"id":"8f44c0b0a81e6eb-17df3def33ac5b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8a8652-17d66043414cab5b","8f44c0b0a81e6eb-17df3def33ac5b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.71535490000001,32.8168434],[-83.71491400000001,32.816835600000005],[-83.71440120000001,32.817027800000005]]},"id":"8844c0b0a9fffff-17febf1e1f5566db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8a8652-17d66043414cab5b","8f44c0b0a8ab515-17bfd0cac1b65bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.71440120000001,32.817027800000005],[-83.71435550000001,32.817045],[-83.7142544,32.8171206],[-83.71418440000001,32.817196100000004]]},"id":"8a44c0b0a8affff-1797608b2dc5e5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88ca06-17b7610ecf377aa3","8f44c0b0a8ab515-17bfd0cac1b65bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.71418440000001,32.817196100000004],[-83.71412000000001,32.8172657],[-83.7140756,32.817391]]},"id":"8944c0b0a8bffff-17f6e0f2cf7419bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88ca06-17b7610ecf377aa3","8f44c0b0a88dc92-17b6d11b1a943946"]},"geometry":{"type":"LineString","coordinates":[[-83.7140756,32.817391],[-83.7140559,32.8175661]]},"id":"8a44c0b0a88ffff-17fe6114f42e926b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a88dc92-17b6d11b1a943946","8f44c0b0a88d694-17d6711db8b29a8c"]},"geometry":{"type":"LineString","coordinates":[[-83.7140559,32.8175661],[-83.71405460000001,32.817717200000004],[-83.7140517,32.8178531]]},"id":"8b44c0b0a88dfff-17fec11c1c788529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a889ce1-17d6f1201a59aa72","8f44c0b0a88d694-17d6711db8b29a8c"]},"geometry":{"type":"LineString","coordinates":[[-83.7140517,32.8178531],[-83.71404790000001,32.8180335]]},"id":"8a44c0b0a88ffff-179ed11ee62d3268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a889ce1-17d6f1201a59aa72","8f44c0b0a889700-17bfc12299a5c18f"]},"geometry":{"type":"LineString","coordinates":[[-83.71404790000001,32.8180335],[-83.71404390000001,32.8182168]]},"id":"8b44c0b0a889fff-179641215ee66d32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d699e-13be612514cd7a81","8f44c0b0a889700-17bfc12299a5c18f"]},"geometry":{"type":"LineString","coordinates":[[-83.71404390000001,32.8182168],[-83.7140399,32.8184034]]},"id":"8944c0b0a8fffff-17f7d123db35bb08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d699e-13be612514cd7a81","8f44c0b0a8d6028-139f412754330605"]},"geometry":{"type":"LineString","coordinates":[[-83.7140399,32.8184034],[-83.7140363,32.8185744]]},"id":"8b44c0b0a8d6fff-13f7d12638893120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d6028-139f412754330605","8f44c0b0a8d285c-13f7612c5a45b5d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7140363,32.8185744],[-83.7140361,32.8187142],[-83.71402830000001,32.818926600000005]]},"id":"8a44c0b0a8d7fff-13975128e6624146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d285c-13f7612c5a45b5d3","8f44c0b0a8d3ac9-13b6602dc2b302f0"]},"geometry":{"type":"LineString","coordinates":[[-83.71402830000001,32.818926600000005],[-83.7140164,32.8194375],[-83.7144356,32.8194406]]},"id":"8744c0b0affffff-13df70f6bdac56a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71458240000001,32.8194417]},"id":"8f44c0b0a8d16de-13b73fd20c8b0ad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a8d16de-13b73fd20c8b0ad6","8f44c0b0a8d3ac9-13b6602dc2b302f0"]},"geometry":{"type":"LineString","coordinates":[[-83.7144356,32.8194406],[-83.71458240000001,32.8194417]]},"id":"8a44c0b0a8d7fff-13b6ffffe4a11705"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926883,32.816100500000005]},"id":"8f44c0b1d668391-139ef545dd2719e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199149b1-17d675369f2748e9","8f44c0b1d668391-139ef545dd2719e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6926883,32.816100500000005],[-83.6927945,32.8168583],[-83.6928357,32.8169871],[-83.6929264,32.8171922],[-83.6929236,32.817259],[-83.6928937,32.8173164],[-83.69277860000001,32.8173966],[-83.6927127,32.817414400000004]]},"id":"8744c0b1dffffff-17def50369d9697c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199149b1-17d675369f2748e9","8f44c0b19914ca1-17f7f5a489e6ff7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6927127,32.817414400000004],[-83.6925368,32.817461900000005]]},"id":"8b44c0b19914fff-17d6f56d9ad1084d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19914ca1-17f7f5a489e6ff7b","8f44c0b1d6492cd-179ff5fb3069265c"]},"geometry":{"type":"LineString","coordinates":[[-83.6925368,32.817461900000005],[-83.6924383,32.8174885],[-83.6923981,32.8175262]]},"id":"8a44c0b19917fff-17f775d28299ffaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19916119-17fef675c54cb95e","8f44c0b1d6492cd-179ff5fb3069265c"]},"geometry":{"type":"LineString","coordinates":[[-83.6923981,32.8175262],[-83.6924055,32.8176111],[-83.6923775,32.8176598],[-83.69220200000001,32.817687500000005]]},"id":"8a44c0b19917fff-17d67621099b3dae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19916119-17fef675c54cb95e","8f44c0b1991640d-179776e32b930475"]},"geometry":{"type":"LineString","coordinates":[[-83.69220200000001,32.817687500000005],[-83.6921185,32.8177007],[-83.69202700000001,32.8177235]]},"id":"8b44c0b19916fff-17fef6acba325d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a585c-1797f7527aebe085","8f44c0b1991640d-179776e32b930475"]},"geometry":{"type":"LineString","coordinates":[[-83.69202700000001,32.8177235],[-83.69198940000001,32.8177329],[-83.69184890000001,32.8177469]]},"id":"8844c0b199fffff-179ff71a9944b13e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a58ea-1797f767b5f2cfcb","8f44c0b199a585c-1797f7527aebe085"]},"geometry":{"type":"LineString","coordinates":[[-83.69184890000001,32.8177469],[-83.69181490000001,32.8177502]]},"id":"8c44c0b199a59ff-1796f75d182640b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69119450000001,32.8178119]},"id":"8f44c0b199a0c44-17be78eb7589093b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a58ea-1797f767b5f2cfcb","8f44c0b199a0c44-17be78eb7589093b"]},"geometry":{"type":"LineString","coordinates":[[-83.69181490000001,32.8177502],[-83.69119450000001,32.8178119]]},"id":"8a44c0b199a7fff-17bf782997e9b949"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a29ac-17d6f9cc4db19de8","8f44c0b199a0c44-17be78eb7589093b"]},"geometry":{"type":"LineString","coordinates":[[-83.69119450000001,32.8178119],[-83.6908348,32.8178476]]},"id":"8a44c0b199a7fff-17d7f95beaba043e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7045155,32.8152314]},"id":"8f44c0b0aca3d5c-13fff865de1494ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0aca3d5c-13fff865de1494ec","8f44c0b0aca222b-13fff8f07aabcfe4"]},"geometry":{"type":"LineString","coordinates":[[-83.7045155,32.8152314],[-83.70429370000001,32.8152282]]},"id":"8a44c0b0aca7fff-13fef8ab2688192b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0aca260e-13ffd973517b5764","8f44c0b0aca222b-13fff8f07aabcfe4"]},"geometry":{"type":"LineString","coordinates":[[-83.70429370000001,32.8152282],[-83.7040843,32.8152252]]},"id":"8b44c0b0aca2fff-13fef931ed4df4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0aca260e-13ffd973517b5764","8f44c0b0acb1a11-13d779f81b12bc62"]},"geometry":{"type":"LineString","coordinates":[[-83.7040843,32.8152252],[-83.703935,32.815223100000004],[-83.70387190000001,32.8151926]]},"id":"8944c0b0acbffff-13f7d9b73cff6bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0acb1183-13b75a82c9ee87cb","8f44c0b0acb1a11-13d779f81b12bc62"]},"geometry":{"type":"LineString","coordinates":[[-83.70387190000001,32.8151926],[-83.703755,32.815136100000004],[-83.70365000000001,32.815134400000005]]},"id":"8b44c0b0acb1fff-13bfda3ba89d60a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0acb3969-13b6fb0af4f9d99a","8f44c0b0acb1183-13b75a82c9ee87cb"]},"geometry":{"type":"LineString","coordinates":[[-83.70365000000001,32.815134400000005],[-83.7034321,32.815131]]},"id":"8a44c0b0acb7fff-13b7fac6ddcf0f56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.703175,32.815111200000004]},"id":"8f44c0b0acb3d52-13b6dbaba108a62a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0acb3d52-13b6dbaba108a62a","8f44c0b0acb3969-13b6fb0af4f9d99a"]},"geometry":{"type":"LineString","coordinates":[[-83.7034321,32.815131],[-83.70322850000001,32.8151278],[-83.703175,32.815111200000004]]},"id":"8b44c0b0acb3fff-13bedb5becc6e4aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0acb3d52-13b6dbaba108a62a","8f44c0b0acb2235-1396dc385c228f82"]},"geometry":{"type":"LineString","coordinates":[[-83.703175,32.815111200000004],[-83.7030879,32.8150843],[-83.70294990000001,32.8150828]]},"id":"8a44c0b0acb7fff-1396dbf13795ff77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0acb2235-1396dc385c228f82","8f44c0b0acb2616-13975cc49dc97aeb"]},"geometry":{"type":"LineString","coordinates":[[-83.70294990000001,32.8150828],[-83.7027255,32.8150805]]},"id":"8b44c0b0acb2fff-13965c7e76339da6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d349ab1-139ffd501a3bab6d","8f44c0b0acb2616-13975cc49dc97aeb"]},"geometry":{"type":"LineString","coordinates":[[-83.7027255,32.8150805],[-83.7025023,32.8150782]]},"id":"8944c0b0acbffff-1396fd0a5132a56d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7022791,32.815075900000004]},"id":"8f44c0b1d349092-139e7ddb9db5f577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d349ab1-139ffd501a3bab6d","8f44c0b1d349092-139e7ddb9db5f577"]},"geometry":{"type":"LineString","coordinates":[[-83.7025023,32.8150782],[-83.7022791,32.815075900000004]]},"id":"8b44c0b1d349fff-139f7d95d55667a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d349092-139e7ddb9db5f577","8f44c0b1d34b8e1-139efe83a1556ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.7022791,32.815075900000004],[-83.7020102,32.8150731]]},"id":"8a44c0b1d34ffff-139fde2f9a92a5de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d34bcc2-139f5f0b36ee6432","8f44c0b1d34b8e1-139efe83a1556ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.7020102,32.8150731],[-83.7017933,32.8150709]]},"id":"8b44c0b1d34bfff-139e5ec77f997afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d26492e-139fdf9c13a57ba0","8f44c0b1d34bcc2-139f5f0b36ee6432"]},"geometry":{"type":"LineString","coordinates":[[-83.7017933,32.8150709],[-83.70156150000001,32.8150685]]},"id":"8a44c0b1d34ffff-139edf53a73c4f14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d26492e-139fdf9c13a57ba0","8f44c0b1d264d1c-139e602537e3768b"]},"geometry":{"type":"LineString","coordinates":[[-83.70156150000001,32.8150685],[-83.7013421,32.815066200000004]]},"id":"8944c0b1d37ffff-139f7fe0acdf15de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d264d1c-139e602537e3768b","8f44c0b1d35938c-1396e0b2f974dde0"]},"geometry":{"type":"LineString","coordinates":[[-83.7013421,32.815066200000004],[-83.70111530000001,32.815063800000004]]},"id":"8944c0b1d37ffff-1397e06c1efb3911"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70090180000001,32.8150616]},"id":"8f44c0b1d359799-1397e13864d6986c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d359799-1397e13864d6986c","8f44c0b1d35938c-1396e0b2f974dde0"]},"geometry":{"type":"LineString","coordinates":[[-83.70111530000001,32.815063800000004],[-83.70090180000001,32.8150616]]},"id":"8b44c0b1d359fff-139670f5a316e1d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35bb43-1397615e6b401373","8f44c0b1d359799-1397e13864d6986c"]},"geometry":{"type":"LineString","coordinates":[[-83.70090180000001,32.8150616],[-83.70084100000001,32.815061]]},"id":"8a44c0b1d35ffff-1397714b6330848c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66531810000001,32.8135368]},"id":"8f44c0b1846d458-17deb818395623f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846d6d2-17beb81a267c489f","8f44c0b1846d458-17deb818395623f6"]},"geometry":{"type":"LineString","coordinates":[[-83.665315,32.8136875],[-83.66531810000001,32.8135368]]},"id":"8a44c0b1846ffff-17ffb8193a3a007d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6653218,32.8133585]},"id":"8f44c0b1846dc8e-13dfb815e82786c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846d458-17deb818395623f6","8f44c0b1846dc8e-13dfb815e82786c8"]},"geometry":{"type":"LineString","coordinates":[[-83.66531810000001,32.8135368],[-83.6653218,32.8133585]]},"id":"8b44c0b1846dfff-1796f8171ce15087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6653253,32.8131879]},"id":"8f44c0b1846ca2b-13f6f813b2ec0efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846ca2b-13f6f813b2ec0efd","8f44c0b1846dc8e-13dfb815e82786c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6653218,32.8133585],[-83.6653253,32.8131879]]},"id":"8a44c0b1846ffff-13b7f814c35febcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6653289,32.8130151]},"id":"8f44c0b1809359a-1396f81170ff722d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846ca2b-13f6f813b2ec0efd","8f44c0b1809359a-1396f81170ff722d"]},"geometry":{"type":"LineString","coordinates":[[-83.6653253,32.8131879],[-83.6653289,32.8130151]]},"id":"8844c0b185fffff-13bef8129f7c110c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665323,32.8128412]},"id":"8f44c0b18092318-139ff81523e0f9a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18092318-139ff81523e0f9a0","8f44c0b1809359a-1396f81170ff722d"]},"geometry":{"type":"LineString","coordinates":[[-83.6653289,32.8130151],[-83.6653319,32.8128675],[-83.665323,32.8128412]]},"id":"8a44c0b18097fff-13dfb810dbc935eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66527930000001,32.8126699]},"id":"8f44c0b18092128-13beb8307c09ff94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18092128-13beb8307c09ff94","8f44c0b18092318-139ff81523e0f9a0"]},"geometry":{"type":"LineString","coordinates":[[-83.665323,32.8128412],[-83.66527950000001,32.812711900000004],[-83.66527930000001,32.8126699]]},"id":"8b44c0b18092fff-13f6f825f896cef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66527810000001,32.812493100000005]},"id":"8f44c0b1809665e-13d6b831366e700a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18092128-13beb8307c09ff94","8f44c0b1809665e-13d6b831366e700a"]},"geometry":{"type":"LineString","coordinates":[[-83.66527930000001,32.8126699],[-83.66527810000001,32.812493100000005]]},"id":"8a44c0b18097fff-13f7f830dcfd4380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66532260000001,32.812327800000006]},"id":"8f44c0b180960f6-13def815602fa229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180960f6-13def815602fa229","8f44c0b1809665e-13d6b831366e700a"]},"geometry":{"type":"LineString","coordinates":[[-83.66527810000001,32.812493100000005],[-83.6652777,32.8124188],[-83.66532260000001,32.812327800000006]]},"id":"8b44c0b18096fff-139fb82957622188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180968b1-13feb7f2222f182a","8f44c0b180960f6-13def815602fa229"]},"geometry":{"type":"LineString","coordinates":[[-83.66532260000001,32.812327800000006],[-83.6653759,32.81222],[-83.665379,32.812154500000005]]},"id":"8b44c0b18096fff-13b6b7fe8adac364"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66538750000001,32.8119755]},"id":"8f44c0b18549624-13feb7ecd20355bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b180968b1-13feb7f2222f182a","8f44c0b18549624-13feb7ecd20355bc"]},"geometry":{"type":"LineString","coordinates":[[-83.665379,32.812154500000005],[-83.66538750000001,32.8119755]]},"id":"8944c0b180bffff-13b6b7ef8428a196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66539590000001,32.811799900000004]},"id":"8f44c0b18549cc9-139ef7e791f2110e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18549cc9-139ef7e791f2110e","8f44c0b18549624-13feb7ecd20355bc"]},"geometry":{"type":"LineString","coordinates":[[-83.66538750000001,32.8119755],[-83.66539590000001,32.811799900000004]]},"id":"8b44c0b18549fff-13d7f7ea36dd6fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6654115,32.8116298]},"id":"8f44c0b18549d22-17b6b7ddd042d1d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18549cc9-139ef7e791f2110e","8f44c0b18549d22-17b6b7ddd042d1d7"]},"geometry":{"type":"LineString","coordinates":[[-83.66539590000001,32.811799900000004],[-83.66539920000001,32.8117304],[-83.6654115,32.8116298]]},"id":"8b44c0b18549fff-17dfb7e3a8ce7a61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665423,32.811459]},"id":"8f44c0b1854d452-17bff7d6a461038a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854d452-17bff7d6a461038a","8f44c0b18549d22-17b6b7ddd042d1d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6654115,32.8116298],[-83.66542170000001,32.8115465],[-83.665423,32.811459]]},"id":"8a44c0b1854ffff-17fff7d8d70f82a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854dc9b-17f6f7d5499dd417","8f44c0b1854d452-17bff7d6a461038a"]},"geometry":{"type":"LineString","coordinates":[[-83.665423,32.811459],[-83.6654252,32.811319000000005]]},"id":"8b44c0b1854dfff-179eb7d5f85b40f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6654274,32.8111728]},"id":"8f44c0b1854caee-1797b7d3eff34810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854dc9b-17f6f7d5499dd417","8f44c0b1854caee-1797b7d3eff34810"]},"geometry":{"type":"LineString","coordinates":[[-83.6654252,32.811319000000005],[-83.6654274,32.8111728]]},"id":"8a44c0b1854ffff-17b6b7d4997e8b3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1856b493-179fb7d230fd916c","8f44c0b1854caee-1797b7d3eff34810"]},"geometry":{"type":"LineString","coordinates":[[-83.6654274,32.8111728],[-83.66543010000001,32.8110011]]},"id":"8b44c0b1854cfff-17d7f7d31503f5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664399,32.813663600000005]},"id":"8f44c0b1846a545-179ffa56ab6d02c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66440220000001,32.813520100000005]},"id":"8f44c0b1846ac32-17d6ba54ae8ce7bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846a545-179ffa56ab6d02c6","8f44c0b1846ac32-17d6ba54ae8ce7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.664399,32.813663600000005],[-83.66440220000001,32.813520100000005]]},"id":"8b44c0b1846afff-17fefa55a37e251b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644062,32.813343700000004]},"id":"8f44c0b18445b75-13d7fa522f4214ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18445b75-13d7fa522f4214ac","8f44c0b1846ac32-17d6ba54ae8ce7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.66440220000001,32.813520100000005],[-83.6644062,32.813343700000004]]},"id":"8a44c0b1846ffff-179efa536e4e187c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66441010000001,32.8131756]},"id":"8f44c0b1846e5a4-13fefa4fb3cf79e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18445b75-13d7fa522f4214ac","8f44c0b1846e5a4-13fefa4fb3cf79e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6644062,32.813343700000004],[-83.66441010000001,32.8131756]]},"id":"8b44c0b1846efff-139ffa50e3c9f430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66441400000001,32.8130006]},"id":"8f44c0b18463a89-13fffa4d428d8e46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846e5a4-13fefa4fb3cf79e3","8f44c0b18463a89-13fffa4d428d8e46"]},"geometry":{"type":"LineString","coordinates":[[-83.66441010000001,32.8131756],[-83.66441400000001,32.8130006]]},"id":"8944c0b1847ffff-13b6ba4e79dd5401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66441800000001,32.8128262]},"id":"8f44c0b18463870-1396fa4ac88badb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18463870-1396fa4ac88badb9","8f44c0b18463a89-13fffa4d428d8e46"]},"geometry":{"type":"LineString","coordinates":[[-83.66441400000001,32.8130006],[-83.66441800000001,32.8128262]]},"id":"8b44c0b18463fff-13d6fa4c02aacd85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644218,32.812657800000004]},"id":"8f44c0b184602a2-13b7ba48611c9c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184602a2-13b7ba48611c9c07","8f44c0b18463870-1396fa4ac88badb9"]},"geometry":{"type":"LineString","coordinates":[[-83.66441800000001,32.8128262],[-83.6644218,32.812657800000004]]},"id":"8a44c0b18467fff-13dffa499cb9e63d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644258,32.81248]},"id":"8f44c0b18460156-13beba45e5b478a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184602a2-13b7ba48611c9c07","8f44c0b18460156-13beba45e5b478a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6644218,32.812657800000004],[-83.6644258,32.81248]]},"id":"8b44c0b18460fff-13ffba4720fb5d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644296,32.8123148]},"id":"8f44c0b18460995-13d6fa4388ca3ad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18460995-13d6fa4388ca3ad5","8f44c0b18460156-13beba45e5b478a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6644258,32.81248],[-83.6644296,32.8123148]]},"id":"8b44c0b18460fff-1396fa44b73e6047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18460995-13d6fa4388ca3ad5","8f44c0b18464704-13f6fa410c417367"]},"geometry":{"type":"LineString","coordinates":[[-83.6644296,32.8123148],[-83.66443360000001,32.8121388]]},"id":"8a44c0b18467fff-139ffa424bb9c1b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66443740000001,32.811967200000005]},"id":"8f44c0b18464ce1-13f7ba3ea94c149a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18464704-13f6fa410c417367","8f44c0b18464ce1-13f7ba3ea94c149a"]},"geometry":{"type":"LineString","coordinates":[[-83.66443360000001,32.8121388],[-83.66443740000001,32.811967200000005]]},"id":"8b44c0b18464fff-13bfba3fd07a516a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644416,32.8117863]},"id":"8f44c0b1854a694-1396fa3c0db9a450"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854a694-1396fa3c0db9a450","8f44c0b18464ce1-13f7ba3ea94c149a"]},"geometry":{"type":"LineString","coordinates":[[-83.66443740000001,32.811967200000005],[-83.6644416,32.8117863]]},"id":"8944c0b1857ffff-13bfba3d50f58c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66444530000001,32.811621]},"id":"8f44c0b1854a406-179fba39b6364eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854a406-179fba39b6364eaf","8f44c0b1854a694-1396fa3c0db9a450"]},"geometry":{"type":"LineString","coordinates":[[-83.6644416,32.8117863],[-83.66444530000001,32.811621]]},"id":"8b44c0b1854afff-17d6fa3ad56a6719"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644492,32.8114483]},"id":"8f44c0b1855d36e-17b7ba374dc9153b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854a406-179fba39b6364eaf","8f44c0b1855d36e-17b7ba374dc9153b"]},"geometry":{"type":"LineString","coordinates":[[-83.66444530000001,32.811621],[-83.6644492,32.8114483]]},"id":"8a44c0b1855ffff-17ffba3872074354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644526,32.811299500000004]},"id":"8f44c0b1855da34-17d6ba3524e0dac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855da34-17d6ba3524e0dac1","8f44c0b1855d36e-17b7ba374dc9153b"]},"geometry":{"type":"LineString","coordinates":[[-83.6644492,32.8114483],[-83.6644526,32.811299500000004]]},"id":"8b44c0b1855dfff-1796ba3633358274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855d941-1797ba333782b408","8f44c0b1855da34-17d6ba3524e0dac1"]},"geometry":{"type":"LineString","coordinates":[[-83.6644526,32.811299500000004],[-83.6644557,32.8111635]]},"id":"8b44c0b1855dfff-17bfba342a5eebae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855d941-1797ba333782b408","8f44c0b18543214-17bfba313ea0af5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6644557,32.8111635],[-83.6644589,32.8110224]]},"id":"8944c0b1857ffff-17d7ba323587cf33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18543214-17bfba313ea0af5d","8f44c0b185433ac-1796fa30af721e04"]},"geometry":{"type":"LineString","coordinates":[[-83.6644589,32.8110224],[-83.6644598,32.810982800000005]]},"id":"8c44c0b185433ff-179eba30f8b98a6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185433ac-1796fa30af721e04","8f44c0b18543b88-17dfb9f714d5a65d"]},"geometry":{"type":"LineString","coordinates":[[-83.6644598,32.810982800000005],[-83.66446090000001,32.8109316],[-83.66455160000001,32.8108986],[-83.6645519,32.8108723]]},"id":"8b44c0b18543fff-17fefa17cb61d482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18543955-17f6f9f651c04227","8f44c0b18543b88-17dfb9f714d5a65d"]},"geometry":{"type":"LineString","coordinates":[[-83.6645519,32.8108723],[-83.6645531,32.8107269]]},"id":"8b44c0b18543fff-179ff9f6b0661295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18543955-17f6f9f651c04227","8f44c0b18540383-179eb9f583e8dc2a"]},"geometry":{"type":"LineString","coordinates":[[-83.6645531,32.8107269],[-83.6645544,32.8105697]]},"id":"8a44c0b18547fff-17bfb9f5ea6351c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18540383-179eb9f583e8dc2a","8f44c0b1854012a-179fb9f49ca0aef6"]},"geometry":{"type":"LineString","coordinates":[[-83.6645544,32.8105697],[-83.66455590000001,32.8103897]]},"id":"8b44c0b18540fff-17d7f9f50ed93a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185446e9-17bef9f3b9483a71","8f44c0b1854012a-179fb9f49ca0aef6"]},"geometry":{"type":"LineString","coordinates":[[-83.66455590000001,32.8103897],[-83.6645573,32.8102278]]},"id":"8b44c0b18540fff-17ffb9f4229d885e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18544726-13d7b9f2ea4333f8","8f44c0b185446e9-17bef9f3b9483a71"]},"geometry":{"type":"LineString","coordinates":[[-83.6645573,32.8102278],[-83.6645586,32.8100699]]},"id":"8c44c0b185447ff-1797b9f35cae6795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18544726-13d7b9f2ea4333f8","8f44c0b18544cee-13fff9f2266283d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6645586,32.8100699],[-83.6645598,32.809922900000004]]},"id":"8b44c0b18544fff-13b7f9f288384638"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18571a69-1397b9f14b493086","8f44c0b18544cee-13fff9f2266283d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6645598,32.809922900000004],[-83.66456120000001,32.8097657]]},"id":"8c44c0b18544dff-13deb9f1b6d4250d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185624e2-13b6f9f07009acb6","8f44c0b18571a69-1397b9f14b493086"]},"geometry":{"type":"LineString","coordinates":[[-83.66456120000001,32.8097657],[-83.6645625,32.8096101]]},"id":"8944c0b1857ffff-13f6f9f0d3c1503f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acac755-13b75667a0e28894","8f44c0b0acac184-13bff66778d2d4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.70533180000001,32.81573],[-83.7053321,32.815555100000005]]},"id":"8b44c0b0acacfff-13f6f66781d4853b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac1242a-13df5666ffacc0ee","8f44c0b0acac184-13bff66778d2d4b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7053321,32.815555100000005],[-83.7053329,32.815169600000004]]},"id":"8944c0b0acbffff-13d77667371e0d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69775990000001,32.8201273]},"id":"8f44c0b1996c0a3-17f7f8e41ae9a193"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6972928,32.8198987]},"id":"8f44c0b1996179c-13d6fa080b10ef2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996179c-13d6fa080b10ef2a","8f44c0b1996c0a3-17f7f8e41ae9a193"]},"geometry":{"type":"LineString","coordinates":[[-83.69775990000001,32.8201273],[-83.6972928,32.8198987]]},"id":"8944c0b1997ffff-179e6976100ef579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6969449,32.8197284]},"id":"8f44c0b19963d55-13fe6ae17a957893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996179c-13d6fa080b10ef2a","8f44c0b19963d55-13fe6ae17a957893"]},"geometry":{"type":"LineString","coordinates":[[-83.6972928,32.8198987],[-83.6969449,32.8197284]]},"id":"8a44c0b19967fff-139fea74b73b9cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934172,32.814316600000005]},"id":"8f44c0b1d749a6e-17b7f37e4a2a4ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74dae2-17be7369f02b7ac8","8f44c0b1d749a6e-17b7f37e4a2a4ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.6934172,32.814316600000005],[-83.6934497,32.8138883]]},"id":"8a44c0b1d74ffff-17be73742ca68bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74dae2-17be7369f02b7ac8","8f44c0b1d76b8e6-13b6f34dc1e18fb2"]},"geometry":{"type":"LineString","coordinates":[[-83.6934497,32.8138883],[-83.69349480000001,32.813294]]},"id":"8944c0b1d77ffff-17fef35bd8d9cff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a02595a-17fe54198f78b4f4","8f44c0b0a021a6b-13fe441c5f316d38"]},"geometry":{"type":"LineString","coordinates":[[-83.7128251,32.8222144],[-83.7128296,32.8215713]]},"id":"8a44c0b0a027fff-13b7441af9f437d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128337,32.8210013]},"id":"8f44c0b0a108608-1797d416fda9ab34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a02595a-17fe54198f78b4f4","8f44c0b0a108608-1797d416fda9ab34"]},"geometry":{"type":"LineString","coordinates":[[-83.7128296,32.8215713],[-83.7128337,32.8210013]]},"id":"8844c0b0a1fffff-17b7f4184365692e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71056250000001,32.8201413]},"id":"8f44c0b0a1acba1-17fe59a27cf715f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1122ab-13ffc9a08aac1068","8f44c0b0a1acba1-17fe59a27cf715f3"]},"geometry":{"type":"LineString","coordinates":[[-83.71056250000001,32.8201413],[-83.71056560000001,32.819932]]},"id":"8944c0b0a1bffff-17bef9a18dd62812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7105724,32.819471400000005]},"id":"8f44c0b0a116676-13dfe99c42a489fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1122ab-13ffc9a08aac1068","8f44c0b0a116676-13dfe99c42a489fc"]},"geometry":{"type":"LineString","coordinates":[[-83.71056560000001,32.819932],[-83.7105724,32.819471400000005]]},"id":"8a44c0b0a117fff-13dfd99e65df2a7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60c6b1-17defd58e6d47d01","8f44c0b1d60522b-17977d37b6aa79d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6894341,32.813649600000005],[-83.68938100000001,32.814385200000004]]},"id":"8944c0b1d63ffff-17fefd4855e33017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60c6b1-17defd58e6d47d01","8f44c0b1d60b8b3-17de7d73643666a1"]},"geometry":{"type":"LineString","coordinates":[[-83.68938100000001,32.814385200000004],[-83.6893386,32.8149728]]},"id":"8a44c0b1d60ffff-17967d662927ca93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69219480000001,32.807566300000005]},"id":"8f44c0b1d0ad444-17bef67a4a3cf6c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915093,32.8075265]},"id":"8f44c0b1d0aa924-17b67826b7bc642c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa924-17b67826b7bc642c","8f44c0b1d0ad444-17bef67a4a3cf6c6"]},"geometry":{"type":"LineString","coordinates":[[-83.69219480000001,32.807566300000005],[-83.6915093,32.8075265]]},"id":"8a44c0b1d0affff-17bef750788cc5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907815,32.807484200000005]},"id":"8f44c0b1d0854d3-1797f9ed988c94ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa924-17b67826b7bc642c","8f44c0b1d0854d3-1797f9ed988c94ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6915093,32.8075265],[-83.6907815,32.807484200000005]]},"id":"8944c0b1d0bffff-1796f90a282264df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74898e-17def4dd775e49f7","8f44c0b1d74c75b-1797f4d8f1727a31"]},"geometry":{"type":"LineString","coordinates":[[-83.6928553,32.8137678],[-83.6928625,32.8136573]]},"id":"8a44c0b1d74ffff-17be74db3f422068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74c75b-1797f4d8f1727a31","8f44c0b1d76a6d6-13b774c8ef84ebab"]},"geometry":{"type":"LineString","coordinates":[[-83.6928625,32.8136573],[-83.6928882,32.8132625]]},"id":"8b44c0b1d74cfff-179e74d0e3c5d552"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1590ed-17f6f00a95bc296c","8f44c0b0a14342b-139f7fe35a7ebff8"]},"geometry":{"type":"LineString","coordinates":[[-83.71455470000001,32.8224727],[-83.7144919,32.8234027]]},"id":"8944c0b0a17ffff-13d63ff6f2306159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714484,32.8235197]},"id":"8f44c0b0a15929c-17bfd00f8a44d935"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15929c-17bfd00f8a44d935","8f44c0b0a1590ed-17f6f00a95bc296c"]},"geometry":{"type":"LineString","coordinates":[[-83.7144919,32.8234027],[-83.714484,32.8235197]]},"id":"8b44c0b0a159fff-1797400d156046aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69635790000001,32.8203959]},"id":"8f44c0b199401ad-179f7c505bb47c2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6967942,32.8206164]},"id":"8f44c0b1994198b-17976b3fa38c8e24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199401ad-179f7c505bb47c2d","8f44c0b1994198b-17976b3fa38c8e24"]},"geometry":{"type":"LineString","coordinates":[[-83.69635790000001,32.8203959],[-83.6967942,32.8206164]]},"id":"8a44c0b19947fff-17d66bc808d72063"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996b573-17f779a86022c20a","8f44c0b1994198b-17976b3fa38c8e24"]},"geometry":{"type":"LineString","coordinates":[[-83.6967942,32.8206164],[-83.69744580000001,32.8209457]]},"id":"8944c0b1997ffff-17fe7a740d43d09b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18460995-13d6fa4388ca3ad5","8f44c0b180960f6-13def815602fa229"]},"geometry":{"type":"LineString","coordinates":[[-83.66532260000001,32.812327800000006],[-83.6644296,32.8123148]]},"id":"8844c0b185fffff-13d6f92c722cc4a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18460995-13d6fa4388ca3ad5","8f44c0b1847549d-13d6fd099c897a83"]},"geometry":{"type":"LineString","coordinates":[[-83.6644296,32.8123148],[-83.66329350000001,32.8122983]]},"id":"8944c0b1847ffff-13dfbba68a9bc745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ea676-17bff855a552d45a","8f44c0b1d2ea014-17df783754b89b86"]},"geometry":{"type":"LineString","coordinates":[[-83.6980363,32.8176275],[-83.6979878,32.8177917]]},"id":"8b44c0b1d2eafff-17fee846833e0e1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69786690000001,32.818200700000006]},"id":"8f44c0b1d2cc62c-17bf78a13b439488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2cc62c-17bf78a13b439488","8f44c0b1d2ea676-17bff855a552d45a"]},"geometry":{"type":"LineString","coordinates":[[-83.6979878,32.8177917],[-83.69786690000001,32.818200700000006]]},"id":"8944c0b1d2fffff-17bfe87b61ab8f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18549624-13feb7ecd20355bc","8f44c0b18464ce1-13f7ba3ea94c149a"]},"geometry":{"type":"LineString","coordinates":[[-83.66538750000001,32.8119755],[-83.66443740000001,32.811967200000005]]},"id":"8844c0b185fffff-13feb915c8f58809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18464ce1-13f7ba3ea94c149a","8f44c0b18466da3-13f6bb86e74f2cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.66443740000001,32.811967200000005],[-83.6639122,32.8119627]]},"id":"8844c0b185fffff-13f6bae2c404dd5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6954814,32.819824600000004]},"id":"8f44c0b199734e1-13b66e7429e3200e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1997234e-13b76e83e824b341","8f44c0b199734e1-13b66e7429e3200e"]},"geometry":{"type":"LineString","coordinates":[[-83.6954814,32.819824600000004],[-83.69545620000001,32.8196212]]},"id":"8a44c0b19977fff-13f6fe7c085629da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69534080000001,32.8186915]},"id":"8f44c0b1992bb61-13f67ecc096ec39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1997234e-13b76e83e824b341","8f44c0b1992bb61-13f67ecc096ec39f"]},"geometry":{"type":"LineString","coordinates":[[-83.69545620000001,32.8196212],[-83.69534080000001,32.8186915]]},"id":"8844c0b199fffff-1396eea7f6451658"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854a406-179fba39b6364eaf","8f44c0b18549d22-17b6b7ddd042d1d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6654115,32.8116298],[-83.66444530000001,32.811621]]},"id":"8944c0b1857ffff-17b7f90bc177dae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558255-179ebb830cc08988","8f44c0b1854a406-179fba39b6364eaf"]},"geometry":{"type":"LineString","coordinates":[[-83.66444530000001,32.811621],[-83.6639184,32.8116161]]},"id":"8a44c0b1855ffff-179fbade63495467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60e095-17df7e4c45d07ea9","8f44c0b1d600a08-1797fe2e24bc7825"]},"geometry":{"type":"LineString","coordinates":[[-83.6890398,32.813628],[-83.68899160000001,32.8143607]]},"id":"8944c0b1d63ffff-17fefe3d379786fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60e095-17df7e4c45d07ea9","8f44c0b1d60a00a-17f67e5ea1868a12"]},"geometry":{"type":"LineString","coordinates":[[-83.68899160000001,32.8143607],[-83.6889622,32.814807]]},"id":"8a44c0b1d60ffff-17defe557dde6fb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18092318-139ff81523e0f9a0","8f44c0b18463870-1396fa4ac88badb9"]},"geometry":{"type":"LineString","coordinates":[[-83.665323,32.8128412],[-83.66441800000001,32.8128262]]},"id":"8844c0b185fffff-1397b92ff67a4141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18471780-1396bd0f59976ea6","8f44c0b18463870-1396fa4ac88badb9"]},"geometry":{"type":"LineString","coordinates":[[-83.66441800000001,32.8128262],[-83.6632843,32.812807500000005]]},"id":"8944c0b1847ffff-139ebbad11eaae57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67536100000001,32.818062000000005]},"id":"8f44c0b18224c73-17dedf936d0b2cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18224c73-17dedf936d0b2cb8","8f44c0b183196c6-17d7b0a8e13257ce"]},"geometry":{"type":"LineString","coordinates":[[-83.67536100000001,32.818062000000005],[-83.67491700000001,32.8180531]]},"id":"8944c0b1833ffff-17d6a01e23b6a070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6744997,32.8180448]},"id":"8f44c0b1831b72a-17dea1adb7b90445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b183196c6-17d7b0a8e13257ce","8f44c0b1831b72a-17dea1adb7b90445"]},"geometry":{"type":"LineString","coordinates":[[-83.67491700000001,32.8180531],[-83.6744997,32.8180448]]},"id":"8a44c0b1831ffff-17d6a12b599d1abc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907529,32.8103636]},"id":"8f44c0b1d72eab0-179f79ff7ce3bb6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907944,32.8098727]},"id":"8f44c0b1d72110e-13de79e584d75de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72eab0-179f79ff7ce3bb6a","8f44c0b1d72110e-13de79e584d75de9"]},"geometry":{"type":"LineString","coordinates":[[-83.6907529,32.8103636],[-83.6907944,32.8098727]]},"id":"8944c0b1d73ffff-13f7f9f27b992dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69083900000001,32.8093462]},"id":"8f44c0b1d725c29-139779c9a498d31b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d725c29-139779c9a498d31b","8f44c0b1d72110e-13de79e584d75de9"]},"geometry":{"type":"LineString","coordinates":[[-83.6907944,32.8098727],[-83.69083900000001,32.8093462]]},"id":"8a44c0b1d727fff-13b7f9d799d0b8e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b66cc-17d6f2ee24e01671","8f44c0b1d7694e4-13bf72d43a6a285e"]},"geometry":{"type":"LineString","coordinates":[[-83.6936893,32.8133041],[-83.69364780000001,32.8139338]]},"id":"8844c0b1d3fffff-17fff2e120e80400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69362190000001,32.814327]},"id":"8f44c0b1d2b2293-17be72fe5f2a6a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b66cc-17d6f2ee24e01671","8f44c0b1d2b2293-17be72fe5f2a6a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.69364780000001,32.8139338],[-83.69362190000001,32.814327]]},"id":"8b44c0b1d2b2fff-17bff2f635bacd96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac95060-13bfdbaef690fe9b","8f44c0b0acb3d52-13b6dbaba108a62a"]},"geometry":{"type":"LineString","coordinates":[[-83.7031697,32.815734],[-83.703175,32.815111200000004]]},"id":"8944c0b0acbffff-13f77bad5e07d310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7031743,32.8147589]},"id":"8f44c0b0acb0504-17de5bac120f3e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acb3d52-13b6dbaba108a62a","8f44c0b0acb0504-17de5bac120f3e79"]},"geometry":{"type":"LineString","coordinates":[[-83.703175,32.815111200000004],[-83.7031743,32.8147589]]},"id":"8a44c0b0acb7fff-17b67babe1efb671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60562b-179e7db082797c9c","8f44c0b1d60ea86-17d77dd1638de208"]},"geometry":{"type":"LineString","coordinates":[[-83.68924080000001,32.813639],[-83.6891882,32.814373100000005]]},"id":"8944c0b1d63ffff-17f7fdc0fd305e1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d60bc95-17d77debca7f3b50","8f44c0b1d60ea86-17d77dd1638de208"]},"geometry":{"type":"LineString","coordinates":[[-83.6891882,32.814373100000005],[-83.68914600000001,32.814961600000004]]},"id":"8a44c0b1d60ffff-179f7dde903a4cca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71473800000001,32.8216659]},"id":"8f44c0b0a1444dc-13b73f70cd3f67c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1444dc-13b73f70cd3f67c7","8f44c0b0a146a60-13df3f719a6d3366"]},"geometry":{"type":"LineString","coordinates":[[-83.7147367,32.821755200000005],[-83.71473800000001,32.8216659]]},"id":"8a44c0b0a147fff-13d73f712e68311f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7147418,32.8214081]},"id":"8f44c0b0a171373-17963f6e63fecdb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1444dc-13b73f70cd3f67c7","8f44c0b0a171373-17963f6e63fecdb0"]},"geometry":{"type":"LineString","coordinates":[[-83.71473800000001,32.8216659],[-83.7147418,32.8214081]]},"id":"8944c0b0a17ffff-17d6bf6f92297ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67452610000001,32.8169105]},"id":"8f44c0b18311231-179fb19d32546070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18311231-179fb19d32546070","8f44c0b18311065-17d7f19c0f79bd3c"]},"geometry":{"type":"LineString","coordinates":[[-83.67452610000001,32.8169105],[-83.67452800000001,32.816799700000004]]},"id":"8b44c0b18311fff-17f6f19c9c3dba25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67453350000001,32.816471400000005]},"id":"8f44c0b18315743-13f6a198946aec4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18311065-17d7f19c0f79bd3c","8f44c0b18315743-13f6a198946aec4d"]},"geometry":{"type":"LineString","coordinates":[[-83.67452800000001,32.816799700000004],[-83.67453350000001,32.816471400000005]]},"id":"8a44c0b18317fff-13dfe19a5d7bb957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18460156-13beba45e5b478a0","8f44c0b1809665e-13d6b831366e700a"]},"geometry":{"type":"LineString","coordinates":[[-83.66527810000001,32.812493100000005],[-83.6644258,32.81248]]},"id":"8844c0b185fffff-13beb93b8f8c7d92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18470a53-13bfbd0b7c487b97","8f44c0b18460156-13beba45e5b478a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6644258,32.81248],[-83.6632905,32.8124625]]},"id":"8944c0b1847ffff-13b6bba8a4d469fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6646114,32.8114501]},"id":"8f44c0b1854ad70-17b6f9d1ee005813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854e781-17dfb9d0be4321a2","8f44c0b1854ad70-17b6f9d1ee005813"]},"geometry":{"type":"LineString","coordinates":[[-83.6646114,32.8114501],[-83.6646133,32.8113104]]},"id":"8a44c0b1854ffff-179eb9d15cf7ddf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6646152,32.811165]},"id":"8f44c0b1854e554-1796b9cf8daaa5ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854e781-17dfb9d0be4321a2","8f44c0b1854e554-1796b9cf8daaa5ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6646133,32.8113104],[-83.6646152,32.811165]]},"id":"8b44c0b1854efff-17bfb9d028ab2efe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67418980000001,32.815474800000004]},"id":"8f44c0b18332c8b-1397e26f6a75eebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18330a2d-1396f05af27708e7","8f44c0b18332c8b-1397e26f6a75eebe"]},"geometry":{"type":"LineString","coordinates":[[-83.67418980000001,32.815474800000004],[-83.67504170000001,32.8154927]]},"id":"8a44c0b18337fff-139fe165291ec3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b183356a4-1396e01d48c1e727","8f44c0b18330a2d-1396f05af27708e7"]},"geometry":{"type":"LineString","coordinates":[[-83.67504170000001,32.8154927],[-83.6751404,32.8154948]]},"id":"8a44c0b18337fff-1397a03c1ed80c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac13068-13be74e99bfae1ff","8f44c0b0ac132c8-13bf54e9907bc1ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7059431,32.815742400000005],[-83.7059431,32.8155559]]},"id":"8b44c0b0ac13fff-13f6d4e9931d35c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac10775-13dfd4e988d9a3df","8f44c0b0ac13068-13be74e99bfae1ff"]},"geometry":{"type":"LineString","coordinates":[[-83.7059431,32.8155559],[-83.70594320000001,32.8151704]]},"id":"8a44c0b0ac17fff-13d654e99b775b51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6970177,32.8173693]},"id":"8f44c0b1d2c0436-17b7fab3f72eeac9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6968358,32.8173874]},"id":"8f44c0b1d2c2802-17b76b25a25bcad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c2802-17b76b25a25bcad5","8f44c0b1d2c0436-17b7fab3f72eeac9"]},"geometry":{"type":"LineString","coordinates":[[-83.6970177,32.8173693],[-83.6968358,32.8173874]]},"id":"8a44c0b1d2c7fff-17bfeaecddbdeadf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69593040000001,32.817477700000005]},"id":"8f44c0b1d2d0281-17fffd5b8ccd4084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c2802-17b76b25a25bcad5","8f44c0b1d2d0281-17fffd5b8ccd4084"]},"geometry":{"type":"LineString","coordinates":[[-83.6968358,32.8173874],[-83.69593040000001,32.817477700000005]]},"id":"8944c0b1d2fffff-17df6c409ce1fef7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18092128-13beb8307c09ff94","8f44c0b184602a2-13b7ba48611c9c07"]},"geometry":{"type":"LineString","coordinates":[[-83.66527930000001,32.8126699],[-83.6644218,32.812657800000004]]},"id":"8844c0b185fffff-13bef93c6a2e251f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184602a2-13b7ba48611c9c07","8f44c0b18471528-139fbd0d725aebb1"]},"geometry":{"type":"LineString","coordinates":[[-83.6644218,32.812657800000004],[-83.66328730000001,32.8126417]]},"id":"8944c0b1847ffff-13b6bbaaf3872e74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846ca2b-13f6f813b2ec0efd","8f44c0b1846e5a4-13fefa4fb3cf79e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6653253,32.8131879],[-83.66441010000001,32.8131756]]},"id":"8a44c0b1846ffff-13feb931b621d54a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846e5a4-13fefa4fb3cf79e3","8f44c0b184460ac-13f7bd135402290c"]},"geometry":{"type":"LineString","coordinates":[[-83.66441010000001,32.8131756],[-83.66327790000001,32.8131603]]},"id":"8944c0b1847ffff-13f6bbb188ba9ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69218070000001,32.807729800000004]},"id":"8f44c0b1d0ad689-179f7683151422c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69149660000001,32.807687300000005]},"id":"8f44c0b1d0aa8e9-1796f82ead977027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa8e9-1796f82ead977027","8f44c0b1d0ad689-179f7683151422c1"]},"geometry":{"type":"LineString","coordinates":[[-83.69218070000001,32.807729800000004],[-83.69149660000001,32.807687300000005]]},"id":"8a44c0b1d0affff-1797f758da9077f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910289,32.8076583]},"id":"8f44c0b1d08192e-17f67952f78a0d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa8e9-1796f82ead977027","8f44c0b1d08192e-17f67952f78a0d10"]},"geometry":{"type":"LineString","coordinates":[[-83.69149660000001,32.807687300000005],[-83.6910289,32.8076583]]},"id":"8944c0b1d0bffff-17fff8c0c83adc4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18445b75-13d7fa522f4214ac","8f44c0b1846dc8e-13dfb815e82786c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6653218,32.8133585],[-83.6644062,32.813343700000004]]},"id":"8a44c0b1846ffff-13def934087b4493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18445b75-13d7fa522f4214ac","8f44c0b18446663-13defd1531b31e6f"]},"geometry":{"type":"LineString","coordinates":[[-83.6644062,32.813343700000004],[-83.6632749,32.813325500000005]]},"id":"8944c0b1847ffff-13debbb3b5a0c783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6969014,32.820462500000005]},"id":"8f44c0b1994538e-17b77afcae413c63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996bd74-17967965d86f98a9","8f44c0b1994538e-17b77afcae413c63"]},"geometry":{"type":"LineString","coordinates":[[-83.6975523,32.8207907],[-83.6969014,32.820462500000005]]},"id":"8944c0b1997ffff-179fea31431a16a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6964734,32.820246700000006]},"id":"8f44c0b19940911-17be7c0822df2359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994538e-17b77afcae413c63","8f44c0b19940911-17be7c0822df2359"]},"geometry":{"type":"LineString","coordinates":[[-83.6969014,32.820462500000005],[-83.6964734,32.820246700000006]]},"id":"8a44c0b19947fff-17f7eb826fe90ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69300670000001,32.814295900000005]},"id":"8f44c0b1d749442-17b6f47edcac6183"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d749442-17b6f47edcac6183","8f44c0b1d74d58b-17fff4691bbffb2f"]},"geometry":{"type":"LineString","coordinates":[[-83.69300670000001,32.814295900000005],[-83.6930415,32.8137946]]},"id":"8a44c0b1d74ffff-179e7473feb530ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18549cc9-139ef7e791f2110e","8f44c0b1854a694-1396fa3c0db9a450"]},"geometry":{"type":"LineString","coordinates":[[-83.66539590000001,32.811799900000004],[-83.6644416,32.8117863]]},"id":"8a44c0b1854ffff-139eb911d5bdf08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854a694-1396fa3c0db9a450","8f44c0b1855948b-1397fb84d0ba54fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6644416,32.8117863],[-83.6639155,32.8117788]]},"id":"8944c0b1857ffff-1396bae07d89b615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d359799-1397e13864d6986c","8f44c0b1d35950a-179f713853c26f97"]},"geometry":{"type":"LineString","coordinates":[[-83.70090180000001,32.8150616],[-83.7009019,32.8148915]]},"id":"8b44c0b1d359fff-17d671385a926efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7009019,32.814534]},"id":"8f44c0b1d35d49a-17bfe13857db6576"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d35d49a-17bfe13857db6576","8f44c0b1d35950a-179f713853c26f97"]},"geometry":{"type":"LineString","coordinates":[[-83.7009019,32.8148915],[-83.7009019,32.814534]]},"id":"8a44c0b1d35ffff-17bfe1385e3a61c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a03826-13b6d537225126af","8f44c0b18a1da74-17bef53a5e62d4f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6796046,32.813059700000004],[-83.67959950000001,32.813690300000005]]},"id":"8944c0b18a3ffff-13f7f538cb490b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a1da74-17bef53a5e62d4f3","8f44c0b18a0a525-17b6b540eba45725"]},"geometry":{"type":"LineString","coordinates":[[-83.67959950000001,32.813690300000005],[-83.679589,32.813885]]},"id":"8a44c0b18a0ffff-17ffd53d9bd8c1ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac96299-139ffddf9644a91f","8f44c0b0ac963b6-13d65dded317c45b"]},"geometry":{"type":"LineString","coordinates":[[-83.70227270000001,32.8156863],[-83.70227390000001,32.8155712]]},"id":"8b44c0b0ac96fff-13fe5ddf3c4c9fdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac963b6-13d65dded317c45b","8f44c0b1d349092-139e7ddb9db5f577"]},"geometry":{"type":"LineString","coordinates":[[-83.70227390000001,32.8155712],[-83.7022791,32.815075900000004]]},"id":"8844c0b1d3fffff-13bf5ddd31116a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854e554-1796b9cf8daaa5ce","8f44c0b1854caee-1797b7d3eff34810"]},"geometry":{"type":"LineString","coordinates":[[-83.6654274,32.8111728],[-83.6646152,32.811165]]},"id":"8a44c0b1854ffff-1796b8d1bbc85c7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855d941-1797ba333782b408","8f44c0b1854e554-1796b9cf8daaa5ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6646152,32.811165],[-83.6644557,32.8111635]]},"id":"8944c0b1857ffff-1797ba016d1dbe02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75d6e5-17be7748d322cd33","8f44c0b1d75d095-17d677465e17517e"]},"geometry":{"type":"LineString","coordinates":[[-83.69186830000001,32.8137251],[-83.6918643,32.8138887]]},"id":"8b44c0b1d75dfff-17f777479851742e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6924977,32.813922000000005]},"id":"8f44c0b1d74a865-17bf75bcf78a1995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75d6e5-17be7748d322cd33","8f44c0b1d74a865-17bf75bcf78a1995"]},"geometry":{"type":"LineString","coordinates":[[-83.6918643,32.8138887],[-83.6924977,32.813922000000005]]},"id":"8944c0b1d77ffff-17b6f682e2844a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75d6dd-17d7f75cb8ae9df0","8f44c0b1d759db2-17bef7bb5a6d95be"]},"geometry":{"type":"LineString","coordinates":[[-83.6918325,32.813932],[-83.69168110000001,32.813924]]},"id":"8a44c0b1d75ffff-17d7778c0263a43d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d666195-17b777cdeb049dd8","8f44c0b1d759db2-17bef7bb5a6d95be"]},"geometry":{"type":"LineString","coordinates":[[-83.69168110000001,32.813924],[-83.69165140000001,32.814526900000004]]},"id":"8844c0b1d7fffff-17fef7c497aaf85c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7164755,32.8161067]},"id":"8f44c0b0a800755-1396bb32de2354d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7164096,32.815979500000005]},"id":"8f44c0b0a80054a-13d73b5c03a34092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a800755-1396bb32de2354d3","8f44c0b0a80054a-13d73b5c03a34092"]},"geometry":{"type":"LineString","coordinates":[[-83.7164755,32.8161067],[-83.7164096,32.815979500000005]]},"id":"8b44c0b0a800fff-13fefb476d39adb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71633150000001,32.815828700000004]},"id":"8f44c0b0a80634b-13f6fb8cd3a58324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a80634b-13f6fb8cd3a58324","8f44c0b0a80054a-13d73b5c03a34092"]},"geometry":{"type":"LineString","coordinates":[[-83.7164096,32.815979500000005],[-83.71633150000001,32.815828700000004]]},"id":"8a44c0b0a807fff-13963b746a8545aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940182,32.814347000000005]},"id":"8f44c0b1d2b38b3-17d6f206a26d71dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d282596-13de722af4a6a3f3","8f44c0b1d2b38b3-17d6f206a26d71dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6939601,32.8151718],[-83.6940182,32.814347000000005]]},"id":"8944c0b1d2bffff-17def218d22b7c52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b38b3-17d6f206a26d71dc","8f44c0b1d2b019a-17ff71f87f226676"]},"geometry":{"type":"LineString","coordinates":[[-83.6940182,32.814347000000005],[-83.6940409,32.814024]]},"id":"8a44c0b1d2b7fff-17f7f1ff899919d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aca3d5c-13fff865de1494ec","8f44c0b0ac858ca-13d7f868b9c09d71"]},"geometry":{"type":"LineString","coordinates":[[-83.7045109,32.8157755],[-83.7045155,32.8152314]]},"id":"8944c0b0acbffff-139ff86743bee9f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70451820000001,32.814906]},"id":"8f44c0b0aca0572-17b658642f3fd89d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aca3d5c-13fff865de1494ec","8f44c0b0aca0572-17b658642f3fd89d"]},"geometry":{"type":"LineString","coordinates":[[-83.7045155,32.8152314],[-83.70451820000001,32.814906]]},"id":"8a44c0b0aca7fff-139ff8650f6818fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910565,32.8098848]},"id":"8f44c0b1d0d24c8-13f67941b42a6246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0d20d8-13f6f8dcf70fb6ac","8f44c0b1d0d24c8-13f67941b42a6246"]},"geometry":{"type":"LineString","coordinates":[[-83.69121770000001,32.809892600000005],[-83.6910565,32.8098848]]},"id":"8b44c0b1d0d2fff-13f6790f5fae6a61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72110e-13de79e584d75de9","8f44c0b1d0d24c8-13f67941b42a6246"]},"geometry":{"type":"LineString","coordinates":[[-83.6910565,32.8098848],[-83.6907944,32.8098727]]},"id":"8944c0b1d73ffff-13de799398b5a189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809359a-1396f81170ff722d","8f44c0b18463a89-13fffa4d428d8e46"]},"geometry":{"type":"LineString","coordinates":[[-83.6653289,32.8130151],[-83.66441400000001,32.8130006]]},"id":"8844c0b185fffff-1397f92f584bab5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18446d51-13f6bd115d6c75a3","8f44c0b18463a89-13fffa4d428d8e46"]},"geometry":{"type":"LineString","coordinates":[[-83.66441400000001,32.8130006],[-83.6632811,32.8129827]]},"id":"8944c0b1847ffff-13f7fbaf4b454fe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d676406-17ff7b56e262ce52","8f44c0b1d628168-17bf7b366128f0a4"]},"geometry":{"type":"LineString","coordinates":[[-83.69025540000001,32.8136947],[-83.6902034,32.8144372]]},"id":"8944c0b1d63ffff-17977b46a350c36b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d676406-17ff7b56e262ce52","8f44c0b1d672633-17fffb7064824891"]},"geometry":{"type":"LineString","coordinates":[[-83.6902034,32.8144372],[-83.69016260000001,32.8150205]]},"id":"8a44c0b1d677fff-17b7fb63a55c423b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6973758,32.818141600000004]},"id":"8f44c0b1d2ce56d-179ee9d42af8b6df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2dabb2-13d7fcdc517c7648","8f44c0b1d2ce56d-179ee9d42af8b6df"]},"geometry":{"type":"LineString","coordinates":[[-83.6973758,32.818141600000004],[-83.6963169,32.818316800000005],[-83.6962197,32.8183529],[-83.6961393,32.8184276],[-83.6961339,32.8184415]]},"id":"8944c0b1d2fffff-17d67b641770e8fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69602330000001,32.8186052]},"id":"8f44c0b1d2da392-13be6d217f972759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2dabb2-13d7fcdc517c7648","8f44c0b1d2da392-13be6d217f972759"]},"geometry":{"type":"LineString","coordinates":[[-83.6961339,32.8184415],[-83.6960897,32.8185572],[-83.69602330000001,32.8186052]]},"id":"8b44c0b1d2dafff-13fe7cf7ea20bb2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2da761-13bffd2b29258ef2","8f44c0b1d2da392-13be6d217f972759"]},"geometry":{"type":"LineString","coordinates":[[-83.69602330000001,32.8186052],[-83.6960078,32.818607300000004]]},"id":"8b44c0b1d2dafff-13befd265c347cfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2da6b1-13bf7d91a10ae07c","8f44c0b1d2da761-13bffd2b29258ef2"]},"geometry":{"type":"LineString","coordinates":[[-83.6960078,32.818607300000004],[-83.6958438,32.8186295]]},"id":"8c44c0b1d2da7ff-13b6ed5e6472f9fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19929a88-13de7df9d8ed09d1","8f44c0b1d2da6b1-13bf7d91a10ae07c"]},"geometry":{"type":"LineString","coordinates":[[-83.6958438,32.8186295],[-83.69567710000001,32.8186501]]},"id":"8844c0b199fffff-13d7edc5be2b38a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199290dc-13d77e611e16ad71","8f44c0b19929a88-13de7df9d8ed09d1"]},"geometry":{"type":"LineString","coordinates":[[-83.69567710000001,32.8186501],[-83.6955119,32.8186705]]},"id":"8b44c0b19929fff-13defe2d7b087353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199290dc-13d77e611e16ad71","8f44c0b1992bb61-13f67ecc096ec39f"]},"geometry":{"type":"LineString","coordinates":[[-83.6955119,32.8186705],[-83.69534080000001,32.8186915]]},"id":"8b44c0b19929fff-13dfee9694942330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992bab6-13ffff3a0fd1d7cd","8f44c0b1992bb61-13f67ecc096ec39f"]},"geometry":{"type":"LineString","coordinates":[[-83.69534080000001,32.8186915],[-83.6951648,32.8187133]]},"id":"8c44c0b1992bbff-13ff6f03021de83f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992b724-139e7fa453ef6269","8f44c0b1992bab6-13ffff3a0fd1d7cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6951648,32.8187133],[-83.6951172,32.8187191],[-83.69499470000001,32.8187585]]},"id":"8b44c0b1992bfff-13ffff6fac1bdf94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992b724-139e7fa453ef6269","8f44c0b1990cb51-13bf70122ae7b910"]},"geometry":{"type":"LineString","coordinates":[[-83.69499470000001,32.8187585],[-83.69481900000001,32.818815]]},"id":"8944c0b1993ffff-139fefdb373477ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990c38c-13fff086b8f1ab46","8f44c0b1990cb51-13bf70122ae7b910"]},"geometry":{"type":"LineString","coordinates":[[-83.69481900000001,32.818815],[-83.69468520000001,32.8188205],[-83.69463850000001,32.818856600000004],[-83.69463250000001,32.8189338]]},"id":"8b44c0b1990cfff-13d7f05d2e61f751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990804b-13fff0cb94e36735","8f44c0b1990c38c-13fff086b8f1ab46"]},"geometry":{"type":"LineString","coordinates":[[-83.69463250000001,32.8189338],[-83.6945244,32.819117500000004],[-83.69454400000001,32.8192959],[-83.6945223,32.8193246]]},"id":"8a44c0b1990ffff-13f770b67ab2421b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990804b-13fff0cb94e36735","8f44c0b19908606-139e71352ba9c067"]},"geometry":{"type":"LineString","coordinates":[[-83.6945223,32.8193246],[-83.6945029,32.8193501],[-83.69442620000001,32.8193658],[-83.69435340000001,32.819373500000005]]},"id":"8b44c0b19908fff-139770fd19cd4c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990aa0a-139e71a78d44b285","8f44c0b19908606-139e71352ba9c067"]},"geometry":{"type":"LineString","coordinates":[[-83.69435340000001,32.819373500000005],[-83.6941704,32.8193926]]},"id":"8a44c0b1990ffff-1396716e56c43329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990a0ee-13b6f21bd8a3531d","8f44c0b1990aa0a-139e71a78d44b285"]},"geometry":{"type":"LineString","coordinates":[[-83.6941704,32.8193926],[-83.69398430000001,32.8194121]]},"id":"8b44c0b1990afff-139ef1e1b16e117e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938203,32.820078200000005]},"id":"8f44c0b19820810-17d6f2825e7ae41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1990a0ee-13b6f21bd8a3531d","8f44c0b19820810-17d6f2825e7ae41b"]},"geometry":{"type":"LineString","coordinates":[[-83.69398430000001,32.8194121],[-83.6938708,32.819424000000005],[-83.6938325,32.819475100000005],[-83.6938549,32.8196888],[-83.69385580000001,32.819762700000005],[-83.6938203,32.820078200000005]]},"id":"8844c0b199fffff-13d7726c6b86e503"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6973674,32.8180588]},"id":"8f44c0b1d2cece6-17d6e9d96ca73259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971771,32.8180776]},"id":"8f44c0b1d2c32ce-17f6ea505f937d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2cece6-17d6e9d96ca73259","8f44c0b1d2c32ce-17f6ea505f937d57"]},"geometry":{"type":"LineString","coordinates":[[-83.6973674,32.8180588],[-83.6971771,32.8180776]]},"id":"8944c0b1d2fffff-17deea14e90a6405"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c32ce-17f6ea505f937d57","8f44c0b1d2de466-17dfed266a1efc7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6971771,32.8180776],[-83.69608690000001,32.818185500000006],[-83.69604670000001,32.818176900000005],[-83.69602520000001,32.8181384],[-83.69601540000001,32.8180698]]},"id":"8944c0b1d2fffff-1796ebd2f884b179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2dec81-17977d336131adbb","8f44c0b1d2de466-17dfed266a1efc7b"]},"geometry":{"type":"LineString","coordinates":[[-83.69601540000001,32.8180698],[-83.6959946,32.8179249]]},"id":"8b44c0b1d2defff-17b67d2ce06006b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2dec81-17977d336131adbb","8f44c0b1d2d3ae4-17bfed3fac6e6f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.6959946,32.8179249],[-83.695975,32.817788400000005]]},"id":"8a44c0b1d2d7fff-17de7d39801c4187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d3845-17d7fd4cee95f101","8f44c0b1d2d3ae4-17bfed3fac6e6f4d"]},"geometry":{"type":"LineString","coordinates":[[-83.695975,32.817788400000005],[-83.69595380000001,32.8176409]]},"id":"8b44c0b1d2d3fff-17fffd4649e3710f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0281-17fffd5b8ccd4084","8f44c0b1d2d3845-17d7fd4cee95f101"]},"geometry":{"type":"LineString","coordinates":[[-83.69595380000001,32.8176409],[-83.69593040000001,32.817477700000005]]},"id":"8a44c0b1d2d7fff-179efd543a37cc61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0281-17fffd5b8ccd4084","8f44c0b1d2d0003-17977d6a87b83524"]},"geometry":{"type":"LineString","coordinates":[[-83.69593040000001,32.817477700000005],[-83.6959064,32.8173109]]},"id":"8b44c0b1d2d0fff-17b77d6301a316dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6958243,32.817318300000004]},"id":"8f44c0b1d2d0082-1797fd9dd25f8bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0082-1797fd9dd25f8bfc","8f44c0b1d2d0003-17977d6a87b83524"]},"geometry":{"type":"LineString","coordinates":[[-83.6959064,32.8173109],[-83.6958243,32.817318300000004]]},"id":"8c44c0b1d2d01ff-1797ed843bade9bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0489-1796edfc5f569875","8f44c0b1d2d0082-1797fd9dd25f8bfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6958243,32.817318300000004],[-83.69567310000001,32.817332]]},"id":"8b44c0b1d2d0fff-179e7dcd120f0907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0489-1796edfc5f569875","8f44c0b1d2d28dc-179e7e6979c7de66"]},"geometry":{"type":"LineString","coordinates":[[-83.69567310000001,32.817332],[-83.6954985,32.8173477]]},"id":"8a44c0b1d2d7fff-17977e32e365171a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d2563-17b67ed7f679708d","8f44c0b1d2d28dc-179e7e6979c7de66"]},"geometry":{"type":"LineString","coordinates":[[-83.6954985,32.8173477],[-83.69532170000001,32.8173637]]},"id":"8b44c0b1d2d2fff-179f7ea0b9877185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19921960-1797ef4ecda604db","8f44c0b1d2d2563-17b67ed7f679708d"]},"geometry":{"type":"LineString","coordinates":[[-83.69532170000001,32.8173637],[-83.69522760000001,32.8173722],[-83.69513160000001,32.8173438]]},"id":"8944c0b1993ffff-17b7ef13e8d6f2c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19921960-1797ef4ecda604db","8f44c0b19921d65-179eefbc3f2ddc6f"]},"geometry":{"type":"LineString","coordinates":[[-83.69513160000001,32.8173438],[-83.69502560000001,32.8173125],[-83.6949565,32.8173194]]},"id":"8b44c0b19921fff-179f6f85070c4b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19920369-1797f02bdd5bed7b","8f44c0b19921d65-179eefbc3f2ddc6f"]},"geometry":{"type":"LineString","coordinates":[[-83.6949565,32.8173194],[-83.6947779,32.817337200000004]]},"id":"8c44c0b19921dff-179e7ff409464dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19920369-1797f02bdd5bed7b","8f44c0b19920295-179f70a093db8d6d"]},"geometry":{"type":"LineString","coordinates":[[-83.6947779,32.817337200000004],[-83.69459110000001,32.8173558]]},"id":"8b44c0b19920fff-179ff0663b6d23a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19923d24-17be710cf6546b07","8f44c0b19920295-179f70a093db8d6d"]},"geometry":{"type":"LineString","coordinates":[[-83.69459110000001,32.8173558],[-83.6944177,32.817373]]},"id":"8b44c0b19920fff-17b6f0d6c6bafcac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19923d24-17be710cf6546b07","8f44c0b1992232a-17b7f1829b709e53"]},"geometry":{"type":"LineString","coordinates":[[-83.6944177,32.817373],[-83.6942295,32.8173918]]},"id":"8a44c0b19927fff-17b67147cde91b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992208b-179771f1c739823e","8f44c0b1992232a-17b7f1829b709e53"]},"geometry":{"type":"LineString","coordinates":[[-83.6942295,32.8173918],[-83.694142,32.817400500000005],[-83.69405160000001,32.8173393]]},"id":"8b44c0b19922fff-17bff1bcb8c31db3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1992208b-179771f1c739823e","8f44c0b199358aa-17f6f28fd95a14d2"]},"geometry":{"type":"LineString","coordinates":[[-83.69405160000001,32.8173393],[-83.69388670000001,32.8172276],[-83.69382970000001,32.8168543],[-83.6937987,32.816846000000005]]},"id":"8944c0b1993ffff-1797f25567110c85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19935c8d-17f6f3008b8ae5cd","8f44c0b199358aa-17f6f28fd95a14d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6937987,32.816846000000005],[-83.6937595,32.8168355],[-83.6936184,32.816849500000004]]},"id":"8b44c0b19935fff-17de72c7edcc0b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199342dc-17fff36dc23825c1","8f44c0b19935c8d-17f6f3008b8ae5cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6936184,32.816849500000004],[-83.69344360000001,32.8168669]]},"id":"8a44c0b19937fff-17fe73372684d774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199342dc-17fff36dc23825c1","8f44c0b19930d60-17fef3dd8d24b060"]},"geometry":{"type":"LineString","coordinates":[[-83.69344360000001,32.8168669],[-83.69326480000001,32.8168847]]},"id":"8a44c0b19937fff-17f773a5a44a363f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1ad4b3-17ded9cbb9b7774c","8f44c0b0a11e313-17df67cc6f9b63da"]},"geometry":{"type":"LineString","coordinates":[[-83.71131460000001,32.820501],[-83.7111916,32.8204988],[-83.7104965,32.8204937]]},"id":"8844c0b0a1fffff-17dec8cc0241ca9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918436,32.8187608]},"id":"8f44c0b199ac6e4-139ff755cc73a84c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae620-13bef876ee7be704","8f44c0b199ac6e4-139ff755cc73a84c"]},"geometry":{"type":"LineString","coordinates":[[-83.6918436,32.8187608],[-83.691381,32.818811000000004]]},"id":"8a44c0b199affff-139f77e6569594be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae620-13bef876ee7be704","8f44c0b199853b0-13d779617e098e65"]},"geometry":{"type":"LineString","coordinates":[[-83.691381,32.818811000000004],[-83.6912161,32.8188582],[-83.6910057,32.818879100000004]]},"id":"8944c0b199bffff-13d778eb316a03fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907972,32.818899900000005]},"id":"8f44c0b19980b6c-13f679e3c345ef6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19980b6c-13f679e3c345ef6b","8f44c0b199853b0-13d779617e098e65"]},"geometry":{"type":"LineString","coordinates":[[-83.6910057,32.818879100000004],[-83.6907972,32.818899900000005]]},"id":"8b44c0b19985fff-13dff9a29572870c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac55201-17d64d4760caa814","8f44c0b0ac466f6-1797fcae550d8473"]},"geometry":{"type":"LineString","coordinates":[[-83.70906980000001,32.8174116],[-83.70931470000001,32.817314700000004]]},"id":"8944c0b0ac7ffff-17b64cfae8bf8c94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac46590-17f74cfcb859763d","8f44c0b0ac466f6-1797fcae550d8473"]},"geometry":{"type":"LineString","coordinates":[[-83.70931470000001,32.817314700000004],[-83.7091893,32.8170832]]},"id":"8b44c0b0ac46fff-17bf6cd581d3ede8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091412,32.8169945]},"id":"8f44c0b0ac732a8-17bfdd1ac5520bbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac46590-17f74cfcb859763d","8f44c0b0ac732a8-17bfdd1ac5520bbd"]},"geometry":{"type":"LineString","coordinates":[[-83.7091893,32.8170832],[-83.7091412,32.8169945]]},"id":"8944c0b0ac7ffff-17df5d0bb1891484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099908,32.818020000000004]},"id":"8f44c0b0ac4ed01-17becb07c98eb3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4ed01-17becb07c98eb3cd","8f44c0b0ac4c86d-17d6c93f5592e029"]},"geometry":{"type":"LineString","coordinates":[[-83.7099908,32.818020000000004],[-83.7107211,32.8180296]]},"id":"8944c0b0ac7ffff-17d7ca238051f6c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac6b080-17d658b4584e1b24","8f44c0b0ac4c86d-17d6c93f5592e029"]},"geometry":{"type":"LineString","coordinates":[[-83.7107211,32.8180296],[-83.7109435,32.8180325]]},"id":"8a44c0b0ac6ffff-17d778f9dd803748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a134da8-17ded6c3b3e8ac78","8f44c0b0ac6b080-17d658b4584e1b24"]},"geometry":{"type":"LineString","coordinates":[[-83.7109435,32.8180325],[-83.7117381,32.8180429]]},"id":"8744c0b0affffff-17dfd7bc0ca4b677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846d458-17deb818395623f6","8f44c0b1846ac32-17d6ba54ae8ce7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.66531810000001,32.8135368],[-83.66440220000001,32.813520100000005]]},"id":"8a44c0b1846ffff-17d7f9366595a34d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637031,32.8135526]},"id":"8f44c0b1844005b-17d6fc099e1561c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844005b-17d6fc099e1561c0","8f44c0b1846ac32-17d6ba54ae8ce7bd"]},"geometry":{"type":"LineString","coordinates":[[-83.66440220000001,32.813520100000005],[-83.6638101,32.8135093],[-83.6637031,32.8135526]]},"id":"8944c0b1847ffff-17d6fb3153718f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6956342,32.8197271]},"id":"8f44c0b199731a5-13ff7e14adbc7ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199731a5-13ff7e14adbc7ac0","8f44c0b19973156-13977df185da2f98"]},"geometry":{"type":"LineString","coordinates":[[-83.6956342,32.8197271],[-83.6956904,32.8197655]]},"id":"8c44c0b199731ff-13f77e031b93d3b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957931,32.8198358]},"id":"8f44c0b19973a8c-13bf6db15f6d5d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19973a8c-13bf6db15f6d5d3b","8f44c0b19973156-13977df185da2f98"]},"geometry":{"type":"LineString","coordinates":[[-83.6956904,32.8197655],[-83.6957931,32.8198358]]},"id":"8b44c0b19973fff-13977dd176fff4c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19973a8c-13bf6db15f6d5d3b","8f44c0b19971b5b-13f67c40b15d858b"]},"geometry":{"type":"LineString","coordinates":[[-83.6957931,32.8198358],[-83.69606490000001,32.819514500000004],[-83.6963829,32.8197123]]},"id":"8a44c0b19977fff-13b6fd0597dcd841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6932146,32.8143064]},"id":"8f44c0b1d749045-17bff3fce7442a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d292b42-13bef4211ecbf3e5","8f44c0b1d749045-17bff3fce7442a50"]},"geometry":{"type":"LineString","coordinates":[[-83.6931567,32.815127700000005],[-83.6932146,32.8143064]]},"id":"8944c0b1d2bffff-17be740f0103f844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74d0ad-179f73e868229d13","8f44c0b1d749045-17bff3fce7442a50"]},"geometry":{"type":"LineString","coordinates":[[-83.6932146,32.8143064],[-83.6932474,32.8138418]]},"id":"8a44c0b1d74ffff-179e73f2a835aebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d74d0ad-179f73e868229d13","8f44c0b1d76bcf0-13bff3d2b27c3402"]},"geometry":{"type":"LineString","coordinates":[[-83.6932474,32.8138418],[-83.6932821,32.813282900000004]]},"id":"8944c0b1d77ffff-17de73dd9c37c1f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962439,32.8205431]},"id":"8f44c0b199407aa-17f77c9797232fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199401ad-179f7c505bb47c2d","8f44c0b199407aa-17f77c9797232fad"]},"geometry":{"type":"LineString","coordinates":[[-83.6962439,32.8205431],[-83.69635790000001,32.8203959]]},"id":"8b44c0b19940fff-17bf7c73f0b4ed57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199401ad-179f7c505bb47c2d","8f44c0b19940911-17be7c0822df2359"]},"geometry":{"type":"LineString","coordinates":[[-83.69635790000001,32.8203959],[-83.6964734,32.820246700000006]]},"id":"8b44c0b19940fff-17defc2c4935b818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19963cac-13fe6b1ccf38acf2","8f44c0b19940911-17be7c0822df2359"]},"geometry":{"type":"LineString","coordinates":[[-83.6964734,32.820246700000006],[-83.69685000000001,32.819760200000005]]},"id":"8944c0b1997ffff-17967b927790c61e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18089281-17beb1851c21e82a","8f44c0b1808968d-17b7b1f3e9be3764"]},"geometry":{"type":"LineString","coordinates":[[-83.6680111,32.8143243],[-83.66783380000001,32.8143192]]},"id":"8b44c0b18089fff-17b7b1bc7f40c7a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1808bdaa-179eb30b6606ef56","8f44c0b1808968d-17b7b1f3e9be3764"]},"geometry":{"type":"LineString","coordinates":[[-83.66783380000001,32.8143192],[-83.6673736,32.814306],[-83.6673866,32.814052100000005]]},"id":"8a44c0b1808ffff-1797b2b562844cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6980564,32.8196602]},"id":"8f44c0b0a592b95-13bfe82ac2a94880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a592b95-13bfe82ac2a94880","8f44c0b0a5962eb-13d7e7efa11ec32c"]},"geometry":{"type":"LineString","coordinates":[[-83.6980564,32.8196602],[-83.69815100000001,32.819487800000005]]},"id":"8a44c0b0a597fff-139fe80d39c6d0e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a5962eb-13d7e7efa11ec32c","8f44c0b0a596632-13966877e7c85a06"]},"geometry":{"type":"LineString","coordinates":[[-83.69815100000001,32.819487800000005],[-83.697933,32.8193792]]},"id":"8b44c0b0a596fff-13b7f833c7439c04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19964030-13bfea3e4ebab248","8f44c0b0a596632-13966877e7c85a06"]},"geometry":{"type":"LineString","coordinates":[[-83.697933,32.8193792],[-83.69720600000001,32.8190168]]},"id":"8644c0b1fffffff-139ee95b129db33b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2cc62c-17bf78a13b439488","8f44c0b1d2ceb0b-1796f9153f97d1c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6976813,32.8181615],[-83.69786690000001,32.818200700000006]]},"id":"8a44c0b1d2cffff-17b778db36d61f99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d70a46c-13977c93c42e7fd1","8f44c0b1d709418-13fefac54067f4ff"]},"geometry":{"type":"LineString","coordinates":[[-83.69043640000001,32.8119788],[-83.68976,32.8119451],[-83.6896964,32.811784]]},"id":"8a44c0b1d70ffff-13f7fbc7c81aa204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68954910000001,32.811832200000005]},"id":"8f44c0b1d719b0c-13b77cefd649ba8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d719b0c-13b77cefd649ba8b","8f44c0b1d70a46c-13977c93c42e7fd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6896964,32.811784],[-83.68954910000001,32.811832200000005]]},"id":"8944c0b1d73ffff-13967cc1c364ddd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac0206e-13b67297a7554fba","8f44c0b0ac15b75-17bf7305859890db"]},"geometry":{"type":"LineString","coordinates":[[-83.7068934,32.8153382],[-83.7067557,32.8151674],[-83.7067176,32.8149463]]},"id":"8a44c0b0ac07fff-13bf52de7dfaaa5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7066867,32.8147664]},"id":"8f44c0b0ac332e9-17df5318d62fe262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac332e9-17df5318d62fe262","8f44c0b0ac15b75-17bf7305859890db"]},"geometry":{"type":"LineString","coordinates":[[-83.7067176,32.8149463],[-83.7066867,32.8147664]]},"id":"8944c0b0ac3ffff-1797530f26932e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.697445,32.821496800000006]},"id":"8f44c0b1994d0ce-17bfe9a8e3f11f3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19948963-17f76a5b19a03dd9","8f44c0b1994d0ce-17bfe9a8e3f11f3e"]},"geometry":{"type":"LineString","coordinates":[[-83.697445,32.821496800000006],[-83.6971599,32.8213616]]},"id":"8a44c0b1994ffff-17976a0202f48a29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6968851,32.821254700000004]},"id":"8f44c0b1994ea6c-17b67b06dd811212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19948963-17f76a5b19a03dd9","8f44c0b1994ea6c-17b67b06dd811212"]},"geometry":{"type":"LineString","coordinates":[[-83.6971599,32.8213616],[-83.69707340000001,32.821353300000006],[-83.6968851,32.821254700000004]]},"id":"8a44c0b1994ffff-17defab31ea44103"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854ad70-17b6f9d1ee005813","8f44c0b1854d452-17bff7d6a461038a"]},"geometry":{"type":"LineString","coordinates":[[-83.665423,32.811459],[-83.6646114,32.8114501]]},"id":"8a44c0b1854ffff-17b7b8d446e48d9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1854ad70-17b6f9d1ee005813","8f44c0b1855d36e-17b7ba374dc9153b"]},"geometry":{"type":"LineString","coordinates":[[-83.6646114,32.8114501],[-83.6644492,32.8114483]]},"id":"8944c0b1857ffff-17b7fa0499eece71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558a84-17bfbb8110dcaf39","8f44c0b1855d36e-17b7ba374dc9153b"]},"geometry":{"type":"LineString","coordinates":[[-83.6644492,32.8114483],[-83.6639215,32.811442500000005]]},"id":"8a44c0b1855ffff-17b7fadc3d76ad2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675323,32.8169211]},"id":"8f44c0b18303123-179fbfab2a43fd18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18303123-179fbfab2a43fd18","8f44c0b1831c90c-179ea099cbb69e31"]},"geometry":{"type":"LineString","coordinates":[[-83.675323,32.8169211],[-83.6749412,32.816916]]},"id":"8a44c0b18307fff-179ea02273316b0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18311231-179fb19d32546070","8f44c0b1831c90c-179ea099cbb69e31"]},"geometry":{"type":"LineString","coordinates":[[-83.6749412,32.816916],[-83.67452610000001,32.8169105]]},"id":"8944c0b1833ffff-179ef11b7087b70c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67435610000001,32.8169082]},"id":"8f44c0b18311605-1797a2077d90b281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18311231-179fb19d32546070","8f44c0b18311605-1797a2077d90b281"]},"geometry":{"type":"LineString","coordinates":[[-83.67452610000001,32.8169105],[-83.67435610000001,32.8169082]]},"id":"8b44c0b18311fff-179ee1d253939cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67531500000001,32.816477]},"id":"8f44c0b18300cc1-13febfb02f16c3ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18302d9c-13f7e0fc832d304c","8f44c0b18300cc1-13febfb02f16c3ee"]},"geometry":{"type":"LineString","coordinates":[[-83.67531500000001,32.816477],[-83.67478320000001,32.816473200000004]]},"id":"8a44c0b18307fff-13fef05658adba4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18302d9c-13f7e0fc832d304c","8f44c0b18315743-13f6a198946aec4d"]},"geometry":{"type":"LineString","coordinates":[[-83.67478320000001,32.816473200000004],[-83.67453350000001,32.816471400000005]]},"id":"8b44c0b18315fff-13f7b14a85acb82c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.674367,32.816470200000005]},"id":"8f44c0b18310b4d-13f7e200a980b8d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18315743-13f6a198946aec4d","8f44c0b18310b4d-13f7e200a980b8d2"]},"geometry":{"type":"LineString","coordinates":[[-83.67453350000001,32.816471400000005],[-83.674367,32.816470200000005]]},"id":"8b44c0b18315fff-13f6e1cc9ba143a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72d029-1796f81d0ef495f0","8f44c0b1d72dc30-17b6786e45c51b79"]},"geometry":{"type":"LineString","coordinates":[[-83.69152480000001,32.8105832],[-83.6913892,32.8104724],[-83.69139480000001,32.810397]]},"id":"8b44c0b1d72dfff-17f67853a8fd1e2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72dc30-17b6786e45c51b79","8f44c0b1d0d6a9e-13d6784161d82361"]},"geometry":{"type":"LineString","coordinates":[[-83.69139480000001,32.810397],[-83.6914666,32.809430500000005]]},"id":"8744c0b1dffffff-13f67857d169f250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915527,32.8131621]},"id":"8f44c0b1d75cd2e-13f6780b92847f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75cd2e-13f6780b92847f1d","8f44c0b1d751300-13dff89006e40f46"]},"geometry":{"type":"LineString","coordinates":[[-83.6915527,32.8131621],[-83.6913408,32.8131512]]},"id":"8944c0b1d77ffff-13def84dc327286e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7554c0-13b67903eea66e96","8f44c0b1d751300-13dff89006e40f46"]},"geometry":{"type":"LineString","coordinates":[[-83.6913408,32.8131512],[-83.69115140000001,32.8131414],[-83.6911225,32.8131171],[-83.6911554,32.812678600000005]]},"id":"8a44c0b1d757fff-13f7f8fb391f5aca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69607760000001,32.8151266]},"id":"8f44c0b1d2a88aa-13be6cff884704f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2a8073-139f6d05d323ebf4","8f44c0b1d2a88aa-13be6cff884704f5"]},"geometry":{"type":"LineString","coordinates":[[-83.69606750000001,32.8152818],[-83.69607760000001,32.8151266]]},"id":"8b44c0b1d2a8fff-13deed02a1dc5211"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ac642-17f6ecfa8b757bc9","8f44c0b1d2a88aa-13be6cff884704f5"]},"geometry":{"type":"LineString","coordinates":[[-83.69607760000001,32.8151266],[-83.6960856,32.815003000000004]]},"id":"8a44c0b1d2affff-1397ecfd06cdbaf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2a36c5-17deef2025d8a913","8f44c0b1d2ac642-17f6ecfa8b757bc9"]},"geometry":{"type":"LineString","coordinates":[[-83.6960856,32.815003000000004],[-83.69609650000001,32.8148347],[-83.6952062,32.814791400000004]]},"id":"8944c0b1d2bffff-17f6fdde352b351e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094424,32.8203815]},"id":"8f44c0b0a185031-17967c5e88e82d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a185031-17967c5e88e82d73","8f44c0b0a1a30ca-17b67c1b862670bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7094424,32.8203815],[-83.70951020000001,32.8202851],[-83.70951760000001,32.8200479],[-83.7095496,32.8200483]]},"id":"8944c0b0a1bffff-1797fc37f9309e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1a3ac3-17b7fba7fdbf6e3a","8f44c0b0a1a30ca-17b67c1b862670bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7095496,32.8200483],[-83.70973450000001,32.8200511]]},"id":"8b44c0b0a1a3fff-17b75be1b5b7c2c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68965440000001,32.810301200000005]},"id":"8f44c0b1d70468c-17f67cae0dee7161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68994620000001,32.8103178]},"id":"8f44c0b1d704271-17f6fbf7a27b862a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d704271-17f6fbf7a27b862a","8f44c0b1d70468c-17f67cae0dee7161"]},"geometry":{"type":"LineString","coordinates":[[-83.68965440000001,32.810301200000005],[-83.6895927,32.8111939],[-83.6898891,32.8111947],[-83.68994620000001,32.8103178]]},"id":"8944c0b1d73ffff-17b7fc68c7c7b4f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900143,32.809344100000004]},"id":"8f44c0b1d7260de-13967bcd1e6d638a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7260de-13967bcd1e6d638a","8f44c0b1d704271-17f6fbf7a27b862a"]},"geometry":{"type":"LineString","coordinates":[[-83.68994620000001,32.8103178],[-83.6900143,32.809344100000004]]},"id":"8944c0b1d73ffff-13d67be26b8c546a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6979728,32.819822900000005]},"id":"8f44c0b0a59238a-13b7785f09bf48ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19960775-1396ea9895f15e58","8f44c0b0a59238a-13b7785f09bf48ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6979728,32.819822900000005],[-83.6971712,32.8194195],[-83.6970615,32.819569200000004]]},"id":"8944c0b1997ffff-139ff98a5f601358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19960775-1396ea9895f15e58","8f44c0b19963d55-13fe6ae17a957893"]},"geometry":{"type":"LineString","coordinates":[[-83.6970615,32.819569200000004],[-83.6969449,32.8197284]]},"id":"8a44c0b19967fff-13beeabd0ff856f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19963cac-13fe6b1ccf38acf2","8f44c0b19963d55-13fe6ae17a957893"]},"geometry":{"type":"LineString","coordinates":[[-83.6969449,32.8197284],[-83.69685000000001,32.819760200000005]]},"id":"8c44c0b19963dff-13f67aff1cab064d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b3b5-139671784d63b0a7","8f44c0b1982b761-1397719162c5668a"]},"geometry":{"type":"LineString","coordinates":[[-83.694246,32.8218209],[-83.6942058,32.8218454]]},"id":"8b44c0b1982bfff-139ff184db03063a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982b761-1397719162c5668a","8f44c0b1980ddab-13fef21a5ab21721"]},"geometry":{"type":"LineString","coordinates":[[-83.6942058,32.8218454],[-83.69398670000001,32.8219786]]},"id":"8944c0b1983ffff-13bf71d5e26459fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19808973-13bff29f37516332","8f44c0b1980ddab-13fef21a5ab21721"]},"geometry":{"type":"LineString","coordinates":[[-83.69398670000001,32.8219786],[-83.6937741,32.822108]]},"id":"8a44c0b1980ffff-1397725ccdc1c244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19808973-13bff29f37516332","8f44c0b19808471-13bff35b42f7d3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6937741,32.822108],[-83.6934732,32.822291]]},"id":"8b44c0b19808fff-13f6f2fd39ea3bf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15b132-17df61446d9358ad","8f44c0b0a159455-17de7075cf8d4ece"]},"geometry":{"type":"LineString","coordinates":[[-83.7143204,32.823360300000004],[-83.71398980000001,32.823362200000005]]},"id":"8a44c0b0a15ffff-17ded0dd18b6a173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15a2d9-17de71f981ab4543","8f44c0b0a15b132-17df61446d9358ad"]},"geometry":{"type":"LineString","coordinates":[[-83.71398980000001,32.823362200000005],[-83.7137,32.823363900000004]]},"id":"8a44c0b0a15ffff-17dff19ef66600ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133318,32.8240053]},"id":"8f44c0b0a070081-17df52dfaf29e8fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a15a2d9-17de71f981ab4543","8f44c0b0a070081-17df52dfaf29e8fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7137,32.823363900000004],[-83.7133292,32.8233661],[-83.7133318,32.8240053]]},"id":"8844c0b0a1fffff-17de42b635a7c49e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a144d66-1797feee074dfbcd","8f44c0b0a171373-17963f6e63fecdb0"]},"geometry":{"type":"LineString","coordinates":[[-83.71494720000001,32.8214108],[-83.7147418,32.8214081]]},"id":"8944c0b0a17ffff-1796ff2e3977e3c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1444dc-13b73f70cd3f67c7","8f44c0b0a171373-17963f6e63fecdb0"]},"geometry":{"type":"LineString","coordinates":[[-83.7147418,32.8214081],[-83.7145469,32.8214057],[-83.7145435,32.821665100000004],[-83.71473800000001,32.8216659]]},"id":"8944c0b0a17ffff-17d7ffc4cf13875a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096997,32.8218266]},"id":"8f44c0b0a1895a0-139febbdb211c196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71037240000001,32.8218364]},"id":"8f44c0b0a0320f4-139fca1941c1f29c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0320f4-139fca1941c1f29c","8f44c0b0a1895a0-139febbdb211c196"]},"geometry":{"type":"LineString","coordinates":[[-83.7096997,32.8218266],[-83.70986740000001,32.821829],[-83.71037240000001,32.8218364]]},"id":"8844c0b0a1fffff-139efaeb70b04635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71117380000001,32.8211725]},"id":"8f44c0b0a03486e-17f6d824698d9262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0320f4-139fca1941c1f29c","8f44c0b0a03486e-17f6d824698d9262"]},"geometry":{"type":"LineString","coordinates":[[-83.71037240000001,32.8218364],[-83.7111656,32.821848100000004],[-83.71117380000001,32.8211725]]},"id":"8a44c0b0a037fff-13b648ae377543ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a03486e-17f6d824698d9262","8f44c0b0a11a155-179ef821b7fe5e4d"]},"geometry":{"type":"LineString","coordinates":[[-83.71117380000001,32.8211725],[-83.7111773,32.8208764],[-83.71117810000001,32.8208111]]},"id":"8844c0b0a1fffff-17ffe8231d1e6cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175979,32.815245600000004]},"id":"8f44c0b0a821c4c-13feb8755addd3c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a821c4c-13feb8755addd3c1","8f44c0b0a952c96-1396b7b7c92e3418"]},"geometry":{"type":"LineString","coordinates":[[-83.7179012,32.8150891],[-83.7177927,32.8152124],[-83.717731,32.815231100000005],[-83.7175979,32.815245600000004]]},"id":"8a44c0b0a827fff-13df780d4cb26269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a821c4c-13feb8755addd3c1","8f44c0b0a821669-13bef8764e257b48"]},"geometry":{"type":"LineString","coordinates":[[-83.7175979,32.815245600000004],[-83.7175964,32.815537400000004]]},"id":"8b44c0b0a821fff-13d7b875d2be1f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855e6e2-17debcf52981308f","8f44c0b18558c70-17dfbbebc68ba2ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6637508,32.8112858],[-83.6633262,32.811277600000004]]},"id":"8a44c0b1855ffff-17dfbc707bca6604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1842d0c3-17d7fde864ee414d","8f44c0b1855e6e2-17debcf52981308f"]},"geometry":{"type":"LineString","coordinates":[[-83.6633262,32.811277600000004],[-83.662937,32.81127]]},"id":"8844c0b185fffff-17d6bd6eccc00dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6926384,32.8218315]},"id":"8f44c0b1981ddb1-139ef5650727533b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19803050-13b774b5d0bf6cb3","8f44c0b1981ddb1-139ef5650727533b"]},"geometry":{"type":"LineString","coordinates":[[-83.6926384,32.8218315],[-83.6929187,32.8216626]]},"id":"8944c0b1983ffff-13d7f50d6f4d39fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19805350-179f72fe03a74dcd","8f44c0b19803050-13b774b5d0bf6cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6929187,32.8216626],[-83.69362240000001,32.8212214]]},"id":"8a44c0b19807fff-179f73d9e4895c60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937104,32.8211395]},"id":"8f44c0b19805a50-17de72c70f0e4b01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19805a50-17de72c70f0e4b01","8f44c0b19805350-179f72fe03a74dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.69362240000001,32.8212214],[-83.6937104,32.8211395]]},"id":"8b44c0b19805fff-17f7f2e28efc44bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937104,32.8207225]},"id":"8f44c0b19823330-17d7f2c70f2adfb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19805a50-17de72c70f0e4b01","8f44c0b19823330-17d7f2c70f2adfb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6937104,32.8211395],[-83.6937104,32.8207225]]},"id":"8944c0b1983ffff-17dff2c702de2853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6966884,32.820768300000005]},"id":"8f44c0b199410a1-17f67b81cc002b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199410a1-17f67b81cc002b72","8f44c0b1994cb42-17d6e9ea1c3f6556"]},"geometry":{"type":"LineString","coordinates":[[-83.69734070000001,32.8210986],[-83.6966884,32.820768300000005]]},"id":"8944c0b1997ffff-17df6ab5faf45b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199410a1-17f67b81cc002b72","8f44c0b19940635-17f66c860b4a0d90"]},"geometry":{"type":"LineString","coordinates":[[-83.6966884,32.820768300000005],[-83.69627200000001,32.820557400000006]]},"id":"8a44c0b19947fff-17b67c03e54bd49c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19940635-17f66c860b4a0d90","8f44c0b199407aa-17f77c9797232fad"]},"geometry":{"type":"LineString","coordinates":[[-83.69627200000001,32.820557400000006],[-83.6962439,32.8205431]]},"id":"8c44c0b199407ff-17fffc8ed8a58526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199407aa-17f77c9797232fad","8f44c0b19942871-17bf7d12ce908d18"]},"geometry":{"type":"LineString","coordinates":[[-83.6962439,32.8205431],[-83.6960468,32.8204433]]},"id":"8a44c0b19947fff-17de6cd53676a13a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68231e-17d7c7d30dac903f","8f44c0b1d683dad-17dee765144a4a58"]},"geometry":{"type":"LineString","coordinates":[[-83.6852655,32.8145614],[-83.68508960000001,32.814546]]},"id":"8a44c0b1d687fff-17de979c18cc1e10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68231e-17d7c7d30dac903f","8f44c0b1d682149-179fd7d26de32142"]},"geometry":{"type":"LineString","coordinates":[[-83.68508960000001,32.814546],[-83.68509060000001,32.814453300000004]]},"id":"8b44c0b1d682fff-17b6d7d2bd2f5c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6852896,32.8137546]},"id":"8f44c0b1d6b12ab-17d6a75602f3a484"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6b12ab-17d6a75602f3a484","8f44c0b1d682149-179fd7d26de32142"]},"geometry":{"type":"LineString","coordinates":[[-83.68509060000001,32.814453300000004],[-83.68509800000001,32.8137641],[-83.6852896,32.8137546]]},"id":"8944c0b1d6bffff-1796e7c28b9ea111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199432ed-17bffc5096166d63","8f44c0b19943c31-17df7cc616822872"]},"geometry":{"type":"LineString","coordinates":[[-83.69616950000001,32.8207061],[-83.6960208,32.8209219],[-83.69602830000001,32.820954300000004],[-83.6963575,32.8210907]]},"id":"8b44c0b19943fff-17dffcd567d68d22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69644000000001,32.821125]},"id":"8f44c0b1994e500-17d76c1d0ab8e0a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199432ed-17bffc5096166d63","8f44c0b1994e500-17d76c1d0ab8e0a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6963575,32.8210907],[-83.69644000000001,32.821125]]},"id":"8944c0b1997ffff-17de7c36cf9a05c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903272,32.817067]},"id":"8f44c0b1d65a364-17fefb098c9e22c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65a364-17fefb098c9e22c7","8f44c0b1d65aba2-1797fb1f8b50e510"]},"geometry":{"type":"LineString","coordinates":[[-83.6903272,32.817067],[-83.690292,32.8169017]]},"id":"8b44c0b1d65afff-17b77b1484b37035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d65aba2-1797fb1f8b50e510","8f44c0b1d65160d-13fefb11f89ed004"]},"geometry":{"type":"LineString","coordinates":[[-83.690292,32.8169017],[-83.6898944,32.8165843],[-83.6903137,32.8162445]]},"id":"8944c0b1d67ffff-13b6fb9845a711fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d651b52-13977a56bbb0b5fa","8f44c0b1d65160d-13fefb11f89ed004"]},"geometry":{"type":"LineString","coordinates":[[-83.6903137,32.8162445],[-83.6903362,32.816189900000005],[-83.69061330000001,32.8160887]]},"id":"8b44c0b1d651fff-13bf7abcea75a5b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7160511,32.8159319]},"id":"8f44c0b0a802d4c-13b77c3c10ff51eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a802d4c-13b77c3c10ff51eb","8f44c0b0a815b68-13bebc6db6dffd42"]},"geometry":{"type":"LineString","coordinates":[[-83.7160511,32.8159319],[-83.71597170000001,32.8157674]]},"id":"8a44c0b0a807fff-13f63c54e788d025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a81596c-13dffc9e5cca2a65","8f44c0b0a815b68-13bebc6db6dffd42"]},"geometry":{"type":"LineString","coordinates":[[-83.71597170000001,32.8157674],[-83.71589390000001,32.815606200000005]]},"id":"8a44c0b0a807fff-139e7c860aefa843"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a804444-13d7bb1663d747ad","8f44c0b0a81596c-13dffc9e5cca2a65"]},"geometry":{"type":"LineString","coordinates":[[-83.71589390000001,32.815606200000005],[-83.7164463,32.8154197],[-83.716521,32.8155736]]},"id":"8a44c0b0a807fff-139f7bc54da99e33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71659720000001,32.815730800000004]},"id":"8f44c0b0a804646-13b7fae6ce47cc14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a804444-13d7bb1663d747ad","8f44c0b0a804646-13b7fae6ce47cc14"]},"geometry":{"type":"LineString","coordinates":[[-83.716521,32.8155736],[-83.71659720000001,32.815730800000004]]},"id":"8b44c0b0a804fff-13f6bafe9fb60e96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664792,32.8136729]},"id":"8f44c0b1846ab65-17b7b9610d507188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18468a5b-17b7f8589a200026","8f44c0b1846ab65-17b7b9610d507188"]},"geometry":{"type":"LineString","coordinates":[[-83.66521510000001,32.813683000000005],[-83.664792,32.8136729]]},"id":"8b44c0b18468fff-17b6f8dcca7e3af2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846ab65-17b7b9610d507188","8f44c0b1846a545-179ffa56ab6d02c6"]},"geometry":{"type":"LineString","coordinates":[[-83.664792,32.8136729],[-83.664399,32.813663600000005]]},"id":"8a44c0b1846ffff-179eb9dbda34b9f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846a545-179ffa56ab6d02c6","8f44c0b1844005b-17d6fc099e1561c0"]},"geometry":{"type":"LineString","coordinates":[[-83.664399,32.813663600000005],[-83.6640102,32.8136543],[-83.6637031,32.8135526]]},"id":"8944c0b1847ffff-179fbb32e79b2cce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844005b-17d6fc099e1561c0","8f44c0b18442952-179efcf34f909d60"]},"geometry":{"type":"LineString","coordinates":[[-83.6637031,32.8135526],[-83.6633292,32.8134287]]},"id":"8a44c0b18447fff-17bfbc7e6f2b1052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18466571-13dffb88c51d70a1","8f44c0b1847422a-13d7fd07860684d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6639092,32.812130100000005],[-83.66329680000001,32.8121175]]},"id":"8944c0b1847ffff-13dffc482862c5e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1847422a-13d7fd07860684d7","8f44c0b1855a390-17b6fcf4d03dc820"]},"geometry":{"type":"LineString","coordinates":[[-83.66329680000001,32.8121175],[-83.6633286,32.8119862],[-83.6633267,32.811633400000005]]},"id":"8844c0b185fffff-13bfbcf6d50523d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18558a8e-17befb8161124dec","8f44c0b1855a390-17b6fcf4d03dc820"]},"geometry":{"type":"LineString","coordinates":[[-83.6633267,32.811633400000005],[-83.66332580000001,32.8114605],[-83.663921,32.8114669]]},"id":"8a44c0b1855ffff-17debc653613cbcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a066642-17d6408518b1cd10","8f44c0b0a075308-17d7f141b226e3b6"]},"geometry":{"type":"LineString","coordinates":[[-83.71429590000001,32.823961600000004],[-83.71399410000001,32.8239899]]},"id":"8944c0b0a07ffff-17dee0e36ca25de8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a075308-17d7f141b226e3b6","8f44c0b0a075798-17d651f5c16e3e51"]},"geometry":{"type":"LineString","coordinates":[[-83.71399410000001,32.8239899],[-83.713706,32.8239877]]},"id":"8b44c0b0a075fff-17d7419bc07d11c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a070081-17df52dfaf29e8fd","8f44c0b0a075798-17d651f5c16e3e51"]},"geometry":{"type":"LineString","coordinates":[[-83.713706,32.8239877],[-83.71344040000001,32.8239857],[-83.7133318,32.8240053]]},"id":"8a44c0b0a077fff-17d7526b127b8b4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132507,32.824077100000004]},"id":"8f44c0b0a070785-179e73125bdbced4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a070785-179e73125bdbced4","8f44c0b0a070081-17df52dfaf29e8fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7133318,32.8240053],[-83.7132507,32.824077100000004]]},"id":"8b44c0b0a070fff-17f7c2f90ee34e86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b3c95-17d6f281f9a987c4","8f44c0b1d2b38b3-17d6f206a26d71dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6940182,32.814347000000005],[-83.6938209,32.814337]]},"id":"8b44c0b1d2b3fff-17d7f24445e61dbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b3c95-17d6f281f9a987c4","8f44c0b1d2b2293-17be72fe5f2a6a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6938209,32.814337],[-83.69362190000001,32.814327]]},"id":"8a44c0b1d2b7fff-17bff2c02bd7e03d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2b2293-17be72fe5f2a6a3d","8f44c0b1d749a6e-17b7f37e4a2a4ed2"]},"geometry":{"type":"LineString","coordinates":[[-83.69362190000001,32.814327],[-83.6934172,32.814316600000005]]},"id":"8944c0b1d2bffff-17b7733e5bf7db97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d749a6e-17b7f37e4a2a4ed2","8f44c0b1d749045-17bff3fce7442a50"]},"geometry":{"type":"LineString","coordinates":[[-83.6934172,32.814316600000005],[-83.6932146,32.8143064]]},"id":"8b44c0b1d749fff-17b6f3bd9583b38a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d749442-17b6f47edcac6183","8f44c0b1d749045-17bff3fce7442a50"]},"geometry":{"type":"LineString","coordinates":[[-83.6932146,32.8143064],[-83.69300670000001,32.814295900000005]]},"id":"8b44c0b1d749fff-17be743ddce2649c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809b704-17feb62da2fc13f7","8f44c0b18098011-17bef5b845f3a275"]},"geometry":{"type":"LineString","coordinates":[[-83.6662908,32.8137135],[-83.6662854,32.8141199],[-83.6662225,32.8142075],[-83.666103,32.8142056]]},"id":"8a44c0b1809ffff-17f6f5cc56946f0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1809a8f6-17b6f6adee544942","8f44c0b1809b704-17feb62da2fc13f7"]},"geometry":{"type":"LineString","coordinates":[[-83.666103,32.8142056],[-83.6658913,32.8142021],[-83.66589780000001,32.813703000000004]]},"id":"8744c0b18ffffff-17ffb69cdfc31565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4ed01-17becb07c98eb3cd","8f44c0b0ac4cac8-17bf7940fd3a366a"]},"geometry":{"type":"LineString","coordinates":[[-83.7107185,32.818223100000004],[-83.7099908,32.818215800000004],[-83.7099908,32.818020000000004]]},"id":"8944c0b0ac7ffff-17bffa549a2aaabd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4ed01-17becb07c98eb3cd","8f44c0b0ac414e1-17df4b07ccafef0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7099908,32.818020000000004],[-83.7099908,32.8178324]]},"id":"8a44c0b0ac47fff-1797eb07cc2ef31b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac414e1-17df4b07ccafef0e","8f44c0b0ac41c1c-17df7ad358c669c2"]},"geometry":{"type":"LineString","coordinates":[[-83.7099908,32.8178324],[-83.7099908,32.817680100000004],[-83.7100747,32.8176563]]},"id":"8b44c0b0ac41fff-1797eafe32efca41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6962905,32.819142400000004]},"id":"8f44c0b19975883-13fe6c7a729cea16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19975883-13fe6c7a729cea16","8f44c0b1d2db619-1397fc86d84711bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6962905,32.819142400000004],[-83.6962707,32.818981900000004]]},"id":"8a44c0b19977fff-13dfec80a5313ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2db44b-13de6c8e91b53b77","8f44c0b1d2db619-1397fc86d84711bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6962707,32.818981900000004],[-83.69625830000001,32.8188838]]},"id":"8c44c0b1d2db7ff-13ff7c8ab340660c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2db52c-13fe7c9a314eec25","8f44c0b1d2db44b-13de6c8e91b53b77"]},"geometry":{"type":"LineString","coordinates":[[-83.69625830000001,32.8188838],[-83.6962397,32.8187365]]},"id":"8b44c0b1d2dbfff-13be6c946cdaaafe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2db52c-13fe7c9a314eec25","8f44c0b1d2daaeb-139ffca623552393"]},"geometry":{"type":"LineString","coordinates":[[-83.6962397,32.8187365],[-83.6962206,32.818585500000005]]},"id":"8a44c0b1d2dffff-13df6ca03dbbdf63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2da392-13be6d217f972759","8f44c0b1d2daaeb-139ffca623552393"]},"geometry":{"type":"LineString","coordinates":[[-83.6962206,32.818585500000005],[-83.69602330000001,32.8186052]]},"id":"8b44c0b1d2dafff-13b66ce3d6c9b8d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d24766-13f6f6f281c92f88","8f44c0b19d24add-13f6967477c8790b"]},"geometry":{"type":"LineString","coordinates":[[-83.6854488,32.816051900000005],[-83.68565050000001,32.8160553]]},"id":"8b44c0b19d24fff-13f786b371099a3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b6c1-13f6a5fb6fb40723","8f44c0b19d24add-13f6967477c8790b"]},"geometry":{"type":"LineString","coordinates":[[-83.68565050000001,32.8160553],[-83.6858442,32.816058600000005]]},"id":"8a44c0b19d27fff-13f7a637ec0bbb91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b6c1-13f6a5fb6fb40723","8f44c0b1d68b2c4-13f695868671924b"]},"geometry":{"type":"LineString","coordinates":[[-83.6858442,32.816058600000005],[-83.6860312,32.8160617]]},"id":"8844c0b1d7fffff-13f7a5c0f4e0f75c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d68b2c4-13f695868671924b","8f44c0b1d6d6ce0-13fec50845de7b02"]},"geometry":{"type":"LineString","coordinates":[[-83.6860312,32.8160617],[-83.6862332,32.816065200000004]]},"id":"8844c0b1d7fffff-13f7b547647c2e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d689132-13ffd489113beb17","8f44c0b1d6d6ce0-13fec50845de7b02"]},"geometry":{"type":"LineString","coordinates":[[-83.6862332,32.816065200000004],[-83.68643130000001,32.8160685],[-83.6864367,32.8156637]]},"id":"8844c0b1d7fffff-13b7949fa9bd36ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6647901,32.8138063]},"id":"8f44c0b1846bd02-17f6f962379a626e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846ab65-17b7b9610d507188","8f44c0b1846bd02-17f6f962379a626e"]},"geometry":{"type":"LineString","coordinates":[[-83.664792,32.8136729],[-83.6647901,32.8138063]]},"id":"8a44c0b1846ffff-17dff961a9383095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6649986,32.813811]},"id":"8f44c0b1846b923-17f7f8dfef4acc3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846bd02-17f6f962379a626e","8f44c0b1846b923-17f7f8dfef4acc3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6647901,32.8138063],[-83.66478450000001,32.8141898],[-83.66486300000001,32.814189],[-83.66499300000001,32.8141411],[-83.6649986,32.813811]]},"id":"8944c0b1847ffff-1797b926be864d54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1846bd02-17f6f962379a626e","8f44c0b1846b923-17f7f8dfef4acc3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6649986,32.813811],[-83.6647901,32.8138063]]},"id":"8a44c0b1846ffff-17f6f9211a824905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a144369-13dffe721f52775b","8f44c0b0a144748-13df7ef156349d27"]},"geometry":{"type":"LineString","coordinates":[[-83.7149419,32.821755700000004],[-83.7151455,32.8217599]]},"id":"8b44c0b0a144fff-13debeb1b587b42a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a14599d-13f6fde7969590d3","8f44c0b0a144369-13dffe721f52775b"]},"geometry":{"type":"LineString","coordinates":[[-83.7151455,32.8217599],[-83.71536710000001,32.8217644]]},"id":"8a44c0b0a147fff-13f77e2cd626a2ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16e5aa-13f77d64085701a0","8f44c0b0a14599d-13f6fde7969590d3"]},"geometry":{"type":"LineString","coordinates":[[-83.71536710000001,32.8217644],[-83.7155776,32.8217687]]},"id":"8944c0b0a17ffff-13f63da5d748e15a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16e1a1-13f7fced8fdf757e","8f44c0b0a16e5aa-13f77d64085701a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7155776,32.8217687],[-83.7157672,32.8217725]]},"id":"8b44c0b0a16efff-13f6bd28ce16c0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a16e1a1-13f7fced8fdf757e","8f44c0b0a161990-1797fc7d6b03abc0"]},"geometry":{"type":"LineString","coordinates":[[-83.7157672,32.8217725],[-83.71593800000001,32.821776],[-83.71594660000001,32.8212062]]},"id":"8944c0b0a17ffff-17f6fc8d007ac352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6988053,32.8138388]},"id":"8f44c0b1d223b9d-179f6656bb776487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d221bae-17b7f51ec5f7f36d","8f44c0b1d223b9d-179f6656bb776487"]},"geometry":{"type":"LineString","coordinates":[[-83.6988053,32.8138388],[-83.6992664,32.8139051],[-83.6993044,32.8137083]]},"id":"8944c0b1d23ffff-1797f597b38055bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d221bae-17b7f51ec5f7f36d","8f44c0b1d2252c3-17de750a0f25f29b"]},"geometry":{"type":"LineString","coordinates":[[-83.6993044,32.8137083],[-83.6993376,32.813536500000005]]},"id":"8a44c0b1d227fff-1796651461dc5424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2202d1-179ff641a9071975","8f44c0b1d2252c3-17de750a0f25f29b"]},"geometry":{"type":"LineString","coordinates":[[-83.6993376,32.813536500000005],[-83.6993417,32.8135155],[-83.6988719,32.813454300000004],[-83.698839,32.8136443]]},"id":"8a44c0b1d227fff-17be65c1c6732b29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2202d1-179ff641a9071975","8f44c0b1d223b9d-179f6656bb776487"]},"geometry":{"type":"LineString","coordinates":[[-83.698839,32.8136443],[-83.6988053,32.8138388]]},"id":"8a44c0b1d227fff-17dee64c2775b0b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6988522,32.8145879]},"id":"8f44c0b1d22a199-17df76396a2327c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2012ac-17966723ab1c2c58","8f44c0b1d22a199-17df76396a2327c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6988522,32.8145879],[-83.6986919,32.8148988],[-83.69865490000001,32.8149309],[-83.6986093,32.814932],[-83.6984774,32.814883800000004]]},"id":"8944c0b1d23ffff-17ff7699c08ce08d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d2032d6-17f778572c1c3d0e","8f44c0b1d2012ac-17966723ab1c2c58"]},"geometry":{"type":"LineString","coordinates":[[-83.6984774,32.814883800000004],[-83.69800760000001,32.814712300000004],[-83.69798540000001,32.8150321]]},"id":"8a44c0b1d207fff-17f6e7f287e66115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75cb84-13def794b120178c","8f44c0b1d75c351-17def79d5f7d653e"]},"geometry":{"type":"LineString","coordinates":[[-83.69174290000001,32.8133513],[-83.6921118,32.813367],[-83.6920977,32.813557100000004],[-83.6917291,32.8135307]]},"id":"8944c0b1d77ffff-179ef70e259c79bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75cd2e-13f6780b92847f1d","8f44c0b1d75c351-17def79d5f7d653e"]},"geometry":{"type":"LineString","coordinates":[[-83.6917291,32.8135307],[-83.69152550000001,32.8135186],[-83.6915527,32.8131621]]},"id":"8b44c0b1d75cfff-13fff8001a7a8936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d75cd2e-13f6780b92847f1d","8f44c0b1d742ca0-13fef7fa3e38c880"]},"geometry":{"type":"LineString","coordinates":[[-83.6915527,32.8131621],[-83.6915805,32.812798]]},"id":"8944c0b1d77ffff-13f6f802eaa7464e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a025c76-17fee49881333b82","8f44c0b0a021048-13fef499fa1629a5"]},"geometry":{"type":"LineString","coordinates":[[-83.7126241,32.822212300000004],[-83.7126264,32.8215694]]},"id":"8a44c0b0a027fff-13b7d49947c92bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a025c76-17fee49881333b82","8f44c0b0a108608-1797d416fda9ab34"]},"geometry":{"type":"LineString","coordinates":[[-83.7126264,32.8215694],[-83.7126284,32.8210007],[-83.7128337,32.8210013]]},"id":"8844c0b0a1fffff-179e5486b80e2207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156541-17ff5390f249ad01","8f44c0b0a108608-1797d416fda9ab34"]},"geometry":{"type":"LineString","coordinates":[[-83.7128337,32.8210013],[-83.71305020000001,32.821001800000005],[-83.71304810000001,32.821573300000004]]},"id":"8844c0b0a1fffff-1797e3a2b9155518"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156541-17ff5390f249ad01","8f44c0b0a15229c-13ff63926eae8495"]},"geometry":{"type":"LineString","coordinates":[[-83.71304810000001,32.821573300000004],[-83.7130458,32.822216600000004]]},"id":"8a44c0b0a157fff-13b66391a2d08969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996c0a3-17f7f8e41ae9a193","8f44c0b1996c6a5-17b7791be48c5826"]},"geometry":{"type":"LineString","coordinates":[[-83.69767060000001,32.8202549],[-83.69775990000001,32.8201273]]},"id":"8b44c0b1996cfff-179f78fff72b9c23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996c8a4-1796789fe1aaabf7","8f44c0b1996c0a3-17f7f8e41ae9a193"]},"geometry":{"type":"LineString","coordinates":[[-83.69775990000001,32.8201273],[-83.69786900000001,32.8199713]]},"id":"8b44c0b1996cfff-17b6f8c1f7d4711a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996c8a4-1796789fe1aaabf7","8f44c0b0a59238a-13b7785f09bf48ef"]},"geometry":{"type":"LineString","coordinates":[[-83.69786900000001,32.8199713],[-83.6979728,32.819822900000005]]},"id":"8944c0b1997ffff-13d7f87f72cb6713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a592b95-13bfe82ac2a94880","8f44c0b0a59238a-13b7785f09bf48ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6979728,32.819822900000005],[-83.698036,32.8197324],[-83.6980564,32.8196602]]},"id":"8b44c0b0a592fff-13f67840b6f3363a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a592b95-13bfe82ac2a94880","8f44c0b19964789-139e7a89365406da"]},"geometry":{"type":"LineString","coordinates":[[-83.6980564,32.8196602],[-83.6970861,32.8191617]]},"id":"8644c0b1fffffff-13b7e959fdf62241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a03486e-17f6d824698d9262","8f44c0b0a034cec-17fff8beb3b3e978"]},"geometry":{"type":"LineString","coordinates":[[-83.71117380000001,32.8211725],[-83.7109269,32.8211675]]},"id":"8b44c0b0a034fff-17ff487183f7a6ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7103862,32.8211565]},"id":"8f44c0b0a036db1-17f6da10a76742f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a036db1-17f6da10a76742f6","8f44c0b0a034cec-17fff8beb3b3e978"]},"geometry":{"type":"LineString","coordinates":[[-83.7109269,32.8211675],[-83.7103862,32.8211565]]},"id":"8844c0b0a1fffff-17fe4967a906c197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a036db1-17f6da10a76742f6","8f44c0b0a036529-17d67a1285c978b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7103862,32.8211565],[-83.71038320000001,32.8213059]]},"id":"8944c0b0a1bffff-1797ca119730be08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a036529-17d67a1285c978b5","8f44c0b0a036788-17b76a14c936dba5"]},"geometry":{"type":"LineString","coordinates":[[-83.71038320000001,32.8213059],[-83.71037960000001,32.821483400000005]]},"id":"8b44c0b0a036fff-17fffa13a3026c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71037600000001,32.8216617]},"id":"8f44c0b0a032d59-13b6da170f5fe8d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a032d59-13b6da170f5fe8d1","8f44c0b0a036788-17b76a14c936dba5"]},"geometry":{"type":"LineString","coordinates":[[-83.71037960000001,32.821483400000005],[-83.71037600000001,32.8216617]]},"id":"8a44c0b0a037fff-17feda15ec0e8d1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a032d59-13b6da170f5fe8d1","8f44c0b0a0320f4-139fca1941c1f29c"]},"geometry":{"type":"LineString","coordinates":[[-83.71037600000001,32.8216617],[-83.71037240000001,32.8218364]]},"id":"8b44c0b0a032fff-13df7a182ffed0c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d223b9d-179f6656bb776487","8f44c0b1d223276-17fee66270ecbac8"]},"geometry":{"type":"LineString","coordinates":[[-83.6988053,32.8138388],[-83.69878650000001,32.8140264]]},"id":"8b44c0b1d223fff-17d7e65c94cc9fd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d223276-17fee66270ecbac8","8f44c0b1d20525b-17bfe6ac3fd4cb2b"]},"geometry":{"type":"LineString","coordinates":[[-83.69878650000001,32.8140264],[-83.6987326,32.8141569],[-83.6987881,32.8142615],[-83.69866850000001,32.8145144]]},"id":"8944c0b1d23ffff-1797767d50dd20e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d20525b-17bfe6ac3fd4cb2b","8f44c0b1d22a199-17df76396a2327c7"]},"geometry":{"type":"LineString","coordinates":[[-83.69866850000001,32.8145144],[-83.6988522,32.8145879]]},"id":"8b44c0b1d22afff-17d6e672c12383dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d22bd80-17bff58b79e0e9dd","8f44c0b1d22a199-17df76396a2327c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6988522,32.8145879],[-83.69913050000001,32.8147387]]},"id":"8a44c0b1d22ffff-179ef5e27f37ec83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1826e59e-1396b9b0f9fcc351","8f44c0b182636a9-17bffa40d9878cdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6777713,32.821609800000004],[-83.6775411,32.821494200000004]]},"id":"8944c0b1827ffff-17de99f8e5ae52b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18244bb5-17f69ac6ebcf951b","8f44c0b182636a9-17bffa40d9878cdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6775411,32.821494200000004],[-83.6773266,32.8213864]]},"id":"8a44c0b18247fff-179eba83ef6bc25a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18244bb5-17f69ac6ebcf951b","8f44c0b18244c05-17b7bb47ef10c3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6773266,32.8213864],[-83.6771202,32.821282700000005]]},"id":"8b44c0b18244fff-17d6bb076fe1270b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1827104d-17f6bbc941c67e9a","8f44c0b18244c05-17b7bb47ef10c3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6771202,32.821282700000005],[-83.6769132,32.821178700000004]]},"id":"8944c0b1827ffff-1797bb889a30befb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18271573-17b6fc4d3f870973","8f44c0b1827104d-17f6bbc941c67e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6769132,32.821178700000004],[-83.6767021,32.8210727]]},"id":"8b44c0b18271fff-17d79c0b4784c961"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18271573-17b6fc4d3f870973","8f44c0b1827028d-17fefcc0aa45f4cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6767021,32.8210727],[-83.67651740000001,32.820979900000005]]},"id":"8a44c0b18277fff-1797fc86f6dd5b38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0c1b-17bf7daa497ba73c","8f44c0b1d2d0082-1797fd9dd25f8bfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6958243,32.817318300000004],[-83.6958044,32.8171735]]},"id":"8b44c0b1d2d0fff-17defda40c0100f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d0c1b-17bf7daa497ba73c","8f44c0b1d2d6a71-17d67db714cf9674"]},"geometry":{"type":"LineString","coordinates":[[-83.6958044,32.8171735],[-83.69578390000001,32.817024100000005]]},"id":"8a44c0b1d2d7fff-17feedb0ace7db0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d6a71-17d67db714cf9674","8f44c0b1d2d4482-17ffedc450be0be7"]},"geometry":{"type":"LineString","coordinates":[[-83.69578390000001,32.817024100000005],[-83.6957627,32.816869600000004]]},"id":"8b44c0b1d2d6fff-179ffdbdb8e0e7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28921c-179efdd1e93efadf","8f44c0b1d2d4482-17ffedc450be0be7"]},"geometry":{"type":"LineString","coordinates":[[-83.6957627,32.816869600000004],[-83.695741,32.8167113]]},"id":"8a44c0b1d2d7fff-17be6dcb2bfcbd90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695869,32.8164615]},"id":"8f44c0b1d2f249a-13f67d81e2068d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28921c-179efdd1e93efadf","8f44c0b1d2f249a-13f67d81e2068d3e"]},"geometry":{"type":"LineString","coordinates":[[-83.695741,32.8167113],[-83.6957364,32.816678100000004],[-83.69576160000001,32.8166035],[-83.695869,32.8164615]]},"id":"8b44c0b1d289fff-13beedb43789dfcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b3024-139777d574fc48f9","8f44c0b0a4b0299-1397f79395e9b7da"]},"geometry":{"type":"LineString","coordinates":[[-83.69819290000001,32.8220435],[-83.6982983,32.8218393]]},"id":"8a44c0b0a4b7fff-13d767b488f9114d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b5781-1396e6c8fae559dc","8f44c0b0a4b0299-1397f79395e9b7da"]},"geometry":{"type":"LineString","coordinates":[[-83.6982983,32.8218393],[-83.6984381,32.8215683],[-83.6986225,32.821639600000005]]},"id":"8a44c0b0a4b7fff-13b677400ed1d020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b5781-1396e6c8fae559dc","8f44c0b0a4b150a-13bf7721f981f6ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6986225,32.821639600000005],[-83.6988183,32.8217154],[-83.69866880000001,32.8219887],[-83.69848010000001,32.8219127]]},"id":"8a44c0b0a4b7fff-139f669f23dd0ca3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b150a-13bf7721f981f6ed","8f44c0b0a4b0299-1397f79395e9b7da"]},"geometry":{"type":"LineString","coordinates":[[-83.69848010000001,32.8219127],[-83.6982983,32.8218393]]},"id":"8a44c0b0a4b7fff-13bee75ac98539a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69363,32.8092708]},"id":"8f44c0b1d0e3033-13f672f9420a6d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ee61a-139f725c57dadc76","8f44c0b1d0e3033-13f672f9420a6d6a"]},"geometry":{"type":"LineString","coordinates":[[-83.69363,32.8092708],[-83.6937966,32.8094831],[-83.6938707,32.8096854],[-83.6938811,32.809771500000004]]},"id":"8944c0b1d0fffff-13f6f29970cbdc41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ee61a-139f725c57dadc76","8f44c0b1d0eac43-13977270dff0df90"]},"geometry":{"type":"LineString","coordinates":[[-83.6938811,32.809771500000004],[-83.6938892,32.8098376],[-83.6938483,32.8099414]]},"id":"8a44c0b1d0effff-13d77260390668aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0eac43-13977270dff0df90","8f44c0b1d0ea7a2-13f7f2b7221362c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6938483,32.8099414],[-83.6938204,32.8100121],[-83.6937358,32.8101144]]},"id":"8b44c0b1d0eafff-13bff28fef7a64b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2850c0-13966f347ef2b29b","8f44c0b1d2a88aa-13be6cff884704f5"]},"geometry":{"type":"LineString","coordinates":[[-83.69607760000001,32.8151266],[-83.69517370000001,32.8150852]]},"id":"8944c0b1d2bffff-13b77e19f1521e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2850c0-13966f347ef2b29b","8f44c0b1d2854e8-139fef98874e2b13"]},"geometry":{"type":"LineString","coordinates":[[-83.69517370000001,32.8150852],[-83.69501360000001,32.8150776]]},"id":"8b44c0b1d285fff-1397ef66760e5eeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2808c3-139f702213078503","8f44c0b1d2854e8-139fef98874e2b13"]},"geometry":{"type":"LineString","coordinates":[[-83.69501360000001,32.8150776],[-83.6947935,32.8150678]]},"id":"8a44c0b1d287fff-139e7fdd4804342b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2808c3-139f702213078503","8f44c0b1d280cce-1397f092a78a6368"]},"geometry":{"type":"LineString","coordinates":[[-83.6947935,32.8150678],[-83.69461340000001,32.8150585]]},"id":"8b44c0b1d280fff-1396f05a6aaf6ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2862ca-17fff10b193b360c","8f44c0b1d280cce-1397f092a78a6368"]},"geometry":{"type":"LineString","coordinates":[[-83.69461340000001,32.8150585],[-83.69442070000001,32.8150494]]},"id":"8a44c0b1d287fff-1396f0cee9339b73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2862ca-17fff10b193b360c","8f44c0b1d282d66-17f7f188aa1233fc"]},"geometry":{"type":"LineString","coordinates":[[-83.69442070000001,32.8150494],[-83.6942198,32.8150398]]},"id":"8a44c0b1d287fff-17fef149e2c1a22c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d282d66-17f7f188aa1233fc","8f44c0b1d2821ac-13d7718e9755d3b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6942198,32.8150398],[-83.69421030000001,32.8151856]]},"id":"8b44c0b1d282fff-13b7718ba6cf54bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70019620000001,32.815164100000004]},"id":"8f44c0b1d27414d-13d7f2f16bd0f7b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274832-17dfe2f4263878b1","8f44c0b1d27414d-13d7f2f16bd0f7b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7001918,32.814995],[-83.70019620000001,32.815164100000004]]},"id":"8b44c0b1d274fff-1396e2f2c4b7df29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d270102-13bf737237b3d244","8f44c0b1d27414d-13d7f2f16bd0f7b7"]},"geometry":{"type":"LineString","coordinates":[[-83.70019620000001,32.815164100000004],[-83.70020650000001,32.8155516],[-83.69999010000001,32.8155315]]},"id":"8a44c0b1d277fff-13f7e3055b4dbcab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274464-13bfe3724bfee288","8f44c0b1d270102-13bf737237b3d244"]},"geometry":{"type":"LineString","coordinates":[[-83.69999010000001,32.8155315],[-83.6997935,32.815513200000005],[-83.6997935,32.8151464],[-83.69999,32.815155000000004]]},"id":"8a44c0b1d277fff-13bf73cd4bf39bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d274464-13bfe3724bfee288","8f44c0b1d27414d-13d7f2f16bd0f7b7"]},"geometry":{"type":"LineString","coordinates":[[-83.69999,32.815155000000004],[-83.70019620000001,32.815164100000004]]},"id":"8b44c0b1d274fff-13d6e331de60a864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18572799-13bfbd0fb14f16f2","8f44c0b18554c2d-139ebd11cbfc015e"]},"geometry":{"type":"LineString","coordinates":[[-83.66328370000001,32.8095889],[-83.6632804,32.8097507]]},"id":"8944c0b1857ffff-13dfbd10b4183e3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18554c2d-139ebd11cbfc015e","8f44c0b185540a1-13febd13a773e46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6632804,32.8097507],[-83.6632774,32.8099009]]},"id":"8b44c0b18554fff-13bfbd12b51808f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855475b-13defd159c6cbdec","8f44c0b185540a1-13febd13a773e46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6632774,32.8099009],[-83.66327430000001,32.810051800000004]]},"id":"8b44c0b18554fff-139ffd14a39ce414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855475b-13defd159c6cbdec","8f44c0b185508ac-17bfbd177e8a036f"]},"geometry":{"type":"LineString","coordinates":[[-83.66327430000001,32.810051800000004],[-83.6632713,32.8102042]]},"id":"8a44c0b18557fff-13febd168bb251ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b185508ac-17bfbd177e8a036f","8f44c0b18550063-1797fd1965ff3327"]},"geometry":{"type":"LineString","coordinates":[[-83.6632713,32.8102042],[-83.6632682,32.8103709]]},"id":"8b44c0b18550fff-17dffd18695efe9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18550063-1797fd1965ff3327","8f44c0b18552b72-17b6bdd93c85a648"]},"geometry":{"type":"LineString","coordinates":[[-83.6632682,32.8103709],[-83.6632668,32.8104223],[-83.6629613,32.810419200000005]]},"id":"8a44c0b18557fff-17befd6bec53eac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18314759-13b7f27b2c50a7bb","8f44c0b183141aa-13bea277d7385955"]},"geometry":{"type":"LineString","coordinates":[[-83.674171,32.8161663],[-83.6741763,32.8159682]]},"id":"8b44c0b18314fff-13feb279773b4829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18314d29-13d7a2750582a1aa","8f44c0b183141aa-13bea277d7385955"]},"geometry":{"type":"LineString","coordinates":[[-83.6741763,32.8159682],[-83.6741808,32.815804]]},"id":"8b44c0b18314fff-139ef2767352a6ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18314d29-13d7a2750582a1aa","8f44c0b18332458-13ffe2722d03be46"]},"geometry":{"type":"LineString","coordinates":[[-83.6741808,32.815804],[-83.6741854,32.815634]]},"id":"8944c0b1833ffff-13b6e2739b19f250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18332458-13ffe2722d03be46","8f44c0b18332c8b-1397e26f6a75eebe"]},"geometry":{"type":"LineString","coordinates":[[-83.6741854,32.815634],[-83.67418980000001,32.815474800000004]]},"id":"8b44c0b18332fff-13bfa270c2da500f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18332c8b-1397e26f6a75eebe","8f44c0b1804da54-13b6b26ca0b41295"]},"geometry":{"type":"LineString","coordinates":[[-83.67418980000001,32.815474800000004],[-83.6741942,32.8153099]]},"id":"8a44c0b18337fff-13d6e26e0312f011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1804da54-13b6b26ca0b41295","8f44c0b183364a2-13b6e26995fdb09f"]},"geometry":{"type":"LineString","coordinates":[[-83.6741942,32.8153099],[-83.67419910000001,32.81513]]},"id":"8a44c0b18337fff-13fea26b2ebe3bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905795,32.8103538]},"id":"8f44c0b1d72e0b1-17977a6bd73f4fab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d72e0b1-17977a6bd73f4fab","8f44c0b1d7246e8-139ffac2bfdf566c"]},"geometry":{"type":"LineString","coordinates":[[-83.6905795,32.8103538],[-83.69064920000001,32.8093761],[-83.69044050000001,32.8093656]]},"id":"8944c0b1d73ffff-139f7a5db1428850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d726ac3-1396fb4a35a82221","8f44c0b1d7246e8-139ffac2bfdf566c"]},"geometry":{"type":"LineString","coordinates":[[-83.69044050000001,32.8093656],[-83.6902237,32.8093547]]},"id":"8a44c0b1d727fff-139e7b06709d92c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7260de-13967bcd1e6d638a","8f44c0b1d726ac3-1396fb4a35a82221"]},"geometry":{"type":"LineString","coordinates":[[-83.6902237,32.8093547],[-83.6900143,32.809344100000004]]},"id":"8b44c0b1d726fff-13977b8ba18dab65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d7260de-13967bcd1e6d638a","8f44c0b1d735b2a-139f7c537fc2052e"]},"geometry":{"type":"LineString","coordinates":[[-83.6900143,32.809344100000004],[-83.6897993,32.8093333]]},"id":"8a44c0b1d727fff-139efc10443fc4d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689514,32.81018]},"id":"8f44c0b1d706b14-179efd05ca2b6e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d735b2a-139f7c537fc2052e","8f44c0b1d706b14-179efd05ca2b6e1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6897993,32.8093333],[-83.68957010000001,32.8093218],[-83.689514,32.81018]]},"id":"8944c0b1d73ffff-13d6fce17d6117d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7140177,32.819621600000005]},"id":"8f44c0b0a12dc1e-13b7c132f402fad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12dc1e-13b7c132f402fad3","8f44c0b0a12d092-139e61342095b048"]},"geometry":{"type":"LineString","coordinates":[[-83.7140177,32.819621600000005],[-83.7140158,32.8197762]]},"id":"8b44c0b0a12dfff-13d7d13398b8ea68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12d092-139e61342095b048","8f44c0b0a12d6e6-13fe71356b890cac"]},"geometry":{"type":"LineString","coordinates":[[-83.7140158,32.8197762],[-83.7140138,32.8199399]]},"id":"8b44c0b0a12dfff-13bf5134c79c2ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a12d6e6-13fe71356b890cac","8f44c0b0a129131-17df7136c8d6f98e"]},"geometry":{"type":"LineString","coordinates":[[-83.7140138,32.8199399],[-83.7140116,32.8201203]]},"id":"8a44c0b0a12ffff-17b6d1361f4e2087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a129769-17df613c4de78a37","8f44c0b0a129131-17df7136c8d6f98e"]},"geometry":{"type":"LineString","coordinates":[[-83.7140116,32.8201203],[-83.7140102,32.820228],[-83.7140028,32.8203254]]},"id":"8b44c0b0a129fff-179f51388bb439aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a129769-17df613c4de78a37","8f44c0b0a1748e0-179ec01d79cbef86"]},"geometry":{"type":"LineString","coordinates":[[-83.7140028,32.8203254],[-83.7144617,32.8204264]]},"id":"8844c0b0a1fffff-17fef0acdb64f4a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145677,32.8204498]},"id":"8f44c0b0a174b35-17bf3fdb36bddd37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a174b35-17bf3fdb36bddd37","8f44c0b0a1748e0-179ec01d79cbef86"]},"geometry":{"type":"LineString","coordinates":[[-83.7144617,32.8204264],[-83.7145677,32.8204498]]},"id":"8b44c0b0a174fff-17b7fffc54d210a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71120180000001,32.8201434]},"id":"8f44c0b0a111688-17ffe812eb92bf32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a113336-17ff78a1d93c34b6","8f44c0b0a111688-17ffe812eb92bf32"]},"geometry":{"type":"LineString","coordinates":[[-83.71120180000001,32.8201434],[-83.7109731,32.820142700000005]]},"id":"8a44c0b0a117fff-17ff785a5c812ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a113336-17ff78a1d93c34b6","8f44c0b0a113716-17fec9203c320a49"]},"geometry":{"type":"LineString","coordinates":[[-83.7109731,32.820142700000005],[-83.7107709,32.820142000000004]]},"id":"8b44c0b0a113fff-17ff48e104410b1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a113716-17fec9203c320a49","8f44c0b0a1acba1-17fe59a27cf715f3"]},"geometry":{"type":"LineString","coordinates":[[-83.7107709,32.820142000000004],[-83.71056250000001,32.8201413]]},"id":"8844c0b0a1fffff-17fed9615469d838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1ad4b3-17ded9cbb9b7774c","8f44c0b0a1acba1-17fe59a27cf715f3"]},"geometry":{"type":"LineString","coordinates":[[-83.71056250000001,32.8201413],[-83.71055510000001,32.820305000000005],[-83.7105033,32.820361000000005],[-83.7104965,32.8204937]]},"id":"8a44c0b0a1affff-17df49b5a7902848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1ad4b3-17ded9cbb9b7774c","8f44c0b0a1a8a50-17bf49c8c7e58442"]},"geometry":{"type":"LineString","coordinates":[[-83.7104965,32.8204937],[-83.71050120000001,32.8206736]]},"id":"8b44c0b0a1a8fff-1796d9ca38bdbdf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.694164,32.8214008]},"id":"8f44c0b19828791-17fff1ab81ac2f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19828791-17fff1ab81ac2f07","8f44c0b1982a274-17fff2199ea69e68"]},"geometry":{"type":"LineString","coordinates":[[-83.69398790000001,32.8215742],[-83.6941503,32.821449300000005],[-83.694164,32.8214008]]},"id":"8a44c0b1982ffff-17be71dbf9983c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19828791-17fff1ab81ac2f07","8f44c0b19828574-179e718f90964e5b"]},"geometry":{"type":"LineString","coordinates":[[-83.694164,32.8214008],[-83.6942087,32.8212422]]},"id":"8b44c0b19828fff-17dff19d959c2d6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19828574-179e718f90964e5b","8f44c0b19828a04-17d7f0c855730a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6942087,32.8212422],[-83.6945275,32.821308300000005]]},"id":"8b44c0b19828fff-17b7712bf4c41047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19828791-17fff1ab81ac2f07","8f44c0b19828a04-17d7f0c855730a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6945275,32.821308300000005],[-83.6944744,32.821426100000004],[-83.69443190000001,32.821452900000004],[-83.694164,32.8214008]]},"id":"8b44c0b19828fff-17967128c9a2c754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094399,32.820698]},"id":"8f44c0b0a18180c-17de4c601e0a207e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a18180c-17de4c601e0a207e","8f44c0b0a1aa0b6-17dfcbb06b08b780"]},"geometry":{"type":"LineString","coordinates":[[-83.709721,32.8207036],[-83.7094399,32.820698]]},"id":"8944c0b0a1bffff-17de4c0844672ad4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a185031-17967c5e88e82d73","8f44c0b0a18180c-17de4c601e0a207e"]},"geometry":{"type":"LineString","coordinates":[[-83.7094399,32.820698],[-83.70878640000001,32.8206851],[-83.70878520000001,32.8204426],[-83.7088099,32.8204002],[-83.70884810000001,32.8203794],[-83.7094424,32.8203815]]},"id":"8a44c0b0a187fff-17f6dd4f174b29d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a185031-17967c5e88e82d73","8f44c0b0a18180c-17de4c601e0a207e"]},"geometry":{"type":"LineString","coordinates":[[-83.7094424,32.8203815],[-83.7094399,32.820698]]},"id":"8a44c0b0a187fff-17f76c5f5bbd2e24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad5329e-17bfccead6579ba6","8f44c0b0ad536d0-17d77d4654096760"]},"geometry":{"type":"LineString","coordinates":[[-83.70907150000001,32.814962300000005],[-83.70919570000001,32.8149529],[-83.7092179,32.8149436]]},"id":"8944c0b0ad7ffff-17d7dd18152e056f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad5329e-17bfccead6579ba6","8f44c0b0ad41090-17d658c11b7de75b"]},"geometry":{"type":"LineString","coordinates":[[-83.7092179,32.8149436],[-83.7093141,32.8149032],[-83.7094337,32.8147985],[-83.7095027,32.814784],[-83.7109231,32.8147809]]},"id":"8944c0b0ad7ffff-17f66ae26d5f526c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71234840000001,32.8147395]},"id":"8f44c0b0ad698b2-17be75464aa9f851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ad41090-17d658c11b7de75b","8f44c0b0ad698b2-17be75464aa9f851"]},"geometry":{"type":"LineString","coordinates":[[-83.7109231,32.8147809],[-83.71100200000001,32.8147426],[-83.71234840000001,32.8147395]]},"id":"8944c0b0ad7ffff-17bff7064012b4ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994e500-17d76c1d0ab8e0a1","8f44c0b1995db1b-17be7c6613808e01"]},"geometry":{"type":"LineString","coordinates":[[-83.6963231,32.8212929],[-83.69644000000001,32.821125]]},"id":"8944c0b1997ffff-1797ec4182b45831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199410a1-17f67b81cc002b72","8f44c0b1994e500-17d76c1d0ab8e0a1"]},"geometry":{"type":"LineString","coordinates":[[-83.69644000000001,32.821125],[-83.6966884,32.820768300000005]]},"id":"8944c0b1997ffff-17f7fbcf64c99290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199410a1-17f67b81cc002b72","8f44c0b1994198b-17976b3fa38c8e24"]},"geometry":{"type":"LineString","coordinates":[[-83.6966884,32.820768300000005],[-83.6967942,32.8206164]]},"id":"8b44c0b19941fff-17d6eb60b0795e43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994198b-17976b3fa38c8e24","8f44c0b1994538e-17b77afcae413c63"]},"geometry":{"type":"LineString","coordinates":[[-83.6967942,32.8206164],[-83.6969014,32.820462500000005]]},"id":"8a44c0b19947fff-17f77b1e29e65b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994538e-17b77afcae413c63","8f44c0b19945b81-17df7abcc85d1ed1"]},"geometry":{"type":"LineString","coordinates":[[-83.6969014,32.820462500000005],[-83.6970036,32.8203157]]},"id":"8b44c0b19945fff-17977adcbcabf94b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19945b81-17df7abcc85d1ed1","8f44c0b1996e5a3-17f6fa784094fde3"]},"geometry":{"type":"LineString","coordinates":[[-83.6970036,32.8203157],[-83.6971132,32.8201583]]},"id":"8944c0b1997ffff-17be6a9a835c5906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996ed84-17b6fa3ee6e122e8","8f44c0b1996e5a3-17f6fa784094fde3"]},"geometry":{"type":"LineString","coordinates":[[-83.6971132,32.8201583],[-83.69720500000001,32.820026500000004]]},"id":"8944c0b1997ffff-17dfea5b953d9bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1996ed84-17b6fa3ee6e122e8","8f44c0b1996179c-13d6fa080b10ef2a"]},"geometry":{"type":"LineString","coordinates":[[-83.69720500000001,32.820026500000004],[-83.6972928,32.8198987]]},"id":"8a44c0b19967fff-13feea2379076f95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c3380-1797ea6a1b985ad4","8f44c0b1d2c32ce-17f6ea505f937d57"]},"geometry":{"type":"LineString","coordinates":[[-83.6971771,32.8180776],[-83.6971568,32.8179928],[-83.6971359,32.817958000000004]]},"id":"8c44c0b1d2c33ff-17be6a5ac3e052f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c3380-1797ea6a1b985ad4","8f44c0b1d2c318e-17d76a9e12523569"]},"geometry":{"type":"LineString","coordinates":[[-83.6971359,32.817958000000004],[-83.6970527,32.8178196]]},"id":"8b44c0b1d2c3fff-17feea841bffa580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c3ca5-17fe7accd867c2ca","8f44c0b1d2c318e-17d76a9e12523569"]},"geometry":{"type":"LineString","coordinates":[[-83.6970527,32.8178196],[-83.69701280000001,32.817753100000004],[-83.69697790000001,32.817686900000005]]},"id":"8b44c0b1d2c3fff-179e6ab609feffdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c3ca5-17fe7accd867c2ca","8f44c0b1d2c2a13-1797faf8d4a26403"]},"geometry":{"type":"LineString","coordinates":[[-83.69697790000001,32.817686900000005],[-83.69693330000001,32.8176022],[-83.69690750000001,32.8175453]]},"id":"8a44c0b1d2c7fff-17d66ae37576fcf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c2802-17b76b25a25bcad5","8f44c0b1d2c2a13-1797faf8d4a26403"]},"geometry":{"type":"LineString","coordinates":[[-83.69690750000001,32.8175453],[-83.6968358,32.8173874]]},"id":"8b44c0b1d2c2fff-17f6eb0f4ae6ffef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a036db1-17f6da10a76742f6","8f44c0b0a18dc25-17d6cb0f1852dd0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7103862,32.8211565],[-83.7103483,32.8211217],[-83.71001890000001,32.8211174],[-83.70998180000001,32.8211573],[-83.7099791,32.8213]]},"id":"8944c0b0a1bffff-17f6faaf3cdc1b6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a18dc25-17d6cb0f1852dd0e","8f44c0b0a18d0a2-17bfcb11173fee0a"]},"geometry":{"type":"LineString","coordinates":[[-83.7099791,32.8213],[-83.7099759,32.8214776]]},"id":"8b44c0b0a18dfff-17fe4b1019905f90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a032d59-13b6da170f5fe8d1","8f44c0b0a18d0a2-17bfcb11173fee0a"]},"geometry":{"type":"LineString","coordinates":[[-83.7099759,32.8214776],[-83.7099731,32.8216254],[-83.7100068,32.8216559],[-83.71037600000001,32.8216617]]},"id":"8844c0b0a1fffff-139e7ab8387d651d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a154a48-17f6617f7b7a6662","8f44c0b0a1734d0-1796618179dfaa80"]},"geometry":{"type":"LineString","coordinates":[[-83.7138953,32.8215814],[-83.71389210000001,32.8214342]]},"id":"8944c0b0a17ffff-17d66180717a16f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a17222d-179f618454c4a9ca","8f44c0b0a1734d0-1796618179dfaa80"]},"geometry":{"type":"LineString","coordinates":[[-83.71389210000001,32.8214342],[-83.7138875,32.821218200000004]]},"id":"8a44c0b0a177fff-17d6e182e3b83c8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156956-179662f4ce114b8c","8f44c0b0a17222d-179f618454c4a9ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7138875,32.821218200000004],[-83.7138867,32.8211841],[-83.7137927,32.8211037],[-83.7137194,32.8210921],[-83.71329680000001,32.821094200000005],[-83.71329800000001,32.821437]]},"id":"8844c0b0a1fffff-17fec27164b94db0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a156956-179662f4ce114b8c","8f44c0b0a156b83-17fed2f4775ffac8"]},"geometry":{"type":"LineString","coordinates":[[-83.71329800000001,32.821437],[-83.71329850000001,32.821575700000004]]},"id":"8b44c0b0a156fff-17d7c2f4956e7677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d7b6-13f779436f56c0ba","8f44c0b0ac5d293-13f6ec1731060d48"]},"geometry":{"type":"LineString","coordinates":[[-83.7095565,32.8185102],[-83.7107146,32.8185171]]},"id":"8944c0b0ac7ffff-13f75aad54e53ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d05d-13f648b73c0ac1b3","8f44c0b0ac4d7b6-13f779436f56c0ba"]},"geometry":{"type":"LineString","coordinates":[[-83.7107146,32.8185171],[-83.7109389,32.8185184]]},"id":"8b44c0b0ac4dfff-13f7e8fd5a87e8dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d05d-13f648b73c0ac1b3","8f44c0b0a1346c4-13d666c94f4efe73"]},"geometry":{"type":"LineString","coordinates":[[-83.7109389,32.8185184],[-83.71180700000001,32.8185236],[-83.7118094,32.8184334],[-83.71172920000001,32.8184326]]},"id":"8844c0b0a1fffff-13f7577d29714a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a1346c4-13d666c94f4efe73","8f44c0b0ac4d173-13bfe8b6a84e0ddc"]},"geometry":{"type":"LineString","coordinates":[[-83.71172920000001,32.8184326],[-83.7109398,32.818425000000005]]},"id":"8844c0b0a1fffff-13be47bffc81f5de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d173-13bfe8b6a84e0ddc","8f44c0b0ac4d423-13be494299e81449"]},"geometry":{"type":"LineString","coordinates":[[-83.7109398,32.818425000000005],[-83.71071590000001,32.8184228]]},"id":"8b44c0b0ac4dfff-13bef8fc9c08adb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7097487,32.818413400000004]},"id":"8f44c0b0ac5dac5-13b66b9f1f16090b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac4d423-13be494299e81449","8f44c0b0ac5dac5-13b66b9f1f16090b"]},"geometry":{"type":"LineString","coordinates":[[-83.71071590000001,32.8184228],[-83.7097487,32.818413400000004]]},"id":"8944c0b0ac7ffff-13b75a70d049147b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac5dac5-13b66b9f1f16090b","8f44c0b0ac5d72d-13b74c2a32638780"]},"geometry":{"type":"LineString","coordinates":[[-83.7097487,32.818413400000004],[-83.7095261,32.8184112]]},"id":"8b44c0b0ac5dfff-13b7fbe4a405307e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717408,32.8152528]},"id":"8f44c0b0a821516-13ff38ec0dbb6787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a821c4c-13feb8755addd3c1","8f44c0b0a821516-13ff38ec0dbb6787"]},"geometry":{"type":"LineString","coordinates":[[-83.7175979,32.815245600000004],[-83.717408,32.8152528]]},"id":"8b44c0b0a821fff-13fef8b0a96f2134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a823604-13d779d544c87198","8f44c0b0a821516-13ff38ec0dbb6787"]},"geometry":{"type":"LineString","coordinates":[[-83.717408,32.8152528],[-83.71729330000001,32.8150124],[-83.7166189,32.8152508],[-83.71681740000001,32.8156497],[-83.71703480000001,32.815573300000004]]},"id":"8944c0b0a83ffff-1396ba0962062328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a823604-13d779d544c87198","8f44c0b0a821516-13ff38ec0dbb6787"]},"geometry":{"type":"LineString","coordinates":[[-83.71703480000001,32.815573300000004],[-83.7174068,32.8154425],[-83.7174499,32.8153834],[-83.717408,32.8152528]]},"id":"8a44c0b0a827fff-13fe7933d9794c32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65498330000001,32.837819700000004]},"id":"8f44c0b1b79261c-1797d1537fe44cd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b79261c-1797d1537fe44cd3","8f44c0a34b6dd6d-13bfd06a34b3c2b5"]},"geometry":{"type":"LineString","coordinates":[[-83.65535650000001,32.8382613],[-83.6554299,32.8381386],[-83.6553887,32.8380704],[-83.65498330000001,32.837819700000004]]},"id":"8844c0b1b7fffff-139fd0aa693beb21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6551148,32.8376765]},"id":"8f44c0b1b79202a-17bfd10143773cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b79202a-17bfd10143773cfe","8f44c0b1b79261c-1797d1537fe44cd3"]},"geometry":{"type":"LineString","coordinates":[[-83.65498330000001,32.837819700000004],[-83.65458410000001,32.837572800000004],[-83.6547116,32.8374235],[-83.6551148,32.8376765]]},"id":"8744c0b1bffffff-179ed1bd18cbca72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b79202a-17bfd10143773cfe","8f44c0b1b79261c-1797d1537fe44cd3"]},"geometry":{"type":"LineString","coordinates":[[-83.6551148,32.8376765],[-83.65498330000001,32.837819700000004]]},"id":"8b44c0b1b792fff-17fed12a6e4d728f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70568560000001,32.898717600000005]},"id":"8f44c0a2ecd8b8e-17d6d58a839040af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecdd561-13fff4f4cdad5092","8f44c0a2ecd8b8e-17d6d58a839040af"]},"geometry":{"type":"LineString","coordinates":[[-83.70592520000001,32.898585000000004],[-83.705922,32.8987215],[-83.70568560000001,32.898717600000005]]},"id":"8a44c0a2ecdffff-17b6d52535bf4ff6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7054585,32.898713900000004]},"id":"8f44c0a2ecd80b6-17d676187b88c19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd8b8e-17d6d58a839040af","8f44c0a2ecd80b6-17d676187b88c19f"]},"geometry":{"type":"LineString","coordinates":[[-83.70568560000001,32.898717600000005],[-83.7054585,32.898713900000004]]},"id":"8b44c0a2ecd8fff-17d775d1874da8b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7052202,32.898573500000005]},"id":"8f44c0a2ecde2ae-13fe76ad691d81bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecde2ae-13fe76ad691d81bd","8f44c0a2ecd80b6-17d676187b88c19f"]},"geometry":{"type":"LineString","coordinates":[[-83.7054585,32.898713900000004],[-83.705217,32.89871],[-83.7052202,32.898573500000005]]},"id":"8a44c0a2ecdffff-17bf767ed5032db1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70546730000001,32.898442]},"id":"8f44c0a2ecdc694-13965612f079924c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecdc694-13965612f079924c","8f44c0a2ecde2ae-13fe76ad691d81bd"]},"geometry":{"type":"LineString","coordinates":[[-83.7052202,32.898573500000005],[-83.7052233,32.898438],[-83.70546730000001,32.898442]]},"id":"8a44c0a2ecdffff-13b7f67ac1cee1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70568940000001,32.8984456]},"id":"8f44c0a2ecdc2a6-139ed58826a5b6e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecdc694-13965612f079924c","8f44c0a2ecdc2a6-139ed58826a5b6e4"]},"geometry":{"type":"LineString","coordinates":[[-83.70546730000001,32.898442],[-83.70568940000001,32.8984456]]},"id":"8b44c0a2ecdcfff-139775cd819549cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e546922-17fed6c17b98999a","8f44c0a2e546d00-17ff57392a1cb3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7051881,32.9002445],[-83.7049966,32.900242]]},"id":"8944c0a2e57ffff-17fe56fd4325ff06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e57331e-17ffd7bdb86daf6c","8f44c0a2e546d00-17ff57392a1cb3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7049966,32.900242],[-83.7047845,32.9002392]]},"id":"8a44c0a2e577fff-17fe777b7bc78bcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5737a9-17f7f83bd30455c4","8f44c0a2e57331e-17ffd7bdb86daf6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7047845,32.9002392],[-83.7045827,32.9002366]]},"id":"8b44c0a2e573fff-17fef7fccd67f60d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5737a9-17f7f83bd30455c4","8f44c0a2e554b8d-17f678b9ea87e335"]},"geometry":{"type":"LineString","coordinates":[[-83.7045827,32.9002366],[-83.70438100000001,32.9002339]]},"id":"8944c0a2e57ffff-17f7587ad9909cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70418810000001,32.9002314]},"id":"8f44c0a2e554016-17f6f93272f27917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e554b8d-17f678b9ea87e335","8f44c0a2e554016-17f6f93272f27917"]},"geometry":{"type":"LineString","coordinates":[[-83.70438100000001,32.9002339],[-83.70418810000001,32.9002314]]},"id":"8b44c0a2e554fff-17f778f62b56829d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7039604,32.900228500000004]},"id":"8f44c0a2e554486-17f6d9c0c9c3bc5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e554016-17f6f93272f27917","8f44c0a2e554486-17f6d9c0c9c3bc5f"]},"geometry":{"type":"LineString","coordinates":[[-83.70418810000001,32.9002314],[-83.7039604,32.900228500000004]]},"id":"8a44c0a2e557fff-17f7d979a4932580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e556882-17f77a3a971f7dc6","8f44c0a2e554486-17f6d9c0c9c3bc5f"]},"geometry":{"type":"LineString","coordinates":[[-83.7039604,32.900228500000004],[-83.7037655,32.9002259]]},"id":"8b44c0a2e556fff-17f659fdacd5139a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e556882-17f77a3a971f7dc6","8f44c0a2e556502-139e7abdade9c40a"]},"geometry":{"type":"LineString","coordinates":[[-83.7037655,32.9002259],[-83.7035558,32.900272300000005]]},"id":"8b44c0a2e556fff-17fffa7c2dd79baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69241840000001,32.9063834]},"id":"8f44c0a0516c528-17fff5ee8d0bb395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69263500000001,32.9061491]},"id":"8f44c0a05b92755-17f7756723d70a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b92755-17f7756723d70a80","8f44c0a0516c528-17fff5ee8d0bb395"]},"geometry":{"type":"LineString","coordinates":[[-83.69241840000001,32.9063834],[-83.69263500000001,32.9061491]]},"id":"8944c0a0517ffff-17b675aad09ef684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b92755-17f7756723d70a80","8f44c0a05b90cb4-17fff47f10dfd8aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69263500000001,32.9061491],[-83.69300630000001,32.9057528]]},"id":"8a44c0a05b97fff-17ff74f31936bea4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b90cb4-17fff47f10dfd8aa","8f44c0a05b90918-17fe73d58f738d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.69300630000001,32.9057528],[-83.69311610000001,32.905635600000004],[-83.6932776,32.905741]]},"id":"8a44c0a05b97fff-17def42e8a0406ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b90b50-17d773878ae6da45","8f44c0a05b90918-17fe73d58f738d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.6932776,32.905741],[-83.6934588,32.9058593],[-83.69340240000001,32.905918400000004]]},"id":"8a44c0a05b97fff-179e73923eee1ebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b935b6-17bff5054a828774","8f44c0a05b90b50-17d773878ae6da45"]},"geometry":{"type":"LineString","coordinates":[[-83.69340240000001,32.905918400000004],[-83.6929626,32.906379300000005],[-83.6927916,32.9062591]]},"id":"8a44c0a05b97fff-1797744019951446"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b92755-17f7756723d70a80","8f44c0a05b935b6-17bff5054a828774"]},"geometry":{"type":"LineString","coordinates":[[-83.6927916,32.9062591],[-83.69263500000001,32.9061491]]},"id":"8a44c0a05b97fff-179ff5363e5d2d94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.705442,32.899192400000004]},"id":"8f44c0a2ecdb009-17ff5622c15e9feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7054255,32.8994641]},"id":"8f44c0a2e57582a-1797562d1ba4df76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecdb009-17ff5622c15e9feb","8f44c0a2e57582a-1797562d1ba4df76"]},"geometry":{"type":"LineString","coordinates":[[-83.705442,32.899192400000004],[-83.7054255,32.8994641]]},"id":"8944c0a2e57ffff-17d67627ffbb401c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e575c1d-179656b57f96e97d","8f44c0a2e57582a-1797562d1ba4df76"]},"geometry":{"type":"LineString","coordinates":[[-83.7054255,32.8994641],[-83.70520730000001,32.8994592]]},"id":"8b44c0a2e575fff-1797d6714d98d448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e575c1d-179656b57f96e97d","8f44c0a2e574219-179f572bb10bfd11"]},"geometry":{"type":"LineString","coordinates":[[-83.70520730000001,32.8994592],[-83.7050181,32.8994549]]},"id":"8a44c0a2e577fff-1796f6f09aeb4e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5746f0-179e77acf19fc1af","8f44c0a2e574219-179f572bb10bfd11"]},"geometry":{"type":"LineString","coordinates":[[-83.7050181,32.8994549],[-83.7048113,32.899450300000005]]},"id":"8b44c0a2e574fff-179ff76c508105d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5746f0-179e77acf19fc1af","8f44c0a2e576ad4-179fd82a60fd1de6"]},"geometry":{"type":"LineString","coordinates":[[-83.7048113,32.899450300000005],[-83.70461060000001,32.8994457]]},"id":"8a44c0a2e577fff-179f57eba53906be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e57672c-1796f8aad26a1351","8f44c0a2e576ad4-179fd82a60fd1de6"]},"geometry":{"type":"LineString","coordinates":[[-83.70461060000001,32.8994457],[-83.7044051,32.899441100000004]]},"id":"8b44c0a2e576fff-179e786aa12c87bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7042401,32.899437400000004]},"id":"8f44c0a2e5764d8-17967911f67a0d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e57672c-1796f8aad26a1351","8f44c0a2e5764d8-17967911f67a0d24"]},"geometry":{"type":"LineString","coordinates":[[-83.7044051,32.899441100000004],[-83.7042401,32.899437400000004]]},"id":"8b44c0a2e576fff-1797d8de67cfea3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7042406,32.8994173]},"id":"8f44c0a2e5764d5-17f7d911a925f7e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5764d8-17967911f67a0d24","8f44c0a2e5764d5-17f7d911a925f7e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7042401,32.899437400000004],[-83.7042406,32.8994173]]},"id":"8d44c0a2e5764ff-17fe7911ce67b587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e52b374-17de790e200d2726","8f44c0a2e5764d5-17f7d911a925f7e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7042406,32.8994173],[-83.7042462,32.8991619]]},"id":"8944c0a2e53ffff-17be590febeabb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68726380000001,32.8991199]},"id":"8f44c0a05d4545e-17bff2842283b5af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68678600000001,32.8988194]},"id":"8f44c0a05d46b1c-1796a3aec72ab6c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4545e-17bff2842283b5af","8f44c0a05d46b1c-1796a3aec72ab6c0"]},"geometry":{"type":"LineString","coordinates":[[-83.68726380000001,32.8991199],[-83.68678600000001,32.8988194]]},"id":"8a44c0a05d47fff-17f693197d642c7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4545e-17bff2842283b5af","8f44c0a05d46b1c-1796a3aec72ab6c0"]},"geometry":{"type":"LineString","coordinates":[[-83.68678600000001,32.8988194],[-83.68687990000001,32.8986958],[-83.68700360000001,32.898586],[-83.68710390000001,32.898578],[-83.68752140000001,32.8988231],[-83.6875639,32.8988716],[-83.6875677,32.8989313],[-83.6874059,32.8991124],[-83.6873336,32.8991358],[-83.68726380000001,32.8991199]]},"id":"8944c0a05d7ffff-17ff928b9bde8820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915274,32.9054773]},"id":"8f44c0a0516602d-17d7781b6157f55b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0516602d-17d7781b6157f55b","8f44c0a051666f3-17be7886e8ae3303"]},"geometry":{"type":"LineString","coordinates":[[-83.6913554,32.9056674],[-83.6915274,32.9054773]]},"id":"8b44c0a05166fff-17fef85128ba447b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69183290000001,32.9056835]},"id":"8f44c0a05160c61-17d6775c71a95e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0516602d-17d7781b6157f55b","8f44c0a05160c61-17d6775c71a95e0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6915274,32.9054773],[-83.6921452,32.9048028],[-83.6921964,32.9047824],[-83.69224390000001,32.9047726],[-83.69228790000001,32.9047824],[-83.69253020000001,32.9049467],[-83.6925446,32.904985100000005],[-83.692541,32.9050476],[-83.6919433,32.9056737],[-83.69189220000001,32.905691000000004],[-83.69183290000001,32.9056835]]},"id":"8744c0a05ffffff-179f76b2a877f6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0516602d-17d7781b6157f55b","8f44c0a05160c61-17d6775c71a95e0c"]},"geometry":{"type":"LineString","coordinates":[[-83.69183290000001,32.9056835],[-83.6915274,32.9054773]]},"id":"8a44c0a05167fff-1797f7bbf14d543c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68888290000001,32.897152500000004]},"id":"8f44c0a236cd008-13f67e903d2e883d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd008-13f67e903d2e883d","8f44c0a059b2d69-13defda9ceb86a28"]},"geometry":{"type":"LineString","coordinates":[[-83.68888290000001,32.897152500000004],[-83.6892516,32.8973]]},"id":"8844c0a237fffff-139e7e1cff53f2d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896765,32.897463900000005]},"id":"8f44c0a059b0771-13b6fca03d5ed63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b2d69-13defda9ceb86a28","8f44c0a059b0771-13b6fca03d5ed63f"]},"geometry":{"type":"LineString","coordinates":[[-83.6892516,32.8973],[-83.6896765,32.897463900000005]]},"id":"8a44c0a059b7fff-13fffd250fea79c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6899853,32.8975809]},"id":"8f44c0a059b1cee-13fe7bdf34cbcacf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b1cee-13fe7bdf34cbcacf","8f44c0a059b0771-13b6fca03d5ed63f"]},"geometry":{"type":"LineString","coordinates":[[-83.6896765,32.897463900000005],[-83.6899853,32.8975809]]},"id":"8a44c0a059b7fff-13d7fc3fbc6eb8e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905248,32.8977894]},"id":"8f44c0a05984932-13fe7a8e08f4f328"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b1cee-13fe7bdf34cbcacf","8f44c0a05984932-13fe7a8e08f4f328"]},"geometry":{"type":"LineString","coordinates":[[-83.6899853,32.8975809],[-83.6905248,32.8977894]]},"id":"8944c0a059bffff-13bf7b36afcc114c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69131060000001,32.898005000000005]},"id":"8f44c0a059a165a-139778a2ea0ffad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a165a-139778a2ea0ffad9","8f44c0a05984932-13fe7a8e08f4f328"]},"geometry":{"type":"LineString","coordinates":[[-83.6905248,32.8977894],[-83.69103270000001,32.8979858],[-83.69131060000001,32.898005000000005]]},"id":"8a44c0a059a7fff-13d6f99c34817708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a165a-139778a2ea0ffad9","8f44c0a059a1723-13bef89f6529824a"]},"geometry":{"type":"LineString","coordinates":[[-83.69131060000001,32.898005000000005],[-83.6913162,32.8978638]]},"id":"8c44c0a059a17ff-13df78a12cae9079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a1723-13bef89f6529824a","8f44c0a059a119c-13ff789cd26a16c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6913162,32.8978638],[-83.6913203,32.8977591]]},"id":"8b44c0a059a1fff-139e789e2bb14dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a1d05-13fef89854d1f91e","8f44c0a059a119c-13ff789cd26a16c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6913203,32.8977591],[-83.6913275,32.8975759]]},"id":"8b44c0a059a1fff-13b6789a93b598a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a1d05-13fef89854d1f91e","8f44c0a2364b6a0-13bef83e71406f24"]},"geometry":{"type":"LineString","coordinates":[[-83.6913275,32.8975759],[-83.69133860000001,32.8972964],[-83.6914713,32.897067]]},"id":"8a44c0a059a7fff-13d6787f06952096"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599c30e-17befc4c256e4299","8f44c0a0599cba9-17defc202a5823c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6898814,32.8989576],[-83.689811,32.8990859]]},"id":"8b44c0a0599cfff-1796fc3625b9b682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599c30e-17befc4c256e4299","8f44c0a0599c2d5-17fefc705c4e5223"]},"geometry":{"type":"LineString","coordinates":[[-83.689811,32.8990859],[-83.6897531,32.899191300000005]]},"id":"8c44c0a0599c3ff-17dffc5e4c44b07a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05998929-17fffc7af5865188","8f44c0a0599c2d5-17fefc705c4e5223"]},"geometry":{"type":"LineString","coordinates":[[-83.6897531,32.899191300000005],[-83.6897361,32.899222200000004]]},"id":"8a44c0a0599ffff-17f67c75a8cdb8f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05998929-17fffc7af5865188","8f44c0a059988db-17d7fcac3318ff85"]},"geometry":{"type":"LineString","coordinates":[[-83.6897361,32.899222200000004],[-83.68965730000001,32.8993659]]},"id":"8b44c0a05998fff-17befc93983e8448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059980cb-17bf7cdc6310b51b","8f44c0a059988db-17d7fcac3318ff85"]},"geometry":{"type":"LineString","coordinates":[[-83.68965730000001,32.8993659],[-83.68958020000001,32.899506200000005]]},"id":"8c44c0a059981ff-1797fcc44508f18e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b995-179f7d0dacc048ab","8f44c0a059980cb-17bf7cdc6310b51b"]},"geometry":{"type":"LineString","coordinates":[[-83.68958020000001,32.899506200000005],[-83.68950140000001,32.8996499]]},"id":"8a44c0a0599ffff-17de7cf50d83a304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894819,32.8996854]},"id":"8f44c0a0599bd69-179f7d19da7c8f2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b995-179f7d0dacc048ab","8f44c0a0599bd69-179f7d19da7c8f2b"]},"geometry":{"type":"LineString","coordinates":[[-83.68950140000001,32.8996499],[-83.6894819,32.8996854]]},"id":"8c44c0a0599b9ff-17967d13b65da352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892924,32.8996106]},"id":"8f44c0a0599aacc-17f6fd90416086d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599aacc-17f6fd90416086d0","8f44c0a0599bd69-179f7d19da7c8f2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6894819,32.8996854],[-83.6892924,32.8996106]]},"id":"8a44c0a0599ffff-179e7d551c7ce4a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68890730000001,32.8994586]},"id":"8f44c0a0599a51a-1797fe80f773fe3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599aacc-17f6fd90416086d0","8f44c0a0599a51a-1797fe80f773fe3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6892924,32.8996106],[-83.68890730000001,32.8994586]]},"id":"8b44c0a0599afff-17d77e08a2793adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d6d60a-17d77f23c23f3889","8f44c0a0599a51a-1797fe80f773fe3d"]},"geometry":{"type":"LineString","coordinates":[[-83.68890730000001,32.8994586],[-83.6886468,32.8993558]]},"id":"8a44c0a05d6ffff-17f7fed2628db237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687365,32.8979645]},"id":"8f44c0a05d663a4-13ffd244e7ffe0d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d66bb4-1396a2177e4a6c07","8f44c0a05d663a4-13ffd244e7ffe0d7"]},"geometry":{"type":"LineString","coordinates":[[-83.687365,32.8979645],[-83.6874377,32.897821]]},"id":"8b44c0a05d66fff-13bef22e3c5566e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236d92ea-13b681e819df27a3","8f44c0a05d66bb4-1396a2177e4a6c07"]},"geometry":{"type":"LineString","coordinates":[[-83.6874377,32.897821],[-83.68751350000001,32.897671200000005]]},"id":"8a44c0a05d67fff-13f7d1ffc86dec4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236d92ea-13b681e819df27a3","8f44c0a236d9af3-13d6a1b85befb3d4"]},"geometry":{"type":"LineString","coordinates":[[-83.68751350000001,32.897671200000005],[-83.6875899,32.8975202]]},"id":"8b44c0a236d9fff-1397d1d0322fee8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236ca499-13f7b19550e63614","8f44c0a236d9af3-13d6a1b85befb3d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6875899,32.8975202],[-83.68762770000001,32.897445600000005],[-83.6876459,32.8973691]]},"id":"8b44c0a236d9fff-13b7f1a40a1fbbee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236ca499-13f7b19550e63614","8f44c0a236dd35c-13ffb177ba7a9eb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6876459,32.8973691],[-83.6876933,32.8971699]]},"id":"8a44c0a236dffff-13bff186851bb62e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236dda34-1396815f2f1c9965","8f44c0a236dd35c-13ffb177ba7a9eb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6876933,32.8971699],[-83.6877326,32.897004800000005]]},"id":"8b44c0a236ddfff-13d7a16b7eb3becb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236dda34-1396815f2f1c9965","8f44c0a236ce594-17bea1467e3f31d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6877326,32.897004800000005],[-83.6877721,32.8968386]]},"id":"8944c0a236fffff-17f69152cdb45254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c3ad6-17bfa12b9ac7a1d1","8f44c0a236ce594-17bea1467e3f31d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6877721,32.8968386],[-83.68781510000001,32.8966578]]},"id":"8944c0a236fffff-17f7a1390feff14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c3ad6-17bfa12b9ac7a1d1","8f44c0a236c386d-17d6f10ccb6df8dc"]},"geometry":{"type":"LineString","coordinates":[[-83.68781510000001,32.8966578],[-83.68783330000001,32.8965814],[-83.68786440000001,32.896493500000005]]},"id":"8b44c0a236c3fff-1797e11d8568b11b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c0273-17f690eade36d6f6","8f44c0a236c386d-17d6f10ccb6df8dc"]},"geometry":{"type":"LineString","coordinates":[[-83.68786440000001,32.896493500000005],[-83.68791870000001,32.8963401]]},"id":"8a44c0a236c7fff-17b680fbc0933c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c0273-17f690eade36d6f6","8f44c0a236c0a23-1797d0bbbd9d2539"]},"geometry":{"type":"LineString","coordinates":[[-83.68791870000001,32.8963401],[-83.687959,32.896226500000004],[-83.68799410000001,32.8961629]]},"id":"8b44c0a236c0fff-17bec0d56c571d39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6880823,32.8960032]},"id":"8f44c0a236c551b-17b680849ac117dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c0a23-1797d0bbbd9d2539","8f44c0a236c551b-17b680849ac117dd"]},"geometry":{"type":"LineString","coordinates":[[-83.68799410000001,32.8961629],[-83.6880823,32.8960032]]},"id":"8a44c0a236c7fff-17d7f0a02754c7a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c5da8-17d6a050c2cd9743","8f44c0a236c551b-17b680849ac117dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6880823,32.8960032],[-83.6881652,32.895853]]},"id":"8b44c0a236c5fff-17f7906ab3e943fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883136,32.8955842]},"id":"8f44c0a236e356d-179e7ff40a2805bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236e356d-179e7ff40a2805bd","8f44c0a236c5da8-17d6a050c2cd9743"]},"geometry":{"type":"LineString","coordinates":[[-83.6881652,32.895853],[-83.6883136,32.8955842]]},"id":"8944c0a236fffff-17f6a0226072b716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894358,32.896114100000005]},"id":"8f44c0a236ed50b-17f77d36ab86fbce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893055,32.8963589]},"id":"8f44c0a236e8aeb-17967d88113bdd06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236e8aeb-17967d88113bdd06","8f44c0a236ed50b-17f77d36ab86fbce"]},"geometry":{"type":"LineString","coordinates":[[-83.6894358,32.896114100000005],[-83.6893055,32.8963589]]},"id":"8a44c0a236effff-17b7fd5f6e1e6bb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892526,32.896458200000005]},"id":"8f44c0a236e8262-17be7da9234f115b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236e8aeb-17967d88113bdd06","8f44c0a236e8262-17be7da9234f115b"]},"geometry":{"type":"LineString","coordinates":[[-83.6893055,32.8963589],[-83.6892526,32.896458200000005]]},"id":"8b44c0a236e8fff-179f7d98911cc0c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236eb86a-17b6fddd6230b69a","8f44c0a236e8262-17be7da9234f115b"]},"geometry":{"type":"LineString","coordinates":[[-83.6892526,32.896458200000005],[-83.689169,32.8966153]]},"id":"8a44c0a236effff-17fffdc34f055efb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236eb86a-17b6fddd6230b69a","8f44c0a236eb333-179e7e1489b39013"]},"geometry":{"type":"LineString","coordinates":[[-83.689169,32.8966153],[-83.6890808,32.8967809]]},"id":"8b44c0a236ebfff-17d67df8f61bf578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd905-17f6fe471437c04a","8f44c0a236eb333-179e7e1489b39013"]},"geometry":{"type":"LineString","coordinates":[[-83.6890808,32.8967809],[-83.6889999,32.8969327]]},"id":"8b44c0a236ebfff-17b7fe2dd6358b67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889567,32.897013900000005]},"id":"8f44c0a236cd818-139ffe621568b3d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd905-17f6fe471437c04a","8f44c0a236cd818-139ffe621568b3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6889999,32.8969327],[-83.6889567,32.897013900000005]]},"id":"8c44c0a236cd9ff-13967e549d079455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd12b-13d67e79d0709f6c","8f44c0a236cd818-139ffe621568b3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6889567,32.897013900000005],[-83.6889187,32.8970853]]},"id":"8b44c0a236cdfff-13b67e6df7b22743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd12b-13d67e79d0709f6c","8f44c0a236cd008-13f67e903d2e883d"]},"geometry":{"type":"LineString","coordinates":[[-83.6889187,32.8970853],[-83.68888290000001,32.897152500000004]]},"id":"8c44c0a236cd1ff-13df7e8500ecc6cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd771-13b7feaedd3c851a","8f44c0a236cd008-13f67e903d2e883d"]},"geometry":{"type":"LineString","coordinates":[[-83.68888290000001,32.897152500000004],[-83.6888339,32.8972415]]},"id":"8b44c0a236cdfff-139e7e9f8845f9dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c9d6a-139f7ee56d27718e","8f44c0a236cd771-13b7feaedd3c851a"]},"geometry":{"type":"LineString","coordinates":[[-83.6888339,32.8972415],[-83.6887466,32.8974003]]},"id":"8a44c0a236cffff-13dffeca1205700d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c9d6a-139f7ee56d27718e","8f44c0a236c90b6-13feff18b0bcfc08"]},"geometry":{"type":"LineString","coordinates":[[-83.6887466,32.8974003],[-83.6886645,32.897549600000005]]},"id":"8b44c0a236c9fff-13bffeff0fb3a2ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886242,32.897623]},"id":"8f44c0a236c9448-13967f31ea314055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c90b6-13feff18b0bcfc08","8f44c0a236c9448-13967f31ea314055"]},"geometry":{"type":"LineString","coordinates":[[-83.6886645,32.897549600000005],[-83.6886242,32.897623]]},"id":"8b44c0a236c9fff-13ff7f2554ed5097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c9682-13d7ff54d4b86fd1","8f44c0a236c9448-13967f31ea314055"]},"geometry":{"type":"LineString","coordinates":[[-83.6886242,32.897623],[-83.6885683,32.8977245]]},"id":"8c44c0a236c97ff-13b67f43594d8634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05996dad-1397ff6e2810086a","8f44c0a236c9682-13d7ff54d4b86fd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6885683,32.8977245],[-83.6885278,32.897798200000004]]},"id":"8a44c0a236cffff-13feff617f140926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05996c8c-13b77f881de3269e","8f44c0a05996dad-1397ff6e2810086a"]},"geometry":{"type":"LineString","coordinates":[[-83.6885278,32.897798200000004],[-83.68848630000001,32.897873600000004]]},"id":"8c44c0a05996dff-139f7f7b2a8775ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059964f2-1396ffbaac624ed8","8f44c0a05996c8c-13b77f881de3269e"]},"geometry":{"type":"LineString","coordinates":[[-83.68848630000001,32.897873600000004],[-83.68844630000001,32.8979464],[-83.68840540000001,32.8980236]]},"id":"8b44c0a05996fff-13f7ffa18846eef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d65a0a-13dfffe47f808366","8f44c0a059964f2-1396ffbaac624ed8"]},"geometry":{"type":"LineString","coordinates":[[-83.68840540000001,32.8980236],[-83.6883385,32.8981499]]},"id":"8a44c0a05997fff-13be7fcf9c2f8566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d65a0a-13dfffe47f808366","8f44c0a05d65ae3-13fe7feb261629c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6883385,32.8981499],[-83.68832780000001,32.8981701]]},"id":"8c44c0a05d65bff-13f67fe7df309b59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882514,32.8983143]},"id":"8f44c0a05d652ec-13d6f01ae02c6f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d65ae3-13fe7feb261629c0","8f44c0a05d652ec-13d6f01ae02c6f7c"]},"geometry":{"type":"LineString","coordinates":[[-83.68832780000001,32.8981701],[-83.6882514,32.8983143]]},"id":"8b44c0a05d65fff-139fe003065a49ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d61844-1397a0438ee0fde5","8f44c0a05d652ec-13d6f01ae02c6f7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6882514,32.8983143],[-83.6881864,32.898437]]},"id":"8a44c0a05d67fff-13fed02f308e0b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881334,32.898537000000005]},"id":"8f44c0a05d61ab4-13d7a064a96335be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d61ab4-13d7a064a96335be","8f44c0a05d61844-1397a0438ee0fde5"]},"geometry":{"type":"LineString","coordinates":[[-83.6881864,32.898437],[-83.6881334,32.898537000000005]]},"id":"8b44c0a05d61fff-13b6e05411564782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6881087,32.8985836]},"id":"8f44c0a05d61068-13fec0741e953fa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d61ab4-13d7a064a96335be","8f44c0a05d61068-13fec0741e953fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.6881334,32.898537000000005],[-83.6881087,32.8985836]]},"id":"8b44c0a05d61fff-13f6b06c5b7b6461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69126,32.8981797]},"id":"8f44c0a059ae11e-13f678c28a6b9f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a165a-139778a2ea0ffad9","8f44c0a059ae11e-13f678c28a6b9f30"]},"geometry":{"type":"LineString","coordinates":[[-83.69131060000001,32.898005000000005],[-83.6912954,32.8981318],[-83.69126,32.8981797]]},"id":"8944c0a059bffff-13be78acad97e803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911492,32.8983299]},"id":"8f44c0a059ae7a9-13d67907c1d47740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059ae11e-13f678c28a6b9f30","8f44c0a059ae7a9-13d67907c1d47740"]},"geometry":{"type":"LineString","coordinates":[[-83.69126,32.8981797],[-83.6911492,32.8983299]]},"id":"8b44c0a059aefff-13b778e528b9a899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69105230000001,32.8984739]},"id":"8f44c0a059aac34-13be7944575dd002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059aac34-13be7944575dd002","8f44c0a059ae7a9-13d67907c1d47740"]},"geometry":{"type":"LineString","coordinates":[[-83.6911492,32.8983299],[-83.69107840000001,32.8984259],[-83.69105230000001,32.8984739]]},"id":"8a44c0a059affff-13fe79276756e97e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909615,32.898641000000005]},"id":"8f44c0a059aa400-1796f97d161ea45a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059aa400-1796f97d161ea45a","8f44c0a059aac34-13be7944575dd002"]},"geometry":{"type":"LineString","coordinates":[[-83.69105230000001,32.8984739],[-83.6909615,32.898641000000005]]},"id":"8b44c0a059aafff-13de7960b425f30d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908734,32.898803300000004]},"id":"8f44c0a05981a0d-17fe79b42a589150"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059aa400-1796f97d161ea45a","8f44c0a05981a0d-17fe79b42a589150"]},"geometry":{"type":"LineString","coordinates":[[-83.6909615,32.898641000000005],[-83.6908734,32.898803300000004]]},"id":"8944c0a059bffff-17d77998a98522e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05981246-17def9e1565e9b18","8f44c0a05981a0d-17fe79b42a589150"]},"geometry":{"type":"LineString","coordinates":[[-83.6908734,32.898803300000004],[-83.69081440000001,32.8989118],[-83.6908011,32.8989613]]},"id":"8b44c0a05981fff-17be79cd34ef8e25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05981246-17def9e1565e9b18","8f44c0a0598eb31-17df7a00e3a9fd72"]},"geometry":{"type":"LineString","coordinates":[[-83.6908011,32.8989613],[-83.69075600000001,32.8991281],[-83.6907506,32.8991379]]},"id":"8a44c0a0598ffff-179679f0628309ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598e325-179efa2f19ba9e07","8f44c0a0598eb31-17df7a00e3a9fd72"]},"geometry":{"type":"LineString","coordinates":[[-83.6907506,32.8991379],[-83.69067670000001,32.8992716]]},"id":"8c44c0a0598ebff-17f77a17f0fd6e8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598e325-179efa2f19ba9e07","8f44c0a0598e2f5-17fffa59b87bbd6d"]},"geometry":{"type":"LineString","coordinates":[[-83.69067670000001,32.8992716],[-83.69060850000001,32.8993948]]},"id":"8b44c0a0598efff-17d77a446951a1c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598e2f5-17fffa59b87bbd6d","8f44c0a0598a8e0-17bf7a8f092eb600"]},"geometry":{"type":"LineString","coordinates":[[-83.69060850000001,32.8993948],[-83.69054030000001,32.8995181],[-83.6905232,32.8995313]]},"id":"8a44c0a0598ffff-1797fa7295327431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598a01a-179ffada09b45c40","8f44c0a0598a8e0-17bf7a8f092eb600"]},"geometry":{"type":"LineString","coordinates":[[-83.6905232,32.8995313],[-83.69042990000001,32.899603400000004],[-83.6904032,32.8996537]]},"id":"8b44c0a0598afff-17f67ab86a5c27de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0598a01a-179ffada09b45c40","8f44c0a0598a60a-17f77b09875ed70f"]},"geometry":{"type":"LineString","coordinates":[[-83.6904032,32.8996537],[-83.6903272,32.899796900000005]]},"id":"8b44c0a0598afff-17be7af1cf4cb0ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a4c0e-17b77b4acd01ac63","8f44c0a0598a60a-17f77b09875ed70f"]},"geometry":{"type":"LineString","coordinates":[[-83.6903272,32.899796900000005],[-83.6902687,32.899907],[-83.6902228,32.8999255]]},"id":"8944c0a059bffff-1796fb251ea800e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a459a-17f6fbbb070e2389","8f44c0a058a4c0e-17b77b4acd01ac63"]},"geometry":{"type":"LineString","coordinates":[[-83.6902228,32.8999255],[-83.6900619,32.899990200000005],[-83.6900432,32.9000232]]},"id":"8b44c0a058a4fff-17df7b8728307047"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a459a-17f6fbbb070e2389","8f44c0a058a6b8a-17de7bec7a54465c"]},"geometry":{"type":"LineString","coordinates":[[-83.6900432,32.9000232],[-83.68996410000001,32.900163500000005]]},"id":"8a44c0a058a7fff-179e7bd3bed559fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a6214-13b67c206991e546","8f44c0a058a6b8a-17de7bec7a54465c"]},"geometry":{"type":"LineString","coordinates":[[-83.68996410000001,32.900163500000005],[-83.689881,32.900311]]},"id":"8b44c0a058a6fff-17fe7c067674bcc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a6214-13b67c206991e546","8f44c0a058a28a3-13977c72b988da98"]},"geometry":{"type":"LineString","coordinates":[[-83.689881,32.900311],[-83.689836,32.900390800000004],[-83.6897493,32.900465700000005]]},"id":"8a44c0a058a7fff-13de7c455ede5598"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6908234,32.9010915]},"id":"8f44c0a058ac194-139e79d366dcde47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058a3604-13fffbebf1aab4af","8f44c0a058ac194-139e79d366dcde47"]},"geometry":{"type":"LineString","coordinates":[[-83.6899649,32.9010587],[-83.6905239,32.9010915],[-83.6908234,32.9010915]]},"id":"8944c0a058bffff-1397fadfc4daf6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0581205e-13de7943542be0d8","8f44c0a058ac194-139e79d366dcde47"]},"geometry":{"type":"LineString","coordinates":[[-83.6908234,32.9010915],[-83.69086010000001,32.901052],[-83.6910539,32.9007749]]},"id":"8844c0a059fffff-13bef989c5c78c2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05811690-139e77c633d2c228","8f44c0a0581205e-13de7943542be0d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6910539,32.9007749],[-83.6910895,32.900724000000004],[-83.6912155,32.9005019],[-83.6912734,32.900567800000005],[-83.69150280000001,32.900807300000004],[-83.6916351,32.9010173],[-83.6916637,32.9010915]]},"id":"8a44c0a05817fff-13b6f8822b6c5b79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05811690-139e77c633d2c228","8f44c0a058ac194-139e79d366dcde47"]},"geometry":{"type":"LineString","coordinates":[[-83.6916637,32.9010915],[-83.69167850000001,32.9011301],[-83.6916971,32.9012203],[-83.69151520000001,32.901459800000005],[-83.691478,32.901459800000005],[-83.6908234,32.9010915]]},"id":"8844c0a059fffff-1396f895f3c9b712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69021190000001,32.898346700000005]},"id":"8f44c0a05980cc5-13defb519bfb4666"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059aa400-1796f97d161ea45a","8f44c0a05980cc5-13defb519bfb4666"]},"geometry":{"type":"LineString","coordinates":[[-83.6909615,32.898641000000005],[-83.69021190000001,32.898346700000005]]},"id":"8944c0a059bffff-13b6fa6759b309bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6899745,32.898260300000004]},"id":"8f44c0a059862a6-13b6fbe5fc10ae1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059862a6-13b6fbe5fc10ae1a","8f44c0a05980cc5-13defb519bfb4666"]},"geometry":{"type":"LineString","coordinates":[[-83.69021190000001,32.898346700000005],[-83.6899745,32.898260300000004]]},"id":"8a44c0a05987fff-13bffb9bce5db76e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7054629,32.898577]},"id":"8f44c0a2ecd8c00-13fef615b15be3a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd8c00-13fef615b15be3a4","8f44c0a2ecd80b6-17d676187b88c19f"]},"geometry":{"type":"LineString","coordinates":[[-83.7054585,32.898713900000004],[-83.7054629,32.898577]]},"id":"8b44c0a2ecd8fff-17977617171e22fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecdc694-13965612f079924c","8f44c0a2ecd8c00-13fef615b15be3a4"]},"geometry":{"type":"LineString","coordinates":[[-83.7054629,32.898577],[-83.70546730000001,32.898442]]},"id":"8a44c0a2ecdffff-13d676145849a8a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd8953-13fef58956439894","8f44c0a2ecd8b8e-17d6d58a839040af"]},"geometry":{"type":"LineString","coordinates":[[-83.70568560000001,32.898717600000005],[-83.70568750000001,32.898580700000004]]},"id":"8b44c0a2ecd8fff-1797d589e0f98d6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd8953-13fef58956439894","8f44c0a2ecdc2a6-139ed58826a5b6e4"]},"geometry":{"type":"LineString","coordinates":[[-83.70568750000001,32.898580700000004],[-83.70568940000001,32.8984456]]},"id":"8a44c0a2ecdffff-13d6f588bd2f9960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875691,32.895440900000004]},"id":"8f44c0a236f1052-17d691c5534abd7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c6191-179ee24508081502","8f44c0a236f1052-17d691c5534abd7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6875691,32.895440900000004],[-83.68736480000001,32.8957862]]},"id":"8944c0a236fffff-17be82052de2fcd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c6191-179ee24508081502","8f44c0a236f32ad-17d7c2d5ebbdd903"]},"geometry":{"type":"LineString","coordinates":[[-83.68736480000001,32.8957862],[-83.687133,32.89567]]},"id":"8944c0a236fffff-17f6928d793fc835"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68882450000001,32.9007622]},"id":"8f44c0a058b38d9-13d67eb4bd44c13f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6884131,32.9010364]},"id":"8f44c0a05894375-13ffffb5d0cbe3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05894375-13ffffb5d0cbe3d8","8f44c0a058b38d9-13d67eb4bd44c13f"]},"geometry":{"type":"LineString","coordinates":[[-83.68882450000001,32.9007622],[-83.6884131,32.9010364]]},"id":"8944c0a058bffff-13967f354ac81b06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05894375-13ffffb5d0cbe3d8","8f44c0a05890913-13be9029271b4e4e"]},"geometry":{"type":"LineString","coordinates":[[-83.6884131,32.9010364],[-83.6882286,32.9011593]]},"id":"8a44c0a05897fff-13967fef80a20a8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690219,32.8977801]},"id":"8f44c0a059b1ada-13fefb4d2d652cc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6904749,32.8978783]},"id":"8f44c0a05984885-13b7faad30c0fe02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05984885-13b7faad30c0fe02","8f44c0a059b1ada-13fefb4d2d652cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.690219,32.8977801],[-83.6904749,32.8978783]]},"id":"8944c0a059bffff-13977afd3bd61335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05984885-13b7faad30c0fe02","8f44c0a059ae11e-13f678c28a6b9f30"]},"geometry":{"type":"LineString","coordinates":[[-83.6904749,32.8978783],[-83.69126,32.8981797]]},"id":"8944c0a059bffff-139679b7ea144497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.690301,32.898188000000005]},"id":"8f44c0a059846f0-13f7fb19e315f981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059846f0-13f7fb19e315f981","8f44c0a059aac34-13be7944575dd002"]},"geometry":{"type":"LineString","coordinates":[[-83.69105230000001,32.8984739],[-83.690301,32.898188000000005]]},"id":"8944c0a059bffff-13d6fa2f2df374a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900583,32.8980957]},"id":"8f44c0a05986b9e-13bffbb196d46676"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05986b9e-13bffbb196d46676","8f44c0a059846f0-13f7fb19e315f981"]},"geometry":{"type":"LineString","coordinates":[[-83.690301,32.898188000000005],[-83.6900583,32.8980957]]},"id":"8a44c0a05987fff-13defb65c970a234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6942355,32.901361300000005]},"id":"8f44c0a0582ba5a-13b6f17ed21d0b7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6941877,32.9012923]},"id":"8f44c0a0582ba11-139ff19cb6bce816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0582ba5a-13b6f17ed21d0b7b","8f44c0a0582ba11-139ff19cb6bce816"]},"geometry":{"type":"LineString","coordinates":[[-83.6942355,32.901361300000005],[-83.6941877,32.9012923]]},"id":"8c44c0a0582bbff-13b7718dc52db1e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940148,32.901042600000004]},"id":"8f44c0a058286c2-13fff208c2c4b3c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058286c2-13fff208c2c4b3c5","8f44c0a0582ba11-139ff19cb6bce816"]},"geometry":{"type":"LineString","coordinates":[[-83.6941877,32.9012923],[-83.6940148,32.901042600000004]]},"id":"8b44c0a0582bfff-13bff1d2c2299ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236e82a6-17b7fdedf2d80845","8f44c0a236e8262-17be7da9234f115b"]},"geometry":{"type":"LineString","coordinates":[[-83.6892526,32.896458200000005],[-83.6891425,32.8964154]]},"id":"8c44c0a236e83ff-17b77dcb9fbd3770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236e82a6-17b7fdedf2d80845","8f44c0a236c551b-17b680849ac117dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6891425,32.8964154],[-83.6880823,32.8960032]]},"id":"8944c0a236fffff-17b6ff3944c87eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901378,32.8979396]},"id":"8f44c0a05986960-13de7b7fe27cfbc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69038660000001,32.8980356]},"id":"8f44c0a059840ab-139e7ae460ca1799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05986960-13de7b7fe27cfbc8","8f44c0a059840ab-139e7ae460ca1799"]},"geometry":{"type":"LineString","coordinates":[[-83.6901378,32.8979396],[-83.69038660000001,32.8980356]]},"id":"8a44c0a05987fff-13fe7b322c7dc056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059840ab-139e7ae460ca1799","8f44c0a059ae7a9-13d67907c1d47740"]},"geometry":{"type":"LineString","coordinates":[[-83.69038660000001,32.8980356],[-83.6911492,32.8983299]]},"id":"8944c0a059bffff-13f679f6136d173d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5adc95-17b7708e4e5b7519","8f44c0a2e5a8310-179ef1229c9b8a97"]},"geometry":{"type":"LineString","coordinates":[[-83.70117400000001,32.8991095],[-83.7011507,32.8994583],[-83.7009367,32.8994505]]},"id":"8a44c0a2e5affff-17def0b1b7d5d6f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70057390000001,32.899437400000004]},"id":"8f44c0a2e5aab18-17966205583c1f47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5aab18-17966205583c1f47","8f44c0a2e5a8310-179ef1229c9b8a97"]},"geometry":{"type":"LineString","coordinates":[[-83.7009367,32.8994505],[-83.70057390000001,32.899437400000004]]},"id":"8a44c0a2e5affff-179ee193f669b2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b2188-13b67dcde84a5f6b","8f44c0a059b2d69-13defda9ceb86a28"]},"geometry":{"type":"LineString","coordinates":[[-83.6892516,32.8973],[-83.6892375,32.8973626],[-83.6891938,32.897434100000005]]},"id":"8b44c0a059b2fff-13f7fdb866ba29b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b2188-13b67dcde84a5f6b","8f44c0a05994cf5-13f77e4435dfc076"]},"geometry":{"type":"LineString","coordinates":[[-83.6891938,32.897434100000005],[-83.68900450000001,32.8977714]]},"id":"8944c0a059bffff-139ffe0919e6a32e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236c9448-13967f31ea314055","8f44c0a05994cf5-13f77e4435dfc076"]},"geometry":{"type":"LineString","coordinates":[[-83.68900450000001,32.8977714],[-83.6886242,32.897623]]},"id":"8744c0a05ffffff-13d6febb1ed9e5b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68824930000001,32.9003199]},"id":"8f44c0a058b2ca4-13bff01c3b9dcffb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058b2ca4-13bff01c3b9dcffb","8f44c0a05d49a92-13ff80bf429d8c1d"]},"geometry":{"type":"LineString","coordinates":[[-83.68824930000001,32.9003199],[-83.6879433,32.9005784],[-83.68798840000001,32.9006224]]},"id":"8944c0a058bffff-139f9086ec7d8367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05894375-13ffffb5d0cbe3d8","8f44c0a05d49a92-13ff80bf429d8c1d"]},"geometry":{"type":"LineString","coordinates":[[-83.68798840000001,32.9006224],[-83.6884131,32.9010364]]},"id":"8944c0a058bffff-13fee03a84863963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058b45b4-179e7eec09a1c33c","8f44c0a058b54d6-13b7fe064ad29300"]},"geometry":{"type":"LineString","coordinates":[[-83.688736,32.899853],[-83.6886011,32.9000201],[-83.68910360000001,32.9003132]]},"id":"8a44c0a058b7fff-17b77ec24ee88df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68883530000001,32.9005852]},"id":"8f44c0a058b064d-13d7feadf48fdfb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058b54d6-13b7fe064ad29300","8f44c0a058b064d-13d7feadf48fdfb5"]},"geometry":{"type":"LineString","coordinates":[[-83.68910360000001,32.9003132],[-83.68883530000001,32.9005852]]},"id":"8a44c0a058b7fff-13fefe5a249818a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05b92755-17f7756723d70a80","8f44c0a058cb388-179775bd70e9df31"]},"geometry":{"type":"LineString","coordinates":[[-83.69263500000001,32.9061491],[-83.6921188,32.9058082],[-83.69249690000001,32.905397400000005]]},"id":"8744c0a05ffffff-179f761cfa5be026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69276860000001,32.9051023]},"id":"8f44c0a058c9508-13def513adb7ce06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058cb388-179775bd70e9df31","8f44c0a058c9508-13def513adb7ce06"]},"geometry":{"type":"LineString","coordinates":[[-83.69249690000001,32.905397400000005],[-83.69276860000001,32.9051023]]},"id":"8a44c0a058cffff-17b775689b903669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7041954,32.8999662]},"id":"8f44c0a2e5726a8-17def92de52366a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5764d8-17967911f67a0d24","8f44c0a2e5726a8-17def92de52366a6"]},"geometry":{"type":"LineString","coordinates":[[-83.7042401,32.899437400000004],[-83.70420460000001,32.8994641],[-83.7041954,32.8999662]]},"id":"8a44c0a2e577fff-17b6d929e06401b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5726a8-17def92de52366a6","8f44c0a2e554016-17f6f93272f27917"]},"geometry":{"type":"LineString","coordinates":[[-83.7041954,32.8999662],[-83.70418810000001,32.9002314]]},"id":"8944c0a2e57ffff-17b7d93027e2b939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6910517,32.895464600000004]},"id":"8f44c0a23640736-17d77944bd435670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23640736-17d77944bd435670","8f44c0a23643d14-17b7f989a89d10a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6910517,32.895464600000004],[-83.6909414,32.8956219]]},"id":"8a44c0a23647fff-1796f96733e397a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23643c98-17f7f9b7ff9526cb","8f44c0a23643d14-17b7f989a89d10a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6909414,32.8956219],[-83.69086730000001,32.8957275]]},"id":"8c44c0a23643dff-17d6f9a0cccec205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6907742,32.8958602]},"id":"8f44c0a2364349d-17def9f22505a078"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23643c98-17f7f9b7ff9526cb","8f44c0a2364349d-17def9f22505a078"]},"geometry":{"type":"LineString","coordinates":[[-83.69086730000001,32.8957275],[-83.6907742,32.8958602]]},"id":"8a44c0a23647fff-179f79d51e7cf213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364349d-17def9f22505a078","8f44c0a2365cb89-1797fa1bae6b7894"]},"geometry":{"type":"LineString","coordinates":[[-83.6907742,32.8958602],[-83.6907078,32.895954800000005]]},"id":"8b44c0a2365cfff-17f67a06eec2ee5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905468,32.896130400000004]},"id":"8f44c0a2365c291-17f7fa8048d55de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2365c291-17f7fa8048d55de9","8f44c0a2365cb89-1797fa1bae6b7894"]},"geometry":{"type":"LineString","coordinates":[[-83.6907078,32.895954800000005],[-83.6906697,32.8960092],[-83.6905468,32.896130400000004]]},"id":"8b44c0a2365cfff-17be7a4be3288a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0582b0cb-13bf720bf83f2f49","8f44c0a0582ba11-139ff19cb6bce816"]},"geometry":{"type":"LineString","coordinates":[[-83.6941877,32.9012923],[-83.69400970000001,32.9013687]]},"id":"8b44c0a0582bfff-13b7f1d45c20f8a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0582b0cb-13bf720bf83f2f49","8f44c0a0580c064-13def3068a15567b"]},"geometry":{"type":"LineString","coordinates":[[-83.69400970000001,32.9013687],[-83.69389360000001,32.9014186],[-83.6938389,32.9014253],[-83.6936088,32.901393]]},"id":"8944c0a0583ffff-13d6f287480260cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05984932-13fe7a8e08f4f328","8f44c0a059a23a2-13b7fa669460e0cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6905248,32.8977894],[-83.69058790000001,32.8976665]]},"id":"8b44c0a059a2fff-13de7a7a40ee5427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a23a2-13b7fa669460e0cb","8f44c0a059a28e9-13dffa3338a440cd"]},"geometry":{"type":"LineString","coordinates":[[-83.69058790000001,32.8976665],[-83.6906701,32.897506400000005]]},"id":"8b44c0a059a2fff-13fffa4cea565091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a62e3-13ff7a00b37d8d0f","8f44c0a059a28e9-13dffa3338a440cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6906701,32.897506400000005],[-83.69075090000001,32.8973491]]},"id":"8a44c0a059a7fff-139e7a19f647430a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059a62e3-13ff7a00b37d8d0f","8f44c0a059a6a1c-13fe79c6cb37703c"]},"geometry":{"type":"LineString","coordinates":[[-83.69075090000001,32.8973491],[-83.69084360000001,32.8971685]]},"id":"8b44c0a059a6fff-13b6f9e3ccbf821e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b6d2-17ff7d882ef7c9ba","8f44c0a058b5ce6-17d77dace460e047"]},"geometry":{"type":"LineString","coordinates":[[-83.6892466,32.900158600000005],[-83.68930540000001,32.9000403]]},"id":"8b44c0a058b5fff-17b67d9a840e2a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b6d2-17ff7d882ef7c9ba","8f44c0a0599b71e-17befd6635ab4a54"]},"geometry":{"type":"LineString","coordinates":[[-83.68930540000001,32.9000403],[-83.68935970000001,32.8999311]]},"id":"8c44c0a0599b7ff-17df7d7727f20b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599b1a1-17dffd38c3ceb2b0","8f44c0a0599b71e-17befd6635ab4a54"]},"geometry":{"type":"LineString","coordinates":[[-83.68935970000001,32.8999311],[-83.6894324,32.8997849]]},"id":"8b44c0a0599bfff-179f7d4f8fda4e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599bd69-179f7d19da7c8f2b","8f44c0a0599b1a1-17dffd38c3ceb2b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6894324,32.8997849],[-83.6894819,32.8996854]]},"id":"8b44c0a0599bfff-17befd294feb5def"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69101690000001,32.9050473]},"id":"8f44c0a058dbcf3-13b6f95a7f018f2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6911927,32.9048664]},"id":"8f44c0a058d875a-13d7f8ec94550071"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058d875a-13d7f8ec94550071","8f44c0a058dbcf3-13b6f95a7f018f2c"]},"geometry":{"type":"LineString","coordinates":[[-83.69101690000001,32.9050473],[-83.6910342,32.9051512],[-83.69139170000001,32.9053646],[-83.6919395,32.9047348],[-83.69160020000001,32.904519900000004],[-83.6912403,32.9048966],[-83.6911927,32.9048664]]},"id":"8744c0a05ffffff-13f778274c99bb8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058d875a-13d7f8ec94550071","8f44c0a058dbcf3-13b6f95a7f018f2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6911927,32.9048664],[-83.69101690000001,32.9050473]]},"id":"8a44c0a058dffff-13fe79238ac2b466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058da351-1396f99eede0ad68","8f44c0a058dbcf3-13b6f95a7f018f2c"]},"geometry":{"type":"LineString","coordinates":[[-83.69101690000001,32.9050473],[-83.6909074,32.9049672]]},"id":"8a44c0a058dffff-139ff97cb37ee6e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058e3b4e-17de74eabd6f562e","8f44c0a058eec54-17be74d3eac95c36"]},"geometry":{"type":"LineString","coordinates":[[-83.6928706,32.9034178],[-83.6928273,32.9033281],[-83.6928341,32.9032325]]},"id":"8944c0a058fffff-1797f4e7013c99e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6927423,32.9029509]},"id":"8f44c0a058e02a8-179e75241ceab411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058e3b4e-17de74eabd6f562e","8f44c0a058e02a8-179e75241ceab411"]},"geometry":{"type":"LineString","coordinates":[[-83.6928341,32.9032325],[-83.6928374,32.9031864],[-83.6927423,32.9029509]]},"id":"8a44c0a058e7fff-17ff7501fb547917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6871962,32.8982618]},"id":"8f44c0a05d6211c-13b7a2ae640ae052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d70894-13ffc4bc4763a317","8f44c0a05d6211c-13b7a2ae640ae052"]},"geometry":{"type":"LineString","coordinates":[[-83.6863548,32.897961200000005],[-83.6864714,32.897981300000005],[-83.6871962,32.8982618]]},"id":"8944c0a05d7ffff-13d793b3a48ffce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d61068-13fec0741e953fa3","8f44c0a05d6211c-13b7a2ae640ae052"]},"geometry":{"type":"LineString","coordinates":[[-83.6871962,32.8982618],[-83.6872798,32.8982733],[-83.6881087,32.8985836]]},"id":"8a44c0a05d67fff-1397818ff6ab98d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c26ca3-13bf9af635eb507a","8f44c0a05c3580c-13ffab7ef898c096"]},"geometry":{"type":"LineString","coordinates":[[-83.68358570000001,32.8986034],[-83.68380450000001,32.8984729]]},"id":"8944c0a05c3ffff-13d6eb3a9460c2cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c3496d-13b6dc262d65793c","8f44c0a05c26ca3-13bf9af635eb507a"]},"geometry":{"type":"LineString","coordinates":[[-83.68380450000001,32.8984729],[-83.6842878,32.8981848],[-83.68401490000001,32.8978492],[-83.6833182,32.8982541]]},"id":"8a44c0a05d1ffff-13d7bab98cc31671"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864852,32.8989307]},"id":"8f44c0a05d46715-17d7b46ace30ff21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d55bae-17d794f260b7296b","8f44c0a05d46715-17d7b46ace30ff21"]},"geometry":{"type":"LineString","coordinates":[[-83.6862682,32.8989241],[-83.6864852,32.8989307]]},"id":"8944c0a05d7ffff-17d7a4ae952db2c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d46b1c-1796a3aec72ab6c0","8f44c0a05d46715-17d7b46ace30ff21"]},"geometry":{"type":"LineString","coordinates":[[-83.6864852,32.8989307],[-83.68664190000001,32.8989302],[-83.68669650000001,32.898903600000004],[-83.68678600000001,32.8988194]]},"id":"8b44c0a05d46fff-17b6f405ed7adffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7023759,32.899154100000004]},"id":"8f44c0a2e51c3a9-17d75d9f13b0eab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50e6c2-17975c125c48d474","8f44c0a2e51c3a9-17d75d9f13b0eab7"]},"geometry":{"type":"LineString","coordinates":[[-83.7023759,32.899154100000004],[-83.7023822,32.899406500000005],[-83.7029875,32.8994044],[-83.70301070000001,32.899467300000005]]},"id":"8944c0a2e53ffff-17de7d03fa67573d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50e6c2-17975c125c48d474","8f44c0a2e50b514-17bfdba758c7d8f8"]},"geometry":{"type":"LineString","coordinates":[[-83.70301070000001,32.899467300000005],[-83.7031819,32.8999321]]},"id":"8a44c0a2e50ffff-17be5bdcd440dcc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70322080000001,32.9000378]},"id":"8f44c0a2e50b454-17fffb8f0aef2aca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50b454-17fffb8f0aef2aca","8f44c0a2e50b514-17bfdba758c7d8f8"]},"geometry":{"type":"LineString","coordinates":[[-83.7031819,32.8999321],[-83.70322080000001,32.9000378]]},"id":"8c44c0a2e50b5ff-17defb9b3f9d01bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70498660000001,32.898265800000004]},"id":"8f44c0a2ecd3261-13be773f6e81ebba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7047174,32.8985665]},"id":"8f44c0a2e52d0ec-13f657e7a92fe9cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd3261-13be773f6e81ebba","8f44c0a2e52d0ec-13f657e7a92fe9cd"]},"geometry":{"type":"LineString","coordinates":[[-83.70498660000001,32.898265800000004],[-83.7047268,32.898262100000004],[-83.7047174,32.8985665]]},"id":"8744c0a2effffff-13dff7bdfe81679c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e529901-17d6f7eb38cae9f7","8f44c0a2e52d0ec-13f657e7a92fe9cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7047174,32.8985665],[-83.7047117,32.8987502]]},"id":"8a44c0a2e52ffff-179fd7e976d4d4f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7043027,32.8988967]},"id":"8f44c0a2e52b968-17b678ead8463295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e529901-17d6f7eb38cae9f7","8f44c0a2e52b968-17b678ead8463295"]},"geometry":{"type":"LineString","coordinates":[[-83.7047117,32.8987502],[-83.7047065,32.898915800000005],[-83.7043027,32.8988967]]},"id":"8a44c0a2e52ffff-17bf784789fad478"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50b454-17fffb8f0aef2aca","8f44c0a2e50b8c0-17d75af4aa8b758f"]},"geometry":{"type":"LineString","coordinates":[[-83.7034678,32.899944500000004],[-83.70322080000001,32.9000378]]},"id":"8b44c0a2e50bfff-17dedb41d95db37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50b454-17fffb8f0aef2aca","8f44c0a2e50b6da-17fffb8498bf0d5d"]},"geometry":{"type":"LineString","coordinates":[[-83.70322080000001,32.9000378],[-83.70318680000001,32.9000469],[-83.7032375,32.9002398]]},"id":"8844c0a2e5fffff-17b67b9532a01ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7026309,32.900637200000006]},"id":"8f44c0a2e420784-13f65cffba3f891f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e420784-13f65cffba3f891f","8f44c0a2e50b6da-17fffb8498bf0d5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7032375,32.9002398],[-83.7026347,32.9002387],[-83.7026309,32.900637200000006]]},"id":"8a44c0a2e427fff-13befc8c6ff2b098"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059804c9-13d6fb8ae324afba","8f44c0a05980cc5-13defb519bfb4666"]},"geometry":{"type":"LineString","coordinates":[[-83.69012020000001,32.8985101],[-83.69021190000001,32.898346700000005]]},"id":"8b44c0a05980fff-139ffb6e4962de34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059846f0-13f7fb19e315f981","8f44c0a05980cc5-13defb519bfb4666"]},"geometry":{"type":"LineString","coordinates":[[-83.69021190000001,32.898346700000005],[-83.690301,32.898188000000005]]},"id":"8a44c0a05987fff-13bf7b35b807f1d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059846f0-13f7fb19e315f981","8f44c0a059840ab-139e7ae460ca1799"]},"geometry":{"type":"LineString","coordinates":[[-83.690301,32.898188000000005],[-83.69038660000001,32.8980356]]},"id":"8b44c0a05984fff-13d7faff220b9630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05984885-13b7faad30c0fe02","8f44c0a059840ab-139e7ae460ca1799"]},"geometry":{"type":"LineString","coordinates":[[-83.69038660000001,32.8980356],[-83.6904749,32.8978783]]},"id":"8b44c0a05984fff-13f77ac8d1c50e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05984885-13b7faad30c0fe02","8f44c0a05984932-13fe7a8e08f4f328"]},"geometry":{"type":"LineString","coordinates":[[-83.6904749,32.8978783],[-83.6905248,32.8977894]]},"id":"8c44c0a059849ff-139e7a9d9981235d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70397770000001,32.8999546]},"id":"8f44c0a2e509a83-17d7f9b5f0e7a05a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e509a83-17d7f9b5f0e7a05a","8f44c0a2e554486-17f6d9c0c9c3bc5f"]},"geometry":{"type":"LineString","coordinates":[[-83.70397770000001,32.8999546],[-83.7039604,32.900228500000004]]},"id":"8944c0a2e57ffff-179f59bb5e2eff66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e554486-17f6d9c0c9c3bc5f","8f44c0a2e553db1-139fda0aec8b4adb"]},"geometry":{"type":"LineString","coordinates":[[-83.7039604,32.900228500000004],[-83.70394440000001,32.900655300000004],[-83.7039584,32.9007054],[-83.70403200000001,32.900814100000005],[-83.7038418,32.900888900000005]]},"id":"8a44c0a2e557fff-13f7f9c3f1fdf8fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236e8aeb-17967d88113bdd06","8f44c0a059b4551-17d6fc95ab239284"]},"geometry":{"type":"LineString","coordinates":[[-83.6893055,32.8963589],[-83.6898726,32.8965801],[-83.68969340000001,32.896897]]},"id":"8844c0a237fffff-17967ca9825311be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b4551-17d6fc95ab239284","8f44c0a059b6740-13f7fd8107c3cdb6"]},"geometry":{"type":"LineString","coordinates":[[-83.68969340000001,32.896897],[-83.6895058,32.897229],[-83.6893168,32.897155000000005]]},"id":"8a44c0a059b7fff-13d67cf92d6d7271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236cd818-139ffe621568b3d0","8f44c0a059b6740-13f7fd8107c3cdb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6893168,32.897155000000005],[-83.6889567,32.897013900000005]]},"id":"8844c0a237fffff-13d7fdf19f710226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5764d5-17f7d911a925f7e3","8f44c0a2e5094c2-17dfda86a055926f"]},"geometry":{"type":"LineString","coordinates":[[-83.7042406,32.8994173],[-83.70357130000001,32.8994054],[-83.7035535,32.899479],[-83.70364380000001,32.8999613]]},"id":"8944c0a2e53ffff-17d7fa3c3e3b4294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50944d-17df5a454af5a8c2","8f44c0a2e5094c2-17dfda86a055926f"]},"geometry":{"type":"LineString","coordinates":[[-83.70364380000001,32.8999613],[-83.70374840000001,32.8999632]]},"id":"8b44c0a2e509fff-17de7a65fda3b2d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50944d-17df5a454af5a8c2","8f44c0a2e509a83-17d7f9b5f0e7a05a"]},"geometry":{"type":"LineString","coordinates":[[-83.70374840000001,32.8999632],[-83.70397770000001,32.8999546]]},"id":"8b44c0a2e509fff-17de59fd9da19768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e509a83-17d7f9b5f0e7a05a","8f44c0a2e5726a8-17def92de52366a6"]},"geometry":{"type":"LineString","coordinates":[[-83.70397770000001,32.8999546],[-83.7041954,32.8999662]]},"id":"8944c0a2e57ffff-17df5971fbbebe3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7044762,32.8967703]},"id":"8f44c0a2ec8825c-1797787e6f50d4b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7036367,32.8970155]},"id":"8f44c0a2e524cdc-139efa8b1cb259f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e524cdc-139efa8b1cb259f3","8f44c0a2ec8825c-1797787e6f50d4b6"]},"geometry":{"type":"LineString","coordinates":[[-83.7044762,32.8967703],[-83.7044736,32.8970356],[-83.7036367,32.8970155]]},"id":"8944c0a2ecbffff-139ed9466b8a024e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7025218,32.896926900000004]},"id":"8f44c0a2e5348ce-17f75d43e56de2f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5348ce-17f75d43e56de2f8","8f44c0a2e524cdc-139efa8b1cb259f3"]},"geometry":{"type":"LineString","coordinates":[[-83.7036367,32.8970155],[-83.70334290000001,32.8970026],[-83.7030472,32.896952500000005],[-83.7028568,32.8969365],[-83.7025218,32.896926900000004]]},"id":"8744c0a2effffff-17fe5be7370161ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68957590000001,32.8983197]},"id":"8f44c0a05995301-13dffcdf1d2f9321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059828a8-139ffc1a67c08746","8f44c0a05995301-13dffcdf1d2f9321"]},"geometry":{"type":"LineString","coordinates":[[-83.68957590000001,32.8983197],[-83.6898906,32.898425100000004]]},"id":"8944c0a059bffff-13fefc7cc3a21b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059828a8-139ffc1a67c08746","8f44c0a059862a6-13b6fbe5fc10ae1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6898906,32.898425100000004],[-83.6899745,32.898260300000004]]},"id":"8a44c0a05987fff-13de7c002195b9b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05986b9e-13bffbb196d46676","8f44c0a059862a6-13b6fbe5fc10ae1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6899745,32.898260300000004],[-83.6900583,32.8980957]]},"id":"8b44c0a05986fff-13f77bcbcabbe0f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05986b9e-13bffbb196d46676","8f44c0a05986960-13de7b7fe27cfbc8"]},"geometry":{"type":"LineString","coordinates":[[-83.6900583,32.8980957],[-83.6901378,32.8979396]]},"id":"8b44c0a05986fff-139f7b98c194a2cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05986960-13de7b7fe27cfbc8","8f44c0a059b1ada-13fefb4d2d652cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.6901378,32.8979396],[-83.690219,32.8977801]]},"id":"8944c0a059bffff-13be7b668d0e4338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898989,32.897736800000004]},"id":"8f44c0a059b14e9-13dffc153799d0e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b14e9-13dffc153799d0e6","8f44c0a059b1ada-13fefb4d2d652cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.690219,32.8977801],[-83.6898989,32.897736800000004]]},"id":"8b44c0a059b1fff-13ff7bb12d545c01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b1cee-13fe7bdf34cbcacf","8f44c0a059b14e9-13dffc153799d0e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6899853,32.8975809],[-83.6898989,32.897736800000004]]},"id":"8b44c0a059b1fff-13befbfa3cfd378e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059b14e9-13dffc153799d0e6","8f44c0a05995301-13dffcdf1d2f9321"]},"geometry":{"type":"LineString","coordinates":[[-83.6898989,32.897736800000004],[-83.68957590000001,32.8983197]]},"id":"8944c0a059bffff-1397fc7a2594ffb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894656,32.898793500000004]},"id":"8f44c0a05991352-17f7fd240e104bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05995301-13dffcdf1d2f9321","8f44c0a05991352-17f7fd240e104bd3"]},"geometry":{"type":"LineString","coordinates":[[-83.68957590000001,32.8983197],[-83.6894177,32.8986052],[-83.6895442,32.898654900000004],[-83.6894656,32.898793500000004]]},"id":"8944c0a059bffff-13f7fd1164294143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893806,32.8989482]},"id":"8f44c0a0599e958-17d6fd592fed8a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599e958-17d6fd592fed8a96","8f44c0a05991352-17f7fd240e104bd3"]},"geometry":{"type":"LineString","coordinates":[[-83.6894656,32.898793500000004],[-83.6893806,32.8989482]]},"id":"8a44c0a0599ffff-17b67d3e915574cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70495840000001,32.8991813]},"id":"8f44c0a2e574135-17f65751009045c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7049772,32.8985701]},"id":"8f44c0a2e52da6c-13f6574546b60ce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e574135-17f65751009045c2","8f44c0a2e52da6c-13f6574546b60ce5"]},"geometry":{"type":"LineString","coordinates":[[-83.70495840000001,32.8991813],[-83.7049772,32.8985701]]},"id":"8844c0a2e5fffff-17b7574b222af8e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd3261-13be773f6e81ebba","8f44c0a2e52da6c-13f6574546b60ce5"]},"geometry":{"type":"LineString","coordinates":[[-83.7049772,32.8985701],[-83.70498660000001,32.898265800000004]]},"id":"8944c0a2ecfffff-13975742587a0051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70500220000001,32.8977604]},"id":"8f44c0a2ecd03aa-13fe5735af0cca98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd3261-13be773f6e81ebba","8f44c0a2ecd03aa-13fe5735af0cca98"]},"geometry":{"type":"LineString","coordinates":[[-83.70498660000001,32.898265800000004],[-83.70500220000001,32.8977604]]},"id":"8a44c0a2ecd7fff-139e773a87ce9412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7036295,32.8972129]},"id":"8f44c0a2e524630-13965a8f9bfaca65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e524630-13965a8f9bfaca65","8f44c0a2ecd03aa-13fe5735af0cca98"]},"geometry":{"type":"LineString","coordinates":[[-83.70500220000001,32.8977604],[-83.7050181,32.8972466],[-83.7036295,32.8972129]]},"id":"8844c0a2edfffff-13ded869c1bf10bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70244500000001,32.897184200000005]},"id":"8f44c0a2e530924-13967d73e7a0bf42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e530924-13967d73e7a0bf42","8f44c0a2e524630-13965a8f9bfaca65"]},"geometry":{"type":"LineString","coordinates":[[-83.7036295,32.8972129],[-83.70244500000001,32.897184200000005]]},"id":"8944c0a2e53ffff-139f5c01bd401ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a233b17a8-13de6fa35a75355f","8f44c0a233b0a5c-1397ffa2980de7e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6949975,32.890636300000004],[-83.6949963,32.8909794]]},"id":"8a44c0a233b7fff-13f6efa2f9e3548e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a233a349d-13bf7de7b0c7bd11","8f44c0a233b17a8-13de6fa35a75355f"]},"geometry":{"type":"LineString","coordinates":[[-83.6949963,32.8909794],[-83.6949958,32.891113000000004],[-83.69570610000001,32.8911285]]},"id":"8944c0a233bffff-13bf6ee8c23865bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a233a3321-13f6ecf664f72aff","8f44c0a233a349d-13bf7de7b0c7bd11"]},"geometry":{"type":"LineString","coordinates":[[-83.69570610000001,32.8911285],[-83.6957562,32.891185300000004],[-83.695859,32.8912355],[-83.69594430000001,32.8912311],[-83.69609220000001,32.8911886]]},"id":"8944c0a233bffff-13ff7d75dfc9e5a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928311,32.903815]},"id":"8f44c0a058ea8b6-13b674ec9cfaad99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058c11b2-13bff6501aa729cc","8f44c0a058ea8b6-13b674ec9cfaad99"]},"geometry":{"type":"LineString","coordinates":[[-83.6928311,32.903815],[-83.69271690000001,32.903913100000004],[-83.6925417,32.9037969],[-83.69246940000001,32.9037969],[-83.69226230000001,32.9040124]]},"id":"8944c0a058fffff-13d7f5a2f4aad78c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6922981,32.9043243]},"id":"8f44c0a058ce9ad-13f6f639bbd47e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058c11b2-13bff6501aa729cc","8f44c0a058ce9ad-13f6f639bbd47e36"]},"geometry":{"type":"LineString","coordinates":[[-83.69226230000001,32.9040124],[-83.6921356,32.9041443],[-83.6921293,32.9042082],[-83.6922981,32.9043243]]},"id":"8944c0a058fffff-1396f6796f3f1afe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6864994,32.8987768]},"id":"8f44c0a05d46ccc-17f78461ebea8e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d46ccc-17f78461ebea8e62","8f44c0a05d46715-17d7b46ace30ff21"]},"geometry":{"type":"LineString","coordinates":[[-83.6864852,32.8989307],[-83.6864994,32.8987768]]},"id":"8b44c0a05d46fff-1797a46655b750b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6866102,32.8987847]},"id":"8f44c0a05d46104-17fef41ca9ce8db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d46104-17fef41ca9ce8db4","8f44c0a05d46ccc-17f78461ebea8e62"]},"geometry":{"type":"LineString","coordinates":[[-83.6864994,32.8987768],[-83.6865068,32.898696300000005],[-83.6865734,32.898481100000005],[-83.6866971,32.8985136],[-83.6866286,32.8987277],[-83.6866102,32.8987847]]},"id":"8944c0a05d7ffff-1797a4245fa8208d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d46104-17fef41ca9ce8db4","8f44c0a05d46ccc-17f78461ebea8e62"]},"geometry":{"type":"LineString","coordinates":[[-83.6866102,32.8987847],[-83.6864994,32.8987768]]},"id":"8b44c0a05d46fff-17fe843f44f27df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d61068-13fec0741e953fa3","8f44c0a059922d4-17967f5eeb7bdebe"]},"geometry":{"type":"LineString","coordinates":[[-83.6881087,32.8985836],[-83.68817200000001,32.898622800000005],[-83.68808820000001,32.8987965],[-83.68855140000001,32.8989776],[-83.6886923,32.8987357],[-83.68866820000001,32.8986825],[-83.6885522,32.8986375]]},"id":"8744c0a05ffffff-17fe7fc16319c679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d61ab4-13d7a064a96335be","8f44c0a059922d4-17967f5eeb7bdebe"]},"geometry":{"type":"LineString","coordinates":[[-83.6885522,32.8986375],[-83.6882748,32.8985301],[-83.6881334,32.898537000000005]]},"id":"8944c0a05d7ffff-13f6ffdfc6c9b51a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05915440-13d675403938ae85","8f44c0a05915c28-13dff50efd0929d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6926973,32.8975111],[-83.6927761,32.8973279]]},"id":"8b44c0a05915fff-1397752798042c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059337b2-13de750ec06b27fa","8f44c0a05915c28-13dff50efd0929d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6927761,32.8973279],[-83.6927828,32.897312400000004],[-83.6927764,32.8971206]]},"id":"8944c0a0593ffff-139ff50cc02b18de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059337b2-13de750ec06b27fa","8f44c0a2364956d-1796f6e03dd59cf3"]},"geometry":{"type":"LineString","coordinates":[[-83.6927764,32.8971206],[-83.6930442,32.8966773],[-83.6923031,32.8963533],[-83.6920317,32.8967983]]},"id":"8844c0a059fffff-17bff57ec3472828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236496b5-17f677180f6245c8","8f44c0a2364956d-1796f6e03dd59cf3"]},"geometry":{"type":"LineString","coordinates":[[-83.6920317,32.8967983],[-83.6919424,32.8969571]]},"id":"8b44c0a23649fff-17d6f6fc25b3da63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236496b5-17f677180f6245c8","8f44c0a059165aa-1396f783e1001934"]},"geometry":{"type":"LineString","coordinates":[[-83.6919424,32.8969571],[-83.6917698,32.8972041]]},"id":"8844c0a059fffff-13d7774dfb9609e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecde2ae-13fe76ad691d81bd","8f44c0a2ecd8c00-13fef615b15be3a4"]},"geometry":{"type":"LineString","coordinates":[[-83.7054629,32.898577],[-83.7052202,32.898573500000005]]},"id":"8a44c0a2ecdffff-13ffd66191e3c67d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecde2ae-13fe76ad691d81bd","8f44c0a2e52da6c-13f6574546b60ce5"]},"geometry":{"type":"LineString","coordinates":[[-83.7052202,32.898573500000005],[-83.7049772,32.8985701]]},"id":"8a44c0a2ecdffff-13f776f95a0cf756"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e52da6c-13f6574546b60ce5","8f44c0a2e52d0ec-13f657e7a92fe9cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7049772,32.8985701],[-83.7047174,32.8985665]]},"id":"8b44c0a2e52dfff-13f777967cf18ab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e528318-17dfd8e633b3c7a0","8f44c0a2e52d0ec-13f657e7a92fe9cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7047174,32.8985665],[-83.7043175,32.898561],[-83.7043101,32.8987293]]},"id":"8a44c0a2e52ffff-13f7788a5cb08424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e52b968-17b678ead8463295","8f44c0a2e528318-17dfd8e633b3c7a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7043101,32.8987293],[-83.7043027,32.8988967]]},"id":"8a44c0a2e52ffff-17fe78e880d80bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e52b968-17b678ead8463295","8f44c0a2e52b86d-17dff8ec9a1486f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7043027,32.8988967],[-83.70429990000001,32.898959500000004]]},"id":"8c44c0a2e5295ff-17d658ebbd7c7984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70429080000001,32.8991634]},"id":"8f44c0a2e576d96-17df78f2489db6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e576d96-17df78f2489db6aa","8f44c0a2e52b86d-17dff8ec9a1486f4"]},"geometry":{"type":"LineString","coordinates":[[-83.70429990000001,32.898959500000004],[-83.70429080000001,32.8991634]]},"id":"8b44c0a2e52bfff-179f78ef653e8599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68904900000001,32.898629]},"id":"8f44c0a05993948-179f7e2861404455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05993948-179f7e2861404455","8f44c0a05992aaa-13b6ff267c384e64"]},"geometry":{"type":"LineString","coordinates":[[-83.68904900000001,32.898629],[-83.6886425,32.8984686]]},"id":"8a44c0a05997fff-13df7ea765e6da81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05992aaa-13b6ff267c384e64","8f44c0a05d652ec-13d6f01ae02c6f7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6886425,32.8984686],[-83.6882514,32.8983143]]},"id":"8744c0a05ffffff-13f6ffa0a725f702"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d652ec-13d6f01ae02c6f7c","8f44c0a05d663a4-13ffd244e7ffe0d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6882514,32.8983143],[-83.687365,32.8979645]]},"id":"8a44c0a05d67fff-13dfa12febb55259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d62930-13bea27275f71f64","8f44c0a05d663a4-13ffd244e7ffe0d7"]},"geometry":{"type":"LineString","coordinates":[[-83.687365,32.8979645],[-83.68729210000001,32.898093]]},"id":"8b44c0a05d66fff-1396825bb3d22fb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d62930-13bea27275f71f64","8f44c0a05d6211c-13b7a2ae640ae052"]},"geometry":{"type":"LineString","coordinates":[[-83.68729210000001,32.898093],[-83.6871962,32.8982618]]},"id":"8a44c0a05d67fff-13f6e2907107db4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd2429-13f678e4e2956aa9","8f44c0a2ecd03aa-13fe5735af0cca98"]},"geometry":{"type":"LineString","coordinates":[[-83.70500220000001,32.8977604],[-83.7043122,32.897741100000005]]},"id":"8a44c0a2ecd7fff-13f6580d42b41966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecd2429-13f678e4e2956aa9","8f44c0a2e524630-13965a8f9bfaca65"]},"geometry":{"type":"LineString","coordinates":[[-83.7043122,32.897741100000005],[-83.7037731,32.8977261],[-83.7036982,32.897708],[-83.7036437,32.8976611],[-83.7036157,32.897595],[-83.7036295,32.8972129]]},"id":"8944c0a2e53ffff-139fda110f32ee1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e524cdc-139efa8b1cb259f3","8f44c0a2e524630-13965a8f9bfaca65"]},"geometry":{"type":"LineString","coordinates":[[-83.7036295,32.8972129],[-83.7036367,32.8970155]]},"id":"8b44c0a2e524fff-13de7a8d52530502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70364620000001,32.8967522]},"id":"8f44c0a2ec99b75-17f67a85207d4e11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ec99b75-17f67a85207d4e11","8f44c0a2e524cdc-139efa8b1cb259f3"]},"geometry":{"type":"LineString","coordinates":[[-83.7036367,32.8970155],[-83.70364620000001,32.8967522]]},"id":"8944c0a2ecbffff-17de7a881b08fb05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6697283,32.833776900000004]},"id":"8f44c0b1bab02b6-17b6bd53da7ce8b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bab02b6-17b6bd53da7ce8b7","8f44c0b1bab0352-17b6ad0929027a7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6697283,32.833776900000004],[-83.6697128,32.833789],[-83.66970040000001,32.8338034],[-83.6696917,32.833819600000005],[-83.66968680000001,32.8338369],[-83.6696861,32.8338546],[-83.66968940000001,32.8338721],[-83.66969680000001,32.833888800000004],[-83.6697079,32.8339039],[-83.6697223,32.833916900000006],[-83.6697395,32.833927200000005],[-83.6697587,32.8339346],[-83.6697793,32.833938700000004],[-83.6698004,32.833939300000004],[-83.6698212,32.8339365],[-83.669841,32.8339303],[-83.669859,32.8339209],[-83.6698745,32.8339088],[-83.6698868,32.833894400000005],[-83.6698956,32.8338783],[-83.66990050000001,32.833861],[-83.6699012,32.833843300000005],[-83.6698978,32.833825700000006],[-83.66989050000001,32.8338091],[-83.6698793,32.833794000000005],[-83.66986490000001,32.833781],[-83.6698478,32.8337706]]},"id":"8a44c0b1bab7fff-17f6ed2a01c97073"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bab02b6-17b6bd53da7ce8b7","8f44c0b1bab0352-17b6ad0929027a7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6698478,32.8337706],[-83.6698286,32.8337632],[-83.669808,32.8337592],[-83.6697869,32.8337585],[-83.66976600000001,32.8337614],[-83.6697462,32.8337676],[-83.6697283,32.833776900000004]]},"id":"8c44c0b1bab03ff-17befd2ed26c22f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb8b2e3-17d7f86f73537503","8f44c0b1ba14ab5-17f6e64fd659f8cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6726019,32.833434000000004],[-83.6717321,32.8334141]]},"id":"8844c0b1bbfffff-17deb75fa2eda73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bb8b2e3-17d7f86f73537503","8f44c0b1baa6b76-17deea64f016876e"]},"geometry":{"type":"LineString","coordinates":[[-83.6717321,32.8334141],[-83.6709297,32.833395800000005]]},"id":"8844c0b1bbfffff-17deb96a37099290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baa6b76-17deea64f016876e","8f44c0b1baa6545-17d7eb41d237e519"]},"geometry":{"type":"LineString","coordinates":[[-83.6709297,32.833395800000005],[-83.67057630000001,32.833387800000004]]},"id":"8b44c0b1baa6fff-17d7ead36e04c850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1baa6545-17d7eb41d237e519","8f44c0b1bab4280-17bfbcfe3937747a"]},"geometry":{"type":"LineString","coordinates":[[-83.67057630000001,32.833387800000004],[-83.66986530000001,32.833371500000005]]},"id":"8944c0b1babffff-17befc200cabe6ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324806,32.8901284]},"id":"8f44c0a2cc29340-17de541fa29adc78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc29340-17de541fa29adc78","8f44c0a2cc0e914-17b7f7c7dd80b77e"]},"geometry":{"type":"LineString","coordinates":[[-83.7324806,32.8901284],[-83.7322675,32.8901881],[-83.7313519,32.8901184],[-83.7309827,32.8900894]]},"id":"8944c0a2cc3ffff-17d6b5f1bc8f93c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730338,32.8900864]},"id":"8f44c0a2cc1cb6d-17b6195acf23a7cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2cc1cb6d-17b6195acf23a7cc","8f44c0a2cc0e914-17b7f7c7dd80b77e"]},"geometry":{"type":"LineString","coordinates":[[-83.7309827,32.8900894],[-83.7305582,32.8900865],[-83.730338,32.8900864]]},"id":"8944c0a2cc3ffff-17b6b8914770f775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6916764,32.8768188]},"id":"8f44c0a23d72d85-17dff7be4599a28d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23d28c64-179e77c2386b2424","8f44c0a23d72d85-17dff7be4599a28d"]},"geometry":{"type":"LineString","coordinates":[[-83.6916764,32.8768188],[-83.69167010000001,32.8756934]]},"id":"8844c0a23dfffff-17fe77c031907d48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a23d28c64-179e77c2386b2424","8f44c0a206dead2-179ff50d2e7c0aa8"]},"geometry":{"type":"LineString","coordinates":[[-83.69167010000001,32.8756934],[-83.69191860000001,32.875687400000004],[-83.692779,32.875699000000004]]},"id":"8744c0a23ffffff-179ff667b8777aee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144402,32.8722907]},"id":"8f44c0a21d0b2cb-13bff02aeb87d466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d0b2cb-13bff02aeb87d466","8f44c0a21d1d78b-13dee2724a00a659"]},"geometry":{"type":"LineString","coordinates":[[-83.7135068,32.871514600000005],[-83.71366330000001,32.871586],[-83.713761,32.8716493],[-83.7138771,32.871754700000004],[-83.71399670000001,32.8718815],[-83.7142781,32.8721643],[-83.7144402,32.8722907]]},"id":"8944c0a21d3ffff-13be41460889199b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d560d9-17be3f89819539fe","8f44c0a21d0b2cb-13bff02aeb87d466"]},"geometry":{"type":"LineString","coordinates":[[-83.7144402,32.8722907],[-83.7145089,32.8723426],[-83.7146984,32.872461]]},"id":"8844c0a21dfffff-13f67fdb3fd879e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7149614,32.8726058]},"id":"8f44c0a21d50cd1-1796bee52928e010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d50cd1-1796bee52928e010","8f44c0a21d560d9-17be3f89819539fe"]},"geometry":{"type":"LineString","coordinates":[[-83.7146984,32.872461],[-83.7148767,32.8725636],[-83.7149614,32.8726058]]},"id":"8a44c0a21d57fff-17d67f37e74fe889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7156767,32.87286]},"id":"8f44c0a21d42583-17b7bd261bbc4db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d50cd1-1796bee52928e010","8f44c0a21d42583-17b7bd261bbc4db9"]},"geometry":{"type":"LineString","coordinates":[[-83.7149614,32.8726058],[-83.71511890000001,32.8726761],[-83.71530130000001,32.872748200000004],[-83.7154247,32.872792100000005],[-83.7155092,32.872815700000004],[-83.7156767,32.87286]]},"id":"8a44c0a21d57fff-17dffe085abc612b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d410a1-17d77a9e835c2413","8f44c0a21d42583-17b7bd261bbc4db9"]},"geometry":{"type":"LineString","coordinates":[[-83.7156767,32.87286],[-83.71580560000001,32.8728822],[-83.71595040000001,32.8729115],[-83.7162066,32.8729633],[-83.71631450000001,32.8729931],[-83.7165284,32.8730579],[-83.71671280000001,32.8731412]]},"id":"8944c0a21d7ffff-17fe7bddd936e6fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d4cdb6-179eb9ffa127edb5","8f44c0a21d410a1-17d77a9e835c2413"]},"geometry":{"type":"LineString","coordinates":[[-83.71671280000001,32.8731412],[-83.71684090000001,32.8731942],[-83.71696700000001,32.873233]]},"id":"8b44c0a21d41fff-17fffa4fcdb23a63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d4cdb6-179eb9ffa127edb5","8f44c0a218a4c05-17d7335de2428d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.71696700000001,32.873233],[-83.7170396,32.8732473],[-83.7171136,32.8732545],[-83.7171881,32.8732546],[-83.71726220000001,32.873247400000004],[-83.71733470000001,32.8732332],[-83.7174049,32.873212],[-83.7174717,32.873184300000005],[-83.7175342,32.8731503],[-83.717596,32.8731071],[-83.71765090000001,32.8730579],[-83.71777030000001,32.8729396],[-83.7178628,32.872852900000005],[-83.717916,32.8728141],[-83.71797360000001,32.872779900000005],[-83.71802430000001,32.8727583],[-83.7180773,32.8727413],[-83.7181321,32.8727291],[-83.71817270000001,32.8727232],[-83.7182137,32.87272],[-83.7182958,32.8727159],[-83.718378,32.8727168],[-83.7184599,32.872722700000004],[-83.71854110000001,32.872733600000004],[-83.7186126,32.8727475],[-83.7186915,32.872761100000005],[-83.71877350000001,32.8727789],[-83.71885420000001,32.8728007],[-83.7190188,32.8728556],[-83.7192617,32.8729595],[-83.7193726,32.8730546],[-83.7194473,32.8731615],[-83.7194944,32.873270000000005],[-83.7195676,32.873398],[-83.7196346,32.8734732],[-83.71968340000001,32.8735312]]},"id":"8744c0a21ffffff-17feb67a67c717cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.720579,32.8739694]},"id":"8f44c0a218160c6-17d6f12e25e4938b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a218a4c05-17d7335de2428d0a","8f44c0a218160c6-17d6f12e25e4938b"]},"geometry":{"type":"LineString","coordinates":[[-83.71968340000001,32.8735312],[-83.719789,32.8736296],[-83.719987,32.8737286],[-83.720579,32.8739694]]},"id":"8844c0a219fffff-17de324ea8302cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7102957,32.8736686]},"id":"8f44c0a21ca3135-179eea493adf293c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101569,32.8738624]},"id":"8f44c0a21ca3636-17964a9ff6d595bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca3135-179eea493adf293c","8f44c0a21ca3636-17964a9ff6d595bf"]},"geometry":{"type":"LineString","coordinates":[[-83.7102957,32.8736686],[-83.7101569,32.8738624]]},"id":"8b44c0a21ca3fff-17d77a7497755a3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca3636-17964a9ff6d595bf","8f44c0a21c80b81-1397cb6da935137c"]},"geometry":{"type":"LineString","coordinates":[[-83.7101569,32.8738624],[-83.7098524,32.874288],[-83.7098278,32.8742748]]},"id":"8944c0a21cbffff-139fcb045b2dad5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129407,32.8750962]},"id":"8f44c0a21ce4cce-139763d41ae04a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71267420000001,32.8749995]},"id":"8f44c0a21c192b2-13def47aac47ce5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ce4cce-139763d41ae04a7b","8f44c0a21c192b2-13def47aac47ce5e"]},"geometry":{"type":"LineString","coordinates":[[-83.7129407,32.8750962],[-83.71267420000001,32.8749995]]},"id":"8944c0a21c3ffff-13fee427550c0169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7115419,32.874596700000005]},"id":"8f44c0a21ca994c-13def73e552af3b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca994c-13def73e552af3b6","8f44c0a21c192b2-13def47aac47ce5e"]},"geometry":{"type":"LineString","coordinates":[[-83.71267420000001,32.8749995],[-83.7115419,32.874596700000005]]},"id":"8844c0a21dfffff-13ded5dc7408e03f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71161090000001,32.8744439]},"id":"8f44c0a21cad350-13ff771334d554be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca994c-13def73e552af3b6","8f44c0a21cad350-13ff771334d554be"]},"geometry":{"type":"LineString","coordinates":[[-83.71161090000001,32.8744439],[-83.7115419,32.874596700000005]]},"id":"8a44c0a21caffff-13bf7728cef6ee5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca994c-13def73e552af3b6","8f44c0a21c192b2-13def47aac47ce5e"]},"geometry":{"type":"LineString","coordinates":[[-83.7115419,32.874596700000005],[-83.7114648,32.874767600000006],[-83.712592,32.8751618],[-83.71267420000001,32.8749995]]},"id":"8844c0a21dfffff-13be7609ad708ac9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7131159,32.8747497]},"id":"8f44c0a21c0a0ac-13bed366905e0816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c0a0ac-13bed366905e0816","8f44c0a21c0ea1b-13def294afa2be5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7131159,32.8747497],[-83.71322190000001,32.874789400000004],[-83.7134518,32.8743563]]},"id":"8a44c0a21c0ffff-13f752f02e2ebf85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c0a0ac-13bed366905e0816","8f44c0a21c0ea1b-13def294afa2be5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7134518,32.8743563],[-83.71326180000001,32.8742851],[-83.71305020000001,32.8746838],[-83.7130319,32.874718300000005],[-83.7131159,32.8747497]]},"id":"8a44c0a21c0ffff-1396e3367fce325f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7207211,32.8740248]},"id":"8f44c0a2181630d-17ffb0d551518d50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21810c76-13be706398cbb7f7","8f44c0a2181630d-17ffb0d551518d50"]},"geometry":{"type":"LineString","coordinates":[[-83.7207211,32.8740248],[-83.7209031,32.8740998]]},"id":"8a44c0a21817fff-1396f09c73bc08b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7207219,32.8748468]},"id":"8f44c0a218136e6-13ff70d4d786567f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a218136e6-13ff70d4d786567f","8f44c0a21810c76-13be706398cbb7f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7209031,32.8740998],[-83.72108180000001,32.874173400000004],[-83.7210879,32.8742095],[-83.7207219,32.8748468]]},"id":"8944c0a2183ffff-13ff30533e4ffc69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72078540000001,32.8748718]},"id":"8f44c0a2181365d-139ef0ad24719bb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a218136e6-13ff70d4d786567f","8f44c0a2181365d-139ef0ad24719bb2"]},"geometry":{"type":"LineString","coordinates":[[-83.72078540000001,32.8748718],[-83.7207219,32.8748468]]},"id":"8c44c0a218137ff-139730c0f7a3a79c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a218136e6-13ff70d4d786567f","8f44c0a218aca32-13dfb14de1bdd221"]},"geometry":{"type":"LineString","coordinates":[[-83.7207219,32.8748468],[-83.7205282,32.874770500000004]]},"id":"8a44c0a218affff-13f7711162f09ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a218aca32-13dfb14de1bdd221","8f44c0a2181630d-17ffb0d551518d50"]},"geometry":{"type":"LineString","coordinates":[[-83.7205282,32.874770500000004],[-83.72037040000001,32.874708500000004],[-83.7203556,32.874670200000004],[-83.7207211,32.8740248]]},"id":"8844c0a219fffff-13fe31563185ded7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2181630d-17ffb0d551518d50","8f44c0a218160c6-17d6f12e25e4938b"]},"geometry":{"type":"LineString","coordinates":[[-83.7207211,32.8740248],[-83.720579,32.8739694]]},"id":"8b44c0a21816fff-17fe3101c707f2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8daa152e-17b775b8c5b15192","8f44c0b8da1468b-13d7f31c039269c0"]},"geometry":{"type":"LineString","coordinates":[[-83.60182400000001,32.849161],[-83.60075400000001,32.849541]]},"id":"8844c0b8dbfffff-13bf746a60ae1a5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da86625-17f7d90f2622efea","8f44c0b8daa152e-17b775b8c5b15192"]},"geometry":{"type":"LineString","coordinates":[[-83.60075400000001,32.849541],[-83.59938700000001,32.850054]]},"id":"8944c0b8dabffff-17d77763fd11288a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da86625-17f7d90f2622efea","8f44c0b8da9532b-17bf59bce74d563e"]},"geometry":{"type":"LineString","coordinates":[[-83.59938700000001,32.850054],[-83.599109,32.850144]]},"id":"8944c0b8dabffff-179ff9660ff9e76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da93c6e-17f7fb8deac55fe5","8f44c0b8da9532b-17bf59bce74d563e"]},"geometry":{"type":"LineString","coordinates":[[-83.599109,32.850144],[-83.598365,32.850467]]},"id":"8a44c0b8da97fff-1797faa56b38570c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8da93c6e-17f7fb8deac55fe5","8f44c0b8d045754-17d77f2bb2d7fef9"]},"geometry":{"type":"LineString","coordinates":[[-83.598365,32.850467],[-83.5968837,32.8510051]]},"id":"8844c0b8d1fffff-179f5d5cd3a82f81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b8d05e180-13b7e2f44ee08c3a","8f44c0b8d045754-17d77f2bb2d7fef9"]},"geometry":{"type":"LineString","coordinates":[[-83.5968837,32.8510051],[-83.596829,32.851025],[-83.59533400000001,32.851596]]},"id":"8944c0b8d07ffff-13fff1101d7d1a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32ce1711-17b7c552a7daa584","8f44c0a32ce1796-17b74585eda02163"]},"geometry":{"type":"LineString","coordinates":[[-83.607471,32.859582],[-83.60738900000001,32.859578]]},"id":"8b44c0a32ce1fff-17b7c56c4824eb26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32ce1796-17b74585eda02163","8f44c0a32cd4406-17bfeb1787ff0b32"]},"geometry":{"type":"LineString","coordinates":[[-83.60738900000001,32.859578],[-83.605108,32.859571]]},"id":"8944c0a32cfffff-17b7584eb71c9f42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32526035-17bfef016eaf48cc","8f44c0a32cd4406-17bfeb1787ff0b32"]},"geometry":{"type":"LineString","coordinates":[[-83.605108,32.859571],[-83.603505,32.859561]]},"id":"8844c0a32dfffff-17bfcd0c76a9a32f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32526035-17bfef016eaf48cc","8f44c0a325342f3-17bf70e9c6c6fed4"]},"geometry":{"type":"LineString","coordinates":[[-83.603505,32.859561],[-83.6033807,32.8595624],[-83.6027236,32.8595698]]},"id":"8944c0a3253ffff-17bf6ff5921585ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d24ac08-17f7d5e9aae5c7bb","8f44c0a325342f3-17bf70e9c6c6fed4"]},"geometry":{"type":"LineString","coordinates":[[-83.6027236,32.8595698],[-83.602618,32.859571],[-83.60252530000001,32.859570500000004],[-83.60190300000001,32.859567000000006],[-83.60131000000001,32.859595],[-83.601065,32.859606],[-83.600879,32.859623],[-83.6006758,32.859652100000005]]},"id":"8744c0a32ffffff-17bf536a83066804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d24ac08-17f7d5e9aae5c7bb","8f44c0b8d259914-17f756a969886eb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6006758,32.859652100000005],[-83.600369,32.859682]]},"id":"8944c0b8d27ffff-17fff6498df02789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6e3459-1797f262c67c79a0","8f44c0b1a6ee04a-17d6f1088eef4cc0"]},"geometry":{"type":"LineString","coordinates":[[-83.64144200000001,32.826524],[-83.641996,32.826859]]},"id":"8944c0b1a6fffff-17fef1b5a066b88f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6ee04a-17d6f1088eef4cc0","8f44c0b1a6e8d9b-179ff0a988c513ce"]},"geometry":{"type":"LineString","coordinates":[[-83.641996,32.826859],[-83.642148,32.826946]]},"id":"8a44c0b1a6effff-17fef0d9044572d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6e984d-1796eef68f066dc8","8f44c0b1a6e8d9b-179ff0a988c513ce"]},"geometry":{"type":"LineString","coordinates":[[-83.642148,32.826946],[-83.64284400000001,32.82737]]},"id":"8a44c0b1a6effff-179fefd005d275f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6e984d-1796eef68f066dc8","8f44c0b1a65b206-17b7ed2a87a5b990"]},"geometry":{"type":"LineString","coordinates":[[-83.64284400000001,32.82737],[-83.64358,32.827813]]},"id":"8844c0b1a7fffff-179efe1087c9858b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a349a08d6-13bfeb78c34114c3","8f44c0b1a65b206-17b7ed2a87a5b990"]},"geometry":{"type":"LineString","coordinates":[[-83.64358,32.827813],[-83.64427400000001,32.828229]]},"id":"8944c0a349bffff-17bfec51a273142b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a349a08d6-13bfeb78c34114c3","8f44c0a34912750-13b6e9b807abcd66"]},"geometry":{"type":"LineString","coordinates":[[-83.64427400000001,32.828229],[-83.644992,32.828656]]},"id":"8944c0a349bffff-13b6fa986e04682f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3491e196-13dee803c76cc881","8f44c0a34912750-13b6e9b807abcd66"]},"geometry":{"type":"LineString","coordinates":[[-83.644992,32.828656],[-83.645663,32.829062],[-83.64569,32.82909],[-83.64569,32.82913]]},"id":"8844c0a349fffff-13d6e8d208f7394c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a31b54d86-13f6fbb7c6db0d47","8f44c0a31b70612-13feba3893275c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.66383400000001,32.8748365],[-83.6639871,32.874754200000005],[-83.6641314,32.8747023],[-83.66432250000001,32.8746515],[-83.6644471,32.8746474]]},"id":"8944c0a31b7ffff-13bfbafcea5cdadd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22794312-13f6f2ff425b4937","8f44c0a31b70612-13feba3893275c0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6644471,32.8746474],[-83.664596,32.874651],[-83.66651,32.8748],[-83.666612,32.874802],[-83.666703,32.874794],[-83.66682300000001,32.874766],[-83.666891,32.874741],[-83.66701,32.874685],[-83.667084,32.874637],[-83.667332,32.874448],[-83.667406,32.874398]]},"id":"8544c0a3fffffff-139ff6800d7d6b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669279,32.873762]},"id":"8f44c0a227a0891-17d7ee6cadd22aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22794312-13f6f2ff425b4937","8f44c0a227a0891-17d7ee6cadd22aaa"]},"geometry":{"type":"LineString","coordinates":[[-83.667406,32.874398],[-83.66757100000001,32.874252000000006],[-83.667685,32.874177],[-83.667854,32.87409],[-83.667882,32.874077],[-83.668018,32.87402],[-83.668209,32.873976],[-83.668396,32.873944],[-83.668615,32.873914],[-83.668879,32.87386],[-83.669104,32.873809],[-83.669279,32.873762]]},"id":"8944c0a227bffff-17ffb0cc0df73e43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029e233-17d5e6e8c87c64cd","8f44c0b502912a2-17bdd6bf6158b080"]},"geometry":{"type":"LineString","coordinates":[[-83.7641076,32.8798794],[-83.76416710000001,32.8797179],[-83.76417380000001,32.8794525]]},"id":"8944c0b502bffff-17d5c6c9a8ee6729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b502912a2-17bdd6bf6158b080","8f44c0b50291d74-17dff6daecd893dd"]},"geometry":{"type":"LineString","coordinates":[[-83.76417380000001,32.8794525],[-83.7641741,32.8792129],[-83.7641298,32.8791011]]},"id":"8b44c0b50291fff-17dfc6c3ed01c3cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc11083-13d6d6e40926a123","8f44c0b1bc12641-13b6d8e2f3555321"]},"geometry":{"type":"LineString","coordinates":[[-83.6592576,32.8258153],[-83.6591671,32.8257574],[-83.658551,32.8257604],[-83.6584401,32.8257609]]},"id":"8a44c0b1bc17fff-13b7f7dee440cac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc12641-13b6d8e2f3555321","8f44c0b1bca1322-13b7c9ac806cf344"]},"geometry":{"type":"LineString","coordinates":[[-83.6584401,32.8257609],[-83.658151,32.825756000000005],[-83.65811760000001,32.8257556]]},"id":"8944c0b1bcbffff-13b6e947b9e216fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73571960000001,32.812174]},"id":"8f44c0b0889eab4-13fecc374ac942c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354609,32.8121123]},"id":"8f44c0b0889e50d-13d63cd8f5227fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0889eab4-13fecc374ac942c0","8f44c0b0889e50d-13d63cd8f5227fad"]},"geometry":{"type":"LineString","coordinates":[[-83.73571960000001,32.812174],[-83.73563630000001,32.812132000000005],[-83.7355639,32.8121132],[-83.7354609,32.8121123]]},"id":"8b44c0b0889efff-13dedc86034634ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c68113-13d67eddd81044be","8f44c0b0889e50d-13d63cd8f5227fad"]},"geometry":{"type":"LineString","coordinates":[[-83.7354609,32.8121123],[-83.7350906,32.812108900000005],[-83.7350516,32.8121086],[-83.73491510000001,32.8121249],[-83.7347898,32.812176400000006],[-83.73469800000001,32.8122279],[-83.7346634,32.812279700000005],[-83.7346339,32.8123239]]},"id":"8744c0b08ffffff-13ff5ded34dc3039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c68113-13d67eddd81044be","8f44c0b08c68754-13be9efb5fab2311"]},"geometry":{"type":"LineString","coordinates":[[-83.7346339,32.8123239],[-83.7345921,32.8124455],[-83.73458670000001,32.8124905]]},"id":"8b44c0b08c68fff-139e0eeecd941a70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c6b88c-13d7ef009b2fac0c","8f44c0b08c68754-13be9efb5fab2311"]},"geometry":{"type":"LineString","coordinates":[[-83.73458670000001,32.8124905],[-83.734581,32.812536800000004],[-83.73457830000001,32.8127006]]},"id":"8a44c0b08c6ffff-13962eff2ef38255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c6b88c-13d7ef009b2fac0c","8f44c0b08c6b043-13be1f026e7c570d"]},"geometry":{"type":"LineString","coordinates":[[-83.73457830000001,32.8127006],[-83.73457540000001,32.812873700000004]]},"id":"8b44c0b08c6bfff-13fe0f017c9096c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08c6b043-13be1f026e7c570d","8f44c0b08134953-13b60cbd15a6ccb4"]},"geometry":{"type":"LineString","coordinates":[[-83.73457540000001,32.812873700000004],[-83.7345727,32.8130353],[-83.73526600000001,32.813047000000005],[-83.7353662,32.8130119],[-83.73543310000001,32.8129604],[-83.7355055,32.8128832]]},"id":"8744c0b08ffffff-13971dfd47142f3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0889a3a9-13debc9dca63561c","8f44c0b08134953-13b60cbd15a6ccb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7355055,32.8128832],[-83.73554440000001,32.8128036],[-83.73555560000001,32.8127147]]},"id":"8a44c0b0889ffff-1396aca91649dff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0889a3a9-13debc9dca63561c","8f44c0b0889ac45-13d61cd5aa783ecb"]},"geometry":{"type":"LineString","coordinates":[[-83.73555560000001,32.8127147],[-83.73553890000001,32.8126398],[-83.7354748,32.8125251],[-83.7354662,32.8124929]]},"id":"8b44c0b0889afff-13968cb75894ebc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0889e6aa-13df5cdb2a3caaf2","8f44c0b0889ac45-13d61cd5aa783ecb"]},"geometry":{"type":"LineString","coordinates":[[-83.7354662,32.8124929],[-83.7354553,32.8124526],[-83.7354574,32.8123285]]},"id":"8a44c0b0889ffff-139f0cdb1c7f75ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0889e6aa-13df5cdb2a3caaf2","8f44c0b0889e50d-13d63cd8f5227fad"]},"geometry":{"type":"LineString","coordinates":[[-83.7354574,32.8123285],[-83.7354609,32.8121123]]},"id":"8b44c0b0889efff-1397ccda12a24376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7320139,32.8070199]},"id":"8f44c0b08d056f4-17f77543537d1d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d056f4-17f77543537d1d12","8f44c0b08d01d4e-17b695451cf83399"]},"geometry":{"type":"LineString","coordinates":[[-83.7320139,32.8070199],[-83.73201110000001,32.807124]]},"id":"8a44c0b08d07fff-17961544341b0700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d2a58c-17b634a0e1cdf28f","8f44c0b08d01d4e-17b695451cf83399"]},"geometry":{"type":"LineString","coordinates":[[-83.73201110000001,32.807124],[-83.73199190000001,32.8078188],[-83.73226000000001,32.8078188],[-83.7322738,32.807126700000005]]},"id":"8944c0b08d3ffff-17b734f92eee1db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08d2a58c-17b634a0e1cdf28f","8f44c0b08d05275-17f6f49f964844c8"]},"geometry":{"type":"LineString","coordinates":[[-83.7322738,32.807126700000005],[-83.7322759,32.8070223]]},"id":"8a44c0b08d07fff-179794a0360fa11a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6385048,32.8296397]},"id":"8f44c0a34d5605c-139ef98e85631ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c25ac0-13f6fa67414bf515","8f44c0a34d5605c-139ef98e85631ea8"]},"geometry":{"type":"LineString","coordinates":[[-83.638158,32.829773],[-83.63832000000001,32.82972],[-83.638456,32.829664],[-83.6385048,32.8296397]]},"id":"8844c0a34dfffff-13dff9f9b173eef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34435d41-13b70a6740343775","8f44c0a3451b65c-13f71a3f0128caf1"]},"geometry":{"type":"LineString","coordinates":[[-83.6316044,32.836208],[-83.6316688,32.8361281]]},"id":"8a44c0a34437fff-139f1a532f8d2ef7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3451b65c-13f71a3f0128caf1","8f44c0a3451d71e-13f788e361334b64"]},"geometry":{"type":"LineString","coordinates":[[-83.6316688,32.8361281],[-83.6317765,32.836004],[-83.632225,32.8354872]]},"id":"8844c0a345fffff-13bfd9913aa2946b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3441642b-17df8e96c3c21fc8","8f44c0a34599a14-179ff0b50074b816"]},"geometry":{"type":"LineString","coordinates":[[-83.62902240000001,32.8365758],[-83.629616,32.836945],[-83.62989,32.837108]]},"id":"8844c0a345fffff-17b75fa69295981d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63055530000001,32.8375062]},"id":"8f44c0a34410a89-17d76cf6f3543886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3441642b-17df8e96c3c21fc8","8f44c0a34410a89-17d76cf6f3543886"]},"geometry":{"type":"LineString","coordinates":[[-83.62989,32.837108],[-83.6304906,32.8374675],[-83.63055530000001,32.8375062]]},"id":"8a44c0a34417fff-17d7fdc6e58675e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3440348c-139f5af8c7bd4166","8f44c0a34410a89-17d76cf6f3543886"]},"geometry":{"type":"LineString","coordinates":[[-83.63055530000001,32.8375062],[-83.6306327,32.837553400000004],[-83.63137160000001,32.8380037]]},"id":"8944c0a3443ffff-17ffebf7e67e386f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3440348c-139f5af8c7bd4166","8f44c0a3440e308-1397893d6eaa1ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.63137160000001,32.8380037],[-83.632035,32.838408],[-83.632081,32.838436]]},"id":"8944c0a3443ffff-139f7a1b1f74c14d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3440e308-1397893d6eaa1ba2","8f44c0a3440985c-13b7876edcc9f15d"]},"geometry":{"type":"LineString","coordinates":[[-83.632081,32.838436],[-83.63280300000001,32.838873],[-83.6328211,32.8388872]]},"id":"8a44c0a3440ffff-13b7d855ae900c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3440985c-13b7876edcc9f15d","8f44c0a3447322e-13dfa5754ba21174"]},"geometry":{"type":"LineString","coordinates":[[-83.6328211,32.8388872],[-83.63363000000001,32.839337]]},"id":"8944c0a3447ffff-13bf16721838cf53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34440b96-17ff43b5c5c8f9bf","8f44c0a3447322e-13dfa5754ba21174"]},"geometry":{"type":"LineString","coordinates":[[-83.63363000000001,32.839337],[-83.63434600000001,32.839802]]},"id":"8944c0a3447ffff-13dff4958b447377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.639475,32.828833]},"id":"8f44c0a34d70c52-13b6f7302f290710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d70c52-13b6f7302f290710","8f44c0a34d71819-13f7f5e808e081d9"]},"geometry":{"type":"LineString","coordinates":[[-83.639475,32.828833],[-83.64,32.829161]]},"id":"8a44c0a34d77fff-139ff68c1b6a233e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d71b69-13bff570ad9207b3","8f44c0a34d71819-13f7f5e808e081d9"]},"geometry":{"type":"LineString","coordinates":[[-83.64,32.829161],[-83.640191,32.829276]]},"id":"8944c0a34d7ffff-1397f5ac5d664bf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d2b753-13b7f8edc09678b9","8f44c0a34d01121-1797fab926654337"]},"geometry":{"type":"LineString","coordinates":[[-83.63802700000001,32.827993],[-83.638762,32.828421]]},"id":"8944c0a34d3ffff-139ff9d37d475157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d2b753-13b7f8edc09678b9","8f44c0a34d70c52-13b6f7302f290710"]},"geometry":{"type":"LineString","coordinates":[[-83.638762,32.828421],[-83.639187,32.82866],[-83.639475,32.828833]]},"id":"8844c0a34dfffff-13b6f80e1f237f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d71b69-13bff570ad9207b3","8f44c0a34d63241-13bff3c0267dd5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.640191,32.829276],[-83.640883,32.829695]]},"id":"8a44c0a34d67fff-13bef49866549a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d68b8c-17def1f928a2bb84","8f44c0a34d63241-13bff3c0267dd5cc"]},"geometry":{"type":"LineString","coordinates":[[-83.640883,32.829695],[-83.64161100000001,32.830128]]},"id":"8944c0a34d7ffff-17d6f2dcae295ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34d68b8c-17def1f928a2bb84","8f44c0a3499a288-17d6f03c2871d434"]},"geometry":{"type":"LineString","coordinates":[[-83.64161100000001,32.830128],[-83.642323,32.830551]]},"id":"8844c0a349fffff-17d6f11aaef0f4cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3499a288-17d6f03c2871d434","8f44c0a348a6150-17feee70232ab42c"]},"geometry":{"type":"LineString","coordinates":[[-83.642323,32.830551],[-83.64261400000001,32.830731],[-83.64305900000001,32.830996]]},"id":"8844c0a349fffff-17f6ef56b199148a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348a6150-17feee70232ab42c","8f44c0a348a560b-17feecbe6d57658c"]},"geometry":{"type":"LineString","coordinates":[[-83.64305900000001,32.830996],[-83.643753,32.831406]]},"id":"8a44c0a348a7fff-17feed97469181aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d70c52-13b6f7302f290710","8f44c0a34d704e0-13f6f77a8d781b5e"]},"geometry":{"type":"LineString","coordinates":[[-83.639356,32.828964],[-83.639475,32.828833]]},"id":"8b44c0a34d70fff-13dff7555f5f0e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a368d618b-13d776df63eb1698","8f44c0a368d290d-13ff26b67053eed0"]},"geometry":{"type":"LineString","coordinates":[[-83.6200089,32.8395904],[-83.6199445,32.8395257],[-83.61991230000001,32.8394548],[-83.6199132,32.8393948],[-83.61994340000001,32.8393237]]},"id":"8a44c0a368d7fff-139f66e1bf6f844d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a368d6c49-139f36ced74c7c8e","8f44c0a368d618b-13d776df63eb1698"]},"geometry":{"type":"LineString","coordinates":[[-83.61994340000001,32.8393237],[-83.61994820000001,32.8393123],[-83.6199699,32.8392609]]},"id":"8c44c0a368d61ff-13bfb6d7235903fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5362388,32.8671705]},"id":"8f44c0b99a6e04b-17bff33acef0ba06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b99a6e04b-17bff33acef0ba06","8f44c0b99a4dd0d-13fff337f71da497"]},"geometry":{"type":"LineString","coordinates":[[-83.5362388,32.8671705],[-83.5362518,32.8673723],[-83.5362602,32.867586200000005],[-83.536297,32.8677146],[-83.5362829,32.8678477],[-83.53624330000001,32.868085400000005]]},"id":"8944c0b99a7ffff-13dff32b35bf58b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5356297,32.8702703]},"id":"8f44c0aa4da8d52-17dff4b770796086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0aa4da8d52-17dff4b770796086","8f44c0b99a4dd0d-13fff337f71da497"]},"geometry":{"type":"LineString","coordinates":[[-83.53624330000001,32.868085400000005],[-83.536181,32.8682922],[-83.53611310000001,32.868529800000005],[-83.5360508,32.8687652],[-83.5359971,32.868950500000004],[-83.5359207,32.8690741],[-83.5357961,32.869212000000005],[-83.53570280000001,32.869316600000005],[-83.5356292,32.869444900000005],[-83.53558960000001,32.8695947],[-83.5355952,32.8697706],[-83.5356094,32.869941700000005],[-83.53563550000001,32.8701828],[-83.5356297,32.8702703]]},"id":"8544c0bbfffffff-179ff428e9da4440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7719673,32.8826413]},"id":"8f44c0b5151635b-1797f3b870743ea5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76473100000001,32.8759134]},"id":"8f44c0b50390160-1795e5632027751d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b50390160-1795e5632027751d","8f44c0b5151635b-1797f3b870743ea5"]},"geometry":{"type":"LineString","coordinates":[[-83.7719673,32.8826413],[-83.7694484,32.880268900000004],[-83.76894060000001,32.879808600000004],[-83.76631250000001,32.8773946],[-83.76563940000001,32.8767705],[-83.76473100000001,32.8759134]]},"id":"8644c0b57ffffff-17dfbc8bc81246a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b5021a620-17f5bf64ce7803cf","8f44c0b502f4ae5-17dffefd755e1ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.76718600000001,32.879541],[-83.7673207,32.8798425],[-83.7673513,32.8799148]]},"id":"8844c0b503fffff-17f5ff30c4583583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b502f5cf5-17b7fed95996e69f","8f44c0b502f4ae5-17dffefd755e1ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.7673513,32.8799148],[-83.76740910000001,32.880062800000005]]},"id":"8a44c0b502f7fff-179dbeeb6b2bef9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7530966,32.8662531]},"id":"8f44c0b505a4494-1795f1caa5c0b131"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5058512a-139de1e75a64bd53","8f44c0b505a4494-1795f1caa5c0b131"]},"geometry":{"type":"LineString","coordinates":[[-83.7530966,32.8662531],[-83.7531637,32.867257],[-83.7531543,32.86731],[-83.753118,32.867372100000004],[-83.75306280000001,32.8674611],[-83.7530507,32.867502200000004]]},"id":"8944c0b505bffff-179df1b847664cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5058512a-139de1e75a64bd53","8f44c0b505aac84-13b5e17b7f109a07"]},"geometry":{"type":"LineString","coordinates":[[-83.7530507,32.867502200000004],[-83.7530492,32.867538800000005],[-83.75305370000001,32.8675756],[-83.75306880000001,32.8676057],[-83.75308860000001,32.8676381],[-83.7531192,32.8676704],[-83.7531592,32.8677048],[-83.7532233,32.867738]]},"id":"8944c0b505bffff-13f5f1c26d672423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7543878,32.8677573]},"id":"8f44c0b505ad3a4-13bddea3a8861aae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b505aac84-13b5e17b7f109a07","8f44c0b505ad3a4-13bddea3a8861aae"]},"geometry":{"type":"LineString","coordinates":[[-83.7532233,32.867738],[-83.75327700000001,32.8677538],[-83.75333590000001,32.867761800000004],[-83.75410670000001,32.8677585],[-83.75432330000001,32.867757600000004],[-83.7543878,32.8677573]]},"id":"8a44c0b505affff-13bde0106562239c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7528549,32.8664085]},"id":"8f44c0b505a60f2-17f5f261ba1d4d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50585756-13fde226e5e24d09","8f44c0b505a60f2-17f5f261ba1d4d60"]},"geometry":{"type":"LineString","coordinates":[[-83.7528549,32.8664085],[-83.7528436,32.8664891],[-83.7529085,32.867573900000004],[-83.7529233,32.8676259],[-83.752949,32.867675600000005]]},"id":"8944c0b505bffff-17fff252d51cecda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75432210000001,32.8679925]},"id":"8f44c0b505a980a-13bfdeccbe483f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b505a980a-13bfdeccbe483f5c","8f44c0b50585756-13fde226e5e24d09"]},"geometry":{"type":"LineString","coordinates":[[-83.752949,32.867675600000005],[-83.7529975,32.8677299],[-83.75310520000001,32.867826],[-83.7531591,32.867864000000004],[-83.753229,32.8679019],[-83.75330140000001,32.8679354],[-83.7533664,32.8679606],[-83.7534395,32.867981300000004],[-83.7541959,32.8679909],[-83.75432210000001,32.8679925]]},"id":"8944c0b505bffff-139fe09021fae25b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7512573,32.8637985]},"id":"8f44c0b5620bccd-1797f64834dfe7b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7575869,32.8696521]},"id":"8f44c0b5055c5a4-17ddd6d432317b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b5620bccd-1797f64834dfe7b0","8f44c0b5055c5a4-17ddd6d432317b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.7512573,32.8637985],[-83.75249190000001,32.8649336],[-83.7529749,32.865380300000005],[-83.75345560000001,32.8658207],[-83.7553391,32.8675514],[-83.75595960000001,32.8681227],[-83.7575869,32.8696521]]},"id":"8644c0b57ffffff-17b7de8a67369730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73499290000001,32.836542300000005]},"id":"8f44c0b0bbb3cea-17f6fdfd74b15644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b9a28b3-13dfd59b720b564e","8f44c0b0bbb3cea-17f6fdfd74b15644"]},"geometry":{"type":"LineString","coordinates":[[-83.73499290000001,32.836542300000005],[-83.7347321,32.8359593],[-83.7343913,32.8352396],[-83.7340549,32.834499],[-83.7337444,32.8338233],[-83.7334115,32.833098],[-83.73317990000001,32.8325635],[-83.7329648,32.8320389],[-83.732839,32.8317418],[-83.7325821,32.8310108],[-83.732297,32.8301608],[-83.7321682,32.829759200000005],[-83.7318729,32.828690800000004]]},"id":"8744c0b0bffffff-13ff121acc3a9659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7321012,32.830236400000004]},"id":"8f44c0b0b98125d-1797d50cce4b91e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bb95225-17960dcee0f4984c","8f44c0b0b98125d-1797d50cce4b91e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7321012,32.830236400000004],[-83.73221140000001,32.830575100000004],[-83.7323587,32.8309984],[-83.7327929,32.8321624],[-83.7330187,32.832712],[-83.7331836,32.8330913],[-83.7334596,32.8337038],[-83.7340269,32.834933500000005],[-83.73426450000001,32.8354457],[-83.7350674,32.8371968]]},"id":"8744c0b0bffffff-17b7f197b42acbfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6866701,32.9037701]},"id":"8f44c0a05c4ba9e-139ed3f738521637"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4ba9e-139ed3f738521637","8f44c0a05c4b0e8-13b6c42d7ba78c28"]},"geometry":{"type":"LineString","coordinates":[[-83.68658330000001,32.9037892],[-83.68664050000001,32.9037774],[-83.6866701,32.9037701]]},"id":"8b44c0a05c4bfff-139e841246a527a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68678720000001,32.9036518]},"id":"8f44c0a05c4bb26-13dee3ae07553981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4ba9e-139ed3f738521637","8f44c0a05c4bb26-13dee3ae07553981"]},"geometry":{"type":"LineString","coordinates":[[-83.6866701,32.9037701],[-83.6867064,32.903752700000005],[-83.68674920000001,32.9037133],[-83.68678720000001,32.9036518]]},"id":"8b44c0a05c4bfff-13f7f3ce4ec65edd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a349a1e-13f7dff967695692","8f44c0b1bc9450e-1397efe6af1645d3"]},"geometry":{"type":"LineString","coordinates":[[-83.65553700000001,32.8254749],[-83.655567,32.825715]]},"id":"8944c0b1bcbffff-13beeff00b69a97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1bc9450e-1397efe6af1645d3","8f44c0b1bc94724-13dedfab25abeb28"]},"geometry":{"type":"LineString","coordinates":[[-83.655567,32.825715],[-83.6555749,32.8257441],[-83.6555896,32.8257709],[-83.6556192,32.8257976],[-83.65566220000001,32.825820900000004]]},"id":"8b44c0b1bc94fff-13bfffceef5a040a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65593870000001,32.820911]},"id":"8f44c0b1aac5a04-17dfeefe5dc50d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc83675-17f7cd013b8d757d","8f44c0b1aac5a04-17dfeefe5dc50d31"]},"geometry":{"type":"LineString","coordinates":[[-83.65593870000001,32.820911],[-83.6560259,32.8212453],[-83.6561353,32.8215795],[-83.6562569,32.8219137],[-83.6566361,32.8229574],[-83.6568211,32.8234891],[-83.65692250000001,32.823833400000005],[-83.6569975,32.8242056],[-83.65705650000001,32.8246486],[-83.6570744,32.8251022],[-83.6570672,32.825361400000006],[-83.6570507,32.825617300000005],[-83.6570093,32.8259149],[-83.6569621,32.8261702],[-83.6569041,32.8264255],[-83.65683410000001,32.826672900000005],[-83.6567533,32.826913600000005]]},"id":"8644c0b1fffffff-1796dd1d5206f29e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b5adb96-17b7f2335e293f7a","8f44c0b1bc83675-17f7cd013b8d757d"]},"geometry":{"type":"LineString","coordinates":[[-83.6567533,32.826913600000005],[-83.65666390000001,32.8271482],[-83.656608,32.8272761],[-83.65647750000001,32.827554],[-83.6563618,32.827771600000005],[-83.6561715,32.8280868],[-83.6559431,32.8284143],[-83.6555745,32.8288858],[-83.65525190000001,32.829285],[-83.6546251,32.830057000000004]]},"id":"8744c0b1bffffff-13feff621194eced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd99790-1797ebd8772bade9","8f44c0b1aaea8c2-17fffe6754fff3c5"]},"geometry":{"type":"LineString","coordinates":[[-83.65722810000001,32.8246842],[-83.6572191,32.8245619],[-83.6571995,32.824373],[-83.65715850000001,32.8241411],[-83.65708140000001,32.8237931],[-83.65701440000001,32.8235444],[-83.6565913,32.8223518],[-83.6561803,32.8211615]]},"id":"8644c0b1fffffff-13bfccf89c40cc9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822e563-179f908b55f72a95","8f44c0a28223b6d-17def075ca0a24f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7339467,32.9256601],[-83.7339812,32.9253838]]},"id":"8944c0a2823ffff-17b7508094ae2519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28223b6d-17def075ca0a24f1","8f44c0a28220b23-17beb0558c69831d"]},"geometry":{"type":"LineString","coordinates":[[-83.7339812,32.9253838],[-83.73403280000001,32.9248939]]},"id":"8a44c0a28227fff-17d7d065a2562ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822425e-13d6104d9add2f3d","8f44c0a28220b23-17beb0558c69831d"]},"geometry":{"type":"LineString","coordinates":[[-83.73403280000001,32.9248939],[-83.73404550000001,32.9247329]]},"id":"8a44c0a28227fff-13fe7051990afbf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376739,32.9262813]},"id":"8f44c0a2834d373-179fd771d33d6139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b920-1396b8ef51dac0c1","8f44c0a2834d373-179fd771d33d6139"]},"geometry":{"type":"LineString","coordinates":[[-83.7376739,32.9262813],[-83.73728770000001,32.926389300000004],[-83.7371911,32.926434300000004],[-83.7370635,32.926471500000005]]},"id":"8a44c0a2834ffff-17d6c8317b99f332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2834b920-1396b8ef51dac0c1","8f44c0a2834b995-1396692cdcc11349"]},"geometry":{"type":"LineString","coordinates":[[-83.7370635,32.926471500000005],[-83.7369651,32.9264998]]},"id":"8a44c0a2834ffff-139f990e10a0542c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7341222,32.9270414]},"id":"8f44c0a2820d758-13fef01da2fc94f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2820d758-13fef01da2fc94f1","8f44c0a28270c9e-13df9e63bf13401e"]},"geometry":{"type":"LineString","coordinates":[[-83.7348293,32.9269945],[-83.7346148,32.927063600000004],[-83.73447270000001,32.9270974],[-83.73434660000001,32.9270816],[-83.73416420000001,32.927038800000005],[-83.7341222,32.9270414]]},"id":"8844c0a283fffff-13f7af3f288bdc94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28208ac3-139770c469da0950","8f44c0a2820d758-13fef01da2fc94f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7341222,32.9270414],[-83.73405430000001,32.9270456],[-83.73385540000001,32.9270903]]},"id":"8a44c0a2820ffff-13f7b07164bc79be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73357820000001,32.927152500000005]},"id":"8f44c0a28208603-13be5171a8f98c12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28208ac3-139770c469da0950","8f44c0a28208603-13be5171a8f98c12"]},"geometry":{"type":"LineString","coordinates":[[-83.73385540000001,32.9270903],[-83.73357820000001,32.927152500000005]]},"id":"8b44c0a28208fff-139ef11b0280b66c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2820aa5d-13d771c85460a359","8f44c0a28208603-13be5171a8f98c12"]},"geometry":{"type":"LineString","coordinates":[[-83.73357820000001,32.927152500000005],[-83.733483,32.9271739],[-83.7334395,32.9271894]]},"id":"8a44c0a2820ffff-13beb19d5ffb3863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2820a309-13def2101e4045a0","8f44c0a2820aa5d-13d771c85460a359"]},"geometry":{"type":"LineString","coordinates":[[-83.7334395,32.9271894],[-83.73332470000001,32.927230200000004]]},"id":"8b44c0a2820afff-13d631ec35ac44b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2836591e-13d6e73e52211e29","8f44c0a28acbce0-13f60765d059a81d"]},"geometry":{"type":"LineString","coordinates":[[-83.7376931,32.9235552],[-83.7377309,32.9236568],[-83.7377561,32.9237733],[-83.73776120000001,32.9238538],[-83.7377563,32.923908600000004]]},"id":"8744c0a28ffffff-13d6f748afdf403a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2836591e-13d6e73e52211e29","8f44c0a283652b5-13977775dcfad4dc"]},"geometry":{"type":"LineString","coordinates":[[-83.7377563,32.923908600000004],[-83.73775110000001,32.9239681],[-83.7377057,32.9241375],[-83.7376675,32.9242423]]},"id":"8b44c0a28365fff-13be475576c0346f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a283652b5-13977775dcfad4dc","8f44c0a28361154-13b7f7ab38d03c7a"]},"geometry":{"type":"LineString","coordinates":[[-83.7376675,32.9242423],[-83.73758210000001,32.9245023]]},"id":"8a44c0a28367fff-13f6b790877aa4f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28386c66-17feb9bb4b688781","8f44c0a28316c1b-17f6f4ea39495f7d"]},"geometry":{"type":"LineString","coordinates":[[-83.7301836,32.9231755],[-83.7304158,32.923090800000004],[-83.7309721,32.922964],[-83.7321565,32.9223279]]},"id":"8844c0a283fffff-179f77463c8464b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7328416,32.9220433]},"id":"8f44c0a2833276a-17b7133e08088552"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2833276a-17b7133e08088552","8f44c0a28316c1b-17f6f4ea39495f7d"]},"geometry":{"type":"LineString","coordinates":[[-83.7321565,32.9223279],[-83.7328416,32.9220433]]},"id":"8944c0a2833ffff-179e14142cc8cfb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd84590-17febc0cbef64256","8f44c0a2bdb5af3-17f7fb97d4891386"]},"geometry":{"type":"LineString","coordinates":[[-83.7161269,32.9291211],[-83.716133,32.928938200000005],[-83.7161885,32.9287391],[-83.71627170000001,32.9285633],[-83.7163139,32.9284959]]},"id":"8944c0a2bdbffff-17b7bbe64719184d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd84590-17febc0cbef64256","8f44c0a2bd80009-17d6fba6be4fa50a"]},"geometry":{"type":"LineString","coordinates":[[-83.7161269,32.9291211],[-83.7160899,32.929367500000005],[-83.7161423,32.929520100000005],[-83.71629010000001,32.9296494]]},"id":"8a44c0a2bd87fff-17bfbc013b322723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bca6a32-13fefc7530fc1a18","8f44c0a2bd80009-17d6fba6be4fa50a"]},"geometry":{"type":"LineString","coordinates":[[-83.71629010000001,32.9296494],[-83.71639800000001,32.9297735],[-83.7164565,32.929939000000005],[-83.7164504,32.930192500000004],[-83.7164103,32.9306424],[-83.7164078,32.930677200000005],[-83.7163733,32.9311596],[-83.7163579,32.931307000000004],[-83.7162593,32.931382],[-83.71615150000001,32.9314131],[-83.7160159,32.931379400000004],[-83.7159597,32.931345400000005]]},"id":"8844c0a2bdfffff-13b7bb7c667ad594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bca6a32-13fefc7530fc1a18","8f44c0a2bca6c74-13977cfb6055f64f"]},"geometry":{"type":"LineString","coordinates":[[-83.7159597,32.931345400000005],[-83.71579410000001,32.931245000000004],[-83.715745,32.9312119]]},"id":"8b44c0a2bca6fff-13d7fcb8ab6fc1e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bca6c74-13977cfb6055f64f","8f44c0a2bd9bad6-13de3d681457137b"]},"geometry":{"type":"LineString","coordinates":[[-83.715745,32.9312119],[-83.7155711,32.9310945]]},"id":"8944c0a2bcbffff-13f6fd31ce2d6f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd9bad6-13de3d681457137b","8f44c0a2bd9bce0-13df3df69f8de9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7155711,32.9310945],[-83.71547980000001,32.931032900000005],[-83.7153431,32.930910600000004]]},"id":"8b44c0a2bd9bfff-1396fdb128b7a2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd9bce0-13df3df69f8de9d3","8f44c0a2bd9aa96-13f67e6b83acb476"]},"geometry":{"type":"LineString","coordinates":[[-83.7153431,32.930910600000004],[-83.71524570000001,32.9308235],[-83.71515600000001,32.9307206]]},"id":"8a44c0a2bd9ffff-13b7be32eae72f6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71496780000001,32.9304871]},"id":"8f44c0a2bd9ad12-13d67ee126725c72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd9ad12-13d67ee126725c72","8f44c0a2bd9aa96-13f67e6b83acb476"]},"geometry":{"type":"LineString","coordinates":[[-83.71515600000001,32.9307206],[-83.7150608,32.930611400000004],[-83.71496780000001,32.9304871]]},"id":"8b44c0a2bd9afff-139ebea7b00b3a8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145442,32.929788800000004]},"id":"8f44c0a2bd92218-139e3fe9e1393e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd9ad12-13d67ee126725c72","8f44c0a2bd92218-139e3fe9e1393e88"]},"geometry":{"type":"LineString","coordinates":[[-83.71496780000001,32.9304871],[-83.7149098,32.930409700000006],[-83.714765,32.9301951],[-83.7145802,32.929845900000004],[-83.7145442,32.929788800000004]]},"id":"8944c0a2bdbffff-13ffbf6b1f6acf2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd92218-139e3fe9e1393e88","8f44c0a2bd92012-17b6702dce6e7720"]},"geometry":{"type":"LineString","coordinates":[[-83.7145442,32.929788800000004],[-83.7144356,32.929616700000004]]},"id":"8b44c0a2bd92fff-17fe400bdf1cbd35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bd92ca4-17d6506bfebb2b12","8f44c0a2bd92012-17b6702dce6e7720"]},"geometry":{"type":"LineString","coordinates":[[-83.7144356,32.929616700000004],[-83.7143583,32.9294942],[-83.71433610000001,32.9294437]]},"id":"8b44c0a2bd92fff-17ff404e876301a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7142735,32.9292566]},"id":"8f44c0a2a365bae-17d7609318679a03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a365bae-17d7609318679a03","8f44c0a2bd92ca4-17d6506bfebb2b12"]},"geometry":{"type":"LineString","coordinates":[[-83.71433610000001,32.9294437],[-83.71428440000001,32.929326100000004],[-83.7142735,32.9292566]]},"id":"8944c0a2a37ffff-179ee0830cd3896e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141088,32.9288296]},"id":"8f44c0a2aacb542-17d6c0fa06b54d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a365bae-17d7609318679a03","8f44c0a2aacb542-17d6c0fa06b54d58"]},"geometry":{"type":"LineString","coordinates":[[-83.7142735,32.9292566],[-83.7142597,32.9291684],[-83.71422890000001,32.929021],[-83.7141088,32.9288296]]},"id":"8744c0a2affffff-17d6f0b98f722935"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7139095,32.928906500000004]},"id":"8f44c0a2a364ba4-17f6d1769a74df4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a364ba4-17f6d1769a74df4e","8f44c0a2aacb542-17d6c0fa06b54d58"]},"geometry":{"type":"LineString","coordinates":[[-83.7139095,32.928906500000004],[-83.7141088,32.9288296]]},"id":"8944c0a2aafffff-17ded13854b39898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71450440000001,32.9284875]},"id":"8f44c0a2aac8ad4-17f6f002c5fce699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aac8ad4-17f6f002c5fce699","8f44c0a2aacb542-17d6c0fa06b54d58"]},"geometry":{"type":"LineString","coordinates":[[-83.7141088,32.9288296],[-83.71427510000001,32.9286796],[-83.7144816,32.928498600000005],[-83.71450440000001,32.9284875]]},"id":"8a44c0a2aacffff-17dfc07fe21fab51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151719,32.9284234]},"id":"8f44c0a2bdb66de-17debe619a291c21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bdb66de-17debe619a291c21","8f44c0a2aac8ad4-17f6f002c5fce699"]},"geometry":{"type":"LineString","coordinates":[[-83.71450440000001,32.9284875],[-83.71464180000001,32.928421],[-83.7148513,32.9284029],[-83.71510090000001,32.928421],[-83.7151719,32.9284234]]},"id":"8844c0a2abfffff-17de3f35d30ec0fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bdb66de-17debe619a291c21","8f44c0a2bdb0cf4-17d7bd6b38d29888"]},"geometry":{"type":"LineString","coordinates":[[-83.7151719,32.9284234],[-83.7154028,32.9284314],[-83.7155661,32.928418400000005]]},"id":"8a44c0a2bdb7fff-17debde657d1ba50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bdb08e3-17d67ce9b325d798","8f44c0a2bdb0cf4-17d7bd6b38d29888"]},"geometry":{"type":"LineString","coordinates":[[-83.7155661,32.928418400000005],[-83.71569860000001,32.9284288],[-83.71577330000001,32.9284455]]},"id":"8b44c0a2bdb0fff-17dffd2a265319d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2bdb08e3-17d67ce9b325d798","8f44c0a2bdb5af3-17f7fb97d4891386"]},"geometry":{"type":"LineString","coordinates":[[-83.71577330000001,32.9284455],[-83.71583720000001,32.9284598],[-83.7160467,32.928477900000004],[-83.7163139,32.9284959]]},"id":"8a44c0a2bdb7fff-17ff7c4137631b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71276540000001,32.9246944]},"id":"8f44c0a2aaac166-13be4441aff26176"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa1348c-139fc3e06c75c7ca","8f44c0a2aaac166-13be4441aff26176"]},"geometry":{"type":"LineString","coordinates":[[-83.71276540000001,32.9246944],[-83.71292100000001,32.924645600000005]]},"id":"8844c0a2abfffff-139ec4110170a8a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa13185-13f7c36108cc1a67","8f44c0a2aa1348c-139fc3e06c75c7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.71292100000001,32.924645600000005],[-83.7131248,32.9245816]]},"id":"8b44c0a2aa13fff-13ffc3a0bc47944b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133091,32.9245238]},"id":"8f44c0a2aa13873-13d762edd249d753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa13185-13f7c36108cc1a67","8f44c0a2aa13873-13d762edd249d753"]},"geometry":{"type":"LineString","coordinates":[[-83.7131248,32.9245816],[-83.7133091,32.9245238]]},"id":"8b44c0a2aa13fff-13d77327774a0205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa1189c-13ff520d96610b67","8f44c0a2aa13873-13d762edd249d753"]},"geometry":{"type":"LineString","coordinates":[[-83.7133091,32.9245238],[-83.7135234,32.924456500000005],[-83.7136679,32.924408500000006]]},"id":"8a44c0a2aa17fff-139fd27d9634acd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa1189c-13ff520d96610b67","8f44c0a2aa11952-13f641c83c6e3b02"]},"geometry":{"type":"LineString","coordinates":[[-83.7136679,32.924408500000006],[-83.71377890000001,32.9243716]]},"id":"8c44c0a2aa119ff-13ffd1eae32fb650"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7143269,32.9242428]},"id":"8f44c0a2aa02965-1397c071b65435e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa02965-1397c071b65435e9","8f44c0a2aa11952-13f641c83c6e3b02"]},"geometry":{"type":"LineString","coordinates":[[-83.71377890000001,32.9243716],[-83.71396700000001,32.9243091],[-83.7142043,32.9242392],[-83.7143269,32.9242428]]},"id":"8944c0a2aa3ffff-13b7511e94531090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0018e-13be3fe2ea2d4ce6","8f44c0a2aa02965-1397c071b65435e9"]},"geometry":{"type":"LineString","coordinates":[[-83.7143269,32.9242428],[-83.71446920000001,32.924247],[-83.71455540000001,32.9242849]]},"id":"8a44c0a2aa07fff-139e5028d8341082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa00ad8-13fe7f62ddfbcb9f","8f44c0a2aa0018e-13be3fe2ea2d4ce6"]},"geometry":{"type":"LineString","coordinates":[[-83.71455540000001,32.9242849],[-83.7146572,32.9243297],[-83.71476030000001,32.924410300000005]]},"id":"8b44c0a2aa00fff-13d77fa07316037b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa011b6-13deff0f0f1f811b","8f44c0a2aa00ad8-13fe7f62ddfbcb9f"]},"geometry":{"type":"LineString","coordinates":[[-83.71476030000001,32.924410300000005],[-83.71478970000001,32.9244332],[-83.7148944,32.924567700000004]]},"id":"8a44c0a2aa07fff-13bfff3747704eec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa011b6-13deff0f0f1f811b","8f44c0a2aa01394-13d6bedf9aa72da0"]},"geometry":{"type":"LineString","coordinates":[[-83.7148944,32.924567700000004],[-83.7149703,32.924733800000006]]},"id":"8b44c0a2aa01fff-1396fef751143d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0e965-17be7eb11fedb495","8f44c0a2aa01394-13d6bedf9aa72da0"]},"geometry":{"type":"LineString","coordinates":[[-83.7149703,32.924733800000006],[-83.7150362,32.924878],[-83.7150447,32.924896700000005]]},"id":"8944c0a2aa3ffff-13ffbec8585222e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0e965-17be7eb11fedb495","8f44c0a2aa0eb68-179fbe7e99c2299c"]},"geometry":{"type":"LineString","coordinates":[[-83.7150447,32.924896700000005],[-83.7151255,32.9250746]]},"id":"8a44c0a2aa0ffff-17f63e97d2ecdb66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa08c2b-179f3e742ad761a4","8f44c0a2aa0eb68-179fbe7e99c2299c"]},"geometry":{"type":"LineString","coordinates":[[-83.7151255,32.9250746],[-83.71514710000001,32.925211600000004],[-83.7151422,32.925256000000005]]},"id":"8a44c0a2aa0ffff-17d67e769efe0c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71513370000001,32.9253317]},"id":"8f44c0a2aa081b2-17be7e797339d2a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa08c2b-179f3e742ad761a4","8f44c0a2aa081b2-17be7e797339d2a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7151422,32.925256000000005],[-83.71513370000001,32.9253317]]},"id":"8b44c0a2aa08fff-17b6be76c3eb0719"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa081b2-17be7e797339d2a9","8f44c0a2aa086a4-17b77eacc4f713a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71513370000001,32.9253317],[-83.7151286,32.9253772],[-83.71505160000001,32.925522]]},"id":"8b44c0a2aa08fff-17ff3e8f17cd676a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0a34c-1797bf0f046b0da5","8f44c0a2aa086a4-17b77eacc4f713a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71505160000001,32.925522],[-83.7148944,32.9256539]]},"id":"8a44c0a2aa0ffff-17debeddece35910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aae4cf2-17ff4011c2069f8f","8f44c0a2aa0a34c-1797bf0f046b0da5"]},"geometry":{"type":"LineString","coordinates":[[-83.7148944,32.9256539],[-83.71474350000001,32.925734],[-83.7144804,32.925819600000004]]},"id":"8944c0a2aa3ffff-17beff8e269d9a54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71397830000001,32.9259837]},"id":"8f44c0a2aae6576-17d7d14b9d5ee60c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aae4cf2-17ff4011c2069f8f","8f44c0a2aae6576-17d7d14b9d5ee60c"]},"geometry":{"type":"LineString","coordinates":[[-83.7144804,32.925819600000004],[-83.7142505,32.925894400000004],[-83.71397830000001,32.9259837]]},"id":"8a44c0a2aae7fff-17b670aeb680d0d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf5850-17fe61cd821fb7c4","8f44c0a2aae6576-17d7d14b9d5ee60c"]},"geometry":{"type":"LineString","coordinates":[[-83.71397830000001,32.9259837],[-83.7137704,32.9260518]]},"id":"8944c0a2aafffff-17ff618c9ed64c77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf5850-17fe61cd821fb7c4","8f44c0a2aaf5181-17b6623b6271134e"]},"geometry":{"type":"LineString","coordinates":[[-83.7137704,32.9260518],[-83.71359460000001,32.9261094]]},"id":"8b44c0a2aaf5fff-179662047483e1da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71342270000001,32.9261658]},"id":"8f44c0a2aaf54f0-17d7e2a6d5206a63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf5181-17b6623b6271134e","8f44c0a2aaf54f0-17d7e2a6d5206a63"]},"geometry":{"type":"LineString","coordinates":[[-83.71359460000001,32.9261094],[-83.71342270000001,32.9261658]]},"id":"8b44c0a2aaf5fff-17b642711ecf9a73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132589,32.9262195]},"id":"8f44c0a2aaf0b92-17f7730d3bd0d0d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf0b92-17f7730d3bd0d0d3","8f44c0a2aaf54f0-17d7e2a6d5206a63"]},"geometry":{"type":"LineString","coordinates":[[-83.71342270000001,32.9261658],[-83.7132589,32.9262195]]},"id":"8a44c0a2aaf7fff-17d672da0737af61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7130844,32.9262767]},"id":"8f44c0a2aaf009c-179ef37a4e9b6e37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf0b92-17f7730d3bd0d0d3","8f44c0a2aaf009c-179ef37a4e9b6e37"]},"geometry":{"type":"LineString","coordinates":[[-83.7132589,32.9262195],[-83.7130844,32.9262767]]},"id":"8b44c0a2aaf0fff-17ff5343c40d7938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71287020000001,32.926347]},"id":"8f44c0a2aaf2b1b-17b6e400231b84e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf2b1b-17b6e400231b84e1","8f44c0a2aaf009c-179ef37a4e9b6e37"]},"geometry":{"type":"LineString","coordinates":[[-83.7130844,32.9262767],[-83.71287020000001,32.926347]]},"id":"8a44c0a2aaf7fff-17b6f3bd3d434d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7156947,32.925254100000004]},"id":"8f44c0a2aa0d119-179ffd1ad9bd7275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa081b2-17be7e797339d2a9","8f44c0a2aa0d119-179ffd1ad9bd7275"]},"geometry":{"type":"LineString","coordinates":[[-83.71513370000001,32.9253317],[-83.7153267,32.9253518],[-83.7155369,32.925304700000005],[-83.7156947,32.925254100000004]]},"id":"8a44c0a2aa0ffff-17b63dc88dcad71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7158615,32.9252005]},"id":"8f44c0a2aa0d868-17fe7cb29a606aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0d868-17fe7cb29a606aa3","8f44c0a2aa0d119-179ffd1ad9bd7275"]},"geometry":{"type":"LineString","coordinates":[[-83.7156947,32.925254100000004],[-83.7158615,32.9252005]]},"id":"8b44c0a2aa0dfff-17ff3ce6b4c096c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0d868-17fe7cb29a606aa3","8f44c0a2aa761a4-17b6fc0be8d939de"]},"geometry":{"type":"LineString","coordinates":[[-83.7158615,32.9252005],[-83.71607390000001,32.9251323],[-83.7161282,32.9251084]]},"id":"8944c0a2aa3ffff-17defc5eb5d7b927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa76965-17f77b7bc6959c6c","8f44c0a2aa761a4-17b6fc0be8d939de"]},"geometry":{"type":"LineString","coordinates":[[-83.7161282,32.9251084],[-83.71635880000001,32.925006800000006]]},"id":"8b44c0a2aa76fff-17973bc3da167ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7164242,32.9248971]},"id":"8f44c0a2aa29351-17bebb52ec94d059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa29351-17bebb52ec94d059","8f44c0a2aa76965-17f77b7bc6959c6c"]},"geometry":{"type":"LineString","coordinates":[[-83.71635880000001,32.925006800000006],[-83.7164242,32.9248971]]},"id":"8a44c0a2aa77fff-17df3b67570a8a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7158694,32.924188]},"id":"8f44c0a2aa28d20-13f7bcada9408aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa29351-17bebb52ec94d059","8f44c0a2aa28d20-13f7bcada9408aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.7164242,32.9248971],[-83.7164242,32.924795100000004],[-83.71625610000001,32.9245795],[-83.7158694,32.924188]]},"id":"8944c0a2aa3ffff-13d7bbe8b6628f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa2eb12-139f3cffb3baafa8","8f44c0a2aa28d20-13f7bcada9408aa6"]},"geometry":{"type":"LineString","coordinates":[[-83.7158694,32.924188],[-83.71582640000001,32.9241444],[-83.71573810000001,32.924052800000005]]},"id":"8a44c0a2aa2ffff-13d77cd6c2fed94d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa2eb12-139f3cffb3baafa8","8f44c0a2aa2e995-13d63d535dc2ba13"]},"geometry":{"type":"LineString","coordinates":[[-83.71573810000001,32.924052800000005],[-83.71560430000001,32.9239139]]},"id":"8b44c0a2aa2efff-13f7bd2983b56f71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154484,32.9237762]},"id":"8f44c0a2aa23b55-13f63db4ca5f8570"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa23b55-13f63db4ca5f8570","8f44c0a2aa2e995-13d63d535dc2ba13"]},"geometry":{"type":"LineString","coordinates":[[-83.71560430000001,32.9239139],[-83.71556960000001,32.9238779],[-83.7154484,32.9237762]]},"id":"8944c0a2aa3ffff-139e7d833b2eee3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa31b05-13df7fd149ae2b3d","8f44c0a2aa23b55-13f63db4ca5f8570"]},"geometry":{"type":"LineString","coordinates":[[-83.7154484,32.9237762],[-83.71538740000001,32.923725000000005],[-83.71508390000001,32.9235917],[-83.7147757,32.9235212],[-83.71458360000001,32.9235095]]},"id":"8944c0a2aa3ffff-1396feba4f4bc567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa31b05-13df7fd149ae2b3d","8f44c0a2aa311a9-13de706083a8ec65"]},"geometry":{"type":"LineString","coordinates":[[-83.71458360000001,32.9235095],[-83.71445340000001,32.9235016],[-83.7143544,32.9235139]]},"id":"8b44c0a2aa31fff-13d7d01900a32b4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa311a9-13de706083a8ec65","8f44c0a2aa06d5e-1397f0bcba77dabd"]},"geometry":{"type":"LineString","coordinates":[[-83.7143544,32.9235139],[-83.7142013,32.923532900000005],[-83.71414990000001,32.9235956],[-83.71414060000001,32.923689700000004],[-83.71420690000001,32.9238303]]},"id":"8944c0a2aa3ffff-139640c00d749cdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0604e-139e7081ec6f6248","8f44c0a2aa06d5e-1397f0bcba77dabd"]},"geometry":{"type":"LineString","coordinates":[[-83.71420690000001,32.9238303],[-83.7142293,32.9238779],[-83.714301,32.924045500000005]]},"id":"8b44c0a2aa06fff-13d7409eee96ddb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0604e-139e7081ec6f6248","8f44c0a2aa02965-1397c071b65435e9"]},"geometry":{"type":"LineString","coordinates":[[-83.714301,32.924045500000005],[-83.7143367,32.924128800000005],[-83.7143269,32.9242428]]},"id":"8a44c0a2aa07fff-13d6e07230b3d98f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7143157,32.928080200000004]},"id":"8f44c0a2aacc786-13f66078b1556a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aac8ad4-17f6f002c5fce699","8f44c0a2aacc786-13f66078b1556a64"]},"geometry":{"type":"LineString","coordinates":[[-83.71450440000001,32.9284875],[-83.71438300000001,32.9282271],[-83.7143157,32.928080200000004]]},"id":"8a44c0a2aacffff-17f7c03df32bd743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aac0b36-13f661629815258b","8f44c0a2aacc786-13f66078b1556a64"]},"geometry":{"type":"LineString","coordinates":[[-83.7143157,32.928080200000004],[-83.71403480000001,32.927466800000005],[-83.7139415,32.9272678]]},"id":"8944c0a2aafffff-13f650ed3fcf0a9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aac0b36-13f661629815258b","8f44c0a2aac0906-13b7418d11f5b62c"]},"geometry":{"type":"LineString","coordinates":[[-83.7139415,32.9272678],[-83.7138735,32.9271316]]},"id":"8a44c0a2aac7fff-13dfd177d066b7be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf54f0-17d7e2a6d5206a63","8f44c0a2aac0906-13b7418d11f5b62c"]},"geometry":{"type":"LineString","coordinates":[[-83.7138735,32.9271316],[-83.7136928,32.9267375],[-83.713508,32.9263599],[-83.71342270000001,32.9261658]]},"id":"8944c0a2aafffff-13f7c21a102951c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129029,32.9250117]},"id":"8f44c0a2aaad572-17f653ebb8fed72b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaf54f0-17d7e2a6d5206a63","8f44c0a2aaad572-17f653ebb8fed72b"]},"geometry":{"type":"LineString","coordinates":[[-83.71342270000001,32.9261658],[-83.713243,32.9257573],[-83.713127,32.925507100000004],[-83.7130212,32.9252789],[-83.7129029,32.9250117]]},"id":"8844c0a2abfffff-17dec348c0507514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aaac166-13be4441aff26176","8f44c0a2aaad572-17f653ebb8fed72b"]},"geometry":{"type":"LineString","coordinates":[[-83.7129029,32.9250117],[-83.71284250000001,32.924875400000005],[-83.71276540000001,32.9246944]]},"id":"8a44c0a2aaaffff-1797541704d7ccbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ae9561-17ff647ceeceea56","8f44c0a28aec44c-17df1522b77dd68a"]},"geometry":{"type":"LineString","coordinates":[[-83.7386197,32.9218737],[-83.73866620000001,32.9219558],[-83.73899920000001,32.9223285],[-83.7390396,32.9224301],[-83.73888500000001,32.9225462]]},"id":"8a44c0a28aeffff-17b6948a6b1d31c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ae9561-17ff647ceeceea56","8f44c0a28aebb2d-17b604d579e31bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.73888500000001,32.9225462],[-83.73874330000001,32.9226528]]},"id":"8b44c0a28ae9fff-1796b4a9283c9cab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeb6c4-17d7a5b9a8436e12","8f44c0a28aeb3a4-1796754e26df3559"]},"geometry":{"type":"LineString","coordinates":[[-83.7385502,32.922778300000004],[-83.7383782,32.9228858]]},"id":"8b44c0a28aebfff-17b61583e6b521fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28aeb6c4-17d7a5b9a8436e12","8f44c0a28acc26d-179fb62cf3e2dca1"]},"geometry":{"type":"LineString","coordinates":[[-83.7383782,32.9228858],[-83.73819370000001,32.9230011]]},"id":"8a44c0a28acffff-17f7b5f356832ca1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac3adb-17dfe84412db65e9","8f44c0a28acc26d-179fb62cf3e2dca1"]},"geometry":{"type":"LineString","coordinates":[[-83.73819370000001,32.9230011],[-83.7378942,32.9231883],[-83.7378034,32.9231671],[-83.737425,32.922718100000004],[-83.73733750000001,32.922691]]},"id":"8944c0a28afffff-17970742836f5664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28adc943-17fe496b3e4b4b89","8f44c0a28ac3adb-17dfe84412db65e9"]},"geometry":{"type":"LineString","coordinates":[[-83.73733750000001,32.922691],[-83.73728870000001,32.9226758],[-83.7369961,32.9226504],[-83.7368653,32.9225444]]},"id":"8a44c0a28ac7fff-17be48dedccf3bce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac66e1-17b6997b7d6aa29c","8f44c0a28adc943-17fe496b3e4b4b89"]},"geometry":{"type":"LineString","coordinates":[[-83.7368653,32.9225444],[-83.7365571,32.9222946],[-83.7365975,32.9222057],[-83.73683460000001,32.9220659],[-83.7368393,32.9220105]]},"id":"8944c0a28afffff-17de79cf2700c9a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610073,32.887836]},"id":"8f44c0a14a93312-13b7bef866d1ad0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a14a93312-13b7bef866d1ad0d","8f44c0a148cec94-17b7bf871558a147"]},"geometry":{"type":"LineString","coordinates":[[-83.610073,32.887836],[-83.61017600000001,32.887574],[-83.61027100000001,32.887352],[-83.610585,32.886663],[-83.61094700000001,32.885835],[-83.611008,32.885666],[-83.611092,32.88537],[-83.611114,32.885232],[-83.611126,32.885019],[-83.611123,32.884836],[-83.6110929,32.8846539],[-83.6110379,32.8844159],[-83.61097480000001,32.8842506],[-83.61090080000001,32.8840905],[-83.6108088,32.883937200000005],[-83.610652,32.883712],[-83.61041300000001,32.883408],[-83.60984470000001,32.882724200000006]]},"id":"8744c0a14ffffff-13d73d93444b8bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60811600000001,32.880778]},"id":"8f44c0a1488d58b-13f743bf85e82d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1488d58b-13f743bf85e82d63","8f44c0a148cec94-17b7bf871558a147"]},"geometry":{"type":"LineString","coordinates":[[-83.60984470000001,32.882724200000006],[-83.609606,32.882437],[-83.60890300000001,32.881622],[-83.608823,32.881535],[-83.608514,32.881203],[-83.608205,32.880882],[-83.60811600000001,32.880778]]},"id":"8844c0a149fffff-13d7719c5af37c92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1488d58b-13f743bf85e82d63","8f44c0a14130742-13b749706d2a0c16"]},"geometry":{"type":"LineString","coordinates":[[-83.60811600000001,32.880778],[-83.605838,32.881904],[-83.605807,32.881905],[-83.60578500000001,32.881898]]},"id":"8744c0a14ffffff-13df76969a4c621f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.605652,32.8818075]},"id":"8f44c0a141304ec-13fff9c38c303699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a14130742-13b749706d2a0c16","8f44c0a141304ec-13fff9c38c303699"]},"geometry":{"type":"LineString","coordinates":[[-83.60578500000001,32.881898],[-83.60574000000001,32.881874],[-83.605652,32.8818075]]},"id":"8b44c0a14130fff-1397799ae81aace0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a1413294c-13df7a0c88e6fc43","8f44c0a141304ec-13fff9c38c303699"]},"geometry":{"type":"LineString","coordinates":[[-83.605652,32.8818075],[-83.6055352,32.8817303]]},"id":"8a44c0a14137fff-13f7d9e80b0ada10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6380056,32.8381758]},"id":"8f44c0a340a284b-13f7fac68c655695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340a284b-13f7fac68c655695","8f44c0a34084071-13bffb5d80a7f4f7"]},"geometry":{"type":"LineString","coordinates":[[-83.637764,32.838703],[-83.63781200000001,32.838617],[-83.6380056,32.8381758]]},"id":"8944c0a340bffff-139ffb0fd2150d55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340a284b-13f7fac68c655695","8f44c0a3419934d-17f7fa2b4af5e4bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6380056,32.8381758],[-83.63801000000001,32.838155],[-83.638254,32.837535]]},"id":"8a44c0a340a7fff-17bffa79e2a6fd3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3418aca0-17def9c06e06b98c","8f44c0a3419934d-17f7fa2b4af5e4bb"]},"geometry":{"type":"LineString","coordinates":[[-83.638254,32.837535],[-83.63842500000001,32.837108]]},"id":"8944c0a341bffff-17dff9f5d1fd278c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3418aca0-17def9c06e06b98c","8f44c0a34181788-17f7f92ecf4e7733"]},"geometry":{"type":"LineString","coordinates":[[-83.63842500000001,32.837108],[-83.63849900000001,32.836931],[-83.638658,32.836515]]},"id":"8944c0a341bffff-179ff97667aae689"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34181788-17f7f92ecf4e7733","8f44c0a34181569-179ff908f0b4038e"]},"geometry":{"type":"LineString","coordinates":[[-83.638658,32.836515],[-83.63871,32.836398],[-83.63871850000001,32.8363764]]},"id":"8b44c0a34181fff-17bef91ba1af82cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34185c4c-13d7f8932e200409","8f44c0a34181569-179ff908f0b4038e"]},"geometry":{"type":"LineString","coordinates":[[-83.63871850000001,32.8363764],[-83.638863,32.83601],[-83.638907,32.835875]]},"id":"8a44c0a34187fff-13f7f8cc32047a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6260834,32.854655]},"id":"8f44c0a30530073-13bf77e1e1c16bda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0a3051410b-13d7f95ffc026e23","8f44c0a30530073-13bf77e1e1c16bda"]},"geometry":{"type":"LineString","coordinates":[[-83.62547210000001,32.8551294],[-83.6257556,32.8549335],[-83.6260834,32.854655]]},"id":"8944c0a3053ffff-13df789d5ce91286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0a30530073-13bf77e1e1c16bda","8f44c0a30c9b7aa-179796d4db2bb054"]},"geometry":{"type":"LineString","coordinates":[[-83.6260834,32.854655],[-83.6265139,32.8541784]]},"id":"8944c0a3053ffff-139f775b6d5e779c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0a30530073-13bf77e1e1c16bda","8f44c0a3050ab24-17f7f5af086f31ff"]},"geometry":{"type":"LineString","coordinates":[[-83.62698400000001,32.856819],[-83.62758880000001,32.8565695],[-83.6276941,32.856545700000005],[-83.6277172,32.8565044],[-83.627723,32.8564171],[-83.6276998,32.856334600000004],[-83.62758720000001,32.8562278],[-83.6272637,32.8558372],[-83.6265736,32.8550777],[-83.62641450000001,32.8549467],[-83.6260834,32.854655]]},"id":"8944c0a3053ffff-1397b57d6ac571b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62584840000001,32.8544275]},"id":"8f44c0a30536344-13b73874c66868ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0a30530073-13bf77e1e1c16bda","8f44c0a30536344-13b73874c66868ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6260834,32.854655],[-83.62584840000001,32.8544275]]},"id":"8a44c0a30537fff-13ff582b5f3c62fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.713097,32.922989300000005]},"id":"8f44c0a2ab8d19b-179653726bce17fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ab8d19b-179653726bce17fb","8f44c0a2aa14d33-13de42e3ff3e4454"]},"geometry":{"type":"LineString","coordinates":[[-83.7133249,32.923536],[-83.7131731,32.9231548],[-83.713097,32.922989300000005]]},"id":"8844c0a2abfffff-13be632947d8e1b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71275820000001,32.9222801]},"id":"8f44c0a2abaa452-17df544621d2ec10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ab8d19b-179653726bce17fb","8f44c0a2abaa452-17df544621d2ec10"]},"geometry":{"type":"LineString","coordinates":[[-83.713097,32.922989300000005],[-83.7128153,32.9223768],[-83.71275820000001,32.9222801]]},"id":"8944c0a2abbffff-17b743d9815ca3d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71116880000001,32.9220577]},"id":"8f44c0a2ab91982-17be5827802f949f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2abaa452-17df544621d2ec10","8f44c0a2ab91982-17be5827802f949f"]},"geometry":{"type":"LineString","coordinates":[[-83.71275820000001,32.9222801],[-83.7126975,32.9221772],[-83.71180050000001,32.9219129],[-83.71166020000001,32.921902700000004],[-83.71116880000001,32.9220577]]},"id":"8944c0a2abbffff-17bef6274c8384ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7107338,32.9221857]},"id":"8f44c0a2ab93832-179e59376cc75bff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ab91982-17be5827802f949f","8f44c0a2ab93832-179e59376cc75bff"]},"geometry":{"type":"LineString","coordinates":[[-83.71116880000001,32.9220577],[-83.7107338,32.9221857]]},"id":"8a44c0a2ab97fff-17f658af79741782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aad6921-139e4595d5204b28","8f44c0a2aad651a-13ff5667ecd4dd48"]},"geometry":{"type":"LineString","coordinates":[[-83.71222110000001,32.926688],[-83.7119215,32.9268281],[-83.71188500000001,32.926840500000004]]},"id":"8a44c0a2aad7fff-13bec5fe6f6ee656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a325418-13d667974d74ab89","8f44c0a2aad651a-13ff5667ecd4dd48"]},"geometry":{"type":"LineString","coordinates":[[-83.71188500000001,32.926840500000004],[-83.71139960000001,32.927005]]},"id":"8844c0a2abfffff-139ec6ff9444f50e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710982,32.9271466]},"id":"8f44c0a2a320443-13bee89c48264d24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a325418-13d667974d74ab89","8f44c0a2a320443-13bee89c48264d24"]},"geometry":{"type":"LineString","coordinates":[[-83.71139960000001,32.927005],[-83.710982,32.9271466]]},"id":"8a44c0a2a327fff-13fe6819c5a94ad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7106207,32.9272687]},"id":"8f44c0a2a3220c4-13f6f97e1b500c15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a3220c4-13f6f97e1b500c15","8f44c0a2a320443-13bee89c48264d24"]},"geometry":{"type":"LineString","coordinates":[[-83.710982,32.9271466],[-83.7108173,32.9272024],[-83.7106207,32.9272687]]},"id":"8a44c0a2a327fff-13d6d90d2f4cba98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71039160000001,32.9273459]},"id":"8f44c0a2a331b5a-13b77a0d4fe5f984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a3220c4-13f6f97e1b500c15","8f44c0a2a331b5a-13b77a0d4fe5f984"]},"geometry":{"type":"LineString","coordinates":[[-83.7106207,32.9272687],[-83.71039160000001,32.9273459]]},"id":"8944c0a2a33ffff-139f59c5a5bc82d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a315d64-13fefc197dea7aa5","8f44c0a2a331b5a-13b77a0d4fe5f984"]},"geometry":{"type":"LineString","coordinates":[[-83.71039160000001,32.9273459],[-83.7099891,32.9274816],[-83.7095529,32.9276623]]},"id":"8944c0a2a33ffff-1397eb150671d7c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891408,32.8192151]},"id":"8f44c0b19993141-13bf7def003847ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19993141-13bf7def003847ae","8f44c0b1998c7a8-13bff928da39c54f"]},"geometry":{"type":"LineString","coordinates":[[-83.6891408,32.8192151],[-83.68932290000001,32.8192875],[-83.6896035,32.8193268],[-83.6904059,32.8194241],[-83.6910963,32.8196537]]},"id":"8944c0b199bffff-13b77b89358d6188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1998c371-13dff87bf2f94804","8f44c0b1998c7a8-13bff928da39c54f"]},"geometry":{"type":"LineString","coordinates":[[-83.6910963,32.8196537],[-83.6913729,32.819676]]},"id":"8b44c0b1998cfff-13d6f8d26366a8f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1998c371-13dff87bf2f94804","8f44c0b198364b2-13fef77866b656e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6913729,32.819676],[-83.69175100000001,32.8197405],[-83.6917882,32.8197518]]},"id":"8944c0b199bffff-13dff7f9d99e2efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69228530000001,32.819903000000004]},"id":"8f44c0b19830d80-13d77641ba1a3818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198364b2-13fef77866b656e3","8f44c0b19830d80-13d77641ba1a3818"]},"geometry":{"type":"LineString","coordinates":[[-83.6917882,32.8197518],[-83.69228530000001,32.819903000000004]]},"id":"8a44c0b19837fff-13be76dd19aaea7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19830d4c-13f675ea102e045b","8f44c0b19830d80-13d77641ba1a3818"]},"geometry":{"type":"LineString","coordinates":[[-83.69228530000001,32.819903000000004],[-83.6924255,32.819945700000005]]},"id":"8c44c0b19830dff-13f6f615e980117f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19830d4c-13f675ea102e045b","8f44c0b19830861-1796757f6e3758aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6924255,32.819945700000005],[-83.69256700000001,32.8199887],[-83.69259620000001,32.819993700000005]]},"id":"8b44c0b19830fff-179675b4f2817ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1983546e-17b7f50b6accbf03","8f44c0b19830861-1796757f6e3758aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69259620000001,32.819993700000005],[-83.6927818,32.8200252]]},"id":"8a44c0b19837fff-179ff5456da3fd88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19835043-17b7f4a2f2921982","8f44c0b1983546e-17b7f50b6accbf03"]},"geometry":{"type":"LineString","coordinates":[[-83.6927818,32.8200252],[-83.69287220000001,32.820040500000005],[-83.6929489,32.820047800000005]]},"id":"8b44c0b19835fff-17bff4d744b6eba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931272,32.8200647]},"id":"8f44c0b19835a51-17be74338059c961"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19835043-17b7f4a2f2921982","8f44c0b19835a51-17be74338059c961"]},"geometry":{"type":"LineString","coordinates":[[-83.6929489,32.820047800000005],[-83.6931272,32.8200647]]},"id":"8b44c0b19835fff-17b7746b3ffcab8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19835a51-17be74338059c961","8f44c0b1982628a-17d773873491a04d"]},"geometry":{"type":"LineString","coordinates":[[-83.6931272,32.8200647],[-83.6931552,32.8200674],[-83.69340290000001,32.8200821]]},"id":"8a44c0b19827fff-17d673dd63620807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1982628a-17d773873491a04d","8f44c0b19826261-17d7732faef14ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.69340290000001,32.8200821],[-83.6934334,32.8200839],[-83.693543,32.8200823]]},"id":"8c44c0b198263ff-17d7f35b76785560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936988,32.820080000000004]},"id":"8f44c0b19820c74-17d672ce45a5e93a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19820c74-17d672ce45a5e93a","8f44c0b19826261-17d7732faef14ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.693543,32.8200823],[-83.6936988,32.820080000000004]]},"id":"8b44c0b19820fff-17d6f2fefb418db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19820c74-17d672ce45a5e93a","8f44c0b19820810-17d6f2825e7ae41b"]},"geometry":{"type":"LineString","coordinates":[[-83.6936988,32.820080000000004],[-83.6938203,32.820078200000005]]},"id":"8b44c0b19820fff-17d772a84a1a4e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19820810-17d6f2825e7ae41b","8f44c0b19825425-17d6f1ed4ad99fb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6938203,32.820078200000005],[-83.69405880000001,32.8200747]]},"id":"8a44c0b19827fff-17d7f237ce1ead4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825425-17d6f1ed4ad99fb3","8f44c0b19825108-17d6f176a8dba02d"]},"geometry":{"type":"LineString","coordinates":[[-83.69405880000001,32.8200747],[-83.69424860000001,32.8200719]]},"id":"8b44c0b19825fff-17d7f1b1f5d8b85c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825160-17d6f154ee97e429","8f44c0b19825108-17d6f176a8dba02d"]},"geometry":{"type":"LineString","coordinates":[[-83.69424860000001,32.8200719],[-83.6943026,32.8200744]]},"id":"8c44c0b198251ff-17d7f165ca5e0091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825160-17d6f154ee97e429","8f44c0b19825b2a-17bff0ff4256b6f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6943026,32.8200744],[-83.69443960000001,32.820067]]},"id":"8b44c0b19825fff-17d6712a1b3b3312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825b2a-17bff0ff4256b6f0","8f44c0b199564dc-17bef0e2429a771d"]},"geometry":{"type":"LineString","coordinates":[[-83.69443960000001,32.820067],[-83.69448600000001,32.8200616]]},"id":"8a44c0b19957fff-17be70f0c7a5f424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956734-17b7f0963eb36b2f","8f44c0b199564dc-17bef0e2429a771d"]},"geometry":{"type":"LineString","coordinates":[[-83.69448600000001,32.8200616],[-83.6946077,32.8200476]]},"id":"8b44c0b19956fff-17b670bc3413d9e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199560f2-17bff07505f745aa","8f44c0b19956734-17b7f0963eb36b2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6946077,32.8200476],[-83.69466080000001,32.8200415]]},"id":"8b44c0b19956fff-17bff0859cea7e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199560f2-17bff07505f745aa","8f44c0b19956a96-17b7f0277f3e3592"]},"geometry":{"type":"LineString","coordinates":[[-83.69466080000001,32.8200415],[-83.6947588,32.820030100000004],[-83.6947849,32.820025300000005]]},"id":"8c44c0b199561ff-17bf704e2ee884c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956aa0-179ff00689df26cf","8f44c0b19956a96-17b7f0277f3e3592"]},"geometry":{"type":"LineString","coordinates":[[-83.6947849,32.820025300000005],[-83.6948376,32.8200157]]},"id":"8d44c0b19956abf-17b6f0170e85de2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19956aa0-179ff00689df26cf","8f44c0b19956b44-179fefba2d944046"]},"geometry":{"type":"LineString","coordinates":[[-83.6948376,32.8200157],[-83.6949598,32.8199934]]},"id":"8c44c0b19956bff-1796efe05557cd63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19954786-17976f95477b25c5","8f44c0b19956b44-179fefba2d944046"]},"geometry":{"type":"LineString","coordinates":[[-83.6949598,32.8199934],[-83.6949853,32.8199887],[-83.6950188,32.8199798]]},"id":"8b44c0b19954fff-179e6fa7a65a45fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19954786-17976f95477b25c5","8f44c0b199540d4-13f6ef479112ec90"]},"geometry":{"type":"LineString","coordinates":[[-83.6950188,32.8199798],[-83.69514310000001,32.8199466]]},"id":"8b44c0b19954fff-13ff6f6e7a5f9261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199540e5-13ff6f2bf018f4de","8f44c0b199540d4-13f6ef479112ec90"]},"geometry":{"type":"LineString","coordinates":[[-83.69514310000001,32.8199466],[-83.6951873,32.8199348]]},"id":"8d44c0b199540ff-13feff39ccf08101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199540e5-13ff6f2bf018f4de","8f44c0b19954aa6-13d76edffab71772"]},"geometry":{"type":"LineString","coordinates":[[-83.6951873,32.8199348],[-83.6953089,32.819902400000004]]},"id":"8b44c0b19954fff-13f76f05f42c3f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19954a34-13de6ec3bedc6b01","8f44c0b19954aa6-13d76edffab71772"]},"geometry":{"type":"LineString","coordinates":[[-83.6953089,32.819902400000004],[-83.6953541,32.819882]]},"id":"8c44c0b19954bff-13d6eed1d0566bbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19954a34-13de6ec3bedc6b01","8f44c0b199734e1-13b66e7429e3200e"]},"geometry":{"type":"LineString","coordinates":[[-83.6953541,32.819882],[-83.6954814,32.819824600000004]]},"id":"8944c0b1997ffff-13be7e9bfd81eba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199734e1-13b66e7429e3200e","8f44c0b19973462-139ffe5896481676"]},"geometry":{"type":"LineString","coordinates":[[-83.6954814,32.819824600000004],[-83.6955255,32.8198047]]},"id":"8c44c0b199735ff-13b67e666db291cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199731a5-13ff7e14adbc7ac0","8f44c0b19973462-139ffe5896481676"]},"geometry":{"type":"LineString","coordinates":[[-83.6955255,32.8198047],[-83.6956342,32.8197271]]},"id":"8b44c0b19973fff-1397fe36a834cef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199731a5-13ff7e14adbc7ac0","8f44c0b1997540a-13d7ed018a506c0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6956342,32.8197271],[-83.695688,32.8196888],[-83.6958135,32.8195544],[-83.69598830000001,32.8193392],[-83.6960744,32.8192606]]},"id":"8a44c0b19977fff-13dffd89687c2d64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19975544-13beecd5324a5a33","8f44c0b1997540a-13d7ed018a506c0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6960744,32.8192606],[-83.69614530000001,32.8192174]]},"id":"8c44c0b199755ff-13be6ceb6d3f3967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19975544-13beecd5324a5a33","8f44c0b19975883-13fe6c7a729cea16"]},"geometry":{"type":"LineString","coordinates":[[-83.69614530000001,32.8192174],[-83.69622700000001,32.8191676],[-83.6962905,32.819142400000004]]},"id":"8b44c0b19975fff-1397fca8cb509f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d9a58-13b66a898d81d1da","8f44c0b19975883-13fe6c7a729cea16"]},"geometry":{"type":"LineString","coordinates":[[-83.6962905,32.819142400000004],[-83.6964978,32.81906],[-83.69686700000001,32.8189318],[-83.6970589,32.8188304],[-83.69708560000001,32.818800200000005]]},"id":"8844c0b199fffff-139e7b7cbd4e62d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2d9a58-13b66a898d81d1da","8f44c0b1d2ca440-13d76a3dd67dcf77"]},"geometry":{"type":"LineString","coordinates":[[-83.69708560000001,32.818800200000005],[-83.6971869,32.8186856],[-83.69720670000001,32.818642000000004]]},"id":"8944c0b1d2fffff-13f6ea60d91fef7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ca440-13d76a3dd67dcf77","8f44c0b1d2cac09-13df7a107abacb8c"]},"geometry":{"type":"LineString","coordinates":[[-83.69720670000001,32.818642000000004],[-83.6972793,32.8184817]]},"id":"8b44c0b1d2cafff-13977a272a485440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ce603-17ff69e3227dd198","8f44c0b1d2cac09-13df7a107abacb8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6972793,32.8184817],[-83.6973518,32.818321600000004]]},"id":"8a44c0b1d2cffff-13bf79f9c7f07f1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ce603-17ff69e3227dd198","8f44c0b1d2ce56d-179ee9d42af8b6df"]},"geometry":{"type":"LineString","coordinates":[[-83.6973518,32.818321600000004],[-83.6973789,32.818172600000004],[-83.6973758,32.818141600000004]]},"id":"8b44c0b1d2cefff-17d6f9d96de7d7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2cece6-17d6e9d96ca73259","8f44c0b1d2ce56d-179ee9d42af8b6df"]},"geometry":{"type":"LineString","coordinates":[[-83.6973758,32.818141600000004],[-83.6973674,32.8180588]]},"id":"8b44c0b1d2cefff-17f6e9d6ca3695e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2cece6-17d6e9d96ca73259","8f44c0b1d2c398d-17feea4ef38b63c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6973674,32.8180588],[-83.6973641,32.8180258],[-83.69730750000001,32.817912],[-83.6971793,32.8176842]]},"id":"8944c0b1d2fffff-17f66a0f7222423a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c060e-17b66a7070983204","8f44c0b1d2c398d-17feea4ef38b63c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6971793,32.8176842],[-83.6971257,32.8175716]]},"id":"8a44c0b1d2c7fff-17df7a5fb7ed63af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba971bc45-17b72ad744e6302d","8f44c0ba9785ae8-17dfef4317f85505"]},"geometry":{"type":"LineString","coordinates":[[-83.618318,32.827424],[-83.6165071,32.826851000000005]]},"id":"8844c0ba97fffff-1797fd0d23fd6929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba9785ae8-17dfef4317f85505","8f44c0ba9794755-13dff3f31631388c"]},"geometry":{"type":"LineString","coordinates":[[-83.6165071,32.826851000000005],[-83.615864,32.826704],[-83.61515340000001,32.826577300000004],[-83.61471800000001,32.826476],[-83.61458710000001,32.8264444]]},"id":"8944c0ba97bffff-17df319b33635e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0babb65880-13bfb61842e1646f","8f44c0ba9794755-13dff3f31631388c"]},"geometry":{"type":"LineString","coordinates":[[-83.61458710000001,32.8264444],[-83.613954,32.826434],[-83.61370840000001,32.8264171]]},"id":"8744c0ba9ffffff-13df3505c2781ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba94c2683-17ff78a14a1d5853","8f44c0babb65880-13bfb61842e1646f"]},"geometry":{"type":"LineString","coordinates":[[-83.61370840000001,32.8264171],[-83.61360900000001,32.826344],[-83.613439,32.82612],[-83.612955,32.825442],[-83.61286700000001,32.825308],[-83.612826,32.825238],[-83.612795,32.825164],[-83.612736,32.824989],[-83.61267000000001,32.824855]]},"id":"8744c0ba9ffffff-13ffb77c22570775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.606671,32.814224]},"id":"8f44c0ba8284565-17ff4746a959bf3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba8284565-17ff4746a959bf3f","8f44c0ba94c2683-17ff78a14a1d5853"]},"geometry":{"type":"LineString","coordinates":[[-83.61267000000001,32.824855],[-83.612628,32.824745],[-83.612558,32.824375],[-83.612306,32.82293],[-83.612277,32.822637],[-83.612285,32.822547],[-83.612325,32.822394],[-83.612379,32.822286000000005],[-83.61244400000001,32.822178],[-83.612527,32.82208],[-83.61259600000001,32.821975],[-83.612672,32.821813],[-83.61270300000001,32.821688],[-83.612716,32.821585],[-83.612716,32.821495],[-83.61270800000001,32.821408000000005],[-83.61267500000001,32.821284],[-83.612638,32.821177],[-83.61258600000001,32.821086],[-83.612532,32.821011],[-83.612454,32.820917],[-83.61234900000001,32.82081],[-83.61221400000001,32.820687],[-83.612013,32.820559],[-83.611789,32.820459],[-83.61066100000001,32.82],[-83.610096,32.819779700000005],[-83.609806,32.819626],[-83.609643,32.819535],[-83.609458,32.819409],[-83.609323,32.819305],[-83.609305,32.81929],[-83.60922500000001,32.819222],[-83.60912,32.819122],[-83.608974,32.818973],[-83.60884700000001,32.818809],[-83.60870800000001,32.81861],[-83.608627,32.818463],[-83.6084222,32.8180214],[-83.60827040000001,32.8176943],[-83.606671,32.814224]]},"id":"8644c0bafffffff-13fffee3bda13d85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60664290000001,32.814165200000005]},"id":"8f44c0ba8284cf2-17d747583d25cb21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba8284565-17ff4746a959bf3f","8f44c0ba8284cf2-17d747583d25cb21"]},"geometry":{"type":"LineString","coordinates":[[-83.606671,32.814224],[-83.60664290000001,32.814165200000005]]},"id":"8b44c0ba8284fff-17f7e74f7dd92cc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60464800000001,32.814814000000005]},"id":"8f44c0ba8661b6a-17ffcc370424ddcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba8284cf2-17d747583d25cb21","8f44c0ba8661b6a-17ffcc370424ddcc"]},"geometry":{"type":"LineString","coordinates":[[-83.60664290000001,32.814165200000005],[-83.60464800000001,32.814814000000005]]},"id":"8744c0ba8ffffff-17b749c790dd25bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60470500000001,32.814946]},"id":"8f44c0ba866cd71-17bf4c136fdc6e06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0ba8661b6a-17ffcc370424ddcc","8f44c0ba866cd71-17bf4c136fdc6e06"]},"geometry":{"type":"LineString","coordinates":[[-83.60464800000001,32.814814000000005],[-83.60470500000001,32.814946]]},"id":"8944c0ba867ffff-17974c2531da5117"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8284cf2-17d747583d25cb21","8f44c0ba8745791-13974cb2db285401"]},"geometry":{"type":"LineString","coordinates":[[-83.60664290000001,32.814165200000005],[-83.6065837,32.8140489],[-83.60636840000001,32.8138671],[-83.60572470000001,32.813466500000004],[-83.6051418,32.8129932],[-83.6044499,32.812419600000005]]},"id":"8744c0ba8ffffff-13b7fa00eded1e32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60357540000001,32.811694700000004]},"id":"8f44c0ba8773843-17df7ed56a6fe777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8773843-17df7ed56a6fe777","8f44c0ba8745791-13974cb2db285401"]},"geometry":{"type":"LineString","coordinates":[[-83.6044499,32.812419600000005],[-83.60357540000001,32.811694700000004]]},"id":"8944c0ba877ffff-13bffdc414e8a6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba875aa76-17df6fd73acf8a44","8f44c0ba8661b6a-17ffcc370424ddcc"]},"geometry":{"type":"LineString","coordinates":[[-83.60464800000001,32.814814000000005],[-83.6043693,32.8142195],[-83.6042417,32.8139209],[-83.60413340000001,32.8138389],[-83.6037402,32.813703100000005],[-83.60333940000001,32.813606300000004],[-83.6031629,32.8135362]]},"id":"8844c0ba87fffff-17f7ddaea9f53cb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60188020000001,32.8129932]},"id":"8f44c0ba862eaaa-13ffd2f8ee8840d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba862eaaa-13ffd2f8ee8840d8","8f44c0ba875aa76-17df6fd73acf8a44"]},"geometry":{"type":"LineString","coordinates":[[-83.6031629,32.8135362],[-83.60207340000001,32.813227600000005],[-83.60188020000001,32.8129932]]},"id":"8844c0ba87fffff-13d7d1807c8803b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8773843-17df7ed56a6fe777","8f44c0ba8773574-17dfcf83c506fd13"]},"geometry":{"type":"LineString","coordinates":[[-83.60357540000001,32.811694700000004],[-83.6032964,32.8117128]]},"id":"8b44c0ba8773fff-17d7ef2c9a235ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba862eaaa-13ffd2f8ee8840d8","8f44c0ba8773574-17dfcf83c506fd13"]},"geometry":{"type":"LineString","coordinates":[[-83.6032964,32.8117128],[-83.60291020000001,32.8119833],[-83.60188020000001,32.8129932]]},"id":"8844c0ba87fffff-13dfd14a0df46751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8773843-17df7ed56a6fe777","8f44c0ba8776a31-17b7df53db2a577d"]},"geometry":{"type":"LineString","coordinates":[[-83.60357540000001,32.811694700000004],[-83.60355390000001,32.8115505],[-83.6037041,32.811280000000004],[-83.6033731,32.8110141]]},"id":"8a44c0ba8777fff-17f76ed5d1624bf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6027385,32.8105045]},"id":"8f44c0ba872bc34-17f750e07045eb88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba872bc34-17f750e07045eb88","8f44c0ba8776a31-17b7df53db2a577d"]},"geometry":{"type":"LineString","coordinates":[[-83.6033731,32.8110141],[-83.6027385,32.8105045]]},"id":"8844c0ba87fffff-1797d01a2caa692a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7259674,32.7440336]},"id":"8f44c0b236b6863-139f2406686d935b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b236b6863-139f2406686d935b","8f44c0b04b4c629-13bf76a430e2ef0b"]},"geometry":{"type":"LineString","coordinates":[[-83.7248957,32.7440629],[-83.725509,32.744041],[-83.7259674,32.7440336]]},"id":"8744c0b23ffffff-13b6b55554648d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04b5e2ac-13b6eac229fc47f5","8f44c0b04b58c42-13d77a17b13adf5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7234821,32.744123900000005],[-83.7232094,32.744071600000005]]},"id":"8a44c0b04b5ffff-13d72a6cf82f4d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04b5365b-139f2be9540d4081","8f44c0b04b5e2ac-13b6eac229fc47f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7232094,32.744071600000005],[-83.7230207,32.7440354],[-83.7229013,32.7439812],[-83.7228123,32.743914000000004],[-83.7227371,32.743796800000005]]},"id":"8944c0b04b7ffff-13fe3b661482891b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72037830000001,32.8098875]},"id":"8f44c0b0e21e448-13f7b1ab96af9f32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e21a991-13de71979ea4cd88","8f44c0b0e21e448-13f7b1ab96af9f32"]},"geometry":{"type":"LineString","coordinates":[[-83.72041030000001,32.810080500000005],[-83.72037830000001,32.8098875]]},"id":"8a44c0b0e21ffff-13b631a19cb738fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203626,32.8097925]},"id":"8f44c0b0e21e555-13be71b5669cb76e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e21e555-13be71b5669cb76e","8f44c0b0e21e448-13f7b1ab96af9f32"]},"geometry":{"type":"LineString","coordinates":[[-83.72037830000001,32.8098875],[-83.7203626,32.8097925]]},"id":"8b44c0b0e21efff-13d631b0812be5c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72040720000001,32.809892000000005]},"id":"8f44c0b0e21e731-13f6b19981095a30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e218ca8-13be70ce58fec862","8f44c0b0e21e731-13f6b19981095a30"]},"geometry":{"type":"LineString","coordinates":[[-83.72073230000001,32.8100231],[-83.7205732,32.8100326],[-83.72048330000001,32.809996500000004],[-83.7204404,32.809966100000004],[-83.72040720000001,32.809892000000005]]},"id":"8a44c0b0e21ffff-13beb14146194c1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e21e555-13be71b5669cb76e","8f44c0b0e21e731-13f6b19981095a30"]},"geometry":{"type":"LineString","coordinates":[[-83.72040720000001,32.809892000000005],[-83.7203626,32.8097925]]},"id":"8b44c0b0e21efff-13d771a773c541de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e21e555-13be71b5669cb76e","8f44c0b0e21e526-13fe71c3a4e73bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.7203626,32.8097925],[-83.7203398,32.8097252]]},"id":"8b44c0b0e21efff-139771bc8da0e339"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e21e526-13fe71c3a4e73bf0","8f44c0b0e213ad4-139e71e4036f52af"]},"geometry":{"type":"LineString","coordinates":[[-83.7203398,32.8097252],[-83.72028800000001,32.8095719]]},"id":"8944c0b0e23ffff-13de71d3d0dc9ba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2138f2-13bf321694535fc5","8f44c0b0e213ad4-139e71e4036f52af"]},"geometry":{"type":"LineString","coordinates":[[-83.72028800000001,32.8095719],[-83.7202718,32.8095239],[-83.72020710000001,32.8094096]]},"id":"8b44c0b0e213fff-13fef1fb53c1b325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e2138f2-13bf321694535fc5","8f44c0b0e210689-13df32519b7c553b"]},"geometry":{"type":"LineString","coordinates":[[-83.72020710000001,32.8094096],[-83.7201127,32.8092595]]},"id":"8a44c0b0e217fff-139e3234122a4830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203915,32.8114359]},"id":"8f44c0b0e2f154c-17bf71a3581f9f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7203916,32.8114222]},"id":"8f44c0b0e2f1545-17b6f1a34f7da803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2f1545-17b6f1a34f7da803","8f44c0b0e2f154c-17bf71a3581f9f9a"]},"geometry":{"type":"LineString","coordinates":[[-83.7203915,32.8114359],[-83.7203916,32.8114222]]},"id":"8d44c0b0e2f157f-17b731a35c8fa429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2f1545-17b6f1a34f7da803","8f44c0b0e2f54da-17d6b1a17490d75e"]},"geometry":{"type":"LineString","coordinates":[[-83.7203916,32.8114222],[-83.72039450000001,32.8110921]]},"id":"8a44c0b0e2f7fff-17bff1a25ebc772b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72036920000001,32.8127446]},"id":"8f44c0b0e2dcb54-13df71b14ee2d74f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2dcb54-13df71b14ee2d74f","8f44c0b0e2ddca8-13de71af1f77f0e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7203727,32.8129415],[-83.72037080000001,32.812835],[-83.72036920000001,32.8127446]]},"id":"8a44c0b0e2dffff-139ef1b0306786a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c359c-139671b2dea417a4","8f44c0b0e2dcb54-13df71b14ee2d74f"]},"geometry":{"type":"LineString","coordinates":[[-83.72036920000001,32.8127446],[-83.7203667,32.8125991]]},"id":"8944c0b0e2fffff-13bff1b21c3466e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e250b0a-17fe3b4e748c3c87","8f44c0b0e254651-17f6ebaf3e153260"]},"geometry":{"type":"LineString","coordinates":[[-83.7229849,32.8113377],[-83.72283010000001,32.8111182]]},"id":"8a44c0b0e257fff-17bfab7ed90b7b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72326290000001,32.8117115]},"id":"8f44c0b0e251a85-17d7baa0b64e36ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e251ac2-17f72a8961dfc1a1","8f44c0b0e251a85-17d7baa0b64e36ec"]},"geometry":{"type":"LineString","coordinates":[[-83.72330020000001,32.811761600000004],[-83.72326290000001,32.8117115]]},"id":"8c44c0b0e251bff-17f76a950a9174e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e251891-17ffeae514e03854","8f44c0b0e251a85-17d7baa0b64e36ec"]},"geometry":{"type":"LineString","coordinates":[[-83.72326290000001,32.8117115],[-83.72315350000001,32.8115644]]},"id":"8b44c0b0e251fff-17bfeac2e1de2245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e250b0a-17fe3b4e748c3c87","8f44c0b0e251891-17ffeae514e03854"]},"geometry":{"type":"LineString","coordinates":[[-83.72315350000001,32.8115644],[-83.72311040000001,32.8115064],[-83.7230383,32.8114095],[-83.7229849,32.8113377]]},"id":"8a44c0b0e257fff-17b6eb19c2521226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721618,32.80955]},"id":"8f44c0b0e20384a-1396eea4c1566f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e20384a-1396eea4c1566f38","8f44c0b0e3ae991-13b632714939f67d"]},"geometry":{"type":"LineString","coordinates":[[-83.721618,32.80955],[-83.72124600000001,32.80905],[-83.720679,32.808315],[-83.720476,32.808028],[-83.720353,32.807814],[-83.72024800000001,32.807575],[-83.720145,32.807276],[-83.720083,32.807018],[-83.72006300000001,32.806842],[-83.72005800000001,32.806651],[-83.720062,32.806509000000005]]},"id":"8844c0b0e3fffff-179f70fe8e1f22a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e250b0a-17fe3b4e748c3c87","8f44c0b0e25594e-17dfea3666248543"]},"geometry":{"type":"LineString","coordinates":[[-83.7229849,32.8113377],[-83.723433,32.81111]]},"id":"8a44c0b0e257fff-17b6fac27a5c4a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e264c4c-139e3692edc36f4d","8f44c0b0e266065-17b7e787e56143ed"]},"geometry":{"type":"LineString","coordinates":[[-83.72492340000001,32.809974700000005],[-83.7245314,32.810198]]},"id":"8a44c0b0e267fff-13f6270d61d11119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e266695-17f6682a8f821268","8f44c0b0e266065-17b7e787e56143ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7245314,32.810198],[-83.7242712,32.810323600000004]]},"id":"8b44c0b0e266fff-17df27d93c1ff059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2533094a-17d73fa9c8344044","8f44c0a250598e9-17be655b540b31dc"]},"geometry":{"type":"LineString","coordinates":[[-83.7254219,32.8634756],[-83.7257345,32.863378100000006],[-83.72612140000001,32.8633356],[-83.727754,32.863317]]},"id":"8744c0a25ffffff-17f6e286f30245fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25ad686c-17bf3a11efc6236e","8f44c0a2533094a-17d73fa9c8344044"]},"geometry":{"type":"LineString","coordinates":[[-83.727754,32.863317],[-83.727855,32.863314],[-83.730045,32.863253]]},"id":"8744c0a25ffffff-17d71cddd9460cc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25ad686c-17bf3a11efc6236e","8f44c0a25a52a5b-17df121083b2de7d"]},"geometry":{"type":"LineString","coordinates":[[-83.730045,32.863253],[-83.731699,32.863207],[-83.73268300000001,32.863166],[-83.73332400000001,32.863128]]},"id":"8844c0a25bfffff-179e7610f8eb7168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25a6e618-179e2c2760d19ecc","8f44c0a25a52a5b-17df121083b2de7d"]},"geometry":{"type":"LineString","coordinates":[[-83.73332400000001,32.863128],[-83.734898,32.863014],[-83.735304,32.862994],[-83.73574500000001,32.862989]]},"id":"8944c0a25a7ffff-17bf5f1c551cb63b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25a6e618-179e2c2760d19ecc","8f44c0a25a68981-17968adae7e81b74"]},"geometry":{"type":"LineString","coordinates":[[-83.73574500000001,32.862989],[-83.736277,32.86298]]},"id":"8a44c0a25a6ffff-17975b812ee21729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25a6d51e-17978a4d040b6bf5","8f44c0a25a68981-17968adae7e81b74"]},"geometry":{"type":"LineString","coordinates":[[-83.736277,32.86298],[-83.73650400000001,32.862988]]},"id":"8a44c0a25a6ffff-17970a93fbb32bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b535b6960-13d5f38166453f7d","8f44c0b535824f2-1797f35ccc44787a"]},"geometry":{"type":"LineString","coordinates":[[-83.7458996,32.8889893],[-83.74588100000001,32.888644],[-83.745855,32.888151],[-83.74583700000001,32.887552],[-83.745841,32.8872717]]},"id":"8644c0b57ffffff-13fdf3757524c48b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b535b6960-13d5f38166453f7d","8f44c0b522e92f1-13bdf383e0f20997"]},"geometry":{"type":"LineString","coordinates":[[-83.745841,32.8872717],[-83.74583700000001,32.887213700000004]]},"id":"8a44c0b535b7fff-13bff382a1717662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77421000000001,32.9139959]},"id":"8f44c0b5e740090-139ffe3ec901aea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5e740090-139ffe3ec901aea7","8f44c0b5e7a12f2-17bdf99f4d03acfa"]},"geometry":{"type":"LineString","coordinates":[[-83.77421000000001,32.9139959],[-83.7740598,32.913939400000004],[-83.7738901,32.9138797],[-83.77342270000001,32.9136955],[-83.771612,32.912925],[-83.77096300000001,32.912647],[-83.77020200000001,32.912329],[-83.769917,32.912194],[-83.76955000000001,32.911994]]},"id":"8844c0b5e7fffff-17b7f3f83a810945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5e7a12f2-17bdf99f4d03acfa","8f44c0a2d8652a0-13bdcde0461a644c"]},"geometry":{"type":"LineString","coordinates":[[-83.76955000000001,32.911994],[-83.764978,32.909109],[-83.76440500000001,32.908779],[-83.763969,32.908538],[-83.763388,32.908245],[-83.762787,32.907955],[-83.76258100000001,32.907867],[-83.762375,32.907798],[-83.762224,32.907764],[-83.76201800000001,32.907733],[-83.76125400000001,32.907688]]},"id":"8544c0b7fffffff-17bde37b504b8a98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d86575a-13b5ee192b87a1e6","8f44c0a2d8652a0-13bdcde0461a644c"]},"geometry":{"type":"LineString","coordinates":[[-83.76125400000001,32.907688],[-83.76116300000001,32.907683]]},"id":"8b44c0a2d865fff-13b7fdfcb4eb2094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d86575a-13b5ee192b87a1e6","8f44c0a2dc6ecf5-13bde55fe27939a4"]},"geometry":{"type":"LineString","coordinates":[[-83.76116300000001,32.907683],[-83.755982,32.907376],[-83.755657,32.907361],[-83.755346,32.907356],[-83.755153,32.907356],[-83.75162900000001,32.907491]]},"id":"8744c0a2dffffff-13b5f9bbc15a7bac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dc44741-13bfe73a4e211f53","8f44c0a2dc6ecf5-13bde55fe27939a4"]},"geometry":{"type":"LineString","coordinates":[[-83.75162900000001,32.907491],[-83.75087,32.907519]]},"id":"8944c0a2dc7ffff-13b7e64d1155e170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dc44741-13bfe73a4e211f53","8f44c0a2dc44606-13d5e76e23f19808"]},"geometry":{"type":"LineString","coordinates":[[-83.75087,32.907519],[-83.750787,32.907522]]},"id":"8c44c0a2dc447ff-13d5f7543d69c0a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.748472,32.9076147]},"id":"8f44c0a2dce56a5-13fffd150389f862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dc44606-13d5e76e23f19808","8f44c0a2dce56a5-13fffd150389f862"]},"geometry":{"type":"LineString","coordinates":[[-83.750787,32.907522],[-83.748472,32.9076147]]},"id":"8844c0a2ddfffff-13dfea419b8c90e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dd80860-179df3550e955264","8f44c0a2dc8c641-13d5f42b755645e8"]},"geometry":{"type":"LineString","coordinates":[[-83.74556890000001,32.9071184],[-83.74558040000001,32.9065797],[-83.7456025,32.905542000000004],[-83.74561100000001,32.9051427],[-83.745615,32.904956],[-83.745636,32.904614],[-83.74564190000001,32.9045615],[-83.745681,32.904215],[-83.74574100000001,32.903875],[-83.745912,32.903136]]},"id":"8844c0a2ddfffff-13f7f3f4f5d3ca9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dd842ca-17ddf34a6d7210b5","8f44c0a2dd80860-179df3550e955264"]},"geometry":{"type":"LineString","coordinates":[[-83.745912,32.903136],[-83.745929,32.90306]]},"id":"8a44c0a2dd87fff-17f5f34fb8fedf02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ca5d621-13dff279a871ac71","8f44c0a2dd842ca-17ddf34a6d7210b5"]},"geometry":{"type":"LineString","coordinates":[[-83.745929,32.90306],[-83.746019,32.902789],[-83.74611,32.902441],[-83.746171,32.902185],[-83.746218,32.901913],[-83.746235,32.901775],[-83.746251,32.90159],[-83.74626400000001,32.901353],[-83.746263,32.9012146]]},"id":"8744c0a2cffffff-17b5f2c0f343b02c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7328269,32.925989300000005]},"id":"8f44c0a28202b0c-17d7534736df15e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28202b0c-17d7534736df15e1","8f44c0a2821191a-17bfd4c0dcf4c146"]},"geometry":{"type":"LineString","coordinates":[[-83.7328269,32.925989300000005],[-83.7324478,32.9259829],[-83.73230910000001,32.9259648],[-83.73222270000001,32.9259484]]},"id":"8944c0a2823ffff-17d6f404982ec9b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2821191a-17bfd4c0dcf4c146","8f44c0a282140d4-17f6b5a8ff4eee42"]},"geometry":{"type":"LineString","coordinates":[[-83.73222270000001,32.9259484],[-83.7321689,32.925938900000006],[-83.7320364,32.9259027],[-83.73191940000001,32.925857400000005],[-83.7316713,32.9257579],[-83.7318513,32.9254219]]},"id":"8a44c0a28217fff-17d6d59c0f61f5a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7327568,32.9250166]},"id":"8f44c0a28231c1c-17f7737301c0c3b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28231c1c-17f7737301c0c3b2","8f44c0a2823146d-17f67379f191d4e0"]},"geometry":{"type":"LineString","coordinates":[[-83.7327568,32.9250166],[-83.73274570000001,32.9251878]]},"id":"8b44c0a28231fff-17bef3767780b5e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7327348,32.925356900000004]},"id":"8f44c0a282316c0-17de1380c50a6fc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282316c0-17de1380c50a6fc1","8f44c0a2823146d-17f67379f191d4e0"]},"geometry":{"type":"LineString","coordinates":[[-83.73274570000001,32.9251878],[-83.7327348,32.925356900000004]]},"id":"8b44c0a28231fff-1797537d58a9af7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282060e6-17f6f38b9a1d366c","8f44c0a282316c0-17de1380c50a6fc1"]},"geometry":{"type":"LineString","coordinates":[[-83.7327348,32.925356900000004],[-83.7327175,32.925623900000005]]},"id":"8944c0a2823ffff-179f93863d2c2b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73218,32.9252595]},"id":"8f44c0a28233403-179f34db85ec2ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28233403-179f34db85ec2ba3","8f44c0a28233cd6-17d7b4bc0bb7e53f"]},"geometry":{"type":"LineString","coordinates":[[-83.7322304,32.9251643],[-83.73218,32.9252595]]},"id":"8b44c0a28233fff-17f774cbc6039ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73321800000001,32.925364800000004]},"id":"8f44c0a28204893-17d71252c14edeb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28204893-17d71252c14edeb8","8f44c0a28204ce6-17d6129155dfff1c"]},"geometry":{"type":"LineString","coordinates":[[-83.73321800000001,32.925364800000004],[-83.73311790000001,32.9253632]]},"id":"8b44c0a28204fff-17d692720e026d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282312f1-17dff3118c7aa2c0","8f44c0a28204ce6-17d6129155dfff1c"]},"geometry":{"type":"LineString","coordinates":[[-83.73311790000001,32.9253632],[-83.73291280000001,32.9253598]]},"id":"8a44c0a28207fff-17def2d16e34da3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282312f1-17dff3118c7aa2c0","8f44c0a282316c0-17de1380c50a6fc1"]},"geometry":{"type":"LineString","coordinates":[[-83.73291280000001,32.9253598],[-83.7327348,32.925356900000004]]},"id":"8b44c0a28231fff-17df13492f7ebdb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28233403-179f34db85ec2ba3","8f44c0a282316c0-17de1380c50a6fc1"]},"geometry":{"type":"LineString","coordinates":[[-83.7327348,32.925356900000004],[-83.7325325,32.9253519],[-83.7323846,32.925326000000005],[-83.7322413,32.925282],[-83.73218,32.9252595]]},"id":"8a44c0a28237fff-17bfb4304a1c9455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731679,32.9250751]},"id":"8f44c0a28389aa8-179ff614a949b7ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28233403-179f34db85ec2ba3","8f44c0a28389aa8-179ff614a949b7ea"]},"geometry":{"type":"LineString","coordinates":[[-83.73218,32.9252595],[-83.731679,32.9250751]]},"id":"8944c0a2823ffff-17d7957814fbe734"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a282264da-13bfb250a509bd62","8f44c0a28235aa0-13dfb298679c1236"]},"geometry":{"type":"LineString","coordinates":[[-83.7332214,32.9246907],[-83.73315020000001,32.9247066],[-83.7331066,32.9247387]]},"id":"8c44c0a28235bff-13b712763bd70e80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28235741-1796b2fe5ef250f5","8f44c0a28235aa0-13dfb298679c1236"]},"geometry":{"type":"LineString","coordinates":[[-83.7331066,32.9247387],[-83.7329435,32.9248587]]},"id":"8b44c0a28235fff-13ff32cb5865b73c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28231c1c-17f7737301c0c3b2","8f44c0a28235741-1796b2fe5ef250f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7329435,32.9248587],[-83.73277590000001,32.924982],[-83.7327568,32.9250166]]},"id":"8a44c0a28237fff-17d7333c0ccb4bef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7348154,32.926955500000005]},"id":"8f44c0a28276348-13b73e6c6f7d3ae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a282768a1-13f6eeb025daa304","8f44c0a28276348-13b73e6c6f7d3ae1"]},"geometry":{"type":"LineString","coordinates":[[-83.734707,32.926651],[-83.7347544,32.9267842],[-83.7348154,32.926955500000005]]},"id":"8b44c0a28276fff-13d61e8e4ac7c7ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a28276348-13b73e6c6f7d3ae1","8f44c0a28270c9e-13df9e63bf13401e"]},"geometry":{"type":"LineString","coordinates":[[-83.7348154,32.926955500000005],[-83.7348293,32.9269945]]},"id":"8a44c0a28277fff-13bf6e6817b4cd1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822c25b-17f6eed2caaeaa52","8f44c0a2822dcf5-17f77e7eb1f24f72"]},"geometry":{"type":"LineString","coordinates":[[-83.73478610000001,32.9258103],[-83.7346516,32.925835]]},"id":"8b44c0a2822dfff-17ff2ea8b8b75660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2822c25b-17f6eed2caaeaa52","8f44c0a28228c6c-17be5f6d85f2b466"]},"geometry":{"type":"LineString","coordinates":[[-83.7346516,32.925835],[-83.73440400000001,32.9259141]]},"id":"8a44c0a2822ffff-179faf2029c47e44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a282768a1-13f6eeb025daa304","8f44c0a2820d98c-13b7bfda32ab10d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7342301,32.9267259],[-83.734707,32.926651]]},"id":"8944c0a2823ffff-139e5f4538e65604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2aad3773-13bf6577918400a0","8f44c0a2aad10e3-13d6e431318ea2af"]},"geometry":{"type":"LineString","coordinates":[[-83.7122695,32.9277686],[-83.7126171,32.9276573],[-83.71279170000001,32.9276014]]},"id":"8a44c0a2aad7fff-13ff64d46e0612a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71202910000001,32.9258995]},"id":"8f44c0a2aa8c2f5-179f760dde2d32cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.711567,32.9260498]},"id":"8f44c0a2aa8e2cd-17ff672ea07ce4a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa8c2f5-179f760dde2d32cc","8f44c0a2aa8e2cd-17ff672ea07ce4a8"]},"geometry":{"type":"LineString","coordinates":[[-83.71202910000001,32.9258995],[-83.711567,32.9260498]]},"id":"8a44c0a2aa8ffff-17de769e46acfd39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa99192-179ed91303e13349","8f44c0a2aa8e2cd-17ff672ea07ce4a8"]},"geometry":{"type":"LineString","coordinates":[[-83.711567,32.9260498],[-83.71079200000001,32.9263017]]},"id":"8944c0a2aabffff-17dfe820db940653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7106165,32.9263588]},"id":"8f44c0a2aa99483-17be4980b55a26d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa99192-179ed91303e13349","8f44c0a2aa99483-17be4980b55a26d7"]},"geometry":{"type":"LineString","coordinates":[[-83.71079200000001,32.9263017],[-83.7106165,32.9263588]]},"id":"8a44c0a2aa9ffff-17be7949d8cf99a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7104473,32.9264138]},"id":"8f44c0a2aa9b176-17f6e9ea73d0dae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa9b176-17f6e9ea73d0dae4","8f44c0a2aa99483-17be4980b55a26d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7106165,32.9263588],[-83.7104473,32.9264138]]},"id":"8b44c0a2aa9bfff-17df79b5951a3cd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa9b176-17f6e9ea73d0dae4","8f44c0a2a336a02-139ffbf32669b991"]},"geometry":{"type":"LineString","coordinates":[[-83.7104473,32.9264138],[-83.7096142,32.9266847]]},"id":"8744c0a2affffff-13b75aeec0a95637"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091297,32.926842300000004]},"id":"8f44c0a2a04dac4-13fe7d21fc7b5e7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a336a02-139ffbf32669b991","8f44c0a2a04dac4-13fe7d21fc7b5e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.7096142,32.9266847],[-83.7091297,32.926842300000004]]},"id":"8844c0a2a3fffff-13bf7c8a9869de04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a04d76a-13975d999f31b8da","8f44c0a2a04dac4-13fe7d21fc7b5e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.7091297,32.926842300000004],[-83.7089383,32.9269045]]},"id":"8b44c0a2a04dfff-13ffed5dc72640c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71630370000001,32.9259688]},"id":"8f44c0a2aa73093-17debb9e30126aba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7162048,32.925829]},"id":"8f44c0a2aa7226b-17f73bdc0ce5bc06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa7226b-17f73bdc0ce5bc06","8f44c0a2aa73093-17debb9e30126aba"]},"geometry":{"type":"LineString","coordinates":[[-83.71630370000001,32.9259688],[-83.7162048,32.925829]]},"id":"8b44c0a2aa73fff-179efbbd24e06dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa7226b-17f73bdc0ce5bc06","8f44c0a2aa7204a-179fbc2109d99cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.7162048,32.925829],[-83.71616660000001,32.9257751],[-83.7160944,32.925692000000005]]},"id":"8a44c0a2aa77fff-17d7bbfd8313fb0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa72c72-179f7c62c99282a4","8f44c0a2aa7204a-179fbc2109d99cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.7160944,32.925692000000005],[-83.7160662,32.9256595],[-83.71598920000001,32.9254868]]},"id":"8b44c0a2aa72fff-17df3c449657701e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa72c72-179f7c62c99282a4","8f44c0a2aa0db02-179e7ca52dad8c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.71598920000001,32.9254868],[-83.715883,32.925248700000004]]},"id":"8a44c0a2aa77fff-17d6fc83f8cbd680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2aa0d868-17fe7cb29a606aa3","8f44c0a2aa0db02-179e7ca52dad8c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.715883,32.925248700000004],[-83.7158615,32.9252005]]},"id":"8b44c0a2aa0dfff-17ff7cabedd358ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac288a-13b7d2e91f92b8a1","8f44c0a2aad186a-13fff3c4322421cd"]},"geometry":{"type":"LineString","coordinates":[[-83.71331670000001,32.9273469],[-83.7131165,32.9274128],[-83.71308570000001,32.927423000000005],[-83.7129661,32.9274623]]},"id":"8944c0a2aafffff-13dfe356ae5de959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aad10e3-13d6e431318ea2af","8f44c0a2aad186a-13fff3c4322421cd"]},"geometry":{"type":"LineString","coordinates":[[-83.7129661,32.9274623],[-83.71279170000001,32.9276014]]},"id":"8b44c0a2aad1fff-139f73fabde66359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71739880000001,32.9256772]},"id":"8f44c0a2aa6212a-179678f1ce5e5f70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa6212a-179678f1ce5e5f70","8f44c0a2aa60616-17d6f830926a37f2"]},"geometry":{"type":"LineString","coordinates":[[-83.71739880000001,32.9256772],[-83.7174786,32.9257082],[-83.71770790000001,32.925758300000005]]},"id":"8a44c0a2aa67fff-17b6b89215266a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa60214-17df77b462ff3191","8f44c0a2aa60616-17d6f830926a37f2"]},"geometry":{"type":"LineString","coordinates":[[-83.71770790000001,32.925758300000005],[-83.7179066,32.9257684]]},"id":"8b44c0a2aa60fff-17de37f27c434d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa60716-179e78251c657fa8","8f44c0a2aa60214-17df77b462ff3191"]},"geometry":{"type":"LineString","coordinates":[[-83.7179066,32.9257684],[-83.71772630000001,32.9256933]]},"id":"8b44c0a2aa60fff-17b7f7ecb07f7cc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71744550000001,32.9255912]},"id":"8f44c0a2aa62815-17deb8d49e4453b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2aa62815-17deb8d49e4453b2","8f44c0a2aa60716-179e78251c657fa8"]},"geometry":{"type":"LineString","coordinates":[[-83.71772630000001,32.9256933],[-83.71744550000001,32.9255912]]},"id":"8a44c0a2aa67fff-17fe787cd6a42985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa6212a-179678f1ce5e5f70","8f44c0a2aa62815-17deb8d49e4453b2"]},"geometry":{"type":"LineString","coordinates":[[-83.71744550000001,32.9255912],[-83.71739880000001,32.9256772]]},"id":"8b44c0a2aa62fff-17ff78e3373222af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aaa5916-13ffd4d23468c3f4","8f44c0a2aa16d29-13bf73f50987b0d0"]},"geometry":{"type":"LineString","coordinates":[[-83.7125341,32.9237661],[-83.712888,32.9236631]]},"id":"8844c0a2abfffff-13dfe463add06e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa14d33-13de42e3ff3e4454","8f44c0a2aa16d29-13bf73f50987b0d0"]},"geometry":{"type":"LineString","coordinates":[[-83.712888,32.9236631],[-83.7133249,32.923536]]},"id":"8944c0a2aa3ffff-1397c36c8b910475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa14d33-13de42e3ff3e4454","8f44c0a2aa32a51-139651d9b25f053f"]},"geometry":{"type":"LineString","coordinates":[[-83.71375090000001,32.9234017],[-83.7133249,32.923536]]},"id":"8944c0a2aa3ffff-13b6525ed3000d79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7100966,32.924494200000005]},"id":"8f44c0a2aa94151-13b6eac5a8ad51d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aab34e6-13976a371873f6b2","8f44c0a2aa94151-13b6eac5a8ad51d1"]},"geometry":{"type":"LineString","coordinates":[[-83.7103247,32.9244178],[-83.7100966,32.924494200000005]]},"id":"8944c0a2aabffff-139f4a7e67db84d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091575,32.9248088]},"id":"8f44c0a2a065310-13f7cd109b04e8ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a065310-13f7cd109b04e8ff","8f44c0a2aa94151-13b6eac5a8ad51d1"]},"geometry":{"type":"LineString","coordinates":[[-83.7100966,32.924494200000005],[-83.7091575,32.9248088]]},"id":"8744c0a2affffff-13977beb24c55d8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a0653a3-13ffed23a60d1ee7","8f44c0a2a065310-13f7cd109b04e8ff"]},"geometry":{"type":"LineString","coordinates":[[-83.7091575,32.9248088],[-83.70912700000001,32.924819]]},"id":"8c44c0a2a0653ff-13fefd1a11b43699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aaa2ce1-13bfc79204f9ff44","8f44c0a2aaa09aa-13bf760ab36dbd05"]},"geometry":{"type":"LineString","coordinates":[[-83.71203410000001,32.923903100000004],[-83.711408,32.9240824]]},"id":"8a44c0a2aaa7fff-13f7c6ce5141a2ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ab9a29a-13d648dd491efba0","8f44c0a2a16b566-13bfeb7749f5715f"]},"geometry":{"type":"LineString","coordinates":[[-83.71087800000001,32.9232928],[-83.7105626,32.9233787],[-83.7104264,32.923399100000005],[-83.7103166,32.923394],[-83.7102211,32.9233514],[-83.7100279,32.9232302],[-83.7099385,32.9232217],[-83.70987140000001,32.9232387],[-83.7098124,32.923257400000004]]},"id":"8744c0a2affffff-13d6da2dd67a0ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a15dab2-139fce77dfa5f90d","8f44c0a2a16b566-13bfeb7749f5715f"]},"geometry":{"type":"LineString","coordinates":[[-83.7098124,32.923257400000004],[-83.70858270000001,32.9236476]]},"id":"8944c0a2a17ffff-13b7dcf797299468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71259040000001,32.922377700000006]},"id":"8f44c0a2ab81aae-179654af0a658d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ab81aae-179654af0a658d73","8f44c0a2abaa452-17df544621d2ec10"]},"geometry":{"type":"LineString","coordinates":[[-83.71275820000001,32.9222801],[-83.71259040000001,32.922377700000006]]},"id":"8944c0a2abbffff-17f7d47a9afcf93f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109952,32.923161]},"id":"8f44c0a2ab9aa99-17ffe8940b9d0d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ab9aa99-17ffe8940b9d0d41","8f44c0a2ab81aae-179654af0a658d73"]},"geometry":{"type":"LineString","coordinates":[[-83.71259040000001,32.922377700000006],[-83.71243630000001,32.9225044],[-83.7123285,32.922548400000004],[-83.7118756,32.9226803],[-83.71183690000001,32.9227178],[-83.7118138,32.922778],[-83.71185940000001,32.922897500000005],[-83.7109952,32.923161]]},"id":"8944c0a2abbffff-1797f694ea8fc6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8c3023-139fec503bc49d9c","8f44c0a2a8c2a4d-139fdc95e019e272"]},"geometry":{"type":"LineString","coordinates":[[-83.7093538,32.919932100000004],[-83.7094653,32.9201658]]},"id":"8a44c0a2a8c7fff-13d6ec7312f1092d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8c3023-139fec503bc49d9c","8f44c0a2a8c320c-139fdc17f2d602aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7094653,32.9201658],[-83.7095553,32.9203449]]},"id":"8b44c0a2a8c3fff-13d7ec3419bf8002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad45129-179f57079d22eb41","8f44c0a2ad6a886-17bed6352533f435"]},"geometry":{"type":"LineString","coordinates":[[-83.70507590000001,32.9150196],[-83.7054126,32.915264900000004]]},"id":"8944c0a2ad7ffff-17dff69e6b837feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad44028-13f677f4dbf86a37","8f44c0a2ad710e0-13b6f8ea41fcb7a5"]},"geometry":{"type":"LineString","coordinates":[[-83.7043036,32.9144591],[-83.70469630000001,32.9147459]]},"id":"8944c0a2ad7ffff-139ed86f83e2bf7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70633980000001,32.9158753]},"id":"8f44c0a2a8b4586-17b653f1a7ad5282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad6a886-17bed6352533f435","8f44c0a2a8b4586-17b653f1a7ad5282"]},"geometry":{"type":"LineString","coordinates":[[-83.7054126,32.915264900000004],[-83.70601500000001,32.9156569],[-83.70633980000001,32.9158753]]},"id":"8744c0a2affffff-17f65512bf019db5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8b4586-17b653f1a7ad5282","8f44c0a2a8b519e-179652a78ed0d536"]},"geometry":{"type":"LineString","coordinates":[[-83.70633980000001,32.9158753],[-83.706868,32.916230500000005]]},"id":"8a44c0a2a8b7fff-1797534c9d4b7f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70633810000001,32.916438400000004]},"id":"8f44c0a2a8b044b-179653f2b70aa95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2ad6a886-17bed6352533f435","8f44c0a2a8b044b-179653f2b70aa95f"]},"geometry":{"type":"LineString","coordinates":[[-83.7054126,32.915264900000004],[-83.7052505,32.915445600000005],[-83.7051828,32.9155828],[-83.7051898,32.9156691],[-83.7052225,32.915776900000004],[-83.7056568,32.9162904],[-83.7059464,32.9161238],[-83.70602570000001,32.9161179],[-83.7061145,32.9161415],[-83.70617990000001,32.9161748],[-83.7062429,32.916233600000005],[-83.7062803,32.91631],[-83.70631060000001,32.9163865],[-83.70633810000001,32.916438400000004]]},"id":"8744c0a2affffff-17de55a95726d67b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8b0289-17d7738f89cbfa68","8f44c0a2a8b044b-179653f2b70aa95f"]},"geometry":{"type":"LineString","coordinates":[[-83.70633810000001,32.916438400000004],[-83.706348,32.9164571],[-83.7064297,32.9165257],[-83.70649680000001,32.9165683]]},"id":"8b44c0a2a8b0fff-17b7f3c41c255b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8b1192-139e72f8d5e25f21","8f44c0a2a8b0289-17d7738f89cbfa68"]},"geometry":{"type":"LineString","coordinates":[[-83.70649680000001,32.9165683],[-83.7065161,32.9165805],[-83.7066375,32.9166041],[-83.70673790000001,32.916653100000005]]},"id":"8a44c0a2a8b7fff-17ff5343658037a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70683050000001,32.9167495]},"id":"8f44c0a2a8b10e1-13de72bef0e6decf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8b1192-139e72f8d5e25f21","8f44c0a2a8b10e1-13de72bef0e6decf"]},"geometry":{"type":"LineString","coordinates":[[-83.70673790000001,32.916653100000005],[-83.70683050000001,32.9167495]]},"id":"8c44c0a2a8b11ff-13be52dbe767bda1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8a2ce0-17b771cce557817f","8f44c0a2a8b10e1-13de72bef0e6decf"]},"geometry":{"type":"LineString","coordinates":[[-83.70683050000001,32.9167495],[-83.70721780000001,32.9164819]]},"id":"8944c0a2a8bffff-17f6d245e17151d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a051666f3-17be7886e8ae3303","8f44c0a0516c528-17fff5ee8d0bb395"]},"geometry":{"type":"LineString","coordinates":[[-83.6913554,32.9056674],[-83.6918727,32.9060174],[-83.69241840000001,32.9063834]]},"id":"8944c0a0517ffff-179e773afc0cc03a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a0516c528-17fff5ee8d0bb395","8f44c0a05b99493-13df7277902dc2b8"]},"geometry":{"type":"LineString","coordinates":[[-83.69241840000001,32.9063834],[-83.6938375,32.9073392]]},"id":"8744c0a05ffffff-13b6743310e74f9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.686367,32.9005677]},"id":"8f44c0a05d5bb62-13d6d4b4a285f45a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c6464e-13d7b36dae1f0b77","8f44c0a05d5bb62-13d6d4b4a285f45a"]},"geometry":{"type":"LineString","coordinates":[[-83.686367,32.9005677],[-83.68650500000001,32.900664],[-83.68668000000001,32.900807],[-83.68689020000001,32.9010035]]},"id":"8844c0a05dfffff-13de840d173e5447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68723870000001,32.9062593]},"id":"8f44c0a0503098c-17be9293d804aa1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0503168a-13d7f247d585a2ac","8f44c0a0503098c-17be9293d804aa1c"]},"geometry":{"type":"LineString","coordinates":[[-83.68723870000001,32.9062593],[-83.68736030000001,32.9069335]]},"id":"8a44c0a05037fff-17fec26dd4eae9eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a051ad336-17deb2d5a6f3966c","8f44c0a0511e36e-17d7a170b5b2e169"]},"geometry":{"type":"LineString","coordinates":[[-83.68770450000001,32.9052722],[-83.68753190000001,32.9052625],[-83.68728270000001,32.9052847],[-83.68713340000001,32.9053059]]},"id":"8944c0a0513ffff-17d6e223771a3714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a051ad336-17deb2d5a6f3966c","8f44c0a051ad72d-17dec32aa235ad79"]},"geometry":{"type":"LineString","coordinates":[[-83.68713340000001,32.9053059],[-83.68699740000001,32.905316400000004]]},"id":"8b44c0a051adfff-17df83002d4f4bdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6871287,32.906026100000005]},"id":"8f44c0a05034450-179ed2d89f06df7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a051ad72d-17dec32aa235ad79","8f44c0a05034450-179ed2d89f06df7c"]},"geometry":{"type":"LineString","coordinates":[[-83.68699740000001,32.905316400000004],[-83.68703400000001,32.9055285],[-83.6871287,32.906026100000005]]},"id":"8844c0a051fffff-17beb30260fc50be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0503098c-17be9293d804aa1c","8f44c0a05034450-179ed2d89f06df7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6871287,32.906026100000005],[-83.6871607,32.9061943],[-83.68723870000001,32.9062593]]},"id":"8a44c0a05037fff-17fe82c1c0bee3eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05116c36-13d6a394e6c3411c","8f44c0a05112915-13d7e35f94520343"]},"geometry":{"type":"LineString","coordinates":[[-83.68691270000001,32.9042742],[-83.6868565,32.9039986],[-83.6868274,32.903865800000005]]},"id":"8b44c0a05116fff-13d7b379dcbe4953"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05116c36-13d6a394e6c3411c","8f44c0a05c4bb26-13dee3ae07553981"]},"geometry":{"type":"LineString","coordinates":[[-83.6868274,32.903865800000005],[-83.68678720000001,32.9036518]]},"id":"8a44c0a05c4ffff-1397c3a1794b759f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c454d5-179fb4bc155748dc","8f44c0a05c63586-13def47d7ca74976"]},"geometry":{"type":"LineString","coordinates":[[-83.6864553,32.901601500000005],[-83.68638750000001,32.9018005],[-83.68635850000001,32.901994800000004],[-83.6863551,32.9021403]]},"id":"8944c0a05c7ffff-13f7c4a80ef85dc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c45760-17d7a43efbc23cd5","8f44c0a05c45d66-179fe438051e7e6e"]},"geometry":{"type":"LineString","coordinates":[[-83.68655530000001,32.902203400000005],[-83.68655670000001,32.9020564],[-83.6865664,32.901903000000004]]},"id":"8b44c0a05c45fff-17f7b43cc297d2d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23658c50-17defaf0c2c18202","8f44c0a2365ab68-17d67b40b86655c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6903668,32.896273400000005],[-83.6903004,32.8963629],[-83.69023890000001,32.8964962]]},"id":"8b44c0a23658fff-179e7b1c433ca682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e576d96-17df78f2489db6aa","8f44c0a2e52b374-17de790e200d2726"]},"geometry":{"type":"LineString","coordinates":[[-83.7042462,32.8991619],[-83.70429080000001,32.8991634]]},"id":"8b44c0a2e52bfff-17def90039f9936a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e576d96-17df78f2489db6aa","8f44c0a2e574135-17f65751009045c2"]},"geometry":{"type":"LineString","coordinates":[[-83.70429080000001,32.8991634],[-83.704515,32.899171],[-83.70495840000001,32.8991813]]},"id":"8844c0a2e5fffff-17df7821a97effbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ecdb009-17ff5622c15e9feb","8f44c0a2e574135-17f65751009045c2"]},"geometry":{"type":"LineString","coordinates":[[-83.70495840000001,32.8991813],[-83.705442,32.899192400000004]]},"id":"8944c0a2e57ffff-17f7d6b9ef9eed4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707065,32.89923]},"id":"8f44c0a2ecc945b-1796d22c60708630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ecc945b-1796d22c60708630","8f44c0a2ecdb009-17ff5622c15e9feb"]},"geometry":{"type":"LineString","coordinates":[[-83.705442,32.899192400000004],[-83.707065,32.89923]]},"id":"8744c0a2effffff-17f754279dd85787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71682840000001,32.9043999]},"id":"8f44c0a2ea9cb71-13b7fa5646d9db3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea9cb43-13b7ba55f23300e6","8f44c0a2ea9cb71-13b7fa5646d9db3a"]},"geometry":{"type":"LineString","coordinates":[[-83.71682890000001,32.904425],[-83.71682840000001,32.9043999]]},"id":"8e44c0a2ea9cb47-13bffa561a29f8e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.716817,32.903834]},"id":"8f44c0a2ea8282e-13d67a5d69e90e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea8282e-13d67a5d69e90e3a","8f44c0a2ea9cb71-13b7fa5646d9db3a"]},"geometry":{"type":"LineString","coordinates":[[-83.71682840000001,32.9043999],[-83.716817,32.903834]]},"id":"8944c0a2eabffff-13f73a59d80e58e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2100e368-13973859cd0a6ac0","8f44c0a21111a76-1396391ae50463a4"]},"geometry":{"type":"LineString","coordinates":[[-83.71733300000001,32.8783714],[-83.717515,32.878659],[-83.71759200000001,32.878856],[-83.717613,32.87896],[-83.717633,32.879088],[-83.717646,32.879511],[-83.717645,32.879779],[-83.717599,32.880746],[-83.71757600000001,32.881465],[-83.717577,32.881528],[-83.71758200000001,32.881726],[-83.717608,32.881943],[-83.71764200000001,32.882053]]},"id":"8844c0a211fffff-1797b878d2ba05eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2100e368-13973859cd0a6ac0","8f44c0a21053cf5-17feb70169256bc8"]},"geometry":{"type":"LineString","coordinates":[[-83.71764200000001,32.882053],[-83.717715,32.882226],[-83.717765,32.882326],[-83.71778,32.882357],[-83.71799100000001,32.882717],[-83.71805900000001,32.882835],[-83.718125,32.882993],[-83.718162,32.883103000000006],[-83.718196,32.883293],[-83.718198,32.883511],[-83.718193,32.883633]]},"id":"8844c0a211fffff-17f6777cec14a31f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a21769b1a-13bf78f56243727a","8f44c0a21053cf5-17feb70169256bc8"]},"geometry":{"type":"LineString","coordinates":[[-83.718193,32.883633],[-83.71817,32.883747],[-83.71815500000001,32.883823],[-83.71812700000001,32.883908000000005],[-83.71809300000001,32.883983],[-83.71804200000001,32.884096],[-83.717686,32.884742],[-83.717606,32.884901],[-83.717518,32.88512],[-83.71745100000001,32.885354],[-83.717425,32.885543000000006],[-83.717402,32.885923000000005],[-83.717386,32.887144],[-83.717393,32.887618]]},"id":"8744c0a21ffffff-17b638783eff18bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a212b01b4-13f6f8fbfd359907","8f44c0a21769b1a-13bf78f56243727a"]},"geometry":{"type":"LineString","coordinates":[[-83.717393,32.887618],[-83.7173825,32.8883213]]},"id":"8844c0a213fffff-139738f8b096282f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a212b3140-179778f568aa05dd","8f44c0a212b01b4-13f6f8fbfd359907"]},"geometry":{"type":"LineString","coordinates":[[-83.7173825,32.8883213],[-83.717393,32.888815]]},"id":"8a44c0a212b7fff-13ff38f8b29dde53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a212b3140-179778f568aa05dd","8f44c0a2129cc0b-17bf390325ede3b1"]},"geometry":{"type":"LineString","coordinates":[[-83.717393,32.888815],[-83.717377,32.889183],[-83.717371,32.889896]]},"id":"8944c0a212bffff-17f738feface07d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2129c191-17ffb90324d6def1","8f44c0a2129cc0b-17bf390325ede3b1"]},"geometry":{"type":"LineString","coordinates":[[-83.717371,32.889896],[-83.717371,32.88998]]},"id":"8b44c0a2129cfff-17d779032e4c141f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.717365,32.891582]},"id":"8f44c0a2e9221b2-13d6f906e414b83c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2129c191-17ffb90324d6def1","8f44c0a2e9221b2-13d6f906e414b83c"]},"geometry":{"type":"LineString","coordinates":[[-83.717371,32.88998],[-83.717365,32.891582]]},"id":"8744c0a21ffffff-13f639050b8d2939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e8248cc-13fe7932a886adda","8f44c0a2e9221b2-13d6f906e414b83c"]},"geometry":{"type":"LineString","coordinates":[[-83.717365,32.891582],[-83.717347,32.892227000000005],[-83.717337,32.892955],[-83.71729500000001,32.894074]]},"id":"8944c0a2e93ffff-17f7b91a575e5e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e8248cc-13fe7932a886adda","8f44c0a2e8217b3-139e394562aff09b"]},"geometry":{"type":"LineString","coordinates":[[-83.71729500000001,32.894074],[-83.71726500000001,32.894973]]},"id":"8a44c0a2e827fff-1397393c040ce673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e82e085-1796794ce7b5c76b","8f44c0a2e8217b3-139e394562aff09b"]},"geometry":{"type":"LineString","coordinates":[[-83.71726500000001,32.894973],[-83.717253,32.895338]]},"id":"8944c0a2e83ffff-1396394925ca221b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e8e95b1-17d6fa130b80a6a2","8f44c0a2e82e085-1796794ce7b5c76b"]},"geometry":{"type":"LineString","coordinates":[[-83.717253,32.895338],[-83.717196,32.896732],[-83.717132,32.897404],[-83.717061,32.8980152],[-83.716936,32.898923]]},"id":"8844c0a2e9fffff-13f6b9976eb65d9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e8e95b1-17d6fa130b80a6a2","8f44c0a2ebb2c1a-17bf7a5637e2d1ee"]},"geometry":{"type":"LineString","coordinates":[[-83.716936,32.898923],[-83.7168285,32.8997333]]},"id":"8844c0a2e9fffff-17d63a34a7fcc3f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e5003a1-13fffc314c2263e4","8f44c0a2e50e881-17dedba7180c797c"]},"geometry":{"type":"LineString","coordinates":[[-83.7029612,32.8986011],[-83.703038,32.898803],[-83.70318230000001,32.8991465]]},"id":"8944c0a2e53ffff-17b6fbed8d76b9a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70267340000001,32.899151100000005]},"id":"8f44c0a2e5036ce-17d77ce524a80064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e50e881-17dedba7180c797c","8f44c0a2e5036ce-17d77ce524a80064"]},"geometry":{"type":"LineString","coordinates":[[-83.70267340000001,32.899151100000005],[-83.70318230000001,32.8991465]]},"id":"8944c0a2e53ffff-17d65c461138e2e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70932900000001,32.900416]},"id":"8f44c0a2e181a0a-13fe4ca56353a9cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7108817,32.903082500000004]},"id":"8f44c0a2e01dc9b-17fed8daf5edac4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e01dc9b-17fed8daf5edac4d","8f44c0a2e181a0a-13fe4ca56353a9cb"]},"geometry":{"type":"LineString","coordinates":[[-83.70932900000001,32.900416],[-83.70973400000001,32.901199000000005],[-83.710447,32.902594],[-83.7106935,32.902896600000005],[-83.7108817,32.903082500000004]]},"id":"8844c0a2e1fffff-13d6fae1d55d2026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e01dc9b-17fed8daf5edac4d","8f44c0a2e071b94-13b742006c81f76f"]},"geometry":{"type":"LineString","coordinates":[[-83.7108817,32.903082500000004],[-83.71109840000001,32.9032584],[-83.7112293,32.9033474],[-83.71145080000001,32.9034694],[-83.711758,32.9036193],[-83.71209610000001,32.9037193],[-83.71238190000001,32.903779300000004],[-83.712584,32.903801],[-83.713689,32.903816]]},"id":"8844c0a2e1fffff-13d7c59145322929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e071b03-13b641c82f936a6e","8f44c0a2e071b94-13b742006c81f76f"]},"geometry":{"type":"LineString","coordinates":[[-83.713689,32.903816],[-83.713779,32.903818]]},"id":"8c44c0a2e071bff-13b7e1e446b3f12f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e071b03-13b641c82f936a6e","8f44c0a2ea92162-13bfbdb8df8d862c"]},"geometry":{"type":"LineString","coordinates":[[-83.713779,32.903818],[-83.714493,32.903827],[-83.7154419,32.903829900000005]]},"id":"8844c0a2e1fffff-13bf3fc0862add12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7158136,32.903831000000004]},"id":"8f44c0a2ea900de-13be7cd08d3016af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea92162-13bfbdb8df8d862c","8f44c0a2ea900de-13be7cd08d3016af"]},"geometry":{"type":"LineString","coordinates":[[-83.7154419,32.903829900000005],[-83.7158136,32.903831000000004]]},"id":"8a44c0a2ea97fff-13be3d44a0ad159c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea8282e-13d67a5d69e90e3a","8f44c0a2ea900de-13be7cd08d3016af"]},"geometry":{"type":"LineString","coordinates":[[-83.7158136,32.903831000000004],[-83.716817,32.903834]]},"id":"8944c0a2eabffff-13bf7b96fcc8080d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea8282e-13d67a5d69e90e3a","8f44c0a2eaae759-13b6373f9751acac"]},"geometry":{"type":"LineString","coordinates":[[-83.716817,32.903834],[-83.717124,32.903816],[-83.71809350000001,32.9038082]]},"id":"8944c0a2eabffff-13b6b8ce90440781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70277730000001,32.898108]},"id":"8f44c0a2e506b25-13d7dca43746a44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e506b48-13fffc8e9a8349aa","8f44c0a2e506b25-13d7dca43746a44a"]},"geometry":{"type":"LineString","coordinates":[[-83.70277730000001,32.898108],[-83.7028119,32.8982011]]},"id":"8a44c0a2e507fff-13f6fc9965fb2a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e506b48-13fffc8e9a8349aa","8f44c0a2e500114-13975c58a59121f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7028119,32.8982011],[-83.7028982,32.898433700000005]]},"id":"8a44c0a2e507fff-13de7c7390f0d38d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a231586e6-17976ca4a1114c8f","8f44c0a23066b9e-13f66b834b06d3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.696223,32.886738],[-83.69659700000001,32.887199],[-83.696686,32.887306]]},"id":"8844c0a231fffff-17b76c144858bc77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23061634-13d6ea4f26ddd9fc","8f44c0a23066b9e-13f66b834b06d3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.696686,32.887306],[-83.696821,32.887514],[-83.69704,32.88789],[-83.697179,32.888091]]},"id":"8a44c0a23067fff-13de7aea9ea1dcb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2306951d-179f690348b07e6e","8f44c0a23061634-13d6ea4f26ddd9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.697179,32.888091],[-83.69771,32.889]]},"id":"8944c0a2307ffff-13fef9a936ccdc7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23330048-17b7e7d3f8586e8d","8f44c0a2306951d-179f690348b07e6e"]},"geometry":{"type":"LineString","coordinates":[[-83.69771,32.889],[-83.69781800000001,32.889197],[-83.69819530000001,32.8898908]]},"id":"8744c0a23ffffff-179f786b753d4253"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23330048-17b7e7d3f8586e8d","8f44c0a23300a84-13bee63dec142ccf"]},"geometry":{"type":"LineString","coordinates":[[-83.69819530000001,32.8898908],[-83.698706,32.890704],[-83.698845,32.890929]]},"id":"8944c0a2333ffff-17fff70888265bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23300a84-13bee63dec142ccf","8f44c0a233088e2-139fe4dae42fac90"]},"geometry":{"type":"LineString","coordinates":[[-83.698845,32.890929],[-83.699413,32.891897]]},"id":"8944c0a2333ffff-13ff658c63a20cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23309232-17ff640de1f14497","8f44c0a233088e2-139fe4dae42fac90"]},"geometry":{"type":"LineString","coordinates":[[-83.699413,32.891897],[-83.699511,32.892063],[-83.699741,32.892456]]},"id":"8a44c0a2330ffff-17de64744f8f2a79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23309252-179fe3f6c9d61c59","8f44c0a23309232-17ff640de1f14497"]},"geometry":{"type":"LineString","coordinates":[[-83.699741,32.892456],[-83.69977800000001,32.892518]]},"id":"8c44c0a233093ff-179e64025e4fe79a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23309252-179fe3f6c9d61c59","8f44c0a2335c42c-1397624329d065bd"]},"geometry":{"type":"LineString","coordinates":[[-83.69977800000001,32.892518],[-83.70047500000001,32.893704]]},"id":"8944c0a2337ffff-1796631cfcd77411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2335c42c-1397624329d065bd","8f44c0a23359265-13dfe0e20b1a5cac"]},"geometry":{"type":"LineString","coordinates":[[-83.70047500000001,32.893704],[-83.70104,32.894665]]},"id":"8944c0a2337ffff-13b771929a15c9d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a232656d3-17975fe6c49a961d","8f44c0a23359265-13dfe0e20b1a5cac"]},"geometry":{"type":"LineString","coordinates":[[-83.70104,32.894665],[-83.701442,32.895346]]},"id":"8a44c0a23267fff-13b67064648a3939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2326d4ac-17bfde9f4fb5423d","8f44c0a232656d3-17975fe6c49a961d"]},"geometry":{"type":"LineString","coordinates":[[-83.701442,32.895346],[-83.701491,32.895429],[-83.701841,32.896022],[-83.701966,32.89622]]},"id":"8944c0a2327ffff-179f5f4476e81c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2326d4ac-17bfde9f4fb5423d","8f44c0a2e530924-13967d73e7a0bf42"]},"geometry":{"type":"LineString","coordinates":[[-83.701966,32.89622],[-83.70201700000001,32.896317],[-83.702179,32.896592000000005],[-83.70230400000001,32.896844],[-83.702342,32.89692],[-83.70239500000001,32.897045],[-83.70244500000001,32.897184200000005]]},"id":"8744c0a2effffff-17d67e003937a499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7026294,32.8976981]},"id":"8f44c0a2e531185-13d75d00ad07e8bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e530924-13967d73e7a0bf42","8f44c0a2e531185-13d75d00ad07e8bc"]},"geometry":{"type":"LineString","coordinates":[[-83.70244500000001,32.897184200000005],[-83.7026294,32.8976981]]},"id":"8a44c0a2e537fff-13b6dd3a4c8d2031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a206dead2-179ff50d2e7c0aa8","8f44c0a206d080d-13be75aaa6784599"]},"geometry":{"type":"LineString","coordinates":[[-83.692527,32.874743],[-83.692779,32.875699000000004]]},"id":"8944c0a206fffff-13f7755be1bd21d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a206dead2-179ff50d2e7c0aa8","8f44c0a23d665ac-17d7746e688f13f7"]},"geometry":{"type":"LineString","coordinates":[[-83.692779,32.875699000000004],[-83.693033,32.876632]]},"id":"8744c0a23ffffff-17b774bdcf5249aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23d4dc5a-13dff253a9dce479","8f44c0a23d665ac-17d7746e688f13f7"]},"geometry":{"type":"LineString","coordinates":[[-83.693033,32.876632],[-83.69314700000001,32.87701],[-83.693326,32.877539],[-83.693596,32.878211],[-83.69389500000001,32.878892]]},"id":"8944c0a23d7ffff-139ff372791fef03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957249,32.8855208]},"id":"8f44c0a231500e6-179eeddbfe55b77f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a23d4dc5a-13dff253a9dce479","8f44c0a231500e6-179eeddbfe55b77f"]},"geometry":{"type":"LineString","coordinates":[[-83.69389500000001,32.878892],[-83.694117,32.879382],[-83.694322,32.879879],[-83.69457100000001,32.880528000000005],[-83.69484800000001,32.881272],[-83.695071,32.881917],[-83.695216,32.882669],[-83.695249,32.882841],[-83.69535900000001,32.883488],[-83.695656,32.88514],[-83.6957249,32.8855208]]},"id":"8744c0a23ffffff-13d7efacab0efdf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891317,32.8644284]},"id":"8f44c0a204102f4-139ffdf4bd68a1bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204102f4-139ffdf4bd68a1bd","8f44c0a204103b2-13de7e1269cb9e07"]},"geometry":{"type":"LineString","coordinates":[[-83.68908420000001,32.864330200000005],[-83.68911680000001,32.864394000000004],[-83.6891317,32.8644284]]},"id":"8b44c0a20410fff-13fefe0313b4c399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a204102f4-139ffdf4bd68a1bd","8f44c0a204102c1-13b77de9c03429af"]},"geometry":{"type":"LineString","coordinates":[[-83.6891317,32.8644284],[-83.6891492,32.864468800000004]]},"id":"8d44c0a204102ff-139e7def4bb981b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68919620000001,32.864411000000004]},"id":"8f44c0a20410274-1396fdcc6caad423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a204102f4-139ffdf4bd68a1bd","8f44c0a20410274-1396fdcc6caad423"]},"geometry":{"type":"LineString","coordinates":[[-83.68919620000001,32.864411000000004],[-83.6891317,32.8644284]]},"id":"8c44c0a204103ff-13967de08b96de50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a204102f4-139ffdf4bd68a1bd","8f44c0a20413932-139f7e26d90b7d86"]},"geometry":{"type":"LineString","coordinates":[[-83.6891317,32.8644284],[-83.6890515,32.864449900000004]]},"id":"8b44c0a20410fff-1396fe0dcbbf3ad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20410274-1396fdcc6caad423","8f44c0a20411563-13d7fd7c84aeec1e"]},"geometry":{"type":"LineString","coordinates":[[-83.689324,32.864521],[-83.6892497,32.8644434],[-83.68919620000001,32.864411000000004]]},"id":"8a44c0a20417fff-13b6fda2710a2f9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a20410274-1396fdcc6caad423","8f44c0a204103b2-13de7e1269cb9e07"]},"geometry":{"type":"LineString","coordinates":[[-83.68919620000001,32.864411000000004],[-83.68908420000001,32.864330200000005]]},"id":"8b44c0a20410fff-13f7fdef663b0466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2058d306-17f6fe24a9bb6008","8f44c0a2043241b-1796fe0446d6f168"]},"geometry":{"type":"LineString","coordinates":[[-83.6891068,32.86339],[-83.68905500000001,32.8631374]]},"id":"8a44c0a2058ffff-17b7fe147f5c4906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2058d306-17f6fe24a9bb6008","8f44c0a205ab61b-179f7e61461ac527"]},"geometry":{"type":"LineString","coordinates":[[-83.68905500000001,32.8631374],[-83.689048,32.863103],[-83.688958,32.862789]]},"id":"8a44c0a2058ffff-17f7fe42322e9c30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935347,32.8657739]},"id":"8f44c0a20460719-13d6f334d91f480b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20460719-13d6f334d91f480b","8f44c0a20463532-17f6f3bd367ca13e"]},"geometry":{"type":"LineString","coordinates":[[-83.6935347,32.8657739],[-83.69331650000001,32.8660075]]},"id":"8a44c0a20467fff-179ff37908a45548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931393,32.8661973]},"id":"8f44c0a20444b9a-17df742bff32372e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20444b9a-17df742bff32372e","8f44c0a20463532-17f6f3bd367ca13e"]},"geometry":{"type":"LineString","coordinates":[[-83.69331650000001,32.8660075],[-83.6931393,32.8661973]]},"id":"8944c0a2047ffff-17b673f4904848a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930049,32.8661088]},"id":"8f44c0a20444c41-17b6747ff8e10760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20444b9a-17df742bff32372e","8f44c0a20444c41-17b6747ff8e10760"]},"geometry":{"type":"LineString","coordinates":[[-83.6931393,32.8661973],[-83.6930049,32.8661088]]},"id":"8b44c0a20444fff-17d7f455f24eaa61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20444c41-17b6747ff8e10760","8f44c0a20471adb-17def4f1cc63103f"]},"geometry":{"type":"LineString","coordinates":[[-83.6930049,32.8661088],[-83.6928228,32.8659887]]},"id":"8944c0a2047ffff-1796f4b8efec820a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20471015-1796755d60c1c5c0","8f44c0a20471adb-17def4f1cc63103f"]},"geometry":{"type":"LineString","coordinates":[[-83.6928228,32.8659887],[-83.69265060000001,32.8658753]]},"id":"8b44c0a20471fff-17b7f5279b095d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69245740000001,32.865748]},"id":"8f44c0a20470263-13d6f5d622c2407f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20470263-13d6f5d622c2407f","8f44c0a20471015-1796755d60c1c5c0"]},"geometry":{"type":"LineString","coordinates":[[-83.69265060000001,32.8658753],[-83.69245740000001,32.865748]]},"id":"8b44c0a20471fff-13fe7599c582bf9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20470263-13d6f5d622c2407f","8f44c0a20470395-139e7628cb8884e9"]},"geometry":{"type":"LineString","coordinates":[[-83.69245740000001,32.865748],[-83.6923252,32.8656609]]},"id":"8c44c0a204703ff-13bf75ff76cc194d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.692724,32.8652338]},"id":"8f44c0a20475d00-1397752f819de6d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20475d00-1397752f819de6d5","8f44c0a20470395-139e7628cb8884e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6923252,32.8656609],[-83.692724,32.8652338]]},"id":"8a44c0a20477fff-139ef5ac2f780c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6960631,32.8672313]},"id":"8f44c0a20099a1a-17f7fd089ce74414"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20099a1a-17f7fd089ce74414","8f44c0a2046ccd6-17ff7190caed411b"]},"geometry":{"type":"LineString","coordinates":[[-83.6942068,32.8662164],[-83.69468570000001,32.866477100000004],[-83.6960631,32.8672313]]},"id":"8744c0a20ffffff-17b66f4c8ca0e636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20099a1a-17f7fd089ce74414","8f44c0a200d6549-13b76ac0ff3e06f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6960631,32.8672313],[-83.6969969,32.8677426]]},"id":"8844c0a201fffff-13976be4cb9ad265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200d0ca0-139e69f82e34b546","8f44c0a200d6549-13b76ac0ff3e06f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6969969,32.8677426],[-83.69731820000001,32.867911]]},"id":"8a44c0a200d7fff-13d7ea5c8a97aec8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7111127,32.8745683]},"id":"8f44c0a21ca8228-13df784a965f016c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21ca8228-13df784a965f016c","8f44c0a21cad4e0-13b7f7d9089d26b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7112944,32.874329100000004],[-83.7111127,32.8745683]]},"id":"8a44c0a21caffff-13967811d0badeb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7110473,32.8746543]},"id":"8f44c0a21ca82db-1396f87374fe14a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21ca8228-13df784a965f016c","8f44c0a21ca82db-1396f87374fe14a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7111127,32.8745683],[-83.7110473,32.8746543]]},"id":"8a44c0a21caffff-13fe585f0b6076c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21ca82db-1396f87374fe14a0","8f44c0a21cab754-13bf4900fc2d94fa"]},"geometry":{"type":"LineString","coordinates":[[-83.7110473,32.8746543],[-83.71093900000001,32.8747969],[-83.7108209,32.874952400000005]]},"id":"8b44c0a21cabfff-13f668ba38a0f620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a21116100-13d63b5e49dc0d3d","8f44c0a21116d70-13febb7a7a62063f"]},"geometry":{"type":"LineString","coordinates":[[-83.71636090000001,32.877489100000005],[-83.716406,32.8776226]]},"id":"8b44c0a21116fff-139e7b6c5f8265dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71654360000001,32.877862400000005]},"id":"8f44c0a21116260-13de3b08455a8b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a21116260-13de3b08455a8b72","8f44c0a21116100-13d63b5e49dc0d3d"]},"geometry":{"type":"LineString","coordinates":[[-83.716406,32.8776226],[-83.71648110000001,32.8777534],[-83.71654360000001,32.877862400000005]]},"id":"8b44c0a21116fff-139f3b334f766723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d49a16-13d5f436913d0f6e","8f44c0b53d6b19a-13b7f43169b9cd95"]},"geometry":{"type":"LineString","coordinates":[[-83.75865830000001,32.885020600000004],[-83.75866660000001,32.8841255]]},"id":"8844c0b53dfffff-13bff4340654d22c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d6bcec-13f5f430f3503ea2","8f44c0b53d6b19a-13b7f43169b9cd95"]},"geometry":{"type":"LineString","coordinates":[[-83.75866660000001,32.8841255],[-83.7586673,32.8840518]]},"id":"8b44c0b53d6bfff-139ff4313c3f72dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.758684,32.882240700000004]},"id":"8f44c0b506cb695-179df4268fd0259a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506cb695-179df4268fd0259a","8f44c0b53d6bcec-13f5f430f3503ea2"]},"geometry":{"type":"LineString","coordinates":[[-83.7586673,32.8840518],[-83.758684,32.882240700000004]]},"id":"8844c0b53dfffff-17bff42bc605b5b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506ce2c1-13dfd41a5f8f3bdc","8f44c0b506cb6b4-13f7d425a846c152"]},"geometry":{"type":"LineString","coordinates":[[-83.75870350000001,32.881552500000005],[-83.7586854,32.882212]]},"id":"8944c0b506fffff-13bdf41ff1aa9b8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506cb695-179df4268fd0259a","8f44c0b506cb6b4-13f7d425a846c152"]},"geometry":{"type":"LineString","coordinates":[[-83.7586854,32.882212],[-83.758684,32.882240700000004]]},"id":"8d44c0b506cb6bf-13ffd42614e6ebf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506c5c8d-17fff406ca5bbe53","8f44c0b506c5785-17ffd40ac5a0faa2"]},"geometry":{"type":"LineString","coordinates":[[-83.7587348,32.8803506],[-83.75872840000001,32.8805629]]},"id":"8b44c0b506c5fff-17bdd408c382b95a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b506c5785-17ffd40ac5a0faa2","8f44c0b506c1d59-13fdf40dfed7259a"]},"geometry":{"type":"LineString","coordinates":[[-83.75872840000001,32.8805629],[-83.7587233,32.8807558]]},"id":"8a44c0b506c7fff-13bdf40c6a978901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d3af3-13ddf16f3276b091","8f44c0b502d02da-13bfc16c1740985c"]},"geometry":{"type":"LineString","coordinates":[[-83.76635010000001,32.8817603],[-83.7663551,32.881500800000005]]},"id":"8a44c0b502d7fff-139fe16da542c27d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d099d-13bdf16721206189","8f44c0b502d02da-13bfc16c1740985c"]},"geometry":{"type":"LineString","coordinates":[[-83.7663551,32.881500800000005],[-83.766363,32.881090300000004]]},"id":"8b44c0b502d0fff-13bdc169adbd24a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.766367,32.880883700000005]},"id":"8f44c0b502d4720-13bdd164abe9016d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d099d-13bdf16721206189","8f44c0b502d4720-13bdd164abe9016d"]},"geometry":{"type":"LineString","coordinates":[[-83.766363,32.881090300000004],[-83.766367,32.880883700000005]]},"id":"8a44c0b502d7fff-13fde165e4b796fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5392644d-13b5d5ea751d7ea0","8f44c0b53926a8d-13b5e54a25c88f94"]},"geometry":{"type":"LineString","coordinates":[[-83.7645145,32.8808717],[-83.76477100000001,32.8808706]]},"id":"8b44c0b53926fff-13b5c59a4bef27dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53926a8d-13b5e54a25c88f94","8f44c0b5392460d-13bff4a48d5d5980"]},"geometry":{"type":"LineString","coordinates":[[-83.76477100000001,32.8808706],[-83.76503600000001,32.8808695]]},"id":"8a44c0b53927fff-13bfd4f75e1a0870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53925832-13b7f35f3f59184e","8f44c0b5392460d-13bff4a48d5d5980"]},"geometry":{"type":"LineString","coordinates":[[-83.76503600000001,32.8808695],[-83.7655565,32.8808815]]},"id":"8a44c0b53927fff-13b7f401e2a9c31a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d6565-13b7c2a258268461","8f44c0b53925832-13b7f35f3f59184e"]},"geometry":{"type":"LineString","coordinates":[[-83.7655565,32.8808815],[-83.76585870000001,32.880882400000004]]},"id":"8844c0b503fffff-13b7c300ce3be972"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d4720-13bdd164abe9016d","8f44c0b502d6565-13b7c2a258268461"]},"geometry":{"type":"LineString","coordinates":[[-83.76585870000001,32.880882400000004],[-83.766367,32.880883700000005]]},"id":"8a44c0b502d7fff-13b7f2037d8dcdd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7666197,32.8808844]},"id":"8f44c0b502d4ae0-13bdc0c6b7d21236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d4720-13bdd164abe9016d","8f44c0b502d4ae0-13bdc0c6b7d21236"]},"geometry":{"type":"LineString","coordinates":[[-83.766367,32.880883700000005],[-83.7666197,32.8808844]]},"id":"8b44c0b502d4fff-13bdd115b47de9e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76409140000001,32.8813259]},"id":"8f44c0b53931171-13ddf6f2ea5fd9c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b539318f2-13b5e6f1c222fc15","8f44c0b53931171-13ddf6f2ea5fd9c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7640932,32.881257000000005],[-83.76409140000001,32.8813259]]},"id":"8b44c0b53931fff-13b7f6f25bd4c381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50299028-1795f544127cea19","8f44c0b50299991-179fd541bae82089"]},"geometry":{"type":"LineString","coordinates":[[-83.7647807,32.8803915],[-83.7647821,32.8803196],[-83.7647845,32.880202100000005]]},"id":"8b44c0b50299fff-17ddc542e02b66fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50299976-179ff4f54c84a4cb","8f44c0b50299991-179fd541bae82089"]},"geometry":{"type":"LineString","coordinates":[[-83.7647845,32.880202100000005],[-83.7649068,32.880203900000005]]},"id":"8c44c0b502999ff-179fe51b7b5dca1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b116346ed-13b7f5d1b670792c","8f44c0b11635871-13bff45ec53b5c97"]},"geometry":{"type":"LineString","coordinates":[[-83.6531429,32.780300700000005],[-83.6537364,32.780313500000005]]},"id":"8a44c0b11637fff-13bff518460011cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1162614d-13b7f358a406f9fa","8f44c0b1170b2cd-13d7f101e1f55197"]},"geometry":{"type":"LineString","coordinates":[[-83.65415580000001,32.7803223],[-83.65511380000001,32.7803419]]},"id":"8844c0b117fffff-13bfd22d426cb3c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b11754a9c-13d7deedb63600c1","8f44c0b1177335a-13dfedb55f5b4139"]},"geometry":{"type":"LineString","coordinates":[[-83.6559653,32.7803665],[-83.6564651,32.7803802]]},"id":"8944c0b1177ffff-13d7ee518a056d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1139314e-1397e7698433ac03","8f44c0b1177335a-13dfedb55f5b4139"]},"geometry":{"type":"LineString","coordinates":[[-83.6564651,32.7803802],[-83.65904400000001,32.780451]]},"id":"8744c0b11ffffff-13ffca8f6b96e462"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1170d558-13d7d01b50dc789d","8f44c0b11708a61-13bef04d6f7923a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6554026,32.779721900000006],[-83.65548270000001,32.7795536]]},"id":"8a44c0b1170ffff-139ff0346458f44f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6559725,32.7785237]},"id":"8f44c0b11728918-17d7dee9326fb780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1170d558-13d7d01b50dc789d","8f44c0b11728918-17d7dee9326fb780"]},"geometry":{"type":"LineString","coordinates":[[-83.65548270000001,32.7795536],[-83.6559725,32.7785237]]},"id":"8944c0b1173ffff-1397ff8248713629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b110d22e8-17bfce5e2f3458d2","8f44c0b11728918-17d7dee9326fb780"]},"geometry":{"type":"LineString","coordinates":[[-83.6559725,32.7785237],[-83.65619500000001,32.778056]]},"id":"8744c0b11ffffff-17bffea3ae66094d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b110d22e8-17bfce5e2f3458d2","8f44c0b110f2611-139fed1e67b36542"]},"geometry":{"type":"LineString","coordinates":[[-83.65619500000001,32.778056],[-83.656473,32.777481],[-83.656594,32.777248],[-83.6567066,32.7770074]]},"id":"8944c0b110fffff-17f7ddbe35e8e6b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b110f6764-13f7dc90b21e8ef1","8f44c0b110f2611-139fed1e67b36542"]},"geometry":{"type":"LineString","coordinates":[[-83.6567066,32.7770074],[-83.65684200000001,32.776718],[-83.6569333,32.7765265]]},"id":"8a44c0b110f7fff-1397ccd7d6020700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b110f6764-13f7dc90b21e8ef1","8f44c0b11015701-17ffea5fdca5447b"]},"geometry":{"type":"LineString","coordinates":[[-83.6569333,32.7765265],[-83.657275,32.77581],[-83.65740500000001,32.775559],[-83.6578307,32.7746774]]},"id":"8844c0b111fffff-17bfcb78ba7b89a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11033659-17b6da05c062581e","8f44c0b11015701-17ffea5fdca5447b"]},"geometry":{"type":"LineString","coordinates":[[-83.6578307,32.7746774],[-83.657953,32.774424],[-83.6579748,32.774378500000005]]},"id":"8a44c0b11017fff-1796ca32c3c6ce07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11034358-13f7f8f23a915f03","8f44c0b11033659-17b6da05c062581e"]},"geometry":{"type":"LineString","coordinates":[[-83.6579748,32.774378500000005],[-83.6584157,32.773457900000004]]},"id":"8944c0b1103ffff-1396e97c09520b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b11034358-13f7f8f23a915f03","8f44c0b1111bd8c-13d7d86a239c72dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6584157,32.773457900000004],[-83.6586334,32.7730033]]},"id":"8844c0b111fffff-13f7e8ae2891574a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1111bd8c-13d7d86a239c72dc","8f44c0b1111aa6d-13bfe8548be15646"]},"geometry":{"type":"LineString","coordinates":[[-83.6586334,32.7730033],[-83.658668,32.772931]]},"id":"8a44c0b1111ffff-13d6c85f503e1eea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66698190000001,32.7855481]},"id":"8f44c0b1c536035-17f7b408572431dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c5363ac-13d6f3ddcb14327e","8f44c0b1c536035-17f7b408572431dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66705,32.785674],[-83.66698190000001,32.7855481]]},"id":"8b44c0b1c536fff-139ef3f30dc59e98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66690200000001,32.785400200000005]},"id":"8f44c0b1c536c22-179fb43a42ba5a12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c536035-17f7b408572431dc","8f44c0b1c536c22-179fb43a42ba5a12"]},"geometry":{"type":"LineString","coordinates":[[-83.66698190000001,32.7855481],[-83.66690200000001,32.785400200000005]]},"id":"8b44c0b1c536fff-17dff4214f400997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6668119,32.785233500000004]},"id":"8f44c0b1126ba35-17b6f4729bcb362b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1126ba35-17b6f4729bcb362b","8f44c0b1c536c22-179fb43a42ba5a12"]},"geometry":{"type":"LineString","coordinates":[[-83.66690200000001,32.785400200000005],[-83.6668119,32.785233500000004]]},"id":"8a44c0b1126ffff-17f7b45667ac955e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666793,32.784995900000006]},"id":"8f44c0b11268655-179ef4c57ddfda96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11268655-179ef4c57ddfda96","8f44c0b1126ba35-17b6f4729bcb362b"]},"geometry":{"type":"LineString","coordinates":[[-83.6668119,32.785233500000004],[-83.66675000000001,32.785119],[-83.6666793,32.784995900000006]]},"id":"8a44c0b1126ffff-17fef49b854f30ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b11268655-179ef4c57ddfda96","8f44c0b1126e230-17b6b54d428a8540"]},"geometry":{"type":"LineString","coordinates":[[-83.6666793,32.784995900000006],[-83.66646200000001,32.784617600000004]]},"id":"8a44c0b1126ffff-17bef5095291c640"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673081,32.7861564]},"id":"8f44c0b1c5339a9-13f7f33c7ce28a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671379,32.7858383]},"id":"8f44c0b1c5305a9-13bef3a6dd98494f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c5339a9-13f7f33c7ce28a25","8f44c0b1c5305a9-13bef3a6dd98494f"]},"geometry":{"type":"LineString","coordinates":[[-83.6673081,32.7861564],[-83.6671379,32.7858383]]},"id":"8a44c0b1c537fff-1396f371a1a1879b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c5363ac-13d6f3ddcb14327e","8f44c0b1c5305a9-13bef3a6dd98494f"]},"geometry":{"type":"LineString","coordinates":[[-83.6671379,32.7858383],[-83.66705,32.785674]]},"id":"8a44c0b1c537fff-13ffb3c24e1f5866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c50b70a-17ffb0bb4343fe6d","8f44c0b1c425836-17d7b0a0e9ccb040"]},"geometry":{"type":"LineString","coordinates":[[-83.66837620000001,32.7887635],[-83.668334,32.788601]]},"id":"8844c0b1c5fffff-179ef0ae139f7797"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c50b70a-17ffb0bb4343fe6d","8f44c0b1c5038c8-17f6b1be0f6fd29c"]},"geometry":{"type":"LineString","coordinates":[[-83.668334,32.788601],[-83.66792000000001,32.7873609]]},"id":"8944c0b1c53ffff-17feb13ca77969f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c5038c8-17f6b1be0f6fd29c","8f44c0b1c500405-13feb222aae5d88a"]},"geometry":{"type":"LineString","coordinates":[[-83.66792000000001,32.7873609],[-83.667759,32.78696]]},"id":"8a44c0b1c507fff-13f7f1f05578091c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66760450000001,32.786694600000004]},"id":"8f44c0b1c506050-13d6b2833fa71981"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c506050-13d6b2833fa71981","8f44c0b1c500405-13feb222aae5d88a"]},"geometry":{"type":"LineString","coordinates":[[-83.667759,32.78696],[-83.66760450000001,32.786694600000004]]},"id":"8a44c0b1c507fff-1397b252e903ed82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70776000000001,32.7866528]},"id":"8f44c0b03a1384a-13be507a0e06bb60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70775,32.7867302]},"id":"8f44c0b03a13aa5-13de7080410931bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a1384a-13be507a0e06bb60","8f44c0b03a13aa5-13de7080410931bb"]},"geometry":{"type":"LineString","coordinates":[[-83.70776000000001,32.7866528],[-83.70775,32.7867302]]},"id":"8b44c0b03a13fff-13d6707d2e8e1355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03aad0ad-13ffd13823ed3b63","8f44c0b03a13aa5-13de7080410931bb"]},"geometry":{"type":"LineString","coordinates":[[-83.70775,32.7867302],[-83.707746,32.786761],[-83.70769340000001,32.7868694],[-83.7076195,32.7869961],[-83.707559,32.787079],[-83.7074558,32.787164100000005]]},"id":"8844c0b03bfffff-13fff0cde203a357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6685269,32.7917292]},"id":"8f44c0b1c454b9c-179ef042b0291799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c454b9c-179ef042b0291799","8f44c0b1c42968d-17def0092747f807"]},"geometry":{"type":"LineString","coordinates":[[-83.6685269,32.7917292],[-83.66856200000001,32.791448],[-83.668586,32.791195],[-83.668619,32.790619]]},"id":"8844c0b1c5fffff-17b6f020c74c1673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655949,32.791454]},"id":"8f44c0b1e8f229b-17f6cef7e015d200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e8d4604-17d6cf82a4a64a39","8f44c0b1e8f229b-17f6cef7e015d200"]},"geometry":{"type":"LineString","coordinates":[[-83.655949,32.791454],[-83.655727,32.791818]]},"id":"8944c0b1e8fffff-17d6cf3d4b94db70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e8d4604-17d6cf82a4a64a39","8f44c0b1e128ab2-13f6d115cb2d266e"]},"geometry":{"type":"LineString","coordinates":[[-83.655727,32.791818],[-83.65546900000001,32.792333],[-83.655355,32.792569],[-83.65508200000001,32.793098]]},"id":"8744c0b1effffff-13d6f04b062688bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e109cf3-17ded2804e993812","8f44c0b1e128ab2-13f6d115cb2d266e"]},"geometry":{"type":"LineString","coordinates":[[-83.65508200000001,32.793098],[-83.65495200000001,32.793374],[-83.65450200000001,32.794282]]},"id":"8944c0b1e13ffff-13def1c9b3dbb300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e109cf3-17ded2804e993812","8f44c0b1e02e830-1396d40bcb795864"]},"geometry":{"type":"LineString","coordinates":[[-83.65450200000001,32.794282],[-83.654385,32.794542],[-83.65401700000001,32.795302],[-83.6538692,32.7956257]]},"id":"8844c0b1e1fffff-17fef345eca37bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e02e8d6-13d7f4244dc8397d","8f44c0b1e02e830-1396d40bcb795864"]},"geometry":{"type":"LineString","coordinates":[[-83.6538692,32.7956257],[-83.65383,32.795701]]},"id":"8c44c0b1e02e9ff-13bfd4180310c16f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e00aa32-17f6d5ed24b48bec","8f44c0b1e02e8d6-13d7f4244dc8397d"]},"geometry":{"type":"LineString","coordinates":[[-83.65383,32.795701],[-83.653332,32.796708],[-83.653219,32.796948],[-83.65309900000001,32.7971913]]},"id":"8944c0b1e03ffff-1396f509868bf033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e00aa32-17f6d5ed24b48bec","8f44c0b1e0e0034-17fed6f3a474dff8"]},"geometry":{"type":"LineString","coordinates":[[-83.65309900000001,32.7971913],[-83.65296400000001,32.797459],[-83.65282400000001,32.79773],[-83.652679,32.798026]]},"id":"8844c0b1e1fffff-17ffd671106c2af5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e0e0034-17fed6f3a474dff8","8f44c0b1e0c0254-13dff868c39074f8"]},"geometry":{"type":"LineString","coordinates":[[-83.652679,32.798026],[-83.65218,32.799037000000006],[-83.65208200000001,32.799221]]},"id":"8944c0b1e0fffff-17f6f7acbe0892e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e0c3863-13bef89489bb1c1c","8f44c0b1e0c0254-13dff868c39074f8"]},"geometry":{"type":"LineString","coordinates":[[-83.65208200000001,32.799221],[-83.652012,32.799357]]},"id":"8a44c0b1e0c7fff-1397f87ea6ceb664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e0d97a9-17dfd9db698b3479","8f44c0b1e0c3863-13bef89489bb1c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.652012,32.799357],[-83.65148900000001,32.800424]]},"id":"8944c0b1e0fffff-13ffd937f9d4c3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e746850-17bfdb4fed589794","8f44c0b1e0d97a9-17dfd9db698b3479"]},"geometry":{"type":"LineString","coordinates":[[-83.65148900000001,32.800424],[-83.65123700000001,32.800932],[-83.651106,32.801183],[-83.65099000000001,32.80144],[-83.65089300000001,32.801634]]},"id":"8844c0b1e7fffff-17d6fa96c5d79dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e746850-17bfdb4fed589794","8f44c0b1e746b92-17f7fb620fd3f013"]},"geometry":{"type":"LineString","coordinates":[[-83.65089300000001,32.801634],[-83.650864,32.801701]]},"id":"8b44c0b1e746fff-17d6fb58f811cde6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e75c699-1397dca5b77f9c36","8f44c0b1e746b92-17f7fb620fd3f013"]},"geometry":{"type":"LineString","coordinates":[[-83.650864,32.801701],[-83.650819,32.801782],[-83.65061100000001,32.802219],[-83.65034610000001,32.8027765]]},"id":"8944c0b1e77ffff-13b6fc056a873c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e6742f6-17ffdddc6f95aa7e","8f44c0b1e75b584-1396dd5fc44c8e1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6500484,32.8033828],[-83.649849,32.803752]]},"id":"8844c0b1e7fffff-13f7fd9e13ab4f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e67005a-17bfde3529545ef9","8f44c0b1e6742f6-17ffdddc6f95aa7e"]},"geometry":{"type":"LineString","coordinates":[[-83.649849,32.803752],[-83.649707,32.80406]]},"id":"8a44c0b1e677fff-17dfde08ca77b3ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e67005a-17bfde3529545ef9","8f44c0b1e650b4e-17fedf66220891c8"]},"geometry":{"type":"LineString","coordinates":[[-83.649707,32.80406],[-83.649572,32.80428],[-83.649219,32.80498]]},"id":"8944c0b1e67ffff-17d6ded2175ac44b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e6e99ae-1397e0bca9795c31","8f44c0b1e650b4e-17fedf66220891c8"]},"geometry":{"type":"LineString","coordinates":[[-83.649219,32.80498],[-83.64867100000001,32.806072]]},"id":"8844c0b1e7fffff-13bfe01169816b53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648593,32.806212]},"id":"8f44c0b1e6e911e-13fee0ed69a506e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e6e911e-13fee0ed69a506e9","8f44c0b1e6e99ae-1397e0bca9795c31"]},"geometry":{"type":"LineString","coordinates":[[-83.64867100000001,32.806072],[-83.648593,32.806212]]},"id":"8b44c0b1e6e9fff-13bee0d50e0362c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e6e911e-13fee0ed69a506e9","8f44c0b1a9b6693-13ffe1b4c6b996eb"]},"geometry":{"type":"LineString","coordinates":[[-83.648593,32.806212],[-83.648274,32.806857]]},"id":"8944c0b1e6fffff-13b6f1511066347a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a996941-179fe28a86f41dc5","8f44c0b1a9b6693-13ffe1b4c6b996eb"]},"geometry":{"type":"LineString","coordinates":[[-83.648274,32.806857],[-83.64793200000001,32.807523]]},"id":"8744c0b1affffff-17dfe21fa288e7c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a99685e-17dee2a60065a647","8f44c0b1a996941-179fe28a86f41dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.64793200000001,32.807523],[-83.64788800000001,32.807591]]},"id":"8c44c0b1a9969ff-17b7e298436eee2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad6cd5d-17b6e39c48b097e2","8f44c0b1a99685e-17dee2a60065a647"]},"geometry":{"type":"LineString","coordinates":[[-83.64788800000001,32.807591],[-83.64749400000001,32.808379]]},"id":"8844c0b1a9fffff-17bee32129648a14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad6cd5d-17b6e39c48b097e2","8f44c0b1ad6c7a1-13d6e3e6087a929e"]},"geometry":{"type":"LineString","coordinates":[[-83.64749400000001,32.808379],[-83.64737600000001,32.808608]]},"id":"8b44c0b1ad6cfff-17fef3c12431ae29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad4c300-13bfe51525500b65","8f44c0b1ad6c7a1-13d6e3e6087a929e"]},"geometry":{"type":"LineString","coordinates":[[-83.64737600000001,32.808608],[-83.64712700000001,32.809114],[-83.64689100000001,32.809593]]},"id":"8944c0b1ad7ffff-13f7f47d8646a169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad480c9-13bfe59ea87edba4","8f44c0b1ad4b700-17bee61ec018ead1"]},"geometry":{"type":"LineString","coordinates":[[-83.64667100000001,32.810024],[-83.646466,32.810443]]},"id":"8a44c0b1ad4ffff-17bff5deb62ebddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac615ad-1797f7032ea367f4","8f44c0b1ad4b700-17bee61ec018ead1"]},"geometry":{"type":"LineString","coordinates":[[-83.646466,32.810443],[-83.64610060000001,32.8111635]]},"id":"8844c0b1adfffff-17b6f690f2be0f5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac63209-17dfe77049b6fe1a","8f44c0b1ac615ad-1797f7032ea367f4"]},"geometry":{"type":"LineString","coordinates":[[-83.64610060000001,32.8111635],[-83.64601280000001,32.8113422],[-83.645926,32.8115188]]},"id":"8a44c0b1ac67fff-17f6e739b107d546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac4e559-1396e8dfc5825108","8f44c0b1ac4170d-13d6f870c5a50be6"]},"geometry":{"type":"LineString","coordinates":[[-83.64551560000001,32.8122959],[-83.64533800000001,32.812631]]},"id":"8944c0b1ac7ffff-13bff8a84077a64b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ac4e559-1396e8dfc5825108","8f44c0b1a1a45b1-1796e9c38414a5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.64533800000001,32.812631],[-83.645066,32.813216000000004],[-83.6449736,32.8134146]]},"id":"8944c0b1ac7ffff-139fe951ac04af88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64459670000001,32.814483800000005]},"id":"8f44c0b1a184a94-179eeaaf153f683b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a184a94-179eeaaf153f683b","8f44c0b1a184851-17dffa97331c6e5c"]},"geometry":{"type":"LineString","coordinates":[[-83.6446349,32.8143831],[-83.64459670000001,32.814483800000005]]},"id":"8b44c0b1a184fff-17fefaa3289fac16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a184a94-179eeaaf153f683b","8f44c0b1a1842ae-17ffead281545232"]},"geometry":{"type":"LineString","coordinates":[[-83.64459670000001,32.814483800000005],[-83.64454,32.814633]]},"id":"8b44c0b1a184fff-17dfeac0c0806479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a8ded59-17bedd879658ad8b","8f44c0b1a8eb548-17d6d82cbebe778c"]},"geometry":{"type":"LineString","coordinates":[[-83.6521781,32.8139533],[-83.6499847,32.813918]]},"id":"8944c0b1a8fffff-17d7dada27ab0a4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a8ccb56-1797d887f4b1f581","8f44c0b1a8eb7ad-1796f82f4d20fae1"]},"geometry":{"type":"LineString","coordinates":[[-83.6520321,32.8140572],[-83.652174,32.814059]]},"id":"8944c0b1a8fffff-1796d85bac150ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184ea813-17bec216c0139df5","8f44c0b184c520b-17b7d2e9284119c3"]},"geometry":{"type":"LineString","coordinates":[[-83.66122440000001,32.8143048],[-83.66088780000001,32.8142961]]},"id":"8944c0b184fffff-17bfd27fffc14453"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66341440000001,32.8144979]},"id":"8f44c0b1845d296-17b7bcbe0ff8f948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18458735-17b7be164d4f4a8e","8f44c0b1845d296-17b7bcbe0ff8f948"]},"geometry":{"type":"LineString","coordinates":[[-83.66286360000001,32.8144952],[-83.66341440000001,32.8144979]]},"id":"8a44c0b1845ffff-17b6fd6a2d0d32aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640742,32.8145198]},"id":"8f44c0b18448435-17b6fb21ae699966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18448435-17b6fb21ae699966","8f44c0b1845d296-17b7bcbe0ff8f948"]},"geometry":{"type":"LineString","coordinates":[[-83.66341440000001,32.8144979],[-83.66344500000001,32.814498],[-83.6640742,32.8145198]]},"id":"8944c0b1847ffff-17bffbefde0abe7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.661736,32.8144675]},"id":"8f44c0b184e8220-1796f0d70735e308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184ea491-1797d2ecff946795","8f44c0b184e8220-1796f0d70735e308"]},"geometry":{"type":"LineString","coordinates":[[-83.6608817,32.8144413],[-83.661023,32.814448],[-83.661736,32.8144675]]},"id":"8944c0b184fffff-179ec1e200bd029c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1873664c-17d6f863d4b76e08","8f44c0b187360d1-17f6b864f2870869"]},"geometry":{"type":"LineString","coordinates":[[-83.66519530000001,32.814416],[-83.6651971,32.8145485]]},"id":"8b44c0b18736fff-179ff8646fb46e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1873664c-17d6f863d4b76e08","8f44c0b18732143-17d6b86f8346da2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6651971,32.8145485],[-83.6651784,32.8147778]]},"id":"8a44c0b18737fff-179eb869b50193ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18732143-17d6b86f8346da2b","8f44c0b18714848-13b7b87e7badef84"]},"geometry":{"type":"LineString","coordinates":[[-83.6651784,32.8147778],[-83.6651576,32.815033500000006],[-83.6651545,32.8151418]]},"id":"8944c0b1873ffff-17d7f8783166b4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18714848-13b7b87e7badef84","8f44c0b18714362-13b6f881d3e3381f"]},"geometry":{"type":"LineString","coordinates":[[-83.6651545,32.8151418],[-83.66514910000001,32.8153348]]},"id":"8b44c0b18714fff-13f7f880299df2d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18714362-13b6f881d3e3381f","8f44c0b18715433-139fb884feb7f6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.66514910000001,32.8153348],[-83.6651441,32.8155121]]},"id":"8a44c0b18717fff-13f7b88360665086"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18715696-139ef88805e341ab","8f44c0b18715433-139fb884feb7f6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6651441,32.8155121],[-83.6651392,32.8156837]]},"id":"8b44c0b18715fff-13d6b8867e8bf3db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18715696-139ef88805e341ab","8f44c0b18711c19-13fff88ac6c98c31"]},"geometry":{"type":"LineString","coordinates":[[-83.6651392,32.8156837],[-83.6651348,32.8158423]]},"id":"8a44c0b18717fff-13bff889626140f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18711c19-13fff88ac6c98c31","8f44c0b18711706-13fef88e6e48d8d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6651348,32.8158423],[-83.66512900000001,32.8160462]]},"id":"8b44c0b18711fff-13bfb88c908fd7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1871e993-13dff89191f22fbf","8f44c0b18711706-13fef88e6e48d8d2"]},"geometry":{"type":"LineString","coordinates":[[-83.66512900000001,32.8160462],[-83.66512390000001,32.8162261]]},"id":"8944c0b1873ffff-13b7b8900adb332d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1871e993-13dff89191f22fbf","8f44c0b1871e008-13def895279a769b"]},"geometry":{"type":"LineString","coordinates":[[-83.66512390000001,32.8162261],[-83.66511820000001,32.816430100000005]]},"id":"8b44c0b1871efff-139fb8935e8f8af2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639689,32.8166194]},"id":"8f44c0b187a8408-13d7bb637260d8e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1871e008-13def895279a769b","8f44c0b187a8408-13d7bb637260d8e6"]},"geometry":{"type":"LineString","coordinates":[[-83.66511820000001,32.816430100000005],[-83.665113,32.816613000000004],[-83.6639689,32.8166194]]},"id":"8844c0b187fffff-13dfb9cc6898388e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66366260000001,32.816619200000005]},"id":"8f44c0b187aac69-13d7bc22e064e1bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b187aac69-13d7bc22e064e1bf","8f44c0b187a8408-13d7bb637260d8e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6639689,32.8166194],[-83.66366260000001,32.816619200000005]]},"id":"8a44c0b187affff-13d7bbc336dffbd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b187aac69-13d7bc22e064e1bf","8f44c0b1878192c-13d7fcefcdb2dab0"]},"geometry":{"type":"LineString","coordinates":[[-83.66366260000001,32.816619200000005],[-83.6633348,32.816623]]},"id":"8944c0b187bffff-13d6bc895eadb760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b18780745-13d7fe3c24579a9e","8f44c0b1878192c-13d7fcefcdb2dab0"]},"geometry":{"type":"LineString","coordinates":[[-83.6633348,32.816623],[-83.66280300000001,32.816626]]},"id":"8a44c0b18787fff-13d6fd95fa913afc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d69d130-13b7876f6a17745e","8f44c0b1d683096-17d787690ba5b5bc"]},"geometry":{"type":"LineString","coordinates":[[-83.685249,32.815112],[-83.6852592,32.8147728]]},"id":"8944c0b1d6bffff-17bf876c36309993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d683096-17d787690ba5b5bc","8f44c0b1d683dad-17dee765144a4a58"]},"geometry":{"type":"LineString","coordinates":[[-83.6852592,32.8147728],[-83.6852655,32.8145614]]},"id":"8b44c0b1d683fff-179ef7671cebda8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d683dad-17dee765144a4a58","8f44c0b1d686ad5-179e975c0039464f"]},"geometry":{"type":"LineString","coordinates":[[-83.6852655,32.8145614],[-83.6852758,32.814215600000004],[-83.685277,32.8141766],[-83.68528,32.8140777]]},"id":"8a44c0b1d687fff-17b7b7609e722c49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d6b12ab-17d6a75602f3a484","8f44c0b1d686ad5-179e975c0039464f"]},"geometry":{"type":"LineString","coordinates":[[-83.68528,32.8140777],[-83.6852896,32.8137546]]},"id":"8a44c0b1d687fff-17bfa7590d6f79c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9252112-13dff2975ce905d8","8f44c0ba9254c00-13d7f14562e08b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.62825070000001,32.832174300000005],[-83.62879140000001,32.831545500000004]]},"id":"8a44c0ba9257fff-139f71ee569c89ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b38c9-17b7b1b7f8a2ee5d","8f44c0a34584713-1397d033a06d3e3f"]},"geometry":{"type":"LineString","coordinates":[[-83.62860810000001,32.834569],[-83.6292294,32.834924400000006]]},"id":"8944c0a345bffff-1397b0f5da1382f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3451b4d3-139fbaa9032f5258","8f44c0a3451b65c-13f71a3f0128caf1"]},"geometry":{"type":"LineString","coordinates":[[-83.6316688,32.8361281],[-83.6315256,32.836010800000004],[-83.63149920000001,32.835983500000005]]},"id":"8b44c0a3451bfff-13d7ba74c65dff01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3451b4d3-139fbaa9032f5258","8f44c0a345a9885-13b73c0654eb2e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.63149920000001,32.835983500000005],[-83.631409,32.83589],[-83.6313303,32.8358238],[-83.6309403,32.8355875]]},"id":"8844c0a345fffff-13976b5108fbd362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6359066,32.8348316]},"id":"8f44c0a34ccaca3-13dfffe668574860"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34ccaca3-13dfffe668574860","8f44c0a34cdc2f5-179f2123a28b603a"]},"geometry":{"type":"LineString","coordinates":[[-83.635399,32.834525],[-83.6359066,32.8348316]]},"id":"8944c0a34cfffff-17fff0850347e9bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34ccaca3-13dfffe668574860","8f44c0a34cca172-1397ff700dae229d"]},"geometry":{"type":"LineString","coordinates":[[-83.6359066,32.8348316],[-83.63609600000001,32.834946]]},"id":"8b44c0a34ccafff-13ffffab3dcbc7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34196928-13d7fd72dbf7bf94","8f44c0a34cca172-1397ff700dae229d"]},"geometry":{"type":"LineString","coordinates":[[-83.63609600000001,32.834946],[-83.6369107,32.8354361]]},"id":"8744c0a34ffffff-13befe717b2026fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c25ac0-13f6fa67414bf515","8f44c0a34c2539a-179efad05b7692c3"]},"geometry":{"type":"LineString","coordinates":[[-83.638158,32.829773],[-83.63798990000001,32.8298215]]},"id":"8b44c0a34c25fff-13fffa9bccd1b6fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c2539a-179efad05b7692c3","8f44c0a34c20222-17d7fbc5e8cc079e"]},"geometry":{"type":"LineString","coordinates":[[-83.63798990000001,32.8298215],[-83.637597,32.829935]]},"id":"8a44c0a34c27fff-17b7fb4b2e4b32d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a276080-13ffd7458d9a97b7","8f44c0b1a2665b3-13f7f483412c1813"]},"geometry":{"type":"LineString","coordinates":[[-83.653678,32.825685],[-83.65254800000001,32.825666000000005]]},"id":"8844c0b1a3fffff-13fff5e464a377d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc96999-139fd08ecd793dd8","8f44c0b1bc9450e-1397efe6af1645d3"]},"geometry":{"type":"LineString","coordinates":[[-83.655567,32.825715],[-83.655298,32.825718]]},"id":"8a44c0b1bc97fff-139ed03ab49f4834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc96999-139fd08ecd793dd8","8f44c0b1a264056-13fef2ab9b9e8393"]},"geometry":{"type":"LineString","coordinates":[[-83.655298,32.825718],[-83.6544327,32.825697000000005]]},"id":"8844c0b1a3fffff-1397f19d3f753040"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681844,32.8241778]},"id":"8f44c0b19cde76e-17d7afbf87fcb8e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b19cde76e-17d7afbf87fcb8e8","8f44c0b19cd3a53-17dfb0102a26560b"]},"geometry":{"type":"LineString","coordinates":[[-83.681844,32.8241778],[-83.68179900000001,32.82394],[-83.68171500000001,32.823797]]},"id":"8944c0b19cfffff-17deffddf11eb2a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68585080000001,32.821728400000005]},"id":"8f44c0b19c70342-13dec5f745523611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862528,32.821572100000004]},"id":"8f44c0b19c75312-17fe94fc07acc53c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19c75312-17fe94fc07acc53c","8f44c0b19c70342-13dec5f745523611"]},"geometry":{"type":"LineString","coordinates":[[-83.68585080000001,32.821728400000005],[-83.6862528,32.821572100000004]]},"id":"8a44c0b19c77fff-139ff579a09e90b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19c75b6d-17b6e46cc583d7a7","8f44c0b19c75312-17fe94fc07acc53c"]},"geometry":{"type":"LineString","coordinates":[[-83.6862528,32.821572100000004],[-83.68648200000001,32.821483]]},"id":"8944c0b19c7ffff-17deb4b46c9a027c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6859443,32.8218977]},"id":"8f44c0b19c7154e-13b695bcd00ccf48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19c7154e-13b695bcd00ccf48","8f44c0b19c70342-13dec5f745523611"]},"geometry":{"type":"LineString","coordinates":[[-83.68585080000001,32.821728400000005],[-83.6859443,32.8218977]]},"id":"8a44c0b19c77fff-1397b5da0051a0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6860199,32.821868200000004]},"id":"8f44c0b19c71181-13b7a58d95c53d1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19c7154e-13b695bcd00ccf48","8f44c0b19c71181-13b7a58d95c53d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.6859443,32.8218977],[-83.6860199,32.821868200000004]]},"id":"8b44c0b19c71fff-13bee5a538c9ef50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6861006,32.8218365]},"id":"8f44c0b19c71121-139fd55b26730d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19c71121-139fd55b26730d41","8f44c0b19c71181-13b7a58d95c53d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.6860199,32.821868200000004],[-83.6861006,32.8218365]]},"id":"8c44c0b19c711ff-139fc5746822b2ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6861875,32.8218029]},"id":"8f44c0b19c71809-13fed524d6d88c82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19c71809-13fed524d6d88c82","8f44c0b19c71121-139fd55b26730d41"]},"geometry":{"type":"LineString","coordinates":[[-83.6861006,32.8218365],[-83.6861875,32.8218029]]},"id":"8b44c0b19c71fff-1397d5400440095e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68634610000001,32.821741]},"id":"8f44c0b19c6251e-13d6a4c1be7a2b64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19c71809-13fed524d6d88c82","8f44c0b19c6251e-13d6a4c1be7a2b64"]},"geometry":{"type":"LineString","coordinates":[[-83.6861875,32.8218029],[-83.68634610000001,32.821741]]},"id":"8a44c0b19c77fff-13f784f34f0341fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b19c6251e-13d6a4c1be7a2b64","8f44c0b19c75312-17fe94fc07acc53c"]},"geometry":{"type":"LineString","coordinates":[[-83.68634610000001,32.821741],[-83.6862528,32.821572100000004]]},"id":"8a44c0b19c77fff-139fe4ded9ea73d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19c6415a-17b6c2b1020138d9","8f44c0b19d4bb26-17be811fc9ee6d9d"]},"geometry":{"type":"LineString","coordinates":[[-83.68719200000001,32.821278],[-83.68783400000001,32.821092]]},"id":"8944c0b19d7ffff-17fea1e865159f83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19d490b0-17b7b0a93601a27b","8f44c0b19d4bb26-17be811fc9ee6d9d"]},"geometry":{"type":"LineString","coordinates":[[-83.68783400000001,32.821092],[-83.6880237,32.821052300000005]]},"id":"8a44c0b19d4ffff-17b6a0e48c6733b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19d49bb3-179f902c53c18e58","8f44c0b19d490b0-17b7b0a93601a27b"]},"geometry":{"type":"LineString","coordinates":[[-83.6880237,32.821052300000005],[-83.6881537,32.8210251],[-83.6882235,32.8210105]]},"id":"8b44c0b19d49fff-179ea06acc6c42c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19d49bb3-179f902c53c18e58","8f44c0b198b2460-17feff990ba3b03b"]},"geometry":{"type":"LineString","coordinates":[[-83.6882235,32.8210105],[-83.68845920000001,32.820961100000005]]},"id":"8944c0b198bffff-17fe7fe2bca90a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68866530000001,32.8209175]},"id":"8f44c0b198b2160-17d77f1830d12382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198b2460-17feff990ba3b03b","8f44c0b198b2160-17d77f1830d12382"]},"geometry":{"type":"LineString","coordinates":[[-83.68845920000001,32.820961100000005],[-83.68862700000001,32.820926],[-83.68866530000001,32.8209175]]},"id":"8b44c0b198b2fff-17df7f589aa5ced0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68927000000001,32.820784]},"id":"8f44c0b198b0b22-17fe7d9e4cd78df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198b0b22-17fe7d9e4cd78df6","8f44c0b198b2160-17d77f1830d12382"]},"geometry":{"type":"LineString","coordinates":[[-83.68866530000001,32.8209175],[-83.68927000000001,32.820784]]},"id":"8a44c0b198b7fff-17b7fe5b36da23e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69021930000001,32.820584000000004]},"id":"8f44c0b198a6b06-17977b4cff4c5b6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198a6b06-17977b4cff4c5b6e","8f44c0b198a6094-17b6fc0446d682a4"]},"geometry":{"type":"LineString","coordinates":[[-83.689926,32.820638],[-83.690191,32.820588],[-83.69021930000001,32.820584000000004]]},"id":"8b44c0b198a6fff-1797fba8a0024035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69061070000001,32.8205387]},"id":"8f44c0b198a4ab0-17f6fa585a0efe13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198a6b06-17977b4cff4c5b6e","8f44c0b198a4ab0-17f6fa585a0efe13"]},"geometry":{"type":"LineString","coordinates":[[-83.69021930000001,32.820584000000004],[-83.690455,32.820551],[-83.69061070000001,32.8205387]]},"id":"8a44c0b198a7fff-17f77ad2d99181a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198a6094-17b6fc0446d682a4","8f44c0b198b5b33-17bf7c7b4843514a"]},"geometry":{"type":"LineString","coordinates":[[-83.689926,32.820638],[-83.6897356,32.8206804]]},"id":"8944c0b198bffff-17b67c3fc4c2b5b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198b5022-17d77cef8737beec","8f44c0b198b5b33-17bf7c7b4843514a"]},"geometry":{"type":"LineString","coordinates":[[-83.6897356,32.8206804],[-83.6895496,32.8207218]]},"id":"8b44c0b198b5fff-17de7cb56ba0b32e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b198b0b22-17fe7d9e4cd78df6","8f44c0b198b5022-17d77cef8737beec"]},"geometry":{"type":"LineString","coordinates":[[-83.6895496,32.8207218],[-83.68927000000001,32.820784]]},"id":"8a44c0b198b7fff-17fefd46edd552c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b198b1765-17b67d42d26f4456","8f44c0b198b0b22-17fe7d9e4cd78df6"]},"geometry":{"type":"LineString","coordinates":[[-83.6894163,32.821273600000005],[-83.68927000000001,32.820784]]},"id":"8a44c0b198b7fff-17977d708a43673e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d65586b-13d7fa260f2f51cb","8f44c0b1d646ae0-13de78f3adf13720"]},"geometry":{"type":"LineString","coordinates":[[-83.6906912,32.815571],[-83.6911814,32.8156102]]},"id":"8944c0b1d67ffff-13d6798cd3a0fe59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d67478d-17967a068d42919e","8f44c0b1d67008d-17fffa1aa7940710"]},"geometry":{"type":"LineString","coordinates":[[-83.6907094,32.8148223],[-83.69074160000001,32.8144678]]},"id":"8a44c0b1d677fff-17977a1098891d50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1d67478d-17967a068d42919e","8f44c0b1d62dac2-17b679dee0113e41"]},"geometry":{"type":"LineString","coordinates":[[-83.69074160000001,32.8144678],[-83.69080500000001,32.813680600000005]]},"id":"8844c0b1d7fffff-179e79f2b36b9bb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac54a50-17bf5ddce3876b01","8f44c0b0ac724ed-139efe80d28b1760"]},"geometry":{"type":"LineString","coordinates":[[-83.7088306,32.8169905],[-83.70867240000001,32.816716400000004],[-83.70856830000001,32.816535900000005]]},"id":"8944c0b0ac7ffff-17bf4e2eeb388863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac724ed-139efe80d28b1760","8f44c0b0ac0d2e4-13bedec467108271"]},"geometry":{"type":"LineString","coordinates":[[-83.70856830000001,32.816535900000005],[-83.7084602,32.816352900000005]]},"id":"8844c0b0adfffff-13f7cea299f12c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac35849-17d77174a8ab40bb","8f44c0b0ac0576d-13f6706e232f8cae"]},"geometry":{"type":"LineString","coordinates":[[-83.707779,32.815207],[-83.707597,32.814842],[-83.707507,32.814636],[-83.70747200000001,32.814525],[-83.70743,32.814362],[-83.707395,32.814205],[-83.70735900000001,32.813935]]},"id":"8944c0b0ac3ffff-17de510e03a805b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac35849-17d77174a8ab40bb","8f44c0b0ad18ce9-139f51736d4f540b"]},"geometry":{"type":"LineString","coordinates":[[-83.70735900000001,32.813935],[-83.707341,32.813784000000005],[-83.707352,32.813578],[-83.707361,32.813048]]},"id":"8844c0b0adfffff-17b6d178561ab945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ad11ace-13be516fa2a22827","8f44c0b0ad18ce9-139f51736d4f540b"]},"geometry":{"type":"LineString","coordinates":[[-83.707361,32.813048],[-83.707367,32.812464]]},"id":"8944c0b0ad3ffff-13f6d1718311cec7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074247,32.807138]},"id":"8f44c0b1db6a335-17bf514b9d861ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ad11ace-13be516fa2a22827","8f44c0b1db6a335-17bf514b9d861ccd"]},"geometry":{"type":"LineString","coordinates":[[-83.707367,32.812464],[-83.707403,32.810192],[-83.707414,32.809005],[-83.7074207,32.808031],[-83.7074228,32.8075543],[-83.7074247,32.807138]]},"id":"8644c0b0fffffff-13bff1597893886d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2912d9-13def28559c6a3a8","8f44c0b1d283722-13f7f0d35952f774"]},"geometry":{"type":"LineString","coordinates":[[-83.6945099,32.815622000000005],[-83.6938827,32.8155887],[-83.6938155,32.8155851]]},"id":"8944c0b1d2bffff-13de71ac5dbd2ef1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4b27b2-1396e9323435a75a","8f44c0b0a4b3cc3-13f678238e4f4913"]},"geometry":{"type":"LineString","coordinates":[[-83.69763490000001,32.821818400000005],[-83.697787,32.821883],[-83.698068,32.821994100000005]]},"id":"8a44c0b0a4b7fff-13be78ab31b8a970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4b3cc3-13f678238e4f4913","8f44c0b0a4b3024-139777d574fc48f9"]},"geometry":{"type":"LineString","coordinates":[[-83.698068,32.821994100000005],[-83.69819290000001,32.8220435]]},"id":"8b44c0b0a4b3fff-1397e7fc7254aeff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69915200000001,32.8224298]},"id":"8f44c0b0a484355-1396e57e05d9f0ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a484355-1396e57e05d9f0ea","8f44c0b0a4858d0-13dee4ce64869f97"]},"geometry":{"type":"LineString","coordinates":[[-83.69915200000001,32.8224298],[-83.699433,32.822542]]},"id":"8a44c0b0a487fff-13b7f526382825e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4858d0-13dee4ce64869f97","8f44c0b0a4ae298-13bf73cb21ec58db"]},"geometry":{"type":"LineString","coordinates":[[-83.699433,32.822542],[-83.6998478,32.8227057]]},"id":"8944c0b0a4bffff-13fff44cce0f6f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4a8ac5-13b6e2784a3fca1b","8f44c0b0a4ae298-13bf73cb21ec58db"]},"geometry":{"type":"LineString","coordinates":[[-83.6998478,32.8227057],[-83.70039,32.8229196]]},"id":"8a44c0b0a4affff-13f7f321bcf3d04b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7007437,32.8230591]},"id":"8f44c0b0a4a9861-139ff19b34b37659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4a9861-139ff19b34b37659","8f44c0b0a4a8ac5-13b6e2784a3fca1b"]},"geometry":{"type":"LineString","coordinates":[[-83.70039,32.8229196],[-83.7007437,32.8230591]]},"id":"8a44c0b0a4affff-13f66209c6d484a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70124340000001,32.8232578]},"id":"8f44c0b0a41bc9c-179e6062e4b847a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4a9861-139ff19b34b37659","8f44c0b0a41bc9c-179e6062e4b847a9"]},"geometry":{"type":"LineString","coordinates":[[-83.7007437,32.8230591],[-83.700936,32.823135],[-83.70124340000001,32.8232578]]},"id":"8844c0b0a5fffff-13dfe0ff0c1aa1fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a41bc9c-179e6062e4b847a9","8f44c0b0a450190-179e5b33acff1557"]},"geometry":{"type":"LineString","coordinates":[[-83.70124340000001,32.8232578],[-83.703367,32.824106]]},"id":"8844c0b0a5fffff-17977dcb47635d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a443b52-179ff78c63118447","8f44c0b0a450190-179e5b33acff1557"]},"geometry":{"type":"LineString","coordinates":[[-83.703367,32.824106],[-83.70486340000001,32.8247003]]},"id":"8944c0b0a47ffff-17d65960024a3919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a443b52-179ff78c63118447","8f44c0b0a46b793-13977553eebcb44a"]},"geometry":{"type":"LineString","coordinates":[[-83.70486340000001,32.8247003],[-83.704898,32.824714],[-83.705174,32.824802000000005],[-83.70577300000001,32.824911]]},"id":"8944c0b0a47ffff-17ded6727083632b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a736871-13df53a05af3e272","8f44c0b0a46b793-13977553eebcb44a"]},"geometry":{"type":"LineString","coordinates":[[-83.70577300000001,32.824911],[-83.7064699,32.8250357]]},"id":"8744c0b0affffff-13be747a12cb92f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6983708,32.822113900000005]},"id":"8f44c0b0a4b3a08-13bf7766465219bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4b3a08-13bf7766465219bf","8f44c0b0a4b3024-139777d574fc48f9"]},"geometry":{"type":"LineString","coordinates":[[-83.69819290000001,32.8220435],[-83.6983708,32.822113900000005]]},"id":"8b44c0b0a4b3fff-13b7779defb987cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6986464,32.8222228]},"id":"8f44c0b0a48691d-139766ba0ee4605f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a4b3a08-13bf7766465219bf","8f44c0b0a48691d-139766ba0ee4605f"]},"geometry":{"type":"LineString","coordinates":[[-83.6983708,32.822113900000005],[-83.6986464,32.8222228]]},"id":"8944c0b0a4bffff-13df6710288a4dc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a486940-139fe69560d9124f","8f44c0b0a48691d-139766ba0ee4605f"]},"geometry":{"type":"LineString","coordinates":[[-83.6986464,32.8222228],[-83.698705,32.822246]]},"id":"8c44c0b0a4869ff-139ee6a7ba3ae1b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69887960000001,32.8223186]},"id":"8f44c0b0a484444-13bf66284befeba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a484444-13bf66284befeba6","8f44c0b0a486940-139fe69560d9124f"]},"geometry":{"type":"LineString","coordinates":[[-83.698705,32.822246],[-83.69887960000001,32.8223186]]},"id":"8a44c0b0a487fff-13b6765edfadaf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09470605-1795f519db4d007e","8f44c0b09473994-17d5f51bd3da7a06"]},"geometry":{"type":"LineString","coordinates":[[-83.7451875,32.834106500000004],[-83.7451843,32.8342025]]},"id":"8a44c0b09477fff-17b7f51ad5b86cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b094730e9-17fdf5215b9f0ca8","8f44c0b09473994-17d5f51bd3da7a06"]},"geometry":{"type":"LineString","coordinates":[[-83.7451843,32.8342025],[-83.7451755,32.834470700000004]]},"id":"8b44c0b09473fff-1795f51e90d19d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b094730e9-17fdf5215b9f0ca8","8f44c0b09454d2a-17fdf6778b09707e"]},"geometry":{"type":"LineString","coordinates":[[-83.7451755,32.834470700000004],[-83.744628,32.834293800000005]]},"id":"8944c0b0947ffff-17b5f5cc7d7d69e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09446145-17fdf41ac8fda4ad","8f44c0b0946a60d-13bff18f9e8c8393"]},"geometry":{"type":"LineString","coordinates":[[-83.7466375,32.8354298],[-83.746525,32.83533],[-83.746311,32.835158],[-83.746026,32.834967],[-83.74570100000001,32.834767],[-83.7455956,32.8347076]]},"id":"8944c0b0947ffff-13d7f2ccbf98dd3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b094730e9-17fdf5215b9f0ca8","8f44c0b09446145-17fdf41ac8fda4ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7455956,32.8347076],[-83.7451755,32.834470700000004]]},"id":"8944c0b0947ffff-17b7f49e076f7668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7313014,32.832613900000005]},"id":"8f44c0b0b885158-13dfb700a2e53ad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7310705,32.8325462]},"id":"8f44c0b0b88551d-13b77790f5598194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b88551d-13b77790f5598194","8f44c0b0b885158-13dfb700a2e53ad6"]},"geometry":{"type":"LineString","coordinates":[[-83.7313014,32.832613900000005],[-83.7310705,32.8325462]]},"id":"8b44c0b0b885fff-13de9748d8d3e443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7306494,32.832422900000005]},"id":"8f44c0b0b886b5b-13fe589823f69146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b886b5b-13fe589823f69146","8f44c0b0b88551d-13b77790f5598194"]},"geometry":{"type":"LineString","coordinates":[[-83.7310705,32.8325462],[-83.7306494,32.832422900000005]]},"id":"8a44c0b0b887fff-139ef8149ce6d422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7301805,32.8324183]},"id":"8f44c0b0b8864f2-13f779bd32a7c311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0b895363-13fed9f1f8eb7573","8f44c0b0b8864f2-13f779bd32a7c311"]},"geometry":{"type":"LineString","coordinates":[[-83.7301805,32.8324183],[-83.73009610000001,32.832628500000006]]},"id":"8944c0b0b8bffff-13b739d79457d547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0b895363-13fed9f1f8eb7573","8f44c0b0b890759-13b69ba168aa5866"]},"geometry":{"type":"LineString","coordinates":[[-83.73009610000001,32.832628500000006],[-83.729982,32.832912900000004],[-83.72940580000001,32.8327496]]},"id":"8a44c0b0b897fff-13dedaa456284759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0b892b1d-139f7c32898ab135","8f44c0b0b890759-13b69ba168aa5866"]},"geometry":{"type":"LineString","coordinates":[[-83.72940580000001,32.8327496],[-83.72917360000001,32.832683800000005]]},"id":"8a44c0b0b897fff-139ffbe9fff3324b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7276732,32.8315715]},"id":"8f44c0b0bd58359-13d63fdc473bb86a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd492aa-13fe5c06a5f15052","8f44c0b0bd58359-13d63fdc473bb86a"]},"geometry":{"type":"LineString","coordinates":[[-83.7292438,32.832022800000004],[-83.7283718,32.831776500000004],[-83.7276732,32.8315715]]},"id":"8844c0b0bdfffff-13f67df1dc1dfaa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72886550000001,32.8320418]},"id":"8f44c0b0bd4b32d-13fe3cf3113f669d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd4b32d-13fe3cf3113f669d","8f44c0b0b89695b-13be1c07377983c4"]},"geometry":{"type":"LineString","coordinates":[[-83.72886550000001,32.8320418],[-83.7292429,32.832150500000004]]},"id":"8844c0b0bdfffff-139e1c7d29976b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd5a065-13d671328e6d9899","8f44c0b0bd586c8-13f6f0782e3521b4"]},"geometry":{"type":"LineString","coordinates":[[-83.72712560000001,32.8315397],[-83.72742380000001,32.8316271]]},"id":"8a44c0b0bd5ffff-13dfa0d55614bc46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd59040-13d61f33dc96f096","8f44c0b0bd586c8-13f6f0782e3521b4"]},"geometry":{"type":"LineString","coordinates":[[-83.72742380000001,32.8316271],[-83.7279427,32.8317792]]},"id":"8a44c0b0bd5ffff-13b69fd5f71c3aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.728325,32.8318913]},"id":"8f44c0b0bc6498d-139e1e44e1c16575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bc6498d-139e1e44e1c16575","8f44c0b0bd59040-13d61f33dc96f096"]},"geometry":{"type":"LineString","coordinates":[[-83.7279427,32.8317792],[-83.728325,32.8318913]]},"id":"8944c0b0bd7ffff-13ff1ebc57a46906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7282296,32.8321406]},"id":"8f44c0b0bc640dd-13b7fe80819c11c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc6498d-139e1e44e1c16575","8f44c0b0bc640dd-13b7fe80819c11c1"]},"geometry":{"type":"LineString","coordinates":[[-83.728325,32.8318913],[-83.7282296,32.8321406]]},"id":"8b44c0b0bc64fff-13fe1e62bfaf6d81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7281148,32.832440600000005]},"id":"8f44c0b0bc601ad-13f77ec84ccf0345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc640dd-13b7fe80819c11c1","8f44c0b0bc601ad-13f77ec84ccf0345"]},"geometry":{"type":"LineString","coordinates":[[-83.7282296,32.8321406],[-83.7281148,32.832440600000005]]},"id":"8a44c0b0bc67fff-1397bea4639ac400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc63131-13f69f00dc1ccbfa","8f44c0b0bc601ad-13f77ec84ccf0345"]},"geometry":{"type":"LineString","coordinates":[[-83.7281148,32.832440600000005],[-83.728099,32.832482],[-83.728029,32.832776],[-83.7280243,32.8328457]]},"id":"8a44c0b0bc67fff-13f71ee9176b0bdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72710260000001,32.832050200000005]},"id":"8f44c0b0bc74364-13ff6140efd2210f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7271011,32.8321684]},"id":"8f44c0b0bc75530-13df6141d4df192e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc74364-13ff6140efd2210f","8f44c0b0bc75530-13df6141d4df192e"]},"geometry":{"type":"LineString","coordinates":[[-83.72710260000001,32.832050200000005],[-83.7271011,32.8321684]]},"id":"8a44c0b0bc77fff-13b671416ccc0b35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc75515-13d6a141f3053f44","8f44c0b0bc75530-13df6141d4df192e"]},"geometry":{"type":"LineString","coordinates":[[-83.7271011,32.8321684],[-83.72710090000001,32.8321898]]},"id":"8d44c0b0bc7553f-13dff141e207781a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270951,32.8324243]},"id":"8f44c0b0bc75691-13ff3145975e7afa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc75515-13d6a141f3053f44","8f44c0b0bc75691-13ff3145975e7afa"]},"geometry":{"type":"LineString","coordinates":[[-83.72710090000001,32.8321898],[-83.72709900000001,32.832341],[-83.7270951,32.8324243]]},"id":"8b44c0b0bc75fff-139ff1433f3abcb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc71ccd-13fea14b9966609b","8f44c0b0bc75691-13ff3145975e7afa"]},"geometry":{"type":"LineString","coordinates":[[-83.7270951,32.8324243],[-83.7270855,32.8326312]]},"id":"8a44c0b0bc77fff-13bfe148979b5761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270802,32.832746300000004]},"id":"8f44c0b0bc7109b-13b6714ee4ef1204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc71ccd-13fea14b9966609b","8f44c0b0bc7109b-13b6714ee4ef1204"]},"geometry":{"type":"LineString","coordinates":[[-83.7270855,32.8326312],[-83.7270802,32.832746300000004]]},"id":"8b44c0b0bc71fff-139ea14d4011c964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727079,32.832772]},"id":"8f44c0b0bc71706-13d6a14fa5f5e823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc7109b-13b6714ee4ef1204","8f44c0b0bc71706-13d6a14fa5f5e823"]},"geometry":{"type":"LineString","coordinates":[[-83.7270802,32.832746300000004],[-83.727079,32.832772]]},"id":"8d44c0b0bc7173f-13bea14f4efae914"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269011,32.8302008]},"id":"8f44c0b0bd50c44-17ffa1bed497284b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726871,32.829196]},"id":"8f44c0b0bd0d04a-1397a1d1a973ce19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd50c44-17ffa1bed497284b","8f44c0b0bd0d04a-1397a1d1a973ce19"]},"geometry":{"type":"LineString","coordinates":[[-83.7269011,32.8302008],[-83.726889,32.829697],[-83.726871,32.829196]]},"id":"8844c0b0bdfffff-13d7a1c7551a4cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd5a8f5-17f7712c9ec5494f","8f44c0b0bc2d3a8-17b7a218f67ab6de"]},"geometry":{"type":"LineString","coordinates":[[-83.7271351,32.831413500000004],[-83.7269273,32.8313499],[-83.72675690000001,32.8312952]]},"id":"8944c0b0bd7ffff-17dee1a2ec630f4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bc28d6a-17bee36c8729fd09","8f44c0b0bc2d3a8-17b7a218f67ab6de"]},"geometry":{"type":"LineString","coordinates":[[-83.72675690000001,32.8312952],[-83.7266656,32.831265800000004],[-83.72629660000001,32.8311495],[-83.72621360000001,32.8311214]]},"id":"8a44c0b0bc2ffff-17f7a2c2d839eceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7247402,32.8305902]},"id":"8f44c0b0bc3120e-17fee705684dc834"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bc3120e-17fee705684dc834","8f44c0b0bc04acd-179ef5e1bd777a61"]},"geometry":{"type":"LineString","coordinates":[[-83.7247402,32.8305902],[-83.7252069,32.8308397]]},"id":"8a44c0b0bc07fff-17bee67392821eab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bc04acd-179ef5e1bd777a61","8f44c0b0bc28168-179ee333f951b20f"]},"geometry":{"type":"LineString","coordinates":[[-83.7252069,32.8308397],[-83.72554240000001,32.8309969],[-83.7259281,32.831155700000004],[-83.7262443,32.8312626],[-83.72630410000001,32.8312814]]},"id":"8944c0b0bc3ffff-179fb48e5082d8f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7232419,32.829417]},"id":"8f44c0b0bd8c95a-1397aaaddff5f648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7225403,32.828927]},"id":"8f44c0b0bd80a1a-13df6c6458d69803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd8c95a-1397aaaddff5f648","8f44c0b0bd80a1a-13df6c6458d69803"]},"geometry":{"type":"LineString","coordinates":[[-83.7232419,32.829417],[-83.72286600000001,32.8291583],[-83.7225403,32.828927]]},"id":"8944c0b0bdbffff-13ff7b89a01f0d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bdb3229-139e6e3e23b52290","8f44c0b0bd80a1a-13df6c6458d69803"]},"geometry":{"type":"LineString","coordinates":[[-83.7225403,32.828927],[-83.722364,32.8288019],[-83.7217822,32.8284068]]},"id":"8944c0b0bdbffff-13bffd50acc34ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72312480000001,32.8295229]},"id":"8f44c0b0bd8c025-13d7faf7030b7667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd8c025-13d7faf7030b7667","8f44c0b0bd81072-13be7bd51712e93c"]},"geometry":{"type":"LineString","coordinates":[[-83.7227695,32.8292485],[-83.7230002,32.8294194],[-83.72312480000001,32.8295229]]},"id":"8944c0b0bdbffff-13feab64fada342b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd864f4-13967e2f891c002a","8f44c0b0bd94846-13b67f5d0d01f53c"]},"geometry":{"type":"LineString","coordinates":[[-83.7213232,32.8282471],[-83.72180560000001,32.8285767]]},"id":"8944c0b0bdbffff-139f7ec6425c47de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aadc798-17deb4cd78615de3","8f44c0b0aade133-179eb58c96f0f3bd"]},"geometry":{"type":"LineString","coordinates":[[-83.7187895,32.8271816],[-83.71902460000001,32.827240800000006],[-83.7190953,32.8272587]]},"id":"8a44c0b0aadffff-17b6b52d0768dfa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aace342-17ff31ff8992c2f3","8f44c0b0aaddd16-17d673c0b1fd6dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.72024400000001,32.827512],[-83.7199671,32.827402500000005],[-83.7195921,32.8272665],[-83.7195253,32.8272485]]},"id":"8944c0b0aafffff-1797b2df0e868a93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aace342-17ff31ff8992c2f3","8f44c0b0aac8c19-179ef1af4379d9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7203724,32.8275695],[-83.7202694,32.827522],[-83.72024400000001,32.827512]]},"id":"8a44c0b0aacffff-17feb1d744b7eb33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a322649-17ff7a9b1a032b83","8f44c0b0a32350e-179fba0f4357e5b3"]},"geometry":{"type":"LineString","coordinates":[[-83.71671830000001,32.826699600000005],[-83.716942,32.8267515]]},"id":"8a44c0b0a327fff-17ffba552b5e8f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7177997,32.8269496]},"id":"8f44c0b0a32c52c-179fb7f732ebb39f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a32c52c-179fb7f732ebb39f","8f44c0b0a32350e-179fba0f4357e5b3"]},"geometry":{"type":"LineString","coordinates":[[-83.716942,32.8267515],[-83.7174511,32.826864900000004],[-83.7177997,32.8269496]]},"id":"8944c0b0a33ffff-17de7902f406306a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a3220da-179e3aa2ebf97014","8f44c0b0a331856-13fffb6b99fc8ea6"]},"geometry":{"type":"LineString","coordinates":[[-83.7167058,32.8265666],[-83.7163847,32.8264894]]},"id":"8944c0b0a33ffff-17963b07439f0cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7138058,32.8258554]},"id":"8f44c0b0a05d8d0-13dfe1b768e92a2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a05ea24-13fed366172dbfb0","8f44c0b0a05d8d0-13dfe1b768e92a2d"]},"geometry":{"type":"LineString","coordinates":[[-83.7138058,32.8258554],[-83.7131167,32.8257001]]},"id":"8a44c0b0a05ffff-13bf528ec2da7cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095707,32.825622200000005]},"id":"8f44c0b0a0d54f3-13dfec0e541ce8a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d54f3-13dfec0e541ce8a7","8f44c0b0a0d621c-139edd5f3903993d"]},"geometry":{"type":"LineString","coordinates":[[-83.70903170000001,32.8255373],[-83.7095707,32.825622200000005]]},"id":"8a44c0b0a0d7fff-13b76cb6c551e2ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d54f3-13dfec0e541ce8a7","8f44c0b0a0d50d0-13dfeb9d5eb7fd4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7095707,32.825622200000005],[-83.70975150000001,32.8256506]]},"id":"8b44c0b0a0d5fff-13d6cbd5d37f1011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101514,32.825556]},"id":"8f44c0b0a0c6716-13b6caa36d6c4d6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d5c43-13fffb9b5ac989c5","8f44c0b0a0c6716-13b6caa36d6c4d6f"]},"geometry":{"type":"LineString","coordinates":[[-83.7101514,32.825556],[-83.7097547,32.8254879]]},"id":"8944c0b0a0fffff-139f4b1f656c7c82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095678,32.825459200000005]},"id":"8f44c0b0a0d4246-13fe4c1029257f01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d5c43-13fffb9b5ac989c5","8f44c0b0a0d4246-13fe4c1029257f01"]},"geometry":{"type":"LineString","coordinates":[[-83.7097547,32.8254879],[-83.7095678,32.825459200000005]]},"id":"8a44c0b0a0d7fff-13f74bd5b8aebda7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a821669-13bef8764e257b48","8f44c0b0a805804-13bef9a3561aa2f0"]},"geometry":{"type":"LineString","coordinates":[[-83.7175964,32.815537400000004],[-83.717527,32.815575],[-83.717456,32.815605000000005],[-83.71741,32.815624],[-83.717163,32.815716],[-83.71711470000001,32.815732700000005]]},"id":"8944c0b0a83ffff-13ffb90b3c11e34e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a805804-13bef9a3561aa2f0","8f44c0b0a80054a-13d73b5c03a34092"]},"geometry":{"type":"LineString","coordinates":[[-83.71711470000001,32.815732700000005],[-83.71679400000001,32.815844000000006],[-83.716644,32.815896],[-83.7164096,32.815979500000005]]},"id":"8a44c0b0a807fff-13f7ba7fdee29adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2db853-17de328e6fc159a4","8f44c0b0a954c69-17f6b5c6c80afdbc"]},"geometry":{"type":"LineString","coordinates":[[-83.7186964,32.8145994],[-83.718759,32.814507],[-83.718849,32.814391],[-83.718953,32.814286],[-83.719069,32.814189],[-83.719453,32.813916],[-83.71978,32.813692],[-83.72001540000001,32.813533]]},"id":"8844c0b0a9fffff-1796b43fdf3758ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2db853-17de328e6fc159a4","8f44c0b0e2ddca8-13de71af1f77f0e3"]},"geometry":{"type":"LineString","coordinates":[[-83.72001540000001,32.813533],[-83.72017190000001,32.8134213],[-83.7202743,32.8133192],[-83.72034330000001,32.8131611],[-83.7203671,32.813037],[-83.7203727,32.8129415]]},"id":"8a44c0b0e2dffff-13b671faff359fdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7202802,32.8127945]},"id":"8f44c0b0e2dcaab-13feb1e8e1e741d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2dcaab-13feb1e8e1e741d3","8f44c0b0a929051-1796f4d0c5e20737"]},"geometry":{"type":"LineString","coordinates":[[-83.71909000000001,32.813451],[-83.7201216,32.812883],[-83.7202802,32.8127945]]},"id":"8644c0b0fffffff-13dff35cb202f0d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2dcaab-13feb1e8e1e741d3","8f44c0b0e2dcb54-13df71b14ee2d74f"]},"geometry":{"type":"LineString","coordinates":[[-83.7202802,32.8127945],[-83.72036920000001,32.8127446]]},"id":"8c44c0b0e2dcbff-13fef1cd11bd9413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2dcb54-13df71b14ee2d74f","8f44c0b0e2c311b-139eb1161b25901d"]},"geometry":{"type":"LineString","coordinates":[[-83.72036920000001,32.8127446],[-83.7206175,32.812612]]},"id":"8944c0b0e2fffff-13b7f163b152adec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c5215-13bfef74ed751846","8f44c0b0e2c311b-139eb1161b25901d"]},"geometry":{"type":"LineString","coordinates":[[-83.7206175,32.812612],[-83.72128500000001,32.8122556]]},"id":"8a44c0b0e2c7fff-139f30457f5d0fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c359c-139671b2dea417a4","8f44c0b0e2dcaab-13feb1e8e1e741d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7203667,32.8125991],[-83.7202802,32.8127945]]},"id":"8944c0b0e2fffff-13bfb1cde762d9a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2d8b33-13dff215e2f91f0a","8f44c0b0e2dcaab-13feb1e8e1e741d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7202802,32.8127945],[-83.720263,32.812873700000004],[-83.7202457,32.8129529],[-83.7202338,32.813045],[-83.7202082,32.8131263]]},"id":"8a44c0b0e2dffff-13f6b1fe329dd436"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d8e916-17f69d88dc495d61","8f44c0b08d81aeb-17963cfa7bff0946"]},"geometry":{"type":"LineString","coordinates":[[-83.72862590000001,32.8082504],[-83.7288537,32.8081187]]},"id":"8944c0b08dbffff-17bf7d41a5e21ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.735957,32.803677]},"id":"8f44c0b0c603a50-17be2ba2ea2d153c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c622cb0-13961baa641b24aa","8f44c0b0c603a50-17be2ba2ea2d153c"]},"geometry":{"type":"LineString","coordinates":[[-83.735957,32.803677],[-83.73594100000001,32.802492],[-83.735945,32.8021569]]},"id":"8944c0b0c63ffff-13df2ba8b810c9e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73594940000001,32.8017849]},"id":"8f44c0b0c71b2c1-179f9ba7ab729c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c622cb0-13961baa641b24aa","8f44c0b0c71b2c1-179f9ba7ab729c25"]},"geometry":{"type":"LineString","coordinates":[[-83.735945,32.8021569],[-83.73594940000001,32.8017849]]},"id":"8944c0b0c63ffff-139fdba90b2a4e7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c71ba92-179f3ba625a559fd","8f44c0b0c71b2c1-179f9ba7ab729c25"]},"geometry":{"type":"LineString","coordinates":[[-83.73594940000001,32.8017849],[-83.73595180000001,32.8015859]]},"id":"8b44c0b0c71bfff-17df6ba6e6cac41e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c71ba92-179f3ba625a559fd","8f44c0b0c71c442-17970b9fc4ea3316"]},"geometry":{"type":"LineString","coordinates":[[-83.73595180000001,32.8015859],[-83.735962,32.800728]]},"id":"8a44c0b0c71ffff-17972ba2f3e04614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c71c52b-17d74b9eeefe5fd0","8f44c0b0c71c442-17970b9fc4ea3316"]},"geometry":{"type":"LineString","coordinates":[[-83.735962,32.800728],[-83.7359634,32.8006228]]},"id":"8c44c0b0c71c5ff-17f62b9f536bff80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c71c52b-17d74b9eeefe5fd0","8f44c0b0c7158cc-13f64b9884b12b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.7359634,32.8006228],[-83.73597360000001,32.799872400000005]]},"id":"8944c0b0c73ffff-13decb9bb6712269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c734488-17ff2b8d609bf1d7","8f44c0b0c7158cc-13f64b9884b12b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.73597360000001,32.799872400000005],[-83.73597500000001,32.799765],[-83.7359914,32.7986578]]},"id":"8944c0b0c73ffff-13f6bb93077ddaba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c734488-17ff2b8d609bf1d7","8f44c0b0c469ab5-17b7eb8a44575fb1"]},"geometry":{"type":"LineString","coordinates":[[-83.7359914,32.7986578],[-83.7359964,32.798323]]},"id":"8744c0b0cffffff-17968b8bda33ba51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa21530-13973ead17a60d1a","8f44c0b0aa234c5-139fefddfb74ac52"]},"geometry":{"type":"LineString","coordinates":[[-83.7211169,32.8230814],[-83.7213638,32.8229567],[-83.7216047,32.8228369]]},"id":"8a44c0b0aa27fff-13df6f45ae087ce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71538530000001,32.826242300000004]},"id":"8f44c0b0a332c70-13d77ddc33528773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7142005,32.8259465]},"id":"8f44c0b0a04e745-139ed0c0b9563596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a04e745-139ed0c0b9563596","8f44c0b0a332c70-13d77ddc33528773"]},"geometry":{"type":"LineString","coordinates":[[-83.71538530000001,32.826242300000004],[-83.7142005,32.8259465]]},"id":"8744c0b0affffff-13f73f4e77ba5df8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7147941,32.8247907]},"id":"8f44c0b0a06e50c-17d63f4dbc8b79d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a04542b-13b6407e87a37828","8f44c0b0a06e50c-17d63f4dbc8b79d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7143064,32.824960000000004],[-83.7147941,32.8247907]]},"id":"8944c0b0a07ffff-17ff3fe628faff9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a06e50c-17d63f4dbc8b79d3","8f44c0b0a06cca8-17d7be0f6e5ecc78"]},"geometry":{"type":"LineString","coordinates":[[-83.7147941,32.8247907],[-83.71530340000001,32.8246138]]},"id":"8a44c0b0a06ffff-179efeae8d22770d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206534,32.7443765]},"id":"8f44c0b04a03566-13f770ffa58f0dd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a01453-13f66ff38d3bbb58","8f44c0b04a03566-13f770ffa58f0dd5"]},"geometry":{"type":"LineString","coordinates":[[-83.7210824,32.7443716],[-83.7209519,32.744336000000004],[-83.7206534,32.7443765]]},"id":"8a44c0b04a07fff-13f63078d89a11c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70871100000001,32.743039200000005]},"id":"8f44c0b040a2ba5-13bfce27a9a5861d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b040a2ba5-13bfce27a9a5861d","8f44c0b040959a2-13f6510a6f10df08"]},"geometry":{"type":"LineString","coordinates":[[-83.70752900000001,32.743536],[-83.70815800000001,32.74328],[-83.70871100000001,32.743039200000005]]},"id":"8944c0b040bffff-13df4f981d3dcc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b040a2ba5-13bfce27a9a5861d","8f44c0b04032ada-17fe493a6f704110"]},"geometry":{"type":"LineString","coordinates":[[-83.70871100000001,32.743039200000005],[-83.70898700000001,32.742919],[-83.709709,32.742635],[-83.71023000000001,32.742469],[-83.710729,32.742336]]},"id":"8844c0b041fffff-17d74bb7816d43c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0403069d-17dfe8d84ecd426e","8f44c0b04032ada-17fe493a6f704110"]},"geometry":{"type":"LineString","coordinates":[[-83.710729,32.742336],[-83.710886,32.742297]]},"id":"8a44c0b04037fff-17ffd909596a9c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71501310000001,32.743835700000005]},"id":"8f44c0b0414a6f5-13b77ec4d92d66cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0414a6f5-13b77ec4d92d66cf","8f44c0b0414a988-13dfbe4e03b53b95"]},"geometry":{"type":"LineString","coordinates":[[-83.7152032,32.743497000000005],[-83.71501310000001,32.743835700000005]]},"id":"8b44c0b0414afff-13b7be897ba77f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71494840000001,32.743977300000005]},"id":"8f44c0b04064c56-13fffeed43c4af3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0414a6f5-13b77ec4d92d66cf","8f44c0b04064c56-13fffeed43c4af3f"]},"geometry":{"type":"LineString","coordinates":[[-83.71501310000001,32.743835700000005],[-83.71494840000001,32.743977300000005]]},"id":"8944c0b0417ffff-13dfbed90463e221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b04064c56-13fffeed43c4af3f","8f44c0b0415922e-13d73f6297837edc"]},"geometry":{"type":"LineString","coordinates":[[-83.71494840000001,32.743977300000005],[-83.7147607,32.743912]]},"id":"8944c0b0417ffff-13f77f27e87f0d16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b04159700-13b7bfd9bd7c0181","8f44c0b0415922e-13d73f6297837edc"]},"geometry":{"type":"LineString","coordinates":[[-83.7147607,32.743912],[-83.7145701,32.7438457]]},"id":"8b44c0b04159fff-13be7f9e204f4316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b04159700-13b7bfd9bd7c0181","8f44c0b0415949d-1397e046be730d41"]},"geometry":{"type":"LineString","coordinates":[[-83.7145701,32.7438457],[-83.71439570000001,32.743785]]},"id":"8a44c0b0415ffff-1396e010394de6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71416830000001,32.7437059]},"id":"8f44c0b0415bd41-13d670d4d6a9e8fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0415bd41-13d670d4d6a9e8fd","8f44c0b0415949d-1397e046be730d41"]},"geometry":{"type":"LineString","coordinates":[[-83.71439570000001,32.743785],[-83.71416830000001,32.7437059]]},"id":"8b44c0b0415bfff-13fef08dc4b44011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134814,32.7434669]},"id":"8f44c0b0402990d-13bed28221d45949"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0415bd41-13d670d4d6a9e8fd","8f44c0b0402990d-13bed28221d45949"]},"geometry":{"type":"LineString","coordinates":[[-83.71416830000001,32.7437059],[-83.7134814,32.7434669]]},"id":"8844c0b041fffff-1397c1ab78b7846f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0402990d-13bed28221d45949","8f44c0b0402da8e-13be623ea1ab2473"]},"geometry":{"type":"LineString","coordinates":[[-83.7134814,32.7434669],[-83.7135894,32.7432642]]},"id":"8a44c0b0402ffff-13ffc2606a03bba7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0402da8e-13be623ea1ab2473","8f44c0b04153a42-17bf71b4ef087a8d"]},"geometry":{"type":"LineString","coordinates":[[-83.7135894,32.7432642],[-83.7138098,32.7428503]]},"id":"8944c0b0417ffff-13bed1f9c096897e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c6464e-13d7b36dae1f0b77","8f44c0a05d4b19c-1396d249673beb5f"]},"geometry":{"type":"LineString","coordinates":[[-83.68689020000001,32.9010035],[-83.6873578,32.9006605]]},"id":"8844c0a05dfffff-13fe82db8bbc2b6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68752280000001,32.9005395]},"id":"8f44c0a05d4b835-13b7b1e24f2e1f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d4b835-13b7b1e24f2e1f72","8f44c0a05d4b19c-1396d249673beb5f"]},"geometry":{"type":"LineString","coordinates":[[-83.6873578,32.9006605],[-83.68752280000001,32.9005395]]},"id":"8b44c0a05d4bfff-13df8215d79949b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d4b835-13b7b1e24f2e1f72","8f44c0a05d4b928-139fa1c17cb01367"]},"geometry":{"type":"LineString","coordinates":[[-83.68752280000001,32.9005395],[-83.6875753,32.900501000000006]]},"id":"8c44c0a05d4b9ff-13bfb1d1edd6619f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05b9d016-13b7f18ea329df27","8f44c0a05b99493-13df7277902dc2b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6938375,32.9073392],[-83.6942102,32.9068859]]},"id":"8a44c0a05b9ffff-13d772031540a5fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a051a80b2-17fef46b58f181c9","8f44c0a051aa968-17d684e245be90cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6864843,32.905338300000004],[-83.686335,32.905306],[-83.686294,32.905300000000004]]},"id":"8a44c0a051affff-17dfd4a6bce30fa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7474389,32.8802982]},"id":"8f44c0b5232ddb4-17dfef9abe98c24c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7476292,32.8803063]},"id":"8f44c0b52ad365a-17dfff23c728f877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5232ddb4-17dfef9abe98c24c","8f44c0b52ad365a-17dfff23c728f877"]},"geometry":{"type":"LineString","coordinates":[[-83.7474389,32.8802982],[-83.7476292,32.8803063]]},"id":"8a44c0b5232ffff-17ddff5f31c5212a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b52ad1295-17f5fdc8cff471e4","8f44c0b52ad365a-17dfff23c728f877"]},"geometry":{"type":"LineString","coordinates":[[-83.7476292,32.8803063],[-83.7478449,32.8803155],[-83.74793840000001,32.8803001],[-83.7481844,32.8801567]]},"id":"8944c0b52afffff-17bdee700bebca0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b52ad3724-17ffff2018a8c5a2","8f44c0b52ad1295-17f5fdc8cff471e4"]},"geometry":{"type":"LineString","coordinates":[[-83.7481844,32.8801567],[-83.748282,32.880068],[-83.74835110000001,32.879975800000004],[-83.7476417,32.879965500000004],[-83.74763510000001,32.8801447]]},"id":"8a44c0b52ad7fff-1797ee3c156011d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b52ad3724-17ffff2018a8c5a2","8f44c0b52ad365a-17dfff23c728f877"]},"geometry":{"type":"LineString","coordinates":[[-83.74763510000001,32.8801447],[-83.7476292,32.8803063]]},"id":"8b44c0b52ad3fff-179dff21e047f0c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52a5e0d3-17f5e5f9a759af6f","8f44c0b52321d0a-17d7f12a1feca6b8"]},"geometry":{"type":"LineString","coordinates":[[-83.7467999,32.879679700000004],[-83.74749170000001,32.8796904],[-83.7490643,32.8797147],[-83.7492392,32.879717400000004],[-83.74955250000001,32.879722300000005],[-83.7497732,32.8797257],[-83.75024400000001,32.879733],[-83.75041200000001,32.879734],[-83.751383,32.879747]]},"id":"8844c0b52bfffff-17ddeb91e2db9f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52a5e0d3-17f5e5f9a759af6f","8f44c0b52a5e05a-17f5e5cac874ec6e"]},"geometry":{"type":"LineString","coordinates":[[-83.751383,32.879747],[-83.751458,32.879745]]},"id":"8c44c0b52a5e1ff-17f5e5e237610a2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52a4c3a6-1795f15c3025861c","8f44c0b52a5e05a-17f5e5cac874ec6e"]},"geometry":{"type":"LineString","coordinates":[[-83.751458,32.879745],[-83.7532733,32.879770900000004]]},"id":"8944c0b52a7ffff-17fde3938580b811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b52a4c3a6-1795f15c3025861c","8f44c0b5069b790-179ffd84be944dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.7532733,32.879770900000004],[-83.75368990000001,32.8797761],[-83.7548469,32.8797878]]},"id":"8644c0b57ffffff-1797df70713dbef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5069b790-179ffd84be944dc5","8f44c0b5068b408-179dda44c9a64653"]},"geometry":{"type":"LineString","coordinates":[[-83.7548469,32.8797878],[-83.7549134,32.8797937],[-83.75511200000001,32.879798],[-83.755409,32.879804],[-83.7557783,32.879809],[-83.756178,32.8798145]]},"id":"8644c0b57ffffff-1795dbe4dcc909f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b50689620-17b5f8e262a11da0","8f44c0b5068b408-179dda44c9a64653"]},"geometry":{"type":"LineString","coordinates":[[-83.756178,32.8798145],[-83.75674500000001,32.8798223]]},"id":"8a44c0b5068ffff-179fd993924f80f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b50689620-17b5f8e262a11da0","8f44c0b506d4d1e-17b5d800b9a55ccc"]},"geometry":{"type":"LineString","coordinates":[[-83.75674500000001,32.8798223],[-83.7571061,32.8798272]]},"id":"8944c0b506fffff-17b7d87193d57882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b506f38ec-17bdf6540f0a5b05","8f44c0b506d4d1e-17b5d800b9a55ccc"]},"geometry":{"type":"LineString","coordinates":[[-83.7571061,32.8798272],[-83.75738600000001,32.879831],[-83.75779200000001,32.879840200000004]]},"id":"8944c0b506fffff-17b7d72a579a00b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b506f38ec-17bdf6540f0a5b05","8f44c0b506f10e6-17b5f576dd7314d5"]},"geometry":{"type":"LineString","coordinates":[[-83.75779200000001,32.879840200000004],[-83.7581459,32.8798483]]},"id":"8a44c0b506f7fff-17bff5e5718f620c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a218db984-139eb10641e19a86","8f44c0a21b82a2b-179f399a829f951c"]},"geometry":{"type":"LineString","coordinates":[[-83.72064280000001,32.878586600000006],[-83.7210905,32.878748900000005],[-83.72205720000001,32.879093600000004],[-83.722564,32.8792952],[-83.7236824,32.8797937]]},"id":"8744c0a21ffffff-1796fd499e12bec2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b82a2b-179f399a829f951c","8f44c0a21b81270-17ffe7c563954a32"]},"geometry":{"type":"LineString","coordinates":[[-83.7236824,32.8797937],[-83.724433,32.8801724]]},"id":"8944c0a21bbffff-179778aff8c2e250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a32025261-1797f81efaf4c4e6","8f44c0a321082e0-17ffb7b7a3564acb"]},"geometry":{"type":"LineString","coordinates":[[-83.61287850000001,32.8638287],[-83.612893,32.863742],[-83.612976,32.863403000000005],[-83.6130438,32.8629704]]},"id":"8844c0a321fffff-179fb7e777db80c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61431440000001,32.8605895]},"id":"8f44c0a328d0d36-17bf749d822d58ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a328d0d36-17bf749d822d58ed","8f44c0a328d4695-1797b48e064881ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6143392,32.8605515],[-83.61431440000001,32.8605895]]},"id":"8a44c0a328d7fff-17b7b495c26438b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328f58b6-17d7b16e9ab905bf","8f44c0a328f434b-17d771eef8d615fa"]},"geometry":{"type":"LineString","coordinates":[[-83.61561830000001,32.8596041],[-83.61541290000001,32.8596037]]},"id":"8a44c0a328f7fff-17d771aec08df4dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328f6a53-17d7f2fec65c3cff","8f44c0a328f434b-17d771eef8d615fa"]},"geometry":{"type":"LineString","coordinates":[[-83.61541290000001,32.8596037],[-83.61497800000001,32.859603]]},"id":"8a44c0a328f7fff-17d73276d8358ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3288d1ac-17bff4b90734d0f2","8f44c0a3288d565-17bf34eb6a7c6fc9"]},"geometry":{"type":"LineString","coordinates":[[-83.61427040000001,32.859591900000005],[-83.6141898,32.8595922]]},"id":"8b44c0a3288dfff-17bf34d23432331a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61387900000001,32.8595933]},"id":"8f44c0a32888989-17bff5ada00a3f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32888989-17bff5ada00a3f9b","8f44c0a3288d565-17bf34eb6a7c6fc9"]},"geometry":{"type":"LineString","coordinates":[[-83.6141898,32.8595922],[-83.61387900000001,32.8595933]]},"id":"8a44c0a3288ffff-17bfb54c86d1d1ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32888989-17bff5ada00a3f9b","8f44c0a3288e282-17bfb6b76cc1bf20"]},"geometry":{"type":"LineString","coordinates":[[-83.61387900000001,32.8595933],[-83.6134538,32.8595947]]},"id":"8a44c0a3288ffff-17bf76328f642264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6130814,32.859596]},"id":"8f44c0a3289d326-17bfb7a02ef86b4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3289d326-17bfb7a02ef86b4d","8f44c0a3288e282-17bfb6b76cc1bf20"]},"geometry":{"type":"LineString","coordinates":[[-83.6134538,32.8595947],[-83.6130814,32.859596]]},"id":"8944c0a328bffff-17bf372bc292106d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3289d326-17bfb7a02ef86b4d","8f44c0a3289d0c3-17bff7f32c8fad66"]},"geometry":{"type":"LineString","coordinates":[[-83.6130814,32.859596],[-83.61294860000001,32.8595965]]},"id":"8b44c0a3289dfff-17bfb7c9a3b7e8ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3281126c-13b731098a8724f4","8f44c0a3281e38c-139ff19f4051e812"]},"geometry":{"type":"LineString","coordinates":[[-83.61578,32.858328],[-83.6155404,32.8586892]]},"id":"8a44c0a3281ffff-1397f1546334756e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3281e38c-139ff19f4051e812","8f44c0a3281a8aa-139731ec4480063b"]},"geometry":{"type":"LineString","coordinates":[[-83.6155404,32.8586892],[-83.61541720000001,32.8588833]]},"id":"8a44c0a3281ffff-13d771c5ce1a231f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3281a8aa-139731ec4480063b","8f44c0a328f4d2b-13d7f274006dab2c"]},"geometry":{"type":"LineString","coordinates":[[-83.61541720000001,32.8588833],[-83.6152,32.8592255]]},"id":"8844c0a329fffff-13ff32302be4ee1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36375990-13ffdacbcc1877d1","8f44c0a3637516c-13d71aa142213a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.62489000000001,32.849014100000005],[-83.624958,32.849184]]},"id":"8b44c0a36375fff-139ffab681696bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6250646,32.8500724]},"id":"8f44c0a36344771-17ff5a5eaa8a881b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36344ab5-17bf59ffa6e69424","8f44c0a36344771-17ff5a5eaa8a881b"]},"geometry":{"type":"LineString","coordinates":[[-83.6252166,32.8499701],[-83.6250646,32.8500724]]},"id":"8b44c0a36344fff-17df5a2f26ac25c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62489910000001,32.8501837]},"id":"8f44c0a36340d02-17d7dac61f261521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36344771-17ff5a5eaa8a881b","8f44c0a36340d02-17d7dac61f261521"]},"geometry":{"type":"LineString","coordinates":[[-83.6250646,32.8500724],[-83.62489910000001,32.8501837]]},"id":"8a44c0a36347fff-17b71a9253d8f902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363462e9-179fbb326edf509d","8f44c0a36340d02-17d7dac61f261521"]},"geometry":{"type":"LineString","coordinates":[[-83.62489910000001,32.8501837],[-83.62472580000001,32.8503003]]},"id":"8a44c0a36347fff-17ff5afc392c246a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36372231-17bf3d02e031e759","8f44c0a36373515-17ff5cc985eec282"]},"geometry":{"type":"LineString","coordinates":[[-83.6239826,32.8495586],[-83.62407440000001,32.8496564]]},"id":"8a44c0a36377fff-17dfbce63845ea79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36373515-17ff5cc985eec282","8f44c0a363732ec-17b79c1378d968e1"]},"geometry":{"type":"LineString","coordinates":[[-83.62407440000001,32.8496564],[-83.62417350000001,32.8497664],[-83.6243657,32.849952800000004]]},"id":"8b44c0a36373fff-17df5c6fff0af96f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6256841,32.8487014]},"id":"8f44c0a36ad9a76-13b778db7086352f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36366c70-13dfd9cb896f9896","8f44c0a36ad9a76-13b778db7086352f"]},"geometry":{"type":"LineString","coordinates":[[-83.6256841,32.8487014],[-83.625658,32.848726],[-83.62530000000001,32.848970800000004]]},"id":"8744c0a36ffffff-13ffd95277d5c995"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ace391-139757e39f45c81c","8f44c0a36aca1b0-13b7185e85d5f3cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6260807,32.848238900000005],[-83.62589600000001,32.848481],[-83.625884,32.848496000000004]]},"id":"8a44c0a36acffff-13d7d820f9381747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6242687,32.848203500000004]},"id":"8f44c0a3632d0cd-13ff3c50191eb495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36adad24-13ff9b914d0716e4","8f44c0a3632d0cd-13ff3c50191eb495"]},"geometry":{"type":"LineString","coordinates":[[-83.62457400000001,32.848204],[-83.6242687,32.848203500000004]]},"id":"8844c0a363fffff-13ff7bf0b734322a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36328b66-13fffcd9737e584e","8f44c0a3632d0cd-13ff3c50191eb495"]},"geometry":{"type":"LineString","coordinates":[[-83.6242687,32.848203500000004],[-83.6240489,32.8482031]]},"id":"8b44c0a3632dfff-13ff1c94c6b26f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6234041,32.8482021]},"id":"8f44c0a3632a81c-13ff5e6c72498151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3632a81c-13ff5e6c72498151","8f44c0a36328b66-13fffcd9737e584e"]},"geometry":{"type":"LineString","coordinates":[[-83.6240489,32.8482031],[-83.6234041,32.8482021]]},"id":"8a44c0a3632ffff-13ffbda2fbd89a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3632a81c-13ff5e6c72498151","8f44c0a36300a49-13ffa0112804898f"]},"geometry":{"type":"LineString","coordinates":[[-83.6234041,32.8482021],[-83.622731,32.848201]]},"id":"8944c0a3633ffff-13ff1f3edaa80eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62233690000001,32.8444087]},"id":"8f44c0a36ab34b0-17bf71077dd6a74a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b9b985-17ff1e76c64792c2","8f44c0a36ab34b0-17bf71077dd6a74a"]},"geometry":{"type":"LineString","coordinates":[[-83.6233876,32.8432801],[-83.6230209,32.843609],[-83.6228134,32.8438516],[-83.6225909,32.8441118],[-83.6224578,32.8442673],[-83.62233690000001,32.8444087]]},"id":"8844c0a36bfffff-17d71fc90bc5024f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62211470000001,32.8482014]},"id":"8f44c0a36302b9c-13ffe1925f27ae34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36300a49-13ffa0112804898f","8f44c0a36302b9c-13ffe1925f27ae34"]},"geometry":{"type":"LineString","coordinates":[[-83.622731,32.848201],[-83.62211470000001,32.8482014]]},"id":"8a44c0a36307fff-13ffe0d1bde9eb85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36302b9c-13ffe1925f27ae34","8f44c0a363106d1-13ff644339171c80"]},"geometry":{"type":"LineString","coordinates":[[-83.62211470000001,32.8482014],[-83.6211619,32.8482019],[-83.6210125,32.848202]]},"id":"8944c0a3633ffff-13ff32eace01ccc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36734d14-13ff789b0575e1a3","8f44c0a3646d0db-13ff390b8ddc143b"]},"geometry":{"type":"LineString","coordinates":[[-83.61250000000001,32.84512],[-83.6126,32.845304],[-83.612638,32.845388],[-83.61268000000001,32.845562]]},"id":"8744c0a36ffffff-13fff8caa5be86d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36733370-17ff78a142064616","8f44c0a36734d14-13ff789b0575e1a3"]},"geometry":{"type":"LineString","coordinates":[[-83.61268000000001,32.845562],[-83.61267000000001,32.846032],[-83.61267000000001,32.84677]]},"id":"8a44c0a36737fff-13f7f8a01e872cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36702096-1797b8a3cea1aff8","8f44c0a36733370-17ff78a142064616"]},"geometry":{"type":"LineString","coordinates":[[-83.61267000000001,32.84677],[-83.61266900000001,32.846958],[-83.612666,32.847417]]},"id":"8944c0a3673ffff-17bf78a277c88d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a367ab681-13d77ce1f0916258","8f44c0a3678d1a4-13bffcde96e11db9"]},"geometry":{"type":"LineString","coordinates":[[-83.61092810000001,32.848752600000005],[-83.6109335,32.848945400000005]]},"id":"8a44c0a3678ffff-1397bce04dca8386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a367892e2-17ffbce89e90fa3e","8f44c0a3678d1a4-13bffcde96e11db9"]},"geometry":{"type":"LineString","coordinates":[[-83.6109335,32.848945400000005],[-83.6109175,32.8496601]]},"id":"8844c0a367fffff-139f7ce399f656e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36791b65-1397c11148b0f488","8f44c0b8db613b0-13ff54e9cceb62c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6076388,32.8482289],[-83.60921400000001,32.848231600000005]]},"id":"8744c0a36ffffff-13fff2fd85d6502c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36791b65-1397c11148b0f488","8f44c0a36781c91-1397fef7569b63b4"]},"geometry":{"type":"LineString","coordinates":[[-83.60921400000001,32.848231600000005],[-83.6100747,32.8482332]]},"id":"8944c0a367bffff-13974004540d27d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8db44876-13ffd6fc46b2afe5","8f44c0b8db73301-1397d913261a5677"]},"geometry":{"type":"LineString","coordinates":[[-83.60593420000001,32.8482329],[-83.60679,32.848229700000005]]},"id":"8944c0b8db7ffff-1397d807be66ccef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c2055a1-17bfd657b3331e32","8f44c0b8c20556d-17d7e605c48902c2"]},"geometry":{"type":"LineString","coordinates":[[-83.5808389,32.840130900000005],[-83.58097000000001,32.840175]]},"id":"8b44c0b8c205fff-17d7a62ec0d0e19d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5704458,32.8069422]},"id":"8f44c0baa5b4b6c-17b7ffb76cc3b9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b4b6c-17b7ffb76cc3b9af","8f44c0b8525a8e8-13f7ffd622a6b31b"]},"geometry":{"type":"LineString","coordinates":[[-83.57039660000001,32.8064382],[-83.5704458,32.8069422]]},"id":"8844c0b853fffff-1397ffc6c3c94cd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b4b6c-17b7ffb76cc3b9af","8f44c0baa5b5c76-17bfdfab80e56a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.5704458,32.8069422],[-83.57046480000001,32.8071373]]},"id":"8a44c0baa5b7fff-17ffffb178b4f625"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b50f6-179fffa0ff6d1e3b","8f44c0baa5b5c76-17bfdfab80e56a3d"]},"geometry":{"type":"LineString","coordinates":[[-83.57046480000001,32.8071373],[-83.5704817,32.807310300000005]]},"id":"8b44c0baa5b5fff-17f7ffa63aa1a431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b1933-179fbf960b52d513","8f44c0baa5b50f6-179fffa0ff6d1e3b"]},"geometry":{"type":"LineString","coordinates":[[-83.5704817,32.807310300000005],[-83.5704992,32.8074899]]},"id":"8b44c0baa5b5fff-17d79f9b815e4f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b1933-179fbf960b52d513","8f44c0baa5b1bb3-17f7ff8b4b48f4d0"]},"geometry":{"type":"LineString","coordinates":[[-83.5704992,32.8074899],[-83.5705164,32.8076655]]},"id":"8a44c0baa5b7fff-17d79f90aa814c67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b1355-17f7ff8094f7ec8d","8f44c0baa5b1bb3-17f7ff8b4b48f4d0"]},"geometry":{"type":"LineString","coordinates":[[-83.5705164,32.8076655],[-83.57053350000001,32.8078406]]},"id":"8b44c0baa5b1fff-17bfbf85e7900dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa58441e-17dfff7a83c33bdb","8f44c0baa5b1355-17f7ff8094f7ec8d"]},"geometry":{"type":"LineString","coordinates":[[-83.57053350000001,32.8078406],[-83.5705475,32.8079842],[-83.5705432,32.808030200000005]]},"id":"8a44c0baa587fff-179fbf7b7f656c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57052680000001,32.808209000000005]},"id":"8f44c0baa586a4c-17dfbf84c819b514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa586a4c-17dfbf84c819b514","8f44c0baa58441e-17dfff7a83c33bdb"]},"geometry":{"type":"LineString","coordinates":[[-83.5705432,32.808030200000005],[-83.57052680000001,32.808209000000005]]},"id":"8a44c0baa587fff-1797df7fa9a5b5e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5705281,32.808516600000004]},"id":"8f44c0baa580732-139fff83f7eb0ce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa580732-139fff83f7eb0ce9","8f44c0baa586a4c-17dfbf84c819b514"]},"geometry":{"type":"LineString","coordinates":[[-83.57052680000001,32.808209000000005],[-83.5705234,32.8082458],[-83.5705281,32.808516600000004]]},"id":"8a44c0baa587fff-17bfbf857d591a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1b00-17bfbc1f41dde441","8f44c0baa51210c-17f7fb5f9cf57429"]},"geometry":{"type":"LineString","coordinates":[[-83.5722247,32.8076622],[-83.57191800000001,32.8077722]]},"id":"8844c0baa5fffff-1797dbbf6c058b40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1b00-17bfbc1f41dde441","8f44c0baa5a10f1-17f7bcaaa92fb393"]},"geometry":{"type":"LineString","coordinates":[[-83.57191800000001,32.8077722],[-83.57182870000001,32.8078042],[-83.571695,32.807866600000004]]},"id":"8b44c0baa5a1fff-17d79c6596a17166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57163960000001,32.8078925]},"id":"8f44c0baa5a1705-1797dccd448cb226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a10f1-17f7bcaaa92fb393","8f44c0baa5a1705-1797dccd448cb226"]},"geometry":{"type":"LineString","coordinates":[[-83.571695,32.807866600000004],[-83.57163960000001,32.8078925]]},"id":"8b44c0baa5a1fff-17ffdcbbf74025fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1690-17bfbd1a1fc812b5","8f44c0baa5a1705-1797dccd448cb226"]},"geometry":{"type":"LineString","coordinates":[[-83.57163960000001,32.8078925],[-83.5715167,32.807975500000005]]},"id":"8c44c0baa5a17ff-179fdcf3add480c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1690-17bfbd1a1fc812b5","8f44c0baa5a32e1-1797fd9264fe564e"]},"geometry":{"type":"LineString","coordinates":[[-83.5715167,32.807975500000005],[-83.57148550000001,32.8079966],[-83.5713242,32.8081271]]},"id":"8a44c0baa5a7fff-17f7fd56c2c639f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5858d0-17f7fdf2ab54ab07","8f44c0baa5a32e1-1797fd9264fe564e"]},"geometry":{"type":"LineString","coordinates":[[-83.5713242,32.8081271],[-83.5712987,32.8081477],[-83.57117020000001,32.8082743]]},"id":"8944c0baa5bffff-17d7ddc315f17c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5858d0-17f7fdf2ab54ab07","8f44c0baa585099-17d7de4332341daa"]},"geometry":{"type":"LineString","coordinates":[[-83.57117020000001,32.8082743],[-83.5710413,32.8084013]]},"id":"8b44c0baa585fff-179fbe1ae82e3e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa585099-17d7de4332341daa","8f44c0baa585691-139ffe8d6ed02674"]},"geometry":{"type":"LineString","coordinates":[[-83.5710413,32.8084013],[-83.5709226,32.8085183]]},"id":"8b44c0baa585fff-17f7fe685b2a5752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57081450000001,32.808624800000004]},"id":"8f44c0baa581cb6-13df9ed0f31dde89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa581cb6-13df9ed0f31dde89","8f44c0baa585691-139ffe8d6ed02674"]},"geometry":{"type":"LineString","coordinates":[[-83.5709226,32.8085183],[-83.57081450000001,32.808624800000004]]},"id":"8a44c0baa587fff-13bfdeaf33cbf96d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa580732-139fff83f7eb0ce9","8f44c0baa581cb6-13df9ed0f31dde89"]},"geometry":{"type":"LineString","coordinates":[[-83.57081450000001,32.808624800000004],[-83.5707289,32.808577500000006],[-83.57060050000001,32.8085323],[-83.5705281,32.808516600000004]]},"id":"8a44c0baa587fff-13b7ff287f2d2ab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5692018,32.8086659]},"id":"8f44c0baa593893-13ffb2c0e90d80dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0baa595691-17d7e1c771b1764f","8f44c0baa593893-13ffb2c0e90d80dc"]},"geometry":{"type":"LineString","coordinates":[[-83.5692018,32.8086659],[-83.5692415,32.8085971],[-83.56928590000001,32.8085441],[-83.56934890000001,32.808495],[-83.5694096,32.8084597],[-83.5695287,32.808420500000004],[-83.56960090000001,32.8084012]]},"id":"8a44c0baa597fff-1397f2526c64e204"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0baa595691-17d7e1c771b1764f","8f44c0b852c9048-17f7a2e5f08aa4be"]},"geometry":{"type":"LineString","coordinates":[[-83.56960090000001,32.8084012],[-83.5695451,32.808328200000005],[-83.56946570000001,32.808232100000005],[-83.5693653,32.8081222],[-83.56929290000001,32.8080005],[-83.5692392,32.807843500000004],[-83.5691425,32.8076632]]},"id":"8944c0baa5bffff-17f7b2642583e289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa5935a9-139fa3429e7cc083","8f44c0baa59280d-179fb3541f9c42d2"]},"geometry":{"type":"LineString","coordinates":[[-83.5689663,32.808336100000005],[-83.5689943,32.8087274]]},"id":"8a44c0baa597fff-1397f34b566aa2a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa590551-179fa2ce884cc2ec","8f44c0baa593893-13ffb2c0e90d80dc"]},"geometry":{"type":"LineString","coordinates":[[-83.5692018,32.8086659],[-83.56918950000001,32.8084545],[-83.56918,32.8083194]]},"id":"8a44c0baa597fff-17ffe2c7648aa1f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59115050000001,32.900247900000004]},"id":"8f44c0a10c91d4d-17fffd2af6b39332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5913768,32.9005236]},"id":"8f44c0a10c9cd81-13bf6c9d8fe69c56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c91d4d-17fffd2af6b39332","8f44c0a10c9cd81-13bf6c9d8fe69c56"]},"geometry":{"type":"LineString","coordinates":[[-83.59115050000001,32.900247900000004],[-83.5911655,32.900271700000005],[-83.5912936,32.9004447],[-83.5913768,32.9005236]]},"id":"8944c0a10cbffff-13df6ce7e2795b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c9c8ac-13d7ec25b8b9b27a","8f44c0a10c9cd81-13bf6c9d8fe69c56"]},"geometry":{"type":"LineString","coordinates":[[-83.5913768,32.9005236],[-83.59156850000001,32.90059]]},"id":"8b44c0a10c9cfff-13d76c6192ffafc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c9c4ad-13b7fcd5a32bb312","8f44c0a10c9cd81-13bf6c9d8fe69c56"]},"geometry":{"type":"LineString","coordinates":[[-83.5913768,32.9005236],[-83.59128700000001,32.9007183]]},"id":"8b44c0a10c9cfff-13ff6cb9956e06ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5911605,32.9009924]},"id":"8f44c0a10c9e35b-13d76d24b00cd596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c9e35b-13d76d24b00cd596","8f44c0a10c9c4ad-13b7fcd5a32bb312"]},"geometry":{"type":"LineString","coordinates":[[-83.59128700000001,32.9007183],[-83.5911605,32.9009924]]},"id":"8a44c0a10c9ffff-13ffecfd2e68756d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a1051cdb3-17fffebfbe29983d","8f44c0a10c9e35b-13d76d24b00cd596"]},"geometry":{"type":"LineString","coordinates":[[-83.5911605,32.9009924],[-83.59108400000001,32.9011581],[-83.59085370000001,32.9018044],[-83.5906691,32.9024049],[-83.59057750000001,32.9029072],[-83.5905323,32.9032051],[-83.5905029,32.903525900000005]]},"id":"8744c0a10ffffff-17dfee1ee4d730dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a1051cdb3-17fffebfbe29983d","8f44c0a10518ce0-13d77ee270ef749d"]},"geometry":{"type":"LineString","coordinates":[[-83.5905029,32.903525900000005],[-83.59044730000001,32.904064500000004]]},"id":"8a44c0a1051ffff-13bf6ed1158fe34c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a104e4123-13f7eeeea8f64b9f","8f44c0a10518ce0-13d77ee270ef749d"]},"geometry":{"type":"LineString","coordinates":[[-83.59044730000001,32.904064500000004],[-83.5904191,32.9053744],[-83.5904278,32.907780200000005]]},"id":"8844c0a105fffff-17df7eef3d8acb73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3231499a-13b7320e485af560","8f44c0a32332048-13bfb1ad234bf735"]},"geometry":{"type":"LineString","coordinates":[[-83.61551820000001,32.8683737],[-83.6153628,32.868568]]},"id":"8944c0a3233ffff-13ff71ddbf0b5355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3231499a-13b7320e485af560","8f44c0a3238a82b-13dff6ca9df99f0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6153628,32.868568],[-83.61473500000001,32.869354],[-83.6141135,32.870195800000005],[-83.6134231,32.8710815]]},"id":"8844c0a323fffff-17b7346e22a99b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3238a82b-13dff6ca9df99f0d","8f44c0a3238a0da-13dff734d812f83d"]},"geometry":{"type":"LineString","coordinates":[[-83.6134231,32.8710815],[-83.61329980000001,32.871239700000004],[-83.61325310000001,32.8712942]]},"id":"8b44c0a3238afff-139ff6ff216ed54d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3238a0da-13dff734d812f83d","8f44c0a3238a619-13977760043d08f7"]},"geometry":{"type":"LineString","coordinates":[[-83.61325310000001,32.8712942],[-83.613184,32.8713749]]},"id":"8c44c0a3238a7ff-13ff374a7f27e00a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36ab3548-17b760a4a90d403b","8f44c0a36a8612c-13df7f636e4640a5"]},"geometry":{"type":"LineString","coordinates":[[-83.62300900000001,32.844695],[-83.62259,32.844448],[-83.622495,32.844426]]},"id":"8944c0a36abffff-1397200127ade40f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a36ab3548-17b760a4a90d403b","8f44c0a36ab34b0-17bf71077dd6a74a"]},"geometry":{"type":"LineString","coordinates":[[-83.622495,32.844426],[-83.62233690000001,32.8444087]]},"id":"8c44c0a36ab35ff-17b7e0d6190adfd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3612e899-17ffb878a9ecc452","8f44c0a3612ec01-17df38ba18201188"]},"geometry":{"type":"LineString","coordinates":[[-83.61918390000001,32.8401537],[-83.6192886,32.8402091]]},"id":"8b44c0a3612efff-17df68996f1f80f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617878,32.843107700000004]},"id":"8f44c0a3602379e-17ff7bea43257090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6177705,32.8430978]},"id":"8f44c0a36004a26-17ff2c2d7dbeb468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602379e-17ff7bea43257090","8f44c0a36004a26-17ff2c2d7dbeb468"]},"geometry":{"type":"LineString","coordinates":[[-83.617878,32.843107700000004],[-83.6177705,32.8430978]]},"id":"8a44c0a36007fff-17ff6c0bd3456076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3600419c-17ff6ccfd4a5f2f3","8f44c0a36004a26-17ff2c2d7dbeb468"]},"geometry":{"type":"LineString","coordinates":[[-83.6177705,32.8430978],[-83.61762990000001,32.8430849],[-83.61751070000001,32.843074]]},"id":"8b44c0a36004fff-17f7bc7ea4d9bca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3601935e-1397ed866f3eec98","8f44c0a3601d332-17df2d57978ce44b"]},"geometry":{"type":"LineString","coordinates":[[-83.6172186,32.84499],[-83.6172935,32.8444802]]},"id":"8944c0a3603ffff-13f77d6ef5abbac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360038a5-17d77d16e60e55a8","8f44c0a3601d332-17df2d57978ce44b"]},"geometry":{"type":"LineString","coordinates":[[-83.6172935,32.8444802],[-83.617348,32.844133],[-83.61739700000001,32.8438279]]},"id":"8944c0a3603ffff-179f6d376d077642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6170771,32.8459385]},"id":"8f44c0a360e3cd3-13f7bdded723b305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360e355e-13976de5d5150a1a","8f44c0a360e3cd3-13f7bdded723b305"]},"geometry":{"type":"LineString","coordinates":[[-83.6170659,32.8460118],[-83.6170771,32.8459385]]},"id":"8b44c0a360e3fff-13ffade25cea9918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360e3cd3-13f7bdded723b305","8f44c0a360e041d-13973dbd7bdefb6c"]},"geometry":{"type":"LineString","coordinates":[[-83.6170771,32.8459385],[-83.6171305,32.845598700000004]]},"id":"8a44c0a360e7fff-13ff6dce21ce75d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360e3cd3-13f7bdded723b305","8f44c0a360e385d-13f7bd2e53b08459"]},"geometry":{"type":"LineString","coordinates":[[-83.6173595,32.8459547],[-83.61720070000001,32.8459546],[-83.6170771,32.8459385]]},"id":"8b44c0a360e3fff-13ff7d86c280d6e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a360e3cd3-13f7bdded723b305","8f44c0a360c4954-13ff2e5be3aeacbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6170771,32.8459385],[-83.616877,32.845968]]},"id":"8a44c0a360e7fff-13f7fe1d63d97994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206348,32.8459735]},"id":"8f44c0a3606a501-13ff752f4333f0be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3606a501-13ff752f4333f0be","8f44c0a3606a54b-13bf250b5b9092ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6206923,32.8460466],[-83.6206348,32.8459735]]},"id":"8c44c0a3606a5ff-1397751d5bc14926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200479,32.845888]},"id":"8f44c0a36040336-13df269e11e9f35f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3606a501-13ff752f4333f0be","8f44c0a36040336-13df269e11e9f35f"]},"geometry":{"type":"LineString","coordinates":[[-83.6206348,32.8459735],[-83.62058210000001,32.845949600000004],[-83.62022420000001,32.845908800000004],[-83.6200479,32.845888]]},"id":"8944c0a3607ffff-13df25e551e423e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619364,32.8458088]},"id":"8f44c0a36042cf6-1397a8498ace7279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36042cf6-1397a8498ace7279","8f44c0a36040336-13df269e11e9f35f"]},"geometry":{"type":"LineString","coordinates":[[-83.6200479,32.845888],[-83.6195778,32.8458326],[-83.619364,32.8458088]]},"id":"8a44c0a36047fff-13bff773cd7b69ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6188087,32.845747]},"id":"8f44c0a36050a1a-13ffe9a492785fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36042cf6-1397a8498ace7279","8f44c0a36050a1a-13ffe9a492785fec"]},"geometry":{"type":"LineString","coordinates":[[-83.619364,32.8458088],[-83.6189598,32.8457639],[-83.6188087,32.845747]]},"id":"8944c0a3607ffff-139738f71cd38c31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6183017,32.845694900000005]},"id":"8f44c0a36052876-13df7ae17ffa1396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36052876-13df7ae17ffa1396","8f44c0a36050a1a-13ffe9a492785fec"]},"geometry":{"type":"LineString","coordinates":[[-83.6188087,32.845747],[-83.6184336,32.8457049],[-83.6183017,32.845694900000005]]},"id":"8a44c0a36057fff-13dfaa42e378ba77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61807320000001,32.8457811]},"id":"8f44c0a3605256c-13973b704c6e7cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3605256c-13973b704c6e7cc8","8f44c0a36052876-13df7ae17ffa1396"]},"geometry":{"type":"LineString","coordinates":[[-83.6183017,32.845694900000005],[-83.6181766,32.845724000000004],[-83.61807320000001,32.8457811]]},"id":"8b44c0a36052fff-13f77b2ac8f0864b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3605256c-13973b704c6e7cc8","8f44c0a360e114d-13f7ac2ae3354635"]},"geometry":{"type":"LineString","coordinates":[[-83.61807320000001,32.8457811],[-83.61800260000001,32.845837100000004],[-83.617901,32.8458915],[-83.6177746,32.845932000000005]]},"id":"8944c0a360fffff-13bfabc9c899bfe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360c0adc-17bf2ea1eada9958","8f44c0a360c5493-17bf6e8ca5bf86be"]},"geometry":{"type":"LineString","coordinates":[[-83.616799,32.846463],[-83.616765,32.8466576]]},"id":"8b44c0a360c0fff-17ff3e974e4bf8ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360ce423-17bf7ee05255e97b","8f44c0a360c0adc-17bf2ea1eada9958"]},"geometry":{"type":"LineString","coordinates":[[-83.616765,32.8466576],[-83.616707,32.847004000000005],[-83.6166651,32.8472967]]},"id":"8944c0a360fffff-17f7bec24d283745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.616641,32.8474649]},"id":"8f44c0a360ddb49-17b7beef67b654e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360ce423-17bf7ee05255e97b","8f44c0a360ddb49-17b7beef67b654e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6166651,32.8472967],[-83.616641,32.8474649]]},"id":"8b44c0a360cefff-17ff2ee7ec2a5528"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7332717,32.927640700000005]},"id":"8f44c0a282e4ac8-13df723136554306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73372140000001,32.927378000000004]},"id":"8f44c0a2820bba4-13bf51182bf5a208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2820bba4-13bf51182bf5a208","8f44c0a282e4ac8-13df723136554306"]},"geometry":{"type":"LineString","coordinates":[[-83.7332717,32.927640700000005],[-83.7333244,32.927612100000005],[-83.73372140000001,32.927378000000004]]},"id":"8844c0a283fffff-139ff1a46c6e17dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2820bba4-13bf51182bf5a208","8f44c0a28208603-13be5171a8f98c12"]},"geometry":{"type":"LineString","coordinates":[[-83.73372140000001,32.927378000000004],[-83.73357820000001,32.927152500000005]]},"id":"8a44c0a2820ffff-13f6d144ee1131e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2820bba4-13bf51182bf5a208","8f44c0a282e4ac8-13df723136554306"]},"geometry":{"type":"LineString","coordinates":[[-83.7332717,32.927640700000005],[-83.7334773,32.9278755],[-83.7335417,32.9279116],[-83.7336034,32.9279138],[-83.7339467,32.927711200000005],[-83.73396550000001,32.9276707],[-83.73375890000001,32.9274118],[-83.73372140000001,32.927378000000004]]},"id":"8844c0a283fffff-139f51328b15a0ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28209b06-13fe8fd2db4ec819","8f44c0a2820d758-13fef01da2fc94f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7341222,32.9270414],[-83.73415320000001,32.9271349],[-83.7342203,32.9272531],[-83.7342419,32.927277600000004]]},"id":"8a44c0a2820ffff-13b75ffd35b31e11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28209b06-13fe8fd2db4ec819","8f44c0a282548a8-139e7f454f937690"]},"geometry":{"type":"LineString","coordinates":[[-83.7342419,32.927277600000004],[-83.7343611,32.9274129],[-83.73446840000001,32.927536700000005]]},"id":"8944c0a2827ffff-13df5f8be742372f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2827225e-13f7fed85d4baaf8","8f44c0a282548a8-139e7f454f937690"]},"geometry":{"type":"LineString","coordinates":[[-83.73446840000001,32.927536700000005],[-83.73464270000001,32.9274399]]},"id":"8944c0a2827ffff-13963f0ecd7ab35c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28276348-13b73e6c6f7d3ae1","8f44c0a2827425c-139f5d5ca5434ef0"]},"geometry":{"type":"LineString","coordinates":[[-83.73525020000001,32.9268949],[-83.7350947,32.926939000000004],[-83.7350196,32.926945700000005],[-83.7349471,32.926945700000005],[-83.7348154,32.926955500000005]]},"id":"8a44c0a28277fff-13b71de365aeb0ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826285c-13f61b90232531a1","8f44c0a282604b3-13de3b62983ff74f"]},"geometry":{"type":"LineString","coordinates":[[-83.7360599,32.9272195],[-83.73598700000001,32.927257700000006]]},"id":"8b44c0a28262fff-13f62b7967abeccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826285c-13f61b90232531a1","8f44c0a28271169-13dfccd5eb1e6794"]},"geometry":{"type":"LineString","coordinates":[[-83.73598700000001,32.927257700000006],[-83.7359637,32.9272699],[-83.7358215,32.927315],[-83.73551040000001,32.9274028],[-83.7354658,32.927436400000005]]},"id":"8944c0a2827ffff-13b72c34b5ecbc4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28262a11-13bfeb7a55e46a0e","8f44c0a28271169-13dfccd5eb1e6794"]},"geometry":{"type":"LineString","coordinates":[[-83.7354658,32.927436400000005],[-83.7355024,32.9274523],[-83.735607,32.9274658],[-83.7356955,32.9274523],[-83.7358591,32.9274095],[-83.73602190000001,32.927359800000005]]},"id":"8944c0a2827ffff-13de5c2788525e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28262a11-13bfeb7a55e46a0e","8f44c0a28260072-13f61aa6940a47e6"]},"geometry":{"type":"LineString","coordinates":[[-83.73602190000001,32.927359800000005],[-83.7360656,32.9273465],[-83.7363607,32.9272609]]},"id":"8a44c0a28267fff-1396db1085c84447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c932f4-13b7b7a7aedddbb8","8f44c0a29c9e4da-17bec77951c73f0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7375878,32.927961100000005],[-83.7376619,32.928174]]},"id":"8944c0a29cbffff-13fe47908a67b57e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376978,32.9282977]},"id":"8f44c0a29c9ad35-17fe1762e1e36910"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c9ad35-17fe1762e1e36910","8f44c0a29c9e4da-17bec77951c73f0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7376619,32.928174],[-83.7376924,32.9282616],[-83.7376978,32.9282977]]},"id":"8a44c0a29c9ffff-17d7176cad39a5dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737341,32.9280016]},"id":"8f44c0a2826dd03-13d70841e43f9039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2826dd03-13d70841e43f9039","8f44c0a29c9ad35-17fe1762e1e36910"]},"geometry":{"type":"LineString","coordinates":[[-83.7376978,32.9282977],[-83.737679,32.928316800000005],[-83.73753280000001,32.9283562],[-83.73750600000001,32.9283585],[-83.73748450000001,32.928353900000005],[-83.73746440000001,32.928331400000005],[-83.737341,32.9280016]]},"id":"8744c0a29ffffff-17d757ec6e1f6ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60781800000001,32.807515]},"id":"8f44c0ba80708d8-179fe479cc978437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8cc2958-179f76564d051c81","8f44c0ba80708d8-179fe479cc978437"]},"geometry":{"type":"LineString","coordinates":[[-83.600502,32.801783],[-83.600558,32.80184],[-83.60060800000001,32.801899],[-83.600683,32.801972],[-83.600785,32.802042],[-83.602126,32.802816],[-83.602306,32.802901],[-83.60268400000001,32.803102],[-83.603412,32.803514],[-83.60387,32.803762],[-83.604239,32.803967],[-83.604917,32.804333],[-83.606054,32.804972],[-83.60639300000001,32.805152],[-83.606813,32.80537],[-83.606869,32.8054],[-83.607072,32.805511],[-83.60718800000001,32.805593],[-83.607253,32.805659],[-83.60735700000001,32.805795],[-83.607473,32.805976],[-83.607539,32.806088],[-83.60762100000001,32.806261],[-83.60764900000001,32.80634],[-83.607664,32.806424],[-83.60767100000001,32.806768000000005],[-83.607656,32.807198],[-83.60766000000001,32.807281],[-83.607681,32.807364],[-83.607707,32.807426],[-83.60781800000001,32.807515]]},"id":"8744c0ba8ffffff-17d7fc432a9c1963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8a8a90c-139ffa620d741638","8f44c0ba80708d8-179fe479cc978437"]},"geometry":{"type":"LineString","coordinates":[[-83.60781800000001,32.807515],[-83.608,32.807578],[-83.61023200000001,32.808011],[-83.61060300000001,32.808132],[-83.610833,32.808268000000005],[-83.61096900000001,32.808366],[-83.61102100000001,32.8084],[-83.61152100000001,32.808731],[-83.61177500000001,32.80885],[-83.611952,32.808923]]},"id":"8744c0ba8ffffff-17f73f4b41b3c0eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6303127,32.8433216]},"id":"8f44c0a36b44341-17970d8e9ea899fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630651,32.8429243]},"id":"8f44c0a36b638b2-179fbcbb2b331594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b44341-17970d8e9ea899fd","8f44c0a36b638b2-179fbcbb2b331594"]},"geometry":{"type":"LineString","coordinates":[[-83.6303127,32.8433216],[-83.630651,32.8429243]]},"id":"8944c0a36b7ffff-1797ed24e5588b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6066d-13dfec8329bc269d","8f44c0a36b638b2-179fbcbb2b331594"]},"geometry":{"type":"LineString","coordinates":[[-83.630651,32.8429243],[-83.63074060000001,32.842819]]},"id":"8a44c0a36b67fff-13ffdc9f2a109acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62997490000001,32.8437071]},"id":"8f44c0a36b40772-17f7fe61bb66b3a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630038,32.8436351]},"id":"8f44c0a36b4000a-17d7fe3a4c6e5895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b4000a-17d7fe3a4c6e5895","8f44c0a36b40772-17f7fe61bb66b3a6"]},"geometry":{"type":"LineString","coordinates":[[-83.62997490000001,32.8437071],[-83.630038,32.8436351]]},"id":"8b44c0a36b40fff-17df7e4e0fd3bec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b4000a-17d7fe3a4c6e5895","8f44c0a36b40150-17bf7e215ca27dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.630038,32.8436351],[-83.6300779,32.8435895]]},"id":"8c44c0a36b401ff-17bfbe2dc2412014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63012570000001,32.843535]},"id":"8f44c0a36b408c1-179f6e037a33d8e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b408c1-179f6e037a33d8e5","8f44c0a36b40150-17bf7e215ca27dd8"]},"geometry":{"type":"LineString","coordinates":[[-83.6300779,32.8435895],[-83.63012570000001,32.843535]]},"id":"8b44c0a36b40fff-179f7e12651f4f82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b408c1-179f6e037a33d8e5","8f44c0a36b44341-17970d8e9ea899fd"]},"geometry":{"type":"LineString","coordinates":[[-83.63012570000001,32.843535],[-83.6303127,32.8433216]]},"id":"8a44c0a36b47fff-17d7bdc908d6e4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b73948-13df6f8a80aa2168","8f44c0a36b714e8-13ff8f3f574c77dd"]},"geometry":{"type":"LineString","coordinates":[[-83.62950000000001,32.842823],[-83.6296203,32.842896800000005]]},"id":"8a44c0a36b77fff-13f77f64f06f2591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298259,32.8430229]},"id":"8f44c0a36b712aa-17df5ebed7704969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b714e8-13ff8f3f574c77dd","8f44c0a36b712aa-17df5ebed7704969"]},"geometry":{"type":"LineString","coordinates":[[-83.6296203,32.842896800000005],[-83.6298259,32.8430229]]},"id":"8b44c0a36b71fff-17b7feff1497d0ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b712aa-17df5ebed7704969","8f44c0a36b445a6-17ff0e832ac2716c"]},"geometry":{"type":"LineString","coordinates":[[-83.6298259,32.8430229],[-83.6299214,32.843081600000005]]},"id":"8c44c0a36b713ff-17dfbea0f7c1d38b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6300721,32.843171000000005]},"id":"8f44c0a36b440b0-17b7ee24f8dfe4e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b440b0-17b7ee24f8dfe4e7","8f44c0a36b445a6-17ff0e832ac2716c"]},"geometry":{"type":"LineString","coordinates":[[-83.6299214,32.843081600000005],[-83.6300721,32.843171000000005]]},"id":"8b44c0a36b44fff-179ffe5418974f99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b440b0-17b7ee24f8dfe4e7","8f44c0a36b44341-17970d8e9ea899fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6300721,32.843171000000005],[-83.6303127,32.8433216]]},"id":"8b44c0a36b44fff-17d7fdd9c0bd4169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6308173,32.8436064]},"id":"8f44c0a36b6ad05-17b70c533273b076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b44341-17970d8e9ea899fd","8f44c0a36b6ad05-17b70c533273b076"]},"geometry":{"type":"LineString","coordinates":[[-83.6303127,32.8433216],[-83.6308173,32.8436064]]},"id":"8944c0a36b7ffff-17df0cf0e61e72ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6ad66-17d7cc375decf6d7","8f44c0a36b6ad05-17b70c533273b076"]},"geometry":{"type":"LineString","coordinates":[[-83.6308173,32.8436064],[-83.6308619,32.8436316]]},"id":"8c44c0a36b6adff-17bfec454e1f523c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b6ad66-17d7cc375decf6d7","8f44c0a36b6ab65-17b75b7ff0ae7aa2"]},"geometry":{"type":"LineString","coordinates":[[-83.6308619,32.8436316],[-83.630921,32.843665],[-83.6311553,32.8438101]]},"id":"8a44c0a36b6ffff-17fffbdb4a7d0f55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34018650-13b7f588a90a4b0b","8f44c0a3401bc4a-179ef5b51f876d99"]},"geometry":{"type":"LineString","coordinates":[[-83.64015260000001,32.8395099],[-83.64008150000001,32.839677]]},"id":"8a44c0a3401ffff-13fff59ed46bd5ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340f1595-17d6f6da2f12fcfe","8f44c0a3401bc4a-179ef5b51f876d99"]},"geometry":{"type":"LineString","coordinates":[[-83.64008150000001,32.839677],[-83.6400009,32.839846200000004],[-83.6398745,32.8399],[-83.6396126,32.8405615]]},"id":"8844c0a341fffff-17b7f65696b5e215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340f16a5-17d7f696704ef580","8f44c0a340f1595-17d6f6da2f12fcfe"]},"geometry":{"type":"LineString","coordinates":[[-83.6396126,32.8405615],[-83.6397237,32.840667700000004],[-83.6397209,32.840763800000005]]},"id":"8b44c0a340f1fff-1796f6aa692ca69c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d54f3-13dfec0e541ce8a7","8f44c0b0a0d16e0-13bf5c0db34682fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7095707,32.825622200000005],[-83.70957170000001,32.8262069]]},"id":"8a44c0b0a0d7fff-1396ec0e0b2eae74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0de2a2-17b7ec0b3cc1aeab","8f44c0b0a0d16e0-13bf5c0db34682fd"]},"geometry":{"type":"LineString","coordinates":[[-83.70957170000001,32.8262069],[-83.7095721,32.8264605],[-83.7095757,32.826607800000005]]},"id":"8944c0b0a0fffff-13beec0d244c19d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0dbd88-17d7ebd1ef20ac05","8f44c0b0a0de2a2-17b7ec0b3cc1aeab"]},"geometry":{"type":"LineString","coordinates":[[-83.7095757,32.826607800000005],[-83.7095828,32.8268967],[-83.7096674,32.827039400000004]]},"id":"8a44c0b0a0dffff-17d76bfe8a30d513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70968830000001,32.8225118]},"id":"8f44c0b0a016619-13b7ebc4d13e28bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096063,32.8236962]},"id":"8f44c0b0a0a8af5-179e6bf817ac3439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a016619-13b7ebc4d13e28bd","8f44c0b0a0a8af5-179e6bf817ac3439"]},"geometry":{"type":"LineString","coordinates":[[-83.70968830000001,32.8225118],[-83.7096137,32.8226728],[-83.7096083,32.823620600000005],[-83.7096063,32.8236962]]},"id":"8844c0b0a1fffff-13b7ebf19623d1cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70975320000001,32.8263957]},"id":"8f44c0b0a0deb31-13b75b9c42fb475b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d50d0-13dfeb9d5eb7fd4a","8f44c0b0a0deb31-13b75b9c42fb475b"]},"geometry":{"type":"LineString","coordinates":[[-83.70975320000001,32.8263957],[-83.7097576,32.8259883],[-83.70975150000001,32.8256506]]},"id":"8944c0b0a0fffff-13de7b9b296d455b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d54f3-13dfec0e541ce8a7","8f44c0b0a0d4246-13fe4c1029257f01"]},"geometry":{"type":"LineString","coordinates":[[-83.7095678,32.825459200000005],[-83.7095707,32.825622200000005]]},"id":"8a44c0b0a0d7fff-139efc0f4cb1e0b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c89a131-13f6dc03041a619d","8f44c0b1c89a361-13f6bb9f566af18a"]},"geometry":{"type":"LineString","coordinates":[[-83.67698030000001,32.7859554],[-83.6768208,32.7857484]]},"id":"8b44c0b1c89afff-13b7fbd135ae0178"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc6d85a-17b6bc9a8f6fe2e4","8f44c0b1c89a131-13f6dc03041a619d"]},"geometry":{"type":"LineString","coordinates":[[-83.6768208,32.7857484],[-83.67657840000001,32.7854338]]},"id":"8944c0b1c8bffff-1396fc4ecafa6ae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc6d85a-17b6bc9a8f6fe2e4","8f44c0b1cc6bc8e-13defebf77275c7e"]},"geometry":{"type":"LineString","coordinates":[[-83.67657840000001,32.7854338],[-83.6763739,32.785168500000005],[-83.67573270000001,32.784332500000005],[-83.6751045,32.784661],[-83.6752252,32.785097900000004],[-83.6752537,32.7853386],[-83.67535960000001,32.785482300000005],[-83.6757001,32.7859143]]},"id":"8844c0b1cdfffff-1797decea74eb6a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc6b204-139ffe2c9d394ff7","8f44c0b1cc6bc8e-13defebf77275c7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6757001,32.7859143],[-83.67582900000001,32.7860777],[-83.6759351,32.786191]]},"id":"8b44c0b1cc6bfff-13b6fe77dba4e083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc6b204-139ffe2c9d394ff7","8f44c0b1c13608a-1397fdad49551498"]},"geometry":{"type":"LineString","coordinates":[[-83.6759351,32.786191],[-83.6761388,32.7864086]]},"id":"8944c0b1cc7ffff-13dffdecfdee7c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50749653-13bdf8707533445c","8f44c0b5074b323-13bfe9238b7a6d01"]},"geometry":{"type":"LineString","coordinates":[[-83.7634809,32.878408300000004],[-83.7631944,32.8784046]]},"id":"8a44c0b5074ffff-13bdd8c9f252e275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5074b323-13bfe9238b7a6d01","8f44c0b5074b700-13bdf9a2aab99fad"]},"geometry":{"type":"LineString","coordinates":[[-83.7631944,32.8784046],[-83.762991,32.8784019]]},"id":"8b44c0b5074bfff-13bfd9631568acd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50664b1e-13b7fa247cab71c1","8f44c0b5074b700-13bdf9a2aab99fad"]},"geometry":{"type":"LineString","coordinates":[[-83.762991,32.8784019],[-83.76278330000001,32.8783991]]},"id":"8944c0b5077ffff-13bdd9e380bc4a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50664b1e-13b7fa247cab71c1","8f44c0b50664036-13b5caa538452a23"]},"geometry":{"type":"LineString","coordinates":[[-83.76278330000001,32.8783991],[-83.7626455,32.8783973],[-83.7625773,32.8783964]]},"id":"8b44c0b50664fff-13b7ea64d262e7fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50664036-13b5caa538452a23","8f44c0b50664599-13b7eb32453b6e0c"]},"geometry":{"type":"LineString","coordinates":[[-83.7625773,32.8783964],[-83.76246450000001,32.8783949],[-83.7623516,32.8783934]]},"id":"8b44c0b50664fff-13b5daebbc399cbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506668b5-13b7fbb12daa7cf1","8f44c0b50664599-13b7eb32453b6e0c"]},"geometry":{"type":"LineString","coordinates":[[-83.7623516,32.8783934],[-83.7622851,32.878392500000004],[-83.7621486,32.878390700000004]]},"id":"8a44c0b50667fff-13b7cb71ba129a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b506668b5-13b7fbb12daa7cf1","8f44c0b50666c90-13b5fc3674af717c"]},"geometry":{"type":"LineString","coordinates":[[-83.7621486,32.878390700000004],[-83.7619353,32.8783879]]},"id":"8b44c0b50666fff-13b5dbf3d21903df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50666c90-13b5fc3674af717c","8f44c0b5075b283-139fec9a4e148f0f"]},"geometry":{"type":"LineString","coordinates":[[-83.7619353,32.8783879],[-83.7617756,32.878385800000004]]},"id":"8c44c0b5075b3ff-139fdc685b14d7f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5075b283-139fec9a4e148f0f","8f44c0b5075b66c-139fccb4b3b763a7"]},"geometry":{"type":"LineString","coordinates":[[-83.7617756,32.878385800000004],[-83.7617333,32.878385200000004]]},"id":"8b44c0b5075bfff-139ffca77758d8de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5075b66c-139fccb4b3b763a7","8f44c0b5075b688-139ded0c7d81245d"]},"geometry":{"type":"LineString","coordinates":[[-83.7617333,32.878385200000004],[-83.76159290000001,32.878383400000004]]},"id":"8c44c0b5075b7ff-139ffce09e8ba061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5627505,32.901805]},"id":"8f44c0aa5318449-13dfb280f74acf92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa527380b-17f7addea31be315","8f44c0aa5318449-13dfb280f74acf92"]},"geometry":{"type":"LineString","coordinates":[[-83.5627505,32.901805],[-83.56315120000001,32.902188],[-83.563625,32.902537],[-83.56390180000001,32.9027709],[-83.56403180000001,32.9029126],[-83.56408250000001,32.9031171],[-83.5642373,32.9040525],[-83.56430300000001,32.9043943],[-83.5643704,32.9047465],[-83.5645033,32.905066000000005],[-83.5646486,32.9053216]]},"id":"8844c0aa53fffff-17bfffa5d006ddca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa527380b-17f7addea31be315","8f44c0aa5243452-17dfbd2140c6897b"]},"geometry":{"type":"LineString","coordinates":[[-83.5646486,32.9053216],[-83.56484540000001,32.9063181],[-83.5649516,32.9065385]]},"id":"8944c0aa527ffff-17f7ed8ecfbdff08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0a1251bced-1797a88463e8547f","8f44c0aa5243452-17dfbd2140c6897b"]},"geometry":{"type":"LineString","coordinates":[[-83.5649516,32.9065385],[-83.5658227,32.9075312],[-83.566201,32.907993000000005],[-83.566649,32.908745],[-83.566793,32.909321000000006],[-83.56684100000001,32.909673000000005]]},"id":"8744c0a12ffffff-13f7ba61e943bf00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0a1251bced-1797a88463e8547f","8f44c0aa1b64483-179fab1220b68db7"]},"geometry":{"type":"LineString","coordinates":[[-83.56684100000001,32.909673000000005],[-83.567017,32.911209],[-83.567113,32.912425],[-83.567161,32.912969000000004],[-83.567065,32.913417],[-83.5667253,32.9140898],[-83.5665216,32.9145212],[-83.56579500000001,32.916041]]},"id":"8744c0a12ffffff-17f7b8b4ce2ba289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0aa1b64483-179fab1220b68db7","8f44c0aacd30da2-13bfba3f5ad0ca69"]},"geometry":{"type":"LineString","coordinates":[[-83.56579500000001,32.916041],[-83.565769,32.916105],[-83.56574,32.916171],[-83.565145,32.917545000000004],[-83.56498500000001,32.918185],[-83.56511300000001,32.918793],[-83.565465,32.919721],[-83.565881,32.920457],[-83.566169,32.921033],[-83.5661323,32.9214369]]},"id":"8544c0abfffffff-17bfabd2cb9f05c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5594159,32.938588]},"id":"8f44c0aaeb40a14-179fbaa51da2bd99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"unpaved"},"subType":"road","connectors":["8f44c0aacd30da2-13bfba3f5ad0ca69","8f44c0aaeb40a14-179fbaa51da2bd99"]},"geometry":{"type":"LineString","coordinates":[[-83.5661323,32.9214369],[-83.56610500000001,32.921737],[-83.565641,32.923017],[-83.564937,32.924249],[-83.564313,32.925225000000005],[-83.56386400000001,32.926073],[-83.563816,32.926665],[-83.56354400000001,32.927465000000005],[-83.56296800000001,32.928249],[-83.56263200000001,32.929017],[-83.5625459,32.9294171],[-83.5623374,32.930369400000004],[-83.561912,32.931736],[-83.561784,32.932296],[-83.561656,32.932696],[-83.561599,32.932857000000006],[-83.561493,32.933159],[-83.561451,32.933279],[-83.56133600000001,32.933608],[-83.561321,32.933760500000005],[-83.56104160000001,32.934463],[-83.5608835,32.9346533],[-83.560344,32.935528000000005],[-83.559976,32.936264],[-83.55981200000001,32.936815],[-83.5597723,32.936987],[-83.559752,32.937272],[-83.5596982,32.9377504],[-83.5596311,32.9380095],[-83.5595442,32.9383046],[-83.5594159,32.938588]]},"id":"8744c0aacffffff-1397f2d83374dd92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a16521008-17b7b51932b4104f","8f44c0aa58510c4-13dffc9c722d25a8"]},"geometry":{"type":"LineString","coordinates":[[-83.5651641,32.8919717],[-83.5665427,32.8916023],[-83.56683240000001,32.8915122],[-83.5670523,32.891417600000004],[-83.56728840000001,32.8912915],[-83.56764240000001,32.8910527],[-83.5678463,32.890922100000004],[-83.5680287,32.890814],[-83.5682433,32.890701400000005],[-83.56843640000001,32.8906293],[-83.5686831,32.8905572],[-83.56896210000001,32.890525700000005],[-83.5693966,32.8904717],[-83.56968090000001,32.8904131],[-83.56998130000001,32.8903005],[-83.5702603,32.890138300000004],[-83.5706304,32.889854500000006],[-83.5721432,32.8887014],[-83.5732107,32.887904],[-83.57443380000001,32.886886000000004],[-83.5747949,32.886590600000005]]},"id":"8444c0bffffffff-17bfb0558021b5a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a16521008-17b7b51932b4104f","8f44c0a16cd4d48-17bf92821f3bdfb9"]},"geometry":{"type":"LineString","coordinates":[[-83.5747949,32.886590600000005],[-83.5751546,32.8862942],[-83.5756569,32.8859039],[-83.57585590000001,32.8857784]]},"id":"8744c0a16ffffff-17b7d3d2c96281cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ac0cc1-17b7d051012d13ad","8f44c0b14ac46b0-139fd03d5cf59646"]},"geometry":{"type":"LineString","coordinates":[[-83.6553968,32.7413788],[-83.65542830000001,32.741164000000005]]},"id":"8a44c0b14ac7fff-13def047275853dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ae6594-13feefdc31882310","8f44c0b14ac46b0-139fd03d5cf59646"]},"geometry":{"type":"LineString","coordinates":[[-83.65542830000001,32.741164000000005],[-83.65558370000001,32.7400942]]},"id":"8944c0b14afffff-13dff00cc7093e95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6555247,32.731525000000005]},"id":"8f44c0b1494a6cb-1797f00116140e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ae6594-13feefdc31882310","8f44c0b1494a6cb-1797f00116140e1d"]},"geometry":{"type":"LineString","coordinates":[[-83.65558370000001,32.7400942],[-83.65563420000001,32.7397463],[-83.65571750000001,32.7391726],[-83.6557652,32.7385317],[-83.6558342,32.7375814],[-83.65586040000001,32.7371178],[-83.6558677,32.7366326],[-83.6558699,32.7364869],[-83.6558531,32.7362267],[-83.6558437,32.7360814],[-83.65582900000001,32.7357059],[-83.65581750000001,32.7354124],[-83.6558102,32.735219400000005],[-83.65580560000001,32.735099000000005],[-83.65572710000001,32.734143700000004],[-83.6556723,32.7334787],[-83.65555900000001,32.731985],[-83.6555247,32.731525000000005]]},"id":"8744c0b14ffffff-179eef7dd38bf166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a0d134-1796da67b452c16b","8f44c0a34a0db1c-17bed9f3c7e32e48"]},"geometry":{"type":"LineString","coordinates":[[-83.65145000000001,32.8401124],[-83.65126450000001,32.840048800000005]]},"id":"8b44c0a34a0dfff-179efa2dbf48e165"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a0d134-1796da67b452c16b","8f44c0a34a0c442-179ffbab8c10d5fa"]},"geometry":{"type":"LineString","coordinates":[[-83.65126450000001,32.840048800000005],[-83.6508603,32.8399102],[-83.6507464,32.8398519]]},"id":"8a44c0a34a0ffff-17dfdb0b5514675c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64977,32.8395248]},"id":"8f44c0a34a1c965-13bfde0dcf742cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a1c965-13bfde0dcf742cfe","8f44c0a34a0c442-179ffbab8c10d5fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6507464,32.8398519],[-83.6505478,32.839750200000005],[-83.64977,32.8395248]]},"id":"8944c0a34a3ffff-179fdcd8ccc2423d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08ca38d3-13f7bec72a021341","8f44c0b08ca5872-139f3d230a634ab6"]},"geometry":{"type":"LineString","coordinates":[[-83.7287888,32.809541100000004],[-83.72850050000001,32.8097203],[-83.72831400000001,32.8098748],[-83.72821280000001,32.8099816],[-83.7281166,32.8101146]]},"id":"8a44c0b08ca7fff-13be1e03c598fc63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b08184d90-1797543a6930c4ea","8f44c0b08ca38d3-13f7bec72a021341"]},"geometry":{"type":"LineString","coordinates":[[-83.7281166,32.8101146],[-83.72806030000001,32.810200800000004],[-83.7279974,32.8103143],[-83.7279386,32.810434400000005],[-83.7278849,32.8105795],[-83.72786590000001,32.8107041],[-83.727851,32.81132],[-83.727852,32.811466],[-83.727857,32.811618],[-83.72786,32.812027],[-83.72787000000001,32.812267],[-83.72793100000001,32.812663],[-83.728015,32.812938],[-83.72872500000001,32.814767],[-83.728919,32.815247],[-83.72915,32.815855],[-83.729242,32.8159907],[-83.72934090000001,32.8161153],[-83.7294188,32.8161852],[-83.7296451,32.8163147],[-83.72994580000001,32.8164115],[-83.73031350000001,32.8164073],[-83.73066200000001,32.816321300000006],[-83.7309386,32.816162500000004],[-83.7309907,32.816120500000004],[-83.7316007,32.815494300000005],[-83.7322256,32.8148677],[-83.73238450000001,32.8147083],[-83.7324378,32.8146548]]},"id":"8744c0b08ffffff-17d61bd7afcd1d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3406e2f0-17f6eaf623c5cddc","8f44c0a3406abb1-17f6eb12ab3e0dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6444374,32.840817200000004],[-83.64448300000001,32.840628]]},"id":"8a44c0a3406ffff-17bfeb046f3da64a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf6c6c-139f622ac912ef65","8f44c0a34cf6b5b-13f7a194c67b77f5"]},"geometry":{"type":"LineString","coordinates":[[-83.634978,32.832271],[-83.63521800000001,32.8324106]]},"id":"8b44c0a34cf6fff-13b701dfcba04ce7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf6b5b-13f7a194c67b77f5","8f44c0a34cf5492-13d7d0d2b398a0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.63521800000001,32.8324106],[-83.6355285,32.832598100000006]]},"id":"8a44c0a34cf7fff-139f4133bec1d152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf5753-13bf00474a2ea84b","8f44c0a34cf5492-13d7d0d2b398a0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6355285,32.832598100000006],[-83.6357516,32.8327328]]},"id":"8a44c0a34cf7fff-13fff08cf57cf32c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34ce3110-17d7fe6520916210","8f44c0a34cf5753-13bf00474a2ea84b"]},"geometry":{"type":"LineString","coordinates":[[-83.6357516,32.8327328],[-83.63652300000001,32.83319]]},"id":"8944c0a34cfffff-13beff5639f796b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34c5a564-17fefad185055f0c","8f44c0a34ce3110-17d7fe6520916210"]},"geometry":{"type":"LineString","coordinates":[[-83.63652300000001,32.83319],[-83.637988,32.8340716]]},"id":"8844c0a34dfffff-17dffc9b556fffc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92dead6-179798a84fdef03f","8f44c0a36974d16-17ff39d26ea6c71d"]},"geometry":{"type":"LineString","coordinates":[[-83.62528900000001,32.8342691],[-83.625766,32.8337001]]},"id":"8644c0a37ffffff-17bf793d5e831aba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92c20c1-17b797897770c2fa","8f44c0ba92dead6-179798a84fdef03f"]},"geometry":{"type":"LineString","coordinates":[[-83.625766,32.8337001],[-83.62622490000001,32.833164000000004]]},"id":"8944c0ba92fffff-17df1818ea74512e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92c2850-13d7f73364e2dab1","8f44c0ba92c20c1-17b797897770c2fa"]},"geometry":{"type":"LineString","coordinates":[[-83.62622490000001,32.833164000000004],[-83.62636260000001,32.8330031]]},"id":"8b44c0ba92c2fff-1797575e796dfce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62578810000001,32.833112]},"id":"8f44c0ba92d1124-1797189a7447eaab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1124-1797189a7447eaab","8f44c0ba92d5a1a-13d73800da52710d"]},"geometry":{"type":"LineString","coordinates":[[-83.62603390000001,32.832805],[-83.62578810000001,32.833112]]},"id":"8a44c0ba92d7fff-13b7184da23d512c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1124-1797189a7447eaab","8f44c0ba92dec9b-1797b9680581ff58"]},"geometry":{"type":"LineString","coordinates":[[-83.62578810000001,32.833112],[-83.62545920000001,32.8335227]]},"id":"8944c0ba92fffff-17977901332098c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1124-1797189a7447eaab","8f44c0ba92d1a04-17d778384c887bc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6259452,32.8332038],[-83.62578810000001,32.833112]]},"id":"8b44c0ba92d1fff-17b7b869561a48aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1124-1797189a7447eaab","8f44c0ba92d1cae-13f79901e868c3e4"]},"geometry":{"type":"LineString","coordinates":[[-83.62578810000001,32.833112],[-83.625704,32.833110000000005],[-83.6256226,32.8330584]]},"id":"8b44c0ba92d1fff-179f78d0521f9159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d1cae-13f79901e868c3e4","8f44c0ba92d005e-13b7997cd0f7a430"]},"geometry":{"type":"LineString","coordinates":[[-83.6256226,32.8330584],[-83.62542590000001,32.832933600000004]]},"id":"8a44c0ba92d7fff-13df993f5bdcc5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92d005e-13b7997cd0f7a430","8f44c0ba92d0508-13df59f1d9607a44"]},"geometry":{"type":"LineString","coordinates":[[-83.62542590000001,32.832933600000004],[-83.62523870000001,32.8328148]]},"id":"8b44c0ba92d0fff-139779b752eb2d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d74b1c-139fd3f9748ee51b","8f44c0a236c272a-17f6a291b3c677ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6872421,32.8963434],[-83.68723650000001,32.896382100000004],[-83.6872405,32.8964316],[-83.68720830000001,32.896487900000004],[-83.6869911,32.8967278],[-83.68692270000001,32.89681],[-83.6866773,32.8973099],[-83.6866397,32.897438300000005],[-83.6866665,32.8976309]]},"id":"8744c0a05ffffff-17feb36d98c7e666"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d74b1c-139fd3f9748ee51b","8f44c0a05d741b5-1396c495edf5e160"]},"geometry":{"type":"LineString","coordinates":[[-83.6866665,32.8976309],[-83.68641620000001,32.897594000000005]]},"id":"8b44c0a05d74fff-139fd447b6a147ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490482c-1797f48d9ea5cd73","8f44c0a34904d24-17d6f500f9c7e41a"]},"geometry":{"type":"LineString","coordinates":[[-83.64692330000001,32.827863900000004],[-83.64710790000001,32.8279677]]},"id":"8a44c0a34927fff-17f7e4c7424c1e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6472736,32.828061000000005]},"id":"8f44c0a349234eb-17d6e42605686654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3490482c-1797f48d9ea5cd73","8f44c0a349234eb-17d6e42605686654"]},"geometry":{"type":"LineString","coordinates":[[-83.64710790000001,32.8279677],[-83.6472736,32.828061000000005]]},"id":"8a44c0a34927fff-17b7e459cf5b6089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6477763,32.8274299]},"id":"8f44c0a3492096b-17b7f2ebdf42a477"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3492096b-17b7f2ebdf42a477","8f44c0a349234eb-17d6e42605686654"]},"geometry":{"type":"LineString","coordinates":[[-83.6472736,32.828061000000005],[-83.6477763,32.8274299]]},"id":"8a44c0a34927fff-17fef388fb07b9f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3492096b-17b7f2ebdf42a477","8f44c0b1a28b616-1796e244878892cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6477763,32.8274299],[-83.648044,32.8271688]]},"id":"8a44c0a34927fff-17f6e2982833c18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34924653-17fee3525c014602","8f44c0a3492096b-17b7f2ebdf42a477"]},"geometry":{"type":"LineString","coordinates":[[-83.6477763,32.8274299],[-83.6476123,32.8273376]]},"id":"8a44c0a34927fff-179ee31f1174b540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34924653-17fee3525c014602","8f44c0a34926a24-17bef3c66fbe1a92"]},"geometry":{"type":"LineString","coordinates":[[-83.6476123,32.8273376],[-83.6474266,32.8272331]]},"id":"8a44c0a34927fff-17dfe38c6543d3b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64872290000001,32.8291087]},"id":"8f44c0a34974d90-13d6f09c3a2a8fb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34928744-13fef2058f5fbcb2","8f44c0a34974d90-13d6f09c3a2a8fb6"]},"geometry":{"type":"LineString","coordinates":[[-83.64872290000001,32.8291087],[-83.64814480000001,32.828772300000004]]},"id":"8944c0a3493ffff-13f7f150e368a5f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34928744-13fef2058f5fbcb2","8f44c0a349234eb-17d6e42605686654"]},"geometry":{"type":"LineString","coordinates":[[-83.64814480000001,32.828772300000004],[-83.6472043,32.8282097],[-83.64720270000001,32.8281774],[-83.64721660000001,32.8281386],[-83.6472736,32.828061000000005]]},"id":"8944c0a3493ffff-13b6e350d80c5a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36988882-13d7653883aabff3","8f44c0a36983594-13d767aedfd6d6eb"]},"geometry":{"type":"LineString","coordinates":[[-83.6196115,32.8348262],[-83.619968,32.835034],[-83.62062,32.835434]]},"id":"8944c0a369bffff-1397b672b2d6b2ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36988882-13d7653883aabff3","8f44c0a36832712-13d7238a88b0dc29"]},"geometry":{"type":"LineString","coordinates":[[-83.62062,32.835434],[-83.62088200000001,32.835593],[-83.621308,32.835848]]},"id":"8844c0a369fffff-13d7f461baf479b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62192160000001,32.8362415]},"id":"8f44c0a36833351-13bff20b0c26dbaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36833351-13bff20b0c26dbaf","8f44c0a36832712-13d7238a88b0dc29"]},"geometry":{"type":"LineString","coordinates":[[-83.621308,32.835848],[-83.621415,32.835915],[-83.62160200000001,32.836033],[-83.62192160000001,32.8362415]]},"id":"8a44c0a36837fff-13bf22ca4240695a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36833351-13bff20b0c26dbaf","8f44c0a36806153-17bfe1620a5a2fba"]},"geometry":{"type":"LineString","coordinates":[[-83.62192160000001,32.8362415],[-83.62208480000001,32.8363479],[-83.622192,32.836419]]},"id":"8944c0a3683ffff-13f761b66fb7ff16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba964ccd8-13f76333099d31b0","8f44c0ba9292d5e-17d7e0f2cca14c27"]},"geometry":{"type":"LineString","coordinates":[[-83.621448,32.832026],[-83.62166300000001,32.831535],[-83.62181100000001,32.831263],[-83.621978,32.831014],[-83.62218100000001,32.830753],[-83.62237,32.830542]]},"id":"8844c0ba97fffff-179f2231cfce1bae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6242333,32.8283135]},"id":"8f44c0ba939eb44-13dffc6638edfa89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9292d5e-17d7e0f2cca14c27","8f44c0ba939eb44-13dffc6638edfa89"]},"geometry":{"type":"LineString","coordinates":[[-83.62237,32.830542],[-83.62264470000001,32.830214500000004],[-83.62266890000001,32.8301858],[-83.622833,32.829987],[-83.6242333,32.8283135]]},"id":"8744c0ba9ffffff-139f5eac958c3ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a90d0b-17ffb37f0e5be49e","8f44c0ba939eb44-13dffc6638edfa89"]},"geometry":{"type":"LineString","coordinates":[[-83.6242333,32.8283135],[-83.6243661,32.8281708],[-83.6250464,32.8273606],[-83.62510440000001,32.8272916],[-83.6251625,32.827222],[-83.62522530000001,32.8271457],[-83.625257,32.827095],[-83.625555,32.826662],[-83.626131,32.825727],[-83.62638000000001,32.8254],[-83.626794,32.824894],[-83.6270066,32.824659600000004],[-83.62788,32.823617]]},"id":"8744c0ba9ffffff-139ff7fa327ae517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a90d0b-17ffb37f0e5be49e","8f44c0ba9ab4a98-139f5109ad548bab"]},"geometry":{"type":"LineString","coordinates":[[-83.62788,32.823617],[-83.628887,32.82245]]},"id":"8944c0ba9abffff-13fff244510e8662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9b9bd21-139ff03de4708948","8f44c0ba9ab4a98-139f5109ad548bab"]},"geometry":{"type":"LineString","coordinates":[[-83.628887,32.82245],[-83.62921300000001,32.822059]]},"id":"8844c0ba9bfffff-139710a3c03fa3c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9ba02d2-17f74c3a6cff4d4c","8f44c0ba9b9bd21-139ff03de4708948"]},"geometry":{"type":"LineString","coordinates":[[-83.62921300000001,32.822059],[-83.62993200000001,32.821216],[-83.630857,32.82013]]},"id":"8944c0ba9bbffff-17d72e3c029e6cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9ba02d2-17f74c3a6cff4d4c","8f44c0ba9848a4c-13b729ee4f0da73a"]},"geometry":{"type":"LineString","coordinates":[[-83.630857,32.82013],[-83.631798,32.819021]]},"id":"8844c0ba9bfffff-139fbb145ecb7a8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9848a4c-13b729ee4f0da73a","8f44c0b1a492392-17df0833a2f021bb"]},"geometry":{"type":"LineString","coordinates":[[-83.631798,32.819021],[-83.6321499,32.8185316],[-83.6322689,32.818353900000005],[-83.63239060000001,32.818140500000005],[-83.63244320000001,32.8180171],[-83.6324888,32.817863200000005],[-83.63251190000001,32.8177321],[-83.63251770000001,32.8175408],[-83.63250620000001,32.8172208]]},"id":"8944c0ba987ffff-179fe8be19629a2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a492002-179758352058c47b","8f44c0b1a492392-17df0833a2f021bb"]},"geometry":{"type":"LineString","coordinates":[[-83.63250620000001,32.8172208],[-83.63250380000001,32.8171125]]},"id":"8b44c0b1a492fff-17bf38346d33e4a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a492002-179758352058c47b","8f44c0bad2d915c-13bf2899a65c66dd"]},"geometry":{"type":"LineString","coordinates":[[-83.63250380000001,32.8171125],[-83.63239080000001,32.8142927],[-83.632343,32.813101]]},"id":"8844c0ba99fffff-13b7b8676de9cc7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a369a6286-17b7a5d102b706a6","8f44c0a36991b0a-17dff893ba2328bd"]},"geometry":{"type":"LineString","coordinates":[[-83.6192453,32.8346621],[-83.619355,32.834532],[-83.62037600000001,32.833337]]},"id":"8944c0a369bffff-17d7a7329a0054d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a369a6286-17b7a5d102b706a6","8f44c0ba964ccd8-13f76333099d31b0"]},"geometry":{"type":"LineString","coordinates":[[-83.62037600000001,32.833337],[-83.62088100000001,32.832734],[-83.621448,32.832026]]},"id":"8544c0bbfffffff-139fe47fca713bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34735b03-179ffda408f8a3c0","8f44c0a3471b429-179720452a66cffd"]},"geometry":{"type":"LineString","coordinates":[[-83.635755,32.843525],[-83.636099,32.842692],[-83.63647900000001,32.841804],[-83.636832,32.840899]]},"id":"8844c0a347fffff-13d6fef0d84db4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34735b03-179ffda408f8a3c0","8f44c0a3409d444-17f7fcb0e7c06725"]},"geometry":{"type":"LineString","coordinates":[[-83.636832,32.840899],[-83.63722100000001,32.839992]]},"id":"8744c0a34ffffff-17fefd2a778e4507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3409d444-17f7fcb0e7c06725","8f44c0a34083d4d-13f7fc0e6e299227"]},"geometry":{"type":"LineString","coordinates":[[-83.63722100000001,32.839992],[-83.63748100000001,32.839385]]},"id":"8944c0a340bffff-17b7fc5faf9c1e33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34185c4c-13d7f8932e200409","8f44c0a341a40d1-1397f7baebbb27f4"]},"geometry":{"type":"LineString","coordinates":[[-83.638907,32.835875],[-83.63897100000001,32.835651],[-83.639099,32.835253],[-83.639196,32.834927],[-83.63922500000001,32.834863],[-83.63925300000001,32.834744]]},"id":"8944c0a341bffff-13f6f82713f4ff48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a341a40d1-1397f7baebbb27f4","8f44c0a34c5d049-17bff8103c4b15f7"]},"geometry":{"type":"LineString","coordinates":[[-83.63925300000001,32.834744],[-83.639244,32.834629],[-83.63922600000001,32.834497],[-83.6391165,32.8339903]]},"id":"8744c0a34ffffff-17b6f7dfd6029b44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba921a1b4-17d7375c6d66f5b6","8f44c0ba921bc12-17f7b6a36d8f0792"]},"geometry":{"type":"LineString","coordinates":[[-83.62629700000001,32.8309603],[-83.62633100000001,32.83101],[-83.626593,32.831209]]},"id":"8a44c0ba921ffff-17b7770397d3afeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba921bc12-17f7b6a36d8f0792","8f44c0ba92e448e-13f7d4e4e9b6810e"]},"geometry":{"type":"LineString","coordinates":[[-83.626593,32.831209],[-83.62669100000001,32.831229],[-83.6273074,32.8316028]]},"id":"8844c0ba93fffff-17f7f5c0b1b461f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92e448e-13f7d4e4e9b6810e","8f44c0ba92e47ae-1397f49e358bac7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6273074,32.8316028],[-83.6274205,32.8316735]]},"id":"8b44c0ba92e4fff-13fff4c19fe2f36e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92e47ae-1397f49e358bac7b","8f44c0ba92e428d-13d73434e68ddaf6"]},"geometry":{"type":"LineString","coordinates":[[-83.6274205,32.8316735],[-83.627589,32.8317762]]},"id":"8b44c0ba92e4fff-13b7146996feb53e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6277419,32.8318685]},"id":"8f44c0ba92e5424-139fd3d5597925e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92e428d-13d73434e68ddaf6","8f44c0ba92e5424-139fd3d5597925e0"]},"geometry":{"type":"LineString","coordinates":[[-83.627589,32.8317762],[-83.6277419,32.8318685]]},"id":"8a44c0ba92e7fff-13f7f405280e47f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba92e5424-139fd3d5597925e0","8f44c0ba9252c80-139f12e6f0eeeb59"]},"geometry":{"type":"LineString","coordinates":[[-83.6277419,32.8318685],[-83.62804630000001,32.8320524],[-83.6281233,32.8320992]]},"id":"8944c0ba92fffff-13d7f35e22ecc327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92c1a19-17b7950ae83eabd4","8f44c0ba92ee159-13df33d99bde3259"]},"geometry":{"type":"LineString","coordinates":[[-83.6272466,32.8333577],[-83.62773510000001,32.832785900000005]]},"id":"8944c0ba92fffff-13fff4723eae25bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9209ad8-1397f18e783bf2f5","8f44c0ba9276b1a-17ff3009696d64a1"]},"geometry":{"type":"LineString","coordinates":[[-83.62929700000001,32.830813],[-83.6291695,32.8309001],[-83.6286745,32.8314734]]},"id":"8944c0ba927ffff-17d7d0d2d0648f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36975862-17ffd84fb0466859","8f44c0a3697276b-139f3b122652b9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6259077,32.834708400000004],[-83.6258006,32.834799100000005],[-83.6256546,32.8348979],[-83.6254653,32.8349981],[-83.6252881,32.8350655],[-83.6250851,32.8351198],[-83.6247774,32.835165]]},"id":"8a44c0a36977fff-13b7b9a0ca847516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636c093-1797374ab24204f5","8f44c0a30d9a433-1797b5cbe83559e7"]},"geometry":{"type":"LineString","coordinates":[[-83.62693780000001,32.8507002],[-83.6263497,32.8501247],[-83.6263253,32.8501011]]},"id":"8a44c0a3636ffff-17df768b4faf8e1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62602890000001,32.8502838]},"id":"8f44c0a3636e302-17977803f45826c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636c093-1797374ab24204f5","8f44c0a3636e302-17977803f45826c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6263253,32.8501011],[-83.62602890000001,32.8502838]]},"id":"8a44c0a3636ffff-17df57a752c9849d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636e302-17977803f45826c4","8f44c0a3636e641-17bff8599d9cbd15"]},"geometry":{"type":"LineString","coordinates":[[-83.62602890000001,32.8502838],[-83.6258919,32.8503759]]},"id":"8b44c0a3636efff-17b7382ecbb2417d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636ac0a-1797d8bd23ca19ac","8f44c0a3636e641-17bff8599d9cbd15"]},"geometry":{"type":"LineString","coordinates":[[-83.6258919,32.8503759],[-83.6257326,32.8504876]]},"id":"8a44c0a3636ffff-17dfd88b62ff350d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6255921,32.8505911]},"id":"8f44c0a3636a416-17d77914f9b73574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636ac0a-1797d8bd23ca19ac","8f44c0a3636a416-17d77914f9b73574"]},"geometry":{"type":"LineString","coordinates":[[-83.6257326,32.8504876],[-83.6255921,32.8505911]]},"id":"8b44c0a3636afff-17b738e914f9cd64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6254329,32.8507089]},"id":"8f44c0a36341168-179f19787c4d832b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36341168-179f19787c4d832b","8f44c0a3636a416-17d77914f9b73574"]},"geometry":{"type":"LineString","coordinates":[[-83.6255921,32.8505911],[-83.6254329,32.8507089]]},"id":"8a44c0a36347fff-17ff5946bec790a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62724,32.8514439]},"id":"8f44c0a30cb5573-13df750f08345857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a30cb5008-1397d4b46f6e9099","8f44c0a30cb5573-13df750f08345857"]},"geometry":{"type":"LineString","coordinates":[[-83.627385,32.8515101],[-83.6272577,32.851456400000004],[-83.62724,32.8514439]]},"id":"8b44c0a30cb5fff-13ff54e25697844c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9b68c-13df54d09d37a8eb","8f44c0a30cb5573-13df750f08345857"]},"geometry":{"type":"LineString","coordinates":[[-83.62724,32.8514439],[-83.6272725,32.8514116],[-83.6273096,32.851353100000004],[-83.6273377,32.8512871],[-83.62733990000001,32.8512229]]},"id":"8a44c0a30cb7fff-1397b4e5a2dc6fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62702800000001,32.850643600000005]},"id":"8f44c0a30d9acc2-17f755938da681ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9acc2-17f755938da681ac","8f44c0a30d9b68c-13df54d09d37a8eb"]},"geometry":{"type":"LineString","coordinates":[[-83.62733990000001,32.8512229],[-83.6273422,32.8511564],[-83.62730810000001,32.8509897],[-83.62728290000001,32.850927500000004],[-83.6272385,32.850859],[-83.62702800000001,32.850643600000005]]},"id":"8844c0a30dfffff-179f35140be8391b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30cb0052-13d715db14d5bda8","8f44c0a30cb5573-13df750f08345857"]},"geometry":{"type":"LineString","coordinates":[[-83.62724,32.8514439],[-83.6269135,32.8516433]]},"id":"8a44c0a30cb7fff-1397d57510b377e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30cb0052-13d715db14d5bda8","8f44c0a30cb0612-1397163d2a595744"]},"geometry":{"type":"LineString","coordinates":[[-83.6269135,32.8516433],[-83.62675660000001,32.851739200000004]]},"id":"8b44c0a30cb0fff-13f7160c1a001d29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.626147,32.8513564]},"id":"8f44c0a3634d16e-13b7d7ba2585dcfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3634d16e-13b7d7ba2585dcfe","8f44c0a30cb0612-1397163d2a595744"]},"geometry":{"type":"LineString","coordinates":[[-83.62675660000001,32.851739200000004],[-83.62661800000001,32.851823800000005],[-83.626147,32.8513564]]},"id":"8644c0a37ffffff-13df57018dba28f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636e014-17bf9847fcee9a2a","8f44c0a3636e302-17977803f45826c4"]},"geometry":{"type":"LineString","coordinates":[[-83.62602890000001,32.8502838],[-83.6259201,32.8501721]]},"id":"8b44c0a3636efff-17f79825fe7d2da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6257897,32.8500384]},"id":"8f44c0a3636ec84-17ff18997cf703f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636e014-17bf9847fcee9a2a","8f44c0a3636ec84-17ff18997cf703f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6259201,32.8501721],[-83.6257897,32.8500384]]},"id":"8b44c0a3636efff-1797d870b2669e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3636ec84-17ff18997cf703f8","8f44c0a36362443-17df3a5484017aca"]},"geometry":{"type":"LineString","coordinates":[[-83.6257897,32.8500384],[-83.6252932,32.849529000000004],[-83.6252661,32.8495149],[-83.62522100000001,32.8495128],[-83.6251616,32.849542],[-83.6250808,32.849574600000004]]},"id":"8a44c0a36367fff-17b7196a9e460afb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36371a10-17ff5ac0b1d08a05","8f44c0a36362443-17df3a5484017aca"]},"geometry":{"type":"LineString","coordinates":[[-83.6250808,32.849574600000004],[-83.62490770000001,32.8496517]]},"id":"8944c0a3637ffff-17f75a8a9eb7981e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaac166-13be4441aff26176","8f44c0a2aaae1ac-13ffc5ad0fadee8b"]},"geometry":{"type":"LineString","coordinates":[[-83.71276540000001,32.9246944],[-83.7126973,32.9246592],[-83.7122087,32.924796400000005],[-83.71218400000001,32.9247932]]},"id":"8a44c0a2aaaffff-13d6d4f598078df2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71203630000001,32.9244803]},"id":"8f44c0a2aaa3b1c-13be76095442c274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa3b1c-13be76095442c274","8f44c0a2aaae1ac-13ffc5ad0fadee8b"]},"geometry":{"type":"LineString","coordinates":[[-83.71218400000001,32.9247932],[-83.7121726,32.924775600000004],[-83.71203630000001,32.9244803]]},"id":"8944c0a2aabffff-139e65dbff649817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa390a-13dff63323ce7a21","8f44c0a2aaa3b1c-13be76095442c274"]},"geometry":{"type":"LineString","coordinates":[[-83.71203630000001,32.9244803],[-83.7119694,32.924335500000005]]},"id":"8b44c0a2aaa3fff-13fef61e4b692dc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa19b1-13ffd53a1d5c5002","8f44c0a2aaa390a-13dff63323ce7a21"]},"geometry":{"type":"LineString","coordinates":[[-83.7119694,32.924335500000005],[-83.7119141,32.924215600000004],[-83.7119103,32.9241964],[-83.7119236,32.9241741],[-83.7122734,32.9240656],[-83.7123019,32.9240816],[-83.71232090000001,32.9241039],[-83.7123679,32.9242109]]},"id":"8a44c0a2aaa7fff-13df75d80837d775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa19b1-13ffd53a1d5c5002","8f44c0a2aaa3b1c-13be76095442c274"]},"geometry":{"type":"LineString","coordinates":[[-83.7123679,32.9242109],[-83.7124254,32.924341600000005],[-83.71241210000001,32.924364000000004],[-83.71238170000001,32.9243736],[-83.71203630000001,32.9244803]]},"id":"8a44c0a2aaa7fff-13fef572e99efa1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71276200000001,32.9250562]},"id":"8f44c0a2aaad490-17966443ce4a858d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaad490-17966443ce4a858d","8f44c0a2aaad572-17f653ebb8fed72b"]},"geometry":{"type":"LineString","coordinates":[[-83.7129029,32.9250117],[-83.71276200000001,32.9250562]]},"id":"8c44c0a2aaad5ff-17964417b8742540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaad490-17966443ce4a858d","8f44c0a2aaa8419-17de553af94b1dbf"]},"geometry":{"type":"LineString","coordinates":[[-83.71276200000001,32.9250562],[-83.7123665,32.9251809]]},"id":"8b44c0a2aaa8fff-17b764bf50b86f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa86f3-17dfe5136dc884fa","8f44c0a2aaa8419-17de553af94b1dbf"]},"geometry":{"type":"LineString","coordinates":[[-83.7123665,32.9251809],[-83.71236830000001,32.925215200000004],[-83.71242980000001,32.925359400000005]]},"id":"8b44c0a2aaa8fff-1796d52a23d61343"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa86f3-17dfe5136dc884fa","8f44c0a2aaa8a69-179764156b60e9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.71242980000001,32.925359400000005],[-83.7124958,32.925514400000004],[-83.71252240000001,32.9255256],[-83.7125604,32.9255176],[-83.71287790000001,32.925417100000004],[-83.7128988,32.9253979],[-83.7128912,32.9253708],[-83.7128362,32.925237]]},"id":"8a44c0a2aaaffff-17ff74733c863c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaa8a69-179764156b60e9d3","8f44c0a2aaad490-17966443ce4a858d"]},"geometry":{"type":"LineString","coordinates":[[-83.7128362,32.925237],[-83.71276200000001,32.9250562]]},"id":"8b44c0a2aaa8fff-17dee42c9607922b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57530050000001,32.8427339]},"id":"8f44c0b88936716-1397b3dd34148abb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c669313-139ff319b395a9d1","8f44c0b88936716-1397b3dd34148abb"]},"geometry":{"type":"LineString","coordinates":[[-83.5756133,32.842331],[-83.5755031,32.842473000000005],[-83.57530050000001,32.8427339]]},"id":"8944c0b8c67ffff-1397d37b76e6a0bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5750718,32.8431495]},"id":"8f44c0b889324d1-179ff46c2e082b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88936716-1397b3dd34148abb","8f44c0b889324d1-179ff46c2e082b4c"]},"geometry":{"type":"LineString","coordinates":[[-83.57530050000001,32.8427339],[-83.5756923,32.8428756],[-83.5760783,32.8430486],[-83.5761183,32.8431231],[-83.5759582,32.8434618],[-83.5758524,32.8435051],[-83.5750946,32.843224],[-83.5750718,32.8431495]]},"id":"8844c0b889fffff-17b7f2f220efcde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88936716-1397b3dd34148abb","8f44c0b889324d1-179ff46c2e082b4c"]},"geometry":{"type":"LineString","coordinates":[[-83.5750718,32.8431495],[-83.57530050000001,32.8427339]]},"id":"8844c0b889fffff-17979424a6fe0810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c669080-13f7f3756d583ff7","8f44c0b8c66b04b-13dfd45059723b09"]},"geometry":{"type":"LineString","coordinates":[[-83.5754666,32.842247],[-83.57528040000001,32.8424172],[-83.57521630000001,32.8424331],[-83.5751163,32.8424172]]},"id":"8a44c0b8c66ffff-13b7d3db2c954397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c64c110-13b7d5a564605901","8f44c0b8c66b04b-13dfd45059723b09"]},"geometry":{"type":"LineString","coordinates":[[-83.5751163,32.8424172],[-83.5747352,32.8425472],[-83.5746635,32.842552000000005],[-83.5746239,32.842515500000005],[-83.5745706,32.8423772]]},"id":"8944c0b8c67ffff-13ff95117d710025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5744296,32.842011500000005]},"id":"8f44c0b8c66a495-13d7b5fd89e9caa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c66a495-13d7b5fd89e9caa6","8f44c0b8c64c110-13b7d5a564605901"]},"geometry":{"type":"LineString","coordinates":[[-83.5745706,32.8423772],[-83.5744296,32.842011500000005]]},"id":"8944c0b8c67ffff-13d795d1757db338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57436150000001,32.8418167]},"id":"8f44c0b8c645398-13d7f6281b7abc99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c66a495-13d7b5fd89e9caa6","8f44c0b8c645398-13d7f6281b7abc99"]},"geometry":{"type":"LineString","coordinates":[[-83.5744296,32.842011500000005],[-83.57436150000001,32.8418167]]},"id":"8a44c0b8c647fff-1397d612dd38a33d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c645dae-1397b678c0474784","8f44c0b8c645398-13d7f6281b7abc99"]},"geometry":{"type":"LineString","coordinates":[[-83.57436150000001,32.8418167],[-83.5742324,32.8414827]]},"id":"8b44c0b8c645fff-13ff96507a30da74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57502330000001,32.8418312]},"id":"8f44c0b8c668505-13f7948a77977b8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c668505-13f7948a77977b8e","8f44c0b8c66a80d-1397f50408e9641b"]},"geometry":{"type":"LineString","coordinates":[[-83.57502330000001,32.8418312],[-83.5748288,32.841891000000004]]},"id":"8a44c0b8c66ffff-13f7b4c734bc1c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b8c66a495-13d7b5fd89e9caa6","8f44c0b8c66a80d-1397f50408e9641b"]},"geometry":{"type":"LineString","coordinates":[[-83.5748288,32.841891000000004],[-83.5744296,32.842011500000005]]},"id":"8944c0b8c67ffff-13bf9580c65efd58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c645398-13d7f6281b7abc99","8f44c0b8c645688-13f7d694fb601ce3"]},"geometry":{"type":"LineString","coordinates":[[-83.57436150000001,32.8418167],[-83.5742714,32.841839900000004],[-83.5741873,32.841861300000005]]},"id":"8b44c0b8c645fff-13f7f65e8af1eac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c643d26-13bfd7d0785480ed","8f44c0b8c645688-13f7d694fb601ce3"]},"geometry":{"type":"LineString","coordinates":[[-83.5741873,32.841861300000005],[-83.5742862,32.8421759],[-83.57425570000001,32.8422271],[-83.5738237,32.8423195],[-83.57378410000001,32.8423005],[-83.5736825,32.8419788]]},"id":"8a44c0b8c647fff-13b7f70338463d70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6462e6-13f7981021008664","8f44c0b8c643d26-13bfd7d0785480ed"]},"geometry":{"type":"LineString","coordinates":[[-83.5736825,32.8419788],[-83.5735806,32.841656]]},"id":"8a44c0b8c647fff-13d7f7f05b649018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c668505-13f7948a77977b8e","8f44c0b8c669080-13f7f3756d583ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.5754666,32.842247],[-83.57535,32.842157],[-83.57516000000001,32.841997],[-83.57507100000001,32.841894],[-83.57502330000001,32.8418312]]},"id":"8a44c0b8c66ffff-13fff406cb5d740a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c668505-13f7948a77977b8e","8f44c0b8c661683-139fd529149d8a9d"]},"geometry":{"type":"LineString","coordinates":[[-83.57502330000001,32.8418312],[-83.574982,32.841777],[-83.5749,32.841628],[-83.57482800000001,32.841451],[-83.5747695,32.8413125]]},"id":"8944c0b8c67ffff-13d7f4e041a801b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72753440000001,32.9249476]},"id":"8f44c0a2874e9ad-17de603305ff0db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2874e9ad-17de603305ff0db6","8f44c0a28741a84-13bf9fd07c587bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.7276921,32.9247224],[-83.7276126,32.9248768],[-83.72753440000001,32.9249476]]},"id":"8944c0a2877ffff-179e7ffbec8d627e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727281,32.924727600000004]},"id":"8f44c0a28743b34-13d6e0d16d767c56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2874e9ad-17de603305ff0db6","8f44c0a28743b34-13d6e0d16d767c56"]},"geometry":{"type":"LineString","coordinates":[[-83.72753440000001,32.9249476],[-83.72707910000001,32.9253601],[-83.7269856,32.9253778],[-83.7267174,32.9251804],[-83.7267415,32.925107100000005],[-83.7271966,32.924714900000005],[-83.727281,32.924727600000004]]},"id":"8944c0a2877ffff-17b72156727f7074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2874e9ad-17de603305ff0db6","8f44c0a28743b34-13d6e0d16d767c56"]},"geometry":{"type":"LineString","coordinates":[[-83.727281,32.924727600000004],[-83.72753440000001,32.9249476]]},"id":"8944c0a2877ffff-1797a0823c5636be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28740a8a-139ee0b0afad3c37","8f44c0a28742ae3-13d671b5ff4248d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7273334,32.924433400000005],[-83.72695130000001,32.9244313],[-83.7269175,32.924441300000005],[-83.7269153,32.924544700000006]]},"id":"8a44c0a28747fff-1397f14ceb296d77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269115,32.924715]},"id":"8f44c0a28743531-13bee1b85c6d8979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28743531-13bee1b85c6d8979","8f44c0a28742ae3-13d671b5ff4248d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7269153,32.924544700000006],[-83.7269115,32.924715]]},"id":"8a44c0a28747fff-1397b1b7230494b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936951,32.899143800000004]},"id":"8f44c0a05824991-17def2d09d600999"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05824991-17def2d09d600999","8f44c0a05918a1b-17bff437f436fc13"]},"geometry":{"type":"LineString","coordinates":[[-83.6931201,32.8987135],[-83.6936177,32.898731600000005],[-83.6937051,32.898761900000004],[-83.6936951,32.899143800000004]]},"id":"8944c0a0593ffff-17fff339c1dc26d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69368100000001,32.899683100000004]},"id":"8f44c0a05820858-179ff2d96d5bd264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05820858-179ff2d96d5bd264","8f44c0a05824991-17def2d09d600999"]},"geometry":{"type":"LineString","coordinates":[[-83.6936951,32.899143800000004],[-83.69368100000001,32.899683100000004]]},"id":"8a44c0a05827fff-17f772d503c03ca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6947287,32.8995565]},"id":"8f44c0a05956a2d-17def04a98634fe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05824991-17def2d09d600999","8f44c0a05956a2d-17def04a98634fe7"]},"geometry":{"type":"LineString","coordinates":[[-83.6936951,32.899143800000004],[-83.6942356,32.899154200000005],[-83.6947287,32.8995565]]},"id":"8844c0a059fffff-1797f17906d712da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a059452c8-17be6b61a77e400f","8f44c0a05956a2d-17def04a98634fe7"]},"geometry":{"type":"LineString","coordinates":[[-83.6947287,32.8995565],[-83.6950856,32.8998476],[-83.6957246,32.9000602],[-83.6965716,32.900118400000004],[-83.6967398,32.900118400000004]]},"id":"8944c0a0597ffff-17defdf21497e1aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0596ac5d-17be6aca21e61681","8f44c0a059452c8-17be6b61a77e400f"]},"geometry":{"type":"LineString","coordinates":[[-83.6967398,32.900118400000004],[-83.69698220000001,32.900118400000004]]},"id":"8944c0a0597ffff-17be6b15e667b149"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6978134,32.8986177]},"id":"8f44c0a2e596d09-179678c2a7e371b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0596ac5d-17be6aca21e61681","8f44c0a2e596d09-179678c2a7e371b9"]},"geometry":{"type":"LineString","coordinates":[[-83.69698220000001,32.900118400000004],[-83.69768380000001,32.900118400000004],[-83.6977863,32.900088100000005],[-83.69781040000001,32.8999818],[-83.6978134,32.8986177]]},"id":"8544c0a3fffffff-17ff792240a55170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232c97aa-13b778aaafd47e0e","8f44c0a2e596d09-179678c2a7e371b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6978134,32.8986177],[-83.69785180000001,32.8984691]]},"id":"8a44c0a232cffff-13d7e8b6a89cc997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05964c60-139e7abc51f6fa40","8f44c0a2e596d09-179678c2a7e371b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6978134,32.8986177],[-83.6970043,32.8984545]]},"id":"8544c0a3fffffff-13d779bf8284b0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232d922d-13977b40c5447bef","8f44c0a05964c60-139e7abc51f6fa40"]},"geometry":{"type":"LineString","coordinates":[[-83.6970043,32.8984545],[-83.6967924,32.898411700000004]]},"id":"8a44c0a05967fff-1396fafe991eb2df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6957441,32.898200200000005]},"id":"8f44c0a232da609-13ff6dcff05929c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232d922d-13977b40c5447bef","8f44c0a232da609-13ff6dcff05929c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6967924,32.898411700000004],[-83.6957441,32.898200200000005]]},"id":"8944c0a232fffff-13d76c886731d6aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a232da609-13ff6dcff05929c3","8f44c0a232da084-139f7dc4c067ae7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6957441,32.898200200000005],[-83.695733,32.8981348],[-83.695762,32.898043900000005]]},"id":"8b44c0a232dafff-13dfedd02b933e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05974725-13df6e0d19423293","8f44c0a232da609-13ff6dcff05929c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6957441,32.898200200000005],[-83.6956463,32.8985268]]},"id":"8844c0a059fffff-13f77dee8e3c87c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05974725-13df6e0d19423293","8f44c0a05973d25-17be7e9c596ecb3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6956463,32.8985268],[-83.6955408,32.898879],[-83.6954171,32.899091500000004]]},"id":"8a44c0a05977fff-17967e4ac901ef68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a05973d25-17be7e9c596ecb3b","8f44c0a05956a2d-17def04a98634fe7"]},"geometry":{"type":"LineString","coordinates":[[-83.6954171,32.899091500000004],[-83.6947287,32.8995565]]},"id":"8944c0a0597ffff-17bfef737a0c76f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059adacd-13de763b2cc3044f","8f44c0a05913313-13df7637b9ac065b"]},"geometry":{"type":"LineString","coordinates":[[-83.69230130000001,32.898116800000004],[-83.69211920000001,32.8981134],[-83.6921044,32.898541900000005],[-83.69229580000001,32.8985475]]},"id":"8844c0a059fffff-13d776930812112e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059adacd-13de763b2cc3044f","8f44c0a0591e6d1-13def5dbbe33f5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.69229580000001,32.8985475],[-83.69244850000001,32.8985519]]},"id":"8a44c0a0591ffff-13dff60b6b36baeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e64a-13dff5a5649d4355","8f44c0a0591e6d1-13def5dbbe33f5c2"]},"geometry":{"type":"LineString","coordinates":[[-83.69244850000001,32.8985519],[-83.69253540000001,32.898553400000004]]},"id":"8c44c0a0591e7ff-13df75c0915abbc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e64a-13dff5a5649d4355","8f44c0a0591e25e-13dff53c35768bf0"]},"geometry":{"type":"LineString","coordinates":[[-83.69253540000001,32.898553400000004],[-83.69270370000001,32.8985593]]},"id":"8b44c0a0591efff-13dff570cc41ffac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69292630000001,32.8985992]},"id":"8f44c0a05918116-13fef4b11d022bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e25e-13dff53c35768bf0","8f44c0a05918116-13fef4b11d022bb8"]},"geometry":{"type":"LineString","coordinates":[[-83.69270370000001,32.8985593],[-83.69292630000001,32.8985992]]},"id":"8a44c0a0591ffff-13fe74f6a9f8a49f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05835960-17d674c475e1399e","8f44c0a05918116-13fef4b11d022bb8"]},"geometry":{"type":"LineString","coordinates":[[-83.69292630000001,32.8985992],[-83.6928953,32.8993601]]},"id":"8844c0a059fffff-17f674bac36eed62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05835ac8-179674cb7ac69310","8f44c0a05835960-17d674c475e1399e"]},"geometry":{"type":"LineString","coordinates":[[-83.6928953,32.8993601],[-83.6928841,32.8996358]]},"id":"8b44c0a05835fff-17be74c7fa8a63bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05835ac8-179674cb7ac69310","8f44c0a05822682-17fef4cfa5508bfa"]},"geometry":{"type":"LineString","coordinates":[[-83.6928841,32.8996358],[-83.6928774,32.9000172]]},"id":"8944c0a0583ffff-17f7f4cd98a45ccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05804c5a-17f674cd0a16da43","8f44c0a05822682-17fef4cfa5508bfa"]},"geometry":{"type":"LineString","coordinates":[[-83.6928774,32.9000172],[-83.6928816,32.900208400000004]]},"id":"8944c0a0583ffff-17bef4ce580f21a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69238630000001,32.9003509]},"id":"8f44c0a05806190-13bf7602940fef32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05804c5a-17f674cd0a16da43","8f44c0a05806190-13bf7602940fef32"]},"geometry":{"type":"LineString","coordinates":[[-83.6928816,32.900208400000004],[-83.6923917,32.9001952],[-83.69238630000001,32.9003509]]},"id":"8944c0a0583ffff-17fef58b77f1b029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69238390000001,32.9005887]},"id":"8f44c0a05806653-13d7f60419936c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05806653-13d7f60419936c28","8f44c0a05806190-13bf7602940fef32"]},"geometry":{"type":"LineString","coordinates":[[-83.69238630000001,32.9003509],[-83.69238390000001,32.9005887]]},"id":"8b44c0a05806fff-139ff6035cf276e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e80d-139ef538d0089209","8f44c0a05918116-13fef4b11d022bb8"]},"geometry":{"type":"LineString","coordinates":[[-83.69292630000001,32.8985992],[-83.692937,32.898275500000004],[-83.6927091,32.8982222]]},"id":"8a44c0a0591ffff-13f7f4ca3191fedb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591e80d-139ef538d0089209","8f44c0a0591ed5c-13f6f5997adf0aed"]},"geometry":{"type":"LineString","coordinates":[[-83.6927091,32.8982222],[-83.6925545,32.8981834]]},"id":"8b44c0a0591efff-1396f5692bb8c96a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591ed5c-13f6f5997adf0aed","8f44c0a0591ed8e-13f6f5d525bab02b"]},"geometry":{"type":"LineString","coordinates":[[-83.6925545,32.8981834],[-83.692459,32.8981549]]},"id":"8c44c0a0591edff-13fff5b74dba20c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05913313-13df7637b9ac065b","8f44c0a0591ed8e-13f6f5d525bab02b"]},"geometry":{"type":"LineString","coordinates":[[-83.692459,32.8981549],[-83.69230130000001,32.898116800000004]]},"id":"8a44c0a05917fff-13d6f6067b7e5894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059026ac-13f6f4691e5c288b","8f44c0a059156cd-13d6752a8f80d037"]},"geometry":{"type":"LineString","coordinates":[[-83.692732,32.897696],[-83.69298450000001,32.8978029],[-83.6929923,32.897927800000005],[-83.6930415,32.8979528]]},"id":"8944c0a0593ffff-1397f4b93bdbfa4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6930178,32.898116800000004]},"id":"8f44c0a0591cc73-13df7477ebc58520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059026ac-13f6f4691e5c288b","8f44c0a0591cc73-13df7477ebc58520"]},"geometry":{"type":"LineString","coordinates":[[-83.6930415,32.8979528],[-83.6930178,32.898116800000004]]},"id":"8944c0a0593ffff-1397f47085514d79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69196450000001,32.8959782]},"id":"8f44c0a2364c8c4-1796770a3dc02c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364dcb2-17b776d3a048fa24","8f44c0a2364c8c4-1796770a3dc02c8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6920518,32.8962323],[-83.69213900000001,32.8960963],[-83.6921028,32.896042300000005],[-83.69196450000001,32.8959782]]},"id":"8a44c0a2364ffff-17d7f6c53e49be4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69178310000001,32.8958941]},"id":"8f44c0a2364cc31-17dff77b9411bae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364cc31-17dff77b9411bae8","8f44c0a2364c8c4-1796770a3dc02c8f"]},"geometry":{"type":"LineString","coordinates":[[-83.69196450000001,32.8959782],[-83.69178310000001,32.8958941]]},"id":"8b44c0a2364cfff-17fe7742e0b48e74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914115,32.8961295]},"id":"8f44c0a2364e10e-17f6f863d02d76b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364e10e-17f6f863d02d76b4","8f44c0a2364cc31-17dff77b9411bae8"]},"geometry":{"type":"LineString","coordinates":[[-83.69178310000001,32.8958941],[-83.69164590000001,32.8958305],[-83.6915955,32.8958305],[-83.6914115,32.8961295]]},"id":"8944c0a2367ffff-17f6f7ff9a815b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6912396,32.896056900000005]},"id":"8f44c0a2364ec8a-17d7f8cf4c93980d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364e10e-17f6f863d02d76b4","8f44c0a2364ec8a-17d7f8cf4c93980d"]},"geometry":{"type":"LineString","coordinates":[[-83.6914115,32.8961295],[-83.6912396,32.896056900000005]]},"id":"8b44c0a2364efff-17de789992ab86a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364349d-17def9f22505a078","8f44c0a2364ec8a-17d7f8cf4c93980d"]},"geometry":{"type":"LineString","coordinates":[[-83.6912396,32.896056900000005],[-83.6907742,32.8958602]]},"id":"8944c0a2367ffff-17967960bc152b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364ec8a-17d7f8cf4c93980d","8f44c0a2364ed36-17f6f8a517f9e86f"]},"geometry":{"type":"LineString","coordinates":[[-83.6912396,32.896056900000005],[-83.6913071,32.8959311]]},"id":"8c44c0a2364edff-179e78ba3fc669e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23641780-17b6f883a11ddabb","8f44c0a2364ed36-17f6f8a517f9e86f"]},"geometry":{"type":"LineString","coordinates":[[-83.6913071,32.8959311],[-83.69136060000001,32.8958312]]},"id":"8a44c0a23647fff-17d7f8945f6271c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6914412,32.895681]},"id":"8f44c0a23641194-17def85141d39f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23641780-17b6f883a11ddabb","8f44c0a23641194-17def85141d39f72"]},"geometry":{"type":"LineString","coordinates":[[-83.69136060000001,32.8958312],[-83.6914412,32.895681]]},"id":"8b44c0a23641fff-1797f86a78997011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23641919-179ff7db5f2c7a88","8f44c0a23641194-17def85141d39f72"]},"geometry":{"type":"LineString","coordinates":[[-83.6914412,32.895681],[-83.69162990000001,32.8955641]]},"id":"8b44c0a23641fff-17b678165ad05e2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69185660000001,32.8952724]},"id":"8f44c0a23645b2a-13df774da77820b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23641919-179ff7db5f2c7a88","8f44c0a23645b2a-13df774da77820b2"]},"geometry":{"type":"LineString","coordinates":[[-83.69162990000001,32.8955641],[-83.6916786,32.895534000000005],[-83.69185660000001,32.8952724]]},"id":"8944c0a2367ffff-17bef7902d1bf795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23640736-17d77944bd435670","8f44c0a23641194-17def85141d39f72"]},"geometry":{"type":"LineString","coordinates":[[-83.6914412,32.895681],[-83.6910517,32.895464600000004]]},"id":"8a44c0a23647fff-179778cb0972db60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23640736-17d77944bd435670","8f44c0a2364291e-179679f20fbaced4"]},"geometry":{"type":"LineString","coordinates":[[-83.6910517,32.895464600000004],[-83.69077440000001,32.8953349]]},"id":"8a44c0a23647fff-17bef99b5a23f59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236466c6-13f6fa35264da744","8f44c0a2364291e-179679f20fbaced4"]},"geometry":{"type":"LineString","coordinates":[[-83.69077440000001,32.8953349],[-83.690667,32.895284700000005]]},"id":"8a44c0a23647fff-13f6fa139a41210c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a236466c6-13f6fa35264da744","8f44c0a236716ad-13b7f9f0ad781db9"]},"geometry":{"type":"LineString","coordinates":[[-83.690667,32.895284700000005],[-83.6902039,32.8950681],[-83.69020090000001,32.8949884],[-83.6903315,32.8948016],[-83.6907766,32.894809]]},"id":"8944c0a2367ffff-13b67ac8003ca7e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69100800000001,32.894764200000004]},"id":"8f44c0a2367131c-139ff960058b83f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2367131c-139ff960058b83f2","8f44c0a236716ad-13b7f9f0ad781db9"]},"geometry":{"type":"LineString","coordinates":[[-83.6907766,32.894809],[-83.69100800000001,32.894764200000004]]},"id":"8b44c0a23671fff-13bff9a850dc6d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915798,32.896205200000004]},"id":"8f44c0a2364ea1d-17b677faa91093cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364e10e-17f6f863d02d76b4","8f44c0a2364ea1d-17b677faa91093cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6914115,32.8961295],[-83.6915798,32.896205200000004]]},"id":"8b44c0a2364efff-179ef82f34dbb7f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6917681,32.8962893]},"id":"8f44c0a2364c6c8-17d6f784f5e79dd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364ea1d-17b677faa91093cb","8f44c0a2364c6c8-17d6f784f5e79dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6915798,32.896205200000004],[-83.6917681,32.8962893]]},"id":"8a44c0a2364ffff-17bef7bfd338d440"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2365c291-17f7fa8048d55de9","8f44c0a2365c781-17d67ad8af7e22bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6905468,32.896130400000004],[-83.6904054,32.8960515]]},"id":"8b44c0a2365cfff-17defaac7d378a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2365c781-17d67ad8af7e22bf","8f44c0a2365e988-17dffb83358d2bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.6904054,32.8960515],[-83.6901892,32.896181],[-83.6901399,32.896139600000005],[-83.6901325,32.895894000000006]]},"id":"8a44c0a2365ffff-17d6fb51b1798ff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23642ab3-1796f9edcd70049b","8f44c0a2365e988-17dffb83358d2bd0"]},"geometry":{"type":"LineString","coordinates":[[-83.6901325,32.895894000000006],[-83.69012400000001,32.8956122],[-83.6903212,32.895342500000005],[-83.69036890000001,32.8953305],[-83.6907812,32.8955403]]},"id":"8944c0a2367ffff-17f7fafbff239f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23643d14-17b7f989a89d10a6","8f44c0a23642ab3-1796f9edcd70049b"]},"geometry":{"type":"LineString","coordinates":[[-83.6907812,32.8955403],[-83.6909414,32.8956219]]},"id":"8a44c0a23647fff-179e79bbbc7cc6da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04b18441-17bf95b8799c5269","8f44c0a04b19a9c-139ef43effdeb885"]},"geometry":{"type":"LineString","coordinates":[[-83.67939770000001,32.8903089],[-83.6800017,32.890637500000004]]},"id":"8a44c0a04b1ffff-13b7d4fbb22e0e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04b2b6e4-179f90f36b1a3b6b","8f44c0a04b19a9c-139ef43effdeb885"]},"geometry":{"type":"LineString","coordinates":[[-83.6800017,32.890637500000004],[-83.68112760000001,32.891249900000005],[-83.6813578,32.891252900000005],[-83.6818071,32.8910842],[-83.6818327,32.8910137],[-83.68161710000001,32.890642500000006],[-83.68135140000001,32.890024000000004]]},"id":"8844c0a04bfffff-1397d17124ba5a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6812811,32.8898603]},"id":"8f44c0a04b2b409-17b6b11f59683143"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04b2b6e4-179f90f36b1a3b6b","8f44c0a04b2b409-17b6b11f59683143"]},"geometry":{"type":"LineString","coordinates":[[-83.68135140000001,32.890024000000004],[-83.6812811,32.8898603]]},"id":"8b44c0a04b2bfff-17d7f109534edad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67934070000001,32.8894796]},"id":"8f44c0a04b11172-17b6d5dc10e4ab7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b18c59-17f6b57ba819267d","8f44c0a04b11172-17b6d5dc10e4ab7c"]},"geometry":{"type":"LineString","coordinates":[[-83.679495,32.890189],[-83.67960160000001,32.8900008],[-83.67955660000001,32.8898761],[-83.6794127,32.889778],[-83.6792688,32.889645800000004],[-83.67934070000001,32.8894796]]},"id":"8944c0a04b3ffff-179f959a0de6713e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b11d2c-17bed6117301d74c","8f44c0a04b11172-17b6d5dc10e4ab7c"]},"geometry":{"type":"LineString","coordinates":[[-83.67934070000001,32.8894796],[-83.68016820000001,32.8893512],[-83.68023120000001,32.889290800000005],[-83.68021320000001,32.8891209],[-83.6800918,32.8890718],[-83.6793092,32.8892304],[-83.67925530000001,32.889290800000005]]},"id":"8944c0a04b3ffff-17b6d4bee9268ffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b11d2c-17bed6117301d74c","8f44c0a04b11172-17b6d5dc10e4ab7c"]},"geometry":{"type":"LineString","coordinates":[[-83.67925530000001,32.889290800000005],[-83.67934070000001,32.8894796]]},"id":"8b44c0a04b11fff-17ffd5f6c3a91119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0480adad-179fdfdc193b4b67","8f44c0a0481d841-1797e0163fe2a8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6751517,32.8855102],[-83.67524470000001,32.8857237]]},"id":"8944c0a0483ffff-17d69ff92c07cb01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0485212c-1797fe0d2c7a336f","8f44c0a0480adad-179fdfdc193b4b67"]},"geometry":{"type":"LineString","coordinates":[[-83.67524470000001,32.8857237],[-83.6757881,32.8869713],[-83.6759854,32.886940700000004]]},"id":"8844c0a049fffff-17bfff14ac07b157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04829c24-13bf9bf4a3548a4b","8f44c0a0480c728-13f7fe4ac5ec2cad"]},"geometry":{"type":"LineString","coordinates":[[-83.6768438,32.8849912],[-83.67686210000001,32.885182900000004],[-83.6763616,32.8853762],[-83.6758868,32.885459000000004]]},"id":"8944c0a0483ffff-1396fce6fa27f3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0480e292-17f6ff5cc15db617","8f44c0a0480c728-13f7fe4ac5ec2cad"]},"geometry":{"type":"LineString","coordinates":[[-83.6758868,32.885459000000004],[-83.6756237,32.8855388],[-83.67544840000001,32.885661500000005]]},"id":"8a44c0a0480ffff-179e9ed8fe51b74c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04866328-17d6f88eccbcaa1d","8f44c0a048666cb-179ed9278cdd034b"]},"geometry":{"type":"LineString","coordinates":[[-83.67823560000001,32.8858118],[-83.6780533,32.8858928],[-83.67799120000001,32.8859525]]},"id":"8a44c0a04867fff-17f6f8dec5cb5a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04862425-17fff99297ec90d7","8f44c0a048666cb-179ed9278cdd034b"]},"geometry":{"type":"LineString","coordinates":[[-83.67799120000001,32.8859525],[-83.6778199,32.8861174]]},"id":"8b44c0a04862fff-17dff95d1992c1a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04845ce6-17b6f8d5415857bb","8f44c0a04862425-17fff99297ec90d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6778199,32.8861174],[-83.67772310000001,32.886210500000004],[-83.6777062,32.8863117],[-83.67786290000001,32.886665900000004],[-83.67805080000001,32.8867813],[-83.67812280000001,32.8867911]]},"id":"8944c0a0487ffff-17fff985e2a7b71f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04845ce6-17b6f8d5415857bb","8f44c0a04845842-17bf983f0e6bc41f"]},"geometry":{"type":"LineString","coordinates":[[-83.67812280000001,32.8867911],[-83.6783632,32.886824000000004]]},"id":"8b44c0a04845fff-17bed88a2a5c4a30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6785205,32.8868456]},"id":"8f44c0a0486e4ee-17d697dcb31c36ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0486e4ee-17d697dcb31c36ba","8f44c0a04845842-17bf983f0e6bc41f"]},"geometry":{"type":"LineString","coordinates":[[-83.6783632,32.886824000000004],[-83.6785205,32.8868456]]},"id":"8944c0a0487ffff-17bfd80dd76ed2f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67745880000001,32.887557900000004]},"id":"8f44c0a0484379d-1397ba744d1a9455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67740090000001,32.8874146]},"id":"8f44c0a04843589-13beba9870a67775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04843589-13beba9870a67775","8f44c0a0484379d-1397ba744d1a9455"]},"geometry":{"type":"LineString","coordinates":[[-83.67745880000001,32.887557900000004],[-83.67740090000001,32.8874146]]},"id":"8b44c0a04843fff-13d6fa865763d28f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677287,32.8871325]},"id":"8f44c0a0484202b-17ffdadfa785c863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04843589-13beba9870a67775","8f44c0a0484202b-17ffdadfa785c863"]},"geometry":{"type":"LineString","coordinates":[[-83.67740090000001,32.8874146],[-83.677287,32.8871325]]},"id":"8a44c0a04847fff-13d69abc075e37ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766678,32.8867363]},"id":"8f44c0a04855581-1796bc62a8f59cb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04855581-1796bc62a8f59cb4","8f44c0a04843589-13beba9870a67775"]},"geometry":{"type":"LineString","coordinates":[[-83.67740090000001,32.8874146],[-83.67706150000001,32.8873568],[-83.6768627,32.8871898],[-83.6766678,32.8867363]]},"id":"8944c0a0487ffff-1396bbad4c91a432"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67630790000001,32.8864053]},"id":"8f44c0a04854580-17b7dd439b20bb45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04854580-17b7dd439b20bb45","8f44c0a04855581-1796bc62a8f59cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.6766678,32.8867363],[-83.6765125,32.8863751],[-83.676471,32.886362600000005],[-83.67630790000001,32.8864053]]},"id":"8a44c0a04857fff-17ff9cba8f807081"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67627420000001,32.8868555]},"id":"8f44c0a04850509-17debd58aa3b3d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04854580-17b7dd439b20bb45","8f44c0a04850509-17debd58aa3b3d38"]},"geometry":{"type":"LineString","coordinates":[[-83.67630790000001,32.8864053],[-83.67614760000001,32.8864473],[-83.67611790000001,32.8865046],[-83.67627420000001,32.8868555]]},"id":"8a44c0a04857fff-17b6fd88448d5477"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6765956,32.887075200000005]},"id":"8f44c0a04850349-17d69c8fc91fafbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04850349-17d69c8fc91fafbd","8f44c0a04850509-17debd58aa3b3d38"]},"geometry":{"type":"LineString","coordinates":[[-83.67627420000001,32.8868555],[-83.6763909,32.8871176],[-83.67642950000001,32.887122600000005],[-83.6765956,32.887075200000005]]},"id":"8a44c0a04857fff-17bffd096a7ce01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766752,32.887402800000004]},"id":"8f44c0a048516e4-13b6dc5e0bef838d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048516e4-13b6dc5e0bef838d","8f44c0a04850349-17d69c8fc91fafbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6765956,32.887075200000005],[-83.67667870000001,32.887272100000004],[-83.6766752,32.887402800000004]]},"id":"8b44c0a04851fff-13befc6c5ac869a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6764787,32.8867929]},"id":"8f44c0a048508ab-17b79cd8d5eadaf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048508ab-17b79cd8d5eadaf8","8f44c0a04850349-17d69c8fc91fafbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6765956,32.887075200000005],[-83.6764787,32.8867929]]},"id":"8a44c0a04857fff-17ffdcb459e15a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04854580-17b7dd439b20bb45","8f44c0a048508ab-17b79cd8d5eadaf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6764787,32.8867929],[-83.67630790000001,32.8864053]]},"id":"8a44c0a04857fff-17befd0e3d85d9c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04855581-1796bc62a8f59cb4","8f44c0a048508ab-17b79cd8d5eadaf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6766678,32.8867363],[-83.6764787,32.8867929]]},"id":"8a44c0a04857fff-1797fc9dcf57e93e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048508ab-17b79cd8d5eadaf8","8f44c0a04850509-17debd58aa3b3d38"]},"geometry":{"type":"LineString","coordinates":[[-83.6764787,32.8867929],[-83.67627420000001,32.8868555]]},"id":"8b44c0a04850fff-17bfbd18b39882b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0485212c-1797fe0d2c7a336f","8f44c0a04850509-17debd58aa3b3d38"]},"geometry":{"type":"LineString","coordinates":[[-83.67627420000001,32.8868555],[-83.6759854,32.886940700000004]]},"id":"8a44c0a04857fff-17f7ddb2e51034f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0486e4ee-17d697dcb31c36ba","8f44c0a04866328-17d6f88eccbcaa1d"]},"geometry":{"type":"LineString","coordinates":[[-83.67823560000001,32.8858118],[-83.6785351,32.886612400000004],[-83.6785497,32.886729],[-83.6785205,32.8868456]]},"id":"8944c0a0487ffff-1796f81c5ea0f465"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0486e4ee-17d697dcb31c36ba","8f44c0a0484379d-1397ba744d1a9455"]},"geometry":{"type":"LineString","coordinates":[[-83.6785205,32.8868456],[-83.67848760000001,32.8871769],[-83.67840000000001,32.887364000000005],[-83.67827940000001,32.8874683],[-83.6781041,32.887545],[-83.67745880000001,32.887557900000004]]},"id":"8944c0a0487ffff-139698ccd5f58bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6770685,32.8875066]},"id":"8f44c0a0485c195-13f7bb6831bdc9a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0485c195-13f7bb6831bdc9a2","8f44c0a0484379d-1397ba744d1a9455"]},"geometry":{"type":"LineString","coordinates":[[-83.67745880000001,32.887557900000004],[-83.67733700000001,32.887560300000004],[-83.6770685,32.8875066]]},"id":"8a44c0a0485ffff-13ffdaeec748d029"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66798080000001,32.7932725]},"id":"8f44c0b1c4e99a2-13d7f1980f19238c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4e99a2-13d7f1980f19238c","8f44c0b1c45a434-13f7f10bc6841159"]},"geometry":{"type":"LineString","coordinates":[[-83.6682052,32.7933244],[-83.66798080000001,32.7932725]]},"id":"8a44c0b1c4effff-13f7b151e47088ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673919,32.7935277]},"id":"8f44c0b1c4eb184-13f6f30818bf8b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4e99a2-13d7f1980f19238c","8f44c0b1c4eb184-13f6f30818bf8b07"]},"geometry":{"type":"LineString","coordinates":[[-83.66798080000001,32.7932725],[-83.6676357,32.7931928],[-83.66750130000001,32.7932244],[-83.6673919,32.7935277]]},"id":"8a44c0b1c4effff-13dff276bb171a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4e99a2-13d7f1980f19238c","8f44c0b1c4e96cd-13deb1f7d260453b"]},"geometry":{"type":"LineString","coordinates":[[-83.66798080000001,32.7932725],[-83.6678275,32.793693600000005]]},"id":"8a44c0b1c4effff-13d6f1c7fd25cb8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6677358,32.793900300000004]},"id":"8f44c0b1c7b60a2-17dfb23125c50042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b60a2-17dfb23125c50042","8f44c0b1c4e96cd-13deb1f7d260453b"]},"geometry":{"type":"LineString","coordinates":[[-83.6678275,32.793693600000005],[-83.6677358,32.793900300000004]]},"id":"8b44c0b1c7b6fff-179fb214851ad6fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b60a2-17dfb23125c50042","8f44c0b1c4c895c-179fb3fd75c3a566"]},"geometry":{"type":"LineString","coordinates":[[-83.6677358,32.793900300000004],[-83.66718350000001,32.7937347],[-83.6669993,32.7939737]]},"id":"8944c0b1c4fffff-17bff32cdb3b87d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66636910000001,32.794423300000005]},"id":"8f44c0b1c4ca299-17b6b5875346808a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4c895c-179fb3fd75c3a566","8f44c0b1c4ca299-17b6b5875346808a"]},"geometry":{"type":"LineString","coordinates":[[-83.6669993,32.7939737],[-83.6666569,32.7938647],[-83.6663752,32.793978800000005],[-83.66618270000001,32.794345],[-83.66636910000001,32.794423300000005]]},"id":"8a44c0b1c4cffff-17d6f53c5a28235b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4c8041-1796b438bda8cf9d","8f44c0b1c4c895c-179fb3fd75c3a566"]},"geometry":{"type":"LineString","coordinates":[[-83.6669993,32.7939737],[-83.6669045,32.7941705]]},"id":"8b44c0b1c4c8fff-17d7b41b1d2a9b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4c8041-1796b438bda8cf9d","8f44c0b1c4cb934-17f6b466ab223cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6669045,32.7941705],[-83.666831,32.7943232]]},"id":"8b44c0b1c4c8fff-17b6f44fb850b879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4cb12e-17d7f49683e5bc4c","8f44c0b1c4cb934-17f6b466ab223cb6"]},"geometry":{"type":"LineString","coordinates":[[-83.666831,32.7943232],[-83.6667544,32.794482200000004]]},"id":"8a44c0b1c4cffff-1797b47e9bca9d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4cb0da-17b7f4c4c62f6076","8f44c0b1c4cb12e-17d7f49683e5bc4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6667544,32.794482200000004],[-83.6666804,32.7946359]]},"id":"8b44c0b1c4cbfff-17f7f4adae6bfd55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb65d65-179ef4f3770469d7","8f44c0b1c4cb0da-17b7f4c4c62f6076"]},"geometry":{"type":"LineString","coordinates":[[-83.6666804,32.7946359],[-83.6666057,32.794791000000004]]},"id":"8744c0b1cffffff-17d7f4dc2e2b4a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb650b2-17feb52c6d74d75d","8f44c0b1eb65d65-179ef4f3770469d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6666057,32.794791000000004],[-83.6665146,32.794980200000005]]},"id":"8b44c0b1eb65fff-17d7b50fe05b473a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb650b2-17feb52c6d74d75d","8f44c0b1eb65683-17f7b564ebec3b8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6665146,32.794980200000005],[-83.66642420000001,32.7951442]]},"id":"8b44c0b1eb65fff-17b7f548afbedd91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb65683-17f7b564ebec3b8e","8f44c0b1eb61cab-17bef595494d1060"]},"geometry":{"type":"LineString","coordinates":[[-83.66642420000001,32.7951442],[-83.6663468,32.7952847]]},"id":"8a44c0b1eb67fff-1797b57d1b5958b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb614f0-139ff5c947c96684","8f44c0b1eb61cab-17bef595494d1060"]},"geometry":{"type":"LineString","coordinates":[[-83.6663468,32.7952847],[-83.66626360000001,32.7954357]]},"id":"8b44c0b1eb61fff-17feb5af418dcb70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb614f0-139ff5c947c96684","8f44c0b1eb63ac4-13feb5fedefd4fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.66626360000001,32.7954357],[-83.66617790000001,32.795591200000004]]},"id":"8a44c0b1eb67fff-13dff5e4015a02d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb632eb-13dfb63518af8b6f","8f44c0b1eb63ac4-13feb5fedefd4fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.66617790000001,32.795591200000004],[-83.6660911,32.7957489]]},"id":"8b44c0b1eb63fff-13bff619f6ec2eeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb632eb-13dfb63518af8b6f","8f44c0b1eb45bb0-13d7f66b7aa98cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.6660911,32.7957489],[-83.66600410000001,32.795906800000004]]},"id":"8944c0b1eb7ffff-1396f6504c11b50c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66591580000001,32.796067]},"id":"8f44c0b1eb45381-13b7f6a2a1c09401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb45bb0-13d7f66b7aa98cb4","8f44c0b1eb45381-13b7f6a2a1c09401"]},"geometry":{"type":"LineString","coordinates":[[-83.66600410000001,32.795906800000004],[-83.66591580000001,32.796067]]},"id":"8b44c0b1eb45fff-13f7f6871e8b02e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66587870000001,32.795326100000004]},"id":"8f44c0b1eb63daa-17d6f6b9d2c5fdf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb63daa-17d6f6b9d2c5fdf4","8f44c0b1eb45381-13b7f6a2a1c09401"]},"geometry":{"type":"LineString","coordinates":[[-83.66591580000001,32.796067],[-83.66524910000001,32.795748200000006],[-83.66555550000001,32.7952171],[-83.66587870000001,32.795326100000004]]},"id":"8944c0b1eb7ffff-1396b78ad914d55a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b60a2-17dfb23125c50042","8f44c0b1c7b28b3-1797f248579e09ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6677358,32.793900300000004],[-83.6677076,32.7941811],[-83.6676987,32.794198200000004]]},"id":"8a44c0b1c7b7fff-17bff23ab2e4a882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b2702-17b6b290d890bf28","8f44c0b1c7b28b3-1797f248579e09ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6676987,32.794198200000004],[-83.66758270000001,32.7944224]]},"id":"8b44c0b1c7b2fff-17dff26c9af1b14c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c7b2702-17b6b290d890bf28","8f44c0b1c794d0c-17fff2bf42a6b231"]},"geometry":{"type":"LineString","coordinates":[[-83.66758270000001,32.7944224],[-83.6675084,32.794566100000004]]},"id":"8944c0b1c7bffff-17def2a81cb06fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c794555-17f6b2f58266ee70","8f44c0b1c794d0c-17fff2bf42a6b231"]},"geometry":{"type":"LineString","coordinates":[[-83.6675084,32.794566100000004],[-83.66742160000001,32.794733900000004]]},"id":"8b44c0b1c794fff-17b6f2da6195ed26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c794555-17f6b2f58266ee70","8f44c0b1c796b45-17beb323bb1086b7"]},"geometry":{"type":"LineString","coordinates":[[-83.66742160000001,32.794733900000004],[-83.66734770000001,32.794876800000004]]},"id":"8b44c0b1c794fff-1797f30ca2510b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c790cb6-179ff356083d24a2","8f44c0b1c796b45-17beb323bb1086b7"]},"geometry":{"type":"LineString","coordinates":[[-83.66734770000001,32.794876800000004],[-83.66726720000001,32.795032400000004]]},"id":"8a44c0b1c797fff-17feb33cd10fdb14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c790cb6-179ff356083d24a2","8f44c0b1c790498-1797f3926d1d9292"]},"geometry":{"type":"LineString","coordinates":[[-83.66726720000001,32.795032400000004],[-83.6671706,32.795219100000004]]},"id":"8a44c0b1c797fff-17dfb3743a548514"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c790498-1797f3926d1d9292","8f44c0b1c792320-17fff3cd6cd845b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6671706,32.795219100000004],[-83.66707620000001,32.795382100000005]]},"id":"8b44c0b1c792fff-17d6f3afefbd1b83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c792320-17fff3cd6cd845b0","8f44c0b1c7922d2-13d6f4030e89e9f4"]},"geometry":{"type":"LineString","coordinates":[[-83.66707620000001,32.795382100000005],[-83.6669904,32.7955302]]},"id":"8b44c0b1c792fff-13beb3e833f93508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6c8de-13b7b438ad9b0f1a","8f44c0b1c7922d2-13d6f4030e89e9f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6669904,32.7955302],[-83.66690460000001,32.7956784]]},"id":"8944c0b1eb7ffff-1396b41ddb3e4d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6c8de-13b7b438ad9b0f1a","8f44c0b1eb6c766-1396f4723ac1adbd"]},"geometry":{"type":"LineString","coordinates":[[-83.66690460000001,32.7956784],[-83.6668125,32.7958373]]},"id":"8b44c0b1eb6cfff-13f6b455728669c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb68d28-13f7f4c848b2953f","8f44c0b1eb6c766-1396f4723ac1adbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6668125,32.7958373],[-83.6667551,32.7959364],[-83.66667480000001,32.7959644]]},"id":"8a44c0b1eb6ffff-13d6b4967eff60b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb68d28-13f7f4c848b2953f","8f44c0b1eb6e2d4-13b6f572117975ce"]},"geometry":{"type":"LineString","coordinates":[[-83.66667480000001,32.7959644],[-83.66640310000001,32.7960591]]},"id":"8a44c0b1eb6ffff-1397f51d2829576f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6e2d4-13b6f572117975ce","8f44c0b1eb45381-13b7f6a2a1c09401"]},"geometry":{"type":"LineString","coordinates":[[-83.66640310000001,32.7960591],[-83.66614270000001,32.7961498],[-83.66591580000001,32.796067]]},"id":"8944c0b1eb7ffff-13bef60a9f92f7e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4d3232-13bf6109a888f831","8f44c0b1a4d4aad-13df1038bc827af4"]},"geometry":{"type":"LineString","coordinates":[[-83.6357749,32.8188881],[-83.63569050000001,32.8188833],[-83.63557780000001,32.8189433],[-83.63544060000001,32.8198582]]},"id":"8a44c0b1a4d7fff-13f750cbaa61e6e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a4d3232-13bf6109a888f831","8f44c0b1a4de112-179f005ec583ede2"]},"geometry":{"type":"LineString","coordinates":[[-83.63544060000001,32.8198582],[-83.6355235,32.8199042],[-83.6355958,32.8199375],[-83.63571400000001,32.819992]]},"id":"8944c0b1a4fffff-13f790b4edbb5512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481aa9d-17dea28f70968882","8f44c0a0481a174-17b7a2b0a8eae33d"]},"geometry":{"type":"LineString","coordinates":[[-83.67413850000001,32.8858602],[-83.67408540000001,32.8857626]]},"id":"8b44c0a0481afff-17d6a2a003a2d6b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67395020000001,32.885514400000005]},"id":"8f44c0a0481e694-1796a30520643e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481e694-1796a30520643e02","8f44c0a0481a174-17b7a2b0a8eae33d"]},"geometry":{"type":"LineString","coordinates":[[-83.67408540000001,32.8857626],[-83.67395020000001,32.885514400000005]]},"id":"8a44c0a0481ffff-17d6b2daee4bc35c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481e694-1796a30520643e02","8f44c0a048adac2-17b6f351463b4597"]},"geometry":{"type":"LineString","coordinates":[[-83.67395020000001,32.885514400000005],[-83.6738284,32.885559900000004]]},"id":"8c44c0a048adbff-1796e32b311c54a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0488586e-13fff6801ac2fd98","8f44c0a048ae52e-13b7e61eb76301b0"]},"geometry":{"type":"LineString","coordinates":[[-83.67252470000001,32.885269300000004],[-83.6726805,32.8851764]]},"id":"8944c0a048bffff-13d6f64f60bc3d20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67279090000001,32.8851406]},"id":"8f44c0a048aec71-139ee5d9bbd547e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048aec71-139ee5d9bbd547e2","8f44c0a048ae52e-13b7e61eb76301b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6726805,32.8851764],[-83.67279090000001,32.8851406]]},"id":"8b44c0a048aefff-13beb5fc3bf19f96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6745499,32.8853133]},"id":"8f44c0a0481c099-139ef18e5fd6cca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481e694-1796a30520643e02","8f44c0a0481c099-139ef18e5fd6cca8"]},"geometry":{"type":"LineString","coordinates":[[-83.67395020000001,32.885514400000005],[-83.6745499,32.8853133]]},"id":"8a44c0a0481ffff-13d7b249b6a38f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481c099-139ef18e5fd6cca8","8f44c0a0481895c-17b7b144674a1189"]},"geometry":{"type":"LineString","coordinates":[[-83.6745499,32.8853133],[-83.6746682,32.885561100000004]]},"id":"8a44c0a0481ffff-13d6e169608c591e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a04818b01-17f6e12549f2957c","8f44c0a0481895c-17b7b144674a1189"]},"geometry":{"type":"LineString","coordinates":[[-83.6746682,32.885561100000004],[-83.674718,32.8856654]]},"id":"8b44c0a04818fff-17d6f134dc17fcdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67395710000001,32.884455700000004]},"id":"8f44c0a04810999-13f6f300deb5df22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481c099-139ef18e5fd6cca8","8f44c0a04810999-13f6f300deb5df22"]},"geometry":{"type":"LineString","coordinates":[[-83.6745499,32.8853133],[-83.67430440000001,32.8847973],[-83.674192,32.884676],[-83.674058,32.884569],[-83.6739795,32.8844797],[-83.67395710000001,32.884455700000004]]},"id":"8944c0a0483ffff-13fea230913d4439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a4a56-13b6e5898cb680a0","8f44c0a04810999-13f6f300deb5df22"]},"geometry":{"type":"LineString","coordinates":[[-83.67395710000001,32.884455700000004],[-83.67367610000001,32.8841553],[-83.6734725,32.884052700000005],[-83.6732652,32.8840061],[-83.67291920000001,32.884123]]},"id":"8844c0a049fffff-13b6a42dba932460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a4758-13def629294bc029","8f44c0a048a4a56-13b6e5898cb680a0"]},"geometry":{"type":"LineString","coordinates":[[-83.67291920000001,32.884123],[-83.6727913,32.8841662],[-83.67266380000001,32.8842117]]},"id":"8b44c0a048a4fff-13bee5d97de2ab7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a4758-13def629294bc029","8f44c0a048a66c8-13def77868f02352"]},"geometry":{"type":"LineString","coordinates":[[-83.67266380000001,32.8842117],[-83.6723304,32.8843309],[-83.67212740000001,32.8844013]]},"id":"8a44c0a048a7fff-1397f6d0af2fa0c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048b5249-1396f802914aead6","8f44c0a048a66c8-13def77868f02352"]},"geometry":{"type":"LineString","coordinates":[[-83.67212740000001,32.8844013],[-83.6720657,32.8844227],[-83.6719063,32.884513500000004]]},"id":"8b44c0a048a2fff-13ffe7bead5cec09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481058a-13bef3b1d869d4fa","8f44c0a04810999-13f6f300deb5df22"]},"geometry":{"type":"LineString","coordinates":[[-83.67395710000001,32.884455700000004],[-83.6737471,32.8845502],[-83.67367390000001,32.8845741]]},"id":"8b44c0a04810fff-1397a358a8e02d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a4758-13def629294bc029","8f44c0a0481058a-13bef3b1d869d4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.67367390000001,32.8845741],[-83.6735651,32.8846095],[-83.67347360000001,32.8845911],[-83.6733593,32.884498400000005],[-83.6733086,32.8844483],[-83.6728133,32.8842796],[-83.67266380000001,32.8842117]]},"id":"8844c0a049fffff-13dee4ea78dda616"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67318870000001,32.8856553]},"id":"8f44c0a048a80ea-17deb4e11b1b89e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a80ea-17deb4e11b1b89e8","8f44c0a048a80f4-17d6f4f3b58c0cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.67318870000001,32.8856553],[-83.6731589,32.8856167]]},"id":"8d44c0a048a80ff-17d6a4ea61eb5952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a8cd0-13fea52fd37e6e59","8f44c0a048a80f4-17d6f4f3b58c0cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6731589,32.8856167],[-83.6730627,32.8854922]]},"id":"8b44c0a048a8fff-179fb511cc322fc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048ae376-13bfb56b600e09c8","8f44c0a048a8cd0-13fea52fd37e6e59"]},"geometry":{"type":"LineString","coordinates":[[-83.6730627,32.8854922],[-83.6729674,32.8853689]]},"id":"8a44c0a048affff-13d6a54da794e129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048ae376-13bfb56b600e09c8","8f44c0a048ae156-13dee5ab54b848de"]},"geometry":{"type":"LineString","coordinates":[[-83.6729674,32.8853689],[-83.67286510000001,32.8852366]]},"id":"8b44c0a048aefff-1396e58b55233fb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048aec71-139ee5d9bbd547e2","8f44c0a048ae156-13dee5ab54b848de"]},"geometry":{"type":"LineString","coordinates":[[-83.67286510000001,32.8852366],[-83.67279090000001,32.8851406]]},"id":"8b44c0a048aefff-13bee5c28e5dd6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a8358-1796e4879c1b2ba5","8f44c0a048a80ea-17deb4e11b1b89e8"]},"geometry":{"type":"LineString","coordinates":[[-83.67333190000001,32.8857452],[-83.67318870000001,32.8856553]]},"id":"8b44c0a048a8fff-17feb4b45808f42e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048a80ea-17deb4e11b1b89e8","8f44c0a048abda4-17b6b576323e1a25"]},"geometry":{"type":"LineString","coordinates":[[-83.67318870000001,32.8856553],[-83.67295010000001,32.885789100000004]]},"id":"8a44c0a048affff-179ee52baf1ae306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481309d-13f7a3975e11d4d6","8f44c0a04813cd6-13b7e3c12b177f75"]},"geometry":{"type":"LineString","coordinates":[[-83.6736494,32.8849492],[-83.67371630000001,32.885081]]},"id":"8b44c0a04813fff-13def3ac4cd765b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481309d-13f7a3975e11d4d6","8f44c0a04813291-13d6e36963b78dbc"]},"geometry":{"type":"LineString","coordinates":[[-83.67371630000001,32.885081],[-83.67378980000001,32.885226]]},"id":"8b44c0a04813fff-13b6f3805a0816a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a04813291-13d6e36963b78dbc","8f44c0a0481e494-13bfe33bb863538e"]},"geometry":{"type":"LineString","coordinates":[[-83.67378980000001,32.885226],[-83.6738456,32.8853359],[-83.6738629,32.885365400000005]]},"id":"8944c0a0483ffff-13feb3530c245992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0481e694-1796a30520643e02","8f44c0a0481e494-13bfe33bb863538e"]},"geometry":{"type":"LineString","coordinates":[[-83.6738629,32.885365400000005],[-83.67395020000001,32.885514400000005]]},"id":"8944c0a0483ffff-13d7f3207a9a28e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402c508-17b643d0392b7c79","8f44c0b041520a0-17d6f345860b6863"]},"geometry":{"type":"LineString","coordinates":[[-83.7131688,32.742455500000005],[-83.7129469,32.7428356]]},"id":"8944c0b0403ffff-17bfc38ad82a3d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7132404,32.7424887]},"id":"8f44c0b04152009-17d77318c3368bde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04152009-17d77318c3368bde","8f44c0b041520a0-17d6f345860b6863"]},"geometry":{"type":"LineString","coordinates":[[-83.7131688,32.742455500000005],[-83.7132404,32.7424887]]},"id":"8c44c0b041521ff-17df532f282140f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04152009-17d77318c3368bde","8f44c0b04153a42-17bf71b4ef087a8d"]},"geometry":{"type":"LineString","coordinates":[[-83.7132404,32.7424887],[-83.713295,32.742514],[-83.7136188,32.7427295],[-83.7138098,32.7428503]]},"id":"8a44c0b04157fff-17d752662b45f5c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e399d51-17df75d5b6e8e561","8f44c0b0e39875b-17de76bde7544682"]},"geometry":{"type":"LineString","coordinates":[[-83.71867250000001,32.808037500000005],[-83.71830100000001,32.8080263]]},"id":"8a44c0b0e39ffff-17dff649c1a2e775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e281763-1796b61abc5c04d3","8f44c0b0e39875b-17de76bde7544682"]},"geometry":{"type":"LineString","coordinates":[[-83.71830100000001,32.8080263],[-83.7171769,32.808007100000005],[-83.7171071,32.810326700000005],[-83.7185621,32.810369]]},"id":"8844c0b0e3fffff-13d7b8bc19279466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e399c4a-179635d5acacc1d1","8f44c0b0e399775-1797b5d91bf9b97b"]},"geometry":{"type":"LineString","coordinates":[[-83.7186726,32.8081187],[-83.7186671,32.808300100000004]]},"id":"8b44c0b0e399fff-17def5d76d6eba0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e399775-1797b5d91bf9b97b","8f44c0b0e2a69ab-17f635dde0fa175f"]},"geometry":{"type":"LineString","coordinates":[[-83.7186671,32.808300100000004],[-83.7186594,32.8084579]]},"id":"8844c0b0e3fffff-17b6f5db885255b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a6140-13df35e2b67fb431","8f44c0b0e2a69ab-17f635dde0fa175f"]},"geometry":{"type":"LineString","coordinates":[[-83.7186594,32.8084579],[-83.71865170000001,32.8086162]]},"id":"8b44c0b0e2a6fff-1397b5e04097577d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a6210-13b775e7bb13cde9","8f44c0b0e2a6140-13df35e2b67fb431"]},"geometry":{"type":"LineString","coordinates":[[-83.71865170000001,32.8086162],[-83.7186437,32.808783000000005]]},"id":"8b44c0b0e2a6fff-13ff75e5331df4a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a6210-13b775e7bb13cde9","8f44c0b0e2a2940-139775eb905d7dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.7186437,32.808783000000005],[-83.7186375,32.8089111]]},"id":"8a44c0b0e2a7fff-13df75e9ab2ee0ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a2a32-13deb5f01f773b9e","8f44c0b0e2a2940-139775eb905d7dbe"]},"geometry":{"type":"LineString","coordinates":[[-83.7186375,32.8089111],[-83.7186303,32.8090603]]},"id":"8b44c0b0e2a2fff-13b635edd88fb2cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a234a-13df35f553b820d5","8f44c0b0e2a2a32-13deb5f01f773b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.7186303,32.8090603],[-83.7186219,32.8092338]]},"id":"8b44c0b0e2a2fff-1396f5f2b980693b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2a341e-13bef5f9f9eac95d","8f44c0b0e2a234a-13df35f553b820d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7186219,32.8092338],[-83.7186145,32.8093871]]},"id":"8a44c0b0e2a7fff-13ff35f7ad098121"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e284a65-1397f5fe78c8bd7b","8f44c0b0e2a341e-13bef5f9f9eac95d"]},"geometry":{"type":"LineString","coordinates":[[-83.7186145,32.8093871],[-83.7186073,32.8095359]]},"id":"8944c0b0e2bffff-13df75fc35732a8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e284a65-1397f5fe78c8bd7b","8f44c0b0e285c1c-13f6360170b93498"]},"geometry":{"type":"LineString","coordinates":[[-83.7186073,32.8095359],[-83.7186025,32.8096801]]},"id":"8a44c0b0e287fff-13b735fff27873e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71859330000001,32.809846400000005]},"id":"8f44c0b0e28546c-13de36073faf1588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e28546c-13de36073faf1588","8f44c0b0e285c1c-13f6360170b93498"]},"geometry":{"type":"LineString","coordinates":[[-83.7186025,32.8096801],[-83.71859330000001,32.809846400000005]]},"id":"8b44c0b0e285fff-13963604520ca509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2856c4-13b7760cfdd8186b","8f44c0b0e28546c-13de36073faf1588"]},"geometry":{"type":"LineString","coordinates":[[-83.71859330000001,32.809846400000005],[-83.7185841,32.8100151]]},"id":"8b44c0b0e285fff-13fef60a110aac62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e281763-1796b61abc5c04d3","8f44c0b0e2856c4-13b7760cfdd8186b"]},"geometry":{"type":"LineString","coordinates":[[-83.7185841,32.8100151],[-83.7185621,32.810369]]},"id":"8a44c0b0e287fff-17b63613dbc3f3ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32122176-17b7f8aa4cd58a94","8f44c0a321207b6-17b7f80cb827c203"]},"geometry":{"type":"LineString","coordinates":[[-83.61290770000001,32.8607821],[-83.61265560000001,32.860779]]},"id":"8a44c0a32127fff-17b7f85b735ad9a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32131831-17b739b4b989dbc6","8f44c0a32122176-17b7f8aa4cd58a94"]},"geometry":{"type":"LineString","coordinates":[[-83.61265560000001,32.860779],[-83.61222930000001,32.8607777]]},"id":"8944c0a3213ffff-17b7b92f85d09c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32131831-17b739b4b989dbc6","8f44c0a32131c00-17b7ba294090716b"]},"geometry":{"type":"LineString","coordinates":[[-83.61222930000001,32.8607777],[-83.61204280000001,32.8607771]]},"id":"8b44c0a32131fff-17b7f9ef043414c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32131c00-17b7ba294090716b","8f44c0a321302ad-17b77ab39d3f3a03"]},"geometry":{"type":"LineString","coordinates":[[-83.61204280000001,32.8607771],[-83.6118215,32.8607764]]},"id":"8a44c0a32137fff-17b7ba6e76ce7c56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a321302ad-17b77ab39d3f3a03","8f44c0a321306f6-17b7fb2d5c70365d"]},"geometry":{"type":"LineString","coordinates":[[-83.6118215,32.8607764],[-83.6116267,32.8607758]]},"id":"8b44c0a32130fff-17b73af07759082b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a321306f6-17b7fb2d5c70365d","8f44c0a32132ad6-17b77baa66512cf1"]},"geometry":{"type":"LineString","coordinates":[[-83.6116267,32.8607758],[-83.6114266,32.8607748]]},"id":"8a44c0a32137fff-17b7bb6bd8f4c9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61117940000001,32.8607735]},"id":"8f44c0a32132714-179f7c44e2b4320d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32132ad6-17b77baa66512cf1","8f44c0a32132714-179f7c44e2b4320d"]},"geometry":{"type":"LineString","coordinates":[[-83.6114266,32.8607748],[-83.61117940000001,32.8607735]]},"id":"8b44c0a32132fff-179ffbf7a04ac744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c49ba1-179ffcc9ca97686a","8f44c0a32132714-179f7c44e2b4320d"]},"geometry":{"type":"LineString","coordinates":[[-83.61117940000001,32.8607735],[-83.6109668,32.8607724]]},"id":"8944c0a3213ffff-179f3c875d7833cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c49ba1-179ffcc9ca97686a","8f44c0a32c491aa-179f3d411cf2a9f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6109668,32.8607724],[-83.61077590000001,32.860771400000004]]},"id":"8b44c0a32c49fff-179f7d057002b59f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c491aa-179f3d411cf2a9f7","8f44c0a32c49598-179fbdce2b4fcd50"]},"geometry":{"type":"LineString","coordinates":[[-83.61077590000001,32.860771400000004],[-83.6106779,32.8607709],[-83.6105502,32.8607706]]},"id":"8b44c0a32c49fff-179ffd879039ff3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c49598-179fbdce2b4fcd50","8f44c0a32c4b8b0-179f7e4ada4557f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6105502,32.8607706],[-83.61035070000001,32.860770200000005]]},"id":"8a44c0a32c4ffff-179fbe0c896ad8ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4bca3-179f3eaf3a474fb0","8f44c0a32c4b8b0-179f7e4ada4557f2"]},"geometry":{"type":"LineString","coordinates":[[-83.61035070000001,32.860770200000005],[-83.61019010000001,32.8607698]]},"id":"8b44c0a32c4bfff-179f7e7d0b6ad4dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4bca3-179f3eaf3a474fb0","8f44c0a32c4a2a9-179fff16399d57a8"]},"geometry":{"type":"LineString","coordinates":[[-83.61019010000001,32.8607698],[-83.6100253,32.8607695]]},"id":"8a44c0a32c4ffff-179f3ee2b9f2d09d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4a2a9-179fff16399d57a8","8f44c0a32c4e676-1797ff192c224e05"]},"geometry":{"type":"LineString","coordinates":[[-83.6100253,32.8607695],[-83.6098082,32.860769000000005],[-83.6098139,32.8603211],[-83.6100206,32.8603182]]},"id":"8a44c0a32c4ffff-17973f7be84b2bdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4e676-1797ff192c224e05","8f44c0a32c4e22e-17977ea9c37d498e"]},"geometry":{"type":"LineString","coordinates":[[-83.6100206,32.8603182],[-83.6101988,32.8603156]]},"id":"8b44c0a32c4efff-17973ee1713c82fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610263,32.8603147]},"id":"8f44c0a32c4e34c-1797be81a1c82307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4e34c-1797be81a1c82307","8f44c0a32c4e22e-17977ea9c37d498e"]},"geometry":{"type":"LineString","coordinates":[[-83.6101988,32.8603156],[-83.610263,32.8603147]]},"id":"8c44c0a32c4e3ff-17973e95b5518757"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4e34c-1797be81a1c82307","8f44c0a32c48c32-17fffe4d9e7b5fde"]},"geometry":{"type":"LineString","coordinates":[[-83.610263,32.8603147],[-83.6103463,32.860313500000004]]},"id":"8a44c0a32c4ffff-17977e67a9868a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c48918-17ff3dcb80e214aa","8f44c0a32c48c32-17fffe4d9e7b5fde"]},"geometry":{"type":"LineString","coordinates":[[-83.6103463,32.860313500000004],[-83.61055440000001,32.860310500000004]]},"id":"8b44c0a32c48fff-17ff3e0c80d2191b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4d52a-17ff3d413b785765","8f44c0a32c48918-17ff3dcb80e214aa"]},"geometry":{"type":"LineString","coordinates":[[-83.61055440000001,32.860310500000004],[-83.6107757,32.8603073]]},"id":"8a44c0a32c4ffff-17ff3d865e29f0aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6108207,32.860249200000005]},"id":"8f44c0a32c4dc1a-17d7fd2510cead53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4d52a-17ff3d413b785765","8f44c0a32c4dc1a-17d7fd2510cead53"]},"geometry":{"type":"LineString","coordinates":[[-83.6107757,32.8603073],[-83.61082,32.8603067],[-83.6108207,32.860249200000005]]},"id":"8b44c0a32c4dfff-17f7bd2b625bcc8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6108257,32.8598572]},"id":"8f44c0a32c6b5a4-17f7fd21fd4d4447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c6b5a4-17f7fd21fd4d4447","8f44c0a32c4dc1a-17d7fd2510cead53"]},"geometry":{"type":"LineString","coordinates":[[-83.6108207,32.860249200000005],[-83.6108257,32.8598572]]},"id":"8944c0a32c7ffff-17df7d2380515c38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c6ab80-17bf7d1fe148ff7f","8f44c0a32c6b5a4-17f7fd21fd4d4447"]},"geometry":{"type":"LineString","coordinates":[[-83.6108257,32.8598572],[-83.61082900000001,32.859591]]},"id":"8a44c0a32c6ffff-179fbd20e0120820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212686d-17ff780330dd1279","8f44c0a328998e6-17f737f90fca13ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6129229,32.8603015],[-83.6129392,32.8598531]]},"id":"8844c0a329fffff-17ff77fe26ac4aef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61294000000001,32.859832100000006]},"id":"8f44c0a3289981c-17d737f8802461dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3289981c-17d737f8802461dd","8f44c0a328998e6-17f737f90fca13ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6129392,32.8598531],[-83.61294000000001,32.859832100000006]]},"id":"8e44c0a3289981f-17dfb7f8cf526e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3289d0c3-17bff7f32c8fad66","8f44c0a3289981c-17d737f8802461dd"]},"geometry":{"type":"LineString","coordinates":[[-83.61294000000001,32.859832100000006],[-83.61294860000001,32.8595965]]},"id":"8a44c0a3289ffff-179f77f5da31a400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32899c81-17dff88a39a86e66","8f44c0a3289981c-17d737f8802461dd"]},"geometry":{"type":"LineString","coordinates":[[-83.61294000000001,32.859832100000006],[-83.6127069,32.859827]]},"id":"8b44c0a32899fff-17d7b84153e89c87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61226950000001,32.8598173]},"id":"8f44c0a3289aa4c-17dff99b9526d4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32899c81-17dff88a39a86e66","8f44c0a3289aa4c-17dff99b9526d4cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6127069,32.859827],[-83.61226950000001,32.8598173]]},"id":"8a44c0a3289ffff-17dff912e08b4c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6116224,32.8598026]},"id":"8f44c0a32c69165-17d7bb300de03d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c69165-17d7bb300de03d3c","8f44c0a3289aa4c-17dff99b9526d4cb"]},"geometry":{"type":"LineString","coordinates":[[-83.61226950000001,32.8598173],[-83.6116224,32.8598026]]},"id":"8744c0a32ffffff-17d77a65cc039928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61150520000001,32.8598005]},"id":"8f44c0a32c691a8-17bf7b79465e143e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c69165-17d7bb300de03d3c","8f44c0a32c691a8-17bf7b79465e143e"]},"geometry":{"type":"LineString","coordinates":[[-83.6116224,32.8598026],[-83.61150520000001,32.8598005]]},"id":"8c44c0a32c691ff-17bffb54a9f73a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c691a8-17bf7b79465e143e","8f44c0a32c6d68d-17bf7b7946dafacf"]},"geometry":{"type":"LineString","coordinates":[[-83.61150520000001,32.8598005],[-83.61150520000001,32.859589500000006]]},"id":"8a44c0a32c6ffff-17ff7b794cc4a895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c69561-17bfbba7ab62b646","8f44c0a32c691a8-17bf7b79465e143e"]},"geometry":{"type":"LineString","coordinates":[[-83.61150520000001,32.8598005],[-83.61143100000001,32.8598011]]},"id":"8b44c0a32c69fff-17bfbb90785497a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c6b5a4-17f7fd21fd4d4447","8f44c0a32c69561-17bfbba7ab62b646"]},"geometry":{"type":"LineString","coordinates":[[-83.61143100000001,32.8598011],[-83.61112390000001,32.859803500000005],[-83.6110769,32.8598288],[-83.6110374,32.8598589],[-83.6108257,32.8598572]]},"id":"8a44c0a32c6ffff-17df3c65bfeb4e9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3289b785-179f79b7386309a7","8f44c0a3289aa4c-17dff99b9526d4cb"]},"geometry":{"type":"LineString","coordinates":[[-83.61226950000001,32.8598173],[-83.6122665,32.8601581],[-83.6122253,32.860157300000004]]},"id":"8a44c0a3289ffff-17bff99e0f023e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3289b785-179f79b7386309a7","8f44c0a32134b8c-179f3a2943b647fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6122253,32.860157300000004],[-83.61204280000001,32.8601539]]},"id":"8944c0a3213ffff-179f79f03b1e0005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32134b8c-179f3a2943b647fc","8f44c0a32134199-179fbaae2574ce9b"]},"geometry":{"type":"LineString","coordinates":[[-83.61204280000001,32.8601539],[-83.6118302,32.8601499]]},"id":"8b44c0a32134fff-179ffa6bbddd5413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32134199-179fbaae2574ce9b","8f44c0a321344b5-17977b2d6a185744"]},"geometry":{"type":"LineString","coordinates":[[-83.6118302,32.8601499],[-83.61162660000001,32.8601461]]},"id":"8b44c0a32134fff-179fbaedcd6769ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c69165-17d7bb300de03d3c","8f44c0a321344b5-17977b2d6a185744"]},"geometry":{"type":"LineString","coordinates":[[-83.61162660000001,32.8601461],[-83.6116224,32.8598026]]},"id":"8744c0a32ffffff-17bf3b2ebe23b2d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100893,32.8595861]},"id":"8f44c0a32c41cac-17bf7eee37aedbe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6100777,32.8602075]},"id":"8f44c0a32c4e0e2-17bfbef570d79076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c41cac-17bf7eee37aedbe6","8f44c0a32c4e0e2-17bfbef570d79076"]},"geometry":{"type":"LineString","coordinates":[[-83.6100893,32.8595861],[-83.6100777,32.8602075]]},"id":"8944c0a32c7ffff-17ffbef1dba47256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60974200000001,32.859583900000004]},"id":"8f44c0a32c406e2-17b7ffc74146cf11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4e0e2-17bfbef570d79076","8f44c0a32c406e2-17b7ffc74146cf11"]},"geometry":{"type":"LineString","coordinates":[[-83.6100777,32.8602075],[-83.60973960000001,32.860203600000006],[-83.60974200000001,32.859583900000004]]},"id":"8944c0a32c7ffff-17bf7fa2f7bc4260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.610263,32.8602016]},"id":"8f44c0a32c4ea1b-17bf3e81aa8f28e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4e34c-1797be81a1c82307","8f44c0a32c4ea1b-17bf3e81aa8f28e0"]},"geometry":{"type":"LineString","coordinates":[[-83.610263,32.8603147],[-83.610263,32.8602016]]},"id":"8b44c0a32c4efff-17df7e81ab00ffe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4e0e2-17bfbef570d79076","8f44c0a32c4ea1b-17bf3e81aa8f28e0"]},"geometry":{"type":"LineString","coordinates":[[-83.610263,32.8602016],[-83.6100777,32.8602075]]},"id":"8b44c0a32c4efff-17bffebb959865e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32142d06-17b7f49b401915cb","8f44c0a32152851-17b737508ffb5c2e"]},"geometry":{"type":"LineString","coordinates":[[-83.61320880000001,32.863873600000005],[-83.61428430000001,32.8640258],[-83.61431800000001,32.863854100000005]]},"id":"8944c0a3217ffff-17dfb5d05450dfa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a321464ed-17bfb487604bc243","8f44c0a32142d06-17b7f49b401915cb"]},"geometry":{"type":"LineString","coordinates":[[-83.61431800000001,32.863854100000005],[-83.6143498,32.863692]]},"id":"8a44c0a32147fff-17f7349154f992b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a321464ed-17bfb487604bc243","8f44c0a32146ca8-17df347121d887b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6143498,32.863692],[-83.6143854,32.863510600000005]]},"id":"8b44c0a32146fff-1797f47c4ea3ac84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32173b41-17dff45abca0f3a3","8f44c0a32146ca8-17df347121d887b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6143854,32.863510600000005],[-83.6144213,32.8633279]]},"id":"8944c0a3217ffff-17973465f9ba0d0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61451650000001,32.8631619]},"id":"8f44c0a32171575-17f7341f3c8c604d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32173b41-17dff45abca0f3a3","8f44c0a32171575-17f7341f3c8c604d"]},"geometry":{"type":"LineString","coordinates":[[-83.6144213,32.8633279],[-83.61442910000001,32.8632879],[-83.61451650000001,32.8631619]]},"id":"8b44c0a32171fff-17b77440c987e6a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32171d26-17ff73f7961ccc77","8f44c0a32171575-17f7341f3c8c604d"]},"geometry":{"type":"LineString","coordinates":[[-83.61451650000001,32.8631619],[-83.6145465,32.8631187],[-83.61457990000001,32.862971900000005]]},"id":"8b44c0a32171fff-17bfb4072e7c7f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6146193,32.862798600000005]},"id":"8f44c0a32175471-179733def14b6a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32171d26-17ff73f7961ccc77","8f44c0a32175471-179733def14b6a31"]},"geometry":{"type":"LineString","coordinates":[[-83.61457990000001,32.862971900000005],[-83.6146193,32.862798600000005]]},"id":"8a44c0a32177fff-17d773eb4ae0a416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32175c06-17b7f3c5a93e0882","8f44c0a32175471-179733def14b6a31"]},"geometry":{"type":"LineString","coordinates":[[-83.6146193,32.862798600000005],[-83.6146598,32.8626206]]},"id":"8b44c0a32175fff-17dfb3d25be77370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328db794-13bff3aaa95d8f29","8f44c0a32175c06-17b7f3c5a93e0882"]},"geometry":{"type":"LineString","coordinates":[[-83.6146598,32.8626206],[-83.6146736,32.8625599],[-83.614703,32.8624287]]},"id":"8944c0a3217ffff-13f7f3b8114af80b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328db794-13bff3aaa95d8f29","8f44c0a328dbcd2-13d7739326b7e3ba"]},"geometry":{"type":"LineString","coordinates":[[-83.614703,32.8624287],[-83.6147406,32.8622614]]},"id":"8b44c0a328dbfff-13f7b39ee9c88a44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328dbcd2-13d7739326b7e3ba","8f44c0a328daa61-13df737873f7fc59"]},"geometry":{"type":"LineString","coordinates":[[-83.6147406,32.8622614],[-83.6147833,32.8620709]]},"id":"8a44c0a328dffff-1397f385d9c34675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328daa61-13df737873f7fc59","8f44c0a328d8423-13dff35fc96e8feb"]},"geometry":{"type":"LineString","coordinates":[[-83.6147833,32.8620709],[-83.61481260000001,32.8619403],[-83.6148228,32.8618894]]},"id":"8a44c0a328dffff-1397b36bddb4df36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328d8db1-13f77347f9f3014e","8f44c0a328d8423-13dff35fc96e8feb"]},"geometry":{"type":"LineString","coordinates":[[-83.6148228,32.8618894],[-83.61486090000001,32.861699800000004]]},"id":"8a44c0a328dffff-139fb353efdb7c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328dc4f3-13f7b33185bed824","8f44c0a328d8db1-13f77347f9f3014e"]},"geometry":{"type":"LineString","coordinates":[[-83.61486090000001,32.861699800000004],[-83.61489680000001,32.861521]]},"id":"8a44c0a328dffff-13bfb33cb196ed10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212d732-13973540054ce29d","8f44c0a3212dc0b-1397f52c20b2151a"]},"geometry":{"type":"LineString","coordinates":[[-83.6140862,32.861575800000004],[-83.61409610000001,32.8616295],[-83.6140905,32.8616876],[-83.6140544,32.8617585]]},"id":"8b44c0a3212dfff-13df752d7fec2c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328da4a6-139f34b7af5b123f","8f44c0a3212d732-13973540054ce29d"]},"geometry":{"type":"LineString","coordinates":[[-83.6140544,32.8617585],[-83.61397570000001,32.861913],[-83.6142792,32.8619676],[-83.6142726,32.8620001]]},"id":"8a44c0a3212ffff-13f775240b73bcb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32129a08-139ff4cd42a93497","8f44c0a328da4a6-139f34b7af5b123f"]},"geometry":{"type":"LineString","coordinates":[[-83.6142726,32.8620001],[-83.614238,32.8621708]]},"id":"8a44c0a3212ffff-13d774c278e58c9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32129a08-139ff4cd42a93497","8f44c0a32129ac9-13b7f4d56fefe49a"]},"geometry":{"type":"LineString","coordinates":[[-83.614238,32.8621708],[-83.614225,32.8622351]]},"id":"8c44c0a32129bff-139ff4d152483baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32129268-13fff4e234b0cc24","8f44c0a32129ac9-13b7f4d56fefe49a"]},"geometry":{"type":"LineString","coordinates":[[-83.614225,32.8622351],[-83.6142045,32.862335800000004]]},"id":"8844c0a321fffff-13d774dbd5b36fbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61411840000001,32.8623222]},"id":"8f44c0a321292e6-13f77518037f5e7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32129268-13fff4e234b0cc24","8f44c0a321292e6-13f77518037f5e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6142045,32.862335800000004],[-83.61411840000001,32.8623222]]},"id":"8c44c0a321293ff-13ffb4fd191a589f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212ba0d-13d775ef064b640f","8f44c0a321292e6-13f77518037f5e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.61411840000001,32.8623222],[-83.61377440000001,32.862267700000004]]},"id":"8944c0a3213ffff-13d7758383694309"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6137102,32.862257500000005]},"id":"8f44c0a3212baac-13bff617248c6f48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212ba0d-13d775ef064b640f","8f44c0a3212baac-13bff617248c6f48"]},"geometry":{"type":"LineString","coordinates":[[-83.61377440000001,32.862267700000004],[-83.6137102,32.862257500000005]]},"id":"8c44c0a3212bbff-13d7360313f6cbd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3212b504-13ff36db201faa2f","8f44c0a3212baac-13bff617248c6f48"]},"geometry":{"type":"LineString","coordinates":[[-83.6137102,32.862257500000005],[-83.6136939,32.8622549],[-83.6133966,32.862149]]},"id":"8b44c0a3212bfff-139ff67960a714cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a321562ad-17d7f738ea87b251","8f44c0a32152851-17b737508ffb5c2e"]},"geometry":{"type":"LineString","coordinates":[[-83.61320880000001,32.863873600000005],[-83.61324660000001,32.8636988]]},"id":"8a44c0a32157fff-17ff7744b16ec6be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6132791,32.863538600000005]},"id":"8f44c0a32156148-17dfb724930d1d4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32156148-17dfb724930d1d4e","8f44c0a321562ad-17d7f738ea87b251"]},"geometry":{"type":"LineString","coordinates":[[-83.61324660000001,32.8636988],[-83.6132791,32.863538600000005]]},"id":"8b44c0a32156fff-1797b72eba1f5ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134078,32.8630979]},"id":"8f44c0a3210916b-17df36d424d84e8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32156148-17dfb724930d1d4e","8f44c0a3210916b-17df36d424d84e8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6132791,32.863538600000005],[-83.61330690000001,32.8634203],[-83.6134078,32.8630979]]},"id":"8944c0a3217ffff-17d776fe57629ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134442,32.862982800000005]},"id":"8f44c0a3210980d-179776bd67ce5a65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3210916b-17df36d424d84e8f","8f44c0a3210980d-179776bd67ce5a65"]},"geometry":{"type":"LineString","coordinates":[[-83.6134078,32.8630979],[-83.6134442,32.862982800000005]]},"id":"8b44c0a32109fff-17bf76c8c4a37a78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3210980d-179776bd67ce5a65","8f44c0a32108328-17bfb79e3feeed8a"]},"geometry":{"type":"LineString","coordinates":[[-83.6134442,32.862982800000005],[-83.6130845,32.862866700000005]]},"id":"8a44c0a3210ffff-17f7372dc3afd5ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3210d353-179f7673b319920c","8f44c0a3210980d-179776bd67ce5a65"]},"geometry":{"type":"LineString","coordinates":[[-83.6134442,32.862982800000005],[-83.6135174,32.8629343],[-83.61356210000001,32.862810200000006]]},"id":"8a44c0a3210ffff-17d7b6906c2e7bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61362430000001,32.8626376]},"id":"8f44c0a3210db1e-17bfb64cd9107038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3210d353-179f7673b319920c","8f44c0a3210db1e-17bfb64cd9107038"]},"geometry":{"type":"LineString","coordinates":[[-83.61356210000001,32.862810200000006],[-83.61362430000001,32.8626376]]},"id":"8b44c0a3210dfff-17f77660400c5e46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3210db1e-17bfb64cd9107038","8f44c0a3212baac-13bff617248c6f48"]},"geometry":{"type":"LineString","coordinates":[[-83.61362430000001,32.8626376],[-83.61364800000001,32.862571700000004],[-83.6137102,32.862257500000005]]},"id":"8944c0a3213ffff-13b7762f6aa6bbbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66577910000001,32.876663900000004]},"id":"8f44c0a31b48022-17fef6f81fb81b48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b48022-17fef6f81fb81b48","8f44c0a31b4aaac-17d6b7c702a7c85b"]},"geometry":{"type":"LineString","coordinates":[[-83.66544800000001,32.8768097],[-83.66577910000001,32.876663900000004]]},"id":"8a44c0a31b4ffff-179eb75f88880fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6662647,32.8764502]},"id":"8f44c0a31b4d890-17f7f5c891318124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b48022-17fef6f81fb81b48","8f44c0a31b4d890-17f7f5c891318124"]},"geometry":{"type":"LineString","coordinates":[[-83.66577910000001,32.876663900000004],[-83.6662647,32.8764502]]},"id":"8a44c0a31b4ffff-17beb66054b994ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666301,32.8762893]},"id":"8f44c0a226b6c32-1796f4e4355b3035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b4d890-17f7f5c891318124","8f44c0a226b6c32-1796f4e4355b3035"]},"geometry":{"type":"LineString","coordinates":[[-83.6662647,32.8764502],[-83.6666301,32.8762893]]},"id":"8944c0a31b7ffff-17b7b5566b8a44f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66711430000001,32.8758797]},"id":"8f44c0a2279a58c-1796f3b596d5f804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2279a58c-1796f3b596d5f804","8f44c0a226b6c32-1796f4e4355b3035"]},"geometry":{"type":"LineString","coordinates":[[-83.6666301,32.8762893],[-83.6672078,32.8760351],[-83.66711430000001,32.8758797]]},"id":"8844c0a227fffff-1796f40de21d58d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66702330000001,32.875728200000005]},"id":"8f44c0a31b6d38e-17b6b3ee7417d9b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6d38e-17b6b3ee7417d9b6","8f44c0a2279a58c-1796f3b596d5f804"]},"geometry":{"type":"LineString","coordinates":[[-83.66711430000001,32.8758797],[-83.66702330000001,32.875728200000005]]},"id":"8a44c0a31b6ffff-17d7b3d207581ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6d38e-17b6b3ee7417d9b6","8f44c0a31b6d182-13b7f42fe342ccd1"]},"geometry":{"type":"LineString","coordinates":[[-83.66702330000001,32.875728200000005],[-83.6669186,32.8755541]]},"id":"8b44c0a31b6dfff-13fff40f2121ce54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6dd94-13dff46d3291dbed","8f44c0a31b6d182-13b7f42fe342ccd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6669186,32.8755541],[-83.6668205,32.875390800000005]]},"id":"8a44c0a31b6ffff-1396f44e9cbeb06b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6dd94-13dff46d3291dbed","8f44c0a31b6cb96-13fff4a82493feef"]},"geometry":{"type":"LineString","coordinates":[[-83.6668205,32.875390800000005],[-83.6667262,32.875234]]},"id":"8b44c0a31b6cfff-139ef48ab84df3c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6666649,32.8751321]},"id":"8f44c0a31b6c8a0-13bfb4ce7e48ade5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6c8a0-13bfb4ce7e48ade5","8f44c0a31b6cb96-13fff4a82493feef"]},"geometry":{"type":"LineString","coordinates":[[-83.6667262,32.875234],[-83.6666649,32.8751321]]},"id":"8b44c0a31b6cfff-13dff4bb583721b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661256,32.8753729]},"id":"8f44c0a31b6e033-13d6b61f822a780b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6c8a0-13bfb4ce7e48ade5","8f44c0a31b6e033-13d6b61f822a780b"]},"geometry":{"type":"LineString","coordinates":[[-83.6666649,32.8751321],[-83.6661256,32.8753729]]},"id":"8a44c0a31b6ffff-13fef5770451bd41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661052,32.8761497]},"id":"8f44c0a31b6b49c-17bfb62c4f0dd307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6b49c-17bfb62c4f0dd307","8f44c0a31b6e033-13d6b61f822a780b"]},"geometry":{"type":"LineString","coordinates":[[-83.6661256,32.8753729],[-83.6661079,32.8753808],[-83.6660198,32.875363],[-83.6655439,32.875576200000005],[-83.6655016,32.8756798],[-83.6656567,32.8758959],[-83.665903,32.8758294],[-83.6661052,32.8761497]]},"id":"8944c0a31b7ffff-1796b6e9f2676515"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665582,32.876381800000004]},"id":"8f44c0a31b4ea1e-17beb7734688d00d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6b49c-17bfb62c4f0dd307","8f44c0a31b4ea1e-17beb7734688d00d"]},"geometry":{"type":"LineString","coordinates":[[-83.6661052,32.8761497],[-83.665582,32.876381800000004]]},"id":"8944c0a31b7ffff-17f6b6cfcfea811a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b5d80c-179fb8b9f399390e","8f44c0a31b4ea1e-17beb7734688d00d"]},"geometry":{"type":"LineString","coordinates":[[-83.665582,32.876381800000004],[-83.66546930000001,32.8764318],[-83.6653213,32.8762453],[-83.66505930000001,32.8763345]]},"id":"8944c0a31b7ffff-179eb80fcbe2e0a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66568480000001,32.876528900000004]},"id":"8f44c0a31b48c02-1796b7330cf09b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b48022-17fef6f81fb81b48","8f44c0a31b48c02-1796b7330cf09b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.66577910000001,32.876663900000004],[-83.66568480000001,32.876528900000004]]},"id":"8b44c0a31b48fff-17d6f7158a717bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b48c02-1796b7330cf09b8a","8f44c0a31b4ea1e-17beb7734688d00d"]},"geometry":{"type":"LineString","coordinates":[[-83.66568480000001,32.876528900000004],[-83.665582,32.876381800000004]]},"id":"8a44c0a31b4ffff-17feb753275f6c9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74853300000001,32.8721556]},"id":"8f44c0b5284e1aa-13fdeceee86fe992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5284364c-13b7fdd216ba9727","8f44c0b5284e1aa-13fdeceee86fe992"]},"geometry":{"type":"LineString","coordinates":[[-83.7481695,32.872069100000004],[-83.74853300000001,32.8721556]]},"id":"8944c0b5287ffff-13dfed607582caef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5284e1aa-13fdeceee86fe992","8f44c0b5284eb4a-1395ec3ae3f4edf8"]},"geometry":{"type":"LineString","coordinates":[[-83.74853300000001,32.8721556],[-83.748821,32.872224200000005]]},"id":"8b44c0b5284efff-13fffc94e251caf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5284e1aa-13fdeceee86fe992","8f44c0b5284e623-13d5ed134131e46e"]},"geometry":{"type":"LineString","coordinates":[[-83.74847480000001,32.8723216],[-83.74853300000001,32.8721556]]},"id":"8b44c0b5284efff-139ded011648c532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52ba50ac-17f7ecaa032c48ea","8f44c0b5284b116-17b7fc5149955883"]},"geometry":{"type":"LineString","coordinates":[[-83.7487852,32.872886900000005],[-83.7486507,32.8730892],[-83.7486432,32.873400600000004]]},"id":"8844c0b52bfffff-17dfec943c9fc035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b528cd2c6-17dff2dcf9ad5ac1","8f44c0b52ba50ac-17f7ecaa032c48ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7486432,32.873400600000004],[-83.74610410000001,32.8733692]]},"id":"8744c0b52ffffff-17fdffc37620d6f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52ba50ac-17f7ecaa032c48ea","8f44c0b52ba5ab2-17f7fc57a76cc4ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7486432,32.873400600000004],[-83.74877500000001,32.8734003]]},"id":"8c44c0b52ba51ff-17f7fc80dcd35983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52b16654-1795fb928289e044","8f44c0b52ba5ab2-17f7fc57a76cc4ca"]},"geometry":{"type":"LineString","coordinates":[[-83.74877500000001,32.8734003],[-83.7490904,32.8734547]]},"id":"8844c0b52bfffff-1795fbf517d3c263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52b16654-1795fb928289e044","8f44c0b52b0654e-17fde87461220c39"]},"geometry":{"type":"LineString","coordinates":[[-83.7490904,32.8734547],[-83.7495409,32.873564800000004],[-83.7498832,32.8735395],[-83.7503674,32.8733828]]},"id":"8944c0b52b3ffff-17b7ea016215fce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75108370000001,32.8727107]},"id":"8f44c0b52b22d48-17d5f6b4b79415bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52b0654e-17fde87461220c39","8f44c0b52b22d48-17d5f6b4b79415bf"]},"geometry":{"type":"LineString","coordinates":[[-83.7503674,32.8733828],[-83.7505161,32.8733346],[-83.75083190000001,32.873301500000004],[-83.75099680000001,32.8732174],[-83.7510518,32.873144],[-83.7510716,32.8730375],[-83.75108370000001,32.8727107]]},"id":"8944c0b52b3ffff-17ddf743d417b1dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50498215-1395e6d4c3fd53d8","8f44c0b52b22d48-17d5f6b4b79415bf"]},"geometry":{"type":"LineString","coordinates":[[-83.75108370000001,32.8727107],[-83.7511135,32.8719133],[-83.7510324,32.871817]]},"id":"8744c0b52ffffff-13b5f6ad90ba520a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50498215-1395e6d4c3fd53d8","8f44c0b5049a46c-139fe86c33b97623"]},"geometry":{"type":"LineString","coordinates":[[-83.7510324,32.871817],[-83.7503805,32.871799200000005]]},"id":"8a44c0b5049ffff-1395f7a086a71652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b5049a46c-139fe86c33b97623","8f44c0b52b22d48-17d5f6b4b79415bf"]},"geometry":{"type":"LineString","coordinates":[[-83.7503805,32.871799200000005],[-83.75035240000001,32.8724089],[-83.7504045,32.8724761],[-83.75079140000001,32.872691700000004],[-83.75108370000001,32.8727107]]},"id":"8744c0b52ffffff-13fff7feb93f59d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62024070000001,32.852817900000005]},"id":"8f44c0a362f4646-17b7362594a3d070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a362f421b-17b775d7490caef2","8f44c0a362f4646-17b7362594a3d070"]},"geometry":{"type":"LineString","coordinates":[[-83.620366,32.8528247],[-83.62024070000001,32.852817900000005]]},"id":"8b44c0a362f4fff-17b775fe71ab953e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61949560000001,32.8530114]},"id":"8f44c0a3628d34e-17bf27f74f1d4e94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a362f4646-17b7362594a3d070","8f44c0a3628d34e-17bf27f74f1d4e94"]},"geometry":{"type":"LineString","coordinates":[[-83.62024070000001,32.852817900000005],[-83.6200768,32.8528089],[-83.61985130000001,32.852758300000005],[-83.6196803,32.8527469],[-83.61949560000001,32.8530114]]},"id":"8844c0a363fffff-17b727293146d250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3628d34e-17bf27f74f1d4e94","8f44c0a3628d726-17ff28891f94e499"]},"geometry":{"type":"LineString","coordinates":[[-83.61949560000001,32.8530114],[-83.6192623,32.8529026]]},"id":"8b44c0a3628dfff-179f28403aed0741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362f06e4-17d7368d38b0fb6b","8f44c0a3628d34e-17bf27f74f1d4e94"]},"geometry":{"type":"LineString","coordinates":[[-83.61949560000001,32.8530114],[-83.6198902,32.8531813],[-83.6200749,32.8532515]]},"id":"8844c0a363fffff-17ffe742f6cc326a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362f4646-17b7362594a3d070","8f44c0a362f06e4-17d7368d38b0fb6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6200749,32.8532515],[-83.62024070000001,32.852817900000005]]},"id":"8a44c0a362f7fff-17bfb6596327c673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3621a256-13bff57332be3850","8f44c0a3621a296-139fb5bee24ff76a"]},"geometry":{"type":"LineString","coordinates":[[-83.6205261,32.852401300000004],[-83.620405,32.8523705]]},"id":"8b44c0a3621afff-13b73599182a6bc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3621a296-139fb5bee24ff76a","8f44c0a362a9349-13f7a6738c9dc7e4"]},"geometry":{"type":"LineString","coordinates":[[-83.620405,32.8523705],[-83.6203703,32.852494],[-83.62011600000001,32.8524906]]},"id":"8844c0a363fffff-13df2605cd74ddce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61993340000001,32.8523122]},"id":"8f44c0a362a9006-13f726e5ac80c71c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a362a9349-13f7a6738c9dc7e4","8f44c0a362a9006-13f726e5ac80c71c"]},"geometry":{"type":"LineString","coordinates":[[-83.62011600000001,32.8524906],[-83.6199222,32.852488],[-83.61993340000001,32.8523122]]},"id":"8844c0a363fffff-13df66cb4f7b8b5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b534a0059-13f7f1d2f95d094c","8f44c0b534a02ac-139ff1cedd04c220"]},"geometry":{"type":"LineString","coordinates":[[-83.74652970000001,32.8909867],[-83.7465363,32.891078]]},"id":"8b44c0b534a0fff-13fff1d0e0c1acdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b534a3641-13bdf255cb8efa0e","8f44c0b534a02ac-139ff1cedd04c220"]},"geometry":{"type":"LineString","coordinates":[[-83.7465363,32.891078],[-83.746548,32.8915537],[-83.74654340000001,32.8915853],[-83.7465057,32.891595800000005],[-83.7464073,32.891573],[-83.7463204,32.8915352]]},"id":"8944c0b534bffff-13fff1e1217951a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b53588cc2-179ff0719a2f30b6","8f44c0b5354b36d-1795e1a3adca3d69"]},"geometry":{"type":"LineString","coordinates":[[-83.74709510000001,32.889848300000004],[-83.74739600000001,32.889964],[-83.748643,32.890402],[-83.751985,32.891613],[-83.752662,32.891877],[-83.75315900000001,32.892059]]},"id":"8844c0b535fffff-13ddf908c611a384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5354b36d-1795e1a3adca3d69","8f44c0b53082964-17ddddd551b86ce8"]},"geometry":{"type":"LineString","coordinates":[[-83.75315900000001,32.892059],[-83.7547179,32.8926096]]},"id":"8744c0b53ffffff-17bdffbc7b18fc3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b53082964-17ddddd551b86ce8","8f44c0b530aa392-17d7fb1443504040"]},"geometry":{"type":"LineString","coordinates":[[-83.7547179,32.8926096],[-83.755846,32.893015000000005]]},"id":"8944c0b530bffff-17d7fc74cbb42076"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b530aa34b-17fdfaae6f7ab17d","8f44c0b530aa392-17d7fb1443504040"]},"geometry":{"type":"LineString","coordinates":[[-83.755846,32.893015000000005],[-83.756009,32.893071]]},"id":"8c44c0b530aa3ff-17f7fae156e4edfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b5304d0ab-13d5cc3d8820726b","8f44c0b530aa34b-17fdfaae6f7ab17d"]},"geometry":{"type":"LineString","coordinates":[[-83.756009,32.893071],[-83.76103400000001,32.894893],[-83.76192400000001,32.895234]]},"id":"8744c0b53ffffff-139dd3745175dab9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619466,32.845093]},"id":"8f44c0a36071499-13d72809cdaa7c8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61943860000001,32.8452852]},"id":"8f44c0a36073ac9-13df681ae6428b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36071499-13d72809cdaa7c8b","8f44c0a36073ac9-13df681ae6428b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.619466,32.845093],[-83.61943860000001,32.8452852]]},"id":"8b44c0a36073fff-139738125f7c5486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61941,32.8454859]},"id":"8f44c0a36046402-13dfb82ccea742ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36046402-13dfb82ccea742ad","8f44c0a36073ac9-13df681ae6428b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.61943860000001,32.8452852],[-83.61941,32.8454859]]},"id":"8944c0a3607ffff-139f2823d0c09e09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6193827,32.845677800000004]},"id":"8f44c0a36055a6a-13d7a83dd57bfa4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36046402-13dfb82ccea742ad","8f44c0a36055a6a-13d7a83dd57bfa4f"]},"geometry":{"type":"LineString","coordinates":[[-83.61941,32.8454859],[-83.6193827,32.845677800000004]]},"id":"8a44c0a36047fff-139fb8355cec6ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36055a6a-13d7a83dd57bfa4f","8f44c0a36042cf6-1397a8498ace7279"]},"geometry":{"type":"LineString","coordinates":[[-83.6193827,32.845677800000004],[-83.619364,32.8458088]]},"id":"8a44c0a36047fff-13ffb843bf7054b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36042573-13d7f8508af94847","8f44c0a36042cf6-1397a8498ace7279"]},"geometry":{"type":"LineString","coordinates":[[-83.619364,32.8458088],[-83.6193528,32.8458877]]},"id":"8b44c0a36042fff-13bf384d001c433d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6193088,32.8461542]},"id":"8f44c0a3605cd2a-13ff686c0a78d3b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36042573-13d7f8508af94847","8f44c0a3605cd2a-13ff686c0a78d3b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6193528,32.8458877],[-83.6193088,32.8461542]]},"id":"8944c0a3607ffff-139f285e49480ab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61927030000001,32.8463693]},"id":"8f44c0a3605c094-17f7f88419959b1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605cd2a-13ff686c0a78d3b3","8f44c0a3605c094-17f7f88419959b1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6193088,32.8461542],[-83.61927030000001,32.8463693]]},"id":"8b44c0a3605cfff-17b7a87815288660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6192254,32.8466589]},"id":"8f44c0a36058c64-17bff8a02f217ac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605c094-17f7f88419959b1d","8f44c0a36058c64-17bff8a02f217ac8"]},"geometry":{"type":"LineString","coordinates":[[-83.61927030000001,32.8463693],[-83.6192254,32.8466589]]},"id":"8a44c0a3605ffff-17df7892119e81d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61916810000001,32.8467967]},"id":"8f44c0a360580b1-17fff8c3f9fc186e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36058c64-17bff8a02f217ac8","8f44c0a360580b1-17fff8c3f9fc186e"]},"geometry":{"type":"LineString","coordinates":[[-83.6192254,32.8466589],[-83.61921840000001,32.846701],[-83.61916810000001,32.8467967]]},"id":"8b44c0a36058fff-17d7f8af257868af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61903840000001,32.8467818]},"id":"8f44c0a36058402-17f7a9150d8b020b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36058402-17f7a9150d8b020b","8f44c0a360580b1-17fff8c3f9fc186e"]},"geometry":{"type":"LineString","coordinates":[[-83.61916810000001,32.8467967],[-83.61903840000001,32.8467818]]},"id":"8b44c0a36058fff-17ff78ec770c8a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61881530000001,32.8467579]},"id":"8f44c0a3605a8a0-17f7b9a07e5dbcc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36058402-17f7a9150d8b020b","8f44c0a3605a8a0-17f7b9a07e5dbcc4"]},"geometry":{"type":"LineString","coordinates":[[-83.61903840000001,32.8467818],[-83.61881530000001,32.8467579]]},"id":"8a44c0a3605ffff-17ff295ab8945861"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61857880000001,32.8467289]},"id":"8f44c0a360ed36b-17d7ba3443a844e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ed36b-17d7ba3443a844e3","8f44c0a3605a8a0-17f7b9a07e5dbcc4"]},"geometry":{"type":"LineString","coordinates":[[-83.61881530000001,32.8467579],[-83.618713,32.846744300000005],[-83.61857880000001,32.8467289]]},"id":"8944c0a3607ffff-17df79ea54268367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6184643,32.8467032]},"id":"8f44c0a360ed236-17d7aa7bda091e3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ed36b-17d7ba3443a844e3","8f44c0a360ed236-17d7aa7bda091e3e"]},"geometry":{"type":"LineString","coordinates":[[-83.61857880000001,32.8467289],[-83.61850770000001,32.8467207],[-83.6184643,32.8467032]]},"id":"8c44c0a360ed3ff-17dffa58afc09816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181361,32.8463496]},"id":"8f44c0a360ec31c-17ffab48f772d0fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ed236-17d7aa7bda091e3e","8f44c0a360ec31c-17ffab48f772d0fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6184643,32.8467032],[-83.61842390000001,32.8466869],[-83.6181361,32.8463496]]},"id":"8a44c0a360effff-17dffae5d4229bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61794660000001,32.8461352]},"id":"8f44c0a360ecce2-13f7abbf64d71dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ecce2-13f7abbf64d71dd6","8f44c0a360ec31c-17ffab48f772d0fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6181361,32.8463496],[-83.6180027,32.846200100000004],[-83.61794660000001,32.8461352]]},"id":"8b44c0a360ecfff-17b7bb846651968e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ecce2-13f7abbf64d71dd6","8f44c0a360e1ad0-139f2c07a5696604"]},"geometry":{"type":"LineString","coordinates":[[-83.61794660000001,32.8461352],[-83.61783100000001,32.8460016]]},"id":"8944c0a360fffff-13bfebe38d1734b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191386,32.8446887]},"id":"8f44c0a36070581-13df78d66b3b2c78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6189044,32.845035200000005]},"id":"8f44c0a3607229d-13b72968c8728813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3607229d-13b72968c8728813","8f44c0a36070581-13df78d66b3b2c78"]},"geometry":{"type":"LineString","coordinates":[[-83.6191386,32.8446887],[-83.61911140000001,32.8448389],[-83.6190713,32.8448854],[-83.6190035,32.844906200000004],[-83.61894190000001,32.8449243],[-83.6189203,32.8449631],[-83.6189044,32.845035200000005]]},"id":"8a44c0a36077fff-13dfe91786a01ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61887870000001,32.8452227]},"id":"8f44c0a360548cd-13bf3978dce0ccc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3607229d-13b72968c8728813","8f44c0a360548cd-13bf3978dce0ccc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6189044,32.845035200000005],[-83.61887870000001,32.8452227]]},"id":"8944c0a3607ffff-13ffa970d386a820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6188522,32.8454209]},"id":"8f44c0a36054231-13b739896b5d31ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36054231-13b739896b5d31ce","8f44c0a360548cd-13bf3978dce0ccc7"]},"geometry":{"type":"LineString","coordinates":[[-83.61887870000001,32.8452227],[-83.6188522,32.8454209]]},"id":"8b44c0a36054fff-13f72981149b64f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6188269,32.845610400000005]},"id":"8f44c0a3605086c-139fa99939258f9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36054231-13b739896b5d31ce","8f44c0a3605086c-139fa99939258f9f"]},"geometry":{"type":"LineString","coordinates":[[-83.6188522,32.8454209],[-83.6188269,32.845610400000005]]},"id":"8a44c0a36057fff-13df7991536af4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605086c-139fa99939258f9f","8f44c0a36050a1a-13ffe9a492785fec"]},"geometry":{"type":"LineString","coordinates":[[-83.6188269,32.845610400000005],[-83.6188087,32.845747]]},"id":"8b44c0a36050fff-13d7399eef640bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36050375-13b7f9ab32670870","8f44c0a36050a1a-13ffe9a492785fec"]},"geometry":{"type":"LineString","coordinates":[[-83.6188087,32.845747],[-83.6187981,32.8458271]]},"id":"8b44c0a36050fff-139ff9a7ec647570"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618723,32.8463137]},"id":"8f44c0a3605ecb1-17d739da220314c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36050375-13b7f9ab32670870","8f44c0a3605ecb1-17d739da220314c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6187981,32.8458271],[-83.618723,32.8463137]]},"id":"8a44c0a36057fff-13bf29c2be270418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ed36b-17d7ba3443a844e3","8f44c0a3605ecb1-17d739da220314c2"]},"geometry":{"type":"LineString","coordinates":[[-83.618723,32.8463137],[-83.6186898,32.8465292],[-83.61863620000001,32.8466249],[-83.61857880000001,32.8467289]]},"id":"8944c0a3607ffff-17d7e9fba288c29d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62070680000001,32.846356400000005]},"id":"8f44c0a3604c882-17ffe50245f70fcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3606a54b-13bf250b5b9092ee","8f44c0a3604c882-17ffe50245f70fcc"]},"geometry":{"type":"LineString","coordinates":[[-83.6206923,32.8460466],[-83.62074460000001,32.846138700000004],[-83.62070680000001,32.846356400000005]]},"id":"8944c0a3607ffff-179f64f7e80633ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6206758,32.8465354]},"id":"8f44c0a3604c0e3-17dfa515a2e959ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604c882-17ffe50245f70fcc","8f44c0a3604c0e3-17dfa515a2e959ef"]},"geometry":{"type":"LineString","coordinates":[[-83.62070680000001,32.846356400000005],[-83.6206758,32.8465354]]},"id":"8b44c0a3604cfff-17b7b50bf70db1f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620643,32.8467539]},"id":"8f44c0a36048832-17f7352a28291d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36048832-17f7352a28291d91","8f44c0a3604c0e3-17dfa515a2e959ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6206758,32.8465354],[-83.620643,32.8467539]]},"id":"8a44c0a3604ffff-17b7f51febe0e34d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62058540000001,32.8469647]},"id":"8f44c0a36048053-17fff54e2696cfa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36048053-17fff54e2696cfa8","8f44c0a36048832-17f7352a28291d91"]},"geometry":{"type":"LineString","coordinates":[[-83.620643,32.8467539],[-83.62058540000001,32.8469647]]},"id":"8b44c0a36048fff-17b7353c26a58483"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6204611,32.847127]},"id":"8f44c0a360486eb-17df659bd25e6002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36048053-17fff54e2696cfa8","8f44c0a360486eb-17df659bd25e6002"]},"geometry":{"type":"LineString","coordinates":[[-83.62058540000001,32.8469647],[-83.6204611,32.847127]]},"id":"8a44c0a3604ffff-179fb5750d57d0e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62002050000001,32.8475211]},"id":"8f44c0a363a4048-17d7b6af376ccee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360486eb-17df659bd25e6002","8f44c0a363a4048-17d7b6af376ccee1"]},"geometry":{"type":"LineString","coordinates":[[-83.6204611,32.847127],[-83.62043270000001,32.8471642],[-83.62020550000001,32.847390600000004],[-83.62002050000001,32.8475211]]},"id":"8844c0a363fffff-17d7661f6c827a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61948930000001,32.847756000000004]},"id":"8f44c0a363a6299-17d7a7fb3274209e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363a6299-17d7a7fb3274209e","8f44c0a363a4048-17d7b6af376ccee1"]},"geometry":{"type":"LineString","coordinates":[[-83.62002050000001,32.8475211],[-83.61989650000001,32.8475928],[-83.6196343,32.847705500000004],[-83.61948930000001,32.847756000000004]]},"id":"8a44c0a363a7fff-17972752823bb8ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61864030000001,32.8478797]},"id":"8f44c0a363b030d-13b7fa0ddf68d289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363b030d-13b7fa0ddf68d289","8f44c0a363a6299-17d7a7fb3274209e"]},"geometry":{"type":"LineString","coordinates":[[-83.61948930000001,32.847756000000004],[-83.6192467,32.8478629],[-83.61905420000001,32.8479082],[-83.6188848,32.8478921],[-83.61864030000001,32.8478797]]},"id":"8944c0a363bffff-139ff8ff7f04ea4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363b030d-13b7fa0ddf68d289","8f44c0a363b2cdd-17f7abc7cd6c26e7"]},"geometry":{"type":"LineString","coordinates":[[-83.61864030000001,32.8478797],[-83.6186179,32.8477704],[-83.6185346,32.847767000000005],[-83.6181809,32.847779],[-83.6181219,32.847796],[-83.61798780000001,32.847808],[-83.61793320000001,32.847801000000004]]},"id":"8a44c0a363b7fff-17ffaad366f7bf8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.619524,32.8474981]},"id":"8f44c0a363a6128-17b777e58f33e109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363a6299-17d7a7fb3274209e","8f44c0a363a6128-17b777e58f33e109"]},"geometry":{"type":"LineString","coordinates":[[-83.61948930000001,32.847756000000004],[-83.619524,32.8474981]]},"id":"8b44c0a363a6fff-1797f7f0627882c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61937250000001,32.8469197]},"id":"8f44c0a36058372-17dff844395f29bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36058372-17dff844395f29bd","8f44c0a360580b1-17fff8c3f9fc186e"]},"geometry":{"type":"LineString","coordinates":[[-83.61937250000001,32.8469197],[-83.619307,32.8468807],[-83.61916810000001,32.8467967]]},"id":"8b44c0a36058fff-17b7a8842dc2829d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18726303-17d7b4d921450713","8f44c0b18723689-13def4e289cdd9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6666478,32.8145688],[-83.6666328,32.8154087]]},"id":"8944c0b1873ffff-17deb4dddf9309e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18723255-13f7b437d9790709","8f44c0b18723689-13def4e289cdd9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6666328,32.8154087],[-83.66638130000001,32.8153973],[-83.66632460000001,32.815423800000005],[-83.6663099,32.8154855],[-83.6663099,32.8158065],[-83.6663498,32.8158523],[-83.6664317,32.8158876],[-83.6673487,32.815903500000005],[-83.6673865,32.8158753],[-83.66740750000001,32.815817100000004],[-83.66740750000001,32.8155172],[-83.6673823,32.8154855],[-83.6670591,32.8154837],[-83.6670004,32.815473100000006],[-83.6669059,32.815420200000005]]},"id":"8944c0b1873ffff-139ef4541c6d158c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669086,32.8152254]},"id":"8f44c0b18723aa6-13fff436228d1581"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18723255-13f7b437d9790709","8f44c0b18723aa6-13fff436228d1581"]},"geometry":{"type":"LineString","coordinates":[[-83.6669059,32.815420200000005],[-83.6669086,32.8152254]]},"id":"8b44c0b18723fff-13bef436f570ec8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66691060000001,32.8150757]},"id":"8f44c0b1872382e-139ef434e28ff643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18723aa6-13fff436228d1581","8f44c0b1872382e-139ef434e28ff643"]},"geometry":{"type":"LineString","coordinates":[[-83.6669086,32.8152254],[-83.66691060000001,32.8150757]]},"id":"8b44c0b18723fff-13bfb4358cdfa647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187246cc-17d6f430ae6e76fa","8f44c0b1872382e-139ef434e28ff643"]},"geometry":{"type":"LineString","coordinates":[[-83.66691060000001,32.8150757],[-83.6669174,32.8145733]]},"id":"8a44c0b18727fff-17f7f432cad8c832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1872382e-139ef434e28ff643","8f44c0b18721550-1397b3b5b43a0035"]},"geometry":{"type":"LineString","coordinates":[[-83.66691060000001,32.8150757],[-83.6671141,32.815083300000005]]},"id":"8a44c0b18727fff-1396b3f546c539b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66723680000001,32.8150879]},"id":"8f44c0b1872118d-1397f36909a5ed1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1872118d-1397f36909a5ed1d","8f44c0b18721550-1397b3b5b43a0035"]},"geometry":{"type":"LineString","coordinates":[[-83.6671141,32.815083300000005],[-83.66723680000001,32.8150879]]},"id":"8b44c0b18721fff-1396b38f67d8a791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18723aa6-13fff436228d1581","8f44c0b187213a8-13fef332bd771cdc"]},"geometry":{"type":"LineString","coordinates":[[-83.6669086,32.8152254],[-83.66732370000001,32.8152301]]},"id":"8a44c0b18727fff-13fff3b4723de639"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180d6a10-17f7f17e4c6e29aa","8f44c0b1872586e-17deb29fb7086159"]},"geometry":{"type":"LineString","coordinates":[[-83.6675589,32.8145858],[-83.6678823,32.8145915],[-83.66802200000001,32.814594]]},"id":"8844c0b181fffff-17deb20efc4c7475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180c4af2-1797bd2052439833","8f44c0b180d6a10-17f7f17e4c6e29aa"]},"geometry":{"type":"LineString","coordinates":[[-83.66802200000001,32.814594],[-83.669184,32.814633],[-83.6698107,32.8146489]]},"id":"8944c0b180fffff-17f7ff4f5e68699d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506dc0c8-13fdf65a03948aa1","8f44c0b53d668ab-13fdf5e56e893c68"]},"geometry":{"type":"LineString","coordinates":[[-83.757969,32.8821967],[-83.7579767,32.881697700000004],[-83.757968,32.881516500000004],[-83.7579146,32.881342700000005],[-83.75778240000001,32.8811994]]},"id":"8744c0b53ffffff-13b7f5f4c76af877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506dc0c8-13fdf65a03948aa1","8f44c0b506deda1-1397d7c8c7c521b8"]},"geometry":{"type":"LineString","coordinates":[[-83.75778240000001,32.8811994],[-83.7577674,32.8811832],[-83.75757080000001,32.8810639],[-83.7573182,32.8810139],[-83.7571956,32.8810096]]},"id":"8944c0b506fffff-13bdd709b350e37d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b506d3376-1395d81105c9bae1","8f44c0b506deda1-1397d7c8c7c521b8"]},"geometry":{"type":"LineString","coordinates":[[-83.7571956,32.8810096],[-83.75708,32.8810057]]},"id":"8a44c0b506d7fff-1395d7ece33c24f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7449758,32.8893471]},"id":"8f44c0b5359369e-17f5f59e2c05b281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5359369e-17f5f59e2c05b281","8f44c0b53593cd9-17dff56b09faa507"]},"geometry":{"type":"LineString","coordinates":[[-83.74505760000001,32.8891128],[-83.7449775,32.889303000000005],[-83.7449758,32.8893471]]},"id":"8b44c0b53593fff-1797f5889ec55977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2c968c2c-17f7f6bfdde636db","8f44c0a2c96b886-1795f6d6bf4dc947"]},"geometry":{"type":"LineString","coordinates":[[-83.74447570000001,32.8900127],[-83.74438880000001,32.8899637],[-83.74430810000001,32.8899081],[-83.74434120000001,32.889575],[-83.74451230000001,32.889552900000005]]},"id":"8a44c0a2c96ffff-17f5f719e06a1d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2c968c2c-17f7f6bfdde636db","8f44c0b5359369e-17f5f59e2c05b281"]},"geometry":{"type":"LineString","coordinates":[[-83.74451230000001,32.889552900000005],[-83.74457260000001,32.8894607],[-83.74470000000001,32.8894068],[-83.7449758,32.8893471]]},"id":"8a44c0a2c96ffff-179ff63b865123a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c201222-1796e313052d061a","8f44c0a2c201269-17d642de8525712d"]},"geometry":{"type":"LineString","coordinates":[[-83.739548,32.905274],[-83.739464,32.905195]]},"id":"8c44c0a2c2013ff-17bf92f8c7c2e485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c201222-1796e313052d061a","8f44c0a2c233008-13f685e3a112eb6c"]},"geometry":{"type":"LineString","coordinates":[[-83.739464,32.905195],[-83.73917700000001,32.90493],[-83.73831100000001,32.9041]]},"id":"8944c0a2c23ffff-13bff47c8a9e36ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c233008-13f685e3a112eb6c","8f44c0a2c38cc18-179fe8ce84ec0e41"]},"geometry":{"type":"LineString","coordinates":[[-83.73831100000001,32.9041],[-83.737116,32.902963]]},"id":"8844c0a2c3fffff-139737591cc83313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c38cc18-179fe8ce84ec0e41","8f44c0a2c381acb-17f648fcca2aefc5"]},"geometry":{"type":"LineString","coordinates":[[-83.737116,32.902963],[-83.737042,32.90289]]},"id":"8944c0a2c3bffff-179f18e5ab7062b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c386d1b-179e0b664a6bb591","8f44c0a2c381acb-17f648fcca2aefc5"]},"geometry":{"type":"LineString","coordinates":[[-83.737042,32.90289],[-83.736276,32.902155],[-83.73605400000001,32.901936]]},"id":"8944c0a2c3bffff-17deea324cfc94b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c386d1b-179e0b664a6bb591","8f44c0a2c3b2ae3-13b60c7eea1c4d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.73605400000001,32.901936],[-83.735605,32.901536]]},"id":"8a44c0a2c3b7fff-13b70bf291cfda64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c3b2161-13ffccb9a28a3660","8f44c0a2c3b2ae3-13b60c7eea1c4d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.735605,32.901536],[-83.735511,32.901446]]},"id":"8b44c0a2c3b2fff-1397ec9c4aabaadc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c3b2161-13ffccb9a28a3660","8f44c0a2c0c1bb0-13f68f444f5a6a2c"]},"geometry":{"type":"LineString","coordinates":[[-83.735511,32.901446],[-83.73512500000001,32.901055],[-83.734954,32.900893],[-83.73447,32.900436]]},"id":"8844c0a2c1fffff-13bf7dfc58b66812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c0f3800-17def1f5a873ad6d","8f44c0a2c0c1bb0-13f68f444f5a6a2c"]},"geometry":{"type":"LineString","coordinates":[[-83.73447,32.900436],[-83.734059,32.900029],[-83.733367,32.899371]]},"id":"8944c0a2c0fffff-17b6109b6faddeb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2c0f3800-17def1f5a873ad6d","8f44c0a2c1984d1-17d696d52d9373cf"]},"geometry":{"type":"LineString","coordinates":[[-83.733367,32.899371],[-83.732397,32.89844],[-83.73226000000001,32.898291],[-83.73212600000001,32.898111],[-83.732054,32.897995],[-83.731982,32.897843],[-83.73191200000001,32.897668],[-83.73161900000001,32.896713000000005],[-83.73137100000001,32.895876]]},"id":"8844c0a2c1fffff-13fef4ed7caefa97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.730793,32.894008]},"id":"8f44c0a2ccc9070-13d7183e6a30c150"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ccc9070-13d7183e6a30c150","8f44c0a2c1984d1-17d696d52d9373cf"]},"geometry":{"type":"LineString","coordinates":[[-83.73137100000001,32.895876],[-83.730793,32.894008]]},"id":"8944c0a2c1bffff-139ed789c8cf6590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ccccd44-17f618f4e06dea01","8f44c0a2ccc9070-13d7183e6a30c150"]},"geometry":{"type":"LineString","coordinates":[[-83.730793,32.894008],[-83.730501,32.89304]]},"id":"8a44c0a2cccffff-17969899ad847875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ccccd44-17f618f4e06dea01","8f44c0a2cce6349-13feb95d43be1d57"]},"geometry":{"type":"LineString","coordinates":[[-83.730501,32.89304],[-83.73045300000001,32.892894000000005],[-83.73039800000001,32.892702],[-83.730348,32.892463],[-83.730326,32.892269],[-83.730317,32.892071],[-83.730317,32.89182],[-83.730334,32.891441]]},"id":"8944c0a2ccfffff-17f6d94dbd9eac04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2cce6349-13feb95d43be1d57","8f44c0a2cc1cb6d-17b6195acf23a7cc"]},"geometry":{"type":"LineString","coordinates":[[-83.730334,32.891441],[-83.73032400000001,32.89103],[-83.730334,32.890351],[-83.730338,32.8900864]]},"id":"8844c0a2cdfffff-13d7595f8e4cb67e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2cc1cb6d-17b6195acf23a7cc","8f44c0a2cda16dd-17d69c6b24cd4bb2"]},"geometry":{"type":"LineString","coordinates":[[-83.730338,32.8900864],[-83.730354,32.889032],[-83.73035300000001,32.888801],[-83.730348,32.888708],[-83.73033000000001,32.888565],[-83.73029100000001,32.888402],[-83.73024600000001,32.888281],[-83.730198,32.888182],[-83.73010500000001,32.888026],[-83.72996900000001,32.887844],[-83.729083,32.886836]]},"id":"8844c0a2cdfffff-13f69a27663c9335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2cda292e-17befdd1b4c8b328","8f44c0a2cda16dd-17d69c6b24cd4bb2"]},"geometry":{"type":"LineString","coordinates":[[-83.729083,32.886836],[-83.72865300000001,32.88635],[-83.7285093,32.886187]]},"id":"8a44c0a2cda7fff-17f7dd1e86a78518"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21a5acc3-13df7fdf3e982eaa","8f44c0a2cda292e-17befdd1b4c8b328"]},"geometry":{"type":"LineString","coordinates":[[-83.7285093,32.886187],[-83.72766850000001,32.8852215]]},"id":"8744c0a21ffffff-17ff3ed87e4aaddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21a5acc3-13df7fdf3e982eaa","8f44c0a21a19715-17bfe3f48dece030"]},"geometry":{"type":"LineString","coordinates":[[-83.72766850000001,32.8852215],[-83.72720500000001,32.88469],[-83.72689600000001,32.884335],[-83.72599600000001,32.883318]]},"id":"8844c0a21bfffff-13ffa1e8c280498e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a211024aa-13d6790faa910314","8f44c0a21a19715-17bfe3f48dece030"]},"geometry":{"type":"LineString","coordinates":[[-83.72599600000001,32.883318],[-83.72475800000001,32.881901],[-83.724175,32.881247],[-83.72370000000001,32.880777],[-83.723476,32.880581],[-83.72325400000001,32.880395],[-83.722955,32.880163],[-83.722572,32.879927],[-83.722407,32.879838],[-83.72208400000001,32.879692],[-83.72183700000001,32.879596],[-83.72149800000001,32.879488],[-83.721109,32.879376],[-83.719087,32.878825],[-83.71864500000001,32.878704],[-83.718249,32.878588],[-83.71787400000001,32.878442],[-83.7175361,32.8783028],[-83.71735100000001,32.878234]]},"id":"8744c0a21ffffff-179eeda609306586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a211024aa-13d6790faa910314","8f44c0a21110a73-13d779fb22b7a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.71735100000001,32.878234],[-83.71697420000001,32.8780598]]},"id":"8a44c0a21117fff-139ff9856dccaefc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21116260-13de3b08455a8b72","8f44c0a21110a73-13d779fb22b7a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.71697420000001,32.8780598],[-83.716778,32.877969],[-83.71654360000001,32.877862400000005]]},"id":"8a44c0a21117fff-13977a81922e3622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21116458-1397bbc632ca9abd","8f44c0a21116260-13de3b08455a8b72"]},"geometry":{"type":"LineString","coordinates":[[-83.71654360000001,32.877862400000005],[-83.7162397,32.8777275]]},"id":"8b44c0a21116fff-13bffb674aa6ba34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21116458-1397bbc632ca9abd","8f44c0a21cc4db5-179f65b0c4a22de3"]},"geometry":{"type":"LineString","coordinates":[[-83.7162397,32.8777275],[-83.715795,32.87753],[-83.714994,32.87717],[-83.71217800000001,32.875925]]},"id":"8744c0a21ffffff-17df50bb0b4f2154"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21cc4db5-179f65b0c4a22de3","8f44c0a21c8d509-13fee984cd32d878"]},"geometry":{"type":"LineString","coordinates":[[-83.71217800000001,32.875925],[-83.7107498,32.875292],[-83.71061,32.875227]]},"id":"8844c0a21dfffff-13d7c79b18f848c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c8d509-13fee984cd32d878","8f44c0a20260853-17dfd1eb64f6c499"]},"geometry":{"type":"LineString","coordinates":[[-83.71061,32.875227],[-83.7105015,32.875180900000004],[-83.709777,32.874853],[-83.709427,32.874705],[-83.70936400000001,32.874678],[-83.708481,32.874282],[-83.70827200000001,32.874195],[-83.708015,32.874113],[-83.707734,32.874045],[-83.70747700000001,32.874001],[-83.70736500000001,32.87399],[-83.70716900000001,32.87398]]},"id":"8644c0a27ffffff-13beeda764cc043b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20272d0b-179ef6c04f6145f5","8f44c0a20260853-17dfd1eb64f6c499"]},"geometry":{"type":"LineString","coordinates":[[-83.70716900000001,32.87398],[-83.706691,32.873965000000005],[-83.706001,32.873953],[-83.70554200000001,32.873934000000006],[-83.705371,32.873911],[-83.70519,32.873873]]},"id":"8944c0a2027ffff-17de54574dd57be2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20272d0b-179ef6c04f6145f5","8f44c0a2038b226-13de5ee18b11043f"]},"geometry":{"type":"LineString","coordinates":[[-83.70519,32.873873],[-83.704936,32.873793],[-83.704682,32.873693],[-83.70449500000001,32.87359],[-83.70431,32.873474],[-83.70406,32.873294],[-83.703793,32.873092],[-83.70350300000001,32.872881],[-83.703264,32.872722],[-83.70303700000001,32.87258],[-83.70282900000001,32.872469],[-83.70254,32.872343],[-83.702285,32.872248],[-83.701913,32.872124],[-83.70186000000001,32.872112]]},"id":"8844c0a203fffff-17dffac65f8fa763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2039e543-13de63378e2d78fd","8f44c0a2038b226-13de5ee18b11043f"]},"geometry":{"type":"LineString","coordinates":[[-83.70186000000001,32.872112],[-83.701262,32.871932],[-83.70105600000001,32.871859],[-83.700896,32.871783],[-83.70076800000001,32.871715],[-83.70063,32.871628],[-83.700472,32.871507],[-83.700308,32.871358],[-83.70019500000001,32.871229],[-83.700084,32.871088]]},"id":"8944c0a203bffff-13d76136864fcd02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69892510000001,32.8696482]},"id":"8f44c0a20764955-17de660bd7d8a92b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20764955-17de660bd7d8a92b","8f44c0a2039e543-13de63378e2d78fd"]},"geometry":{"type":"LineString","coordinates":[[-83.700084,32.871088],[-83.70000900000001,32.870973],[-83.69971500000001,32.870450000000005],[-83.69954700000001,32.870207],[-83.69942300000001,32.870072],[-83.69933800000001,32.869988],[-83.69920300000001,32.869869],[-83.69892510000001,32.8696482]]},"id":"8744c0a20ffffff-17ff747d2acb3558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6982164,32.8690573]},"id":"8f44c0a200d8844-13def7c6c07fd481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20764955-17de660bd7d8a92b","8f44c0a200d8844-13def7c6c07fd481"]},"geometry":{"type":"LineString","coordinates":[[-83.69892510000001,32.8696482],[-83.698711,32.869478],[-83.69828700000001,32.86912],[-83.6982164,32.8690573]]},"id":"8944c0a200fffff-179776ead3eaf70d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200dc6c1-13976822e41a368f","8f44c0a200d8844-13def7c6c07fd481"]},"geometry":{"type":"LineString","coordinates":[[-83.6982164,32.8690573],[-83.698069,32.8689264]]},"id":"8b44c0a200d8fff-13bfe7f4d6ff124b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6975982,32.868433200000005]},"id":"8f44c0a200d14d5-13d6e949216e85ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200dc6c1-13976822e41a368f","8f44c0a200d14d5-13d6e949216e85ab"]},"geometry":{"type":"LineString","coordinates":[[-83.698069,32.8689264],[-83.6975982,32.868433200000005]]},"id":"8944c0a200fffff-13fee8b60890cede"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200d04e5-13fefa0fa97212ae","8f44c0a200d14d5-13d6e949216e85ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6975982,32.868433200000005],[-83.6972806,32.8680879]]},"id":"8a44c0a200d7fff-13f6e9ac6b327612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a200d0ca0-139e69f82e34b546","8f44c0a200d04e5-13fefa0fa97212ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6972806,32.8680879],[-83.6972775,32.868013600000005],[-83.69731820000001,32.867911]]},"id":"8b44c0a200d0fff-13d6fa0996213625"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506de562-13fdd7c6e8fe81e8","8f44c0b53d2d952-13fdf858688d8dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.75719860000001,32.881172400000004],[-83.7569658,32.8811715]]},"id":"8944c0b506fffff-13fdd80fa969b71c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d2d952-13fdf858688d8dd2","8f44c0b53d2c609-13ffd9c316a7aa3d"]},"geometry":{"type":"LineString","coordinates":[[-83.7569658,32.8811715],[-83.75638550000001,32.8811692]]},"id":"8a44c0b53d2ffff-13ffd90dc7c30828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0485212c-1797fe0d2c7a336f","8f44c0a048516e4-13b6dc5e0bef838d"]},"geometry":{"type":"LineString","coordinates":[[-83.6759854,32.886940700000004],[-83.6760584,32.887097100000005],[-83.6762192,32.887219800000004],[-83.6766752,32.887402800000004]]},"id":"8a44c0a04857fff-13bedd4e8e56b480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0485c195-13f7bb6831bdc9a2","8f44c0a048516e4-13b6dc5e0bef838d"]},"geometry":{"type":"LineString","coordinates":[[-83.6766752,32.887402800000004],[-83.6768,32.8874529],[-83.6770685,32.8875066]]},"id":"8944c0a0487ffff-13debbe498f8c236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354536,32.8206541]},"id":"8f44c0b080e8116-17bedcdd80f430ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b080e8116-17bedcdd80f430ed","8f44c0b080eda9c-17bf8b6510c124bd"]},"geometry":{"type":"LineString","coordinates":[[-83.73605590000001,32.820655200000004],[-83.7358073,32.8206586],[-83.7354536,32.8206541]]},"id":"8a44c0b080effff-17be6c214fe768b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7341134,32.820671000000004]},"id":"8f44c0b080c00d1-17b7702324182c6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b080c00d1-17b7702324182c6c","8f44c0b080e8116-17bedcdd80f430ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7354536,32.8206541],[-83.7343824,32.820667300000004],[-83.7341134,32.820671000000004]]},"id":"8944c0b080fffff-17b60e805f1c2fdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7354473,32.8203468]},"id":"8f44c0b080ec459-17fecce177c33680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b080e8116-17bedcdd80f430ed","8f44c0b080ec459-17fecce177c33680"]},"geometry":{"type":"LineString","coordinates":[[-83.7354536,32.8206541],[-83.7354473,32.8203468]]},"id":"8a44c0b080effff-17dedcdf8fcf7595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7356286,32.820345700000004]},"id":"8f44c0b080ec05c-17fe1c7024b7f7ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b080ec459-17fecce177c33680","8f44c0b080ec05c-17fe1c7024b7f7ef"]},"geometry":{"type":"LineString","coordinates":[[-83.7354473,32.8203468],[-83.7354416,32.8198437],[-83.735625,32.819841700000005],[-83.7356286,32.820345700000004]]},"id":"8944c0b080fffff-17b6dcaa784b9bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b080ec459-17fecce177c33680","8f44c0b080ec05c-17fe1c7024b7f7ef"]},"geometry":{"type":"LineString","coordinates":[[-83.7356286,32.820345700000004],[-83.7354473,32.8203468]]},"id":"8b44c0b080ecfff-17fe7ca8c648c3c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72971150000001,32.827583600000004]},"id":"8f44c0b086ea588-1797dae255a5ba5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086ea588-1797dae255a5ba5a","8f44c0b086c1cb3-1797dbeb0db51a36"]},"geometry":{"type":"LineString","coordinates":[[-83.72928800000001,32.8275805],[-83.72971150000001,32.827583600000004]]},"id":"8a44c0b086c7fff-1796db66bc33a44a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7303923,32.827081]},"id":"8f44c0b086ec55a-17dfb938dae12299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086ea588-1797dae255a5ba5a","8f44c0b086ec55a-17dfb938dae12299"]},"geometry":{"type":"LineString","coordinates":[[-83.72971150000001,32.827583600000004],[-83.7301351,32.827586700000005],[-83.73038410000001,32.827497300000005],[-83.7303923,32.827081]]},"id":"8944c0b086fffff-17de99be118c9361"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7303984,32.8265893]},"id":"8f44c0b08652595-17be593501d4013a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08652595-17be593501d4013a","8f44c0b086ec55a-17dfb938dae12299"]},"geometry":{"type":"LineString","coordinates":[[-83.7303923,32.827081],[-83.7303984,32.8265893]]},"id":"8944c0b086fffff-17d61936ed6e8f5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7304106,32.8261586]},"id":"8f44c0b086e5826-139f392d6266a396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08652595-17be593501d4013a","8f44c0b086e5826-139f392d6266a396"]},"geometry":{"type":"LineString","coordinates":[[-83.7303984,32.8265893],[-83.7304106,32.8261586]]},"id":"8a44c0b086e7fff-13b7d93135b32224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7297264,32.8270944]},"id":"8f44c0b086c592c-17f61ad902725194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086c592c-17f61ad902725194","8f44c0b086ec55a-17dfb938dae12299"]},"geometry":{"type":"LineString","coordinates":[[-83.7303923,32.827081],[-83.7297264,32.8270944]]},"id":"8944c0b086fffff-17f7da08ffb72f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086c592c-17f61ad902725194","8f44c0b086c4230-17ff9be8c3a7bca4"]},"geometry":{"type":"LineString","coordinates":[[-83.7297264,32.8270944],[-83.72929160000001,32.8271032]]},"id":"8a44c0b086c7fff-17fedb60e432922e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72972630000001,32.8265777]},"id":"8f44c0b086e0601-17b71ad918406bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086e0601-17b71ad918406bca","8f44c0b08652595-17be593501d4013a"]},"geometry":{"type":"LineString","coordinates":[[-83.7303984,32.8265893],[-83.72972630000001,32.8265777]]},"id":"8a44c0b086e7fff-17b6ba07169dfdfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086e0601-17b71ad918406bca","8f44c0b086e2089-17bf1be6686bf762"]},"geometry":{"type":"LineString","coordinates":[[-83.72972630000001,32.8265777],[-83.72929540000001,32.8265873]]},"id":"8a44c0b086e7fff-17b61b5fb9029135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086c592c-17f61ad902725194","8f44c0b086ea588-1797dae255a5ba5a"]},"geometry":{"type":"LineString","coordinates":[[-83.72971150000001,32.827583600000004],[-83.7297264,32.8270944]]},"id":"8a44c0b086c7fff-17fefaddb39a51e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086e0601-17b71ad918406bca","8f44c0b086c592c-17f61ad902725194"]},"geometry":{"type":"LineString","coordinates":[[-83.7297264,32.8270944],[-83.72972630000001,32.8265777]]},"id":"8944c0b086fffff-17d69ad90aba9a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7297242,32.826151700000004]},"id":"8f44c0b086e6a65-139edada63576053"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b086e0601-17b71ad918406bca","8f44c0b086e6a65-139edada63576053"]},"geometry":{"type":"LineString","coordinates":[[-83.72972630000001,32.8265777],[-83.7297242,32.826151700000004]]},"id":"8a44c0b086e7fff-139ffad9c15b3b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7293252,32.9305779]},"id":"8f44c0a2b908d9c-139f3bd3c0aa7443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2b908d9c-139f3bd3c0aa7443","8f44c0a2b90eca0-13d7bcaa4311ff65"]},"geometry":{"type":"LineString","coordinates":[[-83.728982,32.930284300000004],[-83.72918580000001,32.9304538],[-83.7293252,32.9305779]]},"id":"8b44c0a2b90efff-13be9c3e41748b63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72948170000001,32.9304374]},"id":"8f44c0a2b90c7a9-13b77b71fcb6167f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2b90c7a9-13b77b71fcb6167f","8f44c0a2b908d9c-139f3bd3c0aa7443"]},"geometry":{"type":"LineString","coordinates":[[-83.7293252,32.9305779],[-83.7293851,32.9306313],[-83.7295826,32.9308029],[-83.7297715,32.9309236],[-83.72994650000001,32.9309803],[-83.7301025,32.931022500000005],[-83.7302636,32.9310996],[-83.7304629,32.931230500000005],[-83.73061360000001,32.9314094],[-83.7306344,32.931435300000004],[-83.730728,32.9315519],[-83.73079390000001,32.931579500000005],[-83.7308666,32.9315839],[-83.730936,32.931575200000005],[-83.731007,32.9315519],[-83.73153570000001,32.9312041],[-83.731688,32.931103900000004],[-83.7317208,32.9310725],[-83.73180930000001,32.9309876],[-83.7318769,32.930864],[-83.73198430000001,32.9306385],[-83.7320207,32.930608],[-83.7321091,32.9305934],[-83.7321603,32.9305903],[-83.7324401,32.930573100000004],[-83.73248690000001,32.93056],[-83.7325146,32.930528],[-83.7325129,32.93048],[-83.7325077,32.9304174],[-83.7327035,32.9304044],[-83.73274330000001,32.9303898],[-83.732771,32.9303636],[-83.7327832,32.930328700000004],[-83.7327771,32.930239],[-83.7327745,32.9302007],[-83.7327468,32.9301571],[-83.7327087,32.9301149],[-83.7326584,32.9300887],[-83.7326116,32.930072700000004],[-83.73255440000001,32.9300669],[-83.7321148,32.930093400000004],[-83.731958,32.9301029],[-83.73192870000001,32.930095900000005],[-83.7319102,32.9300809],[-83.73187970000001,32.9300505],[-83.7317974,32.9299685],[-83.73170760000001,32.9298933],[-83.73157950000001,32.9298364],[-83.7314412,32.9297952],[-83.73126690000001,32.9297673],[-83.7310885,32.9297179],[-83.73091690000001,32.9297077],[-83.7303988,32.9297455],[-83.7300955,32.9298109],[-83.7299361,32.929895300000005],[-83.72981130000001,32.930058200000005],[-83.729645,32.9302909],[-83.7296123,32.930320200000004],[-83.72948170000001,32.9304374]]},"id":"8644c0a2fffffff-13dfb77730e92220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2b90c7a9-13b77b71fcb6167f","8f44c0a2b908d9c-139f3bd3c0aa7443"]},"geometry":{"type":"LineString","coordinates":[[-83.72948170000001,32.9304374],[-83.7293252,32.9305779]]},"id":"8a44c0a2b90ffff-13df5ba2dff92c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2074276a-13bef9b0262c1d58","8f44c0a200da94e-13fe68e8b048b43a"]},"geometry":{"type":"LineString","coordinates":[[-83.6977525,32.869117200000005],[-83.69775100000001,32.8696229],[-83.69772060000001,32.8702995],[-83.6976856,32.8709781],[-83.69764590000001,32.8711134],[-83.6975525,32.871321300000005],[-83.69743340000001,32.8714409]]},"id":"8844c0a207fffff-17fef90c39c6bba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6971044,32.872392000000005]},"id":"8f44c0a207586cc-13ff6a7dc4984556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2074276a-13bef9b0262c1d58","8f44c0a207586cc-13ff6a7dc4984556"]},"geometry":{"type":"LineString","coordinates":[[-83.69743340000001,32.8714409],[-83.6973237,32.8714899],[-83.6972023,32.871564400000004],[-83.6971439,32.8716488],[-83.6971089,32.8717763],[-83.6971044,32.872392000000005]]},"id":"8944c0a2077ffff-13bf7a583492db87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69764590000001,32.8725274]},"id":"8f44c0a20759065-17d7e92b5011bda5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a207586cc-13ff6a7dc4984556","8f44c0a20759065-17d7e92b5011bda5"]},"geometry":{"type":"LineString","coordinates":[[-83.6971044,32.872392000000005],[-83.6971042,32.872417500000005],[-83.6970668,32.8731157],[-83.69706450000001,32.8734981],[-83.6970855,32.8735609],[-83.6971486,32.8735942],[-83.6972817,32.8735962],[-83.697765,32.873606],[-83.6978467,32.8735785],[-83.69790040000001,32.8735177],[-83.6979355,32.8734314],[-83.69792840000001,32.872731300000005],[-83.69789580000001,32.8726548],[-83.69784440000001,32.872617600000005],[-83.69764590000001,32.8725274]]},"id":"8844c0a207fffff-17df798e25ee23e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a207586cc-13ff6a7dc4984556","8f44c0a20759065-17d7e92b5011bda5"]},"geometry":{"type":"LineString","coordinates":[[-83.69764590000001,32.8725274],[-83.6971044,32.872392000000005]]},"id":"8a44c0a2075ffff-17b779d49af46ec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7511248,32.837223300000005]},"id":"8f44c0b090dc0d9-17b5f69b03251fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b090dc0d9-17b5f69b03251fba","8f44c0b090c9a46-13bde22774fc7197"]},"geometry":{"type":"LineString","coordinates":[[-83.75294810000001,32.8380626],[-83.7528073,32.8379968],[-83.7523458,32.8376958],[-83.75221660000001,32.8375263],[-83.75204140000001,32.8373508],[-83.7519441,32.8372854],[-83.75123450000001,32.8371992],[-83.7511248,32.837223300000005]]},"id":"8844c0b091fffff-17dfe448df085558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0972eab0-17fdeaaaf68f6709","8f44c0b090dc0d9-17b5f69b03251fba"]},"geometry":{"type":"LineString","coordinates":[[-83.7511248,32.837223300000005],[-83.7510858,32.8372319],[-83.7506257,32.8374861],[-83.7504488,32.8374936],[-83.7501462,32.837501],[-83.7498223,32.837385000000005],[-83.74968960000001,32.837304700000004],[-83.7495428,32.837197700000004],[-83.7494609,32.8371356]]},"id":"8744c0b09ffffff-1795e8aa008ca222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7492825,32.8370003]},"id":"8f44c0b0972ec09-1795fb1a7cb56c62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0972eab0-17fdeaaaf68f6709","8f44c0b0972ec09-1795fb1a7cb56c62"]},"geometry":{"type":"LineString","coordinates":[[-83.7494609,32.8371356],[-83.7492825,32.8370003]]},"id":"8b44c0b0972efff-17bfeae2b407aef7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0972ec09-1795fb1a7cb56c62","8f44c0b09723776-17d5fbee6af6e88b"]},"geometry":{"type":"LineString","coordinates":[[-83.7489434,32.8368917],[-83.7489412,32.8369116],[-83.7489566,32.8369651],[-83.7489927,32.837011100000005],[-83.7490451,32.8370442],[-83.74910770000001,32.8370605],[-83.74917310000001,32.837058],[-83.7492338,32.837037200000005],[-83.7492825,32.8370003]]},"id":"8944c0b0973ffff-179ffb9586502a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74928320000001,32.8368026]},"id":"8f44c0b09723b6d-179deb1a0e892587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0972ec09-1795fb1a7cb56c62","8f44c0b09723b6d-179deb1a0e892587"]},"geometry":{"type":"LineString","coordinates":[[-83.7492825,32.8370003],[-83.7493135,32.8369519],[-83.7493232,32.836897400000005],[-83.7493123,32.8368473],[-83.74928320000001,32.8368026]]},"id":"8944c0b0973ffff-17d7fb0aacc4b625"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75101000000001,32.836554400000004]},"id":"8f44c0b090d5208-17ffe6e2c60c756b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b090d5208-17ffe6e2c60c756b","8f44c0b090dc0d9-17b5f69b03251fba"]},"geometry":{"type":"LineString","coordinates":[[-83.7511248,32.837223300000005],[-83.7510283,32.8369984],[-83.750945,32.8367747],[-83.75096330000001,32.836651700000004],[-83.75101000000001,32.836554400000004]]},"id":"8944c0b090fffff-17d5e6e1b14a6425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7521485,32.8368501]},"id":"8f44c0b090c112e-17b7f41b394c6f39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b090d5208-17ffe6e2c60c756b","8f44c0b090c112e-17b7f41b394c6f39"]},"geometry":{"type":"LineString","coordinates":[[-83.75101000000001,32.836554400000004],[-83.75120720000001,32.8366722],[-83.7515365,32.8367474],[-83.75188010000001,32.8368003],[-83.7521485,32.8368501]]},"id":"8944c0b090fffff-17f5e586a5118b3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75223580000001,32.8366107]},"id":"8f44c0b090c576d-17b5f3e4aada1ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b090c576d-17b5f3e4aada1ac2","8f44c0b090c112e-17b7f41b394c6f39"]},"geometry":{"type":"LineString","coordinates":[[-83.7521485,32.8368501],[-83.75221140000001,32.8368618],[-83.75276840000001,32.837099200000004],[-83.75314850000001,32.8373725],[-83.7532298,32.837375900000005],[-83.75331720000001,32.837331500000005],[-83.7534717,32.8371966],[-83.75350420000001,32.8371231],[-83.75347980000001,32.8370497],[-83.7534432,32.8370036],[-83.7532542,32.8368498],[-83.75302450000001,32.8367098],[-83.7525143,32.8364878],[-83.7524004,32.836472400000005],[-83.7522886,32.836525300000005],[-83.75223580000001,32.8366107]]},"id":"8944c0b090fffff-17f7f251d5ce1a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b090c576d-17b5f3e4aada1ac2","8f44c0b090c112e-17b7f41b394c6f39"]},"geometry":{"type":"LineString","coordinates":[[-83.75223580000001,32.8366107],[-83.7521485,32.8368501]]},"id":"8a44c0b090c7fff-17fde3ffef4606fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b090d5208-17ffe6e2c60c756b","8f44c0b09721033-17ddeaab1e8e8d9b"]},"geometry":{"type":"LineString","coordinates":[[-83.75101000000001,32.836554400000004],[-83.7509211,32.8364696],[-83.7508165,32.8364403],[-83.7506046,32.836411000000005],[-83.75030960000001,32.836401900000006],[-83.74997160000001,32.836429],[-83.74978660000001,32.836480800000004],[-83.7495076,32.8366476],[-83.7494607,32.83668]]},"id":"8744c0b09ffffff-17ddf8ca5d138884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b09721033-17ddeaab1e8e8d9b","8f44c0b09723b6d-179deb1a0e892587"]},"geometry":{"type":"LineString","coordinates":[[-83.7494607,32.83668],[-83.74928320000001,32.8368026]]},"id":"8b44c0b09721fff-17f7fae28585332c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56999110000001,32.808491100000005]},"id":"8f44c0baa582505-17fff0d397e4c86d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa582505-17fff0d397e4c86d","8f44c0baa4a3849-17d7df7292781809"]},"geometry":{"type":"LineString","coordinates":[[-83.56999110000001,32.808491100000005],[-83.56990640000001,32.808787200000005],[-83.5698847,32.8089357],[-83.56984410000001,32.8091572],[-83.5698297,32.8092715],[-83.5698253,32.8093738],[-83.5698369,32.809535600000004],[-83.56984560000001,32.809681600000005],[-83.5698818,32.8098374],[-83.5699324,32.8100053],[-83.56999470000001,32.810155],[-83.57007,32.8103144],[-83.5701713,32.810460400000004],[-83.5702785,32.810605200000005],[-83.57039280000001,32.8107342],[-83.57052750000001,32.8108631],[-83.5705559,32.8108877]]},"id":"8844c0baa5fffff-1397e0c4e76984d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5707618,32.811013700000004]},"id":"8f44c0baa4a16e4-17b79ef1e770d16c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a16e4-17b79ef1e770d16c","8f44c0baa4a3849-17d7df7292781809"]},"geometry":{"type":"LineString","coordinates":[[-83.5705559,32.8108877],[-83.57062450000001,32.8109471],[-83.57071280000001,32.8109921],[-83.5707618,32.811013700000004]]},"id":"8a44c0baa4a7fff-1797ff34fd90dc9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a16e4-17b79ef1e770d16c","8f44c0baa4a1252-17b79e7449d3ef91"]},"geometry":{"type":"LineString","coordinates":[[-83.5707618,32.811013700000004],[-83.57079680000001,32.811025],[-83.57095170000001,32.8110445],[-83.5709628,32.811044]]},"id":"8b44c0baa4a1fff-17bfdeb371045e75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4acc01-17bf9e04ab711c67","8f44c0baa4a1252-17b79e7449d3ef91"]},"geometry":{"type":"LineString","coordinates":[[-83.5709628,32.811044],[-83.57109360000001,32.8110384],[-83.5711414,32.8110257]]},"id":"8a44c0baa4affff-17b7be3c10a308a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa41264d-17ffbd990722aba6","8f44c0baa4acc01-17bf9e04ab711c67"]},"geometry":{"type":"LineString","coordinates":[[-83.5711414,32.8110257],[-83.5712268,32.8110031],[-83.57131360000001,32.8109459]]},"id":"8944c0baa4bffff-17979dcceaf9fdb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa41264d-17ffbd990722aba6","8f44c0baa412315-17b7fd52bb27a5b5"]},"geometry":{"type":"LineString","coordinates":[[-83.57131360000001,32.8109459],[-83.57139620000001,32.8108656],[-83.57142610000001,32.8108318]]},"id":"8b44c0baa412fff-17d79d755a146609"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5716069,32.8104449]},"id":"8f44c0baa416342-17d79ce1b91f9362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa412315-17b7fd52bb27a5b5","8f44c0baa416342-17d79ce1b91f9362"]},"geometry":{"type":"LineString","coordinates":[[-83.57142610000001,32.8108318],[-83.5714932,32.8107561],[-83.57157570000001,32.810618600000005],[-83.5716046,32.810499300000004],[-83.5716069,32.8104449]]},"id":"8a44c0baa417fff-17bfdd0a8ad06eb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa416342-17d79ce1b91f9362","8f44c0baa581cb6-13df9ed0f31dde89"]},"geometry":{"type":"LineString","coordinates":[[-83.5716069,32.8104449],[-83.57160900000001,32.8103947],[-83.5716032,32.8102669],[-83.5715931,32.8100759],[-83.57155540000001,32.8098374],[-83.57151490000001,32.809675500000004],[-83.5714526,32.8094735],[-83.57138020000001,32.8093287],[-83.57125860000001,32.8091462],[-83.57118770000001,32.8090355],[-83.57109650000001,32.8089284],[-83.5709502,32.808765300000005],[-83.57081450000001,32.808624800000004]]},"id":"8844c0baa5fffff-13f79d81cfafed4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa48c99e-13ffbf7fd9d92b43","8f44c0baa4a16e4-17b79ef1e770d16c"]},"geometry":{"type":"LineString","coordinates":[[-83.5707618,32.811013700000004],[-83.5707472,32.8111636],[-83.570734,32.811307500000005],[-83.57070110000001,32.811471600000004],[-83.57065060000001,32.811635800000005],[-83.570587,32.8118276],[-83.57053470000001,32.811968300000004]]},"id":"8944c0baa4bffff-17d7bf280c70b3d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa48c99e-13ffbf7fd9d92b43","8f44c0baa48c02a-13f7bf89c8b7fe29"]},"geometry":{"type":"LineString","coordinates":[[-83.57053470000001,32.811968300000004],[-83.57052990000001,32.812019400000004],[-83.5705221,32.8120751],[-83.5705188,32.812146600000005]]},"id":"8b44c0baa48cfff-13bfff858b9d2e63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa41b405-13dfdba4dee7b8ab","8f44c0baa41a349-139fdba5e0956072"]},"geometry":{"type":"LineString","coordinates":[[-83.5721139,32.8121324],[-83.5721122,32.811996400000005]]},"id":"8b44c0baa41bfff-13b7dba55daaec20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa41a349-139fdba5e0956072","8f44c0baa41a663-139ffc2e2f9646fa"]},"geometry":{"type":"LineString","coordinates":[[-83.5721122,32.811996400000005],[-83.5718942,32.8119983]]},"id":"8a44c0baa41ffff-139ffbea060246cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9a43-139f9ca9959b9db2","8f44c0baa41a663-139ffc2e2f9646fa"]},"geometry":{"type":"LineString","coordinates":[[-83.5718942,32.8119983],[-83.5716967,32.812000000000005]]},"id":"8844c0baa5fffff-139f9c6beb0a1fa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9a43-139f9ca9959b9db2","8f44c0baa4f4cf3-13ff9ca8aa859a12"]},"geometry":{"type":"LineString","coordinates":[[-83.5716967,32.812000000000005],[-83.5716982,32.812148]]},"id":"8844c0baa5fffff-13bfdca92a478c89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9a43-139f9ca9959b9db2","8f44c0baa4a9049-139f9d138055fb36"]},"geometry":{"type":"LineString","coordinates":[[-83.5716967,32.812000000000005],[-83.5715272,32.812000000000005]]},"id":"8b44c0baa4a9fff-139f9cde9dc0933b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9716-139f9d882cba271b","8f44c0baa4a9049-139f9d138055fb36"]},"geometry":{"type":"LineString","coordinates":[[-83.5715272,32.812000000000005],[-83.5713406,32.812000000000005]]},"id":"8b44c0baa4a9fff-139f9d4dd5a996e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4a9716-139f9d882cba271b","8f44c0baa4a96dd-13ff9d8bce0612a7"]},"geometry":{"type":"LineString","coordinates":[[-83.5713406,32.812000000000005],[-83.5713348,32.812148]]},"id":"8c44c0baa4a97ff-13bfdd89f8627bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5710177,32.8105447]},"id":"8f44c0baa4a538a-17fffe51f4a5e315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa416342-17d79ce1b91f9362","8f44c0baa4a538a-17fffe51f4a5e315"]},"geometry":{"type":"LineString","coordinates":[[-83.5710177,32.8105447],[-83.57108860000001,32.8105228],[-83.57121310000001,32.8104778],[-83.571342,32.8104535],[-83.5716069,32.8104449]]},"id":"8844c0baa5fffff-17d79d9c1c379b7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa416342-17d79ce1b91f9362","8f44c0baa410994-17bfdc4cccdca026"]},"geometry":{"type":"LineString","coordinates":[[-83.5716069,32.8104449],[-83.57177920000001,32.8104449],[-83.5718452,32.8104348]]},"id":"8a44c0baa417fff-17bfbc97106ec89a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4142c4-17bfdbe19f1137a3","8f44c0baa410994-17bfdc4cccdca026"]},"geometry":{"type":"LineString","coordinates":[[-83.5718452,32.8104348],[-83.57198480000001,32.8104133],[-83.5720167,32.8104068]]},"id":"8a44c0baa417fff-17b7fc1711135224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4142c4-17bfdbe19f1137a3","8f44c0baa415d46-1797db3c0555398c"]},"geometry":{"type":"LineString","coordinates":[[-83.5720167,32.8104068],[-83.57228160000001,32.8103525]]},"id":"8a44c0baa417fff-1797db8ed436c7f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa433246-17df9a91beaf9bf2","8f44c0baa415d46-1797db3c0555398c"]},"geometry":{"type":"LineString","coordinates":[[-83.57228160000001,32.8103525],[-83.57239600000001,32.8103208],[-83.5725541,32.810289600000004]]},"id":"8944c0baa43ffff-17f79ae73f9cd739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa433246-17df9a91beaf9bf2","8f44c0baa406994-17b7f9f546e1b57f"]},"geometry":{"type":"LineString","coordinates":[[-83.5725541,32.810289600000004],[-83.5726363,32.8102734],[-83.57280440000001,32.810227000000005]]},"id":"8944c0baa43ffff-17dfda4333b002ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa404d9c-13ffd9349ae1a47b","8f44c0baa406994-17b7f9f546e1b57f"]},"geometry":{"type":"LineString","coordinates":[[-83.57280440000001,32.810227000000005],[-83.5729896,32.810176000000006],[-83.57311270000001,32.8101292]]},"id":"8a44c0baa407fff-179f99943dc21e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa404d9c-13ffd9349ae1a47b","8f44c0baa422656-13df98c31cd7daee"]},"geometry":{"type":"LineString","coordinates":[[-83.57311270000001,32.8101292],[-83.5732943,32.8100601]]},"id":"8944c0baa43ffff-13f7b8fbda642bcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836726-17f66c813cb7a3eb","8f44c0a2a836163-17b65c1bb77e876f"]},"geometry":{"type":"LineString","coordinates":[[-83.7093869,32.915357400000005],[-83.7094213,32.915366500000005],[-83.7094574,32.915365900000005],[-83.7094914,32.9153557],[-83.7095211,32.9153358],[-83.7095412,32.9153086],[-83.7095493,32.9152773]]},"id":"8c44c0a2a8361ff-17df6c45c259c85c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095273,32.9152171]},"id":"8f44c0a2a8368d4-179efc2973d30100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836163-17b65c1bb77e876f","8f44c0a2a8368d4-179efc2973d30100"]},"geometry":{"type":"LineString","coordinates":[[-83.7095493,32.9152773],[-83.7095445,32.9152456],[-83.7095273,32.9152171]]},"id":"8b44c0a2a836fff-179edc20bbe60234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70942690000001,32.9151795]},"id":"8f44c0a2a836c71-17f77c683baafddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836c71-17f77c683baafddc","8f44c0a2a8368d4-179efc2973d30100"]},"geometry":{"type":"LineString","coordinates":[[-83.7095273,32.9152171],[-83.70949970000001,32.915195000000004],[-83.7094649,32.915182],[-83.70942690000001,32.9151795]]},"id":"8b44c0a2a836fff-17feec4735e445ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70933330000001,32.915241200000004]},"id":"8f44c0a2a836574-179fcca2b30e1042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836c71-17f77c683baafddc","8f44c0a2a836574-179fcca2b30e1042"]},"geometry":{"type":"LineString","coordinates":[[-83.70942690000001,32.9151795],[-83.70939200000001,32.915187100000004],[-83.7093617,32.915203600000005],[-83.70933930000001,32.915227300000005],[-83.70933330000001,32.915241200000004]]},"id":"8b44c0a2a836fff-17977c892968c04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a836c71-17f77c683baafddc","8f44c0a2a9ab829-13b67cdbda4abbe2"]},"geometry":{"type":"LineString","coordinates":[[-83.70942690000001,32.9151795],[-83.7093864,32.9150933],[-83.70931470000001,32.9149685],[-83.70925310000001,32.9148748],[-83.70924190000001,32.9148519]]},"id":"8944c0a2a9bffff-179fdc9fdba424f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091168,32.914393000000004]},"id":"8f44c0a2a9a8c10-1397ed2a0adc9768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9a8c10-1397ed2a0adc9768","8f44c0a2a9ab829-13b67cdbda4abbe2"]},"geometry":{"type":"LineString","coordinates":[[-83.70924190000001,32.9148519],[-83.7091376,32.9146394],[-83.7091137,32.9145482],[-83.7091075,32.914495800000005],[-83.7091283,32.9144176],[-83.7091168,32.914393000000004]]},"id":"8a44c0a2a9affff-139f6d132e0abad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70904510000001,32.9145915]},"id":"8f44c0a2a9a84ee-1397fd56d46d6e3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9a8c10-1397ed2a0adc9768","8f44c0a2a9a84ee-1397fd56d46d6e3b"]},"geometry":{"type":"LineString","coordinates":[[-83.7091168,32.914393000000004],[-83.7090898,32.914413100000004],[-83.70904510000001,32.9145915]]},"id":"8b44c0a2a9a8fff-13d65d456bf9a334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9a879a-13b77d527b066cf4","8f44c0a2a9a84ee-1397fd56d46d6e3b"]},"geometry":{"type":"LineString","coordinates":[[-83.70904510000001,32.9145915],[-83.70905210000001,32.9146647]]},"id":"8b44c0a2a9a8fff-139edd54a5cabd39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9ab135-13d7ed25b62bfdff","8f44c0a2a9a879a-13b77d527b066cf4"]},"geometry":{"type":"LineString","coordinates":[[-83.70905210000001,32.9146647],[-83.7090551,32.9146963],[-83.7090836,32.9148127],[-83.7091237,32.9148954]]},"id":"8a44c0a2a9affff-13ff4d40ecfbc125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9ab135-13d7ed25b62bfdff","8f44c0a2a836574-179fcca2b30e1042"]},"geometry":{"type":"LineString","coordinates":[[-83.7091237,32.9148954],[-83.7091468,32.914934200000005],[-83.7091922,32.915024100000004],[-83.70933330000001,32.915241200000004]]},"id":"8944c0a2a9bffff-17beece63110496b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70841850000001,32.9143491]},"id":"8f44c0a2a985076-13fe7ede718ad777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a985076-13fe7ede718ad777","8f44c0a2a9a84ee-1397fd56d46d6e3b"]},"geometry":{"type":"LineString","coordinates":[[-83.70904510000001,32.9145915],[-83.7089504,32.9145728],[-83.7084597,32.9143769],[-83.70841850000001,32.9143491]]},"id":"8944c0a2a9bffff-13bf4e1d7e129707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70872010000001,32.913801400000004]},"id":"8f44c0a2a9a149c-1397ee21ffcc23a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a985076-13fe7ede718ad777","8f44c0a2a9a149c-1397ee21ffcc23a1"]},"geometry":{"type":"LineString","coordinates":[[-83.70841850000001,32.9143491],[-83.7083149,32.9142792],[-83.7082548,32.9142133],[-83.7082494,32.9141635],[-83.7085136,32.9136856],[-83.7085529,32.9136442],[-83.7086323,32.913637800000004],[-83.70870000000001,32.9136623],[-83.7087501,32.913741200000004],[-83.70872010000001,32.913801400000004]]},"id":"8944c0a2a9bffff-13f65ec89484d36a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a985076-13fe7ede718ad777","8f44c0a2a9a149c-1397ee21ffcc23a1"]},"geometry":{"type":"LineString","coordinates":[[-83.70872010000001,32.913801400000004],[-83.70841850000001,32.9143491]]},"id":"8944c0a2a9bffff-13d75e8032020838"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9acd08-13f7dcbd12264aee","8f44c0a2a9a8c10-1397ed2a0adc9768"]},"geometry":{"type":"LineString","coordinates":[[-83.7091168,32.914393000000004],[-83.70923590000001,32.9139976],[-83.7092911,32.913922500000005]]},"id":"8a44c0a2a9affff-13f74cfac974390e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094108,32.913758800000004]},"id":"8f44c0a2a912728-13ff4c724ec20760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a9acd08-13f7dcbd12264aee","8f44c0a2a912728-13ff4c724ec20760"]},"geometry":{"type":"LineString","coordinates":[[-83.7092911,32.913922500000005],[-83.7093102,32.9138965],[-83.7094005,32.9137866],[-83.7094108,32.913758800000004]]},"id":"8944c0a2a9bffff-13bf7c95ca1a61c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70932640000001,32.9135629]},"id":"8f44c0a2a912c88-1396dca708da100f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a912728-13ff4c724ec20760","8f44c0a2a912c88-1396dca708da100f"]},"geometry":{"type":"LineString","coordinates":[[-83.7094108,32.913758800000004],[-83.7094235,32.913724200000004],[-83.70932640000001,32.9135629]]},"id":"8b44c0a2a912fff-13bf4c845e5d2b11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a912c88-1396dca708da100f","8f44c0a2a9129a4-13d6ec203d96d782"]},"geometry":{"type":"LineString","coordinates":[[-83.70932640000001,32.9135629],[-83.7091669,32.9132979],[-83.70909970000001,32.913228000000004],[-83.70903600000001,32.9131954],[-83.70846440000001,32.912969600000004],[-83.7084325,32.9129146],[-83.7084555,32.912846200000004],[-83.70851920000001,32.9127853],[-83.70858650000001,32.9127913],[-83.7093279,32.9130795],[-83.7094005,32.9131523],[-83.70957390000001,32.9134316],[-83.70954210000001,32.9134702]]},"id":"8644c0a2fffffff-17de4d7763cee5ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a912c88-1396dca708da100f","8f44c0a2a9129a4-13d6ec203d96d782"]},"geometry":{"type":"LineString","coordinates":[[-83.70954210000001,32.9134702],[-83.70932640000001,32.9135629]]},"id":"8a44c0a2a917fff-13f7ec639a48d508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a912728-13ff4c724ec20760","8f44c0a2a91020c-13f66ae187c5f5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7094108,32.913758800000004],[-83.70967830000001,32.9137302],[-83.7099756,32.9137361],[-83.710052,32.9137446]]},"id":"8a44c0a2a917fff-13fecbaa0f546d27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7104697,32.913934600000005]},"id":"8f44c0a2a911aad-13ff69dc7fd9b9d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a911aad-13ff69dc7fd9b9d3","8f44c0a2a91020c-13f66ae187c5f5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.710052,32.9137446],[-83.7102021,32.9137614],[-83.7103632,32.9138223],[-83.7104697,32.913934600000005]]},"id":"8a44c0a2a917fff-139fca5500931d60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7105817,32.9146817]},"id":"8f44c0a2a918076-13be59967e0f22e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a918076-13be59967e0f22e9","8f44c0a2a911aad-13ff69dc7fd9b9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7104697,32.913934600000005],[-83.7104941,32.9139604],[-83.71054720000001,32.9140956],[-83.710526,32.9146349],[-83.7105817,32.9146817]]},"id":"8944c0a2a93ffff-13d6d9b509b748ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71124680000001,32.915264400000005]},"id":"8f44c0a2a8241ac-17be47f6cb875ee3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a8241ac-17be47f6cb875ee3","8f44c0a2a918076-13be59967e0f22e9"]},"geometry":{"type":"LineString","coordinates":[[-83.7105817,32.9146817],[-83.71059670000001,32.9146943],[-83.71124680000001,32.915264400000005]]},"id":"8944c0a2a93ffff-13f658c6847f39c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7114267,32.9154222]},"id":"8f44c0a2a824ad9-179ee786582ef0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a8241ac-17be47f6cb875ee3","8f44c0a2a824ad9-179ee786582ef0b5"]},"geometry":{"type":"LineString","coordinates":[[-83.71124680000001,32.915264400000005],[-83.7114267,32.9154222]]},"id":"8b44c0a2a824fff-17dfd7be83fa6c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7109542,32.915493500000004]},"id":"8f44c0a2a826ac6-17b778adae3c1d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a8241ac-17be47f6cb875ee3","8f44c0a2a826ac6-17b778adae3c1d91"]},"geometry":{"type":"LineString","coordinates":[[-83.7109542,32.915493500000004],[-83.71124680000001,32.915264400000005]]},"id":"8a44c0a2a827fff-17ffe85234b840fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a8241ac-17be47f6cb875ee3","8f44c0a2a90ac22-13df57d18bec88fb"]},"geometry":{"type":"LineString","coordinates":[[-83.71124680000001,32.915264400000005],[-83.7113417,32.915175600000005],[-83.7113559,32.915108700000005],[-83.7113506,32.9147418],[-83.71130640000001,32.9147121]]},"id":"8944c0a2a93ffff-13ff57bdadbc5543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a918076-13be59967e0f22e9","8f44c0a2a90ac22-13df57d18bec88fb"]},"geometry":{"type":"LineString","coordinates":[[-83.71130640000001,32.9147121],[-83.7112232,32.914692800000005],[-83.7105817,32.9146817]]},"id":"8944c0a2a93ffff-13d6e8b365fdd041"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a918076-13be59967e0f22e9","8f44c0a2a911aad-13ff69dc7fd9b9d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7105817,32.9146817],[-83.7103225,32.9146616],[-83.7103048,32.914602200000004],[-83.7103348,32.9140451],[-83.7103632,32.9140005],[-83.7104697,32.913934600000005]]},"id":"8944c0a2a93ffff-13ff4a1df4e8ad30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70970480000001,32.9150398]},"id":"8f44c0a2a9a9229-179febba88725887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a8368d4-179efc2973d30100","8f44c0a2a9a9229-179febba88725887"]},"geometry":{"type":"LineString","coordinates":[[-83.7095273,32.9152171],[-83.709666,32.9150948],[-83.70970480000001,32.9150398]]},"id":"8a44c0a2a837fff-17d7fbef5ea4fe1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70961700000001,32.915006600000005]},"id":"8f44c0a2a9a9399-17976bf1634f3933"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a9a9229-179febba88725887","8f44c0a2a9a9399-17976bf1634f3933"]},"geometry":{"type":"LineString","coordinates":[[-83.70970480000001,32.9150398],[-83.70974070000001,32.914989],[-83.70975940000001,32.9148674],[-83.709708,32.914804700000005],[-83.7095819,32.914777300000004],[-83.7095049,32.9148067],[-83.7094909,32.9148616],[-83.7095166,32.9149243],[-83.70961700000001,32.915006600000005]]},"id":"8b44c0a2a9a9fff-13bf7be9b87762e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a9a9229-179febba88725887","8f44c0a2a9a9399-17976bf1634f3933"]},"geometry":{"type":"LineString","coordinates":[[-83.70961700000001,32.915006600000005],[-83.70970480000001,32.9150398]]},"id":"8c44c0a2a9a93ff-1797cbd5f9cde3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7491883,32.8163284]},"id":"8f44c0b0d796ce4-139deb555defed53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7500614,32.8162679]},"id":"8f44c0b0d7b3452-13f7f933a2539464"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d796ce4-139deb555defed53","8f44c0b0d7b3452-13f7f933a2539464"]},"geometry":{"type":"LineString","coordinates":[[-83.7491883,32.8163284],[-83.7500614,32.8162679]]},"id":"8944c0b0d7bffff-139fea448269e979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75225,32.8161162]},"id":"8f44c0b0d7124b1-139de3dbc00dde09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d7b3452-13f7f933a2539464","8f44c0b0d7124b1-139de3dbc00dde09"]},"geometry":{"type":"LineString","coordinates":[[-83.7500614,32.8162679],[-83.75225,32.8161162]]},"id":"8944c0b0d7bffff-13dde687b3191e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d7b234b-1397f9405193ac4d","8f44c0b0d7b3452-13f7f933a2539464"]},"geometry":{"type":"LineString","coordinates":[[-83.7500614,32.8162679],[-83.7500411,32.8160801]]},"id":"8a44c0b0d7b7fff-13bde939f2cc051b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d7b234b-1397f9405193ac4d","8f44c0b0d7b2b88-1397e94c2cedc81c"]},"geometry":{"type":"LineString","coordinates":[[-83.7500411,32.8160801],[-83.7500292,32.815969700000004],[-83.7500222,32.815902]]},"id":"8b44c0b0d7b2fff-13dff94648f40067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7491395,32.815795800000004]},"id":"8f44c0b0d4c830e-13d5eb73d60654e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0d4c830e-13d5eb73d60654e2","8f44c0b0d7b2b88-1397e94c2cedc81c"]},"geometry":{"type":"LineString","coordinates":[[-83.7500222,32.815902],[-83.7500158,32.8158254],[-83.7499997,32.8157713],[-83.74995410000001,32.8157443],[-83.7491395,32.815795800000004]]},"id":"8844c0b0d5fffff-13d5ea40378acca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08b2236d-17f7f45220fb7f02","8f44c0b08b268c6-17dff44aaa11e5a6"]},"geometry":{"type":"LineString","coordinates":[[-83.745507,32.8146215],[-83.745507,32.814496000000005],[-83.745519,32.8139703]]},"id":"8a44c0b08b27fff-17b7f44f2ecc685e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6886836,32.8992943]},"id":"8f44c0a05d6d709-17beff0ccb3a1e45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6884629,32.8992061]},"id":"8f44c0a05d6d49a-17f7ff96bd95dcd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d6d49a-17f7ff96bd95dcd7","8f44c0a05d6d709-17beff0ccb3a1e45"]},"geometry":{"type":"LineString","coordinates":[[-83.6886836,32.8992943],[-83.6884629,32.8992061]]},"id":"8a44c0a05d6ffff-179f7f51c4e956a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882812,32.899493]},"id":"8f44c0a05d6828a-17b7a0084c98009f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d6828a-17b7a0084c98009f","8f44c0a05d6d49a-17f7ff96bd95dcd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6884629,32.8992061],[-83.68804370000001,32.899038700000006],[-83.6880067,32.8990427],[-83.6878753,32.8993054],[-83.6878813,32.899329],[-83.6882812,32.899493]]},"id":"8a44c0a05d6ffff-1796f0766775dd92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d6828a-17b7a0084c98009f","8f44c0a05d6d49a-17f7ff96bd95dcd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6882812,32.899493],[-83.6884629,32.8992061]]},"id":"8b44c0a05d68fff-17dfffcf854012e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6880823,32.899714800000005]},"id":"8f44c0a05d6b0a6-17b7c0849b966657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058b6d96-1796ffe99cad255e","8f44c0a05d6b0a6-17b7c0849b966657"]},"geometry":{"type":"LineString","coordinates":[[-83.6883303,32.8998474],[-83.6880823,32.899714800000005]]},"id":"8b44c0a05d6bfff-17dfb0371ab61846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4ccd5-17bf91d6d53e1e27","8f44c0a05d6b0a6-17b7c0849b966657"]},"geometry":{"type":"LineString","coordinates":[[-83.6880823,32.899714800000005],[-83.68772560000001,32.8995255],[-83.6876969,32.8995296],[-83.6875411,32.8997369]]},"id":"8944c0a05d7ffff-17f7c13bdd4c0cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728970000001,32.9003456]},"id":"8f44c0a05d4ab0d-13be8273f2a0af12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6866426,32.900412]},"id":"8f44c0a05d598de-13f784086e0a85f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d598de-13f784086e0a85f3","8f44c0a05d4ab0d-13be8273f2a0af12"]},"geometry":{"type":"LineString","coordinates":[[-83.68728970000001,32.9003456],[-83.6872364,32.9003012],[-83.6871622,32.9002491],[-83.68707710000001,32.900211500000005],[-83.6869743,32.9001958],[-83.68693900000001,32.9002049],[-83.6866547,32.9003934],[-83.6866426,32.900412]]},"id":"8944c0a05d7ffff-1396834094de9a2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d598de-13f784086e0a85f3","8f44c0a05d4ab0d-13be8273f2a0af12"]},"geometry":{"type":"LineString","coordinates":[[-83.6866426,32.900412],[-83.6866463,32.900434600000004],[-83.68680520000001,32.900574],[-83.6868589,32.900593],[-83.6869187,32.900591],[-83.68728970000001,32.9003456]]},"id":"8944c0a05d7ffff-139ed34549dc4d5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6865444,32.900413300000004]},"id":"8f44c0a05d591a0-13f6d445cb64db43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d598de-13f784086e0a85f3","8f44c0a05d591a0-13f6d445cb64db43"]},"geometry":{"type":"LineString","coordinates":[[-83.6866426,32.900412],[-83.6866042,32.900408],[-83.6865444,32.900413300000004]]},"id":"8b44c0a05d59fff-13f68427185fec8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d5bb62-13d6d4b4a285f45a","8f44c0a05d591a0-13f6d445cb64db43"]},"geometry":{"type":"LineString","coordinates":[[-83.6865444,32.900413300000004],[-83.68649470000001,32.9004411],[-83.686367,32.9005677]]},"id":"8b44c0a05d59fff-1397a47f6cf21b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4ddb4-17b7c1069ce6226b","8f44c0a05d48189-139681e562e8f1f7"]},"geometry":{"type":"LineString","coordinates":[[-83.68751780000001,32.9002496],[-83.6875596,32.900245600000005],[-83.6878743,32.899926]]},"id":"8a44c0a05d4ffff-17b6d17275bd1127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4ddb4-17b7c1069ce6226b","8f44c0a05d6b0a6-17b7c0849b966657"]},"geometry":{"type":"LineString","coordinates":[[-83.6878743,32.899926],[-83.6880823,32.899714800000005]]},"id":"8944c0a05d7ffff-17f7c0c590178540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d6828a-17b7a0084c98009f","8f44c0a05d6b0a6-17b7c0849b966657"]},"geometry":{"type":"LineString","coordinates":[[-83.6880823,32.899714800000005],[-83.6882812,32.899493]]},"id":"8a44c0a05d6ffff-17fef04661184dd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085663,32.7426465]},"id":"8f44c0b040a654d-17be5e8211533aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040a654d-17be5e8211533aa7","8f44c0b040a2ba5-13bfce27a9a5861d"]},"geometry":{"type":"LineString","coordinates":[[-83.70871100000001,32.743039200000005],[-83.7086357,32.7429152],[-83.70859030000001,32.7427547],[-83.7085663,32.7426465]]},"id":"8a44c0b040a7fff-17be5e5da1449967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70912530000001,32.742646900000004]},"id":"8f44c0b040a4766-17be5d24b710162b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040a4766-17be5d24b710162b","8f44c0b040a654d-17be5e8211533aa7"]},"geometry":{"type":"LineString","coordinates":[[-83.7085663,32.7426465],[-83.70856260000001,32.742114900000004],[-83.70852640000001,32.7420099],[-83.70853100000001,32.7417287],[-83.7092145,32.7417302],[-83.7091948,32.742596],[-83.70917370000001,32.7426265],[-83.70912530000001,32.742646900000004]]},"id":"8844c0b041fffff-17d76dbe88fff7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040a4766-17be5d24b710162b","8f44c0b040a654d-17be5e8211533aa7"]},"geometry":{"type":"LineString","coordinates":[[-83.70912530000001,32.742646900000004],[-83.7085663,32.7426465]]},"id":"8a44c0b040a7fff-17be7dd3696d1d68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5ac2ab-17b760e86f8f82a5","8f44c0a2e5ac162-17b660d92b1ecce5"]},"geometry":{"type":"LineString","coordinates":[[-83.7010298,32.8991062],[-83.7010391,32.8989587],[-83.7010542,32.8988934]]},"id":"8b44c0a2e5acfff-17f6f0e310e3d409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e512013-13be70cb1f0f7339","8f44c0a2e5ac162-17b660d92b1ecce5"]},"geometry":{"type":"LineString","coordinates":[[-83.7010542,32.8988934],[-83.7010767,32.898502900000004]]},"id":"8944c0a2e5bffff-17b660d22aec4b88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e512013-13be70cb1f0f7339","8f44c0a2e51241d-13bf7132b92987b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7010767,32.898502900000004],[-83.70102770000001,32.8985043],[-83.70091090000001,32.8984979]]},"id":"8b44c0a2e512fff-13bfe0feef07799a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5a1ce4-13bee2199e513fb4","8f44c0a2e51241d-13bf7132b92987b5"]},"geometry":{"type":"LineString","coordinates":[[-83.70091090000001,32.8984979],[-83.7005415,32.8984776]]},"id":"8a44c0a2e5a7fff-13b6e1a62339896f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5aed81-179fe283aba08719","8f44c0a2e5a1ce4-13bee2199e513fb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7005415,32.8984776],[-83.7004086,32.8984703],[-83.7003718,32.898838000000005]]},"id":"8a44c0a2e5a7fff-13ff626a1928e986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5aed81-179fe283aba08719","8f44c0a2e5ae40b-179e72a09b7caa1c"]},"geometry":{"type":"LineString","coordinates":[[-83.7003718,32.898838000000005],[-83.7003255,32.899043500000005]]},"id":"8b44c0a2e5aefff-17de629225a83ef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7019154,32.8989208]},"id":"8f44c0a2e51164d-17d7debee8c7000a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e51e141-17dedec5a16e6953","8f44c0a2e51164d-17d7debee8c7000a"]},"geometry":{"type":"LineString","coordinates":[[-83.7019046,32.89914],[-83.7019154,32.8989208]]},"id":"8a44c0a2e51ffff-17965ec241d3811a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5ac162-17b660d92b1ecce5","8f44c0a2e51164d-17d7debee8c7000a"]},"geometry":{"type":"LineString","coordinates":[[-83.7019154,32.8989208],[-83.7010542,32.8988934]]},"id":"8844c0a2e5fffff-17beffcc01d032f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7023525,32.8991534]},"id":"8f44c0a2e51c3aa-17d6fdadbe04e430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7023576,32.8988694]},"id":"8f44c0a2e51c98e-17b77daa8c6e10b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e51c3aa-17d6fdadbe04e430","8f44c0a2e51c98e-17b77daa8c6e10b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7023525,32.8991534],[-83.7023576,32.8988694]]},"id":"8b44c0a2e51cfff-17fe7dac20acae94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7019733,32.8988588]},"id":"8f44c0a2e5112a6-179ede9abba0e534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5112a6-179ede9abba0e534","8f44c0a2e51c98e-17b77daa8c6e10b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7023576,32.8988694],[-83.7019733,32.8988588]]},"id":"8944c0a2e53ffff-179e5e22a21a5afc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e51164d-17d7debee8c7000a","8f44c0a2e5112a6-179ede9abba0e534"]},"geometry":{"type":"LineString","coordinates":[[-83.7019733,32.8988588],[-83.7019154,32.8989208]]},"id":"8b44c0a2e511fff-17be7eacda97f08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e51586b-13fefdf0407f4cd0","8f44c0a2e51c98e-17b77daa8c6e10b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7023576,32.8988694],[-83.7023734,32.8984618],[-83.7023748,32.8984042],[-83.7023638,32.898372],[-83.702246,32.8981994]]},"id":"8944c0a2e53ffff-13d7ddb038620aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5150b1-13b65e8d090924b6","8f44c0a2e51586b-13fefdf0407f4cd0"]},"geometry":{"type":"LineString","coordinates":[[-83.702246,32.8981994],[-83.7019952,32.8982788]]},"id":"8b44c0a2e515fff-13977e3ea5025fae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5150b1-13b65e8d090924b6","8f44c0a2e5112a6-179ede9abba0e534"]},"geometry":{"type":"LineString","coordinates":[[-83.7019952,32.8982788],[-83.7019733,32.8988588]]},"id":"8a44c0a2e517fff-13f7de93d9afe6ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e506024-13de5d2bcf6ad5a6","8f44c0a2e506b25-13d7dca43746a44a"]},"geometry":{"type":"LineString","coordinates":[[-83.70277730000001,32.898108],[-83.70256040000001,32.8981477]]},"id":"8b44c0a2e506fff-13d7fce7f97e114e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e506024-13de5d2bcf6ad5a6","8f44c0a2e506d15-13f7dd6c24c95455"]},"geometry":{"type":"LineString","coordinates":[[-83.70256040000001,32.8981477],[-83.7024574,32.897958]]},"id":"8b44c0a2e506fff-13b75d4bf07a8d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e506d15-13f7dd6c24c95455","8f44c0a2e531185-13d75d00ad07e8bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7024574,32.897958],[-83.7023999,32.8978012],[-83.70241730000001,32.8977682],[-83.7026294,32.8976981]]},"id":"8a44c0a2e537fff-1397dd6044bc491b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e51e141-17dedec5a16e6953","8f44c0a2e51c3aa-17d6fdadbe04e430"]},"geometry":{"type":"LineString","coordinates":[[-83.7019046,32.89914],[-83.7023525,32.8991534]]},"id":"8a44c0a2e51ffff-17defe39bf1f1481"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e51c3a9-17d75d9f13b0eab7","8f44c0a2e51c3aa-17d6fdadbe04e430"]},"geometry":{"type":"LineString","coordinates":[[-83.7023525,32.8991534],[-83.7023759,32.899154100000004]]},"id":"8e44c0a2e51c3af-17d77da66679664d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56872820000001,32.8058076]},"id":"8f44c0b852e3295-13ffe3e8ee88d7fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5682352,32.8057959]},"id":"8f44c0b852c40c4-13f7f51d06ba023a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c40c4-13f7f51d06ba023a","8f44c0b852e3295-13ffe3e8ee88d7fe"]},"geometry":{"type":"LineString","coordinates":[[-83.56872820000001,32.8058076],[-83.56863580000001,32.8058137],[-83.5684325,32.805827300000004],[-83.56829640000001,32.805812700000004],[-83.5682352,32.8057959]]},"id":"8944c0b852fffff-13f7f48398341b06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c40c4-13f7f51d06ba023a","8f44c0b852c40b4-13bff54837a01557"]},"geometry":{"type":"LineString","coordinates":[[-83.5682352,32.8057959],[-83.5681661,32.8057327]]},"id":"8c44c0b852c41ff-13d7b532af27d904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56812910000001,32.805475900000005]},"id":"8f44c0b852f1a44-139ff55f57600d1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f1a44-139ff55f57600d1c","8f44c0b852c40b4-13bff54837a01557"]},"geometry":{"type":"LineString","coordinates":[[-83.5681661,32.8057327],[-83.56812910000001,32.805475900000005]]},"id":"8944c0b852fffff-13ffb553c7f8507d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.566488,32.8050407]},"id":"8f44c0b85288a6d-179ff9610d773099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f1a44-139ff55f57600d1c","8f44c0b85288a6d-179ff9610d773099"]},"geometry":{"type":"LineString","coordinates":[[-83.56812910000001,32.805475900000005],[-83.5681242,32.805441800000004],[-83.5681071,32.805249],[-83.5680731,32.8051423],[-83.5680049,32.8050628],[-83.56789020000001,32.805001600000004],[-83.567616,32.8049],[-83.5671078,32.8047503],[-83.56701790000001,32.804735900000004],[-83.56695900000001,32.8047672],[-83.566488,32.8050407]]},"id":"8844c0b853fffff-17dfe71c7fd610a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c6091-1397a6748fa4475e","8f44c0b852c6868-13d7f5cfdfe98870"]},"geometry":{"type":"LineString","coordinates":[[-83.5679491,32.8057645],[-83.5676856,32.8058712]]},"id":"8b44c0b852c6fff-13f7a62225c7ce28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c6091-1397a6748fa4475e","8f44c0b852c0d74-13d7b56e6777c811"]},"geometry":{"type":"LineString","coordinates":[[-83.5676856,32.8058712],[-83.56745790000001,32.8059634],[-83.5674252,32.8060253],[-83.56756010000001,32.8062264],[-83.56764600000001,32.8062126],[-83.5680629,32.8060291],[-83.568105,32.805974500000005]]},"id":"8944c0b852fffff-1397f671a7ce1c35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c0d74-13d7b56e6777c811","8f44c0b852c40c4-13f7f51d06ba023a"]},"geometry":{"type":"LineString","coordinates":[[-83.568105,32.805974500000005],[-83.5681893,32.8058594],[-83.5682352,32.8057959]]},"id":"8a44c0b852c7fff-139ff545abae723c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5679884,32.8055447]},"id":"8f44c0b852f1224-13dff5b74066ea47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852c40b4-13bff54837a01557","8f44c0b852f1224-13dff5b74066ea47"]},"geometry":{"type":"LineString","coordinates":[[-83.5681661,32.8057327],[-83.5679884,32.8055447]]},"id":"8944c0b852fffff-1397b57fce4c0821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56755770000001,32.805335500000005]},"id":"8f44c0b852f392b-13d7b6c477528ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f392b-13d7b6c477528ab8","8f44c0b852f1224-13dff5b74066ea47"]},"geometry":{"type":"LineString","coordinates":[[-83.5679884,32.8055447],[-83.5678924,32.8054338],[-83.56779180000001,32.8053631],[-83.56767310000001,32.8053357],[-83.56755770000001,32.805335500000005]]},"id":"8a44c0b852f7fff-13ffa631a12fb367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f392b-13d7b6c477528ab8","8f44c0b852f3c64-13ffb72a06497b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.56755770000001,32.805335500000005],[-83.5673952,32.8053897]]},"id":"8b44c0b852f3fff-13d7a6f737795f2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5664122,32.8064738]},"id":"8f44c0b852d34b2-139fa9906688b2ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f3c64-13ffb72a06497b8a","8f44c0b852d34b2-139fa9906688b2ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5673952,32.8053897],[-83.5672035,32.8054766],[-83.5669328,32.8056144],[-83.5667839,32.8057494],[-83.5665635,32.805880900000005],[-83.5662547,32.8060339],[-83.5662241,32.8061542],[-83.5664122,32.8064738]]},"id":"8844c0b853fffff-139ff8e8f2f72740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f1a44-139ff55f57600d1c","8f44c0b852f1224-13dff5b74066ea47"]},"geometry":{"type":"LineString","coordinates":[[-83.56812910000001,32.805475900000005],[-83.5679884,32.8055447]]},"id":"8b44c0b852f1fff-13b7f58b53b7ba78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f1224-13dff5b74066ea47","8f44c0b852f164e-13fff6122c8fef39"]},"geometry":{"type":"LineString","coordinates":[[-83.5679884,32.8055447],[-83.56784300000001,32.8056213]]},"id":"8b44c0b852f1fff-13f7e5e4bcb9ba54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b852f392b-13d7b6c477528ab8","8f44c0b852f164e-13fff6122c8fef39"]},"geometry":{"type":"LineString","coordinates":[[-83.56784300000001,32.8056213],[-83.5675856,32.805393200000005],[-83.56755770000001,32.805335500000005]]},"id":"8a44c0b852f7fff-13b7a67096e18475"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69391990000001,32.8708924]},"id":"8f44c0a2063008c-13d7f2441c8b1532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20636aee-17b6f28d132c7171","8f44c0a2063008c-13d7f2441c8b1532"]},"geometry":{"type":"LineString","coordinates":[[-83.69380310000001,32.870615400000005],[-83.69391990000001,32.8708924]]},"id":"8a44c0a20637fff-17ff72689a802472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940024,32.8710879]},"id":"8f44c0a2063392c-13dff21080620081"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2063392c-13dff21080620081","8f44c0a2063008c-13d7f2441c8b1532"]},"geometry":{"type":"LineString","coordinates":[[-83.69391990000001,32.8708924],[-83.6940024,32.8710879]]},"id":"8b44c0a20630fff-1396f22a46287cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6940716,32.8712524]},"id":"8f44c0a20633b05-13b6f1e5481e5c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2063392c-13dff21080620081","8f44c0a20633b05-13b6f1e5481e5c81"]},"geometry":{"type":"LineString","coordinates":[[-83.6940024,32.8710879],[-83.6940716,32.8712524]]},"id":"8a44c0a20637fff-139771faebfe91d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20633b05-13b6f1e5481e5c81","8f44c0a20633b0d-13d7f1deebddca79"]},"geometry":{"type":"LineString","coordinates":[[-83.6940716,32.8712524],[-83.6940818,32.871276]]},"id":"8d44c0a20633b3f-13be71e213a4b632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20606d0b-13bef1b399c86ebd","8f44c0a20633b0d-13d7f1deebddca79"]},"geometry":{"type":"LineString","coordinates":[[-83.6940818,32.871276],[-83.6941511,32.8714376]]},"id":"8a44c0a20637fff-13f671c943401eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20633b05-13b6f1e5481e5c81","8f44c0a20606d0b-13bef1b399c86ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.6941511,32.8714376],[-83.6942592,32.8714073],[-83.6944709,32.8713512],[-83.69449320000001,32.871323100000005],[-83.6944821,32.8712529],[-83.6944459,32.8711827],[-83.6944069,32.871168600000004],[-83.6943372,32.8711733],[-83.6940716,32.8712524]]},"id":"8944c0a2063ffff-13df71489860b633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205237,32.814509900000004]},"id":"8f44c0b0a963995-17beb150bcaf4b92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a963995-17beb150bcaf4b92","8f44c0b0a963d93-17be31ce9869c16c"]},"geometry":{"type":"LineString","coordinates":[[-83.7203223,32.8145088],[-83.7205237,32.814509900000004]]},"id":"8a44c0b0a967fff-17be718faeee8a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205198,32.8140699]},"id":"8f44c0b0a960d1e-179fb15321a056dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a963995-17beb150bcaf4b92","8f44c0b0a960d1e-179fb15321a056dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7205237,32.814509900000004],[-83.72081010000001,32.8145114],[-83.7212014,32.8145256],[-83.72124600000001,32.8145206],[-83.7212629,32.8145015],[-83.7212738,32.814122600000005],[-83.72125790000001,32.8140901],[-83.72122420000001,32.8140651],[-83.72080310000001,32.8140434],[-83.7205534,32.8140676],[-83.7205198,32.8140699]]},"id":"8944c0b0a97ffff-17b7f035f8f4f004"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a966234-1797f1cbd3dce1f9","8f44c0b0a960d1e-179fb15321a056dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7205198,32.8140699],[-83.7204672,32.814073400000005],[-83.7203267,32.8140668]]},"id":"8a44c0b0a967fff-179e318f7388f0f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205227,32.8147588]},"id":"8f44c0b0a963051-17de71515b15bd8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a963995-17beb150bcaf4b92","8f44c0b0a963051-17de71515b15bd8c"]},"geometry":{"type":"LineString","coordinates":[[-83.7205227,32.8147588],[-83.7205237,32.814509900000004]]},"id":"8b44c0b0a963fff-17feb1510cfb6072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a963995-17beb150bcaf4b92","8f44c0b0a960d1e-179fb15321a056dd"]},"geometry":{"type":"LineString","coordinates":[[-83.7205237,32.814509900000004],[-83.72053960000001,32.8142408],[-83.7205198,32.8140699]]},"id":"8a44c0b0a967fff-17b7314c373d6ac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6390463,32.846586300000006]},"id":"8f44c0a34660620-17fef83c10a26ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3464484c-17d6f91689b51224","8f44c0a34660620-17fef83c10a26ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.6386968,32.8469295],[-83.638754,32.846912100000004],[-83.6390463,32.846586300000006]]},"id":"8944c0a3467ffff-17fff8a493d48124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34660620-17fef83c10a26ec3","8f44c0a3464484c-17d6f91689b51224"]},"geometry":{"type":"LineString","coordinates":[[-83.6390463,32.846586300000006],[-83.63909910000001,32.8465275],[-83.6392285,32.846247000000005],[-83.6392368,32.846192],[-83.639216,32.846144100000004],[-83.63917140000001,32.846141800000005],[-83.63912970000001,32.8461675],[-83.63897800000001,32.846505300000004],[-83.6387651,32.8467531],[-83.6386664,32.846877],[-83.6386968,32.8469295]]},"id":"8944c0a3467ffff-17b7f8548046b003"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6391876,32.8466766]},"id":"8f44c0a346602d5-17b6f7e3cff12197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34660620-17fef83c10a26ec3","8f44c0a346602d5-17b6f7e3cff12197"]},"geometry":{"type":"LineString","coordinates":[[-83.6390463,32.846586300000006],[-83.6391876,32.8466766]]},"id":"8b44c0a34660fff-179ef80fff609969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6389168,32.8469928]},"id":"8f44c0a3466371d-17fef88d0812dde6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3466371d-17fef88d0812dde6","8f44c0a346602d5-17b6f7e3cff12197"]},"geometry":{"type":"LineString","coordinates":[[-83.6391876,32.8466766],[-83.6393676,32.846791700000004],[-83.63909910000001,32.8470956],[-83.6389168,32.8469928]]},"id":"8a44c0a34667fff-17dff7e3ae98ee04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3466371d-17fef88d0812dde6","8f44c0a346602d5-17b6f7e3cff12197"]},"geometry":{"type":"LineString","coordinates":[[-83.6389168,32.8469928],[-83.6391876,32.8466766]]},"id":"8a44c0a34667fff-1797f838669614d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a10c91d4d-17fffd2af6b39332","8f44c0a10c91431-13d77da368eca8e6"]},"geometry":{"type":"LineString","coordinates":[[-83.59115050000001,32.900247900000004],[-83.5909578,32.900361700000005]]},"id":"8b44c0a10c91fff-13b7ed6736507f4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a10c9e35b-13d76d24b00cd596","8f44c0a10c91431-13d77da368eca8e6"]},"geometry":{"type":"LineString","coordinates":[[-83.5909578,32.900361700000005],[-83.5908239,32.900440800000005],[-83.5907974,32.9008812],[-83.5911605,32.9009924]]},"id":"8944c0a10cbffff-13bf7dce7eb534d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b3369d702-1396e08bcbfac7d1","8f44c0b33699105-13bec08847d99c59"]},"geometry":{"type":"LineString","coordinates":[[-83.661862,32.741214],[-83.6618619,32.741041100000004],[-83.66185920000001,32.740982100000004],[-83.6618564,32.740923]]},"id":"8a44c0b3369ffff-13dfd0890c0d5c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b3369d702-1396e08bcbfac7d1","8f44c0b3369cbad-13f6e0bde975d755"]},"geometry":{"type":"LineString","coordinates":[[-83.6618564,32.740923],[-83.66185150000001,32.7408196],[-83.6618222,32.740571700000004],[-83.6617762,32.7404874]]},"id":"8a44c0b3369ffff-13ffe09a9eaa56e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b3369a033-13d7c2ac889e3ebc","8f44c0b3369cbad-13f6e0bde975d755"]},"geometry":{"type":"LineString","coordinates":[[-83.6617762,32.7404874],[-83.6615787,32.7404523],[-83.6611367,32.7404663],[-83.66103430000001,32.7405208],[-83.6609883,32.7405999],[-83.6609842,32.740974300000005],[-83.66098480000001,32.741046000000004]]},"id":"8a44c0b3369ffff-13bef212fad7b81e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b3369a74d-13b7d2aba6a50c4d","8f44c0b3369a033-13d7c2ac889e3ebc"]},"geometry":{"type":"LineString","coordinates":[[-83.66098480000001,32.741046000000004],[-83.66098550000001,32.7411286],[-83.66098620000001,32.7412025]]},"id":"8b44c0b3369afff-1396f2ac1ba19939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7213899,32.8108889]},"id":"8f44c0b0e2e44c9-17d7bf335b324cb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e2e6651-17de30131a001597","8f44c0b0e2e44c9-17d7bf335b324cb9"]},"geometry":{"type":"LineString","coordinates":[[-83.7210319,32.8111073],[-83.721108,32.811120700000004],[-83.72113510000001,32.8111369],[-83.7213615,32.811414],[-83.7213909,32.811421200000005],[-83.7216755,32.8112677],[-83.7216772,32.8112459],[-83.7214136,32.8108939],[-83.7213899,32.8108889]]},"id":"8a44c0b0e2e7fff-179fff21ac67b98f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e2e6651-17de30131a001597","8f44c0b0e2e44c9-17d7bf335b324cb9"]},"geometry":{"type":"LineString","coordinates":[[-83.7213899,32.8108889],[-83.7210319,32.8111073]]},"id":"8a44c0b0e2e7fff-179fffa33b279859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b88acb282-17dfaa0ec0831413","8f44c0b89d96d33-179ff9631a8eb56c"]},"geometry":{"type":"LineString","coordinates":[[-83.5793172,32.8594098],[-83.5794619,32.859340200000005],[-83.57957800000001,32.8593313],[-83.57959190000001,32.8593319]]},"id":"8a44c0b88acffff-17bfc9bb1d0970ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58000870000001,32.8593491]},"id":"8f44c0b89d94c8b-17b7b85e9d4deff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b89d94c8b-17b7b85e9d4deff1","8f44c0b89d96d33-179ff9631a8eb56c"]},"geometry":{"type":"LineString","coordinates":[[-83.57959190000001,32.8593319],[-83.58000870000001,32.8593491]]},"id":"8944c0b89dbffff-179fd8e0d2b6795b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a225772-13f7494f5b8151d4","8f44c0a2a225aa8-13dff8d0cd4c3d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.7106955,32.9301328],[-83.710898,32.930066700000005]]},"id":"8b44c0a2a225fff-13f6691012f1a83e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a354154-139ff6bb441ee2db","8f44c0a2a225aa8-13dff8d0cd4c3d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.710898,32.930066700000005],[-83.7117516,32.929788300000006]]},"id":"8844c0a2a3fffff-13f6f7c608043a22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7118554,32.930001100000005]},"id":"8f44c0a2a354262-13b6f67a64f46357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a354262-13b6f67a64f46357","8f44c0a2a354154-139ff6bb441ee2db"]},"geometry":{"type":"LineString","coordinates":[[-83.7117516,32.929788300000006],[-83.7118554,32.930001100000005]]},"id":"8b44c0a2a354fff-13f6769ad5ddb0cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6104401,32.8654013]},"id":"8f44c0a3201e0e1-13fffe12f4067d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201e073-13f7bdffb6b87fc5","8f44c0a3201e0e1-13fffe12f4067d05"]},"geometry":{"type":"LineString","coordinates":[[-83.6104401,32.8654013],[-83.61047090000001,32.8653849]]},"id":"8c44c0a3201e1ff-13f7be0959ed2ffe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201ea24-13dfbd97481b9d72","8f44c0a3201e073-13f7bdffb6b87fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.61047090000001,32.8653849],[-83.6105033,32.8653676],[-83.6105546,32.8653484],[-83.61063800000001,32.8653451]]},"id":"8b44c0a3201efff-13dffdccd4097fe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201ea24-13dfbd97481b9d72","8f44c0a3201c71c-13d77d27c64e7ffb"]},"geometry":{"type":"LineString","coordinates":[[-83.61063800000001,32.8653451],[-83.6108164,32.865338]]},"id":"8a44c0a3201ffff-13d77d5f88521042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201c331-13bf7cae590111ff","8f44c0a3201c71c-13d77d27c64e7ffb"]},"geometry":{"type":"LineString","coordinates":[[-83.6108164,32.865338],[-83.61101070000001,32.865330300000004]]},"id":"8b44c0a3201cfff-13d7fceb13a08265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201ca69-13bf3c3ff3f8dc8e","8f44c0a3201c331-13bf7cae590111ff"]},"geometry":{"type":"LineString","coordinates":[[-83.61101070000001,32.865330300000004],[-83.61118730000001,32.8653232]]},"id":"8b44c0a3201cfff-13bf7c772ca5c5da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201ca69-13bf3c3ff3f8dc8e","8f44c0a32000554-13b7fbcb6667b4cf"]},"geometry":{"type":"LineString","coordinates":[[-83.61118730000001,32.8653232],[-83.6113596,32.865316400000005],[-83.6113902,32.8653016],[-83.6114063,32.865273800000004],[-83.61137380000001,32.8646685]]},"id":"8944c0a3203ffff-139fbbd04328801e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32000554-13b7fbcb6667b4cf","8f44c0a3200010c-139f3b5e0a270ba0"]},"geometry":{"type":"LineString","coordinates":[[-83.61137380000001,32.8646685],[-83.61154880000001,32.8646594]]},"id":"8b44c0a32000fff-139f3b94b9bceb45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3200010c-139f3b5e0a270ba0","8f44c0a32000b25-1397bae1c79092eb"]},"geometry":{"type":"LineString","coordinates":[[-83.61154880000001,32.8646594],[-83.6117476,32.8646491]]},"id":"8b44c0a32000fff-139ffb1fe518d294"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6119096,32.8636374]},"id":"8f44c0a3202292c-179f7a7c804e7dd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32000b25-1397bae1c79092eb","8f44c0a3202292c-179f7a7c804e7dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6117476,32.8646491],[-83.6118625,32.8646431],[-83.6118993,32.8646225],[-83.6119178,32.864579500000005],[-83.6119096,32.8636374]]},"id":"8944c0a3203ffff-17ff3a81ac2fdb36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61001830000001,32.863708100000004]},"id":"8f44c0a321898ae-17dfbf1a9cc23808"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3202292c-179f7a7c804e7dd2","8f44c0a321898ae-17dfbf1a9cc23808"]},"geometry":{"type":"LineString","coordinates":[[-83.6119096,32.8636374],[-83.61189730000001,32.8630913],[-83.6118605,32.8628747],[-83.61183390000001,32.8626943],[-83.6117837,32.862624700000005],[-83.61159860000001,32.8625293],[-83.61145950000001,32.8625035],[-83.60998760000001,32.8625563],[-83.60975660000001,32.8625654],[-83.6096682,32.8626057],[-83.6096589,32.8626774],[-83.6096899,32.862743800000004],[-83.60976740000001,32.8628024],[-83.60992560000001,32.862855800000006],[-83.6099851,32.8629085],[-83.6100401,32.8635906],[-83.6100342,32.863660700000004],[-83.61001830000001,32.863708100000004]]},"id":"8844c0a321fffff-17bf7d476d1e98a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201e42e-13d7fe8181af9193","8f44c0a321898ae-17dfbf1a9cc23808"]},"geometry":{"type":"LineString","coordinates":[[-83.61001830000001,32.863708100000004],[-83.610006,32.863744600000004],[-83.6099949,32.863799400000005],[-83.6100409,32.8651356],[-83.61006230000001,32.865206],[-83.6101033,32.8652645],[-83.6101728,32.8653074],[-83.6102632,32.865334000000004]]},"id":"8844c0a321fffff-13f7bf0e84e97d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3201e42e-13d7fe8181af9193","8f44c0a3201e0e1-13fffe12f4067d05"]},"geometry":{"type":"LineString","coordinates":[[-83.6102632,32.865334000000004],[-83.610313,32.865348700000006],[-83.6104401,32.8654013]]},"id":"8b44c0a3201efff-13d7be49da8c2a26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6105376,32.865619200000005]},"id":"8f44c0a32018591-13f73dd60c25e956"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32018591-13f73dd60c25e956","8f44c0a3201e0e1-13fffe12f4067d05"]},"geometry":{"type":"LineString","coordinates":[[-83.6104401,32.8654013],[-83.6104986,32.8655805],[-83.6105107,32.865600900000004],[-83.6105376,32.865619200000005]]},"id":"8a44c0a3201ffff-13b7fdf9f9ca75ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1929e18e-17fed18e26e2e395","8f44c0b1929e0d0-17b7a18e49f6fae2"]},"geometry":{"type":"LineString","coordinates":[[-83.6876574,32.8369317],[-83.6876572,32.837022600000005]]},"id":"8c44c0b1929e1ff-1796c18e36a3ae55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876567,32.8373348]},"id":"8f44c0b1929a8dc-17f6c18e957f487b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1929a8dc-17f6c18e957f487b","8f44c0b1929e0d0-17b7a18e49f6fae2"]},"geometry":{"type":"LineString","coordinates":[[-83.6876572,32.837022600000005],[-83.6876567,32.8373348]]},"id":"8a44c0b1929ffff-1796b18e77f49fd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877759,32.8373367]},"id":"8f44c0b1929ab33-17f7f1441d10fb15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1929a8dc-17f6c18e957f487b","8f44c0b1929ab33-17f7f1441d10fb15"]},"geometry":{"type":"LineString","coordinates":[[-83.6876567,32.8373348],[-83.6876562,32.837668],[-83.6876699,32.8377044],[-83.68770070000001,32.8377293],[-83.68777250000001,32.8377351],[-83.68780550000001,32.837725500000005],[-83.6878272,32.8377063],[-83.6878272,32.837378900000004],[-83.68781460000001,32.837352],[-83.6877759,32.8373367]]},"id":"8a44c0b1929ffff-17ff8157f93f5017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1929a8dc-17f6c18e957f487b","8f44c0b1929ab33-17f7f1441d10fb15"]},"geometry":{"type":"LineString","coordinates":[[-83.6877759,32.8373367],[-83.6876567,32.8373348]]},"id":"8b44c0b1929afff-17f6e1695d1e598e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6545681,32.8276946]},"id":"8f44c0b1a24cb65-17dff256fabd9270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a24cb65-17dff256fabd9270","8f44c0b1b532595-13d7d1e5477508ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65475,32.828296800000004],[-83.65476430000001,32.8281852],[-83.65474300000001,32.828102200000004],[-83.6545681,32.8276946]]},"id":"8a44c0b1a24ffff-1796d20cf4e60b9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65425710000001,32.826969600000005]},"id":"8f44c0b1a245a2e-179ed319537a3a3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a245a2e-179ed319537a3a3e","8f44c0b1a24cb65-17dff256fabd9270"]},"geometry":{"type":"LineString","coordinates":[[-83.6545681,32.8276946],[-83.65425710000001,32.826969600000005]]},"id":"8944c0b1a27ffff-17fed2b824505fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6549576,32.8281319]},"id":"8f44c0b1b532d25-17fef16386dabc2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6547517,32.827638]},"id":"8f44c0b1a26b01b-17bfd1e436970bb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a26b01b-17bfd1e436970bb8","8f44c0b1b532d25-17fef16386dabc2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6549576,32.8281319],[-83.6547517,32.827638]]},"id":"8744c0b1bffffff-17d6f1a3e8c539d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a26b01b-17bfd1e436970bb8","8f44c0b1a26336e-17ded2e26bfed347"]},"geometry":{"type":"LineString","coordinates":[[-83.6547517,32.827638],[-83.65444910000001,32.826911800000005],[-83.654421,32.826864300000004],[-83.6543431,32.826826700000005],[-83.654345,32.826662400000004]]},"id":"8944c0b1a27ffff-1797d26aeaf750b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b34898-13d7bfabcb41deb2","8f44c0a2249b412-13bebf1c3b20d1cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6624445,32.871671400000004],[-83.66226970000001,32.871677600000005],[-83.6622148,32.8716881]]},"id":"8944c0a31b3ffff-13bfff6430566dce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b34898-13d7bfabcb41deb2","8f44c0a31b36d4a-13fed0eea87e7c77"]},"geometry":{"type":"LineString","coordinates":[[-83.6622148,32.8716881],[-83.6619227,32.8718464],[-83.66180960000001,32.871861200000005],[-83.6617762,32.8718491],[-83.6616982,32.8717545]]},"id":"8a44c0a31b37fff-139ee0532be97cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3186a2c3-13bed27e0333299a","8f44c0a31b36d4a-13fed0eea87e7c77"]},"geometry":{"type":"LineString","coordinates":[[-83.6616982,32.8717545],[-83.661522,32.871540700000004],[-83.66151710000001,32.871499],[-83.6614996,32.8714492],[-83.66146160000001,32.8713927],[-83.66138670000001,32.8713069],[-83.6613351,32.8713069],[-83.66105920000001,32.8714669]]},"id":"8944c0a3187ffff-13bef1a1f15a1469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544f2b74-17b5d2ab0d8a9676","8f44c0b544f6674-179dd31ccc7016b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7592912,32.850774],[-83.759146,32.850726900000005],[-83.75908700000001,32.8506415],[-83.75909680000001,32.8505561],[-83.75910920000001,32.8505289]]},"id":"8a44c0b544f7fff-17fff3024f600367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544ab906-17f5f391ed33db13","8f44c0b544f6674-179dd31ccc7016b4"]},"geometry":{"type":"LineString","coordinates":[[-83.75910920000001,32.8505289],[-83.75916570000001,32.850404600000005],[-83.75921000000001,32.8502297],[-83.7591805,32.8500754],[-83.7590165,32.8499046],[-83.75892180000001,32.8498438]]},"id":"8844c0b545fffff-17b7f312b7d78ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b544ab906-17f5f391ed33db13","8f44c0b544aab76-1795f424af180a92"]},"geometry":{"type":"LineString","coordinates":[[-83.75892180000001,32.8498438],[-83.758905,32.849833000000004],[-83.7587755,32.8497889],[-83.75868700000001,32.8496966]]},"id":"8a44c0b544affff-17ddf3e0499fd4aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74460970000001,32.8702221]},"id":"8f44c0b5281a004-17b5f682ff677dc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5281a004-17b5f682ff677dc9","8f44c0b528f4514-179df74a60d0aa01"]},"geometry":{"type":"LineString","coordinates":[[-83.7442906,32.870574500000004],[-83.7443362,32.8705038],[-83.74449320000001,32.87032],[-83.74460970000001,32.8702221]]},"id":"8844c0b529fffff-179df6ecced76d1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.744617,32.870163500000004]},"id":"8f44c0b5281a106-179df67e64569e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5281a004-17b5f682ff677dc9","8f44c0b5281a106-179df67e64569e2c"]},"geometry":{"type":"LineString","coordinates":[[-83.74460970000001,32.8702221],[-83.7447168,32.870262100000005],[-83.74483570000001,32.870302],[-83.74504970000001,32.8703779],[-83.745102,32.8703899],[-83.7451329,32.8703779],[-83.74515670000001,32.87034],[-83.7451544,32.870276100000005],[-83.74512580000001,32.870164200000005],[-83.74505,32.870010900000004],[-83.74523710000001,32.869949000000005],[-83.7450992,32.869595600000004],[-83.74505950000001,32.869575000000005],[-83.7449885,32.8695761],[-83.74489700000001,32.8695991],[-83.7448342,32.869626600000004],[-83.7447795,32.8696714],[-83.74471940000001,32.869745900000005],[-83.7447877,32.869929500000005],[-83.74469350000001,32.870031600000004],[-83.7446525,32.870097],[-83.744617,32.870163500000004]]},"id":"8a44c0b5281ffff-179ff5ac8d653a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5281a106-179df67e64569e2c","8f44c0b5281a004-17b5f682ff677dc9"]},"geometry":{"type":"LineString","coordinates":[[-83.744617,32.870163500000004],[-83.74460970000001,32.8702221]]},"id":"8c44c0b5281a1ff-179ff680a1cf0f4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60273740000001,32.8600866]},"id":"8f44c0a32531425-17f770e127d824a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32531425-17f770e127d824a7","8f44c0a32530a0e-17df70e0b4a4800d"]},"geometry":{"type":"LineString","coordinates":[[-83.60273810000001,32.8598262],[-83.6021012,32.8598404],[-83.60212340000001,32.8602909],[-83.60273690000001,32.860281900000004],[-83.60273740000001,32.8600866]]},"id":"8944c0a3253ffff-17ffd1bedc150d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60273790000001,32.8598872]},"id":"8f44c0a32530aeb-17f7d0e0d0fef57d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32530aeb-17f7d0e0d0fef57d","8f44c0a32531425-17f770e127d824a7"]},"geometry":{"type":"LineString","coordinates":[[-83.60273740000001,32.8600866],[-83.60273790000001,32.8598872]]},"id":"8a44c0a32537fff-17b7d0e0fa6f423e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32530aeb-17f7d0e0d0fef57d","8f44c0a32530a0e-17df70e0b4a4800d"]},"geometry":{"type":"LineString","coordinates":[[-83.60273790000001,32.8598872],[-83.60273810000001,32.8598262]]},"id":"8c44c0a32530bff-17f770e0ca9e6964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3252244a-17ffffa05bfbed12","8f44c0a32531425-17f770e127d824a7"]},"geometry":{"type":"LineString","coordinates":[[-83.60273740000001,32.8600866],[-83.6032507,32.8600751]]},"id":"8944c0a3253ffff-17ffd040bd8448df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32530aeb-17f7d0e0d0fef57d","8f44c0a32522c8d-17ffff9d197e8615"]},"geometry":{"type":"LineString","coordinates":[[-83.60325590000001,32.8598939],[-83.60273790000001,32.8598872]]},"id":"8944c0a3253ffff-17f7f03ef4d30900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6382616,32.8387364]},"id":"8f44c0a340a321e-13d6fa26837e9cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34085852-13bffa5140f549ca","8f44c0a340a321e-13d6fa26837e9cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6381932,32.8389042],[-83.6382616,32.8387364]]},"id":"8944c0a340bffff-1396fa3be13814db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340a0622-13b7fa3e12c0679f","8f44c0a340a321e-13d6fa26837e9cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6382616,32.8387364],[-83.6382325,32.8387006],[-83.63817900000001,32.8386853],[-83.6380769,32.8386495],[-83.6380757,32.8386128],[-83.6382239,32.8382524]]},"id":"8a44c0a340a7fff-13dffa69e0c98c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340a0622-13b7fa3e12c0679f","8f44c0a340a284b-13f7fac68c655695"]},"geometry":{"type":"LineString","coordinates":[[-83.6382239,32.8382524],[-83.63818930000001,32.8382376],[-83.6380056,32.8381758]]},"id":"8a44c0a340a7fff-139ffa82020e1493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340a026e-13d7f9a4aa7ff8ca","8f44c0a340a321e-13d6fa26837e9cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6382616,32.8387364],[-83.6384283,32.8383534],[-83.6384694,32.8383282]]},"id":"8a44c0a340a7fff-13dff9ebbee3583e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340a0622-13b7fa3e12c0679f","8f44c0a340a026e-13d7f9a4aa7ff8ca"]},"geometry":{"type":"LineString","coordinates":[[-83.6384694,32.8383282],[-83.6385259,32.8383052],[-83.63856530000001,32.83827],[-83.63857560000001,32.838216],[-83.6385679,32.8381714],[-83.63854740000001,32.8381411],[-83.6384848,32.8381174],[-83.63831780000001,32.8380692],[-83.6382887,32.8380785],[-83.63824840000001,32.8381246],[-83.6382239,32.8382524]]},"id":"8a44c0a340a7fff-13fff9c55401b6f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05036092-17d7b3e4733d4e9b","8f44c0a05034450-179ed2d89f06df7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6871287,32.906026100000005],[-83.6868831,32.906066800000005],[-83.68670010000001,32.906120300000005]]},"id":"8a44c0a05037fff-17b7d35f63cc5747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6854426,32.906514900000005]},"id":"8f44c0a0518a310-17dfd6f665d5ddee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0518a310-17dfd6f665d5ddee","8f44c0a05036092-17d7b3e4733d4e9b"]},"geometry":{"type":"LineString","coordinates":[[-83.68670010000001,32.906120300000005],[-83.6865425,32.9061663],[-83.6862258,32.9062496],[-83.68610050000001,32.9062755],[-83.68595230000001,32.9063773],[-83.68571870000001,32.9064357],[-83.6854426,32.906514900000005]]},"id":"8944c0a051bffff-17def56e19aae917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36b62ab4-139f4d5f9544b8f8","8f44c0a36b638b2-179fbcbb2b331594"]},"geometry":{"type":"LineString","coordinates":[[-83.630651,32.8429243],[-83.6305181,32.842836600000005],[-83.6303879,32.8427428]]},"id":"8a44c0a36b67fff-13d7dd0dfc798d45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70400620000001,32.920470900000005]},"id":"8f44c0a2a1a18f4-13de59a422699ab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a112014-13dfd8b526416fbd","8f44c0a2a1a18f4-13de59a422699ab0"]},"geometry":{"type":"LineString","coordinates":[[-83.7043886,32.9204669],[-83.70400620000001,32.920470900000005]]},"id":"8944c0a2a1bffff-13df592ca0edbc8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a1a02c1-13f6fa85de2384db","8f44c0a2a1a18f4-13de59a422699ab0"]},"geometry":{"type":"LineString","coordinates":[[-83.70400620000001,32.920470900000005],[-83.7036451,32.9204747]]},"id":"8a44c0a2a1a7fff-13dfda1500a5b7f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a1a02c1-13f6fa85de2384db","8f44c0a2a1a18f4-13de59a422699ab0"]},"geometry":{"type":"LineString","coordinates":[[-83.7036451,32.9204747],[-83.703063,32.9204807],[-83.7030548,32.9198296],[-83.7030792,32.9197968],[-83.7031183,32.919766800000005],[-83.7031671,32.9197545],[-83.7035037,32.919743600000004],[-83.7040078,32.9201162],[-83.70400620000001,32.920470900000005]]},"id":"8744c0a2affffff-13975b01bd36eed6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6699485,32.7911765]},"id":"8f44c0b1c46666d-17b7fcca3284a5f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46604d-17ffac949ff774c2","8f44c0b1c46666d-17b7fcca3284a5f1"]},"geometry":{"type":"LineString","coordinates":[[-83.67003430000001,32.7910618],[-83.6699485,32.7911765]]},"id":"8b44c0b1c466fff-1797fcaf6675737b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6699626,32.7912522]},"id":"8f44c0b1c462919-17f6acc16fa5a300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46666d-17b7fcca3284a5f1","8f44c0b1c462919-17f6acc16fa5a300"]},"geometry":{"type":"LineString","coordinates":[[-83.6699485,32.7911765],[-83.6699626,32.7912522]]},"id":"8a44c0b1c467fff-17dfacc5df91d877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c460d9e-179eec42b58ad3a0","8f44c0b1c462919-17f6acc16fa5a300"]},"geometry":{"type":"LineString","coordinates":[[-83.6699626,32.7912522],[-83.6700801,32.791239700000006],[-83.67016530000001,32.791133200000004]]},"id":"8a44c0b1c467fff-17defc7abcba8b05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46261b-17befd551cdabbed","8f44c0b1c462919-17f6acc16fa5a300"]},"geometry":{"type":"LineString","coordinates":[[-83.6699626,32.7912522],[-83.6698726,32.7914353],[-83.66972630000001,32.7915975]]},"id":"8b44c0b1c462fff-17d7ad03bb09523b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46261b-17befd551cdabbed","8f44c0b1c444521-17b7fdb455b9d6f6"]},"geometry":{"type":"LineString","coordinates":[[-83.66972630000001,32.7915975],[-83.6695739,32.7917663]]},"id":"8944c0b1c47ffff-17f7bd84b547d0b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c444521-17b7fdb455b9d6f6","8f44c0b1c44448c-17f7ededee2eed4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6695739,32.7917663],[-83.6694818,32.791868400000006]]},"id":"8c44c0b1c4445ff-17d7edd11aba0fee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c446a85-17b7fe33e9a0e48a","8f44c0b1c44448c-17f7ededee2eed4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6694818,32.791868400000006],[-83.6693698,32.7919925]]},"id":"8a44c0b1c447fff-179ebe10ee2e62f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c446a85-17b7fe33e9a0e48a","8f44c0b1c446295-139ebe80f94abc79"]},"geometry":{"type":"LineString","coordinates":[[-83.6693698,32.7919925],[-83.6692465,32.792129100000004]]},"id":"8b44c0b1c446fff-17deae5a6725177a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66880970000001,32.792613200000005]},"id":"8f44c0b1c451364-13b7ef91f7f5674c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c446295-139ebe80f94abc79","8f44c0b1c451364-13b7ef91f7f5674c"]},"geometry":{"type":"LineString","coordinates":[[-83.6692465,32.792129100000004],[-83.66880970000001,32.792613200000005]]},"id":"8944c0b1c47ffff-13b6af09793c903c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c451364-13b7ef91f7f5674c","8f44c0b1c45e3ac-13d7b01b47864f10"]},"geometry":{"type":"LineString","coordinates":[[-83.66880970000001,32.792613200000005],[-83.66859000000001,32.793039400000005]]},"id":"8944c0b1c47ffff-13beffd69acf15fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e251a85-17d7baa0b64e36ec","8f44c0b0e251763-139e7afc63c81695"]},"geometry":{"type":"LineString","coordinates":[[-83.72326290000001,32.8117115],[-83.7231162,32.811792700000005]]},"id":"8b44c0b0e251fff-17f73ace95aa1724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0e25c452-13b73a7d2e2ec264","8f44c0b0e251763-139e7afc63c81695"]},"geometry":{"type":"LineString","coordinates":[[-83.7231162,32.811792700000005],[-83.722953,32.811883200000004],[-83.72283130000001,32.811949000000006],[-83.7227778,32.811981100000004],[-83.72274990000001,32.8120131],[-83.72274680000001,32.8120339],[-83.7227654,32.8121032],[-83.72284470000001,32.8122011],[-83.7228695,32.812221],[-83.7229128,32.8122314],[-83.72296220000001,32.8122288],[-83.7230952,32.8121725],[-83.72329210000001,32.812054700000004],[-83.7233198,32.8120403]]},"id":"8944c0b0e27ffff-13beab563261c64b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20444b9a-17df742bff32372e","8f44c0a20440996-17f7f4b424cf4fa4"]},"geometry":{"type":"LineString","coordinates":[[-83.6931393,32.8661973],[-83.6929606,32.866392600000005],[-83.6929214,32.8664446]]},"id":"8a44c0a20447fff-17bff47149938f78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20440192-17d674f509b02e1a","8f44c0a20440996-17f7f4b424cf4fa4"]},"geometry":{"type":"LineString","coordinates":[[-83.6929214,32.8664446],[-83.69284470000001,32.8665463],[-83.69281760000001,32.866595700000005]]},"id":"8b44c0a20440fff-17b674d61d135f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20440192-17d674f509b02e1a","8f44c0a20441a0d-17d6735a5d1b3189"]},"geometry":{"type":"LineString","coordinates":[[-83.69281760000001,32.866595700000005],[-83.69295910000001,32.866685600000004],[-83.69347470000001,32.8670016]]},"id":"8a44c0a20447fff-17d7f42800df558e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68853010000001,32.8381399]},"id":"8f44c0a26926a59-13df7f6cbe9ddf12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26926a59-13df7f6cbe9ddf12","8f44c0b192836c2-17feff6cf4dfb467"]},"geometry":{"type":"LineString","coordinates":[[-83.6885297,32.836958],[-83.68853010000001,32.8381399]]},"id":"8844c0b193fffff-17fe7f6cdd2b4a39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68891330000001,32.8381563]},"id":"8f44c0a26924243-13f7fe7d3774c4e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26926a59-13df7f6cbe9ddf12","8f44c0a26924243-13f7fe7d3774c4e8"]},"geometry":{"type":"LineString","coordinates":[[-83.68853010000001,32.8381399],[-83.6881048,32.8381399],[-83.68810160000001,32.838339000000005],[-83.68891980000001,32.8383227],[-83.68891330000001,32.8381563]]},"id":"8a44c0a26927fff-13be7f9e05e54aa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26926a59-13df7f6cbe9ddf12","8f44c0a26924243-13f7fe7d3774c4e8"]},"geometry":{"type":"LineString","coordinates":[[-83.68891330000001,32.8381563],[-83.68853010000001,32.8381399]]},"id":"8a44c0a26927fff-13f6fef4f1ce65de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894c810d-17dffbdb696b0975","8f44c0b894ca3a9-17f7fcf35c204e86"]},"geometry":{"type":"LineString","coordinates":[[-83.57813230000001,32.8733991],[-83.5782825,32.8732984],[-83.5785802,32.8731351]]},"id":"8a44c0b894cffff-179fac6914d5c068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57911130000001,32.873519200000004]},"id":"8f44c0b894c9a2e-17bf8a8f70b101c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b894c9a2e-17bf8a8f70b101c8","8f44c0b894c810d-17dffbdb696b0975"]},"geometry":{"type":"LineString","coordinates":[[-83.5785802,32.8731351],[-83.57871700000001,32.8731948],[-83.5787787,32.8732534],[-83.5788618,32.8733615],[-83.578953,32.873420100000004],[-83.57911130000001,32.873519200000004]]},"id":"8a44c0b894cffff-17d7fb35319d2412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6220833,32.8433822]},"id":"8f44c0a3616b061-17bfe1a5f7684e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62193260000001,32.8432904]},"id":"8f44c0a3616b194-17f7a20423760b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3616b194-17f7a20423760b18","8f44c0a3616b061-17bfe1a5f7684e89"]},"geometry":{"type":"LineString","coordinates":[[-83.6220833,32.8433822],[-83.62193260000001,32.8432904]]},"id":"8c44c0a3616b1ff-179f31d501ce0299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3616b194-17f7a20423760b18","8f44c0a3616a219-17bfe28406fc9dea"]},"geometry":{"type":"LineString","coordinates":[[-83.62193260000001,32.8432904],[-83.621728,32.8432028]]},"id":"8a44c0a3616ffff-17d7224411346d37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3616a44d-17ffb2fed459d475","8f44c0a3616a219-17bfe28406fc9dea"]},"geometry":{"type":"LineString","coordinates":[[-83.621728,32.8432028],[-83.6215315,32.8430745]]},"id":"8b44c0a3616afff-1797b2c164661425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3616a59b-17b76354edfe5aad","8f44c0a3616a44d-17ffb2fed459d475"]},"geometry":{"type":"LineString","coordinates":[[-83.6215315,32.8430745],[-83.6213938,32.8429846]]},"id":"8b44c0a3616afff-17df7329dfbea5ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36145640-13f7a3b5052a89b9","8f44c0a3616a59b-17b76354edfe5aad"]},"geometry":{"type":"LineString","coordinates":[[-83.6213938,32.8429846],[-83.62124,32.8428842]]},"id":"8a44c0a36147fff-17972384f364e524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36140b29-13b7b4295f9beaf3","8f44c0a36145640-13f7a3b5052a89b9"]},"geometry":{"type":"LineString","coordinates":[[-83.62124,32.8428842],[-83.6210539,32.8427627]]},"id":"8a44c0a36147fff-13dfb3ef391deb84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36140b29-13b7b4295f9beaf3","8f44c0a3614080e-13f7f47bd30af148"]},"geometry":{"type":"LineString","coordinates":[[-83.6210539,32.8427627],[-83.6209219,32.8426765]]},"id":"8b44c0a36140fff-139fe4529400f5fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3614080e-13f7f47bd30af148","8f44c0a361446da-13bf64cf7e4e1451"]},"geometry":{"type":"LineString","coordinates":[[-83.6209219,32.8426765],[-83.6207881,32.8425892]]},"id":"8b44c0a36140fff-13d7b4a5a043dde6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6454222,32.8428391]},"id":"8f44c0a34302d1d-13d6f8ab2f928db7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34302d1d-13d6f8ab2f928db7","8f44c0a34301d0b-17f6e6966fbb28f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6454222,32.8428391],[-83.6462746,32.8430702]]},"id":"8a44c0a34307fff-179ef7a0cb0a4e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34329495-17b6e3e6a9ed224f","8f44c0a34301d0b-17f6e6966fbb28f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6462746,32.8430702],[-83.64737500000001,32.84337]]},"id":"8944c0a3433ffff-17d6f53e8df367a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1b4620a1-17d6da1dcbde5aaf","8f44c0b1b463690-17fed99dc99b4a09"]},"geometry":{"type":"LineString","coordinates":[[-83.6581412,32.834272500000004],[-83.65814110000001,32.8338588],[-83.6581309,32.833833000000006],[-83.6581079,32.8338093],[-83.6580631,32.8337942],[-83.65793640000001,32.8337925]]},"id":"8944c0b1b47ffff-17b6d9b27a030221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1b4620a1-17d6da1dcbde5aaf","8f44c0b1b47400b-17becbbccd46784a"]},"geometry":{"type":"LineString","coordinates":[[-83.65793640000001,32.8337925],[-83.65751780000001,32.833786700000005],[-83.6574846,32.8337803],[-83.6574551,32.8337641],[-83.6574423,32.833734],[-83.657436,32.8336271],[-83.6574193,32.833601],[-83.657393,32.833587],[-83.65722360000001,32.833586000000004],[-83.65719990000001,32.8335675],[-83.6571873,32.8335463],[-83.65718100000001,32.833288100000004],[-83.6571857,32.833263],[-83.657222,32.8332259],[-83.65727240000001,32.8331716]]},"id":"8944c0b1b47ffff-17d6cb59e664a10a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1b47400b-17becbbccd46784a","8f44c0b1b55a6e5-139edbb090ddbd3f"]},"geometry":{"type":"LineString","coordinates":[[-83.65727240000001,32.8331716],[-83.65728030000001,32.832930600000005],[-83.6572919,32.8328897]]},"id":"8844c0b1b5fffff-13f7cbb96cf8cab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3481eb81-13def983a322305e","8f44c0a348ad021-13b6eaffd60dcc75"]},"geometry":{"type":"LineString","coordinates":[[-83.6450758,32.8321927],[-83.6448525,32.8324275],[-83.6448074,32.8324507],[-83.64475800000001,32.8324519],[-83.64470870000001,32.8324373],[-83.6444675,32.832310400000004]]},"id":"8944c0a3483ffff-13d7ea3621b89a8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64469410000001,32.8320528]},"id":"8f44c0a3481335a-1397ea723b2a0f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a348ad021-13b6eaffd60dcc75","8f44c0a3481335a-1397ea723b2a0f25"]},"geometry":{"type":"LineString","coordinates":[[-83.6444675,32.832310400000004],[-83.64469410000001,32.8320528]]},"id":"8944c0a3483ffff-13d7eab9061a218a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69594710000001,32.867660900000004]},"id":"8f44c0a20726a1e-13f67d511f2c0962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20099a1a-17f7fd089ce74414","8f44c0a20726a1e-13f67d511f2c0962"]},"geometry":{"type":"LineString","coordinates":[[-83.6960631,32.8672313],[-83.6959231,32.8674401],[-83.6958816,32.867522900000004],[-83.69588560000001,32.867600800000005],[-83.69594710000001,32.867660900000004]]},"id":"8844c0a201fffff-17fe6d515a2c9a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20726a1e-13f67d511f2c0962","8f44c0a20720c75-13d6ecec151f7c4e"]},"geometry":{"type":"LineString","coordinates":[[-83.69594710000001,32.867660900000004],[-83.69610870000001,32.8678186]]},"id":"8a44c0a20727fff-13b76d1e9975a05d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20720c75-13d6ecec151f7c4e","8f44c0a20720aae-13bf7c82c5c072fe"]},"geometry":{"type":"LineString","coordinates":[[-83.69610870000001,32.8678186],[-83.69627720000001,32.867983100000004]]},"id":"8b44c0a20720fff-13967cb764cc5acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20720aae-13bf7c82c5c072fe","8f44c0a20721c36-13967c3829cbd59b"]},"geometry":{"type":"LineString","coordinates":[[-83.69627720000001,32.867983100000004],[-83.6963966,32.8680997]]},"id":"8a44c0a20727fff-13dfec5d78184d9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20721c36-13967c3829cbd59b","8f44c0a200d2c9e-13f77b3959c5a991"]},"geometry":{"type":"LineString","coordinates":[[-83.6963966,32.8680997],[-83.6966749,32.8679174],[-83.69680430000001,32.8680499]]},"id":"8944c0a2073ffff-13d7ebb3aa2550ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a200d20a8-13be7ae447286497","8f44c0a200d2c9e-13f77b3959c5a991"]},"geometry":{"type":"LineString","coordinates":[[-83.69680430000001,32.8680499],[-83.6969404,32.868189300000004]]},"id":"8b44c0a200d2fff-139eeb0ecc2a6312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a200d20a8-13be7ae447286497","8f44c0a200d2205-13966a8e4df9f651"]},"geometry":{"type":"LineString","coordinates":[[-83.6969404,32.868189300000004],[-83.697078,32.8683302]]},"id":"8b44c0a200d2fff-13f66ab9496dac51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072ca85-13d76ac37585e231","8f44c0a200d2205-13966a8e4df9f651"]},"geometry":{"type":"LineString","coordinates":[[-83.697078,32.8683302],[-83.6971879,32.868442800000004],[-83.6971939,32.868472600000004],[-83.69717410000001,32.868509100000004],[-83.69699290000001,32.8686352]]},"id":"8744c0a20ffffff-13f7ea75b8d74dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072ca85-13d76ac37585e231","8f44c0a20728c8c-13feebba528fdd09"]},"geometry":{"type":"LineString","coordinates":[[-83.69699290000001,32.8686352],[-83.6965979,32.8689102]]},"id":"8a44c0a2072ffff-13b6fb3ee180b6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20728c8c-13feebba528fdd09","8f44c0a2072e045-139ffc1ae31a7fea"]},"geometry":{"type":"LineString","coordinates":[[-83.6965979,32.8689102],[-83.6964434,32.8687549]]},"id":"8a44c0a2072ffff-13de6beaa09fff61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072ece1-13d7ec74a8bf8d12","8f44c0a2072e045-139ffc1ae31a7fea"]},"geometry":{"type":"LineString","coordinates":[[-83.6964434,32.8687549],[-83.6962998,32.868610600000004]]},"id":"8b44c0a2072efff-13feec47cf03b63d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072ece1-13d7ec74a8bf8d12","8f44c0a20723ad9-13f66cbf914cce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6962998,32.868610600000004],[-83.6961799,32.868490200000004]]},"id":"8944c0a2073ffff-139e6c9a1b821816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20723ad9-13f66cbf914cce4a","8f44c0a2072311d-139fed19dd390105"]},"geometry":{"type":"LineString","coordinates":[[-83.6961799,32.868490200000004],[-83.69607880000001,32.8683886],[-83.69603550000001,32.868345000000005]]},"id":"8b44c0a20723fff-13df6cecb18d9885"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20723c15-13d76d63c9aff64e","8f44c0a2072311d-139fed19dd390105"]},"geometry":{"type":"LineString","coordinates":[[-83.69603550000001,32.868345000000005],[-83.69591720000001,32.8682262]]},"id":"8b44c0a20723fff-13f6ed3ec84a0afb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20722ab2-13f77dc390060296","8f44c0a20723c15-13d76d63c9aff64e"]},"geometry":{"type":"LineString","coordinates":[[-83.69591720000001,32.8682262],[-83.6957639,32.8680721]]},"id":"8a44c0a20727fff-13b76d93ad307f20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.695633,32.867940600000004]},"id":"8f44c0a20722c44-139eee1569b54fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20722c44-139eee1569b54fc8","8f44c0a20722ab2-13f77dc390060296"]},"geometry":{"type":"LineString","coordinates":[[-83.6957639,32.8680721],[-83.695633,32.867940600000004]]},"id":"8b44c0a20722fff-13de6dec7833183e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20722c44-139eee1569b54fc8","8f44c0a20726a1e-13f67d511f2c0962"]},"geometry":{"type":"LineString","coordinates":[[-83.695633,32.867940600000004],[-83.69594710000001,32.867660900000004]]},"id":"8a44c0a20727fff-13d7edb349a7647b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a20722c44-139eee1569b54fc8","8f44c0a2070c86e-17f66c6c1d5c3f47"]},"geometry":{"type":"LineString","coordinates":[[-83.695633,32.867940600000004],[-83.6955094,32.868054300000004],[-83.69537150000001,32.868224000000005],[-83.6952385,32.8685592],[-83.6952529,32.8686305],[-83.69530900000001,32.8686884],[-83.69567450000001,32.8689886],[-83.6957562,32.869023600000006],[-83.6958123,32.8690707],[-83.6961697,32.869436900000004],[-83.69619540000001,32.869443700000005],[-83.6962451,32.8694517],[-83.6963135,32.8694848]]},"id":"8944c0a2073ffff-13b76e153d5eab9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69655370000001,32.869741000000005]},"id":"8f44c0a2070d98a-17966bd5f4201a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2070d98a-17966bd5f4201a45","8f44c0a2070c86e-17f66c6c1d5c3f47"]},"geometry":{"type":"LineString","coordinates":[[-83.6963135,32.8694848],[-83.69655370000001,32.869741000000005]]},"id":"8a44c0a2070ffff-17b67c210a114391"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2070d98a-17966bd5f4201a45","8f44c0a2070db18-17deeb826736d263"]},"geometry":{"type":"LineString","coordinates":[[-83.69655370000001,32.869741000000005],[-83.6966874,32.869876000000005]]},"id":"8b44c0a2070dfff-17be7bac3c1f8e3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072baca-179feb4323f72b62","8f44c0a2070d98a-17966bd5f4201a45"]},"geometry":{"type":"LineString","coordinates":[[-83.69655370000001,32.869741000000005],[-83.6967886,32.8695742]]},"id":"8944c0a2073ffff-17d66b8c84d3f3ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2072baca-179feb4323f72b62","8f44c0a200dac12-13f779a48ca3aafa"]},"geometry":{"type":"LineString","coordinates":[[-83.6967886,32.8695742],[-83.697452,32.869103100000004]]},"id":"8844c0a207fffff-179efa73de71143d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200d3395-13bef9e14fd1789e","8f44c0a200d14d5-13d6e949216e85ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6975982,32.868433200000005],[-83.6973548,32.8686031]]},"id":"8a44c0a200d7fff-1397e99534760b20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2072dc33-13b6fa732b664e5b","8f44c0a200d3395-13bef9e14fd1789e"]},"geometry":{"type":"LineString","coordinates":[[-83.6973548,32.8686031],[-83.6971214,32.8687661]]},"id":"8744c0a20ffffff-13ffea2a37b79af9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200dac12-13f779a48ca3aafa","8f44c0a2072d155-13ff7a18a8d71716"]},"geometry":{"type":"LineString","coordinates":[[-83.697452,32.869103100000004],[-83.6972662,32.8689137]]},"id":"8944c0a200fffff-13be69de95996d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2072dc33-13b6fa732b664e5b","8f44c0a2072d155-13ff7a18a8d71716"]},"geometry":{"type":"LineString","coordinates":[[-83.6972662,32.8689137],[-83.6971214,32.8687661]]},"id":"8b44c0a2072dfff-13d6fa45e42cf1eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a8d90-13d7bb5b4ffda12c","8f44c0b187a8408-13d7bb637260d8e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6639689,32.8166194],[-83.663982,32.8164113]]},"id":"8a44c0b187affff-1396bb5f557eb1e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639888,32.8163021]},"id":"8f44c0b187aea2e-139efb57065c2fa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a8d90-13d7bb5b4ffda12c","8f44c0b187aea2e-139efb57065c2fa0"]},"geometry":{"type":"LineString","coordinates":[[-83.663982,32.8164113],[-83.6639888,32.8163021]]},"id":"8b44c0b187aefff-13befb59247c02fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187ac49b-13d6bb53a65874e1","8f44c0b187aea2e-139efb57065c2fa0"]},"geometry":{"type":"LineString","coordinates":[[-83.6639888,32.8163021],[-83.6639942,32.8162152]]},"id":"8b44c0b187aefff-13f7bb555e72e5f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187ac49b-13d6bb53a65874e1","8f44c0b187ac59a-13bebb50cd078433"]},"geometry":{"type":"LineString","coordinates":[[-83.6639942,32.8162152],[-83.6639988,32.8161411]]},"id":"8c44c0b187ac5ff-13bffb5233c94acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187ac59a-13bebb50cd078433","8f44c0b187a120c-13dfbb4c1bef57d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6639988,32.8161411],[-83.66400630000001,32.8160219]]},"id":"8a44c0b187affff-1396fb4e62b9a724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66401330000001,32.815910200000005]},"id":"8f44c0b187a1a98-1397fb47b5c7bf67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a1a98-1397fb47b5c7bf67","8f44c0b187a120c-13dfbb4c1bef57d8"]},"geometry":{"type":"LineString","coordinates":[[-83.66400630000001,32.8160219],[-83.66401330000001,32.815910200000005]]},"id":"8b44c0b187a1fff-13befb49e87231fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a1a98-1397fb47b5c7bf67","8f44c0b187a1b9e-13ffbb45af65298b"]},"geometry":{"type":"LineString","coordinates":[[-83.66401330000001,32.815910200000005],[-83.6640139,32.815900400000004],[-83.66401660000001,32.8158416]]},"id":"8c44c0b187a1bff-1396fb46a6952ca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a1b9e-13ffbb45af65298b","8f44c0b187a1903-13ffbb4083c490f6"]},"geometry":{"type":"LineString","coordinates":[[-83.66401660000001,32.8158416],[-83.6640248,32.8156625]]},"id":"8b44c0b187a1fff-13b7bb43111568e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a50e8-1396bb3b79ddba89","8f44c0b187a1903-13ffbb4083c490f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6640248,32.8156625],[-83.66403290000001,32.815488]]},"id":"8a44c0b187a7fff-13d6bb3dfeabeaf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b187a50e8-1396bb3b79ddba89","8f44c0b187a589b-13befb36e5ef7412"]},"geometry":{"type":"LineString","coordinates":[[-83.66403290000001,32.815488],[-83.6640402,32.8153293]]},"id":"8b44c0b187a5fff-13defb393f342b08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640469,32.8151845]},"id":"8f44c0b1844b6e1-13d6fb32b747d788"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1844b6e1-13d6fb32b747d788","8f44c0b187a589b-13befb36e5ef7412"]},"geometry":{"type":"LineString","coordinates":[[-83.6640402,32.8153293],[-83.6640469,32.8151845]]},"id":"8a44c0b187a7fff-13ffbb34d83508d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1844b6e1-13d6fb32b747d788","8f44c0b1844b604-13bffb31090b89f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6640469,32.8151845],[-83.6640496,32.815125300000005]]},"id":"8c44c0b1844b7ff-13bffb31dfc5885c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1844b604-13bffb31090b89f4","8f44c0b1844bd33-17dfbb26e8ecf26e"]},"geometry":{"type":"LineString","coordinates":[[-83.6640496,32.815125300000005],[-83.6640641,32.8148114],[-83.6640658,32.814763400000004]]},"id":"8b44c0b1844bfff-17befb2bdd8f3df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640677,32.814706900000004]},"id":"8f44c0b18448696-17b7fb25b686ecad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1844bd33-17dfbb26e8ecf26e","8f44c0b18448696-17b7fb25b686ecad"]},"geometry":{"type":"LineString","coordinates":[[-83.6640658,32.814763400000004],[-83.6640677,32.814706900000004]]},"id":"8a44c0b1844ffff-17bfbb265bfc2034"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b18448435-17b6fb21ae699966","8f44c0b18448696-17b7fb25b686ecad"]},"geometry":{"type":"LineString","coordinates":[[-83.6640677,32.814706900000004],[-83.6640742,32.8145198]]},"id":"8b44c0b18448fff-17fffb23bf59ef41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e01dc9b-17fed8daf5edac4d","8f44c0a2e0e2914-13d7f915559ef587"]},"geometry":{"type":"LineString","coordinates":[[-83.7108817,32.903082500000004],[-83.71069870000001,32.9032908],[-83.7106143,32.903519200000005],[-83.71069560000001,32.903905200000004],[-83.7107488,32.9041547],[-83.7107883,32.904277900000004]]},"id":"8844c0a2e1fffff-13d679472f920a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7114681,32.905352]},"id":"8f44c0a2e0ee2c6-17f7476c7e57272b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e0e2914-13d7f915559ef587","8f44c0a2e0ee2c6-17f7476c7e57272b"]},"geometry":{"type":"LineString","coordinates":[[-83.7107883,32.904277900000004],[-83.7108489,32.904467100000005],[-83.7110553,32.904861000000004],[-83.7114681,32.905352]]},"id":"8944c0a2e0fffff-13b6f85b44e42593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7110428,32.905588300000005]},"id":"8f44c0a2e0ea48c-179ef876454eeb53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e0ea48c-179ef876454eeb53","8f44c0a2e0ee2c6-17f7476c7e57272b"]},"geometry":{"type":"LineString","coordinates":[[-83.7114681,32.905352],[-83.7110428,32.905588300000005]]},"id":"8944c0a2e0fffff-17bed7f15cd6cc12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e39088c-13fe56dd572f15b2","8f44c0a2e0ee2c6-17f7476c7e57272b"]},"geometry":{"type":"LineString","coordinates":[[-83.7114681,32.905352],[-83.7115186,32.9054973],[-83.7116711,32.905762700000004],[-83.7117551,32.9059175],[-83.711805,32.9060094],[-83.7119835,32.906293600000005],[-83.7120058,32.906409100000005],[-83.7119835,32.906662000000004],[-83.7119686,32.9071366],[-83.7118756,32.9072709],[-83.71169710000001,32.9074145]]},"id":"8744c0a2effffff-1797e68832bf8c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7113624,32.9071616]},"id":"8f44c0a2e396166-13f647ae8a031e8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2e39088c-13fe56dd572f15b2","8f44c0a2e396166-13f647ae8a031e8c"]},"geometry":{"type":"LineString","coordinates":[[-83.71169710000001,32.9074145],[-83.7113624,32.9071616]]},"id":"8a44c0a2e397fff-13bf5745ef8d53cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d7154ac-13d7f32cc08c237c","8f44c0b8d45b200-139f788b25b84d8d"]},"geometry":{"type":"LineString","coordinates":[[-83.58869,32.852252],[-83.587557,32.851984],[-83.58649100000001,32.851754]]},"id":"8744c0b8dffffff-13b7f5db3e558d73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d4c0640-139fff02c07a12e6","8f44c0b8d45b200-139f788b25b84d8d"]},"geometry":{"type":"LineString","coordinates":[[-83.58649100000001,32.851754],[-83.58594400000001,32.85163],[-83.58453200000001,32.851307000000006],[-83.584164,32.851219],[-83.584113,32.851204],[-83.583931,32.851149],[-83.583842,32.851118]]},"id":"8844c0b8d5fffff-13dffbc92a4ee041"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7224656,32.8357785]},"id":"8f44c0b0b576b2a-139fbc930e7f67ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b576b2a-139fbc930e7f67ee","8f44c0b0b576960-13debca7d6288e58"]},"geometry":{"type":"LineString","coordinates":[[-83.72243230000001,32.835649100000005],[-83.7224656,32.8357785]]},"id":"8b44c0b0b576fff-13f72c9d7d8a4fac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72236140000001,32.8362855]},"id":"8f44c0b0b572b5b-13d67cd4232c9ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b572b5b-13d67cd4232c9ef0","8f44c0b0b576b2a-139fbc930e7f67ee"]},"geometry":{"type":"LineString","coordinates":[[-83.7224656,32.8357785],[-83.7224858,32.8358574],[-83.7225313,32.836084400000004],[-83.72236140000001,32.8362855]]},"id":"8a44c0b0b577fff-13d77c8cd62c807e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72157220000001,32.8356937]},"id":"8f44c0b0b50cadd-13f6bec166efbc06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b50cadd-13f6bec166efbc06","8f44c0b0b57656c-139f6d5707aa4e52"]},"geometry":{"type":"LineString","coordinates":[[-83.72157220000001,32.8356937],[-83.72215200000001,32.835778000000005]]},"id":"8944c0b0b53ffff-13fefe0c3a50d4c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b576b2a-139fbc930e7f67ee","8f44c0b0b57656c-139f6d5707aa4e52"]},"geometry":{"type":"LineString","coordinates":[[-83.72215200000001,32.835778000000005],[-83.7221825,32.8357825],[-83.7224656,32.8357785]]},"id":"8b44c0b0b576fff-139efcf512e39a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b572b5b-13d67cd4232c9ef0","8f44c0b0b572045-13dfad42e92b771e"]},"geometry":{"type":"LineString","coordinates":[[-83.72236140000001,32.8362855],[-83.7223282,32.836279000000005],[-83.7221842,32.836300200000004]]},"id":"8b44c0b0b572fff-13de2d0b7bd73d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7218663,32.8363582]},"id":"8f44c0b0b509b52-1797ee09925834a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b572045-13dfad42e92b771e","8f44c0b0b509b52-1797ee09925834a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7221842,32.836300200000004],[-83.72195210000001,32.836334300000004],[-83.7218663,32.8363582]]},"id":"8944c0b0b57ffff-13ff6da6cd89d872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b509da2-13ffbee63c635051","8f44c0b0b509b52-1797ee09925834a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7218663,32.8363582],[-83.7217588,32.8363636],[-83.7216362,32.836301],[-83.72151910000001,32.8362116],[-83.72151330000001,32.836140300000004]]},"id":"8a44c0b0b50ffff-13dfbe8bad591ab2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b509da2-13ffbee63c635051","8f44c0b0b50cadd-13f6bec166efbc06"]},"geometry":{"type":"LineString","coordinates":[[-83.72151330000001,32.836140300000004],[-83.72150710000001,32.8360633],[-83.72156460000001,32.835731800000005],[-83.72157220000001,32.8356937]]},"id":"8a44c0b0b50ffff-13ffeed9125e8a34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b50cb02-13976eb0d77fafcc","8f44c0b0b50cadd-13f6bec166efbc06"]},"geometry":{"type":"LineString","coordinates":[[-83.72157220000001,32.8356937],[-83.7215987,32.8355606]]},"id":"8c44c0b0b50cbff-13bf2eb915666b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b572b5b-13d67cd4232c9ef0","8f44c0b0b572049-13f7ad3d9475adce"]},"geometry":{"type":"LineString","coordinates":[[-83.72219270000001,32.836328800000004],[-83.7222347,32.8363389],[-83.722335,32.8363245],[-83.72236140000001,32.8362855]]},"id":"8b44c0b0b572fff-13ffad044e3bcfd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6909322,32.907742500000005]},"id":"8f44c0a0515d385-13df798f63801b89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05159cc9-13f7fa29db6638de","8f44c0a0515d385-13df798f63801b89"]},"geometry":{"type":"LineString","coordinates":[[-83.69068510000001,32.908008800000005],[-83.6909322,32.907742500000005]]},"id":"8a44c0a0515ffff-139e79dc936181f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69137950000001,32.907260300000004]},"id":"8f44c0a0514161d-139ff877dfe20443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0515d385-13df798f63801b89","8f44c0a0514161d-139ff877dfe20443"]},"geometry":{"type":"LineString","coordinates":[[-83.6909322,32.907742500000005],[-83.69137950000001,32.907260300000004]]},"id":"8944c0a0517ffff-13b67903a9a17479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a05151315-13be7b38c66fe029","8f44c0a0515d385-13df798f63801b89"]},"geometry":{"type":"LineString","coordinates":[[-83.6909322,32.907742500000005],[-83.6902216,32.9072699],[-83.6901989,32.9072453],[-83.6901859,32.9072167],[-83.6901859,32.9071894],[-83.6901924,32.9071498],[-83.6902135,32.9071129],[-83.69025160000001,32.9070722]]},"id":"8944c0a0517ffff-139efa9ed51989b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0514250a-13967aabf6d0d297","8f44c0a05151315-13be7b38c66fe029"]},"geometry":{"type":"LineString","coordinates":[[-83.69025160000001,32.9070722],[-83.690433,32.9068781],[-83.69047690000001,32.9068289]]},"id":"8944c0a0517ffff-13de7af217aeb5b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900916,32.9069151]},"id":"8f44c0a051511b6-13d7fb9cca020505"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0514250a-13967aabf6d0d297","8f44c0a051511b6-13d7fb9cca020505"]},"geometry":{"type":"LineString","coordinates":[[-83.69047690000001,32.9068289],[-83.6904282,32.906792100000004],[-83.6903891,32.9067729],[-83.6903338,32.906762],[-83.69028990000001,32.906764800000005],[-83.69024440000001,32.906782500000006],[-83.6900916,32.9069151]]},"id":"8944c0a0517ffff-1396fb289c88b513"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a0515338d-1396fc76378dcba9","8f44c0a051511b6-13d7fb9cca020505"]},"geometry":{"type":"LineString","coordinates":[[-83.6900916,32.9069151],[-83.68974370000001,32.907217100000004]]},"id":"8a44c0a05157fff-13b67c097612b912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0515035e-1397fbfb12d8008c","8f44c0a051511b6-13d7fb9cca020505"]},"geometry":{"type":"LineString","coordinates":[[-83.6900916,32.9069151],[-83.68994070000001,32.906815800000004]]},"id":"8a44c0a05157fff-13b6fbcbf370014f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0515035e-1397fbfb12d8008c","8f44c0a0510a431-17be7f68bbe74764"]},"geometry":{"type":"LineString","coordinates":[[-83.68994070000001,32.906815800000004],[-83.68960290000001,32.9065937],[-83.68890040000001,32.905635600000004],[-83.6888708,32.9056129],[-83.6888289,32.9055922],[-83.68876730000001,32.905579700000004],[-83.6887008,32.9055777],[-83.68864160000001,32.905590100000005],[-83.68853650000001,32.9056453]]},"id":"8844c0a051fffff-17df7da96b804b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0515b10c-13bffb0e2d8a4864","8f44c0a05159c93-13d67a69c62e6006"]},"geometry":{"type":"LineString","coordinates":[[-83.6905828,32.9079366],[-83.6903722,32.9081187],[-83.6903552,32.9081258],[-83.69031980000001,32.9081306]]},"id":"8a44c0a0515ffff-13977ab8eaade08f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6904784,32.9087462]},"id":"8f44c0a05062d72-17be7aab0e6c1747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05062d72-17be7aab0e6c1747","8f44c0a0515b10c-13bffb0e2d8a4864"]},"geometry":{"type":"LineString","coordinates":[[-83.69031980000001,32.9081306],[-83.69028870000001,32.908136500000005],[-83.69025900000001,32.9081472],[-83.68989230000001,32.9084431],[-83.6902094,32.908660600000005],[-83.6904784,32.9087462]]},"id":"8844c0a051fffff-179efb7d4aa1af2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":-1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0a36023656-17bfebb0ee55b709","8f44c0a3602379e-17ff7bea43257090"]},"geometry":{"type":"LineString","coordinates":[[-83.617878,32.843107700000004],[-83.6178845,32.8431337],[-83.6179007,32.8431565],[-83.61792480000001,32.8431736],[-83.6179542,32.8431833],[-83.61796980000001,32.843183800000006]]},"id":"8c44c0a360237ff-179f3bd3a3f68160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61801600000001,32.8431768]},"id":"8f44c0a36023663-17bfab9401240e9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":-1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0a36023656-17bfebb0ee55b709","8f44c0a36023663-17bfab9401240e9d"]},"geometry":{"type":"LineString","coordinates":[[-83.61796980000001,32.843183800000006],[-83.6179857,32.843184400000005],[-83.61801600000001,32.8431768]]},"id":"8d44c0a3602367f-17bfaba25b6f2f01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61800260000001,32.8443188]},"id":"8f44c0a3600c79b-17f76b9c693fcd4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3600c79b-17f76b9c693fcd4d","8f44c0a36023663-17bfab9401240e9d"]},"geometry":{"type":"LineString","coordinates":[[-83.61801600000001,32.8431768],[-83.61818740000001,32.8431985],[-83.61800260000001,32.8443188]]},"id":"8944c0a3603ffff-17f72b6214973a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3600e8e1-17bf2c1a949e6f7c","8f44c0a3600c79b-17f76b9c693fcd4d"]},"geometry":{"type":"LineString","coordinates":[[-83.61800260000001,32.8443188],[-83.61790400000001,32.8442857],[-83.617835,32.8442401],[-83.6178007,32.8442096]]},"id":"8a44c0a3600ffff-17d7abde8ea7406e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3600e8e1-17bf2c1a949e6f7c","8f44c0a36004a26-17ff2c2d7dbeb468"]},"geometry":{"type":"LineString","coordinates":[[-83.6178007,32.8442096],[-83.61775610000001,32.8441697],[-83.6176969,32.8440869],[-83.6176624,32.844002],[-83.6176526,32.8439295],[-83.6177705,32.8430978]]},"id":"8944c0a3603ffff-17df2c530aeb6aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61821420000001,32.844354100000004]},"id":"8f44c0a3600c2a1-179f7b18211e4e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3600c79b-17f76b9c693fcd4d","8f44c0a3600c2a1-179f7b18211e4e20"]},"geometry":{"type":"LineString","coordinates":[[-83.61800260000001,32.8443188],[-83.6181208,32.8443416],[-83.61821420000001,32.844354100000004]]},"id":"8b44c0a3600cfff-17ff3b5a6fc3169c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6182682,32.8440395]},"id":"8f44c0a3600c831-17d7baf6665fe4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3600c831-17d7baf6665fe4ef","8f44c0a3600c2a1-179f7b18211e4e20"]},"geometry":{"type":"LineString","coordinates":[[-83.61821420000001,32.844354100000004],[-83.6182682,32.8440395]]},"id":"8b44c0a3600cfff-17b72b074cf093c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61834160000001,32.8436122]},"id":"8f44c0a3602a8a4-17bfaac88f9da4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3602a8a4-17bfaac88f9da4b3","8f44c0a3600c831-17d7baf6665fe4ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6182682,32.8440395],[-83.61834160000001,32.8436122]]},"id":"8a44c0a3602ffff-17bf3adf7dc66a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6183609,32.843494]},"id":"8f44c0a3602e675-17ffeabc7f9e77d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3602e675-17ffeabc7f9e77d8","8f44c0a3602a8a4-17bfaac88f9da4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.61834160000001,32.8436122],[-83.6183609,32.843494]]},"id":"8a44c0a3602ffff-1797bac28aef542e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3602ec4d-17d7faa23190469d","8f44c0a3602e675-17ffeabc7f9e77d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6183609,32.843494],[-83.6184029,32.8432429]]},"id":"8b44c0a3602efff-17b77aaf5d35e195"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6185671,32.8426556]},"id":"8f44c0a36025652-13f7ea3b98100a19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3602ec4d-17d7faa23190469d","8f44c0a36025652-13f7ea3b98100a19"]},"geometry":{"type":"LineString","coordinates":[[-83.6184029,32.8432429],[-83.6184703,32.8427943],[-83.6185671,32.8426556]]},"id":"8944c0a3603ffff-1797ea7f35691121"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a135303-17d6544cb34ab1e9","8f44c0a2a122cab-17fe73fb3ceff43d"]},"geometry":{"type":"LineString","coordinates":[[-83.70632450000001,32.9194947],[-83.7061941,32.9193988]]},"id":"8944c0a2a13ffff-17de5423f03ff61a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a135303-17d6544cb34ab1e9","8f44c0a2a135528-17de54e7a9be1e01"]},"geometry":{"type":"LineString","coordinates":[[-83.7061941,32.9193988],[-83.7059462,32.9192164]]},"id":"8b44c0a2a135fff-1797549a3a8d8daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6551187,32.825514500000004]},"id":"8f44c0b1a34bb2a-139ed0fed49bd496"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6548119,32.825511]},"id":"8f44c0b1a34b193-139ef1be99d171bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34bb2a-139ed0fed49bd496","8f44c0b1a34b193-139ef1be99d171bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6551187,32.825514500000004],[-83.6548119,32.825511]]},"id":"8b44c0b1a34bfff-139fd15eb819f723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6546679,32.8255094]},"id":"8f44c0b1a34b58c-1397f21896189894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34b58c-1397f21896189894","8f44c0b1a34b193-139ef1be99d171bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6548119,32.825511],[-83.6546679,32.8255094]]},"id":"8b44c0b1a34bfff-1397f1eb98d96b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34b58c-1397f21896189894","8f44c0b1a2648b4-1397f2aaa00aeeea"]},"geometry":{"type":"LineString","coordinates":[[-83.6546679,32.8255094],[-83.65443420000001,32.825506700000005]]},"id":"8944c0b1a37ffff-1396d26199526bb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a359266-1396d33f8f37661b","8f44c0b1a2648b4-1397f2aaa00aeeea"]},"geometry":{"type":"LineString","coordinates":[[-83.65443420000001,32.825506700000005],[-83.654196,32.825504]]},"id":"8a44c0b1a267fff-1396f2f5197b725a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65388390000001,32.8249628]},"id":"8f44c0b1a358b11-13b7d4029471cf55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a359266-1396d33f8f37661b","8f44c0b1a358b11-13b7d4029471cf55"]},"geometry":{"type":"LineString","coordinates":[[-83.654196,32.825504],[-83.6540136,32.8255019],[-83.6539578,32.8254983],[-83.6539235,32.8254821],[-83.6538956,32.825464100000005],[-83.65388060000001,32.8254316],[-83.65388390000001,32.8249628]]},"id":"8944c0b1a37ffff-1396d3dd7f7bdff9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65467530000001,32.8249736]},"id":"8f44c0b1a34e281-13bed213fa50adf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34e281-13bed213fa50adf9","8f44c0b1a358b11-13b7d4029471cf55"]},"geometry":{"type":"LineString","coordinates":[[-83.65388390000001,32.8249628],[-83.65388700000001,32.824521000000004],[-83.65390210000001,32.8244976],[-83.6539278,32.8244831],[-83.6546144,32.8244958],[-83.6546466,32.8245084],[-83.65466810000001,32.82453],[-83.65468100000001,32.824567900000005],[-83.65467530000001,32.8249736]]},"id":"8944c0b1a37ffff-17def30b6c677df5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34b58c-1397f21896189894","8f44c0b1a34e281-13bed213fa50adf9"]},"geometry":{"type":"LineString","coordinates":[[-83.65467530000001,32.8249736],[-83.6546679,32.8255094]]},"id":"8a44c0b1a34ffff-13dff21644c9e41e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6548176,32.8249755]},"id":"8f44c0b1a34e265-13bff1bb0b31d74f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34b193-139ef1be99d171bf","8f44c0b1a34e265-13bff1bb0b31d74f"]},"geometry":{"type":"LineString","coordinates":[[-83.6548119,32.825511],[-83.6548176,32.8249755]]},"id":"8a44c0b1a34ffff-13f7d1bcdbfa1a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.654821,32.824658]},"id":"8f44c0b1a34e95d-17f7d1b8e3f9c5cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34e95d-17f7d1b8e3f9c5cc","8f44c0b1a34e265-13bff1bb0b31d74f"]},"geometry":{"type":"LineString","coordinates":[[-83.6548176,32.8249755],[-83.654821,32.824658]]},"id":"8a44c0b1a34ffff-17d6d1b9fb279764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34e265-13bff1bb0b31d74f","8f44c0b1a34e281-13bed213fa50adf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6548176,32.8249755],[-83.65467530000001,32.8249736]]},"id":"8c44c0b1a34e3ff-13bff1e78450a0fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a35da68-13b6d2a7f3fadbe5","8f44c0b1a34e281-13bed213fa50adf9"]},"geometry":{"type":"LineString","coordinates":[[-83.65467530000001,32.8249736],[-83.65443850000001,32.824970400000005]]},"id":"8a44c0b1a34ffff-13b7d25dfb399494"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a35da68-13b6d2a7f3fadbe5","8f44c0b1a35d05a-13b6d33cd5d5eedc"]},"geometry":{"type":"LineString","coordinates":[[-83.65443850000001,32.824970400000005],[-83.6542003,32.8249672]]},"id":"8b44c0b1a35dfff-13b7d2f26e761f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a35d05a-13b6d33cd5d5eedc","8f44c0b1a358b11-13b7d4029471cf55"]},"geometry":{"type":"LineString","coordinates":[[-83.6542003,32.8249672],[-83.65388390000001,32.8249628]]},"id":"8a44c0b1a35ffff-13b7f39fb79baca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a358b11-13b7d4029471cf55","8f44c0b1a35811e-13b6d47c6b8f7769"]},"geometry":{"type":"LineString","coordinates":[[-83.65388390000001,32.8249628],[-83.653689,32.8249609]]},"id":"8b44c0b1a358fff-13b7f43f789cfa02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34208a52-17d6e76fcdc44865","8f44c0a3420d521-179ff723022bbf56"]},"geometry":{"type":"LineString","coordinates":[[-83.64592680000001,32.847108],[-83.64607480000001,32.8469335],[-83.646077,32.846866],[-83.64604960000001,32.8468401]]},"id":"8a44c0a3420ffff-17f6e733a0534847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34208ab1-17b7f7a86f6cd505","8f44c0a3420d521-179ff723022bbf56"]},"geometry":{"type":"LineString","coordinates":[[-83.64604960000001,32.8468401],[-83.6459974,32.846853],[-83.6458362,32.8470591]]},"id":"8a44c0a3420ffff-17d7e76aaf494385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a7548c-179782b198e7533b","8f44c0ba9a2a09e-17ff961b17157e80"]},"geometry":{"type":"LineString","coordinates":[[-83.6333647,32.8234233],[-83.6347623,32.8242744]]},"id":"8844c0ba9bfffff-17ff946654c58bd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a7548c-179782b198e7533b","8f44c0ba9a622aa-17bf8124495865e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6347623,32.8242744],[-83.63481300000001,32.824309],[-83.63502700000001,32.824429],[-83.63515600000001,32.824536],[-83.635249,32.824621],[-83.635363,32.824741],[-83.63539800000001,32.824772]]},"id":"8944c0ba9a7ffff-179791e210522554"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a622aa-17bf8124495865e4","8f44c0ba9a6e702-1397ffb6b2398a45"]},"geometry":{"type":"LineString","coordinates":[[-83.63539800000001,32.824772],[-83.635624,32.825012],[-83.635845,32.825214],[-83.6359829,32.825324200000004]]},"id":"8944c0ba9a7ffff-13ff80728a2b5411"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a69c85-13b6fe12af643a7f","8f44c0ba9a6e702-1397ffb6b2398a45"]},"geometry":{"type":"LineString","coordinates":[[-83.6359829,32.825324200000004],[-83.636193,32.825477],[-83.636449,32.825646],[-83.636655,32.825761]]},"id":"8a44c0ba9a6ffff-13b7fee81d17ca3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6372151,32.8260341]},"id":"8f44c0a34d34985-13dffcb4921f0ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d34985-13dffcb4921f0ef5","8f44c0ba9a69c85-13b6fe12af643a7f"]},"geometry":{"type":"LineString","coordinates":[[-83.636655,32.825761],[-83.63699600000001,32.825937],[-83.6372151,32.8260341]]},"id":"8444c0bffffffff-13fefd64c5df5e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64922010000001,32.824091800000005]},"id":"8f44c0b1a38bae8-1797ff657dcaa686"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6491936,32.8247426]},"id":"8f44c0b1a212198-17beff760f5be8ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a212198-17beff760f5be8ec","8f44c0b1a38bae8-1797ff657dcaa686"]},"geometry":{"type":"LineString","coordinates":[[-83.64922010000001,32.824091800000005],[-83.6491917,32.8241536],[-83.6491838,32.8242033],[-83.64918510000001,32.8243304],[-83.6491936,32.8247426]]},"id":"8844c0b1a3fffff-17deff7846beeab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64973450000001,32.8256086]},"id":"8f44c0b1a2ada5d-13d7fe23fee3fb17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a212198-17beff760f5be8ec","8f44c0b1a2ada5d-13d7fe23fee3fb17"]},"geometry":{"type":"LineString","coordinates":[[-83.6491936,32.8247426],[-83.6491944,32.824778900000005],[-83.6491917,32.8256141],[-83.64967610000001,32.825613600000004],[-83.64973450000001,32.8256086]]},"id":"8844c0b1a3fffff-13b6ff3586dfc55f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6497313,32.8251518]},"id":"8f44c0b1a213a99-13b7fe25f3c8857f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a213a99-13b7fe25f3c8857f","8f44c0b1a2ada5d-13d7fe23fee3fb17"]},"geometry":{"type":"LineString","coordinates":[[-83.64973450000001,32.8256086],[-83.6497799,32.8256047],[-83.6498746,32.8255937],[-83.6499969,32.8255661],[-83.65009020000001,32.8255263],[-83.6502361,32.8254302],[-83.65029,32.8253849],[-83.65031110000001,32.8253584],[-83.6503137,32.8253396],[-83.6503084,32.825316400000006],[-83.65029270000001,32.8252899],[-83.6502664,32.8252645],[-83.64994030000001,32.8250711],[-83.6499022,32.825051200000004],[-83.6498746,32.8250413],[-83.64983380000001,32.825040200000004],[-83.64980100000001,32.8250501],[-83.6497628,32.8250722],[-83.64974310000001,32.8250899],[-83.64973520000001,32.825112000000004],[-83.6497313,32.8251518]]},"id":"8944c0b1a23ffff-1397dd69a40c7f0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a213a99-13b7fe25f3c8857f","8f44c0b1a2ada5d-13d7fe23fee3fb17"]},"geometry":{"type":"LineString","coordinates":[[-83.6497313,32.8251518],[-83.64973450000001,32.8256086]]},"id":"8944c0b1a23ffff-13b6fe24fd7b2fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64985150000001,32.824471200000005]},"id":"8f44c0b1a21091c-17fedddade86dcad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a21091c-17fedddade86dcad","8f44c0b1a21019b-17fefe49b8fc2636"]},"geometry":{"type":"LineString","coordinates":[[-83.64985150000001,32.824471200000005],[-83.6498036,32.824533100000004],[-83.6497712,32.8245699],[-83.6497291,32.8246052],[-83.6496741,32.8246447]]},"id":"8b44c0b1a210fff-17befe0eba77206b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a212b2e-179fdec02d3f02d3","8f44c0b1a21019b-17fefe49b8fc2636"]},"geometry":{"type":"LineString","coordinates":[[-83.6496741,32.8246447],[-83.6496158,32.824677300000005],[-83.64955590000001,32.824700400000005],[-83.64948960000001,32.824718100000005],[-83.64948460000001,32.824719200000004]]},"id":"8a44c0b1a217fff-1797de839aa7ba36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a212198-17beff760f5be8ec","8f44c0b1a212b2e-179fdec02d3f02d3"]},"geometry":{"type":"LineString","coordinates":[[-83.64948460000001,32.824719200000004],[-83.6494167,32.824734400000004],[-83.64936490000001,32.824741200000005],[-83.6492954,32.824745300000004],[-83.6491936,32.8247426]]},"id":"8b44c0b1a212fff-17b7ff1aabcd66b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b526d3563-17d7b21c3d3d91fd","8f44c0b5268870b-13ffd3305d6f65e1"]},"geometry":{"type":"LineString","coordinates":[[-83.73286350000001,32.8846845],[-83.7327448,32.885145800000004],[-83.7330019,32.885468200000005],[-83.7332203,32.8856782],[-83.73330530000001,32.8860538]]},"id":"8844c0b527fffff-13b632df49d67249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7322863,32.8874305]},"id":"8f44c0a2cd08965-13b61499174ed370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b526d3563-17d7b21c3d3d91fd","8f44c0a2cd08965-13b61499174ed370"]},"geometry":{"type":"LineString","coordinates":[[-83.73330530000001,32.8860538],[-83.7333682,32.8863319],[-83.7333823,32.886533],[-83.73320620000001,32.8867046],[-83.7328962,32.8867726],[-83.7325405,32.8868554],[-83.7324102,32.8870358],[-83.7322863,32.8874305]]},"id":"8744c0a2cffffff-179f3320cddd198a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd56243-13fe542b885aee7a","8f44c0a2cd08965-13b61499174ed370"]},"geometry":{"type":"LineString","coordinates":[[-83.7322863,32.8874305],[-83.73206850000001,32.8881243],[-83.7320474,32.8882515],[-83.73246160000001,32.8885669]]},"id":"8844c0a2cdfffff-13be54d1ee81d5d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd51858-17f7d26763c2bad5","8f44c0a2cd56243-13fe542b885aee7a"]},"geometry":{"type":"LineString","coordinates":[[-83.73246160000001,32.8885669],[-83.7326144,32.888683300000004],[-83.7330723,32.888922900000004],[-83.733185,32.888943600000005]]},"id":"8a44c0a2cd57fff-13ff5350a0a21212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd51858-17f7d26763c2bad5","8f44c0a2cd7664d-139ed2d105627563"]},"geometry":{"type":"LineString","coordinates":[[-83.733185,32.888943600000005],[-83.73343510000001,32.8885147],[-83.7336112,32.888115400000004],[-83.7335267,32.887940900000004],[-83.73333650000001,32.8876806],[-83.733016,32.8875949]]},"id":"8944c0a2cd7ffff-139fb1e8dd0e9adc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2cd7664d-139ed2d105627563","8f44c0a2cd08965-13b61499174ed370"]},"geometry":{"type":"LineString","coordinates":[[-83.733016,32.8875949],[-83.7322863,32.8874305]]},"id":"8844c0a2cdfffff-13f773b50d809c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72387930000001,32.759897200000005]},"id":"8f44c0b05092432-13d7e91f7ba92075"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05092432-13d7e91f7ba92075","8f44c0b05545035-139ee92dc3c3e981"]},"geometry":{"type":"LineString","coordinates":[[-83.72387930000001,32.759897200000005],[-83.7234955,32.7584248],[-83.72386060000001,32.757657200000004],[-83.7238564,32.7575276]]},"id":"8844c0b055fffff-17fef993d08c55ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05545035-139ee92dc3c3e981","8f44c0b05575c36-13967ae3de645b4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7238564,32.7575276],[-83.7238513,32.7573698],[-83.7236453,32.7570903],[-83.7232614,32.7566257],[-83.7231555,32.756285500000004]]},"id":"8944c0b0557ffff-139e2a0838d32de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0552c4e6-17973d7562ea2185","8f44c0b05575c36-13967ae3de645b4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7231555,32.756285500000004],[-83.7230789,32.756039200000004],[-83.7229337,32.7555746],[-83.7226716,32.755310800000004],[-83.72210340000001,32.755073700000004]]},"id":"8844c0b055fffff-17d72bdb845312c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7200057,32.7544174]},"id":"8f44c0b05532a28-13f6f2947e1846d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0552c4e6-17973d7562ea2185","8f44c0b05532a28-13f6f2947e1846d4"]},"geometry":{"type":"LineString","coordinates":[[-83.72210340000001,32.755073700000004],[-83.7220303,32.7550431],[-83.72118300000001,32.7547597],[-83.7206259,32.754649400000005],[-83.7201484,32.7545038],[-83.7200057,32.7544174]]},"id":"8944c0b0553ffff-17d6b0073a95bb16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71941340000001,32.754058900000004]},"id":"8f44c0b0424d033-1396f406a2b626de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0424d033-1396f406a2b626de","8f44c0b05532a28-13f6f2947e1846d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7200057,32.7544174],[-83.71941340000001,32.754058900000004]]},"id":"8844c0b055fffff-1396f34d91073e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05d99276-139eecf4ecff00b4","8f44c0b05532a28-13f6f2947e1846d4"]},"geometry":{"type":"LineString","coordinates":[[-83.72230900000001,32.7507852],[-83.7218711,32.751432900000005],[-83.72105660000001,32.7529644],[-83.7200057,32.7544174]]},"id":"8744c0b05ffffff-1796bfb0ae21778c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71865980000001,32.7561021]},"id":"8f44c0b055a8c9c-1397f5dda8ed2d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b055a8c9c-1397f5dda8ed2d6a","8f44c0b05532a28-13f6f2947e1846d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7200057,32.7544174],[-83.71865980000001,32.7561021]]},"id":"8844c0b055fffff-179774390cb0a355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72456770000001,32.757953]},"id":"8f44c0b055686f1-179ea77133f77262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b055686f1-179ea77133f77262","8f44c0b05196521-13d6f69d86d8d8b2"]},"geometry":{"type":"LineString","coordinates":[[-83.72456770000001,32.757953],[-83.7248205,32.7572562],[-83.7249001,32.7565475],[-83.72490640000001,32.7563821]]},"id":"8744c0b05ffffff-13b6e6e722ffeee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b05196521-13d6f69d86d8d8b2","8f44c0b05575c36-13967ae3de645b4a"]},"geometry":{"type":"LineString","coordinates":[[-83.72490640000001,32.7563821],[-83.7249563,32.7550594],[-83.7249563,32.754583100000005],[-83.7244835,32.7545397],[-83.7238562,32.7546224],[-83.7236034,32.754898000000004],[-83.7235847,32.7551578],[-83.7237719,32.7558625],[-83.72363150000001,32.756142100000005],[-83.7231555,32.756285500000004]]},"id":"8744c0b05ffffff-17be3833f11f5289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67433150000001,32.752958]},"id":"8f44c0b15a2698c-13f6e216d863be58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a2698c-13f6e216d863be58","8f44c0b15b1c859-17beb22f26dc2c51"]},"geometry":{"type":"LineString","coordinates":[[-83.67433150000001,32.752958],[-83.67440900000001,32.752381500000006],[-83.6742926,32.751868900000005]]},"id":"8844c0b15bfffff-1797b2046973d803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15b30a1e-1396e220da75253c","8f44c0b15b1c859-17beb22f26dc2c51"]},"geometry":{"type":"LineString","coordinates":[[-83.6742926,32.751868900000005],[-83.6743622,32.7513343],[-83.6743622,32.7508343],[-83.6743155,32.7503436]]},"id":"8944c0b15b3ffff-13f7e210009bab9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15b30a1e-1396e220da75253c","8f44c0b0649acc2-179fb239340952ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6743155,32.7503436],[-83.6743502,32.7500644],[-83.67425920000001,32.7497161],[-83.6742765,32.749355300000005]]},"id":"8744c0b15ffffff-13d6a22af8d815a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0649acc2-179fb239340952ac","8f44c0b06493b89-17fee2279d2d7c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.6742765,32.749355300000005],[-83.6742873,32.7490389],[-83.67430470000001,32.7486886]]},"id":"8944c0b064bffff-17deb2313838d5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1586d8f6-17dfa2a9ac477b69","8f44c0b06493b89-17fee2279d2d7c7d"]},"geometry":{"type":"LineString","coordinates":[[-83.67430470000001,32.7486886],[-83.67411530000001,32.7486812],[-83.6740966,32.7490194]]},"id":"8944c0b064bffff-17bee28c74dca239"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1586d8f6-17dfa2a9ac477b69","8f44c0b1586e0a9-179eb4f4c07d0db8"]},"geometry":{"type":"LineString","coordinates":[[-83.6740966,32.7490194],[-83.6737301,32.749010000000006],[-83.67357170000001,32.7488459],[-83.67347360000001,32.748809300000005],[-83.6733684,32.7488322],[-83.6731572,32.7489259]]},"id":"8a44c0b1586ffff-179fb3d3476af37f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1586e726-17b6b5117c68d5db","8f44c0b1586e0a9-179eb4f4c07d0db8"]},"geometry":{"type":"LineString","coordinates":[[-83.6731572,32.7489259],[-83.6731113,32.748953900000004]]},"id":"8b44c0b1586efff-1797f50329159747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1586e726-17b6b5117c68d5db","8f44c0b15845b5c-17dfe57350aef029"]},"geometry":{"type":"LineString","coordinates":[[-83.6731113,32.748953900000004],[-83.6729547,32.7490228]]},"id":"8a44c0b1586ffff-17b7e5426a97b9c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15845af4-17f6e5a3155b7f81","8f44c0b15845b5c-17dfe57350aef029"]},"geometry":{"type":"LineString","coordinates":[[-83.6729547,32.7490228],[-83.67287830000001,32.749059800000005]]},"id":"8c44c0b15845bff-17d6f58b3cab3f8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15845af4-17f6e5a3155b7f81","8f44c0b158716dc-17bfb81dd3237004"]},"geometry":{"type":"LineString","coordinates":[[-83.67287830000001,32.749059800000005],[-83.6725933,32.749187],[-83.6724999,32.7491983],[-83.6721605,32.749165000000005],[-83.6720856,32.7491361],[-83.67202490000001,32.7490924],[-83.6718055,32.7487693],[-83.6717996,32.7486869],[-83.6718627,32.7485689]]},"id":"8944c0b1587ffff-17dfb73d04d575c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6715236,32.748084500000004]},"id":"8f44c0b1587044d-1796f8f1c0bf8c06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1587044d-1796f8f1c0bf8c06","8f44c0b158716dc-17bfb81dd3237004"]},"geometry":{"type":"LineString","coordinates":[[-83.6718627,32.7485689],[-83.6720102,32.7482873],[-83.67200940000001,32.7482204],[-83.67194830000001,32.748162400000005],[-83.6715236,32.748084500000004]]},"id":"8a44c0b15877fff-17f6e825e6ad7e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1587044d-1796f8f1c0bf8c06","8f44c0b15872856-17f6e98a1e7eadc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6715236,32.748084500000004],[-83.6712799,32.748035800000004]]},"id":"8a44c0b15877fff-17f7a93dfd4eab9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6746344,32.7529563]},"id":"8f44c0b15a24cd9-13f7b15989e331fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a2698c-13f6e216d863be58","8f44c0b15a24cd9-13f7b15989e331fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6746344,32.7529563],[-83.67433150000001,32.752958]]},"id":"8a44c0b15a27fff-13f6b1b83e2286f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6740446,32.7529484]},"id":"8f44c0b15b1b342-13f6e2ca22b05f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15a2698c-13f6e216d863be58","8f44c0b15b1b342-13f6e2ca22b05f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.67433150000001,32.752958],[-83.6740446,32.7529484]]},"id":"8944c0b15a3ffff-13f7e2708bd83bad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71837020000001,32.830086]},"id":"8f44c0b0a35cc58-17b7f692a754748a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a35cc58-17b7f692a754748a","8f44c0b0aade32d-179735356e83ec2f"]},"geometry":{"type":"LineString","coordinates":[[-83.718929,32.827349000000005],[-83.71891450000001,32.8274388],[-83.71892910000001,32.8274757],[-83.7190856,32.8275999],[-83.7191162,32.8276319],[-83.71912850000001,32.827665],[-83.7191394,32.827788600000005],[-83.7190741,32.82795],[-83.7190034,32.828027500000005],[-83.7187237,32.8281644],[-83.7185762,32.8283323],[-83.7185178,32.8285544],[-83.7185577,32.8288153],[-83.7184778,32.829016700000004],[-83.718401,32.829223400000004],[-83.71837020000001,32.830086]]},"id":"8744c0b0affffff-13b6f5dd0cce876a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7185915,32.8301376]},"id":"8f44c0b0a35cb13-17d6360857806054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a35cc58-17b7f692a754748a","8f44c0b0a35cb13-17d6360857806054"]},"geometry":{"type":"LineString","coordinates":[[-83.71837020000001,32.830086],[-83.7183456,32.830517300000004],[-83.7185147,32.8305457],[-83.7185915,32.8301376]]},"id":"8a44c0b0a35ffff-17def66108b8f766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a35cc58-17b7f692a754748a","8f44c0b0a35cb13-17d6360857806054"]},"geometry":{"type":"LineString","coordinates":[[-83.7185915,32.8301376],[-83.71837020000001,32.830086]]},"id":"8b44c0b0a35cfff-17d7f64d83364d04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900083,32.8071639]},"id":"8f44c0b1d086424-17bf7bd0dd92f498"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d086424-17bf7bd0dd92f498","8f44c0b1d0b6140-13befcb0bc4d1d08"]},"geometry":{"type":"LineString","coordinates":[[-83.68965010000001,32.8061103],[-83.6896014,32.8061795],[-83.68974940000001,32.8065933],[-83.68992150000001,32.8070213],[-83.68998350000001,32.807126600000004],[-83.6900083,32.8071639]]},"id":"8944c0b1d0bffff-13f7fc60f56a73e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d08c71d-17ff79018f2e400c","8f44c0b1d086424-17bf7bd0dd92f498"]},"geometry":{"type":"LineString","coordinates":[[-83.6900083,32.8071639],[-83.6900402,32.8072119],[-83.69014,32.8073476],[-83.6902409,32.807454400000005],[-83.6903568,32.8075605],[-83.6904674,32.807648400000005],[-83.6906381,32.8077567],[-83.6907863,32.8078485],[-83.6908561,32.8078987],[-83.6909285,32.807970700000006],[-83.69101210000001,32.808062500000005],[-83.6911019,32.808175],[-83.6911592,32.8082833]]},"id":"8944c0b1d0bffff-179f7a65b7aa6317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69108220000001,32.8096594]},"id":"8f44c0b1d0d2cb3-13d77931a919dbc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d0d2cb3-13d77931a919dbc4","8f44c0b1d0d24c8-13f67941b42a6246"]},"geometry":{"type":"LineString","coordinates":[[-83.69108220000001,32.8096594],[-83.6910565,32.8098848]]},"id":"8b44c0b1d0d2fff-139ff939a8c078b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d0d24c8-13f67941b42a6246","8f44c0b1d72c614-17967963279e1fed"]},"geometry":{"type":"LineString","coordinates":[[-83.6910565,32.8098848],[-83.69100300000001,32.8103746]]},"id":"8944c0b1d73ffff-13ff795266965f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d0d2cb3-13d77931a919dbc4","8f44c0b1d08c0ea-17f6f8c708d283f1"]},"geometry":{"type":"LineString","coordinates":[[-83.69108220000001,32.8096594],[-83.6911575,32.809487600000004],[-83.69125050000001,32.809134400000005],[-83.6912939,32.8089619],[-83.6913181,32.8088624],[-83.69133500000001,32.8087832],[-83.69133980000001,32.808729400000004],[-83.69134220000001,32.8086594],[-83.69133620000001,32.8085691],[-83.6913193,32.8084493],[-83.6912976,32.8083631],[-83.6912722,32.808297100000004],[-83.6912528,32.8082536]]},"id":"8844c0b1d1fffff-13b6f8c3df160aba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69012120000001,32.807173]},"id":"8f44c0b1d086183-17d77b8a4bc5d304"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d08c0ea-17f6f8c708d283f1","8f44c0b1d086183-17d77b8a4bc5d304"]},"geometry":{"type":"LineString","coordinates":[[-83.6912528,32.8082536],[-83.6911913,32.8081418],[-83.6911261,32.808048400000004],[-83.6910524,32.8079571],[-83.6909933,32.807898200000004],[-83.6909244,32.8078414],[-83.6908013,32.8077571],[-83.69050060000001,32.8075643],[-83.69039670000001,32.8074862],[-83.6903195,32.8074121],[-83.69022770000001,32.807308500000005],[-83.6901649,32.8072314],[-83.69012120000001,32.807173]]},"id":"8944c0b1d0bffff-179ffa1f97f74cee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d086cf5-1797fbab677ed33f","8f44c0b1d086183-17d77b8a4bc5d304"]},"geometry":{"type":"LineString","coordinates":[[-83.69012120000001,32.807173],[-83.69009360000001,32.807135],[-83.6900682,32.8070942]]},"id":"8b44c0b1d086fff-17befb9b4ca5e2cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d086cf5-1797fbab677ed33f","8f44c0b1d0b6140-13befcb0bc4d1d08"]},"geometry":{"type":"LineString","coordinates":[[-83.6900682,32.8070942],[-83.6899958,32.8069533],[-83.68993060000001,32.806797],[-83.68971570000001,32.8061698],[-83.68965010000001,32.8061103]]},"id":"8944c0b1d0bffff-13defc2ad7863119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d086cf5-1797fbab677ed33f","8f44c0b1d086424-17bf7bd0dd92f498"]},"geometry":{"type":"LineString","coordinates":[[-83.6900682,32.8070942],[-83.6900083,32.8071639]]},"id":"8b44c0b1d086fff-17b7fbbe21f95fe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d086424-17bf7bd0dd92f498","8f44c0b1d086183-17d77b8a4bc5d304"]},"geometry":{"type":"LineString","coordinates":[[-83.6900083,32.8071639],[-83.69012120000001,32.807173]]},"id":"8b44c0b1d086fff-17d67bad90c1a05b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08442b-17967a9fbf640b9e","8f44c0b1d086183-17d77b8a4bc5d304"]},"geometry":{"type":"LineString","coordinates":[[-83.69012120000001,32.807173],[-83.6901708,32.807158],[-83.69021090000001,32.8071429],[-83.6902628,32.8071335],[-83.6904442,32.8071374],[-83.69049650000001,32.8071013]]},"id":"8a44c0b1d087fff-17bffb1343f269ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa305-17ff7836ad81b6d0","8f44c0b1d0aa8e9-1796f82ead977027"]},"geometry":{"type":"LineString","coordinates":[[-83.6914838,32.8078487],[-83.69149660000001,32.807687300000005]]},"id":"8b44c0b1d0aafff-17b77832a76948cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa8e9-1796f82ead977027","8f44c0b1d0aa924-17b67826b7bc642c"]},"geometry":{"type":"LineString","coordinates":[[-83.69149660000001,32.807687300000005],[-83.6915093,32.8075265]]},"id":"8a44c0b1d0affff-17d6782ab0e7d81f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ae072-17b6781e11985dd0","8f44c0b1d0aa924-17b67826b7bc642c"]},"geometry":{"type":"LineString","coordinates":[[-83.6915093,32.8075265],[-83.69152310000001,32.8073507]]},"id":"8b44c0b1d0aefff-17ff78226f98a00a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ae072-17b6781e11985dd0","8f44c0b1d0ad444-17bef67a4a3cf6c6"]},"geometry":{"type":"LineString","coordinates":[[-83.69152310000001,32.8073507],[-83.69213540000001,32.8073885],[-83.692187,32.8074085],[-83.6922055,32.8074419],[-83.69219480000001,32.807566300000005]]},"id":"8a44c0b1d0affff-17df772394dd9670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ad689-179f7683151422c1","8f44c0b1d0ad444-17bef67a4a3cf6c6"]},"geometry":{"type":"LineString","coordinates":[[-83.69219480000001,32.807566300000005],[-83.69218070000001,32.807729800000004]]},"id":"8b44c0b1d0adfff-17fe767eaf495be7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0ad689-179f7683151422c1","8f44c0b1d0a9c59-1796768bf9d1dd74"]},"geometry":{"type":"LineString","coordinates":[[-83.69218070000001,32.807729800000004],[-83.6921665,32.8078945]]},"id":"8a44c0b1d0affff-17d6f6878adfcda6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0a9728-17fe7694c6d6a59f","8f44c0b1d0a9c59-1796768bf9d1dd74"]},"geometry":{"type":"LineString","coordinates":[[-83.6921665,32.8078945],[-83.69215240000001,32.8080579]]},"id":"8b44c0b1d0a9fff-17bf76906b2972ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0aa305-17ff7836ad81b6d0","8f44c0b1d08192e-17f67952f78a0d10"]},"geometry":{"type":"LineString","coordinates":[[-83.6914838,32.8078487],[-83.6912315,32.807839300000005],[-83.6910289,32.8076583]]},"id":"8944c0b1d0bffff-17d7f8cf28299169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08192e-17f67952f78a0d10","8f44c0b1d0854d3-1797f9ed988c94ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6910289,32.8076583],[-83.69100800000001,32.8076396],[-83.6907815,32.807484200000005]]},"id":"8b44c0b1d085fff-17bf799fa3c8216c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d0809b3-17be7a7313c896d2","8f44c0b1d0854d3-1797f9ed988c94ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6907815,32.807484200000005],[-83.6905679,32.807337700000005]]},"id":"8a44c0b1d087fff-17d7fa305f3c631c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d08442b-17967a9fbf640b9e","8f44c0b1d0809b3-17be7a7313c896d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6905679,32.807337700000005],[-83.6905246,32.807308],[-83.6904937,32.8072569],[-83.69049650000001,32.8071013]]},"id":"8a44c0b1d087fff-17f6fa9855c04ba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa73398-13f6fa26cbe54680","8f44c0b1aa73a89-13dee9dc3dd4d463"]},"geometry":{"type":"LineString","coordinates":[[-83.657922,32.8197483],[-83.65804130000001,32.819677]]},"id":"8b44c0b1aa73fff-13f6ea0178330524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6587033,32.8196937]},"id":"8f44c0b1aa44d5a-13d6d83e72cd049e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa44d5a-13d6d83e72cd049e","8f44c0b1aa73a89-13dee9dc3dd4d463"]},"geometry":{"type":"LineString","coordinates":[[-83.65804130000001,32.819677],[-83.6587033,32.8196937]]},"id":"8944c0b1aa7ffff-13dfd90d5152c7cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65711370000001,32.819456100000004]},"id":"8f44c0b1aa09043-13d6dc1fffa7e8ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa09043-13d6dc1fffa7e8ae","8f44c0b1aa54564-13d7fb9bf9dc5507"]},"geometry":{"type":"LineString","coordinates":[[-83.6573249,32.8196667],[-83.65716570000001,32.819626],[-83.65710130000001,32.8195314],[-83.65711370000001,32.819456100000004]]},"id":"8944c0b1aa7ffff-1396dbf6bb46155e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65893600000001,32.8194863]},"id":"8f44c0b1aa62316-13d6f7ad0cc5066c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa62316-13d6f7ad0cc5066c","8f44c0b1aa09043-13d6dc1fffa7e8ae"]},"geometry":{"type":"LineString","coordinates":[[-83.65711370000001,32.819456100000004],[-83.65712280000001,32.8194006],[-83.6572354,32.8192879],[-83.65875890000001,32.8193195],[-83.6588984,32.81936],[-83.65893600000001,32.8194863]]},"id":"8944c0b1aa7ffff-13ffc9e48f51bfac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa44d5a-13d6d83e72cd049e","8f44c0b1aa62316-13d6f7ad0cc5066c"]},"geometry":{"type":"LineString","coordinates":[[-83.65893600000001,32.8194863],[-83.65888770000001,32.8196711],[-83.65878040000001,32.8196936],[-83.6587033,32.8196937]]},"id":"8944c0b1aa7ffff-13bee7dfe5df4960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9aa876a-17bf8cf648e62ff0","8f44c0ba9a8882e-17fffe64084217be"]},"geometry":{"type":"LineString","coordinates":[[-83.6299712,32.8248575],[-83.6305564,32.8241608]]},"id":"8944c0ba9abffff-17973dad2d30acc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9aa876a-17bf8cf648e62ff0","8f44c0ba9aaca49-1797dbfdedaecd66"]},"geometry":{"type":"LineString","coordinates":[[-83.6305564,32.8241608],[-83.6309538,32.8236877]]},"id":"8a44c0ba9aaffff-17bfbc7a1ab3df8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b062f0cc5-17f6f9e0be4a8cc3","8f44c0b06284352-13fefdbdf6713dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6892193,32.7564713],[-83.68955790000001,32.7564675],[-83.689977,32.7567861],[-83.6903432,32.7574758],[-83.6907315,32.757833000000005],[-83.6908021,32.7578666]]},"id":"8844c0b063fffff-13ff7baf78a0e9a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6923804,32.758712]},"id":"8f44c0b062eec0b-17f77606442a825b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b062eec0b-17f77606442a825b","8f44c0b062f0cc5-17f6f9e0be4a8cc3"]},"geometry":{"type":"LineString","coordinates":[[-83.6908021,32.7578666],[-83.69112240000001,32.7580186],[-83.69152030000001,32.7584893],[-83.69182930000001,32.7586786],[-83.6923804,32.758712]]},"id":"8944c0b062fffff-17bef80c8479ba77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6775604,32.8197479]},"id":"8f44c0b1835d46a-13f6fa34cdab4bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1835d44b-1396ba3b4d2a6265","8f44c0b1835d46a-13f6fa34cdab4bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.67755000000001,32.8197739],[-83.67755220000001,32.8198012],[-83.6775667,32.8198257],[-83.67759120000001,32.8198437],[-83.677622,32.8198524],[-83.6776545,32.8198506],[-83.6776837,32.8198385],[-83.67770510000001,32.819817900000004],[-83.6777155,32.819791900000006],[-83.67771330000001,32.8197646],[-83.67769890000001,32.819740100000004],[-83.6776744,32.8197221],[-83.6776435,32.819713400000005],[-83.677611,32.819715200000005],[-83.6775819,32.819727300000004],[-83.6775604,32.8197479]]},"id":"8b44c0b1835dfff-139fba048b6618ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1835d44b-1396ba3b4d2a6265","8f44c0b1835d46a-13f6fa34cdab4bd5"]},"geometry":{"type":"LineString","coordinates":[[-83.6775604,32.8197479],[-83.67755000000001,32.8197739]]},"id":"8d44c0b1835d47f-13fe9a38074bc14f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68100340000001,32.8203497]},"id":"8f44c0b19ca06d6-17fe91ccecebc724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ca06a9-17ded1c66be353c2","8f44c0b19ca06d6-17fe91ccecebc724"]},"geometry":{"type":"LineString","coordinates":[[-83.68100340000001,32.8203497],[-83.6810056,32.820377],[-83.68102010000001,32.8204015],[-83.6810446,32.8204195],[-83.68107540000001,32.8204282],[-83.6811079,32.8204264],[-83.6811371,32.8204143],[-83.68115850000001,32.820393700000004],[-83.6811689,32.820367700000006],[-83.6811667,32.8203404],[-83.68115230000001,32.820315900000004],[-83.6811278,32.8202979],[-83.6810969,32.820289200000005],[-83.68106440000001,32.820291000000005],[-83.6810353,32.820303100000004],[-83.6810138,32.8203237]]},"id":"8a44c0b19ca7fff-17f79196258848a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19ca06a9-17ded1c66be353c2","8f44c0b19ca06d6-17fe91ccecebc724"]},"geometry":{"type":"LineString","coordinates":[[-83.6810138,32.8203237],[-83.68100340000001,32.8203497]]},"id":"8c44c0b19ca07ff-17f6f1c9ad1e287e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800784,32.8215029]},"id":"8f44c0b19c83581-17bfd40f0e487efe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c83581-17bfd40f0e487efe","8f44c0b19c83463-17ffd3cdb67969d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6800784,32.8215029],[-83.68008060000001,32.821530200000005],[-83.6800951,32.8215547],[-83.68011960000001,32.821572700000004],[-83.6801504,32.8215814],[-83.6801829,32.8215796]]},"id":"8c44c0b19c835ff-17f793f6bf141f09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c83581-17bfd40f0e487efe","8f44c0b19c83463-17ffd3cdb67969d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6801829,32.8215796],[-83.6802121,32.8215675],[-83.6802335,32.8215469],[-83.68024390000001,32.8215209],[-83.68024170000001,32.821493600000004],[-83.6802273,32.8214691],[-83.6802028,32.821451100000004],[-83.6801719,32.8214424],[-83.6801394,32.8214442],[-83.68011030000001,32.8214563],[-83.68008880000001,32.8214769],[-83.6800784,32.8215029]]},"id":"8b44c0b19c83fff-17b7f3cebec30bc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6809099,32.8226822]},"id":"8f44c0b19c8b0e4-13b6f2075d9601c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8b00c-1397d1ff8f3a42bc","8f44c0b19c8b0e4-13b6f2075d9601c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6809099,32.8226822],[-83.6809058,32.8227046],[-83.68091050000001,32.822727],[-83.6809235,32.822747],[-83.6809434,32.8227624],[-83.6809681,32.822771700000004],[-83.6809951,32.8227738],[-83.6810214,32.8227686],[-83.68104430000001,32.822756500000004],[-83.6810615,32.822738900000004],[-83.6810712,32.8227169],[-83.6810717,32.8226935],[-83.68106300000001,32.8226712],[-83.6810461,32.822652600000005],[-83.68102280000001,32.8226397],[-83.68099570000001,32.822634],[-83.68096800000001,32.822636100000004],[-83.68094260000001,32.822645800000004],[-83.6809224,32.822662]]},"id":"8b44c0b19c8bfff-13bf91d36a845f57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b19c8b00c-1397d1ff8f3a42bc","8f44c0b19c8b0e4-13b6f2075d9601c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6809224,32.822662],[-83.6809099,32.8226822]]},"id":"8c44c0b19c8b1ff-139e920373f1620c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92d40e2-1397b94b69373285","8f44c0ba92f0c41-13f757e0e0f8d52a"]},"geometry":{"type":"LineString","coordinates":[[-83.625505,32.832489],[-83.626085,32.831802]]},"id":"8944c0ba92fffff-13bff89622be21e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92f0c41-13f757e0e0f8d52a","8f44c0ba921bc12-17f7b6a36d8f0792"]},"geometry":{"type":"LineString","coordinates":[[-83.626085,32.831802],[-83.62611600000001,32.8317658],[-83.62632930000001,32.8315168],[-83.6263581,32.8314832],[-83.6263869,32.8314496],[-83.626593,32.831209]]},"id":"8844c0ba93fffff-13bff74225a070a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a264e88b3-13bee499073e4231","8f44c0a264e2c63-17d6b756267c3d58"]},"geometry":{"type":"LineString","coordinates":[[-83.67218220000001,32.8504099],[-83.673304,32.85137]]},"id":"8944c0a264fffff-17fee5f79e3541cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a264e88b3-13bee499073e4231","8f44c0a267b4bae-13ffa283e356ba5d"]},"geometry":{"type":"LineString","coordinates":[[-83.673304,32.85137],[-83.67415700000001,32.85212]]},"id":"8844c0a265fffff-1396a38e7de82c3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a267b4bae-13ffa283e356ba5d","8f44c0a267b5819-139ea1ca4ab17caf"]},"geometry":{"type":"LineString","coordinates":[[-83.67415700000001,32.85212],[-83.67445400000001,32.852372]]},"id":"8a44c0a267b7fff-13dfe22712b4511d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a267a3b6b-1796ff99bdd6bb5a","8f44c0a267b5819-139ea1ca4ab17caf"]},"geometry":{"type":"LineString","coordinates":[[-83.67445400000001,32.852372],[-83.6752316,32.8530442],[-83.67535090000001,32.8531463]]},"id":"8944c0a267bffff-179ea0b222e40158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a267a3b6b-1796ff99bdd6bb5a","8f44c0a267a16aa-179fff7dc2430493"]},"geometry":{"type":"LineString","coordinates":[[-83.67535090000001,32.8531463],[-83.6753956,32.8531862]]},"id":"8b44c0a267a1fff-179eff8bb5fd6e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a267a16aa-179fff7dc2430493","8f44c0a267ad6a8-17b69db40853e646"]},"geometry":{"type":"LineString","coordinates":[[-83.6753956,32.8531862],[-83.676128,32.853840000000005]]},"id":"8944c0a267bffff-17f7be98ed7b651c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6761987,32.852797100000004]},"id":"8f44c0a26712959-17b6bd87d3e92009"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2671410b-1396fc67866f5c51","8f44c0a26712959-17b6bd87d3e92009"]},"geometry":{"type":"LineString","coordinates":[[-83.67666,32.852359],[-83.676381,32.852579],[-83.676259,32.852701],[-83.6761987,32.852797100000004]]},"id":"8a44c0a26717fff-1396fd00af6bea99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26712959-17b6bd87d3e92009","8f44c0a267ad6a8-17b69db40853e646"]},"geometry":{"type":"LineString","coordinates":[[-83.6761987,32.852797100000004],[-83.67618300000001,32.852822],[-83.676125,32.852989],[-83.676106,32.853378],[-83.676101,32.853616],[-83.676128,32.853840000000005]]},"id":"8844c0a267fffff-17febdb85151cf13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3455460a-17b7550edb575d89","8f44c0a3442c883-17f78683e70f4c96"]},"geometry":{"type":"LineString","coordinates":[[-83.63319700000001,32.8371256],[-83.6332512,32.8370629],[-83.6337939,32.836434100000005]]},"id":"8844c0a345fffff-179f75c955bfdff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a345704d3-139f13ee31f718cb","8f44c0a3455460a-17b7550edb575d89"]},"geometry":{"type":"LineString","coordinates":[[-83.6337939,32.836434100000005],[-83.6342348,32.835918500000005],[-83.63425570000001,32.835784100000005]]},"id":"8944c0a3457ffff-13f7446cfff7c273"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ab3cd2-13dff7586258ee29","8f44c0a34ab3061-13bee6d52d5b5c6a"]},"geometry":{"type":"LineString","coordinates":[[-83.6461742,32.839284400000004],[-83.64596420000001,32.8391581]]},"id":"8b44c0a34ab3fff-1397f716c8fa5068"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34ab3cd2-13dff7586258ee29","8f44c0a34149922-1397e8c06e7315ed"]},"geometry":{"type":"LineString","coordinates":[[-83.64596420000001,32.8391581],[-83.6453882,32.8388116]]},"id":"8744c0a34ffffff-13fff80c676c00b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34148d74-13d7ea0004ec974a","8f44c0a34149922-1397e8c06e7315ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6453882,32.8388116],[-83.64507230000001,32.8386216],[-83.6448768,32.838504]]},"id":"8a44c0a3414ffff-13b7e96039f90fe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3414eaa6-13f6fa7e88f9f324","8f44c0a34148d74-13d7ea0004ec974a"]},"geometry":{"type":"LineString","coordinates":[[-83.6448768,32.838504],[-83.6446744,32.8383823]]},"id":"8a44c0a3414ffff-139fea3f4cd50cee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64462180000001,32.838350600000005]},"id":"8f44c0a3414e162-13f7ea9f61533795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3414eaa6-13f6fa7e88f9f324","8f44c0a3414e162-13f7ea9f61533795"]},"geometry":{"type":"LineString","coordinates":[[-83.6446744,32.8383823],[-83.64462180000001,32.838350600000005]]},"id":"8b44c0a3414efff-13fffa8ef9521886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6444847,32.8382682]},"id":"8f44c0a3414ec50-13bfeaf51fa493fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3414ec50-13bfeaf51fa493fa","8f44c0a3414e162-13f7ea9f61533795"]},"geometry":{"type":"LineString","coordinates":[[-83.64462180000001,32.838350600000005],[-83.6444847,32.8382682]]},"id":"8b44c0a3414efff-13d7eaca4ed549d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64441140000001,32.838224100000005]},"id":"8f44c0a3414eca0-1396fb22e9a886a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3414ec50-13bfeaf51fa493fa","8f44c0a3414eca0-1396fb22e9a886a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6444847,32.8382682],[-83.64441140000001,32.838224100000005]]},"id":"8c44c0a3414edff-139feb0bfdbc822a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a341430e6-13befbb093f2a8f1","8f44c0a3414eca0-1396fb22e9a886a8"]},"geometry":{"type":"LineString","coordinates":[[-83.64441140000001,32.838224100000005],[-83.64418470000001,32.8380877]]},"id":"8a44c0a34147fff-13f7fb69c0fde1a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34142485-17dfed27604af5fb","8f44c0a341430e6-13befbb093f2a8f1"]},"geometry":{"type":"LineString","coordinates":[[-83.64418470000001,32.8380877],[-83.643585,32.837727]]},"id":"8944c0a3417ffff-17deec6bf519ebb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348d8a99-13beeacecca21de7","8f44c0a34175d41-13dfebafcb986fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.644186,32.836264],[-83.644546,32.835627]]},"id":"8744c0a34ffffff-1397fb3f4021fa98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b96943-13dff6ddfd42b974","8f44c0a34b96872-13f7e6f165d8f627"]},"geometry":{"type":"LineString","coordinates":[[-83.646129,32.836329400000004],[-83.6461601,32.836290500000004]]},"id":"8c44c0a34b969ff-13f7f6e7b35e0f58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b96943-13dff6ddfd42b974","8f44c0a34bb4da5-139ee49f02ba94b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6461601,32.836290500000004],[-83.64708,32.83514]]},"id":"8744c0a34ffffff-13f6f5be83fdc0a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348e36c1-17fef820c5a2d7f6","8f44c0a348f1076-17f6e9ce69acaf68"]},"geometry":{"type":"LineString","coordinates":[[-83.64495620000001,32.8338538],[-83.6450344,32.8339007],[-83.6456436,32.834265900000005]]},"id":"8944c0a348fffff-17f7f8f798c04f7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348e36c1-17fef820c5a2d7f6","8f44c0a348ee490-17bfe7a82e728c05"]},"geometry":{"type":"LineString","coordinates":[[-83.6456436,32.834265900000005],[-83.64583660000001,32.834380200000005]]},"id":"8b44c0a348c5fff-179ff7e47c359816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348ee490-17bfe7a82e728c05","8f44c0a348ee626-17f6f731bef03991"]},"geometry":{"type":"LineString","coordinates":[[-83.64583660000001,32.834380200000005],[-83.6460261,32.8344931]]},"id":"8a44c0a348effff-17d6e76cecce0691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348e854e-17f7e65fc5e06b64","8f44c0a348ee626-17f6f731bef03991"]},"geometry":{"type":"LineString","coordinates":[[-83.6460261,32.8344931],[-83.64636200000001,32.834693]]},"id":"8a44c0a348effff-17b6f6c8c54d0bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348e854e-17f7e65fc5e06b64","8f44c0a34bb4da5-139ee49f02ba94b3"]},"geometry":{"type":"LineString","coordinates":[[-83.64636200000001,32.834693],[-83.64708,32.83514]]},"id":"8944c0a348fffff-13fef57f6dfbcc03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4d890e-139ef4410ca900be","8f44c0b1b4de8a5-13f6f549695cb476"]},"geometry":{"type":"LineString","coordinates":[[-83.653361,32.835901],[-83.653507,32.83601],[-83.653784,32.836187]]},"id":"8a44c0b1b4dffff-13d7f4c6bbe0c4e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4d890e-139ef4410ca900be","8f44c0b1b4dd769-179ef36287c6ad90"]},"geometry":{"type":"LineString","coordinates":[[-83.653784,32.836187],[-83.65389300000001,32.836243],[-83.65414,32.836393900000004]]},"id":"8a44c0b1b4dffff-13d7d3d0ce5648c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b4dd769-179ef36287c6ad90","8f44c0b1b4cb129-17d6f180aeb487ee"]},"geometry":{"type":"LineString","coordinates":[[-83.65414,32.836393900000004],[-83.654911,32.836865]]},"id":"8944c0b1b4fffff-17bff2719e70e219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685895,32.8410494]},"id":"8f44c0a2698db72-17f7e5dba682f0cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2698db72-17f7e5dba682f0cb","8f44c0a2698dced-17dec69cc13fe33a"]},"geometry":{"type":"LineString","coordinates":[[-83.685895,32.8410494],[-83.685586,32.840974]]},"id":"8b44c0a2698dfff-17f6d63c3d0f3bee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2698dced-17dec69cc13fe33a","8f44c0a269832e4-17b6e92b2aae4d3a"]},"geometry":{"type":"LineString","coordinates":[[-83.685586,32.840974],[-83.684539,32.840711]]},"id":"8944c0a269bffff-17f697e3f5d41f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a269836a2-1796a9c44dd5c50b","8f44c0a269832e4-17b6e92b2aae4d3a"]},"geometry":{"type":"LineString","coordinates":[[-83.684539,32.840711],[-83.68429400000001,32.840657]]},"id":"8b44c0a26983fff-17978977b70fb39a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a269836a2-1796a9c44dd5c50b","8f44c0a26d6ca63-17d7ed240beaade0"]},"geometry":{"type":"LineString","coordinates":[[-83.68429400000001,32.840657],[-83.68397900000001,32.840622],[-83.68342200000001,32.840592],[-83.682912,32.840559]]},"id":"8844c0a269fffff-17f6cb73dd9bb673"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d2b044-13def4572a7a9d92","8f44c0a26d6ca63-17d7ed240beaade0"]},"geometry":{"type":"LineString","coordinates":[[-83.682912,32.840559],[-83.682657,32.840553],[-83.68231,32.840527],[-83.68205,32.84047],[-83.68181700000001,32.840401],[-83.68166000000001,32.84033],[-83.681487,32.840241],[-83.68114200000001,32.840013],[-83.680949,32.839866],[-83.68011,32.839249],[-83.679963,32.839131]]},"id":"8744c0a26ffffff-17feb0ec5da4e3ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d056b4-13f696ab6bdfb3cd","8f44c0a26d2b044-13def4572a7a9d92"]},"geometry":{"type":"LineString","coordinates":[[-83.679963,32.839131],[-83.67945900000001,32.838776],[-83.6794,32.838741],[-83.67900900000001,32.83856]]},"id":"8944c0a26d3ffff-139fd579bc562236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d056b4-13f696ab6bdfb3cd","8f44c0a26d06261-1396d7e5245c232a"]},"geometry":{"type":"LineString","coordinates":[[-83.67900900000001,32.83856],[-83.678729,32.83847],[-83.67850700000001,32.83841]]},"id":"8a44c0a26d07fff-13b7d747befb415e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d15134-1397b96ee2a256a9","8f44c0a26d06261-1396d7e5245c232a"]},"geometry":{"type":"LineString","coordinates":[[-83.67850700000001,32.83841],[-83.67787700000001,32.838233]]},"id":"8944c0a26d3ffff-13def8aa08cbbac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769869,32.837985100000004]},"id":"8f44c0a26d16c73-17febb9b38aed58d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d15134-1397b96ee2a256a9","8f44c0a26d16c73-17febb9b38aed58d"]},"geometry":{"type":"LineString","coordinates":[[-83.67787700000001,32.838233],[-83.677329,32.838077000000006],[-83.6769869,32.837985100000004]]},"id":"8a44c0a26d17fff-13dfba84c604107e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26d16c73-17febb9b38aed58d","8f44c0b1ba4b389-17d6fc3e46ff6bb5"]},"geometry":{"type":"LineString","coordinates":[[-83.6769869,32.837985100000004],[-83.676726,32.837915]]},"id":"8844c0a26dfffff-17f6dbecc3a955e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766343,32.837887300000006]},"id":"8f44c0b1ba4b771-17bf9c7794356594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ba4b771-17bf9c7794356594","8f44c0b1ba4b389-17d6fc3e46ff6bb5"]},"geometry":{"type":"LineString","coordinates":[[-83.676726,32.837915],[-83.6766343,32.837887300000006]]},"id":"8b44c0b1ba4bfff-17dedc5ae6baf67f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6764916,32.8378443]},"id":"8f44c0b1ba4b4cd-17b6bcd0cb978485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ba4b771-17bf9c7794356594","8f44c0b1ba4b4cd-17b6bcd0cb978485"]},"geometry":{"type":"LineString","coordinates":[[-83.6766343,32.837887300000006],[-83.6764916,32.8378443]]},"id":"8b44c0b1ba4bfff-17b6bca43e0d5245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6762004,32.8377244]},"id":"8f44c0a26da4d6b-17dfdd86c66118fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ba4b4cd-17b6bcd0cb978485","8f44c0a26da4d6b-17dfdd86c66118fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6764916,32.8378443],[-83.6762004,32.8377244]]},"id":"8944c0b1ba7ffff-17ffdd2bc33d9224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6761141,32.8376882]},"id":"8f44c0a26da4d18-17d7bdbcb1139013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26da4d18-17d7bdbcb1139013","8f44c0a26da4d6b-17dfdd86c66118fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6762004,32.8377244],[-83.676187,32.837719],[-83.676141,32.837702],[-83.6761141,32.8376882]]},"id":"8c44c0a26da4dff-17df9da20fc323e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ba59a89-1797de11cb3f7568","8f44c0a26da4d18-17d7bdbcb1139013"]},"geometry":{"type":"LineString","coordinates":[[-83.6761141,32.8376882],[-83.675978,32.837618]]},"id":"8944c0b1ba7ffff-17bfbde748f349fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ba59a89-1797de11cb3f7568","8f44c0b1ba59cb3-1797ded65b9deeec"]},"geometry":{"type":"LineString","coordinates":[[-83.675978,32.837618],[-83.6756635,32.837406900000005]]},"id":"8b44c0b1ba59fff-17d7de74177ac85b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ba59cb3-1797ded65b9deeec","8f44c0b1baedb96-1796e1150231d685"]},"geometry":{"type":"LineString","coordinates":[[-83.6756635,32.837406900000005],[-83.67535910000001,32.8371863],[-83.675016,32.837047000000005],[-83.674744,32.836971000000005]]},"id":"8944c0b1ba7ffff-17f69feaa2170eb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bac5b58-17f7a3f9ad0771b6","8f44c0b1baedb96-1796e1150231d685"]},"geometry":{"type":"LineString","coordinates":[[-83.674744,32.836971000000005],[-83.674518,32.836941],[-83.674323,32.836931],[-83.673996,32.836928],[-83.67355900000001,32.836917]]},"id":"8a44c0b1baeffff-17ffb286d3812b5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bac5b58-17f7a3f9ad0771b6","8f44c0b1bac29b5-17d7e6ca499e1729"]},"geometry":{"type":"LineString","coordinates":[[-83.67355900000001,32.836917],[-83.67240600000001,32.836899]]},"id":"8944c0b1bafffff-17dfa561ffc5a181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bac29b5-17d7e6ca499e1729","8f44c0b1bad2cd5-17d7aa6920c9f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.67240600000001,32.836899],[-83.67165800000001,32.836883],[-83.670923,32.836892]]},"id":"8844c0b1bbfffff-17dff899ba2c1a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b321d75-17d7eb56ab5fa815","8f44c0b1bad2cd5-17d7aa6920c9f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.670923,32.836892],[-83.67054300000001,32.836902]]},"id":"8944c0b1b33ffff-17d6aadfea1cdd58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b321d75-17d7eb56ab5fa815","8f44c0b1b331c96-17b7aef9ecb7a1fa"]},"geometry":{"type":"LineString","coordinates":[[-83.67054300000001,32.836902],[-83.669955,32.836922],[-83.669471,32.836931],[-83.66939280000001,32.8369343],[-83.66931480000001,32.836929600000005],[-83.669238,32.836917],[-83.6691785,32.8369014],[-83.6691342,32.8368847],[-83.66909220000001,32.8368641],[-83.669053,32.83684]]},"id":"8944c0b1b33ffff-17f6ed2d2e220ff4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b33662e-17deb075eff66aa0","8f44c0b1b331c96-17b7aef9ecb7a1fa"]},"geometry":{"type":"LineString","coordinates":[[-83.669053,32.83684],[-83.668954,32.836784],[-83.66881400000001,32.836691],[-83.668632,32.836578],[-83.668445,32.836468]]},"id":"8a44c0b1b337fff-17beefb78901d1f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b33662e-17deb075eff66aa0","8f44c0b1b04c049-1396f223472b8eef"]},"geometry":{"type":"LineString","coordinates":[[-83.668445,32.836468],[-83.668239,32.83634],[-83.66811600000001,32.836275],[-83.66800400000001,32.836229],[-83.66787500000001,32.836197],[-83.667758,32.836183000000005]]},"id":"8744c0b1bffffff-13deb145514f4a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b04e434-139ef3f6c90bcfda","8f44c0b1b04c049-1396f223472b8eef"]},"geometry":{"type":"LineString","coordinates":[[-83.667758,32.836183000000005],[-83.66701,32.836167]]},"id":"8a44c0b1b04ffff-1397f30d0a43730a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b04e434-139ef3f6c90bcfda","8f44c0b1b0ed8e8-13fef79a0d8da387"]},"geometry":{"type":"LineString","coordinates":[[-83.66701,32.836167],[-83.66552,32.836135]]},"id":"8944c0b1b07ffff-1396f5c86c4d5e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0c5470-13f7bb74efc6a26a","8f44c0b1b0ed8e8-13fef79a0d8da387"]},"geometry":{"type":"LineString","coordinates":[[-83.66552,32.836135],[-83.66394100000001,32.836105]]},"id":"8844c0b1b1fffff-13ffb98771194b41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66342180000001,32.8360961]},"id":"8f44c0b1b0c0536-13f6bcb96aeacf7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0c5470-13f7bb74efc6a26a","8f44c0b1b0c0536-13f6bcb96aeacf7f"]},"geometry":{"type":"LineString","coordinates":[[-83.66394100000001,32.836105],[-83.66342180000001,32.8360961]]},"id":"8a44c0b1b0c7fff-13f6fc172c76b983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0c0536-13f6bcb96aeacf7f","8f44c0b1b0c66ce-13dfbd68c4741da9"]},"geometry":{"type":"LineString","coordinates":[[-83.66342180000001,32.8360961],[-83.6631412,32.8360913]]},"id":"8a44c0b1b0c7fff-13debd1112be97fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0c66ce-13dfbd68c4741da9","8f44c0b1b0d5ac9-13dfbdd8a891426f"]},"geometry":{"type":"LineString","coordinates":[[-83.6631412,32.8360913],[-83.66296220000001,32.8360883]]},"id":"8a44c0b1b0c7fff-13debda0b69db2b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0d5ac9-13dfbdd8a891426f","8f44c0b1b0d0b55-13d6bee3a656c5bd"]},"geometry":{"type":"LineString","coordinates":[[-83.66296220000001,32.8360883],[-83.662535,32.836081]]},"id":"8944c0b1b0fffff-13defe5e27cab45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6865626,32.842204800000005]},"id":"8f44c0a26806681-13de843a6ea6aafe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a2681119a-13b6a57984adcde7","8f44c0a26806681-13de843a6ea6aafe"]},"geometry":{"type":"LineString","coordinates":[[-83.686052,32.842557],[-83.6865626,32.842204800000005]]},"id":"8944c0a2683ffff-13be94d9f0a9219b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687129,32.841814]},"id":"8f44c0a26804ce4-13d7c2d866f6518a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a26804ce4-13d7c2d866f6518a","8f44c0a26806681-13de843a6ea6aafe"]},"geometry":{"type":"LineString","coordinates":[[-83.6865626,32.842204800000005],[-83.687129,32.841814]]},"id":"8a44c0a26807fff-13dfe3896e4a32b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70111700000001,32.835405]},"id":"8f44c0a24c356da-13b660b1e1ec9780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24c31c83-13f76108c496f1be","8f44c0a24c356da-13b660b1e1ec9780"]},"geometry":{"type":"LineString","coordinates":[[-83.700978,32.83549],[-83.70111700000001,32.835405]]},"id":"8c44c0a24c31dff-13def0dd5a4ad9ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24c356da-13b660b1e1ec9780","8f44c0a24c35333-13de60222de90cd5"]},"geometry":{"type":"LineString","coordinates":[[-83.70111700000001,32.835405],[-83.701347,32.835264]]},"id":"8a44c0a24c37fff-1396706a0ccf7f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24d0a306-17de7d7ca36e4165","8f44c0a24c35333-13de60222de90cd5"]},"geometry":{"type":"LineString","coordinates":[[-83.701347,32.835264],[-83.701772,32.835016],[-83.702431,32.834631]]},"id":"8844c0a24dfffff-13965ecf67b9dc57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a24d0a306-17de7d7ca36e4165","8f44c0b0a6e5861-17fef26c2abd09b1"]},"geometry":{"type":"LineString","coordinates":[[-83.702431,32.834631],[-83.70284500000001,32.834372],[-83.702995,32.834286],[-83.70307000000001,32.834243],[-83.703134,32.834207],[-83.703489,32.833998],[-83.70409000000001,32.833635],[-83.704401,32.833433],[-83.70474200000001,32.833188],[-83.70491600000001,32.833063],[-83.705335,32.832752],[-83.70636,32.831974],[-83.706514,32.831851],[-83.706766,32.831623],[-83.706963,32.831425]]},"id":"8544c0b3fffffff-1796d7ce55e0d310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a676d9c-17b75049333a5d8a","8f44c0b0a6e5861-17fef26c2abd09b1"]},"geometry":{"type":"LineString","coordinates":[[-83.706963,32.831425],[-83.707257,32.831041],[-83.707744,32.830393],[-83.7078381,32.830261300000004]]},"id":"8844c0b0a7fffff-179e71591379c620"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a676d9c-17b75049333a5d8a","8f44c0b0a62d061-139fef2a6d48ca57"]},"geometry":{"type":"LineString","coordinates":[[-83.7078381,32.830261300000004],[-83.708297,32.829619]]},"id":"8a44c0b0a62ffff-17deefb9d77de2a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708421,32.8294549]},"id":"8f44c0b0a62d94d-13bf5edcedde91fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a62d94d-13bf5edcedde91fc","8f44c0b0a62d061-139fef2a6d48ca57"]},"geometry":{"type":"LineString","coordinates":[[-83.708297,32.829619],[-83.708421,32.8294549]]},"id":"8b44c0b0a62dfff-13deef03a2f0b6e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a62d94d-13bf5edcedde91fc","8f44c0b0a75199a-13d75dd155f08dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.708421,32.8294549],[-83.708708,32.829075],[-83.70884910000001,32.828884900000006]]},"id":"8944c0b0a77ffff-13f77e56c2c2aa74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a0db6d5-17becbd9032f33a0","8f44c0b0a75199a-13d75dd155f08dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.70884910000001,32.828884900000006],[-83.709393,32.828152],[-83.70947600000001,32.828035],[-83.709574,32.827866],[-83.70960500000001,32.827788000000005],[-83.709624,32.827711],[-83.70964500000001,32.827584],[-83.70965600000001,32.827412]]},"id":"8944c0b0a77ffff-139f6ca4523f3439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a0db6d5-17becbd9032f33a0","8f44c0b0a0dbcd1-17ff5bd395c2a431"]},"geometry":{"type":"LineString","coordinates":[[-83.70965600000001,32.827412],[-83.7096647,32.8271285]]},"id":"8844c0b0a7fffff-17d7fbd64c6bee17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b0a0dbd88-17d7ebd1ef20ac05","8f44c0b0a0dbcd1-17ff5bd395c2a431"]},"geometry":{"type":"LineString","coordinates":[[-83.7096647,32.8271285],[-83.7096674,32.827039400000004]]},"id":"8c44c0b0a0dbdff-17dfcbd2b4227473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26bb3074-179fe0838099f59e","8f44c0a26ba3120-17b7fd52907a1e5d"]},"geometry":{"type":"LineString","coordinates":[[-83.688084,32.847043],[-83.68939110000001,32.847058600000004]]},"id":"8944c0a26bbffff-179efeeb0c105716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26ba3120-17b7fd52907a1e5d","8f44c0a26b1276b-17befb175ffffef4"]},"geometry":{"type":"LineString","coordinates":[[-83.68939110000001,32.847058600000004],[-83.6903051,32.847069600000005]]},"id":"8944c0a26bbffff-17b77c34ffad73f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b1276b-17befb175ffffef4","8f44c0a26b13980-17bffa0bec8e8fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.6903051,32.847069600000005],[-83.69073300000001,32.8470747]]},"id":"8a44c0a26b17fff-17be7a91a3f684ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b118c2-17b778d223e7291b","8f44c0a26b13980-17bffa0bec8e8fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.69073300000001,32.8470747],[-83.691235,32.8470807]]},"id":"8a44c0a26b17fff-17bff96f02364703"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691467,32.847083500000004]},"id":"8f44c0a26b02453-17b778412697cac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b118c2-17b778d223e7291b","8f44c0a26b02453-17b778412697cac4"]},"geometry":{"type":"LineString","coordinates":[[-83.691235,32.8470807],[-83.691467,32.847083500000004]]},"id":"8944c0a26b3ffff-17b67889a1bd08b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b00206-17bef67d4bd0295a","8f44c0a26b02453-17b778412697cac4"]},"geometry":{"type":"LineString","coordinates":[[-83.691467,32.847083500000004],[-83.69219000000001,32.847092100000005]]},"id":"8a44c0a26b07fff-17b7f75f3f2fbe09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b00206-17bef67d4bd0295a","8f44c0a26b2ab33-17bff428f8645232"]},"geometry":{"type":"LineString","coordinates":[[-83.69219000000001,32.847092100000005],[-83.69314410000001,32.847103600000004]]},"id":"8944c0a26b3ffff-17be755310006df8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b2d619-17d6f28f1531a1c7","8f44c0a26b2ab33-17bff428f8645232"]},"geometry":{"type":"LineString","coordinates":[[-83.69314410000001,32.847103600000004],[-83.6937999,32.8471114]]},"id":"8a44c0a26b2ffff-17d6735c0caa3777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b2d619-17d6f28f1531a1c7","8f44c0a244dacb0-17d6f1cf182fed99"]},"geometry":{"type":"LineString","coordinates":[[-83.6937999,32.8471114],[-83.69410710000001,32.8471151]]},"id":"8844c0a26bfffff-17d7f22f1e4fc839"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a244dd7b6-17de7f7902bf994e","8f44c0a244dacb0-17d6f1cf182fed99"]},"geometry":{"type":"LineString","coordinates":[[-83.69410710000001,32.8471151],[-83.695064,32.8471265]]},"id":"8a44c0a244dffff-17def0a41d626d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a244dd733-17deff506ba5f414","8f44c0a244dd7b6-17de7f7902bf994e"]},"geometry":{"type":"LineString","coordinates":[[-83.695064,32.8471265],[-83.69512900000001,32.847127300000004]]},"id":"8b44c0a244ddfff-17de7f64b87db265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a244dd733-17deff506ba5f414","8f44c0a244c8c2b-17d77d29ce567ae4"]},"geometry":{"type":"LineString","coordinates":[[-83.69512900000001,32.847127300000004],[-83.69601,32.8471379]]},"id":"8944c0a244fffff-17d7ee3d1758eeef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a244c8c2b-17d77d29ce567ae4","8f44c0a244c896b-17d76c8569d8f06e"]},"geometry":{"type":"LineString","coordinates":[[-83.69601,32.8471379],[-83.696273,32.847141]]},"id":"8b44c0a244c8fff-17d66cd79c0a858a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2685e4d6-13ff80079adbceae","8f44c0a26bb3074-179fe0838099f59e"]},"geometry":{"type":"LineString","coordinates":[[-83.688084,32.847043],[-83.688235,32.845778],[-83.68828230000001,32.845336800000005]]},"id":"8744c0a26ffffff-1796d0445fbf2cde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2685e4d6-13ff80079adbceae","8f44c0a2685e4a1-13dfa004f668df98"]},"geometry":{"type":"LineString","coordinates":[[-83.68828230000001,32.845336800000005],[-83.6882865,32.8452858]]},"id":"8c44c0a2685e5ff-13df90064fc8f0ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2685e4a1-13dfa004f668df98","8f44c0a26850628-13d7c036a8794588"]},"geometry":{"type":"LineString","coordinates":[[-83.6882865,32.8452858],[-83.6882897,32.845163],[-83.68828330000001,32.8450403],[-83.6882673,32.8449182],[-83.6882418,32.8447973],[-83.688207,32.844678]]},"id":"8944c0a2687ffff-1396a011f8532dff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2680944e-17d7a0ec86c00213","8f44c0a26850628-13d7c036a8794588"]},"geometry":{"type":"LineString","coordinates":[[-83.688207,32.844678],[-83.68816500000001,32.844518],[-83.687916,32.843829]]},"id":"8844c0a269fffff-17dfd08df438349c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877211,32.8433227]},"id":"8f44c0a26808884-1796b16651ff67f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26808884-1796b16651ff67f7","8f44c0a2680944e-17d7a0ec86c00213"]},"geometry":{"type":"LineString","coordinates":[[-83.687916,32.843829],[-83.6877211,32.8433227]]},"id":"8a44c0a2680ffff-17b6f1297e50d669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26808884-1796b16651ff67f7","8f44c0a26801209-13f6a1d0aeee7a96"]},"geometry":{"type":"LineString","coordinates":[[-83.6877211,32.8433227],[-83.687551,32.842881000000006]]},"id":"8a44c0a2680ffff-17feb19b7ce60c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2630c882-17bfe1300b6dc6f6","8f44c0a2630bb59-13b6813fab3341fd"]},"geometry":{"type":"LineString","coordinates":[[-83.68778300000001,32.85528],[-83.687799,32.854771],[-83.687808,32.8542646]]},"id":"8a44c0a2630ffff-13feb136c0f158b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878123,32.854019900000004]},"id":"8f44c0a2632a731-17b6f12d58e52fa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2630c882-17bfe1300b6dc6f6","8f44c0a2632a731-17b6f12d58e52fa5"]},"geometry":{"type":"LineString","coordinates":[[-83.687808,32.8542646],[-83.6878123,32.854019900000004]]},"id":"8944c0a2633ffff-17fef12eba57fe5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68781960000001,32.853610100000004]},"id":"8f44c0a26305b65-17b6d128c1f45525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26305b65-17b6d128c1f45525","8f44c0a2632a731-17b6f12d58e52fa5"]},"geometry":{"type":"LineString","coordinates":[[-83.6878123,32.854019900000004],[-83.68781960000001,32.853610100000004]]},"id":"8a44c0a2632ffff-17b6e12b0e61f337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26305b65-17b6d128c1f45525","8f44c0a263203a0-17d7e1206e69e426"]},"geometry":{"type":"LineString","coordinates":[[-83.68781960000001,32.853610100000004],[-83.68783300000001,32.852851]]},"id":"8944c0a2633ffff-17b7a12499f712a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26a846a5-17d7a0feae4700f4","8f44c0a263203a0-17d7e1206e69e426"]},"geometry":{"type":"LineString","coordinates":[[-83.68783300000001,32.852851],[-83.687887,32.850409]]},"id":"8744c0a26ffffff-13dec10f81755297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26a846a5-17d7a0feae4700f4","8f44c0a26a84ca3-179ee0fd66fc549d"]},"geometry":{"type":"LineString","coordinates":[[-83.687887,32.850409],[-83.687889,32.850123]]},"id":"8b44c0a26a84fff-17fec0fe0307ee86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68861100000001,32.8568449]},"id":"8f44c0a2635e272-179e7f3a20db4c5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2635e272-179e7f3a20db4c5c","8f44c0a26373585-13d67f2da7b53438"]},"geometry":{"type":"LineString","coordinates":[[-83.688631,32.855303],[-83.688618,32.856679],[-83.68861100000001,32.8568449]]},"id":"8944c0a2637ffff-17b67f3266f2980d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68859540000001,32.8572135]},"id":"8f44c0a2635bd84-17fe7f43e6a70a56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2635e272-179e7f3a20db4c5c","8f44c0a2635bd84-17fe7f43e6a70a56"]},"geometry":{"type":"LineString","coordinates":[[-83.68861100000001,32.8568449],[-83.68859540000001,32.8572135]]},"id":"8a44c0a2635ffff-17ff7f3f0d65ece0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26362202-13defc170a5b2437","8f44c0a26373585-13d67f2da7b53438"]},"geometry":{"type":"LineString","coordinates":[[-83.688631,32.855303],[-83.689896,32.855313]]},"id":"8944c0a2637ffff-13d7fda25feda2bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69067000000001,32.855295000000005]},"id":"8f44c0a26361131-13bf7a3341bf7394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26361131-13bf7a3341bf7394","8f44c0a26362202-13defc170a5b2437"]},"geometry":{"type":"LineString","coordinates":[[-83.689896,32.855313],[-83.69067000000001,32.855295000000005]]},"id":"8a44c0a26367fff-13d77b252b5b836a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a26356615-13d7a143ff798e2b","8f44c0a2622ca84-179ec144accf022a"]},"geometry":{"type":"LineString","coordinates":[[-83.687775,32.856462],[-83.68777100000001,32.856026],[-83.68777610000001,32.855711400000004]]},"id":"8844c0a263fffff-17beb145c318ba73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a26356615-13d7a143ff798e2b","8f44c0a26356cd1-13bf9141ca16cb6b"]},"geometry":{"type":"LineString","coordinates":[[-83.68777610000001,32.855711400000004],[-83.6877796,32.8554905]]},"id":"8b44c0a26356fff-13fea142ebf34f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a2630bb59-13b6813fab3341fd","8f44c0a26356cd1-13bf9141ca16cb6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6877796,32.8554905],[-83.68778300000001,32.85528]]},"id":"8844c0a263fffff-13f7c140b2166fb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50560606-13bff35264266f6b","8f44c0b50561651-139fd256ce0ff8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7590234,32.8683695],[-83.759207,32.868538],[-83.759426,32.868754]]},"id":"8a44c0b50567fff-13b7d2d38c611806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9362a1b-1397ab1540aa3a3f","8f44c0ba9361ab1-139f492b220d0eb3"]},"geometry":{"type":"LineString","coordinates":[[-83.631326,32.828401],[-83.631884,32.828538],[-83.6321102,32.8285908]]},"id":"8a44c0ba9367fff-13d78a205914e9a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d916aa-13b7269ceca076b4","8f44c0ba9361ab1-139f492b220d0eb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6321102,32.8285908],[-83.632334,32.828637],[-83.63299400000001,32.828802],[-83.63315700000001,32.828853]]},"id":"8744c0ba9ffffff-13df67e2cb26284f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d916aa-13b7269ceca076b4","8f44c0a34d8e530-13f703c1a66394eb"]},"geometry":{"type":"LineString","coordinates":[[-83.63315700000001,32.828853],[-83.634327,32.829136000000005]]},"id":"8944c0a34dbffff-139f952f4a34a889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d8e530-13f703c1a66394eb","8f44c0a34d8c26e-13dfe1c44ac7799a"]},"geometry":{"type":"LineString","coordinates":[[-83.634327,32.829136000000005],[-83.635142,32.829331]]},"id":"8a44c0a34d8ffff-139ff2c2fdf28307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34dac166-17f70031213432ff","8f44c0a34d8c26e-13dfe1c44ac7799a"]},"geometry":{"type":"LineString","coordinates":[[-83.635142,32.829331],[-83.63578700000001,32.828120000000006]]},"id":"8944c0a34dbffff-13f770fab450bbe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9362a1b-1397ab1540aa3a3f","8f44c0ba9344789-13d7bc1cb9ea592a"]},"geometry":{"type":"LineString","coordinates":[[-83.631326,32.828401],[-83.63114,32.828634],[-83.6309045,32.8289083]]},"id":"8944c0ba937ffff-13b75b9798ec5114"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba930d466-17ff0fe5202153c1","8f44c0ba9370a96-17ff9d5525f0be1c"]},"geometry":{"type":"LineString","coordinates":[[-83.629355,32.82792],[-83.6304046,32.8281593]]},"id":"8844c0ba93fffff-17b7de9d23f163a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba93756d5-13bf9cb1507d3e84","8f44c0ba9370a96-17ff9d5525f0be1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6304046,32.8281593],[-83.6306667,32.828228100000004]]},"id":"8a44c0ba9377fff-13971d033e53bcb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9362a1b-1397ab1540aa3a3f","8f44c0ba93756d5-13bf9cb1507d3e84"]},"geometry":{"type":"LineString","coordinates":[[-83.6306667,32.828228100000004],[-83.631326,32.828401]]},"id":"8944c0ba937ffff-13f7abe35edc974e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b18203219-1796e19de71cabc1","8f44c0b1820084a-13f6f124ada8a794"]},"geometry":{"type":"LineString","coordinates":[[-83.674525,32.820203],[-83.67454400000001,32.819972],[-83.674566,32.819851],[-83.67462,32.819692],[-83.67470900000001,32.81953],[-83.67471900000001,32.8195173]]},"id":"8a44c0b18207fff-13b6e1760b894fff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1820084a-13f6f124ada8a794","8f44c0b182208f4-13ff9f922fbd7686"]},"geometry":{"type":"LineString","coordinates":[[-83.67471900000001,32.8195173],[-83.674806,32.819407000000005],[-83.67512500000001,32.819066],[-83.67523100000001,32.818917],[-83.67529400000001,32.818807],[-83.67532700000001,32.818707],[-83.675348,32.818615],[-83.675363,32.818508]]},"id":"8944c0b1823ffff-13bfb03824f917a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b18224c73-17dedf936d0b2cb8","8f44c0b182208f4-13ff9f922fbd7686"]},"geometry":{"type":"LineString","coordinates":[[-83.675363,32.818508],[-83.67536600000001,32.818393],[-83.675363,32.818122],[-83.67536100000001,32.818062000000005]]},"id":"8a44c0b18227fff-17f6bf916145b1fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b18224c73-17dedf936d0b2cb8","8f44c0b18303123-179fbfab2a43fd18"]},"geometry":{"type":"LineString","coordinates":[[-83.67536100000001,32.818062000000005],[-83.675323,32.8169211]]},"id":"8944c0b1833ffff-17f6df9f452f2da2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b18300cc1-13febfb02f16c3ee","8f44c0b18303123-179fbfab2a43fd18"]},"geometry":{"type":"LineString","coordinates":[[-83.675323,32.8169211],[-83.67531500000001,32.816477]]},"id":"8a44c0b18307fff-1796ffada855a416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b183044dc-13d6dfaee0819e05","8f44c0b18300cc1-13febfb02f16c3ee"]},"geometry":{"type":"LineString","coordinates":[[-83.67531500000001,32.816477],[-83.675317,32.816186]]},"id":"8a44c0b18307fff-139fbfaf871e9a1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1833576d-1396bfbba2b3a185","8f44c0b183044dc-13d6dfaee0819e05"]},"geometry":{"type":"LineString","coordinates":[[-83.675317,32.816186],[-83.67529660000001,32.8154947]]},"id":"8944c0b1833ffff-13fedfb546875080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1833576d-1396bfbba2b3a185","8f44c0b18a9bc12-17d7dfbb4e2fa90f"]},"geometry":{"type":"LineString","coordinates":[[-83.67529660000001,32.8154947],[-83.67529710000001,32.8149375],[-83.6752972,32.8147828]]},"id":"8744c0b18ffffff-13b7dfbb7db82700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18203219-1796e19de71cabc1","8f44c0b1827605b-17f7bda32f2dfd0e"]},"geometry":{"type":"LineString","coordinates":[[-83.674525,32.820203],[-83.674954,32.820224],[-83.67523,32.820262],[-83.67544600000001,32.820307],[-83.67577100000001,32.820394],[-83.67615500000001,32.820537]]},"id":"8844c0b183fffff-17de9f99c5a52247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18270a05-1797fc60e7c5090d","8f44c0b1827605b-17f7bda32f2dfd0e"]},"geometry":{"type":"LineString","coordinates":[[-83.67615500000001,32.820537],[-83.676563,32.820739],[-83.67667060000001,32.820799900000004]]},"id":"8a44c0b18277fff-17b6dd013939a2fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18270a05-1797fc60e7c5090d","8f44c0b182624d4-179ebb5d5d3fef30"]},"geometry":{"type":"LineString","coordinates":[[-83.67667060000001,32.820799900000004],[-83.67681900000001,32.820884],[-83.67708590000001,32.821037100000005]]},"id":"8a44c0b18277fff-17d7fbdf0602fd49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18263345-17bfd9873fb85e5a","8f44c0b182624d4-179ebb5d5d3fef30"]},"geometry":{"type":"LineString","coordinates":[[-83.67708590000001,32.821037100000005],[-83.677476,32.821261],[-83.6778381,32.821474900000005]]},"id":"8944c0b1827ffff-17b6da71d0ab702a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18263345-17bfd9873fb85e5a","8f44c0b1826e172-139ef8ef6ea6695f"]},"geometry":{"type":"LineString","coordinates":[[-83.6778381,32.821474900000005],[-83.67796700000001,32.821551],[-83.678081,32.821627]]},"id":"8944c0b1827ffff-17ded93aae1089a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1826e172-139ef8ef6ea6695f","8f44c0b19526b05-13f6f3dcae36f238"]},"geometry":{"type":"LineString","coordinates":[[-83.678081,32.821627],[-83.67947720000001,32.8224225],[-83.6796398,32.822515200000005],[-83.680159,32.822811]]},"id":"8744c0b19ffffff-13fef66600fa8567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68084640000001,32.82322]},"id":"8f44c0b19525214-13f6922f0768450b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19525214-13f6922f0768450b","8f44c0b19526b05-13f6f3dcae36f238"]},"geometry":{"type":"LineString","coordinates":[[-83.680159,32.822811],[-83.68075300000001,32.823161],[-83.68084640000001,32.82322]]},"id":"8a44c0b19527fff-13fff3055a1bfe01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b19525214-13f6922f0768450b","8f44c0b19cd2068-1797b14361ed4ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.68084640000001,32.82322],[-83.68122340000001,32.8234555]]},"id":"8844c0b19dfffff-17beb1b93ae47134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09470ce4-17f5f514f0eb37aa","8f44c0b09470d34-1795f5120754aa8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7451953,32.8338513],[-83.74520000000001,32.8337221]]},"id":"8c44c0b09470dff-17bdf5137d5b02d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362f4518-13b73675495b99ae","8f44c0a362f4ba4-13b7259fa4e77655"]},"geometry":{"type":"LineString","coordinates":[[-83.620455,32.852589],[-83.6201132,32.8525873]]},"id":"8b44c0a362f4fff-13b7a60a75c85fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a362f4518-13b73675495b99ae","8f44c0a362ab286-13b72807482005de"]},"geometry":{"type":"LineString","coordinates":[[-83.6201132,32.8525873],[-83.61947,32.852584]]},"id":"8844c0a363fffff-13b7373e46b43051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668904d-139f7efae21e6744","8f44c0a366f3988-1397fcf56b9107ba"]},"geometry":{"type":"LineString","coordinates":[[-83.61089700000001,32.852539],[-83.61006900000001,32.852550900000004]]},"id":"8944c0a366fffff-139fbdf82e86dcd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3668904d-139f7efae21e6744","8f44c0a32d24875-139f411f9c07c5f5"]},"geometry":{"type":"LineString","coordinates":[[-83.61006900000001,32.852550900000004],[-83.6091911,32.8525796]]},"id":"8a44c0a3668ffff-1397500d3d7394f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a367892e2-17ffbce89e90fa3e","8f44c0a366ad14a-17ff7cedfc398289"]},"geometry":{"type":"LineString","coordinates":[[-83.6109175,32.8496601],[-83.6109089,32.8510854]]},"id":"8944c0a3663ffff-17bf3ceb48939695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a366ad14a-17ff7cedfc398289","8f44c0a366f4420-13bfbcf06fbcb1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6109089,32.8510854],[-83.610905,32.851804]]},"id":"8844c0a367fffff-13dffcef37789ae0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0a366f3988-1397fcf56b9107ba","8f44c0a366f4420-13bfbcf06fbcb1d6"]},"geometry":{"type":"LineString","coordinates":[[-83.610905,32.851804],[-83.61089700000001,32.852539]]},"id":"8a44c0a366f7fff-139f3cf2ecb784b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6105792,32.8595893]},"id":"8f44c0a32c6a545-17bf7dbc05c6367b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32c6ab80-17bf7d1fe148ff7f","8f44c0a32c6a545-17bf7dbc05c6367b"]},"geometry":{"type":"LineString","coordinates":[[-83.61082900000001,32.859591],[-83.6105792,32.8595893]]},"id":"8b44c0a32c6afff-17bffd6df2855b9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6102889,32.8595874]},"id":"8f44c0a32c41810-17bf3e717c9dfdf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32c41810-17bf3e717c9dfdf7","8f44c0a32c6a545-17bf7dbc05c6367b"]},"geometry":{"type":"LineString","coordinates":[[-83.6105792,32.8595893],[-83.6102889,32.8595874]]},"id":"8944c0a32c7ffff-17bffe16b0d3e267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32c41cac-17bf7eee37aedbe6","8f44c0a32c41810-17bf3e717c9dfdf7"]},"geometry":{"type":"LineString","coordinates":[[-83.6102889,32.8595874],[-83.6100893,32.8595861]]},"id":"8b44c0a32c41fff-17bffeafd07939ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32c41cac-17bf7eee37aedbe6","8f44c0a32c406e2-17b7ffc74146cf11"]},"geometry":{"type":"LineString","coordinates":[[-83.6100893,32.8595861],[-83.60974200000001,32.859583900000004]]},"id":"8a44c0a32c47fff-17bfbf5ac2c47945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32c406e2-17b7ffc74146cf11","8f44c0a32c424db-17b7c134e06580de"]},"geometry":{"type":"LineString","coordinates":[[-83.60974200000001,32.859583900000004],[-83.6092618,32.8595807],[-83.60915700000001,32.85958]]},"id":"8944c0a32c7ffff-17b7c07e197ef135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32ce1711-17b7c552a7daa584","8f44c0a32c424db-17b7c134e06580de"]},"geometry":{"type":"LineString","coordinates":[[-83.60915700000001,32.85958],[-83.607471,32.859582]]},"id":"8844c0a32dfffff-17b76343c872e65e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328d0d36-17bf749d822d58ed","8f44c0a32124081-17ffb779c7aa3872"]},"geometry":{"type":"LineString","coordinates":[[-83.61431440000001,32.8605895],[-83.61378230000001,32.8603745],[-83.61355470000001,32.8603334],[-83.6131428,32.8603049]]},"id":"8844c0a329fffff-17b7b6051ebabf99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32124081-17ffb779c7aa3872","8f44c0a321207b6-17b7f80cb827c203"]},"geometry":{"type":"LineString","coordinates":[[-83.6131428,32.8603049],[-83.6131014,32.8609038],[-83.6129001,32.860902200000005],[-83.61290770000001,32.8607821]]},"id":"8a44c0a32127fff-17f7f7a91479222e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3285a1b0-13b7bc10d1c37a6c","8f44c0a3285ac25-13ffac0ecf60a98a"]},"geometry":{"type":"LineString","coordinates":[[-83.6178196,32.8611048],[-83.6178163,32.8612155]]},"id":"8b44c0a3285afff-13972c0fd49bff06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3285a1b0-13b7bc10d1c37a6c","8f44c0a32bb026e-13f7ec21eb4fca65"]},"geometry":{"type":"LineString","coordinates":[[-83.6178163,32.8612155],[-83.617789,32.862347]]},"id":"8744c0a32ffffff-13977c196fb7da7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32bb026e-13f7ec21eb4fca65","8f44c0a32b82992-17ffec32270ed1db"]},"geometry":{"type":"LineString","coordinates":[[-83.617789,32.862347],[-83.61776300000001,32.863155]]},"id":"8944c0a32bbffff-17f76c2a01d04465"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32b9c2ed-17ffac476ff147c7","8f44c0a32b82992-17ffec32270ed1db"]},"geometry":{"type":"LineString","coordinates":[[-83.61776300000001,32.863155],[-83.61772900000001,32.863988]]},"id":"8944c0a32bbffff-17f73c3cc8a3a854"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1488d58b-13f743bf85e82d63","8f44c0a148811ae-17d74503a4809853"]},"geometry":{"type":"LineString","coordinates":[[-83.60811600000001,32.880778],[-83.607877,32.880485],[-83.607704,32.880257],[-83.6075974,32.8801088]]},"id":"8944c0a148bffff-17b744645250ad98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a148811ae-17d74503a4809853","8f44c0a14881c10-179f6535e8fbfbf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6075974,32.8801088],[-83.607517,32.879997]]},"id":"8b44c0a14881fff-17b7551cca6b6135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32828cab-13b73c34742a9f15","8f44c0a3282d3b6-13f76aacc8644241"]},"geometry":{"type":"LineString","coordinates":[[-83.618386,32.858015],[-83.6177593,32.857910700000005]]},"id":"8a44c0a3282ffff-13d7fb70a56e519c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61684360000001,32.8577583]},"id":"8f44c0a328055ad-13d7fe70c49a1d52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32828cab-13b73c34742a9f15","8f44c0a328055ad-13d7fe70c49a1d52"]},"geometry":{"type":"LineString","coordinates":[[-83.6177593,32.857910700000005],[-83.61684360000001,32.8577583]]},"id":"8944c0a3283ffff-13f7bd529086f735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6167382,32.8577408]},"id":"8f44c0a328042db-13bf2eb2a1fa1a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a328055ad-13d7fe70c49a1d52","8f44c0a328042db-13bf2eb2a1fa1a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.61684360000001,32.8577583],[-83.6167382,32.8577408]]},"id":"8a44c0a32807fff-13bfae91b039e13b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32800d2e-13b7ef381033f098","8f44c0a328042db-13bf2eb2a1fa1a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6167382,32.8577408],[-83.6165247,32.857705200000005]]},"id":"8b44c0a32800fff-13bfeef56bd2be86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32800d2e-13b7ef381033f098","8f44c0a32806008-17ffeff22874ecd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6165247,32.857705200000005],[-83.61636100000001,32.857678],[-83.61629,32.857652],[-83.61622700000001,32.857622]]},"id":"8a44c0a32807fff-139fbf96e6b0cf29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32872182-13d77bc2d013ded7","8f44c0a32854c61-179fabf101834bca"]},"geometry":{"type":"LineString","coordinates":[[-83.61794110000001,32.8591879],[-83.617917,32.859280000000005],[-83.617901,32.859371],[-83.6178883,32.8594342],[-83.6178672,32.859537]]},"id":"8944c0a3287ffff-17bf7bdae68d4a48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a32854c61-179fabf101834bca","8f44c0a32854113-17d77bf10ff9f08c"]},"geometry":{"type":"LineString","coordinates":[[-83.6178672,32.859537],[-83.6178672,32.8596039]]},"id":"8b44c0a32854fff-17bfbbf10846d872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64061500000001,32.844258]},"id":"8f44c0a3476c609-17dff467a59e6d74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3476c021-17dff427e6d81cbd","8f44c0a3476c609-17dff467a59e6d74"]},"geometry":{"type":"LineString","coordinates":[[-83.64061500000001,32.844258],[-83.64071700000001,32.844079]]},"id":"8b44c0a3476cfff-1797f447c4656e57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3476c021-17dff427e6d81cbd","8f44c0a34392168-17def3accff92a44"]},"geometry":{"type":"LineString","coordinates":[[-83.64071700000001,32.844079],[-83.64091400000001,32.843646]]},"id":"8844c0a343fffff-17d6f3ea56e1d0df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a343944b5-17fff31588f215f1","8f44c0a34392168-17def3accff92a44"]},"geometry":{"type":"LineString","coordinates":[[-83.64091400000001,32.843646],[-83.64115600000001,32.8431]]},"id":"8a44c0a34397fff-17b6f361296986e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6414462,32.842482600000004]},"id":"8f44c0a343b2d13-13f7f260280f131f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a343944b5-17fff31588f215f1","8f44c0a343b2d13-13f7f260280f131f"]},"geometry":{"type":"LineString","coordinates":[[-83.64115600000001,32.8431],[-83.6414462,32.842482600000004]]},"id":"8944c0a343bffff-13bef2bad50d6bf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6416549,32.842038800000005]},"id":"8f44c0a340e96dc-13f6f1ddb701bbb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a343b2d13-13f7f260280f131f","8f44c0a340e96dc-13f6f1ddb701bbb2"]},"geometry":{"type":"LineString","coordinates":[[-83.6414462,32.842482600000004],[-83.6416549,32.842038800000005]]},"id":"8844c0a341fffff-13fef21efc787ead"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340e9013-13dff1a06350ff01","8f44c0a340e96dc-13f6f1ddb701bbb2"]},"geometry":{"type":"LineString","coordinates":[[-83.6416549,32.842038800000005],[-83.64175300000001,32.84183]]},"id":"8a44c0a340effff-13b7f1bf09c1adc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a347488a3-13fef6256a69ab43","8f44c0a3476bd13-13fef50a275fadfb"]},"geometry":{"type":"LineString","coordinates":[[-83.6399018,32.8453601],[-83.640355,32.844747000000005]]},"id":"8944c0a3477ffff-13bef597c9a21c0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3476bd13-13fef50a275fadfb","8f44c0a3476c609-17dff467a59e6d74"]},"geometry":{"type":"LineString","coordinates":[[-83.640355,32.844747000000005],[-83.640521,32.844454],[-83.64061500000001,32.844258]]},"id":"8a44c0a3476ffff-17f7f4b66991fa63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340d8252-13bef7279f58f289","8f44c0a347710d0-17fef865f49f0ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.6389793,32.843715200000005],[-83.6394887,32.84256]]},"id":"8844c0a347fffff-1797f7c6cf854665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a340d8252-13bef7279f58f289","8f44c0a340c01b2-13b7f5d22f34dcce"]},"geometry":{"type":"LineString","coordinates":[[-83.6394887,32.84256],[-83.64003500000001,32.841321]]},"id":"8944c0a340fffff-13b6f67cd6b1e8e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34763754-17b6f6657dbb2170","8f44c0a347710d0-17fef865f49f0ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.6389793,32.843715200000005],[-83.6397993,32.8439873]]},"id":"8944c0a3477ffff-17dff765b240dda9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34763754-17b6f6657dbb2170","8f44c0a3476c609-17dff467a59e6d74"]},"geometry":{"type":"LineString","coordinates":[[-83.6397993,32.8439873],[-83.64061500000001,32.844258]]},"id":"8944c0a3477ffff-17fef566851446d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34296046-17d7f5958f9e264e","8f44c0a3475ab88-13d6fa4b3ab7f06d"]},"geometry":{"type":"LineString","coordinates":[[-83.63820290000001,32.845476000000005],[-83.639397,32.845913],[-83.63961400000001,32.846002],[-83.639916,32.846156],[-83.64013200000001,32.846294]]},"id":"8844c0a347fffff-13b6f7e63cc34749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34296046-17d7f5958f9e264e","8f44c0a3429569a-17b6f41e84df3dbc"]},"geometry":{"type":"LineString","coordinates":[[-83.64013200000001,32.846294],[-83.640732,32.846654]]},"id":"8a44c0a34297fff-17b6f4da0671f493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3429569a-17b6f41e84df3dbc","8f44c0a34283182-17b6f20b46c55ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.640732,32.846654],[-83.641243,32.846938],[-83.641406,32.847012],[-83.641582,32.847082]]},"id":"8944c0a342bffff-17b7f3185b843aef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3475c511-13def9a4b19876f2","8f44c0a3475ab88-13d6fa4b3ab7f06d"]},"geometry":{"type":"LineString","coordinates":[[-83.63820290000001,32.845476000000005],[-83.63846930000001,32.8448719]]},"id":"8a44c0a3475ffff-139ff9f7fb7f7633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3475c511-13def9a4b19876f2","8f44c0a347710d0-17fef865f49f0ab2"]},"geometry":{"type":"LineString","coordinates":[[-83.63846930000001,32.8448719],[-83.6389793,32.843715200000005]]},"id":"8944c0a3477ffff-17f7f90554d02ee3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a342e6042-17deea77ed674d83","8f44c0a34250145-13b6e64b257c8936"]},"geometry":{"type":"LineString","coordinates":[[-83.64468500000001,32.847738],[-83.645695,32.847959],[-83.646395,32.848112]]},"id":"8844c0a343fffff-13d7e8618bdd4655"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34250145-13b6e64b257c8936","8f44c0a34242c4a-1397e4856ef67289"]},"geometry":{"type":"LineString","coordinates":[[-83.646395,32.848112],[-83.646699,32.848186000000005],[-83.64676700000001,32.848202],[-83.646996,32.848241],[-83.647121,32.848262000000005]]},"id":"8944c0a3427ffff-13fef5691d2f333b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a342428e9-139ee4252113ac46","8f44c0a34242c4a-1397e4856ef67289"]},"geometry":{"type":"LineString","coordinates":[[-83.647121,32.848262000000005],[-83.64727500000001,32.848276000000006]]},"id":"8b44c0a34242fff-139ee4554394c0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a34241d36-13bfe29980d4cf37","8f44c0a342428e9-139ee4252113ac46"]},"geometry":{"type":"LineString","coordinates":[[-83.64727500000001,32.848276000000006],[-83.647908,32.848326]]},"id":"8a44c0a34247fff-13bee35f58046297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3436a4d5-13d7dfb08acb701d","8f44c0a34264150-1796e11929dc1f19"]},"geometry":{"type":"LineString","coordinates":[[-83.6491,32.845478],[-83.64852300000001,32.846823]]},"id":"8944c0a3437ffff-13fef064d666b02a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34264150-1796e11929dc1f19","8f44c0a34263084-17bee1f70259c022"]},"geometry":{"type":"LineString","coordinates":[[-83.64852300000001,32.846823],[-83.648497,32.846907],[-83.648168,32.847706]]},"id":"8a44c0a34267fff-17b7f185f0515e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34241d36-13bfe29980d4cf37","8f44c0a34263084-17bee1f70259c022"]},"geometry":{"type":"LineString","coordinates":[[-83.648168,32.847706],[-83.647908,32.848326]]},"id":"8944c0a3427ffff-13fee24847935bea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3422e609-13dee7420ba248e8","8f44c0a3420e0f3-17fee8e245ed99c7"]},"geometry":{"type":"LineString","coordinates":[[-83.645334,32.846762000000005],[-83.64549500000001,32.846573],[-83.64575,32.846245],[-83.646,32.845914]]},"id":"8944c0a3423ffff-17f7e80f3200f01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64664,32.845016]},"id":"8f44c0a34352d09-13b7e5b20deab23f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3422e609-13dee7420ba248e8","8f44c0a34352d09-13b7e5b20deab23f"]},"geometry":{"type":"LineString","coordinates":[[-83.646,32.845914],[-83.64655,32.845163],[-83.64664,32.845016]]},"id":"8844c0a343fffff-13d7e676ebc44212"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34356c4d-13dee550807b6bbe","8f44c0a34352d09-13b7e5b20deab23f"]},"geometry":{"type":"LineString","coordinates":[[-83.64664,32.845016],[-83.64679600000001,32.844686]]},"id":"8a44c0a34357fff-13bfe5814aa4d755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35da66b5-17fed8880219051d","8f44c0a35cb2770-1797ddceaa5382b1"]},"geometry":{"type":"LineString","coordinates":[[-83.652032,32.84331],[-83.650693,32.845314],[-83.65030300000001,32.845903],[-83.650006,32.846368000000005],[-83.649871,32.84662]]},"id":"8844c0a35dfffff-1397fb34b669bc15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35c90d1b-17ffde7d0c80be37","8f44c0a35cb2770-1797ddceaa5382b1"]},"geometry":{"type":"LineString","coordinates":[[-83.649871,32.84662],[-83.649592,32.847202]]},"id":"8944c0a35cbffff-17d7fe25dfb7f70d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c82c8e-17befc98eecee736","8f44c0a35c90d1b-17ffde7d0c80be37"]},"geometry":{"type":"LineString","coordinates":[[-83.649592,32.847202],[-83.6503666,32.8474862]]},"id":"8944c0a35cbffff-17d6dd8af22473f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c82c8e-17befc98eecee736","8f44c0a35cf09a4-13b6f6392089440d"]},"geometry":{"type":"LineString","coordinates":[[-83.6503666,32.8474862],[-83.65297740000001,32.848487]]},"id":"8844c0a35dfffff-13f7f96904317c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf5414-13dff5bd28eacd68","8f44c0a35cf09a4-13b6f6392089440d"]},"geometry":{"type":"LineString","coordinates":[[-83.65297740000001,32.848487],[-83.6531758,32.848563]]},"id":"8a44c0a35cf7fff-13bef5fb211c2e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf5005-13f7f5340ee42816","8f44c0a35cf5b5a-13f6d4a5f4ce45e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6533952,32.848591400000004],[-83.65362250000001,32.8486153]]},"id":"8b44c0a35cf5fff-13fff4ecf7838237"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35cf5b5a-13f6d4a5f4ce45e2","8f44c0a35c50486-13bef09a0cfeacb9"]},"geometry":{"type":"LineString","coordinates":[[-83.65362250000001,32.8486153],[-83.6541079,32.848659000000005],[-83.6541907,32.8486688],[-83.65424990000001,32.8486767],[-83.65432320000001,32.848690500000004],[-83.65528,32.848919]]},"id":"8844c0a35dfffff-13bef29d1fd02e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c286b4-17ffd0194281467b","8f44c0a35c25816-13ffefc41723673c"]},"geometry":{"type":"LineString","coordinates":[[-83.6556223,32.8455354],[-83.65554270000001,32.8456667],[-83.655527,32.845824],[-83.65548600000001,32.846998]]},"id":"8944c0a35c3ffff-17bed005a8eee184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35c286b4-17ffd0194281467b","8f44c0a35c50486-13bef09a0cfeacb9"]},"geometry":{"type":"LineString","coordinates":[[-83.65548600000001,32.846998],[-83.655473,32.847358],[-83.655438,32.847845],[-83.65528,32.848919]]},"id":"8844c0a35dfffff-13d7f04b6dfe9136"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350b3d83-17b7d2f8e6875123","8f44c0a350b6321-1797d2e94d4571f6"]},"geometry":{"type":"LineString","coordinates":[[-83.654334,32.853766],[-83.654323,32.853897],[-83.65430900000001,32.854252]]},"id":"8a44c0a350b7fff-179fd2f268d699ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a350b3d83-17b7d2f8e6875123","8f44c0a35091140-13bed30ce07db25f"]},"geometry":{"type":"LineString","coordinates":[[-83.65430900000001,32.854252],[-83.65430500000001,32.854384],[-83.65427700000001,32.855294]]},"id":"8944c0a350bffff-13fff302e949eee2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3573588e-17ffd320e04acb4e","8f44c0a35091140-13bed30ce07db25f"]},"geometry":{"type":"LineString","coordinates":[[-83.65427700000001,32.855294],[-83.654234,32.856631],[-83.654245,32.856824]]},"id":"8744c0a35ffffff-179ef31b9d83656b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549b849-1397f90bb91e0f28","8f44c0a3549b780-13ffe9d4c98cca91"]},"geometry":{"type":"LineString","coordinates":[[-83.644946,32.855781],[-83.645128,32.855687],[-83.6452677,32.8556317]]},"id":"8b44c0a3549bfff-13bee971571c212a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549b849-1397f90bb91e0f28","8f44c0a3549988a-13bef832c8ddbccd"]},"geometry":{"type":"LineString","coordinates":[[-83.6452677,32.8556317],[-83.6456148,32.8554921]]},"id":"8a44c0a3549ffff-13f6f89f42c395e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549988a-13bef832c8ddbccd","8f44c0a3541a56c-1396e25a68a2d17f"]},"geometry":{"type":"LineString","coordinates":[[-83.6456148,32.8554921],[-83.64736400000001,32.854816],[-83.648009,32.854587]]},"id":"8844c0a355fffff-139fe54811cf4cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3541a56c-1396e25a68a2d17f","8f44c0a3541a8f0-13f6e1f4812ed589"]},"geometry":{"type":"LineString","coordinates":[[-83.648009,32.854587],[-83.648172,32.854528]]},"id":"8b44c0a3541afff-13f6f22774ae5852"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3541dd09-17b7ffebeaa5ea98","8f44c0a3541a8f0-13f6e1f4812ed589"]},"geometry":{"type":"LineString","coordinates":[[-83.648172,32.854528],[-83.649005,32.854227]]},"id":"8a44c0a3541ffff-1397f0f03c5f08b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3541dd09-17b7ffebeaa5ea98","8f44c0a3542a741-17d7dd3761c96df8"]},"geometry":{"type":"LineString","coordinates":[[-83.649005,32.854227],[-83.64971600000001,32.854004],[-83.650113,32.8539]]},"id":"8944c0a3543ffff-17bffe92b5fb5267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3542a741-17d7dd3761c96df8","8f44c0a3555a828-17fef99f612c5280"]},"geometry":{"type":"LineString","coordinates":[[-83.650113,32.8539],[-83.650391,32.853848],[-83.65078600000001,32.853792],[-83.65119800000001,32.853757],[-83.651403,32.853751],[-83.65158500000001,32.853751]]},"id":"8844c0a355fffff-179fdb6cfd401d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3555a828-17fef99f612c5280","8f44c0a350b6321-1797d2e94d4571f6"]},"geometry":{"type":"LineString","coordinates":[[-83.65158500000001,32.853751],[-83.65209700000001,32.853744],[-83.65313,32.853749],[-83.654334,32.853766]]},"id":"8744c0a35ffffff-17fef6445fbc77d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35491335-13fee9824846981a","8f44c0a354b1764-17bfe80825da0b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.645683,32.853631],[-83.64507800000001,32.854574]]},"id":"8944c0a354bffff-17d6f8c534338991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3549e88b-13b6f9ec06218fda","8f44c0a35491335-13fee9824846981a"]},"geometry":{"type":"LineString","coordinates":[[-83.64507800000001,32.854574],[-83.64490880000001,32.8548417]]},"id":"8944c0a354bffff-13d6f9b72e86e89b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64474290000001,32.8551043]},"id":"8f44c0a3549e61b-13defa53bff446b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3549e88b-13b6f9ec06218fda","8f44c0a3549e61b-13defa53bff446b7"]},"geometry":{"type":"LineString","coordinates":[[-83.64490880000001,32.8548417],[-83.64474290000001,32.8551043]]},"id":"8b44c0a3549efff-13f6ea1fd08a90ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a3549a511-13beeaccee8c8fc4","8f44c0a3549e61b-13defa53bff446b7"]},"geometry":{"type":"LineString","coordinates":[[-83.64474290000001,32.8551043],[-83.64471400000001,32.85515],[-83.644619,32.855238],[-83.64454900000001,32.855291]]},"id":"8944c0a354bffff-1396fa8c697193b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3549b780-13ffe9d4c98cca91","8f44c0a30b35b41-17dee91c656914b0"]},"geometry":{"type":"LineString","coordinates":[[-83.644946,32.855781],[-83.645241,32.856135]]},"id":"8944c0a30b3ffff-13dfe978973de988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b266d9-179ff8e683f15c10","8f44c0a30b35b41-17dee91c656914b0"]},"geometry":{"type":"LineString","coordinates":[[-83.645241,32.856135],[-83.64532720000001,32.856242300000005]]},"id":"8a44c0a30b27fff-17fff90176769b72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645565,32.856538]},"id":"8f44c0a30b22a59-17dee851ecdb853d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b266d9-179ff8e683f15c10","8f44c0a30b22a59-17dee851ecdb853d"]},"geometry":{"type":"LineString","coordinates":[[-83.64532720000001,32.856242300000005],[-83.645565,32.856538]]},"id":"8b44c0a30b22fff-17ffe89c34bd2d96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6460443,32.857126300000004]},"id":"8f44c0a30b2e019-17b7f72650a1bda3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b2e019-17b7f72650a1bda3","8f44c0a30b22a59-17dee851ecdb853d"]},"geometry":{"type":"LineString","coordinates":[[-83.645565,32.856538],[-83.6460443,32.857126300000004]]},"id":"8944c0a30b3ffff-1796e7bc228c8d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64613200000001,32.857234000000005]},"id":"8f44c0a30b2e235-17ffe6ef8919fc71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b2e019-17b7f72650a1bda3","8f44c0a30b2e235-17ffe6ef8919fc71"]},"geometry":{"type":"LineString","coordinates":[[-83.6460443,32.857126300000004],[-83.64613200000001,32.857234000000005]]},"id":"8b44c0a30b2efff-17dfe70aff1f546e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b2854a-17f6f68d6144efff","8f44c0a30b2e235-17ffe6ef8919fc71"]},"geometry":{"type":"LineString","coordinates":[[-83.64613200000001,32.857234000000005],[-83.64628900000001,32.8574219]]},"id":"8a44c0a30b2ffff-17b6e6be724e01ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3501484d-17ffcb2ca70fec7b","8f44c0a350b6321-1797d2e94d4571f6"]},"geometry":{"type":"LineString","coordinates":[[-83.654334,32.853766],[-83.65583500000001,32.853746],[-83.65607680000001,32.8537443],[-83.657503,32.853734]]},"id":"8844c0a351fffff-17fecf0af8b70a1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3501484d-17ffcb2ca70fec7b","8f44c0a3515268c-1797e5410b4fcba3"]},"geometry":{"type":"LineString","coordinates":[[-83.657503,32.853734],[-83.658153,32.853726],[-83.65992800000001,32.853769]]},"id":"8944c0a3503ffff-17f7c836c4d23f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3515268c-1797e5410b4fcba3","8f44c0a35153d5e-1797c4132e97af04"]},"geometry":{"type":"LineString","coordinates":[[-83.65992800000001,32.853769],[-83.66041100000001,32.853772]]},"id":"8a44c0a35157fff-1796d4aa154a0cf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35151ba2-179ec27a6d451a95","8f44c0a35153d5e-1797c4132e97af04"]},"geometry":{"type":"LineString","coordinates":[[-83.66041100000001,32.853772],[-83.66106500000001,32.853776]]},"id":"8a44c0a35157fff-179ec346cdb20f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35151ba2-179ec27a6d451a95","8f44c0a351420ec-179ec19fa475b873"]},"geometry":{"type":"LineString","coordinates":[[-83.66106500000001,32.853776],[-83.661415,32.853774]]},"id":"8944c0a3517ffff-179fe20d0021473d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3514196e-179fff2228792db6","8f44c0a351420ec-179ec19fa475b873"]},"geometry":{"type":"LineString","coordinates":[[-83.661415,32.853774],[-83.662435,32.853782]]},"id":"8a44c0a35147fff-179fc060e9967470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35811684-13bebf182e3f30c0","8f44c0a35814222-17debf0c4db453dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66247,32.847153],[-83.662451,32.847614],[-83.662451,32.847917]]},"id":"8a44c0a35817fff-17dfff149c7cd29a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35811684-13bebf182e3f30c0","8f44c0a3581a2ca-1396ff178809bda4"]},"geometry":{"type":"LineString","coordinates":[[-83.662451,32.847917],[-83.662452,32.848878]]},"id":"8944c0a3583ffff-13feff17dad971b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3581a2ca-1396ff178809bda4","8f44c0a358f4ac1-13d7ff204461318e"]},"geometry":{"type":"LineString","coordinates":[[-83.662452,32.848878],[-83.66243800000001,32.849154]]},"id":"8844c0a359fffff-13ffbf1be0e17d59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a358f1753-17b7bf237a5cb24d","8f44c0a358f4ac1-13d7ff204461318e"]},"geometry":{"type":"LineString","coordinates":[[-83.66243800000001,32.849154],[-83.6624329,32.8499569]]},"id":"8a44c0a358f7fff-17bebf21ebf5830e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a358c2acb-17dfff25ed779808","8f44c0a358f1753-17b7bf237a5cb24d"]},"geometry":{"type":"LineString","coordinates":[[-83.6624329,32.8499569],[-83.662429,32.850806]]},"id":"8944c0a358fffff-17d6ff24b8fb79f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a358c2acb-17dfff25ed779808","8f44c0a358dd0a2-13dfff29a067d1a8"]},"geometry":{"type":"LineString","coordinates":[[-83.662429,32.850806],[-83.662423,32.851446]]},"id":"8944c0a358fffff-1397ff27cf62d607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624323,32.853112]},"id":"8f44c0a35163088-17ffbf23def6a966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a358dd0a2-13dfff29a067d1a8","8f44c0a35163088-17ffbf23def6a966"]},"geometry":{"type":"LineString","coordinates":[[-83.662423,32.851446],[-83.66243300000001,32.851875],[-83.6624323,32.853112]]},"id":"8744c0a35ffffff-13f6ff2459bd2d17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3514196e-179fff2228792db6","8f44c0a35163088-17ffbf23def6a966"]},"geometry":{"type":"LineString","coordinates":[[-83.6624323,32.853112],[-83.662435,32.853782]]},"id":"8944c0a3517ffff-17beff2303c67ddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a236f0301-139e826b77c207c0","8f44c0a23683051-139ea79120b82716"]},"geometry":{"type":"LineString","coordinates":[[-83.68519500000001,32.894353],[-83.6866566,32.894883],[-83.68730330000001,32.8951688]]},"id":"8844c0a237fffff-139ff4fa70404c4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a236e356d-179e7ff40a2805bd","8f44c0a236f0301-139e826b77c207c0"]},"geometry":{"type":"LineString","coordinates":[[-83.68730330000001,32.8951688],[-83.6880089,32.8954603],[-83.6883136,32.8955842]]},"id":"8944c0a236fffff-179eb12fe14ed79f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a236e356d-179e7ff40a2805bd","8f44c0a236ed50b-17f77d36ab86fbce"]},"geometry":{"type":"LineString","coordinates":[[-83.6883136,32.8955842],[-83.68850400000001,32.895676],[-83.6894358,32.896114100000005]]},"id":"8944c0a236fffff-17d67e95939762ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a236ed50b-17f77d36ab86fbce","8f44c0a2365ab68-17d67b40b86655c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6894358,32.896114100000005],[-83.69023890000001,32.8964962]]},"id":"8844c0a237fffff-17defc3bb13af010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599cba9-17defc202a5823c5","8f44c0a05991352-17f7fd240e104bd3"]},"geometry":{"type":"LineString","coordinates":[[-83.6898814,32.8989576],[-83.6894656,32.898793500000004]]},"id":"8a44c0a0599ffff-17b77ca21fea0307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05993948-179f7e2861404455","8f44c0a05991352-17f7fd240e104bd3"]},"geometry":{"type":"LineString","coordinates":[[-83.6894656,32.898793500000004],[-83.68904900000001,32.898629]]},"id":"8944c0a059bffff-17befda63ec742ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05993948-179f7e2861404455","8f44c0a059b0771-13b6fca03d5ed63f"]},"geometry":{"type":"LineString","coordinates":[[-83.68904900000001,32.898629],[-83.6896765,32.897463900000005]]},"id":"8944c0a059bffff-139f7d6440143a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a059b4335-139ffbfed2cfb6b7","8f44c0a059b0771-13b6fca03d5ed63f"]},"geometry":{"type":"LineString","coordinates":[[-83.6896765,32.897463900000005],[-83.68993470000001,32.8969949]]},"id":"8a44c0a059b7fff-13b67c4f8c65ffd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d6d60a-17d77f23c23f3889","8f44c0a05d6d709-17beff0ccb3a1e45"]},"geometry":{"type":"LineString","coordinates":[[-83.6886468,32.8993558],[-83.688677,32.899307],[-83.6886836,32.8992943]]},"id":"8c44c0a05d6d7ff-17be7f18020fa8d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d6d709-17beff0ccb3a1e45","8f44c0a05993948-179f7e2861404455"]},"geometry":{"type":"LineString","coordinates":[[-83.6886836,32.8992943],[-83.688918,32.898846],[-83.68904900000001,32.898629]]},"id":"8844c0a059fffff-17df7e9d60b855e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059804c9-13d6fb8ae324afba","8f44c0a05981a0d-17fe79b42a589150"]},"geometry":{"type":"LineString","coordinates":[[-83.6908734,32.898803300000004],[-83.69012020000001,32.8985101]]},"id":"8a44c0a05987fff-179e7a9f899696e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059804c9-13d6fb8ae324afba","8f44c0a05983d95-17b6fbbf26bb9507"]},"geometry":{"type":"LineString","coordinates":[[-83.69012020000001,32.8985101],[-83.6900366,32.8986668]]},"id":"8a44c0a05987fff-13f7fba502339ac3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05983d95-17b6fbbf26bb9507","8f44c0a05983581-17967bf21e9bdeba"]},"geometry":{"type":"LineString","coordinates":[[-83.6900366,32.8986668],[-83.6899551,32.8988194]]},"id":"8a44c0a05987fff-17d67bd8ae8f939f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599cba9-17defc202a5823c5","8f44c0a05983581-17967bf21e9bdeba"]},"geometry":{"type":"LineString","coordinates":[[-83.6899551,32.8988194],[-83.6898814,32.8989576]]},"id":"8944c0a059bffff-17bf7c092a75651c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba925d575-13f70f0c4b777bb1","8f44c0ba9253b62-13bf710723af77ea"]},"geometry":{"type":"LineString","coordinates":[[-83.62889100000001,32.832551],[-83.629564,32.832962],[-83.62970200000001,32.833056]]},"id":"8944c0ba927ffff-13d7700882ac2903"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba925d575-13f70f0c4b777bb1","8f44c0ba924bd24-179fed1cd64a9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.62970200000001,32.833056],[-83.6304947,32.833524600000004]]},"id":"8944c0ba927ffff-17977e1498b82443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34514428-17bf0b56e38d3afb","8f44c0ba924bd24-179fed1cd64a9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.6304947,32.833524600000004],[-83.63122100000001,32.833968]]},"id":"8844c0a345fffff-17b77c39d997600d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a033898-13dee6c96c549bc4","8f44c0b1a036b44-13bee6c78dcbcf86"]},"geometry":{"type":"LineString","coordinates":[[-83.64619300000001,32.816429],[-83.646196,32.815764]]},"id":"8a44c0b1a037fff-139ef6c87427cc69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a036b44-13bee6c78dcbcf86","8f44c0b1a1a9873-13f6e6c6435abe7b"]},"geometry":{"type":"LineString","coordinates":[[-83.646196,32.815764],[-83.646198,32.815232]]},"id":"8844c0b1a1fffff-1396e6c6ecf550fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a1ad9b0-17b7e6bd8f082c3b","8f44c0b1a1a9873-13f6e6c6435abe7b"]},"geometry":{"type":"LineString","coordinates":[[-83.646198,32.815232],[-83.646212,32.814703]]},"id":"8a44c0b1a1affff-17def6c1ef3b55aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a18b41c-13dfea8a0a276533","8f44c0b1a19b059-13bfed2a869497e2"]},"geometry":{"type":"LineString","coordinates":[[-83.64358,32.816377],[-83.643641,32.816391],[-83.64465600000001,32.816409]]},"id":"8844c0b1a1fffff-13dffbdab8f3e762"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a18b54a-13dfea5766a835e0","8f44c0b1a18b41c-13dfea8a0a276533"]},"geometry":{"type":"LineString","coordinates":[[-83.64465600000001,32.816409],[-83.644737,32.816409]]},"id":"8c44c0b1a18b5ff-13dfea70b98ef5a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a033898-13dee6c96c549bc4","8f44c0b1a18b54a-13dfea5766a835e0"]},"geometry":{"type":"LineString","coordinates":[[-83.644737,32.816409],[-83.64619300000001,32.816429]]},"id":"8844c0b1a1fffff-13d7e8906f6d320c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a033898-13dee6c96c549bc4","8f44c0b1a1520a9-13ffe1606d43ecac"]},"geometry":{"type":"LineString","coordinates":[[-83.64619300000001,32.816429],[-83.646253,32.8164297],[-83.648409,32.816456]]},"id":"8944c0b1a03ffff-13f6f414ed5c22dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a1520a9-13ffe1606d43ecac","8f44c0b1a152b4a-13ffe0a94992140e"]},"geometry":{"type":"LineString","coordinates":[[-83.648409,32.816456],[-83.648702,32.816457]]},"id":"8b44c0b1a152fff-13fff104d6aac89d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a151928-13ffdee24a339e44","8f44c0b1a152b4a-13ffe0a94992140e"]},"geometry":{"type":"LineString","coordinates":[[-83.648702,32.816457],[-83.64943000000001,32.81646]]},"id":"8a44c0b1a157fff-13fedfc5ceb921c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a151928-13ffdee24a339e44","8f44c0b1a145223-13fedb7f66409d79"]},"geometry":{"type":"LineString","coordinates":[[-83.64943000000001,32.81646],[-83.650817,32.81648]]},"id":"8944c0b1a17ffff-13f7dd30db92203d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1aa364b4-13b6d18d26423374","8f44c0b1ab8dc1c-139fd24f8b7bf76f"]},"geometry":{"type":"LineString","coordinates":[[-83.65458000000001,32.816536],[-83.654891,32.816544]]},"id":"8b44c0b1ab8dfff-13b7d1ee5f3e8710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628742,32.8141193]},"id":"8f44c0b1845eb6e-17bebe0fadca7dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1845eb6e-17bebe0fadca7dd3","8f44c0b18458ce3-17d6fe14c9b9b99e"]},"geometry":{"type":"LineString","coordinates":[[-83.66286600000001,32.8143407],[-83.66287100000001,32.8142139],[-83.6628742,32.8141193]]},"id":"8a44c0b1845ffff-17fffe121ef93965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628804,32.813934100000004]},"id":"8f44c0b1845c515-17d6fe0bc3428a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1845eb6e-17bebe0fadca7dd3","8f44c0b1845c515-17d6fe0bc3428a58"]},"geometry":{"type":"LineString","coordinates":[[-83.6628742,32.8141193],[-83.6628804,32.813934100000004]]},"id":"8b44c0b1845cfff-17febe0db4bc8811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66288420000001,32.8136938]},"id":"8f44c0b18451a33-17bebe096b658e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18451a33-17bebe096b658e99","8f44c0b1845c515-17d6fe0bc3428a58"]},"geometry":{"type":"LineString","coordinates":[[-83.6628804,32.813934100000004],[-83.662884,32.813826],[-83.66288420000001,32.8136938]]},"id":"8944c0b1847ffff-17fffe0a0b874c46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18455071-13bfbe09030f443e","8f44c0b18451a33-17bebe096b658e99"]},"geometry":{"type":"LineString","coordinates":[[-83.66288420000001,32.8136938],[-83.6628848,32.813285900000004]]},"id":"8a44c0b18457fff-17bfbe0938c969dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18473670-13f7be038e97e5bc","8f44c0b18455071-13bfbe09030f443e"]},"geometry":{"type":"LineString","coordinates":[[-83.6628848,32.813285900000004],[-83.662885,32.81317],[-83.6628936,32.8129842]]},"id":"8944c0b1847ffff-13d7fe074097f77f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18473670-13f7be038e97e5bc","8f44c0b18429333-17d7fdec7153629d"]},"geometry":{"type":"LineString","coordinates":[[-83.6628936,32.8129842],[-83.66292,32.81241],[-83.6629305,32.811708700000004]]},"id":"8844c0b185fffff-13f6bdf4fa5d5031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18429830-17d7fdea4da22088","8f44c0b18429333-17d7fdec7153629d"]},"geometry":{"type":"LineString","coordinates":[[-83.6629305,32.811708700000004],[-83.662934,32.8114743]]},"id":"8b44c0b18429fff-179ebdeb565f4713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18429830-17d7fdea4da22088","8f44c0b1842d0c3-17d7fde864ee414d"]},"geometry":{"type":"LineString","coordinates":[[-83.662934,32.8114743],[-83.662937,32.81127]]},"id":"8a44c0b1842ffff-1797bde95e2f9b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18780745-13d7fe3c24579a9e","8f44c0b18780d71-1397fe3821e93d15"]},"geometry":{"type":"LineString","coordinates":[[-83.66280300000001,32.816626],[-83.6628094,32.8163191]]},"id":"8b44c0b18780fff-13f7fe3a2ae1be64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628105,32.816286000000005]},"id":"8f44c0b187846d8-1396fe377935ef14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18780d71-1397fe3821e93d15","8f44c0b187846d8-1396fe377935ef14"]},"geometry":{"type":"LineString","coordinates":[[-83.6628094,32.8163191],[-83.6628105,32.816286000000005]]},"id":"8b44c0b18780fff-139fbe37d0b91ff0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628211,32.8158036]},"id":"8f44c0b187b1a46-13d7fe30df08a9fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b187b1a46-13d7fe30df08a9fc","8f44c0b187846d8-1396fe377935ef14"]},"geometry":{"type":"LineString","coordinates":[[-83.6628105,32.816286000000005],[-83.6628211,32.8158036]]},"id":"8944c0b187bffff-13febe3422e8bf28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b187b1a46-13d7fe30df08a9fc","8f44c0b187b5353-13fffe2be710d460"]},"geometry":{"type":"LineString","coordinates":[[-83.6628211,32.8158036],[-83.662829,32.815458]]},"id":"8a44c0b187b7fff-13fffe2e51c64566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628352,32.815273000000005]},"id":"8f44c0b187b5b86-139fbe2801f6f542"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b187b5b86-139fbe2801f6f542","8f44c0b187b5353-13fffe2be710d460"]},"geometry":{"type":"LineString","coordinates":[[-83.662829,32.815458],[-83.6628352,32.815273000000005]]},"id":"8b44c0b187b5fff-13d7fe29f9ae8430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b187b5b86-139fbe2801f6f542","8f44c0b187b5821-13d7fe25a961bb2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6628352,32.815273000000005],[-83.662839,32.8151614]]},"id":"8b44c0b187b5fff-13f6fe26dc08050b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628417,32.815080200000004]},"id":"8f44c0b1845b299-1397be23fecc6034"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b187b5821-13d7fe25a961bb2f","8f44c0b1845b299-1397be23fecc6034"]},"geometry":{"type":"LineString","coordinates":[[-83.662839,32.8151614],[-83.6628417,32.815080200000004]]},"id":"8944c0b187bffff-13bebe24c091c8b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18458735-17b7be164d4f4a8e","8f44c0b1845b299-1397be23fecc6034"]},"geometry":{"type":"LineString","coordinates":[[-83.6628417,32.815080200000004],[-83.66285690000001,32.8146287],[-83.66286360000001,32.8144952]]},"id":"8a44c0b1845ffff-17defe1da0fe4390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855da34-17d6ba3524e0dac1","8f44c0b1855882b-17dffb7f68f006df"]},"geometry":{"type":"LineString","coordinates":[[-83.6644526,32.811299500000004],[-83.66392420000001,32.811289200000004]]},"id":"8a44c0b1855ffff-17d7bada436b1d17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855882b-17dffb7f68f006df","8f44c0b18558c70-17dfbbebc68ba2ed"]},"geometry":{"type":"LineString","coordinates":[[-83.66392420000001,32.811289200000004],[-83.6637508,32.8112858]]},"id":"8b44c0b18558fff-17debbb59a6cfba5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70742170000001,32.805942300000005]},"id":"8f44c0b1db60a51-13d7f14d72fccbac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074248,32.8056773]},"id":"8f44c0b1db655b6-139e514b80cc154f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db60a51-13d7f14d72fccbac","8f44c0b1db655b6-139e514b80cc154f"]},"geometry":{"type":"LineString","coordinates":[[-83.70742170000001,32.805942300000005],[-83.7074248,32.8056773]]},"id":"8a44c0b1db67fff-13ff714c8bec52b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70742800000001,32.8053964]},"id":"8f44c0b1db648c9-13fed1498e54ccfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db648c9-13fed1498e54ccfb","8f44c0b1db655b6-139e514b80cc154f"]},"geometry":{"type":"LineString","coordinates":[[-83.7074248,32.8056773],[-83.70742800000001,32.8053964]]},"id":"8b44c0b1db64fff-13d6d14a817625f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707429,32.80402]},"id":"8f44c0b0e4c0252-1796d148ede274f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db648c9-13fed1498e54ccfb","8f44c0b0e4c0252-1796d148ede274f6"]},"geometry":{"type":"LineString","coordinates":[[-83.70742800000001,32.8053964],[-83.707429,32.80402]]},"id":"8944c0b0e4fffff-17bef14930ff39c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e4c091b-17bed145212a3932","8f44c0b0e4c0252-1796d148ede274f6"]},"geometry":{"type":"LineString","coordinates":[[-83.707429,32.80402],[-83.707435,32.803652]]},"id":"8b44c0b0e4c0fff-179fd1470ab28aa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e4c091b-17bed145212a3932","8f44c0b0e4c4c6a-13d7f1470fc1f191"]},"geometry":{"type":"LineString","coordinates":[[-83.707435,32.803652],[-83.70743300000001,32.803427],[-83.70743200000001,32.803283]]},"id":"8a44c0b0e4c7fff-13b771462827ab25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e418d40-17be5143e8aabd65","8f44c0b0e4c4c6a-13d7f1470fc1f191"]},"geometry":{"type":"LineString","coordinates":[[-83.70743200000001,32.803283],[-83.707437,32.8016]]},"id":"8844c0b0e5fffff-13b7f1457ffd6694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e418d40-17be5143e8aabd65","8f44c0b0e433116-13fef143419c128a"]},"geometry":{"type":"LineString","coordinates":[[-83.707437,32.8016],[-83.70743800000001,32.800075]]},"id":"8944c0b0e43ffff-17df71439c793327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e5ad0c8-17de71362d39904b","8f44c0b0e433116-13fef143419c128a"]},"geometry":{"type":"LineString","coordinates":[[-83.70743800000001,32.800075],[-83.707459,32.798605]]},"id":"8844c0b0e5fffff-13b7d13cb81ceb66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0ec5a4dc-17f64077487f1ad6","8f44c0b0e0a2398-17b7c0800c53d4fc"]},"geometry":{"type":"LineString","coordinates":[[-83.714318,32.797418],[-83.714342,32.797679],[-83.71432800000001,32.798778],[-83.714275,32.800702],[-83.714268,32.801278],[-83.714304,32.801596]]},"id":"8744c0b0effffff-139e707e450b0bb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e70da1e-13df4027428ccb03","8f44c0b0e0a2398-17b7c0800c53d4fc"]},"geometry":{"type":"LineString","coordinates":[[-83.714304,32.801596],[-83.714456,32.802515],[-83.714464,32.802843],[-83.714465,32.802892],[-83.714464,32.803126],[-83.714456,32.80503],[-83.71444600000001,32.80637]]},"id":"8744c0b0effffff-17f64029a1d5d157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0168615e-17963fc3e4974dbc","8f44c0b016b550b-13df7fb1c8b30119"]},"geometry":{"type":"LineString","coordinates":[[-83.714634,32.786703],[-83.714605,32.787616]]},"id":"8944c0b016bffff-13f6bfbad29933a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0168615e-17963fc3e4974dbc","8f44c0b01682862-17debfc840d2374c"]},"geometry":{"type":"LineString","coordinates":[[-83.714605,32.787616],[-83.71459800000001,32.787937]]},"id":"8a44c0b01687fff-17fe7fc611114829"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01682862-17debfc840d2374c","8f44c0b0169ca65-17bfbfd4c488a2fa"]},"geometry":{"type":"LineString","coordinates":[[-83.71459800000001,32.787937],[-83.714578,32.788521]]},"id":"8944c0b016bffff-17973fce830a3bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710594,32.779018]},"id":"8f44c0b014b5c66-1396498ece196a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b014b5c66-1396498ece196a58","8f44c0b014b5661-13d66990a684009a"]},"geometry":{"type":"LineString","coordinates":[[-83.710594,32.779018],[-83.71059100000001,32.779325]]},"id":"8b44c0b014b5fff-13f6798fba8fec53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01480db6-13b7c9982860c4c9","8f44c0b014b5661-13d66990a684009a"]},"geometry":{"type":"LineString","coordinates":[[-83.71059100000001,32.779325],[-83.71057900000001,32.780118]]},"id":"8944c0b014bffff-13bff9946155d5c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01480db6-13b7c9982860c4c9","8f44c0b01483651-17de49aa4f004262"]},"geometry":{"type":"LineString","coordinates":[[-83.71057900000001,32.780118],[-83.71055000000001,32.78097]]},"id":"8944c0b014bffff-13d649a13460d93c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a1384a-13be507a0e06bb60","8f44c0b03a32681-139e505ca8c640f1"]},"geometry":{"type":"LineString","coordinates":[[-83.70776000000001,32.7866528],[-83.70776740000001,32.786372],[-83.707807,32.785584]]},"id":"8944c0b03a3ffff-13dff06cef88b4b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a3648a-17b75049474615c0","8f44c0b03a32681-139e505ca8c640f1"]},"geometry":{"type":"LineString","coordinates":[[-83.707807,32.785584],[-83.70783800000001,32.78501]]},"id":"8a44c0b03a37fff-17def052ff95b12d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03a3648a-17b75049474615c0","8f44c0b03ba1a2e-13fe7054834166ca"]},"geometry":{"type":"LineString","coordinates":[[-83.70783800000001,32.78501],[-83.707835,32.78486],[-83.707848,32.784309],[-83.707845,32.784034000000005],[-83.70782,32.783485]]},"id":"8944c0b03bbffff-17def048db133f05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0384b1b1-13b77061a1bc0ab1","8f44c0b03ba1a2e-13fe7054834166ca"]},"geometry":{"type":"LineString","coordinates":[[-83.70782,32.783485],[-83.70779900000001,32.782549]]},"id":"8844c0b03bfffff-13dff05b1442a5f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0384b1b1-13b77061a1bc0ab1","8f44c0b03845cc9-17bf506d899d3296"]},"geometry":{"type":"LineString","coordinates":[[-83.70779900000001,32.782549],[-83.70778200000001,32.782294],[-83.70777600000001,32.782019000000005],[-83.707778,32.781336],[-83.70778,32.78092]]},"id":"8944c0b0387ffff-17be506d858b2ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a38ba8d-17fedf86ad433969","8f44c0b1a388215-17bedf691eee1fca"]},"geometry":{"type":"LineString","coordinates":[[-83.649167,32.824058],[-83.649203,32.824007],[-83.64921430000001,32.8237261]]},"id":"8a44c0b1a38ffff-1797ff6f4ded8e9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a388215-17bedf691eee1fca","8f44c0b1a38814a-17d6df659b913d2d"]},"geometry":{"type":"LineString","coordinates":[[-83.64921430000001,32.8237261],[-83.6492199,32.8235873]]},"id":"8b44c0b1a388fff-1797ff675040cf1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a38c014-13beff5a24484c22","8f44c0b1a38814a-17d6df659b913d2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6492199,32.8235873],[-83.6492382,32.8231343]]},"id":"8a44c0b1a38ffff-17dedf5fe135a199"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a38c014-13beff5a24484c22","8f44c0b1a38cc45-13ffff57cd58d026"]},"geometry":{"type":"LineString","coordinates":[[-83.6492382,32.8231343],[-83.649242,32.823039]]},"id":"8b44c0b1a38cfff-139fff58f2000632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a38cc45-13ffff57cd58d026","8f44c0b1a3aa7a1-13f7df5092a85484"]},"geometry":{"type":"LineString","coordinates":[[-83.649242,32.823039],[-83.6492535,32.822792]]},"id":"8944c0b1a3bffff-13b6ff5435a2a78d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6492872,32.822066500000005]},"id":"8f44c0b1a3a3376-139fdf3b8637e6d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3a3376-139fdf3b8637e6d5","8f44c0b1a3aa7a1-13f7df5092a85484"]},"geometry":{"type":"LineString","coordinates":[[-83.6492535,32.822792],[-83.6492872,32.822066500000005]]},"id":"8944c0b1a3bffff-1396df461971b7c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3a3376-139fdf3b8637e6d5","8f44c0b1a3a3a8d-13feff39c31a9fb9"]},"geometry":{"type":"LineString","coordinates":[[-83.6492872,32.822066500000005],[-83.64929000000001,32.822007]]},"id":"8b44c0b1a3a3fff-139fdf3aa6401ce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6493066,32.8215406]},"id":"8f44c0b1a3a0076-17d6ff2f6e01cb25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3a0076-17d6ff2f6e01cb25","8f44c0b1a3a3a8d-13feff39c31a9fb9"]},"geometry":{"type":"LineString","coordinates":[[-83.64929000000001,32.822007],[-83.649297,32.821802000000005],[-83.6493066,32.8215406]]},"id":"8a44c0b1a3a7fff-13feff34a241242f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a04a69c-1797df1eea24a5a2","8f44c0b1a3a0076-17d6ff2f6e01cb25"]},"geometry":{"type":"LineString","coordinates":[[-83.6493066,32.8215406],[-83.649333,32.820822]]},"id":"8744c0b1affffff-17f6df272ddf60c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a04a69c-1797df1eea24a5a2","8f44c0b1a043065-13f7ff11cbd29b8e"]},"geometry":{"type":"LineString","coordinates":[[-83.649333,32.820822],[-83.649354,32.819929]]},"id":"8944c0b1a07ffff-17feff185e1ef70b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a38ba8d-17fedf86ad433969","8f44c0b1a38bae8-1797ff657dcaa686"]},"geometry":{"type":"LineString","coordinates":[[-83.649167,32.824058],[-83.64922010000001,32.824091800000005]]},"id":"8c44c0b1a38bbff-1796df760a7d3020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a216881-17f6fee889395ac2","8f44c0b1a38bae8-1797ff657dcaa686"]},"geometry":{"type":"LineString","coordinates":[[-83.64922010000001,32.824091800000005],[-83.64942,32.824219]]},"id":"8844c0b1a3fffff-17bfff27013b2729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a216881-17f6fee889395ac2","8f44c0b1a216b12-179ffe97ebf4ee14"]},"geometry":{"type":"LineString","coordinates":[[-83.64942,32.824219],[-83.64954900000001,32.824291]]},"id":"8b44c0b1a216fff-17f7fec03e16eb37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a216b12-179ffe97ebf4ee14","8f44c0b1a21091c-17fedddade86dcad"]},"geometry":{"type":"LineString","coordinates":[[-83.64954900000001,32.824291],[-83.64985150000001,32.824471200000005]]},"id":"8a44c0b1a217fff-17d6fe395ef5dc3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a215219-17b6dcc50ca0a94b","8f44c0b1a21091c-17fedddade86dcad"]},"geometry":{"type":"LineString","coordinates":[[-83.64985150000001,32.824471200000005],[-83.65029600000001,32.824736]]},"id":"8a44c0b1a217fff-17d7dd4fe214d648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a215219-17b6dcc50ca0a94b","8f44c0b1a21d962-13fefb12a3f1f9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.65029600000001,32.824736],[-83.650425,32.824814],[-83.650633,32.824939],[-83.650711,32.825006],[-83.65078600000001,32.825069],[-83.650852,32.825133],[-83.650892,32.825194],[-83.650951,32.825315],[-83.65096100000001,32.825353],[-83.650991,32.825469000000005]]},"id":"8944c0b1a23ffff-13ffdbc53d29f393"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65105600000001,32.825797]},"id":"8f44c0b1a20ad89-13bffaea03b84187"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a21d962-13fefb12a3f1f9d5","8f44c0b1a20ad89-13bffaea03b84187"]},"geometry":{"type":"LineString","coordinates":[[-83.650991,32.825469000000005],[-83.651054,32.825695800000005],[-83.65105600000001,32.825797]]},"id":"8944c0b1a23ffff-13d7daf8d6df7a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a20a573-139fdaf409ea85b6","8f44c0b1a20ad89-13bffaea03b84187"]},"geometry":{"type":"LineString","coordinates":[[-83.65105600000001,32.825797],[-83.65104000000001,32.825922000000006]]},"id":"8b44c0b1a20afff-13f6faef0c0e66ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd584f1-13d6fe7621b99e8f","8f44c0b1bc015a6-13dff411ebae1bab"]},"geometry":{"type":"LineString","coordinates":[[-83.6627102,32.8258375],[-83.66231,32.825818000000005],[-83.66122920000001,32.8258195],[-83.660413,32.8258195]]},"id":"8844c0b1bdfffff-13dfe143e5b7cd91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc11083-13d6d6e40926a123","8f44c0b1bc015a6-13dff411ebae1bab"]},"geometry":{"type":"LineString","coordinates":[[-83.660413,32.8258195],[-83.65970130000001,32.8258093],[-83.6592576,32.8258153]]},"id":"8944c0b1bc3ffff-13d7c57afb773012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636534,32.8202121]},"id":"8f44c0b186f6903-179ebc28a6008cce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1868c071-1797fe606e7729fa","8f44c0b186f6903-179ebc28a6008cce"]},"geometry":{"type":"LineString","coordinates":[[-83.662745,32.820211],[-83.6636534,32.8202121]]},"id":"8944c0b186bffff-179efd4489ccb504"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1861b0a9-179fba3087ab7ddd","8f44c0b186f6903-179ebc28a6008cce"]},"geometry":{"type":"LineString","coordinates":[[-83.6636534,32.8202121],[-83.66446,32.820213]]},"id":"8844c0b187fffff-179efb2c9f3706b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1867279b-179fb4f8e126c534","8f44c0b1861b0a9-179fba3087ab7ddd"]},"geometry":{"type":"LineString","coordinates":[[-83.66446,32.820213],[-83.66659700000001,32.820216]]},"id":"8844c0b187fffff-179eb794bd52c791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186702db-17b6f33f0f38a464","8f44c0b1867279b-179fb4f8e126c534"]},"geometry":{"type":"LineString","coordinates":[[-83.66659700000001,32.820216],[-83.667304,32.820234]]},"id":"8a44c0b18677fff-17b6b41bf175eb9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186702db-17b6f33f0f38a464","8f44c0b1866241d-1796b1ce4b9e1a12"]},"geometry":{"type":"LineString","coordinates":[[-83.667304,32.820234],[-83.667894,32.820208]]},"id":"8a44c0b18677fff-179eb286a01d8928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d719b0c-13b77cefd649ba8b","8f44c0b1d70b0d9-13f77b7da6611868"]},"geometry":{"type":"LineString","coordinates":[[-83.6901414,32.8121681],[-83.69001700000001,32.812162],[-83.68992700000001,32.81215],[-83.68984300000001,32.812122],[-83.689824,32.812112],[-83.68975900000001,32.812078],[-83.68968000000001,32.812008],[-83.68954910000001,32.811832200000005]]},"id":"8944c0b1d73ffff-13b77c4b5d3b6d37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d719b0c-13b77cefd649ba8b","8f44c0b1d70468c-17f67cae0dee7161"]},"geometry":{"type":"LineString","coordinates":[[-83.68954910000001,32.811832200000005],[-83.6894295,32.8116325],[-83.68940190000001,32.8115614],[-83.68938220000001,32.8114885],[-83.6893726,32.811402900000004],[-83.68937340000001,32.811324400000004],[-83.6894334,32.810406900000004],[-83.68944540000001,32.810360800000005],[-83.68946860000001,32.8103305],[-83.6895034,32.8103074],[-83.6895518,32.810297600000006],[-83.68965440000001,32.810301200000005]]},"id":"8944c0b1d73ffff-179efd39436b2f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d704654-17fefc7fc90ec8bb","8f44c0b1d70468c-17f67cae0dee7161"]},"geometry":{"type":"LineString","coordinates":[[-83.68965440000001,32.810301200000005],[-83.6897284,32.810305400000004]]},"id":"8c44c0b1d7047ff-17f7fc96e0928fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d704271-17f6fbf7a27b862a","8f44c0b1d704654-17fefc7fc90ec8bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6897284,32.810305400000004],[-83.68994620000001,32.8103178]]},"id":"8b44c0b1d704fff-17fefc3bb3d4a4b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d704271-17f6fbf7a27b862a","8f44c0b1d705c65-17fe7b7331fabca9"]},"geometry":{"type":"LineString","coordinates":[[-83.68994620000001,32.8103178],[-83.6901581,32.810329800000005]]},"id":"8a44c0b1d707fff-17f67bb56c02e158"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d72e494-17ff7af28832dbdb","8f44c0b1d705c65-17fe7b7331fabca9"]},"geometry":{"type":"LineString","coordinates":[[-83.6901581,32.810329800000005],[-83.690364,32.8103415]]},"id":"8b44c0b1d705fff-17fffb32ef907a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d72e494-17ff7af28832dbdb","8f44c0b1d72e0b1-17977a6bd73f4fab"]},"geometry":{"type":"LineString","coordinates":[[-83.690364,32.8103415],[-83.6905795,32.8103538]]},"id":"8944c0b1d73ffff-17977aaf37a110f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d72eab0-179f79ff7ce3bb6a","8f44c0b1d72e0b1-17977a6bd73f4fab"]},"geometry":{"type":"LineString","coordinates":[[-83.6905795,32.8103538],[-83.6907529,32.8103636]]},"id":"8b44c0b1d72efff-179e7a35ab12a5c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d72eab0-179f79ff7ce3bb6a","8f44c0b1d72c614-17967963279e1fed"]},"geometry":{"type":"LineString","coordinates":[[-83.6907529,32.8103636],[-83.69100300000001,32.8103746]]},"id":"8a44c0b1d72ffff-1796f9b14018e553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d7096c3-1396fa916c43171d","8f44c0b1d754cc5-139ef99b5ade944c"]},"geometry":{"type":"LineString","coordinates":[[-83.6909131,32.812206100000004],[-83.6905194,32.812186600000004]]},"id":"8944c0b1d77ffff-1396fa165457cefd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d7096c3-1396fa916c43171d","8f44c0b1d756d14-13fffacb6172b5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6905194,32.812186600000004],[-83.69042660000001,32.8121821]]},"id":"8b44c0b1d756fff-13ff7aae6134043c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d70b0d9-13f77b7da6611868","8f44c0b1d756d14-13fffacb6172b5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.69042660000001,32.8121821],[-83.6901414,32.8121681]]},"id":"8a44c0b1d70ffff-13ff7b2485d65e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19936a16-17bef45815f29a95","8f44c0b19930d60-17fef3dd8d24b060"]},"geometry":{"type":"LineString","coordinates":[[-83.69326480000001,32.8168847],[-83.6932378,32.816887300000005],[-83.6932013,32.816876300000004],[-83.69306870000001,32.816756600000005]]},"id":"8a44c0b19937fff-17dff41e4fef5495"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6928316,32.8161026]},"id":"8f44c0b1d668366-139674ec4facfe9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19936a16-17bef45815f29a95","8f44c0b1d668366-139674ec4facfe9a"]},"geometry":{"type":"LineString","coordinates":[[-83.69306870000001,32.816756600000005],[-83.6929357,32.816636700000004],[-83.69288710000001,32.8165439],[-83.6928553,32.816338800000004],[-83.6928316,32.8161026]]},"id":"8744c0b1dffffff-13fff4c170e17c7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c060e-17b66a7070983204","8f44c0b1d2c0436-17b7fab3f72eeac9"]},"geometry":{"type":"LineString","coordinates":[[-83.6971257,32.8175716],[-83.6970177,32.8173693]]},"id":"8b44c0b1d2c0fff-17f77a923e6e55d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c0436-17b7fab3f72eeac9","8f44c0b1d2c6234-17d7fae56abc3dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6970177,32.8173693],[-83.69699990000001,32.8173359],[-83.69693860000001,32.817212500000004]]},"id":"8a44c0b1d2c7fff-17f6facce4a3c000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c6234-17d7fae56abc3dd1","8f44c0b1d2c6030-17feeb185920fda9"]},"geometry":{"type":"LineString","coordinates":[[-83.69693860000001,32.817212500000004],[-83.6968817,32.817098],[-83.6968571,32.817066600000004]]},"id":"8b44c0b1d2c6fff-17977afd391a5777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c6030-17feeb185920fda9","8f44c0b1d2c6c12-17977b6065319f43"]},"geometry":{"type":"LineString","coordinates":[[-83.6968571,32.817066600000004],[-83.6967771,32.8169646],[-83.69674180000001,32.8169333]]},"id":"8b44c0b1d2c6fff-17bfeb3afea6af9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f3060-17beebc802e95d78","8f44c0b1d2c6c12-17977b6065319f43"]},"geometry":{"type":"LineString","coordinates":[[-83.69674180000001,32.8169333],[-83.6966024,32.816809500000005],[-83.69657600000001,32.816791800000004]]},"id":"8a44c0b1d2f7fff-17fe7b938eee1489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f3060-17beebc802e95d78","8f44c0b1d2f31b2-1796fc1eb858a166"]},"geometry":{"type":"LineString","coordinates":[[-83.69657600000001,32.816791800000004],[-83.6964373,32.8166985]]},"id":"8c44c0b1d2f31ff-17b7ebf369e3d595"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f31b2-1796fc1eb858a166","8f44c0b1d2f3cd6-13ff6c4bb450481b"]},"geometry":{"type":"LineString","coordinates":[[-83.6964373,32.8166985],[-83.6964178,32.816685400000004],[-83.69636530000001,32.816664]]},"id":"8b44c0b1d2f3fff-13feec34b11ffe02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f2272-13d67c8d8e1e7161","8f44c0b1d2f3cd6-13ff6c4bb450481b"]},"geometry":{"type":"LineString","coordinates":[[-83.69636530000001,32.816664],[-83.69626000000001,32.8166211]]},"id":"8a44c0b1d2f7fff-13f7fc6c941e64f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f2272-13d67c8d8e1e7161","8f44c0b1d2f2709-13b6ecfd23887c75"]},"geometry":{"type":"LineString","coordinates":[[-83.69626000000001,32.8166211],[-83.69608140000001,32.8165482]]},"id":"8b44c0b1d2f2fff-13bf6cc55aaf687b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f24d1-13fe7d5fee4f65c5","8f44c0b1d2f2709-13b6ecfd23887c75"]},"geometry":{"type":"LineString","coordinates":[[-83.69608140000001,32.8165482],[-83.69592340000001,32.8164837]]},"id":"8b44c0b1d2f2fff-1396ed2e8dbe8c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f24d1-13fe7d5fee4f65c5","8f44c0b1d2f249a-13f67d81e2068d3e"]},"geometry":{"type":"LineString","coordinates":[[-83.69592340000001,32.8164837],[-83.695869,32.8164615]]},"id":"8c44c0b1d2f25ff-13f76d70e0979954"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69575970000001,32.8164169]},"id":"8f44c0b1d28981c-13d6fdc6328a986b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28981c-13d6fdc6328a986b","8f44c0b1d2f249a-13f67d81e2068d3e"]},"geometry":{"type":"LineString","coordinates":[[-83.695869,32.8164615],[-83.69575970000001,32.8164169]]},"id":"8b44c0b1d289fff-13f6eda405c03ca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28981c-13d6fdc6328a986b","8f44c0b1d289da3-139f7e4e24e45b3d"]},"geometry":{"type":"LineString","coordinates":[[-83.69575970000001,32.8164169],[-83.6955422,32.8163281]]},"id":"8a44c0b1d28ffff-13befe0a28c9d299"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d289da3-139f7e4e24e45b3d","8f44c0b1d288040-13f6febe10637123"]},"geometry":{"type":"LineString","coordinates":[[-83.6955422,32.8163281],[-83.69548490000001,32.8163047],[-83.69536310000001,32.816266500000005]]},"id":"8b44c0b1d288fff-139efe85c0d574a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d288441-13fe6f33078fc4e4","8f44c0b1d288040-13f6febe10637123"]},"geometry":{"type":"LineString","coordinates":[[-83.69536310000001,32.816266500000005],[-83.695176,32.8162534]]},"id":"8b44c0b1d288fff-13f6eef88c8b6989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d288441-13fe6f33078fc4e4","8f44c0b1d28a843-13f67faa5186e6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.695176,32.8162534],[-83.69498510000001,32.8162401]]},"id":"8a44c0b1d28ffff-13fe6f6ebc08a79d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28ac41-13de701c56752d11","8f44c0b1d28a843-13f67faa5186e6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.69498510000001,32.8162401],[-83.69480270000001,32.8162273]]},"id":"8b44c0b1d28afff-13f67fe35ff1b984"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29d24c-13d6708bce53ec2f","8f44c0b1d28ac41-13de701c56752d11"]},"geometry":{"type":"LineString","coordinates":[[-83.69480270000001,32.8162273],[-83.69462440000001,32.8162149]]},"id":"8b44c0b1d28afff-13de70540b9fc9b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29d24c-13d6708bce53ec2f","8f44c0b1d29d64d-13de7100f87692a8"]},"geometry":{"type":"LineString","coordinates":[[-83.69462440000001,32.8162149],[-83.6944369,32.8162018]]},"id":"8a44c0b1d29ffff-13d670c660126242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29d64d-13de7100f87692a8","8f44c0b1d299d32-13d6716eb9a49815"]},"geometry":{"type":"LineString","coordinates":[[-83.6944369,32.8162018],[-83.69426130000001,32.8161895]]},"id":"8a44c0b1d29ffff-13de7137d56b81ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d299d32-13d6716eb9a49815","8f44c0b1d298049-13bf71eb7d4ad619"]},"geometry":{"type":"LineString","coordinates":[[-83.69426130000001,32.8161895],[-83.6940617,32.8161751]]},"id":"8a44c0b1d29ffff-13d7f1ad18d17d37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d298049-13bf71eb7d4ad619","8f44c0b1d298730-13b67255a561c8f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6940617,32.8161751],[-83.6938918,32.8161603]]},"id":"8b44c0b1d298fff-13bef22099018226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29ab30-13bff2cb1acb686d","8f44c0b1d298730-13b67255a561c8f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6938918,32.8161603],[-83.6937039,32.8161439]]},"id":"8a44c0b1d29ffff-13bf72905544b46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29ab30-13bff2cb1acb686d","8f44c0b1d29a122-13b6f336af920784"]},"geometry":{"type":"LineString","coordinates":[[-83.6937039,32.8161439],[-83.6935318,32.8161289]]},"id":"8b44c0b1d29afff-13b77300dfb65f21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29a122-13b6f336af920784","8f44c0b1d29a504-139f73ab70d88cff"]},"geometry":{"type":"LineString","coordinates":[[-83.6935318,32.8161289],[-83.6933449,32.8161235]]},"id":"8b44c0b1d29afff-139ef3710c869681"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d29a504-139f73ab70d88cff","8f44c0b1d66992a-139ff41c33103806"]},"geometry":{"type":"LineString","coordinates":[[-83.6933449,32.8161235],[-83.69316450000001,32.8161183]]},"id":"8744c0b1dffffff-139ff3e3d8f469be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d669d0c-1397748e4d9af056","8f44c0b1d66992a-139ff41c33103806"]},"geometry":{"type":"LineString","coordinates":[[-83.69316450000001,32.8161183],[-83.692982,32.8161104]]},"id":"8a44c0b1d66ffff-1397f4554b34d010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d669d0c-1397748e4d9af056","8f44c0b1d668366-139674ec4facfe9a"]},"geometry":{"type":"LineString","coordinates":[[-83.692982,32.8161104],[-83.6928316,32.8161026]]},"id":"8a44c0b1d66ffff-1396f4bd4e099d1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d668391-139ef545dd2719e6","8f44c0b1d668366-139674ec4facfe9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6928316,32.8161026],[-83.6926883,32.816100500000005]]},"id":"8c44c0b1d6683ff-139f751906a44cd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d668789-1397f5a4288c2888","8f44c0b1d668391-139ef545dd2719e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6926883,32.816100500000005],[-83.6925374,32.8161082]]},"id":"8b44c0b1d668fff-139775750824bd4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d668789-1397f5a4288c2888","8f44c0b1d66aa1e-139f76123ec5081b"]},"geometry":{"type":"LineString","coordinates":[[-83.6925374,32.8161082],[-83.6923613,32.8161235]]},"id":"8a44c0b1d66ffff-139e75db3407d6db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d66a0c4-13be7685f02600b3","8f44c0b1d66aa1e-139f76123ec5081b"]},"geometry":{"type":"LineString","coordinates":[[-83.6923613,32.8161235],[-83.6922741,32.816131],[-83.69217610000001,32.8161478]]},"id":"8b44c0b1d66afff-13b7f64c30ac2e7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d66a0c4-13be7685f02600b3","8f44c0b1d66a796-13bf76f2a5b65953"]},"geometry":{"type":"LineString","coordinates":[[-83.69217610000001,32.8161478],[-83.6920022,32.816177700000004]]},"id":"8b44c0b1d66afff-13b7f6bc49289e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d641ab1-13d6775f55754b91","8f44c0b1d66a796-13bf76f2a5b65953"]},"geometry":{"type":"LineString","coordinates":[[-83.6920022,32.816177700000004],[-83.69192460000001,32.816191],[-83.69182830000001,32.8162144]]},"id":"8944c0b1d67ffff-13dff729355d025e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d641ab1-13d6775f55754b91","8f44c0b1d641720-13f7f7d2329cbfd3"]},"geometry":{"type":"LineString","coordinates":[[-83.69182830000001,32.8162144],[-83.69164450000001,32.8162591]]},"id":"8b44c0b1d641fff-13f67798c01688c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d641720-13f7f7d2329cbfd3","8f44c0b1d643335-13be7894603e11af"]},"geometry":{"type":"LineString","coordinates":[[-83.69164450000001,32.8162591],[-83.6916267,32.816263400000004],[-83.6914028,32.816344],[-83.69133380000001,32.8163751]]},"id":"8a44c0b1d647fff-1396783402e5e314"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69788750000001,32.817418]},"id":"8f44c0b1d2c5acb-17d668945160b8d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2ea5ab-17bf68aeef989211","8f44c0b1d2c5acb-17d668945160b8d7"]},"geometry":{"type":"LineString","coordinates":[[-83.697845,32.817586],[-83.69788750000001,32.817418]]},"id":"8944c0b1d2fffff-17fee8a1a9799f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6979463,32.817164000000005]},"id":"8f44c0b1d2ee58a-17b7e86f9d4dee4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2ee58a-17b7e86f9d4dee4b","8f44c0b1d2c5acb-17d668945160b8d7"]},"geometry":{"type":"LineString","coordinates":[[-83.69788750000001,32.817418],[-83.6979463,32.817164000000005]]},"id":"8a44c0b1d2effff-17f6e881fea2a6f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2ee58a-17b7e86f9d4dee4b","8f44c0b1d2e3a21-17f678377aa6fe90"]},"geometry":{"type":"LineString","coordinates":[[-83.6979463,32.817164000000005],[-83.69795500000001,32.817137],[-83.69803610000001,32.8168805]]},"id":"8944c0b1d2fffff-17def85375a9b45e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e024b-13fe6814a03a41b3","8f44c0b1d2e3a21-17f678377aa6fe90"]},"geometry":{"type":"LineString","coordinates":[[-83.69803610000001,32.8168805],[-83.6980918,32.8166816]]},"id":"8a44c0b1d2e7fff-17be78261c82cd64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e024b-13fe6814a03a41b3","8f44c0b1d2e0ac8-13b667fcc2b42225"]},"geometry":{"type":"LineString","coordinates":[[-83.6980918,32.8166816],[-83.69813,32.816544]]},"id":"8a44c0b1d2e7fff-13df6808b90faa7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e5531-13f7e7b302e7140f","8f44c0b1d2e0ac8-13b667fcc2b42225"]},"geometry":{"type":"LineString","coordinates":[[-83.69813,32.816544],[-83.698248,32.816243]]},"id":"8a44c0b1d2e7fff-13d7f7d7ed3ba952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e399d51-17df75d5b6e8e561","8f44c0b0e39896e-179e362b0c9e45c6"]},"geometry":{"type":"LineString","coordinates":[[-83.71867250000001,32.808037500000005],[-83.718666,32.807929800000004],[-83.71862440000001,32.807830700000004],[-83.718536,32.8077187]]},"id":"8a44c0b0e39ffff-17f675f2739fdf21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e394370-139ff772478a3701","8f44c0b0e39896e-179e362b0c9e45c6"]},"geometry":{"type":"LineString","coordinates":[[-83.718536,32.8077187],[-83.7181408,32.8073721],[-83.71799060000001,32.8071286],[-83.7180124,32.8064734]]},"id":"8944c0b0e3bffff-17be3725d43ae147"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08c3249c-13d63b7c2cb1fd53","8f44c0b08c326c5-13b6fb1759dab654"]},"geometry":{"type":"LineString","coordinates":[[-83.72962670000001,32.8092015],[-83.72961910000001,32.809161100000004],[-83.72960280000001,32.8091225],[-83.72957840000001,32.8090871],[-83.72954650000001,32.8090562],[-83.7295084,32.8090307],[-83.72946540000001,32.809011500000004]]},"id":"8944c0b08c3ffff-13f63b3e29588f9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7293236,32.8089973]},"id":"8f44c0b08d898a9-13b75bd4cff771b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08d898a9-13b75bd4cff771b2","8f44c0b08c3249c-13d63b7c2cb1fd53"]},"geometry":{"type":"LineString","coordinates":[[-83.72946540000001,32.809011500000004],[-83.72941940000001,32.8089995],[-83.72937160000001,32.8089947],[-83.7293236,32.8089973]]},"id":"8b44c0b08d89fff-13bebba8211eb3c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08d89444-139e7c539615e38a","8f44c0b08d898a9-13b75bd4cff771b2"]},"geometry":{"type":"LineString","coordinates":[[-83.7293236,32.8089973],[-83.7292712,32.809009100000004],[-83.7292228,32.8090296],[-83.7291804,32.809058],[-83.7291459,32.8090932],[-83.72912070000001,32.8091335]]},"id":"8b44c0b08d89fff-13d7dc1b2260b070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d89444-139e7c539615e38a","8f44c0b08d89783-13bffc60a4dad15b"]},"geometry":{"type":"LineString","coordinates":[[-83.72912070000001,32.8091335],[-83.72910610000001,32.8091707],[-83.7290998,32.8092095]]},"id":"8b44c0b08d89fff-13b7dc5b677b9efc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d89783-13bffc60a4dad15b","8f44c0b08c1682b-13bf7bf92677c627"]},"geometry":{"type":"LineString","coordinates":[[-83.7290998,32.8092095],[-83.7291028,32.8092477],[-83.7291136,32.8092848],[-83.7291318,32.809319900000006],[-83.7291569,32.8093518],[-83.72918820000001,32.8093797],[-83.7292247,32.809402500000004],[-83.7292654,32.8094198]]},"id":"8844c0b08dfffff-139e7c3b344a17b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08c1682b-13bf7bf92677c627","8f44c0b08c326c5-13b6fb1759dab654"]},"geometry":{"type":"LineString","coordinates":[[-83.7292654,32.8094198],[-83.7293162,32.8094321],[-83.72936890000001,32.8094356],[-83.7294214,32.8094302],[-83.7294715,32.8094162],[-83.72951730000001,32.809394000000005],[-83.7295569,32.8093646],[-83.7295888,32.8093291],[-83.7296116,32.809289],[-83.7296244,32.8092459],[-83.72962670000001,32.8092015]]},"id":"8944c0b08c3ffff-139fdb6f73febb5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d0076d-179e7620be278a0b","8f44c0b08d00ad0-17ff15c67ce57462"]},"geometry":{"type":"LineString","coordinates":[[-83.7318041,32.8070353],[-83.73165970000001,32.807079]]},"id":"8b44c0b08d00fff-17fed5f39d15995a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d0076d-179e7620be278a0b","8f44c0b08c32842-1396fa75494595a5"]},"geometry":{"type":"LineString","coordinates":[[-83.73165970000001,32.807079],[-83.73146100000001,32.8071731],[-83.7308754,32.8075192],[-83.73070270000001,32.8076269],[-83.7305431,32.8077763],[-83.73043870000001,32.8079656],[-83.7304065,32.8080765],[-83.73038070000001,32.8081975],[-83.7303507,32.808318400000005],[-83.7303124,32.808422],[-83.73025240000001,32.808537],[-83.7301406,32.808685600000004],[-83.7300266,32.808808500000005],[-83.7299167,32.8088907],[-83.72988600000001,32.8089134]]},"id":"8844c0b08dfffff-179e5888f6396c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73593500000001,32.80399]},"id":"8f44c0b0c60e4ed-17ffcbb0aa5f6871"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c60e4ed-17ffcbb0aa5f6871","8f44c0b0c603a50-17be2ba2ea2d153c"]},"geometry":{"type":"LineString","coordinates":[[-83.73593500000001,32.80399],[-83.735957,32.803677]]},"id":"8944c0b0c63ffff-179ffba9c53ff21e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7220298,32.8115596]},"id":"8f44c0b0e2e1a25-17feeda3681a0a87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2e1a25-17feeda3681a0a87","8f44c0b0e254651-17f6ebaf3e153260"]},"geometry":{"type":"LineString","coordinates":[[-83.72283010000001,32.8111182],[-83.7223756,32.8113672],[-83.7220298,32.8115596]]},"id":"8844c0b0e3fffff-17fe7ca983eecc3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2e1a25-17feeda3681a0a87","8f44c0b0e2eed9e-139f2ed3da0fb38c"]},"geometry":{"type":"LineString","coordinates":[[-83.7220298,32.8115596],[-83.721783,32.811683],[-83.721693,32.811732],[-83.7215427,32.8118162]]},"id":"8a44c0b0e2e7fff-17d73e3c8e8ff03d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c2354-13b631a85e34cf50","8f44c0b0e2eed9e-139f2ed3da0fb38c"]},"geometry":{"type":"LineString","coordinates":[[-83.7215427,32.8118162],[-83.72082900000001,32.812216],[-83.72053530000001,32.812366600000004],[-83.72038350000001,32.8124482]]},"id":"8944c0b0e2fffff-13f7303cdbf18b6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a016619-13b7ebc4d13e28bd","8f44c0b0a1895a0-139febbdb211c196"]},"geometry":{"type":"LineString","coordinates":[[-83.70968830000001,32.8225118],[-83.7096997,32.8218266]]},"id":"8844c0b0a1fffff-13dfcbc145240157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a1895a0-139febbdb211c196","8f44c0b0a188bb5-17d6ebbba66db819"]},"geometry":{"type":"LineString","coordinates":[[-83.7096997,32.8218266],[-83.709703,32.821531]]},"id":"8a44c0b0a18ffff-13bf4bbcb730af59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a1aa0b6-17dfcbb06b08b780","8f44c0b0a188bb5-17d6ebbba66db819"]},"geometry":{"type":"LineString","coordinates":[[-83.709703,32.821531],[-83.70971300000001,32.82121],[-83.709721,32.8207036]]},"id":"8944c0b0a1bffff-17de5bb5160f4977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d7154ac-13d7f32cc08c237c","8f44c0b8d7ad9a0-17b77437a98e1569"]},"geometry":{"type":"LineString","coordinates":[[-83.58869,32.852252],[-83.58847750000001,32.8526371],[-83.58826300000001,32.853026]]},"id":"8944c0b8d73ffff-13d773b23e8c7d80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d7aba25-17fff555e8c60a82","8f44c0b8d7ad9a0-17b77437a98e1569"]},"geometry":{"type":"LineString","coordinates":[[-83.58826300000001,32.853026],[-83.587805,32.853758]]},"id":"8a44c0b8d7affff-179f74c6c3711624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d7aba25-17fff555e8c60a82","8f44c0b8d7ab30d-17df758ce97a60d0"]},"geometry":{"type":"LineString","coordinates":[[-83.587805,32.853758],[-83.58771700000001,32.853879]]},"id":"8b44c0b8d7abfff-17b7f57161b7789a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.587051,32.85492]},"id":"8f44c0b8d616c90-13d7772d264678fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d616c90-13d7772d264678fb","8f44c0b8d7ab30d-17df758ce97a60d0"]},"geometry":{"type":"LineString","coordinates":[[-83.58771700000001,32.853879],[-83.587051,32.85492]]},"id":"8844c0b8d7fffff-139ff65d03e20f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8d616c90-13d7772d264678fb","8f44c0b8d612019-13df770c0e75e001"]},"geometry":{"type":"LineString","coordinates":[[-83.587051,32.85492],[-83.58708,32.855089],[-83.58710400000001,32.855522]]},"id":"8844c0b8d7fffff-1397f7183ffcaae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8d6d1933-13b776cf638be23c","8f44c0b8d612019-13df770c0e75e001"]},"geometry":{"type":"LineString","coordinates":[[-83.58710400000001,32.855522],[-83.587092,32.856883],[-83.58710500000001,32.857349],[-83.587142,32.857902],[-83.58720100000001,32.858527]]},"id":"8844c0b8d7fffff-17ff770335456f45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8d6d1933-13b776cf638be23c","8f44c0b8d6dea34-13bf76eea0c3a28c"]},"geometry":{"type":"LineString","coordinates":[[-83.58720100000001,32.858527],[-83.587219,32.858804],[-83.587213,32.858902],[-83.587197,32.858994],[-83.587151,32.859157]]},"id":"8944c0b8d6fffff-13fff6cfa3399a62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8d6dea34-13bf76eea0c3a28c","8f44c0b8d6da612-179f77fe8c789772"]},"geometry":{"type":"LineString","coordinates":[[-83.587151,32.859157],[-83.587085,32.859271],[-83.587022,32.859358],[-83.58700300000001,32.859383],[-83.58677,32.859667],[-83.58671600000001,32.859741]]},"id":"8a44c0b8d6dffff-17f7f7725a8d9dd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b8d6da612-179f77fe8c789772","8f44c0b89d73092-17f778c9a6bb8fdf"]},"geometry":{"type":"LineString","coordinates":[[-83.58671600000001,32.859741],[-83.58662600000001,32.859895],[-83.586557,32.860045],[-83.586511,32.860174],[-83.586471,32.860331],[-83.586448,32.860461],[-83.58642400000001,32.860639],[-83.586391,32.860912]]},"id":"8844c0b89dfffff-17fff8823ff48b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b899292b4-17d7e24d2e300b8d","8f44c0b8992b296-17b7e389a07d4c69"]},"geometry":{"type":"LineString","coordinates":[[-83.5956014,32.8606506],[-83.59536800000001,32.860704000000005],[-83.595095,32.860785]]},"id":"8a44c0b8992ffff-17ff62ec0ef88344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5941823,32.861076600000004]},"id":"8f44c0b8990a92b-13dfe5c411a4191c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8992b296-17b7e389a07d4c69","8f44c0b8990a92b-13dfe5c411a4191c"]},"geometry":{"type":"LineString","coordinates":[[-83.595095,32.860785],[-83.594527,32.860959],[-83.5941823,32.861076600000004]]},"id":"8944c0b8993ffff-17ffe4a78bb9a425"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8991b158-13d7e8570f31b3b2","8f44c0b8990a92b-13dfe5c411a4191c"]},"geometry":{"type":"LineString","coordinates":[[-83.5941823,32.861076600000004],[-83.59406700000001,32.861116],[-83.59362800000001,32.861272],[-83.59312800000001,32.861478000000005]]},"id":"8944c0b8993ffff-13d7e70f46f6588f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89da5af1-13d7a1c50becda3f","8f44c0b89dad421-17b7a11e255816c0"]},"geometry":{"type":"LineString","coordinates":[[-83.582712,32.858989],[-83.582797,32.859116],[-83.582907,32.859319],[-83.58294000000001,32.859397],[-83.58297,32.859515],[-83.58298,32.859614],[-83.58297900000001,32.859985]]},"id":"8944c0b89dbffff-17ffd14844a30c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89dad421-17b7a11e255816c0","8f44c0b89c368d4-17bfe12a0fcf2d25"]},"geometry":{"type":"LineString","coordinates":[[-83.58297900000001,32.859985],[-83.58296,32.860791]]},"id":"8944c0b89dbffff-17bf8124121c4c27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d616c90-13d7772d264678fb","8f44c0b8d6ae5b1-13dff9172b12943d"]},"geometry":{"type":"LineString","coordinates":[[-83.587051,32.85492],[-83.58663700000001,32.855474],[-83.586267,32.85595]]},"id":"8844c0b8d7fffff-139f7820afb39c32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d6ae5b1-13dff9172b12943d","8f44c0b8d69d68e-1797fbd64709064a"]},"geometry":{"type":"LineString","coordinates":[[-83.586267,32.85595],[-83.585936,32.856368],[-83.585638,32.856732],[-83.585142,32.857273]]},"id":"8944c0b8d6bffff-17ff7a6fa7533163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b89da5af1-13d7a1c50becda3f","8f44c0b8d69d68e-1797fbd64709064a"]},"geometry":{"type":"LineString","coordinates":[[-83.585142,32.857273],[-83.584451,32.857889],[-83.583934,32.85828],[-83.583411,32.858612],[-83.582712,32.858989]]},"id":"8644c0b8fffffff-13d77eb2074ff2eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882dbc05-13d799cf64ea5f50","8f44c0b882dcc61-13bfb90e4922b1bb"]},"geometry":{"type":"LineString","coordinates":[[-83.57317400000001,32.864917000000005],[-83.57301600000001,32.86544],[-83.57292600000001,32.865647],[-83.57289300000001,32.865713],[-83.57286500000001,32.865748]]},"id":"8a44c0b882dffff-13d7b963b21403af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b882dbc05-13d799cf64ea5f50","8f44c0b882dbc53-13f799cba86a19aa"]},"geometry":{"type":"LineString","coordinates":[[-83.57286500000001,32.865748],[-83.572871,32.8658]]},"id":"8c44c0b882dbdff-13d7d9cd8a9c8c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8959bd04-13bff3a8d2e988d2","8f44c0b8959a998-1397b44d6592fd60"]},"geometry":{"type":"LineString","coordinates":[[-83.57512100000001,32.867697],[-83.575308,32.867859],[-83.575353,32.867913],[-83.57538430000001,32.867959]]},"id":"8a44c0b8959ffff-13d7b3f6f2c3ed8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8959bd04-13bff3a8d2e988d2","8f44c0b8959bd71-13d7938f77813962"]},"geometry":{"type":"LineString","coordinates":[[-83.57538430000001,32.867959],[-83.5754249,32.868003200000004]]},"id":"8c44c0b8959bdff-13bfb39c2232f9b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5243868,32.8509303]},"id":"8f44c0b9d60acd1-179f702a4669d991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b9d60acd1-179f702a4669d991","8f44c0b9d39d21d-13d8602b1d517c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.53093910000001,32.8493958],[-83.53008910000001,32.849756500000005],[-83.52936360000001,32.8500279],[-83.52896910000001,32.8501539],[-83.5285241,32.850278800000005],[-83.5277657,32.850449000000005],[-83.5268382,32.8505811],[-83.5259893,32.850702600000005],[-83.5243868,32.8509303]]},"id":"8744c0b9dffffff-17be880db65f4699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e2c6c34-13ffe383a979c226","8f44c0b8a925404-13dfc81b470ac1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.555783,32.847991],[-83.555543,32.847997],[-83.55468400000001,32.84803],[-83.554491,32.848041],[-83.554325,32.848061],[-83.554084,32.848098],[-83.55390200000001,32.848142]]},"id":"8844c0b8e3fffff-1397c5d1ac1c82cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8a925493-13dfc85d83c606d6","8f44c0b8a925404-13dfc81b470ac1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.55390200000001,32.848142],[-83.553796,32.848174]]},"id":"8a44c0b8a927fff-13d7c83c684c25d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8a925493-13dfc85d83c606d6","8f44c0b8a933235-13b7ec21e6154ad3"]},"geometry":{"type":"LineString","coordinates":[[-83.553796,32.848174],[-83.55225300000001,32.848723]]},"id":"8944c0b8a93ffff-139fda3fb023954f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8a933640-13d7ec7969fd1536","8f44c0b8a933235-13b7ec21e6154ad3"]},"geometry":{"type":"LineString","coordinates":[[-83.55225300000001,32.848723],[-83.552113,32.848779]]},"id":"8b44c0b8a933fff-13d7ec4da2553974"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5503942,32.8493258]},"id":"8f44c0b8a9a1413-13bff0aba6ef3636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8a933640-13d7ec7969fd1536","8f44c0b8a9a1413-13bff0aba6ef3636"]},"geometry":{"type":"LineString","coordinates":[[-83.552113,32.848779],[-83.551844,32.848878],[-83.551215,32.849106],[-83.55078300000001,32.849241],[-83.55066500000001,32.849275],[-83.550493,32.84931],[-83.5503942,32.8493258]]},"id":"8844c0b8a9fffff-1397de8e2facbd6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8a9b1359-13d7d3000347f231","8f44c0b8a9a1413-13bff0aba6ef3636"]},"geometry":{"type":"LineString","coordinates":[[-83.5503942,32.8493258],[-83.550324,32.849337000000006],[-83.550145,32.849354000000005],[-83.550058,32.849359],[-83.549698,32.849379],[-83.54944,32.849386]]},"id":"8944c0b8a9bffff-13d7f1d57e4c8cb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54836300000001,32.846544]},"id":"8f44c0b8e6e585e-17f7d5a12058f75d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e65281c-179ff4dce568bdbf","8f44c0b8e6e585e-17f7d5a12058f75d"]},"geometry":{"type":"LineString","coordinates":[[-83.54836300000001,32.846544],[-83.54867700000001,32.846817]]},"id":"8844c0b8e7fffff-17b7d53f0e6ab53e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e65281c-179ff4dce568bdbf","8f44c0b8e6516ee-17f7d34a6b7fa76d"]},"geometry":{"type":"LineString","coordinates":[[-83.54867700000001,32.846817],[-83.549321,32.847366]]},"id":"8a44c0b8e657fff-17bff413acf120f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e6516ee-17f7d34a6b7fa76d","8f44c0b8e65d790-13bff1be21e1236f"]},"geometry":{"type":"LineString","coordinates":[[-83.549321,32.847366],[-83.54995500000001,32.847915]]},"id":"8944c0b8e67ffff-179fd2844f6b8ec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e04bc2d-13bfe3524eef5ab7","8f44c0b8e333912-13d7ffcbc01fbf5f"]},"geometry":{"type":"LineString","coordinates":[[-83.55730600000001,32.841602],[-83.555862,32.841537]]},"id":"8844c0b8e3fffff-13bff18f072181cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e04bc2d-13bfe3524eef5ab7","8f44c0b8e059483-1397c5e0a1c877cf"]},"geometry":{"type":"LineString","coordinates":[[-83.555862,32.841537],[-83.555316,32.841513],[-83.554815,32.841478]]},"id":"8944c0b8e07ffff-139fd4999c3145f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0e86c5-17ffd99cb8ce1858","8f44c0b8e059483-1397c5e0a1c877cf"]},"geometry":{"type":"LineString","coordinates":[[-83.554815,32.841478],[-83.55434600000001,32.841408],[-83.5532853,32.8412297]]},"id":"8844c0b8e1fffff-13bfc7beff490115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0e86c5-17ffd99cb8ce1858","8f44c0b8e0eaa6b-17dfc9de8b3d85f5"]},"geometry":{"type":"LineString","coordinates":[[-83.5532853,32.8412297],[-83.55318000000001,32.841212]]},"id":"8a44c0b8e0effff-17f7d9bd9aad24f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d4c0640-139fff02c07a12e6","8f44c0b8d4f26c9-17d7a1c0aaed87c8"]},"geometry":{"type":"LineString","coordinates":[[-83.583842,32.851118],[-83.58367100000001,32.850991],[-83.58349100000001,32.850842],[-83.58330000000001,32.850668],[-83.582902,32.850307],[-83.58271900000001,32.850181]]},"id":"8944c0b8d4fffff-17f7f061864a004d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d49c98d-13ffe64b29ad479b","8f44c0b8d4f26c9-17d7a1c0aaed87c8"]},"geometry":{"type":"LineString","coordinates":[[-83.58271900000001,32.850181],[-83.58255700000001,32.850021000000005],[-83.58223600000001,32.849787],[-83.58196500000001,32.849609],[-83.581452,32.849325],[-83.58125700000001,32.849217],[-83.580859,32.849019000000006]]},"id":"8844c0b8d5fffff-17bff3f305b1dc4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d49c98d-13ffe64b29ad479b","8f44c0b8d49639a-13d7d9163bfbdbad"]},"geometry":{"type":"LineString","coordinates":[[-83.580859,32.849019000000006],[-83.580246,32.848666],[-83.57982100000001,32.848405],[-83.5797149,32.8483389]]},"id":"8944c0b8d4bffff-139f97b2415b519a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8c9324-179ef83446d668db","8f44c0b1a8eb6ca-17f7f82fe3250b59"]},"geometry":{"type":"LineString","coordinates":[[-83.65216600000001,32.814891],[-83.65217,32.814482000000005],[-83.652173,32.814191]]},"id":"8a44c0b1a8cffff-17d6f83213c8c66f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8eb7ad-1796f82f4d20fae1","8f44c0b1a8eb6ca-17f7f82fe3250b59"]},"geometry":{"type":"LineString","coordinates":[[-83.652173,32.814191],[-83.652174,32.814059]]},"id":"8c44c0b1a8eb7ff-17bef82f9002d196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a959092-1797f1b5c8dd4836","8f44c0b1a82b244-17fed57de04888b0"]},"geometry":{"type":"LineString","coordinates":[[-83.653277,32.811134],[-83.653391,32.811109],[-83.653971,32.811006],[-83.65420900000001,32.810982],[-83.65449000000001,32.810966],[-83.654826,32.810965]]},"id":"8844c0b1a9fffff-17b6d39be533488d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e91824c-17fec998ed746dcf","8f44c0b1e9037b0-13bec8e948eddb08"]},"geometry":{"type":"LineString","coordinates":[[-83.65843000000001,32.786682],[-83.658332,32.786945],[-83.65814900000001,32.78737]]},"id":"8944c0b1e93ffff-1396c93e9e5c40ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e91824c-17fec998ed746dcf","8f44c0b1e835bb5-17deca38e057e842"]},"geometry":{"type":"LineString","coordinates":[[-83.65814900000001,32.78737],[-83.658043,32.78763],[-83.657893,32.787962]]},"id":"8844c0b1e9fffff-17b6c9e73d412a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e835231-17d7ea5e65292437","8f44c0b1e835bb5-17deca38e057e842"]},"geometry":{"type":"LineString","coordinates":[[-83.657893,32.787962],[-83.657848,32.788038],[-83.657835,32.788071],[-83.657831,32.788103],[-83.65783300000001,32.788153]]},"id":"8b44c0b1e835fff-1797da539e89e7d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e835231-17d7ea5e65292437","8f44c0b1e802503-1396cbe1488e41df"]},"geometry":{"type":"LineString","coordinates":[[-83.65783300000001,32.788153],[-83.657776,32.788215],[-83.657554,32.788649],[-83.657418,32.788900000000005],[-83.65727700000001,32.789147],[-83.65721400000001,32.789248]]},"id":"8944c0b1e83ffff-17befb207c5556e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1139aca6-17f6e75f8eb41a6e","8f44c0b1139314e-1397e7698433ac03"]},"geometry":{"type":"LineString","coordinates":[[-83.65904400000001,32.780451],[-83.659062,32.780724],[-83.65906000000001,32.781041]]},"id":"8944c0b113bffff-17bee7613763fe50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1139aca6-17f6e75f8eb41a6e","8f44c0b112b3baa-13fec781ecd9b5f3"]},"geometry":{"type":"LineString","coordinates":[[-83.65906000000001,32.781041],[-83.659052,32.78159],[-83.65904,32.781865],[-83.659019,32.782139],[-83.65900400000001,32.782413000000005],[-83.65900500000001,32.78248]]},"id":"8844c0b113fffff-17bec76d259f40cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.642094,32.793649]},"id":"8f44c0b1e5ab69b-13bef0cb4ba4e731"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e513421-13deeef72de4bb10","8f44c0b1e5ab69b-13bef0cb4ba4e731"]},"geometry":{"type":"LineString","coordinates":[[-83.642094,32.793649],[-83.64220800000001,32.793615],[-83.64228100000001,32.793577],[-83.642393,32.793509],[-83.642436,32.793464],[-83.642492,32.793366],[-83.642616,32.793073],[-83.642746,32.792797],[-83.642804,32.792661],[-83.642843,32.792461]]},"id":"8844c0b1e5fffff-13feefa96e0a4219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b132490d9-17beeee96980f47f","8f44c0b1e513421-13deeef72de4bb10"]},"geometry":{"type":"LineString","coordinates":[[-83.642843,32.792461],[-83.642865,32.79139]]},"id":"8944c0b1e53ffff-179ffef0462abb56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1acd61ab-13f7f582c132b73d","8f44c0b1a52cb13-13fff5980f09ae60"]},"geometry":{"type":"LineString","coordinates":[[-83.640128,32.813004],[-83.64015,32.812450000000005],[-83.640162,32.812137]]},"id":"8744c0b1affffff-13f6f58d539a60f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1acd61ab-13f7f582c132b73d","8f44c0b1ac8d4a0-17d6f56ec1f55326"]},"geometry":{"type":"LineString","coordinates":[[-83.640162,32.812137],[-83.64019400000001,32.811293]]},"id":"8844c0b1adfffff-17dff578c4417c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402625,32.8096844]},"id":"8f44c0b1aca140c-13f6f543f8af5363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aca140c-13f6f543f8af5363","8f44c0b1ac8d4a0-17d6f56ec1f55326"]},"geometry":{"type":"LineString","coordinates":[[-83.64019400000001,32.811293],[-83.6402625,32.8096844]]},"id":"8944c0b1acbffff-17dff5595b7d680b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402884,32.8090776]},"id":"8f44c0b1aca4204-13fff533cc00d4e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aca140c-13f6f543f8af5363","8f44c0b1aca4204-13fff533cc00d4e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6402625,32.8096844],[-83.6402884,32.8090776]]},"id":"8a44c0b1aca7fff-13b7f53bea540642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad8a76a-13def527b1b3c902","8f44c0b1aca4204-13fff533cc00d4e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6402884,32.8090776],[-83.64030770000001,32.808624300000005]]},"id":"8844c0b1adfffff-13dff52dbcd79821"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad8a76a-13def527b1b3c902","8f44c0b1ad8e548-17fff5188ce57891"]},"geometry":{"type":"LineString","coordinates":[[-83.64030770000001,32.808624300000005],[-83.640332,32.808053]]},"id":"8a44c0b1ad8ffff-179ff52028adb399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ad8e548-17fff5188ce57891","8f44c0badb72795-179ff44c2daa9c9f"]},"geometry":{"type":"LineString","coordinates":[[-83.640332,32.808053],[-83.640659,32.800358]]},"id":"8644c0b1fffffff-1796f4b25ff42870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64081800000001,32.798566]},"id":"8f44c0badb2cc4d-17bff3e8c9e92057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0badb72795-179ff44c2daa9c9f","8f44c0badb2cc4d-17bff3e8c9e92057"]},"geometry":{"type":"LineString","coordinates":[[-83.640659,32.800358],[-83.640668,32.800024],[-83.640696,32.799418],[-83.640713,32.799217],[-83.640724,32.799087],[-83.640763,32.798848],[-83.64081800000001,32.798566]]},"id":"8844c0badbfffff-13fff42cb818c6f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e4d270d-17b7f3bb0b63a5e7","8f44c0badb2cc4d-17bff3e8c9e92057"]},"geometry":{"type":"LineString","coordinates":[[-83.64081800000001,32.798566],[-83.6408912,32.798312]]},"id":"8944c0badb3ffff-17f6f3d1effe68d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e4d2d4d-179ff39000dcf95c","8f44c0b1e4d270d-17b7f3bb0b63a5e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6408912,32.798312],[-83.64096,32.798073]]},"id":"8b44c0b1e4d2fff-17d6f3a586673b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e4d2d4d-179ff39000dcf95c","8f44c0b1e4113b3-13dfef6ca267fd06"]},"geometry":{"type":"LineString","coordinates":[[-83.64096,32.798073],[-83.641074,32.797752],[-83.641191,32.797482],[-83.64137500000001,32.797114],[-83.64164500000001,32.796674],[-83.641929,32.796283],[-83.642069,32.796109],[-83.642195,32.79596],[-83.642352,32.795794],[-83.642655,32.795512]]},"id":"8844c0b1e5fffff-13bff1c402bee183"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e411b30-17f7eeff48e53343","8f44c0b1e4113b3-13dfef6ca267fd06"]},"geometry":{"type":"LineString","coordinates":[[-83.642655,32.795512],[-83.64283,32.79535]]},"id":"8b44c0b1e411fff-139eef35fe1ed305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1325a591-179ff4bfa30121f8","8f44c0b1e5ab69b-13bef0cb4ba4e731"]},"geometry":{"type":"LineString","coordinates":[[-83.642094,32.793649],[-83.64199,32.793293000000006],[-83.641847,32.792983],[-83.64168500000001,32.792703],[-83.64146600000001,32.792403],[-83.641256,32.792102],[-83.640997,32.791753],[-83.640839,32.791528],[-83.64066000000001,32.79126],[-83.64058800000001,32.791131],[-83.6404742,32.790911200000004]]},"id":"8544c0b3fffffff-13d7f2a55acafb13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64035220000001,32.7906318]},"id":"8f44c0b132ed014-17f6f50be46fb841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b132ed014-17f6f50be46fb841","8f44c0b1325a591-179ff4bfa30121f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6404742,32.790911200000004],[-83.64045700000001,32.790878],[-83.64035220000001,32.7906318]]},"id":"8a44c0b132effff-17bef4e6799a9ff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400486,32.789552]},"id":"8f44c0b132e5b45-13bef5c9a5abe846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b132ed014-17f6f50be46fb841","8f44c0b132e5b45-13bef5c9a5abe846"]},"geometry":{"type":"LineString","coordinates":[[-83.64035220000001,32.7906318],[-83.640282,32.790467],[-83.640185,32.790166],[-83.640133,32.789972],[-83.6400486,32.789552]]},"id":"8844c0b133fffff-1397f5780765392a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b132359a4-1396f76a421d82d6","8f44c0b132e5b45-13bef5c9a5abe846"]},"geometry":{"type":"LineString","coordinates":[[-83.6400486,32.789552],[-83.639525,32.786948],[-83.63938200000001,32.786205]]},"id":"8844c0b133fffff-17bef69b7aa6c574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b133666a4-13d6ee996bd28161","8f44c0b13adba55-17deee8ceebba3d2"]},"geometry":{"type":"LineString","coordinates":[[-83.642993,32.785697],[-83.64301300000001,32.785303]]},"id":"8944c0b1337ffff-17dfee932512fc12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13adc102-17feee7de6ae523b","8f44c0b13adba55-17deee8ceebba3d2"]},"geometry":{"type":"LineString","coordinates":[[-83.64301300000001,32.785303],[-83.643037,32.784321]]},"id":"8a44c0b13adffff-17bfee85632fda8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13a14da1-139eee2d411cea07","8f44c0b13adc102-17feee7de6ae523b"]},"geometry":{"type":"LineString","coordinates":[[-83.643037,32.784321],[-83.6430527,32.783799800000004],[-83.6430538,32.783765200000005],[-83.64316600000001,32.780048]]},"id":"8844c0b13bfffff-17d7fe559f8ecb85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6882437,32.8570307]},"id":"8f44c0a2635a574-17feb01fba7289e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2635bd84-17fe7f43e6a70a56","8f44c0a2635a574-17feb01fba7289e7"]},"geometry":{"type":"LineString","coordinates":[[-83.68859540000001,32.8572135],[-83.6882437,32.8570307]]},"id":"8b44c0a2635afff-17b77fb1cd2e8400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2622d086-17df80e00e3f5b15","8f44c0a2635a574-17feb01fba7289e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6882437,32.8570307],[-83.688225,32.857021],[-83.68814280000001,32.8569686],[-83.6880668,32.856909900000005],[-83.6879976,32.8568456],[-83.68793600000001,32.856776]]},"id":"8844c0a263fffff-17b6b084e3096cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2622d086-17df80e00e3f5b15","8f44c0a2622ca84-179ec144accf022a"]},"geometry":{"type":"LineString","coordinates":[[-83.68793600000001,32.856776],[-83.68788280000001,32.856702600000006],[-83.687838,32.856625300000005],[-83.687802,32.8565449],[-83.687775,32.856462]]},"id":"8a44c0a2622ffff-17fea118c032296d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233977,32.8479839]},"id":"8f44c0a3632e0d8-13f7fe7070772069"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632a81c-13ff5e6c72498151","8f44c0a3632e0d8-13f7fe7070772069"]},"geometry":{"type":"LineString","coordinates":[[-83.6234041,32.8482021],[-83.6233977,32.8479839]]},"id":"8a44c0a3632ffff-13bf3e6e7c80225f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62339340000001,32.8478341]},"id":"8f44c0a3632e1a0-139f5e7328b4f023"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632e1a0-139f5e7328b4f023","8f44c0a3632e0d8-13f7fe7070772069"]},"geometry":{"type":"LineString","coordinates":[[-83.6233977,32.8479839],[-83.62339340000001,32.8478341]]},"id":"8b44c0a3632efff-13b73e71d53ca3de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62338770000001,32.8476388]},"id":"8f44c0a3632168e-179f5e76b5d6eded"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632168e-179f5e76b5d6eded","8f44c0a3632e1a0-139f5e7328b4f023"]},"geometry":{"type":"LineString","coordinates":[[-83.62339340000001,32.8478341],[-83.62338770000001,32.8476388]]},"id":"8944c0a3633ffff-17df5e74efcf23f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632168e-179f5e76b5d6eded","8f44c0a3632140d-17b7fe79b647922e"]},"geometry":{"type":"LineString","coordinates":[[-83.62338770000001,32.8476388],[-83.62338290000001,32.847475]]},"id":"8b44c0a36321fff-17df1e7834d83eef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.623378,32.847307]},"id":"8f44c0a36321cb2-17bffe7cc079121f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36321cb2-17bffe7cc079121f","8f44c0a3632140d-17b7fe79b647922e"]},"geometry":{"type":"LineString","coordinates":[[-83.62338290000001,32.847475],[-83.623378,32.847307]]},"id":"8b44c0a36321fff-17f77e7b3169c293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6220972,32.8473139]},"id":"8f44c0a36331555-17d7319d42a67228"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36331555-17d7319d42a67228","8f44c0a36321cb2-17bffe7cc079121f"]},"geometry":{"type":"LineString","coordinates":[[-83.623378,32.847307],[-83.6220972,32.8473139]]},"id":"8944c0a3633ffff-17d7300d0264e80a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36331555-17d7319d42a67228","8f44c0a3633178d-17b7619b5ffcb083"]},"geometry":{"type":"LineString","coordinates":[[-83.6220972,32.8473139],[-83.6221003,32.8474694]]},"id":"8b44c0a36331fff-17f7f19c5e45849b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6221033,32.847621600000004]},"id":"8f44c0a36306d41-1797a1997000780e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36306d41-1797a1997000780e","8f44c0a3633178d-17b7619b5ffcb083"]},"geometry":{"type":"LineString","coordinates":[[-83.6221003,32.8474694],[-83.6221033,32.847621600000004]]},"id":"8944c0a3633ffff-17d7f19a63841845"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36306d41-1797a1997000780e","8f44c0a36302b9c-13ffe1925f27ae34"]},"geometry":{"type":"LineString","coordinates":[[-83.6221033,32.847621600000004],[-83.62211470000001,32.8482014]]},"id":"8a44c0a36307fff-13bfb195eb189c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.593023,32.861245100000005]},"id":"8f44c0b8991bd23-13d77898a28c39bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991bd23-13d77898a28c39bd","8f44c0b8991b158-13d7e8570f31b3b2"]},"geometry":{"type":"LineString","coordinates":[[-83.59312800000001,32.861478000000005],[-83.593023,32.861245100000005]]},"id":"8b44c0b8991bfff-139f6877da623615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5927573,32.860655900000005]},"id":"8f44c0b8991ecc9-17d7f93eb5788163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991bd23-13d77898a28c39bd","8f44c0b8991ecc9-17d7f93eb5788163"]},"geometry":{"type":"LineString","coordinates":[[-83.593023,32.861245100000005],[-83.5927573,32.860655900000005]]},"id":"8a44c0b8991ffff-139f78ebbf60aeeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991ecc9-17d7f93eb5788163","8f44c0b8991e483-1797f9af28b48332"]},"geometry":{"type":"LineString","coordinates":[[-83.5927573,32.860655900000005],[-83.59257740000001,32.8607243]]},"id":"8a44c0b8991ffff-17ff7976f727a072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899ad008-17dffa307af1b151","8f44c0b8991e483-1797f9af28b48332"]},"geometry":{"type":"LineString","coordinates":[[-83.59257740000001,32.8607243],[-83.5923705,32.8608411]]},"id":"8b44c0b899adfff-17b779efd7181a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899ad695-139ffaae38d28c34","8f44c0b899ad008-17dffa307af1b151"]},"geometry":{"type":"LineString","coordinates":[[-83.5923705,32.8608411],[-83.59216930000001,32.8609679]]},"id":"8b44c0b899adfff-17f77a6f59d3dbbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59194640000001,32.8611717]},"id":"8f44c0b899a82d9-139f7b39881a0ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899a82d9-139f7b39881a0ec9","8f44c0b899ad695-139ffaae38d28c34"]},"geometry":{"type":"LineString","coordinates":[[-83.59216930000001,32.8609679],[-83.5921397,32.860983600000004],[-83.59194640000001,32.8611717]]},"id":"8a44c0b899affff-13d7eaf560ec5c79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8998d903-13b77bb31dca026c","8f44c0b899a82d9-139f7b39881a0ec9"]},"geometry":{"type":"LineString","coordinates":[[-83.59194640000001,32.8611717],[-83.59185000000001,32.861310200000005],[-83.59178730000001,32.8614343],[-83.5917519,32.8615987]]},"id":"8944c0b899bffff-139f7b8291d54108"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5917216,32.8617397]},"id":"8f44c0b8998d8d9-13ff7bc60f317964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8998d903-13b77bb31dca026c","8f44c0b8998d8d9-13ff7bc60f317964"]},"geometry":{"type":"LineString","coordinates":[[-83.5917519,32.8615987],[-83.5917216,32.8617397]]},"id":"8c44c0b8998d9ff-13df6bbc99fafd18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8998d04e-13d7ebd5ef8f499c","8f44c0b8998d8d9-13ff7bc60f317964"]},"geometry":{"type":"LineString","coordinates":[[-83.5917216,32.8617397],[-83.5916962,32.861857400000005]]},"id":"8b44c0b8998dfff-13b76bcdf705103c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6865717,32.9043605]},"id":"8f44c0a051a5251-139fd434bee4e2fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0511258b-13d6e42bcdc908bd","8f44c0a051a5251-139fd434bee4e2fa"]},"geometry":{"type":"LineString","coordinates":[[-83.686586,32.9044486],[-83.6861255,32.9044905],[-83.6860985,32.904309600000005],[-83.68648590000001,32.9042799],[-83.68652800000001,32.904294],[-83.6865717,32.9043605]]},"id":"8a44c0a051a7fff-1397f4d51e0a52bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0511258b-13d6e42bcdc908bd","8f44c0a051a5251-139fd434bee4e2fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6865717,32.9043605],[-83.686586,32.9044486]]},"id":"8a44c0a051a7fff-13b6e4304f0e93da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6851709,32.9043622]},"id":"8f44c0a051b1862-139ee7a037a87f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68559850000001,32.9039012]},"id":"8f44c0a051a61a9-13fec694f0f35e3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051a61a9-13fec694f0f35e3c","8f44c0a051b1862-139ee7a037a87f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6851709,32.9043622],[-83.68487350000001,32.9042417],[-83.68459630000001,32.9041416],[-83.6844875,32.904086500000005],[-83.6844063,32.904006700000004],[-83.6844693,32.9037725],[-83.6847068,32.903494800000004],[-83.68482,32.903439],[-83.68522420000001,32.9033998],[-83.6856767,32.9037457],[-83.68569570000001,32.9037986],[-83.68567320000001,32.9038334],[-83.68559850000001,32.9039012]]},"id":"8744c0a05ffffff-13b7d823eb329f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051a61a9-13fec694f0f35e3c","8f44c0a051b1862-139ee7a037a87f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.68559850000001,32.9039012],[-83.6851709,32.9043622]]},"id":"8944c0a051bffff-13fed71a9d306b07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051b1862-139ee7a037a87f7b","8f44c0a051b10e1-13ffe7fc782a8818"]},"geometry":{"type":"LineString","coordinates":[[-83.6851709,32.9043622],[-83.68502330000001,32.9045214]]},"id":"8b44c0a051b1fff-13bea7ce576aeadd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6829548,32.9025827]},"id":"8f44c0a05cc4335-17b6bd0949a3a111"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05cc5cd2-179ebcb9f9483d62","8f44c0a05cc4335-17b6bd0949a3a111"]},"geometry":{"type":"LineString","coordinates":[[-83.6830817,32.9027491],[-83.6829548,32.9025827]]},"id":"8a44c0a05cc7fff-17f6bce1a436f816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.682626,32.902750600000005]},"id":"8f44c0a05cc0da8-179fadd6c7252cf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05cc0da8-179fadd6c7252cf8","8f44c0a05cc4335-17b6bd0949a3a111"]},"geometry":{"type":"LineString","coordinates":[[-83.6829548,32.9025827],[-83.68293630000001,32.902558400000004],[-83.6828941,32.9024699],[-83.6825883,32.9020576],[-83.68249800000001,32.902037400000005],[-83.68215000000001,32.9022359],[-83.6821575,32.9023004],[-83.68228710000001,32.902464800000004],[-83.6824799,32.9027532],[-83.6825582,32.902764600000005],[-83.682626,32.902750600000005]]},"id":"8944c0a05cfffff-17b6de260ed2646f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05cc0da8-179fadd6c7252cf8","8f44c0a05cc4335-17b6bd0949a3a111"]},"geometry":{"type":"LineString","coordinates":[[-83.682626,32.902750600000005],[-83.6829548,32.9025827]]},"id":"8a44c0a05cc7fff-17f6bd70093195f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c52a68-17ffd91caa9f510f","8f44c0a05c52d33-17b799f3b7db5c63"]},"geometry":{"type":"LineString","coordinates":[[-83.68421810000001,32.901970500000004],[-83.6843525,32.902055600000004],[-83.6844897,32.9021527],[-83.6845622,32.9022645]]},"id":"8b44c0a05c52fff-1796d97f3d484145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05cecd1b-17dfea40234cb521","8f44c0a05c52a68-17ffd91caa9f510f"]},"geometry":{"type":"LineString","coordinates":[[-83.6845622,32.9022645],[-83.68409580000001,32.902440600000006]]},"id":"8844c0a05dfffff-17b6e9ae6adba24c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05ce1b85-17ff8a8edb876976","8f44c0a05cecd1b-17dfea40234cb521"]},"geometry":{"type":"LineString","coordinates":[[-83.68409580000001,32.902440600000006],[-83.68396990000001,32.9022712]]},"id":"8944c0a05cfffff-17b6fa677a658709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68422550000001,32.9040778]},"id":"8f44c0a051b2983-13dea9ef145d644c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6844262,32.903210200000004]},"id":"8f44c0a05ce9d6c-17bee971a76da4c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051b2983-13dea9ef145d644c","8f44c0a05ce9d6c-17bee971a76da4c2"]},"geometry":{"type":"LineString","coordinates":[[-83.68422550000001,32.9040778],[-83.6837776,32.904014700000005],[-83.6837326,32.9039851],[-83.6837071,32.9039242],[-83.683907,32.9031576],[-83.68395600000001,32.903086800000004],[-83.68402850000001,32.9030654],[-83.6844184,32.9031444],[-83.6844262,32.903210200000004]]},"id":"8844c0a05dfffff-139eda9317ce9167"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051b2983-13dea9ef145d644c","8f44c0a05ce9d6c-17bee971a76da4c2"]},"geometry":{"type":"LineString","coordinates":[[-83.6844262,32.903210200000004],[-83.68422550000001,32.9040778]]},"id":"8844c0a05dfffff-13df89b058a529a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a051b2983-13dea9ef145d644c","8f44c0a051b2023-13be9a06b793a870"]},"geometry":{"type":"LineString","coordinates":[[-83.68422550000001,32.9040778],[-83.68418770000001,32.904240900000005]]},"id":"8b44c0a051b2fff-139f99faeb42d20f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68329130000001,32.9039815]},"id":"8f44c0a05cc8185-139efc36f5b082ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cc8185-139efc36f5b082ce","8f44c0a05cc845a-13df9c81692f88ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6831722,32.9040849],[-83.68329130000001,32.9039815]]},"id":"8b44c0a05cc8fff-13becc5c3f405184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68335400000001,32.9039881]},"id":"8f44c0a05cc810e-13b69c0fc38fba6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cc810e-13b69c0fc38fba6d","8f44c0a05cc8185-139efc36f5b082ce"]},"geometry":{"type":"LineString","coordinates":[[-83.68329130000001,32.9039815],[-83.6831698,32.9038581],[-83.6829915,32.9036755],[-83.6829288,32.903562],[-83.6829014,32.9034106],[-83.68288960000001,32.9032214],[-83.682917,32.9031606],[-83.6830209,32.903126],[-83.683256,32.903131],[-83.6833423,32.903177],[-83.68339320000001,32.903239500000005],[-83.68355000000001,32.9036114],[-83.6835872,32.9037134],[-83.683548,32.9038351],[-83.6834657,32.9039256],[-83.68335400000001,32.9039881]]},"id":"8944c0a05cfffff-17feac5e753eecb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cc810e-13b69c0fc38fba6d","8f44c0a05cc8185-139efc36f5b082ce"]},"geometry":{"type":"LineString","coordinates":[[-83.68335400000001,32.9039881],[-83.68329130000001,32.9039815]]},"id":"8c44c0a05cc81ff-139e8c23536b2541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6832095,32.904316200000004]},"id":"8f44c0a05ccbd48-13ffac6a19ed0344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ccbd48-13ffac6a19ed0344","8f44c0a05cc8760-13fe9c2755ab96ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6833163,32.904132100000005],[-83.6832095,32.904316200000004]]},"id":"8a44c0a05ccffff-13b6ac48bef65a60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68335950000001,32.9043811]},"id":"8f44c0a05ccb85c-1396bc0c53c4094e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ccbd48-13ffac6a19ed0344","8f44c0a05ccb85c-1396bc0c53c4094e"]},"geometry":{"type":"LineString","coordinates":[[-83.6832095,32.904316200000004],[-83.6831796,32.9043678],[-83.68316850000001,32.904450600000004],[-83.6829313,32.904693800000004],[-83.6830937,32.9048141],[-83.68315890000001,32.9048194],[-83.68322260000001,32.9047807],[-83.6833579,32.904476],[-83.68337860000001,32.9044119],[-83.68335950000001,32.9043811]]},"id":"8744c0a05ffffff-13b6fc887f6632b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05ccbd48-13ffac6a19ed0344","8f44c0a05ccb85c-1396bc0c53c4094e"]},"geometry":{"type":"LineString","coordinates":[[-83.68335950000001,32.9043811],[-83.6832095,32.904316200000004]]},"id":"8b44c0a05ccbfff-1397fc3b3b8c4ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824548,32.903244]},"id":"8f44c0a05cc3c82-17df8e41cb7d2ec7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cc3c82-17df8e41cb7d2ec7","8f44c0a05cc38b5-17df8dc9f086af37"]},"geometry":{"type":"LineString","coordinates":[[-83.6826465,32.9032336],[-83.6824548,32.903244]]},"id":"8b44c0a05cc3fff-17dece05eef7569b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824936,32.9036034]},"id":"8f44c0a05cc36d9-13b6ae2980018e5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cc3c82-17df8e41cb7d2ec7","8f44c0a05cc36d9-13b6ae2980018e5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6824548,32.903244],[-83.6823505,32.9032496],[-83.6818415,32.9036229],[-83.6820052,32.903763500000004],[-83.68247810000001,32.903620700000005],[-83.6824936,32.9036034]]},"id":"8944c0a05cfffff-139eef01c301792d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05cc3c82-17df8e41cb7d2ec7","8f44c0a05cc36d9-13b6ae2980018e5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6824936,32.9036034],[-83.6824548,32.903244]]},"id":"8944c0a05cfffff-17bfde35a9645ff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68949350000001,32.9018564]},"id":"8f44c0a05883ba3-13fe7d129b30b962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05880740-13d77d3dd7353b6f","8f44c0a05883ba3-13fe7d129b30b962"]},"geometry":{"type":"LineString","coordinates":[[-83.6894243,32.9015894],[-83.68949350000001,32.9018564]]},"id":"8a44c0a05887fff-139efd283366ce47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68881060000001,32.9018493]},"id":"8f44c0a0589cc2d-13f7febd6bf450a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05883ba3-13fe7d129b30b962","8f44c0a0589cc2d-13f7febd6bf450a9"]},"geometry":{"type":"LineString","coordinates":[[-83.68949350000001,32.9018564],[-83.68917950000001,32.901893],[-83.68910310000001,32.9018595],[-83.6890364,32.9018096],[-83.68895880000001,32.9018096],[-83.68881060000001,32.9018493]]},"id":"8944c0a058bffff-13fe7dea2d821baa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05891b43-1397fee358c5d53f","8f44c0a0589cc2d-13f7febd6bf450a9"]},"geometry":{"type":"LineString","coordinates":[[-83.68881060000001,32.9018493],[-83.6887499,32.9016861]]},"id":"8944c0a058bffff-13b6fed0515f137d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68886690000001,32.9022686]},"id":"8f44c0a0589890b-17fffe9a33c5a749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05883ba3-13fe7d129b30b962","8f44c0a0589890b-17fffe9a33c5a749"]},"geometry":{"type":"LineString","coordinates":[[-83.68949350000001,32.9018564],[-83.6896028,32.901812400000004],[-83.6896894,32.9017022],[-83.68975800000001,32.9016508],[-83.6900476,32.9016232],[-83.69010130000001,32.901669600000005],[-83.6901222,32.9017235],[-83.6901655,32.9020468],[-83.6901327,32.9021057],[-83.6900715,32.9021496],[-83.68886690000001,32.9022686]]},"id":"8944c0a058bffff-17d67c8e79716d67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05c6da62-17ff905db4793112","8f44c0a0589890b-17fffe9a33c5a749"]},"geometry":{"type":"LineString","coordinates":[[-83.68886690000001,32.9022686],[-83.6882549,32.9023137],[-83.6881788,32.902301200000004],[-83.6881445,32.9022649]]},"id":"8a44c0a0589ffff-17feff80a3300dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05c6da62-17ff905db4793112","8f44c0a0589cc2d-13f7febd6bf450a9"]},"geometry":{"type":"LineString","coordinates":[[-83.6881445,32.9022649],[-83.6881221,32.9020694],[-83.688134,32.9020217],[-83.68820120000001,32.9019904],[-83.6882803,32.9019603],[-83.68881060000001,32.9018493]]},"id":"8944c0a058bffff-17be7fc9c7779390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0589890b-17fffe9a33c5a749","8f44c0a0589cc2d-13f7febd6bf450a9"]},"geometry":{"type":"LineString","coordinates":[[-83.68881060000001,32.9018493],[-83.68886690000001,32.9022686]]},"id":"8a44c0a0589ffff-17fefeabd9438758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6894944,32.9006889]},"id":"8f44c0a058b1b60-1396fd12055d76b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a058b1b60-1396fd12055d76b0","8f44c0a058a28a3-13977c72b988da98"]},"geometry":{"type":"LineString","coordinates":[[-83.6897493,32.900465700000005],[-83.68959530000001,32.900583000000005],[-83.6894944,32.9006889]]},"id":"8b44c0a058a2fff-13dffcc523c13c7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891595,32.900440200000006]},"id":"8f44c0a058b569c-13f77de357a6cf58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a058b569c-13f77de357a6cf58","8f44c0a058b1b60-1396fd12055d76b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6894944,32.9006889],[-83.6893356,32.9008556],[-83.6892729,32.900871200000005],[-83.6892095,32.9008618],[-83.68897150000001,32.9007159],[-83.6889483,32.9006801],[-83.68896550000001,32.900641900000004],[-83.6891595,32.900440200000006]]},"id":"8944c0a058bffff-13b7fddd1e618fec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a058b569c-13f77de357a6cf58","8f44c0a058b1b60-1396fd12055d76b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6891595,32.900440200000006],[-83.6894944,32.9006889]]},"id":"8a44c0a058b7fff-13d6fd7aa13813a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0599e958-17d6fd592fed8a96","8f44c0a0599c6a3-17bf7cf0fe9b13ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6895473,32.899118800000004],[-83.6895666,32.8990346],[-83.6893806,32.8989482]]},"id":"8a44c0a0599ffff-17ff7d0f9dd3bc21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a0599e958-17d6fd592fed8a96","8f44c0a0599c6a3-17bf7cf0fe9b13ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6893806,32.8989482],[-83.6893742,32.8989452],[-83.6892516,32.8989269],[-83.68919050000001,32.8989343],[-83.6891183,32.8990817],[-83.68913260000001,32.899123],[-83.6891825,32.8991533],[-83.68939160000001,32.8992286],[-83.68946820000001,32.8992207],[-83.6895473,32.899118800000004]]},"id":"8a44c0a0599ffff-17bf7d919c2ab1bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6863015,32.8997205]},"id":"8f44c0a05d5c0a1-17b7d4dd901a547d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5c5b3-17969563019b313f","8f44c0a05d5c0a1-17b7d4dd901a547d"]},"geometry":{"type":"LineString","coordinates":[[-83.68608800000001,32.899641700000004],[-83.6862746,32.8996967],[-83.6863015,32.8997205]]},"id":"8b44c0a05d5cfff-179f951e525285bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5c0a1-17b7d4dd901a547d","8f44c0a05d5d8ac-17bed3ba17c2dba8"]},"geometry":{"type":"LineString","coordinates":[[-83.6863015,32.8997205],[-83.6863563,32.8997687],[-83.686504,32.899848],[-83.6865611,32.8998265],[-83.6866035,32.8998141],[-83.6867679,32.899911700000004]]},"id":"8a44c0a05d5ffff-17f7a44ddf213bca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6872039,32.9000016]},"id":"8f44c0a05d4e0ed-17f782a9924c43d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d4e0ed-17f782a9924c43d4","8f44c0a05d5d8ac-17bed3ba17c2dba8"]},"geometry":{"type":"LineString","coordinates":[[-83.6867679,32.899911700000004],[-83.6868841,32.8998141],[-83.6872039,32.9000016]]},"id":"8944c0a05d7ffff-17b6c33517817399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5da23-1797a363457c9171","8f44c0a05d4e0ed-17f782a9924c43d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6872039,32.9000016],[-83.68709000000001,32.9001192],[-83.68705750000001,32.9001226],[-83.6869068,32.900049800000005]]},"id":"8a44c0a05d4ffff-17969300a153a366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68676190000001,32.900114]},"id":"8f44c0a05d5d04a-17bfc3bdd281458b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5d04a-17bfc3bdd281458b","8f44c0a05d5da23-1797a363457c9171"]},"geometry":{"type":"LineString","coordinates":[[-83.6869068,32.900049800000005],[-83.68682600000001,32.900058900000005],[-83.68676190000001,32.900114]]},"id":"8b44c0a05d5dfff-1796b3939c7b4270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68659860000001,32.900313000000004]},"id":"8f44c0a05d59d69-13b7a423ed7cd9eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d59d69-13b7a423ed7cd9eb","8f44c0a05d5d04a-17bfc3bdd281458b"]},"geometry":{"type":"LineString","coordinates":[[-83.68676190000001,32.900114],[-83.6866576,32.900203600000005],[-83.68659860000001,32.900313000000004]]},"id":"8a44c0a05d5ffff-17f6c3f6a115270c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d59d69-13b7a423ed7cd9eb","8f44c0a05d591a0-13f6d445cb64db43"]},"geometry":{"type":"LineString","coordinates":[[-83.68659860000001,32.900313000000004],[-83.6865444,32.900413300000004]]},"id":"8b44c0a05d59fff-13d78434d3ac20ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d4e0ed-17f782a9924c43d4","8f44c0a05d4121a-179ec243061b3820"]},"geometry":{"type":"LineString","coordinates":[[-83.6872039,32.9000016],[-83.6874135,32.8997582],[-83.68741200000001,32.899709300000005],[-83.687368,32.899684400000005]]},"id":"8a44c0a05d4ffff-1796925a65342b1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d4032a-17b69300ea8d887d","8f44c0a05d4121a-179ec243061b3820"]},"geometry":{"type":"LineString","coordinates":[[-83.687368,32.899684400000005],[-83.68694330000001,32.899444800000005],[-83.68706420000001,32.899276900000004]]},"id":"8944c0a05d7ffff-17bff2e409f06ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d4032a-17b69300ea8d887d","8f44c0a05d5c0a1-17b7d4dd901a547d"]},"geometry":{"type":"LineString","coordinates":[[-83.68706420000001,32.899276900000004],[-83.6868568,32.8991253],[-83.68679850000001,32.8990914],[-83.68672690000001,32.899115200000004],[-83.6864702,32.899411],[-83.686394,32.8995276],[-83.68635970000001,32.8996592],[-83.6863015,32.8997205]]},"id":"8944c0a05d7ffff-17bea40b936e579f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d5c299-17b7d4bd3e284232","8f44c0a05d5d04a-17bfc3bdd281458b"]},"geometry":{"type":"LineString","coordinates":[[-83.68676190000001,32.900114],[-83.68644950000001,32.8999236],[-83.68639730000001,32.8999088],[-83.68635330000001,32.8999189]]},"id":"8a44c0a05d5ffff-17f7f43ab99ef0c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a05d59d69-13b7a423ed7cd9eb","8f44c0a05d5c299-17b7d4bd3e284232"]},"geometry":{"type":"LineString","coordinates":[[-83.68635330000001,32.8999189],[-83.6863254,32.8999253],[-83.68625150000001,32.8999848],[-83.6862308,32.9000502],[-83.68625940000001,32.9001064],[-83.68659860000001,32.900313000000004]]},"id":"8a44c0a05d5ffff-17b7f4b49db8583a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d51883-179f858ea2435ffd","8f44c0a05d4248e-17bee51137c98322"]},"geometry":{"type":"LineString","coordinates":[[-83.6862189,32.899300600000004],[-83.6860182,32.899275200000005]]},"id":"8a44c0a05d57fff-17b6f54ff0d0e297"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68617210000001,32.898536]},"id":"8f44c0a05d730a3-13d7852e7422806c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d51883-179f858ea2435ffd","8f44c0a05d730a3-13d7852e7422806c"]},"geometry":{"type":"LineString","coordinates":[[-83.6860182,32.899275200000005],[-83.68612350000001,32.8987323],[-83.68617210000001,32.898536]]},"id":"8944c0a05d7ffff-17b78560de103b4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d730a3-13d7852e7422806c","8f44c0a05d73064-13d6e4de841d6827"]},"geometry":{"type":"LineString","coordinates":[[-83.68617210000001,32.898536],[-83.6863,32.8985446]]},"id":"8c44c0a05d731ff-13d7b506853204a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6853069,32.896747600000005]},"id":"8f44c0a05d2e731-17f7c74b3fb1be29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68607340000001,32.8973402]},"id":"8f44c0a05d29012-13f7a56c284d267e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d2e731-17f7c74b3fb1be29","8f44c0a05d29012-13f7a56c284d267e"]},"geometry":{"type":"LineString","coordinates":[[-83.6853069,32.896747600000005],[-83.6857095,32.8969989],[-83.6858655,32.897221900000005],[-83.68607340000001,32.8973402]]},"id":"8a44c0a05d2ffff-13be865743e0bdcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d74d59-13d6c485d284abc7","8f44c0a05d29012-13f7a56c284d267e"]},"geometry":{"type":"LineString","coordinates":[[-83.68607340000001,32.8973402],[-83.68636070000001,32.8975037],[-83.6864419,32.897518000000005]]},"id":"8844c0a05dfffff-13b7d4fb62ce4059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6854126,32.898115700000005]},"id":"8f44c0a05d09990-13ded709294a6920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d09990-13ded709294a6920","8f44c0a05d29012-13f7a56c284d267e"]},"geometry":{"type":"LineString","coordinates":[[-83.68607340000001,32.8973402],[-83.6854126,32.898115700000005]]},"id":"8944c0a05d3ffff-13de863aaa7a7f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6859629,32.898420200000004]},"id":"8f44c0a05d722e8-139ea5b139ca66f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d09990-13ded709294a6920","8f44c0a05d722e8-139ea5b139ca66f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6854126,32.898115700000005],[-83.68526170000001,32.898291300000004],[-83.68577880000001,32.8986018],[-83.6859629,32.898420200000004]]},"id":"8844c0a05dfffff-1396f6aa41eb9924"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa94151-13b6eac5a8ad51d1","8f44c0a2aa9422d-13976a9829342765"]},"geometry":{"type":"LineString","coordinates":[[-83.7100966,32.924494200000005],[-83.71016940000001,32.9246578]]},"id":"8b44c0a2aa94fff-13f64aaeeca7a6d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71002100000001,32.924810900000004]},"id":"8f44c0a2aa90803-13f6daf4e0f541f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa9422d-13976a9829342765","8f44c0a2aa90803-13f6daf4e0f541f8"]},"geometry":{"type":"LineString","coordinates":[[-83.71016940000001,32.9246578],[-83.7101516,32.9247061],[-83.71002100000001,32.924810900000004]]},"id":"8a44c0a2aa97fff-13dedac13d5c1c8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092705,32.9250662]},"id":"8f44c0a2aa92456-17966cc9fc8b50b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa92456-17966cc9fc8b50b0","8f44c0a2aa90803-13f6daf4e0f541f8"]},"geometry":{"type":"LineString","coordinates":[[-83.71002100000001,32.924810900000004],[-83.70937640000001,32.9250308],[-83.7092705,32.9250662]]},"id":"8a44c0a2aa97fff-17d6cbdf63ad5841"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa92456-17966cc9fc8b50b0","8f44c0a2a065310-13f7cd109b04e8ff"]},"geometry":{"type":"LineString","coordinates":[[-83.7092705,32.9250662],[-83.7091575,32.9248088]]},"id":"8944c0a2a07ffff-17d7fced4b9ac51a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085584,32.925238400000005]},"id":"8f44c0a2a063145-17964e8706b4ad32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a0606c3-17975eb8f65d2db6","8f44c0a2a063145-17964e8706b4ad32"]},"geometry":{"type":"LineString","coordinates":[[-83.7084785,32.9250321],[-83.70853290000001,32.9252127],[-83.7085584,32.925238400000005]]},"id":"8b44c0a2a063fff-17d7eea3f45e5128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a326241-13dff8cc2093f73e","8f44c0a2a320443-13bee89c48264d24"]},"geometry":{"type":"LineString","coordinates":[[-83.710982,32.9271466],[-83.7109054,32.9269947]]},"id":"8b44c0a2a320fff-13ff78b439327c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a326241-13dff8cc2093f73e","8f44c0a2a33195b-13d75a3f6adb4c65"]},"geometry":{"type":"LineString","coordinates":[[-83.7109054,32.9269947],[-83.71031140000001,32.927192500000004]]},"id":"8944c0a2a33ffff-139fc985c61b5408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a33195b-13d75a3f6adb4c65","8f44c0a2a331b5a-13b77a0d4fe5f984"]},"geometry":{"type":"LineString","coordinates":[[-83.71031140000001,32.927192500000004],[-83.71039160000001,32.9273459]]},"id":"8b44c0a2a331fff-13f74a265e715583"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71074970000001,32.9275693]},"id":"8f44c0a2a32348b-13b6d92d7ec260a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a305221-179ee89acc5b9ec0","8f44c0a2a32348b-13b6d92d7ec260a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7109844,32.928116200000005],[-83.71074970000001,32.9275693]]},"id":"8944c0a2a33ffff-13dfc8e429d12946"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a3220c4-13f6f97e1b500c15","8f44c0a2a32348b-13b6d92d7ec260a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71074970000001,32.9275693],[-83.7106207,32.9272687]]},"id":"8a44c0a2a327fff-13d6e955cf517979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a32348b-13b6d92d7ec260a0","8f44c0a2a30445a-13977a26440de05a"]},"geometry":{"type":"LineString","coordinates":[[-83.71074970000001,32.9275693],[-83.71035160000001,32.927697900000005]]},"id":"8944c0a2a33ffff-13df49a9d4b20c29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7106042,32.927768]},"id":"8f44c0a2a30431b-13bf49886f9dbcc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a30431b-13bf49886f9dbcc4","8f44c0a2a30445a-13977a26440de05a"]},"geometry":{"type":"LineString","coordinates":[[-83.71035160000001,32.927697900000005],[-83.7103756,32.9277613],[-83.71049070000001,32.9279571],[-83.71052750000001,32.9279813],[-83.7105882,32.927993300000004],[-83.71066900000001,32.927986100000005],[-83.71069,32.927959800000004],[-83.71068070000001,32.927920300000004],[-83.7106042,32.927768]]},"id":"8a44c0a2a307fff-13fe79b19ec57f46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70844430000001,32.926189900000004]},"id":"8f44c0a2a041aec-17d6fece5f6d5f4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a041aec-17d6fece5f6d5f4e","8f44c0a2a314800-13d74cb8e983fba9"]},"geometry":{"type":"LineString","coordinates":[[-83.7092978,32.927396800000004],[-83.7091906,32.9274598],[-83.70911120000001,32.9274446],[-83.7089163,32.9270766],[-83.70858600000001,32.9264449],[-83.7084669,32.9262359],[-83.70844430000001,32.926189900000004]]},"id":"8744c0a2affffff-139f7ddb2743d4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a041aec-17d6fece5f6d5f4e","8f44c0a2a06a798-17be5e8ac01a80c3"]},"geometry":{"type":"LineString","coordinates":[[-83.70844430000001,32.926189900000004],[-83.7084815,32.9261671],[-83.7085524,32.9261253]]},"id":"8944c0a2a07ffff-17d66eacaf26a6d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a041aec-17d6fece5f6d5f4e","8f44c0a2a04561d-17fe4f44c706960b"]},"geometry":{"type":"LineString","coordinates":[[-83.70844430000001,32.926189900000004],[-83.70842280000001,32.9261561],[-83.7082548,32.9258432]]},"id":"8a44c0a2a047fff-17fecf0a4f9bb618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a044834-17f6cfa9e4c7b5b7","8f44c0a2a04561d-17fe4f44c706960b"]},"geometry":{"type":"LineString","coordinates":[[-83.7082548,32.9258432],[-83.7079611,32.9252963],[-83.7079611,32.925255400000005],[-83.7079918,32.9252145],[-83.708093,32.925188]]},"id":"8944c0a2a07ffff-179f5faf81063dfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71660030000001,32.9043998]},"id":"8f44c0a2ea9c152-13b7fae4de7494df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea9cb71-13b7fa5646d9db3a","8f44c0a2ea9c152-13b7fae4de7494df"]},"geometry":{"type":"LineString","coordinates":[[-83.71682840000001,32.9043999],[-83.71660030000001,32.9043998]]},"id":"8a44c0a2ea9ffff-13b7fa9d8d73b66d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71658190000001,32.9047787]},"id":"8f44c0a2ea9885a-139ebaf05254a01c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea9885a-139ebaf05254a01c","8f44c0a2ea9c152-13b7fae4de7494df"]},"geometry":{"type":"LineString","coordinates":[[-83.71660030000001,32.9043998],[-83.71658190000001,32.9047787]]},"id":"8a44c0a2ea9ffff-139e7aea994afcc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea9c152-13b7fae4de7494df","8f44c0a2ea938c0-13fefccba09da1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71660030000001,32.9043998],[-83.7165964,32.9041446],[-83.71653710000001,32.9041104],[-83.71582140000001,32.9041135]]},"id":"8944c0a2eabffff-13973b9bb7341977"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea900de-13be7cd08d3016af","8f44c0a2ea938c0-13fefccba09da1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.71582140000001,32.9041135],[-83.7158136,32.903831000000004]]},"id":"8a44c0a2ea97fff-1396bcce1678f30d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7124532,32.922333300000005]},"id":"8f44c0a2ab81022-17fe5504c5f6f7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ab81aae-179654af0a658d73","8f44c0a2ab81022-17fe5504c5f6f7d2"]},"geometry":{"type":"LineString","coordinates":[[-83.71259040000001,32.922377700000006],[-83.7124532,32.922333300000005]]},"id":"8b44c0a2ab81fff-17fe74d9e03f19af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7112201,32.922184]},"id":"8f44c0a2ab918ca-179f480776a47f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ab918ca-179f480776a47f07","8f44c0a2ab81022-17fe5504c5f6f7d2"]},"geometry":{"type":"LineString","coordinates":[[-83.7124532,32.922333300000005],[-83.71236420000001,32.922275400000004],[-83.71163460000001,32.9220551],[-83.7112201,32.922184]]},"id":"8944c0a2abbffff-17fee682b5c3c8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71143330000001,32.922647500000004]},"id":"8f44c0a2ab9c728-17bef7823ac3cb07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ab918ca-179f480776a47f07","8f44c0a2ab9c728-17bef7823ac3cb07"]},"geometry":{"type":"LineString","coordinates":[[-83.7112201,32.922184],[-83.71103400000001,32.9222418],[-83.7112409,32.9227067],[-83.71143330000001,32.922647500000004]]},"id":"8944c0a2abbffff-17bf7820cd3fa2a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ab9c728-17bef7823ac3cb07","8f44c0a2ab81022-17fe5504c5f6f7d2"]},"geometry":{"type":"LineString","coordinates":[[-83.71143330000001,32.922647500000004],[-83.7124532,32.922333300000005]]},"id":"8944c0a2abbffff-17dec6438e1eba95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ab918ca-179f480776a47f07","8f44c0a2ab9c728-17bef7823ac3cb07"]},"geometry":{"type":"LineString","coordinates":[[-83.71143330000001,32.922647500000004],[-83.7112201,32.922184]]},"id":"8944c0a2abbffff-179fe7c4d4232898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ab918ca-179f480776a47f07","8f44c0a2ab91982-17be5827802f949f"]},"geometry":{"type":"LineString","coordinates":[[-83.7112201,32.922184],[-83.71116880000001,32.9220577]]},"id":"8c44c0a2ab919ff-17f7d8177de0b105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128739,32.923056]},"id":"8f44c0a2ab88b14-17be43fddce88a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ab8d19b-179653726bce17fb","8f44c0a2ab88b14-17be43fddce88a9a"]},"geometry":{"type":"LineString","coordinates":[[-83.713097,32.922989300000005],[-83.7128739,32.923056]]},"id":"8a44c0a2ab8ffff-179f73b824c227a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ab88b14-17be43fddce88a9a","8f44c0a2aaa47ac-13d6e63731b6e7df"]},"geometry":{"type":"LineString","coordinates":[[-83.7128739,32.923056],[-83.71161020000001,32.9234341],[-83.71176150000001,32.9237945],[-83.7119629,32.9237358]]},"id":"8844c0a2abfffff-13f6f5e97a322958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ab894d3-13be44232667fea3","8f44c0a2aaa47ac-13d6e63731b6e7df"]},"geometry":{"type":"LineString","coordinates":[[-83.7119629,32.9237358],[-83.71281420000001,32.923488]]},"id":"8844c0a2abfffff-139f752d2f942785"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2ab88b14-17be43fddce88a9a","8f44c0a2ab894d3-13be44232667fea3"]},"geometry":{"type":"LineString","coordinates":[[-83.71281420000001,32.923488],[-83.7130183,32.9234285],[-83.7128739,32.923056]]},"id":"8a44c0a2ab8ffff-13d753d73e489634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2835236e-17beae665d50cafb","8f44c0a28352741-17b6dee32abb1f87"]},"geometry":{"type":"LineString","coordinates":[[-83.73482510000001,32.9253066],[-83.7346254,32.925297300000004]]},"id":"8b44c0a28352fff-17bfcea4c634dcd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a28352741-17b6dee32abb1f87","8f44c0a28221763-17df900ed7c02976"]},"geometry":{"type":"LineString","coordinates":[[-83.7346254,32.925297300000004],[-83.734615,32.925493],[-83.7345887,32.9255316],[-83.73452850000001,32.9255616],[-83.73445050000001,32.925565500000005],[-83.7343819,32.9255513],[-83.7342785,32.9254693],[-83.7341459,32.925388000000005]]},"id":"8944c0a2823ffff-1796df546f31dabc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63237670000001,32.9385842]},"id":"8f44c0a1c0a425e-179728849e16a84e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a02698436-17b72afab06f433d","8f44c0a1c0a425e-179728849e16a84e"]},"geometry":{"type":"LineString","coordinates":[[-83.63136850000001,32.926317000000004],[-83.63148720000001,32.9265685],[-83.6315732,32.9266797],[-83.6318038,32.926889],[-83.631962,32.9270652],[-83.6320324,32.9271679],[-83.6321769,32.9274281],[-83.632278,32.9276953],[-83.632295,32.927791500000005],[-83.63229050000001,32.927895400000004],[-83.63222470000001,32.9280506],[-83.6321566,32.9281383],[-83.6319795,32.9282869],[-83.6317832,32.9283974],[-83.6308128,32.928715600000004],[-83.6303316,32.928908],[-83.62978460000001,32.9292004],[-83.6296722,32.929282400000005],[-83.6295564,32.9293929],[-83.6292829,32.929751],[-83.6285917,32.9309218],[-83.6283999,32.931285700000004],[-83.62838520000001,32.9313524],[-83.62840560000001,32.9314314],[-83.628476,32.931564800000004],[-83.6287064,32.9319906],[-83.6288301,32.9324345],[-83.62895830000001,32.933069800000006],[-83.6290044,32.9331661],[-83.6291209,32.933295900000005],[-83.6293136,32.9333848],[-83.630021,32.933550100000005],[-83.6302349,32.9336496],[-83.63049330000001,32.93387],[-83.6310376,32.9344264],[-83.63143360000001,32.934733900000005],[-83.6319737,32.935087700000004],[-83.6329225,32.9355907],[-83.63332910000001,32.935923100000004],[-83.63367860000001,32.9363106],[-83.6338798,32.936579],[-83.6339878,32.936776300000005],[-83.6340569,32.9369427],[-83.6340863,32.9370611],[-83.63409180000001,32.937189000000004],[-83.6340751,32.937414100000005],[-83.63400940000001,32.9375572],[-83.633899,32.9377014],[-83.6337383,32.937862100000004],[-83.6335413,32.938009900000004],[-83.6331165,32.938270200000005],[-83.6328259,32.938402700000005],[-83.63237670000001,32.9385842]]},"id":"8544c0a3fffffff-17f79b73cc18081d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6321097,32.938559600000005]},"id":"8f44c0a1c0a46d6-1797c92b73399151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1c0a46d6-1797c92b73399151","8f44c0a1c0a425e-179728849e16a84e"]},"geometry":{"type":"LineString","coordinates":[[-83.63237670000001,32.9385842],[-83.63218450000001,32.9387842],[-83.6321583,32.9387959],[-83.6321121,32.9387965],[-83.6320604,32.938769900000004],[-83.6320257,32.938725000000005],[-83.63202030000001,32.9386632],[-83.6320288,32.9386096],[-83.6320555,32.938578],[-83.6321097,32.938559600000005]]},"id":"8a44c0a1c0a7fff-17df790f3c612802"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1c0a46d6-1797c92b73399151","8f44c0a1c0a425e-179728849e16a84e"]},"geometry":{"type":"LineString","coordinates":[[-83.6321097,32.938559600000005],[-83.63237670000001,32.9385842]]},"id":"8b44c0a1c0a4fff-179f78d80fd86656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72039810000001,32.904384900000004]},"id":"8f44c0a2ea19b2a-139eb19f36a040cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea19b2a-139eb19f36a040cf","8f44c0a2ea1d82b-13d6719052c645a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7204219,32.903866],[-83.7204124,32.9043441],[-83.72039810000001,32.904384900000004]]},"id":"8a44c0a2ea1ffff-13f73193e6407c3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7205096,32.9044145]},"id":"8f44c0a2ea0a785-13bf3159840f0558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea19b2a-139eb19f36a040cf","8f44c0a2ea0a785-13bf3159840f0558"]},"geometry":{"type":"LineString","coordinates":[[-83.72039810000001,32.904384900000004],[-83.72036940000001,32.9044164],[-83.7203252,32.9044266],[-83.7196153,32.9044192],[-83.71955460000001,32.904431200000005],[-83.71952040000001,32.9044581],[-83.71950600000001,32.9044979],[-83.719516,32.9045489],[-83.7195557,32.9045916],[-83.7196153,32.904612900000004],[-83.71969150000001,32.904618400000004],[-83.7204301,32.904634200000004],[-83.720493,32.9046286],[-83.72053050000001,32.9046101],[-83.72055040000001,32.904563800000005],[-83.72055040000001,32.904489600000005],[-83.7205438,32.904445100000004],[-83.7205096,32.9044145]]},"id":"8844c0a2ebfffff-13f6b289b3e557f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea19b2a-139eb19f36a040cf","8f44c0a2ea0a785-13bf3159840f0558"]},"geometry":{"type":"LineString","coordinates":[[-83.7205096,32.9044145],[-83.72039810000001,32.904384900000004]]},"id":"8944c0a2ea3ffff-13b7f17c5bc5c6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2eaadb74-13de34811d30c28e","8f44c0a2ea1a636-13feb484101fcb89"]},"geometry":{"type":"LineString","coordinates":[[-83.7192175,32.9038497],[-83.7192127,32.9043176]]},"id":"8a44c0a2ea1ffff-13de74829f7bd357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ea1a636-13feb484101fcb89","8f44c0a2eaf4b5c-13bf33ed3854875b"]},"geometry":{"type":"LineString","coordinates":[[-83.7192127,32.9043176],[-83.719211,32.9044837],[-83.71920420000001,32.9051004],[-83.7192141,32.9051457],[-83.7192437,32.905184600000005],[-83.71928480000001,32.9052133],[-83.7193228,32.9052159],[-83.7193714,32.905209500000005],[-83.719417,32.9051865],[-83.7194474,32.905138],[-83.7194664,32.9046863],[-83.71946340000001,32.9046648],[-83.71945410000001,32.9046515]]},"id":"8844c0a2ebfffff-13d67449562f1f3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70908490000001,32.915440100000005]},"id":"8f44c0a2a98da95-17965d3dfba23046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98da95-17965d3dfba23046","8f44c0a2a83246d-17f64cdb07e2712c"]},"geometry":{"type":"LineString","coordinates":[[-83.7092432,32.915769600000004],[-83.7091942,32.9156417],[-83.70908490000001,32.915440100000005]]},"id":"8844c0a2a9fffff-17ffdd09568d6e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98da95-17965d3dfba23046","8f44c0a2a98dd49-17beed7b820e949b"]},"geometry":{"type":"LineString","coordinates":[[-83.70908490000001,32.915440100000005],[-83.7089864,32.9152714]]},"id":"8b44c0a2a98dfff-17f76d5cca298b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7084622,32.9147179]},"id":"8f44c0a2a981b02-13d6fec32a21a420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98dd49-17beed7b820e949b","8f44c0a2a981b02-13d6fec32a21a420"]},"geometry":{"type":"LineString","coordinates":[[-83.7089864,32.9152714],[-83.70881770000001,32.914894700000005],[-83.70864470000001,32.9146932],[-83.70854340000001,32.9146866],[-83.7084622,32.9147179]]},"id":"8944c0a2a9bffff-13deee0085693809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7084291,32.9147328]},"id":"8f44c0a2a981ba8-13de4ed7dd57ecb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a981ba8-13de4ed7dd57ecb1","8f44c0a2a981b02-13d6fec32a21a420"]},"geometry":{"type":"LineString","coordinates":[[-83.7084622,32.9147179],[-83.7084291,32.9147328]]},"id":"8c44c0a2a981bff-13d76ecd82330bf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70798470000001,32.915672]},"id":"8f44c0a2a98a0d4-17b74fed90bd2f42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98a0d4-17b74fed90bd2f42","8f44c0a2a981ba8-13de4ed7dd57ecb1"]},"geometry":{"type":"LineString","coordinates":[[-83.7084291,32.9147328],[-83.70776520000001,32.9150313],[-83.70736360000001,32.915245500000005],[-83.7070805,32.915438],[-83.706861,32.915662000000005],[-83.7068564,32.915744100000005],[-83.70723170000001,32.915992700000004],[-83.70737240000001,32.9159935],[-83.70798470000001,32.915672]]},"id":"8844c0a2a9fffff-179e7114ae0289b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98a0d4-17b74fed90bd2f42","8f44c0a2a98b4b4-17d74f98baf35e53"]},"geometry":{"type":"LineString","coordinates":[[-83.70798470000001,32.915672],[-83.7080591,32.9157886],[-83.7081205,32.9159184]]},"id":"8a44c0a2a98ffff-17f6ffc0bb8d0775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7081799,32.915637000000004]},"id":"8f44c0a2a98aa12-17976f7395a5d802"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98da95-17965d3dfba23046","8f44c0a2a98aa12-17976f7395a5d802"]},"geometry":{"type":"LineString","coordinates":[[-83.70908490000001,32.915440100000005],[-83.70877,32.915560500000005],[-83.7086522,32.9156254],[-83.7085509,32.915657200000005],[-83.7083939,32.9156339],[-83.7082888,32.915628500000004],[-83.7081799,32.915637000000004]]},"id":"8a44c0a2a98ffff-17ff7e53f56a4c03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2a98a0d4-17b74fed90bd2f42","8f44c0a2a98aa12-17976f7395a5d802"]},"geometry":{"type":"LineString","coordinates":[[-83.7081799,32.915637000000004],[-83.70798470000001,32.915672]]},"id":"8b44c0a2a98afff-179e5fb09bcf6b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7484687,32.907911600000006]},"id":"8f44c0a2dce1010-13b5ed1712c428fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2dce1010-13b5ed1712c428fa","8f44c0a2dce56a5-13fffd150389f862"]},"geometry":{"type":"LineString","coordinates":[[-83.748472,32.9076147],[-83.7484687,32.907911600000006]]},"id":"8a44c0a2dce7fff-13dded1617c99599"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2dce1010-13b5ed1712c428fa","8f44c0a2dcea00a-17f5fd9d8c7feba1"]},"geometry":{"type":"LineString","coordinates":[[-83.7484687,32.907911600000006],[-83.7482536,32.908800500000005]]},"id":"8944c0a2dcfffff-13dffd5a5fea98f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2dce1010-13b5ed1712c428fa","8f44c0a2dcea00a-17f5fd9d8c7feba1"]},"geometry":{"type":"LineString","coordinates":[[-83.7482536,32.908800500000005],[-83.74848,32.9088486],[-83.7485585,32.90858],[-83.74870340000001,32.908030100000005],[-83.7486969,32.907928600000005],[-83.7484687,32.907911600000006]]},"id":"8944c0a2dcfffff-13ddecdc6359552e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7417114,32.9030672]},"id":"8f44c0a2c370676-17f5fd96671252ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c370676-17f5fd96671252ae","8f44c0a2c3700ae-1795fd87ffe3a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7417114,32.9030672],[-83.74173950000001,32.903045],[-83.7417569,32.9030161],[-83.74176150000001,32.902984000000004],[-83.7417528,32.902952400000004],[-83.7417345,32.9029187]]},"id":"8b44c0a2c370fff-17b5fd80a4fd6fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c370676-17f5fd96671252ae","8f44c0a2c3700ae-1795fd87ffe3a1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7417345,32.9029187],[-83.7416692,32.902896600000005],[-83.74163560000001,32.902896000000005],[-83.7416032,32.902903800000004],[-83.7415751,32.9029194],[-83.7415538,32.9029413],[-83.7415412,32.9029675],[-83.7415385,32.902995700000005],[-83.7415479,32.9030271],[-83.7415694,32.9030539],[-83.7416006,32.9030731],[-83.7416376,32.9030822],[-83.7416761,32.903080100000004],[-83.7417114,32.9030672]]},"id":"8a44c0a2c377fff-17bdfdd24e8101f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74331640000001,32.9018946]},"id":"8f44c0a2cace68d-1795f9ab4c35681f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2caca12d-1797f97ab6ad2d1b","8f44c0a2cace68d-1795f9ab4c35681f"]},"geometry":{"type":"LineString","coordinates":[[-83.74331640000001,32.9018946],[-83.74335900000001,32.9018984],[-83.74339780000001,32.9019136],[-83.7434286,32.9019385],[-83.7434482,32.901970500000004],[-83.7434545,32.902006],[-83.7434468,32.9020414],[-83.7434259,32.902072700000005],[-83.7433941,32.9020968]]},"id":"8a44c0a2cacffff-17b7f96f4836420a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2caca12d-1797f97ab6ad2d1b","8f44c0a2cace68d-1795f9ab4c35681f"]},"geometry":{"type":"LineString","coordinates":[[-83.7433941,32.9020968],[-83.7433541,32.902111000000005],[-83.74331090000001,32.902113400000005],[-83.74326900000001,32.9021039],[-83.7432332,32.9020833],[-83.74320730000001,32.9020541],[-83.7431943,32.9020193],[-83.7431955,32.9019829],[-83.7432108,32.9019488],[-83.74323820000001,32.901921200000004],[-83.7432747,32.901902400000004],[-83.74331640000001,32.9018946]]},"id":"8a44c0a2cacffff-17d5f9cda1a9410a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074911,32.9122269]},"id":"8f44c0a2e65e698-17bfd122185a751d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e65e698-17bfd122185a751d","8f44c0a2e6ed1b2-17f6f20b1db5fc6f"]},"geometry":{"type":"LineString","coordinates":[[-83.7071183,32.9120879],[-83.7074911,32.9122269]]},"id":"8844c0a2e7fffff-179671969eba02d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e65e698-17bfd122185a751d","8f44c0a2e65b334-17d7cfdea3ed8d20"]},"geometry":{"type":"LineString","coordinates":[[-83.7074911,32.9122269],[-83.7073062,32.912576900000005],[-83.7073201,32.9126153],[-83.70784420000001,32.9128119],[-83.7080086,32.9128728]]},"id":"8844c0a2e7fffff-17b7f0f5941ac5a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e65b334-17d7cfdea3ed8d20","8f44c0a2e65d52e-17b76f04f578699c"]},"geometry":{"type":"LineString","coordinates":[[-83.7080086,32.9128728],[-83.70811690000001,32.9129129],[-83.70846970000001,32.9122478],[-83.7083569,32.9121906]]},"id":"8a44c0a2e65ffff-1796ff33e325e4af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e65e698-17bfd122185a751d","8f44c0a2e65d52e-17b76f04f578699c"]},"geometry":{"type":"LineString","coordinates":[[-83.7083569,32.9121906],[-83.70801610000001,32.9120178],[-83.7076837,32.911909300000005],[-83.7074911,32.9122269]]},"id":"8a44c0a2e65ffff-17dff0303fcc1b5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a10683611-17df6d97c86a10a3","8f44c0a10683a14-17976ce568e5b188"]},"geometry":{"type":"LineString","coordinates":[[-83.59126180000001,32.914998600000004],[-83.59108400000001,32.915020500000004],[-83.59102150000001,32.9150415],[-83.5909814,32.915067],[-83.59097510000001,32.9150992],[-83.5909764,32.915138]]},"id":"8b44c0a10683fff-179f7d50a59bd78e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1069d623-17dffdd4366d582a","8f44c0a10683611-17df6d97c86a10a3"]},"geometry":{"type":"LineString","coordinates":[[-83.5909764,32.915138],[-83.5909814,32.9152872],[-83.59097510000001,32.9153711],[-83.59095640000001,32.915428],[-83.59091090000001,32.9155351],[-83.5908797,32.915553100000004]]},"id":"8a44c0a1069ffff-17f7fda30ac45b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5906923,32.915585300000004]},"id":"8f44c0a10698ae5-17f7fe495da7f531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1069d623-17dffdd4366d582a","8f44c0a10698ae5-17f7fe495da7f531"]},"geometry":{"type":"LineString","coordinates":[[-83.5908797,32.915553100000004],[-83.5908172,32.9155748],[-83.5906923,32.915585300000004]]},"id":"8a44c0a1069ffff-17ff7e0e1a34bd66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73808480000001,32.9282929]},"id":"8f44c0a29c98c82-17f716710e21f9d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a29c98c82-17f716710e21f9d1","8f44c0a29c9ad35-17fe1762e1e36910"]},"geometry":{"type":"LineString","coordinates":[[-83.7376978,32.9282977],[-83.737719,32.9283317],[-83.73776620000001,32.928351500000005],[-83.7378273,32.928358800000005],[-83.73808480000001,32.9282929]]},"id":"8a44c0a29c9ffff-179ee6ef4d77299a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7382523,32.9287488]},"id":"8f44c0a29c9b80d-1796060852d534c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a29c9b80d-1796060852d534c2","8f44c0a29c98c82-17f716710e21f9d1"]},"geometry":{"type":"LineString","coordinates":[[-83.73808480000001,32.9282929],[-83.7388828,32.928062700000005],[-83.7390582,32.9285402],[-83.7382523,32.9287488]]},"id":"8944c0a29cbffff-17b7150759055996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a29c9b80d-1796060852d534c2","8f44c0a29c98c82-17f716710e21f9d1"]},"geometry":{"type":"LineString","coordinates":[[-83.7382523,32.9287488],[-83.73808480000001,32.9282929]]},"id":"8a44c0a29c9ffff-1797863ca8cba7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65476480000001,32.7787857]},"id":"8f44c0b11701c8c-17f7d1dc001dc4ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11728918-17d7dee9326fb780","8f44c0b11701c8c-17f7d1dc001dc4ad"]},"geometry":{"type":"LineString","coordinates":[[-83.6559725,32.7785237],[-83.655702,32.7784958],[-83.6548482,32.7784737],[-83.65476480000001,32.7787857]]},"id":"8944c0b1173ffff-17d6d09c6efbb56e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11701c8c-17f7d1dc001dc4ad","8f44c0b117014e1-17d7f1f65feb8e69"]},"geometry":{"type":"LineString","coordinates":[[-83.65476480000001,32.7787857],[-83.65472270000001,32.7789434]]},"id":"8b44c0b11701fff-17b6f1e9205f0d0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b117014e1-17d7f1f65feb8e69","8f44c0b11703a4b-13bfd21471459b69"]},"geometry":{"type":"LineString","coordinates":[[-83.65472270000001,32.7789434],[-83.65468700000001,32.779076700000005],[-83.6546745,32.7791092]]},"id":"8a44c0b11707fff-139fd2048e3b5969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11703a4b-13bfd21471459b69","8f44c0b1170e522-139ef236e957d5d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6546745,32.7791092],[-83.6546194,32.7792527]]},"id":"8944c0b1173ffff-13fef225bcde4be7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6545976,32.7793094]},"id":"8f44c0b1170e422-13bef2448f8b8844"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170e422-13bef2448f8b8844","8f44c0b1170e522-139ef236e957d5d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6546194,32.7792527],[-83.6545976,32.7793094]]},"id":"8c44c0b1170e5ff-13bef23db20c27c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170e4db-1396d25ed04faae9","8f44c0b1170e422-13bef2448f8b8844"]},"geometry":{"type":"LineString","coordinates":[[-83.6545976,32.7793094],[-83.6545555,32.7794188]]},"id":"8b44c0b1170efff-13ded251b44bff82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170e4db-1396d25ed04faae9","8f44c0b1170adb6-13d7d27ea1843ed3"]},"geometry":{"type":"LineString","coordinates":[[-83.6545555,32.7794188],[-83.65450460000001,32.7795512]]},"id":"8c44c0b1171dbff-13bef26ec4f09d46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170adb6-13d7d27ea1843ed3","8f44c0b1170a5aa-13bed2a6ed4f8326"]},"geometry":{"type":"LineString","coordinates":[[-83.65450460000001,32.7795512],[-83.65444020000001,32.7797189]]},"id":"8944c0b1173ffff-1397f292ce774934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170a5aa-13bed2a6ed4f8326","8f44c0b11719b1d-1396f2c82f21d87b"]},"geometry":{"type":"LineString","coordinates":[[-83.65444020000001,32.7797189],[-83.654387,32.7798571]]},"id":"8a44c0b1171ffff-13f7d2b784a159bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11719b1d-1396f2c82f21d87b","8f44c0b11719355-13fef2ef617d94de"]},"geometry":{"type":"LineString","coordinates":[[-83.654387,32.7798571],[-83.6543242,32.7800206]]},"id":"8b44c0b11719fff-13d7d2dbcab657e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6542823,32.7801296]},"id":"8f44c0b116245b2-13bfd30995657c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116245b2-13bfd30995657c4e","8f44c0b11719355-13fef2ef617d94de"]},"geometry":{"type":"LineString","coordinates":[[-83.6543242,32.7800206],[-83.6542823,32.7801296]]},"id":"8a44c0b11627fff-139ef2fc89c80764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170b936-139fd0fc89085312","8f44c0b1170b123-13fff12b9b171229"]},"geometry":{"type":"LineString","coordinates":[[-83.6550471,32.7800287],[-83.65512240000001,32.779874]]},"id":"8a44c0b1170ffff-13dff1140f3d285a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11708043-13d6d0cf5bb17eab","8f44c0b1170b936-139fd0fc89085312"]},"geometry":{"type":"LineString","coordinates":[[-83.65512240000001,32.779874],[-83.65519470000001,32.7797257]]},"id":"8b44c0b11708fff-13fef0e5eaa07cd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11708854-13def09e83864bfa","8f44c0b11708043-13d6d0cf5bb17eab"]},"geometry":{"type":"LineString","coordinates":[[-83.65519470000001,32.7797257],[-83.6552728,32.779565500000004]]},"id":"8b44c0b11708fff-139ed0b6ea3fb8b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11708854-13def09e83864bfa","8f44c0b1170c219-1396d073bf574406"]},"geometry":{"type":"LineString","coordinates":[[-83.6552728,32.779565500000004],[-83.6553413,32.7794248]]},"id":"8a44c0b1170ffff-13b6d0892384045d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170caad-13b6f0440b51af51","8f44c0b1170c219-1396d073bf574406"]},"geometry":{"type":"LineString","coordinates":[[-83.6553413,32.7794248],[-83.6554176,32.779268200000004]]},"id":"8b44c0b1170cfff-13d7d05beff1c8a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1172b4a2-13d6f015656bf2fe","8f44c0b1170caad-13b6f0440b51af51"]},"geometry":{"type":"LineString","coordinates":[[-83.6554176,32.779268200000004],[-83.65549220000001,32.7791151]]},"id":"8944c0b1173ffff-13f6d02cbdbb43a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1172bcb6-17f7cfe7df655614","8f44c0b1172b4a2-13d6f015656bf2fe"]},"geometry":{"type":"LineString","coordinates":[[-83.65549220000001,32.7791151],[-83.6555651,32.7789656]]},"id":"8a44c0b1172ffff-1396cffe93d7369c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11701c8c-17f7d1dc001dc4ad","8f44c0b1172bcb6-17f7cfe7df655614"]},"geometry":{"type":"LineString","coordinates":[[-83.6555651,32.7789656],[-83.6556444,32.7788029],[-83.65476480000001,32.7787857]]},"id":"8944c0b1173ffff-1796d09e7cc04dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116245b2-13bfd30995657c4e","8f44c0b1162691c-13bed34f9a810b18"]},"geometry":{"type":"LineString","coordinates":[[-83.6541703,32.780128500000004],[-83.6542823,32.7801296]]},"id":"8a44c0b11627fff-13bef32c90af28d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65380060000001,32.7815353]},"id":"8f44c0b116008ee-17bfd436afe7b3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1162acd5-17bfd2b42d103643","8f44c0b116008ee-17bfd436afe7b3a0"]},"geometry":{"type":"LineString","coordinates":[[-83.654419,32.7817369],[-83.65380060000001,32.7815353]]},"id":"8944c0b1163ffff-17fed3756a096a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116008ee-17bfd436afe7b3a0","8f44c0b11619ae3-13b6d4e3dbeeb248"]},"geometry":{"type":"LineString","coordinates":[[-83.65380060000001,32.7815353],[-83.6535259,32.782394700000005],[-83.65359760000001,32.78273],[-83.6535235,32.7829769]]},"id":"8944c0b1163ffff-17fed4a5f0da3175"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116008ee-17bfd436afe7b3a0","8f44c0b11619ae3-13b6d4e3dbeeb248"]},"geometry":{"type":"LineString","coordinates":[[-83.6535235,32.7829769],[-83.6532298,32.7828183],[-83.6530881,32.7827834],[-83.6529939,32.7827603],[-83.65289150000001,32.782735100000004],[-83.6526884,32.7826851],[-83.652636,32.7826722],[-83.65254440000001,32.7826497],[-83.652327,32.782521200000005],[-83.65221480000001,32.7821718],[-83.652265,32.7818847],[-83.652382,32.781577500000004],[-83.6525754,32.781198],[-83.652702,32.781085600000004],[-83.65294800000001,32.7810574],[-83.65324890000001,32.781111700000004],[-83.6535211,32.781200000000005],[-83.65380060000001,32.7815353]]},"id":"8944c0b1163ffff-179ef69544c48b80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6393376,32.7847767]},"id":"8f44c0b13311021-1797f78603b4250f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1331141a-17b7f81914896935","8f44c0b13311021-1797f78603b4250f"]},"geometry":{"type":"LineString","coordinates":[[-83.6391023,32.7847998],[-83.6393376,32.7847767]]},"id":"8b44c0b13311fff-179ef7cf884fde62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63953500000001,32.7860339]},"id":"8f44c0b1331ba98-13b7f70aa94196b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13311021-1797f78603b4250f","8f44c0b1331ba98-13b7f70aa94196b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6393376,32.7847767],[-83.63953500000001,32.7860339]]},"id":"8844c0b133fffff-179ef748582307f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b133156c2-1797f7992e45672c","8f44c0b13311021-1797f78603b4250f"]},"geometry":{"type":"LineString","coordinates":[[-83.6393376,32.7847767],[-83.639307,32.7845649]]},"id":"8b44c0b13311fff-17d7f78f921d032f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b133156c2-1797f7992e45672c","8f44c0b13314859-179ef7cef0ae7a6f"]},"geometry":{"type":"LineString","coordinates":[[-83.639307,32.7845649],[-83.63922090000001,32.7839691]]},"id":"8a44c0b13317fff-17d6f7b40589d945"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1333218c-13b6f7f2d6e4cb96","8f44c0b13314859-179ef7cef0ae7a6f"]},"geometry":{"type":"LineString","coordinates":[[-83.63922090000001,32.7839691],[-83.63916350000001,32.7835722]]},"id":"8944c0b1333ffff-13b6f7e0effa117c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6391581,32.783534700000004]},"id":"8f44c0b133321a2-139ff7f636dc5e88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1333218c-13b6f7f2d6e4cb96","8f44c0b133321a2-139ff7f636dc5e88"]},"geometry":{"type":"LineString","coordinates":[[-83.63916350000001,32.7835722],[-83.6391581,32.783534700000004]]},"id":"8d44c0b133321bf-139ef7f48513d3af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b133321a2-139ff7f636dc5e88","8f44c0b1306c6e5-17b6f814806546b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6391581,32.783534700000004],[-83.63896170000001,32.7821759],[-83.63910960000001,32.7821608]]},"id":"8744c0b13ffffff-13bef835130f5822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63916180000001,32.7821554]},"id":"8f44c0b1306c663-17bff7f3ebfecd68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1306c663-17bff7f3ebfecd68","8f44c0b1306c6e5-17b6f814806546b4"]},"geometry":{"type":"LineString","coordinates":[[-83.63910960000001,32.7821608],[-83.63916180000001,32.7821554]]},"id":"8c44c0b1306c7ff-17b6f8043db7811b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1306c663-17bff7f3ebfecd68","8f44c0b13064762-17def95f7d1d167e"]},"geometry":{"type":"LineString","coordinates":[[-83.63916180000001,32.7821554],[-83.6389887,32.780955],[-83.6385801,32.7810031]]},"id":"8844c0b131fffff-17def85802e1d3b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1306c663-17bff7f3ebfecd68","8f44c0b1306c22a-17b7f795c43edde9"]},"geometry":{"type":"LineString","coordinates":[[-83.63916180000001,32.7821554],[-83.63931240000001,32.7821401]]},"id":"8b44c0b1306cfff-17bef7c4d8d7b815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1333040d-13f6f71809bcc2ec","8f44c0b1306c22a-17b7f795c43edde9"]},"geometry":{"type":"LineString","coordinates":[[-83.63931240000001,32.7821401],[-83.6395188,32.7821191],[-83.6397135,32.7834786],[-83.6395136,32.783498800000004]]},"id":"8744c0b13ffffff-13d7f6e6bcfc0a51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1333040d-13f6f71809bcc2ec","8f44c0b13332853-1396f78cc552ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6395136,32.783498800000004],[-83.6393268,32.783517700000004]]},"id":"8a44c0b13337fff-13fef75261570db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b133321a2-139ff7f636dc5e88","8f44c0b13332853-1396f78cc552ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6393268,32.783517700000004],[-83.6391581,32.783534700000004]]},"id":"8b44c0b13332fff-1397f7c17e42c1df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1236b2e8-1797d6d2fb213a4b","8f44c0b1236ed2b-13b737bb969a7e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.62614470000001,32.7704594],[-83.62629120000001,32.770614800000004],[-83.62629530000001,32.7709081],[-83.6263404,32.7712808],[-83.6265169,32.7716397]]},"id":"8944c0b1237ffff-179fb747b7405f13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62743610000001,32.771581000000005]},"id":"8f44c0b13cb4849-17df34947a36c6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1236b2e8-1797d6d2fb213a4b","8f44c0b13cb4849-17df34947a36c6bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6265169,32.7716397],[-83.6268821,32.771601700000005],[-83.6271981,32.7715637],[-83.62743610000001,32.771581000000005]]},"id":"8844c0b13dfffff-17f7f5b3d75aa182"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63177280000001,32.773808700000004]},"id":"8f44c0b13c094b0-13df79fe0902b7fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c094b0-13df79fe0902b7fe","8f44c0b13c62b25-13b7c460f6c6f8ee"]},"geometry":{"type":"LineString","coordinates":[[-83.63407210000001,32.773769200000004],[-83.63348090000001,32.7737824],[-83.6318353,32.7738273],[-83.63177280000001,32.773808700000004]]},"id":"8844c0b13dfffff-13d7a7305f57c454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6308814,32.773937600000004]},"id":"8f44c0b13c1924d-139f0c2b23a35262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c1924d-139f0c2b23a35262","8f44c0b13c094b0-13df79fe0902b7fe"]},"geometry":{"type":"LineString","coordinates":[[-83.63177280000001,32.773808700000004],[-83.63148650000001,32.7737238],[-83.6308832,32.773737600000004],[-83.6308814,32.773937600000004]]},"id":"8944c0b13c3ffff-13bfdb44725c0548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c1924d-139f0c2b23a35262","8f44c0b13ce6b63-179f0c2c5be4152a"]},"geometry":{"type":"LineString","coordinates":[[-83.6308814,32.773937600000004],[-83.6308795,32.7741344]]},"id":"8b44c0b13ce4fff-13df8c2bb92793ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce6b63-179f0c2c5be4152a","8f44c0b13ce62f6-1797ecb9ae400e0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6308795,32.7741344],[-83.6308791,32.774172300000004],[-83.6306534,32.774331000000004]]},"id":"8a44c0b13ce7fff-17dfec6a9a20056e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63047730000001,32.7743266]},"id":"8f44c0b13ce66f0-17972d27bcf5535c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce62f6-1797ecb9ae400e0a","8f44c0b13ce66f0-17972d27bcf5535c"]},"geometry":{"type":"LineString","coordinates":[[-83.6306534,32.774331000000004],[-83.63047730000001,32.7743266]]},"id":"8b44c0b13ce6fff-17978cf0acb2f95b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cf0b10-179f0ebfedc86ec4","8f44c0b13ce66f0-17972d27bcf5535c"]},"geometry":{"type":"LineString","coordinates":[[-83.63047730000001,32.7743266],[-83.6298242,32.774310400000005]]},"id":"8944c0b13cfffff-179f1df3c9348e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63159730000001,32.773917000000004]},"id":"8f44c0b13c0b152-13972a6bb8eb5ebd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c094b0-13df79fe0902b7fe","8f44c0b13c0b152-13972a6bb8eb5ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.63177280000001,32.773808700000004],[-83.63159730000001,32.773917000000004]]},"id":"8b44c0b13c0bfff-13f75a34d5709e34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c0b29d-17977a7744e78412","8f44c0b13c0b152-13972a6bb8eb5ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.63159730000001,32.773917000000004],[-83.6315788,32.774120700000005]]},"id":"8b44c0b13c0bfff-13d7da7189135e71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c0b29d-17977a7744e78412","8f44c0b13ce5bb2-179faa82352b083e"]},"geometry":{"type":"LineString","coordinates":[[-83.6315788,32.774120700000005],[-83.6315613,32.774314600000004]]},"id":"8844c0b13dfffff-17df1a7cc8e26dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63154820000001,32.7744592]},"id":"8f44c0b13ce5300-17f70a8a668ff1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce5bb2-179faa82352b083e","8f44c0b13ce5300-17f70a8a668ff1be"]},"geometry":{"type":"LineString","coordinates":[[-83.6315613,32.774314600000004],[-83.63154820000001,32.7744592]]},"id":"8b44c0b13ce5fff-17b7da864f0a7f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6315357,32.774596700000004]},"id":"8f44c0b13ce52eb-17bffa9234bfeca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce5300-17f70a8a668ff1be","8f44c0b13ce52eb-17bffa9234bfeca5"]},"geometry":{"type":"LineString","coordinates":[[-83.63154820000001,32.7744592],[-83.6315357,32.774596700000004]]},"id":"8c44c0b13ce53ff-17970a8e4c4a8d50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce192e-17bf2ac069308f2e","8f44c0b13ce52eb-17bffa9234bfeca5"]},"geometry":{"type":"LineString","coordinates":[[-83.6315357,32.774596700000004],[-83.63146180000001,32.774598600000004]]},"id":"8b44c0b13ce5fff-17bf9aa958430e1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.630477,32.7746243]},"id":"8f44c0b13ce20e2-17df3d27ea9837b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce192e-17bf2ac069308f2e","8f44c0b13ce20e2-17df3d27ea9837b7"]},"geometry":{"type":"LineString","coordinates":[[-83.63146180000001,32.774598600000004],[-83.630477,32.7746243]]},"id":"8a44c0b13ce7fff-17d73bf421037d97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce2006-17bf0d27efb31841","8f44c0b13ce20e2-17df3d27ea9837b7"]},"geometry":{"type":"LineString","coordinates":[[-83.630477,32.7746243],[-83.630477,32.774576]]},"id":"8c44c0b13ce21ff-17bf2d27e06b172f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63047710000001,32.774458700000004]},"id":"8f44c0b13ce2c61-17f7bd27d147b079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce2006-17bf0d27efb31841","8f44c0b13ce2c61-17f7bd27d147b079"]},"geometry":{"type":"LineString","coordinates":[[-83.630477,32.774576],[-83.63047710000001,32.774458700000004]]},"id":"8b44c0b13ce2fff-179f6d27e96c6b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce2c61-17f7bd27d147b079","8f44c0b13ce66f0-17972d27bcf5535c"]},"geometry":{"type":"LineString","coordinates":[[-83.63047710000001,32.774458700000004],[-83.63047730000001,32.7743266]]},"id":"8a44c0b13ce7fff-17bf7d27c2561781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c0b152-13972a6bb8eb5ebd","8f44c0b13ce52eb-17bffa9234bfeca5"]},"geometry":{"type":"LineString","coordinates":[[-83.6315357,32.774596700000004],[-83.63167530000001,32.774586400000004],[-83.6317327,32.7739446],[-83.63159730000001,32.773917000000004]]},"id":"8844c0b13dfffff-17ff8a3604890ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13c1924d-139f0c2b23a35262","8f44c0b13c0b152-13972a6bb8eb5ebd"]},"geometry":{"type":"LineString","coordinates":[[-83.63159730000001,32.773917000000004],[-83.6308814,32.773937600000004]]},"id":"8944c0b13c3ffff-139f9b4b65efac79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cf0ac1-17df1ebf124acaf9","8f44c0b13ce2c61-17f7bd27d147b079"]},"geometry":{"type":"LineString","coordinates":[[-83.62982550000001,32.7744449],[-83.63047710000001,32.774458700000004]]},"id":"8944c0b13cfffff-17f76df37f7dc39e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce2c61-17f7bd27d147b079","8f44c0b13ce5300-17f70a8a668ff1be"]},"geometry":{"type":"LineString","coordinates":[[-83.63047710000001,32.774458700000004],[-83.63154820000001,32.7744592]]},"id":"8a44c0b13ce7fff-17f7ebd92c55f024"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13ce20e2-17df3d27ea9837b7","8f44c0b13ce2291-179f2d267a8cd088"]},"geometry":{"type":"LineString","coordinates":[[-83.630477,32.7746243],[-83.6304793,32.774755400000004]]},"id":"8b44c0b13ce2fff-17f73d2735be56bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13cc480c-17f77d24f72abce8","8f44c0b13ce2291-179f2d267a8cd088"]},"geometry":{"type":"LineString","coordinates":[[-83.6304793,32.774755400000004],[-83.6304817,32.7748871]]},"id":"8944c0b13cfffff-17d75d25bec10e14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6150355,32.8306951]},"id":"8f44c0ba968e4ee-17b772dad735cfdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba969d14a-17df73679a65ee14","8f44c0ba968e4ee-17b772dad735cfdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6148103,32.8307686],[-83.6150355,32.8306951]]},"id":"8944c0ba96bffff-17d7732132a400e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96816c1-179f726334446fba","8f44c0ba968e4ee-17b772dad735cfdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6150355,32.8306951],[-83.61511700000001,32.8306332],[-83.61522690000001,32.8304277]]},"id":"8b44c0ba968efff-17f73297d7cbd7a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96816c1-179f726334446fba","8f44c0ba968146e-179fb267f50919e8"]},"geometry":{"type":"LineString","coordinates":[[-83.61522690000001,32.8304277],[-83.6152713,32.8303449],[-83.6152193,32.8302539]]},"id":"8a44c0ba9687fff-17d7f2569b264109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba968026b-17d7b29ad7a24417","8f44c0ba968146e-179fb267f50919e8"]},"geometry":{"type":"LineString","coordinates":[[-83.6152193,32.8302539],[-83.61513790000001,32.8301115]]},"id":"8b44c0ba9681fff-17f7328160cf8b6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba968026b-17d7b29ad7a24417","8f44c0ba9680314-17f772c9d99b3aab"]},"geometry":{"type":"LineString","coordinates":[[-83.61513790000001,32.8301115],[-83.61506270000001,32.829979900000005]]},"id":"8c44c0ba96803ff-179fb2b25210d6d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9691aa9-17dfb4f20fdf809c","8f44c0ba9680314-17f772c9d99b3aab"]},"geometry":{"type":"LineString","coordinates":[[-83.61506270000001,32.829979900000005],[-83.61498130000001,32.8298374],[-83.6148057,32.8298531],[-83.61417920000001,32.830148300000005]]},"id":"8944c0ba96bffff-17f7b3cee636f12b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb42651-17f77a745220dc3f","8f44c0babb4bc52-139f381d95baae0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6128807,32.829019200000005],[-83.6124994,32.8285902],[-83.61171,32.8279506],[-83.61192270000001,32.827912600000005]]},"id":"8944c0babb7ffff-1397f9a3e70054ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb42651-17f77a745220dc3f","8f44c0babb4235e-17df79f342040940"]},"geometry":{"type":"LineString","coordinates":[[-83.61192270000001,32.827912600000005],[-83.6121292,32.8278758]]},"id":"8b44c0babb42fff-17dffa33c3e4884f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb406db-17b77971fb734e1b","8f44c0babb4235e-17df79f342040940"]},"geometry":{"type":"LineString","coordinates":[[-83.6121292,32.8278758],[-83.61233610000001,32.8278389]]},"id":"8a44c0babb47fff-17d7f9b296ddf0ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb406db-17b77971fb734e1b","8f44c0babb402f6-17b738fb514c2078"]},"geometry":{"type":"LineString","coordinates":[[-83.61233610000001,32.8278389],[-83.61252590000001,32.827805000000005]]},"id":"8a44c0babb47fff-17bfb936a4baca2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0babb402f6-17b738fb514c2078","8f44c0babb41d62-179738416597f652"]},"geometry":{"type":"LineString","coordinates":[[-83.61252590000001,32.827805000000005],[-83.61282340000001,32.827752000000004]]},"id":"8a44c0babb47fff-1797b89e6f1af456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6524011,32.7444095]},"id":"8f44c0b14221991-1397f7a159d816a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14221991-1397f7a159d816a8","8f44c0b1430bc92-1397d7977eaf1357"]},"geometry":{"type":"LineString","coordinates":[[-83.6524169,32.7435892],[-83.6524011,32.7444095]]},"id":"8844c0b143fffff-1397f79c689714ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6510549,32.7463558]},"id":"8f44c0b14219908-13defaeab07133e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14221991-1397f7a159d816a8","8f44c0b14219908-13defaeab07133e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6524011,32.7444095],[-83.6523633,32.7463639],[-83.6510549,32.7463558]]},"id":"8944c0b1423ffff-17ded855db56e5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64797700000001,32.7463368]},"id":"8f44c0b1428384c-13bee26e68d5b6d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14219908-13defaeab07133e6","8f44c0b1428384c-13bee26e68d5b6d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6510549,32.7463558],[-83.64797700000001,32.7463368]]},"id":"8844c0b143fffff-13d6feac9ecb457c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65105670000001,32.745879800000004]},"id":"8f44c0b142036c1-179efae99b8a303e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b142036c1-179efae99b8a303e","8f44c0b14219908-13defaeab07133e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6510549,32.7463558],[-83.65105670000001,32.745879800000004]]},"id":"8a44c0b1421ffff-17b7faea20b4b98d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6510621,32.744412600000004]},"id":"8f44c0b14231106-139ffae63e1f31b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b142036c1-179efae99b8a303e","8f44c0b14231106-139ffae63e1f31b5"]},"geometry":{"type":"LineString","coordinates":[[-83.65105670000001,32.745879800000004],[-83.6510621,32.744412600000004]]},"id":"8944c0b1423ffff-17d6fae7ed375e16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14221991-1397f7a159d816a8","8f44c0b14231106-139ffae63e1f31b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6510621,32.744412600000004],[-83.6524011,32.7444095]]},"id":"8944c0b1423ffff-139ef943cde47a4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6479699,32.7458498]},"id":"8f44c0b14280884-179ee272d7ec47e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14280884-179ee272d7ec47e3","8f44c0b142036c1-179efae99b8a303e"]},"geometry":{"type":"LineString","coordinates":[[-83.65105670000001,32.745879800000004],[-83.6479699,32.7458498]]},"id":"8844c0b143fffff-1797deae3e2b76ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14280884-179ee272d7ec47e3","8f44c0b14231106-139ffae63e1f31b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6479699,32.7458498],[-83.64796630000001,32.745603200000005],[-83.6463827,32.7455972],[-83.6464256,32.7450921],[-83.64651140000001,32.744343400000005],[-83.64804310000001,32.7443815],[-83.6510621,32.744412600000004]]},"id":"8744c0b14ffffff-17ffe2475b80166c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14280884-179ee272d7ec47e3","8f44c0b1428384c-13bee26e68d5b6d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6479699,32.7458498],[-83.64797700000001,32.7463368]]},"id":"8a44c0b14287fff-17b6f27096c17332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464577,32.7464943]},"id":"8f44c0b1429364c-139ef623f02d3a1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1429364c-139ef623f02d3a1f","8f44c0b1428384c-13bee26e68d5b6d8"]},"geometry":{"type":"LineString","coordinates":[[-83.64797700000001,32.7463368],[-83.64795240000001,32.7474197],[-83.64642660000001,32.7473979],[-83.6464577,32.7464943]]},"id":"8744c0b14ffffff-13bfe43d6d380d06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6480463,32.7438804]},"id":"8f44c0b143981ad-13bfe24318bbc192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478493,32.7438804]},"id":"8f44c0b14398436-13bfe2be31c69cf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14398436-13bfe2be31c69cf3","8f44c0b143981ad-13bfe24318bbc192"]},"geometry":{"type":"LineString","coordinates":[[-83.6480463,32.7438804],[-83.6478493,32.7438804]]},"id":"8b44c0b14398fff-13bfe280a6c61120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476473,32.7438804]},"id":"8f44c0b1439a816-13bfe33c75146693"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14398436-13bfe2be31c69cf3","8f44c0b1439a816-13bfe33c75146693"]},"geometry":{"type":"LineString","coordinates":[[-83.6478493,32.7438804],[-83.6476473,32.7438804]]},"id":"8a44c0b1439ffff-13bfe2fd57d5fb0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64743890000001,32.7438804]},"id":"8f44c0b1439aca3-13bfe3bebb087d99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1439a816-13bfe33c75146693","8f44c0b1439aca3-13bfe3bebb087d99"]},"geometry":{"type":"LineString","coordinates":[[-83.6476473,32.7438804],[-83.64743890000001,32.7438804]]},"id":"8b44c0b1439afff-13bfe37d9b81231c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6472337,32.7438804]},"id":"8f44c0b1476d283-13bfe43efdf36b7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1439aca3-13bfe3bebb087d99","8f44c0b1476d283-13bfe43efdf36b7c"]},"geometry":{"type":"LineString","coordinates":[[-83.64743890000001,32.7438804],[-83.6472337,32.7438804]]},"id":"8844c0b143fffff-13bfe3fedbd7683a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6470285,32.7434954]},"id":"8f44c0b1476c360-13dee4bf30b19653"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1476c360-13dee4bf30b19653","8f44c0b1476d283-13bfe43efdf36b7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6472337,32.7438804],[-83.6470285,32.7438804],[-83.6470285,32.7434954]]},"id":"8a44c0b1476ffff-13fee4a8ea70274b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6472337,32.7430857]},"id":"8f44c0b14393c36-13def43efced738f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1476c360-13dee4bf30b19653","8f44c0b14393c36-13def43efced738f"]},"geometry":{"type":"LineString","coordinates":[[-83.6470285,32.7434954],[-83.6470285,32.7430838],[-83.6472337,32.7430857]]},"id":"8844c0b143fffff-13b7e4a9e82c8227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6474453,32.743087700000004]},"id":"8f44c0b14393918-13dff3babfbbd043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14393c36-13def43efced738f","8f44c0b14393918-13dff3babfbbd043"]},"geometry":{"type":"LineString","coordinates":[[-83.6472337,32.7430857],[-83.6474453,32.743087700000004]]},"id":"8b44c0b14393fff-13dff3fcd7c1e0e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64764410000001,32.7430895]},"id":"8f44c0b14391502-13def33e7ed3ce92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14391502-13def33e7ed3ce92","8f44c0b14393918-13dff3babfbbd043"]},"geometry":{"type":"LineString","coordinates":[[-83.6474453,32.743087700000004],[-83.64764410000001,32.7430895]]},"id":"8a44c0b14397fff-13dee37c9b451ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478494,32.743091500000006]},"id":"8f44c0b14391123-13d6f2be24ea29ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14391123-13d6f2be24ea29ec","8f44c0b14391502-13def33e7ed3ce92"]},"geometry":{"type":"LineString","coordinates":[[-83.64764410000001,32.7430895],[-83.6478494,32.743091500000006]]},"id":"8b44c0b14391fff-13dff2fe47e392ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6480506,32.7432139]},"id":"8f44c0b14391a73-139ef2406cc1e2f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14391123-13d6f2be24ea29ec","8f44c0b14391a73-139ef2406cc1e2f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6478494,32.743091500000006],[-83.64787770000001,32.7430917],[-83.6479503,32.7432139],[-83.6480506,32.7432139]]},"id":"8b44c0b14391fff-1396e28507ae0ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6472337,32.743496]},"id":"8f44c0b143936c8-13dfe43efbb88233"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14393c36-13def43efced738f","8f44c0b143936c8-13dfe43efbb88233"]},"geometry":{"type":"LineString","coordinates":[[-83.6472337,32.7430857],[-83.6472337,32.743496]]},"id":"8944c0b143bffff-13def43ef42c58cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b143936c8-13dfe43efbb88233","8f44c0b1476d283-13bfe43efdf36b7c"]},"geometry":{"type":"LineString","coordinates":[[-83.6472337,32.743496],[-83.6472337,32.7438804]]},"id":"8b44c0b1476dfff-13d7e43efdbcacf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64744200000001,32.7434967]},"id":"8f44c0b143932e9-13dff3bccac540ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b143932e9-13dff3bccac540ed","8f44c0b1439aca3-13bfe3bebb087d99"]},"geometry":{"type":"LineString","coordinates":[[-83.64743890000001,32.7438804],[-83.64744200000001,32.7434967]]},"id":"8944c0b143bffff-13d7e3bdc065ffda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b143932e9-13dff3bccac540ed","8f44c0b14393918-13dff3babfbbd043"]},"geometry":{"type":"LineString","coordinates":[[-83.64744200000001,32.7434967],[-83.6474453,32.743087700000004]]},"id":"8b44c0b14393fff-13dfe3bbb03a20e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476457,32.7434974]},"id":"8f44c0b1439ec51-13dfe33d752c869d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1439a816-13bfe33c75146693","8f44c0b1439ec51-13dfe33d752c869d"]},"geometry":{"type":"LineString","coordinates":[[-83.6476473,32.7438804],[-83.6476457,32.7434974]]},"id":"8a44c0b1439ffff-13d7f33cf7154d43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14391502-13def33e7ed3ce92","8f44c0b1439ec51-13dfe33d752c869d"]},"geometry":{"type":"LineString","coordinates":[[-83.6476457,32.7434974],[-83.64764410000001,32.7430895]]},"id":"8944c0b143bffff-13def33dfe90f29c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6478493,32.743498]},"id":"8f44c0b1439e846-13dee2be326e288f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14398436-13bfe2be31c69cf3","8f44c0b1439e846-13dee2be326e288f"]},"geometry":{"type":"LineString","coordinates":[[-83.6478493,32.7438804],[-83.6478493,32.743498]]},"id":"8a44c0b1439ffff-13d7e2be315f62a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14391123-13d6f2be24ea29ec","8f44c0b1439e846-13dee2be326e288f"]},"geometry":{"type":"LineString","coordinates":[[-83.6478493,32.743498],[-83.6478494,32.743091500000006]]},"id":"8944c0b143bffff-13dfe2be3a918351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1476c360-13dee4bf30b19653","8f44c0b143936c8-13dfe43efbb88233"]},"geometry":{"type":"LineString","coordinates":[[-83.6470285,32.7434954],[-83.6472337,32.743496]]},"id":"8a44c0b1476ffff-13def47f1c950d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b143932e9-13dff3bccac540ed","8f44c0b143936c8-13dfe43efbb88233"]},"geometry":{"type":"LineString","coordinates":[[-83.6472337,32.743496],[-83.64744200000001,32.7434967]]},"id":"8944c0b143bffff-13dff3fde2ea163a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b143932e9-13dff3bccac540ed","8f44c0b1439ec51-13dfe33d752c869d"]},"geometry":{"type":"LineString","coordinates":[[-83.64744200000001,32.7434967],[-83.6476457,32.7434974]]},"id":"8944c0b143bffff-13dff37d25c034ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1439e846-13dee2be326e288f","8f44c0b1439ec51-13dfe33d752c869d"]},"geometry":{"type":"LineString","coordinates":[[-83.6476457,32.7434974],[-83.6478493,32.743498]]},"id":"8b44c0b1439efff-13def2fdd212cd78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731029,32.746739500000004]},"id":"8f44c0b1594324e-13beb516bd905fb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594324e-13beb516bd905fb4","8f44c0b15943950-13dff514879b5cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.67310640000001,32.7463637],[-83.6731029,32.746739500000004]]},"id":"8a44c0b15947fff-13d6e515a2a79fea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6731087,32.7470325]},"id":"8f44c0b1594ad36-13fff51314fe746b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594324e-13beb516bd905fb4","8f44c0b1594ad36-13fff51314fe746b"]},"geometry":{"type":"LineString","coordinates":[[-83.6731029,32.746739500000004],[-83.6731087,32.7470325]]},"id":"8944c0b1597ffff-1397e514e9f1885f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594ad36-13fff51314fe746b","8f44c0b1594e68a-13ffe4f85b89638a"]},"geometry":{"type":"LineString","coordinates":[[-83.6731087,32.7470325],[-83.6731515,32.747026000000005]]},"id":"8a44c0b1594ffff-13fff505b8821ba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594e21b-13fea463154745cd","8f44c0b1594e68a-13ffe4f85b89638a"]},"geometry":{"type":"LineString","coordinates":[[-83.6731515,32.747026000000005],[-83.67339030000001,32.747028]]},"id":"8b44c0b1594efff-13ffe4adb692f602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15948c0c-13ffe3d99eaa846c","8f44c0b1594e21b-13fea463154745cd"]},"geometry":{"type":"LineString","coordinates":[[-83.67339030000001,32.747028],[-83.6736103,32.74703]]},"id":"8a44c0b1594ffff-13ffa41e51aa6d23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6739026,32.7470325]},"id":"8f44c0b1594d59b-13fff322e3edd660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15948c0c-13ffe3d99eaa846c","8f44c0b1594d59b-13fff322e3edd660"]},"geometry":{"type":"LineString","coordinates":[[-83.6736103,32.74703],[-83.6739026,32.7470325]]},"id":"8a44c0b1594ffff-13feb37e3dd8e7b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594d59b-13fff322e3edd660","8f44c0b15949474-1396b32993039623"]},"geometry":{"type":"LineString","coordinates":[[-83.6739026,32.7470325],[-83.6738919,32.7475017]]},"id":"8a44c0b1594ffff-1397f32631e04dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594949b-13b7f378047a4d49","8f44c0b15949474-1396b32993039623"]},"geometry":{"type":"LineString","coordinates":[[-83.6738919,32.7475017],[-83.6737664,32.747529300000004]]},"id":"8c44c0b159495ff-139fb350d7e6cfa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594949b-13b7f378047a4d49","8f44c0b1594b026-13d6b3f9e3d848b6"]},"geometry":{"type":"LineString","coordinates":[[-83.6737664,32.747529300000004],[-83.6735586,32.7475785]]},"id":"8b44c0b1594bfff-13b7b3b8ff11bc1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594b026-13d6b3f9e3d848b6","8f44c0b1594b4e6-13f7e478205d0338"]},"geometry":{"type":"LineString","coordinates":[[-83.6735586,32.7475785],[-83.6733566,32.7476244]]},"id":"8b44c0b1594bfff-13d6f43904879ce5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594b4e6-13f7e478205d0338","8f44c0b15864166-13ffa4fa6494e292"]},"geometry":{"type":"LineString","coordinates":[[-83.6733566,32.7476244],[-83.6731482,32.747673]]},"id":"8944c0b1597ffff-13f6f4b94650b229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15864166-13ffa4fa6494e292","8f44c0b15864466-139ff575305bd514"]},"geometry":{"type":"LineString","coordinates":[[-83.6731482,32.747673],[-83.6729517,32.7477183]]},"id":"8b44c0b15864fff-139ff537c4cc316a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15864466-139ff575305bd514","8f44c0b15866ba4-13b7b5f3048040ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6729517,32.7477183],[-83.6727504,32.7477627]]},"id":"8a44c0b15867fff-13bff5b427f1a26c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158660a0-13d7a6767f8d8fa7","8f44c0b15866ba4-13b7b5f3048040ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6727504,32.7477627],[-83.6725401,32.747813]]},"id":"8b44c0b15866fff-13d7f634cc401c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6724075,32.747427900000005]},"id":"8f44c0b1595b849-13f6f6c9525d8094"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1595b849-13f6f6c9525d8094","8f44c0b158660a0-13d7a6767f8d8fa7"]},"geometry":{"type":"LineString","coordinates":[[-83.6725401,32.747813],[-83.6724075,32.747427900000005]]},"id":"8844c0b159fffff-13def69fe796a01e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67218530000001,32.7473326]},"id":"8f44c0b1595bc2c-13bee7543c176c5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1595bc2c-13bee7543c176c5a","8f44c0b1595b849-13f6f6c9525d8094"]},"geometry":{"type":"LineString","coordinates":[[-83.6724075,32.747427900000005],[-83.67218530000001,32.7473326]]},"id":"8b44c0b1595bfff-13deb70ecd236893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1595bc2c-13bee7543c176c5a","8f44c0b1595a094-13d6e84e3f3e770e"]},"geometry":{"type":"LineString","coordinates":[[-83.67218530000001,32.7473326],[-83.67178530000001,32.747165200000005]]},"id":"8a44c0b1595ffff-13f6b7d138651c8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594ad36-13fff51314fe746b","8f44c0b1595d356-139fe56edb3f1072"]},"geometry":{"type":"LineString","coordinates":[[-83.6731087,32.7470325],[-83.6729619,32.747080600000004]]},"id":"8b44c0b1595dfff-13fee540f09ea77a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1595d356-139fe56edb3f1072","8f44c0b1595d651-13b7b5e8e5e03363"]},"geometry":{"type":"LineString","coordinates":[[-83.6729619,32.747080600000004],[-83.6727666,32.747140900000005]]},"id":"8b44c0b1595dfff-13b6e5abe1629198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15959d99-13f7a662af14b391","8f44c0b1595d651-13b7b5e8e5e03363"]},"geometry":{"type":"LineString","coordinates":[[-83.6727666,32.747140900000005],[-83.6725718,32.7472146]]},"id":"8a44c0b1595ffff-13dea625ce1fc7a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15959d99-13f7a662af14b391","8f44c0b1595b849-13f6f6c9525d8094"]},"geometry":{"type":"LineString","coordinates":[[-83.6725718,32.7472146],[-83.6724075,32.747427900000005]]},"id":"8a44c0b1595ffff-13b7f6960e4bc929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1587044d-1796f8f1c0bf8c06","8f44c0b15870698-17dfa91c294a0611"]},"geometry":{"type":"LineString","coordinates":[[-83.6715236,32.748084500000004],[-83.6714558,32.7482072]]},"id":"8c44c0b158707ff-17b7b906fde20758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6712914,32.7485048]},"id":"8f44c0b158734d5-1797a982edef2fc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158734d5-1797a982edef2fc8","8f44c0b15870698-17dfa91c294a0611"]},"geometry":{"type":"LineString","coordinates":[[-83.6714558,32.7482072],[-83.6712914,32.7485048]]},"id":"8a44c0b15877fff-17bea94f87713b50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67065430000001,32.747624900000005]},"id":"8f44c0b1580dd9d-13f7bb111ed7d748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580dd9d-13f7bb111ed7d748","8f44c0b15876ad4-13bea92d8772ee63"]},"geometry":{"type":"LineString","coordinates":[[-83.671428,32.747773],[-83.67065430000001,32.747624900000005]]},"id":"8844c0b159fffff-139fea1f48fe8815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580dd9d-13f7bb111ed7d748","8f44c0b1580c319-13d7bb59d9d233ea"]},"geometry":{"type":"LineString","coordinates":[[-83.67065430000001,32.747624900000005],[-83.6705379,32.7476027]]},"id":"8a44c0b1580ffff-13deab357774bdb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580c319-13d7bb59d9d233ea","8f44c0b1580c0db-13d6ababcc3a8ace"]},"geometry":{"type":"LineString","coordinates":[[-83.6705379,32.7476027],[-83.67040680000001,32.7475776]]},"id":"8b44c0b1580cfff-13dfeb82cc27f556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580c4cd-13b6ec051291ea9f","8f44c0b1580c0db-13d6ababcc3a8ace"]},"geometry":{"type":"LineString","coordinates":[[-83.67040680000001,32.7475776],[-83.67026390000001,32.7475502]]},"id":"8b44c0b1580cfff-13bffbd8614c4c6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67011740000001,32.7475222]},"id":"8f44c0b1580e84a-13b7ec60a92a7c3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580c4cd-13b6ec051291ea9f","8f44c0b1580e84a-13b7ec60a92a7c3d"]},"geometry":{"type":"LineString","coordinates":[[-83.67026390000001,32.7475502],[-83.67011740000001,32.7475222]]},"id":"8a44c0b1580ffff-13beac32d7866bb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6696347,32.7475601]},"id":"8f44c0b1581d95e-13bfbd8e5ea5cfac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580e84a-13b7ec60a92a7c3d","8f44c0b1581d95e-13bfbd8e5ea5cfac"]},"geometry":{"type":"LineString","coordinates":[[-83.67011740000001,32.7475222],[-83.67009610000001,32.7475181],[-83.6700462,32.7476533],[-83.6696347,32.7475601]]},"id":"8944c0b1583ffff-13d7ace4475c40b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66910130000001,32.7473066]},"id":"8f44c0b1581c112-139eaedbbac59ed3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1581c112-139eaedbbac59ed3","8f44c0b1581d95e-13bfbd8e5ea5cfac"]},"geometry":{"type":"LineString","coordinates":[[-83.6696347,32.7475601],[-83.6690652,32.7474311],[-83.66910130000001,32.7473066]]},"id":"8a44c0b1581ffff-1396ee5e939f41ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6691871,32.747010800000005]},"id":"8f44c0b1580272c-13f7eea611763907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580272c-13f7eea611763907","8f44c0b1581c112-139eaedbbac59ed3"]},"geometry":{"type":"LineString","coordinates":[[-83.66910130000001,32.7473066],[-83.6691871,32.747010800000005]]},"id":"8944c0b1583ffff-13bebec0e4193eab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66925180000001,32.7467878]},"id":"8f44c0b15802d4d-13d6ee7da5488c21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580272c-13f7eea611763907","8f44c0b15802d4d-13d6ee7da5488c21"]},"geometry":{"type":"LineString","coordinates":[[-83.6691871,32.747010800000005],[-83.66925180000001,32.7467878]]},"id":"8b44c0b15802fff-139ebe91db0716d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15802d4d-13d6ee7da5488c21","8f44c0b1580282b-13f7be30defd0b5d"]},"geometry":{"type":"LineString","coordinates":[[-83.66925180000001,32.7467878],[-83.6693747,32.7468153]]},"id":"8b44c0b15802fff-13defe57308593c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158004e6-13feedd430d9cc1c","8f44c0b1580282b-13f7be30defd0b5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6693747,32.7468153],[-83.6695229,32.7468486]]},"id":"8a44c0b15807fff-13f6ae02854534e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b158004e6-13feedd430d9cc1c","8f44c0b1581cb73-13befe34b505df59"]},"geometry":{"type":"LineString","coordinates":[[-83.6695229,32.7468486],[-83.6696675,32.746881],[-83.66951040000001,32.747390700000004],[-83.6693685,32.747361500000004]]},"id":"8944c0b1583ffff-13bfedba907a37b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1581cb73-13befe34b505df59","8f44c0b1581cb96-13befe8c4adca817"]},"geometry":{"type":"LineString","coordinates":[[-83.6693685,32.747361500000004],[-83.66922840000001,32.7473327]]},"id":"8c44c0b1581cbff-13b7fe607ad925bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1581cb96-13befe8c4adca817","8f44c0b1581c112-139eaedbbac59ed3"]},"geometry":{"type":"LineString","coordinates":[[-83.66922840000001,32.7473327],[-83.66910130000001,32.7473066]]},"id":"8b44c0b1581cfff-13b6feb3f6c18b5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580272c-13f7eea611763907","8f44c0b158024ee-13dffef5c3ad09cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6691871,32.747010800000005],[-83.66905960000001,32.7469759]]},"id":"8b44c0b15802fff-13d6eecdec4ce4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15802d8e-13d6eed1ed102373","8f44c0b158024ee-13dffef5c3ad09cc"]},"geometry":{"type":"LineString","coordinates":[[-83.66905960000001,32.7469759],[-83.6689396,32.746943200000004],[-83.6689894,32.746725600000005],[-83.669117,32.7467558]]},"id":"8944c0b1583ffff-13f7ef1c512c42a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15802d4d-13d6ee7da5488c21","8f44c0b15802d8e-13d6eed1ed102373"]},"geometry":{"type":"LineString","coordinates":[[-83.669117,32.7467558],[-83.66925180000001,32.7467878]]},"id":"8c44c0b15802dff-13deeea7cacfade5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.669672,32.747436300000004]},"id":"8f44c0b15803218-13ffbd770b57c203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15803218-13ffbd770b57c203","8f44c0b1581d95e-13bfbd8e5ea5cfac"]},"geometry":{"type":"LineString","coordinates":[[-83.6696347,32.7475601],[-83.669672,32.747436300000004]]},"id":"8944c0b1583ffff-1396ed82b7b391e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66982820000001,32.7474699]},"id":"8f44c0b1580ec8d-1396bd156c463ef8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580ec8d-1396bd156c463ef8","8f44c0b15803218-13ffbd770b57c203"]},"geometry":{"type":"LineString","coordinates":[[-83.669672,32.747436300000004],[-83.6698301,32.7469121],[-83.6699779,32.7469401],[-83.66982820000001,32.7474699]]},"id":"8944c0b1583ffff-13bfbd103b849765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580ec8d-1396bd156c463ef8","8f44c0b15803218-13ffbd770b57c203"]},"geometry":{"type":"LineString","coordinates":[[-83.66982820000001,32.7474699],[-83.669672,32.747436300000004]]},"id":"8944c0b1583ffff-13f6bd463912eb5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582a550-13f7aba8feba845a","8f44c0b1580e84a-13b7ec60a92a7c3d"]},"geometry":{"type":"LineString","coordinates":[[-83.67011740000001,32.7475222],[-83.67027900000001,32.7469867],[-83.67041130000001,32.747016800000004]]},"id":"8944c0b1583ffff-13dfbc1c3537ee35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582a550-13f7aba8feba845a","8f44c0b1582a000-13fffb498b535c81"]},"geometry":{"type":"LineString","coordinates":[[-83.67041130000001,32.747016800000004],[-83.670564,32.7470517]]},"id":"8b44c0b1582afff-13f6fb7931fe714a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582aa85-139fbaf8daea0421","8f44c0b1582a000-13fffb498b535c81"]},"geometry":{"type":"LineString","coordinates":[[-83.670564,32.7470517],[-83.67069310000001,32.7470811]]},"id":"8b44c0b1582afff-1396ab213a210b78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1580dd9d-13f7bb111ed7d748","8f44c0b1582aa85-139fbaf8daea0421"]},"geometry":{"type":"LineString","coordinates":[[-83.67069310000001,32.7470811],[-83.67080370000001,32.7471063],[-83.67065430000001,32.747624900000005]]},"id":"8944c0b1583ffff-13b6aae04a79f9cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6714206,32.7473645]},"id":"8f44c0b158293b3-13bef93221cd79e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15874ca3-13f7a8b555355b89","8f44c0b158293b3-13bef93221cd79e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6716203,32.7474458],[-83.6714206,32.7473645]]},"id":"8844c0b159fffff-13dee8f3c9526c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6713543,32.7474855]},"id":"8f44c0b1582964a-139ef95b9df9cf6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582964a-139ef95b9df9cf6f","8f44c0b158293b3-13bef93221cd79e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6714206,32.7473645],[-83.671042,32.7472104],[-83.67096260000001,32.7472244],[-83.67092380000001,32.7472897],[-83.67090350000001,32.7473643],[-83.67092930000001,32.7474202],[-83.67099950000001,32.747463700000004],[-83.6712323,32.7475569],[-83.67130250000001,32.747543],[-83.6713543,32.7474855]]},"id":"8944c0b1583ffff-13d6e9ea61e31491"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1582964a-139ef95b9df9cf6f","8f44c0b158293b3-13bef93221cd79e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6713543,32.7474855],[-83.6714206,32.7473645]]},"id":"8b44c0b15829fff-13f6a946e0eb0d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67228630000001,32.747197]},"id":"8f44c0b15958628-13d6a7151324d7dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15958628-13d6a7151324d7dd","8f44c0b1595bc2c-13bee7543c176c5a"]},"geometry":{"type":"LineString","coordinates":[[-83.67218530000001,32.7473326],[-83.67228630000001,32.747197]]},"id":"8a44c0b1595ffff-1396a734a07b3714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6724136,32.747223000000005]},"id":"8f44c0b15958213-13f6e6c5828d604e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15958628-13d6a7151324d7dd","8f44c0b15958213-13f6e6c5828d604e"]},"geometry":{"type":"LineString","coordinates":[[-83.67228630000001,32.747197],[-83.6721199,32.7471338],[-83.672257,32.7468937],[-83.67250990000001,32.7469294],[-83.6725523,32.746966400000005],[-83.6725131,32.7470803],[-83.6724136,32.747223000000005]]},"id":"8a44c0b1595ffff-13f6e6f36c6a7bec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15958628-13d6a7151324d7dd","8f44c0b15958213-13f6e6c5828d604e"]},"geometry":{"type":"LineString","coordinates":[[-83.6724136,32.747223000000005],[-83.67228630000001,32.747197]]},"id":"8b44c0b15958fff-13dee6ed456a26c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15946b9a-17dff5c018945f66","8f44c0b15946ce3-1796a63a662f7e0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6726362,32.7456586],[-83.6728319,32.7457525]]},"id":"8b44c0b15946fff-17b6a5fd41fede79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15941d35-17dfe46ff75052cc","8f44c0b15946b9a-17dff5c018945f66"]},"geometry":{"type":"LineString","coordinates":[[-83.6728319,32.7457525],[-83.67327350000001,32.7457804],[-83.67334550000001,32.7458395],[-83.6733825,32.745957600000004],[-83.67336970000001,32.7461782]]},"id":"8a44c0b15947fff-1797f4d70e8c4cbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15941d35-17dfe46ff75052cc","8f44c0b15941193-13d7a47729a9c4ee"]},"geometry":{"type":"LineString","coordinates":[[-83.67336970000001,32.7461782],[-83.67335820000001,32.746377]]},"id":"8b44c0b15941fff-1397a4738b2dcf91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6739091,32.746632500000004]},"id":"8f44c0b1594c80b-13f7f31ed8f126a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594c80b-13f7f31ed8f126a7","8f44c0b1594d59b-13fff322e3edd660"]},"geometry":{"type":"LineString","coordinates":[[-83.6739026,32.7470325],[-83.6739091,32.746632500000004]]},"id":"8a44c0b1594ffff-13f6f320deddb95b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594c80b-13f7f31ed8f126a7","8f44c0b1596a0c9-13f6b31931dfe59f"]},"geometry":{"type":"LineString","coordinates":[[-83.6739091,32.746632500000004],[-83.67391810000001,32.746400300000005]]},"id":"8944c0b1597ffff-13bee31c01e348d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594c80b-13f7f31ed8f126a7","8f44c0b1594ec45-13bea49f7c23abbf"]},"geometry":{"type":"LineString","coordinates":[[-83.6739091,32.746632500000004],[-83.67329600000001,32.7466215],[-83.6732937,32.746740200000005]]},"id":"8944c0b1597ffff-13f7f3fdafc6d59d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594324e-13beb516bd905fb4","8f44c0b1594ec45-13bea49f7c23abbf"]},"geometry":{"type":"LineString","coordinates":[[-83.6732937,32.746740200000005],[-83.6731029,32.746739500000004]]},"id":"8b44c0b1594efff-13bef4db1aae9626"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6747471,32.7467842]},"id":"8f44c0b064b6919-13d6a11319974ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b064b6919-13d6a11319974ddd","8f44c0b15969c4c-13ffb11846378952"]},"geometry":{"type":"LineString","coordinates":[[-83.6747388,32.7464345],[-83.6747471,32.7467842]]},"id":"8944c0b1597ffff-13f6e115b547a826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6747811,32.7482185]},"id":"8f44c0b0649505a-17d6b0fdd9aa2bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b064b6919-13d6a11319974ddd","8f44c0b0649505a-17d6b0fdd9aa2bfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6747471,32.7467842],[-83.6747811,32.7482185]]},"id":"8844c0b065fffff-1396e108717747cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b064b6919-13d6a11319974ddd","8f44c0b064b6d46-13d7f166ee75b94e"]},"geometry":{"type":"LineString","coordinates":[[-83.6747471,32.7467842],[-83.67461300000001,32.7467831]]},"id":"8b44c0b064b6fff-13d7f13cf3e51021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1596b4aa-13fef2d05ca6eeff","8f44c0b064b6d46-13d7f166ee75b94e"]},"geometry":{"type":"LineString","coordinates":[[-83.67461300000001,32.7467831],[-83.6740291,32.746778],[-83.6740347,32.7466413]]},"id":"8944c0b1597ffff-13dff23fa74dc7c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1594c80b-13f7f31ed8f126a7","8f44c0b1596b4aa-13fef2d05ca6eeff"]},"geometry":{"type":"LineString","coordinates":[[-83.6740347,32.7466413],[-83.6739091,32.746632500000004]]},"id":"8944c0b1597ffff-13feb2f794408470"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6734527,32.7450558]},"id":"8f44c0b1596290b-179fe43c1c467ebe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1596631e-17bee40e2664beb1","8f44c0b1596290b-179fe43c1c467ebe"]},"geometry":{"type":"LineString","coordinates":[[-83.6734527,32.7450558],[-83.67352620000001,32.7448964]]},"id":"8a44c0b15967fff-17feb425282eff43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b159645b2-1797b3b9ceb77fee","8f44c0b1596631e-17bee40e2664beb1"]},"geometry":{"type":"LineString","coordinates":[[-83.67352620000001,32.7448964],[-83.67366120000001,32.7446033]]},"id":"8a44c0b15967fff-17deb3e3f5d635fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b159645b2-1797b3b9ceb77fee","8f44c0b1596b9b4-13feb21d96dc31f3"]},"geometry":{"type":"LineString","coordinates":[[-83.67366120000001,32.7446033],[-83.67371800000001,32.74448],[-83.6742818,32.744697200000004],[-83.6742581,32.7448526],[-83.6742107,32.745079700000005],[-83.6740257,32.7453894],[-83.67401500000001,32.745565400000004],[-83.6741008,32.7457909],[-83.67416510000001,32.7459128],[-83.67432070000001,32.7464171]]},"id":"8544c0b3fffffff-17b7a2a684e1e823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b506262de-17fdd1ca09e53a8f","8f44c0b50605470-13d7d1fbce0970f2"]},"geometry":{"type":"LineString","coordinates":[[-83.7595716,32.8774497],[-83.7595046,32.8774079],[-83.75948190000001,32.8773848],[-83.759462,32.877352],[-83.7594507,32.877320000000005],[-83.75944480000001,32.877294],[-83.75944390000001,32.877265900000005],[-83.75944700000001,32.877239100000004],[-83.7594567,32.8772204],[-83.7595692,32.8771256],[-83.7596056,32.8770891],[-83.75962650000001,32.8770497],[-83.75964160000001,32.877007500000005],[-83.7596503,32.8769721],[-83.75965120000001,32.8764817]]},"id":"8944c0b5063ffff-17bdd1f485b170cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50624676-1797f0ed2436206e","8f44c0b506262de-17fdd1ca09e53a8f"]},"geometry":{"type":"LineString","coordinates":[[-83.75965120000001,32.8764817],[-83.75963560000001,32.8762757],[-83.7597319,32.8762453],[-83.7600046,32.8762999]]},"id":"8a44c0b50627fff-179df187dd3ef21b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.760047,32.876119]},"id":"8f44c0b5062418d-1797f0d2afecc062"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50624676-1797f0ed2436206e","8f44c0b5062418d-1797f0d2afecc062"]},"geometry":{"type":"LineString","coordinates":[[-83.7600046,32.8762999],[-83.7604139,32.8763996],[-83.76046170000001,32.876223800000005],[-83.760047,32.876119]]},"id":"8a44c0b50627fff-17f5f0485bc82f3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b50624676-1797f0ed2436206e","8f44c0b5062418d-1797f0d2afecc062"]},"geometry":{"type":"LineString","coordinates":[[-83.760047,32.876119],[-83.7600046,32.8762999]]},"id":"8b44c0b50624fff-17dff0dfe3720b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b5061dc09-13dfd38e67f790a3","8f44c0b506e6132-179df3fdca9f8237"]},"geometry":{"type":"LineString","coordinates":[[-83.7589274,32.8782817],[-83.75889430000001,32.8783769],[-83.75886080000001,32.8784669],[-83.75882820000001,32.878579300000006],[-83.7588027,32.8786962],[-83.75878200000001,32.8788002],[-83.7587683,32.8788879],[-83.7587488,32.879030400000005],[-83.75874920000001,32.8791962]]},"id":"8844c0b507fffff-13fdd3d88f5a0fd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b506e6031-17d5f3fde1343896","8f44c0b506e6132-179df3fdca9f8237"]},"geometry":{"type":"LineString","coordinates":[[-83.75874920000001,32.8791962],[-83.75874900000001,32.8792606]]},"id":"8c44c0b506e61ff-17bdd3fdd1593b50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d5b80b-1397f8b5b98df82a","8f44c0b53d59b5c-139df735e036811f"]},"geometry":{"type":"LineString","coordinates":[[-83.7568165,32.8849023],[-83.7574306,32.884909400000005]]},"id":"8a44c0b53d5ffff-139ff7f5d1be060d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d4cd89-1397d5756c069cbe","8f44c0b53d59b5c-139df735e036811f"]},"geometry":{"type":"LineString","coordinates":[[-83.7574306,32.884909400000005],[-83.7578402,32.8849104],[-83.75791100000001,32.8848989],[-83.7580195,32.8848511],[-83.7580915,32.8847797],[-83.7581395,32.8847071],[-83.75814820000001,32.884080000000004]]},"id":"8944c0b53d7ffff-13f5d5eafe2fc2fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba971baa1-1797aa6bc30c5752","8f44c0ba971bc45-17b72ad744e6302d"]},"geometry":{"type":"LineString","coordinates":[[-83.61849000000001,32.827553],[-83.61848,32.827536],[-83.618435,32.827489],[-83.618413,32.827478],[-83.618318,32.827424]]},"id":"8b44c0ba971bfff-17d7ea9dad54ecdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b817008a8-17fff612ded89ad0","8f44c0b81093829-17dfc7553e982401"]},"geometry":{"type":"LineString","coordinates":[[-83.55473470000001,32.8203703],[-83.5545455,32.820301900000004],[-83.5543976,32.8201709],[-83.5540177,32.819771],[-83.5538578,32.8195459],[-83.55376980000001,32.8193476],[-83.55367790000001,32.819031800000005],[-83.5536539,32.818857],[-83.55366190000001,32.818689],[-83.5537578,32.8185378],[-83.55421890000001,32.8176512]]},"id":"8744c0b81ffffff-13ffc7dc800f11fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81093829-17dfc7553e982401","8f44c0b810b3454-17d7c64a9f27e0e3"]},"geometry":{"type":"LineString","coordinates":[[-83.55421890000001,32.8176512],[-83.5546455,32.816830800000005]]},"id":"8944c0b810bffff-17d7e6cfeed21b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5563638,32.8151571]},"id":"8f44c0b8118e59d-13d7f218a0f3b7a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8118e59d-13d7f218a0f3b7a6","8f44c0b810b3454-17d7c64a9f27e0e3"]},"geometry":{"type":"LineString","coordinates":[[-83.5546455,32.816830800000005],[-83.5553252,32.817066000000004],[-83.5563638,32.8151571]]},"id":"8844c0b811fffff-1397c3e2b73726ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5571845,32.8136486]},"id":"8f44c0b811a0208-1797e017b3ffbb51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b811a0208-1797e017b3ffbb51","8f44c0b8118e59d-13d7f218a0f3b7a6"]},"geometry":{"type":"LineString","coordinates":[[-83.5563638,32.8151571],[-83.5571845,32.8136486]]},"id":"8944c0b811bffff-17ffd1183411c939"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55868790000001,32.8111517]},"id":"8f44c0b81c6c051-17fffc6c1e910827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81c6c051-17fffc6c1e910827","8f44c0b811a0208-1797e017b3ffbb51"]},"geometry":{"type":"LineString","coordinates":[[-83.5571845,32.8136486],[-83.55738840000001,32.813715800000004],[-83.55868790000001,32.8111517]]},"id":"8744c0b81ffffff-13d7fe22d34c610c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56267940000001,32.8111423]},"id":"8f44c0b8181a742-17f7f2ad624b8a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181a742-17f7f2ad624b8a35","8f44c0b818e645e-17d7f13611d0de7e"]},"geometry":{"type":"LineString","coordinates":[[-83.56327990000001,32.811709400000005],[-83.5629701,32.811521400000004],[-83.5627302,32.8112257],[-83.56267940000001,32.8111423]]},"id":"8844c0b819fffff-17b7f2033bd536ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5621947,32.810346800000005]},"id":"8f44c0b818acb1b-1797f3dc5c382c70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181a742-17f7f2ad624b8a35","8f44c0b818acb1b-1797f3dc5c382c70"]},"geometry":{"type":"LineString","coordinates":[[-83.56267940000001,32.8111423],[-83.5621947,32.810346800000005]]},"id":"8844c0b819fffff-17fff344e891c98e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5618827,32.8098346]},"id":"8f44c0b818125b4-13d7b49f5013faef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818acb1b-1797f3dc5c382c70","8f44c0b818125b4-13d7b49f5013faef"]},"geometry":{"type":"LineString","coordinates":[[-83.5621947,32.810346800000005],[-83.5618827,32.8098346]]},"id":"8944c0b818bffff-13f7b43dd7cc09d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5615544,32.8092958]},"id":"8f44c0b818a4aa1-13f7f56c8d1cc0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a4aa1-13f7f56c8d1cc0fa","8f44c0b818125b4-13d7b49f5013faef"]},"geometry":{"type":"LineString","coordinates":[[-83.5618827,32.8098346],[-83.5615544,32.8092958]]},"id":"8a44c0b818a7fff-139ff505fa4687f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56132430000001,32.808918000000006]},"id":"8f44c0b8198a4d9-1397f5fc5090d8b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a4aa1-13f7f56c8d1cc0fa","8f44c0b8198a4d9-1397f5fc5090d8b8"]},"geometry":{"type":"LineString","coordinates":[[-83.5615544,32.8092958],[-83.56132430000001,32.808918000000006]]},"id":"8944c0b819bffff-13fff5b47dfaae91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8198a4d9-1397f5fc5090d8b8","8f44c0b8199d2d3-1397b64074f49209"]},"geometry":{"type":"LineString","coordinates":[[-83.56132430000001,32.808918000000006],[-83.5612153,32.808739200000005]]},"id":"8a44c0b8199ffff-13dff61e67d7dcbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56111890000001,32.8085809]},"id":"8f44c0b8199d0d2-13b7b67cb0d09c09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8199d0d2-13b7b67cb0d09c09","8f44c0b8199d2d3-1397b64074f49209"]},"geometry":{"type":"LineString","coordinates":[[-83.5612153,32.808739200000005],[-83.56111890000001,32.8085809]]},"id":"8b44c0b8199dfff-13f7b65e959be325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b811a611e-13bff1366299aafc","8f44c0b8199d0d2-13b7b67cb0d09c09"]},"geometry":{"type":"LineString","coordinates":[[-83.56111890000001,32.8085809],[-83.5610309,32.8085104],[-83.56089100000001,32.808436400000005],[-83.560759,32.8083961],[-83.5606551,32.808386],[-83.5605391,32.8083894],[-83.56041520000001,32.808416300000005],[-83.56030720000001,32.8084599],[-83.5602193,32.8085238],[-83.5600433,32.808698500000006],[-83.5599554,32.8088464],[-83.5591917,32.810241000000005],[-83.5591455,32.810225800000005],[-83.5585439,32.810027600000005],[-83.5584879,32.8100092],[-83.55839200000001,32.8100764],[-83.5582241,32.8103351],[-83.55679260000001,32.8129664],[-83.55672580000001,32.813097500000005]]},"id":"8744c0b81ffffff-1797fc645304b738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b811a611e-13bff1366299aafc","8f44c0b811a2c2b-179fd1a291028a08"]},"geometry":{"type":"LineString","coordinates":[[-83.55672580000001,32.813097500000005],[-83.5566955,32.8131569],[-83.55655270000001,32.8134369]]},"id":"8a44c0b811a7fff-13b7c16c8a9c394d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b811a0208-1797e017b3ffbb51","8f44c0b811a2c2b-179fd1a291028a08"]},"geometry":{"type":"LineString","coordinates":[[-83.55655270000001,32.8134369],[-83.5571845,32.8136486]]},"id":"8a44c0b811a7fff-17d7c0dd2d3990a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56795910000001,32.8108111]},"id":"8f44c0baa496db4-17b7f5c99f01e7ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56778720000001,32.810794300000005]},"id":"8f44c0b8194b05b-179ff6350aaed6a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa496db4-17b7f5c99f01e7ff","8f44c0b8194b05b-179ff6350aaed6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.56795910000001,32.8108111],[-83.56778720000001,32.810794300000005]]},"id":"8b44c0b8194bfff-179fb5ff429b40ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56664470000001,32.8112495]},"id":"8f44c0b81862c45-17b7f8ff100277df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81862c45-17b7f8ff100277df","8f44c0b8194b05b-179ff6350aaed6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.56778720000001,32.810794300000005],[-83.5676272,32.810807700000005],[-83.56734730000001,32.8109186],[-83.56664470000001,32.8112495]]},"id":"8844c0b819fffff-1797a79f35fe1245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.565656,32.811715]},"id":"8f44c0b8187375a-17dfeb6902176c9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81862c45-17b7f8ff100277df","8f44c0b8187375a-17dfeb6902176c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.56664470000001,32.8112495],[-83.565656,32.811715]]},"id":"8944c0b8187ffff-17dfea34051738bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4961b0-179fe5925dcb31e9","8f44c0b8194b05b-179ff6350aaed6a8"]},"geometry":{"type":"LineString","coordinates":[[-83.56778720000001,32.810794300000005],[-83.5680071,32.810908500000004],[-83.5680475,32.810974]]},"id":"8844c0b819fffff-17dff5dd03f084a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa4961b0-179fe5925dcb31e9","8f44c0b81859b62-17bfa9c3d90126bc"]},"geometry":{"type":"LineString","coordinates":[[-83.5680475,32.810974],[-83.56811900000001,32.81109],[-83.56810300000001,32.8111807],[-83.5684549,32.8117688],[-83.56841490000001,32.8122695],[-83.568167,32.812427500000005],[-83.5663437,32.8132642],[-83.56631970000001,32.8133247],[-83.5663299,32.813506600000004]]},"id":"8744c0b81ffffff-1397b68b5c1f0682"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81948995-13f7f5e9c3d31b30","8f44c0baa496db4-17b7f5c99f01e7ff"]},"geometry":{"type":"LineString","coordinates":[[-83.56795910000001,32.8108111],[-83.5680031,32.8106296],[-83.5680311,32.810501900000006],[-83.5680311,32.810344],[-83.56795910000001,32.810182600000005],[-83.56790760000001,32.810093300000005]]},"id":"8a44c0b8194ffff-17d7a5b3708d26eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8194c794-1397b622553ee3c5","8f44c0b81948995-13f7f5e9c3d31b30"]},"geometry":{"type":"LineString","coordinates":[[-83.56790760000001,32.810093300000005],[-83.5678171,32.809936300000004]]},"id":"8a44c0b8194ffff-13b7e6060e488df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5673513,32.8094971]},"id":"8f44c0b8194394d-13ffb7457c32477a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8194c794-1397b622553ee3c5","8f44c0b8194394d-13ffb7457c32477a"]},"geometry":{"type":"LineString","coordinates":[[-83.5678171,32.809936300000004],[-83.5676512,32.8096483],[-83.5676392,32.8094568],[-83.5676112,32.8093795],[-83.5673513,32.8094971]]},"id":"8944c0b8197ffff-13bfa69af4d17e6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56653510000001,32.811078300000005]},"id":"8f44c0b81875a72-17dff9439f54feab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81875a72-17dff9439f54feab","8f44c0b81862c45-17b7f8ff100277df"]},"geometry":{"type":"LineString","coordinates":[[-83.56664470000001,32.8112495],[-83.56653510000001,32.811078300000005]]},"id":"8a44c0b81867fff-1797f9215bd0b3b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56644370000001,32.810935400000005]},"id":"8f44c0b81875854-17f7a97cb4b30739"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81875a72-17dff9439f54feab","8f44c0b81875854-17f7a97cb4b30739"]},"geometry":{"type":"LineString","coordinates":[[-83.56653510000001,32.811078300000005],[-83.56644370000001,32.810935400000005]]},"id":"8b44c0b81875fff-179ff96026402cb7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5661118,32.811270900000004]},"id":"8f44c0b81871d18-17d7fa4c2c16ee03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81875a72-17dff9439f54feab","8f44c0b81871d18-17d7fa4c2c16ee03"]},"geometry":{"type":"LineString","coordinates":[[-83.56653510000001,32.811078300000005],[-83.5661118,32.811270900000004]]},"id":"8944c0b8187ffff-179fa9c7e70aba3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5659091,32.810959100000005]},"id":"8f44c0b818709a8-1797facadad16026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818709a8-1797facadad16026","8f44c0b81871d18-17d7fa4c2c16ee03"]},"geometry":{"type":"LineString","coordinates":[[-83.5661118,32.811270900000004],[-83.5659468,32.8113486],[-83.5657431,32.8110353],[-83.5659091,32.810959100000005]]},"id":"8a44c0b81877fff-1797bad96c161a87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818709a8-1797facadad16026","8f44c0b81871d18-17d7fa4c2c16ee03"]},"geometry":{"type":"LineString","coordinates":[[-83.5659091,32.810959100000005],[-83.5661118,32.811270900000004]]},"id":"8a44c0b81877fff-17f7ea8b863046ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5622316,32.813464100000004]},"id":"8f44c0b818dc599-179fb3c549ffc641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818dc599-179fb3c549ffc641","8f44c0b818d16c0-13f7f45a7f4c61c7"]},"geometry":{"type":"LineString","coordinates":[[-83.5619929,32.8133743],[-83.5622316,32.813464100000004]]},"id":"8944c0b818fffff-1797b40fd5e3d3e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56244120000001,32.8137421]},"id":"8f44c0b818d8913-17dff3424172c300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818d8913-17dff3424172c300","8f44c0b818dc599-179fb3c549ffc641"]},"geometry":{"type":"LineString","coordinates":[[-83.5622316,32.813464100000004],[-83.56244120000001,32.8137421]]},"id":"8a44c0b818dffff-17f7f383c65bbccb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56333190000001,32.8127568]},"id":"8f44c0b818c424a-13f7b11597dcf3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c424a-13f7b11597dcf3fc","8f44c0b818cd522-1797bf8156794d73"]},"geometry":{"type":"LineString","coordinates":[[-83.5639787,32.8138499],[-83.5638952,32.8136375],[-83.56333190000001,32.8127568]]},"id":"8944c0b818fffff-13b7f04158a79499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c0964-13ffb1408454cbf8","8f44c0b818c424a-13f7b11597dcf3fc"]},"geometry":{"type":"LineString","coordinates":[[-83.56333190000001,32.8127568],[-83.56326320000001,32.8127872]]},"id":"8a44c0b818c7fff-13ffb12b0f4b13cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56306380000001,32.8128752]},"id":"8f44c0b818c0c4d-13bfb1bd2ad3b822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c0964-13ffb1408454cbf8","8f44c0b818c0c4d-13bfb1bd2ad3b822"]},"geometry":{"type":"LineString","coordinates":[[-83.56326320000001,32.8127872],[-83.56306380000001,32.8128752]]},"id":"8b44c0b818c0fff-1397b17ed082d665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c0c4d-13bfb1bd2ad3b822","8f44c0b818dc599-179fb3c549ffc641"]},"geometry":{"type":"LineString","coordinates":[[-83.56306380000001,32.8128752],[-83.56288330000001,32.812955],[-83.56269,32.8130706],[-83.5624051,32.8132275],[-83.56230690000001,32.8133348],[-83.5622316,32.813464100000004]]},"id":"8944c0b818fffff-13dfb2d6cdabbad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.563451,32.8127032]},"id":"8f44c0b818c5c15-13d7b0cb2938a105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c5c15-13d7b0cb2938a105","8f44c0b818c424a-13f7b11597dcf3fc"]},"geometry":{"type":"LineString","coordinates":[[-83.56333190000001,32.8127568],[-83.563451,32.8127032]]},"id":"8b44c0b818c5fff-13d7f0f0559dfea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818e3641-139ff058afe23b99","8f44c0b818c5c15-13d7b0cb2938a105"]},"geometry":{"type":"LineString","coordinates":[[-83.563451,32.8127032],[-83.56363420000001,32.812620700000004]]},"id":"8a44c0b818c7fff-13bff091eb70bb8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56499120000001,32.812009700000004]},"id":"8f44c0b81850cd5-1397bd0889508669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81850cd5-1397bd0889508669","8f44c0b818e3641-139ff058afe23b99"]},"geometry":{"type":"LineString","coordinates":[[-83.56363420000001,32.812620700000004],[-83.56499120000001,32.812009700000004]]},"id":"8844c0b819fffff-13d7aeb0985beff8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5652575,32.8118898]},"id":"8f44c0b81850925-13d7ac621ea873c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81850925-13d7ac621ea873c3","8f44c0b81850cd5-1397bd0889508669"]},"geometry":{"type":"LineString","coordinates":[[-83.56499120000001,32.812009700000004],[-83.5652575,32.8118898]]},"id":"8a44c0b81857fff-13ffacb5515b36d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81850cd5-1397bd0889508669","8f44c0b8185815d-13fffb20f77dc776"]},"geometry":{"type":"LineString","coordinates":[[-83.56499120000001,32.812009700000004],[-83.56577130000001,32.8131983]]},"id":"8944c0b8187ffff-1397ac14c20df5c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56586990000001,32.813348600000005]},"id":"8f44c0b8185834e-13d7eae351ca0904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8185834e-13d7eae351ca0904","8f44c0b8185815d-13fffb20f77dc776"]},"geometry":{"type":"LineString","coordinates":[[-83.56577130000001,32.8131983],[-83.56586990000001,32.813348600000005]]},"id":"8b44c0b81858fff-13b7fb0222f219c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c4c98-139ff1d2aa7405e6","8f44c0b818c5c15-13d7b0cb2938a105"]},"geometry":{"type":"LineString","coordinates":[[-83.563451,32.8127032],[-83.56315830000001,32.8122586],[-83.5630294,32.8124101]]},"id":"8944c0b818fffff-139fb14a77de1e16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818c0c4d-13bfb1bd2ad3b822","8f44c0b818c4c98-139ff1d2aa7405e6"]},"geometry":{"type":"LineString","coordinates":[[-83.5630294,32.8124101],[-83.5628865,32.8125779],[-83.56306380000001,32.8128752]]},"id":"8a44c0b818c7fff-139fb1f8b46a553c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5630761,32.8106188]},"id":"8f44c0b8181ea74-17bff1b570d5a374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181ea74-17bff1b570d5a374","8f44c0b8181d242-179fafed0cf2a959"]},"geometry":{"type":"LineString","coordinates":[[-83.5638064,32.811005800000004],[-83.5632492,32.8107808],[-83.5631012,32.8106531],[-83.5630761,32.8106188]]},"id":"8a44c0b8181ffff-17b7b0dc6128bd40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181e831-17b7b20a1c57286e","8f44c0b8181ea74-17bff1b570d5a374"]},"geometry":{"type":"LineString","coordinates":[[-83.5630761,32.8106188],[-83.56296130000001,32.810461600000004],[-83.5629407,32.8104305]]},"id":"8b44c0b8181efff-17f7b1e02784f967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5628576,32.810305]},"id":"8f44c0b8181161d-17ffb23e0729ccce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181e831-17b7b20a1c57286e","8f44c0b8181161d-17ffb23e0729ccce"]},"geometry":{"type":"LineString","coordinates":[[-83.5629407,32.8104305],[-83.5628576,32.810305]]},"id":"8944c0b8183ffff-179ff2241a8aea23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5622431,32.809345400000005]},"id":"8f44c0b81816d4e-1397f3be16c4abf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181161d-17ffb23e0729ccce","8f44c0b81816d4e-1397f3be16c4abf6"]},"geometry":{"type":"LineString","coordinates":[[-83.5628576,32.810305],[-83.56274540000001,32.8101356],[-83.5627374,32.8100079],[-83.5625574,32.809685300000005],[-83.5623175,32.8093997],[-83.5622431,32.809345400000005]]},"id":"8a44c0b81817fff-13bfb2e64c0fa856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5618396,32.808839400000004]},"id":"8f44c0b81988791-13d7b4ba4ebc1dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81816d4e-1397f3be16c4abf6","8f44c0b81988791-13d7b4ba4ebc1dc3"]},"geometry":{"type":"LineString","coordinates":[[-83.5622431,32.809345400000005],[-83.56207760000001,32.809224900000004],[-83.5618396,32.808839400000004]]},"id":"8844c0b819fffff-13fff448aa26dc10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5613857,32.808104400000005]},"id":"8f44c0b81983149-179ff5d5f339b4c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81988791-13d7b4ba4ebc1dc3","8f44c0b81983149-179ff5d5f339b4c3"]},"geometry":{"type":"LineString","coordinates":[[-83.5618396,32.808839400000004],[-83.5613857,32.808104400000005]]},"id":"8944c0b819bffff-17fff5482051c9ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56157780000001,32.8080554]},"id":"8f44c0b819814ca-17ffb55de6ff1a7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81983149-179ff5d5f339b4c3","8f44c0b819814ca-17ffb55de6ff1a7d"]},"geometry":{"type":"LineString","coordinates":[[-83.5613857,32.808104400000005],[-83.56115000000001,32.8077227],[-83.561138,32.807625300000005],[-83.561178,32.807554700000004],[-83.5613539,32.8074169],[-83.5615459,32.8073161],[-83.5617658,32.8072455],[-83.56196170000001,32.8072186],[-83.56217360000001,32.807248900000005],[-83.56233350000001,32.8073228],[-83.56240550000001,32.8074236],[-83.5624815,32.8075715],[-83.56248950000001,32.8077227],[-83.56241750000001,32.8079008],[-83.56229760000001,32.8080185],[-83.5621576,32.8081193],[-83.56197370000001,32.8081596],[-83.5618257,32.8081327],[-83.56167380000001,32.808072200000005],[-83.56157780000001,32.8080554]]},"id":"8944c0b819bffff-17fff4b2712d57bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81983149-179ff5d5f339b4c3","8f44c0b819814ca-17ffb55de6ff1a7d"]},"geometry":{"type":"LineString","coordinates":[[-83.56157780000001,32.8080554],[-83.5613857,32.808104400000005]]},"id":"8a44c0b81987fff-17fff599e771f56b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81834220-13b7f08dd7279b6a","8f44c0b81988791-13d7b4ba4ebc1dc3"]},"geometry":{"type":"LineString","coordinates":[[-83.5618396,32.808839400000004],[-83.5630253,32.808320900000005],[-83.5631372,32.808320900000005],[-83.5632652,32.8083478],[-83.5633451,32.8084016],[-83.5635491,32.808562900000005]]},"id":"8844c0b819fffff-139ff29bb29ffa69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81834220-13b7f08dd7279b6a","8f44c0b81816d4e-1397f3be16c4abf6"]},"geometry":{"type":"LineString","coordinates":[[-83.5635491,32.808562900000005],[-83.56292930000001,32.8088519],[-83.56283330000001,32.808825],[-83.5627494,32.808677100000004],[-83.56216160000001,32.808919100000004],[-83.5622376,32.809103900000004],[-83.5622431,32.809345400000005]]},"id":"8844c0b819fffff-13d7f29576f6bd73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80751010-17dffd5349499e97","8f44c0b8074251b-13fffc8857a86b45"]},"geometry":{"type":"LineString","coordinates":[[-83.5386572,32.8069855],[-83.53880980000001,32.8068819],[-83.53898190000001,32.806834300000006]]},"id":"8944c0b8077ffff-1797fcf1addb63b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.539769,32.8066241]},"id":"8f44c0b80740821-13fffa9c64374a83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80740821-13fffa9c64374a83","8f44c0b8074251b-13fffc8857a86b45"]},"geometry":{"type":"LineString","coordinates":[[-83.53898190000001,32.806834300000006],[-83.53923370000001,32.8067647],[-83.539769,32.8066241]]},"id":"8a44c0b80747fff-13bffb928c30c8a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5419663,32.8058179]},"id":"8f44c0b8039541d-13f7f53f10dee6ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80740821-13fffa9c64374a83","8f44c0b8039541d-13f7f53f10dee6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.539769,32.8066241],[-83.54091220000001,32.808161500000004],[-83.5424459,32.807856900000004],[-83.54285300000001,32.807744400000004],[-83.5430426,32.807645900000004],[-83.5419663,32.8058179]]},"id":"8744c0b80ffffff-17bff5ffe4371536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80740821-13fffa9c64374a83","8f44c0b8039541d-13f7f53f10dee6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5419663,32.8058179],[-83.5401705,32.8065772],[-83.539769,32.8066241]]},"id":"8744c0b80ffffff-139fe7e631092d77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b803a07b3-17d7f1642eae83da","8f44c0b8039541d-13f7f53f10dee6ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5419663,32.8058179],[-83.5435454,32.8051507]]},"id":"8944c0b803bffff-13b7f351a8b9aea2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b803a07b3-17d7f1642eae83da","8f44c0b80316cab-17dffef18f056656"]},"geometry":{"type":"LineString","coordinates":[[-83.5435454,32.8051507],[-83.544548,32.804727]]},"id":"8844c0b803fffff-17dfe02ade2b501b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85702502-13bff95345f7227a","8f44c0b80316cab-17dffef18f056656"]},"geometry":{"type":"LineString","coordinates":[[-83.544548,32.804727],[-83.5583173,32.799035100000005],[-83.55849570000001,32.799007],[-83.55873550000001,32.7989929],[-83.558953,32.7990117],[-83.55918720000001,32.799086700000004],[-83.5596501,32.7992648],[-83.5599401,32.7993492],[-83.5599564,32.7993557]]},"id":"8644c0b87ffffff-17b7dc34cdb33f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b85702502-13bff95345f7227a","8f44c0b85702759-13bfb900d5d1d974"]},"geometry":{"type":"LineString","coordinates":[[-83.5599564,32.7993557],[-83.5600596,32.799397500000005],[-83.56009730000001,32.7994502],[-83.5601048,32.7995177],[-83.5600883,32.7995818]]},"id":"8b44c0b85702fff-13f7f9114149e2dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5389652,32.8054365]},"id":"8f44c0b80776a69-1397fc92c8954382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8039541d-13f7f53f10dee6ac","8f44c0b80776a69-1397fc92c8954382"]},"geometry":{"type":"LineString","coordinates":[[-83.5419663,32.8058179],[-83.54144500000001,32.805085600000005],[-83.5413645,32.8050268],[-83.541263,32.8050209],[-83.5401605,32.8049474],[-83.54003800000001,32.804944400000004],[-83.5399505,32.804959100000005],[-83.539821,32.8050003],[-83.53898790000001,32.8054239],[-83.5389652,32.8054365]]},"id":"8744c0b80ffffff-17dfe8a71aa98e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80776a69-1397fc92c8954382","8f44c0b80709271-139fee64bc6d4d5e"]},"geometry":{"type":"LineString","coordinates":[[-83.5389652,32.8054365],[-83.5388339,32.805509300000004],[-83.53855390000001,32.805782900000004],[-83.5382197,32.806088]]},"id":"8944c0b8077ffff-13dffd804739c2fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80740821-13fffa9c64374a83","8f44c0b80776a69-1397fc92c8954382"]},"geometry":{"type":"LineString","coordinates":[[-83.539769,32.8066241],[-83.5389652,32.8054365]]},"id":"8944c0b8077ffff-13fffb979605c94e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5385107,32.804742600000004]},"id":"8f44c0b80728389-17d7edaed8fd821d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80776a69-1397fc92c8954382","8f44c0b80728389-17d7edaed8fd821d"]},"geometry":{"type":"LineString","coordinates":[[-83.5389652,32.8054365],[-83.5385107,32.804742600000004]]},"id":"8844c0b807fffff-17bfed20dfd8bef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53877440000001,32.804047100000005]},"id":"8f44c0b8072c94d-17b7fd0a0879f001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8072c94d-17b7fd0a0879f001","8f44c0b80728389-17d7edaed8fd821d"]},"geometry":{"type":"LineString","coordinates":[[-83.5385107,32.804742600000004],[-83.53834040000001,32.8044825],[-83.5381864,32.804288400000004],[-83.5380569,32.804141300000005],[-83.53804290000001,32.804050100000005],[-83.5380674,32.803976500000005],[-83.5381584,32.803955900000005],[-83.53827390000001,32.8039677],[-83.53877440000001,32.804047100000005]]},"id":"8944c0b8073ffff-1797ee2380da2582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5430656,32.8043737]},"id":"8f44c0b8005b174-17fff2900ff00d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8005b174-17fff2900ff00d1a","8f44c0b8072c94d-17b7fd0a0879f001"]},"geometry":{"type":"LineString","coordinates":[[-83.53877440000001,32.804047100000005],[-83.5396355,32.804197200000004],[-83.540143,32.8042472],[-83.5430656,32.8043737]]},"id":"8844c0b801fffff-17b7e7d05e5d83fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8072c94d-17b7fd0a0879f001","8f44c0b80728ba1-17f7ed6ebdc383a0"]},"geometry":{"type":"LineString","coordinates":[[-83.53877440000001,32.804047100000005],[-83.53870090000001,32.804206],[-83.5386764,32.8043648],[-83.53861330000001,32.8045678]]},"id":"8944c0b8073ffff-17d7ed407f5ad71a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b80728ba1-17f7ed6ebdc383a0","8f44c0b80728389-17d7edaed8fd821d"]},"geometry":{"type":"LineString","coordinates":[[-83.53861330000001,32.8045678],[-83.5385959,32.8046237],[-83.5385107,32.804742600000004]]},"id":"8b44c0b80728fff-179fed8b08eeadb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2ebb6128-13bfd4760670c811","8f44c0b2ebb0d59-17d5d3bf66fd4c5c"]},"geometry":{"type":"LineString","coordinates":[[-83.75884900000001,32.751258],[-83.7586472,32.7511175],[-83.75855680000001,32.7510181]]},"id":"8a44c0b2ebb7fff-13fdf41ebbe2221f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2ebb6128-13bfd4760670c811","8f44c0b2e8e88d5-13bfd4fc452afa0f"]},"geometry":{"type":"LineString","coordinates":[[-83.75855680000001,32.7510181],[-83.7585713,32.7503296],[-83.7585605,32.750301400000005],[-83.7585415,32.750276400000004],[-83.7585157,32.7502562],[-83.75848450000001,32.7502422],[-83.75846460000001,32.7502373],[-83.7584441,32.7502349],[-83.758342,32.7502312]]},"id":"8944c0b2e8fffff-139df481f404abe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2e8e88d5-13bfd4fc452afa0f","8f44c0b2ebb26e6-17ddd523f2cb9b24"]},"geometry":{"type":"LineString","coordinates":[[-83.758342,32.7502312],[-83.75825610000001,32.7502281],[-83.7582265,32.750234],[-83.7581988,32.7502447],[-83.7581742,32.7502597],[-83.758148,32.7502852],[-83.7581304,32.7503156],[-83.7581152,32.7505745],[-83.7581016,32.7509025],[-83.7580903,32.7511868],[-83.75807130000001,32.751540500000004],[-83.7580708,32.751565500000005],[-83.7580762,32.7515902],[-83.7580875,32.751613400000004],[-83.758104,32.751634200000005],[-83.7581255,32.7516521],[-83.7581509,32.7516659],[-83.7581792,32.7516751],[-83.75820900000001,32.751679200000005],[-83.7582785,32.7516813]]},"id":"8744c0b2effffff-13fff58346d4cf1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2ebb26e6-17ddd523f2cb9b24","8f44c0b2ebb2858-17bff4869f6bf64c"]},"geometry":{"type":"LineString","coordinates":[[-83.7582785,32.7516813],[-83.7584037,32.7516851],[-83.7584296,32.7516776],[-83.7584533,32.751665800000005],[-83.7584736,32.7516503],[-83.75849140000001,32.7516292],[-83.7585031,32.7516053],[-83.7585081,32.7515798],[-83.7585303,32.751436600000005]]},"id":"8b44c0b2ebb2fff-179ff4b9fd4fcdcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b2ebb0d59-17d5d3bf66fd4c5c","8f44c0b2ebb2858-17bff4869f6bf64c"]},"geometry":{"type":"LineString","coordinates":[[-83.7585303,32.751436600000005],[-83.75861420000001,32.7513641],[-83.7586868,32.7513165],[-83.75884900000001,32.751258]]},"id":"8a44c0b2ebb7fff-17ffd427f5af860f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2ea21328-13ffc924623a655c","8f44c0b2eb09b25-13b5c724893e80ef"]},"geometry":{"type":"LineString","coordinates":[[-83.76401200000001,32.753082],[-83.763844,32.753303],[-83.763497,32.753784],[-83.763193,32.754224]]},"id":"8844c0b2ebfffff-1397e82794a23cb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2ea21328-13ffc924623a655c","8f44c0b2eac1895-17b7ed3aaddde42b"]},"geometry":{"type":"LineString","coordinates":[[-83.763193,32.754224],[-83.76291,32.754762],[-83.762557,32.75558],[-83.76184,32.757272],[-83.761736,32.757533],[-83.761632,32.757769],[-83.761519,32.758001]]},"id":"8844c0b2ebfffff-1395fb39465ef23c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b9d80e223-17fff6a64d7a19a1","8f44c0b9d81ccb0-17b7f956af030841"]},"geometry":{"type":"LineString","coordinates":[[-83.53483800000001,32.837169],[-83.53469890000001,32.8370486],[-83.53373660000001,32.8366412]]},"id":"8944c0b9d83ffff-17dff7f6638505d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5324868,32.8361557]},"id":"8f44c0b9d8a524a-1397fc63c0705ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b9d8a524a-1397fc63c0705ade","8f44c0b9d81ccb0-17b7f956af030841"]},"geometry":{"type":"LineString","coordinates":[[-83.53373660000001,32.8366412],[-83.533563,32.8365677],[-83.5326696,32.8361895],[-83.5324868,32.8361557]]},"id":"8844c0b9d9fffff-1797fada10473e41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8ad64644-1797d90a5dcb329c","8f44c0b8a0acd11-13ffdde60b2a4088"]},"geometry":{"type":"LineString","coordinates":[[-83.5469659,32.8494972],[-83.5471802,32.8529149],[-83.5472046,32.8530789],[-83.5472507,32.853281700000004],[-83.54731310000001,32.853505000000006],[-83.54755990000001,32.8543388],[-83.5475816,32.8544846],[-83.5475789,32.854651000000004],[-83.54754630000001,32.8548537],[-83.5469659,32.8573074],[-83.54689,32.8574213],[-83.544976,32.859253700000004]]},"id":"8744c0b8affffff-13d7f936594db9a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a0ae865-17ffde6ccc89c0a9","8f44c0b8a0acd11-13ffdde60b2a4088"]},"geometry":{"type":"LineString","coordinates":[[-83.544976,32.859253700000004],[-83.5447604,32.8594601]]},"id":"8a44c0b8a0affff-17bfde2965f21ba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54085690000001,32.8595482]},"id":"8f44c0b8a46055b-17b7e7f477946f8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a46055b-17b7e7f477946f8b","8f44c0b8a7a6536-13f7fb0a0aaa45f7"]},"geometry":{"type":"LineString","coordinates":[[-83.54085690000001,32.8595482],[-83.5407984,32.859707900000004],[-83.54075800000001,32.8603837],[-83.5406974,32.860601100000004],[-83.5405963,32.860828600000005],[-83.5405114,32.8610528],[-83.5404022,32.8613007],[-83.5402445,32.8615146],[-83.54012730000001,32.861698000000004],[-83.5399939,32.8620784],[-83.53990900000001,32.8621361],[-83.5395936,32.8621429]]},"id":"8744c0b8affffff-13b7e905a317d721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5379886,32.862187]},"id":"8f44c0b8a4cd11e-1397eef5220a9243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a7a6536-13f7fb0a0aaa45f7","8f44c0b8a4cd11e-1397eef5220a9243"]},"geometry":{"type":"LineString","coordinates":[[-83.5395936,32.8621429],[-83.5392621,32.862098700000004],[-83.5390155,32.8621259],[-83.5387486,32.8622074],[-83.5383767,32.8622244],[-83.5379886,32.862187]]},"id":"8744c0b8affffff-139fecfeb2495733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ad70502-17bffcdde9f7b14f","8f44c0b8ad4241a-17d7fcab3e1e5503"]},"geometry":{"type":"LineString","coordinates":[[-83.5453986,32.8495599],[-83.5454797,32.8508258]]},"id":"8944c0b8ad7ffff-17dfdcc490dba3aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.545911,32.8516897]},"id":"8f44c0b8ad5d763-13f7db9da334ff7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ad5d763-13f7db9da334ff7d","8f44c0b8ad4241a-17d7fcab3e1e5503"]},"geometry":{"type":"LineString","coordinates":[[-83.5454797,32.8508258],[-83.5455259,32.8515478],[-83.54558390000001,32.8516276],[-83.5456578,32.8516719],[-83.54575270000001,32.8516941],[-83.545911,32.8516897]]},"id":"8944c0b8ad7ffff-13b7dc6df1dd08ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54913970000001,32.8536933]},"id":"8f44c0b8a88eb20-17d7d3bbb1b6d275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88eb20-17d7d3bbb1b6d275","8f44c0b8a88c20d-17bff2d699eedc78"]},"geometry":{"type":"LineString","coordinates":[[-83.54913970000001,32.8536933],[-83.54917680000001,32.8537107],[-83.5495063,32.853830300000006]]},"id":"8a44c0b8a88ffff-1797d3498b402720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5499616,32.8539955]},"id":"8f44c0b8a88da2e-1797f1ba0d526c35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88da2e-1797f1ba0d526c35","8f44c0b8a88c20d-17bff2d699eedc78"]},"geometry":{"type":"LineString","coordinates":[[-83.5495063,32.853830300000006],[-83.5499616,32.8539955]]},"id":"8944c0b8a8bffff-17dfd24854bd68a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5507293,32.854274000000004]},"id":"8f44c0b8a8f0ad6-17d7cfda3c146b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88da2e-1797f1ba0d526c35","8f44c0b8a8f0ad6-17d7cfda3c146b16"]},"geometry":{"type":"LineString","coordinates":[[-83.5499616,32.8539955],[-83.5507293,32.854274000000004]]},"id":"8a44c0b8a8f7fff-17ffd0ca12321a49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5509593,32.853968800000004]},"id":"8f44c0b8a8f5c1a-1797cf4a794c0387"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8f5c1a-1797cf4a794c0387","8f44c0b8a8f0ad6-17d7cfda3c146b16"]},"geometry":{"type":"LineString","coordinates":[[-83.5507293,32.854274000000004],[-83.5507649,32.854286900000005],[-83.5511658,32.8545572],[-83.5518095,32.854934],[-83.55201000000001,32.854973900000005],[-83.5521894,32.8549029],[-83.5522368,32.854832],[-83.55214190000001,32.8546769],[-83.5518042,32.854437600000004],[-83.5512872,32.854149500000005],[-83.5509593,32.853968800000004]]},"id":"8944c0b8a8fffff-13f7cdd83898b3a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54972640000001,32.8534531]},"id":"8f44c0b8a8ab525-17d7f24d033be7dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8ab525-17d7f24d033be7dc","8f44c0b8a8f5c1a-1797cf4a794c0387"]},"geometry":{"type":"LineString","coordinates":[[-83.5509593,32.853968800000004],[-83.5507807,32.853870300000004],[-83.54972640000001,32.8534531]]},"id":"8844c0b8a9fffff-17dff0c8ded9f08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54932450000001,32.8532941]},"id":"8f44c0b8a8aa4c8-17dfd34833d3d163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8aa4c8-17dfd34833d3d163","8f44c0b8a8ab525-17d7f24d033be7dc"]},"geometry":{"type":"LineString","coordinates":[[-83.54972640000001,32.8534531],[-83.54932450000001,32.8532941]]},"id":"8a44c0b8a8affff-179fd2caa0dead24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5488694,32.8535539]},"id":"8f44c0b8a88ed2b-17fff464a5a0f23e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8aa4c8-17dfd34833d3d163","8f44c0b8a88ed2b-17fff464a5a0f23e"]},"geometry":{"type":"LineString","coordinates":[[-83.54932450000001,32.8532941],[-83.54916100000001,32.8534492],[-83.5488694,32.8535539]]},"id":"8944c0b8a8bffff-17bfd3cda2318272"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54833330000001,32.8550588]},"id":"8f44c0b8a1204ad-13bfd5b3bdb6fc34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88ed2b-17fff464a5a0f23e","8f44c0b8a1204ad-13bfd5b3bdb6fc34"]},"geometry":{"type":"LineString","coordinates":[[-83.5488694,32.8535539],[-83.54867030000001,32.853732900000004],[-83.54833330000001,32.8550588]]},"id":"8744c0b8affffff-17d7f52efe166cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54870960000001,32.8552149]},"id":"8f44c0b8a12034e-139fd4c88fe2d2d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a12034e-139fd4c88fe2d2d7","8f44c0b8a1204ad-13bfd5b3bdb6fc34"]},"geometry":{"type":"LineString","coordinates":[[-83.54833330000001,32.8550588],[-83.54815330000001,32.8557672],[-83.5482377,32.8558381],[-83.5483327,32.8558603],[-83.5484909,32.855847000000004],[-83.54856480000001,32.855727300000005],[-83.54870960000001,32.8552149]]},"id":"8944c0b8a13ffff-13dfd58acaec07d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88eb20-17d7d3bbb1b6d275","8f44c0b8a12034e-139fd4c88fe2d2d7"]},"geometry":{"type":"LineString","coordinates":[[-83.54870960000001,32.8552149],[-83.54913970000001,32.8536933]]},"id":"8744c0b8affffff-13b7d4422c337720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88da2e-1797f1ba0d526c35","8f44c0b8a12034e-139fd4c88fe2d2d7"]},"geometry":{"type":"LineString","coordinates":[[-83.5499616,32.8539955],[-83.5496358,32.8550004],[-83.5495198,32.8551068],[-83.54929820000001,32.8552309],[-83.5490607,32.8553018],[-83.54870960000001,32.8552149]]},"id":"8744c0b8affffff-13b7f2d9aa96c787"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a12034e-139fd4c88fe2d2d7","8f44c0b8a1204ad-13bfd5b3bdb6fc34"]},"geometry":{"type":"LineString","coordinates":[[-83.54870960000001,32.8552149],[-83.54833330000001,32.8550588]]},"id":"8b44c0b8a120fff-13dfd53e1e040700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5501423,32.853152300000005]},"id":"8f44c0b8a8a8aa8-1797f1491efa2f46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8a8aa8-1797f1491efa2f46","8f44c0b8a8ab525-17d7f24d033be7dc"]},"geometry":{"type":"LineString","coordinates":[[-83.54972640000001,32.8534531],[-83.54985740000001,32.8532764],[-83.5500104,32.8531567],[-83.5501423,32.853152300000005]]},"id":"8a44c0b8a8affff-17dfd1d997ca7ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5505447,32.8533472]},"id":"8f44c0b8a81a493-17ffd04d92e074ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8a8aa8-1797f1491efa2f46","8f44c0b8a81a493-17ffd04d92e074ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5501423,32.853152300000005],[-83.550385,32.8532631],[-83.5505447,32.8533472]]},"id":"8a44c0b8a8affff-17bff0ca89afa3a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8f5c1a-1797cf4a794c0387","8f44c0b8a81a493-17ffd04d92e074ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5505447,32.8533472],[-83.5509231,32.8535467],[-83.55100230000001,32.853701900000004],[-83.5509593,32.853968800000004]]},"id":"8844c0b8a9fffff-179fff8afdbf74e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8f5c1a-1797cf4a794c0387","8f44c0b8a8f0ad6-17d7cfda3c146b16"]},"geometry":{"type":"LineString","coordinates":[[-83.5509593,32.853968800000004],[-83.5507293,32.854274000000004]]},"id":"8a44c0b8a8f7fff-17f7ef925a74f817"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8132a3-1797d01aef5f16a5","8f44c0b8a81a493-17ffd04d92e074ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5505447,32.8533472],[-83.5504325,32.853059200000004],[-83.55037970000001,32.8529573],[-83.55048520000001,32.8528332],[-83.5506258,32.8527392]]},"id":"8844c0b8a9fffff-17bff076b2f1988f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a813aa5-13b7efd1278e7f99","8f44c0b8a8132a3-1797d01aef5f16a5"]},"geometry":{"type":"LineString","coordinates":[[-83.5506258,32.8527392],[-83.5507438,32.852660300000004],[-83.5507438,32.8525894]]},"id":"8b44c0b8a813fff-13dfcfe9b95cd113"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5502637,32.8521152]},"id":"8f44c0b8a8128b3-13ffd0fd3c66e5fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a813aa5-13b7efd1278e7f99","8f44c0b8a8128b3-13ffd0fd3c66e5fc"]},"geometry":{"type":"LineString","coordinates":[[-83.5507438,32.8525894],[-83.550633,32.852447600000005],[-83.5502637,32.8521152]]},"id":"8a44c0b8a817fff-139fd061e81e8080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54954090000001,32.8513794]},"id":"8f44c0b8a98a6ea-13b7f2c0f04b1ae9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8128b3-13ffd0fd3c66e5fc","8f44c0b8a98a6ea-13b7f2c0f04b1ae9"]},"geometry":{"type":"LineString","coordinates":[[-83.5502637,32.8521152],[-83.55021090000001,32.851973300000004],[-83.549926,32.851667500000005],[-83.54962,32.8514193],[-83.54954090000001,32.8513794]]},"id":"8844c0b8a9fffff-1397f1c6e8de46b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5498099,32.8524697]},"id":"8f44c0b8a8a13aa-13dfd218d72e189d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8128b3-13ffd0fd3c66e5fc","8f44c0b8a8a13aa-13dfd218d72e189d"]},"geometry":{"type":"LineString","coordinates":[[-83.5502637,32.8521152],[-83.5498099,32.8524697]]},"id":"8844c0b8a9fffff-13ffd18b08e9bdac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8ae55a-179fd2dcd23ce1ef","8f44c0b8a8a13aa-13dfd218d72e189d"]},"geometry":{"type":"LineString","coordinates":[[-83.5498099,32.8524697],[-83.5494963,32.8527828]]},"id":"8944c0b8a8bffff-13bff27adbc86a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8aa4c8-17dfd34833d3d163","8f44c0b8a8ae55a-179fd2dcd23ce1ef"]},"geometry":{"type":"LineString","coordinates":[[-83.5494963,32.8527828],[-83.54944590000001,32.8528332],[-83.54932450000001,32.8532941]]},"id":"8a44c0b8a8affff-17bfd31b4c258397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8a8aa8-1797f1491efa2f46","8f44c0b8a8a13aa-13dfd218d72e189d"]},"geometry":{"type":"LineString","coordinates":[[-83.5501423,32.853152300000005],[-83.5498099,32.8524697]]},"id":"8944c0b8a8bffff-17bff1b0f2152d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54888290000001,32.85199]},"id":"8f44c0b8a8a2d5a-13bfd45c350cc909"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8a2d5a-13bfd45c350cc909","8f44c0b8a8a13aa-13dfd218d72e189d"]},"geometry":{"type":"LineString","coordinates":[[-83.5498099,32.8524697],[-83.5495989,32.8521949],[-83.5493615,32.852066400000005],[-83.5490924,32.851986600000004],[-83.54888290000001,32.85199]]},"id":"8a44c0b8a8a7fff-139fd31d7dcec5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71264980000001,32.875669800000004]},"id":"8f44c0a21ce2b05-13ffe489ee9f2535"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21ce2b05-13ffe489ee9f2535","8f44c0a21c5c4d6-17df3f7eef53f193"]},"geometry":{"type":"LineString","coordinates":[[-83.71264980000001,32.875669800000004],[-83.71292530000001,32.8757691],[-83.7147154,32.8764144]]},"id":"8844c0a21dfffff-17f65204666d2dd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d482d0-13bf39d147512fc6","8f44c0a21d48772-17f73a0ffc516c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71694090000001,32.873995400000005],[-83.7169243,32.8740132],[-83.716915,32.8740345],[-83.71691390000001,32.8740571],[-83.7169212,32.8740789],[-83.7169362,32.8740978],[-83.71695390000001,32.8741101],[-83.7169751,32.8741177],[-83.716998,32.8741198],[-83.7170207,32.874116400000005],[-83.71704120000001,32.8741075]]},"id":"8b44c0a21d48fff-139f7a077c3a55ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d482d0-13bf39d147512fc6","8f44c0a21d48772-17f73a0ffc516c9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71704120000001,32.8741075],[-83.71705580000001,32.874096300000005],[-83.71706660000001,32.874082300000005],[-83.717073,32.8740666],[-83.71707430000001,32.8740423],[-83.7170657,32.874019000000004],[-83.7170481,32.873999600000005],[-83.7170237,32.8739865],[-83.7169954,32.8739811],[-83.7169667,32.8739842],[-83.71694090000001,32.873995400000005]]},"id":"8b44c0a21d48fff-17fe79d761ab8305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152283,32.8755936]},"id":"8f44c0a21c463b5-13de3e3e5a23192f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c408c1-17bf3d35d4c25a59","8f44c0a21c463b5-13de3e3e5a23192f"]},"geometry":{"type":"LineString","coordinates":[[-83.7152283,32.8755936],[-83.7155709,32.8757521],[-83.7156515,32.875771400000005]]},"id":"8a44c0a21c47fff-179fbdbb7af3ecbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c408c1-17bf3d35d4c25a59","8f44c0a21c40bb5-17d6bd1e7cd17c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.7156515,32.875771400000005],[-83.7156889,32.8757803]]},"id":"8c44c0a21c409ff-17bffd2a26fe52bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7158847,32.875939]},"id":"8f44c0a21c456d3-17b7fca41a1abc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c456d3-17b7fca41a1abc1e","8f44c0a21c40bb5-17d6bd1e7cd17c0d"]},"geometry":{"type":"LineString","coordinates":[[-83.7156889,32.8757803],[-83.7157533,32.875800500000004],[-83.71579220000001,32.8758197],[-83.7158847,32.875939]]},"id":"8a44c0a21c47fff-17ff3cdabaefe170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21ce2b05-13ffe489ee9f2535","8f44c0a21ce4cce-139763d41ae04a7b"]},"geometry":{"type":"LineString","coordinates":[[-83.71264980000001,32.875669800000004],[-83.7127997,32.8753863],[-83.7129407,32.8750962]]},"id":"8a44c0a21ce7fff-13df642d74f6bedb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7130154,32.8749498]},"id":"8f44c0a21c0a6d1-13bfe3a5649095b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21ce4cce-139763d41ae04a7b","8f44c0a21c0a6d1-13bfe3a5649095b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7129407,32.8750962],[-83.7130154,32.8749498]]},"id":"8b44c0a21ce4fff-13ff63bcce27e783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c0a0ac-13bed366905e0816","8f44c0a21c0a6d1-13bfe3a5649095b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7130154,32.8749498],[-83.7131159,32.8747497]]},"id":"8a44c0a21c0ffff-13ff638607293463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21cad350-13ff771334d554be","8f44c0a21c0a6d1-13bfe3a5649095b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7130154,32.8749498],[-83.71161090000001,32.8744439]]},"id":"8944c0a21c3ffff-139fd55c500e3992"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21cad350-13ff771334d554be","8f44c0a21cad4e0-13b7f7d9089d26b1"]},"geometry":{"type":"LineString","coordinates":[[-83.71161090000001,32.8744439],[-83.7112944,32.874329100000004]]},"id":"8b44c0a21cadfff-13dfd77610b942bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7156302,32.8729522]},"id":"8f44c0a21d51b36-17df3d432afb4952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154455,32.872891100000004]},"id":"8f44c0a21d51896-17b6fdb69ec5a67c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d51896-17b6fdb69ec5a67c","8f44c0a21d51b36-17df3d432afb4952"]},"geometry":{"type":"LineString","coordinates":[[-83.7156302,32.8729522],[-83.7154455,32.872891100000004]]},"id":"8b44c0a21d51fff-17de3d7ce81d869b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d51896-17b6fdb69ec5a67c","8f44c0a21d5036c-179e7e245636ad48"]},"geometry":{"type":"LineString","coordinates":[[-83.7154455,32.872891100000004],[-83.71526990000001,32.872826100000005]]},"id":"8c44c0a21d51dff-17b6bded724b4ce7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71509400000001,32.8727523]},"id":"8f44c0a21d500ec-17de3e924330a827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d500ec-17de3e924330a827","8f44c0a21d5036c-179e7e245636ad48"]},"geometry":{"type":"LineString","coordinates":[[-83.71526990000001,32.872826100000005],[-83.71509400000001,32.8727523]]},"id":"8b44c0a21d50fff-17f77e5b4b160a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c33bb1-179e65062e34d36b","8f44c0a21d0b2cb-13bff02aeb87d466"]},"geometry":{"type":"LineString","coordinates":[[-83.712451,32.872855],[-83.712643,32.872948],[-83.71280700000001,32.873043],[-83.71286,32.873064],[-83.712978,32.873091],[-83.713122,32.873091],[-83.713457,32.873061],[-83.713718,32.873005],[-83.713842,32.872985],[-83.714017,32.872984],[-83.7141837,32.8730108],[-83.714211,32.872815700000004],[-83.7142445,32.8726727],[-83.71428610000001,32.8725127],[-83.71436250000001,32.872381000000004],[-83.7144402,32.8722907]]},"id":"8844c0a21dfffff-17be623b385d7d9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7145986,32.8721602]},"id":"8f44c0a21d56da3-13fe3fc7ec027890"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d56da3-13fe3fc7ec027890","8f44c0a21d0b2cb-13bff02aeb87d466"]},"geometry":{"type":"LineString","coordinates":[[-83.7144402,32.8722907],[-83.7145986,32.8721602]]},"id":"8a44c0a21d0ffff-1396fff96b7ac7ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7151954,32.8733896]},"id":"8f44c0a21d5e574-17febe52eb2c20f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d51896-17b6fdb69ec5a67c","8f44c0a21d5e574-17febe52eb2c20f3"]},"geometry":{"type":"LineString","coordinates":[[-83.7154455,32.872891100000004],[-83.7151954,32.8733896]]},"id":"8944c0a21d7ffff-17d6fe04b5d794b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d5e574-17febe52eb2c20f3","8f44c0a21d5e4a1-179e3e96345c8e59"]},"geometry":{"type":"LineString","coordinates":[[-83.7151954,32.8733896],[-83.71508770000001,32.873443200000004]]},"id":"8c44c0a21d5e5ff-17ff7e74948191db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d51b36-17df3d432afb4952","8f44c0a21d42583-17b7bd261bbc4db9"]},"geometry":{"type":"LineString","coordinates":[[-83.7156767,32.87286],[-83.7156302,32.8729522]]},"id":"8a44c0a21d57fff-17be7d34ae727d15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d5e574-17febe52eb2c20f3","8f44c0a21d51b36-17df3d432afb4952"]},"geometry":{"type":"LineString","coordinates":[[-83.7156302,32.8729522],[-83.7154373,32.8733348],[-83.715394,32.873368],[-83.715309,32.873387300000005],[-83.7151954,32.8733896]]},"id":"8944c0a21d7ffff-179f3db111c41a5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c71c58-13d63e27fab48352","8f44c0a21c460ad-13b77e636504ba87"]},"geometry":{"type":"LineString","coordinates":[[-83.7152641,32.874989],[-83.7150563,32.8753978],[-83.715169,32.8755285]]},"id":"8944c0a21c7ffff-13963e7108e9fd23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c463b5-13de3e3e5a23192f","8f44c0a21c460ad-13b77e636504ba87"]},"geometry":{"type":"LineString","coordinates":[[-83.715169,32.8755285],[-83.7152283,32.8755936]]},"id":"8b44c0a21c46fff-13bfbe50e8133f87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c463b5-13de3e3e5a23192f","8f44c0a21c71c58-13d63e27fab48352"]},"geometry":{"type":"LineString","coordinates":[[-83.7152283,32.8755936],[-83.7154843,32.8750677],[-83.7152641,32.874989]]},"id":"8944c0a21c7ffff-13f7bdeb2f365982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71492,32.872688000000004]},"id":"8f44c0a21d5042b-17b63eff05500e75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d500ec-17de3e924330a827","8f44c0a21d5042b-17b63eff05500e75"]},"geometry":{"type":"LineString","coordinates":[[-83.71492,32.872688000000004],[-83.71509400000001,32.8727523]]},"id":"8b44c0a21d50fff-17de3ec8adaffb92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d500ec-17de3e924330a827","8f44c0a21d536ac-17b73f3ea0e435ca"]},"geometry":{"type":"LineString","coordinates":[[-83.71509400000001,32.8727523],[-83.7148684,32.8731941],[-83.71481820000001,32.8732722]]},"id":"8944c0a21d7ffff-1797fee65a29a45a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21896201-13fe391ad3b163b5","8f44c0a2189678b-13d639b221ec6ccf"]},"geometry":{"type":"LineString","coordinates":[[-83.71709100000001,32.874780900000005],[-83.7172446,32.874807100000005],[-83.7173331,32.8748195]]},"id":"8b44c0a21896fff-13deb9669e044e79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21896201-13fe391ad3b163b5","8f44c0a21896348-13fef8eccb0ab753"]},"geometry":{"type":"LineString","coordinates":[[-83.7173331,32.8748195],[-83.7173867,32.8748206],[-83.7174068,32.874817300000004]]},"id":"8c44c0a218963ff-13fe7903ce2d72e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21d50cd1-1796bee52928e010","8f44c0a21d5042b-17b63eff05500e75"]},"geometry":{"type":"LineString","coordinates":[[-83.7149614,32.8726058],[-83.71492,32.872688000000004]]},"id":"8b44c0a21d50fff-179e7ef2107db13a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a21c2cb30-17f77f96c5d2b12e","8f44c0a21d5042b-17b63eff05500e75"]},"geometry":{"type":"LineString","coordinates":[[-83.71492,32.872688000000004],[-83.71467720000001,32.8731668]]},"id":"8844c0a21dfffff-17dfbf4ae83d01e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191436,32.8429998]},"id":"8f44c0a36152242-17bfe8d348f9b2c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6186072,32.8436369]},"id":"8f44c0a3602842e-17df3a228bc4d429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36152242-17bfe8d348f9b2c7","8f44c0a3602842e-17df3a228bc4d429"]},"geometry":{"type":"LineString","coordinates":[[-83.6191436,32.8429998],[-83.6186072,32.8436369]]},"id":"8844c0a361fffff-1797297ae244cb3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602842e-17df3a228bc4d429","8f44c0a3600c831-17d7baf6665fe4ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6186072,32.8436369],[-83.6182682,32.8440395]]},"id":"8a44c0a3602ffff-17d7ea8c7c74d856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61930360000001,32.843094300000004]},"id":"8f44c0a36153198-17f7f86f4a18a05d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61876600000001,32.843732800000005]},"id":"8f44c0a360280cc-179729bf41f8625e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36153198-17f7f86f4a18a05d","8f44c0a360280cc-179729bf41f8625e"]},"geometry":{"type":"LineString","coordinates":[[-83.61930360000001,32.843094300000004],[-83.61876600000001,32.843732800000005]]},"id":"8844c0a361fffff-17bfa9174a2c2461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618255,32.84436]},"id":"8f44c0a3600c203-179f2afeaabad983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360280cc-179729bf41f8625e","8f44c0a3600c203-179f2afeaabad983"]},"geometry":{"type":"LineString","coordinates":[[-83.61876600000001,32.843732800000005],[-83.618255,32.84436]]},"id":"8944c0a3603ffff-17df2a5ef97d1ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6194723,32.843183100000005]},"id":"8f44c0a36153a9b-17bf7805d88f1f05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61892870000001,32.8438287]},"id":"8f44c0a36028264-17d7f9599fc7489b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36153a9b-17bf7805d88f1f05","8f44c0a36028264-17d7f9599fc7489b"]},"geometry":{"type":"LineString","coordinates":[[-83.6194723,32.843183100000005],[-83.61892870000001,32.8438287]]},"id":"8844c0a361fffff-17f738afb489c4ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6184523,32.844393700000005]},"id":"8f44c0a3600dc0b-17b73a835b3b66b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36028264-17d7f9599fc7489b","8f44c0a3600dc0b-17b73a835b3b66b2"]},"geometry":{"type":"LineString","coordinates":[[-83.61892870000001,32.8438287],[-83.6184523,32.844393700000005]]},"id":"8944c0a3603ffff-17f7a9ee7894ffe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61908340000001,32.8439199]},"id":"8f44c0a360291a2-17fff8f8e3fdefac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360291a2-17fff8f8e3fdefac","8f44c0a3615ec34-17dfe79f83044c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.619636,32.8432636],[-83.61908340000001,32.8439199]]},"id":"8844c0a361fffff-17bfe84c3ace3869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6186486,32.8444364]},"id":"8f44c0a3600d8ec-17bfea08ac352380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3600d8ec-17bfea08ac352380","8f44c0a360291a2-17fff8f8e3fdefac"]},"geometry":{"type":"LineString","coordinates":[[-83.61908340000001,32.8439199],[-83.6186486,32.8444364]]},"id":"8944c0a3603ffff-179f6980c766286a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61924300000001,32.844014]},"id":"8f44c0a36029a82-17b7e8952432e4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36029a82-17b7e8952432e4a6","8f44c0a360291a2-17fff8f8e3fdefac"]},"geometry":{"type":"LineString","coordinates":[[-83.61924300000001,32.844014],[-83.61908340000001,32.8439199]]},"id":"8b44c0a36029fff-179768c7099f712c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36028264-17d7f9599fc7489b","8f44c0a360291a2-17fff8f8e3fdefac"]},"geometry":{"type":"LineString","coordinates":[[-83.61908340000001,32.8439199],[-83.61892870000001,32.8438287]]},"id":"8a44c0a3602ffff-17df792935cffbbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360280cc-179729bf41f8625e","8f44c0a36028264-17d7f9599fc7489b"]},"geometry":{"type":"LineString","coordinates":[[-83.61892870000001,32.8438287],[-83.61876600000001,32.843732800000005]]},"id":"8b44c0a36028fff-17b7298c7e3353f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602842e-17df3a228bc4d429","8f44c0a360280cc-179729bf41f8625e"]},"geometry":{"type":"LineString","coordinates":[[-83.61876600000001,32.843732800000005],[-83.6186072,32.8436369]]},"id":"8b44c0a36028fff-17f739f0e858713f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61841390000001,32.8435252]},"id":"8f44c0a3602e29b-17976a9b57bf7f85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602842e-17df3a228bc4d429","8f44c0a3602e29b-17976a9b57bf7f85"]},"geometry":{"type":"LineString","coordinates":[[-83.6186072,32.8436369],[-83.61841390000001,32.8435252]]},"id":"8a44c0a3602ffff-17b73a5efb40f806"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602e675-17ffeabc7f9e77d8","8f44c0a3602e29b-17976a9b57bf7f85"]},"geometry":{"type":"LineString","coordinates":[[-83.61841390000001,32.8435252],[-83.6183609,32.843494]]},"id":"8b44c0a3602efff-17ffaaabe99b8e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615e888-17977744ccbf619a","8f44c0a36029a82-17b7e8952432e4a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6197812,32.8433445],[-83.61924300000001,32.844014]]},"id":"8844c0a361fffff-17f7b7ecfacef2e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61889210000001,32.8444507]},"id":"8f44c0a3607646a-17d7b97075d5ef22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3607646a-17d7b97075d5ef22","8f44c0a36029a82-17b7e8952432e4a6"]},"geometry":{"type":"LineString","coordinates":[[-83.61924300000001,32.844014],[-83.61889210000001,32.8444507]]},"id":"8944c0a3603ffff-17bf6902c07b44e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6204606,32.845047900000004]},"id":"8f44c0a36062a48-13bff59c2f6ad9e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36062a48-13bff59c2f6ad9e0","8f44c0a3614bc02-179723d125aef375"]},"geometry":{"type":"LineString","coordinates":[[-83.6204606,32.845047900000004],[-83.621195,32.8441682]]},"id":"8844c0a361fffff-13bf34b6a38a76e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62166950000001,32.8436022]},"id":"8f44c0a3614c35c-17b762a8956b1486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614c35c-17b762a8956b1486","8f44c0a3614bc02-179723d125aef375"]},"geometry":{"type":"LineString","coordinates":[[-83.621195,32.8441682],[-83.62166950000001,32.8436022]]},"id":"8a44c0a3614ffff-17f7633ce6d269bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36153a9b-17bf7805d88f1f05","8f44c0a36153198-17f7f86f4a18a05d"]},"geometry":{"type":"LineString","coordinates":[[-83.6194723,32.843183100000005],[-83.6193964,32.8431492],[-83.61930360000001,32.843094300000004]]},"id":"8b44c0a36153fff-1797383b5d7be7a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36152242-17bfe8d348f9b2c7","8f44c0a36153198-17f7f86f4a18a05d"]},"geometry":{"type":"LineString","coordinates":[[-83.61930360000001,32.843094300000004],[-83.6191436,32.8429998]]},"id":"8a44c0a36157fff-17df78a14adbb306"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618947,32.8428836]},"id":"8f44c0a3615270c-13f7694e2fe5e9f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36152242-17bfe8d348f9b2c7","8f44c0a3615270c-13f7694e2fe5e9f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6191436,32.8429998],[-83.618947,32.8428836]]},"id":"8b44c0a36152fff-1797b910b49d39c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a361524ad-13b769afced23065","8f44c0a3615270c-13f7694e2fe5e9f7"]},"geometry":{"type":"LineString","coordinates":[[-83.618947,32.8428836],[-83.6187908,32.8427894]]},"id":"8b44c0a36152fff-13d7f97ef85a9695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a361524ad-13b769afced23065","8f44c0a36025652-13f7ea3b98100a19"]},"geometry":{"type":"LineString","coordinates":[[-83.6187908,32.8427894],[-83.6185671,32.8426556]]},"id":"8a44c0a36027fff-139fb9f5bbb58a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36062c23-139ff66b2646e77c","8f44c0a36062a48-13bff59c2f6ad9e0"]},"geometry":{"type":"LineString","coordinates":[[-83.62012940000001,32.8447933],[-83.62029580000001,32.8450283],[-83.6204606,32.845047900000004]]},"id":"8b44c0a36062fff-139776115e03cbd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36063930-13df2515aaac6cf8","8f44c0a36062a48-13bff59c2f6ad9e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6204606,32.845047900000004],[-83.6206758,32.845069]]},"id":"8a44c0a36067fff-13d7b558e7020998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6209007,32.845088100000005]},"id":"8f44c0a36061cd2-13d73489119f0628"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36061cd2-13d73489119f0628","8f44c0a36063930-13df2515aaac6cf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6206758,32.845069],[-83.6209007,32.845088100000005]]},"id":"8a44c0a36067fff-13df24cf6d841baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36061cd2-13d73489119f0628","8f44c0a36a96980-17df629a6dea17d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6209007,32.845088100000005],[-83.62092750000001,32.8450908],[-83.6210992,32.8451071],[-83.6211646,32.845078900000004],[-83.621246,32.844982300000005],[-83.6216922,32.844458]]},"id":"8844c0a361fffff-13bf737cb2b1c1b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614c35c-17b762a8956b1486","8f44c0a3616b194-17f7a20423760b18"]},"geometry":{"type":"LineString","coordinates":[[-83.62166950000001,32.8436022],[-83.62193260000001,32.8432904]]},"id":"8944c0a3617ffff-17d7f2565b9e60d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3616b194-17f7a20423760b18","8f44c0a3616d532-139720d63f94690b"]},"geometry":{"type":"LineString","coordinates":[[-83.62193260000001,32.8432904],[-83.6224157,32.842712]]},"id":"8a44c0a3616ffff-17bfe16d2ac55125"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3616b061-17bfe1a5f7684e89","8f44c0a3616d532-139720d63f94690b"]},"geometry":{"type":"LineString","coordinates":[[-83.6224157,32.842712],[-83.6224653,32.8429127],[-83.6220833,32.8433822]]},"id":"8a44c0a3616ffff-17f7f11423ef6d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614d1b6-17f7224cbc42e374","8f44c0a3616b061-17bfe1a5f7684e89"]},"geometry":{"type":"LineString","coordinates":[[-83.6220833,32.8433822],[-83.62181650000001,32.8437104]]},"id":"8944c0a3617ffff-179771f9528764cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36061cd2-13d73489119f0628","8f44c0a3614ba75-179f2306a5e4394b"]},"geometry":{"type":"LineString","coordinates":[[-83.6209007,32.845088100000005],[-83.621519,32.844357]]},"id":"8844c0a361fffff-13ffa3c7da3b5a1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6219653,32.8438275]},"id":"8f44c0a3614d068-17d731efbc0dfd05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614ba75-179f2306a5e4394b","8f44c0a3614d068-17d731efbc0dfd05"]},"geometry":{"type":"LineString","coordinates":[[-83.621519,32.844357],[-83.6219653,32.8438275]]},"id":"8a44c0a3614ffff-17f7b27b353b3989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36a96980-17df629a6dea17d2","8f44c0a3614d068-17d731efbc0dfd05"]},"geometry":{"type":"LineString","coordinates":[[-83.6216922,32.844458],[-83.6221266,32.8439223],[-83.6219653,32.8438275]]},"id":"8744c0a36ffffff-17fff2007b760ace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614d1b6-17f7224cbc42e374","8f44c0a3614d068-17d731efbc0dfd05"]},"geometry":{"type":"LineString","coordinates":[[-83.6219653,32.8438275],[-83.62181650000001,32.8437104]]},"id":"8b44c0a3614dfff-179fa21e3dd1d82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614c35c-17b762a8956b1486","8f44c0a3614d1b6-17f7224cbc42e374"]},"geometry":{"type":"LineString","coordinates":[[-83.62181650000001,32.8437104],[-83.62166950000001,32.8436022]]},"id":"8a44c0a3614ffff-17d7327aa5f186b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614c35c-17b762a8956b1486","8f44c0a3614c08d-17fff31bc9162092"]},"geometry":{"type":"LineString","coordinates":[[-83.62166950000001,32.8436022],[-83.62148520000001,32.8434893]]},"id":"8b44c0a3614cfff-179722e22543dacf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614c08d-17fff31bc9162092","8f44c0a3614c585-17bfe39065f6bb15"]},"geometry":{"type":"LineString","coordinates":[[-83.62148520000001,32.8434893],[-83.6212986,32.8433854]]},"id":"8b44c0a3614cfff-17df73561a2f00aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36141293-17fff3ea2272277c","8f44c0a3614c585-17bfe39065f6bb15"]},"geometry":{"type":"LineString","coordinates":[[-83.6212986,32.8433854],[-83.621155,32.8433055]]},"id":"8944c0a3617ffff-1797f3bd4d7be054"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36141790-17d7345022893c5e","8f44c0a36141293-17fff3ea2272277c"]},"geometry":{"type":"LineString","coordinates":[[-83.621155,32.8433055],[-83.6209918,32.843214700000004]]},"id":"8c44c0a361417ff-17dfb41d25ed5626"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614380c-179764c2e4a03d80","8f44c0a36141790-17d7345022893c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6209918,32.843214700000004],[-83.6208082,32.8431124]]},"id":"8a44c0a36147fff-17b73489802d9bcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3614380c-179764c2e4a03d80","8f44c0a36143d2a-17d7352b32964a28"]},"geometry":{"type":"LineString","coordinates":[[-83.6208082,32.8431124],[-83.6206413,32.843019500000004]]},"id":"8b44c0a36143fff-17f764f71cea28ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36142a1e-17973586eb907dd1","8f44c0a36143d2a-17d7352b32964a28"]},"geometry":{"type":"LineString","coordinates":[[-83.6206413,32.843019500000004],[-83.6204946,32.8429379]]},"id":"8a44c0a36147fff-17bfb5590c04c2d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3600c203-179f2afeaabad983","8f44c0a3600c2a1-179f7b18211e4e20"]},"geometry":{"type":"LineString","coordinates":[[-83.61821420000001,32.844354100000004],[-83.618255,32.84436]]},"id":"8c44c0a3600c3ff-179f2b0b6c5a90a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3600c203-179f2afeaabad983","8f44c0a3600dc0b-17b73a835b3b66b2"]},"geometry":{"type":"LineString","coordinates":[[-83.618255,32.84436],[-83.6184523,32.844393700000005]]},"id":"8a44c0a3600ffff-1797bac10b69fc5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3600d8ec-17bfea08ac352380","8f44c0a3600dc0b-17b73a835b3b66b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6184523,32.844393700000005],[-83.6186486,32.8444364]]},"id":"8b44c0a3600dfff-17bf7a460a0c6c0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3607646a-17d7b97075d5ef22","8f44c0a3600d8ec-17bfea08ac352380"]},"geometry":{"type":"LineString","coordinates":[[-83.6186486,32.8444364],[-83.6187945,32.8444574],[-83.61889210000001,32.8444507]]},"id":"8944c0a3603ffff-17d729bcb2802815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36076a82-17d738e2257a5dae","8f44c0a3607646a-17d7b97075d5ef22"]},"geometry":{"type":"LineString","coordinates":[[-83.61889210000001,32.8444507],[-83.61900410000001,32.8444522],[-83.6191198,32.8444451]]},"id":"8b44c0a36076fff-17d769294c1cd25b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36076a82-17d738e2257a5dae","8f44c0a360746a4-17bfe85b8eee0fdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6191198,32.8444451],[-83.61933520000001,32.8444334]]},"id":"8a44c0a36077fff-17bfb89edb5cad7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3607430d-17b7b7ae36b59b58","8f44c0a360746a4-17bfe85b8eee0fdd"]},"geometry":{"type":"LineString","coordinates":[[-83.61933520000001,32.8444334],[-83.6196125,32.8444249]]},"id":"8b44c0a36074fff-17bf6804e0b593a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615b6eb-17bf770a59fa989f","8f44c0a3607430d-17b7b7ae36b59b58"]},"geometry":{"type":"LineString","coordinates":[[-83.6196125,32.8444249],[-83.61987470000001,32.844414900000004]]},"id":"8a44c0a36077fff-17b7775c4fbe497c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3615b6eb-17bf770a59fa989f","8f44c0a3615d2ac-17d7f539a94f7f47"]},"geometry":{"type":"LineString","coordinates":[[-83.61987470000001,32.844414900000004],[-83.62012010000001,32.8444044],[-83.62061820000001,32.843831900000005]]},"id":"8844c0a361fffff-17b7660e29e520d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602e29b-17976a9b57bf7f85","8f44c0a3615270c-13f7694e2fe5e9f7"]},"geometry":{"type":"LineString","coordinates":[[-83.618947,32.8428836],[-83.61841390000001,32.8435252]]},"id":"8944c0a3603ffff-17bfe9f4c8eb8082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3602e29b-17976a9b57bf7f85","8f44c0a3602a8a4-17bfaac88f9da4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.61841390000001,32.8435252],[-83.61834160000001,32.8436122]]},"id":"8a44c0a3602ffff-179f7ab1e9f2995e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176178,32.8477602]},"id":"8f44c0a360cd659-17df2c8ce6f7cfc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cd659-17df2c8ce6f7cfc4","8f44c0a360cd735-17f7bc9d0230e520"]},"geometry":{"type":"LineString","coordinates":[[-83.6176178,32.8477602],[-83.6176056,32.8477021],[-83.617592,32.8475977]]},"id":"8c44c0a360cd7ff-17b7ac95de9bd527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cdc09-17976c8f4a659729","8f44c0a360cd735-17f7bc9d0230e520"]},"geometry":{"type":"LineString","coordinates":[[-83.617592,32.8475977],[-83.61758730000001,32.8475757],[-83.6175954,32.847475],[-83.617614,32.847415000000005]]},"id":"8b44c0a360cdfff-17bf3c9acec91a52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ebca5-17f7bc68f196d7c3","8f44c0a360eb470-17df7c75894d253f"]},"geometry":{"type":"LineString","coordinates":[[-83.6176552,32.8471205],[-83.6176585,32.8470651],[-83.6176753,32.8469563]]},"id":"8b44c0a360ebfff-1797ec7054eac586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617689,32.8468681]},"id":"8f44c0a360eaa4e-17bfbc606f4124f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ebca5-17f7bc68f196d7c3","8f44c0a360eaa4e-17bfbc606f4124f3"]},"geometry":{"type":"LineString","coordinates":[[-83.6176753,32.8469563],[-83.617689,32.8468681]]},"id":"8a44c0a360effff-17df2c64a8f0595a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61770320000001,32.846776500000004]},"id":"8f44c0a360eab44-17f77c5781427cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360eaa4e-17bfbc606f4124f3","8f44c0a360eab44-17f77c5781427cc9"]},"geometry":{"type":"LineString","coordinates":[[-83.617689,32.8468681],[-83.61770320000001,32.846776500000004]]},"id":"8c44c0a360eabff-179ffc5bff2f29c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61771180000001,32.8466467]},"id":"8f44c0a360e8432-17b73c522e20f9a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360e8432-17b73c522e20f9a6","8f44c0a360eab44-17f77c5781427cc9"]},"geometry":{"type":"LineString","coordinates":[[-83.61770320000001,32.846776500000004],[-83.61771540000001,32.846698],[-83.61771180000001,32.8466467]]},"id":"8b44c0a360e8fff-17dffc52ad5ba5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360e8432-17b73c522e20f9a6","8f44c0a360ee271-17f72c597e656ed7"]},"geometry":{"type":"LineString","coordinates":[[-83.61771180000001,32.8466467],[-83.6177072,32.846580100000004],[-83.61770010000001,32.846544200000004]]},"id":"8a44c0a360effff-17973c54eb13eee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ee271-17f72c597e656ed7","8f44c0a360eea1e-17ff6c46809bc936"]},"geometry":{"type":"LineString","coordinates":[[-83.61770010000001,32.846544200000004],[-83.6177011,32.8464947],[-83.6177194,32.846411100000005],[-83.6177304,32.8463828]]},"id":"8b44c0a360eefff-17bf3c533112a602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ec4a1-17b72c12f3bcb5c7","8f44c0a360eea1e-17ff6c46809bc936"]},"geometry":{"type":"LineString","coordinates":[[-83.6177304,32.8463828],[-83.617754,32.846322300000004],[-83.6178129,32.8462386]]},"id":"8a44c0a360effff-17dfec2f64506ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ec4a1-17b72c12f3bcb5c7","8f44c0a360ecce2-13f7abbf64d71dd6"]},"geometry":{"type":"LineString","coordinates":[[-83.6178129,32.8462386],[-83.61794660000001,32.8461352]]},"id":"8b44c0a360ecfff-1797fbe9236de73c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61705070000001,32.8477533]},"id":"8f44c0a360c8781-17d7fdef53ce9b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cd659-17df2c8ce6f7cfc4","8f44c0a360c8781-17d7fdef53ce9b3a"]},"geometry":{"type":"LineString","coordinates":[[-83.61705070000001,32.8477533],[-83.6176178,32.8477602]]},"id":"8a44c0a360cffff-17df2d3e22114903"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.617632,32.8479224]},"id":"8f44c0a360c98d8-13bfac840a53f292"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c98d8-13bfac840a53f292","8f44c0a360cd659-17df2c8ce6f7cfc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6176178,32.8477602],[-83.617632,32.8479224]]},"id":"8a44c0a360cffff-139ffc8875b24cff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363b030d-13b7fa0ddf68d289","8f44c0a363b2736-13bfabc7f229c892"]},"geometry":{"type":"LineString","coordinates":[[-83.61864030000001,32.8478797],[-83.6180061,32.8479207],[-83.6179329,32.847921]]},"id":"8a44c0a363b7fff-13b7faead9c65053"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c98d8-13bfac840a53f292","8f44c0a363b2736-13bfabc7f229c892"]},"geometry":{"type":"LineString","coordinates":[[-83.6179329,32.847921],[-83.617632,32.8479224]]},"id":"8944c0a363bffff-13bf3c260cd7b95a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c98d8-13bfac840a53f292","8f44c0a360c8781-17d7fdef53ce9b3a"]},"geometry":{"type":"LineString","coordinates":[[-83.617632,32.8479224],[-83.61703440000001,32.847910500000005],[-83.61705070000001,32.8477533]]},"id":"8a44c0a360cffff-13b7ed64c61ffcd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c8cd4-17d73ddf6db9c93c","8f44c0a360c8781-17d7fdef53ce9b3a"]},"geometry":{"type":"LineString","coordinates":[[-83.61705070000001,32.8477533],[-83.6170762,32.847545700000005]]},"id":"8b44c0a360c8fff-1797fde765153d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ceb4a-17df7dcddfb28d5b","8f44c0a360c8cd4-17d73ddf6db9c93c"]},"geometry":{"type":"LineString","coordinates":[[-83.6170762,32.847545700000005],[-83.61710430000001,32.8473527]]},"id":"8a44c0a360cffff-1797edd6a3e31908"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cc431-17f7bdbef3511edf","8f44c0a360ceb4a-17df7dcddfb28d5b"]},"geometry":{"type":"LineString","coordinates":[[-83.61710430000001,32.8473527],[-83.6171281,32.8471897]]},"id":"8a44c0a360cffff-17bfadc66d6dd084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cc431-17f7bdbef3511edf","8f44c0a360cccb2-17b77db2dbdc2386"]},"geometry":{"type":"LineString","coordinates":[[-83.6171281,32.8471897],[-83.6171475,32.8470565]]},"id":"8b44c0a360ccfff-17dffdb8e8261c6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c1a2e-17d73da4fd67e649","8f44c0a360cccb2-17b77db2dbdc2386"]},"geometry":{"type":"LineString","coordinates":[[-83.6171475,32.8470565],[-83.6171697,32.8469043]]},"id":"8944c0a360fffff-17f7edabe9a83083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360c1a2e-17d73da4fd67e649","8f44c0a360eab44-17f77c5781427cc9"]},"geometry":{"type":"LineString","coordinates":[[-83.6171697,32.8469043],[-83.61719500000001,32.846723600000004],[-83.61770320000001,32.846776500000004]]},"id":"8944c0a360fffff-17ff7d223a103cb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618527,32.846382600000005]},"id":"8f44c0a360ed901-17ff2a54aecf64dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360edd00-17ff2acdeba1b8d0","8f44c0a360ed901-17ff2a54aecf64dc"]},"geometry":{"type":"LineString","coordinates":[[-83.618527,32.846382600000005],[-83.618333,32.8463602]]},"id":"8b44c0a360edfff-17f72a91454311fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360edd00-17ff2acdeba1b8d0","8f44c0a360ec31c-17ffab48f772d0fd"]},"geometry":{"type":"LineString","coordinates":[[-83.618333,32.8463602],[-83.6182362,32.846349000000004],[-83.6181361,32.8463496]]},"id":"8a44c0a360effff-17fffb0b5c1c4461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36053dae-13ff2a9fb34daf6a","8f44c0a360ec31c-17ffab48f772d0fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6181361,32.8463496],[-83.6181557,32.8462544],[-83.6182174,32.8459209],[-83.61840690000001,32.8459426]]},"id":"8844c0a361fffff-13bffb157aa1da24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36053dae-13ff2a9fb34daf6a","8f44c0a360ed901-17ff2a54aecf64dc"]},"geometry":{"type":"LineString","coordinates":[[-83.61840690000001,32.8459426],[-83.6185902,32.8459637],[-83.618527,32.846382600000005]]},"id":"8944c0a3607ffff-13d7aa4c4eb3b437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360ed901-17ff2a54aecf64dc","8f44c0a360ed236-17d7aa7bda091e3e"]},"geometry":{"type":"LineString","coordinates":[[-83.618527,32.846382600000005],[-83.6184937,32.8466036],[-83.6184643,32.8467032]]},"id":"8b44c0a360edfff-17f72a6548cf2741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61888040000001,32.846329700000005]},"id":"8f44c0a3605ed4b-17df3977c6fa0589"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605a8a0-17f7b9a07e5dbcc4","8f44c0a3605ed4b-17df3977c6fa0589"]},"geometry":{"type":"LineString","coordinates":[[-83.61881530000001,32.8467579],[-83.61888040000001,32.846329700000005]]},"id":"8a44c0a3605ffff-17f7e98c17a714c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605ed4b-17df3977c6fa0589","8f44c0a36051d0d-13bff949ce12d5fe"]},"geometry":{"type":"LineString","coordinates":[[-83.61888040000001,32.846329700000005],[-83.618954,32.845844500000005]]},"id":"8944c0a3607ffff-13d77960cb86eaaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191036,32.8463524]},"id":"8f44c0a3605c484-17ff68ec41b60d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36058402-17f7a9150d8b020b","8f44c0a3605c484-17ff68ec41b60d0c"]},"geometry":{"type":"LineString","coordinates":[[-83.61903840000001,32.8467818],[-83.6191036,32.8463524]]},"id":"8a44c0a3605ffff-17f77900a6c39e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36051962-13bfe8be51640da9","8f44c0a3605c484-17ff68ec41b60d0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6191036,32.8463524],[-83.6191771,32.8458684]]},"id":"8944c0a3607ffff-13d728d54a309d9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605c094-17f7f88419959b1d","8f44c0a3605c484-17ff68ec41b60d0c"]},"geometry":{"type":"LineString","coordinates":[[-83.61927030000001,32.8463693],[-83.6191036,32.8463524]]},"id":"8b44c0a3605cfff-17ffb8b838eaf2f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605ed4b-17df3977c6fa0589","8f44c0a3605c484-17ff68ec41b60d0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6191036,32.8463524],[-83.61888040000001,32.846329700000005]]},"id":"8a44c0a3605ffff-17f739320d450c3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605ed4b-17df3977c6fa0589","8f44c0a3605ecb1-17d739da220314c2"]},"geometry":{"type":"LineString","coordinates":[[-83.61888040000001,32.846329700000005],[-83.618723,32.8463137]]},"id":"8c44c0a3605edff-17d739a8f364d94b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605256c-13973b704c6e7cc8","8f44c0a360520a9-13bfab4a3242f256"]},"geometry":{"type":"LineString","coordinates":[[-83.6181341,32.8458458],[-83.61807320000001,32.8457811]]},"id":"8b44c0a36052fff-139f7b5d3323de23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605256c-13973b704c6e7cc8","8f44c0a360e114d-13f7ac2ae3354635"]},"geometry":{"type":"LineString","coordinates":[[-83.61807320000001,32.8457811],[-83.6179991,32.8457371],[-83.6173744,32.8456671],[-83.6173552,32.8458095],[-83.61773720000001,32.8458587],[-83.6177746,32.845932000000005]]},"id":"8944c0a360fffff-13ff3c8042ad06a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360e114d-13f7ac2ae3354635","8f44c0a360e1ad0-139f2c07a5696604"]},"geometry":{"type":"LineString","coordinates":[[-83.6177746,32.845932000000005],[-83.61783100000001,32.8460016]]},"id":"8b44c0a360e1fff-13ff6c1940276ae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200958,32.8455657]},"id":"8f44c0a36044280-13ffb6802de0b079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36046402-13dfb82ccea742ad","8f44c0a36044280-13ffb6802de0b079"]},"geometry":{"type":"LineString","coordinates":[[-83.6200958,32.8455657],[-83.61941,32.8454859]]},"id":"8a44c0a36047fff-13f7a7567ff200cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36046402-13dfb82ccea742ad","8f44c0a36054231-13b739896b5d31ce"]},"geometry":{"type":"LineString","coordinates":[[-83.61941,32.8454859],[-83.6188522,32.8454209]]},"id":"8944c0a3607ffff-13bf68db1623d657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6183371,32.845361000000004]},"id":"8f44c0a36056155-13ffaacb551d5771"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36054231-13b739896b5d31ce","8f44c0a36056155-13ffaacb551d5771"]},"geometry":{"type":"LineString","coordinates":[[-83.6188522,32.8454209],[-83.6183371,32.845361000000004]]},"id":"8a44c0a36057fff-13976a2a62aaec72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61794370000001,32.8453151]},"id":"8f44c0a360e5908-13f7fbc137c3653d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36056155-13ffaacb551d5771","8f44c0a360e5908-13f7fbc137c3653d"]},"geometry":{"type":"LineString","coordinates":[[-83.6183371,32.845361000000004],[-83.61794370000001,32.8453151]]},"id":"8844c0a361fffff-13f77b464c1a6761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200668,32.8457607]},"id":"8f44c0a360408cc-13ff7692433fe1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3606a501-13ff752f4333f0be","8f44c0a360408cc-13ff7692433fe1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6206348,32.8459735],[-83.62067040000001,32.845892400000004],[-83.6206611,32.8458303],[-83.6205934,32.8458095],[-83.6200668,32.8457607]]},"id":"8944c0a3607ffff-139fa5b2e518a7f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360408cc-13ff7692433fe1b7","8f44c0a36055a6a-13d7a83dd57bfa4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6200668,32.8457607],[-83.6193827,32.845677800000004]]},"id":"8a44c0a36047fff-13dfb76813a3526a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605086c-139fa99939258f9f","8f44c0a36055a6a-13d7a83dd57bfa4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6193827,32.845677800000004],[-83.6188269,32.845610400000005]]},"id":"8944c0a3607ffff-13bfb8eb842a8007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6183072,32.8455481]},"id":"8f44c0a36056284-13f7bade012074e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36056284-13f7bade012074e3","8f44c0a3605086c-139fa99939258f9f"]},"geometry":{"type":"LineString","coordinates":[[-83.6188269,32.845610400000005],[-83.6183072,32.8455481]]},"id":"8a44c0a36057fff-13973a3ba17b0171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61792820000001,32.845501500000005]},"id":"8f44c0a360e5ab5-13d77bcaeb2ffd86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36056284-13f7bade012074e3","8f44c0a360e5ab5-13d77bcaeb2ffd86"]},"geometry":{"type":"LineString","coordinates":[[-83.6183072,32.8455481],[-83.61792820000001,32.845501500000005]]},"id":"8844c0a361fffff-13f72b547cfc6f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6201556,32.8451639]},"id":"8f44c0a3606264e-1397765acae07c99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36044889-13dfe66792d711ae","8f44c0a3606264e-1397765acae07c99"]},"geometry":{"type":"LineString","coordinates":[[-83.6201556,32.8451639],[-83.6201351,32.845302000000004]]},"id":"8944c0a3607ffff-13bfa6613fb4ff52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62012610000001,32.8453619]},"id":"8f44c0a36044109-13ff366d3fa17c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36044889-13dfe66792d711ae","8f44c0a36044109-13ff366d3fa17c36"]},"geometry":{"type":"LineString","coordinates":[[-83.6201351,32.845302000000004],[-83.62012610000001,32.8453619]]},"id":"8b44c0a36044fff-13ffa66a679680a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36044109-13ff366d3fa17c36","8f44c0a36044280-13ffb6802de0b079"]},"geometry":{"type":"LineString","coordinates":[[-83.62012610000001,32.8453619],[-83.6200958,32.8455657]]},"id":"8b44c0a36044fff-13bfe676bd261ce1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360408cc-13ff7692433fe1b7","8f44c0a36044280-13ffb6802de0b079"]},"geometry":{"type":"LineString","coordinates":[[-83.6200958,32.8455657],[-83.6200668,32.8457607]]},"id":"8a44c0a36047fff-13bfa68933a4fcd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360408cc-13ff7692433fe1b7","8f44c0a36040336-13df269e11e9f35f"]},"geometry":{"type":"LineString","coordinates":[[-83.6200668,32.8457607],[-83.6200479,32.845888]]},"id":"8b44c0a36040fff-13b736983762a894"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604039a-13f766ce359ccca0","8f44c0a36040336-13df269e11e9f35f"]},"geometry":{"type":"LineString","coordinates":[[-83.6200479,32.845888],[-83.6199709,32.8459574]]},"id":"8c44c0a360403ff-13dfb6b6202763fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620276,32.8462781]},"id":"8f44c0a36041742-17bff60f8f00f0c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604039a-13f766ce359ccca0","8f44c0a36041742-17bff60f8f00f0c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6199709,32.8459574],[-83.61995560000001,32.846027],[-83.6199833,32.8460995],[-83.620276,32.8462781]]},"id":"8a44c0a36047fff-13f7f689d5b5b0dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62014280000001,32.8464315]},"id":"8f44c0a3604ec28-179fb662cf381e72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36048832-17f7352a28291d91","8f44c0a3604ec28-179fb662cf381e72"]},"geometry":{"type":"LineString","coordinates":[[-83.620643,32.8467539],[-83.62014280000001,32.8464315]]},"id":"8a44c0a3604ffff-179775c67a89e424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36042173-13d7b7dc07fb529e","8f44c0a3604ec28-179fb662cf381e72"]},"geometry":{"type":"LineString","coordinates":[[-83.62014280000001,32.8464315],[-83.61956740000001,32.8460606],[-83.6195335,32.8460063],[-83.6195335,32.845954500000005],[-83.6195392,32.845908300000005]]},"id":"8944c0a3607ffff-179fe73c347199dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62000180000001,32.8465939]},"id":"8f44c0a3604e419-179736bae44fdabc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6201042,32.8468996]},"id":"8f44c0a3604a882-17d7667ae7094ab7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604a882-17d7667ae7094ab7","8f44c0a3604e419-179736bae44fdabc"]},"geometry":{"type":"LineString","coordinates":[[-83.62000180000001,32.8465939],[-83.6199617,32.8466819],[-83.61994940000001,32.846800900000005],[-83.6201042,32.8468996]]},"id":"8a44c0a3604ffff-17fff6bf63fc4f59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6203414,32.847050700000004]},"id":"8f44c0a3604ab4b-179fb5e6a5da15e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604ab4b-179fb5e6a5da15e3","8f44c0a3604a882-17d7667ae7094ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.6201042,32.8468996],[-83.6203414,32.847050700000004]]},"id":"8b44c0a3604afff-17ffa630cd5481cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604ab4b-179fb5e6a5da15e3","8f44c0a360486eb-17df659bd25e6002"]},"geometry":{"type":"LineString","coordinates":[[-83.6203414,32.847050700000004],[-83.6204611,32.847127]]},"id":"8a44c0a3604ffff-17b7b5c148b340eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604ec28-179fb662cf381e72","8f44c0a36041742-17bff60f8f00f0c0"]},"geometry":{"type":"LineString","coordinates":[[-83.620276,32.8462781],[-83.62014280000001,32.8464315]]},"id":"8944c0a3607ffff-17ffe6392c149e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604ec28-179fb662cf381e72","8f44c0a3604e419-179736bae44fdabc"]},"geometry":{"type":"LineString","coordinates":[[-83.62014280000001,32.8464315],[-83.62000180000001,32.8465939]]},"id":"8b44c0a3604efff-17df768ede0f86d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3605cd2a-13ff686c0a78d3b3","8f44c0a3604e419-179736bae44fdabc"]},"geometry":{"type":"LineString","coordinates":[[-83.6193088,32.8461542],[-83.6193763,32.8461901],[-83.62000180000001,32.8465939]]},"id":"8944c0a3607ffff-17f737928ac293b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36048053-17fff54e2696cfa8","8f44c0a3604e419-179736bae44fdabc"]},"geometry":{"type":"LineString","coordinates":[[-83.62000180000001,32.8465939],[-83.62058540000001,32.8469647]]},"id":"8a44c0a3604ffff-17f7360489ef6e27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604c0e3-17dfa515a2e959ef","8f44c0a36041742-17bff60f8f00f0c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6206758,32.8465354],[-83.620276,32.8462781]]},"id":"8944c0a3607ffff-179f6592966d2847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6203888,32.846156900000004]},"id":"8f44c0a3604115d-13f735c9072e46c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36041742-17bff60f8f00f0c0","8f44c0a3604115d-13f735c9072e46c7"]},"geometry":{"type":"LineString","coordinates":[[-83.620276,32.8462781],[-83.6203888,32.846156900000004]]},"id":"8b44c0a36041fff-1797f5ec4d525a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604c882-17ffe50245f70fcc","8f44c0a3604115d-13f735c9072e46c7"]},"geometry":{"type":"LineString","coordinates":[[-83.62070680000001,32.846356400000005],[-83.6203888,32.846156900000004]]},"id":"8944c0a3607ffff-17bf6565afede6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36040351-13ffe6809f5c8ec5","8f44c0a3604115d-13f735c9072e46c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6203888,32.846156900000004],[-83.6200951,32.8459726]]},"id":"8a44c0a36047fff-13b7a624c1697b83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36040336-13df269e11e9f35f","8f44c0a36040351-13ffe6809f5c8ec5"]},"geometry":{"type":"LineString","coordinates":[[-83.6200951,32.8459726],[-83.6200479,32.845888]]},"id":"8c44c0a360403ff-13f7768f584cb2fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36071499-13d72809cdaa7c8b","8f44c0a3607229d-13b72968c8728813"]},"geometry":{"type":"LineString","coordinates":[[-83.6189044,32.845035200000005],[-83.619466,32.845093]]},"id":"8a44c0a36077fff-13d738b949827202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3606264e-1397765acae07c99","8f44c0a36071499-13d72809cdaa7c8b"]},"geometry":{"type":"LineString","coordinates":[[-83.619466,32.845093],[-83.6201556,32.8451639]]},"id":"8944c0a3607ffff-13ff7732444cbee3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6205687,32.8452064]},"id":"8f44c0a36063130-139f255895f56359"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3606264e-1397765acae07c99","8f44c0a36063130-139f255895f56359"]},"geometry":{"type":"LineString","coordinates":[[-83.6201556,32.8451639],[-83.6205687,32.8452064]]},"id":"8a44c0a36067fff-1397e5d9b39bb185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36052876-13df7ae17ffa1396","8f44c0a36052ba3-1397fada6bdc0378"]},"geometry":{"type":"LineString","coordinates":[[-83.618313,32.845777500000004],[-83.6183017,32.845694900000005]]},"id":"8b44c0a36052fff-13ff2addeb8951bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36056284-13f7bade012074e3","8f44c0a36052876-13df7ae17ffa1396"]},"geometry":{"type":"LineString","coordinates":[[-83.6183017,32.845694900000005],[-83.6183072,32.8455481]]},"id":"8a44c0a36057fff-13b77adfb6dd4b18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36056284-13f7bade012074e3","8f44c0a36056155-13ffaacb551d5771"]},"geometry":{"type":"LineString","coordinates":[[-83.6183072,32.8455481],[-83.6183371,32.845361000000004]]},"id":"8b44c0a36056fff-13bf2ad4a798edb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36009648-1397aab7853b37ad","8f44c0a36056155-13ffaacb551d5771"]},"geometry":{"type":"LineString","coordinates":[[-83.6183371,32.845361000000004],[-83.6183688,32.8451624]]},"id":"8a44c0a36057fff-13d7bac17b998794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36009648-1397aab7853b37ad","8f44c0a360548cd-13bf3978dce0ccc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6183688,32.8451624],[-83.61887870000001,32.8452227]]},"id":"8a44c0a36057fff-13976a1829786ad8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360548cd-13bf3978dce0ccc7","8f44c0a36073ac9-13df681ae6428b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.61887870000001,32.8452227],[-83.61943860000001,32.8452852]]},"id":"8944c0a3607ffff-13bfe8c9e41e5489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36044109-13ff366d3fa17c36","8f44c0a36073ac9-13df681ae6428b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.61943860000001,32.8452852],[-83.62012610000001,32.8453619]]},"id":"8944c0a3607ffff-13f7674408acda1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a328509ad-17977bfd5c6ea996","8f44c0a32854113-17d77bf10ff9f08c"]},"geometry":{"type":"LineString","coordinates":[[-83.6178672,32.8596039],[-83.61784750000001,32.859911100000005]]},"id":"8a44c0a32857fff-17b77bf7273d9800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9a9a5-179f5520fd526543","8f44c0a30d9acc2-17f755938da681ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6272113,32.8505284],[-83.62702800000001,32.850643600000005]]},"id":"8b44c0a30d9afff-17d7555a389d9d44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a30d9a433-1797b5cbe83559e7","8f44c0a30d9acc2-17f755938da681ac"]},"geometry":{"type":"LineString","coordinates":[[-83.62702800000001,32.850643600000005],[-83.62693780000001,32.8507002]]},"id":"8b44c0a30d9afff-17f7f5afb0663bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30586b22-179f9f12c23ddadc","8f44c0a3625b61a-13ffff046a176487"]},"geometry":{"type":"LineString","coordinates":[[-83.62316100000001,32.854979],[-83.62313800000001,32.85606]]},"id":"8944c0a305bffff-13dfbf0b921876b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a30586b22-179f9f12c23ddadc","8f44c0a30599ac8-13f7bf276b3b7c88"]},"geometry":{"type":"LineString","coordinates":[[-83.62313800000001,32.85606],[-83.62310500000001,32.857841]]},"id":"8944c0a305bffff-17df1f1d12186d58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36361259-17d7779d5806a6ea","8f44c0a3636ec84-17ff18997cf703f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6257897,32.8500384],[-83.6260558,32.8498571],[-83.62619310000001,32.849981400000004]]},"id":"8944c0a3637ffff-17bfd8184cb4db98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36361259-17d7779d5806a6ea","8f44c0a3636c093-1797374ab24204f5"]},"geometry":{"type":"LineString","coordinates":[[-83.62619310000001,32.849981400000004],[-83.6263253,32.8501011]]},"id":"8b44c0a3636cfff-17ffd77409b44d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62471670000001,32.8497153]},"id":"8f44c0a363710dd-17b71b381ea6bf68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36371a10-17ff5ac0b1d08a05","8f44c0a363710dd-17b71b381ea6bf68"]},"geometry":{"type":"LineString","coordinates":[[-83.62490770000001,32.8496517],[-83.62471670000001,32.8497153]]},"id":"8b44c0a36371fff-179f3afc6dd11b5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36340d02-17d7dac61f261521","8f44c0a363710dd-17b71b381ea6bf68"]},"geometry":{"type":"LineString","coordinates":[[-83.62471670000001,32.8497153],[-83.62454100000001,32.8497738],[-83.62458880000001,32.849866],[-83.62463580000001,32.8499247],[-83.62489910000001,32.8501837]]},"id":"8944c0a3637ffff-17b73b4a14320497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36341168-179f19787c4d832b","8f44c0a36340d02-17d7dac61f261521"]},"geometry":{"type":"LineString","coordinates":[[-83.62489910000001,32.8501837],[-83.625431,32.8507067],[-83.6254329,32.8507089]]},"id":"8a44c0a36347fff-17fffa1f3187cabd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36344771-17ff5a5eaa8a881b","8f44c0a3636a416-17d77914f9b73574"]},"geometry":{"type":"LineString","coordinates":[[-83.6255921,32.8505911],[-83.6250646,32.8500724]]},"id":"8a44c0a36347fff-17b779b9dd8379d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36344771-17ff5a5eaa8a881b","8f44c0a363710dd-17b71b381ea6bf68"]},"geometry":{"type":"LineString","coordinates":[[-83.6250646,32.8500724],[-83.6247969,32.8498091],[-83.6247498,32.849753],[-83.62471670000001,32.8497153]]},"id":"8944c0a3637ffff-17975acd20f1ce6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6257935,32.849099]},"id":"8f44c0a36364762-139ff8971b3e6a38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36364762-139ff8971b3e6a38","8f44c0a36365729-13df97c506d0e661"]},"geometry":{"type":"LineString","coordinates":[[-83.6261296,32.8494073],[-83.6262427,32.849319300000005],[-83.6263565,32.8492237],[-83.6260232,32.8489043],[-83.6257935,32.849099]]},"id":"8744c0a36ffffff-13bf97c842ffd685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36364762-139ff8971b3e6a38","8f44c0a36365729-13df97c506d0e661"]},"geometry":{"type":"LineString","coordinates":[[-83.6257935,32.849099],[-83.6261296,32.8494073]]},"id":"8a44c0a36367fff-13ff582e170c16be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36ad8720-13ffba723b63fe7f","8f44c0a36ad8caa-13f7ba9c749385ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6249657,32.8482074],[-83.6250333,32.848401100000004]]},"id":"8b44c0a36ad8fff-13bf3a875a0a7a0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36ad8720-13ffba723b63fe7f","8f44c0a36adba5c-1397ba02b477656d"]},"geometry":{"type":"LineString","coordinates":[[-83.6250333,32.848401100000004],[-83.62521170000001,32.8488458]]},"id":"8a44c0a36adffff-13f7ba3a7c83d3e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36366c70-13dfd9cb896f9896","8f44c0a36adba5c-1397ba02b477656d"]},"geometry":{"type":"LineString","coordinates":[[-83.62521170000001,32.8488458],[-83.62530000000001,32.848970800000004]]},"id":"8944c0a3637ffff-13b7b9e72264ee2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7362344,32.8073561]},"id":"8f44c0b0c6cd35b-17b79af580cdacb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6cd35b-17b79af580cdacb8","8f44c0b0c6cd692-17b6bbcc53c6e551"]},"geometry":{"type":"LineString","coordinates":[[-83.7362344,32.8073561],[-83.7358907,32.8073483]]},"id":"8a44c0b0c6cffff-17b72b60f82dbe49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6c8042-17befc59b6ed9a51","8f44c0b0c6cd692-17b6bbcc53c6e551"]},"geometry":{"type":"LineString","coordinates":[[-83.7358907,32.8073483],[-83.7356645,32.807345500000004]]},"id":"8b44c0b0c6c8fff-17bfdc130f708c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6c84e8-17bf2ce723d87455","8f44c0b0c6c8042-17befc59b6ed9a51"]},"geometry":{"type":"LineString","coordinates":[[-83.7356645,32.807345500000004],[-83.7355479,32.807342600000005],[-83.7354382,32.807342600000005]]},"id":"8b44c0b0c6c8fff-17bf9ca06314df89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6ca8de-17bf4d7d922b151f","8f44c0b0c6c84e8-17bf2ce723d87455"]},"geometry":{"type":"LineString","coordinates":[[-83.7354382,32.807342600000005],[-83.7351975,32.8073396]]},"id":"8a44c0b0c6cffff-17be3d32643c894e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6ca50c-17bf8e05069badeb","8f44c0b0c6ca8de-17bf4d7d922b151f"]},"geometry":{"type":"LineString","coordinates":[[-83.7351975,32.8073396],[-83.7349808,32.8073368]]},"id":"8b44c0b0c6cafff-17be6dc15260938c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6ca50c-17bf8e05069badeb","8f44c0b0c6d99ab-17b79e9e859b5a6e"]},"geometry":{"type":"LineString","coordinates":[[-83.7349808,32.8073368],[-83.7348664,32.8073362],[-83.7347352,32.8073337]]},"id":"8944c0b0c6fffff-17bede51c3f39752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6d9d98-17b7df2bd86650cb","8f44c0b0c6d99ab-17b79e9e859b5a6e"]},"geometry":{"type":"LineString","coordinates":[[-83.7347352,32.8073337],[-83.73450910000001,32.807330900000004]]},"id":"8b44c0b0c6d9fff-17b6bee52725bcf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6d82b0-17b63fad504aa4de","8f44c0b0c6d9d98-17b7df2bd86650cb"]},"geometry":{"type":"LineString","coordinates":[[-83.73450910000001,32.807330900000004],[-83.7343019,32.8073283]]},"id":"8a44c0b0c6dffff-17b70f6c95817cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d05275-17f6f49f964844c8","8f44c0b08d056f4-17f77543537d1d12"]},"geometry":{"type":"LineString","coordinates":[[-83.7322759,32.8070223],[-83.7322022,32.807019000000004],[-83.7320139,32.8070199]]},"id":"8b44c0b08d05fff-17f774f17d59ecd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[15,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d056f4-17f77543537d1d12","8f44c0b08d00ad0-17ff15c67ce57462"]},"geometry":{"type":"LineString","coordinates":[[-83.7320139,32.8070199],[-83.7319348,32.807020300000005],[-83.7318041,32.8070353]]},"id":"8a44c0b08d07fff-17f695850caeb76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8894abae-17d7ca756eca11e8","8f44c0b8d49639a-13d7d9163bfbdbad"]},"geometry":{"type":"LineString","coordinates":[[-83.5797149,32.8483389],[-83.579482,32.848096000000005],[-83.57939300000001,32.847977],[-83.579355,32.847913000000005],[-83.57931,32.847835],[-83.579153,32.847518]]},"id":"8844c0b889fffff-13d799d81fd219de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6275074,32.8321659]},"id":"8f44c0ba92e0206-13d7b467e73447ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e0206-13d7b467e73447ad","8f44c0ba92e0720-139fd4c21298eae2"]},"geometry":{"type":"LineString","coordinates":[[-83.62736310000001,32.8320732],[-83.62713880000001,32.8323398],[-83.6273032,32.832435100000005],[-83.6275074,32.8321659]]},"id":"8a44c0ba92e7fff-139754e706d0d2e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e0206-13d7b467e73447ad","8f44c0ba92e0720-139fd4c21298eae2"]},"geometry":{"type":"LineString","coordinates":[[-83.6275074,32.8321659],[-83.62736310000001,32.8320732]]},"id":"8b44c0ba92e0fff-13bfd49502bf539b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170e422-13bef2448f8b8844","8f44c0b11450b34-13fefb4223a65e4d"]},"geometry":{"type":"LineString","coordinates":[[-83.6545976,32.7793094],[-83.65416490000001,32.7792085],[-83.65388180000001,32.7800652],[-83.653772,32.7801296],[-83.6536521,32.7801296],[-83.65333240000001,32.780042800000004],[-83.65292620000001,32.7799392],[-83.6524201,32.7798384],[-83.65157760000001,32.7796369],[-83.6514178,32.7795837],[-83.6513212,32.779519300000004],[-83.65128030000001,32.779420900000005],[-83.6512513,32.7793513],[-83.65084180000001,32.7778087],[-83.6507718,32.7773944],[-83.6507485,32.7770025],[-83.65076180000001,32.7765853],[-83.65091500000001,32.7761122]]},"id":"8744c0b11ffffff-179fd85e64198a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6514806,32.7755154]},"id":"8f44c0b11473958-17fff9e0a5bff280"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11473958-17fff9e0a5bff280","8f44c0b11450b34-13fefb4223a65e4d"]},"geometry":{"type":"LineString","coordinates":[[-83.65091500000001,32.7761122],[-83.65106150000001,32.7759078],[-83.65120800000001,32.775751],[-83.6513279,32.7756306],[-83.6514806,32.7755154]]},"id":"8944c0b1147ffff-13beda9c96b68c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65284290000001,32.7758322]},"id":"8f44c0b11463a53-13bff68d3e7939e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11463a53-13bff68d3e7939e3","8f44c0b11473958-17fff9e0a5bff280"]},"geometry":{"type":"LineString","coordinates":[[-83.6514806,32.7755154],[-83.6516842,32.7753619],[-83.65199390000001,32.775207900000005],[-83.6521936,32.7751211],[-83.6524334,32.775059500000005],[-83.65263320000001,32.7750483],[-83.65283960000001,32.7751127],[-83.6531393,32.7752331],[-83.65284290000001,32.7758322]]},"id":"8944c0b1147ffff-17fed770f271f02b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11463a53-13bff68d3e7939e3","8f44c0b11473958-17fff9e0a5bff280"]},"geometry":{"type":"LineString","coordinates":[[-83.65284290000001,32.7758322],[-83.6514806,32.7755154]]},"id":"8944c0b1147ffff-17def836f3826c97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9b61c1a-13b6fd5f0e7870df","8f44c0ba9b65756-17befcfb466af970"]},"geometry":{"type":"LineString","coordinates":[[-83.637102,32.821472],[-83.63694240000001,32.8216587]]},"id":"8a44c0ba9b67fff-17f6fd2d2f8f8323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9b63b00-139ffdc62030b2d0","8f44c0ba9b61c1a-13b6fd5f0e7870df"]},"geometry":{"type":"LineString","coordinates":[[-83.63694240000001,32.8216587],[-83.6367774,32.8218517]]},"id":"8a44c0ba9b67fff-13dffd92919bc23d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9b63b00-139ffdc62030b2d0","8f44c0ba9b63a8a-13d6fdf9030170dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6367774,32.8218517],[-83.636696,32.821947]]},"id":"8c44c0ba9b63bff-13b7fddf9a26bab4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6362837,32.8224443]},"id":"8f44c0ba9b45799-139ffefab0291b9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9b63a8a-13d6fdf9030170dc","8f44c0ba9b45799-139ffefab0291b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.636696,32.821947],[-83.63642460000001,32.822274400000005],[-83.6362837,32.8224443]]},"id":"8944c0ba9b7ffff-13f6fe79dba4b63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9b436c8-139f604c0f9074c6","8f44c0ba9b45799-139ffefab0291b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6362837,32.8224443],[-83.635872,32.822941],[-83.635744,32.823087]]},"id":"8944c0ba9b7ffff-13d7ffa2633a2485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.648138,32.8290237]},"id":"8f44c0a3492b8c3-139ff209c134e9d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3492b8c3-139ff209c134e9d9","8f44c0a3492b41e-13d6e2c0cf12ab64"]},"geometry":{"type":"LineString","coordinates":[[-83.648138,32.8290237],[-83.648477,32.8292172],[-83.6483379,32.829377900000004],[-83.6478452,32.8290856]]},"id":"8944c0a3493ffff-139ef1d654fb1f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3492b41e-13d6e2c0cf12ab64","8f44c0a3490c943-13bff3039c1d622d"]},"geometry":{"type":"LineString","coordinates":[[-83.6478452,32.8290856],[-83.6477383,32.8290493]]},"id":"8a44c0a3492ffff-13b7f2e2278e7694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64539350000001,32.831956500000004]},"id":"8f44c0a3481cd4e-13d6f8bd116fe7b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3481cd4e-13d6f8bd116fe7b0","8f44c0a34818984-13bff8e06fb72c63"]},"geometry":{"type":"LineString","coordinates":[[-83.64533700000001,32.832347500000004],[-83.645809,32.8318096],[-83.6456048,32.831685400000005],[-83.64539350000001,32.831956500000004]]},"id":"8944c0a3483ffff-13d6e849b92869fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64507470000001,32.8317658]},"id":"8f44c0a34811152-13dfe98453b36b12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34811152-13dfe98453b36b12","8f44c0a3481cd4e-13d6f8bd116fe7b0"]},"geometry":{"type":"LineString","coordinates":[[-83.64539350000001,32.831956500000004],[-83.64528320000001,32.832098],[-83.64495740000001,32.8319118],[-83.64507470000001,32.8317658]]},"id":"8944c0a3483ffff-13dee95752fc2590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34811152-13dfe98453b36b12","8f44c0a3481cd4e-13d6f8bd116fe7b0"]},"geometry":{"type":"LineString","coordinates":[[-83.64507470000001,32.8317658],[-83.64539350000001,32.831956500000004]]},"id":"8944c0a3483ffff-139fe920b52a9bbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64961430000001,32.842059]},"id":"8f44c0a34ac5406-13fefe6f1f988b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac5406-13fefe6f1f988b37","8f44c0a34ac5d1d-1396de1f556d7cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.64974190000001,32.8418848],[-83.64961430000001,32.842059]]},"id":"8b44c0a34ac5fff-13befe473aebc6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649399,32.8423527]},"id":"8f44c0a34ac0211-13b6fef5a02baedf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac0211-13b6fef5a02baedf","8f44c0a34ac5406-13fefe6f1f988b37"]},"geometry":{"type":"LineString","coordinates":[[-83.64961430000001,32.842059],[-83.649399,32.8423527]]},"id":"8a44c0a34ac7fff-13defeb259fdb8cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6490236,32.8421644]},"id":"8f44c0a34ac294a-13b6dfe0404aa17a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac294a-13b6dfe0404aa17a","8f44c0a34ac0211-13b6fef5a02baedf"]},"geometry":{"type":"LineString","coordinates":[[-83.649399,32.8423527],[-83.6489627,32.8429479],[-83.6485931,32.8427493],[-83.6490236,32.8421644]]},"id":"8944c0a34afffff-13dff00fdedace80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac294a-13b6dfe0404aa17a","8f44c0a34ac0936-13b6dedfe1d2b772"]},"geometry":{"type":"LineString","coordinates":[[-83.6490236,32.8421644],[-83.6492458,32.841862500000005],[-83.64943380000001,32.841962800000005]]},"id":"8a44c0a34ac7fff-13bfdf6c60e27ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac5406-13fefe6f1f988b37","8f44c0a34ac0936-13b6dedfe1d2b772"]},"geometry":{"type":"LineString","coordinates":[[-83.64943380000001,32.841962800000005],[-83.64961430000001,32.842059]]},"id":"8a44c0a34ac7fff-13d6dea772a8588e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac0211-13b6fef5a02baedf","8f44c0a34ac0710-13feff64d774496d"]},"geometry":{"type":"LineString","coordinates":[[-83.649399,32.8423527],[-83.6492211,32.8422635]]},"id":"8b44c0a34ac0fff-139edf2d42d4b979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ac294a-13b6dfe0404aa17a","8f44c0a34ac0710-13feff64d774496d"]},"geometry":{"type":"LineString","coordinates":[[-83.6492211,32.8422635],[-83.6490236,32.8421644]]},"id":"8a44c0a34ac7fff-13dfdfa291481565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a094a3-17dedb5370f2c042","8f44c0a34a0b3a1-17dfdbc3f514ed35"]},"geometry":{"type":"LineString","coordinates":[[-83.65070730000001,32.8407773],[-83.65088730000001,32.840564400000005]]},"id":"8a44c0a34a0ffff-179fdb8bb94724c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a09731-17f6daefa3170d20","8f44c0a34a094a3-17dedb5370f2c042"]},"geometry":{"type":"LineString","coordinates":[[-83.65088730000001,32.840564400000005],[-83.651047,32.8406369]]},"id":"8b44c0a34a09fff-17dffb218f297a6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b719231-13f6d52661934d31","8f44c0b1b7198ec-13fec50faac1c32c"]},"geometry":{"type":"LineString","coordinates":[[-83.66000700000001,32.838158],[-83.65996790000001,32.8382633],[-83.65997060000001,32.8383753]]},"id":"8b44c0b1b719fff-13bfd52189cf76f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6068a2-13bfc7522b3c16a4","8f44c0b1b719231-13f6d52661934d31"]},"geometry":{"type":"LineString","coordinates":[[-83.65997060000001,32.8383753],[-83.6599791,32.83874],[-83.6599501,32.8388094],[-83.6599054,32.8388751],[-83.659816,32.838942700000004],[-83.6597133,32.8389802],[-83.6595502,32.8389952],[-83.65932690000001,32.838987700000004],[-83.65923310000001,32.8390009],[-83.6591303,32.8390422],[-83.65906550000001,32.8391022],[-83.65901860000001,32.8391867],[-83.659003,32.839269200000004],[-83.6590298,32.8393837],[-83.6590814,32.8395]]},"id":"8844c0b1b7fffff-13def642bbbf7349"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6068a2-13bfc7522b3c16a4","8f44c0b1b6068d4-13d6e742c8caaa8b"]},"geometry":{"type":"LineString","coordinates":[[-83.6590814,32.8395],[-83.65910600000001,32.8395554]]},"id":"8c44c0b1b6069ff-13d6d74a7419e580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6ec303-13bfc4d58409ff23","8f44c0b1b6ec8e1-13bff4d3fb729c04"]},"geometry":{"type":"LineString","coordinates":[[-83.6601,32.842776],[-83.66010250000001,32.8425875]]},"id":"8b44c0b1b6ecfff-13f6e4d4baccee4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b652293-13dfc4d282baf8d3","8f44c0b1b6ec8e1-13bff4d3fb729c04"]},"geometry":{"type":"LineString","coordinates":[[-83.66010250000001,32.8425875],[-83.6601048,32.842418]]},"id":"8944c0b1b6fffff-1396c4d34992a41e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b652030-13d7f4d0e316fef1","8f44c0b1b652293-13dfc4d282baf8d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6601048,32.842418],[-83.6601074,32.842223100000005]]},"id":"8b44c0b1b652fff-1396e4d1bc27b825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b652030-13d7f4d0e316fef1","8f44c0b1b652d62-13fff4cf8e897d7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6601074,32.842223100000005],[-83.6601096,32.8420567]]},"id":"8b44c0b1b652fff-13b7f4d03890f64d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609564,32.842001700000004]},"id":"8f44c0b1b655540-13dfd2be48dd2f79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b652d62-13fff4cf8e897d7b","8f44c0b1b655540-13dfd2be48dd2f79"]},"geometry":{"type":"LineString","coordinates":[[-83.6601096,32.8420567],[-83.66011180000001,32.8418939],[-83.6602069,32.8418779],[-83.6609564,32.842001700000004]]},"id":"8a44c0b1b657fff-13b6c3f086c18550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b655540-13dfd2be48dd2f79","8f44c0b1b646605-13f6c180f5b6f914"]},"geometry":{"type":"LineString","coordinates":[[-83.6609564,32.842001700000004],[-83.6614641,32.8420648]]},"id":"8944c0b1b67ffff-13dec21f9618a988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65561c-13bfe2bbfd46f854","8f44c0b1b655540-13dfd2be48dd2f79"]},"geometry":{"type":"LineString","coordinates":[[-83.6609564,32.842001700000004],[-83.66096010000001,32.8421814]]},"id":"8b44c0b1b655fff-1397c2bd1e5111bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65189a-13bfd2b9aea5127f","8f44c0b1b65561c-13bfe2bbfd46f854"]},"geometry":{"type":"LineString","coordinates":[[-83.66096010000001,32.8421814],[-83.6609638,32.842360500000005]]},"id":"8a44c0b1b657fff-13f7e2badc0c6530"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65189a-13bfd2b9aea5127f","8f44c0b1b6513b6-139fe2b74f17cbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6609638,32.842360500000005],[-83.6609676,32.8425426]]},"id":"8b44c0b1b651fff-13f6c2b877bd72c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b65c970-13dfe17b6373ae35","8f44c0b1b6513b6-139fe2b74f17cbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6609676,32.8425426],[-83.661473,32.8426138]]},"id":"8944c0b1b67ffff-13b7e2195f2c06dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.655612,32.843769800000004]},"id":"8f44c0a35d0562d-179eefca88dac57f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d05568-17bfffd8cbae4d2f","8f44c0a35d0562d-179eefca88dac57f"]},"geometry":{"type":"LineString","coordinates":[[-83.65558920000001,32.843595900000004],[-83.655612,32.843769800000004]]},"id":"8b44c0a35d05fff-17f7dfd1aada9a2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d018f5-1797ffb7819c68ea","8f44c0a35d0562d-179eefca88dac57f"]},"geometry":{"type":"LineString","coordinates":[[-83.655612,32.843769800000004],[-83.6556424,32.8438561],[-83.6556424,32.8439615]]},"id":"8a44c0a35d07fff-17d7ffbbf43dab97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d018f5-1797ffb7819c68ea","8f44c0a35d01315-1797dfb78ff70c78"]},"geometry":{"type":"LineString","coordinates":[[-83.6556424,32.8439615],[-83.6556424,32.844146900000005]]},"id":"8b44c0a35d01fff-17dfefb78675597e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d0cb6a-17b7de613e2cd575","8f44c0a35d01315-1797dfb78ff70c78"]},"geometry":{"type":"LineString","coordinates":[[-83.6556424,32.844146900000005],[-83.6556424,32.8442651],[-83.655669,32.8443003],[-83.656,32.844456900000004],[-83.65606460000001,32.8444601],[-83.6561255,32.844434500000006],[-83.6561901,32.8443929]]},"id":"8944c0a35d3ffff-179ecf2ae6b7e329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d0cb6a-17b7de613e2cd575","8f44c0a35d2b51e-17b6de5706c84e8b"]},"geometry":{"type":"LineString","coordinates":[[-83.6561901,32.8443929],[-83.65621300000001,32.8443354],[-83.65621680000001,32.8442427],[-83.6562064,32.844214900000004]]},"id":"8b44c0a35d2bfff-17feee54d93e52e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d2b51e-17b6de5706c84e8b","8f44c0a35d0562d-179eefca88dac57f"]},"geometry":{"type":"LineString","coordinates":[[-83.6562064,32.844214900000004],[-83.6561369,32.8440286],[-83.655612,32.843769800000004]]},"id":"8944c0a35d3ffff-1796cef76ccb7b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6547221,32.844715900000004]},"id":"8f44c0a35d18b5c-13fff1f6b3a9b9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d0a4ae-13ffd1166690df55","8f44c0a35d18b5c-13fff1f6b3a9b9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.65508100000001,32.844920800000004],[-83.6547221,32.844715900000004]]},"id":"8a44c0a35d1ffff-13bfd1869e1b3d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d188eb-13bef249acca63fc","8f44c0a35d18b5c-13fff1f6b3a9b9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6547221,32.844715900000004],[-83.6545894,32.8446402]]},"id":"8b44c0a35d18fff-13d7d2203009d142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1844a-1396f2e297b8ffe0","8f44c0a35d188eb-13bef249acca63fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6545894,32.8446402],[-83.6545179,32.8446627],[-83.65434470000001,32.844756700000005]]},"id":"8b44c0a35d18fff-13dfd2976cd20c2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1d1b4-17f7d18bc8b66976","8f44c0a35d0ada5-13f7f0c99012e95f"]},"geometry":{"type":"LineString","coordinates":[[-83.6552039,32.844699500000004],[-83.6548932,32.844520100000004]]},"id":"8b44c0a35d1dfff-13bff12ab4c32eee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d1d1b4-17f7d18bc8b66976","8f44c0a35d18b5c-13fff1f6b3a9b9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6548932,32.844520100000004],[-83.6547221,32.844715900000004]]},"id":"8a44c0a35d1ffff-13bed1c13ba6252d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da02f5-17fef7127968ece3","8f44c0a35da5c43-17f6d628cbfa5445"]},"geometry":{"type":"LineString","coordinates":[[-83.6526297,32.8436942],[-83.6529251,32.8433927],[-83.6530036,32.843299300000005]]},"id":"8a44c0a35da7fff-17f7d69bff12fd31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da5c43-17f6d628cbfa5445","8f44c0a34a4b04c-17dfd599b1084749"]},"geometry":{"type":"LineString","coordinates":[[-83.6530036,32.843299300000005],[-83.6532325,32.843026800000004]]},"id":"8844c0a35dfffff-17b6f5e145b7ed73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6533114,32.842893100000005]},"id":"8f44c0a34a4b85d-13fef56860882eda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a4b04c-17dfd599b1084749","8f44c0a34a4b85d-13fef56860882eda"]},"geometry":{"type":"LineString","coordinates":[[-83.6532325,32.843026800000004],[-83.65330990000001,32.8429347],[-83.6533114,32.842893100000005]]},"id":"8b44c0a34a4bfff-17b6d57b3e5a4692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6531525,32.842804900000004]},"id":"8f44c0a34a4bd41-13d7d5cbb18e2fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a4bd41-13d7d5cbb18e2fad","8f44c0a34a4b85d-13fef56860882eda"]},"geometry":{"type":"LineString","coordinates":[[-83.6533114,32.842893100000005],[-83.65331280000001,32.8428539],[-83.6537005,32.842373900000005],[-83.65358970000001,32.8423053],[-83.6531525,32.842804900000004]]},"id":"8a44c0a34a4ffff-13bff510a7dbac5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a4bd41-13d7d5cbb18e2fad","8f44c0a34a4b85d-13fef56860882eda"]},"geometry":{"type":"LineString","coordinates":[[-83.6531525,32.842804900000004],[-83.6533114,32.842893100000005]]},"id":"8b44c0a34a4bfff-13def59a18ccbf13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406c05a-17f6f9dea8845d4b","8f44c0a3406c55c-17b7ea44bdc1f578"]},"geometry":{"type":"LineString","coordinates":[[-83.6449302,32.8403979],[-83.64483580000001,32.8403538],[-83.64476690000001,32.8403058]]},"id":"8b44c0a3406cfff-17d6fa12ebc52bc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34061716-1797fb188d00f58b","8f44c0a3406c55c-17b7ea44bdc1f578"]},"geometry":{"type":"LineString","coordinates":[[-83.64476690000001,32.8403058],[-83.644428,32.8400697]]},"id":"8944c0a3407ffff-17dffaae903bc290"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34061716-1797fb188d00f58b","8f44c0a34061418-17fffb51f277cace"]},"geometry":{"type":"LineString","coordinates":[[-83.644428,32.8400697],[-83.6443361,32.8400057]]},"id":"8b44c0a34061fff-17fffb3545a32abc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ccaca3-13dfffe668574860","8f44c0a34cca4a0-139ff024d3998f31"]},"geometry":{"type":"LineString","coordinates":[[-83.6359066,32.8348316],[-83.6358067,32.8349647]]},"id":"8b44c0a34ccafff-13f76005aa32949a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cd9b8c-13f7c0587965ec47","8f44c0a34cca4a0-139ff024d3998f31"]},"geometry":{"type":"LineString","coordinates":[[-83.6358067,32.8349647],[-83.6357241,32.8350748]]},"id":"8a44c0a34cdffff-13bf603ea8135893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6355173,32.8353503]},"id":"8f44c0a3456698c-139ff0d9b1dd8270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3456698c-139ff0d9b1dd8270","8f44c0a34cd9b8c-13f7c0587965ec47"]},"geometry":{"type":"LineString","coordinates":[[-83.6357241,32.8350748],[-83.6355173,32.8353503]]},"id":"8744c0a34ffffff-13b7e099191626ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ca0720-17f7645d6f9c994a","8f44c0a34ca679b-17dfc57ea8cb441c"]},"geometry":{"type":"LineString","coordinates":[[-83.6340778,32.8305974],[-83.633615,32.830334]]},"id":"8a44c0a34ca7fff-17b714ee0c31f923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d993ad-17b7449ba2bb724b","8f44c0a34ca679b-17dfc57ea8cb441c"]},"geometry":{"type":"LineString","coordinates":[[-83.633615,32.830334],[-83.6334477,32.830238800000004],[-83.633815,32.8297832],[-83.6339782,32.8298836]]},"id":"8844c0a34dfffff-1797256018714f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d993ad-17b7449ba2bb724b","8f44c0a34d99b1e-13f7a452161c6ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.6339782,32.8298836],[-83.6340959,32.829748200000004]]},"id":"8b44c0a34d99fff-179ff476e4df9aab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb0c80-17b7a7cb31f4b270","8f44c0a34cb5000-17d7363d33d142a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6333101,32.8303171],[-83.63311470000001,32.8305401],[-83.63267330000001,32.8302858]]},"id":"8a44c0a34cb7fff-1797b6f817526a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb0c80-17b7a7cb31f4b270","8f44c0a34cb631a-1797c8177effcfad"]},"geometry":{"type":"LineString","coordinates":[[-83.63267330000001,32.8302858],[-83.6325513,32.8302156]]},"id":"8a44c0a34cb7fff-179fb7f153611cf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb631a-1797c8177effcfad","8f44c0a34cb21ad-17bf489f9e450221"]},"geometry":{"type":"LineString","coordinates":[[-83.6325513,32.8302156],[-83.63239180000001,32.8301237],[-83.63217320000001,32.8303907],[-83.6323335,32.8304836]]},"id":"8a44c0a34cb7fff-17bfd8a5b1477675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb21ad-17bf489f9e450221","8f44c0a34cb2a82-17dfd84d9d8889ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6323335,32.8304836],[-83.6324647,32.8305597]]},"id":"8b44c0a34cb2fff-17d7187690a4b85a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb2316-17ff886a323f6d53","8f44c0a34cb2a82-17dfd84d9d8889ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6324647,32.8305597],[-83.6324189,32.8306168]]},"id":"8b44c0a34cb2fff-17ffb85be0545cfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb2316-17ff886a323f6d53","8f44c0a34cb22b1-17bf388d2b378017"]},"geometry":{"type":"LineString","coordinates":[[-83.6324189,32.8306168],[-83.63236300000001,32.8306867]]},"id":"8c44c0a34cb23ff-1797687bb7f00509"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c16648-17dfd1f047b2f59d","8f44c0a34c16049-17ff61aafc6041d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6351825,32.830400600000004],[-83.6350716,32.830532500000004]]},"id":"8b44c0a34c16fff-17b7a1cda99e1866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c16648-17dfd1f047b2f59d","8f44c0a34ca57a4-17b78358729205d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6350716,32.830532500000004],[-83.6349009,32.8307354],[-83.63449530000001,32.8304952]]},"id":"8844c0a34dfffff-1797c298e71c69e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34ca08f4-179f64036b337966","8f44c0a34ca57a4-17b78358729205d8"]},"geometry":{"type":"LineString","coordinates":[[-83.63449530000001,32.8304952],[-83.63443880000001,32.830555600000004],[-83.6342218,32.8304278]]},"id":"8a44c0a34ca7fff-17b783aa71d9a644"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6355673,32.8308273]},"id":"8f44c0a34c1020d-179710ba7566c2c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c1020d-179710ba7566c2c6","8f44c0a34c10a09-17b7e0795d251e43"]},"geometry":{"type":"LineString","coordinates":[[-83.6356715,32.830699],[-83.6355673,32.8308273]]},"id":"8b44c0a34c10fff-17df0099e8c240dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6358398,32.830989]},"id":"8f44c0a34c1100c-17ff201022933b1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c1020d-179710ba7566c2c6","8f44c0a34c1100c-17ff201022933b1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6355673,32.8308273],[-83.63544900000001,32.8309638],[-83.6357239,32.8311269],[-83.6358398,32.830989]]},"id":"8a44c0a34c17fff-17f7909b29cab435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c1020d-179710ba7566c2c6","8f44c0a34c1100c-17ff201022933b1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6358398,32.830989],[-83.6355673,32.8308273]]},"id":"8a44c0a34c17fff-17b7a06556b95d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6384148,32.829484900000004]},"id":"8f44c0a34d56c5c-13bef9c6caea9993"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d5605c-139ef98e85631ea8","8f44c0a34d56c5c-13bef9c6caea9993"]},"geometry":{"type":"LineString","coordinates":[[-83.6385048,32.8296397],[-83.6384148,32.829484900000004]]},"id":"8b44c0a34d56fff-13fef9aaab4d6a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63854470000001,32.8290987]},"id":"8f44c0a34d091a3-13def9759118443f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d091a3-13def9759118443f","8f44c0a34d56c5c-13bef9c6caea9993"]},"geometry":{"type":"LineString","coordinates":[[-83.6384148,32.829484900000004],[-83.6382183,32.8294401],[-83.6383382,32.8290512],[-83.63854470000001,32.8290987]]},"id":"8844c0a34dfffff-13bef9fbe33708e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d091a3-13def9759118443f","8f44c0a34d56c5c-13bef9c6caea9993"]},"geometry":{"type":"LineString","coordinates":[[-83.63854470000001,32.8290987],[-83.6384148,32.829484900000004]]},"id":"8844c0a34dfffff-13d7f99e2beab4c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348f2c74-17fefc09f8c43be1","8f44c0a348f6653-17befbd6b2c4d76c"]},"geometry":{"type":"LineString","coordinates":[[-83.64412370000001,32.833373300000005],[-83.6440791,32.8334306],[-83.6440417,32.833478500000005]]},"id":"8a44c0a348f7fff-17dffbf058bb236d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3488dad1-17beec73c2bf0c68","8f44c0a348f2c74-17fefc09f8c43be1"]},"geometry":{"type":"LineString","coordinates":[[-83.6440417,32.833478500000005],[-83.64371460000001,32.833898600000005],[-83.6436767,32.8338643],[-83.643668,32.8337835],[-83.6436942,32.8336169],[-83.6438724,32.833376200000004]]},"id":"8844c0a349fffff-17fefca0911e04ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3488dad1-17beec73c2bf0c68","8f44c0a3488db09-17fffc43d6ec06db"]},"geometry":{"type":"LineString","coordinates":[[-83.6438724,32.833376200000004],[-83.64390680000001,32.8333297],[-83.6439491,32.8332725]]},"id":"8c44c0a3488dbff-179fec5bc8f38358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65134900000001,32.833185300000004]},"id":"8f44c0b1b48218e-17d6da32e4d1d1b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b49cd95-17f7fac07edfb2b3","8f44c0b1b48218e-17d6da32e4d1d1b0"]},"geometry":{"type":"LineString","coordinates":[[-83.65134900000001,32.833185300000004],[-83.6511225,32.833443100000004]]},"id":"8944c0b1b4bffff-1797fa79a9a06aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b49cd95-17f7fac07edfb2b3","8f44c0b1b491181-1797fb5eac605272"]},"geometry":{"type":"LineString","coordinates":[[-83.6511225,32.833443100000004],[-83.65090210000001,32.8336939],[-83.650649,32.833536800000005],[-83.6508694,32.8332859]]},"id":"8944c0b1b4bffff-179ffb69b7ae1ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6455035,32.8395317]},"id":"8f44c0a34a946f5-13d7f87854150f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a946f5-13d7f87854150f03","8f44c0a34a90911-13fee83badaf9b76"]},"geometry":{"type":"LineString","coordinates":[[-83.64560060000001,32.8395942],[-83.6455035,32.8395317]]},"id":"8a44c0a34a97fff-13d6e859fbcd67bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6451196,32.8392842]},"id":"8f44c0a34a96d46-13bee968469b725e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a946f5-13d7f87854150f03","8f44c0a34a96d46-13bee968469b725e"]},"geometry":{"type":"LineString","coordinates":[[-83.6455035,32.8395317],[-83.6451196,32.8392842]]},"id":"8944c0a34abffff-13f6e8f05affdcff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a946f5-13d7f87854150f03","8f44c0a34a92b89-17b7e94201f9cb0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6455035,32.8395317],[-83.6451808,32.839894]]},"id":"8a44c0a34a97fff-17b6f8dd38845061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64495640000001,32.840116900000005]},"id":"8f44c0a3406c9b5-17b7f9ce45de4a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406c9b5-17b7f9ce45de4a35","8f44c0a34a92b89-17b7e94201f9cb0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6451808,32.839894],[-83.64495640000001,32.840116900000005]]},"id":"8a44c0a34a97fff-17fff9882b271ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406150c-17d6fb2f62583b8f","8f44c0a34060682-17fffc21a887ad2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6443914,32.8399401],[-83.64400380000001,32.839829300000005]]},"id":"8a44c0a34067fff-179ffba884b16f2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6437758,32.839764200000005]},"id":"8f44c0a34062140-17d6ecb0227c1b85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34062140-17d6ecb0227c1b85","8f44c0a34060682-17fffc21a887ad2c"]},"geometry":{"type":"LineString","coordinates":[[-83.64400380000001,32.839829300000005],[-83.6437758,32.839764200000005]]},"id":"8a44c0a34067fff-17ffec68edcc9cb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58065210000001,32.880952900000004]},"id":"8f44c0a16d29a58-13f796cc7b650b26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d29a58-13f796cc7b650b26","8f44c0a16d76d04-13bf87c96b627b42"]},"geometry":{"type":"LineString","coordinates":[[-83.5802474,32.8810744],[-83.58065210000001,32.880952900000004]]},"id":"8a44c0a16d2ffff-139f974aeb4229e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d29a58-13f796cc7b650b26","8f44c0a16d29a04-13b7f6e06d9de106"]},"geometry":{"type":"LineString","coordinates":[[-83.58065210000001,32.880952900000004],[-83.5806202,32.8808735]]},"id":"8c44c0a16d29bff-13dfc6d670ffcb33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d2bb4e-13ffa7ddf19acb26","8f44c0a16d29a04-13b7f6e06d9de106"]},"geometry":{"type":"LineString","coordinates":[[-83.5806202,32.8808735],[-83.58021450000001,32.8809914]]},"id":"8b44c0a16d29fff-13d7d75f3328d7f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58089860000001,32.8808853]},"id":"8f44c0b896da76e-13bfd632611d0a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896da76e-13bfd632611d0a2e","8f44c0a16d29a58-13f796cc7b650b26"]},"geometry":{"type":"LineString","coordinates":[[-83.58065210000001,32.880952900000004],[-83.58089860000001,32.8808853]]},"id":"8844c0a16dfffff-13dff67f6921ee66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58143100000001,32.8810805]},"id":"8f44c0b896dbb8d-13b7d4e5ace38a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896dbb8d-13b7d4e5ace38a7a","8f44c0b896da76e-13bfd632611d0a2e"]},"geometry":{"type":"LineString","coordinates":[[-83.58089860000001,32.8808853],[-83.58143100000001,32.8810805]]},"id":"8a44c0b896dffff-13f7d58c01e70213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5821141,32.8816659]},"id":"8f44c0a16d6085e-13b7b33abecc8d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896dbb8d-13b7d4e5ace38a7a","8f44c0a16d6085e-13b7b33abecc8d13"]},"geometry":{"type":"LineString","coordinates":[[-83.58143100000001,32.8810805],[-83.58153060000001,32.8811545],[-83.58156380000001,32.881193100000004],[-83.58157650000001,32.8812081],[-83.5817744,32.8816766],[-83.5818332,32.8817131],[-83.5819149,32.8817335],[-83.5820004,32.8817174],[-83.5821141,32.8816659]]},"id":"8844c0a16dfffff-13bfd426d0c4f799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896dbb8d-13b7d4e5ace38a7a","8f44c0b896da904-17ffd5dc858a939e"]},"geometry":{"type":"LineString","coordinates":[[-83.58143100000001,32.8810805],[-83.58146670000001,32.881006500000005],[-83.5814744,32.8809604],[-83.5814642,32.880895],[-83.581288,32.8804457],[-83.5812356,32.8804232],[-83.5811271,32.880430700000005],[-83.58103600000001,32.8805557]]},"id":"8a44c0b896dffff-13bfd52b748e7251"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896da904-17ffd5dc858a939e","8f44c0b896da0f2-1397e64597af8327"]},"geometry":{"type":"LineString","coordinates":[[-83.58103600000001,32.8805557],[-83.58095920000001,32.8806768],[-83.5809174,32.880746200000004],[-83.5808679,32.8808038]]},"id":"8a44c0b896dffff-13bfd60f1ddd81ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896da76e-13bfd632611d0a2e","8f44c0b896da0f2-1397e64597af8327"]},"geometry":{"type":"LineString","coordinates":[[-83.5808679,32.8808038],[-83.58089860000001,32.8808853]]},"id":"8b44c0b896dafff-139fe63c0e15755b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d21d9a-179fa92e4a25c4fb","8f44c0a16d25352-17d7f834981cbf5a"]},"geometry":{"type":"LineString","coordinates":[[-83.57967640000001,32.879605000000005],[-83.58007590000001,32.8794959]]},"id":"8a44c0a16d27fff-17f798b164ea5259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5808229,32.8792911]},"id":"8f44c0b896d4601-17d7f661bdadd57d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d4601-17d7f661bdadd57d","8f44c0a16d25352-17d7f834981cbf5a"]},"geometry":{"type":"LineString","coordinates":[[-83.58007590000001,32.8794959],[-83.5808229,32.8792911]]},"id":"8844c0b897fffff-1797f74b2a96841e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58167060000001,32.879052200000004]},"id":"8f44c0b896f3b4c-17bfa44fe3616980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896f3b4c-17bfa44fe3616980","8f44c0b896d4601-17d7f661bdadd57d"]},"geometry":{"type":"LineString","coordinates":[[-83.5808229,32.8792911],[-83.58167060000001,32.879052200000004]]},"id":"8944c0b896fffff-179fd558d7c84c54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5810242,32.8797299]},"id":"8f44c0b896d1d8b-17f7b5e3e25659e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896f3b4c-17bfa44fe3616980","8f44c0b896d1d8b-17f7b5e3e25659e3"]},"geometry":{"type":"LineString","coordinates":[[-83.58167060000001,32.879052200000004],[-83.5817712,32.879035900000005],[-83.58186020000001,32.8790473],[-83.5819512,32.8790782],[-83.5820267,32.8791302],[-83.5820712,32.8791936],[-83.5820983,32.8792814],[-83.5820886,32.8793577],[-83.582048,32.879426],[-83.5819996,32.8794618],[-83.5810242,32.8797299]]},"id":"8944c0b896fffff-17b7f43a0375e082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5809631,32.8795967]},"id":"8f44c0b896d0a11-1797f60a152b3010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d0a11-1797f60a152b3010","8f44c0b896d1d8b-17f7b5e3e25659e3"]},"geometry":{"type":"LineString","coordinates":[[-83.5810242,32.8797299],[-83.5809631,32.8795967]]},"id":"8a44c0b896d7fff-17bf95f6f68bd08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d0b8c-17ff96149a773bca","8f44c0b896d0a11-1797f60a152b3010"]},"geometry":{"type":"LineString","coordinates":[[-83.5809631,32.8795967],[-83.58094630000001,32.8795601]]},"id":"8c44c0b896d0bff-179f860f519ae227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d0b8c-17ff96149a773bca","8f44c0b896d0802-17bfb638c7b556b1"]},"geometry":{"type":"LineString","coordinates":[[-83.58094630000001,32.8795601],[-83.5808884,32.8794339]]},"id":"8b44c0b896d0fff-17d7a626aadce9af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d4601-17d7f661bdadd57d","8f44c0b896d0802-17bfb638c7b556b1"]},"geometry":{"type":"LineString","coordinates":[[-83.5808884,32.8794339],[-83.5808229,32.8792911]]},"id":"8a44c0b896d7fff-1797964d4cc2a9e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d0a11-1797f60a152b3010","8f44c0b896c6d42-1797842d88a1960d"]},"geometry":{"type":"LineString","coordinates":[[-83.5809631,32.8795967],[-83.5817519,32.8793707],[-83.58177450000001,32.8793469],[-83.5817796,32.8793276],[-83.5817256,32.8791912]]},"id":"8944c0b896fffff-17b7e4e2cade3db0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896f3b4c-17bfa44fe3616980","8f44c0b896c6d42-1797842d88a1960d"]},"geometry":{"type":"LineString","coordinates":[[-83.5817256,32.8791912],[-83.58167060000001,32.879052200000004]]},"id":"8944c0b896fffff-17ff943eb39bdb1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d00d8-17bff68816145223","8f44c0b896d1d8b-17f7b5e3e25659e3"]},"geometry":{"type":"LineString","coordinates":[[-83.5810242,32.8797299],[-83.5809064,32.8797018],[-83.58076150000001,32.8796551]]},"id":"8a44c0b896d7fff-17d7e63672dc4d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d25248-179ff8219cb9ea7c","8f44c0b896d00d8-17bff68816145223"]},"geometry":{"type":"LineString","coordinates":[[-83.58076150000001,32.8796551],[-83.58061830000001,32.879601300000004],[-83.58049700000001,32.8795674],[-83.58030330000001,32.8795518],[-83.58010630000001,32.8795791]]},"id":"8844c0b897fffff-179f875267acf02f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d25248-179ff8219cb9ea7c","8f44c0a16d21cd0-17dfa91cae568c71"]},"geometry":{"type":"LineString","coordinates":[[-83.58010630000001,32.8795791],[-83.5797046,32.8796914]]},"id":"8a44c0a16d27fff-17bf989f17740526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.58015420000001,32.8796997]},"id":"8f44c0b896d2454-17d7d803a2c9f6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d25248-179ff8219cb9ea7c","8f44c0b896d2454-17d7d803a2c9f6c7"]},"geometry":{"type":"LineString","coordinates":[[-83.58010630000001,32.8795791],[-83.58015420000001,32.8796997]]},"id":"8c44c0b896d25ff-17bfa81298547ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5805594,32.8807204]},"id":"8f44c0a16d29821-13d7c7066c21aeaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d2454-17d7d803a2c9f6c7","8f44c0a16d29821-13d7c7066c21aeaa"]},"geometry":{"type":"LineString","coordinates":[[-83.58015420000001,32.8796997],[-83.5805594,32.8807204]]},"id":"8944c0a16d3ffff-1797d78506ae2fa1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16d29a04-13b7f6e06d9de106","8f44c0a16d29821-13d7c7066c21aeaa"]},"geometry":{"type":"LineString","coordinates":[[-83.5805594,32.8807204],[-83.5806202,32.8808735]]},"id":"8b44c0a16d29fff-1397a6f3619ea934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d2454-17d7d803a2c9f6c7","8f44c0b896d2159-17df877b97af462a"]},"geometry":{"type":"LineString","coordinates":[[-83.58015420000001,32.8796997],[-83.58025190000001,32.8796851],[-83.5803719,32.879688800000004]]},"id":"8b44c0b896d2fff-17dfe7bfc95d6714"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d069c-17ffa6e552bcb383","8f44c0b896d2159-17df877b97af462a"]},"geometry":{"type":"LineString","coordinates":[[-83.5803719,32.879688800000004],[-83.5805208,32.879702800000004],[-83.5806123,32.8797346]]},"id":"8a44c0b896d7fff-17d7872f8f5af105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896d069c-17ffa6e552bcb383","8f44c0b896de6f5-17dff62c92f296b2"]},"geometry":{"type":"LineString","coordinates":[[-83.5806123,32.8797346],[-83.5806742,32.879756],[-83.58078540000001,32.8798036],[-83.58084430000001,32.8798764],[-83.58100320000001,32.8802694],[-83.58100440000001,32.880318],[-83.58097880000001,32.8803852],[-83.5809079,32.8805087]]},"id":"8944c0b896fffff-17d7863cdba95d4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896de6f5-17dff62c92f296b2","8f44c0b896dac9b-13bf96966dfc1f9a"]},"geometry":{"type":"LineString","coordinates":[[-83.5809079,32.8805087],[-83.5808743,32.8805672],[-83.58083540000001,32.880610100000006],[-83.5807954,32.880632500000004],[-83.5807386,32.8806537]]},"id":"8a44c0b896dffff-1397a65a6b112f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b896dac9b-13bf96966dfc1f9a","8f44c0a16d29821-13d7c7066c21aeaa"]},"geometry":{"type":"LineString","coordinates":[[-83.5807386,32.8806537],[-83.5805594,32.8807204]]},"id":"8844c0a16dfffff-13bff6ce6ae525df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c4826-179ff55ea7673d1a","8f44c0aa46f1b56-179ff5fb1e2c0435"]},"geometry":{"type":"LineString","coordinates":[[-83.53536220000001,32.8894085],[-83.5352036,32.8892906],[-83.5351119,32.8892399]]},"id":"8944c0aa46fffff-17d7f5ab5b8a8a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46f1b56-179ff5fb1e2c0435","8f44c0aa46d5242-17f7f7b00fc198bd"]},"geometry":{"type":"LineString","coordinates":[[-83.5351119,32.8892399],[-83.53508330000001,32.8892241],[-83.53493660000001,32.8891699],[-83.5348252,32.8891847],[-83.53428840000001,32.8895123],[-83.53423500000001,32.889754700000005],[-83.5342394,32.8898425],[-83.53427280000001,32.889919],[-83.534315,32.8899619],[-83.53438840000001,32.8899843],[-83.5344128,32.889988]]},"id":"8944c0aa46fffff-17bff76547051b76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c0716-17bff63d12eabc24","8f44c0aa46d5242-17f7f7b00fc198bd"]},"geometry":{"type":"LineString","coordinates":[[-83.5344128,32.889988],[-83.5350063,32.8900773]]},"id":"8944c0aa46fffff-179ff6f69ca0489a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53378860000001,32.8906097]},"id":"8f44c0aa46de59b-13f7f9362b2698a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46de59b-13f7f9362b2698a9","8f44c0aa46d8570-13b7f805c603a829"]},"geometry":{"type":"LineString","coordinates":[[-83.5342756,32.890916700000005],[-83.5342159,32.8908277],[-83.53417370000001,32.890779200000004],[-83.5340937,32.8907195],[-83.53398700000001,32.8906579],[-83.5338,32.8906113],[-83.53378860000001,32.8906097]]},"id":"8a44c0aa46dffff-13bff88e3ec376ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46de59b-13f7f9362b2698a9","8f44c0aa0d21b18-17b7fb09d0e29290"]},"geometry":{"type":"LineString","coordinates":[[-83.53378860000001,32.8906097],[-83.5330447,32.8905041],[-83.53296110000001,32.8904672],[-83.53291270000001,32.8904155],[-83.53289360000001,32.8903625],[-83.53289360000001,32.8902997],[-83.5329068,32.890236900000005],[-83.532942,32.8901519],[-83.53304030000001,32.8900731]]},"id":"8744c0aa0ffffff-1397fa9cdc9d2c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c2688-17bff7811c6205e8","8f44c0aa0d21b18-17b7fb09d0e29290"]},"geometry":{"type":"LineString","coordinates":[[-83.53304030000001,32.8900731],[-83.53343190000001,32.890132200000004],[-83.53447320000001,32.890283700000005],[-83.5344879,32.8902883]]},"id":"8844c0aa47fffff-17fff9455a1c9d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46c34a6-17f7f6d7856968a3","8f44c0aa46c2688-17bff7811c6205e8"]},"geometry":{"type":"LineString","coordinates":[[-83.5344879,32.8902883],[-83.5346418,32.890336600000005],[-83.53475920000001,32.8904051]]},"id":"8a44c0aa46c7fff-17dff72a3d0c2e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46de59b-13f7f9362b2698a9","8f44c0aa46d3a8b-17fff9205ea6342b"]},"geometry":{"type":"LineString","coordinates":[[-83.53378860000001,32.8906097],[-83.53382350000001,32.890382200000005]]},"id":"8944c0aa46fffff-13b7f92b3ed2ec7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53321770000001,32.8903083]},"id":"8f44c0aa0d2c893-17bffa9afeeb808c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0aa46d3a8b-17fff9205ea6342b","8f44c0aa0d2c893-17bffa9afeeb808c"]},"geometry":{"type":"LineString","coordinates":[[-83.53382350000001,32.890382200000005],[-83.53321770000001,32.8903083]]},"id":"8744c0aa0ffffff-17d7f9ddafcc8646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04570a28-17d6bb83e4bb0baa","8f44c0a041917a8-17def504ce1fb078"]},"geometry":{"type":"LineString","coordinates":[[-83.666578,32.889543],[-83.6664298,32.889477],[-83.66609720000001,32.889319300000004],[-83.6656573,32.889143600000004],[-83.6654051,32.889076100000004],[-83.66504570000001,32.8890085],[-83.66391700000001,32.888913]]},"id":"8744c0a04ffffff-17d7b83381eb4b9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6163324,32.832024100000005]},"id":"8f44c0ba96d0ba1-13ff3fb042dbba35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61589000000001,32.832287900000004]},"id":"8f44c0ba96d3d94-1397f0c4ca1a1ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96d0ba1-13ff3fb042dbba35","8f44c0ba96d3d94-1397f0c4ca1a1ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.6163324,32.832024100000005],[-83.6161175,32.8321175],[-83.6160043,32.832201500000004],[-83.61589000000001,32.832287900000004]]},"id":"8a44c0ba96d7fff-13bf703f404ecedf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96d22e0-13dfb10a57daa9cf","8f44c0ba96d3d94-1397f0c4ca1a1ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.61589000000001,32.832287900000004],[-83.6157787,32.832372]]},"id":"8b44c0ba96d2fff-13bf70e79a1f1138"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba96d3d94-1397f0c4ca1a1ff7","8f44c0ba968b21e-13df31aad323e44a"]},"geometry":{"type":"LineString","coordinates":[[-83.61589000000001,32.832287900000004],[-83.6156138,32.831752],[-83.6155219,32.831584]]},"id":"8844c0ba97fffff-13b77136d8da5231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba968b21e-13df31aad323e44a","8f44c0ba968e4ee-17b772dad735cfdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6155219,32.831584],[-83.6150355,32.8306951]]},"id":"8a44c0ba968ffff-17d77242df655186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a369929a8-17ff7af1893ab619","8f44c0a36d64919-17dfec97da91d752"]},"geometry":{"type":"LineString","coordinates":[[-83.61827600000001,32.8342775],[-83.6183843,32.834119900000005],[-83.61809170000001,32.8339617],[-83.6179311,32.8338549],[-83.61773720000001,32.833731300000004],[-83.6176003,32.8336318]]},"id":"8744c0a36ffffff-179f2b81da03f0c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6167406,32.8329742]},"id":"8f44c0ba96d8d46-13d7eeb1237a3fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36d64919-17dfec97da91d752","8f44c0ba96d8d46-13d7eeb1237a3fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6176003,32.8336318],[-83.6174933,32.833553900000005],[-83.6170747,32.8332624],[-83.61686900000001,32.8330846],[-83.6167406,32.8329742]]},"id":"8944c0ba96fffff-17977da936b785a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61677900000001,32.832705700000005]},"id":"8f44c0ba96dc54e-139f3e992e8bd33d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0ba96dc54e-139f3e992e8bd33d","8f44c0ba96d8d46-13d7eeb1237a3fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6167406,32.8329742],[-83.61688290000001,32.8328544],[-83.6169009,32.832815700000005],[-83.61689080000001,32.8327856],[-83.61677900000001,32.832705700000005]]},"id":"8a44c0ba96dffff-13ff3e761800302c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0ba96dc54e-139f3e992e8bd33d","8f44c0ba96d8d46-13d7eeb1237a3fc5"]},"geometry":{"type":"LineString","coordinates":[[-83.61677900000001,32.832705700000005],[-83.616577,32.8328749],[-83.61664800000001,32.832942100000004],[-83.61670190000001,32.8329771],[-83.6167406,32.8329742]]},"id":"8a44c0ba96dffff-13f7fedee56911d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b408a6-13b6ffa5797d7416","8f44c0ba9b45799-139ffefab0291b9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6362837,32.8224443],[-83.63601050000001,32.8222789]]},"id":"8a44c0ba9b47fff-13deff5018f7789f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63577690000001,32.8225479]},"id":"8f44c0ba9b42b69-13df703775e67f5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9b42b69-13df703775e67f5d","8f44c0ba9b408a6-13b6ffa5797d7416"]},"geometry":{"type":"LineString","coordinates":[[-83.63601050000001,32.8222789],[-83.63577690000001,32.8225479]]},"id":"8b44c0ba9b40fff-13feffee74b4f912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a31832b1a-139edd026fc8f40a","8f44c0a3183042d-13f7fca70e4e2db1"]},"geometry":{"type":"LineString","coordinates":[[-83.6567514,32.867734500000005],[-83.65688150000001,32.8676532],[-83.65689760000001,32.8676375]]},"id":"8a44c0a31837fff-1396ccd3ecfe6938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6574112,32.8671358]},"id":"8f44c0a3191b48d-17b7eb6607fdd028"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3183042d-13f7fca70e4e2db1","8f44c0a3191b48d-17b7eb6607fdd028"]},"geometry":{"type":"LineString","coordinates":[[-83.65689760000001,32.8676375],[-83.6574112,32.8671358]]},"id":"8944c0a3183ffff-17d6fc068dde1afb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65772410000001,32.866317200000005]},"id":"8f44c0a3191c7b6-17becaa2712132d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191b48d-17b7eb6607fdd028","8f44c0a3191c7b6-17becaa2712132d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6574112,32.8671358],[-83.6575461,32.866967700000004],[-83.6575808,32.8668381],[-83.65772410000001,32.866317200000005]]},"id":"8a44c0a3191ffff-17b7faf1f18f1a04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6576479,32.8663031]},"id":"8f44c0a3191eb2c-179ffad217d98437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191eb2c-179ffad217d98437","8f44c0a3191c7b6-17becaa2712132d2"]},"geometry":{"type":"LineString","coordinates":[[-83.65772410000001,32.866317200000005],[-83.6576479,32.8663031]]},"id":"8a44c0a3191ffff-17b7eaba481e6d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191eb2c-179ffad217d98437","8f44c0a3191e8c5-179ffb25ea6c6168"]},"geometry":{"type":"LineString","coordinates":[[-83.6576479,32.8663031],[-83.6575138,32.866278300000005]]},"id":"8b44c0a3191efff-1797fafc07e6165b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31910acd-13b7fb7e09faa5d3","8f44c0a3191e8c5-179ffb25ea6c6168"]},"geometry":{"type":"LineString","coordinates":[[-83.6575138,32.866278300000005],[-83.6573584,32.8662495],[-83.6572263,32.865746200000004],[-83.65725,32.865641100000005],[-83.6573528,32.8656796],[-83.6573728,32.8656955]]},"id":"8944c0a3193ffff-17defba2f5f2bfab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191eb2c-179ffad217d98437","8f44c0a31910acd-13b7fb7e09faa5d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6573728,32.8656955],[-83.6575419,32.8658303],[-83.6576479,32.8663031]]},"id":"8944c0a3193ffff-17d7eb0db95848f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65807170000001,32.8663844]},"id":"8f44c0a3191c36c-17d6c9c9306a987d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191c7b6-17becaa2712132d2","8f44c0a3191c36c-17d6c9c9306a987d"]},"geometry":{"type":"LineString","coordinates":[[-83.65772410000001,32.866317200000005],[-83.65807170000001,32.8663844]]},"id":"8b44c0a3191cfff-17bfca35da3e28d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6580397,32.8665333]},"id":"8f44c0a3191d436-17bfd9dd339c604d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191c36c-17d6c9c9306a987d","8f44c0a3191d436-17bfd9dd339c604d"]},"geometry":{"type":"LineString","coordinates":[[-83.65807170000001,32.8663844],[-83.65812860000001,32.8663955],[-83.65822730000001,32.866204],[-83.6583789,32.8662693],[-83.6580953,32.8668299],[-83.6579229,32.8668719],[-83.6580397,32.8665333]]},"id":"8944c0a3193ffff-17b7c999240c983d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191c36c-17d6c9c9306a987d","8f44c0a3191d436-17bfd9dd339c604d"]},"geometry":{"type":"LineString","coordinates":[[-83.6580397,32.8665333],[-83.65807170000001,32.8663844]]},"id":"8a44c0a3191ffff-1796d9d33c9378c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65802160000001,32.865934200000005]},"id":"8f44c0a31902393-17bee9e88c2a54c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31902393-17bee9e88c2a54c5","8f44c0a3191c36c-17d6c9c9306a987d"]},"geometry":{"type":"LineString","coordinates":[[-83.65807170000001,32.8663844],[-83.6580522,32.8663079],[-83.65802160000001,32.865934200000005]]},"id":"8944c0a3193ffff-17d6e9dc37b0b814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3191b48d-17b7eb6607fdd028","8f44c0a31831173-13b6cb4625c8913d"]},"geometry":{"type":"LineString","coordinates":[[-83.6574112,32.8671358],[-83.65748070000001,32.8671767],[-83.6578867,32.8674605],[-83.65746220000001,32.8679524]]},"id":"8944c0a3183ffff-1397fac88b37f39e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a318316f3-13bfcbbc29f4e6a9","8f44c0a31831173-13b6cb4625c8913d"]},"geometry":{"type":"LineString","coordinates":[[-83.65746220000001,32.8679524],[-83.65727340000001,32.8681712]]},"id":"8b44c0a31831fff-13feeb812f904257"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6575925,32.8680524]},"id":"8f44c0a31831ae3-13f6caf4bfb040ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31806823-13f7fb697c517ce5","8f44c0a31831ae3-13f6caf4bfb040ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6574057,32.868261100000005],[-83.6575925,32.8680524]]},"id":"8944c0a3183ffff-13b6cb2f1af2224e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6580005,32.8675966]},"id":"8f44c0a31826294-13d7e9f5bd500706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31826294-13d7e9f5bd500706","8f44c0a31831ae3-13f6caf4bfb040ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6575925,32.8680524],[-83.6580005,32.8675966]]},"id":"8944c0a3183ffff-13d6da753c031ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65822530000001,32.867745]},"id":"8f44c0a31820551-13b6e9693f8fc160"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31826294-13d7e9f5bd500706","8f44c0a31820551-13b6e9693f8fc160"]},"geometry":{"type":"LineString","coordinates":[[-83.6580005,32.8675966],[-83.65814730000001,32.8674326],[-83.6583722,32.867578900000005],[-83.65822530000001,32.867745]]},"id":"8a44c0a31827fff-13bfd9701dd3a65b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31826294-13d7e9f5bd500706","8f44c0a31820551-13b6e9693f8fc160"]},"geometry":{"type":"LineString","coordinates":[[-83.65822530000001,32.867745],[-83.6580005,32.8675966]]},"id":"8a44c0a31827fff-13f6c9af7b7760b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6579092,32.8682502]},"id":"8f44c0a31804ba6-13f6ea2ec0b30e44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31831ae3-13f6caf4bfb040ef","8f44c0a31804ba6-13f6ea2ec0b30e44"]},"geometry":{"type":"LineString","coordinates":[[-83.6575925,32.8680524],[-83.6579092,32.8682502]]},"id":"8944c0a3183ffff-13b6da91b2e81784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3180590a-13f6f95bd7ddbc89","8f44c0a31804ba6-13f6ea2ec0b30e44"]},"geometry":{"type":"LineString","coordinates":[[-83.6579092,32.8682502],[-83.6582467,32.868461100000005]]},"id":"8a44c0a31807fff-13b6d9c54fac5ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6585591,32.868656300000005]},"id":"8f44c0a3182e742-13def89894353fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3182e742-13def89894353fca","8f44c0a3180590a-13f6f95bd7ddbc89"]},"geometry":{"type":"LineString","coordinates":[[-83.6582467,32.868461100000005],[-83.6585591,32.868656300000005]]},"id":"8944c0a3183ffff-13b7f8fa39c83b65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3182e742-13def89894353fca","8f44c0a3182acda-13ffd917144ae6d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6585591,32.868656300000005],[-83.6583567,32.8688853]]},"id":"8a44c0a3182ffff-13b7c8d7dd1f4fd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3182e15d-139ee851e61d3bf5","8f44c0a3182e742-13def89894353fca"]},"geometry":{"type":"LineString","coordinates":[[-83.6585591,32.868656300000005],[-83.65867220000001,32.8685294]]},"id":"8b44c0a3182efff-13b6d8754057495d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6592117,32.867799600000005]},"id":"8f44c0a31952d65-13d6c700b1943f68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31952d65-13d6c700b1943f68","8f44c0a3182e15d-139ee851e61d3bf5"]},"geometry":{"type":"LineString","coordinates":[[-83.65867220000001,32.8685294],[-83.6592195,32.867915700000005],[-83.6592117,32.867799600000005]]},"id":"8844c0a319fffff-13b6d791f90e07df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31952d65-13d6c700b1943f68","8f44c0a31956441-13d7e70971a52a16"]},"geometry":{"type":"LineString","coordinates":[[-83.6592117,32.867799600000005],[-83.6591977,32.867593]]},"id":"8a44c0a31957fff-1396f7051aeb7ebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31825920-17f6d791f6494c97","8f44c0a31956441-13d7e70971a52a16"]},"geometry":{"type":"LineString","coordinates":[[-83.6591977,32.867593],[-83.6591724,32.8672178],[-83.6589793,32.8674405]]},"id":"8844c0a319fffff-17bff72f551b0fa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31952d65-13d6c700b1943f68","8f44c0a31825920-17f6d791f6494c97"]},"geometry":{"type":"LineString","coordinates":[[-83.6589793,32.8674405],[-83.6588567,32.867582],[-83.6592117,32.867799600000005]]},"id":"8844c0a319fffff-13dff7862abec0ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31804674-13f7faab73f137a2","8f44c0a31804ba6-13f6ea2ec0b30e44"]},"geometry":{"type":"LineString","coordinates":[[-83.65770970000001,32.8684607],[-83.6579092,32.8682502]]},"id":"8b44c0a31804fff-13b6fa6d23387ecc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6584974,32.8676292]},"id":"8f44c0a31820828-13dec8bf29200e95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31804ba6-13f6ea2ec0b30e44","8f44c0a31820828-13dec8bf29200e95"]},"geometry":{"type":"LineString","coordinates":[[-83.6579092,32.8682502],[-83.6584974,32.8676292]]},"id":"8944c0a3183ffff-139ed976f3096606"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3182baeb-179ee76b0c921336","8f44c0a31828428-13d6c8013787ec22"]},"geometry":{"type":"LineString","coordinates":[[-83.65904160000001,32.869373800000005],[-83.6592748,32.869137900000005],[-83.65880130000001,32.8688416]]},"id":"8a44c0a3182ffff-13fed751467df759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3182a32e-13d7e87c70b53943","8f44c0a31828428-13d6c8013787ec22"]},"geometry":{"type":"LineString","coordinates":[[-83.65880130000001,32.8688416],[-83.6586041,32.8690518]]},"id":"8a44c0a3182ffff-1397f83ed49207e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31953d35-13f6c65113ae1145","8f44c0a31828428-13d6c8013787ec22"]},"geometry":{"type":"LineString","coordinates":[[-83.65880130000001,32.8688416],[-83.6594927,32.868078000000004]]},"id":"8844c0a319fffff-13f7e72929b4387e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6599757,32.8689788]},"id":"8f44c0a3195a86e-13b7c5233140968b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31953d35-13f6c65113ae1145","8f44c0a3195a86e-13b7c5233140968b"]},"geometry":{"type":"LineString","coordinates":[[-83.6594927,32.868078000000004],[-83.6601485,32.8682351],[-83.6599757,32.8689788]]},"id":"8944c0a3197ffff-13bfd5340f93db6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3186266d-17ffe4211ab1fe45","8f44c0a31844c72-17def489f9302a9f"]},"geometry":{"type":"LineString","coordinates":[[-83.6602209,32.870467500000004],[-83.6603887,32.870345400000005]]},"id":"8944c0a3187ffff-17b6d4558ab5a4bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31862512-17dfe49e3eea7111","8f44c0a3186266d-17ffe4211ab1fe45"]},"geometry":{"type":"LineString","coordinates":[[-83.6603887,32.870345400000005],[-83.66042900000001,32.8703325],[-83.6608684,32.8702239],[-83.660892,32.8701936],[-83.6608934,32.8701469],[-83.66067100000001,32.8699121],[-83.6606014,32.869887600000006],[-83.6605292,32.869887600000006],[-83.6604416,32.8699168],[-83.6601885,32.870085]]},"id":"8944c0a3187ffff-17f7f39cef9ee591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31862512-17dfe49e3eea7111","8f44c0a31871c64-17fec5509a196a7f"]},"geometry":{"type":"LineString","coordinates":[[-83.6601885,32.870085],[-83.6600801,32.8700102],[-83.65990310000001,32.8701312]]},"id":"8a44c0a31877fff-17def4f75c15afe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3186e059-13dfd23f0ccb4f6d","8f44c0a31845240-13f6c3317c6b2603"]},"geometry":{"type":"LineString","coordinates":[[-83.6607721,32.8711208],[-83.66116000000001,32.8708857]]},"id":"8944c0a3187ffff-139fd2b838f72e8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3186c966-17f6f0bc179dc485","8f44c0a3186e059-13dfd23f0ccb4f6d"]},"geometry":{"type":"LineString","coordinates":[[-83.66116000000001,32.8708857],[-83.6617791,32.8705295]]},"id":"8944c0a3187ffff-17f6c17d8603d7ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66214880000001,32.870316800000005]},"id":"8f44c0a2249075b-17febfd502a4d540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2249075b-17febfd502a4d540","8f44c0a3186c966-17f6f0bc179dc485"]},"geometry":{"type":"LineString","coordinates":[[-83.6617791,32.8705295],[-83.66214880000001,32.870316800000005]]},"id":"8a44c0a22497fff-17bec048947aa58e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b31cd3-17bebf76cc2901cf","8f44c0a31b30949-13d6bf8b07a4f30a"]},"geometry":{"type":"LineString","coordinates":[[-83.66229960000001,32.8724672],[-83.6622763,32.8723552],[-83.6622811,32.8722325],[-83.6622672,32.8720961]]},"id":"8a44c0a31b37fff-13beff8311bc5ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a31b30949-13d6bf8b07a4f30a","8f44c0a31b34a60-13b6bf19f3ac41b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6622672,32.8720961],[-83.66225870000001,32.8720134],[-83.6622792,32.8718793],[-83.66235800000001,32.8718401],[-83.6624481,32.871836800000004]]},"id":"8a44c0a31b37fff-13dfff70c3bb7bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66269410000001,32.8723602]},"id":"8f44c0a31b225a5-13ffbe8038c4da51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b225a5-13ffbe8038c4da51","8f44c0a31b319b3-13f6bf0df8956bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.6624673,32.8723467],[-83.66269410000001,32.8723602]]},"id":"8a44c0a31b37fff-13f6fec71dbf0a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b225a5-13ffbe8038c4da51","8f44c0a31b22551-179efe4f6ed2206d"]},"geometry":{"type":"LineString","coordinates":[[-83.66269410000001,32.8723602],[-83.6627722,32.8724197]]},"id":"8c44c0a31b225ff-13fffe67c310fd62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629127,32.8731446]},"id":"8f44c0a31b05581-17d7fdf79100eda7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b05581-17d7fdf79100eda7","8f44c0a31b22551-179efe4f6ed2206d"]},"geometry":{"type":"LineString","coordinates":[[-83.6627722,32.8724197],[-83.66291170000001,32.8725256],[-83.6629127,32.8731446]]},"id":"8944c0a31b3ffff-17f6be0196dd32ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b05581-17d7fdf79100eda7","8f44c0a31b054d6-179efdf772f87630"]},"geometry":{"type":"LineString","coordinates":[[-83.6629127,32.8731446],[-83.66291290000001,32.8732391]]},"id":"8c44c0a31b055ff-17f6fdf78a058276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b05581-17d7fdf79100eda7","8f44c0a31b046a1-1797fe9f38b696ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6629127,32.8731446],[-83.66265440000001,32.8730339],[-83.6626445,32.8730173]]},"id":"8a44c0a31b07fff-17befe4db1ba12cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b225a5-13ffbe8038c4da51","8f44c0a31b046a1-1797fe9f38b696ac"]},"geometry":{"type":"LineString","coordinates":[[-83.6626445,32.8730173],[-83.6626178,32.8729725],[-83.66263210000001,32.872487],[-83.66269410000001,32.8723602]]},"id":"8944c0a31b3ffff-17b7bea62f8cdc4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d99a9-17bef706a2c5cc1b","8f44c0a224dd782-17d7f759d4454e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6656227,32.8735285],[-83.6657558,32.8736911]]},"id":"8a44c0a224dffff-17f6b7304178790b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d9b51-1796f6ab9c36166a","8f44c0a224d99a9-17bef706a2c5cc1b"]},"geometry":{"type":"LineString","coordinates":[[-83.6657558,32.8736911],[-83.6659015,32.8738669]]},"id":"8b44c0a224d9fff-17dff6d9165441ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6664169,32.874133300000004]},"id":"8f44c0a224cb09b-13bff5697ef43093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d9b51-1796f6ab9c36166a","8f44c0a224cb09b-13bff5697ef43093"]},"geometry":{"type":"LineString","coordinates":[[-83.6659015,32.8738669],[-83.666212,32.8742413],[-83.6664169,32.874133300000004]]},"id":"8744c0a22ffffff-13b6b616925559ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d80e4-17def81f5b2941ee","8f44c0a224d8226-179ef7e69bd8d1c8"]},"geometry":{"type":"LineString","coordinates":[[-83.66539750000001,32.8736677],[-83.6653067,32.8735687]]},"id":"8b44c0a224d8fff-17fff802f5cc4a41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66529720000001,32.873260900000005]},"id":"8f44c0a224dc6ad-179eb8254c611b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a224d80e4-17def81f5b2941ee","8f44c0a224dc6ad-179eb8254c611b34"]},"geometry":{"type":"LineString","coordinates":[[-83.6653067,32.8735687],[-83.6651526,32.8734009],[-83.6651574,32.8733196],[-83.66529720000001,32.873260900000005]]},"id":"8a44c0a224dffff-17f6f8583ad73345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2b34d-17f6fb33b5743fb5","8f44c0a31b7052d-13f6fa36292a8995"]},"geometry":{"type":"LineString","coordinates":[[-83.664451,32.874429400000004],[-83.66404530000001,32.874016600000004]]},"id":"8844c0a31bfffff-13f7fab4ffc09f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6639511,32.8739347]},"id":"8f44c0a31b2b333-17d7bb6e90d38493"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2b34d-17f6fb33b5743fb5","8f44c0a31b2b333-17d7bb6e90d38493"]},"geometry":{"type":"LineString","coordinates":[[-83.66404530000001,32.874016600000004],[-83.66397880000001,32.873949],[-83.6639511,32.8739347]]},"id":"8c44c0a31b2b3ff-17defb4fc49096c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6637151,32.873812900000004]},"id":"8f44c0a31b2b556-17f7bc021d860400"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2b556-17f7bc021d860400","8f44c0a31b2b333-17d7bb6e90d38493"]},"geometry":{"type":"LineString","coordinates":[[-83.6639511,32.8739347],[-83.6637151,32.873812900000004]]},"id":"8b44c0a31b2bfff-179fbbb85c1b05da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6634459,32.873901700000005]},"id":"8f44c0a31b0c12d-17bebcaa58f5cec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b0c12d-17bebcaa58f5cec1","8f44c0a31b2b556-17f7bc021d860400"]},"geometry":{"type":"LineString","coordinates":[[-83.6637151,32.873812900000004],[-83.6635753,32.873839600000004],[-83.6634459,32.873901700000005]]},"id":"8944c0a31b3ffff-179ffc5808de2e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b0c12d-17bebcaa58f5cec1","8f44c0a31b0c4d9-17ffbd535f382fa3"]},"geometry":{"type":"LineString","coordinates":[[-83.6634459,32.873901700000005],[-83.66317550000001,32.8740314]]},"id":"8b44c0a31b0cfff-17d7bcfedc6d9747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6643695,32.873696800000005]},"id":"8f44c0a31b29101-17beba691653f51c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2b556-17f7bc021d860400","8f44c0a31b29101-17beba691653f51c"]},"geometry":{"type":"LineString","coordinates":[[-83.6637151,32.873812900000004],[-83.6643695,32.873696800000005]]},"id":"8a44c0a31b2ffff-17d6fb3593261f1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664294,32.8734559]},"id":"8f44c0a31b2d6b1-1797fa98448ac98b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2d6b1-1797fa98448ac98b","8f44c0a31b29101-17beba691653f51c"]},"geometry":{"type":"LineString","coordinates":[[-83.6643695,32.873696800000005],[-83.664294,32.8734559]]},"id":"8a44c0a31b2ffff-17f7fa80bfdfad44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66333870000001,32.873759500000006]},"id":"8f44c0a31b0cd0c-17d7bced5cec1d57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2d6b1-1797fa98448ac98b","8f44c0a31b0cd0c-17d7bced5cec1d57"]},"geometry":{"type":"LineString","coordinates":[[-83.664294,32.8734559],[-83.66428210000001,32.8734181],[-83.66406930000001,32.87337],[-83.66333870000001,32.873759500000006]]},"id":"8944c0a31b3ffff-17d7bbc07ba60b94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b0c12d-17bebcaa58f5cec1","8f44c0a31b0cd0c-17d7bced5cec1d57"]},"geometry":{"type":"LineString","coordinates":[[-83.66333870000001,32.873759500000006],[-83.6634459,32.873901700000005]]},"id":"8b44c0a31b0cfff-1796bccbdb92060c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b0cd0c-17d7bced5cec1d57","8f44c0a31b01b18-17f6fd396e591ac2"]},"geometry":{"type":"LineString","coordinates":[[-83.66333870000001,32.873759500000006],[-83.663217,32.8736108]]},"id":"8944c0a31b3ffff-17b7fd13520cc951"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b054d6-179efdf772f87630","8f44c0a31b01b18-17f6fd396e591ac2"]},"geometry":{"type":"LineString","coordinates":[[-83.663217,32.8736108],[-83.66291290000001,32.8732391]]},"id":"8a44c0a31b07fff-1796bd986cc442a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6644103,32.8738443]},"id":"8f44c0a31b29312-179eba4f96b5a19f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b29312-179eba4f96b5a19f","8f44c0a31b29101-17beba691653f51c"]},"geometry":{"type":"LineString","coordinates":[[-83.6643695,32.873696800000005],[-83.6644103,32.8738443]]},"id":"8b44c0a31b29fff-17deba5c5589f3c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b29312-179eba4f96b5a19f","8f44c0a31b7409d-13bff9c84921d5b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6644103,32.8738443],[-83.66441710000001,32.873868900000005],[-83.66462680000001,32.8741077]]},"id":"8844c0a31bfffff-17deba0ed72a4e83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664568,32.8737609]},"id":"8f44c0a31b29a2c-17d6b9ed0aa0a184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b29a2c-17d6b9ed0aa0a184","8f44c0a31b7409d-13bff9c84921d5b4"]},"geometry":{"type":"LineString","coordinates":[[-83.66462680000001,32.8741077],[-83.6647205,32.874001],[-83.66476490000001,32.8739743],[-83.664568,32.8737609]]},"id":"8844c0a31bfffff-17d7b9a915add238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2d39c-179fba1fac9612eb","8f44c0a31b29a2c-17d6b9ed0aa0a184"]},"geometry":{"type":"LineString","coordinates":[[-83.664568,32.8737609],[-83.66448700000001,32.873435400000005]]},"id":"8a44c0a31b2ffff-17fefa065e65f31e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2d39c-179fba1fac9612eb","8f44c0a31b2d6b1-1797fa98448ac98b"]},"geometry":{"type":"LineString","coordinates":[[-83.66448700000001,32.873435400000005],[-83.664294,32.8734559]]},"id":"8b44c0a31b2dfff-179fba5bfb619e0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b29a2c-17d6b9ed0aa0a184","8f44c0a31b29312-179eba4f96b5a19f"]},"geometry":{"type":"LineString","coordinates":[[-83.664568,32.8737609],[-83.6644103,32.8738443]]},"id":"8b44c0a31b29fff-17feba1e4e9be1ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b29312-179eba4f96b5a19f","8f44c0a31b296a0-17b7bad848ad4f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6644103,32.8738443],[-83.66419160000001,32.8738873]]},"id":"8b44c0a31b29fff-1796ba93e2d4e611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b2b333-17d7bb6e90d38493","8f44c0a31b296a0-17b7bad848ad4f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.66419160000001,32.8738873],[-83.6639511,32.8739347]]},"id":"8a44c0a31b2ffff-17b6fb2377a70102"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b63876-13b7b6a1a50c0126","8f44c0a31b550c9-13fefa770a40b8fa"]},"geometry":{"type":"LineString","coordinates":[[-83.66434720000001,32.8754639],[-83.6646656,32.875311],[-83.6649196,32.875621800000005],[-83.66593560000001,32.8751601],[-83.66593560000001,32.8751144],[-83.66591740000001,32.875023],[-83.66591740000001,32.8749361]]},"id":"8944c0a31b7ffff-13d6f85f40be9223"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6662513,32.8749605]},"id":"8f44c0a31b6101c-13d6f5d0fa8833e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6101c-13d6f5d0fa8833e0","8f44c0a31b63876-13b7b6a1a50c0126"]},"geometry":{"type":"LineString","coordinates":[[-83.66591740000001,32.8749361],[-83.6662513,32.8749605]]},"id":"8a44c0a31b67fff-13beb6395a287d4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6665382,32.8761413]},"id":"8f44c0a31b6bb89-17b6f51da8c234dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2279a58c-1796f3b596d5f804","8f44c0a31b6bb89-17b6f51da8c234dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66711430000001,32.8758797],[-83.6665382,32.8761413]]},"id":"8a44c0a31b6ffff-17d6b4699b763cf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661857,32.8763014]},"id":"8f44c0a31b6b691-179ef5f9f44ba01b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6b691-179ef5f9f44ba01b","8f44c0a31b6bb89-17b6f51da8c234dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6665382,32.8761413],[-83.6661857,32.8763014]]},"id":"8b44c0a31b6bfff-17d6f58bd488df07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b48c02-1796b7330cf09b8a","8f44c0a31b6b691-179ef5f9f44ba01b"]},"geometry":{"type":"LineString","coordinates":[[-83.6661857,32.8763014],[-83.66568480000001,32.876528900000004]]},"id":"8a44c0a31b4ffff-17dfb6968dceb9f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66644620000001,32.8759931]},"id":"8f44c0a31b6b816-17d7b55726bc3547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6d38e-17b6b3ee7417d9b6","8f44c0a31b6b816-17d7b55726bc3547"]},"geometry":{"type":"LineString","coordinates":[[-83.66702330000001,32.875728200000005],[-83.66644620000001,32.8759931]]},"id":"8a44c0a31b6ffff-17f6f4a2c8404fd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6b49c-17bfb62c4f0dd307","8f44c0a31b6b816-17d7b55726bc3547"]},"geometry":{"type":"LineString","coordinates":[[-83.66644620000001,32.8759931],[-83.6661052,32.8761497]]},"id":"8a44c0a31b6ffff-17feb5c1b797a1c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226b6c32-1796f4e4355b3035","8f44c0a31b6bb89-17b6f51da8c234dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6666301,32.8762893],[-83.6665382,32.8761413]]},"id":"8a44c0a31b6ffff-17d6b500f6674eb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6b816-17d7b55726bc3547","8f44c0a31b6bb89-17b6f51da8c234dc"]},"geometry":{"type":"LineString","coordinates":[[-83.6665382,32.8761413],[-83.66644620000001,32.8759931]]},"id":"8b44c0a31b6bfff-17f6b53a6b19307b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b687ac-17def583f72b5604","8f44c0a31b6b816-17d7b55726bc3547"]},"geometry":{"type":"LineString","coordinates":[[-83.66644620000001,32.8759931],[-83.66643570000001,32.8759761],[-83.66640050000001,32.875833],[-83.6663745,32.8757894]]},"id":"8a44c0a31b6ffff-1797f56bd2d475af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b685a1-13f7f5bff3e1903e","8f44c0a31b687ac-17def583f72b5604"]},"geometry":{"type":"LineString","coordinates":[[-83.6663745,32.8757894],[-83.6662785,32.8756287]]},"id":"8b44c0a31b68fff-1796b5a1f1556026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b685a1-13f7f5bff3e1903e","8f44c0a31b6e3a3-1397b5f9a2bfeea3"]},"geometry":{"type":"LineString","coordinates":[[-83.6662785,32.8756287],[-83.6661862,32.8754744]]},"id":"8a44c0a31b6ffff-13b7f5dcd9bdee48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6e033-13d6b61f822a780b","8f44c0a31b6e3a3-1397b5f9a2bfeea3"]},"geometry":{"type":"LineString","coordinates":[[-83.6661862,32.8754744],[-83.6661256,32.8753729]]},"id":"8b44c0a31b6efff-13f7f60c90918eb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6c8a0-13bfb4ce7e48ade5","8f44c0a31b4d890-17f7f5c891318124"]},"geometry":{"type":"LineString","coordinates":[[-83.6666649,32.8751321],[-83.6667278,32.8750811],[-83.66706040000001,32.874938],[-83.6671362,32.875038],[-83.6673444,32.875294700000005],[-83.6676041,32.875621800000005],[-83.6678231,32.8760124],[-83.66771770000001,32.8761578],[-83.6674905,32.8763622],[-83.667055,32.8765689],[-83.66654390000001,32.876798400000006],[-83.6662647,32.8764502]]},"id":"8744c0a22ffffff-17b7b394e17fadab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b4d890-17f7f5c891318124","8f44c0a31b6b691-179ef5f9f44ba01b"]},"geometry":{"type":"LineString","coordinates":[[-83.6662647,32.8764502],[-83.6661857,32.8763014]]},"id":"8a44c0a31b4ffff-17b6f5e1436ad927"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b6b49c-17bfb62c4f0dd307","8f44c0a31b6b691-179ef5f9f44ba01b"]},"geometry":{"type":"LineString","coordinates":[[-83.6661857,32.8763014],[-83.6661052,32.8761497]]},"id":"8944c0a31b7ffff-17dfb6132017ae8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66712360000001,32.8780536]},"id":"8f44c0a22682706-13dfb3afc6037905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a22682706-13dfb3afc6037905","8f44c0a2269166d-13def4af35f6b6a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6667149,32.878278900000005],[-83.66712360000001,32.8780536]]},"id":"8944c0a226bffff-1397f42f73a142db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673205,32.8783304]},"id":"8f44c0a2268348a-13feb334bfc3464f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2268348a-13feb334bfc3464f","8f44c0a22682706-13dfb3afc6037905"]},"geometry":{"type":"LineString","coordinates":[[-83.66712360000001,32.8780536],[-83.666993,32.8778639],[-83.6672832,32.8776742],[-83.6676853,32.8782155],[-83.66741370000001,32.8783722],[-83.6673205,32.8783304]]},"id":"8944c0a226bffff-13beb31cf1429e3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2268348a-13feb334bfc3464f","8f44c0a22682706-13dfb3afc6037905"]},"geometry":{"type":"LineString","coordinates":[[-83.6673205,32.8783304],[-83.66712360000001,32.8780536]]},"id":"8a44c0a22687fff-13b6b37235027d5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766327,32.8897509]},"id":"8f44c0a04b86a91-17dedc789090d985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b86a91-17dedc789090d985","8f44c0a04b82d25-17bffd1be9e0e7ad"]},"geometry":{"type":"LineString","coordinates":[[-83.67637140000001,32.8899063],[-83.6766327,32.8897509]]},"id":"8a44c0a04b87fff-179efcca3ca3b61b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67698680000001,32.8895404]},"id":"8f44c0a04b841a5-17dedb9b4dea79fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b86a91-17dedc789090d985","8f44c0a04b841a5-17dedb9b4dea79fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6766327,32.8897509],[-83.67698680000001,32.8895404]]},"id":"8a44c0a04b87fff-179e9c09fa752488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b841a5-17dedb9b4dea79fe","8f44c0a04b84813-17b6bb5a35f4fbfb"]},"geometry":{"type":"LineString","coordinates":[[-83.67698680000001,32.8895404],[-83.67709090000001,32.889478600000004]]},"id":"8b44c0a04b84fff-17d7fb7ac326fca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b84813-17b6bb5a35f4fbfb","8f44c0a04ba26aa-17dfdba01a160c84"]},"geometry":{"type":"LineString","coordinates":[[-83.67709090000001,32.889478600000004],[-83.67697910000001,32.889334000000005]]},"id":"8944c0a04bbffff-1796fb7d2a495866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba248a-179edbdeb9122d11","8f44c0a04ba26aa-17dfdba01a160c84"]},"geometry":{"type":"LineString","coordinates":[[-83.67697910000001,32.889334000000005],[-83.6768789,32.889204400000004]]},"id":"8944c0a04bbffff-17b7dbbf6683da38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba621b-17dffac6bd22f8ee","8f44c0a04ba248a-179edbdeb9122d11"]},"geometry":{"type":"LineString","coordinates":[[-83.6768789,32.889204400000004],[-83.67678000000001,32.8890766],[-83.67722760000001,32.8888033],[-83.67732690000001,32.888927]]},"id":"8944c0a04bbffff-17f6bb8560c62866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba621b-17dffac6bd22f8ee","8f44c0a04ba0401-17bffa84709c5fe1"]},"geometry":{"type":"LineString","coordinates":[[-83.67732690000001,32.888927],[-83.6774329,32.889059100000004]]},"id":"8a44c0a04ba7fff-1796baa591a37f72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba062d-179e9a389d9aceb6","8f44c0a04ba0401-17bffa84709c5fe1"]},"geometry":{"type":"LineString","coordinates":[[-83.6774329,32.889059100000004],[-83.67755430000001,32.8892104]]},"id":"8b44c0a04ba0fff-17dfda5e88a3580a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba3946-17df99f5e31e395e","8f44c0a04ba062d-179e9a389d9aceb6"]},"geometry":{"type":"LineString","coordinates":[[-83.67755430000001,32.8892104],[-83.677661,32.8893433]]},"id":"8a44c0a04ba7fff-17b69a17413e60f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba3946-17df99f5e31e395e","8f44c0a04ba3b61-17bfb9ac7b0cc937"]},"geometry":{"type":"LineString","coordinates":[[-83.677661,32.8893433],[-83.6777785,32.8894898]]},"id":"8a44c0a04ba7fff-179ff9d13b63b89b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04ba3b61-17bfb9ac7b0cc937","8f44c0a04bae9b0-179ed966ce447d7f"]},"geometry":{"type":"LineString","coordinates":[[-83.6777785,32.8894898],[-83.67787840000001,32.889614300000005],[-83.67789,32.8896237]]},"id":"8a44c0a04ba7fff-17f7b98a4ef94d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bae868-17d7f90c3af9b1be","8f44c0a04bae9b0-179ed966ce447d7f"]},"geometry":{"type":"LineString","coordinates":[[-83.67789,32.8896237],[-83.6780349,32.889740700000004]]},"id":"8b44c0a04baefff-17b7f9398d90843e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bac6a6-179eb8b71d31a090","8f44c0a04bae868-17d7f90c3af9b1be"]},"geometry":{"type":"LineString","coordinates":[[-83.6780349,32.889740700000004],[-83.6781711,32.889850700000004]]},"id":"8a44c0a04baffff-17fed8e1ac572a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6777935,32.8902809]},"id":"8f44c0a04baa066-17bf99a31c2c9fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bac6a6-179eb8b71d31a090","8f44c0a04baa066-17bf99a31c2c9fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6781711,32.889850700000004],[-83.6783137,32.8899659],[-83.6777935,32.8902809]]},"id":"8a44c0a04baffff-17be98e53f65c2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04baac08-17def9f6743b73ee","8f44c0a04baa066-17bf99a31c2c9fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6777935,32.8902809],[-83.67766010000001,32.890128600000004]]},"id":"8b44c0a04baafff-17fe99cccbd5f423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677569,32.890024600000004]},"id":"8f44c0a04b85aeb-179ffa2f686ef6cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04baac08-17def9f6743b73ee","8f44c0a04b85aeb-179ffa2f686ef6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.67766010000001,32.890128600000004],[-83.677569,32.890024600000004]]},"id":"8a44c0a04baffff-17bffa12e98c4230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b85ac4-17ffda398a08c76d","8f44c0a04b85aeb-179ffa2f686ef6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.677569,32.890024600000004],[-83.6775528,32.8900061]]},"id":"8d44c0a04b85aff-1797ba3477bf21f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b85ac4-17ffda398a08c76d","8f44c0a04b85166-17b7fa78fcb34869"]},"geometry":{"type":"LineString","coordinates":[[-83.6775528,32.8900061],[-83.6774513,32.8898902]]},"id":"8b44c0a04b85fff-17dfba594d99351f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b85d54-17dfbac4600c958e","8f44c0a04b85166-17b7fa78fcb34869"]},"geometry":{"type":"LineString","coordinates":[[-83.6774513,32.8898902],[-83.6773306,32.889752300000005]]},"id":"8b44c0a04b85fff-179eda9ebd4da317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b84a2a-17979b08e187e717","8f44c0a04b85d54-17dfbac4600c958e"]},"geometry":{"type":"LineString","coordinates":[[-83.6773306,32.889752300000005],[-83.677221,32.8896272]]},"id":"8a44c0a04b87fff-17bebae6a51c462b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b84a2a-17979b08e187e717","8f44c0a04b84813-17b6bb5a35f4fbfb"]},"geometry":{"type":"LineString","coordinates":[[-83.677221,32.8896272],[-83.67709090000001,32.889478600000004]]},"id":"8b44c0a04b84fff-17f69b3187c7dcb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b841a5-17dedb9b4dea79fe","8f44c0a04b84c15-17b79bc8f0ea2e89"]},"geometry":{"type":"LineString","coordinates":[[-83.67698680000001,32.8895404],[-83.6769137,32.889448800000004]]},"id":"8b44c0a04b84fff-17bebbb2232f3925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67680250000001,32.8893093]},"id":"8f44c0a04bb1aac-17dedc0e76e0e0d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bb1aac-17dedc0e76e0e0d0","8f44c0a04b84c15-17b79bc8f0ea2e89"]},"geometry":{"type":"LineString","coordinates":[[-83.6769137,32.889448800000004],[-83.67680250000001,32.8893093]]},"id":"8944c0a04bbffff-17f7fbebb67fd700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766307,32.889094]},"id":"8f44c0a04bb1d70-17d7dc79d5e383f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bb1aac-17dedc0e76e0e0d0","8f44c0a04bb1d70-17d7dc79d5e383f2"]},"geometry":{"type":"LineString","coordinates":[[-83.67680250000001,32.8893093],[-83.6766307,32.889094]]},"id":"8b44c0a04bb1fff-17979c442146a447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67643840000001,32.8895179]},"id":"8f44c0a04b86dad-17debcf20c39e893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bb1aac-17dedc0e76e0e0d0","8f44c0a04b86dad-17debcf20c39e893"]},"geometry":{"type":"LineString","coordinates":[[-83.67680250000001,32.8893093],[-83.67643840000001,32.8895179]]},"id":"8a44c0a04bb7fff-179f9c804f521f43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b95821-17bebd9537fd9dfb","8f44c0a04b86dad-17debcf20c39e893"]},"geometry":{"type":"LineString","coordinates":[[-83.67643840000001,32.8895179],[-83.6761773,32.8896675]]},"id":"8944c0a04bbffff-17fffd43ae5bfa46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67627630000001,32.8893237]},"id":"8f44c0a04bb38cc-17d7dd5755236daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bb38cc-17d7dd5755236daa","8f44c0a04b86dad-17debcf20c39e893"]},"geometry":{"type":"LineString","coordinates":[[-83.67627630000001,32.8893237],[-83.67643840000001,32.8895179]]},"id":"8a44c0a04bb7fff-17969d24a70d5b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b86101-17b7fca797d38a68","8f44c0a04b86dad-17debcf20c39e893"]},"geometry":{"type":"LineString","coordinates":[[-83.67643840000001,32.8895179],[-83.6765575,32.8896607]]},"id":"8b44c0a04b86fff-17ffdcccd1ccb48d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b86a91-17dedc789090d985","8f44c0a04b86101-17b7fca797d38a68"]},"geometry":{"type":"LineString","coordinates":[[-83.6765575,32.8896607],[-83.6766327,32.8897509]]},"id":"8b44c0a04b86fff-17d6bc9016b791ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b86a91-17dedc789090d985","8f44c0a04b86368-179fdc426e7219cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6766327,32.8897509],[-83.67671940000001,32.8898548]]},"id":"8b44c0a04b86fff-17fedc5d8b1e141f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6770939,32.8903036]},"id":"8f44c0a04b8150c-17b7db5859287f49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b8150c-17b7db5859287f49","8f44c0a04b86368-179fdc426e7219cf"]},"geometry":{"type":"LineString","coordinates":[[-83.67671940000001,32.8898548],[-83.6770939,32.8903036]]},"id":"8a44c0a04b87fff-17bf9bcd551cc0a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6771798,32.8904066]},"id":"8f44c0a04b81099-17febb22a53cc624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b8150c-17b7db5859287f49","8f44c0a04b81099-17febb22a53cc624"]},"geometry":{"type":"LineString","coordinates":[[-83.6770939,32.8903036],[-83.6771798,32.8904066]]},"id":"8b44c0a04b81fff-17d7fb3d7a3999b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67726060000001,32.8905033]},"id":"8f44c0a04b812b4-13b69af02995062a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b81099-17febb22a53cc624","8f44c0a04b812b4-13b69af02995062a"]},"geometry":{"type":"LineString","coordinates":[[-83.6771798,32.8904066],[-83.67726060000001,32.8905033]]},"id":"8b44c0a04b81fff-1396fb096d6b72d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6780179,32.890698400000005]},"id":"8f44c0a04bab70b-13be9916deba9b8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bab70b-13be9916deba9b8f","8f44c0a04b812b4-13b69af02995062a"]},"geometry":{"type":"LineString","coordinates":[[-83.67726060000001,32.8905033],[-83.67743080000001,32.8907073],[-83.6775696,32.890726400000005],[-83.6780179,32.890698400000005]]},"id":"8944c0a04bbffff-13b6fa1806fac072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6786337,32.8902185]},"id":"8f44c0a04bad671-17969795fd38f9cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bab70b-13be9916deba9b8f","8f44c0a04bad671-17969795fd38f9cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6780179,32.890698400000005],[-83.6780981,32.8906934],[-83.6787427,32.8903697],[-83.6786337,32.8902185]]},"id":"8a44c0a04baffff-13b6980e27094d34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67790860000001,32.890418000000004]},"id":"8f44c0a04baa34d-17ffd95b28413989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bad671-17969795fd38f9cf","8f44c0a04baa34d-17ffd95b28413989"]},"geometry":{"type":"LineString","coordinates":[[-83.6786337,32.8902185],[-83.67851060000001,32.890047700000004],[-83.67790860000001,32.890418000000004]]},"id":"8a44c0a04baffff-17ffd86b0972829d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04baa066-17bf99a31c2c9fd7","8f44c0a04baa34d-17ffd95b28413989"]},"geometry":{"type":"LineString","coordinates":[[-83.6777935,32.8902809],[-83.67790860000001,32.890418000000004]]},"id":"8b44c0a04baafff-17d6f97f1b537ed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779966,32.8905594]},"id":"8f44c0a04bab568-13d7b92421a50947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bab568-13d7b92421a50947","8f44c0a04baa34d-17ffd95b28413989"]},"geometry":{"type":"LineString","coordinates":[[-83.67790860000001,32.890418000000004],[-83.67793230000001,32.8904462],[-83.6779966,32.8905594]]},"id":"8a44c0a04baffff-13be993e57216565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bab568-13d7b92421a50947","8f44c0a04bab70b-13be9916deba9b8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6779966,32.8905594],[-83.6780179,32.890698400000005]]},"id":"8b44c0a04babfff-1397991d7f3f8c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b8d88b-13beb9174bc015c6","8f44c0a04bab70b-13be9916deba9b8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6780179,32.890698400000005],[-83.6780214,32.8907212],[-83.6780172,32.890925100000004]]},"id":"8944c0a04bbffff-13f7d915f0c37e2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bab568-13d7b92421a50947","8f44c0a04bad671-17969795fd38f9cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6786337,32.8902185],[-83.6779966,32.8905594]]},"id":"8a44c0a04baffff-17ff985d1aef27af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bab568-13d7b92421a50947","8f44c0a04b812b4-13b69af02995062a"]},"geometry":{"type":"LineString","coordinates":[[-83.6779966,32.8905594],[-83.6778225,32.8905472],[-83.6776069,32.8902948],[-83.67726060000001,32.8905033]]},"id":"8944c0a04bbffff-139efa0af828f4fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04baac08-17def9f6743b73ee","8f44c0a04b81099-17febb22a53cc624"]},"geometry":{"type":"LineString","coordinates":[[-83.67766010000001,32.890128600000004],[-83.6771798,32.8904066]]},"id":"8944c0a04bbffff-17b7da8c93edd27e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b81099-17febb22a53cc624","8f44c0a04b83ad3-13d6fbc67ab129f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6771798,32.8904066],[-83.6769177,32.8905583]]},"id":"8a44c0a04b87fff-13b79b74826a3a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b85202-17b6ba79236c8edc","8f44c0a04b85aeb-179ffa2f686ef6cb"]},"geometry":{"type":"LineString","coordinates":[[-83.677569,32.890024600000004],[-83.677451,32.890093900000004]]},"id":"8b44c0a04b85fff-179f9a5445bf9635"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b8150c-17b7db5859287f49","8f44c0a04b85202-17b6ba79236c8edc"]},"geometry":{"type":"LineString","coordinates":[[-83.677451,32.890093900000004],[-83.6770939,32.8903036]]},"id":"8a44c0a04b87fff-17f6dae8bef4403b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6805037,32.892204500000005]},"id":"8f44c0a04a2e32c-17dfd305390f1db0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2e32c-17dfd305390f1db0","8f44c0a04a2c54c-13df926e7d3f35be"]},"geometry":{"type":"LineString","coordinates":[[-83.6805037,32.892204500000005],[-83.68074490000001,32.891995300000005]]},"id":"8a44c0a04a2ffff-179ef2b9d9f90246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2c8a4-1397b20dc7b15d21","8f44c0a04a2c54c-13df926e7d3f35be"]},"geometry":{"type":"LineString","coordinates":[[-83.68074490000001,32.891995300000005],[-83.6808996,32.8918611]]},"id":"8b44c0a04a2cfff-13bfb23e2bcb801b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68104410000001,32.8917358]},"id":"8f44c0a04b52202-13b6f1b374512ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04b52202-13b6f1b374512ade","8f44c0a04a2c8a4-1397b20dc7b15d21"]},"geometry":{"type":"LineString","coordinates":[[-83.6808996,32.8918611],[-83.68104410000001,32.8917358]]},"id":"8844c0a04bfffff-13de91e09e03c7f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68000500000001,32.891865]},"id":"8f44c0a04a230cc-1397b43ce6b98830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a23865-1396d3c91b50ec91","8f44c0a04a230cc-1397b43ce6b98830"]},"geometry":{"type":"LineString","coordinates":[[-83.68000500000001,32.891865],[-83.6801903,32.8916781]]},"id":"8b44c0a04a23fff-13dfb402f317bc6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a23865-1396d3c91b50ec91","8f44c0a04a20389-139eb3cd84f347e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6801903,32.8916781],[-83.6803125,32.8915549],[-83.68019650000001,32.8914972],[-83.6801832,32.8914915]]},"id":"8a44c0a04a27fff-13d7d3a3d99948aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a20389-139eb3cd84f347e4","8f44c0a04a20705-13fe9420982b2a09"]},"geometry":{"type":"LineString","coordinates":[[-83.6801832,32.8914915],[-83.6800503,32.8914345]]},"id":"8b44c0a04a20fff-139ef3f71fa27869"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a20481-13de948cf53c49af","8f44c0a04a20705-13fe9420982b2a09"]},"geometry":{"type":"LineString","coordinates":[[-83.6800503,32.8914345],[-83.67987690000001,32.89136]]},"id":"8b44c0a04a20fff-13f7d456c1643f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6795714,32.8911059]},"id":"8f44c0a04a264cb-13bfb54be4733231"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a264cb-13bfb54be4733231","8f44c0a04a20481-13de948cf53c49af"]},"geometry":{"type":"LineString","coordinates":[[-83.67987690000001,32.89136],[-83.6799076,32.8913163],[-83.67987690000001,32.8912666],[-83.6795714,32.8911059]]},"id":"8a44c0a04a27fff-13f6f4d2bad3ced1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6794115,32.891021800000004]},"id":"8f44c0a04a35809-13feb5afd7ebfc37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a264cb-13bfb54be4733231","8f44c0a04a35809-13feb5afd7ebfc37"]},"geometry":{"type":"LineString","coordinates":[[-83.6795714,32.8911059],[-83.6794115,32.891021800000004]]},"id":"8944c0a04a3ffff-1396f57debcf7ad7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a34143-13f6b6b3461eb4b5","8f44c0a04a35809-13feb5afd7ebfc37"]},"geometry":{"type":"LineString","coordinates":[[-83.6794115,32.891021800000004],[-83.6789964,32.8908034]]},"id":"8a44c0a04a37fff-13b6f6319799d877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67929190000001,32.891478]},"id":"8f44c0a04a31852-1397d5fa937c070c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a31852-1397d5fa937c070c","8f44c0a04a264cb-13bfb54be4733231"]},"geometry":{"type":"LineString","coordinates":[[-83.67929190000001,32.891478],[-83.6795714,32.8911059]]},"id":"8944c0a04a3ffff-13b7f5a34c612c64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a264cb-13bfb54be4733231","8f44c0a04a35809-13feb5afd7ebfc37"]},"geometry":{"type":"LineString","coordinates":[[-83.6795714,32.8911059],[-83.6797135,32.890916700000005],[-83.6795501,32.890827200000004],[-83.6794115,32.891021800000004]]},"id":"8944c0a04a3ffff-13d7f545d2f0e4ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6782819,32.8909869]},"id":"8f44c0a04a367b0-13f6d871d34fa1ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b8d88b-13beb9174bc015c6","8f44c0a04a367b0-13f6d871d34fa1ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6780172,32.890925100000004],[-83.678224,32.890967],[-83.6782819,32.8909869]]},"id":"8944c0a04bbffff-13dfb8c407c7a1ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a30cc2-13dff76bea238cfa","8f44c0a04a367b0-13f6d871d34fa1ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6782819,32.8909869],[-83.67847400000001,32.891053],[-83.678701,32.891151]]},"id":"8a44c0a04a37fff-1397b7edeea43d06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a31852-1397d5fa937c070c","8f44c0a04a30cc2-13dff76bea238cfa"]},"geometry":{"type":"LineString","coordinates":[[-83.678701,32.891151],[-83.67906500000001,32.891359],[-83.67929190000001,32.891478]]},"id":"8a44c0a04a37fff-13b7b6b4199d3a45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67936850000001,32.8915182]},"id":"8f44c0a04a31b06-13bef5cabceab8ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a31852-1397d5fa937c070c","8f44c0a04a31b06-13bef5cabceab8ec"]},"geometry":{"type":"LineString","coordinates":[[-83.67929190000001,32.891478],[-83.67936850000001,32.8915182]]},"id":"8b44c0a04a31fff-13b6d5e2a8b74220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a31b06-13bef5cabceab8ec","8f44c0a04a230cc-1397b43ce6b98830"]},"geometry":{"type":"LineString","coordinates":[[-83.67936850000001,32.8915182],[-83.679393,32.891531],[-83.68000500000001,32.891865]]},"id":"8944c0a04a3ffff-139fb503bdcdb524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800968,32.891924100000004]},"id":"8f44c0a04a23222-13be94038a3a1547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a230cc-1397b43ce6b98830","8f44c0a04a23222-13be94038a3a1547"]},"geometry":{"type":"LineString","coordinates":[[-83.68000500000001,32.891865],[-83.6800968,32.891924100000004]]},"id":"8b44c0a04a23fff-139eb4203a696037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a2e32c-17dfd305390f1db0","8f44c0a04a23222-13be94038a3a1547"]},"geometry":{"type":"LineString","coordinates":[[-83.6800968,32.891924100000004],[-83.680182,32.891979],[-83.680362,32.892111],[-83.6805037,32.892204500000005]]},"id":"8944c0a04a3ffff-1796f38473a87bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a2e32c-17dfd305390f1db0","8f44c0a04a28c40-17bf928e425d8912"]},"geometry":{"type":"LineString","coordinates":[[-83.6805037,32.892204500000005],[-83.680628,32.892286600000006],[-83.680694,32.892334500000004]]},"id":"8a44c0a04a2ffff-1797d2c954a8619d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a29d10-17b691d385f910b1","8f44c0a04a28c40-17bf928e425d8912"]},"geometry":{"type":"LineString","coordinates":[[-83.680694,32.892334500000004],[-83.6809928,32.892544900000004]]},"id":"8a44c0a04a2ffff-17fed230e8c3f900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b5a6d0-17f6d0c97299ab85","8f44c0a04a29d10-17b691d385f910b1"]},"geometry":{"type":"LineString","coordinates":[[-83.6809928,32.892544900000004],[-83.6812841,32.892762600000005],[-83.6814185,32.8928613]]},"id":"8844c0a04bfffff-1797b14eaf44ef5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b8e266-13dfdae5dd8b6a39","8f44c0a04b8ece3-13befb7b407aa509"]},"geometry":{"type":"LineString","coordinates":[[-83.67703800000001,32.890699000000005],[-83.67727710000001,32.8909788]]},"id":"8b44c0a04b8efff-1396db309d705379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b8e266-13dfdae5dd8b6a39","8f44c0a04b89584-13deda135cb7778f"]},"geometry":{"type":"LineString","coordinates":[[-83.67727710000001,32.8909788],[-83.67761390000001,32.891380500000004]]},"id":"8a44c0a04b8ffff-13dfda7c9dc825d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6779554,32.8917877]},"id":"8f44c0a04a14481-13d7d93de3cf2355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a14481-13d7d93de3cf2355","8f44c0a04b89584-13deda135cb7778f"]},"geometry":{"type":"LineString","coordinates":[[-83.67761390000001,32.891380500000004],[-83.6779125,32.8917367],[-83.6779554,32.8917877]]},"id":"8844c0a04bfffff-13de99a8a65c7c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a14481-13d7d93de3cf2355","8f44c0a04a10842-17b7f8902c599a0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6779554,32.8917877],[-83.67823340000001,32.8921183]]},"id":"8a44c0a04a17fff-13beb8e707d97efa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67890460000001,32.8929162]},"id":"8f44c0a04a1ca9a-179eb6eca3555896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a1ca9a-179eb6eca3555896","8f44c0a04a10842-17b7f8902c599a0b"]},"geometry":{"type":"LineString","coordinates":[[-83.67823340000001,32.8921183],[-83.67890460000001,32.8929162]]},"id":"8944c0a04a3ffff-179fd7be646e3730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a1ca9a-179eb6eca3555896","8f44c0a04a0a50b-17f695cf81a1f27f"]},"geometry":{"type":"LineString","coordinates":[[-83.67890460000001,32.8929162],[-83.67936080000001,32.8934656]]},"id":"8944c0a04a3ffff-17d6d65e1eea3a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a0a50b-17f695cf81a1f27f","8f44c0a04ae5942-139f946f82b7bb05"]},"geometry":{"type":"LineString","coordinates":[[-83.67936080000001,32.8934656],[-83.67959950000001,32.893753100000005],[-83.679924,32.89412]]},"id":"8844c0a04bfffff-13bff5211922aebf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68030370000001,32.894568500000005]},"id":"8f44c0a04a52b1e-13b7d3823fbaf46e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a52b1e-13b7d3823fbaf46e","8f44c0a04ae5942-139f946f82b7bb05"]},"geometry":{"type":"LineString","coordinates":[[-83.679924,32.89412],[-83.6800303,32.8942402],[-83.68030370000001,32.894568500000005]]},"id":"8844c0a04bfffff-1396f3f80cf2ab7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6799549,32.892115700000005]},"id":"8f44c0a04a058f6-17b6d45c3cffb626"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a31b06-13bef5cabceab8ec","8f44c0a04a058f6-17b6d45c3cffb626"]},"geometry":{"type":"LineString","coordinates":[[-83.67936850000001,32.8915182],[-83.67931340000001,32.891749700000005],[-83.6799549,32.892115700000005]]},"id":"8944c0a04a3ffff-1396f55157e29df2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68017760000001,32.892242700000004]},"id":"8f44c0a04a2e6b6-17f7b3d10a6a1c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a058f6-17b6d45c3cffb626","8f44c0a04a2e6b6-17f7b3d10a6a1c93"]},"geometry":{"type":"LineString","coordinates":[[-83.6799549,32.892115700000005],[-83.68017760000001,32.892242700000004]]},"id":"8944c0a04a3ffff-17de9416924989e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a23222-13be94038a3a1547","8f44c0a04a058f6-17b6d45c3cffb626"]},"geometry":{"type":"LineString","coordinates":[[-83.6800968,32.891924100000004],[-83.6799549,32.892115700000005]]},"id":"8944c0a04a3ffff-13fef42fe5b5bde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6798461,32.8924157]},"id":"8f44c0a04a05641-17dfd4a033d992d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a05641-17dfd4a033d992d9","8f44c0a04a058f6-17b6d45c3cffb626"]},"geometry":{"type":"LineString","coordinates":[[-83.6799549,32.892115700000005],[-83.6798461,32.8924157]]},"id":"8b44c0a04a05fff-1796947e3cb8d94f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800805,32.892544900000004]},"id":"8f44c0a04a2a42b-17b6940dbfc5aa59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a05641-17dfd4a033d992d9","8f44c0a04a2a42b-17b6940dbfc5aa59"]},"geometry":{"type":"LineString","coordinates":[[-83.6798461,32.8924157],[-83.6800805,32.892544900000004]]},"id":"8944c0a04a3ffff-179eb456facf7501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2bd71-179fb2d2f89dd6ee","8f44c0a04a2e32c-17dfd305390f1db0"]},"geometry":{"type":"LineString","coordinates":[[-83.6805037,32.892204500000005],[-83.6803646,32.892381900000004],[-83.68023670000001,32.8925688],[-83.6805841,32.8926874]]},"id":"8a44c0a04a2ffff-1796934e6bc70849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a2bd71-179fb2d2f89dd6ee","8f44c0a04a29780-17f7f1f90aa8e800"]},"geometry":{"type":"LineString","coordinates":[[-83.6805841,32.8926874],[-83.6806676,32.8927159],[-83.6808405,32.8927874],[-83.68093280000001,32.892863000000006]]},"id":"8a44c0a04a2ffff-17beb2619f1c77ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a29780-17f7f1f90aa8e800","8f44c0a04a74419-179e9135bd5f5f51"]},"geometry":{"type":"LineString","coordinates":[[-83.68093280000001,32.892863000000006],[-83.6810275,32.8929405],[-83.6812453,32.8931016]]},"id":"8844c0a04bfffff-17d6f1982b718c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a744de-17bff146f08d7c0b","8f44c0a04a74419-179e9135bd5f5f51"]},"geometry":{"type":"LineString","coordinates":[[-83.6812453,32.8931016],[-83.6812177,32.893148700000005]]},"id":"8c44c0a04a745ff-179fd13e5d307df6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6807971,32.8938221]},"id":"8f44c0a04a72641-13ded24dd91534f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a72641-13ded24dd91534f6","8f44c0a04a744de-17bff146f08d7c0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6812177,32.893148700000005],[-83.68089730000001,32.893696000000006],[-83.6807971,32.8938221]]},"id":"8a44c0a04a77fff-17ff91c5ba0b8508"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6805884,32.894162]},"id":"8f44c0a04a547aa-13b7d2d04155f67d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a547aa-13b7d2d04155f67d","8f44c0a04a72641-13ded24dd91534f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6807971,32.8938221],[-83.6806842,32.8939644],[-83.6805884,32.894162]]},"id":"8944c0a04a7ffff-13b7f294ded46d44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a52b1e-13b7d3823fbaf46e","8f44c0a04a547aa-13b7d2d04155f67d"]},"geometry":{"type":"LineString","coordinates":[[-83.6805884,32.894162],[-83.6804972,32.89435],[-83.68030370000001,32.894568500000005]]},"id":"8a44c0a04a57fff-13be9320a9e7db79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a547aa-13b7d2d04155f67d","8f44c0a04a56ca1-13d7d3fd2842d37f"]},"geometry":{"type":"LineString","coordinates":[[-83.6805884,32.894162],[-83.6801373,32.894047900000004],[-83.680107,32.894015700000004]]},"id":"8944c0a04a7ffff-13ffb36a49d488a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a09523-17f6f3bdd2abde99","8f44c0a04a56ca1-13d7d3fd2842d37f"]},"geometry":{"type":"LineString","coordinates":[[-83.680107,32.894015700000004],[-83.6800829,32.893990200000005],[-83.6802083,32.8936463]]},"id":"8a44c0a04a0ffff-13d693e7c487b0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a09523-17f6f3bdd2abde99","8f44c0a04a72641-13ded24dd91534f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6802083,32.8936463],[-83.6807971,32.8938221]]},"id":"8844c0a04bfffff-1397f305d182c07d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a1ca9a-179eb6eca3555896","8f44c0a04a02249-17fff67c491b2ed8"]},"geometry":{"type":"LineString","coordinates":[[-83.67890460000001,32.8929162],[-83.67901540000001,32.8927877],[-83.67908440000001,32.892667800000005]]},"id":"8944c0a04a3ffff-17dfb6b0c160938a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a05641-17dfd4a033d992d9","8f44c0a04a02249-17fff67c491b2ed8"]},"geometry":{"type":"LineString","coordinates":[[-83.67908440000001,32.892667800000005],[-83.67932370000001,32.892251800000004],[-83.67945900000001,32.8922699],[-83.6797078,32.8923812],[-83.6798461,32.8924157]]},"id":"8a44c0a04a07fff-17dff5b1e50bdd2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a14481-13d7d93de3cf2355","8f44c0a04a14c45-139ef8b10abdc9fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6779554,32.8917877],[-83.6781808,32.891671]]},"id":"8b44c0a04a14fff-13b6f8f77a9070fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a14c45-139ef8b10abdc9fa","8f44c0a04a32d04-13b7f87f0fa0479b"]},"geometry":{"type":"LineString","coordinates":[[-83.6781808,32.891671],[-83.6782608,32.8916295],[-83.6783393,32.8915614],[-83.67835550000001,32.891504600000005],[-83.6782608,32.891123]]},"id":"8944c0a04a3ffff-13f7d8679e16b2ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04a367b0-13f6d871d34fa1ff","8f44c0a04a32d04-13b7f87f0fa0479b"]},"geometry":{"type":"LineString","coordinates":[[-83.6782608,32.891123],[-83.6782819,32.8909869]]},"id":"8a44c0a04a37fff-139ff8787e038872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824417,32.8961155]},"id":"8f44c0a04a4b151-17febe49f7cdf0d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05da44a9-17bfd01bdfe4ee29","8f44c0a04a4b151-17febe49f7cdf0d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6816963,32.8962452],[-83.6819514,32.896173600000004],[-83.6823598,32.896135],[-83.6824417,32.8961155]]},"id":"8844c0a05dfffff-179eff342d54f56d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d36645-17d68bdc67d27b8b","8f44c0a04a4b151-17febe49f7cdf0d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6824417,32.8961155],[-83.6825599,32.896087300000005],[-83.6827006,32.8959829],[-83.6832117,32.895555900000005],[-83.6833794,32.895599100000005],[-83.6834362,32.895667200000005]]},"id":"8844c0a05dfffff-17b7ad0f615cb9b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d36645-17d68bdc67d27b8b","8f44c0a04a4b151-17febe49f7cdf0d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6834362,32.895667200000005],[-83.6832821,32.895805800000005],[-83.68286020000001,32.8961532],[-83.6827276,32.8961623],[-83.6824417,32.8961155]]},"id":"8844c0a05dfffff-179f9cff4f6a7fbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6822597,32.896559700000005]},"id":"8f44c0a05da5015-17ffdebbbfa286a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05da0b43-17d69f3cc3c47ccb","8f44c0a05da5015-17ffdebbbfa286a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6820532,32.8966761],[-83.6822597,32.896559700000005]]},"id":"8a44c0a05da7fff-17b6befc3e575360"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05da51ae-17f6dec560ad76f5","8f44c0a05da5015-17ffdebbbfa286a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6822597,32.896559700000005],[-83.6822442,32.8965125]]},"id":"8c44c0a05da51ff-17ff9ec09d9ebc03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6838376,32.897049800000005]},"id":"8f44c0a05d0244d-13b6aae18622bbba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05da51ae-17f6dec560ad76f5","8f44c0a05d0244d-13b6aae18622bbba"]},"geometry":{"type":"LineString","coordinates":[[-83.6822442,32.8965125],[-83.6822381,32.8964938],[-83.68223540000001,32.8963644],[-83.6830197,32.8963303],[-83.68311170000001,32.8963667],[-83.6834633,32.8963644],[-83.6837067,32.8966074],[-83.683869,32.896773200000005],[-83.6839041,32.896859500000005],[-83.6838987,32.8969503],[-83.6838376,32.897049800000005]]},"id":"8844c0a05dfffff-17d78c8be01d7b66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05dad944-13d6bcd074efb87b","8f44c0a05d0244d-13b6aae18622bbba"]},"geometry":{"type":"LineString","coordinates":[[-83.6838376,32.897049800000005],[-83.68380950000001,32.8970956],[-83.6837229,32.8971888],[-83.6835417,32.8973],[-83.6831495,32.897511200000004],[-83.6830711,32.897511200000004],[-83.68304570000001,32.897485100000004]]},"id":"8944c0a05d3ffff-13de8bcc24c8aba8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05dad944-13d6bcd074efb87b","8f44c0a05da5015-17ffdebbbfa286a1"]},"geometry":{"type":"LineString","coordinates":[[-83.68304570000001,32.897485100000004],[-83.6829981,32.8974363],[-83.6826005,32.896945800000005],[-83.68254370000001,32.896909400000006],[-83.682303,32.8965801],[-83.6822597,32.896559700000005]]},"id":"8844c0a05dfffff-139e8dc59ffe6803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364cc31-17dff77b9411bae8","8f44c0a2364ea1d-17b677faa91093cb"]},"geometry":{"type":"LineString","coordinates":[[-83.69178310000001,32.8958941],[-83.6915798,32.896205200000004]]},"id":"8a44c0a2364ffff-17bf77bb21e880a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364bcb3-17967845003122e6","8f44c0a2364ea1d-17b677faa91093cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6915798,32.896205200000004],[-83.69126220000001,32.8966914],[-83.6914608,32.8967748]]},"id":"8a44c0a2364ffff-17fe7867fa76f115"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6880715,32.901241500000005]},"id":"8f44c0a05890c52-13fff08b5d066740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05890913-13be9029271b4e4e","8f44c0a05890c52-13fff08b5d066740"]},"geometry":{"type":"LineString","coordinates":[[-83.6882286,32.9011593],[-83.6880715,32.901241500000005]]},"id":"8b44c0a05890fff-13d6c05a43d15e18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0589212a-13dff177862717e8","8f44c0a05890c52-13fff08b5d066740"]},"geometry":{"type":"LineString","coordinates":[[-83.6880715,32.901241500000005],[-83.68774660000001,32.9014115],[-83.6876936,32.9014015]]},"id":"8a44c0a05897fff-13b7810002c1abe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0589212a-13dff177862717e8","8f44c0a05892112-13dff199cc397d90"]},"geometry":{"type":"LineString","coordinates":[[-83.6876936,32.9014015],[-83.6876388,32.901391100000005]]},"id":"8c44c0a058921ff-13deb188ac877b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68752780000001,32.901317500000005]},"id":"8f44c0a05892caa-139ff1df2f23cfe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05892112-13dff199cc397d90","8f44c0a05892caa-139ff1df2f23cfe6"]},"geometry":{"type":"LineString","coordinates":[[-83.6876388,32.901391100000005],[-83.6875524,32.9013459],[-83.68752780000001,32.901317500000005]]},"id":"8b44c0a05892fff-13b6f1be6f14d5ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05891c82-13be7fe53da2c22b","8f44c0a05890c52-13fff08b5d066740"]},"geometry":{"type":"LineString","coordinates":[[-83.6880715,32.901241500000005],[-83.6883373,32.9015429]]},"id":"8a44c0a05897fff-13dea0384362ac07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05891c82-13be7fe53da2c22b","8f44c0a05891730-139effbb846c44ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6883373,32.9015429],[-83.688404,32.901732]]},"id":"8b44c0a05891fff-13f77fd060a56e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6896868,32.904189]},"id":"8f44c0a0512e852-139e7c99ca0ca880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0512e852-139e7c99ca0ca880","8f44c0a0512e606-13befd22dafef5b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6894675,32.904410500000004],[-83.6896868,32.904189]]},"id":"8b44c0a0512efff-13f77cde57dffe51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68986600000001,32.9043008]},"id":"8f44c0a0512c6b6-13f67c29c109c934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0512c6b6-13f67c29c109c934","8f44c0a0512e852-139e7c99ca0ca880"]},"geometry":{"type":"LineString","coordinates":[[-83.6896868,32.904189],[-83.69001990000001,32.9038526],[-83.6901849,32.9039725],[-83.68986600000001,32.9043008]]},"id":"8944c0a0513ffff-13d67bea5f29c9ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0512c6b6-13f67c29c109c934","8f44c0a0512e852-139e7c99ca0ca880"]},"geometry":{"type":"LineString","coordinates":[[-83.68986600000001,32.9043008],[-83.6896868,32.904189]]},"id":"8a44c0a0512ffff-13d77c61c83b95a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6892945,32.9038914]},"id":"8f44c0a051238dd-13f67d8ef561dc95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0512e852-139e7c99ca0ca880","8f44c0a051238dd-13f67d8ef561dc95"]},"geometry":{"type":"LineString","coordinates":[[-83.6896868,32.904189],[-83.6892945,32.9038914]]},"id":"8944c0a0513ffff-13d77d14509298a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68937240000001,32.903779300000004]},"id":"8f44c0a05123970-139e7d5e42070c24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05123970-139e7d5e42070c24","8f44c0a051238dd-13f67d8ef561dc95"]},"geometry":{"type":"LineString","coordinates":[[-83.6892945,32.9038914],[-83.6890868,32.9037339],[-83.68910620000001,32.9036966],[-83.6891727,32.9036733],[-83.6892753,32.9036722],[-83.6893641,32.9037269],[-83.68937240000001,32.903779300000004]]},"id":"8a44c0a05127fff-139f7dbd6d1ae783"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05123970-139e7d5e42070c24","8f44c0a051238dd-13f67d8ef561dc95"]},"geometry":{"type":"LineString","coordinates":[[-83.68937240000001,32.903779300000004],[-83.6892945,32.9038914]]},"id":"8c44c0a051239ff-13d77d7697ede6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900651,32.904494400000004]},"id":"8f44c0a05128872-13df7bad58a867be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05128764-13f6fc0ba0688f90","8f44c0a05128872-13df7bad58a867be"]},"geometry":{"type":"LineString","coordinates":[[-83.6899142,32.9047051],[-83.6900651,32.904494400000004]]},"id":"8b44c0a05128fff-139efbdc8aa4d01d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058d1676-13f7798b01b794d3","8f44c0a05128872-13df7bad58a867be"]},"geometry":{"type":"LineString","coordinates":[[-83.6900651,32.904494400000004],[-83.6900906,32.9044588],[-83.69019850000001,32.9042528],[-83.69037920000001,32.9040376],[-83.69065970000001,32.9037251],[-83.69077560000001,32.903747800000005],[-83.69090510000001,32.9038044],[-83.69105880000001,32.9039742],[-83.6909392,32.904120400000004]]},"id":"8744c0a05ffffff-13bffa6deea68772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058d1676-13f7798b01b794d3","8f44c0a05128872-13df7bad58a867be"]},"geometry":{"type":"LineString","coordinates":[[-83.6909392,32.904120400000004],[-83.69078640000001,32.904307100000004],[-83.6904331,32.9045834],[-83.6903171,32.9045992],[-83.6900651,32.904494400000004]]},"id":"8744c0a05ffffff-13b7fa87a306f064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad62535-1396d82860f173f9","8f44c0a2ad710e0-13b6f8ea41fcb7a5"]},"geometry":{"type":"LineString","coordinates":[[-83.7043036,32.9144591],[-83.7046138,32.9142024]]},"id":"8944c0a2ad7ffff-13f6d8895c73d8ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad660c2-13ff778004def219","8f44c0a2ad62535-1396d82860f173f9"]},"geometry":{"type":"LineString","coordinates":[[-83.7046138,32.9142024],[-83.7047404,32.9140977],[-83.70488320000001,32.9139442]]},"id":"8a44c0a2ad67fff-13d6d7d1a52e2ba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70509050000001,32.9137213]},"id":"8f44c0a2ad66945-13f7d6fe7c17e810"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad660c2-13ff778004def219","8f44c0a2ad66945-13f7d6fe7c17e810"]},"geometry":{"type":"LineString","coordinates":[[-83.70488320000001,32.9139442],[-83.70509050000001,32.9137213]]},"id":"8b44c0a2ad66fff-13bf773f3b4bf9ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e6dc812-1797d7920e5ff1bc","8f44c0a2ad66945-13f7d6fe7c17e810"]},"geometry":{"type":"LineString","coordinates":[[-83.70509050000001,32.9137213],[-83.70511490000001,32.913695000000004],[-83.7051515,32.913568500000004],[-83.70511040000001,32.9125409],[-83.7049277,32.9125409],[-83.7048544,32.912546500000005]]},"id":"8744c0a2affffff-17b776f5eff57b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e6d96a8-13975780f876f18e","8f44c0a2e6dc812-1797d7920e5ff1bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7048544,32.912546500000005],[-83.7046765,32.9125601],[-83.70460340000001,32.9126022],[-83.7046353,32.9134535],[-83.7048817,32.9135985]]},"id":"8a44c0a2e6dffff-17bf7806cf16f0cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e6d96a8-13975780f876f18e","8f44c0a2ad66945-13f7d6fe7c17e810"]},"geometry":{"type":"LineString","coordinates":[[-83.7048817,32.9135985],[-83.70509050000001,32.9137213]]},"id":"8844c0a2adfffff-13bf773fb7ea6582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7067433,32.915187800000005]},"id":"8f44c0a2a99e624-17fe72f5734fd86d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8b4586-17b653f1a7ad5282","8f44c0a2a99e624-17fe72f5734fd86d"]},"geometry":{"type":"LineString","coordinates":[[-83.70633980000001,32.9158753],[-83.70673690000001,32.915452800000004],[-83.7067768,32.915387700000004],[-83.7067909,32.915299000000005],[-83.70677450000001,32.915234000000005],[-83.7067433,32.915187800000005]]},"id":"8844c0a2a9fffff-17ded345143cdfba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.706225,32.9148358]},"id":"8f44c0a2ad6cb72-139e7439686b4419"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99e624-17fe72f5734fd86d","8f44c0a2ad6cb72-139e7439686b4419"]},"geometry":{"type":"LineString","coordinates":[[-83.7067433,32.915187800000005],[-83.7067251,32.9151611],[-83.706225,32.9148358]]},"id":"8844c0a2a9fffff-1797f394ceef826a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7073287,32.9145646]},"id":"8f44c0a2a982093-13f6f18798aab6d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99e624-17fe72f5734fd86d","8f44c0a2a982093-13f6f18798aab6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7067433,32.915187800000005],[-83.7073287,32.9145646]]},"id":"8944c0a2a9bffff-13b7f23e8b903556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074631,32.9144215]},"id":"8f44c0a2a982883-139f713399756f80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a982883-139f713399756f80","8f44c0a2a982093-13f6f18798aab6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.7073287,32.9145646],[-83.7074631,32.9144215]]},"id":"8b44c0a2a982fff-13d6715d96df1a2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a982883-139f713399756f80","8f44c0a2a986288-13df50e9fc002171"]},"geometry":{"type":"LineString","coordinates":[[-83.7074631,32.9144215],[-83.70758090000001,32.9142961]]},"id":"8a44c0a2a987fff-13f6510ece3acc87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70770900000001,32.9141597]},"id":"8f44c0a2a986af0-13f7d099e2009a37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a986af0-13f7d099e2009a37","8f44c0a2a986288-13df50e9fc002171"]},"geometry":{"type":"LineString","coordinates":[[-83.70758090000001,32.9142961],[-83.70770900000001,32.9141597]]},"id":"8b44c0a2a986fff-13b670c1f3384856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a986af0-13f7d099e2009a37","8f44c0a2a981b02-13d6fec32a21a420"]},"geometry":{"type":"LineString","coordinates":[[-83.70770900000001,32.9141597],[-83.7083546,32.9145835],[-83.70839690000001,32.9146249],[-83.7084622,32.9147179]]},"id":"8a44c0a2a987fff-139fefa4c5d2497b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70694590000001,32.9136098]},"id":"8f44c0a2a9b2228-139e7276dc43ef45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a986af0-13f7d099e2009a37","8f44c0a2a9b2228-139e7276dc43ef45"]},"geometry":{"type":"LineString","coordinates":[[-83.70770900000001,32.9141597],[-83.70698110000001,32.913667000000004],[-83.70694590000001,32.9136098]]},"id":"8944c0a2a9bffff-13dff18e49a0177c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a9b2228-139e7276dc43ef45","8f44c0a2e6cd29d-17f7d39b1d5cb8d8"]},"geometry":{"type":"LineString","coordinates":[[-83.70694590000001,32.9136098],[-83.7069106,32.913521100000004],[-83.7068472,32.913458],[-83.7067439,32.913416600000005],[-83.7064783,32.913318100000005]]},"id":"8744c0a2affffff-13bf72f770a901b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a994940-13fe729e44da6010","8f44c0a2a9b2228-139e7276dc43ef45"]},"geometry":{"type":"LineString","coordinates":[[-83.70694590000001,32.9136098],[-83.7068828,32.9137286]]},"id":"8a44c0a2a9b7fff-13d7528a90acd2f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7066626,32.9141434]},"id":"8f44c0a2a9909ab-13fff327e1ef66a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a994940-13fe729e44da6010","8f44c0a2a9909ab-13fff327e1ef66a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7068828,32.9137286],[-83.7066626,32.9141434]]},"id":"8944c0a2a9bffff-13fe52e31f1f6adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad6c94b-13df745a49ca8979","8f44c0a2a9909ab-13fff327e1ef66a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7066626,32.9141434],[-83.7065702,32.9143174],[-83.7061724,32.9147319]]},"id":"8a44c0a2a997fff-13bef3b6dba6626c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059761,32.9149363]},"id":"8f44c0a2ad6c0ce-13df74d4f25ebf0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad6c0ce-13df74d4f25ebf0a","8f44c0a2ad6c94b-13df745a49ca8979"]},"geometry":{"type":"LineString","coordinates":[[-83.7061724,32.9147319],[-83.7059761,32.9149363]]},"id":"8b44c0a2ad6cfff-139f5497ae447222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7059339,32.9150152]},"id":"8f44c0a2ad6c675-179ed4ef5d3a4ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad6c0ce-13df74d4f25ebf0a","8f44c0a2ad6c675-179ed4ef5d3a4ae8"]},"geometry":{"type":"LineString","coordinates":[[-83.7059761,32.9149363],[-83.70662420000001,32.915356200000005],[-83.70653970000001,32.915452800000004],[-83.7064105,32.9154469],[-83.705955,32.9151335],[-83.7059456,32.9150921],[-83.7059339,32.9150152]]},"id":"8844c0a2a9fffff-1797541c66624904"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad6c0ce-13df74d4f25ebf0a","8f44c0a2ad6c675-179ed4ef5d3a4ae8"]},"geometry":{"type":"LineString","coordinates":[[-83.7059339,32.9150152],[-83.7059761,32.9149363]]},"id":"8b44c0a2ad6cfff-13f7f4e22de6f011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99445b-13ffd36b53d3a19f","8f44c0a2a996a6e-13b6d3982db88bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.706483,32.914052000000005],[-83.70646140000001,32.9140432],[-83.7064441,32.9140292],[-83.7064328,32.9140115],[-83.70642860000001,32.9139916],[-83.7064319,32.913971700000005],[-83.70644250000001,32.9139536],[-83.70645920000001,32.9139391],[-83.7064804,32.913929700000004],[-83.7065063,32.9139263],[-83.7065321,32.9139305],[-83.70655470000001,32.9139417]]},"id":"8a44c0a2a997fff-1396f3a03618d01f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70675010000001,32.9141988]},"id":"8f44c0a2a990866-139e52f13feccdfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a982093-13f6f18798aab6d5","8f44c0a2a990866-139e52f13feccdfe"]},"geometry":{"type":"LineString","coordinates":[[-83.7073287,32.9145646],[-83.70675010000001,32.9141988]]},"id":"8944c0a2a9bffff-1396d23c6d52c573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a9909ab-13fff327e1ef66a3","8f44c0a2a990866-139e52f13feccdfe"]},"geometry":{"type":"LineString","coordinates":[[-83.70675010000001,32.9141988],[-83.7066626,32.9141434]]},"id":"8c44c0a2a9909ff-13fef30c9ca5820a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99436b-13bef29895fd1fed","8f44c0a2a982883-139f713399756f80"]},"geometry":{"type":"LineString","coordinates":[[-83.7074631,32.9144215],[-83.7068919,32.9140395]]},"id":"8944c0a2a9bffff-13b651e611af0fcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99436b-13bef29895fd1fed","8f44c0a2a990866-139e52f13feccdfe"]},"geometry":{"type":"LineString","coordinates":[[-83.7068919,32.9140395],[-83.70675010000001,32.9141988]]},"id":"8a44c0a2a997fff-13ded2c4e9c1e4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8b10e1-13de72bef0e6decf","8f44c0a2a8b3753-13bf5417235426de"]},"geometry":{"type":"LineString","coordinates":[[-83.70683050000001,32.9167495],[-83.70658560000001,32.9168892],[-83.7064488,32.9169252],[-83.7062798,32.916936500000006]]},"id":"8a44c0a2a8b7fff-139773655f2238a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8b3753-13bf5417235426de","8f44c0a2a894bae-139fd4bd6b062371"]},"geometry":{"type":"LineString","coordinates":[[-83.7062798,32.916936500000006],[-83.7060921,32.9169162],[-83.70601380000001,32.916879200000004]]},"id":"8944c0a2a8bffff-13b7546bf5a4e5de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a894bae-139fd4bd6b062371","8f44c0a2a8b044b-179653f2b70aa95f"]},"geometry":{"type":"LineString","coordinates":[[-83.70601380000001,32.916879200000004],[-83.70594460000001,32.916846400000004],[-83.705848,32.9167429],[-83.70633810000001,32.916438400000004]]},"id":"8944c0a2a8bffff-139e54a89dd4fa36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a98d51e-17dfedf758cf5a38","8f44c0a2a981ba8-13de4ed7dd57ecb1"]},"geometry":{"type":"LineString","coordinates":[[-83.7084291,32.9147328],[-83.70878830000001,32.9153502]]},"id":"8944c0a2a9bffff-179efe67998c9c14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a98aa12-17976f7395a5d802","8f44c0a2a98d51e-17dfedf758cf5a38"]},"geometry":{"type":"LineString","coordinates":[[-83.70878830000001,32.9153502],[-83.7082737,32.915544100000005],[-83.7081799,32.915637000000004]]},"id":"8a44c0a2a98ffff-17bfdebcf219231d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71020030000001,32.9164997]},"id":"8f44c0a2a806376-17be5a84dffa3f29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8206e6-17d7487d81072a86","8f44c0a2a806376-17be5a84dffa3f29"]},"geometry":{"type":"LineString","coordinates":[[-83.71103120000001,32.9159248],[-83.71020030000001,32.9164997]]},"id":"8944c0a2a83ffff-17fef98124e151d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7092178,32.9171795]},"id":"8f44c0a2a81ed88-13d77ceae4939467"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81ed88-13d77ceae4939467","8f44c0a2a806376-17be5a84dffa3f29"]},"geometry":{"type":"LineString","coordinates":[[-83.71020030000001,32.9164997],[-83.7092178,32.9171795]]},"id":"8944c0a2a83ffff-1396cbb7dd647a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70906670000001,32.9172841]},"id":"8f44c0a2a8132c9-1396dd49586dbe6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81ed88-13d77ceae4939467","8f44c0a2a8132c9-1396dd49586dbe6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7092178,32.9171795],[-83.70906670000001,32.9172841]]},"id":"8b44c0a2a81efff-13f7ed1a1ebd79be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70825860000001,32.916861000000004]},"id":"8f44c0a2a8a1a9d-139e6f4266ae1105"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8132c9-1396dd49586dbe6a","8f44c0a2a8a1a9d-139e6f4266ae1105"]},"geometry":{"type":"LineString","coordinates":[[-83.70906670000001,32.9172841],[-83.7089388,32.9173726],[-83.70888980000001,32.9174049],[-83.70882680000001,32.917413700000004],[-83.7087638,32.9173873],[-83.70825860000001,32.916861000000004]]},"id":"8844c0a2a9fffff-13f7de524c8ef3a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7085,32.9166961]},"id":"8f44c0a2a81255d-13b75eab81ee126b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81255d-13b75eab81ee126b","8f44c0a2a8a1a9d-139e6f4266ae1105"]},"geometry":{"type":"LineString","coordinates":[[-83.70825860000001,32.916861000000004],[-83.70780470000001,32.9163883],[-83.70781170000001,32.9163295],[-83.7079903,32.9162091],[-83.7080533,32.9162326],[-83.7085,32.9166961]]},"id":"8944c0a2a8bffff-17b7efa431742aee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81255d-13b75eab81ee126b","8f44c0a2a8132c9-1396dd49586dbe6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7085,32.9166961],[-83.70906670000001,32.9172841]]},"id":"8a44c0a2a817fff-13deddfa73203604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.708667,32.916582000000005]},"id":"8f44c0a2a812885-17dfce4325bb6696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81ed88-13d77ceae4939467","8f44c0a2a812885-17dfce4325bb6696"]},"geometry":{"type":"LineString","coordinates":[[-83.7092178,32.9171795],[-83.708667,32.916582000000005]]},"id":"8a44c0a2a817fff-139ecd970d28de38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a812885-17dfce4325bb6696","8f44c0a2a98b4b4-17d74f98baf35e53"]},"geometry":{"type":"LineString","coordinates":[[-83.708667,32.916582000000005],[-83.70816880000001,32.9160416],[-83.7081205,32.9159184]]},"id":"8844c0a2a9fffff-17974ef8e5915614"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81255d-13b75eab81ee126b","8f44c0a2a8a1a9d-139e6f4266ae1105"]},"geometry":{"type":"LineString","coordinates":[[-83.70825860000001,32.916861000000004],[-83.7085,32.9166961]]},"id":"8944c0a2a8bffff-13deeef6f107be0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a81255d-13b75eab81ee126b","8f44c0a2a812885-17dfce4325bb6696"]},"geometry":{"type":"LineString","coordinates":[[-83.7085,32.9166961],[-83.708667,32.916582000000005]]},"id":"8b44c0a2a812fff-13977e775a45555f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70908940000001,32.9162934]},"id":"8f44c0a2a814789-17bf6d3b2574e198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a812885-17dfce4325bb6696","8f44c0a2a814789-17bf6d3b2574e198"]},"geometry":{"type":"LineString","coordinates":[[-83.708667,32.916582000000005],[-83.70908940000001,32.9162934]]},"id":"8a44c0a2a817fff-1797ddbf291bd9c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a833d5e-17bfdbd1e66cf1ab","8f44c0a2a814789-17bf6d3b2574e198"]},"geometry":{"type":"LineString","coordinates":[[-83.70908940000001,32.9162934],[-83.7095828,32.9159564],[-83.7096674,32.915910100000005]]},"id":"8944c0a2a83ffff-17b77c87d62dd726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a833d5e-17bfdbd1e66cf1ab","8f44c0a2a83029d-17974b69e9fea90c"]},"geometry":{"type":"LineString","coordinates":[[-83.7096674,32.915910100000005],[-83.7098338,32.9158192]]},"id":"8a44c0a2a837fff-179f7b9de0e5dbbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a830acc-17d7fafa0d26669c","8f44c0a2a83029d-17974b69e9fea90c"]},"geometry":{"type":"LineString","coordinates":[[-83.7098338,32.9158192],[-83.7100128,32.915721500000004]]},"id":"8b44c0a2a830fff-17f6cb31f24cd88e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a830acc-17d7fafa0d26669c","8f44c0a2a804cb4-17beda138a97f3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7100128,32.915721500000004],[-83.7101744,32.9156332],[-83.7105174,32.9160181],[-83.7103816,32.9161161]]},"id":"8944c0a2a83ffff-1796ca3edf77c3b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a806971-17966a7108c27b0e","8f44c0a2a804cb4-17beda138a97f3b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7103816,32.9161161],[-83.710232,32.9162242]]},"id":"8a44c0a2a807fff-17de6a424e2344be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a806971-17966a7108c27b0e","8f44c0a2a80611c-17df6ad8d8bdb563"]},"geometry":{"type":"LineString","coordinates":[[-83.710232,32.9162242],[-83.7100659,32.916344200000005]]},"id":"8b44c0a2a806fff-17b7eaa4f56abf4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a806376-17be5a84dffa3f29","8f44c0a2a80611c-17df6ad8d8bdb563"]},"geometry":{"type":"LineString","coordinates":[[-83.7100659,32.916344200000005],[-83.71020030000001,32.9164997]]},"id":"8b44c0a2a806fff-17ffcaaed24584bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70894940000001,32.916128400000005]},"id":"8f44c0a2a816969-17d64d92adcac4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a814789-17bf6d3b2574e198","8f44c0a2a816969-17d64d92adcac4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.70908940000001,32.9162934],[-83.70894940000001,32.916128400000005]]},"id":"8a44c0a2a817fff-17f7dd66e836fe9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a816d35-179f4e3d7c2168b1","8f44c0a2a816969-17d64d92adcac4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.70894940000001,32.916128400000005],[-83.7088583,32.916021],[-83.7086761,32.9160368]]},"id":"8944c0a2a83ffff-1796cddf6563ffe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a816d35-179f4e3d7c2168b1","8f44c0a2a8168dc-17ff5de6f89b500e"]},"geometry":{"type":"LineString","coordinates":[[-83.7086761,32.9160368],[-83.7084523,32.9160563],[-83.7084523,32.9160886],[-83.7086658,32.916306],[-83.7088145,32.916212900000005]]},"id":"8844c0a2a9fffff-17de7e6dabc98479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8168dc-17ff5de6f89b500e","8f44c0a2a816969-17d64d92adcac4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7088145,32.916212900000005],[-83.70894940000001,32.916128400000005]]},"id":"8b44c0a2a816fff-17defdbcd40af9ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7286698,32.8100739]},"id":"8f44c0b08ca1b9d-13de3d6d6b9f7f26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08ca1683-17d7fe2cde501440","8f44c0b08ca1b9d-13de3d6d6b9f7f26"]},"geometry":{"type":"LineString","coordinates":[[-83.7283635,32.810243],[-83.7284374,32.8103429],[-83.7285243,32.810387],[-83.7285816,32.810390000000005],[-83.7286723,32.810350500000006],[-83.72887100000001,32.8102396],[-83.7289099,32.8101676],[-83.72888180000001,32.8100921],[-83.72882030000001,32.810046],[-83.7287324,32.810041600000005],[-83.7286698,32.8100739]]},"id":"8944c0b08cbffff-17be9d5f9ad71037"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b08ca1683-17d7fe2cde501440","8f44c0b08ca1b9d-13de3d6d6b9f7f26"]},"geometry":{"type":"LineString","coordinates":[[-83.7286698,32.8100739],[-83.7283635,32.810243]]},"id":"8b44c0b08ca1fff-179f1dcd28686d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e21e731-13f6b19981095a30","8f44c0b0e21e448-13f7b1ab96af9f32"]},"geometry":{"type":"LineString","coordinates":[[-83.72040720000001,32.809892000000005],[-83.72037830000001,32.8098875]]},"id":"8c44c0b0e21e7ff-13f731a29b65c01e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0e21e448-13f7b1ab96af9f32","8f44c0b0e28546c-13de36073faf1588"]},"geometry":{"type":"LineString","coordinates":[[-83.72037830000001,32.8098875],[-83.71859330000001,32.809846400000005]]},"id":"8844c0b0e3fffff-13d6f3d9694463a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a98e494-1797714e9a6f97bb","8f44c0b0a99d531-1797e2391c670eb4"]},"geometry":{"type":"LineString","coordinates":[[-83.7135983,32.8144766],[-83.71394400000001,32.814450400000005],[-83.71397350000001,32.814450300000004]]},"id":"8b44c0b0a99dfff-179f51c3d42c519a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a98e494-1797714e9a6f97bb","8f44c0b0a98caeb-1796fef5ca02c82b"]},"geometry":{"type":"LineString","coordinates":[[-83.71397350000001,32.814450300000004],[-83.71493480000001,32.8144462]]},"id":"8a44c0b0a98ffff-17967022201a414d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a9832b6-179ee17e60add58f","8f44c0b0a98caeb-1796fef5ca02c82b"]},"geometry":{"type":"LineString","coordinates":[[-83.71493480000001,32.8144462],[-83.7150677,32.814452],[-83.71512630000001,32.8144232],[-83.715185,32.814370600000004],[-83.71521,32.814313500000004],[-83.715199,32.8142281],[-83.7151529,32.814174300000005],[-83.7151212,32.8141532],[-83.7150503,32.8141234],[-83.7149921,32.814121],[-83.7141481,32.8141252],[-83.714037,32.8141563],[-83.713897,32.8142766]]},"id":"8944c0b0a9bffff-17feff9642c54b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a9832b6-179ee17e60add58f","8f44c0b0a99d531-1797e2391c670eb4"]},"geometry":{"type":"LineString","coordinates":[[-83.713897,32.8142766],[-83.7135983,32.8144766]]},"id":"8944c0b0a9bffff-17df61dbcfe83631"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71376380000001,32.813422200000005]},"id":"8f44c0b0a986a98-1796e1d1a6adddd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a986a98-1796e1d1a6adddd2","8f44c0b0a982a29-1796c1d591b1a3d0"]},"geometry":{"type":"LineString","coordinates":[[-83.71376380000001,32.813422200000005],[-83.7137581,32.8136985],[-83.7137575,32.8138316]]},"id":"8a44c0b0a987fff-1796d1d41d7ab34d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a982a29-1796c1d591b1a3d0","8f44c0b0a9846ad-1796613de5804a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.7137575,32.8138316],[-83.71376000000001,32.813873900000004],[-83.713778,32.8139508],[-83.71383130000001,32.8139988],[-83.7139147,32.8140124],[-83.71404390000001,32.8140106],[-83.71411110000001,32.8139966],[-83.7141579,32.813954100000004],[-83.7141813,32.8139112],[-83.7141828,32.8134949],[-83.7141483,32.8134485],[-83.71409680000001,32.8134249],[-83.7140002,32.8134214]]},"id":"8a44c0b0a987fff-17fed11d8988cc41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a986a98-1796e1d1a6adddd2","8f44c0b0a9846ad-1796613de5804a3e"]},"geometry":{"type":"LineString","coordinates":[[-83.7140002,32.8134214],[-83.71376380000001,32.813422200000005]]},"id":"8a44c0b0a987fff-1796e187cd5e2767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a9b38a3-13d6e2d4055da762","8f44c0b0a9b1763-139fc1d35ccbfe6c"]},"geometry":{"type":"LineString","coordinates":[[-83.71335040000001,32.8129134],[-83.71352420000001,32.8129086],[-83.71361830000001,32.8129183],[-83.7136777,32.812953],[-83.7137419,32.8130114],[-83.7137611,32.813052400000004]]},"id":"8a44c0b0a9b7fff-13d772471844cdfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b0a986a98-1796e1d1a6adddd2","8f44c0b0a9b1763-139fc1d35ccbfe6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7137611,32.813052400000004],[-83.7137689,32.813069],[-83.71376910000001,32.813165600000005],[-83.71376380000001,32.813422200000005]]},"id":"8944c0b0a9bffff-1396d1cfa35fedd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141739,32.8131888]},"id":"8f44c0b0a984120-13f740d15083cdb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a9a26e9-139ff0d16001ee00","8f44c0b0a984120-13f740d15083cdb6"]},"geometry":{"type":"LineString","coordinates":[[-83.7141739,32.8131888],[-83.71417380000001,32.813049500000005]]},"id":"8b44c0b0a984fff-13d7c0d15af5fcce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71417360000001,32.8129003]},"id":"8f44c0b0a9a2731-13bef0d18da4614c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a9a26e9-139ff0d16001ee00","8f44c0b0a9a2731-13bef0d18da4614c"]},"geometry":{"type":"LineString","coordinates":[[-83.71417380000001,32.813049500000005],[-83.71417360000001,32.8129003]]},"id":"8c44c0b0a9a27ff-13ff50d171b1131c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a322649-17ff7a9b1a032b83","8f44c0b0a322370-17b73a2f04892238"]},"geometry":{"type":"LineString","coordinates":[[-83.7168912,32.826606600000005],[-83.71671830000001,32.826699600000005]]},"id":"8b44c0b0a322fff-17d63a651ddf9d43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0a322649-17ff7a9b1a032b83","8f44c0b0a3048d2-17debab844c75892"]},"geometry":{"type":"LineString","coordinates":[[-83.71671830000001,32.826699600000005],[-83.71667160000001,32.8268427]]},"id":"8c44c0b0a3049ff-179e3aa9bd6bfd56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bd8c025-13d7faf7030b7667","8f44c0b0bd8c95a-1397aaaddff5f648"]},"geometry":{"type":"LineString","coordinates":[[-83.7232419,32.829417],[-83.72312480000001,32.8295229]]},"id":"8b44c0b0bd8cfff-13b6ead27c2bd9f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72294330000001,32.8296967]},"id":"8f44c0b0bd8c6ae-13d67b6874a6ff14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bd8c025-13d7faf7030b7667","8f44c0b0bd8c6ae-13d67b6874a6ff14"]},"geometry":{"type":"LineString","coordinates":[[-83.72312480000001,32.8295229],[-83.72300840000001,32.829635200000006],[-83.722953,32.829687],[-83.72294330000001,32.8296967]]},"id":"8b44c0b0bd8cfff-139e6b2fac9c3738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0bd8a969-17defc00a69ef13c","8f44c0b0bd8c6ae-13d67b6874a6ff14"]},"geometry":{"type":"LineString","coordinates":[[-83.72294330000001,32.8296967],[-83.7226998,32.8299407]]},"id":"8a44c0b0bd8ffff-179ebbb485952e84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7319695,32.8021545]},"id":"8f44c0b0c79a699-1396955f166c01ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73229930000001,32.802162200000005]},"id":"8f44c0b0c79a260-13977490f55e137f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c79a699-1396955f166c01ee","8f44c0b0c79a260-13977490f55e137f"]},"geometry":{"type":"LineString","coordinates":[[-83.7319695,32.8021545],[-83.7320026,32.799648000000005],[-83.7320313,32.7995565],[-83.73211,32.7994567],[-83.7322223,32.7994156],[-83.7323775,32.7994022],[-83.73247090000001,32.7994094],[-83.73257740000001,32.799438800000004],[-83.7326462,32.799491],[-83.7326998,32.7995579],[-83.732737,32.799667],[-83.732709,32.8018015],[-83.7326381,32.8019748],[-83.732489,32.8021016],[-83.73229930000001,32.802162200000005]]},"id":"8744c0b0cffffff-1797f46f9ae95745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0c79a699-1396955f166c01ee","8f44c0b0c79a260-13977490f55e137f"]},"geometry":{"type":"LineString","coordinates":[[-83.73229930000001,32.802162200000005],[-83.7319695,32.8021545]]},"id":"8b44c0b0c79afff-139714f80014e308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0eb6bb01-13ffd6be86a82ab3","8f44c0b0c79a699-1396955f166c01ee"]},"geometry":{"type":"LineString","coordinates":[[-83.7319695,32.8021545],[-83.7317379,32.8021602],[-83.7314072,32.8021501]]},"id":"8844c0b0c7fffff-1397960edbd7b874"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69535210000001,32.820911100000004]},"id":"8f44c0b1995e981-17df7ec4f361b9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6955995,32.821007300000005]},"id":"8f44c0b1995c4e5-179ffe2a56d7624a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995e981-17df7ec4f361b9b7","8f44c0b1995c4e5-179ffe2a56d7624a"]},"geometry":{"type":"LineString","coordinates":[[-83.69535210000001,32.820911100000004],[-83.6955995,32.821007300000005]]},"id":"8a44c0b1995ffff-17ffee77a0a083f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995c72c-17b6eddedd32dd37","8f44c0b1995c4e5-179ffe2a56d7624a"]},"geometry":{"type":"LineString","coordinates":[[-83.6955995,32.821007300000005],[-83.6957203,32.8210542]]},"id":"8b44c0b1995cfff-179e6e0498fb8949"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995db1b-17be7c6613808e01","8f44c0b199480b0-17dfeb03c498c126"]},"geometry":{"type":"LineString","coordinates":[[-83.6963231,32.8212929],[-83.69689000000001,32.821523]]},"id":"8944c0b1997ffff-17966bb4ebbc495b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19948046-17ffeab5232e5133","8f44c0b199480b0-17dfeb03c498c126"]},"geometry":{"type":"LineString","coordinates":[[-83.69689000000001,32.821523],[-83.6970158,32.821571]]},"id":"8c44c0b199481ff-17deeadc77c86bd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6883976,32.7857779]},"id":"8f44c0b034a878a-13977fbf8b51e8da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b034ab181-13b6ffc57b18b600","8f44c0b034a878a-13977fbf8b51e8da"]},"geometry":{"type":"LineString","coordinates":[[-83.68838810000001,32.7860585],[-83.6883976,32.7857779]]},"id":"8a44c0b034affff-13deffc275d6a5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b034a8c81-17ffffba4dab3b74","8f44c0b034a878a-13977fbf8b51e8da"]},"geometry":{"type":"LineString","coordinates":[[-83.6883976,32.7857779],[-83.688406,32.785532]]},"id":"8b44c0b034a8fff-13be7fbce65a9b44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db6a335-17bf514b9d861ccd","8f44c0b1db6a8ea-17d7f14b30473125"]},"geometry":{"type":"LineString","coordinates":[[-83.7074247,32.807138],[-83.70742530000001,32.8069982]]},"id":"8b44c0b1db6afff-1797d14b6ec2cd20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db6e030-13fed14a2a4fa2dc","8f44c0b1db6a8ea-17d7f14b30473125"]},"geometry":{"type":"LineString","coordinates":[[-83.70742530000001,32.8069982],[-83.70742700000001,32.8066188]]},"id":"8a44c0b1db6ffff-13df514abd383562"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db6e030-13fed14a2a4fa2dc","8f44c0b1db6155e-13dff14d4111baf1"]},"geometry":{"type":"LineString","coordinates":[[-83.70742700000001,32.8066188],[-83.70742200000001,32.8061887]]},"id":"8944c0b1db7ffff-13f6714bba9bdcf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2658b6f2-17f6ab20488b39f6","8f44c0a264a075e-139ebc613a21e14b"]},"geometry":{"type":"LineString","coordinates":[[-83.67063,32.847776],[-83.6702221,32.8481827],[-83.6701165,32.8482761]]},"id":"8a44c0a264a7fff-1397fbbf4744f193"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6699603,32.8484564]},"id":"8f44c0a264a3ce0-139fecc2d27bb453"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a264a3ce0-139fecc2d27bb453","8f44c0a264a075e-139ebc613a21e14b"]},"geometry":{"type":"LineString","coordinates":[[-83.6701165,32.8482761],[-83.6699603,32.8484564]]},"id":"8a44c0a264a7fff-13d6fc920931cd3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66987900000001,32.8485375]},"id":"8f44c0a264a3421-13bffcf5ada8133e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a264a3ce0-139fecc2d27bb453","8f44c0a264a3421-13bffcf5ada8133e"]},"geometry":{"type":"LineString","coordinates":[[-83.6699603,32.8484564],[-83.66987900000001,32.8485375]]},"id":"8b44c0a264a3fff-13b6acdc45bb389d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a264a3ce0-139fecc2d27bb453","8f44c0a264aea9c-13bfab65a07da747"]},"geometry":{"type":"LineString","coordinates":[[-83.6699603,32.8484564],[-83.67004,32.848529],[-83.670519,32.84894]]},"id":"8944c0a264bffff-13b7ac14dfcd6b71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a264aead0-13dfab510c9cd565","8f44c0a264aea9c-13bfab65a07da747"]},"geometry":{"type":"LineString","coordinates":[[-83.670519,32.84894],[-83.670552,32.848968]]},"id":"8c44c0a264aebff-13d6eb5b5d021c39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a264a9c43-13feba00d089d983","8f44c0a264aead0-13dfab510c9cd565"]},"geometry":{"type":"LineString","coordinates":[[-83.670552,32.848968],[-83.6710899,32.8494467]]},"id":"8a44c0a264affff-13f6aaa8ebd44de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a264a9c43-13feba00d089d983","8f44c0a264e2c63-17d6b756267c3d58"]},"geometry":{"type":"LineString","coordinates":[[-83.6710899,32.8494467],[-83.67218220000001,32.8504099]]},"id":"8844c0a265fffff-17b7b8ab80a3b815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35b582a1-13defb9a8fd829b8","8f44c0a35b5b84a-13deab9f203ecc95"]},"geometry":{"type":"LineString","coordinates":[[-83.6704344,32.855543700000005],[-83.670427,32.855748000000006]]},"id":"8a44c0a35b5ffff-139ebb9cd4492ebc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a35b5b84a-13deab9f203ecc95","8f44c0a35a4081b-17b6abd080a97ad5"]},"geometry":{"type":"LineString","coordinates":[[-83.670427,32.855748000000006],[-83.67036900000001,32.856623],[-83.670353,32.856949],[-83.670348,32.857329]]},"id":"8844c0a35bfffff-17defbbd20924452"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69461700000001,32.8706873]},"id":"8f44c0a2063584e-17d7f09065d07807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2063392c-13dff21080620081","8f44c0a2063584e-17d7f09065d07807"]},"geometry":{"type":"LineString","coordinates":[[-83.69461700000001,32.8706873],[-83.69469840000001,32.8708832],[-83.6940024,32.8710879]]},"id":"8944c0a2063ffff-13f7f10b9c8d3fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2063392c-13dff21080620081","8f44c0a20616c4a-13b674da75abdc60"]},"geometry":{"type":"LineString","coordinates":[[-83.6940024,32.8710879],[-83.6928601,32.871424000000005]]},"id":"8944c0a2063ffff-13b7737586d27663"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2063584e-17d7f09065d07807","8f44c0a2063008c-13d7f2441c8b1532"]},"geometry":{"type":"LineString","coordinates":[[-83.69461700000001,32.8706873],[-83.69391990000001,32.8708924]]},"id":"8a44c0a20637fff-1397f16a38c441ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2063008c-13d7f2441c8b1532","8f44c0a2078ba62-13b7f50eabc1f0f1"]},"geometry":{"type":"LineString","coordinates":[[-83.69391990000001,32.8708924],[-83.6927766,32.8712287]]},"id":"8844c0a207fffff-13bef3a9539691cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b85335b62-13b7f0e1d64ee06d","8f44c0b85326641-13f7f0725a6b6fc8"]},"geometry":{"type":"LineString","coordinates":[[-83.5699683,32.798926300000005],[-83.57014670000001,32.799030300000005]]},"id":"8b44c0b85326fff-13d7f0aa17c7dbf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5727023,32.803693700000004]},"id":"8f44c0b8534aa49-17d79a351b04a282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8534aa49-17d79a351b04a282","8f44c0b85326641-13f7f0725a6b6fc8"]},"geometry":{"type":"LineString","coordinates":[[-83.57014670000001,32.799030300000005],[-83.5702368,32.7990858],[-83.570541,32.799328],[-83.570659,32.799433],[-83.570897,32.799646],[-83.57109000000001,32.799866],[-83.57123100000001,32.800057],[-83.571419,32.800382],[-83.57160300000001,32.800856],[-83.57163200000001,32.800964],[-83.571841,32.802041],[-83.571916,32.802334],[-83.572033,32.802633],[-83.57214300000001,32.802858],[-83.57259400000001,32.803537],[-83.5727023,32.803693700000004]]},"id":"8844c0b853fffff-17dfbcf900f106b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5730595,32.8042102]},"id":"8f44c0baac96560-1797f955d9214b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baac96560-1797f955d9214b93","8f44c0b8534aa49-17d79a351b04a282"]},"geometry":{"type":"LineString","coordinates":[[-83.5727023,32.803693700000004],[-83.5730595,32.8042102]]},"id":"8844c0b853fffff-17f799c57d0531b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0baac96560-1797f955d9214b93","8f44c0baac9ea81-13f7f7528998d956"]},"geometry":{"type":"LineString","coordinates":[[-83.5730595,32.8042102],[-83.57325300000001,32.80449],[-83.573884,32.805383]]},"id":"8944c0baacbffff-17f7f854df9e8b2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b4b6c-17b7ffb76cc3b9af","8f44c0baa5b6603-17d7a1d713e0abdd"]},"geometry":{"type":"LineString","coordinates":[[-83.5704458,32.8069422],[-83.5695579,32.8069989],[-83.5695759,32.807197800000004]]},"id":"8a44c0baa5b7fff-17d7e0feb320835f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b2883-17bfe1cd75195b98","8f44c0baa5b6603-17d7a1d713e0abdd"]},"geometry":{"type":"LineString","coordinates":[[-83.5695759,32.807197800000004],[-83.5695913,32.807368600000004]]},"id":"8a44c0baa5b7fff-179fa1d242c94e57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b205d-17bfa1c3445578ec","8f44c0baa5b2883-17bfe1cd75195b98"]},"geometry":{"type":"LineString","coordinates":[[-83.5695913,32.807368600000004],[-83.56960760000001,32.8075482]]},"id":"8b44c0baa5b2fff-17f7a1c8664904f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b205d-17bfa1c3445578ec","8f44c0baa5b22ca-179ff1b96f510ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.56960760000001,32.8075482],[-83.56962340000001,32.8077239]]},"id":"8b44c0baa5b2fff-17f7a1be5872c713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa594b19-179fe1af763e5de7","8f44c0baa5b22ca-179ff1b96f510ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.56962340000001,32.8077239],[-83.5696393,32.807899]]},"id":"8944c0baa5bffff-17d7b1b466e265d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa595ca3-17ffa1a4c254afd9","8f44c0baa594b19-179fe1af763e5de7"]},"geometry":{"type":"LineString","coordinates":[[-83.5696393,32.807899],[-83.5696564,32.8080882]]},"id":"8a44c0baa597fff-17d7a1aa2021f537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa586a4c-17dfbf84c819b514","8f44c0baa595ca3-17ffa1a4c254afd9"]},"geometry":{"type":"LineString","coordinates":[[-83.5696564,32.8080882],[-83.569669,32.8082283],[-83.569697,32.8082585],[-83.57052680000001,32.808209000000005]]},"id":"8944c0baa5bffff-17d7f0b9f7320b45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d899e-17b6db27ad8d606f","8f44c0b0a0dd12c-17be59f08b6eda56"]},"geometry":{"type":"LineString","coordinates":[[-83.7104376,32.8266117],[-83.7099398,32.8266061]]},"id":"8a44c0b0a0dffff-17b6da8c19d0aefe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32022d0e-17b77b02f0114643","8f44c0a3202292c-179f7a7c804e7dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6119096,32.8636374],[-83.6116945,32.8636454]]},"id":"8a44c0a32027fff-179ffabfcdc93c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32035225-17b7fb79bf198c17","8f44c0a32022d0e-17b77b02f0114643"]},"geometry":{"type":"LineString","coordinates":[[-83.6116945,32.8636454],[-83.61150450000001,32.8636525]]},"id":"8944c0a3203ffff-17b7bb3e5c54d28e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3203562a-17bf7bf19e5b83d7","8f44c0a32035225-17b7fb79bf198c17"]},"geometry":{"type":"LineString","coordinates":[[-83.61150450000001,32.8636525],[-83.6113127,32.8636597]]},"id":"8b44c0a32035fff-17bf3bb5a6f9df4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32030a72-17bf7c5eaacb2ed7","8f44c0a3203562a-17bf7bf19e5b83d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6113127,32.8636597],[-83.6111382,32.863666200000004]]},"id":"8a44c0a32037fff-17bf7c2818fc144a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32030a72-17bf7c5eaacb2ed7","8f44c0a32030051-17b7fcd39533d1fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6111382,32.863666200000004],[-83.61095110000001,32.8636732]]},"id":"8b44c0a32030fff-17b7bc9922eb861c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32030051-17b7fcd39533d1fa","8f44c0a32030458-17b7fd43bd639b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.61095110000001,32.8636732],[-83.6107717,32.8636799]]},"id":"8b44c0a32030fff-17b7fd0ba07d572f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32032ba0-17bf3db302d31c34","8f44c0a32030458-17b7fd43bd639b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.6107717,32.8636799],[-83.6105936,32.8636866]]},"id":"8a44c0a32037fff-17bf3d7b66114b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a32032ba0-17bf3db302d31c34","8f44c0a320321aa-17d7be2a9e0603f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6105936,32.8636866],[-83.6104023,32.8636937]]},"id":"8b44c0a32032fff-17bf7deedb8bd523"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a320321aa-17d7be2a9e0603f0","8f44c0a320324a4-17d77eaaaaa011fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6104023,32.8636937],[-83.6101974,32.863701400000004]]},"id":"8b44c0a32032fff-17d7fe6aac8f3188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a320324a4-17d77eaaaaa011fe","8f44c0a321898ae-17dfbf1a9cc23808"]},"geometry":{"type":"LineString","coordinates":[[-83.6101974,32.863701400000004],[-83.61001830000001,32.863708100000004]]},"id":"8a44c0a3218ffff-17d7bee2a9dba03b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.721821,32.8921091]},"id":"8f44c0a212eb9a0-17b63e25edaf42b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212eb9a0-17b63e25edaf42b8","8f44c0a212e8249-17b63d9d9f41604d"]},"geometry":{"type":"LineString","coordinates":[[-83.721821,32.8921091],[-83.7220391,32.8921121]]},"id":"8a44c0a212effff-17b72de1c31241e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212ec071-1396bd9a7f127715","8f44c0a212e8249-17b63d9d9f41604d"]},"geometry":{"type":"LineString","coordinates":[[-83.7220391,32.8921121],[-83.7221791,32.892113900000005],[-83.72219840000001,32.892105900000004],[-83.7222311,32.8920784],[-83.7222485,32.892038],[-83.7222581,32.891478500000005],[-83.7220441,32.8914795]]},"id":"8a44c0a212effff-13d63d33ae4cdc4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212eb9a0-17b63e25edaf42b8","8f44c0a212ec071-1396bd9a7f127715"]},"geometry":{"type":"LineString","coordinates":[[-83.7220441,32.8914795],[-83.7219307,32.8914801],[-83.72189420000001,32.8914866],[-83.72185370000001,32.891507600000004],[-83.7218287,32.8915577],[-83.721821,32.8921091]]},"id":"8a44c0a212effff-13b7be102a069e42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206867,32.8920957]},"id":"8f44c0a212c14a8-1797f0eadcdb8f94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212eb9a0-17b63e25edaf42b8","8f44c0a212c14a8-1797f0eadcdb8f94"]},"geometry":{"type":"LineString","coordinates":[[-83.721821,32.8921091],[-83.7206867,32.8920957]]},"id":"8944c0a212fffff-179e2f88548fad59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c389d-17963172a71a70e8","8f44c0a212c14a8-1797f0eadcdb8f94"]},"geometry":{"type":"LineString","coordinates":[[-83.7206867,32.8920957],[-83.7204694,32.892093100000004]]},"id":"8a44c0a212c7fff-1797312ec15896b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c3c9b-1796b1f265ff2e20","8f44c0a212c389d-17963172a71a70e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7204694,32.892093100000004],[-83.72026500000001,32.892090700000004]]},"id":"8b44c0a212c3fff-179771b282959335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71995410000001,32.8916282]},"id":"8f44c0a212d5a5d-13f7b2b4b56b28ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212d5a5d-13f7b2b4b56b28ba","8f44c0a212c3c9b-1796b1f265ff2e20"]},"geometry":{"type":"LineString","coordinates":[[-83.72026500000001,32.892090700000004],[-83.72004170000001,32.8920881],[-83.7200397,32.8917323],[-83.71995410000001,32.8916282]]},"id":"8a44c0a212c7fff-13bff26db0e95114"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c60b4-13f6b24cff545031","8f44c0a212d5a5d-13f7b2b4b56b28ba"]},"geometry":{"type":"LineString","coordinates":[[-83.71995410000001,32.8916282],[-83.7201201,32.891424900000004]]},"id":"8a44c0a212c7fff-13b63280d14ee50a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c60b4-13f6b24cff545031","8f44c0a212c68f2-13d771f0dc279581"]},"geometry":{"type":"LineString","coordinates":[[-83.7201201,32.891424900000004],[-83.7202575,32.8913503],[-83.7202675,32.891346]]},"id":"8b44c0a212c6fff-13dfb21f0553a82c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c4433-13bef16cc2f50c0f","8f44c0a212c68f2-13d771f0dc279581"]},"geometry":{"type":"LineString","coordinates":[[-83.7202675,32.891346],[-83.72034640000001,32.8913123],[-83.72047880000001,32.8913038]]},"id":"8a44c0a212c7fff-13b6b1b016b04ec2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72068750000001,32.8912659]},"id":"8f44c0a212c4106-139730ea51c75e97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c4106-139730ea51c75e97","8f44c0a212c4433-13bef16cc2f50c0f"]},"geometry":{"type":"LineString","coordinates":[[-83.72047880000001,32.8913038],[-83.720595,32.891290000000005],[-83.72068750000001,32.8912659]]},"id":"8b44c0a212c4fff-139f712b2996e2d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b482325-1797f9c557da01c3","8f44c0b1b48218e-17d6da32e4d1d1b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6515243,32.833288200000005],[-83.65134900000001,32.833185300000004]]},"id":"8b44c0b1b482fff-17f7d9fc192f6579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b491029-17b7fb2b2cd6304f","8f44c0b1b48218e-17d6da32e4d1d1b0"]},"geometry":{"type":"LineString","coordinates":[[-83.65134900000001,32.833185300000004],[-83.65125900000001,32.8331376],[-83.651201,32.8331208],[-83.6511612,32.8331284],[-83.651115,32.833145200000004],[-83.6509518,32.8333371]]},"id":"8944c0b1b4bffff-17dfdab96765cfc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b0d0b55-13d6bee3a656c5bd","8f44c0b1b7204ca-13bee3304e64cdba"]},"geometry":{"type":"LineString","coordinates":[[-83.662535,32.836081],[-83.660774,32.836039]]},"id":"8744c0b1bffffff-13dfc109fc8cc7a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b732a9e-13bee6da690af449","8f44c0b1b7204ca-13bee3304e64cdba"]},"geometry":{"type":"LineString","coordinates":[[-83.660774,32.836039],[-83.659273,32.836011]]},"id":"8944c0b1b73ffff-13b7e50555af1066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b732a9e-13bee6da690af449","8f44c0b1b44a623-1397ea8982149e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.659273,32.836011],[-83.657764,32.835977]]},"id":"8744c0b1bffffff-13b6c8b1fc79469a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b7b4d84-1396ce25effc3de9","8f44c0b1b44a623-1397ea8982149e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.657764,32.835977],[-83.65628500000001,32.835952]]},"id":"8844c0b1b5fffff-139fdc57bb7b2413"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4cc80e-13f7d0c8e65d8257","8f44c0b1b7b4d84-1396ce25effc3de9"]},"geometry":{"type":"LineString","coordinates":[[-83.65628500000001,32.835952],[-83.6562083,32.8359502],[-83.65520500000001,32.835926]]},"id":"8944c0b1b4fffff-13ffef7760f452ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4cc80e-13f7d0c8e65d8257","8f44c0b1b4dcb0e-13ffd3baa469c84f"]},"geometry":{"type":"LineString","coordinates":[[-83.65520500000001,32.835926],[-83.653999,32.835906]]},"id":"8944c0b1b4fffff-13ffd241ca70d6fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4dcb0e-13ffd3baa469c84f","8f44c0b1b4de94c-13f6f4f78644bd58"]},"geometry":{"type":"LineString","coordinates":[[-83.653999,32.835906],[-83.653492,32.835901]]},"id":"8a44c0b1b4dffff-13f7f459105f5e54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2683016a-1397e432b902c28d","8f44c0a26914045-139783a7e71f6c88"]},"geometry":{"type":"LineString","coordinates":[[-83.68657490000001,32.841275800000005],[-83.6866188,32.8411379],[-83.686615,32.839312],[-83.68665,32.839148],[-83.68674700000001,32.838915],[-83.686797,32.838844]]},"id":"8844c0a269fffff-1796e40ffe7a9448"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b19292198-13d78359c5f86ec3","8f44c0a26914045-139783a7e71f6c88"]},"geometry":{"type":"LineString","coordinates":[[-83.686797,32.838844],[-83.68687800000001,32.838628],[-83.68689900000001,32.838462],[-83.686898,32.837954],[-83.686912,32.837381],[-83.68692200000001,32.836284]]},"id":"8744c0b19ffffff-17fe8366742cf54f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b19292198-13d78359c5f86ec3","8f44c0b1974c742-13bee34acb863b39"]},"geometry":{"type":"LineString","coordinates":[[-83.68692200000001,32.836284],[-83.686946,32.834811]]},"id":"8844c0b197fffff-139fb3524864bfc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1976acb1-17fea34483c47557","8f44c0b1974c742-13bee34acb863b39"]},"geometry":{"type":"LineString","coordinates":[[-83.686946,32.834811],[-83.68695600000001,32.834097]]},"id":"8944c0b1977ffff-17dfc347a8e7fda9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1976acb1-17fea34483c47557","8f44c0b197638e2-17dfa340c130241f"]},"geometry":{"type":"LineString","coordinates":[[-83.68695600000001,32.834097],[-83.68696200000001,32.833401]]},"id":"8944c0b1977ffff-17b7a342adc22627"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26804ce4-13d7c2d866f6518a","8f44c0a26831aa4-13dfa32c77fc71de"]},"geometry":{"type":"LineString","coordinates":[[-83.687129,32.841814],[-83.68699450000001,32.8416178]]},"id":"8944c0a2683ffff-139ef302727e8043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2683016a-1397e432b902c28d","8f44c0a26831aa4-13dfa32c77fc71de"]},"geometry":{"type":"LineString","coordinates":[[-83.68699450000001,32.8416178],[-83.68695600000001,32.841572],[-83.686835,32.841461],[-83.68657490000001,32.841275800000005]]},"id":"8a44c0a26837fff-13fed3aade843fd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c904c0-13fefa7301d96254","8f44c0a26265cb3-13f77c68e529b1ad"]},"geometry":{"type":"LineString","coordinates":[[-83.690568,32.858235],[-83.690122,32.857993],[-83.68976500000001,32.857816]]},"id":"8844c0a263fffff-13f7fb6cc72743fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891449,32.857496600000005]},"id":"8f44c0a26359655-179f7dec72e47128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26265cb3-13f77c68e529b1ad","8f44c0a26359655-179f7dec72e47128"]},"geometry":{"type":"LineString","coordinates":[[-83.68976500000001,32.857816],[-83.6891449,32.857496600000005]]},"id":"8844c0a263fffff-13977d2ab3fcb232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26359655-179f7dec72e47128","8f44c0a263596b4-17ff7e32ffcbedfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6891449,32.857496600000005],[-83.6890321,32.8574385]]},"id":"8c44c0a263597ff-179f7e0fb5311cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2635bd84-17fe7f43e6a70a56","8f44c0a263596b4-17ff7e32ffcbedfc"]},"geometry":{"type":"LineString","coordinates":[[-83.6890321,32.8574385],[-83.68859540000001,32.8572135]]},"id":"8a44c0a2635ffff-17b6febb6a0d81a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878319,32.8575698]},"id":"8f44c0a262768de-17dfa121146e90a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262768de-17dfa121146e90a6","8f44c0a26229551-17d6e150657a25b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6878319,32.8575698],[-83.68777510000001,32.857535500000004],[-83.68775310000001,32.8574713],[-83.68775620000001,32.857175000000005]]},"id":"8944c0a2623ffff-17ded14bbe924b0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2622d4d8-1796813c0d4bc65e","8f44c0a26229551-17d6e150657a25b8"]},"geometry":{"type":"LineString","coordinates":[[-83.68775620000001,32.857175000000005],[-83.687759,32.8569095],[-83.6877888,32.856836]]},"id":"8a44c0a2622ffff-17ff914d3ba789dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b9b003-139ff0f0d23d2fa7","8f44c0a26b98cdd-13dfc0e281cb7706"]},"geometry":{"type":"LineString","coordinates":[[-83.6879091,32.8490911],[-83.68791200000001,32.848829],[-83.687932,32.848578]]},"id":"8a44c0a26b9ffff-13ff80ec6e2a8938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b98cdd-13dfc0e281cb7706","8f44c0a26bb3074-179fe0838099f59e"]},"geometry":{"type":"LineString","coordinates":[[-83.687932,32.848578],[-83.688084,32.847043]]},"id":"8944c0a26bbffff-17ff90b30d7c9928"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72122990000001,32.8911752]},"id":"8f44c0a212e38d8-13deaf9754010987"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c4106-139730ea51c75e97","8f44c0a212e38d8-13deaf9754010987"]},"geometry":{"type":"LineString","coordinates":[[-83.72122990000001,32.8911752],[-83.7208284,32.8911591],[-83.72068750000001,32.8912659]]},"id":"8944c0a212fffff-13de304898f46d44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a212c4106-139730ea51c75e97","8f44c0a212c14a8-1797f0eadcdb8f94"]},"geometry":{"type":"LineString","coordinates":[[-83.72068750000001,32.8912659],[-83.7206867,32.8920957]]},"id":"8a44c0a212c7fff-1396b0ea993a829b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73663,32.8170474]},"id":"8f44c0b081522c0-17dea9fe43cddd80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0802ed81-17be3bf53d96a386","8f44c0b081522c0-17dea9fe43cddd80"]},"geometry":{"type":"LineString","coordinates":[[-83.7358253,32.8171683],[-83.7360515,32.817080600000004],[-83.73612940000001,32.8170572],[-83.73620170000001,32.817046600000005],[-83.73663,32.8170474]]},"id":"8844c0b081fffff-17fe4afdb26b94e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368395,32.8170477]},"id":"8f44c0b08153ce1-17ded97b52465d8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b081522c0-17dea9fe43cddd80","8f44c0b08153ce1-17ded97b52465d8e"]},"geometry":{"type":"LineString","coordinates":[[-83.73663,32.8170474],[-83.73671590000001,32.8170475],[-83.7368395,32.8170477]]},"id":"8a44c0b08157fff-17deb9bccec42aed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73704740000001,32.817048]},"id":"8f44c0b08153854-17df08f96ea4b10f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08153854-17df08f96ea4b10f","8f44c0b08153ce1-17ded97b52465d8e"]},"geometry":{"type":"LineString","coordinates":[[-83.7368395,32.8170477],[-83.73704740000001,32.817048]]},"id":"8b44c0b08153fff-17def93a5976db94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372519,32.8170461]},"id":"8f44c0b08151474-17dfd87996b93bb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08151474-17dfd87996b93bb6","8f44c0b08153854-17df08f96ea4b10f"]},"geometry":{"type":"LineString","coordinates":[[-83.73704740000001,32.817048],[-83.7371722,32.8170483],[-83.73720970000001,32.8170474],[-83.7372519,32.8170461]]},"id":"8a44c0b08157fff-17dee8b97e80aca3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73745720000001,32.8178347]},"id":"8f44c0b08158452-17deb7f94fc46418"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08158452-17deb7f94fc46418","8f44c0b08151474-17dfd87996b93bb6"]},"geometry":{"type":"LineString","coordinates":[[-83.7372519,32.8170461],[-83.73729920000001,32.817044700000004],[-83.7373561,32.8170512],[-83.73740090000001,32.8170726],[-83.737432,32.8170996],[-83.73745140000001,32.817124400000004],[-83.7374613,32.817158400000004],[-83.7374638,32.817184600000004],[-83.7374623,32.817223000000006],[-83.7374601,32.817295],[-83.73745720000001,32.8178347]]},"id":"8944c0b0817ffff-17bff8070ce2e04d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372455,32.8185847]},"id":"8f44c0b08075521-139f787d916d6875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08158452-17deb7f94fc46418","8f44c0b08075521-139f787d916d6875"]},"geometry":{"type":"LineString","coordinates":[[-83.73745720000001,32.8178347],[-83.7374535,32.8185177],[-83.737447,32.818538100000005],[-83.73743560000001,32.8185577],[-83.7374214,32.8185676],[-83.737398,32.818573300000004],[-83.7372455,32.8185847]]},"id":"8844c0b081fffff-17dfb809aa12122a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7370369,32.8186003]},"id":"8f44c0b0807090a-13bf38fff918271c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0807090a-13bf38fff918271c","8f44c0b08075521-139f787d916d6875"]},"geometry":{"type":"LineString","coordinates":[[-83.7372455,32.8185847],[-83.7370369,32.8186003]]},"id":"8a44c0b08077fff-13b658beca0161ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73682930000001,32.8186158]},"id":"8f44c0b08070c04-13b6e981bff61716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0807090a-13bf38fff918271c","8f44c0b08070c04-13b6e981bff61716"]},"geometry":{"type":"LineString","coordinates":[[-83.7370369,32.8186003],[-83.73682930000001,32.8186158]]},"id":"8b44c0b08070fff-13be1940dd4311f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7366183,32.8186315]},"id":"8f44c0b0807621a-13beba05918fcced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0807621a-13beba05918fcced","8f44c0b08070c04-13b6e981bff61716"]},"geometry":{"type":"LineString","coordinates":[[-83.73682930000001,32.8186158],[-83.7366183,32.8186315]]},"id":"8a44c0b08077fff-13b7d9c3a9fbffe0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0807621a-13beba05918fcced","8f44c0b0800991a-13bf2b6a6631ae88"]},"geometry":{"type":"LineString","coordinates":[[-83.7366183,32.8186315],[-83.7365381,32.818637700000004],[-83.7364637,32.818643800000004],[-83.7364146,32.818652400000005],[-83.7360474,32.8188082]]},"id":"8844c0b081fffff-13f75abb2dc2335a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73662420000001,32.817833300000004]},"id":"8f44c0b08029d09-17dfda01edc888db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08029d09-17dfda01edc888db","8f44c0b0807621a-13beba05918fcced"]},"geometry":{"type":"LineString","coordinates":[[-83.7366183,32.8186315],[-83.73662420000001,32.817833300000004]]},"id":"8844c0b081fffff-17d74a03b2f9dd8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08029d09-17dfda01edc888db","8f44c0b081522c0-17dea9fe43cddd80"]},"geometry":{"type":"LineString","coordinates":[[-83.73662420000001,32.817833300000004],[-83.73663,32.8170474]]},"id":"8844c0b081fffff-17d64a001c1f9fef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7368344,32.8178337]},"id":"8f44c0b08029974-17de197e8ac7e0a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08029d09-17dfda01edc888db","8f44c0b08029974-17de197e8ac7e0a9"]},"geometry":{"type":"LineString","coordinates":[[-83.73662420000001,32.817833300000004],[-83.7368344,32.8178337]]},"id":"8b44c0b08029fff-17dff9c034ee320e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73704210000001,32.817834000000005]},"id":"8f44c0b0815acdc-17de48fcbcd97177"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08029974-17de197e8ac7e0a9","8f44c0b0815acdc-17de48fcbcd97177"]},"geometry":{"type":"LineString","coordinates":[[-83.7368344,32.8178337],[-83.73704210000001,32.817834000000005]]},"id":"8844c0b081fffff-17de393d932f64c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7372486,32.8178343]},"id":"8f44c0b0815a8c5-17de787ba8faa441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0815a8c5-17de787ba8faa441","8f44c0b0815acdc-17de48fcbcd97177"]},"geometry":{"type":"LineString","coordinates":[[-83.73704210000001,32.817834000000005],[-83.7372486,32.8178343]]},"id":"8b44c0b0815afff-17de68bc3f808c68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08158452-17deb7f94fc46418","8f44c0b0815a8c5-17de787ba8faa441"]},"geometry":{"type":"LineString","coordinates":[[-83.7372486,32.8178343],[-83.73745720000001,32.8178347]]},"id":"8a44c0b0815ffff-17de983a7175c667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0807090a-13bf38fff918271c","8f44c0b0815acdc-17de48fcbcd97177"]},"geometry":{"type":"LineString","coordinates":[[-83.7370369,32.8186003],[-83.73704210000001,32.817834000000005]]},"id":"8844c0b081fffff-17bfc8fe55bb7646"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08153854-17df08f96ea4b10f","8f44c0b0815acdc-17de48fcbcd97177"]},"geometry":{"type":"LineString","coordinates":[[-83.73704210000001,32.817834000000005],[-83.73704740000001,32.817048]]},"id":"8944c0b0817ffff-17d6a8fb0fdbee2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08075521-139f787d916d6875","8f44c0b0815a8c5-17de787ba8faa441"]},"geometry":{"type":"LineString","coordinates":[[-83.7372455,32.8185847],[-83.7372486,32.8178343]]},"id":"8844c0b081fffff-17b6f87c947735b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08151474-17dfd87996b93bb6","8f44c0b0815a8c5-17de787ba8faa441"]},"geometry":{"type":"LineString","coordinates":[[-83.7372486,32.8178343],[-83.7372519,32.8170461]]},"id":"8944c0b0817ffff-17d6287aa753bea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08029974-17de197e8ac7e0a9","8f44c0b08153ce1-17ded97b52465d8e"]},"geometry":{"type":"LineString","coordinates":[[-83.7368395,32.8170477],[-83.7368344,32.8178337]]},"id":"8844c0b081fffff-17d6797cf1eec593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08029974-17de197e8ac7e0a9","8f44c0b08070c04-13b6e981bff61716"]},"geometry":{"type":"LineString","coordinates":[[-83.7368344,32.8178337],[-83.73682930000001,32.8186158]]},"id":"8844c0b081fffff-17be89801d4fcbef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1950e58b-17ffd53e44795415","8f44c0b1950ecd1-17df94f9030fc476"]},"geometry":{"type":"LineString","coordinates":[[-83.6795932,32.8248796],[-83.679704,32.824824]]},"id":"8b44c0b1950efff-17fef51baeb81778"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1952aa98-17f6d2f4202ac4ef","8f44c0b1950ecd1-17df94f9030fc476"]},"geometry":{"type":"LineString","coordinates":[[-83.679704,32.824824],[-83.680531,32.824426]]},"id":"8944c0b1953ffff-17deb3f69b303378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19528101-17f6f1f9ee6fe4b0","8f44c0b1952aa98-17f6d2f4202ac4ef"]},"geometry":{"type":"LineString","coordinates":[[-83.680531,32.824426],[-83.6809314,32.824218300000005]]},"id":"8a44c0b1952ffff-17b7f27704d520ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68128750000001,32.8240287]},"id":"8f44c0b1952dc18-17fff11b51209f22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19cd3a53-17dfb0102a26560b","8f44c0b1952dc18-17fff11b51209f22"]},"geometry":{"type":"LineString","coordinates":[[-83.68128750000001,32.8240287],[-83.68171500000001,32.823797]]},"id":"8744c0b19ffffff-17b79095b660e52e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d730a3-13d7852e7422806c","8f44c0a05d722e8-139ea5b139ca66f1"]},"geometry":{"type":"LineString","coordinates":[[-83.68617210000001,32.898536],[-83.6859629,32.898420200000004]]},"id":"8a44c0a05d77fff-13bed56fdd68f896"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d09990-13ded709294a6920","8f44c0a05d722e8-139ea5b139ca66f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6859629,32.898420200000004],[-83.6854126,32.898115700000005]]},"id":"8844c0a05dfffff-13bf865d3fd6e936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d09990-13ded709294a6920","8f44c0a05d0eaca-13fff869fb626c90"]},"geometry":{"type":"LineString","coordinates":[[-83.6854126,32.898115700000005],[-83.685393,32.8981049],[-83.68484810000001,32.8977591]]},"id":"8a44c0a05d0ffff-13dfc7b9c549e536"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d0244d-13b6aae18622bbba","8f44c0a05d0eaca-13fff869fb626c90"]},"geometry":{"type":"LineString","coordinates":[[-83.68484810000001,32.8977591],[-83.68472700000001,32.8976823],[-83.6841332,32.8972965],[-83.6839382,32.8971286],[-83.6838376,32.897049800000005]]},"id":"8944c0a05d3ffff-1397d9ab9481cc7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6760395,32.852112500000004]},"id":"8f44c0a264494d3-13feddeb51344c61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2644865b-1396de615c8124c9","8f44c0a264494d3-13feddeb51344c61"]},"geometry":{"type":"LineString","coordinates":[[-83.6760395,32.852112500000004],[-83.67585070000001,32.8519469]]},"id":"8a44c0a2644ffff-13d69e265c7831f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2644a2de-13f6df44ec4ad9b8","8f44c0a2644865b-1396de615c8124c9"]},"geometry":{"type":"LineString","coordinates":[[-83.67585070000001,32.8519469],[-83.6757314,32.8518528],[-83.6754866,32.8520716]]},"id":"8a44c0a2644ffff-13969ed46e182988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267a4912-13f7df7c575058bf","8f44c0a2644a2de-13f6df44ec4ad9b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6754866,32.8520716],[-83.67539790000001,32.8520733]]},"id":"8a44c0a2644ffff-13f7df60a1ea71b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5674967,32.8065602]},"id":"8f44c0b852dcd5c-13d7a6ea922f68b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5676533,32.8067982]},"id":"8f44c0b852dc321-13dfe688bb931cd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b852dc321-13dfe688bb931cd5","8f44c0b852dcd5c-13d7a6ea922f68b1"]},"geometry":{"type":"LineString","coordinates":[[-83.5674967,32.8065602],[-83.5676533,32.8067982]]},"id":"8b44c0b852dcfff-139fa6b9a4f2ca2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6761941,32.8892157]},"id":"8f44c0a04bb3d6d-179fdd8ab60f2af7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bb34a0-17fffe2e5d2a4db1","8f44c0a04bb3d6d-179fdd8ab60f2af7"]},"geometry":{"type":"LineString","coordinates":[[-83.6759323,32.8893663],[-83.6761941,32.8892157]]},"id":"8b44c0a04bb3fff-17befddc8aa6d889"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04848563-13beb8914cdabaa6","8f44c0a04bb3d6d-179fdd8ab60f2af7"]},"geometry":{"type":"LineString","coordinates":[[-83.6761941,32.8892157],[-83.67646280000001,32.8890612],[-83.6765744,32.888992],[-83.67661740000001,32.8889372],[-83.67665860000001,32.888896800000005],[-83.6773747,32.8884757],[-83.6782316,32.8880579]]},"id":"8744c0a04ffffff-13969b1910cf8e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67563080000001,32.8885078]},"id":"8f44c0a048eb2f3-13d7feeac5436260"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753801,32.8881862]},"id":"8f44c0a048ea26b-139eff8771ad1155"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048eb2f3-13d7feeac5436260","8f44c0a048ea26b-139eff8771ad1155"]},"geometry":{"type":"LineString","coordinates":[[-83.67563080000001,32.8885078],[-83.6762027,32.8881646],[-83.67595890000001,32.887858800000004],[-83.6753801,32.8881862]]},"id":"8a44c0a048effff-13f6fe5c661f6de7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048eb2f3-13d7feeac5436260","8f44c0a048ea26b-139eff8771ad1155"]},"geometry":{"type":"LineString","coordinates":[[-83.6753801,32.8881862],[-83.67563080000001,32.8885078]]},"id":"8b44c0a048ebfff-13f6ff3929557654"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a048eb2f3-13d7feeac5436260","8f44c0a04bb641a-13b6deacf0cf3e43"]},"geometry":{"type":"LineString","coordinates":[[-83.67563080000001,32.8885078],[-83.6757297,32.888634800000005]]},"id":"8944c0a048fffff-13ff9ecbe2f1cac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04bb641a-13b6deacf0cf3e43","8f44c0a04bb3d6d-179fdd8ab60f2af7"]},"geometry":{"type":"LineString","coordinates":[[-83.6757297,32.888634800000005],[-83.6761941,32.8892157]]},"id":"8a44c0a04bb7fff-17dede1bdc27b5a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5732411,32.8547421]},"id":"8f44c0b88066c18-13f7d8e454f67b6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57324580000001,32.8535824]},"id":"8f44c0b8815c898-179798e163ba258a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88066c18-13f7d8e454f67b6c","8f44c0b8815c898-179798e163ba258a"]},"geometry":{"type":"LineString","coordinates":[[-83.5732411,32.8547421],[-83.57325300000001,32.8546077],[-83.5732607,32.8545588],[-83.5732795,32.8544676],[-83.57329,32.8544347],[-83.57329800000001,32.854396300000005],[-83.5732983,32.8543535],[-83.57329650000001,32.854316700000005],[-83.5732976,32.854266800000005],[-83.5733003,32.8542122],[-83.5732995,32.854159],[-83.5732998,32.8541267],[-83.5732933,32.8540865],[-83.5732825,32.854047800000004],[-83.57327310000001,32.8540177],[-83.5732605,32.8539806],[-83.5732577,32.8539534],[-83.5732567,32.853926900000005],[-83.57325920000001,32.853905000000005],[-83.57326570000001,32.8538749],[-83.5732706,32.853844800000005],[-83.57327240000001,32.8538228],[-83.57327670000001,32.8537978],[-83.5732778,32.8537711],[-83.5732741,32.853747500000004],[-83.5732632,32.8537063],[-83.5732553,32.8536675],[-83.57324580000001,32.8535824]]},"id":"8844c0b881fffff-17ff98cfeec2cf59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57357250000001,32.8535381]},"id":"8f44c0b88143546-17f7d8153c74bd7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8815c898-179798e163ba258a","8f44c0b88143546-17f7d8153c74bd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.57324580000001,32.8535824],[-83.5732701,32.853574200000004],[-83.5733335,32.8535605],[-83.5734032,32.8535515],[-83.57346100000001,32.8535466],[-83.57352900000001,32.853540200000005],[-83.57357250000001,32.8535381]]},"id":"8944c0b8817ffff-17ffb87bfa11f08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5688463,32.8617998]},"id":"8f44c0b886642c9-13b7e39f19dbeb66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56916860000001,32.8620533]},"id":"8f44c0b886652a8-13bff2d5a4bcfb06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886652a8-13bff2d5a4bcfb06","8f44c0b886642c9-13b7e39f19dbeb66"]},"geometry":{"type":"LineString","coordinates":[[-83.5688463,32.8617998],[-83.5688902,32.861814800000005],[-83.5689368,32.8618352],[-83.56896590000001,32.8618487],[-83.56898340000001,32.8618666],[-83.56899920000001,32.8618888],[-83.56902240000001,32.8619111],[-83.56903890000001,32.8619298],[-83.56906550000001,32.861954700000005],[-83.56908750000001,32.8619714],[-83.5691044,32.8619922],[-83.5691182,32.8620121],[-83.5691314,32.862029500000006],[-83.5691493,32.8620432],[-83.56916860000001,32.8620533]]},"id":"8a44c0b88667fff-13ffb334e4192087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56967080000001,32.8621101]},"id":"8f44c0b88290493-13f7f19bc3a9e472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886652a8-13bff2d5a4bcfb06","8f44c0b88290493-13f7f19bc3a9e472"]},"geometry":{"type":"LineString","coordinates":[[-83.56916860000001,32.8620533],[-83.56918900000001,32.8620625],[-83.5692092,32.8620694],[-83.5692272,32.862075100000006],[-83.56925190000001,32.862079300000005],[-83.5692839,32.8620846],[-83.5693476,32.862092100000005],[-83.5694575,32.8621013],[-83.56967080000001,32.8621101]]},"id":"8844c0b887fffff-13dfa23a0103f234"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5693126,32.8623238]},"id":"8f44c0b88292799-13ffe27baeff28be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8866e798-17b7f3f4dbdfaa77","8f44c0b88292799-13ffe27baeff28be"]},"geometry":{"type":"LineString","coordinates":[[-83.5693126,32.8623238],[-83.56880070000001,32.8627673],[-83.5687583,32.8628104],[-83.5687091,32.8628559]]},"id":"8944c0b8867ffff-179fe33979f813cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5684597,32.8630687]},"id":"8f44c0b886452c2-17bff490bea70e2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8866e798-17b7f3f4dbdfaa77","8f44c0b886452c2-17bff490bea70e2b"]},"geometry":{"type":"LineString","coordinates":[[-83.5687091,32.8628559],[-83.5686307,32.8629282],[-83.5684597,32.8630687]]},"id":"8944c0b8867ffff-17fff441ecfd10e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab4c61c-179fb8dab8f8ab14","8f44c0b8ab4a872-17bfb9b5acf05942"]},"geometry":{"type":"LineString","coordinates":[[-83.559799,32.860201700000005],[-83.55982060000001,32.8601418],[-83.55984480000001,32.8601104],[-83.5599057,32.8600567],[-83.5599978,32.860008900000004],[-83.5600902,32.8599576],[-83.5601493,32.8599249]]},"id":"8a44c0b8ab4ffff-17d7b954ac2f61be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5609501,32.8593926]},"id":"8f44c0b8ab68200-17d7f6e63ce3544c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab68200-17d7f6e63ce3544c","8f44c0b8ab4c61c-179fb8dab8f8ab14"]},"geometry":{"type":"LineString","coordinates":[[-83.5601493,32.8599249],[-83.5601987,32.859897600000004],[-83.56038620000001,32.8597934],[-83.5605434,32.8597014],[-83.5606224,32.8596528],[-83.5607378,32.859569300000004],[-83.56081470000001,32.8595129],[-83.56089060000001,32.8594443],[-83.5609501,32.8593926]]},"id":"8944c0b8ab7ffff-17f7b7d8f065e0f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56196800000001,32.8585228]},"id":"8f44c0b88791104-13b7f46a0f61c8cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab68200-17d7f6e63ce3544c","8f44c0b88791104-13b7f46a0f61c8cd"]},"geometry":{"type":"LineString","coordinates":[[-83.5609501,32.8593926],[-83.5609931,32.85935],[-83.56103110000001,32.859298200000005],[-83.56104880000001,32.8592619],[-83.5610669,32.859213000000004],[-83.56106720000001,32.859186300000005],[-83.5610748,32.859155],[-83.56108300000001,32.8591254],[-83.561093,32.859101],[-83.56110980000001,32.8590733],[-83.5611255,32.859057],[-83.56114980000001,32.8590371],[-83.56117300000001,32.8590225],[-83.5611918,32.8590123],[-83.5612148,32.8590046],[-83.56123170000001,32.859001],[-83.56124770000001,32.859000300000005],[-83.5612682,32.8590006],[-83.56128650000001,32.8590025],[-83.5612995,32.859005100000005],[-83.56131880000001,32.8590116],[-83.56133080000001,32.8590194],[-83.5613402,32.8590281],[-83.5613525,32.8590376],[-83.5613649,32.8590411],[-83.5613802,32.8590377],[-83.5613982,32.8590255],[-83.5616169,32.858833700000005],[-83.56196800000001,32.8585228]]},"id":"8844c0b887fffff-13bff5bd6556c906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab68200-17d7f6e63ce3544c","8f44c0b8ab69094-17bff676139242e6"]},"geometry":{"type":"LineString","coordinates":[[-83.5609501,32.8593926],[-83.5609737,32.8594243],[-83.5609948,32.8594486],[-83.5610169,32.8594689],[-83.56104520000001,32.8594991],[-83.5610932,32.8595357],[-83.5611295,32.8595655]]},"id":"8a44c0b8ab6ffff-17ffb6b0ef22a679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab69094-17bff676139242e6","8f44c0b886b4ac5-17b7b4e6a5e52bfb"]},"geometry":{"type":"LineString","coordinates":[[-83.5611295,32.8595655],[-83.5612275,32.859646000000005],[-83.56137840000001,32.8597622],[-83.5614879,32.8598505],[-83.5615343,32.8598921],[-83.56157,32.859915900000004],[-83.56160770000001,32.859936000000005],[-83.5616469,32.859953700000005],[-83.5616892,32.8599659],[-83.5617211,32.859968200000004],[-83.56176860000001,32.8599656]]},"id":"8844c0b887fffff-17bfb5b6e89b8cf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.562916,32.8598851]},"id":"8f44c0b886a4891-17f7b21985134556"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886a4891-17f7b21985134556","8f44c0b886b4ac5-17b7b4e6a5e52bfb"]},"geometry":{"type":"LineString","coordinates":[[-83.56176860000001,32.8599656],[-83.5618287,32.8599565],[-83.56192030000001,32.8599479],[-83.562916,32.8598851]]},"id":"8844c0b887fffff-179fb38055b8bc7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56803450000001,32.862298]},"id":"8f44c0b886626c2-13dfe59a71d21496"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5688902,32.8623132]},"id":"8f44c0b8866154b-13f7e383a29c16b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886626c2-13dfe59a71d21496","8f44c0b8866154b-13f7e383a29c16b1"]},"geometry":{"type":"LineString","coordinates":[[-83.56803450000001,32.862298],[-83.568341,32.862317700000006],[-83.56843880000001,32.862319500000005],[-83.5685433,32.8623155],[-83.56867700000001,32.8623111],[-83.56885600000001,32.8623096],[-83.5688902,32.8623132]]},"id":"8a44c0b88667fff-13f7e48f1f21e7c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8866154b-13f7e383a29c16b1","8f44c0b88661b8a-13dfe2ea1bd4a377"]},"geometry":{"type":"LineString","coordinates":[[-83.5688902,32.8623132],[-83.56892230000001,32.8623165],[-83.56895970000001,32.8623208],[-83.5690007,32.862318],[-83.56906330000001,32.8623074],[-83.5690998,32.862305500000005],[-83.5691359,32.8623068]]},"id":"8b44c0b88661fff-13f7b336eaf44c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88661b8a-13dfe2ea1bd4a377","8f44c0b88292799-13ffe27baeff28be"]},"geometry":{"type":"LineString","coordinates":[[-83.5691359,32.8623068],[-83.5691645,32.862307900000005],[-83.5692549,32.8623173],[-83.5693126,32.8623238]]},"id":"8944c0b8867ffff-13f7a2b2d4f4c820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886652a8-13bff2d5a4bcfb06","8f44c0b88661833-1397e309939f6c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.56916860000001,32.8620533],[-83.56913580000001,32.862100500000004],[-83.56909610000001,32.862151700000005],[-83.5690855,32.8621604]]},"id":"8a44c0b88667fff-13f7b2ee9a14f800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88661833-1397e309939f6c7f","8f44c0b8866154b-13f7e383a29c16b1"]},"geometry":{"type":"LineString","coordinates":[[-83.5690855,32.8621604],[-83.5690273,32.862208200000005],[-83.5688902,32.8623132]]},"id":"8b44c0b88661fff-13b7f3464030e7ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886614d9-139ff3c44894f187","8f44c0b8866154b-13f7e383a29c16b1"]},"geometry":{"type":"LineString","coordinates":[[-83.5688902,32.8623132],[-83.568848,32.8623455],[-83.56878680000001,32.8623853]]},"id":"8b44c0b88661fff-13ffe3a38111dae6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.567863,32.862986]},"id":"8f44c0b8864008c-1797e605a062e4cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b886614d9-139ff3c44894f187","8f44c0b8864008c-1797e605a062e4cc"]},"geometry":{"type":"LineString","coordinates":[[-83.56878680000001,32.8623853],[-83.567863,32.862986]]},"id":"8944c0b8867ffff-17dfb4e4f75c7412"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88292799-13ffe27baeff28be","8f44c0b88292242-13b7e1c3ad5ba2f9"]},"geometry":{"type":"LineString","coordinates":[[-83.5693126,32.8623238],[-83.5693888,32.8623418],[-83.5695007,32.862372400000005],[-83.56958660000001,32.8624014],[-83.569607,32.862414]]},"id":"8b44c0b88292fff-1397e21e7944c285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5697638,32.862544]},"id":"8f44c0b88293086-13f7a161ade9793a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88293086-13f7a161ade9793a","8f44c0b88292242-13b7e1c3ad5ba2f9"]},"geometry":{"type":"LineString","coordinates":[[-83.569607,32.862414],[-83.5696353,32.8624315],[-83.5697638,32.862544]]},"id":"8a44c0b88297fff-13dfe191cdb21ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56985750000001,32.862638700000005]},"id":"8f44c0b88293395-17bfb1271763d90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88293086-13f7a161ade9793a","8f44c0b88293395-17bfb1271763d90b"]},"geometry":{"type":"LineString","coordinates":[[-83.5697638,32.862544],[-83.56985750000001,32.862638700000005]]},"id":"8b44c0b88293fff-179fa1445c8e4afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88292b4a-13bfb1706195b1de","8f44c0b88293086-13f7a161ade9793a"]},"geometry":{"type":"LineString","coordinates":[[-83.5697638,32.862544],[-83.56995570000001,32.8623897],[-83.5697605,32.8622444],[-83.5697402,32.862228300000005]]},"id":"8a44c0b88297fff-139fe12991a85bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88292b4a-13bfb1706195b1de","8f44c0b88290493-13f7f19bc3a9e472"]},"geometry":{"type":"LineString","coordinates":[[-83.5697402,32.862228300000005],[-83.5696862,32.862185700000005],[-83.56967080000001,32.8621101]]},"id":"8b44c0b88292fff-139fe18cb6fcaaa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7364653,32.801770600000005]},"id":"8f44c0b0c6244a3-1796aa653ad0e9f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73652080000001,32.8018328]},"id":"8f44c0b0c6244ea-17bf8a4282568a31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6244a3-1796aa653ad0e9f9","8f44c0b0c6244ea-17bf8a4282568a31"]},"geometry":{"type":"LineString","coordinates":[[-83.7364653,32.801770600000005],[-83.7374628,32.8017405],[-83.73773820000001,32.802132],[-83.73704000000001,32.8025012],[-83.73652080000001,32.8018328]]},"id":"8844c0b0c7fffff-13bf88cc27a3517f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6244a3-1796aa653ad0e9f9","8f44c0b0c6244ea-17bf8a4282568a31"]},"geometry":{"type":"LineString","coordinates":[[-83.73652080000001,32.8018328],[-83.7364653,32.801770600000005]]},"id":"8c44c0b0c6245ff-17b61a53d7c67bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c71b2c1-179f9ba7ab729c25","8f44c0b0c6244a3-1796aa653ad0e9f9"]},"geometry":{"type":"LineString","coordinates":[[-83.7364653,32.801770600000005],[-83.73594940000001,32.8017849]]},"id":"8944c0b0c63ffff-17971b067fbd46ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1406992c-13977f5e490421f5","8f44c0a14a93312-13b7bef866d1ad0d"]},"geometry":{"type":"LineString","coordinates":[[-83.610073,32.887836],[-83.6099834,32.8881079],[-83.60991,32.8884004]]},"id":"8844c0a141fffff-13f7ff2e8e23eeed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1406992c-13977f5e490421f5","8f44c0a14315172-17f73fa1bc7afe3f"]},"geometry":{"type":"LineString","coordinates":[[-83.60991,32.8884004],[-83.6098595,32.8888167],[-83.6098341,32.8896347],[-83.60980210000001,32.8901938]]},"id":"8744c0a14ffffff-17d73f85dd8b6ff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1423624b-179771c18cc2dab7","8f44c0a14315172-17f73fa1bc7afe3f"]},"geometry":{"type":"LineString","coordinates":[[-83.60980210000001,32.8901938],[-83.60973,32.890643000000004],[-83.609655,32.8909189],[-83.6095597,32.891164],[-83.6093551,32.8915705],[-83.60893200000001,32.8922935]]},"id":"8844c0a143fffff-1397e07d750b48b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60752400000001,32.894817100000004]},"id":"8f44c0a142ab0d2-13bff5318a19c25d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a1423624b-179771c18cc2dab7","8f44c0a142ab0d2-13bff5318a19c25d"]},"geometry":{"type":"LineString","coordinates":[[-83.60893200000001,32.8922935],[-83.608412,32.8931739],[-83.60788790000001,32.894123900000004],[-83.60752400000001,32.894817100000004]]},"id":"8844c0a143fffff-17b753820b4986dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344b20e2-17f714f1a4796303","8f44c0a344b3a1a-17d733a663851799"]},"geometry":{"type":"LineString","coordinates":[[-83.62781700000001,32.837685],[-83.62728700000001,32.837360100000005]]},"id":"8a44c0a344b7fff-17dfb44c0ca62cee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344b20e2-17f714f1a4796303","8f44c0a3694d7ae-17d7361f85e020d4"]},"geometry":{"type":"LineString","coordinates":[[-83.62728700000001,32.837360100000005],[-83.626804,32.837077]]},"id":"8744c0a36ffffff-179fb58894e6c643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3694d7ae-17d7361f85e020d4","8f44c0a36948821-17f796a5e328a8ef"]},"geometry":{"type":"LineString","coordinates":[[-83.626804,32.837077],[-83.62670650000001,32.8370185],[-83.62658900000001,32.836948]]},"id":"8a44c0a3694ffff-179fd662be051b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a36948821-17f796a5e328a8ef","8f44c0a3694eb5e-1797d744a3200829"]},"geometry":{"type":"LineString","coordinates":[[-83.62658900000001,32.836948],[-83.62633500000001,32.83679]]},"id":"8a44c0a3694ffff-17d736f545f632f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a369431b3-1797b8e129012c15","8f44c0a3694eb5e-1797d744a3200829"]},"geometry":{"type":"LineString","coordinates":[[-83.62633500000001,32.83679],[-83.625675,32.836385]]},"id":"8944c0a3697ffff-17973812e707e26d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a369431b3-1797b8e129012c15","8f44c0a36951d60-13bf9ac302b7a06a"]},"geometry":{"type":"LineString","coordinates":[[-83.625675,32.836385],[-83.625359,32.836191],[-83.625101,32.836075],[-83.624904,32.836036]]},"id":"8944c0a3697ffff-1397d9cad620ab53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344ab4ce-13bf0fde4bc5ff2f","8f44c0a344f0cf1-13f7ade0449a4a0f"]},"geometry":{"type":"LineString","coordinates":[[-83.629366,32.838904],[-83.630182,32.839385]]},"id":"8844c0a345fffff-13d75edf42a6b4d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63032600000001,32.8394701]},"id":"8f44c0a344f0154-139fdd864cbb84d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344f0cf1-13f7ade0449a4a0f","8f44c0a344f0154-139fdd864cbb84d5"]},"geometry":{"type":"LineString","coordinates":[[-83.630182,32.839385],[-83.63032600000001,32.8394701]]},"id":"8b44c0a344f0fff-13973db34d8cd585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344f0154-139fdd864cbb84d5","8f44c0a344f18b6-179f8cb4e2730125"]},"geometry":{"type":"LineString","coordinates":[[-83.63032600000001,32.8394701],[-83.630661,32.839668]]},"id":"8a44c0a344f7fff-13dfbd1d93a1a1fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344f18b6-179f8cb4e2730125","8f44c0a344f1b60-17f74c144027f1be"]},"geometry":{"type":"LineString","coordinates":[[-83.630661,32.839668],[-83.63091800000001,32.83981]]},"id":"8a44c0a344f7fff-17d7ec649ee778f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344c4929-17dfcb7eebf1907b","8f44c0a344f1b60-17f74c144027f1be"]},"geometry":{"type":"LineString","coordinates":[[-83.63091800000001,32.83981],[-83.631157,32.839958]]},"id":"8b44c0a344e2fff-179f8bc9951845bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344abc53-13d72f88a0885b7b","8f44c0a344a814b-13973ee3bf1d5aad"]},"geometry":{"type":"LineString","coordinates":[[-83.629503,32.838741],[-83.62955740000001,32.8386763],[-83.6297669,32.8384275]]},"id":"8a44c0a344affff-13f72f363e0edc9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298378,32.838343200000004]},"id":"8f44c0a344a8859-13df8eb762a5653c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344a8859-13df8eb762a5653c","8f44c0a344a814b-13973ee3bf1d5aad"]},"geometry":{"type":"LineString","coordinates":[[-83.6297669,32.8384275],[-83.6298378,32.838343200000004]]},"id":"8b44c0a344a8fff-13f7eecd904ca42a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344a8859-13df8eb762a5653c","8f44c0a344add9d-13d74e4308b5fb3f"]},"geometry":{"type":"LineString","coordinates":[[-83.6298378,32.838343200000004],[-83.630024,32.838122000000006]]},"id":"8a44c0a344affff-13976e7d30c9026a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344add9d-13d74e4308b5fb3f","8f44c0a34410a89-17d76cf6f3543886"]},"geometry":{"type":"LineString","coordinates":[[-83.630024,32.838122000000006],[-83.63048020000001,32.8375932],[-83.63055530000001,32.8375062]]},"id":"8844c0a345fffff-1797dd9d0c0d3315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34433141-17d74bab9b79eab3","8f44c0a34410a89-17d76cf6f3543886"]},"geometry":{"type":"LineString","coordinates":[[-83.63055530000001,32.8375062],[-83.6306225,32.837429300000004],[-83.6310385,32.8369512],[-83.63108550000001,32.8368964]]},"id":"8944c0a3443ffff-1797fc512e2388d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0bad2c6c48-179788c8c1434482","8f44c0bad2d915c-13bf2899a65c66dd"]},"geometry":{"type":"LineString","coordinates":[[-83.632343,32.813101],[-83.632289,32.811746],[-83.6322676,32.8114008]]},"id":"8944c0bad2fffff-13bfb8af5ac46d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0bad2c6c48-179788c8c1434482","8f44c0bad2f0aec-17b738d3881ee8cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6322676,32.8114008],[-83.6322504,32.8108035]]},"id":"8944c0bad2fffff-17dfe8ce2567b354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.631952,32.809165]},"id":"8f44c0bad213732-13b7298e08163210"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0bad2f0aec-17b738d3881ee8cc","8f44c0bad213732-13b7298e08163210"]},"geometry":{"type":"LineString","coordinates":[[-83.6322504,32.8108035],[-83.632214,32.810057],[-83.632074,32.8095894],[-83.632053,32.809463],[-83.631952,32.809165]]},"id":"8844c0bad3fffff-139fa911e0367e5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92d99ad-17ff37044b2f2f83","8f44c0ba92cec25-17b7b5e977b3b946"]},"geometry":{"type":"LineString","coordinates":[[-83.6268905,32.8335723],[-83.62643800000001,32.8340978]]},"id":"8944c0ba92fffff-17dff676ea5affc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a369664c8-13bf97fea2c47e4a","8f44c0a36960221-13b75663ab50fbf2"]},"geometry":{"type":"LineString","coordinates":[[-83.6260374,32.8347848],[-83.6261348,32.8348401],[-83.62662200000001,32.835141],[-83.62669500000001,32.835184500000004]]},"id":"8a44c0a36967fff-13bfd730c33afdf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36960221-13b75663ab50fbf2","8f44c0a3696c8ab-13b7f4c27bdf1532"]},"geometry":{"type":"LineString","coordinates":[[-83.62669500000001,32.835184500000004],[-83.6268419,32.8352687],[-83.62726640000001,32.8355339],[-83.6273625,32.8355854]]},"id":"8944c0a3697ffff-13b7f59331136d28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a345936a1-13ffb41a0b22a73b","8f44c0a3696c8ab-13b7f4c27bdf1532"]},"geometry":{"type":"LineString","coordinates":[[-83.6273625,32.8355854],[-83.627632,32.835729]]},"id":"8a44c0a3696ffff-13dfd46e42e40591"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3459e24d-13ffd278ae41a605","8f44c0a345936a1-13ffb41a0b22a73b"]},"geometry":{"type":"LineString","coordinates":[[-83.627632,32.835729],[-83.62829980000001,32.8361388]]},"id":"8944c0a345bffff-13ffb349568bd6db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a3459e24d-13ffd278ae41a605","8f44c0a34599a14-179ff0b50074b816"]},"geometry":{"type":"LineString","coordinates":[[-83.62829980000001,32.8361388],[-83.62902240000001,32.8365758]]},"id":"8a44c0a3459ffff-17975196d36e7af4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a849190-1796f07defa4c7f2","8f44c0b1a84a613-17f7d2ada38edfda"]},"geometry":{"type":"LineString","coordinates":[[-83.655325,32.814033],[-83.65492370000001,32.814022],[-83.65442940000001,32.8140085]]},"id":"8a44c0b1a84ffff-17fef195c9a17e99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a859a76-17f7d2f973739253","8f44c0b1a84a613-17f7d2ada38edfda"]},"geometry":{"type":"LineString","coordinates":[[-83.65442940000001,32.8140085],[-83.65430810000001,32.814005200000004]]},"id":"8944c0b1a87ffff-17f6d2d39e0d50d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a859a76-17f7d2f973739253","8f44c0b1a859446-17ffd3dcb0e72857"]},"geometry":{"type":"LineString","coordinates":[[-83.65430810000001,32.814005200000004],[-83.65394450000001,32.8139953]]},"id":"8b44c0b1a859fff-17fef36b18b03d19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1a27038a-13fef624d56d6910","8f44c0b1a27384e-139ff62320a421a7"]},"geometry":{"type":"LineString","coordinates":[[-83.65301260000001,32.8263355],[-83.6530099,32.8261094]]},"id":"8a44c0b1a277fff-13d7d62405d7d8f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65257650000001,32.8260039]},"id":"8f44c0b1a2728c0-13bef733b18db5e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b1a27038a-13fef624d56d6910","8f44c0b1a2728c0-13bef733b18db5e2"]},"geometry":{"type":"LineString","coordinates":[[-83.6530099,32.8261094],[-83.6528711,32.8261064],[-83.65257650000001,32.8260039]]},"id":"8a44c0b1a277fff-13f6f6adfe69a828"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1b5a46f3-13bff5200111d0b7","8f44c0b1a2584dc-17d6d711b0c7ef91"]},"geometry":{"type":"LineString","coordinates":[[-83.65342720000001,32.828876300000005],[-83.6526309,32.8280905]]},"id":"8744c0b1bffffff-13def618df227a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1a25e2c4-17f7d740ac5c3f86","8f44c0b1a2584dc-17d6d711b0c7ef91"]},"geometry":{"type":"LineString","coordinates":[[-83.6526309,32.8280905],[-83.65258,32.8279688],[-83.6525558,32.8279124]]},"id":"8a44c0b1a25ffff-179ef7291f55b725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd29636-13bffe84ae69c617","8f44c0b1bd2d583-13b6fe85ea248f63"]},"geometry":{"type":"LineString","coordinates":[[-83.662687,32.823107],[-83.66268500000001,32.822507]]},"id":"8a44c0b1bd2ffff-13fefe8543e316c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd2c90a-139fbe7fa73f8324","8f44c0b1bd2d583-13b6fe85ea248f63"]},"geometry":{"type":"LineString","coordinates":[[-83.66268500000001,32.822507],[-83.662695,32.822057]]},"id":"8944c0b1bd3ffff-13b6fe82c5ff2873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd2c90a-139fbe7fa73f8324","8f44c0b186d2130-13d6fe7c4c8e97fc"]},"geometry":{"type":"LineString","coordinates":[[-83.662695,32.822057],[-83.6627004,32.8217189]]},"id":"8a44c0b186d7fff-13b6be7df0aee4e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b186d2130-13d6fe7c4c8e97fc","8f44c0b186d6732-1797be7969c01212"]},"geometry":{"type":"LineString","coordinates":[[-83.6627004,32.8217189],[-83.662705,32.821432]]},"id":"8a44c0b186d7fff-17febe7adc1673e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66266750000001,32.8244088]},"id":"8f44c0b1bd55d84-17d7be90d352ca08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd55d84-17d7be90d352ca08","8f44c0b1bd55cd3-17b7fe8ea89f4cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.662671,32.824531],[-83.66266750000001,32.8244088]]},"id":"8c44c0b1bd55dff-17ffbe8fb6200e32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd55d84-17d7be90d352ca08","8f44c0b1bd72318-17dfbe98aa33017e"]},"geometry":{"type":"LineString","coordinates":[[-83.66266750000001,32.8244088],[-83.662655,32.823977]]},"id":"8944c0b1bd7ffff-17d6be94b333a402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd760f5-179fbe8eaea34de5","8f44c0b1bd72318-17dfbe98aa33017e"]},"geometry":{"type":"LineString","coordinates":[[-83.662655,32.823977],[-83.662671,32.823464]]},"id":"8a44c0b1bd77fff-17bffe93a5ddf62e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd760f5-179fbe8eaea34de5","8f44c0b1bd29636-13bffe84ae69c617"]},"geometry":{"type":"LineString","coordinates":[[-83.662671,32.823464],[-83.662687,32.823107]]},"id":"8844c0b1bdfffff-179ffe89a21719d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626899,32.825362500000004]},"id":"8f44c0b1bd5e80d-13bfbe82dc450295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd5e80d-13bfbe82dc450295","8f44c0b1bd584f1-13d6fe7621b99e8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6627102,32.8258375],[-83.6626899,32.825362500000004]]},"id":"8a44c0b1bd5ffff-13d6be7c7fb3dc2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b70b104-13ffc33f45fbe1ba","8f44c0b1b7198ec-13fec50faac1c32c"]},"geometry":{"type":"LineString","coordinates":[[-83.66000700000001,32.838158],[-83.66016300000001,32.838182],[-83.66029,32.838206],[-83.66045000000001,32.838264],[-83.66075000000001,32.838392]]},"id":"8944c0b1b73ffff-13b6f42392958410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b70bb81-1397e2ef436b987d","8f44c0b1b70b104-13ffc33f45fbe1ba"]},"geometry":{"type":"LineString","coordinates":[[-83.66075000000001,32.838392],[-83.66087800000001,32.838437]]},"id":"8b44c0b1b70bfff-139fd3174c9097a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b74602d-13b7ff20eb5139f0","8f44c0b1b70bb81-1397e2ef436b987d"]},"geometry":{"type":"LineString","coordinates":[[-83.66087800000001,32.838437],[-83.66172,32.838728],[-83.662126,32.838842],[-83.66243700000001,32.838898]]},"id":"8844c0b1b7fffff-13b7f10c05656499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15091db4-13dff48bcaa15bfb","8f44c0b150950c3-13fef3f25169dbe6"]},"geometry":{"type":"LineString","coordinates":[[-83.660218,32.754348300000004],[-83.6604635,32.754224300000004]]},"id":"8a44c0b15097fff-13b6f43f179efee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6606508,32.7541296]},"id":"8f44c0b15095ba9-13d7c37d49a439a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15095ba9-13d7c37d49a439a7","8f44c0b150950c3-13fef3f25169dbe6"]},"geometry":{"type":"LineString","coordinates":[[-83.6604635,32.754224300000004],[-83.6606508,32.7541296]]},"id":"8b44c0b15095fff-13f6d3b7d893b737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6610917,32.7539068]},"id":"8f44c0b15086828-13b7c269baad6966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15086828-13b7c269baad6966","8f44c0b15095ba9-13d7c37d49a439a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6606508,32.7541296],[-83.6610917,32.7539068]]},"id":"8944c0b150bffff-13ffe2f384a7d4af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b15095ba9-13d7c37d49a439a7","8f44c0b1509410a-13fed4bb32bb5428"]},"geometry":{"type":"LineString","coordinates":[[-83.6606508,32.7541296],[-83.6603355,32.753723300000004],[-83.6601421,32.7537861]]},"id":"8944c0b150bffff-13b7e40cd2ce4b4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1509410a-13fed4bb32bb5428","8f44c0b15096b23-13b7e56c1ec2317c"]},"geometry":{"type":"LineString","coordinates":[[-83.6601421,32.7537861],[-83.6598591,32.7538782]]},"id":"8a44c0b15097fff-139fe513a31b1548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6576204,32.7561589]},"id":"8f44c0b1545d6e0-13b7dae3471542f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1545d6e0-13b7dae3471542f6","8f44c0b157a4d2c-1396da26b9e12b90"]},"geometry":{"type":"LineString","coordinates":[[-83.65792210000001,32.7565157],[-83.6576204,32.7561589]]},"id":"8944c0b1547ffff-13b6da8506740fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.657155,32.7563094]},"id":"8f44c0b1545b9b6-1397ec0628ed3bc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1545b9b6-1397ec0628ed3bc6","8f44c0b1545d6e0-13b7dae3471542f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6576204,32.7561589],[-83.65728510000001,32.7557624],[-83.6569085,32.7559178],[-83.6568537,32.75601],[-83.6568537,32.7561078],[-83.6568606,32.7562057],[-83.6569085,32.7562863],[-83.6570181,32.7563094],[-83.657155,32.7563094]]},"id":"8a44c0b1545ffff-17f6ec0b73ebb354"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1545b9b6-1397ec0628ed3bc6","8f44c0b1545d6e0-13b7dae3471542f6"]},"geometry":{"type":"LineString","coordinates":[[-83.657155,32.7563094],[-83.6576204,32.7561589]]},"id":"8a44c0b1545ffff-13f6eb74bee9f17b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11122332-17f7d54475c5e364","8f44c0b11100616-17b6f669513004cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6594539,32.771921500000005],[-83.6596205,32.7719238],[-83.6599822,32.771894],[-83.6602909,32.7718068],[-83.66038160000001,32.7717632],[-83.66043020000001,32.7717005],[-83.66051440000001,32.7715126],[-83.6605274,32.7714309],[-83.6604853,32.7713411],[-83.66030070000001,32.7711368],[-83.65992250000001,32.7709977]]},"id":"8944c0b1113ffff-17d7d4b944c79c24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1113526a-13ffe5fab0befaf4","8f44c0b11122332-17f7d54475c5e364"]},"geometry":{"type":"LineString","coordinates":[[-83.65992250000001,32.7709977],[-83.6599133,32.770994300000005],[-83.65975660000001,32.7709026],[-83.65963090000001,32.770809400000005]]},"id":"8b44c0b11122fff-17bfe5a16cd63c6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116b3c85-17bedec45702e2a6","8f44c0b116b62c0-17d6fecf2bd06c11"]},"geometry":{"type":"LineString","coordinates":[[-83.64947790000001,32.7815584],[-83.6507327,32.7815041],[-83.65074150000001,32.7811882],[-83.64946060000001,32.7811619]]},"id":"8944c0b116bffff-17bedd11ac33b8a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6480543,32.7811809]},"id":"8f44c0b13b4a8ee-17def23e15ed1ae3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116b62c0-17d6fecf2bd06c11","8f44c0b13b4a8ee-17def23e15ed1ae3"]},"geometry":{"type":"LineString","coordinates":[[-83.64946060000001,32.7811619],[-83.6480543,32.7811809]]},"id":"8644c0b17ffffff-17dee086a2136c47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e4d2341-17d6f32d4b9d9290","8f44c0badb2cc4d-17bff3e8c9e92057"]},"geometry":{"type":"LineString","coordinates":[[-83.64081800000001,32.798566],[-83.64107700000001,32.7985926],[-83.641118,32.7983653]]},"id":"8644c0b1fffffff-17bef36bc91b8401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e4d2341-17d6f32d4b9d9290","8f44c0b1e4d059a-179ff30c3c4c90be"]},"geometry":{"type":"LineString","coordinates":[[-83.641118,32.7983653],[-83.6411709,32.7980722]]},"id":"8a44c0b1e4d7fff-17f6f31cbeb00327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aca5836-13fff452f1d47e5f","8f44c0b1aca4204-13fff533cc00d4e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6402884,32.8090776],[-83.6406481,32.8090866]]},"id":"8a44c0b1aca7fff-13fef4c36527456c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aca1b34-13b7f45772109930","8f44c0b1aca5836-13fff452f1d47e5f"]},"geometry":{"type":"LineString","coordinates":[[-83.6406481,32.8090866],[-83.6418936,32.8091181],[-83.6418598,32.8096556],[-83.64064090000001,32.8096113]]},"id":"8844c0b1adfffff-139ff28f174076be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1aca1b34-13b7f45772109930","8f44c0b1aca140c-13f6f543f8af5363"]},"geometry":{"type":"LineString","coordinates":[[-83.64064090000001,32.8096113],[-83.6405356,32.8096587],[-83.64041900000001,32.8096872],[-83.6402625,32.8096844]]},"id":"8b44c0b1aca1fff-13dff4cb5e0d11ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ac8db9a-17d7f493c17e3576","8f44c0b1acf25b0-17f6f4957e392c15"]},"geometry":{"type":"LineString","coordinates":[[-83.64054440000001,32.8113016],[-83.6405417,32.8115521]]},"id":"8a44c0b1ac8ffff-17b7f494a4c99f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6405397,32.8117358]},"id":"8f44c0b1ac89b56-17f6f496b8d6d291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ac89b56-17f6f496b8d6d291","8f44c0b1acf25b0-17f6f4957e392c15"]},"geometry":{"type":"LineString","coordinates":[[-83.6405417,32.8115521],[-83.6405397,32.8117358]]},"id":"8a44c0b1ac8ffff-17bff4961a69412d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64645680000001,32.8152374]},"id":"8f44c0b1a11a0b1-13f7e6248ac18d49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11a0b1-13f7e6248ac18d49","8f44c0b1a1a9873-13f6e6c6435abe7b"]},"geometry":{"type":"LineString","coordinates":[[-83.646198,32.815232],[-83.64645680000001,32.8152374]]},"id":"8844c0b1a1fffff-13f7f675690fabfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64643670000001,32.8155585]},"id":"8f44c0b1a03489c-13bef63119e51f20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11a0b1-13f7e6248ac18d49","8f44c0b1a03489c-13bef63119e51f20"]},"geometry":{"type":"LineString","coordinates":[[-83.64645680000001,32.8152374],[-83.6466556,32.8152416],[-83.64663940000001,32.8155687],[-83.64643670000001,32.8155585]]},"id":"8844c0b1a1fffff-13dff5cff1e83345"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11a0b1-13f7e6248ac18d49","8f44c0b1a03489c-13bef63119e51f20"]},"geometry":{"type":"LineString","coordinates":[[-83.64643670000001,32.8155585],[-83.64645680000001,32.8152374]]},"id":"8844c0b1a1fffff-13d7e62acf9e3d15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34da3150-17ff02541564c118","8f44c0a34da366a-17ff027f02986cef"]},"geometry":{"type":"LineString","coordinates":[[-83.6349119,32.827924800000005],[-83.6348432,32.8281312]]},"id":"8b44c0a34da3fff-17bf82699f12278f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6347458,32.828424500000004]},"id":"8f44c0a34d850e3-13b752bbedaf0ecd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34da366a-17ff027f02986cef","8f44c0a34d850e3-13b752bbedaf0ecd"]},"geometry":{"type":"LineString","coordinates":[[-83.6348432,32.8281312],[-83.6347458,32.828424500000004]]},"id":"8a44c0a34d87fff-13dfb29d7b64898a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6336139,32.8285227]},"id":"8f44c0a34d8251c-13f7b57f5f0b6836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d91933-13d7f5f8aba89322","8f44c0a34d8251c-13f7b57f5f0b6836"]},"geometry":{"type":"LineString","coordinates":[[-83.6334198,32.8284767],[-83.6336139,32.8285227]]},"id":"8944c0a34dbffff-13d755bbf4ec50f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d8028b-13d793d598404e01","8f44c0a34d8251c-13f7b57f5f0b6836"]},"geometry":{"type":"LineString","coordinates":[[-83.6336139,32.8285227],[-83.6342951,32.828684100000004]]},"id":"8a44c0a34d87fff-139724aa7aa2c437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d8028b-13d793d598404e01","8f44c0a34d8251c-13f7b57f5f0b6836"]},"geometry":{"type":"LineString","coordinates":[[-83.6342951,32.828684100000004],[-83.63424330000001,32.8288528],[-83.63355320000001,32.828699300000004],[-83.6336139,32.8285227]]},"id":"8944c0a34dbffff-13ff44c9b4c28226"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34d9540a-13d726642b0d8b2b","8f44c0a34d95310-13f7c5c1403344df"]},"geometry":{"type":"LineString","coordinates":[[-83.63350840000001,32.82835],[-83.63332770000001,32.8282881],[-83.6332478,32.828269]]},"id":"8b44c0a34d95fff-13dfd61231e6bb40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9365c2c-1797394a3130b858","8f44c0a34d9540a-13d726642b0d8b2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6332478,32.828269],[-83.63206050000001,32.8279859]]},"id":"8744c0ba9ffffff-17ffb7d72bbb12cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9365c2c-1797394a3130b858","8f44c0ba936430b-17f7f9c0d2987cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.63206050000001,32.8279859],[-83.63187070000001,32.8279407]]},"id":"8a44c0ba9367fff-17971985823f999b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba9364728-17df2a28dba91d74","8f44c0ba936430b-17f7f9c0d2987cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.63187070000001,32.8279407],[-83.63170430000001,32.827901000000004]]},"id":"8b44c0ba9364fff-17ff99f4dd4ec061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba936b36d-17df58b14442505e","8f44c0ba936a2e1-139fd9d2f4489ffc"]},"geometry":{"type":"LineString","coordinates":[[-83.6323052,32.8299141],[-83.63184170000001,32.8296445]]},"id":"8a44c0ba936ffff-13f71942124c6d36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba934c604-1797ba94bf852302","8f44c0ba936a2e1-139fd9d2f4489ffc"]},"geometry":{"type":"LineString","coordinates":[[-83.63184170000001,32.8296445],[-83.6316219,32.8295167],[-83.63132420000001,32.829886200000004],[-83.63153170000001,32.8300075]]},"id":"8944c0ba937ffff-13d7aa95f566e9ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba934c604-1797ba94bf852302","8f44c0ba9348d19-17dffad0aec7e500"]},"geometry":{"type":"LineString","coordinates":[[-83.63153170000001,32.8300075],[-83.6314358,32.8301199]]},"id":"8a44c0ba934ffff-17b7dab2b187b100"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62363760000001,32.836157]},"id":"8f44c0a36821040-13973dda84a58a64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36821040-13973dda84a58a64","8f44c0a36953222-17dfbbb581ddf774"]},"geometry":{"type":"LineString","coordinates":[[-83.624516,32.8364714],[-83.6237564,32.836016900000004],[-83.62363760000001,32.836157]]},"id":"8844c0a369fffff-13bfbcd21b378cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6235643,32.8362434]},"id":"8f44c0a3682174c-13bf3e085860153f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36821040-13973dda84a58a64","8f44c0a3682174c-13bf3e085860153f"]},"geometry":{"type":"LineString","coordinates":[[-83.62363760000001,32.836157],[-83.6235643,32.8362434]]},"id":"8b44c0a36821fff-13b73df17c6f3a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b65d18-139ffb82780efc1b","8f44c0a36b658ed-13f7fb02747014e8"]},"geometry":{"type":"LineString","coordinates":[[-83.6311513,32.8423375],[-83.6313561,32.8424575]]},"id":"8b44c0a36b65fff-13d77b427d8717e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a347966a8-13b70a7f0094d919","8f44c0a36b658ed-13f7fb02747014e8"]},"geometry":{"type":"LineString","coordinates":[[-83.6313561,32.8424575],[-83.63156640000001,32.8425808]]},"id":"8744c0a34ffffff-139f7ac0cf786bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63171840000001,32.842669900000004]},"id":"8f44c0a3479290e-13ffba200b4e31a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3479290e-13ffba200b4e31a0","8f44c0a347966a8-13b70a7f0094d919"]},"geometry":{"type":"LineString","coordinates":[[-83.63156640000001,32.8425808],[-83.63171840000001,32.842669900000004]]},"id":"8a44c0a34797fff-13d7ea4f83474d5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6310033,32.8429802]},"id":"8f44c0a36b61461-17bfabdef98923de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b61461-17bfabdef98923de","8f44c0a36b6066d-13dfec8329bc269d"]},"geometry":{"type":"LineString","coordinates":[[-83.63074060000001,32.842819],[-83.6310033,32.8429802]]},"id":"8a44c0a36b67fff-13ff4c311e986cce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b61461-17bfabdef98923de","8f44c0a36b6e053-17d74bd6caa63006"]},"geometry":{"type":"LineString","coordinates":[[-83.6310033,32.8429802],[-83.63074660000001,32.843288300000005],[-83.63101640000001,32.8434468]]},"id":"8944c0a36b7ffff-17dfdc2d6928aeef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b61461-17bfabdef98923de","8f44c0a36b6e053-17d74bd6caa63006"]},"geometry":{"type":"LineString","coordinates":[[-83.63101640000001,32.8434468],[-83.63130190000001,32.843121100000005],[-83.631281,32.843081500000004],[-83.63108190000001,32.842945],[-83.6310033,32.8429802]]},"id":"8944c0a36b7ffff-179ffb7c95919ffa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a347988e8-1797878414cffb86","8f44c0a3479ab05-17ff1870c8fcf640"]},"geometry":{"type":"LineString","coordinates":[[-83.6327871,32.8437624],[-83.6325857,32.8439919],[-83.6324084,32.843894500000005]]},"id":"8a44c0a3479ffff-17ffb7f233332e70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3479ab05-17ff1870c8fcf640","8f44c0a3479a8a5-17bf98d5c4f769d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6324084,32.843894500000005],[-83.6322468,32.8437961]]},"id":"8b44c0a3479afff-17df58a3470a2bbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36206b06-17bfb32c0d1c6c7d","8f44c0a362003b2-13dfa2bdea397100"]},"geometry":{"type":"LineString","coordinates":[[-83.6214592,32.8507577],[-83.621798,32.8511387],[-83.62180500000001,32.8511684],[-83.621798,32.851201100000004],[-83.621752,32.851224800000004],[-83.6216354,32.851224800000004]]},"id":"8a44c0a36207fff-17d762ac122fc708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3621c8ec-13b7e3f55607383f","8f44c0a362003b2-13dfa2bdea397100"]},"geometry":{"type":"LineString","coordinates":[[-83.6216354,32.851224800000004],[-83.6215471,32.8511952],[-83.6214587,32.8511566],[-83.6213704,32.8511566],[-83.6213244,32.8511684],[-83.62128560000001,32.851201100000004],[-83.6211371,32.85159]]},"id":"8944c0a3623ffff-13ff337dd75afa12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3621c8ec-13b7e3f55607383f","8f44c0a362185a3-13dfa5197a57e15b"]},"geometry":{"type":"LineString","coordinates":[[-83.6211371,32.85159],[-83.62107350000001,32.8516197],[-83.6210099,32.8516939],[-83.62086500000001,32.8520739],[-83.62066970000001,32.852033]]},"id":"8a44c0a3621ffff-13f7247bcfb3f2b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6196802,32.854058]},"id":"8f44c0a362d0a2d-17bf6783e8dcd82e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d5758-17df37015e970e08","8f44c0a362d0a2d-17bf6783e8dcd82e"]},"geometry":{"type":"LineString","coordinates":[[-83.61988910000001,32.8540867],[-83.6196802,32.854058]]},"id":"8a44c0a362d7fff-17d76742997ffcf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61892750000001,32.8540609]},"id":"8f44c0a362d2c58-17bf395a50bb7334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d2c58-17bf395a50bb7334","8f44c0a362d0a2d-17bf6783e8dcd82e"]},"geometry":{"type":"LineString","coordinates":[[-83.6196802,32.854058],[-83.6196767,32.8540194],[-83.6196378,32.8539897],[-83.6195247,32.853971900000005],[-83.6190371,32.8539897],[-83.6189911,32.854001600000004],[-83.61892750000001,32.8540609]]},"id":"8a44c0a362d7fff-179778689bcf2348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61878560000001,32.8540024]},"id":"8f44c0a362d2c96-1797a9b3030b72ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d2c96-1797a9b3030b72ff","8f44c0a362d2c58-17bf395a50bb7334"]},"geometry":{"type":"LineString","coordinates":[[-83.61892750000001,32.8540609],[-83.61878560000001,32.8540024]]},"id":"8b44c0a362d2fff-17bff986b6eda072"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d2c96-1797a9b3030b72ff","8f44c0a32925766-17f7ba295295fc27"]},"geometry":{"type":"LineString","coordinates":[[-83.61878560000001,32.8540024],[-83.61859630000001,32.8539243]]},"id":"8a44c0a32927fff-17ff29ee3d37840e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6191816,32.8541852]},"id":"8f44c0a362d2a0c-179fe8bb841dbce0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d0a2d-17bf6783e8dcd82e","8f44c0a362d2a0c-179fe8bb841dbce0"]},"geometry":{"type":"LineString","coordinates":[[-83.6196802,32.854058],[-83.6195848,32.854298400000005],[-83.6195601,32.8543222],[-83.6195106,32.8543311],[-83.61944340000001,32.8543133],[-83.6191816,32.8541852]]},"id":"8a44c0a362d7fff-17bf78044b8a9e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d2c58-17bf395a50bb7334","8f44c0a362d2a0c-179fe8bb841dbce0"]},"geometry":{"type":"LineString","coordinates":[[-83.6191816,32.8541852],[-83.61892750000001,32.8540609]]},"id":"8b44c0a362d2fff-17f7f90aeb5e20db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181068,32.8551108]},"id":"8f44c0a3292a55a-13df6b5b4d0426d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292a55a-13df6b5b4d0426d4","8f44c0a32901813-13d7ebf9598c5821"]},"geometry":{"type":"LineString","coordinates":[[-83.6178539,32.855097400000005],[-83.6181068,32.8551108]]},"id":"8944c0a3293ffff-13df3baa448ef642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6185741,32.8551355]},"id":"8f44c0a32928799-13dfba373fe47bf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292a55a-13df6b5b4d0426d4","8f44c0a32928799-13dfba373fe47bf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6181068,32.8551108],[-83.6185741,32.8551355]]},"id":"8a44c0a3292ffff-13d72ac94c28b33d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362da560-13ff3809323bbbaa","8f44c0a32928799-13dfba373fe47bf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6185741,32.8551355],[-83.6194669,32.8551827]]},"id":"8844c0a329fffff-13ff792032c8a633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d2209-17ffe8f8e84f3bbf","8f44c0a362d2a0c-179fe8bb841dbce0"]},"geometry":{"type":"LineString","coordinates":[[-83.6191816,32.8541852],[-83.61908340000001,32.8543388]]},"id":"8b44c0a362d2fff-17bfe8da3aeb0c10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292c850-13df79369fb0138c","8f44c0a362d2209-17ffe8f8e84f3bbf"]},"geometry":{"type":"LineString","coordinates":[[-83.61908340000001,32.8543388],[-83.6189847,32.8544933]]},"id":"8744c0a36ffffff-139f3917b60c3bcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292c05c-13b739701da37829","8f44c0a3292c850-13df79369fb0138c"]},"geometry":{"type":"LineString","coordinates":[[-83.6189847,32.8544933],[-83.6188927,32.854637100000005]]},"id":"8b44c0a3292cfff-13f7695354193763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292c659-1397e9adccfbe4b0","8f44c0a3292c05c-13b739701da37829"]},"geometry":{"type":"LineString","coordinates":[[-83.6188927,32.854637100000005],[-83.61879400000001,32.8547916]]},"id":"8b44c0a3292cfff-13d7a98efcf6c35d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292c659-1397e9adccfbe4b0","8f44c0a32928799-13dfba373fe47bf9"]},"geometry":{"type":"LineString","coordinates":[[-83.61879400000001,32.8547916],[-83.6185741,32.8551355]]},"id":"8a44c0a3292ffff-13f769f28b8fc433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a362d2c96-1797a9b3030b72ff","8f44c0a32921868-17ff39f26dab8158"]},"geometry":{"type":"LineString","coordinates":[[-83.61878560000001,32.8540024],[-83.6186842,32.8541681]]},"id":"8a44c0a32927fff-17df79d2b0080b0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32921330-17f73a2e87d1ff7d","8f44c0a32921868-17ff39f26dab8158"]},"geometry":{"type":"LineString","coordinates":[[-83.6186842,32.8541681],[-83.618588,32.854325100000004]]},"id":"8b44c0a32921fff-17b72a1077f33925"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292e922-13bfaa668e0478c5","8f44c0a32921330-17f73a2e87d1ff7d"]},"geometry":{"type":"LineString","coordinates":[[-83.618588,32.854325100000004],[-83.61849840000001,32.8544714]]},"id":"8b44c0a32921fff-139ffa4a8611dd4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292e105-139ffaa0d93a118e","8f44c0a3292e922-13bfaa668e0478c5"]},"geometry":{"type":"LineString","coordinates":[[-83.61849840000001,32.8544714],[-83.6184051,32.854623700000005]]},"id":"8a44c0a3292ffff-13ff6a83b68a6bfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292a55a-13df6b5b4d0426d4","8f44c0a3292e105-139ffaa0d93a118e"]},"geometry":{"type":"LineString","coordinates":[[-83.6184051,32.854623700000005],[-83.6181068,32.8551108]]},"id":"8a44c0a3292ffff-13b72afe1ef01b1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3290a10c-1797fcacacd5fdc3","8f44c0a3290dd48-13d7ba6a012f4f8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6184928,32.855733900000004],[-83.6184822,32.856070700000004],[-83.61756700000001,32.8560463]]},"id":"8a44c0a3290ffff-17977b40dbd88733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3290a10c-1797fcacacd5fdc3","8f44c0a3291996e-179fbd76111fcbfa"]},"geometry":{"type":"LineString","coordinates":[[-83.61756700000001,32.8560463],[-83.6172447,32.8560377]]},"id":"8944c0a3293ffff-17976d115601f428"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32952d8e-17f76b9cf4c4021e","8f44c0a32822caa-17b7eed8df640af4"]},"geometry":{"type":"LineString","coordinates":[[-83.6166771,32.856921400000004],[-83.61689910000001,32.856991],[-83.61800170000001,32.856986]]},"id":"8944c0a3283ffff-17df7d3dafd05f86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32952d8e-17f76b9cf4c4021e","8f44c0a32950c59-17dfba3b9e23f8ca"]},"geometry":{"type":"LineString","coordinates":[[-83.61800170000001,32.856986],[-83.6185671,32.856983500000005]]},"id":"8a44c0a32957fff-17dfaaec42b67275"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32950c59-17dfba3b9e23f8ca","8f44c0a3295086a-17df39b5d2d07534"]},"geometry":{"type":"LineString","coordinates":[[-83.6185671,32.856983500000005],[-83.6187811,32.8569825]]},"id":"8b44c0a32950fff-17df69f8b91b9ebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6168885,32.8576381]},"id":"8f44c0a32805d9a-17f7fe54bc14adca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328055ad-13d7fe70c49a1d52","8f44c0a32805d9a-17f7fe54bc14adca"]},"geometry":{"type":"LineString","coordinates":[[-83.61684360000001,32.8577583],[-83.6168566,32.8576886],[-83.6168885,32.8576381]]},"id":"8a44c0a32807fff-139f2e664f6a61f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282c692-13d72c19b67ccc6a","8f44c0a32805d9a-17f7fe54bc14adca"]},"geometry":{"type":"LineString","coordinates":[[-83.6168885,32.8576381],[-83.61694150000001,32.8576262],[-83.6178021,32.85776]]},"id":"8944c0a3283ffff-1397fd3763ae1421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282c646-13d76bbd1504568e","8f44c0a3282c692-13d72c19b67ccc6a"]},"geometry":{"type":"LineString","coordinates":[[-83.6178021,32.85776],[-83.6179503,32.857783000000005]]},"id":"8b44c0a3282cfff-13df3beb645b97ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282c646-13d76bbd1504568e","8f44c0a3282caf3-139feb361faedf74"]},"geometry":{"type":"LineString","coordinates":[[-83.6179503,32.857783000000005],[-83.61816420000001,32.8578162],[-83.6181663,32.857676600000005]]},"id":"8a44c0a3282ffff-13dfbb5fc3c69168"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3282caf3-139feb361faedf74","8f44c0a3282c959-1797ab3426ac7d0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6181663,32.857676600000005],[-83.6181694,32.857480800000005]]},"id":"8b44c0a3282cfff-17d7bb35262f28e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32952176-17bfbb30ca1ac395","8f44c0a3282c959-1797ab3426ac7d0d"]},"geometry":{"type":"LineString","coordinates":[[-83.6181694,32.857480800000005],[-83.6181748,32.857130500000004]]},"id":"8a44c0a32957fff-17bf3b327a2e621a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32805d9a-17f7fe54bc14adca","8f44c0a32952176-17bfbb30ca1ac395"]},"geometry":{"type":"LineString","coordinates":[[-83.6181748,32.857130500000004],[-83.6170616,32.8571335],[-83.6170616,32.8574481],[-83.6170475,32.857480800000005],[-83.61698390000001,32.8575342],[-83.6168885,32.8576381]]},"id":"8844c0a329fffff-17f7bd0b11718e58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6176428,32.8591033]},"id":"8f44c0a3280d29b-139fbc7d4d09525a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32872182-13d77bc2d013ded7","8f44c0a3280d29b-139fbc7d4d09525a"]},"geometry":{"type":"LineString","coordinates":[[-83.61794110000001,32.8591879],[-83.61769770000001,32.859119400000004],[-83.6176428,32.8591033]]},"id":"8844c0a329fffff-13b72c201fc3bc7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6168105,32.8594215]},"id":"8f44c0a3280b4a5-17d77e85735c4695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3280b4a5-17d77e85735c4695","8f44c0a3280d29b-139fbc7d4d09525a"]},"geometry":{"type":"LineString","coordinates":[[-83.6176428,32.8591033],[-83.6175458,32.8590749],[-83.61692380000001,32.8590511],[-83.6168105,32.8594215]]},"id":"8a44c0a3280ffff-139fadb7f3ed8aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328e4ae0-17d7bea8a2e7c9e6","8f44c0a3280b4a5-17d77e85735c4695"]},"geometry":{"type":"LineString","coordinates":[[-83.6168105,32.8594215],[-83.6167542,32.8596057]]},"id":"8844c0a329fffff-179f2e97141fac8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3280d0e1-13bfec79a2d3a501","8f44c0a3280d29b-139fbc7d4d09525a"]},"geometry":{"type":"LineString","coordinates":[[-83.6176428,32.8591033],[-83.61764860000001,32.8589502]]},"id":"8b44c0a3280dfff-13dfec7b7b8f047c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3280d0e1-13bfec79a2d3a501","8f44c0a3282ab64-13b76c660acacbcc"]},"geometry":{"type":"LineString","coordinates":[[-83.61764860000001,32.8589502],[-83.61768000000001,32.858119]]},"id":"8944c0a3283ffff-13bf2c6fdc273ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3280b4a5-17d77e85735c4695","8f44c0a3282ab64-13b76c660acacbcc"]},"geometry":{"type":"LineString","coordinates":[[-83.61768000000001,32.858119],[-83.61702980000001,32.858110100000005],[-83.61693790000001,32.8581517],[-83.616786,32.8583505],[-83.6165916,32.858778],[-83.61656330000001,32.8589532],[-83.6165881,32.859122400000004],[-83.6166694,32.85925],[-83.6168105,32.8594215]]},"id":"8944c0a3283ffff-13b7ae4bb39b2f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61608840000001,32.8587208]},"id":"8f44c0a3281d580-139fb048c21c4ca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3281126c-13b731098a8724f4","8f44c0a3281d580-139fb048c21c4ca9"]},"geometry":{"type":"LineString","coordinates":[[-83.61578,32.858328],[-83.6160368,32.858638500000005],[-83.61608840000001,32.8587208]]},"id":"8a44c0a3281ffff-139ff0a68b2d79f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61599790000001,32.859434]},"id":"8f44c0a328e6d15-17df70815da169fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3281d580-139fb048c21c4ca9","8f44c0a328e6d15-17df70815da169fb"]},"geometry":{"type":"LineString","coordinates":[[-83.61608840000001,32.8587208],[-83.6164538,32.8593034],[-83.61599790000001,32.859434]]},"id":"8a44c0a3281ffff-13bfafe22a06af7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328e6562-17d7f090c324f9ad","8f44c0a328e6d15-17df70815da169fb"]},"geometry":{"type":"LineString","coordinates":[[-83.61599790000001,32.859434],[-83.6159732,32.859604700000006]]},"id":"8b44c0a328e6fff-179fb0891b53cf26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3281d580-139fb048c21c4ca9","8f44c0a328e6d15-17df70815da169fb"]},"geometry":{"type":"LineString","coordinates":[[-83.61599790000001,32.859434],[-83.61574350000001,32.859018500000005],[-83.61574350000001,32.8589621],[-83.61575760000001,32.8589205],[-83.6158106,32.858876],[-83.61608840000001,32.8587208]]},"id":"8a44c0a3281ffff-13f730cc9701d550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3281d580-139fb048c21c4ca9","8f44c0a328042db-13bf2eb2a1fa1a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.61608840000001,32.8587208],[-83.6162276,32.8586237],[-83.61639720000001,32.858436600000005],[-83.61671530000001,32.857884500000004],[-83.6167382,32.8577408]]},"id":"8944c0a3283ffff-1397bf5a8e396740"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c63546-13dffe55d35f5dcc","8f44c0a32c60d6e-13fffdbb3eaa779c"]},"geometry":{"type":"LineString","coordinates":[[-83.61058050000001,32.8582623],[-83.6105522,32.8588344],[-83.6103331,32.858825200000005]]},"id":"8a44c0a32c67fff-13f77dd97cfc960d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c63546-13dffe55d35f5dcc","8f44c0a32c66676-13ff7ec8bb01bf04"]},"geometry":{"type":"LineString","coordinates":[[-83.6103331,32.858825200000005],[-83.61012810000001,32.858816600000004],[-83.6101493,32.8582612]]},"id":"8a44c0a32c67fff-13df7ebfd3f6c296"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c4dc1a-17d7fd2510cead53","8f44c0a32c4d886-17df7cd1dd0f59f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6108207,32.860249200000005],[-83.6109539,32.8602519]]},"id":"8b44c0a32c4dfff-17dfbcfb76ca0c86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c4d886-17df7cd1dd0f59f0","8f44c0a32132714-179f7c44e2b4320d"]},"geometry":{"type":"LineString","coordinates":[[-83.6109539,32.8602519],[-83.61118370000001,32.860256400000004],[-83.61117940000001,32.8607735]]},"id":"8744c0a32ffffff-17dfbc593eeeb5f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6137085,32.8630269]},"id":"8f44c0a3217209a-179ff6183f7d7ccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3217209a-179ff6183f7d7ccd","8f44c0a3210980d-179776bd67ce5a65"]},"geometry":{"type":"LineString","coordinates":[[-83.6134442,32.862982800000005],[-83.6137085,32.8630269]]},"id":"8844c0a321fffff-1797366adf72f1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3217209a-179ff6183f7d7ccd","8f44c0a32171575-17f7341f3c8c604d"]},"geometry":{"type":"LineString","coordinates":[[-83.6137085,32.8630269],[-83.61451650000001,32.8631619]]},"id":"8a44c0a32177fff-17df351bb9960788"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614039,32.8627047]},"id":"8f44c0a32176352-17d77549a6b76fc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32175471-179733def14b6a31","8f44c0a32176352-17d77549a6b76fc6"]},"geometry":{"type":"LineString","coordinates":[[-83.6146193,32.862798600000005],[-83.614039,32.8627047]]},"id":"8a44c0a32177fff-17f7f4945e3b2479"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210db1e-17bfb64cd9107038","8f44c0a32176352-17d77549a6b76fc6"]},"geometry":{"type":"LineString","coordinates":[[-83.614039,32.8627047],[-83.61362430000001,32.8626376]]},"id":"8844c0a321fffff-17d775cb39abb13a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32176bae-13ffb532d1895c01","8f44c0a321292e6-13f77518037f5e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.61411840000001,32.8623222],[-83.6140755,32.8625289]]},"id":"8a44c0a32177fff-13bf35257d8aab44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32176bae-13ffb532d1895c01","8f44c0a32176352-17d77549a6b76fc6"]},"geometry":{"type":"LineString","coordinates":[[-83.6140755,32.8625289],[-83.614039,32.8627047]]},"id":"8b44c0a32176fff-179fb53e4972566e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32128686-13fff697a632e1b2","8f44c0a3212acf3-13b7779b1b52218c"]},"geometry":{"type":"LineString","coordinates":[[-83.6135046,32.8619487],[-83.6130895,32.8618007]]},"id":"8a44c0a3212ffff-13dfb719605aa7b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6126086,32.861629300000004]},"id":"8f44c0a321054d3-13b778c7a5386083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321054d3-13b778c7a5386083","8f44c0a3212acf3-13b7779b1b52218c"]},"geometry":{"type":"LineString","coordinates":[[-83.6130895,32.8618007],[-83.6126086,32.861629300000004]]},"id":"8944c0a3213ffff-13fff8316e28e43c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6127726,32.8624613]},"id":"8f44c0a3210ea15-13bf7861213dd518"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210d5b5-1797b756d063de38","8f44c0a3210ea15-13bf7861213dd518"]},"geometry":{"type":"LineString","coordinates":[[-83.61319870000001,32.8625753],[-83.6127726,32.8624613]]},"id":"8a44c0a3210ffff-13f7f7dbf77fbd7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61274920000001,32.862512800000005]},"id":"8f44c0a3210ead4-13dfb86fcc12b173"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210ead4-13dfb86fcc12b173","8f44c0a3210ea15-13bf7861213dd518"]},"geometry":{"type":"LineString","coordinates":[[-83.6127726,32.8624613],[-83.61274920000001,32.862512800000005]]},"id":"8c44c0a3210ebff-13df786877ce2c1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61264390000001,32.862745000000004]},"id":"8f44c0a3210a95d-17ffb8b19b6a8774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210ead4-13dfb86fcc12b173","8f44c0a3210a95d-17ffb8b19b6a8774"]},"geometry":{"type":"LineString","coordinates":[[-83.61274920000001,32.862512800000005],[-83.61264390000001,32.862745000000004]]},"id":"8a44c0a3210ffff-17b73890a902f66b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210c49d-13ff7843261874e9","8f44c0a3210ea15-13bf7861213dd518"]},"geometry":{"type":"LineString","coordinates":[[-83.6127726,32.8624613],[-83.6128206,32.8623525]]},"id":"8b44c0a3210efff-139f7852220230a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6128936,32.8621874]},"id":"8f44c0a3210cc96-139738158fb7dc45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210cc96-139738158fb7dc45","8f44c0a3210c49d-13ff7843261874e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6128206,32.8623525],[-83.6128936,32.8621874]]},"id":"8a44c0a3210ffff-13d7b82c5d7c7d9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61300410000001,32.8619373]},"id":"8f44c0a3212a4e2-13f7f7d075726875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210cc96-139738158fb7dc45","8f44c0a3212a4e2-13f7f7d075726875"]},"geometry":{"type":"LineString","coordinates":[[-83.6128936,32.8621874],[-83.61300410000001,32.8619373]]},"id":"8944c0a3213ffff-13d737f2f62e1e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210cc96-139738158fb7dc45","8f44c0a32103322-139f396742f79b09"]},"geometry":{"type":"LineString","coordinates":[[-83.6128936,32.8621874],[-83.61242200000001,32.8620291],[-83.6123532,32.8621971]]},"id":"8944c0a3213ffff-13f778d609b024fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3210ead4-13dfb86fcc12b173","8f44c0a32103322-139f396742f79b09"]},"geometry":{"type":"LineString","coordinates":[[-83.6123532,32.8621971],[-83.6122837,32.862366800000004],[-83.61274920000001,32.862512800000005]]},"id":"8944c0a3213ffff-1397f92309bbacd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6129741,32.8699729]},"id":"8f44c0a32380434-179737e33c0b0c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6126571,32.8699675]},"id":"8f44c0a32382d5e-1797b8a9536a5ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32382d5e-1797b8a9536a5ade","8f44c0a32380434-179737e33c0b0c16"]},"geometry":{"type":"LineString","coordinates":[[-83.6129741,32.8699729],[-83.6126571,32.8699675]]},"id":"8a44c0a32387fff-179778464c1a520e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a323b3a44-17bff88f50471403","8f44c0a32382d5e-1797b8a9536a5ade"]},"geometry":{"type":"LineString","coordinates":[[-83.6126571,32.8699675],[-83.61168640000001,32.869951],[-83.6116763,32.8692822],[-83.61177210000001,32.8692526],[-83.6127094,32.8692822],[-83.61269870000001,32.8694221]]},"id":"8944c0a323bffff-17b7ba0c7a1ef3a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a323b3a44-17bff88f50471403","8f44c0a32382d5e-1797b8a9536a5ade"]},"geometry":{"type":"LineString","coordinates":[[-83.61269870000001,32.8694221],[-83.6126571,32.8699675]]},"id":"8944c0a323bffff-17f7789c5b970531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6214721,32.8683093]},"id":"8f44c0a32aecad3-13977323f740fc8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32aecad3-13977323f740fc8f","8f44c0a32ae8172-13df63aa9190762d"]},"geometry":{"type":"LineString","coordinates":[[-83.6212567,32.868622800000004],[-83.6213743,32.8685239],[-83.62141530000001,32.868458000000004],[-83.62144520000001,32.868382700000005],[-83.6214721,32.8683093]]},"id":"8a44c0a32aeffff-13fff35b31621a9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32aecad3-13977323f740fc8f","8f44c0a32a50129-13f7a1e49dcba52a"]},"geometry":{"type":"LineString","coordinates":[[-83.6214721,32.8683093],[-83.6214901,32.868260400000004],[-83.6220018,32.8678588],[-83.6220242,32.867796000000006],[-83.6220242,32.8677207],[-83.62198310000001,32.8676392]]},"id":"8844c0a32bfffff-13d772586179d3a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32a50129-13f7a1e49dcba52a","8f44c0a32a50d8d-139ff249e3ec7637"]},"geometry":{"type":"LineString","coordinates":[[-83.62198310000001,32.8676392],[-83.62182100000001,32.8675055]]},"id":"8b44c0a32a50fff-13bfe21737d54e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32a56149-17bf62abb3421db5","8f44c0a32a50d8d-139ff249e3ec7637"]},"geometry":{"type":"LineString","coordinates":[[-83.62182100000001,32.8675055],[-83.62166450000001,32.867376400000005]]},"id":"8a44c0a32a57fff-17f7a27ac3de6c19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32a56c5c-17f76302d55b8cb5","8f44c0a32a56149-17bf62abb3421db5"]},"geometry":{"type":"LineString","coordinates":[[-83.62166450000001,32.867376400000005],[-83.6215251,32.867261400000004]]},"id":"8b44c0a32a56fff-179f72d74ff5b7a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6204666,32.867595200000004]},"id":"8f44c0a32ae0446-13d725986571eabc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae0446-13d725986571eabc","8f44c0a32a56c5c-17f76302d55b8cb5"]},"geometry":{"type":"LineString","coordinates":[[-83.6215251,32.867261400000004],[-83.6213668,32.8671309],[-83.6212883,32.8670995],[-83.62122860000001,32.8671121],[-83.62114270000001,32.867165400000005],[-83.62067950000001,32.8675513],[-83.62061220000001,32.867589],[-83.6205525,32.867595200000004],[-83.6204666,32.867595200000004]]},"id":"8844c0a32bfffff-179f344847524573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae0446-13d725986571eabc","8f44c0a32af50e1-17df6746a34444e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6204666,32.867595200000004],[-83.6204031,32.867573300000004],[-83.62031710000001,32.867516800000004],[-83.62006310000001,32.867300300000004],[-83.6200034,32.867284600000005],[-83.61990630000001,32.867303500000006],[-83.6197782,32.8673956]]},"id":"8944c0a32afffff-17d7e66e30b985a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae0446-13d725986571eabc","8f44c0a32ae140e-139764cfe947d38c"]},"geometry":{"type":"LineString","coordinates":[[-83.6204666,32.867595200000004],[-83.6205151,32.8676705],[-83.62078740000001,32.8678966]]},"id":"8a44c0a32ae7fff-13bfb5393b169092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae140e-139764cfe947d38c","8f44c0a32ae1773-13dfb47a28ed9e88"]},"geometry":{"type":"LineString","coordinates":[[-83.62078740000001,32.8678966],[-83.62092460000001,32.868010500000004]]},"id":"8b44c0a32ae1fff-13b724a50ce1567b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae1773-13dfb47a28ed9e88","8f44c0a32ae12eb-1397b422146c3977"]},"geometry":{"type":"LineString","coordinates":[[-83.62092460000001,32.868010500000004],[-83.6210655,32.8681275]]},"id":"8b44c0a32ae1fff-13ff244e2ba34667"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32ae12eb-1397b422146c3977","8f44c0a32aec093-13dff3b78b603f70"]},"geometry":{"type":"LineString","coordinates":[[-83.6210655,32.8681275],[-83.62116130000001,32.868207000000005],[-83.62123600000001,32.868244700000005]]},"id":"8a44c0a32aeffff-13bf63eeb56d67d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32aecad3-13977323f740fc8f","8f44c0a32aec093-13dff3b78b603f70"]},"geometry":{"type":"LineString","coordinates":[[-83.62123600000001,32.868244700000005],[-83.62135930000001,32.8682761],[-83.6214721,32.8683093]]},"id":"8b44c0a32aecfff-13f7736d9f90201b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a14475c66-17d75aafdd3c3c78","8f44c0a1455d788-13975934445b9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.59932760000001,32.8853073],[-83.5992973,32.8853789],[-83.59928430000001,32.8857433],[-83.5993407,32.8858307],[-83.5993711,32.8858963],[-83.5993668,32.886016500000004],[-83.59872030000001,32.8860256]]},"id":"8844c0a145fffff-17df798b445c97c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59852070000001,32.885317]},"id":"8f44c0a1455a135-139f7b2c93bd09fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a1455a135-139f7b2c93bd09fe","8f44c0a14475c66-17d75aafdd3c3c78"]},"geometry":{"type":"LineString","coordinates":[[-83.59872030000001,32.8860256],[-83.59859010000001,32.8860274],[-83.5985251,32.885998300000004],[-83.5984947,32.885940000000005],[-83.59852070000001,32.885317]]},"id":"8844c0a145fffff-17977b24a0c2c2fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59446870000001,32.895495000000004]},"id":"8f44c0a16a4b96e-17f765111c596606"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16a4b96e-17f765111c596606","8f44c0a16a4aa92-1797e63164e89a2f"]},"geometry":{"type":"LineString","coordinates":[[-83.59400740000001,32.8953612],[-83.59446870000001,32.895495000000004]]},"id":"8a44c0a16a4ffff-17bff5a14ba91e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5945858,32.8952444]},"id":"8f44c0a16a48a03-13d7e4c7ec1a8cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16a4b96e-17f765111c596606","8f44c0a16a48a03-13d7e4c7ec1a8cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.59446870000001,32.895495000000004],[-83.5942697,32.8959521],[-83.59463840000001,32.896084800000004],[-83.5947438,32.896084800000004],[-83.59490770000001,32.8959423],[-83.5950423,32.895785000000004],[-83.59510080000001,32.8956327],[-83.59510080000001,32.8954852],[-83.5949428,32.8952935],[-83.59477310000001,32.89521],[-83.5946677,32.8951952],[-83.5945858,32.8952444]]},"id":"8844c0a10dfffff-17f774743d1a78cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a16a4b96e-17f765111c596606","8f44c0a16a48a03-13d7e4c7ec1a8cfb"]},"geometry":{"type":"LineString","coordinates":[[-83.5945858,32.8952444],[-83.59446870000001,32.895495000000004]]},"id":"8a44c0a16a4ffff-179774ec8eaecda3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5923693,32.9173309]},"id":"8f44c0a106d321d-13b7fa31396af6f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a106d321d-13b7fa31396af6f8","8f44c0a13d2c726-13bf7bc2ebe1dc6c"]},"geometry":{"type":"LineString","coordinates":[[-83.5917266,32.9173139],[-83.59212140000001,32.9172962],[-83.5923693,32.9173309]]},"id":"8744c0a13ffffff-13b7faf9a2ae2aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59285460000001,32.9170145]},"id":"8f44c0a106d1164-13ff7901eca4128f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a106d321d-13b7fa31396af6f8","8f44c0a106d1164-13ff7901eca4128f"]},"geometry":{"type":"LineString","coordinates":[[-83.5923693,32.9173309],[-83.59249840000001,32.9173569],[-83.5925552,32.9173569],[-83.59300440000001,32.9171445],[-83.59285460000001,32.9170145]]},"id":"8944c0a106fffff-13f7e9460c0c60f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a106d321d-13b7fa31396af6f8","8f44c0a106d1164-13ff7901eca4128f"]},"geometry":{"type":"LineString","coordinates":[[-83.59285460000001,32.9170145],[-83.5923693,32.9173309]]},"id":"8a44c0a106d7fff-13d7f9999a86b021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6255412,32.839208400000004]},"id":"8f44c0a36841946-13ff5934c9ffc36d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841946-13ff5934c9ffc36d","8f44c0a3686e763-13d7f83307a79f73"]},"geometry":{"type":"LineString","coordinates":[[-83.6259536,32.838939100000005],[-83.6258992,32.8389054],[-83.6258667,32.8388934],[-83.62583310000001,32.8388926],[-83.6258047,32.8389071],[-83.6257782,32.838931],[-83.6255412,32.839208400000004]]},"id":"8944c0a3687ffff-13ff18bd5610b539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841171-13d759769ccc11b0","8f44c0a36841946-13ff5934c9ffc36d"]},"geometry":{"type":"LineString","coordinates":[[-83.6255412,32.839208400000004],[-83.6254359,32.8393316]]},"id":"8b44c0a36841fff-139fd955b2152e1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841946-13ff5934c9ffc36d","8f44c0a36845685-13bfd9b76da4c18d"]},"geometry":{"type":"LineString","coordinates":[[-83.6255412,32.839208400000004],[-83.6253322,32.8390828]]},"id":"8a44c0a36847fff-13d7197616b3ef91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36846ae9-13ff7ade6d21efb6","8f44c0a36845685-13bfd9b76da4c18d"]},"geometry":{"type":"LineString","coordinates":[[-83.6253322,32.8390828],[-83.6248602,32.8387991]]},"id":"8a44c0a36847fff-13d73a4ae7789b30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62700740000001,32.8397811]},"id":"8f44c0a36b34188-17df35a06f410d10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34816-1797f55b72e71bf7","8f44c0a36b34188-17df35a06f410d10"]},"geometry":{"type":"LineString","coordinates":[[-83.6271177,32.839655900000004],[-83.62700740000001,32.8397811]]},"id":"8b44c0a36b34fff-17bf157df20380ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6269031,32.839905900000005]},"id":"8f44c0a36b34781-17bf35e19b4dec3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34781-17bf35e19b4dec3a","8f44c0a36b34188-17df35a06f410d10"]},"geometry":{"type":"LineString","coordinates":[[-83.62700740000001,32.8397811],[-83.6269031,32.839905900000005]]},"id":"8b44c0a36b34fff-179735c0f3d5b962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6268467,32.8396832]},"id":"8f44c0a3686926a-17b71604d0246db6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34781-17bf35e19b4dec3a","8f44c0a3686926a-17b71604d0246db6"]},"geometry":{"type":"LineString","coordinates":[[-83.6269031,32.839905900000005],[-83.6267407,32.8398102],[-83.6268467,32.8396832]]},"id":"8a44c0a36b37fff-17ffd61c97f42acb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34816-1797f55b72e71bf7","8f44c0a3686926a-17b71604d0246db6"]},"geometry":{"type":"LineString","coordinates":[[-83.6268467,32.8396832],[-83.62695140000001,32.8395578],[-83.6271177,32.839655900000004]]},"id":"8744c0a36ffffff-13f735b64238db2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.627353,32.8399848]},"id":"8f44c0a36b35c29-17df94c86b9119d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b35c29-17df94c86b9119d7","8f44c0a36b3542c-17bf750b26e24232"]},"geometry":{"type":"LineString","coordinates":[[-83.627353,32.8399848],[-83.6272462,32.840111]]},"id":"8b44c0a36b35fff-1797f4e9c18d9fcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34781-17bf35e19b4dec3a","8f44c0a36b3542c-17bf750b26e24232"]},"geometry":{"type":"LineString","coordinates":[[-83.6272462,32.840111],[-83.6269031,32.839905900000005]]},"id":"8a44c0a36b37fff-17ff55766ad15030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34cb3370-17df775e3d12e419","8f44c0a34c952d0-13bfd7e5eab2a91c"]},"geometry":{"type":"LineString","coordinates":[[-83.6328477,32.8309751],[-83.6324857,32.8314183],[-83.6326306,32.8315021]]},"id":"8944c0a34cbffff-179f37deb17302f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34c952d0-13bfd7e5eab2a91c","8f44c0a34c8235c-13dfc6c88fe1311f"]},"geometry":{"type":"LineString","coordinates":[[-83.6326306,32.8315021],[-83.6330872,32.831766]]},"id":"8944c0a34cbffff-13ff57573b7a7189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3686a0f4-13bf1883c938818a","8f44c0a3686a554-139798caa781f365"]},"geometry":{"type":"LineString","coordinates":[[-83.62571100000001,32.8392201],[-83.6258244,32.839288100000005]]},"id":"8b44c0a3686afff-1397d8a73dcd8433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3684ddb1-17ff1833f33ca4c1","8f44c0a3686a0f4-13bf1883c938818a"]},"geometry":{"type":"LineString","coordinates":[[-83.6258244,32.839288100000005],[-83.6261953,32.8395103],[-83.6259521,32.8397969]]},"id":"8944c0a3687ffff-13bf77fd56f3427d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3684ddb1-17ff1833f33ca4c1","8f44c0a3684c02d-17b718a5799da45e"]},"geometry":{"type":"LineString","coordinates":[[-83.6259521,32.8397969],[-83.6257705,32.839688100000004]]},"id":"8b44c0a3684cfff-17d7186cbe678407"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3684cc8a-13df7919dd7da23b","8f44c0a3684c02d-17b718a5799da45e"]},"geometry":{"type":"LineString","coordinates":[[-83.6257705,32.839688100000004],[-83.6255843,32.8395767]]},"id":"8b44c0a3684cfff-179758dfa3c2cfd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36841222-13b779650bbcf7f9","8f44c0a3684cc8a-13df7919dd7da23b"]},"geometry":{"type":"LineString","coordinates":[[-83.6255843,32.8395767],[-83.62546400000001,32.839504600000005]]},"id":"8944c0a3687ffff-13dff93f7defb840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36871905-13b73ac04ff9d765","8f44c0a3687188a-13f77afa5bad2076"]},"geometry":{"type":"LineString","coordinates":[[-83.62490840000001,32.838073800000004],[-83.62481550000001,32.8381799]]},"id":"8c44c0a368719ff-13d75add4bd80001"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36871189-13bf1b26a27e6c0c","8f44c0a3687188a-13f77afa5bad2076"]},"geometry":{"type":"LineString","coordinates":[[-83.62481550000001,32.8381799],[-83.6247446,32.8382609]]},"id":"8b44c0a36871fff-139fdb1087e3b743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36871189-13bf1b26a27e6c0c","8f44c0a36846494-13bf5c0af16f8735"]},"geometry":{"type":"LineString","coordinates":[[-83.6247446,32.8382609],[-83.62470300000001,32.8382699],[-83.6246668,32.8382868],[-83.6246198,32.8383173],[-83.62446700000001,32.838504300000004],[-83.62445220000001,32.8385449],[-83.6244482,32.8385843],[-83.62443880000001,32.838619300000005],[-83.62442,32.8386508],[-83.6243793,32.838698]]},"id":"8944c0a3687ffff-13b7fba9c8624850"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36811304-17b762b103b55705","8f44c0a3681cc73-17ffa2340de2388f"]},"geometry":{"type":"LineString","coordinates":[[-83.621656,32.837047000000005],[-83.62185600000001,32.837169]]},"id":"8944c0a3683ffff-17dfa27289f1e877"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3680e4da-17ff60974eae4803","8f44c0a3681cc73-17ffa2340de2388f"]},"geometry":{"type":"LineString","coordinates":[[-83.62185600000001,32.837169],[-83.62197300000001,32.837246],[-83.622225,32.837395],[-83.62251640000001,32.837576600000006]]},"id":"8944c0a3683ffff-17ff6165deca7e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36808359-1397fecfebc7923b","8f44c0a3680e4da-17ff60974eae4803"]},"geometry":{"type":"LineString","coordinates":[[-83.62251640000001,32.837576600000006],[-83.622866,32.837783],[-83.623095,32.837911000000005],[-83.62324500000001,32.838003]]},"id":"8a44c0a3680ffff-17977fb37eae4e6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6237007,32.838571]},"id":"8f44c0a36854712-13fffdb31d6cdf75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36854712-13fffdb31d6cdf75","8f44c0a3680968c-13d7deabb1a9f9db"]},"geometry":{"type":"LineString","coordinates":[[-83.6233029,32.8383356],[-83.6237007,32.838571]]},"id":"8944c0a3687ffff-13b75e2f6f43331e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36854712-13fffdb31d6cdf75","8f44c0a3680968c-13d7deabb1a9f9db"]},"geometry":{"type":"LineString","coordinates":[[-83.6237007,32.838571],[-83.6238136,32.8384324],[-83.623412,32.838201600000005],[-83.6233029,32.8383356]]},"id":"8844c0a369fffff-13df1df81c3cb1b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36821040-13973dda84a58a64","8f44c0a369536de-17f7dc44aa197799"]},"geometry":{"type":"LineString","coordinates":[[-83.62363760000001,32.836157],[-83.62428700000001,32.8365436]]},"id":"8844c0a369fffff-13fffd0f96b9a4b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3682c551-17b7bd74295c6939","8f44c0a369536de-17f7dc44aa197799"]},"geometry":{"type":"LineString","coordinates":[[-83.62428700000001,32.8365436],[-83.62420110000001,32.8366455],[-83.6238014,32.8364075]]},"id":"8a44c0a3682ffff-17f79cd57f22154b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3682c551-17b7bd74295c6939","8f44c0a3682174c-13bf3e085860153f"]},"geometry":{"type":"LineString","coordinates":[[-83.6238014,32.8364075],[-83.62359760000001,32.836286300000005],[-83.6235643,32.8362434]]},"id":"8944c0a3683ffff-13f75dc1a5909f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6289672,32.8388057]},"id":"8f44c0a3448ccac-13ff90d789193185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448c6d4-13dff0e7853e4606","8f44c0a3448ccac-13ff90d789193185"]},"geometry":{"type":"LineString","coordinates":[[-83.6289672,32.8388057],[-83.62877370000001,32.839047300000004],[-83.6289416,32.839142200000005]]},"id":"8a44c0a3448ffff-13f77117168e1be7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448c6d4-13dff0e7853e4606","8f44c0a34488820-1397708a807d73ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6289416,32.839142200000005],[-83.62909040000001,32.8392263]]},"id":"8a44c0a3448ffff-13ff30b90c526338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448e01e-139fb1c4b6f4be80","8f44c0a34488128-13bf50bcc67def59"]},"geometry":{"type":"LineString","coordinates":[[-83.62901000000001,32.839320400000005],[-83.62858770000001,32.8390651]]},"id":"8a44c0a3448ffff-13ff9140b934a6ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448e01e-139fb1c4b6f4be80","8f44c0a3448e633-13f712010c4356a0"]},"geometry":{"type":"LineString","coordinates":[[-83.62858770000001,32.8390651],[-83.6284912,32.8391777]]},"id":"8b44c0a3448efff-13d7f1e2ee78fb42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3448e633-13f712010c4356a0","8f44c0a344880d6-1397d0f91f57a6a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6284912,32.8391777],[-83.62891350000001,32.8394332]]},"id":"8a44c0a3448ffff-13b7f17d1922db27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449d50d-13b7733d2138f85b","8f44c0a3449dc0a-139fb316a7c695df"]},"geometry":{"type":"LineString","coordinates":[[-83.62804700000001,32.839033],[-83.6279854,32.8391031]]},"id":"8b44c0a3449dfff-13b79329e11be5f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449d50d-13b7733d2138f85b","8f44c0a3449b112-17979463aa0a6070"]},"geometry":{"type":"LineString","coordinates":[[-83.6279854,32.8391031],[-83.6275571,32.8395904],[-83.62751420000001,32.8396393]]},"id":"8a44c0a3449ffff-13df13d066ef28be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6291765,32.8400339]},"id":"8f44c0a344d6c40-17ff3054bad6b0e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d0d34-17f74f93bc1cac4c","8f44c0a344d6c40-17ff3054bad6b0e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6294853,32.840219600000005],[-83.6291765,32.8400339]]},"id":"8a44c0a344d7fff-17b74ff431c9efc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6290998,32.8401239]},"id":"8f44c0a344d654c-17b77084afbddfc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d6c40-17ff3054bad6b0e5","8f44c0a344d654c-17b77084afbddfc9"]},"geometry":{"type":"LineString","coordinates":[[-83.6291765,32.8400339],[-83.6290998,32.8401239]]},"id":"8b44c0a344d6fff-179f506cbe6948e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b25256-17ff112d05682f23","8f44c0a344d654c-17b77084afbddfc9"]},"geometry":{"type":"LineString","coordinates":[[-83.6290998,32.8401239],[-83.6288304,32.84044]]},"id":"8844c0a345fffff-179f50d8d12e0d3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d6c40-17ff3054bad6b0e5","8f44c0a3448b719-17b7115cf1bc5179"]},"geometry":{"type":"LineString","coordinates":[[-83.6291765,32.8400339],[-83.6291784,32.8400024],[-83.628878,32.8398186],[-83.6288318,32.839823800000005],[-83.6287537,32.8399152]]},"id":"8844c0a345fffff-17bfb0d55a6a3f7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d654c-17b77084afbddfc9","8f44c0a3448b719-17b7115cf1bc5179"]},"geometry":{"type":"LineString","coordinates":[[-83.6287537,32.8399152],[-83.6290998,32.8401239]]},"id":"8844c0a345fffff-17f750f0db2c5cc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7123888,32.7414708]},"id":"8f44c0b04119b73-17df452d0f1105aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04119b73-17df452d0f1105aa","8f44c0b04119109-17dee5ad63c54b6f"]},"geometry":{"type":"LineString","coordinates":[[-83.7121834,32.741451000000005],[-83.7123888,32.7414708]]},"id":"8b44c0b04119fff-17d7556d35d486c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128098,32.7415114]},"id":"8f44c0b0410a36c-17f6e425e94f1bc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04119b73-17df452d0f1105aa","8f44c0b0410a36c-17f6e425e94f1bc6"]},"geometry":{"type":"LineString","coordinates":[[-83.7123888,32.7414708],[-83.7128098,32.7415114]]},"id":"8944c0b0413ffff-17f7f4a972a12fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71231800000001,32.741918500000004]},"id":"8f44c0b04026b6d-17f7555946470733"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04026b6d-17f7555946470733","8f44c0b0410a36c-17f6e425e94f1bc6"]},"geometry":{"type":"LineString","coordinates":[[-83.7128098,32.7415114],[-83.7127423,32.7419651],[-83.71231800000001,32.741918500000004]]},"id":"8844c0b041fffff-17bfc4851042eaad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04026b6d-17f7555946470733","8f44c0b0402616c-17f775d53f1ec799"]},"geometry":{"type":"LineString","coordinates":[[-83.71231800000001,32.741918500000004],[-83.7121197,32.741896700000005]]},"id":"8a44c0b04027fff-17fe459736cfa09a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04119b73-17df452d0f1105aa","8f44c0b04026b6d-17f7555946470733"]},"geometry":{"type":"LineString","coordinates":[[-83.71231800000001,32.741918500000004],[-83.7123888,32.7414708]]},"id":"8844c0b041fffff-17f775432e567916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04119b73-17df452d0f1105aa","8f44c0b0410a36c-17f6e425e94f1bc6"]},"geometry":{"type":"LineString","coordinates":[[-83.7123888,32.7414708],[-83.7124052,32.7413607],[-83.71282450000001,32.7414068],[-83.7128098,32.7415114]]},"id":"8944c0b0413ffff-17b664a29c327ceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71191200000001,32.7417755]},"id":"8f44c0b04026cad-179ff65700dc08a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402680e-17b7f5cce7780eec","8f44c0b04026cad-179ff65700dc08a3"]},"geometry":{"type":"LineString","coordinates":[[-83.71213300000001,32.7417919],[-83.71191200000001,32.7417755]]},"id":"8b44c0b04026fff-179ed611f1e1d3e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7118425,32.7415947]},"id":"8f44c0b0411ba33-17bef682733150aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0411ba33-17bef682733150aa","8f44c0b04026cad-179ff65700dc08a3"]},"geometry":{"type":"LineString","coordinates":[[-83.71191200000001,32.7417755],[-83.71182560000001,32.7418907],[-83.71148430000001,32.7418836],[-83.71149270000001,32.7416337],[-83.7115412,32.7415929],[-83.7118425,32.7415947]]},"id":"8844c0b041fffff-179ef6fc78c0df55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0411ba33-17bef682733150aa","8f44c0b04026cad-179ff65700dc08a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7118425,32.7415947],[-83.71191200000001,32.7417755]]},"id":"8844c0b041fffff-17f7766cb434b649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7142548,32.7414847]},"id":"8f44c0b0417079c-17f7f09ecd1f1280"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04170256-179f3ff3bdc60262","8f44c0b0417079c-17f7f09ecd1f1280"]},"geometry":{"type":"LineString","coordinates":[[-83.7145285,32.741573100000004],[-83.7142548,32.7414847]]},"id":"8b44c0b04170fff-17ffd04938e82137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0417079c-17f7f09ecd1f1280","8f44c0b04173cc0-17fec0c2a58ec176"]},"geometry":{"type":"LineString","coordinates":[[-83.7142548,32.7414847],[-83.71422360000001,32.741570800000005],[-83.71422360000001,32.7416234],[-83.7142207,32.741683200000004],[-83.7141974,32.7417224]]},"id":"8a44c0b04177fff-17bec0b09375a9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714016,32.7420275]},"id":"8f44c0b04154ac9-17b771340ec2346c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04173cc0-17fec0c2a58ec176","8f44c0b04154ac9-17b771340ec2346c"]},"geometry":{"type":"LineString","coordinates":[[-83.7141974,32.7417224],[-83.714016,32.7420275]]},"id":"8944c0b0417ffff-17d7e0fb506d812c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04154ac9-17b771340ec2346c","8f44c0b041558a0-17fff0ae83570580"]},"geometry":{"type":"LineString","coordinates":[[-83.714016,32.7420275],[-83.71422960000001,32.7421087]]},"id":"8a44c0b04157fff-17d6d0f1493f290f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04154ce5-17bed1db1c4aa84e","8f44c0b04154ac9-17b771340ec2346c"]},"geometry":{"type":"LineString","coordinates":[[-83.714016,32.7420275],[-83.71384830000001,32.741967800000005],[-83.71379710000001,32.741936700000004],[-83.7137658,32.7418721],[-83.71374870000001,32.7418057]]},"id":"8b44c0b04154fff-17974198f0d891f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0417079c-17f7f09ecd1f1280","8f44c0b04154ce5-17bed1db1c4aa84e"]},"geometry":{"type":"LineString","coordinates":[[-83.71374870000001,32.7418057],[-83.7136919,32.7415851],[-83.7136777,32.7414919],[-83.7136976,32.7413819],[-83.7137431,32.741324500000005],[-83.7138341,32.7413006],[-83.71398760000001,32.7412767],[-83.7140615,32.7412982],[-83.7143003,32.741396200000004],[-83.7142548,32.7414847]]},"id":"8844c0b041fffff-17d6d175d11594f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04152009-17d77318c3368bde","8f44c0b041563a9-1797c2acc310edd8"]},"geometry":{"type":"LineString","coordinates":[[-83.7132404,32.7424887],[-83.7133877,32.742238],[-83.7134132,32.7421464]]},"id":"8a44c0b04157fff-17fec2dd7c5c7259"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b041563a9-1797c2acc310edd8","8f44c0b04025142-17f6f3de353f253f"]},"geometry":{"type":"LineString","coordinates":[[-83.7134132,32.7421464],[-83.7134616,32.7419725],[-83.7134702,32.7416951],[-83.7134474,32.741676000000005],[-83.7133792,32.7416617],[-83.7130181,32.7416521],[-83.7129925,32.7416593],[-83.7129613,32.741680800000005],[-83.7129385,32.7417334],[-83.7129245,32.742125900000005]]},"id":"8844c0b041fffff-17b7d32fb82d2687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402528a-17f6f3fa5f5a288c","8f44c0b04025142-17f6f3de353f253f"]},"geometry":{"type":"LineString","coordinates":[[-83.7129245,32.742125900000005],[-83.71292150000001,32.7422117],[-83.7128795,32.742330700000004]]},"id":"8b44c0b04025fff-17b7d3e78a20727e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71524020000001,32.7439101]},"id":"8f44c0b0414b5b3-13dffe36e8e1d9c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0414a6f5-13b77ec4d92d66cf","8f44c0b0414b5b3-13dffe36e8e1d9c3"]},"geometry":{"type":"LineString","coordinates":[[-83.71501310000001,32.743835700000005],[-83.71524020000001,32.7439101]]},"id":"8a44c0b0414ffff-13bebe7de2348d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7152939,32.7438073]},"id":"8f44c0b0414a341-139fbe1557309e4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0414a341-139fbe1557309e4d","8f44c0b0414b5b3-13dffe36e8e1d9c3"]},"geometry":{"type":"LineString","coordinates":[[-83.71524020000001,32.7439101],[-83.7150886,32.744200400000004],[-83.7154433,32.7443315],[-83.71564860000001,32.743938400000005],[-83.7152939,32.7438073]]},"id":"8844c0b041fffff-13bf7de1dfa0c50c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0414a341-139fbe1557309e4d","8f44c0b0414b5b3-13dffe36e8e1d9c3"]},"geometry":{"type":"LineString","coordinates":[[-83.7152939,32.7438073],[-83.71524020000001,32.7439101]]},"id":"8a44c0b0414ffff-13bfbe261bd8f70c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714802,32.7442721]},"id":"8f44c0b04066a6b-13b63f48c7803bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04064c56-13fffeed43c4af3f","8f44c0b04066a6b-13b63f48c7803bbc"]},"geometry":{"type":"LineString","coordinates":[[-83.71494840000001,32.743977300000005],[-83.714802,32.7442721]]},"id":"8a44c0b04067fff-13d7ff1b09c5536d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7147006,32.7444762]},"id":"8f44c0b04060434-13b7bf882014ccd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04060434-13b7bf882014ccd6","8f44c0b04066a6b-13b63f48c7803bbc"]},"geometry":{"type":"LineString","coordinates":[[-83.714802,32.7442721],[-83.7147006,32.7444762]]},"id":"8a44c0b04067fff-13f7ff687f5e936a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7144741,32.7449322]},"id":"8f44c0b04044948-17dee015bd835384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04060434-13b7bf882014ccd6","8f44c0b04044948-17dee015bd835384"]},"geometry":{"type":"LineString","coordinates":[[-83.7147006,32.7444762],[-83.7144741,32.7449322]]},"id":"8a44c0b04067fff-17d63fcef4ef5a62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04044948-17dee015bd835384","8f44c0b040626db-17b7e09170dc4113"]},"geometry":{"type":"LineString","coordinates":[[-83.7144741,32.7449322],[-83.7142761,32.744863800000005]]},"id":"8b44c0b04044fff-17bf40539612f4a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040626db-17b7e09170dc4113","8f44c0b04071af3-17fec103a7fcb7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7142761,32.744863800000005],[-83.71409340000001,32.7448008]]},"id":"8944c0b0407ffff-179670ca8a20a3f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04071011-17d6c1719f78f59a","8f44c0b04071af3-17fec103a7fcb7ca"]},"geometry":{"type":"LineString","coordinates":[[-83.71409340000001,32.7448008],[-83.71391750000001,32.74474]]},"id":"8b44c0b04071fff-17ffc13aa331a548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040715a8-17bff1e80de6d6fd","8f44c0b04071011-17d6c1719f78f59a"]},"geometry":{"type":"LineString","coordinates":[[-83.71391750000001,32.74474],[-83.713728,32.744674700000004]]},"id":"8b44c0b04071fff-17d661acc68fb5e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04070643-1796e269b65020c5","8f44c0b040715a8-17bff1e80de6d6fd"]},"geometry":{"type":"LineString","coordinates":[[-83.713728,32.744674700000004],[-83.7135205,32.744603000000005]]},"id":"8a44c0b04077fff-17975228dc682b1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04070643-1796e269b65020c5","8f44c0b04072b58-13df62dc4349fc12"]},"geometry":{"type":"LineString","coordinates":[[-83.7135205,32.744603000000005],[-83.71333720000001,32.744539800000005]]},"id":"8a44c0b04077fff-13ff62a2f7fb0049"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04072176-13bfe35489e13115","8f44c0b04072b58-13df62dc4349fc12"]},"geometry":{"type":"LineString","coordinates":[[-83.71333720000001,32.744539800000005],[-83.71314480000001,32.744473400000004]]},"id":"8b44c0b04072fff-13d6e318623eb9d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71300140000001,32.7444239]},"id":"8f44c0b04072cc5-1396f3ae25056305"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04072cc5-1396f3ae25056305","8f44c0b04072176-13bfe35489e13115"]},"geometry":{"type":"LineString","coordinates":[[-83.71314480000001,32.744473400000004],[-83.71300140000001,32.7444239]]},"id":"8b44c0b04072fff-13b6738155c491fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133182,32.7437922]},"id":"8f44c0b0402974c-139662e8250b94c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402974c-139662e8250b94c6","8f44c0b04072cc5-1396f3ae25056305"]},"geometry":{"type":"LineString","coordinates":[[-83.71300140000001,32.7444239],[-83.7133182,32.7437922]]},"id":"8844c0b041fffff-13dfd34b257b7a49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7133416,32.7437455]},"id":"8f44c0b040290c9-13fef2d9811725d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040290c9-13fef2d9811725d2","8f44c0b0402974c-139662e8250b94c6"]},"geometry":{"type":"LineString","coordinates":[[-83.7133182,32.7437922],[-83.7133416,32.7437455]]},"id":"8b44c0b04029fff-13f7d2e0d74f0c0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040290c9-13fef2d9811725d2","8f44c0b0402990d-13bed28221d45949"]},"geometry":{"type":"LineString","coordinates":[[-83.7133416,32.7437455],[-83.7134814,32.7434669]]},"id":"8b44c0b04029fff-1397e2add708398f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0415bd41-13d670d4d6a9e8fd","8f44c0b0415b79b-1397e13acca90d5c"]},"geometry":{"type":"LineString","coordinates":[[-83.71416830000001,32.7437059],[-83.7140052,32.7439934]]},"id":"8b44c0b0415bfff-13be5107c1a4817e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0415b79b-1397e13acca90d5c","8f44c0b04074ba1-13f77197af644d22"]},"geometry":{"type":"LineString","coordinates":[[-83.7140052,32.7439934],[-83.7138566,32.7439379]]},"id":"8a44c0b04077fff-13f6d1693585329f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04074ba1-13f77197af644d22","8f44c0b04074c6a-13b7f206be4b1075"]},"geometry":{"type":"LineString","coordinates":[[-83.7138566,32.7439379],[-83.7136789,32.743871500000004]]},"id":"8b44c0b04074fff-13de71cf3101deb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04029343-139f427daf24f847","8f44c0b04074c6a-13b7f206be4b1075"]},"geometry":{"type":"LineString","coordinates":[[-83.7136789,32.743871500000004],[-83.7134886,32.743800400000005]]},"id":"8a44c0b04077fff-13b7c24230c2fb09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b040290c9-13fef2d9811725d2","8f44c0b04029343-139f427daf24f847"]},"geometry":{"type":"LineString","coordinates":[[-83.7134886,32.743800400000005],[-83.7133416,32.7437455]]},"id":"8b44c0b04029fff-13fe62ab98b9fde4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402974c-139662e8250b94c6","8f44c0b0402d689-1397e2ee38496239"]},"geometry":{"type":"LineString","coordinates":[[-83.7133182,32.7437922],[-83.71326880000001,32.7437601],[-83.7132325,32.7437351],[-83.71320610000001,32.7436906],[-83.71320610000001,32.7436518],[-83.71330850000001,32.743404600000005]]},"id":"8a44c0b0402ffff-1396c3111578223a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402990d-13bed28221d45949","8f44c0b0402d689-1397e2ee38496239"]},"geometry":{"type":"LineString","coordinates":[[-83.71330850000001,32.743404600000005],[-83.7134814,32.7434669]]},"id":"8a44c0b0402ffff-13b762b829e76cbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7150761,32.7451372]},"id":"8f44c0b0406ec2b-17defe9d7cce1c23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04072cc5-1396f3ae25056305","8f44c0b0406ec2b-17defe9d7cce1c23"]},"geometry":{"type":"LineString","coordinates":[[-83.71300140000001,32.7444239],[-83.7128891,32.7446822],[-83.7128792,32.7447822],[-83.71296170000001,32.7451294],[-83.7130575,32.745237700000004],[-83.71327210000001,32.7453543],[-83.7145402,32.745832],[-83.7146359,32.745854300000005],[-83.7147284,32.7458487],[-83.7148143,32.745820900000005],[-83.71485390000001,32.7457682],[-83.7148473,32.7456765],[-83.7148506,32.7455432],[-83.7149497,32.7453821],[-83.7150761,32.7451372]]},"id":"8944c0b0407ffff-17f77181e5f1a7d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04066a6b-13b63f48c7803bbc","8f44c0b0406ec2b-17defe9d7cce1c23"]},"geometry":{"type":"LineString","coordinates":[[-83.7150761,32.7451372],[-83.7152336,32.744832200000005],[-83.7152799,32.7447405],[-83.71528980000001,32.7446489],[-83.71527660000001,32.7445572],[-83.7151742,32.744421100000004],[-83.71504870000001,32.7443544],[-83.714802,32.7442721]]},"id":"8944c0b0407ffff-17963e7665779617"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04044948-17dee015bd835384","8f44c0b04063734-17ffbf979dbef26b"]},"geometry":{"type":"LineString","coordinates":[[-83.7144741,32.7449322],[-83.7146759,32.7450009]]},"id":"8a44c0b04067fff-17f63fd6a1690eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71487760000001,32.7450696]},"id":"8f44c0b0406331d-17b6bf198bf46cc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04063734-17ffbf979dbef26b","8f44c0b0406331d-17b6bf198bf46cc0"]},"geometry":{"type":"LineString","coordinates":[[-83.7146759,32.7450009],[-83.71487760000001,32.7450696]]},"id":"8b44c0b04063fff-179f3f5897c88b69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0406ec2b-17defe9d7cce1c23","8f44c0b0406331d-17b6bf198bf46cc0"]},"geometry":{"type":"LineString","coordinates":[[-83.71487760000001,32.7450696],[-83.7150761,32.7451372]]},"id":"8944c0b0407ffff-17bfbedb8e28a043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0406331d-17b6bf198bf46cc0","8f44c0b04060019-13de7f10592b7993"]},"geometry":{"type":"LineString","coordinates":[[-83.71487760000001,32.7450696],[-83.7150883,32.7446211],[-83.7148923,32.7445478]]},"id":"8a44c0b04067fff-17f7fed65c5f68ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04060434-13b7bf882014ccd6","8f44c0b04060019-13de7f10592b7993"]},"geometry":{"type":"LineString","coordinates":[[-83.7148923,32.7445478],[-83.7147006,32.7444762]]},"id":"8b44c0b04060fff-13de3f4c4032edc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72105900000001,32.7442121]},"id":"8f44c0b04a00269-139eb0022486ca6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a01453-13f66ff38d3bbb58","8f44c0b04a00269-139eb0022486ca6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7210824,32.7443716],[-83.72105900000001,32.7442121]]},"id":"8b44c0b04a01fff-13be7ffad6fab77a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72063630000001,32.744264900000005]},"id":"8f44c0b04a03d8a-13bfb10a58a98284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a00269-139eb0022486ca6c","8f44c0b04a03d8a-13bfb10a58a98284"]},"geometry":{"type":"LineString","coordinates":[[-83.72105900000001,32.7442121],[-83.72063630000001,32.744264900000005]]},"id":"8a44c0b04a07fff-139f30863c205337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a15b6d-1396f1bff27e2069","8f44c0b04a03d8a-13bfb10a58a98284"]},"geometry":{"type":"LineString","coordinates":[[-83.72063630000001,32.744264900000005],[-83.72055040000001,32.7438622],[-83.7205339,32.7438233],[-83.72050420000001,32.7438066],[-83.72034570000001,32.743790000000004]]},"id":"8a44c0b04a07fff-13f7f143a94962ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a15b6d-1396f1bff27e2069","8f44c0b04a03d8a-13bfb10a58a98284"]},"geometry":{"type":"LineString","coordinates":[[-83.72034570000001,32.743790000000004],[-83.7201146,32.7438316],[-83.7200617,32.743898300000005],[-83.7200584,32.743981600000005],[-83.7201113,32.7441094],[-83.7203061,32.744226000000005],[-83.72049100000001,32.7442538],[-83.72063630000001,32.744264900000005]]},"id":"8944c0b04a3ffff-13bfb1f7d3746e22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a03d8a-13bfb10a58a98284","8f44c0b04a03566-13f770ffa58f0dd5"]},"geometry":{"type":"LineString","coordinates":[[-83.72063630000001,32.744264900000005],[-83.7206534,32.7443765]]},"id":"8b44c0b04a03fff-13d67104f9ccf970"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a01c1c-13ff6fc86f213de6","8f44c0b04a00269-139eb0022486ca6c"]},"geometry":{"type":"LineString","coordinates":[[-83.72105900000001,32.7442121],[-83.72115140000001,32.7441844]]},"id":"8b44c0b04a01fff-1397ffe5425594c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a01c1c-13ff6fc86f213de6","8f44c0b04a2a725-13bf6e870ed21d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.72115140000001,32.7441844],[-83.7216435,32.7441288],[-83.72166560000001,32.744283800000005]]},"id":"8944c0b04a3ffff-13f77f080775a3d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a763a5-17f6ac7ac7981c8a","8f44c0b04a72960-17d6ac7642b2bf41"]},"geometry":{"type":"LineString","coordinates":[[-83.7225116,32.7451402],[-83.7225044,32.744967200000005]]},"id":"8a44c0b04a77fff-179ebc788deae000"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722488,32.744573100000004]},"id":"8f44c0b04a29621-13fe3c850ea1a0cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a763a5-17f6ac7ac7981c8a","8f44c0b04a29621-13fe3c850ea1a0cb"]},"geometry":{"type":"LineString","coordinates":[[-83.7225044,32.744967200000005],[-83.722488,32.744573100000004]]},"id":"8844c0b04bfffff-17ff6c7fe6276537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72180080000001,32.7445971]},"id":"8f44c0b04a0cb33-13ff3e328b19505a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a29621-13fe3c850ea1a0cb","8f44c0b04a0cb33-13ff3e328b19505a"]},"geometry":{"type":"LineString","coordinates":[[-83.722488,32.744573100000004],[-83.7224855,32.7445149],[-83.7224723,32.7444788],[-83.7224393,32.7444482],[-83.7218581,32.7444788],[-83.72181850000001,32.744489900000005],[-83.72179870000001,32.7445315],[-83.72180080000001,32.7445971]]},"id":"8944c0b04a3ffff-13b6fd5cc596fc96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a0d509-17d76e2b91bb76fe","8f44c0b04a0cb33-13ff3e328b19505a"]},"geometry":{"type":"LineString","coordinates":[[-83.72180080000001,32.7445971],[-83.7218119,32.744939800000004]]},"id":"8a44c0b04a0ffff-17fe7e2f063f580a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a0d509-17d76e2b91bb76fe","8f44c0b04a0882c-17d73ea32d501910"]},"geometry":{"type":"LineString","coordinates":[[-83.7218119,32.744939800000004],[-83.72162060000001,32.7449457]]},"id":"8a44c0b04a0ffff-17d76e675c1dcd62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a29621-13fe3c850ea1a0cb","8f44c0b04a0cb33-13ff3e328b19505a"]},"geometry":{"type":"LineString","coordinates":[[-83.722488,32.744573100000004],[-83.72180080000001,32.7445971]]},"id":"8944c0b04a3ffff-13f7bd5bc40a0e02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a0c111-17977eac12c50449","8f44c0b04a0cb33-13ff3e328b19505a"]},"geometry":{"type":"LineString","coordinates":[[-83.72180080000001,32.7445971],[-83.7216063,32.7446039]]},"id":"8b44c0b04a0cfff-13ff7e6f57982586"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7212439,32.744617600000005]},"id":"8f44c0b04a0e823-179e2f8e94da97bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b04a0c111-17977eac12c50449","8f44c0b04a0e823-179e2f8e94da97bb"]},"geometry":{"type":"LineString","coordinates":[[-83.7216063,32.7446039],[-83.7212439,32.744617600000005]]},"id":"8a44c0b04a0ffff-1797ef1d5b557b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6801458,32.7820406]},"id":"8f44c0b1c9a866b-17f7f3e4ee668ac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c8a0b83-139ef70271df82f2","8f44c0b1c9a866b-17f7f3e4ee668ac1"]},"geometry":{"type":"LineString","coordinates":[[-83.6788697,32.7837583],[-83.6811031,32.783784700000005],[-83.6811393,32.7820532],[-83.6801458,32.7820406]]},"id":"8844c0b1c9fffff-139fb2fea3a6f8d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67928640000001,32.7820296]},"id":"8f44c0b1c981144-17f695fe08962244"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c981144-17f695fe08962244","8f44c0b1c9a866b-17f7f3e4ee668ac1"]},"geometry":{"type":"LineString","coordinates":[[-83.6801458,32.7820406],[-83.67928640000001,32.7820296]]},"id":"8944c0b1c9bffff-17f7f4f17c705c4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c983c1d-17dff78dc5e9a93f","8f44c0b1c981144-17f695fe08962244"]},"geometry":{"type":"LineString","coordinates":[[-83.67928640000001,32.7820296],[-83.67864680000001,32.7820215]]},"id":"8a44c0b1c987fff-17de96c5e1a13520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c9a801e-17ffb3dead85ba30","8f44c0b1c9a866b-17f7f3e4ee668ac1"]},"geometry":{"type":"LineString","coordinates":[[-83.6801458,32.7820406],[-83.68015580000001,32.7818491]]},"id":"8b44c0b1c9a8fff-17bf93e1c2c9dd31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c9a801e-17ffb3dead85ba30","8f44c0b1c9819a5-17feb5fbe80760f5"]},"geometry":{"type":"LineString","coordinates":[[-83.68015580000001,32.7818491],[-83.6801665,32.7816443],[-83.679411,32.7816443],[-83.679292,32.7817226],[-83.6792898,32.7818442]]},"id":"8944c0b1c9bffff-1797f4dbc9a242d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c9819a5-17feb5fbe80760f5","8f44c0b1c981144-17f695fe08962244"]},"geometry":{"type":"LineString","coordinates":[[-83.6792898,32.7818442],[-83.67928640000001,32.7820296]]},"id":"8b44c0b1c981fff-17b695fcf5b472fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c861da5-17bfc86903f7c6bc","8f44c0b1c86a825-13ffb86ddd6ff1c4"]},"geometry":{"type":"LineString","coordinates":[[-83.6848496,32.7854228],[-83.6848458,32.786309800000005],[-83.68484190000001,32.7863507]]},"id":"8944c0b1c87ffff-13dfc86a51de722e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c84984a-1796c811d47fc616","8f44c0b1c86a825-13ffb86ddd6ff1c4"]},"geometry":{"type":"LineString","coordinates":[[-83.68484190000001,32.7863507],[-83.6848325,32.786448400000005],[-83.6848236,32.7869465],[-83.6849528,32.787115],[-83.68498910000001,32.787636400000004]]},"id":"8744c0b1cffffff-13ffd84d0964006c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6850062,32.787882800000006]},"id":"8f44c0b1cb14c96-17bec8072c65234e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c84984a-1796c811d47fc616","8f44c0b1cb14c96-17bec8072c65234e"]},"geometry":{"type":"LineString","coordinates":[[-83.68498910000001,32.787636400000004],[-83.6850062,32.787882800000006]]},"id":"8944c0b1cb3ffff-17dfc80c726e9bff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673961,32.7854757]},"id":"8f44c0b1c534080-17def3057c851fdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c536035-17f7b408572431dc","8f44c0b1c534080-17def3057c851fdd"]},"geometry":{"type":"LineString","coordinates":[[-83.66698190000001,32.7855481],[-83.66724710000001,32.7854851],[-83.6673961,32.7854757]]},"id":"8a44c0b1c537fff-17dff387a0f57feb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688123,32.786123700000005]},"id":"8f44c0b1c520375-13dfff9057451ae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c520375-13dfff9057451ae2","8f44c0b1c534080-17def3057c851fdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6673961,32.7854757],[-83.6675113,32.7854685],[-83.66882550000001,32.785560100000005],[-83.6688123,32.786123700000005]]},"id":"8744c0b1cffffff-139ef0c9c0ae3f60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6674361,32.785805700000004]},"id":"8f44c0b1c5308e2-139eb2ec7c19c317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c5305a9-13bef3a6dd98494f","8f44c0b1c5308e2-139eb2ec7c19c317"]},"geometry":{"type":"LineString","coordinates":[[-83.6671379,32.7858383],[-83.6673162,32.7857995],[-83.6674361,32.785805700000004]]},"id":"8b44c0b1c530fff-139ef34a2e5c91aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c5308e2-139eb2ec7c19c317","8f44c0b1c534080-17def3057c851fdd"]},"geometry":{"type":"LineString","coordinates":[[-83.6674361,32.785805700000004],[-83.6673961,32.7854757]]},"id":"8a44c0b1c537fff-13b7f2f8f686b6ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c532294-13ffb4560a835780","8f44c0b1c5339a9-13f7f33c7ce28a25"]},"geometry":{"type":"LineString","coordinates":[[-83.6673081,32.7861564],[-83.6668576,32.786165600000004]]},"id":"8a44c0b1c537fff-13f6b3c94d92db9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c532294-13ffb4560a835780","8f44c0b11249c2c-13f6b5a07edffebf"]},"geometry":{"type":"LineString","coordinates":[[-83.6668576,32.786165600000004],[-83.66632580000001,32.7861764],[-83.66632890000001,32.7859488]]},"id":"8844c0b1c5fffff-13feb52db0959d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1124d4e9-13fff59e875bf7d2","8f44c0b11249c2c-13f6b5a07edffebf"]},"geometry":{"type":"LineString","coordinates":[[-83.66632890000001,32.7859488],[-83.66633200000001,32.7857302]]},"id":"8a44c0b1124ffff-13bfb59f86a5d956"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6697549,32.7906706]},"id":"8f44c0b1c55bb8b-17ffad433e1531ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55bb8b-17ffad433e1531ab","8f44c0b1c55b289-17f7fd88c572c4be"]},"geometry":{"type":"LineString","coordinates":[[-83.6696436,32.7908631],[-83.6697549,32.7906706]]},"id":"8b44c0b1c55bfff-17b7fd65fc256151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6701852,32.789927]},"id":"8f44c0b1c55dd74-13beec36497830a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55bb8b-17ffad433e1531ab","8f44c0b1c55dd74-13beec36497830a1"]},"geometry":{"type":"LineString","coordinates":[[-83.6697549,32.7906706],[-83.6701852,32.789927]]},"id":"8a44c0b1c55ffff-1396ecbcc6a1c279"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55dd74-13beec36497830a1","8f44c0b1c55cae0-1397fc92f40a26c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6701852,32.789927],[-83.6700369,32.789865500000005]]},"id":"8a44c0b1c55ffff-1397bc64af8a5ade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55cae0-1397fc92f40a26c3","8f44c0b1c55c023-13d6bd01131a1197"]},"geometry":{"type":"LineString","coordinates":[[-83.6700369,32.789865500000005],[-83.6698607,32.7897923]]},"id":"8b44c0b1c55cfff-13ffbcca004fdefa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55c52e-13bffd66d7470d5b","8f44c0b1c55c023-13d6bd01131a1197"]},"geometry":{"type":"LineString","coordinates":[[-83.6698607,32.7897923],[-83.6696979,32.7897247]]},"id":"8b44c0b1c55cfff-13bfbd33f88d6716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6694315,32.7897662]},"id":"8f44c0b1c55e8a5-13d7ee0d51d3ad74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55e8a5-13d7ee0d51d3ad74","8f44c0b1c55c52e-13bffd66d7470d5b"]},"geometry":{"type":"LineString","coordinates":[[-83.6696979,32.7897247],[-83.6696304,32.7896966],[-83.6694315,32.7897662]]},"id":"8a44c0b1c55ffff-13befdb9bf092c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55e8a5-13d7ee0d51d3ad74","8f44c0b1c55e50c-13f7ee9688e40cee"]},"geometry":{"type":"LineString","coordinates":[[-83.6694315,32.7897662],[-83.669212,32.789843000000005]]},"id":"8b44c0b1c55efff-13dfee51f9d418d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55e50c-13f7ee9688e40cee","8f44c0b1c42d766-139eff72ce81bef4"]},"geometry":{"type":"LineString","coordinates":[[-83.669212,32.789843000000005],[-83.66894020000001,32.7899381],[-83.66894020000001,32.7901047],[-83.6688596,32.7901103]]},"id":"8844c0b1c5fffff-13bfaf168a4f980e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c428a33-13b6f01e88f84aec","8f44c0b1c42d766-139eff72ce81bef4"]},"geometry":{"type":"LineString","coordinates":[[-83.6688596,32.7901103],[-83.6685848,32.7901295]]},"id":"8a44c0b1c42ffff-13b6ffc8a471715a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55bb8b-17ffad433e1531ab","8f44c0b1c55b1a0-17d6bdb659b3b958"]},"geometry":{"type":"LineString","coordinates":[[-83.6697549,32.7906706],[-83.66957070000001,32.790604900000005]]},"id":"8b44c0b1c55bfff-17f6ad7cc8eb537e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55b1a0-17d6bdb659b3b958","8f44c0b1c55a269-17bfee165ee26696"]},"geometry":{"type":"LineString","coordinates":[[-83.66957070000001,32.790604900000005],[-83.6694171,32.79055]]},"id":"8b44c0b1c55bfff-17befde65d952dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55a74c-1797be8d95cc26e8","8f44c0b1c55a269-17bfee165ee26696"]},"geometry":{"type":"LineString","coordinates":[[-83.6694171,32.79055],[-83.6692263,32.7904819]]},"id":"8a44c0b1c55ffff-179efe51fc0b8e6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6690779,32.790446]},"id":"8f44c0b1c55a79c-13feeeea525f2fdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55a74c-1797be8d95cc26e8","8f44c0b1c55a79c-13feeeea525f2fdc"]},"geometry":{"type":"LineString","coordinates":[[-83.6692263,32.7904819],[-83.66914170000001,32.790451700000006],[-83.6690779,32.790446]]},"id":"8c44c0b1c55a7ff-13f7bebb520d2792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55a79c-13feeeea525f2fdc","8f44c0b1c429b0b-13f7af2379e022f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6690779,32.790446],[-83.6689865,32.7904378]]},"id":"8844c0b1c5fffff-13febf06e1c0be55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c429b0b-13f7af2379e022f5","8f44c0b1c474c9d-17ffff2deca5f22c"]},"geometry":{"type":"LineString","coordinates":[[-83.6689865,32.7904378],[-83.6689698,32.7906551]]},"id":"8844c0b1c5fffff-17bfbf28b896b8c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55e8a5-13d7ee0d51d3ad74","8f44c0b1c55ac50-13f7fea547089654"]},"geometry":{"type":"LineString","coordinates":[[-83.6694315,32.7897662],[-83.66918840000001,32.7902335]]},"id":"8a44c0b1c55ffff-13d7fe594f3c8dbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c55a79c-13feeeea525f2fdc","8f44c0b1c55ac50-13f7fea547089654"]},"geometry":{"type":"LineString","coordinates":[[-83.66918840000001,32.7902335],[-83.6690779,32.790446]]},"id":"8b44c0b1c55afff-13befec7c2f367fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6707118,32.7901382]},"id":"8f44c0b1c54e382-13beeaed2865e804"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6712055,32.790279600000005]},"id":"8f44c0b1c54884a-1396e9b8951f5db3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54884a-1396e9b8951f5db3","8f44c0b1c54e382-13beeaed2865e804"]},"geometry":{"type":"LineString","coordinates":[[-83.6707118,32.7901382],[-83.6708885,32.790163],[-83.6712055,32.790279600000005]]},"id":"8a44c0b1c54ffff-13d7ba50fda43480"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6712732,32.790164100000005]},"id":"8f44c0b1c54d5b3-13beb98e429d2fab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54884a-1396e9b8951f5db3","8f44c0b1c54d5b3-13beb98e429d2fab"]},"geometry":{"type":"LineString","coordinates":[[-83.6712055,32.790279600000005],[-83.6712732,32.790164100000005]]},"id":"8a44c0b1c54ffff-13f6b9a367001f8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d8a6-139fe8d445fafcd4","8f44c0b1c54d5b3-13beb98e429d2fab"]},"geometry":{"type":"LineString","coordinates":[[-83.6712732,32.790164100000005],[-83.6713211,32.790082500000004],[-83.67157080000001,32.7900918]]},"id":"8a44c0b1c54ffff-1396b93bd0fd5ca6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d8a6-139fe8d445fafcd4","8f44c0b1c0b6430-1396e84135ddfdb3"]},"geometry":{"type":"LineString","coordinates":[[-83.67157080000001,32.7900918],[-83.67180610000001,32.7901006]]},"id":"8944c0b1c57ffff-1396a88acc2c6163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b6173-139ee79ff8bb6b74","8f44c0b1c0b6430-1396e84135ddfdb3"]},"geometry":{"type":"LineString","coordinates":[[-83.67180610000001,32.7901006],[-83.6720641,32.7901102]]},"id":"8b44c0b1c0b6fff-1397e7f091130d29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6722958,32.7902372]},"id":"8f44c0b1c0b0d04-13fee70f2373a286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b0d04-13fee70f2373a286","8f44c0b1c0b6173-139ee79ff8bb6b74"]},"geometry":{"type":"LineString","coordinates":[[-83.6720641,32.7901102],[-83.6722958,32.7902372]]},"id":"8a44c0b1c0b7fff-13d6b7579a7f5add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b0d04-13fee70f2373a286","8f44c0b1c0b0870-13b7e68d317c882b"]},"geometry":{"type":"LineString","coordinates":[[-83.6722958,32.7902372],[-83.67250370000001,32.790351]]},"id":"8b44c0b1c0b0fff-139ff6ce29b9acdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54bd8a-17d6aabdd55045ac","8f44c0b1c0940f4-17dfe86e83139ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.67173360000001,32.7910294],[-83.6709596,32.7906822],[-83.6707875,32.7906082]]},"id":"8744c0b1cffffff-17d7b995ebe2e8cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67063680000001,32.790543400000004]},"id":"8f44c0b1c54a316-17bfab1c01d3f01a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54bd8a-17d6aabdd55045ac","8f44c0b1c54a316-17bfab1c01d3f01a"]},"geometry":{"type":"LineString","coordinates":[[-83.6707875,32.7906082],[-83.67063680000001,32.790543400000004]]},"id":"8a44c0b1c54ffff-17bfeaece4c4d421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67052670000001,32.7904961]},"id":"8f44c0b1c54a0f2-179ebb60db510e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54a316-17bfab1c01d3f01a","8f44c0b1c54a0f2-179ebb60db510e49"]},"geometry":{"type":"LineString","coordinates":[[-83.67063680000001,32.790543400000004],[-83.67052670000001,32.7904961]]},"id":"8b44c0b1c54afff-179efb3e6cd6f4c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67033640000001,32.790992]},"id":"8f44c0b1c46471a-17d6abd7c756e2f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46471a-17d6abd7c756e2f1","8f44c0b1c54a0f2-179ebb60db510e49"]},"geometry":{"type":"LineString","coordinates":[[-83.67052670000001,32.7904961],[-83.6703671,32.7904275],[-83.67011310000001,32.790843200000005],[-83.6701621,32.7908994],[-83.67025120000001,32.790955600000004],[-83.67033640000001,32.790992]]},"id":"8844c0b1c5fffff-1796fc000f3a6d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46471a-17d6abd7c756e2f1","8f44c0b1c46421b-17f7fb68b9d00a6a"]},"geometry":{"type":"LineString","coordinates":[[-83.67033640000001,32.790992],[-83.6705141,32.7910679]]},"id":"8b44c0b1c464fff-17dfeba04f76aff5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46421b-17f7fb68b9d00a6a","8f44c0b1c4608c1-17f6aba74f763d56"]},"geometry":{"type":"LineString","coordinates":[[-83.6705141,32.7910679],[-83.67041400000001,32.791248]]},"id":"8a44c0b1c467fff-17bfeb87f1b6f441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54a316-17bfab1c01d3f01a","8f44c0b1c46471a-17d6abd7c756e2f1"]},"geometry":{"type":"LineString","coordinates":[[-83.67063680000001,32.790543400000004],[-83.67033640000001,32.790992]]},"id":"8844c0b1c5fffff-17b7fb79e43ffd7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c46471a-17d6abd7c756e2f1","8f44c0b1c466360-1797ec550f69c44f"]},"geometry":{"type":"LineString","coordinates":[[-83.67033640000001,32.790992],[-83.670136,32.791119]]},"id":"8a44c0b1c467fff-17ffbc166da20879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67063300000001,32.7902906]},"id":"8f44c0b1c54a988-139fab1e64c380d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54a988-139fab1e64c380d5","8f44c0b1c54e382-13beeaed2865e804"]},"geometry":{"type":"LineString","coordinates":[[-83.6707118,32.7901382],[-83.67063300000001,32.7902906]]},"id":"8a44c0b1c54ffff-13deab05c14fd820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54a988-139fab1e64c380d5","8f44c0b1c54a0f2-179ebb60db510e49"]},"geometry":{"type":"LineString","coordinates":[[-83.67063300000001,32.7902906],[-83.67052670000001,32.7904961]]},"id":"8b44c0b1c54afff-13dffb3f93dcae78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d615-13d6a93aac15de3f","8f44c0b1c54884a-1396e9b8951f5db3"]},"geometry":{"type":"LineString","coordinates":[[-83.6712055,32.790279600000005],[-83.671407,32.790374400000005]]},"id":"8a44c0b1c54ffff-13b6e979a6443718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d615-13d6a93aac15de3f","8f44c0b1c54d2d5-13f6a8cf0cd3a8aa"]},"geometry":{"type":"LineString","coordinates":[[-83.671407,32.790374400000005],[-83.67157920000001,32.7904554]]},"id":"8b44c0b1c54dfff-13dff904d0027451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54d2d5-13f6a8cf0cd3a8aa","8f44c0b1c0b2541-17bea8550fba6ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.67157920000001,32.7904554],[-83.6717744,32.7905472]]},"id":"8744c0b1cffffff-179ff8920ee09ca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6718862,32.7905998]},"id":"8f44c0b1c0b20e4-17dee80f25f0a347"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b20e4-17dee80f25f0a347","8f44c0b1c0b2541-17bea8550fba6ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.6717744,32.7905472],[-83.6718862,32.7905998]]},"id":"8b44c0b1c0b2fff-17bef8321a31c95f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c54a988-139fab1e64c380d5","8f44c0b1c0b20e4-17dee80f25f0a347"]},"geometry":{"type":"LineString","coordinates":[[-83.6718862,32.7905998],[-83.6715922,32.7908545],[-83.67105310000001,32.790607300000005],[-83.671013,32.7905024],[-83.67063300000001,32.7902906]]},"id":"8744c0b1cffffff-17deb99349a4a431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b0d04-13fee70f2373a286","8f44c0b1c0b20e4-17dee80f25f0a347"]},"geometry":{"type":"LineString","coordinates":[[-83.6718862,32.7905998],[-83.6722958,32.7902372]]},"id":"8a44c0b1c0b7fff-13dfb78f2ba071f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c0b0d04-13fee70f2373a286","8f44c0b1c54d5b3-13beb98e429d2fab"]},"geometry":{"type":"LineString","coordinates":[[-83.6722958,32.7902372],[-83.6724743,32.7899594],[-83.6720956,32.7897946],[-83.67107990000001,32.7897534],[-83.6708571,32.789686],[-83.670719,32.7898994],[-83.6712732,32.790164100000005]]},"id":"8744c0b1cffffff-139ef8ec8b739ef0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.668214,32.7917064]},"id":"8f44c0b1c454435-1796b1064fcd18c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c454b9c-179ef042b0291799","8f44c0b1c454435-1796b1064fcd18c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6685269,32.7917292],[-83.668214,32.7917064]]},"id":"8b44c0b1c454fff-1797b0a48725a534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6677647,32.791673700000004]},"id":"8f44c0b1c456d9a-17feb21f1d659d7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c454435-1796b1064fcd18c9","8f44c0b1c456d9a-17feb21f1d659d7d"]},"geometry":{"type":"LineString","coordinates":[[-83.668214,32.7917064],[-83.6677647,32.791673700000004]]},"id":"8944c0b1c47ffff-17f6f192b3d82d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6676228,32.791663400000004]},"id":"8f44c0b1c40b389-17f7b277c862fc87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c40b389-17f7b277c862fc87","8f44c0b1c456d9a-17feb21f1d659d7d"]},"geometry":{"type":"LineString","coordinates":[[-83.6677647,32.791673700000004],[-83.6676228,32.791663400000004]]},"id":"8a44c0b1c40ffff-17fef24b6cbd44e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c454435-1796b1064fcd18c9","8f44c0b1c409368-17b6b0fc2f769330"]},"geometry":{"type":"LineString","coordinates":[[-83.668214,32.7917064],[-83.66823020000001,32.7915593]]},"id":"8a44c0b1c457fff-17d6b101385fce7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c40ba2c-1797b212b8a54d09","8f44c0b1c409368-17b6b0fc2f769330"]},"geometry":{"type":"LineString","coordinates":[[-83.66823020000001,32.7915593],[-83.6682554,32.7913301],[-83.6678188,32.7912964],[-83.66778450000001,32.7915353]]},"id":"8844c0b1c5fffff-17b6b17b49f475bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c40ba2c-1797b212b8a54d09","8f44c0b1c456d9a-17feb21f1d659d7d"]},"geometry":{"type":"LineString","coordinates":[[-83.66778450000001,32.7915353],[-83.6677647,32.791673700000004]]},"id":"8a44c0b1c40ffff-17d6f218e8037bb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c451364-13b7ef91f7f5674c","8f44c0b1c45590b-17ffbf5e501d4ba7"]},"geometry":{"type":"LineString","coordinates":[[-83.66880970000001,32.792613200000005],[-83.6688123,32.792367500000005],[-83.66889230000001,32.7919025]]},"id":"8a44c0b1c457fff-13deff80208ad13c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4733a2-1797ef4c175d8413","8f44c0b1c45590b-17ffbf5e501d4ba7"]},"geometry":{"type":"LineString","coordinates":[[-83.66889230000001,32.7919025],[-83.66892150000001,32.7917332]]},"id":"8944c0b1c47ffff-17d6bf5536183266"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4733a2-1797ef4c175d8413","8f44c0b1c4738de-17beef3abfb97c84"]},"geometry":{"type":"LineString","coordinates":[[-83.66892150000001,32.7917332],[-83.66894930000001,32.7915718]]},"id":"8b44c0b1c473fff-17deff4362461d15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c4702d1-17d6eef8211f33f1","8f44c0b1c4738de-17beef3abfb97c84"]},"geometry":{"type":"LineString","coordinates":[[-83.66894930000001,32.7915718],[-83.66895930000001,32.7915136],[-83.6689994,32.791453700000005],[-83.66905580000001,32.7914284]]},"id":"8a44c0b1c477fff-17febf23171d9221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c471812-17bfbe0b7171864e","8f44c0b1c4702d1-17d6eef8211f33f1"]},"geometry":{"type":"LineString","coordinates":[[-83.66905580000001,32.7914284],[-83.669133,32.7913937],[-83.6692088,32.791378800000004],[-83.6692489,32.791453700000005],[-83.66943450000001,32.7913907]]},"id":"8a44c0b1c477fff-17defe8324bc0a85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c471812-17bfbe0b7171864e","8f44c0b1c46666d-17b7fcca3284a5f1"]},"geometry":{"type":"LineString","coordinates":[[-83.66943450000001,32.7913907],[-83.6695251,32.791360000000005],[-83.6695073,32.791292600000006],[-83.6699485,32.7911765]]},"id":"8944c0b1c47ffff-17ffbd7accacb816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6b480-13f6f599ec2272e8","8f44c0b1eb682dd-13feb484b26bbbbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6667829,32.796409600000004],[-83.66650340000001,32.7963119],[-83.6663394,32.796605500000005]]},"id":"8a44c0b1eb6ffff-13feb525c812c129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6b480-13f6f599ec2272e8","8f44c0b1eb4c325-13f7f5d6f019747f"]},"geometry":{"type":"LineString","coordinates":[[-83.6663394,32.796605500000005],[-83.6662417,32.7967804]]},"id":"8944c0b1eb7ffff-13bfb5b876c7c1b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb48671-17b6b69490773cd5","8f44c0b1eb4c325-13f7f5d6f019747f"]},"geometry":{"type":"LineString","coordinates":[[-83.6662417,32.7967804],[-83.66597030000001,32.797266300000004],[-83.66593830000001,32.7973155]]},"id":"8a44c0b1eb4ffff-179fb634dd29fadc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb486c9-17d7b6ad0587b837","8f44c0b1eb48671-17b6b69490773cd5"]},"geometry":{"type":"LineString","coordinates":[[-83.66593830000001,32.7973155],[-83.6658992,32.7973755]]},"id":"8c44c0b1eb487ff-17d6f6a0dfe895ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb486c9-17d7b6ad0587b837","8f44c0b1ea648c8-17f7f7ac3e35dbc3"]},"geometry":{"type":"LineString","coordinates":[[-83.6658992,32.7973755],[-83.66570180000001,32.797679],[-83.6655369,32.7976241],[-83.66549090000001,32.797624400000004]]},"id":"8944c0b1eb7ffff-17d6b71ab15e423f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ea64574-17f6b839b12e83d5","8f44c0b1ea648c8-17f7f7ac3e35dbc3"]},"geometry":{"type":"LineString","coordinates":[[-83.66549090000001,32.797624400000004],[-83.6652645,32.7976259]]},"id":"8b44c0b1ea64fff-17f7b7f2fbf6f449"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ea64574-17f6b839b12e83d5","8f44c0b1eb4a1aa-17f6f7b2d7ac6a9c"]},"geometry":{"type":"LineString","coordinates":[[-83.6652645,32.7976259],[-83.66503060000001,32.7976274],[-83.6652799,32.7971309],[-83.6654803,32.7972101]]},"id":"8844c0b1ebfffff-17f6b860f0fc86d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4a1aa-17f6f7b2d7ac6a9c","8f44c0b1eb4aa1a-17b7f735ae3bd4b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6654803,32.7972101],[-83.6656806,32.7972892]]},"id":"8b44c0b1eb4afff-179fb7744c2768d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb486c9-17d7b6ad0587b837","8f44c0b1eb4aa1a-17b7f735ae3bd4b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6656806,32.7972892],[-83.6658992,32.7973755]]},"id":"8a44c0b1eb4ffff-17bef6f152c17375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3a3376-139fdf3b8637e6d5","8f44c0b1a3accc5-13befdbcbe00f587"]},"geometry":{"type":"LineString","coordinates":[[-83.6492872,32.822066500000005],[-83.6498997,32.8220806]]},"id":"8944c0b1a3bffff-13b6de7c26786e2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a313065-13b7fc2809e0f820","8f44c0b1a3accc5-13befdbcbe00f587"]},"geometry":{"type":"LineString","coordinates":[[-83.6498997,32.8220806],[-83.6505472,32.8220954]]},"id":"8844c0b1a3fffff-13bfdcf2682bfcb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a313065-13b7fc2809e0f820","8f44c0b1a310116-17f6fc1980f06a32"]},"geometry":{"type":"LineString","coordinates":[[-83.6505472,32.8220954],[-83.65068930000001,32.822098700000005],[-83.6507983,32.822098700000005],[-83.6508841,32.8220654],[-83.65096670000001,32.822015400000005],[-83.6510228,32.8219488],[-83.65104260000001,32.8218795],[-83.6510459,32.821824],[-83.65102610000001,32.8217574],[-83.6509865,32.8216963],[-83.65091720000001,32.821626900000005],[-83.650828,32.8215881],[-83.65070580000001,32.8215687],[-83.6505704,32.8215631]]},"id":"8a44c0b1a317fff-1397db6ccddc9534"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3a5344-17dfddb84ee7140e","8f44c0b1a310116-17f6fc1980f06a32"]},"geometry":{"type":"LineString","coordinates":[[-83.6505704,32.8215631],[-83.64990680000001,32.8215513]]},"id":"8844c0b1a3fffff-17f7dce8edaa437f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a3a5344-17dfddb84ee7140e","8f44c0b1a3a0076-17d6ff2f6e01cb25"]},"geometry":{"type":"LineString","coordinates":[[-83.64990680000001,32.8215513],[-83.6493066,32.8215406]]},"id":"8a44c0b1a3a7fff-17dede73d7d5a9f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64824030000001,32.824308300000006]},"id":"8f44c0b1a2a6ac1-179ef1c9d7a4dccd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2a6ac1-179ef1c9d7a4dccd","8f44c0b1a38a3a2-17def0a87a5605b5"]},"geometry":{"type":"LineString","coordinates":[[-83.64870330000001,32.823774300000004],[-83.64824030000001,32.824308300000006]]},"id":"8844c0b1a3fffff-17f7f13928d74fe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a2a6ac1-179ef1c9d7a4dccd","8f44c0b1a2a62c4-17f6f20db4372c44"]},"geometry":{"type":"LineString","coordinates":[[-83.64824030000001,32.824308300000006],[-83.64813170000001,32.824433500000005]]},"id":"8b44c0b1a2a6fff-17bff1ebcddc97b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a28458d-13f6e358435c0996","8f44c0b1a2a62c4-17f6f20db4372c44"]},"geometry":{"type":"LineString","coordinates":[[-83.64813170000001,32.824433500000005],[-83.6476028,32.8250436]]},"id":"8944c0b1a2bffff-17b7e2b30a59d76c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65499700000001,32.827562300000004]},"id":"8f44c0b1a26bb28-179ef14ae14a4c15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b532d25-17fef16386dabc2b","8f44c0b1a26bb28-179ef14ae14a4c15"]},"geometry":{"type":"LineString","coordinates":[[-83.6549576,32.8281319],[-83.655213,32.8280632],[-83.65499700000001,32.827562300000004]]},"id":"8744c0b1bffffff-17f7d10b6c71bb8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65522030000001,32.8274934]},"id":"8f44c0b1a269014-17dff0bf5eff59dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a269014-17dff0bf5eff59dc","8f44c0b1a26bb28-179ef14ae14a4c15"]},"geometry":{"type":"LineString","coordinates":[[-83.65499700000001,32.827562300000004],[-83.65475280000001,32.826995700000005],[-83.65474300000001,32.8269648],[-83.6547577,32.826934],[-83.65492660000001,32.8268949],[-83.65498290000001,32.826909300000004],[-83.65522030000001,32.8274934]]},"id":"8a44c0b1a26ffff-179ef16132550713"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65538670000001,32.8279027]},"id":"8f44c0b1b5344d9-17dff05753543307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b5344d9-17dff05753543307","8f44c0b1a269014-17dff0bf5eff59dc"]},"geometry":{"type":"LineString","coordinates":[[-83.65522030000001,32.8274934],[-83.65538670000001,32.8279027]]},"id":"8744c0b1bffffff-17dfd08b56d6c6c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a269014-17dff0bf5eff59dc","8f44c0b1a26bb28-179ef14ae14a4c15"]},"geometry":{"type":"LineString","coordinates":[[-83.65522030000001,32.8274934],[-83.65499700000001,32.827562300000004]]},"id":"8a44c0b1a26ffff-17f6f1051299ce18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a26b01b-17bfd1e436970bb8","8f44c0b1a26bb28-179ef14ae14a4c15"]},"geometry":{"type":"LineString","coordinates":[[-83.65499700000001,32.827562300000004],[-83.6547517,32.827638]]},"id":"8b44c0b1a26bfff-17b6f1979d98bc77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a24cb65-17dff256fabd9270","8f44c0b1a26b01b-17bfd1e436970bb8"]},"geometry":{"type":"LineString","coordinates":[[-83.6547517,32.827638],[-83.6545681,32.8276946]]},"id":"8b44c0b1a26bfff-17dff21d952468ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65435480000001,32.8265024]},"id":"8f44c0b1a263b1a-13f6d2dc45ab62ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a263b1a-13f6d2dc45ab62ab","8f44c0b1a26336e-17ded2e26bfed347"]},"geometry":{"type":"LineString","coordinates":[[-83.654345,32.826662400000004],[-83.65435480000001,32.8265024]]},"id":"8b44c0b1a263fff-17b6d2df576526b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a263b91-13f7f3089e27b613","8f44c0b1a263b1a-13f6d2dc45ab62ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65435480000001,32.8265024],[-83.65428390000001,32.826501900000004]]},"id":"8c44c0b1a263bff-13f7f2f26652a445"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a263b91-13f7f3089e27b613","8f44c0b1a260031-13ffd30a284d9468"]},"geometry":{"type":"LineString","coordinates":[[-83.65428390000001,32.826501900000004],[-83.6540513,32.8265003],[-83.6540513,32.826074600000005],[-83.6542814,32.8260753]]},"id":"8a44c0b1a267fff-13fed374502bf86f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a260b19-13fff2869cd6e0f3","8f44c0b1a260031-13ffd30a284d9468"]},"geometry":{"type":"LineString","coordinates":[[-83.6542814,32.8260753],[-83.65449190000001,32.8260759]]},"id":"8b44c0b1a260fff-13ffd2c852d0303f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a261786-13f6d2881e08bbbd","8f44c0b1a260b19-13fff2869cd6e0f3"]},"geometry":{"type":"LineString","coordinates":[[-83.65449190000001,32.8260759],[-83.65470970000001,32.8260766],[-83.6547049,32.8265024],[-83.65448950000001,32.8265024]]},"id":"8a44c0b1a267fff-13fed22213a2221d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a261786-13f6d2881e08bbbd","8f44c0b1a263b1a-13f6d2dc45ab62ab"]},"geometry":{"type":"LineString","coordinates":[[-83.65448950000001,32.8265024],[-83.65435480000001,32.8265024]]},"id":"8a44c0b1a267fff-13f6d2b22e25b3d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617252,32.8674823]},"id":"8f44c0a31963a84-1396f0ddccf352dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31963a84-1396f0ddccf352dd","8f44c0a31961ad8-17ffff98e6ae2d8a"]},"geometry":{"type":"LineString","coordinates":[[-83.662245,32.867455],[-83.6617252,32.8674823]]},"id":"8a44c0a31967fff-17f7f03b503e0c01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66165720000001,32.8676564]},"id":"8f44c0a319632f2-13ffc1084f5559c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a319632f2-13ffc1084f5559c1","8f44c0a31963a84-1396f0ddccf352dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6617252,32.8674823],[-83.6616183,32.8675177],[-83.66094790000001,32.867855],[-83.660922,32.867904],[-83.6609123,32.867972],[-83.6609382,32.8680291],[-83.66100300000001,32.8680618],[-83.66112600000001,32.868037300000005],[-83.6615924,32.8677707],[-83.66165720000001,32.8676564]]},"id":"8944c0a3197ffff-13d7d1edf3a07249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a319632f2-13ffc1084f5559c1","8f44c0a31963a84-1396f0ddccf352dd"]},"geometry":{"type":"LineString","coordinates":[[-83.66165720000001,32.8676564],[-83.6617252,32.8674823]]},"id":"8b44c0a31963fff-13b6e0f30ff3cb9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad84096-17b666a0d5439508","8f44c0a2ad80c84-13dff70c47eb8791"]},"geometry":{"type":"LineString","coordinates":[[-83.69851480000001,32.913481100000006],[-83.69876140000001,32.9132632],[-83.69868670000001,32.9132036]]},"id":"8a44c0a2ad87fff-17f676b32f5c7e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad84096-17b666a0d5439508","8f44c0a2adb125e-17df76fa0a8744a5"]},"geometry":{"type":"LineString","coordinates":[[-83.69868670000001,32.9132036],[-83.698544,32.9130899]]},"id":"8a44c0a2ad87fff-17fee6cd62f0a9cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69788580000001,32.912565300000004]},"id":"8f44c0a2adb04e4-1797789567e82d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2adb04e4-1797789567e82d47","8f44c0a2adb125e-17df76fa0a8744a5"]},"geometry":{"type":"LineString","coordinates":[[-83.698544,32.9130899],[-83.69788580000001,32.912565300000004]]},"id":"8944c0a2adbffff-17b767c7bd0050ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69840520000001,32.912094100000004]},"id":"8f44c0a2adb4b0a-17fef750c3cb3e50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2adb04e4-1797789567e82d47","8f44c0a2adb4b0a-17fef750c3cb3e50"]},"geometry":{"type":"LineString","coordinates":[[-83.69788580000001,32.912565300000004],[-83.697738,32.9124475],[-83.69825940000001,32.911974400000005],[-83.69840520000001,32.912094100000004]]},"id":"8a44c0a2adb7fff-17d6e83ee4c87f1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2adb04e4-1797789567e82d47","8f44c0a2adb4b0a-17fef750c3cb3e50"]},"geometry":{"type":"LineString","coordinates":[[-83.69840520000001,32.912094100000004],[-83.69788580000001,32.912565300000004]]},"id":"8a44c0a2adb7fff-17fe77f318ca3d14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2adb04e4-1797789567e82d47","8f44c0a2adb2234-1796691c58379ae0"]},"geometry":{"type":"LineString","coordinates":[[-83.69788580000001,32.912565300000004],[-83.69766990000001,32.912771400000004]]},"id":"8a44c0a2adb7fff-17d7e8d8d5ccdec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70462300000001,32.9182537]},"id":"8f44c0a2ac6a836-13f6d822a627022c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6a448-17fe58a881eb24f3","8f44c0a2ac6a836-13f6d822a627022c"]},"geometry":{"type":"LineString","coordinates":[[-83.70440880000001,32.9184736],[-83.70462300000001,32.9182537]]},"id":"8b44c0a2ac6afff-17bf58659d1d1b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7047287,32.918145200000005]},"id":"8f44c0a2ac6e211-13b6d7e09c145a94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6a836-13f6d822a627022c","8f44c0a2ac6e211-13b6d7e09c145a94"]},"geometry":{"type":"LineString","coordinates":[[-83.70462300000001,32.9182537],[-83.7047287,32.918145200000005]]},"id":"8a44c0a2ac6ffff-13d6f801a2bda5ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7049609,32.917906800000004]},"id":"8f44c0a2ac6c4e5-139fd74f7d25d800"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6c4e5-139fd74f7d25d800","8f44c0a2ac6e211-13b6d7e09c145a94"]},"geometry":{"type":"LineString","coordinates":[[-83.7047287,32.918145200000005],[-83.7049609,32.917906800000004]]},"id":"8a44c0a2ac6ffff-13f6579807ecf8d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7050693,32.917795500000004]},"id":"8f44c0a2ac6cce9-13d6770bb8a4f214"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6cce9-13d6770bb8a4f214","8f44c0a2ac6c4e5-139fd74f7d25d800"]},"geometry":{"type":"LineString","coordinates":[[-83.7049609,32.917906800000004],[-83.7050693,32.917795500000004]]},"id":"8b44c0a2ac6cfff-13ff572d9c5f597a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70443780000001,32.917348000000004]},"id":"8f44c0a2ac6039c-13bed8966df843aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6cce9-13d6770bb8a4f214","8f44c0a2ac6039c-13bed8966df843aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7050693,32.917795500000004],[-83.7050961,32.917768],[-83.70443780000001,32.917348000000004]]},"id":"8944c0a2ac7ffff-13de57bf7e61b8a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6039c-13bed8966df843aa","8f44c0a2ac604e3-139ef918998a0602"]},"geometry":{"type":"LineString","coordinates":[[-83.70443780000001,32.917348000000004],[-83.70422950000001,32.9172655]]},"id":"8b44c0a2ac60fff-13b6d8d774a6ed5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70403540000001,32.9171886]},"id":"8f44c0a2ac62806-13def991ef0da16e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac62806-13def991ef0da16e","8f44c0a2ac604e3-139ef918998a0602"]},"geometry":{"type":"LineString","coordinates":[[-83.70422950000001,32.9172655],[-83.70403540000001,32.9171886]]},"id":"8a44c0a2ac67fff-13f6f95543bc3cd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7038397,32.9171111]},"id":"8f44c0a2ac62d16-13be7a0c3a697360"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac62806-13def991ef0da16e","8f44c0a2ac62d16-13be7a0c3a697360"]},"geometry":{"type":"LineString","coordinates":[[-83.70403540000001,32.9171886],[-83.7038397,32.9171111]]},"id":"8b44c0a2ac62fff-13d6f9cf0a7e149a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac71c5d-13d75b0f9dd40379","8f44c0a2ac62d16-13be7a0c3a697360"]},"geometry":{"type":"LineString","coordinates":[[-83.7038397,32.9171111],[-83.7035876,32.917480600000005],[-83.7034247,32.9173521]]},"id":"8944c0a2ac7ffff-13b7da8415a2d900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad5b273-13d65a18ad97cfca","8f44c0a2ac71c5d-13d75b0f9dd40379"]},"geometry":{"type":"LineString","coordinates":[[-83.7034247,32.9173521],[-83.70327540000001,32.917234300000004],[-83.7036741,32.9166722],[-83.7038198,32.916764900000004]]},"id":"8944c0a2ac7ffff-13d67ae27722a9a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ad5b273-13d65a18ad97cfca","8f44c0a2ac62d16-13be7a0c3a697360"]},"geometry":{"type":"LineString","coordinates":[[-83.7038198,32.916764900000004],[-83.70400140000001,32.9168806],[-83.7038397,32.9171111]]},"id":"8944c0a2ac7ffff-13b7d9dc6873a139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70404710000001,32.9178398]},"id":"8f44c0a2ac44a5c-13f7f98a980a9f2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac40866-1396da00e0740b9b","8f44c0a2ac44a5c-13f7f98a980a9f2c"]},"geometry":{"type":"LineString","coordinates":[[-83.70385780000001,32.9180781],[-83.70404710000001,32.9178398]]},"id":"8a44c0a2ac47fff-13be79c5c6bea5ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7041375,32.917726]},"id":"8f44c0a2ac637b4-13bed95212047d40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac44a5c-13f7f98a980a9f2c","8f44c0a2ac637b4-13bed95212047d40"]},"geometry":{"type":"LineString","coordinates":[[-83.70404710000001,32.9178398],[-83.7041375,32.917726]]},"id":"8944c0a2ac7ffff-13de596e5ffa53bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6399e-139678da71475c9f","8f44c0a2ac637b4-13bed95212047d40"]},"geometry":{"type":"LineString","coordinates":[[-83.7041375,32.917726],[-83.70432890000001,32.9174851]]},"id":"8b44c0a2ac63fff-13dfd91640e17bd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6399e-139678da71475c9f","8f44c0a2ac6039c-13bed8966df843aa"]},"geometry":{"type":"LineString","coordinates":[[-83.70432890000001,32.9174851],[-83.70443780000001,32.917348000000004]]},"id":"8a44c0a2ac67fff-13ff58b87e32bbb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6a836-13f6d822a627022c","8f44c0a2ac44a5c-13f7f98a980a9f2c"]},"geometry":{"type":"LineString","coordinates":[[-83.70462300000001,32.9182537],[-83.70404710000001,32.9178398]]},"id":"8944c0a2ac7ffff-13f758d69a14c7c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac44a5c-13f7f98a980a9f2c","8f44c0a2ac44163-13b759e684848ff7"]},"geometry":{"type":"LineString","coordinates":[[-83.70404710000001,32.9178398],[-83.7039,32.9177425]]},"id":"8b44c0a2ac44fff-13d7d9b89ed63e51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac44163-13b759e684848ff7","8f44c0a2ac62806-13def991ef0da16e"]},"geometry":{"type":"LineString","coordinates":[[-83.7039,32.9177425],[-83.70373810000001,32.9176353],[-83.70403540000001,32.9171886]]},"id":"8944c0a2ac7ffff-139679fa02a5dfd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac68571-13ff57774c2349cd","8f44c0a2ac6e211-13b6d7e09c145a94"]},"geometry":{"type":"LineString","coordinates":[[-83.7047287,32.918145200000005],[-83.7048972,32.918264400000005]]},"id":"8a44c0a2ac6ffff-13d657abf25cd930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac68571-13ff57774c2349cd","8f44c0a2ac68053-17be771df9eebed4"]},"geometry":{"type":"LineString","coordinates":[[-83.7048972,32.918264400000005],[-83.7050401,32.9183655]]},"id":"8b44c0a2ac68fff-179ef74a95a27167"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6ddab-13f7d642de3ff87c","8f44c0a2ac68053-17be771df9eebed4"]},"geometry":{"type":"LineString","coordinates":[[-83.7050401,32.9183655],[-83.7052579,32.9185195],[-83.7056115,32.9181722],[-83.70539070000001,32.9180188]]},"id":"8a44c0a2ac6ffff-1797564ab98b6303"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6ca90-139f56a2d5cb5350","8f44c0a2ac6ddab-13f7d642de3ff87c"]},"geometry":{"type":"LineString","coordinates":[[-83.70539070000001,32.9180188],[-83.7052371,32.917912]]},"id":"8a44c0a2ac6ffff-13d67672d2e7d73d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6cce9-13d6770bb8a4f214","8f44c0a2ac6ca90-139f56a2d5cb5350"]},"geometry":{"type":"LineString","coordinates":[[-83.7052371,32.917912],[-83.7050693,32.917795500000004]]},"id":"8b44c0a2ac6cfff-13fef6d74b788a00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8deb8a-13b76e554055ba2c","8f44c0a2a123aa3-13b672777663739a"]},"geometry":{"type":"LineString","coordinates":[[-83.70863800000001,32.920383],[-83.70857480000001,32.920213600000004],[-83.7085071,32.9201567],[-83.70842060000001,32.920122],[-83.70787510000001,32.9199736],[-83.70773600000001,32.9199767],[-83.707198,32.9196357],[-83.70685950000001,32.9198946],[-83.70694490000001,32.9199682]]},"id":"8744c0a2affffff-13975090c9ba052a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70729320000001,32.9203449]},"id":"8f44c0a2a12e320-139fd19dc92d7558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a123aa3-13b672777663739a","8f44c0a2a12e320-139fd19dc92d7558"]},"geometry":{"type":"LineString","coordinates":[[-83.70694490000001,32.9199682],[-83.70700620000001,32.920020900000004],[-83.70729320000001,32.9203449]]},"id":"8944c0a2a13ffff-1397d2089b85eb70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7081046,32.9201409]},"id":"8f44c0a2a8d30d8-13965fa2ab2b9bd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8d30d8-13965fa2ab2b9bd8","8f44c0a2a12e320-139fd19dc92d7558"]},"geometry":{"type":"LineString","coordinates":[[-83.70729320000001,32.9203449],[-83.7074425,32.920513500000006],[-83.7083078,32.920295700000004],[-83.7081046,32.9201409]]},"id":"8744c0a2affffff-13b7d03f9336900b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a8d30d8-13965fa2ab2b9bd8","8f44c0a2a12e320-139fd19dc92d7558"]},"geometry":{"type":"LineString","coordinates":[[-83.7081046,32.9201409],[-83.70729320000001,32.9203449]]},"id":"8744c0a2affffff-13dfd0a03639e1d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70450770000001,32.9196837]},"id":"8f44c0a2ac497a2-17f6586ab358a7e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac497a2-17f6586ab358a7e8","8f44c0a2ac4929c-17b6f809fe83316b"]},"geometry":{"type":"LineString","coordinates":[[-83.70466250000001,32.9197902],[-83.70450770000001,32.9196837]]},"id":"8b44c0a2ac49fff-1797f83a53166e54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7042187,32.9199483]},"id":"8f44c0a2ac4b2de-1397f91f52d746c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac4b2de-1397f91f52d746c3","8f44c0a2ac497a2-17f6586ab358a7e8"]},"geometry":{"type":"LineString","coordinates":[[-83.70450770000001,32.9196837],[-83.70403440000001,32.9193578],[-83.70371080000001,32.9196831],[-83.70411340000001,32.919970400000004],[-83.7041547,32.9199767],[-83.7042187,32.9199483]]},"id":"8744c0a2affffff-17df798c6f9f17b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac4b2de-1397f91f52d746c3","8f44c0a2ac497a2-17f6586ab358a7e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7042187,32.9199483],[-83.70450770000001,32.9196837]]},"id":"8944c0a2ac7ffff-17d758c50987c7e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bdb66de-17debe619a291c21","8f44c0a2bdb21ae-17b67e67eaef0398"]},"geometry":{"type":"LineString","coordinates":[[-83.7151719,32.9284234],[-83.7151618,32.928589200000005]]},"id":"8b44c0a2bdb2fff-17fe7e64cf5cc9f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bdb275c-17b7fe6effe8e3f3","8f44c0a2bdb21ae-17b67e67eaef0398"]},"geometry":{"type":"LineString","coordinates":[[-83.7151618,32.928589200000005],[-83.71515050000001,32.9287742]]},"id":"8b44c0a2bdb2fff-17fe3e6b61652a25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd94812-179f3e75265423c8","8f44c0a2bdb275c-17b7fe6effe8e3f3"]},"geometry":{"type":"LineString","coordinates":[[-83.71515050000001,32.9287742],[-83.71514060000001,32.928936300000004]]},"id":"8944c0a2bdbffff-17d6be720473e8f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd94812-179f3e75265423c8","8f44c0a2bd94062-17f7be7b85a800b5"]},"geometry":{"type":"LineString","coordinates":[[-83.71514060000001,32.928936300000004],[-83.7151304,32.9291032]]},"id":"8b44c0a2bd94fff-17bf7e785e80298f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd942d3-17ffbe82fd9b623c","8f44c0a2bd94062-17f7be7b85a800b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7151304,32.9291032],[-83.7151185,32.9292985]]},"id":"8b44c0a2bd94fff-17bebe7f49204404"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd90bae-17dffe89bf3b81e7","8f44c0a2bd942d3-17ffbe82fd9b623c"]},"geometry":{"type":"LineString","coordinates":[[-83.7151185,32.9292985],[-83.7151077,32.9294748]]},"id":"8a44c0a2bd97fff-17b6be865b8baef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd90bae-17dffe89bf3b81e7","8f44c0a2bd90350-17d7be9d714c8a6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7151077,32.9294748],[-83.7151005,32.929591900000005],[-83.7150761,32.929644]]},"id":"8b44c0a2bd90fff-179ffe8f33861301"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd90350-17d7be9d714c8a6a","8f44c0a2bd92218-139e3fe9e1393e88"]},"geometry":{"type":"LineString","coordinates":[[-83.7150761,32.929644],[-83.7150584,32.9296816],[-83.71493860000001,32.9297904],[-83.7145442,32.929788800000004]]},"id":"8a44c0a2bd97fff-139fff34f8b135ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac8ad4-17f6f002c5fce699","8f44c0a2aac9c8a-17deffde368e31f4"]},"geometry":{"type":"LineString","coordinates":[[-83.71450440000001,32.9284875],[-83.7145629,32.928635]]},"id":"8a44c0a2aacffff-179efff07874c4af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac94b5-1796c023948f2713","8f44c0a2aac9c8a-17deffde368e31f4"]},"geometry":{"type":"LineString","coordinates":[[-83.7145629,32.928635],[-83.7144519,32.928724]]},"id":"8b44c0a2aac9fff-17fef000e0a1d7e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aacbaaa-17ffe0534d8254bf","8f44c0a2aac94b5-1796c023948f2713"]},"geometry":{"type":"LineString","coordinates":[[-83.7144519,32.928724],[-83.71442040000001,32.9287492],[-83.71437180000001,32.9288715],[-83.71437560000001,32.9288922]]},"id":"8a44c0a2aacffff-17b7f042cd34edbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd96534-17de603edd464a15","8f44c0a2aacbaaa-17ffe0534d8254bf"]},"geometry":{"type":"LineString","coordinates":[[-83.71437560000001,32.9288922],[-83.7144083,32.9290722]]},"id":"8744c0a2affffff-17b7e04901192cb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd96534-17de603edd464a15","8f44c0a2bd96784-17d760291540fcb9"]},"geometry":{"type":"LineString","coordinates":[[-83.7144083,32.9290722],[-83.71444310000001,32.929263]]},"id":"8b44c0a2bd96fff-179fc033fc135e89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a365bae-17d7609318679a03","8f44c0a2bd96784-17d760291540fcb9"]},"geometry":{"type":"LineString","coordinates":[[-83.71444310000001,32.929263],[-83.7142735,32.9292566]]},"id":"8744c0a2affffff-17d7605e114da824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141386,32.9281267]},"id":"8f44c0a2aaceaae-179f70e768b5a46d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaceaae-179f70e768b5a46d","8f44c0a2aacc786-13f66078b1556a64"]},"geometry":{"type":"LineString","coordinates":[[-83.7143157,32.928080200000004],[-83.7141386,32.9281267]]},"id":"8a44c0a2aacffff-1796f0b018cb0f06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac06e3-1396d219318901fb","8f44c0a2aaceaae-179f70e768b5a46d"]},"geometry":{"type":"LineString","coordinates":[[-83.7141386,32.9281267],[-83.7138439,32.927460700000005],[-83.7136493,32.9275241]]},"id":"8944c0a2aafffff-1397c1650813e39a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac06e3-1396d219318901fb","8f44c0a2aacaa66-17b7c0f25222af56"]},"geometry":{"type":"LineString","coordinates":[[-83.7136493,32.9275241],[-83.71346820000001,32.927583000000006],[-83.7139605,32.9286405],[-83.7140706,32.9286079],[-83.7141211,32.9285688]]},"id":"8944c0a2aafffff-13fef1e4a61b808e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aacaa66-17b7c0f25222af56","8f44c0a2aaceaae-179f70e768b5a46d"]},"geometry":{"type":"LineString","coordinates":[[-83.7141211,32.9285688],[-83.7142779,32.928447500000004],[-83.7141386,32.9281267]]},"id":"8a44c0a2aacffff-17b770bddf454891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7129824,32.926041600000005]},"id":"8f44c0a2aaf6365-17fe43ba0bc27169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaf6365-17fe43ba0bc27169","8f44c0a2aaf2b1b-17b6e400231b84e1"]},"geometry":{"type":"LineString","coordinates":[[-83.71287020000001,32.926347],[-83.71265530000001,32.9258541],[-83.7127428,32.9258187],[-83.71284320000001,32.925908400000004],[-83.712895,32.926000900000005],[-83.7129338,32.926041600000005],[-83.7129824,32.926041600000005]]},"id":"8a44c0a2aaf7fff-17fff431d57ab21b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaf6365-17fe43ba0bc27169","8f44c0a2aaf0b92-17f7730d3bd0d0d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7129824,32.926041600000005],[-83.71315080000001,32.92599],[-83.7132589,32.9262195]]},"id":"8a44c0a2aaf7fff-179ef35260629b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7134511,32.9271216]},"id":"8f44c0a2aac63aa-139f42951204f110"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac63aa-139f42951204f110","8f44c0a2aaf0b92-17f7730d3bd0d0d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7132589,32.9262195],[-83.7136528,32.9270556],[-83.7134511,32.9271216]]},"id":"8944c0a2aafffff-13b76286ed5e4931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac63aa-139f42951204f110","8f44c0a2aaf2b1b-17b6e400231b84e1"]},"geometry":{"type":"LineString","coordinates":[[-83.7134511,32.9271216],[-83.71327070000001,32.9271807],[-83.71287020000001,32.926347]]},"id":"8944c0a2aafffff-13f6e3641335d6d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aac63aa-139f42951204f110","8f44c0a2aaf009c-179ef37a4e9b6e37"]},"geometry":{"type":"LineString","coordinates":[[-83.7134511,32.9271216],[-83.7130844,32.9262767]]},"id":"8944c0a2aafffff-13974307b938fbf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aaf6365-17fe43ba0bc27169","8f44c0a2aaf009c-179ef37a4e9b6e37"]},"geometry":{"type":"LineString","coordinates":[[-83.7130844,32.9262767],[-83.7129824,32.926041600000005]]},"id":"8a44c0a2aaf7fff-17d7c39a2dc63b7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa13a72-13b762c1f8890824","8f44c0a2aa13873-13d762edd249d753"]},"geometry":{"type":"LineString","coordinates":[[-83.7133091,32.9245238],[-83.7133793,32.924677]]},"id":"8b44c0a2aa13fff-13f742d7e4ea30d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1ec0b-17965294735777f0","8f44c0a2aa13a72-13b762c1f8890824"]},"geometry":{"type":"LineString","coordinates":[[-83.7133793,32.924677],[-83.71345210000001,32.9248357]]},"id":"8944c0a2aa3ffff-13d6c2ab3640dbc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1ec0b-17965294735777f0","8f44c0a2aa1e0e4-17f6e2685c52d320"]},"geometry":{"type":"LineString","coordinates":[[-83.71345210000001,32.9248357],[-83.7135227,32.9249898]]},"id":"8b44c0a2aa1efff-17b6c27e609bb9d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1e2c5-17de52343608e1b2","8f44c0a2aa1e0e4-17f6e2685c52d320"]},"geometry":{"type":"LineString","coordinates":[[-83.7135227,32.9249898],[-83.7136061,32.9251717]]},"id":"8b44c0a2aa1efff-179fc24e44b288d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa184c1-17bfe205ace259a8","8f44c0a2aa1e2c5-17de52343608e1b2"]},"geometry":{"type":"LineString","coordinates":[[-83.7136061,32.9251717],[-83.7136806,32.9253342]]},"id":"8a44c0a2aa1ffff-179f621ce56de1c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa184c1-17bfe205ace259a8","8f44c0a2aa1bd64-17bf51d1b7b0d7c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7136806,32.9253342],[-83.7137637,32.925515700000005]]},"id":"8a44c0a2aa1ffff-17f6e1ebb719082b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1b162-1796e1a23b3a9429","8f44c0a2aa1bd64-17bf51d1b7b0d7c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7137637,32.925515700000005],[-83.71383970000001,32.9256814]]},"id":"8b44c0a2aa1bfff-17f761b9f348de84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7139094,32.9258335]},"id":"8f44c0a2aa1b370-17f7f176a8928107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1b162-1796e1a23b3a9429","8f44c0a2aa1b370-17f7f176a8928107"]},"geometry":{"type":"LineString","coordinates":[[-83.71383970000001,32.9256814],[-83.7139094,32.9258335]]},"id":"8b44c0a2aa1bfff-17d6718c6741f8fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1b370-17f7f176a8928107","8f44c0a2aae6576-17d7d14b9d5ee60c"]},"geometry":{"type":"LineString","coordinates":[[-83.7139094,32.9258335],[-83.71397830000001,32.9259837]]},"id":"8944c0a2aafffff-17b6e161148fec0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa19af1-1797e03d0da19475","8f44c0a2aa086a4-17b77eacc4f713a0"]},"geometry":{"type":"LineString","coordinates":[[-83.71505160000001,32.925522],[-83.71493860000001,32.9255115],[-83.7144112,32.9256766]]},"id":"8944c0a2aa3ffff-17de3f76116e32de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa1b370-17f7f176a8928107","8f44c0a2aa19af1-1797e03d0da19475"]},"geometry":{"type":"LineString","coordinates":[[-83.7144112,32.9256766],[-83.7139094,32.9258335]]},"id":"8a44c0a2aa1ffff-17d6f0d9d979161e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7159907,32.925904]},"id":"8f44c0a2aa54816-17b63c61d022879b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa7226b-17f73bdc0ce5bc06","8f44c0a2aa54816-17b63c61d022879b"]},"geometry":{"type":"LineString","coordinates":[[-83.7162048,32.925829],[-83.7159907,32.925904]]},"id":"8944c0a2aa7ffff-179ebc1efa141d1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa0d119-179ffd1ad9bd7275","8f44c0a2aa54816-17b63c61d022879b"]},"geometry":{"type":"LineString","coordinates":[[-83.7159907,32.925904],[-83.7156947,32.925254100000004]]},"id":"8844c0a2abfffff-17d6fcbe504fe9cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa54816-17b63c61d022879b","8f44c0a2aa73093-17debb9e30126aba"]},"geometry":{"type":"LineString","coordinates":[[-83.7159907,32.925904],[-83.71605840000001,32.9260492],[-83.71630370000001,32.9259688]]},"id":"8944c0a2aa7ffff-17dffc105ed20180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa7384b-1796fafa5ebf2622","8f44c0a2aa73093-17debb9e30126aba"]},"geometry":{"type":"LineString","coordinates":[[-83.71630370000001,32.9259688],[-83.7165659,32.925882800000004]]},"id":"8b44c0a2aa73fff-17bfbb4c42b6a660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa711ac-17defa43c2ee9fa0","8f44c0a2aa7384b-1796fafa5ebf2622"]},"geometry":{"type":"LineString","coordinates":[[-83.7165659,32.925882800000004],[-83.716858,32.9257871]]},"id":"8a44c0a2aa77fff-17f6fa9f1ea99669"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa711ac-17defa43c2ee9fa0","8f44c0a2aa71908-179ff9df111c8425"]},"geometry":{"type":"LineString","coordinates":[[-83.716858,32.9257871],[-83.7169349,32.925761900000005],[-83.71698760000001,32.925730300000005],[-83.7170191,32.9256638]]},"id":"8b44c0a2aa71fff-17bfba0975fab527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa75331-179ff9a8f05efad0","8f44c0a2aa71908-179ff9df111c8425"]},"geometry":{"type":"LineString","coordinates":[[-83.7170191,32.9256638],[-83.7171057,32.9254813]]},"id":"8a44c0a2aa77fff-17d6f9c401cf0b27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa75830-1797f9adad3ecc9c","8f44c0a2aa75331-179ff9a8f05efad0"]},"geometry":{"type":"LineString","coordinates":[[-83.7171057,32.9254813],[-83.71714180000001,32.9254051],[-83.7171381,32.9253451],[-83.71709820000001,32.9252447]]},"id":"8b44c0a2aa75fff-17d6399cca86f58e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa29351-17bebb52ec94d059","8f44c0a2aa75830-1797f9adad3ecc9c"]},"geometry":{"type":"LineString","coordinates":[[-83.71709820000001,32.9252447],[-83.7170816,32.925203],[-83.71696130000001,32.925092500000005],[-83.716713,32.924978800000005],[-83.7164242,32.9248971]]},"id":"8a44c0a2aa77fff-17977a7021aae98d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa28d20-13f7bcada9408aa6","8f44c0a2aa05b09-13f77e0833467c5f"]},"geometry":{"type":"LineString","coordinates":[[-83.7158694,32.924188],[-83.7153775,32.9243378],[-83.71531490000001,32.9241879]]},"id":"8a44c0a2aa2ffff-13b67d70fa037cbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa05974-139e3e3291a73eb0","8f44c0a2aa05b09-13f77e0833467c5f"]},"geometry":{"type":"LineString","coordinates":[[-83.71531490000001,32.9241879],[-83.7152471,32.9240258]]},"id":"8b44c0a2aa05fff-13befe1d6b70967c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa05974-139e3e3291a73eb0","8f44c0a2aa23b55-13f63db4ca5f8570"]},"geometry":{"type":"LineString","coordinates":[[-83.7152471,32.9240258],[-83.71517820000001,32.923861],[-83.7154484,32.9237762]]},"id":"8944c0a2aa3ffff-13befe21871ea43f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71621180000001,32.9306677]},"id":"8f44c0a2bd8ac90-13d77bd7a5f18d68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd83cc0-139f7c3f1823682b","8f44c0a2bd8ac90-13d77bd7a5f18d68"]},"geometry":{"type":"LineString","coordinates":[[-83.71621180000001,32.9306677],[-83.7162382,32.9301656],[-83.71623070000001,32.9301246],[-83.7162081,32.9300678],[-83.71614410000001,32.930004600000004],[-83.7160463,32.9299604]]},"id":"8944c0a2bdbffff-13df7bdda841d6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd822c5-13fffcafa2ffc3f9","8f44c0a2bd83cc0-139f7c3f1823682b"]},"geometry":{"type":"LineString","coordinates":[[-83.7160463,32.9299604],[-83.71591090000001,32.9299446],[-83.71586620000001,32.929942000000004]]},"id":"8a44c0a2bd87fff-1396fc775798befb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd822c5-13fffcafa2ffc3f9","8f44c0a2bd826c2-13f67d2c7d290c07"]},"geometry":{"type":"LineString","coordinates":[[-83.71586620000001,32.929942000000004],[-83.71566650000001,32.9299301]]},"id":"8a44c0a2bd87fff-13fe3cee0add7c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd826c2-13f67d2c7d290c07","8f44c0a2bd91323-13ff7dc15141581d"]},"geometry":{"type":"LineString","coordinates":[[-83.71566650000001,32.9299301],[-83.7154283,32.929915900000005]]},"id":"8944c0a2bdbffff-13f7fd76eda57f14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd91323-13ff7dc15141581d","8f44c0a2bd91711-13fe7e4c3efc140d"]},"geometry":{"type":"LineString","coordinates":[[-83.7154283,32.929915900000005],[-83.71527520000001,32.929906700000004],[-83.7152061,32.9299175]]},"id":"8b44c0a2bd91fff-13fefe06ed245a2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2bd9ad12-13d67ee126725c72","8f44c0a2bd91711-13fe7e4c3efc140d"]},"geometry":{"type":"LineString","coordinates":[[-83.7152061,32.9299175],[-83.7151736,32.9299225],[-83.7150833,32.9299699],[-83.7150043,32.9300741],[-83.71496780000001,32.9304871]]},"id":"8944c0a2bdbffff-139e3ebb43c801bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7271092,32.9308445]},"id":"8f44c0a2b9a9569-13b7f13cc7723013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a9569-13b7f13cc7723013","8f44c0a2b988669-17de33b50b0b9294"]},"geometry":{"type":"LineString","coordinates":[[-83.7260976,32.9317027],[-83.7271092,32.9308445]]},"id":"8944c0a2b9bffff-13be2278e35ac3b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a9569-13b7f13cc7723013","8f44c0a2b91184d-13b7bed4591491d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7271092,32.9308445],[-83.72750400000001,32.9305096],[-83.7282055,32.9299144],[-83.72809550000001,32.929823500000005]]},"id":"8844c0a2b9fffff-13f67fca5c23569d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b91184d-13b7bed4591491d9","8f44c0a2b911994-17f67f31ea7b879d"]},"geometry":{"type":"LineString","coordinates":[[-83.72809550000001,32.929823500000005],[-83.7279458,32.9296998]]},"id":"8b44c0a2b911fff-139f1f032fa94cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b910b5d-179fff872aa761e1","8f44c0a2b911994-17f67f31ea7b879d"]},"geometry":{"type":"LineString","coordinates":[[-83.7279458,32.9296998],[-83.7278094,32.929587000000005]]},"id":"8a44c0a2b917fff-17d73f5c8ab7a0a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72770320000001,32.9294992]},"id":"8f44c0a2b910858-17ff1fc986a8435f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b910858-17ff1fc986a8435f","8f44c0a2b910b5d-179fff872aa761e1"]},"geometry":{"type":"LineString","coordinates":[[-83.7278094,32.929587000000005],[-83.72770320000001,32.9294992]]},"id":"8b44c0a2b910fff-17967fa85d864249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7269679,32.928891400000005]},"id":"8f44c0a2864bb82-17ff219512478803"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b910858-17ff1fc986a8435f","8f44c0a2864bb82-17ff219512478803"]},"geometry":{"type":"LineString","coordinates":[[-83.72770320000001,32.9294992],[-83.7269679,32.928891400000005]]},"id":"8844c0a2b9fffff-17bf30af4452f8aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28649511-179ee131c5f07985","8f44c0a2864bb82-17ff219512478803"]},"geometry":{"type":"LineString","coordinates":[[-83.7269679,32.928891400000005],[-83.72712680000001,32.928740600000005]]},"id":"8a44c0a2864ffff-17be216361ae2f16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28649511-179ee131c5f07985","8f44c0a2864d4cb-17de60e7d9271aa5"]},"geometry":{"type":"LineString","coordinates":[[-83.72712680000001,32.928740600000005],[-83.7271973,32.9286736],[-83.7272274,32.928626200000004],[-83.7272451,32.9284582]]},"id":"8a44c0a2864ffff-17bfb0fdff094550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2864dd90-17bf20d4e999797f","8f44c0a2864d4cb-17de60e7d9271aa5"]},"geometry":{"type":"LineString","coordinates":[[-83.7272451,32.9284582],[-83.72727540000001,32.9281712]]},"id":"8a44c0a2864ffff-1796b0de6c4bc811"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2864b0cd-17be71e277e8ee50","8f44c0a2864bb82-17ff219512478803"]},"geometry":{"type":"LineString","coordinates":[[-83.7269679,32.928891400000005],[-83.72684410000001,32.928995900000004]]},"id":"8b44c0a2864bfff-179ff1bbcc600f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2864b0cd-17be71e277e8ee50","8f44c0a2864b6c6-17f6b235c4d81fe0"]},"geometry":{"type":"LineString","coordinates":[[-83.72684410000001,32.928995900000004],[-83.7267108,32.9291083]]},"id":"8b44c0a2864bfff-17d7b20c17fa8166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a5c8c-17bff28a24e66b93","8f44c0a2864b6c6-17f6b235c4d81fe0"]},"geometry":{"type":"LineString","coordinates":[[-83.7267108,32.9291083],[-83.7265758,32.9292223]]},"id":"8a44c0a2b9a7fff-179e725ffca265ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a5494-179622e210fd52a7","8f44c0a2b9a5c8c-17bff28a24e66b93"]},"geometry":{"type":"LineString","coordinates":[[-83.7265758,32.9292223],[-83.7264351,32.929341]]},"id":"8a44c0a2b9a7fff-17f732b62c5404b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a0074-17d7634235b469f6","8f44c0a2b9a5494-179622e210fd52a7"]},"geometry":{"type":"LineString","coordinates":[[-83.7264351,32.929341],[-83.72628130000001,32.929470800000004]]},"id":"8b44c0a2b9a0fff-17beb3122ada0c7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a0605-17b67398f4d97e94","8f44c0a2b9a0074-17d7634235b469f6"]},"geometry":{"type":"LineString","coordinates":[[-83.72628130000001,32.929470800000004],[-83.72614250000001,32.9295879]]},"id":"8b44c0a2b9a0fff-17ffe36d9266b186"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a3da9-17f6e3e9e8437e8a","8f44c0a2b9a0605-17b67398f4d97e94"]},"geometry":{"type":"LineString","coordinates":[[-83.72614250000001,32.9295879],[-83.72601300000001,32.9296972]]},"id":"8a44c0a2b9a7fff-17d6b3c17e6e7d75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72588920000001,32.929801600000005]},"id":"8f44c0a2b9a35a0-13b624374c8a546d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a3da9-17f6e3e9e8437e8a","8f44c0a2b9a35a0-13b624374c8a546d"]},"geometry":{"type":"LineString","coordinates":[[-83.72601300000001,32.9296972],[-83.72588920000001,32.929801600000005]]},"id":"8b44c0a2b9a3fff-1397641096590420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9a35a0-13b624374c8a546d","8f44c0a2b9848ed-13fe648a75135bea"]},"geometry":{"type":"LineString","coordinates":[[-83.72588920000001,32.929801600000005],[-83.7257561,32.929914000000004]]},"id":"8944c0a2b9bffff-13df2460e8705753"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72562280000001,32.9300264]},"id":"8f44c0a2b9840e6-13b6a4ddc39fb6e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9840e6-13b6a4ddc39fb6e2","8f44c0a2b9848ed-13fe648a75135bea"]},"geometry":{"type":"LineString","coordinates":[[-83.7257561,32.929914000000004],[-83.72562280000001,32.9300264]]},"id":"8b44c0a2b984fff-139f64b4289d17c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9864b3-13d736a9d30c7c52","8f44c0a2b9840e6-13b6a4ddc39fb6e2"]},"geometry":{"type":"LineString","coordinates":[[-83.72562280000001,32.9300264],[-83.7255722,32.930069100000004],[-83.7255045,32.9300818],[-83.7248867,32.9300817]]},"id":"8a44c0a2b987fff-13d6e5bf16d2ac48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7277328,32.9313634]},"id":"8f44c0a2b834349-13f63fb7073c821f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b834349-13f63fb7073c821f","8f44c0a2b9a9569-13b7f13cc7723013"]},"geometry":{"type":"LineString","coordinates":[[-83.7277328,32.9313634],[-83.7271092,32.9308445]]},"id":"8844c0a2b9fffff-13d62079e0bd9aa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7266225,32.930428400000004]},"id":"8f44c0a2b9ae24e-13bfe26cf93184af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ae24e-13bfe26cf93184af","8f44c0a2b9a9569-13b7f13cc7723013"]},"geometry":{"type":"LineString","coordinates":[[-83.7271092,32.9308445],[-83.7266225,32.930428400000004]]},"id":"8a44c0a2b9affff-13bff1d4eec14142"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ae24e-13bfe26cf93184af","8f44c0a2b9a35a0-13b624374c8a546d"]},"geometry":{"type":"LineString","coordinates":[[-83.7266225,32.930428400000004],[-83.72588920000001,32.929801600000005]]},"id":"8944c0a2b9bffff-13ffe35224cc5088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b910858-17ff1fc986a8435f","8f44c0a2b910056-17bff017699df8ef"]},"geometry":{"type":"LineString","coordinates":[[-83.72770320000001,32.9294992],[-83.7275786,32.9296063]]},"id":"8b44c0a2b910fff-179e9ff076aea2e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b910056-17bff017699df8ef","8f44c0a2b91061c-17f7f06af640f7a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7275786,32.9296063],[-83.72744490000001,32.929721300000004]]},"id":"8b44c0a2b910fff-17dfe04131324f25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b913ca5-13bfb0c0e4362cec","8f44c0a2b91061c-17f7f06af640f7a1"]},"geometry":{"type":"LineString","coordinates":[[-83.72744490000001,32.929721300000004],[-83.7273074,32.9298395]]},"id":"8a44c0a2b917fff-139ee095f170e73a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b91359e-1397a114618785ae","8f44c0a2b913ca5-13bfb0c0e4362cec"]},"geometry":{"type":"LineString","coordinates":[[-83.7273074,32.9298395],[-83.7271738,32.9299544]]},"id":"8b44c0a2b913fff-13f7a0eaaa10b81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ac162-13d7616cb30b5be8","8f44c0a2b91359e-1397a114618785ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7271738,32.9299544],[-83.7270325,32.930075800000004]]},"id":"8844c0a2b9fffff-13bf714098457e11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ac70c-139e71c62af4ad92","8f44c0a2b9ac162-13d7616cb30b5be8"]},"geometry":{"type":"LineString","coordinates":[[-83.7270325,32.930075800000004],[-83.7268894,32.9301989]]},"id":"8b44c0a2b9acfff-13f7e19973b4bdce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ac70c-139e71c62af4ad92","8f44c0a2b9a8d10-13ff321f8f9e7739"]},"geometry":{"type":"LineString","coordinates":[[-83.7268894,32.9301989],[-83.72674640000001,32.9303219]]},"id":"8a44c0a2b9affff-13d6e1f2d011343a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ae24e-13bfe26cf93184af","8f44c0a2b9a8d10-13ff321f8f9e7739"]},"geometry":{"type":"LineString","coordinates":[[-83.72674640000001,32.9303219],[-83.7266225,32.930428400000004]]},"id":"8b44c0a2b9a8fff-139ea2463ce8d43e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9ae24e-13bfe26cf93184af","8f44c0a2b9aa959-13f6f2afaa981f25"]},"geometry":{"type":"LineString","coordinates":[[-83.7266225,32.930428400000004],[-83.7265158,32.9305199]]},"id":"8a44c0a2b9affff-13de628e5e365da0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9aa959-13f6f2afaa981f25","8f44c0a2b9840e6-13b6a4ddc39fb6e2"]},"geometry":{"type":"LineString","coordinates":[[-83.7265158,32.9305199],[-83.72644120000001,32.9305838],[-83.7264074,32.9306027],[-83.7263585,32.9306122],[-83.7263095,32.9305838],[-83.72562280000001,32.9300264]]},"id":"8944c0a2b9bffff-1397f3ca6b5d433f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2864ac84-17d6f324cd46cd8c","8f44c0a2864e4b3-179ee324c36e098e"]},"geometry":{"type":"LineString","coordinates":[[-83.7263284,32.9281422],[-83.7263284,32.9284431]]},"id":"8a44c0a2864ffff-17f6f324c2d92124"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7252412,32.929232400000004]},"id":"8f44c0a2b9b5476-17d665cc48f2def3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2b9b5476-17d665cc48f2def3","8f44c0a2864ac84-17d6f324cd46cd8c"]},"geometry":{"type":"LineString","coordinates":[[-83.7263284,32.9284431],[-83.7263284,32.9285757],[-83.7259597,32.928642],[-83.7252412,32.929232400000004]]},"id":"8644c0a2fffffff-17bfb4693056acfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299965,32.8383698]},"id":"8f44c0a344ad7b6-13ff2e543f6c323c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a8859-13df8eb762a5653c","8f44c0a344ad7b6-13ff2e543f6c323c"]},"geometry":{"type":"LineString","coordinates":[[-83.6298378,32.838343200000004],[-83.62991070000001,32.8383841],[-83.6299212,32.8383899],[-83.6299427,32.838396700000004],[-83.62997150000001,32.8383995],[-83.6299965,32.8383698]]},"id":"8a44c0a344affff-13f79e842b7a3b76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63039260000001,32.838580400000005]},"id":"8f44c0a3441a570-13f7cd5cab110f1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344ad7b6-13ff2e543f6c323c","8f44c0a3441a570-13f7cd5cab110f1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6299965,32.8383698],[-83.6300848,32.8382643],[-83.63046770000001,32.838488500000004],[-83.63039260000001,32.838580400000005]]},"id":"8844c0a345fffff-13ffbdb20dcc0152"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6302928,32.8385273]},"id":"8f44c0a344ad258-13df9d9b0d1692b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344ad258-13df9d9b0d1692b0","8f44c0a3441a570-13f7cd5cab110f1c"]},"geometry":{"type":"LineString","coordinates":[[-83.63039260000001,32.838580400000005],[-83.6302928,32.8385273]]},"id":"8b44c0a3441afff-13f73d7bd55bb463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344ad258-13df9d9b0d1692b0","8f44c0a344ad7b6-13ff2e543f6c323c"]},"geometry":{"type":"LineString","coordinates":[[-83.6302928,32.8385273],[-83.6299965,32.8383698]]},"id":"8a44c0a344affff-139f6df7a62c91b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a92e3-13d7ce019688d634","8f44c0a344ad258-13df9d9b0d1692b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6302928,32.8385273],[-83.6299954,32.8388714],[-83.6301287,32.8389484]]},"id":"8844c0a345fffff-13df6e04eca2342a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344a92e3-13d7ce019688d634","8f44c0a3441a570-13f7cd5cab110f1c"]},"geometry":{"type":"LineString","coordinates":[[-83.6301287,32.8389484],[-83.6304145,32.8386203],[-83.6304145,32.838602200000004],[-83.63039260000001,32.838580400000005]]},"id":"8844c0a345fffff-13f78d9fa0e3e5b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344f5725-1397bc99447690ba","8f44c0a3441b223-13bf8be9b8fdff0b"]},"geometry":{"type":"LineString","coordinates":[[-83.63070520000001,32.8394507],[-83.6307494,32.8393962],[-83.6309861,32.8391048]]},"id":"8944c0a344fffff-13b79c41852b8084"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344194c6-13b75b7f3335280d","8f44c0a3441b223-13bf8be9b8fdff0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6309861,32.8391048],[-83.6311565,32.8388949]]},"id":"8a44c0a3441ffff-13f7fbb479852129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344194c6-13b75b7f3335280d","8f44c0a34419425-13974b6116d0078f"]},"geometry":{"type":"LineString","coordinates":[[-83.6311565,32.8388949],[-83.63120470000001,32.8388164]]},"id":"8c44c0a344195ff-139fdb702553f8f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3207602e-13df779d318bed7e","8f44c0a3215adab-139f76748df0af1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6130861,32.865579600000004],[-83.61318390000001,32.8656947],[-83.6132989,32.8658012],[-83.6136675,32.865924500000006],[-83.6138138,32.865896500000005],[-83.6138846,32.8656913],[-83.6139577,32.8653951],[-83.61403820000001,32.865187500000005],[-83.6141774,32.865086600000005],[-83.61419620000001,32.8650514],[-83.6141741,32.865009400000005],[-83.614001,32.864935700000004],[-83.6135608,32.8648583]]},"id":"8844c0a321fffff-13ffb5f73dc225de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3215ad82-1397768bd002118c","8f44c0a3215adab-139f76748df0af1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6135608,32.8648583],[-83.6135235,32.864851800000004]]},"id":"8d44c0a3215adbf-1397768036d3dd27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6997374,32.802889900000004]},"id":"8f44c0b1d8edc86-13de741029502c67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8edc86-13de741029502c67","8f44c0b1d8e9c30-13d674334e60a0d4"]},"geometry":{"type":"LineString","coordinates":[[-83.6996812,32.8032865],[-83.699652,32.8031041],[-83.6996397,32.8029856],[-83.69968870000001,32.8029232],[-83.6997374,32.802889900000004]]},"id":"8a44c0b1d8effff-13d6e43c43c75028"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69989120000001,32.8027871]},"id":"8f44c0b1d8536f1-139ff3b00a32f8df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8536f1-139ff3b00a32f8df","8f44c0b1d8edc86-13de741029502c67"]},"geometry":{"type":"LineString","coordinates":[[-83.6997374,32.802889900000004],[-83.69989120000001,32.8027871]]},"id":"8a44c0b1d8effff-13be73e01d953057"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70004850000001,32.802677100000004]},"id":"8f44c0b1d85305b-13df734db24324ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8536f1-139ff3b00a32f8df","8f44c0b1d85305b-13df734db24324ec"]},"geometry":{"type":"LineString","coordinates":[[-83.69989120000001,32.8027871],[-83.70004850000001,32.802677100000004]]},"id":"8b44c0b1d853fff-13fff37eee0aaff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d85171a-1396627b7debb7e5","8f44c0b1d85305b-13df734db24324ec"]},"geometry":{"type":"LineString","coordinates":[[-83.70004850000001,32.802677100000004],[-83.70011690000001,32.802630300000004],[-83.7002135,32.8026056],[-83.7003849,32.802595600000004]]},"id":"8a44c0b1d857fff-13b672e842f0ee9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70001690000001,32.802906]},"id":"8f44c0b1d8ed80c-13de636170b6d00f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8edc86-13de741029502c67","8f44c0b1d8ed80c-13de636170b6d00f"]},"geometry":{"type":"LineString","coordinates":[[-83.6997374,32.802889900000004],[-83.6998724,32.8030093],[-83.70001690000001,32.802906]]},"id":"8b44c0b1d8edfff-13f663ba9d7dc1ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8ed80c-13de636170b6d00f","8f44c0b1d85305b-13df734db24324ec"]},"geometry":{"type":"LineString","coordinates":[[-83.70001690000001,32.802906],[-83.70017100000001,32.802795800000005],[-83.70004850000001,32.802677100000004]]},"id":"8944c0b1d87ffff-1397f32ca9006c9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7000052,32.802895400000004]},"id":"8f44c0b1d8ed800-13d7e368c3bf716a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8ed800-13d7e368c3bf716a","8f44c0b1d8ed80c-13de636170b6d00f"]},"geometry":{"type":"LineString","coordinates":[[-83.7000052,32.802895400000004],[-83.70001690000001,32.802906]]},"id":"8d44c0b1d8ed83f-13d6f3652ac20042"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6999062,32.8028008]},"id":"8f44c0b1d8536c5-1396e3a6a441480c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8536f1-139ff3b00a32f8df","8f44c0b1d8536c5-1396e3a6a441480c"]},"geometry":{"type":"LineString","coordinates":[[-83.69989120000001,32.8027871],[-83.6999062,32.8028008]]},"id":"8d44c0b1d8536ff-139663ab5e1e64bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6329905,32.8444027]},"id":"8f44c0a346a69ac-17b7b704fc52596d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346a04c2-139fa6e21c3d5e00","8f44c0a346a69ac-17b7b704fc52596d"]},"geometry":{"type":"LineString","coordinates":[[-83.6330463,32.8449722],[-83.6331607,32.8448371],[-83.6333474,32.844616800000004],[-83.6329905,32.8444027]]},"id":"8a44c0a346a7fff-13df968c35b6c70a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6328277,32.844419]},"id":"8f44c0a346a6c22-17b7e76ab4ced88f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346a6c22-17b7e76ab4ced88f","8f44c0a346a69ac-17b7b704fc52596d"]},"geometry":{"type":"LineString","coordinates":[[-83.6329905,32.8444027],[-83.6331382,32.8442299],[-83.63289680000001,32.8440852],[-83.63269190000001,32.8443367],[-83.6328277,32.844419]]},"id":"8844c0a347fffff-17d73734cab5364d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346a6c22-17b7e76ab4ced88f","8f44c0a346a69ac-17b7b704fc52596d"]},"geometry":{"type":"LineString","coordinates":[[-83.6328277,32.844419],[-83.6329207,32.844476300000004],[-83.6329905,32.8444027]]},"id":"8b44c0a346a6fff-17d757352d8606f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63438140000001,32.845209700000005]},"id":"8f44c0a34612a6d-13b7139fab66ab98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63445440000001,32.845118]},"id":"8f44c0a346107a1-13f7c3720e41f4fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34612a6d-13b7139fab66ab98","8f44c0a346107a1-13f7c3720e41f4fe"]},"geometry":{"type":"LineString","coordinates":[[-83.63438140000001,32.845209700000005],[-83.63445440000001,32.845118]]},"id":"8b44c0a34610fff-13977388df818d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6340828,32.844885000000005]},"id":"8f44c0a346166f6-13d7245a482d9aa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346166f6-13d7245a482d9aa3","8f44c0a346107a1-13f7c3720e41f4fe"]},"geometry":{"type":"LineString","coordinates":[[-83.63445440000001,32.845118],[-83.6345259,32.8450283],[-83.63415640000001,32.8447936],[-83.6340828,32.844885000000005]]},"id":"8a44c0a34617fff-13ffe3c1112f2ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346166f6-13d7245a482d9aa3","8f44c0a346107a1-13f7c3720e41f4fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6340828,32.844885000000005],[-83.63445440000001,32.845118]]},"id":"8a44c0a34617fff-139ff3e62e902a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34612a6d-13b7139fab66ab98","8f44c0a346acbad-13ff042de5c11fa4"]},"geometry":{"type":"LineString","coordinates":[[-83.63438140000001,32.845209700000005],[-83.6342116,32.845412],[-83.6341945,32.8455013],[-83.6341538,32.8455408]]},"id":"8844c0a347fffff-139783ec24ecfcf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346acbad-13ff042de5c11fa4","8f44c0a346ac3a0-13bf047b4de46277"]},"geometry":{"type":"LineString","coordinates":[[-83.6341538,32.8455408],[-83.63403000000001,32.845660800000005]]},"id":"8b44c0a346acfff-139784549a8eec76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346ad023-13dfa3b34b7ea8d7","8f44c0a346ad918-13df437780d3298f"]},"geometry":{"type":"LineString","coordinates":[[-83.63435000000001,32.845889],[-83.6344456,32.845720400000005]]},"id":"8b44c0a346adfff-1397f3956d84085a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346114dc-13b742c75b2a51fe","8f44c0a346ad918-13df437780d3298f"]},"geometry":{"type":"LineString","coordinates":[[-83.6344456,32.845720400000005],[-83.63454510000001,32.8457833],[-83.63472750000001,32.845421200000004]]},"id":"8944c0a3463ffff-13bf731421341f6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26359655-179f7dec72e47128","8f44c0a26266c46-17f6fe2953422aaa"]},"geometry":{"type":"LineString","coordinates":[[-83.6891449,32.857496600000005],[-83.6890475,32.8576301]]},"id":"8844c0a263fffff-17df7e0ae3e07375"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26266c46-17f6fe2953422aaa","8f44c0a26275271-13f67ee4fefde51a"]},"geometry":{"type":"LineString","coordinates":[[-83.6890475,32.8576301],[-83.6887473,32.8580419]]},"id":"8944c0a2627ffff-13f7fe8722e7bbe3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2627538b-13d7ff21952e2a37","8f44c0a26275271-13f67ee4fefde51a"]},"geometry":{"type":"LineString","coordinates":[[-83.6887473,32.8580419],[-83.6886503,32.8579935]]},"id":"8c44c0a262753ff-13f77f0342b2e7da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262768de-17dfa121146e90a6","8f44c0a2627538b-13d7ff21952e2a37"]},"geometry":{"type":"LineString","coordinates":[[-83.6886503,32.8579935],[-83.6878319,32.8575698]]},"id":"8a44c0a26277fff-13d7902153b2b42e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2635a574-17feb01fba7289e7","8f44c0a2635a4c4-17bec04f70aa5393"]},"geometry":{"type":"LineString","coordinates":[[-83.6882437,32.8570307],[-83.6881673,32.8571308]]},"id":"8c44c0a2635a5ff-179f803795d96573"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262768de-17dfa121146e90a6","8f44c0a2635a4c4-17bec04f70aa5393"]},"geometry":{"type":"LineString","coordinates":[[-83.6881673,32.8571308],[-83.6878319,32.8575698]]},"id":"8844c0a263fffff-17d7f0b84fbe2035"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68726330000001,32.857669200000004]},"id":"8f44c0a2620d1a5-139fc2847244a648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a262768de-17dfa121146e90a6","8f44c0a2620d1a5-139fc2847244a648"]},"geometry":{"type":"LineString","coordinates":[[-83.6878319,32.8575698],[-83.6876529,32.8577852],[-83.6876166,32.8578114],[-83.68756760000001,32.8578111],[-83.68726330000001,32.857669200000004]]},"id":"8844c0a263fffff-13bf81c4728e9145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81030495-13fffe1423fb20cf","8f44c0b81032adc-13ffbe3711fe574d"]},"geometry":{"type":"LineString","coordinates":[[-83.55795350000001,32.8158377],[-83.5580025,32.81568],[-83.5580094,32.815636500000004]]},"id":"8b44c0b81032fff-13bfbe241e53a5eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8118e59d-13d7f218a0f3b7a6","8f44c0b81030495-13fffe1423fb20cf"]},"geometry":{"type":"LineString","coordinates":[[-83.5580094,32.815636500000004],[-83.5578476,32.815552000000004],[-83.5576065,32.8154634],[-83.5574744,32.8154379],[-83.5572226,32.8154454],[-83.5569981,32.8154039],[-83.5563638,32.8151571]]},"id":"8844c0b811fffff-13dff01602bf019f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55807990000001,32.8154914]},"id":"8f44c0b81036265-1397bde81b29b8cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036265-1397bde81b29b8cb","8f44c0b81030495-13fffe1423fb20cf"]},"geometry":{"type":"LineString","coordinates":[[-83.5580094,32.815636500000004],[-83.55807990000001,32.8154914]]},"id":"8a44c0b81037fff-13bfbdfe29919bc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036b5a-13b7bdba77b470ee","8f44c0b81036265-1397bde81b29b8cb"]},"geometry":{"type":"LineString","coordinates":[[-83.55807990000001,32.8154914],[-83.55815290000001,32.815338600000004]]},"id":"8b44c0b81036fff-13f7fdd14e5f8a67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036b5a-13b7bdba77b470ee","8f44c0b81034425-13dfbd87059b1296"]},"geometry":{"type":"LineString","coordinates":[[-83.55815290000001,32.815338600000004],[-83.5582352,32.8151705]]},"id":"8a44c0b81037fff-13ffbda0c313c8d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5583168,32.815003700000005]},"id":"8f44c0b81034d1c-17f7fd540c21795c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81034d1c-17f7fd540c21795c","8f44c0b81034425-13dfbd87059b1296"]},"geometry":{"type":"LineString","coordinates":[[-83.5582352,32.8151705],[-83.5583168,32.815003700000005]]},"id":"8b44c0b81034fff-1397fd6d8cc05ee2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036265-1397bde81b29b8cb","8f44c0b8103532d-13f7bbebe95af069"]},"geometry":{"type":"LineString","coordinates":[[-83.55807990000001,32.8154914],[-83.55875660000001,32.8157386],[-83.55884350000001,32.815715600000004],[-83.55889300000001,32.815627500000005]]},"id":"8a44c0b81037fff-13ffbcdde7d412ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8103532d-13f7bbebe95af069","8f44c0b8102648e-13f7fbb0d39df3e2"]},"geometry":{"type":"LineString","coordinates":[[-83.55889300000001,32.815627500000005],[-83.5589875,32.815448700000005]]},"id":"8944c0b8103ffff-13bffbce524b4596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81034d1c-17f7fd540c21795c","8f44c0b8102648e-13f7fbb0d39df3e2"]},"geometry":{"type":"LineString","coordinates":[[-83.5589875,32.815448700000005],[-83.5590674,32.8152824],[-83.5583168,32.815003700000005]]},"id":"8944c0b8103ffff-13d7fc4238ccd45e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81034d1c-17f7fd540c21795c","8f44c0b811aa4ee-17b7c07c95f9593e"]},"geometry":{"type":"LineString","coordinates":[[-83.5583168,32.815003700000005],[-83.5572051,32.8145727],[-83.5571357,32.8145478],[-83.5571115,32.8145375],[-83.55702310000001,32.814704]]},"id":"8844c0b811fffff-17d7bf00148c7781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8118cdb0-179fe0b46b45a04f","8f44c0b811aa4ee-17b7c07c95f9593e"]},"geometry":{"type":"LineString","coordinates":[[-83.55702310000001,32.814704],[-83.55693380000001,32.8148722]]},"id":"8944c0b811bffff-17dfd098896a7e76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8118c585-17f7f0e835c72635","8f44c0b8118cdb0-179fe0b46b45a04f"]},"geometry":{"type":"LineString","coordinates":[[-83.55693380000001,32.8148722],[-83.5568509,32.8150283]]},"id":"8a44c0b8118ffff-17bff0ce5ae4820c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8118dd00-13f7bfa3f46555c0","8f44c0b8118c585-17f7f0e835c72635"]},"geometry":{"type":"LineString","coordinates":[[-83.5568509,32.8150283],[-83.5567717,32.815177500000004],[-83.55722300000001,32.815345],[-83.5573099,32.8153318],[-83.55736970000001,32.8152081]]},"id":"8a44c0b8118ffff-13f7e070a25efc1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81036265-1397bde81b29b8cb","8f44c0b8118dd00-13f7bfa3f46555c0"]},"geometry":{"type":"LineString","coordinates":[[-83.55736970000001,32.8152081],[-83.55807990000001,32.8154914]]},"id":"8844c0b811fffff-13bfbec607b6115f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66487570000001,32.829581600000004]},"id":"8f44c0b1b106d35-13feb92cbd523a50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b106d35-13feb92cbd523a50","8f44c0b1b106724-17bfb92ad59c57c3"]},"geometry":{"type":"LineString","coordinates":[[-83.6648787,32.829870400000004],[-83.66487570000001,32.829581600000004]]},"id":"8b44c0b1b106fff-13d6f92bc363ccc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6646803,32.8291252]},"id":"8f44c0b1b1300c2-13dff9a6da571c3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b106d35-13feb92cbd523a50","8f44c0b1b1300c2-13dff9a6da571c3b"]},"geometry":{"type":"LineString","coordinates":[[-83.66487570000001,32.829581600000004],[-83.6648708,32.8291241],[-83.6646803,32.8291252]]},"id":"8a44c0b1b137fff-13bfb9403ac8500f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b132561-13dffafe550b1893","8f44c0b1b1300c2-13dff9a6da571c3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6646803,32.8291252],[-83.6641307,32.829128700000005]]},"id":"8a44c0b1b137fff-13defa5298893f5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc49969-13debb6cf48c9ad8","8f44c0b1b132561-13dffafe550b1893"]},"geometry":{"type":"LineString","coordinates":[[-83.6641307,32.829128700000005],[-83.66395370000001,32.829129800000004]]},"id":"8c44c0b1b1325ff-13dffb35a3e66915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b13128c-13f6f8a03df4d1a3","8f44c0b1b106d35-13feb92cbd523a50"]},"geometry":{"type":"LineString","coordinates":[[-83.66510050000001,32.8295788],[-83.66487570000001,32.829581600000004]]},"id":"8944c0b1b13ffff-13f7b8e670171b4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66468540000001,32.829583]},"id":"8f44c0b1b133306-13fff9a3aa4a463c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b106d35-13feb92cbd523a50","8f44c0b1b133306-13fff9a3aa4a463c"]},"geometry":{"type":"LineString","coordinates":[[-83.66487570000001,32.829581600000004],[-83.66468540000001,32.829583]]},"id":"8a44c0b1b137fff-13fef96823e2e8b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b115b0d-17d7b99ffdfd231a","8f44c0b1b1064b5-13feb9a138cf8f11"]},"geometry":{"type":"LineString","coordinates":[[-83.6646913,32.8299025],[-83.6646893,32.8297954]]},"id":"8a44c0b1b107fff-179fb9a09fc1b1f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b133306-13fff9a3aa4a463c","8f44c0b1b1064b5-13feb9a138cf8f11"]},"geometry":{"type":"LineString","coordinates":[[-83.6646893,32.8297954],[-83.66468540000001,32.829583]]},"id":"8944c0b1b13ffff-13bff9a270f75760"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b133306-13fff9a3aa4a463c","8f44c0b1b1338e3-139ef9a292a3b83a"]},"geometry":{"type":"LineString","coordinates":[[-83.66468540000001,32.829583],[-83.66468710000001,32.829406]]},"id":"8b44c0b1b133fff-13d6b9a31db3aa15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1338e3-139ef9a292a3b83a","8f44c0b1b130668-13bef9a5c2f151b0"]},"geometry":{"type":"LineString","coordinates":[[-83.66468710000001,32.829406],[-83.6647123,32.8293776],[-83.6647107,32.829285500000005],[-83.664682,32.8292487]]},"id":"8a44c0b1b137fff-13dfb9976b23ea06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b130668-13bef9a5c2f151b0","8f44c0b1b1300c2-13dff9a6da571c3b"]},"geometry":{"type":"LineString","coordinates":[[-83.664682,32.8292487],[-83.6646803,32.8291252]]},"id":"8b44c0b1b130fff-1397f9a645cb00fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631072,32.8162901]},"id":"8f44c0b1878424d-1397fd7e04adc22b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878424d-1397fd7e04adc22b","8f44c0b187846d8-1396fe377935ef14"]},"geometry":{"type":"LineString","coordinates":[[-83.6628105,32.816286000000005],[-83.6631072,32.8162901]]},"id":"8a44c0b18787fff-1396bddaccf718ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6635976,32.8162968]},"id":"8f44c0b187ae40a-139fbc4b8d0d8648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878424d-1397fd7e04adc22b","8f44c0b187ae40a-139fbc4b8d0d8648"]},"geometry":{"type":"LineString","coordinates":[[-83.6631072,32.8162901],[-83.6635976,32.8162968]]},"id":"8944c0b187bffff-1397fce4c1b9ab7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187ae40a-139fbc4b8d0d8648","8f44c0b187aea2e-139efb57065c2fa0"]},"geometry":{"type":"LineString","coordinates":[[-83.6635976,32.8162968],[-83.6639888,32.8163021]]},"id":"8b44c0b187aefff-139fbbd14df65be0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631425,32.815322]},"id":"8f44c0b187a6746-13befd67f17d86c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a6746-13befd67f17d86c5","8f44c0b187a6181-13debd66892fdf00"]},"geometry":{"type":"LineString","coordinates":[[-83.66314480000001,32.815168],[-83.6631425,32.815322]]},"id":"8b44c0b187a6fff-13febd673b83b9b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66312070000001,32.8158125]},"id":"8f44c0b187a22ad-13defd759106c4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a22ad-13defd759106c4a0","8f44c0b187a6746-13befd67f17d86c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6631425,32.815322],[-83.66312070000001,32.8158125]]},"id":"8a44c0b187a7fff-13d7bd6ec68f9d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631115,32.8161733]},"id":"8f44c0b18784ad9-13befd7b582f3ff3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a22ad-13defd759106c4a0","8f44c0b18784ad9-13befd7b582f3ff3"]},"geometry":{"type":"LineString","coordinates":[[-83.66312070000001,32.8158125],[-83.6631115,32.8161733]]},"id":"8944c0b187bffff-13dfbd7874c5d423"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878424d-1397fd7e04adc22b","8f44c0b18784ad9-13befd7b582f3ff3"]},"geometry":{"type":"LineString","coordinates":[[-83.6631115,32.8161733],[-83.6631072,32.8162901]]},"id":"8a44c0b18787fff-13f6fd7cb843fe5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636019,32.816180100000004]},"id":"8f44c0b187ae534-13d6bc48d55db3f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187ae534-13d6bc48d55db3f9","8f44c0b18784ad9-13befd7b582f3ff3"]},"geometry":{"type":"LineString","coordinates":[[-83.6631115,32.8161733],[-83.6636019,32.816180100000004]]},"id":"8944c0b187bffff-13befce2196ef7f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187ae40a-139fbc4b8d0d8648","8f44c0b187ae534-13d6bc48d55db3f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6636019,32.816180100000004],[-83.6635976,32.8162968]]},"id":"8c44c0b187ae5ff-13f7bc4a3ea4b781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a22ad-13defd759106c4a0","8f44c0b187b1a46-13d7fe30df08a9fc"]},"geometry":{"type":"LineString","coordinates":[[-83.6628211,32.8158036],[-83.66312070000001,32.8158125]]},"id":"8944c0b187bffff-13debdd334f4f4dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6638451,32.8158361]},"id":"8f44c0b187a1199-13ffbbb0d6f8c985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a22ad-13defd759106c4a0","8f44c0b187a1199-13ffbbb0d6f8c985"]},"geometry":{"type":"LineString","coordinates":[[-83.66312070000001,32.8158125],[-83.6638451,32.8158361]]},"id":"8a44c0b187a7fff-13f6bc933afe8e66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a1199-13ffbbb0d6f8c985","8f44c0b187a1b9e-13ffbb45af65298b"]},"geometry":{"type":"LineString","coordinates":[[-83.6638451,32.8158361],[-83.66401660000001,32.8158416]]},"id":"8b44c0b187a1fff-13fffb7b3c495cf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a5535-13befbaa1ed1e2e3","8f44c0b187a1199-13ffbbb0d6f8c985"]},"geometry":{"type":"LineString","coordinates":[[-83.6638451,32.8158361],[-83.6638559,32.8153263]]},"id":"8a44c0b187a7fff-13defbad73c2996d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a6746-13befd67f17d86c5","8f44c0b187a5535-13befbaa1ed1e2e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6638559,32.8153263],[-83.6631425,32.815322]]},"id":"8a44c0b187a7fff-13bfbc890cef14ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a6b0e-13debcc5cd370075","8f44c0b187a6181-13debd66892fdf00"]},"geometry":{"type":"LineString","coordinates":[[-83.66314480000001,32.815168],[-83.663402,32.8151722]]},"id":"8b44c0b187a6fff-13dffd16227d492b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844b6e1-13d6fb32b747d788","8f44c0b187a6b0e-13debcc5cd370075"]},"geometry":{"type":"LineString","coordinates":[[-83.663402,32.8151722],[-83.6640469,32.8151845]]},"id":"8a44c0b187a7fff-13debbfc44559fc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66341200000001,32.8146227]},"id":"8f44c0b18459831-17f7bcbf846f0d1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18459831-17f7bcbf846f0d1a","8f44c0b1844aa91-17b7bb91f92db369"]},"geometry":{"type":"LineString","coordinates":[[-83.66341200000001,32.8146227],[-83.6635988,32.8146233],[-83.6635957,32.814695400000005],[-83.66389450000001,32.814702600000004]]},"id":"8944c0b1847ffff-179ffc2d750f56e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1844aa0d-17b6bb51fe64b74e","8f44c0b1844aa91-17b7bb91f92db369"]},"geometry":{"type":"LineString","coordinates":[[-83.66389450000001,32.814702600000004],[-83.6639969,32.814705000000004]]},"id":"8c44c0b1844abff-17b7fb71f564f744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18448696-17b7fb25b686ecad","8f44c0b1844aa0d-17b6bb51fe64b74e"]},"geometry":{"type":"LineString","coordinates":[[-83.6639969,32.814705000000004],[-83.6640677,32.814706900000004]]},"id":"8c44c0b1844abff-17b7fb3bd2c3f9a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18459831-17f7bcbf846f0d1a","8f44c0b1845d296-17b7bcbe0ff8f948"]},"geometry":{"type":"LineString","coordinates":[[-83.66341440000001,32.8144979],[-83.66341200000001,32.8146227]]},"id":"8a44c0b1845ffff-17debcbecf7f1310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184598e3-179ffcc04f7581ca","8f44c0b18459831-17f7bcbf846f0d1a"]},"geometry":{"type":"LineString","coordinates":[[-83.66341200000001,32.8146227],[-83.66341080000001,32.814687]]},"id":"8c44c0b184599ff-1797fcbfe0b4ae43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a3349-13b7bc47779aadf4","8f44c0b187ae534-13d6bc48d55db3f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6636019,32.816180100000004],[-83.6636041,32.8161331]]},"id":"8b44c0b187aefff-13b7fc4820b37c88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187a1a98-1397fb47b5c7bf67","8f44c0b187a3349-13b7bc47779aadf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6636041,32.8161331],[-83.6636151,32.8159009],[-83.66401330000001,32.815910200000005]]},"id":"8a44c0b187a7fff-13bebbf3489350f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341a80ce-13def682dbfcde39","8f44c0a341a88f4-13dff64e788ab28a"]},"geometry":{"type":"LineString","coordinates":[[-83.63983610000001,32.8360854],[-83.63975230000001,32.836266800000004]]},"id":"8b44c0a341a8fff-1396f668af4d5e2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419532a-139efb7271849c91","8f44c0a3419132d-1797fbb519eedc6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6377305,32.8359552],[-83.6374602,32.8362867],[-83.63762390000001,32.8363831]]},"id":"8a44c0a34197fff-139efbd125c07827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6378049,32.8364895]},"id":"8f44c0a3419cc71-17d7fb43f9c46d8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419132d-1797fbb519eedc6b","8f44c0a3419cc71-17d7fb43f9c46d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.63762390000001,32.8363831],[-83.6378049,32.8364895]]},"id":"8944c0a341bffff-17b6fb7c8dc81b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34192d1b-13defe4f26042c62","8f44c0a34191c8b-1396fc62c9688d36"]},"geometry":{"type":"LineString","coordinates":[[-83.63655820000001,32.835882500000004],[-83.63724,32.8363012],[-83.63734600000001,32.836179300000005]]},"id":"8a44c0a34197fff-13fffd50be62f6e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419035a-13f6fc9c1d7102e5","8f44c0a34191c8b-1396fc62c9688d36"]},"geometry":{"type":"LineString","coordinates":[[-83.63734600000001,32.836179300000005],[-83.63725430000001,32.836123]]},"id":"8a44c0a34197fff-1396fc7f6449a80a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3419035a-13f6fc9c1d7102e5","8f44c0a341903b3-13defcddf7c347fb"]},"geometry":{"type":"LineString","coordinates":[[-83.63725430000001,32.836123],[-83.6371489,32.836058300000005]]},"id":"8c44c0a341903ff-13defcbd08c09d3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341903b3-13defcddf7c347fb","8f44c0a3419629e-13b7fdcdefe85726"]},"geometry":{"type":"LineString","coordinates":[[-83.6371489,32.836058300000005],[-83.63676500000001,32.8358225]]},"id":"8a44c0a34197fff-13fefd55e527f1ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34196631-139ffe10f08fd91c","8f44c0a3419629e-13b7fdcdefe85726"]},"geometry":{"type":"LineString","coordinates":[[-83.63676500000001,32.8358225],[-83.6366577,32.8357565]]},"id":"8b44c0a34196fff-13b6fdef608a7269"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6376771,32.8456204]},"id":"8f44c0a34629a95-13b6fb93d000c03a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6374006,32.8455406]},"id":"8f44c0a34629519-13fefc40a8978cba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34629519-13fefc40a8978cba","8f44c0a34629a95-13b6fb93d000c03a"]},"geometry":{"type":"LineString","coordinates":[[-83.6376771,32.8456204],[-83.6374006,32.8455406]]},"id":"8b44c0a34629fff-1397fbea47c4631b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34628322-13f7fc6ec9c14752","8f44c0a34629519-13fefc40a8978cba"]},"geometry":{"type":"LineString","coordinates":[[-83.6374006,32.8455406],[-83.6372551,32.845495],[-83.63732680000001,32.8453429]]},"id":"8a44c0a3462ffff-13d6fc7a35176b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34628322-13f7fc6ec9c14752","8f44c0a34629a95-13b6fb93d000c03a"]},"geometry":{"type":"LineString","coordinates":[[-83.63732680000001,32.8453429],[-83.6377265,32.845488200000005],[-83.6376771,32.8456204]]},"id":"8a44c0a3462ffff-13b6fbd69c180321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34629519-13fefc40a8978cba","8f44c0a34629a95-13b6fb93d000c03a"]},"geometry":{"type":"LineString","coordinates":[[-83.6376771,32.8456204],[-83.63762050000001,32.845772100000005],[-83.63733350000001,32.8456944],[-83.6374006,32.8455406]]},"id":"8944c0a3463ffff-13dffc079379153e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344f0154-139fdd864cbb84d5","8f44c0a344f3480-17bfbe8d736abfc0"]},"geometry":{"type":"LineString","coordinates":[[-83.63032600000001,32.8394701],[-83.6299049,32.8399275]]},"id":"8a44c0a344f7fff-17bfce09e3d80664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344d4a94-179f4ed987a04f6f","8f44c0a344f3480-17bfbe8d736abfc0"]},"geometry":{"type":"LineString","coordinates":[[-83.6299049,32.8399275],[-83.6297832,32.840059600000004]]},"id":"8b44c0a344d4fff-17f70eb38680f884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402652,32.841228]},"id":"8f44c0a340c0955-17f7f54242e0bcd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6404033,32.8412686]},"id":"8f44c0a340c5401-1396f4ebf7d9a064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340c0955-17f7f54242e0bcd9","8f44c0a340c5401-1396f4ebf7d9a064"]},"geometry":{"type":"LineString","coordinates":[[-83.6402652,32.841228],[-83.6403872,32.8409429],[-83.6405146,32.8409846],[-83.6404033,32.8412686]]},"id":"8a44c0a340c7fff-179ff4ec60a20474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340c0955-17f7f54242e0bcd9","8f44c0a340c5401-1396f4ebf7d9a064"]},"geometry":{"type":"LineString","coordinates":[[-83.6404033,32.8412686],[-83.6402652,32.841228]]},"id":"8a44c0a340c7fff-17f6f517272973a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340c0955-17f7f54242e0bcd9","8f44c0a340c46dc-17d7f5abb2fa43f0"]},"geometry":{"type":"LineString","coordinates":[[-83.6402652,32.841228],[-83.6400965,32.8411702]]},"id":"8b44c0a340c0fff-17d7f576f13c92b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6450903,32.8404886]},"id":"8f44c0a3406dcb6-179fe97a9a5e9f67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6452259,32.8405659]},"id":"8f44c0a3406dc5d-17dff925ded6985a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406dcb6-179fe97a9a5e9f67","8f44c0a3406dc5d-17dff925ded6985a"]},"geometry":{"type":"LineString","coordinates":[[-83.6450903,32.8404886],[-83.6454071,32.8401221],[-83.645499,32.8401508],[-83.64559770000001,32.8402106],[-83.64564320000001,32.840289500000004],[-83.6455815,32.840407400000004],[-83.6454839,32.8405086],[-83.645408,32.8405604],[-83.64531790000001,32.8405811],[-83.6452259,32.8405659]]},"id":"8744c0a34ffffff-17d7e8b6cc09410d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406dcb6-179fe97a9a5e9f67","8f44c0a3406dc5d-17dff925ded6985a"]},"geometry":{"type":"LineString","coordinates":[[-83.6452259,32.8405659],[-83.6450903,32.8404886]]},"id":"8c44c0a3406ddff-17b7f9503f84a278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3406c05a-17f6f9dea8845d4b","8f44c0a3406dcb6-179fe97a9a5e9f67"]},"geometry":{"type":"LineString","coordinates":[[-83.6450903,32.8404886],[-83.6449302,32.8403979]]},"id":"8a44c0a3406ffff-17fff9ac983c8f01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34816-1797f55b72e71bf7","8f44c0a3449b676-179ff485dd28c11d"]},"geometry":{"type":"LineString","coordinates":[[-83.6271177,32.839655900000004],[-83.6274595,32.8398574]]},"id":"8944c0a36b3ffff-17dff4f0a424bed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3449b676-179ff485dd28c11d","8f44c0a36b35c29-17df94c86b9119d7"]},"geometry":{"type":"LineString","coordinates":[[-83.6274595,32.8398574],[-83.627353,32.8399848]]},"id":"8944c0a36b3ffff-17b7b4a71086d1b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b35c29-17df94c86b9119d7","8f44c0a36b34188-17df35a06f410d10"]},"geometry":{"type":"LineString","coordinates":[[-83.627353,32.8399848],[-83.62700740000001,32.8397811]]},"id":"8a44c0a36b37fff-179ff53465bf99d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b34188-17df35a06f410d10","8f44c0a3686926a-17b71604d0246db6"]},"geometry":{"type":"LineString","coordinates":[[-83.62700740000001,32.8397811],[-83.6268467,32.8396832]]},"id":"8b44c0a36b34fff-17d7b5d29e54f609"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36856c99-13b7def6b1c68c4d","8f44c0a3680968c-13d7deabb1a9f9db"]},"geometry":{"type":"LineString","coordinates":[[-83.6233029,32.8383356],[-83.6231829,32.8384829]]},"id":"8944c0a3687ffff-1397ded13226d2d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36856c99-13b7def6b1c68c4d","8f44c0a36850dae-13d71dfbba1cef36"]},"geometry":{"type":"LineString","coordinates":[[-83.6231829,32.8384829],[-83.6235845,32.8387137]]},"id":"8a44c0a36857fff-13fffe7938d5aa11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36854712-13fffdb31d6cdf75","8f44c0a36850dae-13d71dfbba1cef36"]},"geometry":{"type":"LineString","coordinates":[[-83.6235845,32.8387137],[-83.6237007,32.838571]]},"id":"8a44c0a36857fff-13977dd76015b55c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36835362-13dff0844de25bcc","8f44c0a36835519-13f73155d7c7724c"]},"geometry":{"type":"LineString","coordinates":[[-83.62254680000001,32.835686100000004],[-83.6222115,32.8355073]]},"id":"8b44c0a36835fff-13b7f0ed01b516b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36835362-13dff0844de25bcc","8f44c0a36835519-13f73155d7c7724c"]},"geometry":{"type":"LineString","coordinates":[[-83.6222115,32.8355073],[-83.62186870000001,32.8359468],[-83.6221903,32.836119000000004],[-83.62254680000001,32.835686100000004]]},"id":"8a44c0a36837fff-13d7f174fccf6997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e0720-139fd4c21298eae2","8f44c0ba92e059c-13df35357341d33c"]},"geometry":{"type":"LineString","coordinates":[[-83.62736310000001,32.8320732],[-83.6271785,32.8319634]]},"id":"8b44c0ba92e0fff-13ff74fbcc05a81d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6264357,32.832842500000005]},"id":"8f44c0ba92c6219-13ff9705b3154be0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e059c-13df35357341d33c","8f44c0ba92c6219-13ff9705b3154be0"]},"geometry":{"type":"LineString","coordinates":[[-83.6271785,32.8319634],[-83.6264357,32.832842500000005]]},"id":"8944c0ba92fffff-13dff61d94318a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7268705,32.832745100000004]},"id":"8f44c0b0bc73b32-13b7b1d1f7cf735b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72674280000001,32.8327412]},"id":"8f44c0b0bc738d3-13bf6221cb025895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc738d3-13bf6221cb025895","8f44c0b0bc73b32-13b7b1d1f7cf735b"]},"geometry":{"type":"LineString","coordinates":[[-83.7268705,32.832745100000004],[-83.72674280000001,32.8327412]]},"id":"8b44c0b0bc73fff-13b6a1f9d71dc501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72672580000001,32.8331408]},"id":"8f44c0b0bc55844-17bf222c60b0ca34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc738d3-13bf6221cb025895","8f44c0b0bc55844-17bf222c60b0ca34"]},"geometry":{"type":"LineString","coordinates":[[-83.72674280000001,32.8327412],[-83.7264504,32.832732400000005],[-83.72643330000001,32.833131900000005],[-83.72672580000001,32.8331408]]},"id":"8944c0b0bc7ffff-13be62a79c680f75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc738d3-13bf6221cb025895","8f44c0b0bc55844-17bf222c60b0ca34"]},"geometry":{"type":"LineString","coordinates":[[-83.72672580000001,32.8331408],[-83.72674280000001,32.8327412]]},"id":"8944c0b0bc7ffff-13be22271c27f27b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7268743,32.8324212]},"id":"8f44c0b0bc70045-13f761cf9c9f2134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc70045-13f761cf9c9f2134","8f44c0b0bc73b32-13b7b1d1f7cf735b"]},"geometry":{"type":"LineString","coordinates":[[-83.7268743,32.8324212],[-83.7268705,32.832745100000004]]},"id":"8a44c0b0bc77fff-13dea1d0c249402b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc7109b-13b6714ee4ef1204","8f44c0b0bc73b32-13b7b1d1f7cf735b"]},"geometry":{"type":"LineString","coordinates":[[-83.7268705,32.832745100000004],[-83.7270802,32.832746300000004]]},"id":"8a44c0b0bc77fff-13b6319079788512"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc70045-13f761cf9c9f2134","8f44c0b0bc75691-13ff3145975e7afa"]},"geometry":{"type":"LineString","coordinates":[[-83.7270951,32.8324243],[-83.7268743,32.8324212]]},"id":"8a44c0b0bc77fff-13fe618a93f3c077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72644720000001,32.832148100000005]},"id":"8f44c0b0bc76396-13beb2da82edfa38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc70045-13f761cf9c9f2134","8f44c0b0bc76396-13beb2da82edfa38"]},"geometry":{"type":"LineString","coordinates":[[-83.7268743,32.8324212],[-83.7264459,32.8324151],[-83.72644720000001,32.832148100000005]]},"id":"8a44c0b0bc77fff-13d6b288b3b490d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc74364-13ff6140efd2210f","8f44c0b0bc76396-13beb2da82edfa38"]},"geometry":{"type":"LineString","coordinates":[[-83.72710260000001,32.832050200000005],[-83.7264499,32.832041000000004],[-83.72644720000001,32.832148100000005]]},"id":"8a44c0b0bc77fff-1396f229cd199bd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc75530-13df6141d4df192e","8f44c0b0bc76396-13beb2da82edfa38"]},"geometry":{"type":"LineString","coordinates":[[-83.72644720000001,32.832148100000005],[-83.7271011,32.8321684]]},"id":"8a44c0b0bc77fff-13d6f20e269e779e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7285286,32.8321357]},"id":"8f44c0b0bc65d34-13b6ddc5ac416357"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc65d34-13b6ddc5ac416357","8f44c0b0bc60b45-1397fe161b09685c"]},"geometry":{"type":"LineString","coordinates":[[-83.7285286,32.8321357],[-83.7283999,32.8324895]]},"id":"8b44c0b0bc65fff-13b77dededdfc567"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc601ad-13f77ec84ccf0345","8f44c0b0bc60b45-1397fe161b09685c"]},"geometry":{"type":"LineString","coordinates":[[-83.7283999,32.8324895],[-83.7281148,32.832440600000005]]},"id":"8a44c0b0bc67fff-1396be6f24908cf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72879950000001,32.8322033]},"id":"8f44c0b0bc65964-13df1d1c5e4ac443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc65d34-13b6ddc5ac416357","8f44c0b0bc65964-13df1d1c5e4ac443"]},"geometry":{"type":"LineString","coordinates":[[-83.72879950000001,32.8322033],[-83.7285286,32.8321357]]},"id":"8b44c0b0bc65fff-13dffd70f26bc918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc640dd-13b7fe80819c11c1","8f44c0b0bc65d34-13b6ddc5ac416357"]},"geometry":{"type":"LineString","coordinates":[[-83.7285286,32.8321357],[-83.7282296,32.8321406]]},"id":"8a44c0b0bc67fff-13b67e23192ffa11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd4b32d-13fe3cf3113f669d","8f44c0b0bc65964-13df1d1c5e4ac443"]},"geometry":{"type":"LineString","coordinates":[[-83.72886550000001,32.8320418],[-83.72879950000001,32.8322033]]},"id":"8844c0b0bdfffff-13bebd07b4e9bf57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72897660000001,32.832270900000005]},"id":"8f44c0b0b896548-139f5cada0fbd75f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b896548-139f5cada0fbd75f","8f44c0b0bc65964-13df1d1c5e4ac443"]},"geometry":{"type":"LineString","coordinates":[[-83.72879950000001,32.8322033],[-83.72897660000001,32.832270900000005]]},"id":"8844c0b0bdfffff-13f63ce4f74ca180"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd510ca-17df60d3a26d0dc7","8f44c0b0bd5edb0-1797617011ec28e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7270271,32.830856600000004],[-83.7272774,32.830735000000004]]},"id":"8a44c0b0bd57fff-17ff6121ed705c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd5c2ce-17fe5fbad1c65759","8f44c0b0bd58359-13d63fdc473bb86a"]},"geometry":{"type":"LineString","coordinates":[[-83.7277267,32.8312004],[-83.72772930000001,32.8312522],[-83.7277105,32.8314911],[-83.7276732,32.8315715]]},"id":"8a44c0b0bd5ffff-17f63fc271907179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd562c1-1797225bfca154f7","8f44c0b0bd50c44-17ffa1bed497284b"]},"geometry":{"type":"LineString","coordinates":[[-83.7269011,32.8302008],[-83.72664970000001,32.830216]]},"id":"8a44c0b0bd57fff-1796620d6e94813a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7261213,32.8302481]},"id":"8f44c0b0bc252a0-179f33a631e7a566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd562c1-1797225bfca154f7","8f44c0b0bc252a0-179f33a631e7a566"]},"geometry":{"type":"LineString","coordinates":[[-83.72664970000001,32.830216],[-83.7261213,32.8302481]]},"id":"8844c0b0bdfffff-179f3301188c69a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a340e96dc-13f6f1ddb701bbb2","8f44c0a343b40f6-13bef0c4bdeb5414"]},"geometry":{"type":"LineString","coordinates":[[-83.6416549,32.842038800000005],[-83.641799,32.8420806],[-83.6420465,32.842153700000004],[-83.6421045,32.8421833]]},"id":"8844c0a341fffff-139ef14ff52c9ef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a343b2d13-13f7f260280f131f","8f44c0a343b40f6-13bef0c4bdeb5414"]},"geometry":{"type":"LineString","coordinates":[[-83.6421045,32.8421833],[-83.64190980000001,32.8426131],[-83.64181350000001,32.842594000000005],[-83.6416664,32.842555700000005],[-83.6414462,32.842482600000004]]},"id":"8a44c0a343b7fff-13f6f16a050bc08a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147a1389-17d7f43400b5808e","8f44c0b147a5199-13d7f42ecd41a5c5"]},"geometry":{"type":"LineString","coordinates":[[-83.64070600000001,32.741055],[-83.64069760000001,32.7416434]]},"id":"8a44c0b147a7fff-179ff4316c025b30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63812370000001,32.7421844]},"id":"8f44c0b14790611-179ffa7cb93236f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147a1389-17d7f43400b5808e","8f44c0b14790611-179ffa7cb93236f8"]},"geometry":{"type":"LineString","coordinates":[[-83.64069760000001,32.7416434],[-83.64069210000001,32.7420296],[-83.6403985,32.742189],[-83.63812370000001,32.7421844]]},"id":"8944c0b147bffff-17fff6e8cf71b49a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6411238,32.7416472]},"id":"8f44c0b147ac90e-17dff329ad534474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147a1389-17d7f43400b5808e","8f44c0b147ac90e-17dff329ad534474"]},"geometry":{"type":"LineString","coordinates":[[-83.64069760000001,32.7416434],[-83.6411238,32.7416472]]},"id":"8944c0b147bffff-17def3aedc12a92a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6418134,32.741653400000004]},"id":"8f44c0b14711442-17dff17aabd53865"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14711442-17dff17aabd53865","8f44c0b147ac90e-17dff329ad534474"]},"geometry":{"type":"LineString","coordinates":[[-83.6411238,32.7416472],[-83.6418134,32.741653400000004]]},"id":"8a44c0b14717fff-17dff2522184513f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64247200000001,32.7416594]},"id":"8f44c0b147022a4-17d7efdf02bc836e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147022a4-17d7efdf02bc836e","8f44c0b14711442-17dff17aabd53865"]},"geometry":{"type":"LineString","coordinates":[[-83.6418134,32.741653400000004],[-83.64247200000001,32.7416594]]},"id":"8944c0b1473ffff-17dff0acd09df75a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147022a4-17d7efdf02bc836e","8f44c0b14723242-13f6fd035aa72c53"]},"geometry":{"type":"LineString","coordinates":[[-83.64247200000001,32.7416594],[-83.64285530000001,32.7416628],[-83.64302260000001,32.741626000000004],[-83.6431924,32.7415589],[-83.64355,32.7414031],[-83.6436221,32.7413252],[-83.6436426,32.7412386],[-83.6436426,32.7411564],[-83.6436427,32.7410757]]},"id":"8944c0b1473ffff-17f6ee2c906dccf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6411254,32.741792700000005]},"id":"8f44c0b147acbb3-17b6f328a6e15293"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147acbb3-17b6f328a6e15293","8f44c0b147ac90e-17dff329ad534474"]},"geometry":{"type":"LineString","coordinates":[[-83.6411238,32.7416472],[-83.6411254,32.741792700000005]]},"id":"8b44c0b147acfff-17f7f3292c3c3772"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6411284,32.742082700000005]},"id":"8f44c0b147ad5a2-17dff326c5d4cdb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147ad5a2-17dff326c5d4cdb9","8f44c0b147acbb3-17b6f328a6e15293"]},"geometry":{"type":"LineString","coordinates":[[-83.6411254,32.741792700000005],[-83.6411284,32.742082700000005]]},"id":"8a44c0b147affff-17fff327bf881cf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6418081,32.7423735]},"id":"8f44c0b1471a818-179ff17dfb6afa6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147ad5a2-17dff326c5d4cdb9","8f44c0b1471a818-179ff17dfb6afa6c"]},"geometry":{"type":"LineString","coordinates":[[-83.6411284,32.742082700000005],[-83.6411314,32.7423683],[-83.6418081,32.7423735]]},"id":"8844c0b147fffff-17f6f29078316394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6424642,32.7423784]},"id":"8f44c0b14718b45-1796efe3ec090fed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471a818-179ff17dfb6afa6c","8f44c0b14718b45-1796efe3ec090fed"]},"geometry":{"type":"LineString","coordinates":[[-83.6418081,32.7423735],[-83.6424642,32.7423784]]},"id":"8a44c0b1471ffff-1797f0b0f8f4adf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6431306,32.7420957]},"id":"8f44c0b1470ec4b-17f7fe436e335d83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1470ec4b-17f7fe436e335d83","8f44c0b14718b45-1796efe3ec090fed"]},"geometry":{"type":"LineString","coordinates":[[-83.6424642,32.7423784],[-83.64312550000001,32.7423835],[-83.6431306,32.7420957]]},"id":"8944c0b1473ffff-17fffed61049f051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64247200000001,32.7418014]},"id":"8f44c0b1471c951-17bfefdf0523854e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471c951-17bfefdf0523854e","8f44c0b1470ec4b-17f7fe436e335d83"]},"geometry":{"type":"LineString","coordinates":[[-83.6431306,32.7420957],[-83.64313580000001,32.7418056],[-83.64247200000001,32.7418014]]},"id":"8944c0b1473ffff-17d7fed0f9080332"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6418134,32.7417971]},"id":"8f44c0b1471168d-17b7f17aa2f5bcb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471c951-17bfefdf0523854e","8f44c0b1471168d-17b7f17aa2f5bcb5"]},"geometry":{"type":"LineString","coordinates":[[-83.64247200000001,32.7418014],[-83.6418134,32.7417971]]},"id":"8944c0b1473ffff-17bef0acdef642ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147acbb3-17b6f328a6e15293","8f44c0b1471168d-17b7f17aa2f5bcb5"]},"geometry":{"type":"LineString","coordinates":[[-83.6418134,32.7417971],[-83.6411254,32.741792700000005]]},"id":"8844c0b147fffff-17b7f251a952e4ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147022a4-17d7efdf02bc836e","8f44c0b1471c951-17bfefdf0523854e"]},"geometry":{"type":"LineString","coordinates":[[-83.64247200000001,32.7416594],[-83.64247200000001,32.7418014]]},"id":"8a44c0b14707fff-17ffefdf037112d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6424681,32.7420891]},"id":"8f44c0b1471c340-17dfffe17a2bb310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471c951-17bfefdf0523854e","8f44c0b1471c340-17dfffe17a2bb310"]},"geometry":{"type":"LineString","coordinates":[[-83.64247200000001,32.7418014],[-83.6424681,32.7420891]]},"id":"8b44c0b1471cfff-1797ffe037636cdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471c340-17dfffe17a2bb310","8f44c0b14718b45-1796efe3ec090fed"]},"geometry":{"type":"LineString","coordinates":[[-83.6424681,32.7420891],[-83.6424642,32.7423784]]},"id":"8a44c0b1471ffff-17beefe2bbbf7895"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64181070000001,32.7420848]},"id":"8f44c0b1471e0f4-17dff17c57f1e1e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471e0f4-17dff17c57f1e1e6","8f44c0b1471a818-179ff17dfb6afa6c"]},"geometry":{"type":"LineString","coordinates":[[-83.6418081,32.7423735],[-83.64181070000001,32.7420848]]},"id":"8a44c0b1471ffff-17b7f17d2dead8f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471e0f4-17dff17c57f1e1e6","8f44c0b1471168d-17b7f17aa2f5bcb5"]},"geometry":{"type":"LineString","coordinates":[[-83.64181070000001,32.7420848],[-83.6418134,32.7417971]]},"id":"8944c0b1473ffff-1797f17b861e997d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b14711442-17dff17aabd53865","8f44c0b1471168d-17b7f17aa2f5bcb5"]},"geometry":{"type":"LineString","coordinates":[[-83.6418134,32.7417971],[-83.6418134,32.741653400000004]]},"id":"8b44c0b14711fff-17fef17aa8274d81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471c340-17dfffe17a2bb310","8f44c0b1470ec4b-17f7fe436e335d83"]},"geometry":{"type":"LineString","coordinates":[[-83.6431306,32.7420957],[-83.6424681,32.7420891]]},"id":"8944c0b1473ffff-17dfef1273292982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1471c340-17dfffe17a2bb310","8f44c0b1471e0f4-17dff17c57f1e1e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6424681,32.7420891],[-83.64181070000001,32.7420848]]},"id":"8a44c0b1471ffff-17def0aeed6aeccf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b147ad5a2-17dff326c5d4cdb9","8f44c0b1471e0f4-17dff17c57f1e1e6"]},"geometry":{"type":"LineString","coordinates":[[-83.64181070000001,32.7420848],[-83.6411284,32.742082700000005]]},"id":"8844c0b147fffff-17def251831241f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30d9a825-17b7f501cfdd1ae9","8f44c0a30d98cb4-17f7948a46603f71"]},"geometry":{"type":"LineString","coordinates":[[-83.6272612,32.8505727],[-83.62745240000001,32.8504601]]},"id":"8a44c0a30d9ffff-1797d4c60c0ad499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30d98cb4-17f7948a46603f71","8f44c0a30d90c53-13f775c06997def3"]},"geometry":{"type":"LineString","coordinates":[[-83.62745240000001,32.8504601],[-83.6275449,32.8504056],[-83.6281029,32.8500231],[-83.6281714,32.8499426],[-83.6281783,32.8498966],[-83.62813720000001,32.8498304],[-83.62734300000001,32.8491517],[-83.62727790000001,32.849177600000004],[-83.62695620000001,32.8494422]]},"id":"8944c0a30dbffff-17b793fec584ec92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30d922dc-1797f6a43ee7de37","8f44c0a30d90c53-13f775c06997def3"]},"geometry":{"type":"LineString","coordinates":[[-83.62695620000001,32.8494422],[-83.6266172,32.849721200000005],[-83.6266343,32.8498218],[-83.6266035,32.849865],[-83.6265917,32.8498767]]},"id":"8a44c0a30d97fff-17f796477eda7f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3636c8d6-17df96ef6c6c3a7a","8f44c0a30d922dc-1797f6a43ee7de37"]},"geometry":{"type":"LineString","coordinates":[[-83.6265917,32.8498767],[-83.6264714,32.849996100000006]]},"id":"8944c0a3637ffff-17bf56c9c4a392c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36331555-17d7319d42a67228","8f44c0a36331db5-17df319f97494794"]},"geometry":{"type":"LineString","coordinates":[[-83.6220972,32.8473139],[-83.6220935,32.847126700000004]]},"id":"8a44c0a36337fff-179fb19e70beb522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36330b22-17f7e1a1aafd9b4f","8f44c0a36331db5-17df319f97494794"]},"geometry":{"type":"LineString","coordinates":[[-83.6220935,32.847126700000004],[-83.6220902,32.846963]]},"id":"8b44c0a36330fff-179f31a0a41b1311"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363342e1-179771a3a0894e73","8f44c0a36330b22-17f7e1a1aafd9b4f"]},"geometry":{"type":"LineString","coordinates":[[-83.6220902,32.846963],[-83.62208700000001,32.846799100000005]]},"id":"8a44c0a36337fff-17b7b1a2a5465957"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363342e1-179771a3a0894e73","8f44c0a36a9b6f1-17b7f0fe30f8b4b1"]},"geometry":{"type":"LineString","coordinates":[[-83.62208700000001,32.846799100000005],[-83.62208460000001,32.8466812],[-83.62235170000001,32.8466783]]},"id":"8a44c0a36337fff-17d7616b0f1efc1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a9b6f1-17b7f0fe30f8b4b1","8f44c0a36a9b466-17d7e100a7ab991d"]},"geometry":{"type":"LineString","coordinates":[[-83.62235170000001,32.8466783],[-83.6223478,32.846497400000004]]},"id":"8b44c0a36a9bfff-17ff70ff62d556a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a9b466-17d7e100a7ab991d","8f44c0a36a9bca1-17f7f102ca4f9d0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6223478,32.846497400000004],[-83.6223444,32.8463391]]},"id":"8b44c0a36a9bfff-17977101bfdaee9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a9bca1-17f7f102ca4f9d0b","8f44c0a36a9ab52-13f731051a190c9d"]},"geometry":{"type":"LineString","coordinates":[[-83.6223444,32.8463391],[-83.62234070000001,32.8461665]]},"id":"8a44c0a36a9ffff-17bf2103ecaae229"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a9ab52-13f731051a190c9d","8f44c0a36a98483-13bff1066733170a"]},"geometry":{"type":"LineString","coordinates":[[-83.62234070000001,32.8461665],[-83.6223386,32.8460685]]},"id":"8b44c0a36a9afff-13d77105b3f2e2ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a8a995-13d75e44b87e7874","8f44c0a36a98483-13bff1066733170a"]},"geometry":{"type":"LineString","coordinates":[[-83.6223386,32.8460685],[-83.6223243,32.8453985],[-83.62345400000001,32.8453956],[-83.6234677,32.8460916]]},"id":"8944c0a36abffff-139f1fa83ddfa5f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a8a995-13d75e44b87e7874","8f44c0a36a8ac63-13f7be691a82fbb7"]},"geometry":{"type":"LineString","coordinates":[[-83.6234677,32.8460916],[-83.62340950000001,32.8461578]]},"id":"8b44c0a36a8afff-13dffe56ea2fa31a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36a8a0dc-17ff5e6c8e48aa70","8f44c0a36a8ac63-13f7be691a82fbb7"]},"geometry":{"type":"LineString","coordinates":[[-83.62340950000001,32.8461578],[-83.62340400000001,32.8463508]]},"id":"8b44c0a36a8afff-17bffe6ac1106d2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36324916-17d7be6f1b4f19d0","8f44c0a36a8a0dc-17ff5e6c8e48aa70"]},"geometry":{"type":"LineString","coordinates":[[-83.62340400000001,32.8463508],[-83.62339990000001,32.8465002]]},"id":"8b44c0a36a8afff-1797fe6dcc576e34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36324160-17b73e7206c0abc7","8f44c0a36324916-17d7be6f1b4f19d0"]},"geometry":{"type":"LineString","coordinates":[[-83.62339990000001,32.8465002],[-83.6233952,32.8466755]]},"id":"8944c0a36abffff-17ff7e7085a4c460"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36324313-179fbe745e04f8f9","8f44c0a36324160-17b73e7206c0abc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6233952,32.8466755],[-83.62339150000001,32.846810600000005]]},"id":"8b44c0a36324fff-17df7e732838673d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36324313-179fbe745e04f8f9","8f44c0a36320961-17ff7e7712288e7a"]},"geometry":{"type":"LineString","coordinates":[[-83.62339150000001,32.846810600000005],[-83.6233871,32.8469719]]},"id":"8a44c0a36327fff-17bf1e75b024f72f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36320961-17ff7e7712288e7a","8f44c0a36320a35-17d7fe79ec66cc41"]},"geometry":{"type":"LineString","coordinates":[[-83.6233871,32.8469719],[-83.6233826,32.847135800000004]]},"id":"8b44c0a36320fff-17b7be787d3f92be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36321cb2-17bffe7cc079121f","8f44c0a36320a35-17d7fe79ec66cc41"]},"geometry":{"type":"LineString","coordinates":[[-83.6233826,32.847135800000004],[-83.623378,32.847307]]},"id":"8a44c0a36327fff-179f7e7b56df7031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6222525,32.8476236]},"id":"8f44c0a36306956-1797e13c36370e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36306d41-1797a1997000780e","8f44c0a36306956-1797e13c36370e6f"]},"geometry":{"type":"LineString","coordinates":[[-83.6221033,32.847621600000004],[-83.6222525,32.8476236]]},"id":"8b44c0a36306fff-1797216ad8b3abfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632168e-179f5e76b5d6eded","8f44c0a36306956-1797e13c36370e6f"]},"geometry":{"type":"LineString","coordinates":[[-83.6222525,32.8476236],[-83.62338770000001,32.8476388]]},"id":"8944c0a3633ffff-179f9fd97f4bb880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6242653,32.847653300000005]},"id":"8f44c0a36ad3546-17975c523a57d9b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ad3546-17975c523a57d9b2","8f44c0a3632168e-179f5e76b5d6eded"]},"geometry":{"type":"LineString","coordinates":[[-83.62338770000001,32.8476388],[-83.6242653,32.847653300000005]]},"id":"8744c0a36ffffff-1797dd64783546c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6242859,32.846960200000005]},"id":"8f44c0a36ad6a85-17f73c45505afa63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ad3546-17975c523a57d9b2","8f44c0a36ad6a85-17f73c45505afa63"]},"geometry":{"type":"LineString","coordinates":[[-83.6242653,32.847653300000005],[-83.6242653,32.847089600000004],[-83.6242859,32.846960200000005]]},"id":"8a44c0a36ad7fff-17bf5c510a4f86f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62226270000001,32.8478489]},"id":"8f44c0a36306ad4-1397b135da6018d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632e1a0-139f5e7328b4f023","8f44c0a36306ad4-1397b135da6018d9"]},"geometry":{"type":"LineString","coordinates":[[-83.62339340000001,32.8478341],[-83.62226270000001,32.8478489]]},"id":"8944c0a3633ffff-139fffd47a86e238"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36306ad4-1397b135da6018d9","8f44c0a36306956-1797e13c36370e6f"]},"geometry":{"type":"LineString","coordinates":[[-83.62226270000001,32.8478489],[-83.6222525,32.8476236]]},"id":"8b44c0a36306fff-17df313902f0191d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62426740000001,32.847987]},"id":"8f44c0a3632d896-13f7fc50edf04c3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632d0cd-13ff3c50191eb495","8f44c0a3632d896-13f7fc50edf04c3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6242687,32.848203500000004],[-83.62426740000001,32.847987]]},"id":"8b44c0a3632dfff-13bf9c507d3bad12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ad3546-17975c523a57d9b2","8f44c0a3632d896-13f7fc50edf04c3c"]},"geometry":{"type":"LineString","coordinates":[[-83.62426740000001,32.847987],[-83.6242653,32.847653300000005]]},"id":"8944c0a36afffff-17ffbc5190df3ac4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632d896-13f7fc50edf04c3c","8f44c0a3632e0d8-13f7fe7070772069"]},"geometry":{"type":"LineString","coordinates":[[-83.62426740000001,32.847987],[-83.6233977,32.8479839]]},"id":"8a44c0a3632ffff-13f7fd60b63313a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36306ad4-1397b135da6018d9","8f44c0a3632e0d8-13f7fe7070772069"]},"geometry":{"type":"LineString","coordinates":[[-83.6233977,32.8479839],[-83.62227630000001,32.8479869],[-83.62226270000001,32.8478489]]},"id":"8944c0a3633ffff-13f75ff5f9ee7708"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61721820000001,32.840436600000004]},"id":"8f44c0a36110a74-17ffed86a7334931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3611035a-17d77dc5bbf08538","8f44c0a36110a74-17ffed86a7334931"]},"geometry":{"type":"LineString","coordinates":[[-83.6171173,32.8405623],[-83.61721820000001,32.840436600000004]]},"id":"8b44c0a36110fff-17b73da62a8ed679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36133472-179f7d029cada3db","8f44c0a36110a74-17ffed86a7334931"]},"geometry":{"type":"LineString","coordinates":[[-83.61721820000001,32.840436600000004],[-83.61759640000001,32.839965],[-83.6174295,32.8398759]]},"id":"8944c0a3613ffff-17bfed00b9749014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6168621,32.8402437]},"id":"8f44c0a36110c12-17977e653f0dd6c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36133472-179f7d029cada3db","8f44c0a36110c12-17977e653f0dd6c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6174295,32.8398759],[-83.6174108,32.8398659],[-83.6173577,32.8398659],[-83.61713370000001,32.839955100000005],[-83.6170659,32.839994700000005],[-83.6168621,32.8402437]]},"id":"8944c0a3613ffff-17ff7dc4f58b9805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a361105ab-17d7fe9c76bf58b4","8f44c0a36110c12-17977e653f0dd6c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6168621,32.8402437],[-83.61677370000001,32.8403517]]},"id":"8b44c0a36110fff-17b73e80dfc278a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36110a74-17ffed86a7334931","8f44c0a3611012d-17bf2df71fad65ff"]},"geometry":{"type":"LineString","coordinates":[[-83.61721820000001,32.840436600000004],[-83.6170383,32.8403392]]},"id":"8b44c0a36110fff-17df7dbedcb625b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36110c12-17977e653f0dd6c7","8f44c0a3611012d-17bf2df71fad65ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6170383,32.8403392],[-83.6168621,32.8402437]]},"id":"8b44c0a36110fff-179f3e2e2f62cab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6203665,32.837527300000005]},"id":"8f44c0a368a8cc3-17dfb5d6f8207163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368ac675-17f775709f581d1a","8f44c0a368a8cc3-17dfb5d6f8207163"]},"geometry":{"type":"LineString","coordinates":[[-83.6205303,32.8373367],[-83.6203665,32.837527300000005]]},"id":"8a44c0a368affff-17b725a3cd622e16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6200359,32.8376049]},"id":"8f44c0a368aa88c-179f36a59da91edb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368aa88c-179f36a59da91edb","8f44c0a368a8cc3-17dfb5d6f8207163"]},"geometry":{"type":"LineString","coordinates":[[-83.6203665,32.837527300000005],[-83.6202658,32.8376445],[-83.6202157,32.8376692],[-83.6201803,32.8376717],[-83.620142,32.8376668],[-83.6200359,32.8376049]]},"id":"8a44c0a368affff-179f66375a5b8f17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6202009,32.8374216]},"id":"8f44c0a368ae222-179fa63e7dec3915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368aa88c-179f36a59da91edb","8f44c0a368ae222-179fa63e7dec3915"]},"geometry":{"type":"LineString","coordinates":[[-83.6200359,32.8376049],[-83.6202009,32.8374216]]},"id":"8a44c0a368affff-17d7f6720ebf3517"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368ae222-179fa63e7dec3915","8f44c0a368a8cc3-17dfb5d6f8207163"]},"geometry":{"type":"LineString","coordinates":[[-83.6202009,32.8374216],[-83.6203665,32.837527300000005]]},"id":"8a44c0a368affff-17bfb60ab7333ece"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368ae08b-17f7b69bd74aad13","8f44c0a368ae222-179fa63e7dec3915"]},"geometry":{"type":"LineString","coordinates":[[-83.6202009,32.8374216],[-83.6200515,32.8373257]]},"id":"8b44c0a368aefff-17ffb66d25e56ef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368ae08b-17f7b69bd74aad13","8f44c0a368ae585-179ff706be18882e"]},"geometry":{"type":"LineString","coordinates":[[-83.6200515,32.8373257],[-83.61988050000001,32.837215900000004]]},"id":"8b44c0a368aefff-17bf66d1490b319c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36885674-17ff77cbc312ff94","8f44c0a368ae585-179ff706be18882e"]},"geometry":{"type":"LineString","coordinates":[[-83.61988050000001,32.837215900000004],[-83.6197765,32.8371492],[-83.6197235,32.8371319],[-83.619691,32.8371492],[-83.619411,32.8374414],[-83.61956520000001,32.8375445]]},"id":"8944c0a368bffff-17d737b618a6f049"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368aa59c-17b7775ffcadb632","8f44c0a36885674-17ff77cbc312ff94"]},"geometry":{"type":"LineString","coordinates":[[-83.61956520000001,32.8375445],[-83.6197377,32.837659900000006]]},"id":"8a44c0a36887fff-179f6795dc73d21a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368aa59c-17b7775ffcadb632","8f44c0a368aa88c-179f36a59da91edb"]},"geometry":{"type":"LineString","coordinates":[[-83.6197377,32.837659900000006],[-83.61984430000001,32.8377312],[-83.61987380000001,32.8377435],[-83.619918,32.8377312],[-83.6200359,32.8376049]]},"id":"8b44c0a368aafff-17d766fe284e0cfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3618542b-17b7b24e09e9cf66","8f44c0a36185394-17f7b1e2df80a442"]},"geometry":{"type":"LineString","coordinates":[[-83.6152608,32.8411434],[-83.61543230000001,32.841245900000004]]},"id":"8b44c0a36185fff-17d7b218775f960e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3618c5ad-13fff1d23b77a2a8","8f44c0a36185394-17f7b1e2df80a442"]},"geometry":{"type":"LineString","coordinates":[[-83.61543230000001,32.841245900000004],[-83.61569700000001,32.841404000000004],[-83.61573800000001,32.8414586],[-83.61573800000001,32.8415248],[-83.61545890000001,32.8418492]]},"id":"8944c0a361bffff-13b771760a8a5aea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3618c5ad-13fff1d23b77a2a8","8f44c0a3618eb8a-13d7f22a1a833ac5"]},"geometry":{"type":"LineString","coordinates":[[-83.61545890000001,32.8418492],[-83.6153183,32.842012600000004]]},"id":"8a44c0a3618ffff-139ff1fe24564846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5618448,32.814472200000004]},"id":"8f44c0b8117416b-1797b4b70e759c40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8117416b-1797b4b70e759c40","8f44c0b811290d2-17f7b5f07f3d601c"]},"geometry":{"type":"LineString","coordinates":[[-83.5613433,32.8142104],[-83.5618448,32.814472200000004]]},"id":"8844c0b811fffff-17d7f553c300a6c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5620023,32.814383]},"id":"8f44c0b818db48d-17dff4549bd04d5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818db48d-17dff4549bd04d5c","8f44c0b8117416b-1797b4b70e759c40"]},"geometry":{"type":"LineString","coordinates":[[-83.5618448,32.814472200000004],[-83.5621495,32.814846200000005],[-83.5623412,32.8147455],[-83.5620023,32.814383]]},"id":"8944c0b8117ffff-1797f40e638fc6d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818db48d-17dff4549bd04d5c","8f44c0b8117416b-1797b4b70e759c40"]},"geometry":{"type":"LineString","coordinates":[[-83.5620023,32.814383],[-83.5618448,32.814472200000004]]},"id":"8944c0b8117ffff-17fff485d5515181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5715114,32.8077798]},"id":"8f44c0baa5a1430-17bffd1d6a9c5aa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1430-17bffd1d6a9c5aa2","8f44c0baa5a1705-1797dccd448cb226"]},"geometry":{"type":"LineString","coordinates":[[-83.57163960000001,32.8078925],[-83.5715559,32.8078086],[-83.5715114,32.8077798]]},"id":"8b44c0baa5a1fff-17dfbcf3deb87670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a1430-17bffd1d6a9c5aa2","8f44c0baa5a3959-17dfbd643daa1a81"]},"geometry":{"type":"LineString","coordinates":[[-83.5715114,32.8077798],[-83.57144980000001,32.8077769],[-83.57139810000001,32.8077954]]},"id":"8a44c0baa5a7fff-17bfdd41554ef596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a3959-17dfbd643daa1a81","8f44c0baa584d2d-17d79f0aa0e27312"]},"geometry":{"type":"LineString","coordinates":[[-83.57139810000001,32.8077954],[-83.5712889,32.807834500000006],[-83.57107660000001,32.8079784],[-83.57100480000001,32.8080043],[-83.57084040000001,32.808007100000005],[-83.5707891,32.8079553],[-83.57073430000001,32.8078518],[-83.5707222,32.8078104]]},"id":"8944c0baa5bffff-1797fe4b5c544f6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a24e2-17dfbf2752ca761c","8f44c0baa584d2d-17d79f0aa0e27312"]},"geometry":{"type":"LineString","coordinates":[[-83.5707222,32.8078104],[-83.57067950000001,32.807664700000004],[-83.5706763,32.8076275]]},"id":"8944c0baa5bffff-179fbf1adaaee267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a24e2-17dfbf2752ca761c","8f44c0baa5b5262-17f7ff308033df81"]},"geometry":{"type":"LineString","coordinates":[[-83.5706763,32.8076275],[-83.57066160000001,32.807457400000004]]},"id":"8a44c0baa5b7fff-17bf9f2bf55b7f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b5262-17f7ff308033df81","8f44c0baa5b5aa6-1797bf3a317ee274"]},"geometry":{"type":"LineString","coordinates":[[-83.57066160000001,32.807457400000004],[-83.5706461,32.8072771]]},"id":"8b44c0baa5b5fff-17bf9f35524dcaac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b5aa6-1797bf3a317ee274","8f44c0baa5b5919-1797ff43ecdbb7ab"]},"geometry":{"type":"LineString","coordinates":[[-83.5706461,32.8072771],[-83.5706306,32.807097500000005]]},"id":"8b44c0baa5b5fff-17df9f3f1b77a618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5706145,32.806910900000005]},"id":"8f44c0b8525b0c3-179fdf4df4680550"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8525b0c3-179fdf4df4680550","8f44c0baa5b5919-1797ff43ecdbb7ab"]},"geometry":{"type":"LineString","coordinates":[[-83.5706306,32.807097500000005],[-83.5706145,32.806910900000005]]},"id":"8944c0baa5bffff-17dfbf48f1212134"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5b4b6c-17b7ffb76cc3b9af","8f44c0b8525b0c3-179fdf4df4680550"]},"geometry":{"type":"LineString","coordinates":[[-83.5706145,32.806910900000005],[-83.5704458,32.8069422]]},"id":"8b44c0b8525bfff-17bfbf82bb6ad5d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a0a5c-17bfdcf3a906bc1b","8f44c0baa5a1430-17bffd1d6a9c5aa2"]},"geometry":{"type":"LineString","coordinates":[[-83.5715114,32.8077798],[-83.5715782,32.8075709]]},"id":"8a44c0baa5a7fff-17ffbd088ea8fdc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a0a5c-17bfdcf3a906bc1b","8f44c0baa5a549d-17d7bcf8d43ad509"]},"geometry":{"type":"LineString","coordinates":[[-83.5715782,32.8075709],[-83.57159700000001,32.807512200000005],[-83.57159700000001,32.8074576],[-83.5715699,32.8074083]]},"id":"8b44c0baa5a0fff-179fbcecc5062eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a549d-17d7bcf8d43ad509","8f44c0baa5a460e-17f7fd716704bbb8"]},"geometry":{"type":"LineString","coordinates":[[-83.5715699,32.8074083],[-83.5715559,32.807382700000005],[-83.5714087,32.8072389],[-83.571377,32.8072198]]},"id":"8a44c0baa5a7fff-179f9d31ccfa21ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa5a460e-17f7fd716704bbb8","8f44c0baa5a6854-17979e0fc9d50973"]},"geometry":{"type":"LineString","coordinates":[[-83.571377,32.8072198],[-83.5711236,32.807068]]},"id":"8a44c0baa5a7fff-17b7fdc09fda51fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8525b0c3-179fdf4df4680550","8f44c0baa5a6854-17979e0fc9d50973"]},"geometry":{"type":"LineString","coordinates":[[-83.5711236,32.807068],[-83.57094310000001,32.8069598],[-83.57082670000001,32.8069253],[-83.5706145,32.806910900000005]]},"id":"8944c0baa5bffff-17bffea939242395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818000db-13bfbfb9fffdaad0","8f44c0b8181ea74-17bff1b570d5a374"]},"geometry":{"type":"LineString","coordinates":[[-83.5630761,32.8106188],[-83.56400210000001,32.810211800000005],[-83.5638881,32.810028100000004]]},"id":"8944c0b8183ffff-179fb06762e08814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818000db-13bfbfb9fffdaad0","8f44c0b8181161d-17ffb23e0729ccce"]},"geometry":{"type":"LineString","coordinates":[[-83.5638881,32.810028100000004],[-83.56379670000001,32.8098809],[-83.5628576,32.810305]]},"id":"8944c0b8183ffff-13d7b0ea36ba8e05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56197660000001,32.8120159]},"id":"8f44c0b818f20f4-1397f464aeea0798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8181a742-17f7f2ad624b8a35","8f44c0b818f20f4-1397f464aeea0798"]},"geometry":{"type":"LineString","coordinates":[[-83.56267940000001,32.8111423],[-83.5618652,32.8114979],[-83.5618613,32.811564700000005],[-83.56190500000001,32.811738500000004],[-83.56191290000001,32.8118454],[-83.5619209,32.811919],[-83.56197660000001,32.8120159]]},"id":"8844c0b819fffff-17dff402ce7df17d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5616267,32.812640800000004]},"id":"8f44c0b818d0d84-139fb53f575c65ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818d0d84-139fb53f575c65ab","8f44c0b818f20f4-1397f464aeea0798"]},"geometry":{"type":"LineString","coordinates":[[-83.56197660000001,32.8120159],[-83.5620998,32.8120994],[-83.5621316,32.812169600000004],[-83.5621277,32.8122197],[-83.5618453,32.8126976],[-83.5617976,32.812701000000004],[-83.5616267,32.812640800000004]]},"id":"8944c0b818fffff-139ff471c021dfaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818d0d84-139fb53f575c65ab","8f44c0b818f20f4-1397f464aeea0798"]},"geometry":{"type":"LineString","coordinates":[[-83.5616267,32.812640800000004],[-83.56197660000001,32.8120159]]},"id":"8944c0b818fffff-13dff4d1fa47b0d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5619726,32.8104351]},"id":"8f44c0b818ac0de-17bff46727c2d027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818ac0de-17bff46727c2d027","8f44c0b818acb1b-1797f3dc5c382c70"]},"geometry":{"type":"LineString","coordinates":[[-83.5621947,32.810346800000005],[-83.5619726,32.8104351]]},"id":"8b44c0b818acfff-179ff421c630acc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818aa29a-17d7f5ca3ac8acbf","8f44c0b818ac0de-17bff46727c2d027"]},"geometry":{"type":"LineString","coordinates":[[-83.5619726,32.8104351],[-83.5615909,32.811160300000004],[-83.56140450000001,32.8110926]]},"id":"8a44c0b818affff-17d7b5010228ac7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818aa29a-17d7f5ca3ac8acbf","8f44c0b81881b4c-17b7b649813d0414"]},"geometry":{"type":"LineString","coordinates":[[-83.56140450000001,32.8110926],[-83.56120080000001,32.8110185]]},"id":"8b44c0b818aafff-17bff609d9db76db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5610302,32.8109565]},"id":"8f44c0b818818c9-17fff6b42387aa3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818818c9-17fff6b42387aa3b","8f44c0b81881b4c-17b7b649813d0414"]},"geometry":{"type":"LineString","coordinates":[[-83.56120080000001,32.8110185],[-83.5610302,32.8109565]]},"id":"8a44c0b81887fff-1797b67ed7154a74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81881426-1797b7645116e45e","8f44c0b818818c9-17fff6b42387aa3b"]},"geometry":{"type":"LineString","coordinates":[[-83.5610302,32.8109565],[-83.5609745,32.81103],[-83.56093080000001,32.8110334],[-83.5607483,32.8109667]]},"id":"8b44c0b81881fff-179fb7058a5ab6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81880648-17d7b7e981508f30","8f44c0b81881426-1797b7645116e45e"]},"geometry":{"type":"LineString","coordinates":[[-83.5607483,32.8109667],[-83.5605352,32.810889]]},"id":"8a44c0b81887fff-17fff7a6f2de3e0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56035440000001,32.8106967]},"id":"8f44c0b818804f4-17dff85a88f8086f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818804f4-17dff85a88f8086f","8f44c0b81880648-17d7b7e981508f30"]},"geometry":{"type":"LineString","coordinates":[[-83.5605352,32.810889],[-83.56032640000001,32.8108128],[-83.56031850000001,32.810762700000005],[-83.56035440000001,32.8106967]]},"id":"8a44c0b81887fff-17b7b8415fcf9216"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818804f4-17dff85a88f8086f","8f44c0b8198a4d9-1397f5fc5090d8b8"]},"geometry":{"type":"LineString","coordinates":[[-83.56035440000001,32.8106967],[-83.56132430000001,32.808918000000006]]},"id":"8844c0b819fffff-13b7b72b645afdf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a46ea-13f7b6063e6e0536","8f44c0b818a4aa1-13f7f56c8d1cc0fa"]},"geometry":{"type":"LineString","coordinates":[[-83.5615544,32.8092958],[-83.56130850000001,32.809482700000004]]},"id":"8b44c0b818a4fff-13bff5b95328a7c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a46ea-13f7b6063e6e0536","8f44c0b818a0a36-13f7f5a62db23654"]},"geometry":{"type":"LineString","coordinates":[[-83.56130850000001,32.809482700000004],[-83.56146220000001,32.8097031]]},"id":"8a44c0b818a7fff-13bfb5d6279fc996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56161300000001,32.809919400000005]},"id":"8f44c0b818a1c46-13f7b547e8dd4630"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a0a36-13f7f5a62db23654","8f44c0b818a1c46-13f7b547e8dd4630"]},"geometry":{"type":"LineString","coordinates":[[-83.56146220000001,32.8097031],[-83.56161300000001,32.809919400000005]]},"id":"8a44c0b818a7fff-13b7b57708542499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a1068-13dff50085a40588","8f44c0b818a1c46-13f7b547e8dd4630"]},"geometry":{"type":"LineString","coordinates":[[-83.56161300000001,32.809919400000005],[-83.5617272,32.8100831]]},"id":"8b44c0b818a1fff-13bff52432f6c23f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818ac526-17dfb4b4c1defe16","8f44c0b818a1068-13dff50085a40588"]},"geometry":{"type":"LineString","coordinates":[[-83.5617272,32.8100831],[-83.5618484,32.8102571]]},"id":"8944c0b818bffff-1797f4daa9e4439a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818ac526-17dfb4b4c1defe16","8f44c0b818ac0de-17bff46727c2d027"]},"geometry":{"type":"LineString","coordinates":[[-83.5618484,32.8102571],[-83.5619726,32.8104351]]},"id":"8b44c0b818acfff-1797f48dfa4653d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818a1c46-13f7b547e8dd4630","8f44c0b818125b4-13d7b49f5013faef"]},"geometry":{"type":"LineString","coordinates":[[-83.5618827,32.8098346],[-83.56161300000001,32.809919400000005]]},"id":"8a44c0b818a7fff-13dfb4f3a470fd72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818818c9-17fff6b42387aa3b","8f44c0b818a1c46-13f7b547e8dd4630"]},"geometry":{"type":"LineString","coordinates":[[-83.56161300000001,32.809919400000005],[-83.5610302,32.8109565]]},"id":"8944c0b818bffff-17bff5fe0bcdc7bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b818804f4-17dff85a88f8086f","8f44c0b81882814-17b7b8cac55e2ea5"]},"geometry":{"type":"LineString","coordinates":[[-83.56035440000001,32.8106967],[-83.5601748,32.8106363]]},"id":"8a44c0b81887fff-17dfb892a0021643"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8199d0d2-13b7b67cb0d09c09","8f44c0b81882814-17b7b8cac55e2ea5"]},"geometry":{"type":"LineString","coordinates":[[-83.5601748,32.8106363],[-83.55998480000001,32.8105725],[-83.56111890000001,32.8085809]]},"id":"8844c0b819fffff-13d7b7f6d61c5c3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baac96560-1797f955d9214b93","8f44c0baac96820-17d7b8cd3e213567"]},"geometry":{"type":"LineString","coordinates":[[-83.5730595,32.8042102],[-83.57327810000001,32.8040979]]},"id":"8b44c0baac96fff-17f7d91186a6c596"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5737397,32.8038608]},"id":"8f44c0baacb274c-17bf97acb8ca5410"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baac96820-17d7b8cd3e213567","8f44c0baacb274c-17bf97acb8ca5410"]},"geometry":{"type":"LineString","coordinates":[[-83.57327810000001,32.8040979],[-83.5737397,32.8038608]]},"id":"8944c0baacbffff-17f7b83cfd948c01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b853480cd-13fff9a564fcf8f4","8f44c0b8534aa49-17d79a351b04a282"]},"geometry":{"type":"LineString","coordinates":[[-83.5727023,32.803693700000004],[-83.57293220000001,32.803580700000005]]},"id":"8a44c0b8534ffff-17b7d9ed3372b256"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5732548,32.8034222]},"id":"8f44c0b8534d455-139ff8dbce6120ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b853480cd-13fff9a564fcf8f4","8f44c0b8534d455-139ff8dbce6120ae"]},"geometry":{"type":"LineString","coordinates":[[-83.57293220000001,32.803580700000005],[-83.5732548,32.8034222]]},"id":"8a44c0b8534ffff-13dff94099eeddc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85735148-17bfb7cdc5202418","8f44c0b85723896-17f7b64390a54b05"]},"geometry":{"type":"LineString","coordinates":[[-83.5612103,32.7986528],[-83.56057960000001,32.7981448]]},"id":"8944c0b8573ffff-17d7f708b2810301"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5601647,32.7984438]},"id":"8f44c0b85730241-17f7f8d112eccbaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85735148-17bfb7cdc5202418","8f44c0b85730241-17f7f8d112eccbaa"]},"geometry":{"type":"LineString","coordinates":[[-83.56057960000001,32.7981448],[-83.5601647,32.7984438]]},"id":"8a44c0b85737fff-1797f84f6027e58c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55387440000001,32.804041500000004]},"id":"8f44c0b80a6a015-179ff82c8320a9ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80a45ad9-1797e899063dbc80","8f44c0b80a6a015-179ff82c8320a9ea"]},"geometry":{"type":"LineString","coordinates":[[-83.5537008,32.803821400000004],[-83.55387440000001,32.804041500000004]]},"id":"8944c0b80a7ffff-17dff862c76dad80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5530152,32.8045793]},"id":"8f44c0b80a4e490-17ffda45898f08a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80a4e490-17ffda45898f08a7","8f44c0b80a6a015-179ff82c8320a9ea"]},"geometry":{"type":"LineString","coordinates":[[-83.55387440000001,32.804041500000004],[-83.55403960000001,32.804251],[-83.55416480000001,32.8045721],[-83.55416480000001,32.8047935],[-83.55392110000001,32.8049485],[-83.55361810000001,32.8049928],[-83.55337440000001,32.8048931],[-83.55321640000001,32.8047935],[-83.5530152,32.8045793]]},"id":"8944c0b80a7ffff-17b7d8743def8737"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80a4e490-17ffda45898f08a7","8f44c0b80a43630-17ffdabd69cdd109"]},"geometry":{"type":"LineString","coordinates":[[-83.5530152,32.8045793],[-83.55282340000001,32.804375300000004]]},"id":"8944c0b80a7ffff-17bfda8175f5d2fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b81d95743-13d7de61e5283332","8f44c0b80a5a764-17f7cd2389809f80"]},"geometry":{"type":"LineString","coordinates":[[-83.55184080000001,32.804995600000005],[-83.55268290000001,32.805922800000005],[-83.55133140000001,32.8067629]]},"id":"8744c0b80ffffff-13dfdc757dffbe48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.549515,32.807046500000006]},"id":"8f44c0b8036315c-17f7d2d1214ab224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8036315c-17f7d2d1214ab224","8f44c0b81d95743-13d7de61e5283332"]},"geometry":{"type":"LineString","coordinates":[[-83.55133140000001,32.8067629],[-83.55000240000001,32.807589],[-83.549515,32.807046500000006]]},"id":"8744c0b80ffffff-17f7f0b5a399b585"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80a4e490-17ffda45898f08a7","8f44c0b80a6a015-179ff82c8320a9ea"]},"geometry":{"type":"LineString","coordinates":[[-83.55387440000001,32.804041500000004],[-83.5530152,32.8045793]]},"id":"8944c0b80a7ffff-17d7c939082e7087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5523775,32.805028]},"id":"8f44c0b80a582de-1797cbd41844902e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80a582de-1797cbd41844902e","8f44c0b80a4e490-17ffda45898f08a7"]},"geometry":{"type":"LineString","coordinates":[[-83.5530152,32.8045793],[-83.5527778,32.8047941],[-83.5523775,32.805028]]},"id":"8944c0b80a7ffff-1797eb059ad6cbc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85ab25b0-1397f267b89a7106","8f44c0b85ab55a1-139fbff5d4a9fb45"]},"geometry":{"type":"LineString","coordinates":[[-83.5703459,32.7958426],[-83.5693445,32.7960421]]},"id":"8944c0b85abffff-13dfa12ec9d5f18e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8514ca65-13dfa2e1b429bc8a","8f44c0b85ab25b0-1397f267b89a7106"]},"geometry":{"type":"LineString","coordinates":[[-83.5693445,32.7960421],[-83.5691493,32.795512800000004]]},"id":"8a44c0b8514ffff-13f7f2a4bb00eb24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85b9a681-17d7f068de4a1457","8f44c0b8514ca65-13dfa2e1b429bc8a"]},"geometry":{"type":"LineString","coordinates":[[-83.5691493,32.795512800000004],[-83.5701619,32.795316500000006]]},"id":"8744c0b85ffffff-139fb1a54b225d5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85a853a0-17b7dddfa7d273ca","8f44c0b85a85896-139ffdff03734c23"]},"geometry":{"type":"LineString","coordinates":[[-83.57115040000001,32.7968655],[-83.57120060000001,32.797087600000005]]},"id":"8b44c0b85a85fff-13dffdef5e478f00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571224,32.7971912]},"id":"8f44c0b85a852e6-17f79dd100bc9230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b85a853a0-17b7dddfa7d273ca","8f44c0b85a852e6-17f79dd100bc9230"]},"geometry":{"type":"LineString","coordinates":[[-83.57120060000001,32.797087600000005],[-83.571224,32.7971912]]},"id":"8c44c0b85a853ff-17d7bdd85d8c99a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60696700000001,32.8624724]},"id":"8f44c0a32561b2c-13d7468dad424f44"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32561b2c-13d7468dad424f44","8f44c0a32192a70-13bfd56893037a69"]},"geometry":{"type":"LineString","coordinates":[[-83.6074359,32.8624601],[-83.6070674,32.862471400000004],[-83.60696700000001,32.8624724]]},"id":"8744c0a32ffffff-13d7f5fb1c36df6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6069535,32.8627733]},"id":"8f44c0a3256c52d-179756961acf4fe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32561b2c-13d7468dad424f44","8f44c0a3256c52d-179756961acf4fe8"]},"geometry":{"type":"LineString","coordinates":[[-83.60696700000001,32.8624724],[-83.6060791,32.8624815],[-83.60608450000001,32.8627868],[-83.60691200000001,32.862791300000005],[-83.6069535,32.8627733]]},"id":"8944c0a3257ffff-17bff7cc7091f1b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32561b2c-13d7468dad424f44","8f44c0a3256c52d-179756961acf4fe8"]},"geometry":{"type":"LineString","coordinates":[[-83.6069535,32.8627733],[-83.60696700000001,32.8624724]]},"id":"8944c0a3257ffff-17b75691d2f4384e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6061375,32.861062100000005]},"id":"8f44c0a32cdd449-13d7d8941737ce60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cdd449-13d7d8941737ce60","8f44c0a32cd8dab-17ff49bc2bf9cb5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6061375,32.861062100000005],[-83.605759,32.8610653],[-83.6056732,32.8610641],[-83.6056557,32.8610439],[-83.6056638,32.86092]]},"id":"8a44c0a32cdffff-13df594abf66ba18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6061457,32.8609165]},"id":"8f44c0a32cddcc2-17ffd88efa667721"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32cddcc2-17ffd88efa667721","8f44c0a32cd8dab-17ff49bc2bf9cb5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6056638,32.86092],[-83.6061457,32.8609165]]},"id":"8a44c0a32cdffff-17fff9258c6e6ee6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321944e2-13f774faf134c4f1","8f44c0a321968ec-13f77563fff9f696"]},"geometry":{"type":"LineString","coordinates":[[-83.6074433,32.8619031],[-83.6076113,32.8619027]]},"id":"8a44c0a32197fff-13f7552f7a3beb94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6081936,32.8613364]},"id":"8f44c0a321b0413-13ff438f0fd1c1c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321944e2-13f774faf134c4f1","8f44c0a321b0413-13ff438f0fd1c1c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6076113,32.8619027],[-83.6080458,32.8619019],[-83.6081274,32.8618812],[-83.608169,32.861829400000005],[-83.6081829,32.8617738],[-83.6081936,32.8613364]]},"id":"8944c0a321bffff-139763f3b9b48a27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b835-13b7b1e24f2e1f72","8f44c0a05d486b0-13de924a6baf6c50"]},"geometry":{"type":"LineString","coordinates":[[-83.68752280000001,32.9005395],[-83.68735620000001,32.9004009]]},"id":"8a44c0a05d4ffff-139fe21650c0f317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d486b0-13de924a6baf6c50","8f44c0a05d4ab0d-13be8273f2a0af12"]},"geometry":{"type":"LineString","coordinates":[[-83.68735620000001,32.9004009],[-83.68728970000001,32.9003456]]},"id":"8a44c0a05d4ffff-13dfd25f26e0b0ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6760685,32.8526267]},"id":"8f44c0a2671662e-13bfbdd93230e471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26449620-13b79d8c8e5b44ba","8f44c0a2671662e-13bfbdd93230e471"]},"geometry":{"type":"LineString","coordinates":[[-83.6761912,32.8521809],[-83.6761257,32.8521878],[-83.6758813,32.8523915],[-83.6759251,32.852530800000004],[-83.6760685,32.8526267]]},"id":"8844c0a267fffff-13b79e06d708c625"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2671662e-13bfbdd93230e471","8f44c0a2671459e-1397bd1cdbf266f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6760685,32.8526267],[-83.67635890000001,32.8523962],[-83.67636990000001,32.8523379]]},"id":"8a44c0a26717fff-13f7bd71783d3777"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26449620-13b79d8c8e5b44ba","8f44c0a2671459e-1397bd1cdbf266f1"]},"geometry":{"type":"LineString","coordinates":[[-83.67636990000001,32.8523379],[-83.6761912,32.8521809]]},"id":"8944c0a2673ffff-13d6bd54be45121f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26712959-17b6bd87d3e92009","8f44c0a26712995-17969dd674311286"]},"geometry":{"type":"LineString","coordinates":[[-83.6761987,32.852797100000004],[-83.67607290000001,32.852736]]},"id":"8c44c0a267129ff-1797bdaf230572bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26712995-17969dd674311286","8f44c0a2671662e-13bfbdd93230e471"]},"geometry":{"type":"LineString","coordinates":[[-83.67607290000001,32.852736],[-83.6760685,32.8526267]]},"id":"8a44c0a26717fff-13dffdd7d737e0af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca4230c-13f7f3ba694971ad","8f44c0b0ca4048b-13ffe3727b53a46c"]},"geometry":{"type":"LineString","coordinates":[[-83.7524185,32.7994878],[-83.7523869,32.7995437],[-83.7523359,32.799626],[-83.7523034,32.7996785]]},"id":"8a44c0b0ca47fff-13bfe395f6322909"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca422da-13d5e3ebe9a4889f","8f44c0b0ca4230c-13f7f3ba694971ad"]},"geometry":{"type":"LineString","coordinates":[[-83.7523034,32.7996785],[-83.7522849,32.7997083],[-83.7522242,32.7998034]]},"id":"8b44c0b0ca42fff-139fe3d315539265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.752909,32.7993307]},"id":"8f44c0b0ca454a5-139df23feb2ca02d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca454a5-139df23feb2ca02d","8f44c0b0ca454f0-13bde234b7dbd63f"]},"geometry":{"type":"LineString","coordinates":[[-83.7529269,32.7993746],[-83.752909,32.7993307]]},"id":"8c44c0b0ca455ff-13bff23a440b2cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca454a5-139df23feb2ca02d","8f44c0b0ca446e5-13dff2c6def168a2"]},"geometry":{"type":"LineString","coordinates":[[-83.752909,32.7993307],[-83.7528807,32.799291000000004],[-83.7528431,32.799257000000004],[-83.752798,32.7992304],[-83.7527472,32.7992122],[-83.7526931,32.7992033]]},"id":"8a44c0b0ca47fff-13ffe27ce6a62f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca40d92-13f7f345a801ed77","8f44c0b0ca446e5-13dff2c6def168a2"]},"geometry":{"type":"LineString","coordinates":[[-83.7526931,32.7992033],[-83.752638,32.799204100000004],[-83.7525842,32.799214500000005],[-83.7525342,32.799234000000006],[-83.75249020000001,32.799261900000005]]},"id":"8a44c0b0ca47fff-13ddf3086b627095"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca454a5-139df23feb2ca02d","8f44c0b0ca4436a-13bde220156b531b"]},"geometry":{"type":"LineString","coordinates":[[-83.752909,32.7993307],[-83.7529394,32.7992134],[-83.75295990000001,32.799169400000004]]},"id":"8a44c0b0ca47fff-13ffe231d3ea85dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca6345e-13bde1c6aeb0a44e","8f44c0b0ca4436a-13bde220156b531b"]},"geometry":{"type":"LineString","coordinates":[[-83.75295990000001,32.799169400000004],[-83.7529877,32.7991097],[-83.75310300000001,32.798964000000005]]},"id":"8944c0b0ca7ffff-13f7f1f660004385"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca4066d-13f7f2e3e7982a86","8f44c0b0ca4048b-13ffe3727b53a46c"]},"geometry":{"type":"LineString","coordinates":[[-83.7524185,32.7994878],[-83.75243060000001,32.7995177],[-83.752459,32.7995575],[-83.7524966,32.799591400000004],[-83.75254170000001,32.799618],[-83.75259240000001,32.7996362],[-83.7526466,32.7996451]]},"id":"8b44c0b0ca40fff-13bff3350e52fdee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary"},"subType":"road","connectors":["8f44c0b0ca4066d-13f7f2e3e7982a86","8f44c0b0ca41d92-13bde26515de5089"]},"geometry":{"type":"LineString","coordinates":[[-83.7526466,32.7996451],[-83.7527017,32.799644300000004],[-83.75275540000001,32.799634000000005],[-83.75280550000001,32.7996144],[-83.75284950000001,32.799586600000005]]},"id":"8b44c0b0ca40fff-13d7f2a2553a8b7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344db762-13fffe4bc2d3dd48","8f44c0a344dbd53-13df1e54a0a2c396"]},"geometry":{"type":"LineString","coordinates":[[-83.63001,32.842086300000005],[-83.6301239,32.8419522],[-83.63012850000001,32.8419195],[-83.6301164,32.8418872],[-83.6299958,32.8418209]]},"id":"8b44c0a344dbfff-13b7be2441ce2775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a344db40a-13d72eadaf9c1675","8f44c0a344dbd53-13df1e54a0a2c396"]},"geometry":{"type":"LineString","coordinates":[[-83.6299958,32.8418209],[-83.6298534,32.8419922]]},"id":"8b44c0a344dbfff-139fae812e3a8018"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75481260000001,32.8809685]},"id":"8f44c0b53d06b81-13fddd9a29cae45c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d06b81-13fddd9a29cae45c","8f44c0b53d06883-13b5dde13633e91d"]},"geometry":{"type":"LineString","coordinates":[[-83.75469890000001,32.8808729],[-83.75471010000001,32.8809081],[-83.7547351,32.8809381],[-83.75477070000001,32.880959000000004],[-83.75481260000001,32.8809685]]},"id":"8b44c0b53d06fff-13d7fdc49bbac8e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75495360000001,32.8808811]},"id":"8f44c0b53d0441c-13b7fd42068816de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d06b81-13fddd9a29cae45c","8f44c0b53d0441c-13b7fd42068816de"]},"geometry":{"type":"LineString","coordinates":[[-83.75481260000001,32.8809685],[-83.75485180000001,32.880966300000004],[-83.7548883,32.8809539],[-83.75491840000001,32.8809327],[-83.75493920000001,32.8809048],[-83.75495360000001,32.8808811]]},"id":"8a44c0b53d07fff-13dfdd68785a63cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75483440000001,32.8807587]},"id":"8f44c0b53d312f2-13fffd8c85867606"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d312f2-13fffd8c85867606","8f44c0b53d0441c-13b7fd42068816de"]},"geometry":{"type":"LineString","coordinates":[[-83.75495360000001,32.8808811],[-83.75494590000001,32.880839900000005],[-83.75493110000001,32.8808093],[-83.7549058,32.8807841],[-83.7548725,32.8807666],[-83.75483440000001,32.8807587]]},"id":"8a44c0b53d07fff-1397fd5d72b3b122"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d312f2-13fffd8c85867606","8f44c0b53d06883-13b5dde13633e91d"]},"geometry":{"type":"LineString","coordinates":[[-83.75483440000001,32.8807587],[-83.7547911,32.880762000000004],[-83.7547517,32.8807775],[-83.754721,32.880803400000005],[-83.7547026,32.8808365],[-83.75469890000001,32.8808729]]},"id":"8a44c0b53d07fff-1397ddc1cadee344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75483270000001,32.8805039]},"id":"8f44c0b53d31128-17dffd8d95c7c77c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d31128-17dffd8d95c7c77c","8f44c0b53d312f2-13fffd8c85867606"]},"geometry":{"type":"LineString","coordinates":[[-83.75483440000001,32.8807587],[-83.75483270000001,32.8805039]]},"id":"8b44c0b53d31fff-139fdd8d1526d660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d31128-17dffd8d95c7c77c","8f44c0b5069b790-179ffd84be944dc5"]},"geometry":{"type":"LineString","coordinates":[[-83.75483270000001,32.8805039],[-83.7548469,32.8797878]]},"id":"8a44c0b53d37fff-17fffd8927295181"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d31128-17dffd8d95c7c77c","8f44c0b53d224dc-17ddfd0294510fc1"]},"geometry":{"type":"LineString","coordinates":[[-83.75483270000001,32.8805039],[-83.7550551,32.880507]]},"id":"8a44c0b53d37fff-17dffd4818c429b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d22725-17dfdca24d2951de","8f44c0b53d224dc-17ddfd0294510fc1"]},"geometry":{"type":"LineString","coordinates":[[-83.7550551,32.880507],[-83.75520920000001,32.8805092]]},"id":"8b44c0b53d22fff-17dddcd267fcdf63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d22725-17dfdca24d2951de","8f44c0b53d206ad-17dffba43d7ec76a"]},"geometry":{"type":"LineString","coordinates":[[-83.75520920000001,32.8805092],[-83.7556157,32.8805031]]},"id":"8a44c0b53d27fff-17ddfc233bc83f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d206ad-17dffba43d7ec76a","8f44c0b53d0441c-13b7fd42068816de"]},"geometry":{"type":"LineString","coordinates":[[-83.7556157,32.8805031],[-83.75563650000001,32.8805028],[-83.75563600000001,32.880587500000004],[-83.7556249,32.8808418],[-83.75560850000001,32.8808813],[-83.755555,32.880897000000004],[-83.75495360000001,32.8808811]]},"id":"8944c0b53d3ffff-139ffc22124575a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75479440000001,32.881776]},"id":"8f44c0b53d0346e-13f7dda58c226938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d06b81-13fddd9a29cae45c","8f44c0b53d0346e-13f7dda58c226938"]},"geometry":{"type":"LineString","coordinates":[[-83.75481260000001,32.8809685],[-83.75479440000001,32.881776]]},"id":"8a44c0b53d07fff-13fdfd9fde805604"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53c245b3-179dfdb4ded27ff9","8f44c0b53d0346e-13f7dda58c226938"]},"geometry":{"type":"LineString","coordinates":[[-83.75479440000001,32.881776],[-83.7547699,32.8828635]]},"id":"8944c0b53d3ffff-17bdfdad217aa139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d0346e-13f7dda58c226938","8f44c0b53d01629-13fdfc5eac70b84a"]},"geometry":{"type":"LineString","coordinates":[[-83.75479440000001,32.881776],[-83.75531740000001,32.8817886]]},"id":"8a44c0b53d07fff-13fdfd021fe3e594"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d01629-13fdfc5eac70b84a","8f44c0b53d0b4d5-1797fc746f0de8c1"]},"geometry":{"type":"LineString","coordinates":[[-83.75531740000001,32.8817886],[-83.7555796,32.881794400000004],[-83.7555426,32.882840800000004],[-83.75552920000001,32.8828636],[-83.75550390000001,32.8828758],[-83.7552826,32.8828723]]},"id":"8944c0b53d3ffff-17bffbe16f6dac0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53c245b3-179dfdb4ded27ff9","8f44c0b53d0b4d5-1797fc746f0de8c1"]},"geometry":{"type":"LineString","coordinates":[[-83.7552826,32.8828723],[-83.7547699,32.8828635]]},"id":"8944c0b53d3ffff-1795fd14a363b5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75428090000001,32.8817662]},"id":"8f44c0b53d1c521-13dffee6788d979c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d0346e-13f7dda58c226938","8f44c0b53d1c521-13dffee6788d979c"]},"geometry":{"type":"LineString","coordinates":[[-83.75479440000001,32.881776],[-83.75428090000001,32.8817662]]},"id":"8944c0b53d3ffff-13f7fe460cd49c84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d1c521-13dffee6788d979c","8f44c0b53d1ed29-13dfffcec86e07b9"]},"geometry":{"type":"LineString","coordinates":[[-83.75428090000001,32.8817662],[-83.75390920000001,32.8817587]]},"id":"8944c0b53d3ffff-13dddf5a94f322bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d13771-13d7f0b133326c27","8f44c0b53d1ed29-13dfffcec86e07b9"]},"geometry":{"type":"LineString","coordinates":[[-83.75390920000001,32.8817587],[-83.7535469,32.8817453]]},"id":"8a44c0b53d17fff-13d7e03ff58d67d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53dacb44-13dff11f4f9b6d78","8f44c0b53d13771-13d7f0b133326c27"]},"geometry":{"type":"LineString","coordinates":[[-83.7535469,32.8817453],[-83.7533708,32.881737900000005]]},"id":"8b44c0b53d13fff-13d5e0e84c02a092"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d1c521-13dffee6788d979c","8f44c0b53d11a29-13dffedf8f857b57"]},"geometry":{"type":"LineString","coordinates":[[-83.75428090000001,32.8817662],[-83.754292,32.8815547]]},"id":"8944c0b53d3ffff-139ddee2fa71a44d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.753235,32.8812822]},"id":"8f44c0b53d12026-13b5e17424c6c9a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d12026-13b5e17424c6c9a7","8f44c0b53d11a29-13dffedf8f857b57"]},"geometry":{"type":"LineString","coordinates":[[-83.754292,32.8815547],[-83.7543029,32.8813671],[-83.7542923,32.881326300000005],[-83.75425080000001,32.881318],[-83.753235,32.8812822]]},"id":"8a44c0b53d17fff-13ddffedf616f6d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d12026-13b5e17424c6c9a7","8f44c0b53dacb44-13dff11f4f9b6d78"]},"geometry":{"type":"LineString","coordinates":[[-83.7533708,32.881737900000005],[-83.753291,32.8816324],[-83.75326100000001,32.881588400000005],[-83.7532262,32.881545100000004],[-83.7532233,32.881495900000004],[-83.753235,32.8812822]]},"id":"8844c0b53dfffff-13d7f163503ff3a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b53d12026-13b5e17424c6c9a7","8f44c0b53d16561-139fe16bbdcd7cb4"]},"geometry":{"type":"LineString","coordinates":[[-83.753235,32.8812822],[-83.75324850000001,32.880836]]},"id":"8a44c0b53d17fff-13b5f16ff08c0782"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.754641,32.8805001]},"id":"8f44c0b53d3150d-17ddde0560f8fe2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d31128-17dffd8d95c7c77c","8f44c0b53d3150d-17ddde0560f8fe2d"]},"geometry":{"type":"LineString","coordinates":[[-83.75483270000001,32.8805039],[-83.754641,32.8805001]]},"id":"8b44c0b53d31fff-17ddddc983e757e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7540434,32.880488400000004]},"id":"8f44c0b53d32205-17d5df7aefee8781"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d3150d-17ddde0560f8fe2d","8f44c0b53d32205-17d5df7aefee8781"]},"geometry":{"type":"LineString","coordinates":[[-83.754641,32.8805001],[-83.7540434,32.880488400000004]]},"id":"8a44c0b53d37fff-17d5fec02fb98250"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b52a494f1-17b7f16777f5e27c","8f44c0b53d32205-17d5df7aefee8781"]},"geometry":{"type":"LineString","coordinates":[[-83.7540434,32.880488400000004],[-83.7532553,32.8804729]]},"id":"8844c0b53dfffff-17bdf07138c1a232"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6406529,32.7905107]},"id":"8f44c0b1325e415-1797f44ff86798c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1325e415-1797f44ff86798c5","8f44c0b132ed014-17f6f50be46fb841"]},"geometry":{"type":"LineString","coordinates":[[-83.64035220000001,32.7906318],[-83.6404619,32.7905809],[-83.64060190000001,32.790516000000004],[-83.6406529,32.7905107]]},"id":"8844c0b133fffff-17b6f4af1936d555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6412238,32.7904509]},"id":"8f44c0b1325c46c-13fff2eb22168c18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1325e415-1797f44ff86798c5","8f44c0b1325c46c-13fff2eb22168c18"]},"geometry":{"type":"LineString","coordinates":[[-83.6406529,32.7905107],[-83.6412238,32.7904509]]},"id":"8a44c0b1325ffff-1796f39d996e8396"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1325e415-1797f44ff86798c5","8f44c0b13253353-13b7f4655a5e9d91"]},"geometry":{"type":"LineString","coordinates":[[-83.6406529,32.7905107],[-83.6406187,32.7903577]]},"id":"8944c0b1327ffff-13f7f45aa8d16920"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13253353-13b7f4655a5e9d91","8f44c0b132e5b45-13bef5c9a5abe846"]},"geometry":{"type":"LineString","coordinates":[[-83.6406187,32.7903577],[-83.64042,32.7895374],[-83.6403411,32.7895151],[-83.6401677,32.789537],[-83.6400486,32.789552]]},"id":"8a44c0b13257fff-13f7f4da38c8d5ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1324b823-17feffbc3b2e7881","8f44c0b1324918d-17f7eee8ad0560bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6428662,32.7912758],[-83.6426776,32.7912677],[-83.6425277,32.7912613]]},"id":"8a44c0b1324ffff-17feff5266983943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64269610000001,32.791448800000005]},"id":"8f44c0b13249694-17dfef52f27a2516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b13249694-17dfef52f27a2516","8f44c0b1324b823-17feffbc3b2e7881"]},"geometry":{"type":"LineString","coordinates":[[-83.6425277,32.7912613],[-83.6424581,32.7913391],[-83.64269610000001,32.791448800000005]]},"id":"8a44c0b1324ffff-17beefac5ce45ee1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71606600000001,32.826725700000004]},"id":"8f44c0b0a333b49-17ffbc32ca6dcad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a331426-1796bc25fb4f16cb","8f44c0b0a333b49-17ffbc32ca6dcad3"]},"geometry":{"type":"LineString","coordinates":[[-83.7160865,32.826548],[-83.71606600000001,32.826725700000004]]},"id":"8b44c0b0a331fff-17de3c2c53540407"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a3044a4-17f6fb69c78bffe6","8f44c0b0a333b49-17ffbc32ca6dcad3"]},"geometry":{"type":"LineString","coordinates":[[-83.71606600000001,32.826725700000004],[-83.7160602,32.8268083],[-83.7163876,32.8268877]]},"id":"8944c0b0a33ffff-17d63be3ebe04c53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a3044a4-17f6fb69c78bffe6","8f44c0b0a30429c-17fe3ad3db88810c"]},"geometry":{"type":"LineString","coordinates":[[-83.7163876,32.8268877],[-83.71633960000001,32.8270347],[-83.7166275,32.8271042]]},"id":"8a44c0b0a307fff-17bf3b478710f4ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a305c42-17977a10c4233685","8f44c0b0a30429c-17fe3ad3db88810c"]},"geometry":{"type":"LineString","coordinates":[[-83.7166275,32.8271042],[-83.71690840000001,32.8271402],[-83.7169396,32.8271415]]},"id":"8a44c0b0a307fff-17feba726293208a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71768820000001,32.827184100000004]},"id":"8f44c0b0a32ea72-179e383ceaeddd7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a305c42-17977a10c4233685","8f44c0b0a32ea72-179e383ceaeddd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.7169396,32.8271415],[-83.71749790000001,32.827164700000004],[-83.71768820000001,32.827184100000004]]},"id":"8944c0b0a33ffff-179e3926aad8520a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7177209,32.8271152]},"id":"8f44c0b0a32eb75-17f738287c0a2a6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a32eb75-17f738287c0a2a6c","8f44c0b0a32ea72-179e383ceaeddd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.71768820000001,32.827184100000004],[-83.7177209,32.8271152]]},"id":"8c44c0b0a32ebff-179eb832a362027c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a32c52c-179fb7f732ebb39f","8f44c0b0a32eb75-17f738287c0a2a6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7177209,32.8271152],[-83.7177997,32.8269496]]},"id":"8b44c0b0a32cfff-17bf780fdd6b7f81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7162088,32.826759800000005]},"id":"8f44c0b0a331671-1796fbd986fe59a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a333b49-17ffbc32ca6dcad3","8f44c0b0a331671-1796fbd986fe59a5"]},"geometry":{"type":"LineString","coordinates":[[-83.71606600000001,32.826725700000004],[-83.7162088,32.826759800000005]]},"id":"8b44c0b0a331fff-179e7c0624ee8db4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5353484,32.8282359]},"id":"8f44c0b83769d59-13bff5674186eb49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83769d59-13bff5674186eb49","8f44c0b8376dd74-17fff51bcba2c84b"]},"geometry":{"type":"LineString","coordinates":[[-83.5353484,32.8282359],[-83.53519510000001,32.8281098],[-83.53516950000001,32.8280669],[-83.53515990000001,32.828032],[-83.5351631,32.827981],[-83.53546920000001,32.827749000000004]]},"id":"8a44c0b8376ffff-1797f5948d3c36a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53552090000001,32.8277099]},"id":"8f44c0b833936ec-17f7f4fb7646a0ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8376dd74-17fff51bcba2c84b","8f44c0b833936ec-17f7f4fb7646a0ac"]},"geometry":{"type":"LineString","coordinates":[[-83.53546920000001,32.827749000000004],[-83.53552090000001,32.8277099]]},"id":"8a44c0b8376ffff-17f7f50b9e840e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83bb6bb5-1397e6e680cdb8b7","8f44c0b83bb0296-13d7e669606de300"]},"geometry":{"type":"LineString","coordinates":[[-83.541489,32.819494],[-83.5413319,32.819141],[-83.5412888,32.8189506]]},"id":"8a44c0b83bb7fff-13b7f6af7af7a5f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5412996,32.817645]},"id":"8f44c0b838535ae-17d7e6dfc1a67e46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b838535ae-17d7e6dfc1a67e46","8f44c0b83bb6bb5-1397e6e680cdb8b7"]},"geometry":{"type":"LineString","coordinates":[[-83.5412888,32.8189506],[-83.5412726,32.8187919],[-83.5412996,32.817645]]},"id":"8844c0b839fffff-17fff6e8ab1d87a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5439881,32.819400300000005]},"id":"8f44c0b83b10cb5-139ff04f7906fe81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b12836-13dff0e7b9389d21","8f44c0b83b10cb5-139ff04f7906fe81"]},"geometry":{"type":"LineString","coordinates":[[-83.5437445,32.8195057],[-83.5439881,32.819400300000005]]},"id":"8a44c0b83b17fff-13bfe09b9ff89967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b314e5-1397ddbf6a43656f","8f44c0b83b10cb5-139ff04f7906fe81"]},"geometry":{"type":"LineString","coordinates":[[-83.5439881,32.819400300000005],[-83.5450378,32.818946100000005]]},"id":"8944c0b83b3ffff-139fdf07617233a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b314e5-1397ddbf6a43656f","8f44c0b83b23941-13b7facf915fd7f5"]},"geometry":{"type":"LineString","coordinates":[[-83.5450378,32.818946100000005],[-83.5451457,32.8189189],[-83.5458955,32.8190594],[-83.54605190000001,32.8190685],[-83.5462407,32.818995900000004]]},"id":"8944c0b83b3ffff-13b7fc45b5da3ff7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b814d3a49-13fff76a93fbe104","8f44c0b83b23941-13b7facf915fd7f5"]},"geometry":{"type":"LineString","coordinates":[[-83.5462407,32.818995900000004],[-83.54635400000001,32.8189778],[-83.5466507,32.818995900000004],[-83.5473681,32.8192362],[-83.5476311,32.8193527]]},"id":"8644c0b87ffffff-13fff9166598bc60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b10768-13d7fff12ea58026","8f44c0b83b10cb5-139ff04f7906fe81"]},"geometry":{"type":"LineString","coordinates":[[-83.544139,32.819691],[-83.5439881,32.819400300000005]]},"id":"8b44c0b83b10fff-13fff020550765f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5419523,32.8168109]},"id":"8f44c0b83854b1c-17dff547dbec3685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b10cb5-139ff04f7906fe81","8f44c0b83854b1c-17dff547dbec3685"]},"geometry":{"type":"LineString","coordinates":[[-83.5439881,32.819400300000005],[-83.5436299,32.8187103],[-83.54352200000001,32.8185834],[-83.54337100000001,32.818488200000004],[-83.54314980000001,32.8184338],[-83.54263200000001,32.8184111],[-83.5422436,32.818393],[-83.5421195,32.818379400000005],[-83.54203860000001,32.8183522],[-83.54196850000001,32.8182842],[-83.54190910000001,32.818179900000004],[-83.5419523,32.8168109]]},"id":"8744c0b83ffffff-17d7e37e8d9de39c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5404345,32.8215421]},"id":"8f44c0b83169102-17d7f8fc741a5cca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b91676-17ffe76a632d2655","8f44c0b83169102-17d7f8fc741a5cca"]},"geometry":{"type":"LineString","coordinates":[[-83.54107780000001,32.820782200000004],[-83.54069000000001,32.8210585],[-83.5406253,32.8211583],[-83.5404345,32.8215421]]},"id":"8844c0b83bfffff-17d7e850af32bfeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5403388,32.8217346]},"id":"8f44c0b8316962e-13d7e93845403915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83169102-17d7f8fc741a5cca","8f44c0b8316962e-13d7e93845403915"]},"geometry":{"type":"LineString","coordinates":[[-83.5404345,32.8215421],[-83.5403388,32.8217346]]},"id":"8b44c0b83169fff-1397e91a6af99155"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83ab67a6-13b7f9a99b0bca49","8f44c0b8316962e-13d7e93845403915"]},"geometry":{"type":"LineString","coordinates":[[-83.5403388,32.8217346],[-83.5401575,32.822099300000005]]},"id":"8944c0b8317ffff-13d7e970fba14225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5399994,32.8224174]},"id":"8f44c0b83ab2426-13ffea0c6e02adfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83ab67a6-13b7f9a99b0bca49","8f44c0b83ab2426-13ffea0c6e02adfe"]},"geometry":{"type":"LineString","coordinates":[[-83.5401575,32.822099300000005],[-83.5399994,32.8224174]]},"id":"8a44c0b83ab7fff-1397e9daf4760a22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.53958420000001,32.823252600000004]},"id":"8f44c0b83a9290a-1797eb0fe2d32eaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83a9290a-1797eb0fe2d32eaa","8f44c0b83ab2426-13ffea0c6e02adfe"]},"geometry":{"type":"LineString","coordinates":[[-83.5399994,32.8224174],[-83.53958420000001,32.823252600000004]]},"id":"8944c0b83abffff-13ffea8e26b10650"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83b88286-13b7f36d60ddaa7f","8f44c0b83a1211c-139ff32c6a9454ab"]},"geometry":{"type":"LineString","coordinates":[[-83.5427114,32.821667500000004],[-83.5426535,32.8219742],[-83.5426643,32.8220921],[-83.5427344,32.8222236],[-83.5428261,32.8225137],[-83.54281540000001,32.8226451]]},"id":"8844c0b83bfffff-13dfe3622bf28bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83aa848b-17d7f45ea2fc5e67","8f44c0b83a1211c-139ff32c6a9454ab"]},"geometry":{"type":"LineString","coordinates":[[-83.54281540000001,32.8226451],[-83.54277760000001,32.8227403],[-83.54232540000001,32.8235873]]},"id":"8844c0b83bfffff-13b7e3c2945273a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83aa848b-17d7f45ea2fc5e67","8f44c0b83aaa2c1-1797f4c2152e25f3"]},"geometry":{"type":"LineString","coordinates":[[-83.54232540000001,32.8235873],[-83.5421663,32.8238853]]},"id":"8a44c0b83aaffff-17b7f4906d492b74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5411054,32.823724]},"id":"8f44c0b83a83d58-17bfe759292ce85e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83a83d58-17bfe759292ce85e","8f44c0b83aaa2c1-1797f4c2152e25f3"]},"geometry":{"type":"LineString","coordinates":[[-83.5421663,32.8238853],[-83.54214110000001,32.823932500000005],[-83.54206020000001,32.824005],[-83.5419739,32.824000500000004],[-83.5411054,32.823724]]},"id":"8944c0b83abffff-1797e600f5ac785f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6d42e2-13bfa24dc5a76fa5","8f44c0b8c6d48a6-13f7f25faac3aacd"]},"geometry":{"type":"LineString","coordinates":[[-83.56938600000001,32.84218],[-83.5693574,32.8418373]]},"id":"8b44c0b8c6d4fff-13dff256b282ec76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56934840000001,32.841728700000004]},"id":"8f44c0b8c6f2656-13b7f2654a461a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6f2656-13b7f2654a461a0e","8f44c0b8c6d48a6-13f7f25faac3aacd"]},"geometry":{"type":"LineString","coordinates":[[-83.5693574,32.8418373],[-83.56934840000001,32.841728700000004]]},"id":"8944c0b8c6fffff-13d7e2627db2deb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56962610000001,32.8419812]},"id":"8f44c0b8c6f379c-13bfe1b7bf87f038"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6f379c-13bfe1b7bf87f038","8f44c0b8c6f351c-13d7a1c15e6cb759"]},"geometry":{"type":"LineString","coordinates":[[-83.56962610000001,32.8419812],[-83.5696107,32.8418128]]},"id":"8b44c0b8c6f3fff-139fa1bc8f9d1e17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.56959180000001,32.8416073]},"id":"8f44c0b8c6f2af0-13d7b1cd22cb53ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8c6f2af0-13d7b1cd22cb53ac","8f44c0b8c6f351c-13d7a1c15e6cb759"]},"geometry":{"type":"LineString","coordinates":[[-83.5696107,32.8418128],[-83.56959180000001,32.8416073]]},"id":"8a44c0b8c6f7fff-1397f1c74e71cfd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60547000000001,32.8492204]},"id":"8f44c0b8db516c8-13ffca3542d499b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8db516c8-13ffca3542d499b1","8f44c0b8db4244e-13b7f91739e62d6c"]},"geometry":{"type":"LineString","coordinates":[[-83.60547000000001,32.8492204],[-83.6054776,32.848929600000005],[-83.60592770000001,32.8489343]]},"id":"8944c0b8db7ffff-13dfd9dc00313225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.60640190000001,32.8484375]},"id":"8f44c0b8db46b09-139777eeddf1913d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8db46b09-139777eeddf1913d","8f44c0b8db4244e-13b7f91739e62d6c"]},"geometry":{"type":"LineString","coordinates":[[-83.60592770000001,32.8489343],[-83.6063867,32.848939200000004],[-83.60640190000001,32.8484375]]},"id":"8a44c0b8db47fff-13ff683a63560f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6776239,32.8510179]},"id":"8f44c0a2609aaa8-17deba0d18795cbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609aaa8-17deba0d18795cbb","8f44c0a2609aa5b-17f699df67bf6db0"]},"geometry":{"type":"LineString","coordinates":[[-83.67769700000001,32.851072],[-83.6776239,32.8510179]]},"id":"8c44c0a2609abff-17dfb9f64cbfe282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609a171-17be9a40adc26d14","8f44c0a2609aaa8-17deba0d18795cbb"]},"geometry":{"type":"LineString","coordinates":[[-83.6776239,32.8510179],[-83.67754140000001,32.8509568]]},"id":"8b44c0a2609afff-17bfba26ef002e56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609a171-17be9a40adc26d14","8f44c0a2609acc5-17ffbaa52c94cd17"]},"geometry":{"type":"LineString","coordinates":[[-83.67754140000001,32.8509568],[-83.67746790000001,32.8509024],[-83.6774235,32.850890400000004],[-83.6773806,32.8508851]]},"id":"8b44c0a2609afff-179ffa705cbcee43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67730750000001,32.8513134]},"id":"8f44c0a26734c51-1396fad2d7c35c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26734c51-1396fad2d7c35c07","8f44c0a2609acc5-17ffbaa52c94cd17"]},"geometry":{"type":"LineString","coordinates":[[-83.6773806,32.8508851],[-83.677271,32.8512],[-83.6772694,32.8512573],[-83.67730750000001,32.8513134]]},"id":"8744c0a26ffffff-13969acf3a10d014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2609aaa8-17deba0d18795cbb","8f44c0a26734c51-1396fad2d7c35c07"]},"geometry":{"type":"LineString","coordinates":[[-83.67730750000001,32.8513134],[-83.6776239,32.8510179]]},"id":"8744c0a26ffffff-13be9a6ff97bd8f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67587010000001,32.8507532]},"id":"8f44c0a264452c4-17bede553422b45b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26734c51-1396fad2d7c35c07","8f44c0a264452c4-17bede553422b45b"]},"geometry":{"type":"LineString","coordinates":[[-83.67730750000001,32.8513134],[-83.6769867,32.851610900000004],[-83.67587010000001,32.8507532]]},"id":"8744c0a26ffffff-13dedc8dc2a4e0d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6758772,32.850609]},"id":"8f44c0a2644504d-17debe50c69c7691"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a264452c4-17bede553422b45b","8f44c0a2644504d-17debe50c69c7691"]},"geometry":{"type":"LineString","coordinates":[[-83.67587010000001,32.8507532],[-83.6753546,32.8503573],[-83.67545150000001,32.850270300000005],[-83.67552350000001,32.850251400000005],[-83.67582540000001,32.8504822],[-83.67586820000001,32.8505598],[-83.6758772,32.850609]]},"id":"8a44c0a26447fff-17f7feecd66cd00a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a264452c4-17bede553422b45b","8f44c0a2644504d-17debe50c69c7691"]},"geometry":{"type":"LineString","coordinates":[[-83.6758772,32.850609],[-83.67587010000001,32.8507532]]},"id":"8c44c0a264453ff-17ffbe5303bcbf1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a051b1373-139eb7aa1d9213a2","8f44c0a05186085-13f7c87451dc4423"]},"geometry":{"type":"LineString","coordinates":[[-83.6851551,32.9045955],[-83.6848315,32.9049204]]},"id":"8944c0a051bffff-1397c80f318dbaf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0519536b-13ffa90c1d24c06e","8f44c0a05186085-13f7c87451dc4423"]},"geometry":{"type":"LineString","coordinates":[[-83.6848315,32.9049204],[-83.6845887,32.9051642]]},"id":"8944c0a051bffff-13b7f8c0363ab96d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68446420000001,32.9052865]},"id":"8f44c0a05191940-17de9959ece47a7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05191940-17de9959ece47a7c","8f44c0a0519536b-13ffa90c1d24c06e"]},"geometry":{"type":"LineString","coordinates":[[-83.6845887,32.9051642],[-83.68446420000001,32.9052865]]},"id":"8a44c0a05197fff-17b7e932fd4d55a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68431340000001,32.9054407]},"id":"8f44c0a0519102e-17bef9b82e062e3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05191940-17de9959ece47a7c","8f44c0a0519102e-17bef9b82e062e3c"]},"geometry":{"type":"LineString","coordinates":[[-83.68446420000001,32.9052865],[-83.68431340000001,32.9054407]]},"id":"8b44c0a05191fff-17fec9890b606557"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68420180000001,32.9055528]},"id":"8f44c0a05191624-17f689fde62b6df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0519102e-17bef9b82e062e3c","8f44c0a05191624-17f689fde62b6df4"]},"geometry":{"type":"LineString","coordinates":[[-83.68431340000001,32.9054407],[-83.68420180000001,32.9055528]]},"id":"8b44c0a05191fff-17df89db005f2ac8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05183421-17b6b82271ffa5e2","8f44c0a05191624-17f689fde62b6df4"]},"geometry":{"type":"LineString","coordinates":[[-83.68420180000001,32.9055528],[-83.68409120000001,32.9056638],[-83.684082,32.905704],[-83.6841169,32.9057441],[-83.6846738,32.906180500000005],[-83.6847054,32.906170700000004],[-83.6850668,32.9057811],[-83.68507790000001,32.905741],[-83.68506500000001,32.905711700000005],[-83.68501350000001,32.905671600000005],[-83.68496250000001,32.905636300000005]]},"id":"8944c0a051bffff-17d7a90cb46914dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05183421-17b6b82271ffa5e2","8f44c0a05191940-17de9959ece47a7c"]},"geometry":{"type":"LineString","coordinates":[[-83.68496250000001,32.905636300000005],[-83.68446420000001,32.9052865]]},"id":"8944c0a051bffff-17bfe8be2b9e8a9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6839276,32.9053029]},"id":"8f44c0a0519029e-17d6daa942036dfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0519029e-17d6daa942036dfb","8f44c0a05191624-17f689fde62b6df4"]},"geometry":{"type":"LineString","coordinates":[[-83.68420180000001,32.9055528],[-83.6839442,32.905343],[-83.6839276,32.9053029]]},"id":"8a44c0a05197fff-17b7fa58432d00e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0519102e-17bef9b82e062e3c","8f44c0a0519029e-17d6daa942036dfb"]},"geometry":{"type":"LineString","coordinates":[[-83.6839276,32.9053029],[-83.6839387,32.9052628],[-83.6839791,32.9052334],[-83.6840305,32.9052334],[-83.68431340000001,32.9054407]]},"id":"8a44c0a05197fff-17defa357513e867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68391720000001,32.9048724]},"id":"8f44c0a051946f3-13dfcaafc559538d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05191940-17de9959ece47a7c","8f44c0a051946f3-13dfcaafc559538d"]},"geometry":{"type":"LineString","coordinates":[[-83.68446420000001,32.9052865],[-83.68388350000001,32.9049234],[-83.68391720000001,32.9048724]]},"id":"8a44c0a05197fff-13d68a1d6ba9dd96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a051b321e-13ffd9079b9bc65e","8f44c0a051946f3-13dfcaafc559538d"]},"geometry":{"type":"LineString","coordinates":[[-83.68391720000001,32.9048724],[-83.6841977,32.9044467],[-83.6842455,32.9044359],[-83.68448070000001,32.9044991],[-83.6846828,32.9045963],[-83.6846975,32.9046442],[-83.6845959,32.9047477]]},"id":"8944c0a051bffff-139fb9b5d71676f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a051b321e-13ffd9079b9bc65e","8f44c0a051958a1-13dff956285fcad8"]},"geometry":{"type":"LineString","coordinates":[[-83.6845959,32.9047477],[-83.6844702,32.9048759]]},"id":"8944c0a051bffff-13b7e92eeb8a199b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0519536b-13ffa90c1d24c06e","8f44c0a051958a1-13dff956285fcad8"]},"geometry":{"type":"LineString","coordinates":[[-83.6844702,32.9048759],[-83.6843631,32.904985100000005],[-83.6843576,32.9050144],[-83.6845887,32.9051642]]},"id":"8b44c0a05195fff-13be9964b2fd91da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05190636-17b7faf1ee7abb95","8f44c0a0519029e-17d6daa942036dfb"]},"geometry":{"type":"LineString","coordinates":[[-83.6839276,32.9053029],[-83.68381140000001,32.9052287]]},"id":"8b44c0a05190fff-17bfaacd9bf239f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68365200000001,32.905127]},"id":"8f44c0a0519049e-13feeb558f333cf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05190636-17b7faf1ee7abb95","8f44c0a0519049e-13feeb558f333cf6"]},"geometry":{"type":"LineString","coordinates":[[-83.68381140000001,32.9052287],[-83.68365200000001,32.905127]]},"id":"8a44c0a05197fff-179ebb23bf07329e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6837946,32.9048255]},"id":"8f44c0a05196a76-13bffafc636e2252"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196a76-13bffafc636e2252","8f44c0a051946f3-13dfcaafc559538d"]},"geometry":{"type":"LineString","coordinates":[[-83.68391720000001,32.9048724],[-83.6837946,32.9048255]]},"id":"8a44c0a05197fff-13beaad61e649718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196a76-13bffafc636e2252","8f44c0a051944db-13fefae6b49564dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6837946,32.9048255],[-83.6838293,32.904753500000005]]},"id":"8c44c0a05196bff-1397faf18e241988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0519452e-139feab7fe0fdb2d","8f44c0a051944db-13fefae6b49564dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6838293,32.904753500000005],[-83.6839041,32.9045982]]},"id":"8b44c0a05194fff-13defacf569a8d64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196d23-1396cba9686b4eb5","8f44c0a0519452e-139feab7fe0fdb2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6839041,32.9045982],[-83.68396870000001,32.9044639],[-83.6839573,32.9044447],[-83.6836251,32.9044005],[-83.6835885,32.9044082],[-83.6835178,32.904558]]},"id":"8744c0a05ffffff-13d7bb10e6d36813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196d23-1396cba9686b4eb5","8f44c0a05196cde-13f7abd532ec7a08"]},"geometry":{"type":"LineString","coordinates":[[-83.6835178,32.904558],[-83.6834477,32.904706600000004]]},"id":"8c44c0a05196dff-13b7bbbf51446441"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196cde-13f7abd532ec7a08","8f44c0a051964c8-13bfdc00b988a734"]},"geometry":{"type":"LineString","coordinates":[[-83.6834477,32.904706600000004],[-83.6833781,32.9048541]]},"id":"8b44c0a05196fff-139fcbeafef8ca92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196ad9-13d7fb21d0914124","8f44c0a051964c8-13bfdc00b988a734"]},"geometry":{"type":"LineString","coordinates":[[-83.6833781,32.9048541],[-83.6833526,32.9049082],[-83.68335710000001,32.9049447],[-83.68355410000001,32.905067800000005],[-83.6835954,32.9050524],[-83.6837347,32.9048959]]},"id":"8a44c0a05197fff-139f9ba5506d3c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05196ad9-13d7fb21d0914124","8f44c0a05196a76-13bffafc636e2252"]},"geometry":{"type":"LineString","coordinates":[[-83.6837347,32.9048959],[-83.6837946,32.9048255]]},"id":"8b44c0a05196fff-13d7fb0f2b5c3c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324158,32.8052404]},"id":"8f44c0b0c699b4c-139f5448251cc958"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c699b4c-139f5448251cc958","8f44c0b0c69aab6-17ffb6c1dd000942"]},"geometry":{"type":"LineString","coordinates":[[-83.73140190000001,32.805010700000004],[-83.7315557,32.8050214],[-83.7316196,32.805042900000004],[-83.73184,32.8052067],[-83.7318911,32.805230800000004],[-83.7319454,32.8052389],[-83.7323638,32.805244200000004],[-83.7324158,32.8052404]]},"id":"8a44c0b0c69ffff-17de358b73f3f91c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c699b4c-139f5448251cc958","8f44c0b0c68a01c-17deb3cd1e3ebb0f"]},"geometry":{"type":"LineString","coordinates":[[-83.7324158,32.8052404],[-83.7324373,32.8052389],[-83.7326127,32.8051338]]},"id":"8b44c0b0c68afff-17feb409c61ef6bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68a86c-17ff5352c793b22f","8f44c0b0c68a01c-17deb3cd1e3ebb0f"]},"geometry":{"type":"LineString","coordinates":[[-83.7326127,32.8051338],[-83.73280840000001,32.8050165]]},"id":"8b44c0b0c68afff-17b6138fe44afda6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68a86c-17ff5352c793b22f","8f44c0b0c688cf3-17bf12e0d7e8ba70"]},"geometry":{"type":"LineString","coordinates":[[-83.73280840000001,32.8050165],[-83.7329907,32.8049072]]},"id":"8a44c0b0c68ffff-17df3319c77153cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c688cf3-17bf12e0d7e8ba70","8f44c0b0c68c64d-17ffb25fdb521e20"]},"geometry":{"type":"LineString","coordinates":[[-83.7329907,32.8049072],[-83.7331971,32.8047835]]},"id":"8a44c0b0c68ffff-179672a051adac55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68cada-17bf91f163b11745","8f44c0b0c68c64d-17ffb25fdb521e20"]},"geometry":{"type":"LineString","coordinates":[[-83.7331971,32.8047835],[-83.73337380000001,32.804677600000005]]},"id":"8b44c0b0c68cfff-17de92289755b474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ae62a-17bf51eadc88f050","8f44c0b0c68cada-17bf91f163b11745"]},"geometry":{"type":"LineString","coordinates":[[-83.73337380000001,32.804677600000005],[-83.7335393,32.804578400000004],[-83.7335616,32.8045382],[-83.733568,32.8038589],[-83.73338430000001,32.803858000000005]]},"id":"8944c0b0c6bffff-1797118f7b7a9cf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6ae62a-17bf51eadc88f050","8f44c0b0c685a0d-17bed25e889eb00c"]},"geometry":{"type":"LineString","coordinates":[[-83.73338430000001,32.803858000000005],[-83.7331992,32.8038572]]},"id":"8a44c0b0c6affff-17bf1224ad745940"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c685a0d-17bed25e889eb00c","8f44c0b0c68500b-17be32dd5e6ad627"]},"geometry":{"type":"LineString","coordinates":[[-83.7331992,32.8038572],[-83.73299630000001,32.803856200000006]]},"id":"8b44c0b0c685fff-17be729decc377f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68500b-17be32dd5e6ad627","8f44c0b0c6857b6-17bf334ffe5e8d35"]},"geometry":{"type":"LineString","coordinates":[[-83.73299630000001,32.803856200000006],[-83.7328129,32.8038867]]},"id":"8b44c0b0c685fff-17b7b316a41b3700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c680b91-17d613c55dfbb5b5","8f44c0b0c6857b6-17bf334ffe5e8d35"]},"geometry":{"type":"LineString","coordinates":[[-83.7328129,32.8038867],[-83.7327216,32.8039019],[-83.7326251,32.8039009]]},"id":"8a44c0b0c687fff-17d6338a75332aaa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7324293,32.803899]},"id":"8f44c0b0c68019a-17d6f43fb941ba43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68019a-17d6f43fb941ba43","8f44c0b0c680b91-17d613c55dfbb5b5"]},"geometry":{"type":"LineString","coordinates":[[-83.7326251,32.8039009],[-83.7324293,32.803899]]},"id":"8b44c0b0c680fff-17d79402871e0a8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68019a-17d6f43fb941ba43","8f44c0b0c6804b4-17d7d4b506faf72b"]},"geometry":{"type":"LineString","coordinates":[[-83.7324293,32.803899],[-83.73224160000001,32.8038972]]},"id":"8b44c0b0c680fff-17d6547a5a4405d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6828b3-17d69530f4eeb67c","8f44c0b0c6804b4-17d7d4b506faf72b"]},"geometry":{"type":"LineString","coordinates":[[-83.73224160000001,32.8038972],[-83.7320433,32.8038953]]},"id":"8a44c0b0c687fff-17d734f30762b420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7318618,32.8038745]},"id":"8f44c0b0c682cb0-17b795a26bfe3196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6828b3-17d69530f4eeb67c","8f44c0b0c682cb0-17b795a26bfe3196"]},"geometry":{"type":"LineString","coordinates":[[-83.7320433,32.8038953],[-83.7318879,32.803893800000004],[-83.7318618,32.8038745]]},"id":"8b44c0b0c682fff-17d7156b5fab08b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c690b50-179f56ba41245742","8f44c0b0c682cb0-17b795a26bfe3196"]},"geometry":{"type":"LineString","coordinates":[[-83.7318618,32.8038745],[-83.73178250000001,32.803816000000005],[-83.731414,32.8038132]]},"id":"8944c0b0c6bffff-1796362999f25dca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c694805-13b676b695001a45","8f44c0b0eb4b733-13b699446d9eec45"]},"geometry":{"type":"LineString","coordinates":[[-83.7314199,32.803235900000004],[-83.73037380000001,32.8032265]]},"id":"8644c0b0fffffff-13b797fd7c5dc5ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4b733-13b699446d9eec45","8f44c0b0ea64b02-139f79bc28817c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.73037380000001,32.8032265],[-83.7301822,32.8032247]]},"id":"8944c0b0eb7ffff-13b6198046eaaad6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ea641aa-139e3a49c4460ef3","8f44c0b0ea64b02-139f79bc28817c1c"]},"geometry":{"type":"LineString","coordinates":[[-83.7301822,32.8032247],[-83.72995560000001,32.8032227]]},"id":"8b44c0b0ea64fff-139eda02fba63966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ea66945-139ebaed8f4c9772","8f44c0b0ea641aa-139e3a49c4460ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.72995560000001,32.8032227],[-83.7296936,32.8032203]]},"id":"8a44c0b0ea67fff-139f7a9baa220893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72917290000001,32.8026508]},"id":"8f44c0b0eb5846d-13bedc32f64227ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ea66945-139ebaed8f4c9772","8f44c0b0eb5846d-13bedc32f64227ca"]},"geometry":{"type":"LineString","coordinates":[[-83.7296936,32.8032203],[-83.72935820000001,32.8032173],[-83.7292687,32.8032065],[-83.72921120000001,32.8031716],[-83.7291761,32.803144800000005],[-83.72917290000001,32.8026508]]},"id":"8844c0b0ebfffff-13be7bdfb4687c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb68449-17bf1745515198cd","8f44c0b0eb68a9a-17bf56bc65d44825"]},"geometry":{"type":"LineString","coordinates":[[-83.7314106,32.801813200000005],[-83.73119150000001,32.801816]]},"id":"8b44c0b0eb68fff-17be3700d37a7d9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb68449-17bf1745515198cd","8f44c0b0eb6aba3-17b6b7c8f6c34ced"]},"geometry":{"type":"LineString","coordinates":[[-83.73119150000001,32.801816],[-83.7309809,32.801818700000005]]},"id":"8a44c0b0eb6ffff-17bff787257b66ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb6a1aa-17b6583cd7721f2f","8f44c0b0eb6aba3-17b6b7c8f6c34ced"]},"geometry":{"type":"LineString","coordinates":[[-83.7309809,32.801818700000005],[-83.7307955,32.8018212]]},"id":"8b44c0b0eb6afff-17b79802e30ced87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7303643,32.801780900000004]},"id":"8f44c0b0eb41d65-179f194a59105d91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb41d65-179f194a59105d91","8f44c0b0eb6a1aa-17b6583cd7721f2f"]},"geometry":{"type":"LineString","coordinates":[[-83.7307955,32.8018212],[-83.7305879,32.8018238],[-83.73051120000001,32.801813100000004],[-83.7303643,32.801780900000004]]},"id":"8944c0b0eb7ffff-17bf38c454f657bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb40add-179799ca13d2a80a","8f44c0b0eb41d65-179f194a59105d91"]},"geometry":{"type":"LineString","coordinates":[[-83.7303643,32.801780900000004],[-83.7301599,32.801743300000005]]},"id":"8a44c0b0eb47fff-179f598a32d2f044"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7295211,32.8017648]},"id":"8f44c0b0eb4200e-179f1b595b8c9ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4200e-179f1b595b8c9ec9","8f44c0b0eb40add-179799ca13d2a80a"]},"geometry":{"type":"LineString","coordinates":[[-83.7301599,32.801743300000005],[-83.7300257,32.801748700000005],[-83.7295211,32.8017648]]},"id":"8a44c0b0eb47fff-179e9a91b72261a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4200e-179f1b595b8c9ec9","8f44c0b0eb5dc2e-13fe1af02dcbc82f"]},"geometry":{"type":"LineString","coordinates":[[-83.7295211,32.8017648],[-83.72956260000001,32.8022829],[-83.7295849,32.8023259],[-83.7296424,32.8023554],[-83.72968940000001,32.802352]]},"id":"8944c0b0eb7ffff-13de9b415812f139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb5dc2e-13fe1af02dcbc82f","8f44c0b0eb4e596-13f7da494dae832f"]},"geometry":{"type":"LineString","coordinates":[[-83.72968940000001,32.802352],[-83.7299564,32.802332400000004]]},"id":"8944c0b0eb7ffff-13f7fa9cbd1e9c90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4e596-13f7da494dae832f","8f44c0b0eb4ec5d-13f719b62e0bf71c"]},"geometry":{"type":"LineString","coordinates":[[-83.7299564,32.802332400000004],[-83.7301918,32.8023152]]},"id":"8b44c0b0eb4efff-13fe79ffb2412beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4c314-139fd842b1863c71","8f44c0b0eb4ec5d-13f719b62e0bf71c"]},"geometry":{"type":"LineString","coordinates":[[-83.7301918,32.8023152],[-83.73037070000001,32.802350100000005],[-83.7304697,32.802401100000004],[-83.730524,32.8024118],[-83.7305879,32.802368900000005],[-83.7307861,32.8023773]]},"id":"8a44c0b0eb4ffff-139758fd1b3b681d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4c314-139fd842b1863c71","8f44c0b0eb4dd30-139737c4cd5661fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7307861,32.8023773],[-83.7309876,32.802385900000004]]},"id":"8a44c0b0eb4ffff-13969803ca654dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4d935-139e97470d2a1245","8f44c0b0eb4dd30-139737c4cd5661fd"]},"geometry":{"type":"LineString","coordinates":[[-83.7309876,32.802385900000004],[-83.7311888,32.802394500000005]]},"id":"8a44c0b0eb4ffff-1397f785ead3d816"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c6b6c8b-139e76bd161a9300","8f44c0b0eb4d935-139e97470d2a1245"]},"geometry":{"type":"LineString","coordinates":[[-83.7311888,32.802394500000005],[-83.73140950000001,32.8024039]]},"id":"8944c0b0eb7ffff-139f970207508704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb41d65-179f194a59105d91","8f44c0b0eb44228-1796d99ed8fd7636"]},"geometry":{"type":"LineString","coordinates":[[-83.7303643,32.801780900000004],[-83.7304314,32.801394300000005],[-83.7302291,32.8013677]]},"id":"8a44c0b0eb47fff-17f61943d4b589c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0eb4200e-179f1b595b8c9ec9","8f44c0b0eb44228-1796d99ed8fd7636"]},"geometry":{"type":"LineString","coordinates":[[-83.7302291,32.8013677],[-83.7298181,32.8013137],[-83.72967440000001,32.8013191],[-83.72956260000001,32.8013379],[-83.7295115,32.801367400000004],[-83.7294923,32.8014211],[-83.7295211,32.8017648]]},"id":"8a44c0b0eb47fff-17b75ad14e7fd37d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73241750000001,32.805072700000004]},"id":"8f44c0b0c68a436-17b674471dba949a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68a436-17b674471dba949a","8f44c0b0c699b4c-139f5448251cc958"]},"geometry":{"type":"LineString","coordinates":[[-83.7324158,32.8052404],[-83.73241750000001,32.805072700000004]]},"id":"8b44c0b0c68afff-17d6f447a2a8b879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68019a-17d6f43fb941ba43","8f44c0b0c68a436-17b674471dba949a"]},"geometry":{"type":"LineString","coordinates":[[-83.73241750000001,32.805072700000004],[-83.7324293,32.803899]]},"id":"8944c0b0c6bffff-17b7b443652a2ad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c68a436-17b674471dba949a","8f44c0b0c699989-179e14c433ae675c"]},"geometry":{"type":"LineString","coordinates":[[-83.73241750000001,32.805072700000004],[-83.7322173,32.8050657]]},"id":"8a44c0b0c69ffff-17b65485ae8d5473"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c699c14-179e1537cd12e851","8f44c0b0c699989-179e14c433ae675c"]},"geometry":{"type":"LineString","coordinates":[[-83.7322173,32.8050657],[-83.73203240000001,32.8050592]]},"id":"8b44c0b0c699fff-179e14fe02de4c4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0c699c14-179e1537cd12e851","8f44c0b0c682cb0-17b795a26bfe3196"]},"geometry":{"type":"LineString","coordinates":[[-83.73203240000001,32.8050592],[-83.73191440000001,32.8050524],[-83.7318661,32.805041100000004],[-83.73185000000001,32.805009600000005],[-83.7318618,32.8038745]]},"id":"8944c0b0c6bffff-17d7d59ece1124e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69370020000001,32.819909100000004]},"id":"8f44c0b198246a6-13df72cd6835c5aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19820c74-17d672ce45a5e93a","8f44c0b198246a6-13df72cd6835c5aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6936988,32.820080000000004],[-83.69370020000001,32.819909100000004]]},"id":"8a44c0b19827fff-1796f2cddab84352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198246a6-13df72cd6835c5aa","8f44c0b1991c236-13b7f3b3e8d7ce70"]},"geometry":{"type":"LineString","coordinates":[[-83.69370020000001,32.819909100000004],[-83.69370160000001,32.8197309],[-83.6936989,32.8196656],[-83.6936452,32.8195348],[-83.6935728,32.818998300000004],[-83.6933314,32.8188248]]},"id":"8844c0b199fffff-13fef30e4e151836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991c236-13b7f3b3e8d7ce70","8f44c0b1991c600-13bef41d49cdb565"]},"geometry":{"type":"LineString","coordinates":[[-83.6933314,32.8188248],[-83.6932831,32.8188248],[-83.69316280000001,32.8188364]]},"id":"8b44c0b1991cfff-13be73e8ad1bad4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6929774,32.818854300000005]},"id":"8f44c0b1991eae4-13d7f49120493e7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991eae4-13d7f49120493e7a","8f44c0b1991c600-13bef41d49cdb565"]},"geometry":{"type":"LineString","coordinates":[[-83.69316280000001,32.8188364],[-83.6929774,32.818854300000005]]},"id":"8a44c0b1991ffff-13d6745733713f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991eae4-13d7f49120493e7a","8f44c0b1991e0ea-13d7f509ffdb5468"]},"geometry":{"type":"LineString","coordinates":[[-83.6929774,32.818854300000005],[-83.69278410000001,32.8188729]]},"id":"8b44c0b1991efff-13dff4cd9e7cca35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991e0ea-13d7f509ffdb5468","8f44c0b1991e794-13de75790400ea9a"]},"geometry":{"type":"LineString","coordinates":[[-83.69278410000001,32.8188729],[-83.6926064,32.818890100000004]]},"id":"8b44c0b1991efff-13def54176a47e52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991e794-13de75790400ea9a","8f44c0b199adb99-13fef5e3f2e34a08"]},"geometry":{"type":"LineString","coordinates":[[-83.6926064,32.818890100000004],[-83.6924353,32.818906600000005]]},"id":"8944c0b1993ffff-13f7f5ae89b41b2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ad0a5-13f6f64e87498970","8f44c0b199adb99-13fef5e3f2e34a08"]},"geometry":{"type":"LineString","coordinates":[[-83.6924353,32.818906600000005],[-83.6923953,32.8189104],[-83.69232290000001,32.818899200000004],[-83.6922648,32.8189033]]},"id":"8b44c0b199adfff-13f7761938794bf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ad418-13fff6b38b3527e2","8f44c0b199ad0a5-13f6f64e87498970"]},"geometry":{"type":"LineString","coordinates":[[-83.6922648,32.8189033],[-83.6921032,32.8189147]]},"id":"8b44c0b199adfff-13fe768108a4df1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ad418-13fff6b38b3527e2","8f44c0b199a88e3-13f7f7243233e458"]},"geometry":{"type":"LineString","coordinates":[[-83.6921032,32.8189147],[-83.69192290000001,32.8189274]]},"id":"8a44c0b199affff-13f7f6ebde20b0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a81b6-13ff778fd306a560","8f44c0b199a88e3-13f7f7243233e458"]},"geometry":{"type":"LineString","coordinates":[[-83.69192290000001,32.8189274],[-83.6917507,32.8189396]]},"id":"8b44c0b199a8fff-13ff775a017757cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a81b6-13ff778fd306a560","8f44c0b199ab372-1396f75c5057b8bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6917507,32.8189396],[-83.6917167,32.818942],[-83.6916631,32.8189781],[-83.6916094,32.8190389],[-83.6915987,32.8190885],[-83.69166840000001,32.8195258],[-83.69183310000001,32.819565600000004]]},"id":"8a44c0b199affff-13dff7c602e41077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19836d53-13b6f6e7b061f066","8f44c0b199ab372-1396f75c5057b8bb"]},"geometry":{"type":"LineString","coordinates":[[-83.69183310000001,32.819565600000004],[-83.6920197,32.8196108]]},"id":"8944c0b199bffff-1396f7220f4761ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19836d53-13b6f6e7b061f066","8f44c0b19836876-13bff6775b490ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.6920197,32.8196108],[-83.6921995,32.8196543]]},"id":"8b44c0b19836fff-13be76af8289a501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19830d80-13d77641ba1a3818","8f44c0b19836876-13bff6775b490ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.6921995,32.8196543],[-83.69228530000001,32.819903000000004]]},"id":"8a44c0b19837fff-139ff65c8aa1b395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6931077,32.819906800000005]},"id":"8f44c0b19826498-13dff43fb118cd02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1991eae4-13d7f49120493e7a","8f44c0b19826498-13dff43fb118cd02"]},"geometry":{"type":"LineString","coordinates":[[-83.6929774,32.818854300000005],[-83.6931077,32.819906800000005]]},"id":"8844c0b199fffff-1396f4687304ec22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19826498-13dff43fb118cd02","8f44c0b19835a51-17be74338059c961"]},"geometry":{"type":"LineString","coordinates":[[-83.6931077,32.819906800000005],[-83.6931272,32.8200647]]},"id":"8b44c0b19835fff-179f7439a4855dac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19826a84-13def3489e288dc3","8f44c0b198246a6-13df72cd6835c5aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69370020000001,32.819909100000004],[-83.6935031,32.8199083]]},"id":"8a44c0b19827fff-13def30b02207d97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19826a84-13def3489e288dc3","8f44c0b19826080-13de73bdf11277ad"]},"geometry":{"type":"LineString","coordinates":[[-83.6935031,32.8199083],[-83.69331530000001,32.8199076]]},"id":"8b44c0b19826fff-13def3834de32c36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19826498-13dff43fb118cd02","8f44c0b19826080-13de73bdf11277ad"]},"geometry":{"type":"LineString","coordinates":[[-83.69331530000001,32.8199076],[-83.6931077,32.819906800000005]]},"id":"8a44c0b19827fff-13de73fed58bf12d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199ae815-139e780a7dfa55f8","8f44c0b199a1604-13b6f83547ca74ff"]},"geometry":{"type":"LineString","coordinates":[[-83.69155450000001,32.8185506],[-83.69148600000001,32.8183882]]},"id":"8944c0b199bffff-13d7781fdf489c0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a1405-17d7f8654be1b067","8f44c0b199a1604-13b6f83547ca74ff"]},"geometry":{"type":"LineString","coordinates":[[-83.69148600000001,32.8183882],[-83.6914441,32.818288800000005],[-83.69140920000001,32.8182392]]},"id":"8b44c0b199a1fff-17f6f84b0097c2db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a1405-17d7f8654be1b067","8f44c0b199a020b-17fe789ba1de7b9b"]},"geometry":{"type":"LineString","coordinates":[[-83.69140920000001,32.8182392],[-83.6913222,32.8181153]]},"id":"8a44c0b199a7fff-17b6f880770c3295"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a020b-17fe789ba1de7b9b","8f44c0b199a00ee-17bef8d23f8ec3bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6913222,32.8181153],[-83.69123490000001,32.8179912]]},"id":"8b44c0b199a0fff-17d778b6e3535427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a0c44-17be78eb7589093b","8f44c0b199a00ee-17bef8d23f8ec3bf"]},"geometry":{"type":"LineString","coordinates":[[-83.69123490000001,32.8179912],[-83.69119450000001,32.8178119]]},"id":"8b44c0b199a0fff-17f678ded5ef1912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6901579,32.8161444]},"id":"8f44c0b1d653b2d-13be7b7356a948d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d653b2d-13be7b7356a948d7","8f44c0b1d65160d-13fefb11f89ed004"]},"geometry":{"type":"LineString","coordinates":[[-83.6903137,32.8162445],[-83.6901579,32.8161444]]},"id":"8b44c0b1d651fff-13dffb42a1a132c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d653b2d-13be7b7356a948d7","8f44c0b1d65036e-139ffb53b6a8afdc"]},"geometry":{"type":"LineString","coordinates":[[-83.6901579,32.8161444],[-83.6904038,32.8159592],[-83.69033040000001,32.8159001],[-83.69020850000001,32.8158941]]},"id":"8a44c0b1d657fff-13de7b1e77451b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d650630-1396fc0923f6ed0c","8f44c0b1d65036e-139ffb53b6a8afdc"]},"geometry":{"type":"LineString","coordinates":[[-83.69020850000001,32.8158941],[-83.68991820000001,32.815879800000005]]},"id":"8b44c0b1d650fff-139f7bae7502e30f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68945520000001,32.815857]},"id":"8f44c0b1d65254d-13f6fd2a8c483c98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d650630-1396fc0923f6ed0c","8f44c0b1d65254d-13f6fd2a8c483c98"]},"geometry":{"type":"LineString","coordinates":[[-83.68991820000001,32.815879800000005],[-83.68945520000001,32.815857]]},"id":"8a44c0b1d657fff-13fffc99d14e8f24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e1c90-13f77e8a57da7b72","8f44c0b1d65254d-13f6fd2a8c483c98"]},"geometry":{"type":"LineString","coordinates":[[-83.68945520000001,32.815857],[-83.6888923,32.815829300000004]]},"id":"8944c0b1d6fffff-13fe7dda68706755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.689008,32.8162384]},"id":"8f44c0b1d6ee98e-13f77e420d8e3697"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e1c90-13f77e8a57da7b72","8f44c0b1d6ee98e-13f77e420d8e3697"]},"geometry":{"type":"LineString","coordinates":[[-83.6888923,32.815829300000004],[-83.68864070000001,32.8158169],[-83.6886439,32.815897500000005],[-83.689008,32.8162384]]},"id":"8944c0b1d6fffff-13bf7eca378dff59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6888323,32.8166493]},"id":"8f44c0b1d6ead60-13f7feafde36eee2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ee98e-13f77e420d8e3697","8f44c0b1d6ead60-13f7feafde36eee2"]},"geometry":{"type":"LineString","coordinates":[[-83.689008,32.8162384],[-83.6888387,32.81648],[-83.6888323,32.8166493]]},"id":"8a44c0b1d6effff-13df7e8afbd308f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6888534,32.8172611]},"id":"8f44c0b1d6ccb8a-17f67ea2a4774a5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ead60-13f7feafde36eee2","8f44c0b1d6ccb8a-17f67ea2a4774a5b"]},"geometry":{"type":"LineString","coordinates":[[-83.6888323,32.8166493],[-83.6888132,32.817159100000005],[-83.6888534,32.8172611]]},"id":"8944c0b1d6fffff-17b6feb4af1fb2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ead60-13f7feafde36eee2","8f44c0b1d6e854b-179ffdc802dd0c64"]},"geometry":{"type":"LineString","coordinates":[[-83.6888323,32.8166493],[-83.6890655,32.816684],[-83.68920320000001,32.8167326]]},"id":"8a44c0b1d6effff-13fefe3aa08f9f09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e8065-17b6fd52fdc6f1ca","8f44c0b1d6e854b-179ffdc802dd0c64"]},"geometry":{"type":"LineString","coordinates":[[-83.68920320000001,32.8167326],[-83.68934660000001,32.816783300000004],[-83.6893905,32.816753]]},"id":"8b44c0b1d6e8fff-17bf7d8c0526c597"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e8065-17b6fd52fdc6f1ca","8f44c0b1d6ed42e-13defcc0b7ec5761"]},"geometry":{"type":"LineString","coordinates":[[-83.6893905,32.816753],[-83.68954140000001,32.8166491],[-83.68962450000001,32.8166061]]},"id":"8a44c0b1d6effff-13f6fd0b13751533"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6899691,32.816307800000004]},"id":"8f44c0b1d6533aa-13967be950595565"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6533aa-13967be950595565","8f44c0b1d6ed42e-13defcc0b7ec5761"]},"geometry":{"type":"LineString","coordinates":[[-83.68962450000001,32.8166061],[-83.6899691,32.816307800000004]]},"id":"8844c0b1d7fffff-13fffc55047a2c66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d653b2d-13be7b7356a948d7","8f44c0b1d6533aa-13967be950595565"]},"geometry":{"type":"LineString","coordinates":[[-83.6899691,32.816307800000004],[-83.6901579,32.8161444]]},"id":"8a44c0b1d657fff-13df7bae57946541"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d653084-13de7c374e220202","8f44c0b1d6533aa-13967be950595565"]},"geometry":{"type":"LineString","coordinates":[[-83.6899691,32.816307800000004],[-83.6898444,32.816198400000005]]},"id":"8b44c0b1d653fff-13fe7c105939681a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d653084-13de7c374e220202","8f44c0b1d652240-13fefc940b307057"]},"geometry":{"type":"LineString","coordinates":[[-83.6898444,32.816198400000005],[-83.68969600000001,32.816068300000005]]},"id":"8b44c0b1d653fff-13b77c65a737f022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d652240-13fefc940b307057","8f44c0b1d65254d-13f6fd2a8c483c98"]},"geometry":{"type":"LineString","coordinates":[[-83.68969600000001,32.816068300000005],[-83.68945520000001,32.815857]]},"id":"8a44c0b1d657fff-13befcdf4444caa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e1226-13967ddeefee2eb8","8f44c0b1d65254d-13f6fd2a8c483c98"]},"geometry":{"type":"LineString","coordinates":[[-83.68945520000001,32.815857],[-83.68916660000001,32.8161031]]},"id":"8944c0b1d6fffff-13d7fd84bf3ab506"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6e1226-13967ddeefee2eb8","8f44c0b1d6ee98e-13f77e420d8e3697"]},"geometry":{"type":"LineString","coordinates":[[-83.68916660000001,32.8161031],[-83.689008,32.8162384]]},"id":"8944c0b1d6fffff-13befe10704011c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ed3b1-1797fc43cfd1270a","8f44c0b1d6ed42e-13defcc0b7ec5761"]},"geometry":{"type":"LineString","coordinates":[[-83.68962450000001,32.8166061],[-83.68980330000001,32.8167028],[-83.6898244,32.8167198]]},"id":"8b44c0b1d6edfff-13ff7c8176714763"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69000410000001,32.8171006]},"id":"8f44c0b1d65a6ae-17fffbd378d6f127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6ed3b1-1797fc43cfd1270a","8f44c0b1d65a6ae-17fffbd378d6f127"]},"geometry":{"type":"LineString","coordinates":[[-83.6898244,32.8167198],[-83.68997900000001,32.816845],[-83.6899982,32.816888],[-83.69000410000001,32.8171006]]},"id":"8944c0b1d67ffff-17fffbf11420ee86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187b4a4a-139fbebde450110d","8f44c0b1845b299-1397be23fecc6034"]},"geometry":{"type":"LineString","coordinates":[[-83.6628417,32.815080200000004],[-83.6625954,32.8150738]]},"id":"8944c0b187bffff-139fbe70f193084e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187b4a4a-139fbebde450110d","8f44c0b187b5562-1396bec005a71508"]},"geometry":{"type":"LineString","coordinates":[[-83.6625954,32.8150738],[-83.66199470000001,32.815058400000005],[-83.6619819,32.8153053],[-83.66253130000001,32.815310700000005],[-83.662592,32.815265100000005]]},"id":"8a44c0b187b7fff-13d7ff9a2e3adb3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187b5b86-139fbe2801f6f542","8f44c0b187b5562-1396bec005a71508"]},"geometry":{"type":"LineString","coordinates":[[-83.662592,32.815265100000005],[-83.6628352,32.815273000000005]]},"id":"8b44c0b187b5fff-1397be74078831c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617322,32.814631500000004]},"id":"8f44c0b184e94b5-17fef0d965171217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e8220-1796f0d70735e308","8f44c0b184e94b5-17fef0d965171217"]},"geometry":{"type":"LineString","coordinates":[[-83.661736,32.8144675],[-83.6617322,32.814631500000004]]},"id":"8a44c0b184effff-17d7f0d83156e8d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617288,32.8147846]},"id":"8f44c0b184eba28-17dee0db8015b7c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184eba28-17dee0db8015b7c5","8f44c0b184e94b5-17fef0d965171217"]},"geometry":{"type":"LineString","coordinates":[[-83.6617322,32.814631500000004],[-83.6617288,32.8147846]]},"id":"8a44c0b184effff-17bed0da7f75bc60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184cd3a8-13b6c184b7ea0eba","8f44c0b184eba28-17dee0db8015b7c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6617288,32.8147846],[-83.66171680000001,32.815316100000004],[-83.6614581,32.8153092]]},"id":"8844c0b185fffff-13b6e0faf44a5a82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6602206,32.814747100000005]},"id":"8f44c0b184c3386-17d6f48a210671ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184cd3a8-13b6c184b7ea0eba","8f44c0b184c3386-17d6f48a210671ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6614581,32.8153092],[-83.660206,32.8152758],[-83.6602206,32.814747100000005]]},"id":"8944c0b184fffff-13f7f37edcaa6cc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66087750000001,32.8146056]},"id":"8f44c0b184c1a52-17fec2ef9837a989"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c1a52-17fec2ef9837a989","8f44c0b184c3386-17d6f48a210671ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6602206,32.814747100000005],[-83.6602251,32.814585900000004],[-83.66087750000001,32.8146056]]},"id":"8a44c0b184c7fff-17ffe3e4201eac6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c1a52-17fec2ef9837a989","8f44c0b184e94b5-17fef0d965171217"]},"geometry":{"type":"LineString","coordinates":[[-83.66087750000001,32.8146056],[-83.6617322,32.814631500000004]]},"id":"8944c0b184fffff-17f6e1e476c2f7df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6608734,32.8147633]},"id":"8f44c0b184cc526-17dfd2f222cc604c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184cc526-17dfd2f222cc604c","8f44c0b184eba28-17dee0db8015b7c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6617288,32.8147846],[-83.6608734,32.8147633]]},"id":"8944c0b184fffff-17d7c1e6d7746b24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184cc526-17dfd2f222cc604c","8f44c0b184c3386-17d6f48a210671ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6608734,32.8147633],[-83.6602206,32.814747100000005]]},"id":"8944c0b184fffff-17d6c3be20088bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c1a52-17fec2ef9837a989","8f44c0b184ea491-1797d2ecff946795"]},"geometry":{"type":"LineString","coordinates":[[-83.6608817,32.8144413],[-83.66087750000001,32.8146056]]},"id":"8b44c0b184c1fff-17b7f2ee4dc0cc2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184c1a52-17fec2ef9837a989","8f44c0b184cc526-17dfd2f222cc604c"]},"geometry":{"type":"LineString","coordinates":[[-83.66087750000001,32.8146056],[-83.6608734,32.8147633]]},"id":"8944c0b184fffff-179fd2f0dd6dfb53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4ba9e-139ed3f738521637","8f44c0a05c4b11a-13f6c439fae88916"]},"geometry":{"type":"LineString","coordinates":[[-83.6865633,32.9036836],[-83.6866198,32.9037318],[-83.6866701,32.9037701]]},"id":"8b44c0a05c4bfff-13ffc418f5b21166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4ba9e-139ed3f738521637","8f44c0a05116c36-13d6a394e6c3411c"]},"geometry":{"type":"LineString","coordinates":[[-83.6866701,32.9037701],[-83.68674920000001,32.903822500000004],[-83.6868274,32.903865800000005]]},"id":"8a44c0a05c4ffff-13b7b3c6a1c95a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845c515-17d6fe0bc3428a58","8f44c0b1845e9aa-17d7fe947c121759"]},"geometry":{"type":"LineString","coordinates":[[-83.6628804,32.813934100000004],[-83.6626761,32.813929],[-83.6626617,32.8139391]]},"id":"8a44c0b1845ffff-17d7fe5102e03558"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66254860000001,32.813974200000004]},"id":"8f44c0b1845ed5a-17dffedb2ddd658b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845ed5a-17dffedb2ddd658b","8f44c0b1845e9aa-17d7fe947c121759"]},"geometry":{"type":"LineString","coordinates":[[-83.6626617,32.8139391],[-83.66261270000001,32.813973700000005],[-83.66254860000001,32.813974200000004]]},"id":"8b44c0b1845efff-17defeb607c03e39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624625,32.813974900000005]},"id":"8f44c0b1845ecae-17deff10fb1500ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845ed5a-17dffedb2ddd658b","8f44c0b1845ecae-17deff10fb1500ba"]},"geometry":{"type":"LineString","coordinates":[[-83.66254860000001,32.813974200000004],[-83.6624625,32.813974900000005]]},"id":"8c44c0b1845edff-17debef614a9d0e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6623687,32.8139756]},"id":"8f44c0b18453275-17deff4b967763ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18453275-17deff4b967763ca","8f44c0b1845ecae-17deff10fb1500ba"]},"geometry":{"type":"LineString","coordinates":[[-83.6624625,32.813974900000005],[-83.6623687,32.8139756]]},"id":"8a44c0b18457fff-17debf2e4c003b46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6622559,32.814203]},"id":"8f44c0b184edb81-17feff92176e1b0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18453275-17deff4b967763ca","8f44c0b184edb81-17feff92176e1b0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6623687,32.8139756],[-83.6622542,32.8139765],[-83.6622559,32.814203]]},"id":"8944c0b1847ffff-179eff86c4d6375a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ed32d-17b7bf91917c1a19","8f44c0b184edb81-17feff92176e1b0a"]},"geometry":{"type":"LineString","coordinates":[[-83.6622559,32.814203],[-83.6622567,32.814318400000005]]},"id":"8b44c0b184edfff-1796ff91d2f0da77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845eb6e-17bebe0fadca7dd3","8f44c0b1845e064-17d7fe94c7449ce0"]},"geometry":{"type":"LineString","coordinates":[[-83.6628742,32.8141193],[-83.6626983,32.814115900000004],[-83.6626612,32.814139700000005]]},"id":"8a44c0b1845ffff-17befe53fc84e7f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66254500000001,32.814202300000005]},"id":"8f44c0b1845e72d-17fefedd6bebbe8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845e72d-17fefedd6bebbe8f","8f44c0b1845e064-17d7fe94c7449ce0"]},"geometry":{"type":"LineString","coordinates":[[-83.6626612,32.814139700000005],[-83.66254500000001,32.814202300000005]]},"id":"8b44c0b1845efff-17defeb91e2ba07a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845e72d-17fefedd6bebbe8f","8f44c0b1845e648-17bfbed9cfd4d67f"]},"geometry":{"type":"LineString","coordinates":[[-83.66254500000001,32.814202300000005],[-83.6625508,32.8143291]]},"id":"8c44c0b1845e7ff-1796bedb9b6ee0c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624572,32.8142025]},"id":"8f44c0b1845e7a1-17febf144f35d888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845e72d-17fefedd6bebbe8f","8f44c0b1845e7a1-17febf144f35d888"]},"geometry":{"type":"LineString","coordinates":[[-83.66254500000001,32.814202300000005],[-83.6625181,32.8142024],[-83.6624572,32.8142025]]},"id":"8c44c0b1845e7ff-17febef8d041fbf1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66236760000001,32.8142027]},"id":"8f44c0b184edb75-17febf4c4ae40dae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184edb75-17febf4c4ae40dae","8f44c0b1845e7a1-17febf144f35d888"]},"geometry":{"type":"LineString","coordinates":[[-83.6624572,32.8142025],[-83.66236760000001,32.8142027]]},"id":"8b44c0b1845efff-17febf3046015add"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184edb75-17febf4c4ae40dae","8f44c0b184edb81-17feff92176e1b0a"]},"geometry":{"type":"LineString","coordinates":[[-83.66236760000001,32.8142027],[-83.6622559,32.814203]]},"id":"8c44c0b184edbff-17feff6f2cb1f71e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18451012-17bebe8cbfe1c409","8f44c0b18451a33-17bebe096b658e99"]},"geometry":{"type":"LineString","coordinates":[[-83.66288420000001,32.8136938],[-83.6626741,32.8136906]]},"id":"8b44c0b18451fff-17bfbe4b10852ae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6622093,32.8135415]},"id":"8f44c0b184506f2-17dfffaf3801d146"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18451012-17bebe8cbfe1c409","8f44c0b184506f2-17dfffaf3801d146"]},"geometry":{"type":"LineString","coordinates":[[-83.6626741,32.8136906],[-83.66221250000001,32.8136835],[-83.6622093,32.8135415]]},"id":"8a44c0b18457fff-179fff3f20e1896f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995e013-17d67efc2ccbd1bc","8f44c0b1995e981-17df7ec4f361b9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.69535210000001,32.820911100000004],[-83.6952638,32.8210949]]},"id":"8b44c0b1995efff-1796eee095008d90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995e013-17d67efc2ccbd1bc","8f44c0b1995c4e5-179ffe2a56d7624a"]},"geometry":{"type":"LineString","coordinates":[[-83.6952638,32.8210949],[-83.6955051,32.8211509],[-83.6955995,32.821007300000005]]},"id":"8a44c0b1995ffff-17d6ee85ce6a9571"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6879036,32.8220034]},"id":"8f44c0b198923a6-13fea0f44b0ff584"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875263,32.822035500000005]},"id":"8f44c0b19c61aa5-139eb1e01ea6f813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198923a6-13fea0f44b0ff584","8f44c0b19c61aa5-139eb1e01ea6f813"]},"geometry":{"type":"LineString","coordinates":[[-83.6879036,32.8220034],[-83.6875263,32.822035500000005]]},"id":"8844c0b19dfffff-1396b16a3e82e025"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c61018-1396a243769f76ce","8f44c0b19c61aa5-139eb1e01ea6f813"]},"geometry":{"type":"LineString","coordinates":[[-83.6875263,32.822035500000005],[-83.6873673,32.822049]]},"id":"8b44c0b19c61fff-1396f211cffc1915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878533,32.8213795]},"id":"8f44c0b19896c89-17f6b113b2126fd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19896c89-17f6b113b2126fd7","8f44c0b19c651a3-17d6f20527505926"]},"geometry":{"type":"LineString","coordinates":[[-83.6878533,32.8213795],[-83.6874556,32.821437800000005],[-83.68746700000001,32.8215343]]},"id":"8844c0b19dfffff-179fd1a78b357ab8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c651a3-17d6f20527505926","8f44c0b19c61aa5-139eb1e01ea6f813"]},"geometry":{"type":"LineString","coordinates":[[-83.68746700000001,32.8215343],[-83.6875263,32.822035500000005]]},"id":"8a44c0b19c67fff-13ff91f296f4ca7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68794000000001,32.821293000000004]},"id":"8f44c0b19896d0d-17bea0dd87ea070d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19896916-17b7b08b84b6ecd8","8f44c0b19896d0d-17bea0dd87ea070d"]},"geometry":{"type":"LineString","coordinates":[[-83.68794000000001,32.821293000000004],[-83.68807120000001,32.8212787]]},"id":"8944c0b198bffff-17b7b0b48715cb9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6879705,32.821629300000005]},"id":"8f44c0b1989674d-139ed0ca7beaa656"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19896916-17b7b08b84b6ecd8","8f44c0b1989674d-139ed0ca7beaa656"]},"geometry":{"type":"LineString","coordinates":[[-83.68807120000001,32.8212787],[-83.68823060000001,32.821262100000006],[-83.68829290000001,32.8215954],[-83.6879705,32.821629300000005]]},"id":"8a44c0b19897fff-17bee041e5873bc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32822caa-17b7eed8df640af4","8f44c0a3283119a-17bfbfded4cf7169"]},"geometry":{"type":"LineString","coordinates":[[-83.6166771,32.856921400000004],[-83.6165239,32.856931700000004],[-83.61638640000001,32.856926900000005],[-83.61625790000001,32.8571369]]},"id":"8944c0a3283ffff-17dfbf6fb4fe2f1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3283119a-17bfbfded4cf7169","8f44c0a32831ad0-17ff6f58582a770e"]},"geometry":{"type":"LineString","coordinates":[[-83.61625790000001,32.8571369],[-83.61647310000001,32.857239]]},"id":"8b44c0a32831fff-17dfaf9b99cc836b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61815990000001,32.8540974]},"id":"8f44c0a32920280-17d7eb3a1cbcbcf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a329211b0-179fba8fcccf547f","8f44c0a32920280-17d7eb3a1cbcbcf5"]},"geometry":{"type":"LineString","coordinates":[[-83.6184324,32.8541849],[-83.61815990000001,32.8540974]]},"id":"8a44c0a32927fff-17ff6ae4e2136db3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6180731,32.8542302]},"id":"8f44c0a329238ae-17b7eb705754be71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a329238ae-17b7eb705754be71","8f44c0a32920280-17d7eb3a1cbcbcf5"]},"geometry":{"type":"LineString","coordinates":[[-83.61815990000001,32.8540974],[-83.6180731,32.8542302]]},"id":"8a44c0a32927fff-17ff6b55367a4d74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6180399,32.854281]},"id":"8f44c0a32923122-17d7ab8519da3f52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923122-17d7ab8519da3f52","8f44c0a329238ae-17b7eb705754be71"]},"geometry":{"type":"LineString","coordinates":[[-83.6180731,32.8542302],[-83.6180399,32.854281]]},"id":"8b44c0a32923fff-17b7eb7ab0286f3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61799090000001,32.8543559]},"id":"8f44c0a32923010-17f77ba3b7c53718"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923122-17d7ab8519da3f52","8f44c0a32923010-17f77ba3b7c53718"]},"geometry":{"type":"LineString","coordinates":[[-83.6180399,32.854281],[-83.61799090000001,32.8543559]]},"id":"8c44c0a329231ff-17df3b946361b1de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6179525,32.854414600000005]},"id":"8f44c0a32923724-139f2bbbb5f9c4df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923010-17f77ba3b7c53718","8f44c0a32923724-139f2bbbb5f9c4df"]},"geometry":{"type":"LineString","coordinates":[[-83.61799090000001,32.8543559],[-83.6179525,32.854414600000005]]},"id":"8c44c0a329231ff-1397fbafb40a0bf3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923611-13df2bdf05404194","8f44c0a32923724-139f2bbbb5f9c4df"]},"geometry":{"type":"LineString","coordinates":[[-83.6179525,32.854414600000005],[-83.617896,32.854501]]},"id":"8b44c0a32923fff-13b72bcd6b66caae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6180918,32.8544055]},"id":"8f44c0a3292306e-13977b64aab381a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618138,32.854333100000005]},"id":"8f44c0a32923b91-17f73b47c4a088c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292306e-13977b64aab381a6","8f44c0a32923b91-17f73b47c4a088c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6180918,32.8544055],[-83.618138,32.854333100000005]]},"id":"8b44c0a32923fff-17fffb563b6f536a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6181739,32.8542768]},"id":"8f44c0a32923843-17d72b315094a724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923843-17d72b315094a724","8f44c0a32923b91-17f73b47c4a088c6"]},"geometry":{"type":"LineString","coordinates":[[-83.618138,32.854333100000005],[-83.6181739,32.8542768]]},"id":"8b44c0a32923fff-17d7ab3c9c50d778"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923843-17d72b315094a724","8f44c0a32920280-17d7eb3a1cbcbcf5"]},"geometry":{"type":"LineString","coordinates":[[-83.6181739,32.8542768],[-83.6182086,32.8542225],[-83.61815990000001,32.8540974]]},"id":"8a44c0a32927fff-179f2b297cb70261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32904b8c-13bfac5db9bc464a","8f44c0a329237aa-13b7bbe7b64dfcac"]},"geometry":{"type":"LineString","coordinates":[[-83.6178821,32.854455300000005],[-83.6176933,32.854450400000005]]},"id":"8944c0a3293ffff-13b73c22bd4befac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6174415,32.8546191]},"id":"8f44c0a3290460e-139ffcfb159bc952"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32904b8c-13bfac5db9bc464a","8f44c0a3290460e-139ffcfb159bc952"]},"geometry":{"type":"LineString","coordinates":[[-83.6176933,32.854450400000005],[-83.617447,32.854444],[-83.6174415,32.8546191]]},"id":"8b44c0a32904fff-13d77ccb61544426"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cadad-13fff0c00d53bd86","8f44c0b0e2cbd1e-17d6afd89b26ad5d"]},"geometry":{"type":"LineString","coordinates":[[-83.7211255,32.813527400000005],[-83.72112720000001,32.8134134],[-83.7207552,32.8132061]]},"id":"8a44c0b0e2cffff-13d7f03357c24f71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cadad-13fff0c00d53bd86","8f44c0b0e2dda8e-13dfb116890be388"]},"geometry":{"type":"LineString","coordinates":[[-83.7207552,32.8132061],[-83.7206168,32.813129]]},"id":"8944c0b0e2fffff-13f7f0eb456162e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7209004,32.812839100000005]},"id":"8f44c0b0e2cec08-139e70654bf83de4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cec08-139e70654bf83de4","8f44c0b0e2dda8e-13dfb116890be388"]},"geometry":{"type":"LineString","coordinates":[[-83.7206168,32.813129],[-83.72084000000001,32.812871200000004],[-83.7209004,32.812839100000005]]},"id":"8944c0b0e2fffff-13fff0c1fb1da342"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cec08-139e70654bf83de4","8f44c0b0e2ce123-13bff0247fe307fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7209004,32.812839100000005],[-83.7211486,32.812707200000006],[-83.72119550000001,32.812754600000005],[-83.7212367,32.8129458],[-83.7211894,32.813006300000005],[-83.7210041,32.8128991]]},"id":"8944c0b0e2fffff-13b6efddd49f0523"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cec08-139e70654bf83de4","8f44c0b0e2ce123-13bff0247fe307fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7210041,32.8128991],[-83.7209004,32.812839100000005]]},"id":"8b44c0b0e2cefff-13bf3044dad73932"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7207389,32.813525600000006]},"id":"8f44c0b0e2ca630-17d7b0ca39e98a9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a964d4c-17b7b0cf1f505c1e","8f44c0b0e2ca630-17d7b0ca39e98a9a"]},"geometry":{"type":"LineString","coordinates":[[-83.72073110000001,32.813679400000005],[-83.7207389,32.813525600000006]]},"id":"8944c0b0e2fffff-17f7b0cca0434c24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cadad-13fff0c00d53bd86","8f44c0b0e2ca630-17d7b0ca39e98a9a"]},"geometry":{"type":"LineString","coordinates":[[-83.7207389,32.813525600000006],[-83.7207552,32.8132061]]},"id":"8b44c0b0e2cafff-13f7b0c525ccf21c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2cbd1e-17d6afd89b26ad5d","8f44c0b0e2ca630-17d7b0ca39e98a9a"]},"geometry":{"type":"LineString","coordinates":[[-83.7211255,32.813527400000005],[-83.7207389,32.813525600000006]]},"id":"8a44c0b0e2cffff-17d6305164a65bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2ca630-17d7b0ca39e98a9a","8f44c0b0e2d9aa5-17d6f151d4cabc2b"]},"geometry":{"type":"LineString","coordinates":[[-83.7207389,32.813525600000006],[-83.72052190000001,32.8135246]]},"id":"8944c0b0e2fffff-17d7310e0d869761"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915237,32.8205097]},"id":"8f44c0b199892f0-17d6f81db4766487"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915359,32.8207691]},"id":"8f44c0b19816a01-17f6f8161aca3897"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199892f0-17d6f81db4766487","8f44c0b19816a01-17f6f8161aca3897"]},"geometry":{"type":"LineString","coordinates":[[-83.6915237,32.8205097],[-83.6915359,32.8207691]]},"id":"8a44c0b19817fff-17b7f819ea42bd8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810c8e-17f6780ed221519c","8f44c0b19816a01-17f6f8161aca3897"]},"geometry":{"type":"LineString","coordinates":[[-83.6915359,32.8207691],[-83.6915475,32.8209511]]},"id":"8a44c0b19817fff-17bff81276bc87eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810c8e-17f6780ed221519c","8f44c0b19810470-17b6780cf0976e3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6915475,32.8209511],[-83.6915505,32.821079000000005]]},"id":"8b44c0b19810fff-179e780de1caa419"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810470-17b6780cf0976e3d","8f44c0b19810028-17b6f7a02e61e1a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6915505,32.821079000000005],[-83.6917246,32.821072900000004]]},"id":"8b44c0b19810fff-17b6f7d69d94142a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.691812,32.821069800000004]},"id":"8f44c0b19810ab4-17b6f769883babf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810ab4-17b6f769883babf4","8f44c0b19810028-17b6f7a02e61e1a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6917246,32.821072900000004],[-83.691812,32.821069800000004]]},"id":"8b44c0b19810fff-17b7f784d63b1884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6902761,32.820826100000005]},"id":"8f44c0b198a0c1a-179e7b2970b3c2da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0c1a-179e7b2970b3c2da","8f44c0b198a6b06-17977b4cff4c5b6e"]},"geometry":{"type":"LineString","coordinates":[[-83.69021930000001,32.820584000000004],[-83.6902761,32.820826100000005]]},"id":"8a44c0b198a7fff-17defb3b33a039fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69033830000001,32.8208167]},"id":"8f44c0b198a0c74-17967b02983551ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0c1a-179e7b2970b3c2da","8f44c0b198a0c74-17967b02983551ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6902761,32.820826100000005],[-83.69033830000001,32.8208167]]},"id":"8c44c0b198a0dff-17977b1600d9e539"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6905215,32.8207891]},"id":"8f44c0b198a0909-17977a901956c128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0c74-17967b02983551ed","8f44c0b198a0909-17977a901956c128"]},"geometry":{"type":"LineString","coordinates":[[-83.69033830000001,32.8208167],[-83.6905215,32.8207891]]},"id":"8b44c0b198a0fff-179ffac9522f390b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6906163,32.8207748]},"id":"8f44c0b198a55b1-17fe7a54d3087697"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a55b1-17fe7a54d3087697","8f44c0b198a0909-17977a901956c128"]},"geometry":{"type":"LineString","coordinates":[[-83.6905215,32.8207891],[-83.6906163,32.8207748]]},"id":"8a44c0b198a7fff-17fefa727abf001e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a55b1-17fe7a54d3087697","8f44c0b198a4ab0-17f6fa585a0efe13"]},"geometry":{"type":"LineString","coordinates":[[-83.6906163,32.8207748],[-83.6906491,32.8207699],[-83.69061070000001,32.8205387]]},"id":"8a44c0b198a7fff-17b67a4c2a482c07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6903846,32.8210205]},"id":"8f44c0b198a00ee-1797fae5ab1f900a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0c1a-179e7b2970b3c2da","8f44c0b198a00ee-1797fae5ab1f900a"]},"geometry":{"type":"LineString","coordinates":[[-83.6902761,32.820826100000005],[-83.690252,32.8208919],[-83.6902821,32.8210351],[-83.6903846,32.8210205]]},"id":"8b44c0b198a0fff-17fefb222a42568b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69056420000001,32.8209949]},"id":"8f44c0b198a0a1d-1797fa7561dd4a1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0a1d-1797fa7561dd4a1b","8f44c0b198a00ee-1797fae5ab1f900a"]},"geometry":{"type":"LineString","coordinates":[[-83.6903846,32.8210205],[-83.69056420000001,32.8209949]]},"id":"8b44c0b198a0fff-179ffaad8e73163e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0a1d-1797fa7561dd4a1b","8f44c0b198a55b1-17fe7a54d3087697"]},"geometry":{"type":"LineString","coordinates":[[-83.69056420000001,32.8209949],[-83.69065850000001,32.8209814],[-83.6906163,32.8207748]]},"id":"8a44c0b198a7fff-17de7a4cb7e5c1fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6912638,32.8210749]},"id":"8f44c0b19812888-17b7f8c0280ae1e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19812888-17b7f8c0280ae1e1","8f44c0b19812c4a-17d7f8eccf4ae234"]},"geometry":{"type":"LineString","coordinates":[[-83.6912638,32.8210749],[-83.6911924,32.8210968]]},"id":"8b44c0b19812fff-17bef8d6740e63fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69196360000001,32.8207633]},"id":"8f44c0b19814373-17f7770acd009274"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19814373-17f7770acd009274","8f44c0b19814631-17f777a7954e4a8f"]},"geometry":{"type":"LineString","coordinates":[[-83.69196360000001,32.8207633],[-83.69171270000001,32.8207667]]},"id":"8b44c0b19814fff-17f6775927419c00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19814631-17f777a7954e4a8f","8f44c0b19816a01-17f6f8161aca3897"]},"geometry":{"type":"LineString","coordinates":[[-83.69171270000001,32.8207667],[-83.6915359,32.8207691]]},"id":"8a44c0b19817fff-17f7f7dedb515a98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68593560000001,32.821901100000005]},"id":"8f44c0b19c7155d-13beb5c247da9329"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c7154e-13b695bcd00ccf48","8f44c0b19c7155d-13beb5c247da9329"]},"geometry":{"type":"LineString","coordinates":[[-83.6859443,32.8218977],[-83.68593560000001,32.821901100000005]]},"id":"8d44c0b19c7157f-13b7a5bf9fd60d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68585390000001,32.821933]},"id":"8f44c0b19c714f5-13dea5f550b4031e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c714f5-13dea5f550b4031e","8f44c0b19c7155d-13beb5c247da9329"]},"geometry":{"type":"LineString","coordinates":[[-83.68593560000001,32.821901100000005],[-83.68585390000001,32.821933]]},"id":"8c44c0b19c715ff-13d6b5dbc0d8fc5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6858364,32.822117500000004]},"id":"8f44c0b19c46d16-13bff6004fe3a588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c714f5-13dea5f550b4031e","8f44c0b19c46d16-13bff6004fe3a588"]},"geometry":{"type":"LineString","coordinates":[[-83.68585390000001,32.821933],[-83.6857545,32.8219717],[-83.6858364,32.822117500000004]]},"id":"8a44c0b19c77fff-13fff617b6f49376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68593890000001,32.822077]},"id":"8f44c0b19c7161a-13b6a5c03564b25b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c46d16-13bff6004fe3a588","8f44c0b19c7161a-13b6a5c03564b25b"]},"geometry":{"type":"LineString","coordinates":[[-83.6858364,32.822117500000004],[-83.68593890000001,32.822077]]},"id":"8a44c0b19c77fff-13b6d5e03892eb21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68602030000001,32.8220449]},"id":"8f44c0b19c7175c-1396958d51588633"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c7175c-1396958d51588633","8f44c0b19c7161a-13b6a5c03564b25b"]},"geometry":{"type":"LineString","coordinates":[[-83.68593890000001,32.822077],[-83.68602030000001,32.8220449]]},"id":"8c44c0b19c717ff-139ea5a6c3358dc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68610430000001,32.822011700000004]},"id":"8f44c0b19c71384-13ffd558dbdd34a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71384-13ffd558dbdd34a0","8f44c0b19c7175c-1396958d51588633"]},"geometry":{"type":"LineString","coordinates":[[-83.68602030000001,32.8220449],[-83.68610430000001,32.822011700000004]]},"id":"8b44c0b19c71fff-1397b5731696ff87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6861851,32.8219797]},"id":"8f44c0b19c71324-13ffd52650806b96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71324-13ffd52650806b96","8f44c0b19c71384-13ffd558dbdd34a0"]},"geometry":{"type":"LineString","coordinates":[[-83.68610430000001,32.822011700000004],[-83.6861851,32.8219797]]},"id":"8b44c0b19c71fff-13f7d53f970c4741"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68626950000001,32.8219464]},"id":"8f44c0b19c71a0c-13d684f198bf0baf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71a0c-13d684f198bf0baf","8f44c0b19c71324-13ffd52650806b96"]},"geometry":{"type":"LineString","coordinates":[[-83.6861851,32.8219797],[-83.68626950000001,32.8219464]]},"id":"8c44c0b19c71bff-13def50bf355964b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6862864,32.8219397]},"id":"8f44c0b19c71a29-13d6d4e70d2c944a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71a0c-13d684f198bf0baf","8f44c0b19c71a29-13d6d4e70d2c944a"]},"geometry":{"type":"LineString","coordinates":[[-83.68626950000001,32.8219464],[-83.6862864,32.8219397]]},"id":"8d44c0b19c71a3f-13d6f4ec579d783f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68634540000001,32.8219165]},"id":"8f44c0b19c71b68-13d7d4c229f57082"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71b68-13d7d4c229f57082","8f44c0b19c71a29-13d6d4e70d2c944a"]},"geometry":{"type":"LineString","coordinates":[[-83.6862864,32.8219397],[-83.68634540000001,32.8219165]]},"id":"8c44c0b19c71bff-13df94d4965ddd91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71b68-13d7d4c229f57082","8f44c0b19c6251e-13d6a4c1be7a2b64"]},"geometry":{"type":"LineString","coordinates":[[-83.68634540000001,32.8219165],[-83.68642410000001,32.821885300000005],[-83.68634610000001,32.821741]]},"id":"8b44c0b19c62fff-1397e4a96f13aec7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6863857,32.822235]},"id":"8f44c0b19c44012-139ee4a8f22caf7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71a29-13d6d4e70d2c944a","8f44c0b19c44012-139ee4a8f22caf7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6863857,32.822235],[-83.6864079,32.8222016],[-83.6864055,32.8221712],[-83.68638580000001,32.8221183],[-83.6862864,32.8219397]]},"id":"8944c0b19c7ffff-13bfd4b8f56db848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5828b-1397ffeefa054caf","8f44c0a36b587ae-13dfb053196c03f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6291791,32.8446634],[-83.62928980000001,32.844750000000005],[-83.62933930000001,32.8447759]]},"id":"8b44c0a36b58fff-13ffb02243808f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62943270000001,32.844819]},"id":"8f44c0a36b595b5-13bfefb49ec6c261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5828b-1397ffeefa054caf","8f44c0a36b595b5-13bfefb49ec6c261"]},"geometry":{"type":"LineString","coordinates":[[-83.62933930000001,32.8447759],[-83.62943270000001,32.844819]]},"id":"8a44c0a36b5ffff-139f6fd1cbce3f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b595b5-13bfefb49ec6c261","8f44c0a36b59509-13d71f7dc96bedf9"]},"geometry":{"type":"LineString","coordinates":[[-83.62943270000001,32.844819],[-83.6295204,32.8448593]]},"id":"8c44c0a36b595ff-13bf7f9922658388"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6296183,32.844901300000004]},"id":"8f44c0a36b590a0-13df5f40971c8486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b590a0-13df5f40971c8486","8f44c0a36b59509-13d71f7dc96bedf9"]},"geometry":{"type":"LineString","coordinates":[[-83.6295204,32.8448593],[-83.6296183,32.844901300000004]]},"id":"8b44c0a36b59fff-13d73f5f31a7701b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b58b23-17f7bf75d7d12b57","8f44c0a36b58812-17bfcfd5806a266d"]},"geometry":{"type":"LineString","coordinates":[[-83.62938000000001,32.8444396],[-83.6295331,32.8445211]]},"id":"8b44c0a36b58fff-17df4fa5a7714a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6296193,32.844567000000005]},"id":"8f44c0a36b5d791-139f6f3ff3034ca2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b58b23-17f7bf75d7d12b57","8f44c0a36b5d791-139f6f3ff3034ca2"]},"geometry":{"type":"LineString","coordinates":[[-83.6295331,32.8445211],[-83.6296193,32.844567000000005]]},"id":"8a44c0a36b5ffff-13971f5ae9aafdd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5d62a-13bf1f06573e0814","8f44c0a36b5d791-139f6f3ff3034ca2"]},"geometry":{"type":"LineString","coordinates":[[-83.6296193,32.844567000000005],[-83.6297115,32.8446161]]},"id":"8c44c0a36b5d7ff-139fcf232a794c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298086,32.8446678]},"id":"8f44c0a36b5d28a-13df6ec9a1db3aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b5d28a-13df6ec9a1db3aa6","8f44c0a36b5d62a-13bf1f06573e0814"]},"geometry":{"type":"LineString","coordinates":[[-83.6297115,32.8446161],[-83.6298086,32.8446678]]},"id":"8b44c0a36b5dfff-13bf4ee8082001df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1ad9b0-17b7e6bd8f082c3b","8f44c0b1a1add96-17b7e73d4e933e47"]},"geometry":{"type":"LineString","coordinates":[[-83.646212,32.814703],[-83.6460076,32.8146998]]},"id":"8a44c0b1a1affff-17b6e6fd62b764f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64602160000001,32.814278800000004]},"id":"8f44c0b1a112235-179ee73484a7e7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1add96-17b7e73d4e933e47","8f44c0b1a112235-179ee73484a7e7a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6460076,32.8146998],[-83.6460248,32.814339700000005],[-83.6460237,32.8143027],[-83.64602160000001,32.814278800000004]]},"id":"8844c0b1a1fffff-179ff73731360cc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1a1aac-179ff836a841a589","8f44c0b1a112235-179ee73484a7e7a0"]},"geometry":{"type":"LineString","coordinates":[[-83.64602160000001,32.814278800000004],[-83.64602090000001,32.8142707],[-83.64601660000001,32.814244800000004],[-83.6460036,32.814207700000004],[-83.6459476,32.8141793],[-83.6458753,32.8141624],[-83.6457956,32.8141553],[-83.6457314,32.814155500000005],[-83.64568290000001,32.814174200000004],[-83.6456625,32.8141936],[-83.6456337,32.8142281],[-83.645612,32.8142593],[-83.6456086,32.8142815]]},"id":"8844c0b1a1fffff-17f6e7b434befba7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6751186,32.7876925]},"id":"8f44c0b1c1125b1-17b7f02aea7efad9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1125b1-17b7f02aea7efad9","8f44c0b1c1a0b25-17b6f10bc963d68a"]},"geometry":{"type":"LineString","coordinates":[[-83.6747588,32.7874885],[-83.6751186,32.7876925]]},"id":"8a44c0b1c1a7fff-17f6b09b57182091"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753233,32.7876683]},"id":"8f44c0b1c112c42-17b6bfaaf91c4458"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1125b1-17b7f02aea7efad9","8f44c0b1c112c42-17b6bfaaf91c4458"]},"geometry":{"type":"LineString","coordinates":[[-83.6751186,32.7876925],[-83.67525230000001,32.7877431],[-83.67528320000001,32.7877401],[-83.6753233,32.7876683]]},"id":"8b44c0b1c112fff-17d6bfe349dc9013"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753656,32.7875926]},"id":"8f44c0b1c112d63-17f7ff908b6b3905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c112d63-17f7ff908b6b3905","8f44c0b1c112c42-17b6bfaaf91c4458"]},"geometry":{"type":"LineString","coordinates":[[-83.6753233,32.7876683],[-83.6753656,32.7875926]]},"id":"8c44c0b1c112dff-179f9f9db5012030"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6754083,32.7875164]},"id":"8f44c0b1c116654-17d7df75dbd658d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c116654-17d7df75dbd658d0","8f44c0b1c112d63-17f7ff908b6b3905"]},"geometry":{"type":"LineString","coordinates":[[-83.6753656,32.7875926],[-83.6754083,32.7875164]]},"id":"8a44c0b1c117fff-17df9f8334ef17f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675455,32.7874329]},"id":"8f44c0b1c1160db-17979f58a0c4600e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1160db-17979f58a0c4600e","8f44c0b1c116654-17d7df75dbd658d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6754083,32.7875164],[-83.675455,32.7874329]]},"id":"8c44c0b1c1167ff-17bfbf673ea25b04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67543810000001,32.787208500000006]},"id":"8f44c0b1c116c70-1797df633690776f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c116c70-1797df633690776f","8f44c0b1c1160db-17979f58a0c4600e"]},"geometry":{"type":"LineString","coordinates":[[-83.675455,32.7874329],[-83.6754993,32.787353800000005],[-83.67543810000001,32.787208500000006]]},"id":"8b44c0b1c116fff-17dedf4e286469b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc4b14d-139f9fe9b464349d","8f44c0b1c116c70-1797df633690776f"]},"geometry":{"type":"LineString","coordinates":[[-83.67543810000001,32.787208500000006],[-83.6753518,32.787117200000004],[-83.67522290000001,32.7870201]]},"id":"8844c0b1c1fffff-13d7bfa40f2b0f5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6751691,32.7876071]},"id":"8f44c0b1c1a5348-17fef00b523bc261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1125b1-17b7f02aea7efad9","8f44c0b1c1a5348-17fef00b523bc261"]},"geometry":{"type":"LineString","coordinates":[[-83.6751186,32.7876925],[-83.6751691,32.7876071]]},"id":"8a44c0b1c1a7fff-179fa01b18507268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675212,32.7875322]},"id":"8f44c0b1c1a5ae9-17dfbff08bfd3a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1a5ae9-17dfbff08bfd3a7a","8f44c0b1c1a5348-17fef00b523bc261"]},"geometry":{"type":"LineString","coordinates":[[-83.6751691,32.7876071],[-83.675212,32.7875322]]},"id":"8b44c0b1c1a5fff-17f79ffdfa41d923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6752563,32.7874551]},"id":"8f44c0b1c1a5b5c-179fffd4de896cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1a5b5c-179fffd4de896cad","8f44c0b1c1a5ae9-17dfbff08bfd3a7a"]},"geometry":{"type":"LineString","coordinates":[[-83.675212,32.7875322],[-83.6752563,32.7874551]]},"id":"8c44c0b1c1a5bff-17b79fe2b15a6d4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753039,32.787372000000005]},"id":"8f44c0b1c1164e1-17ff9fb7152fff58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1164e1-17ff9fb7152fff58","8f44c0b1c1a5b5c-179fffd4de896cad"]},"geometry":{"type":"LineString","coordinates":[[-83.6752563,32.7874551],[-83.6753039,32.787372000000005]]},"id":"8a44c0b1c117fff-17979fc5ff4542a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1164e1-17ff9fb7152fff58","8f44c0b1c116c70-1797df633690776f"]},"geometry":{"type":"LineString","coordinates":[[-83.6753039,32.787372000000005],[-83.6753456,32.7872994],[-83.67543810000001,32.787208500000006]]},"id":"8b44c0b1c116fff-17b7df90932f96b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62340760000001,32.848392700000005]},"id":"8f44c0a3632aa9b-13f77e6a4c011907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632a81c-13ff5e6c72498151","8f44c0a3632aa9b-13f77e6a4c011907"]},"geometry":{"type":"LineString","coordinates":[[-83.6234041,32.8482021],[-83.62340760000001,32.848392700000005]]},"id":"8b44c0a3632afff-13bffe6b57dcaffd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6233943,32.848767200000005]},"id":"8f44c0a3630ca21-13df9e729e75af35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632aa9b-13f77e6a4c011907","8f44c0a3630ca21-13df9e729e75af35"]},"geometry":{"type":"LineString","coordinates":[[-83.62340760000001,32.848392700000005],[-83.6233943,32.848767200000005]]},"id":"8944c0a3633ffff-13df7e6e783b29cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62451150000001,32.8486576]},"id":"8f44c0a36ada6c1-139f1bb8570078b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ada22e-13f7fb30a8ec1e86","8f44c0a36ada6c1-139f1bb8570078b5"]},"geometry":{"type":"LineString","coordinates":[[-83.62472860000001,32.8486015],[-83.62451150000001,32.8486576]]},"id":"8a44c0a36adffff-13ff9b74865be245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ada6c1-139f1bb8570078b5","8f44c0a36329c06-13f71cd56380881a"]},"geometry":{"type":"LineString","coordinates":[[-83.62451150000001,32.8486576],[-83.6244051,32.848401200000005],[-83.6243894,32.8483874],[-83.62435500000001,32.8483785],[-83.6240554,32.8483889]]},"id":"8844c0a363fffff-1397fc28bb9f14b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363282a3-13f7dd6aa4bf8dd0","8f44c0a36329c06-13f71cd56380881a"]},"geometry":{"type":"LineString","coordinates":[[-83.6240554,32.8483889],[-83.62381660000001,32.8483869]]},"id":"8a44c0a3632ffff-13f77d200545ac42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363282a3-13f7dd6aa4bf8dd0","8f44c0a3632869e-13f7ddf29293f8a2"]},"geometry":{"type":"LineString","coordinates":[[-83.62381660000001,32.8483869],[-83.6235991,32.84839]]},"id":"8b44c0a36328fff-13f7ddae91251bc4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632869e-13f7ddf29293f8a2","8f44c0a3632aa9b-13f77e6a4c011907"]},"geometry":{"type":"LineString","coordinates":[[-83.6235991,32.84839],[-83.62340760000001,32.848392700000005]]},"id":"8a44c0a3632ffff-13f79e2e62d8c922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6231997,32.8483959]},"id":"8f44c0a3632a714-13f77eec3344167c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632aa9b-13f77e6a4c011907","8f44c0a3632a714-13f77eec3344167c"]},"geometry":{"type":"LineString","coordinates":[[-83.62340760000001,32.848392700000005],[-83.6231997,32.8483959]]},"id":"8b44c0a3632afff-13f77eab4aaf25c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62306570000001,32.849144700000004]},"id":"8f44c0a3630811e-13bf7f3ffdc7cf40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3630811e-13bf7f3ffdc7cf40","8f44c0a3632a714-13f77eec3344167c"]},"geometry":{"type":"LineString","coordinates":[[-83.6231997,32.8483959],[-83.6229359,32.848399900000004],[-83.6229124,32.8484082],[-83.62289390000001,32.8484272],[-83.6228945,32.8489645],[-83.62306570000001,32.849144700000004]]},"id":"8944c0a3633ffff-13b79f84744746cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632b085-13971def8c5d9ffb","8f44c0a3630ca21-13df9e729e75af35"]},"geometry":{"type":"LineString","coordinates":[[-83.6233943,32.848767200000005],[-83.623604,32.848670500000004]]},"id":"8944c0a3633ffff-13b75e311a6ea27d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3632b843-13d73d6915cb44cb","8f44c0a3632b085-13971def8c5d9ffb"]},"geometry":{"type":"LineString","coordinates":[[-83.623604,32.848670500000004],[-83.6238191,32.848571400000004]]},"id":"8b44c0a3632bfff-13f73dac54362a30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6240683,32.8484484]},"id":"8f44c0a36329ce1-139f5ccd5c422429"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36329ce1-139f5ccd5c422429","8f44c0a3632b843-13d73d6915cb44cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6238191,32.848571400000004],[-83.6240683,32.8484484]]},"id":"8a44c0a3632ffff-13bfbd1b3b122021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36329ce1-139f5ccd5c422429","8f44c0a36329c06-13f71cd56380881a"]},"geometry":{"type":"LineString","coordinates":[[-83.6240554,32.8483889],[-83.6240683,32.8484484]]},"id":"8c44c0a36329dff-13f7bcd16c0648b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36329ce1-139f5ccd5c422429","8f44c0a36ada6c1-139f1bb8570078b5"]},"geometry":{"type":"LineString","coordinates":[[-83.6240683,32.8484484],[-83.6243728,32.848924100000005],[-83.6244061,32.8489458],[-83.6244327,32.8489506],[-83.62458050000001,32.8489002],[-83.62459340000001,32.8488865],[-83.62460060000001,32.8488674],[-83.62451150000001,32.8486576]]},"id":"8844c0a363fffff-13df1c169d3b2678"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36add553-13f739761292d541","8f44c0a36add7a3-13b7b96e418f6c83"]},"geometry":{"type":"LineString","coordinates":[[-83.62543670000001,32.848211400000004],[-83.6254492,32.8483163]]},"id":"8b44c0a36addfff-1397f97226e09f04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36add7a3-13b7b96e418f6c83","8f44c0a36ad9bb0-13f759165bacc2fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6254492,32.8483163],[-83.62558990000001,32.8486196]]},"id":"8a44c0a36adffff-139779424855b907"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36ad9a76-13b778db7086352f","8f44c0a36ad9bb0-13f759165bacc2fb"]},"geometry":{"type":"LineString","coordinates":[[-83.62558990000001,32.8486196],[-83.6256841,32.8487014]]},"id":"8c44c0a36ad9bff-139fd8f8e10d965e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a363092f5-179ffe336f6a18a3","8f44c0a3630bb2d-17df7ef212d71763"]},"geometry":{"type":"LineString","coordinates":[[-83.62349540000001,32.8497119],[-83.6233682,32.849482800000004],[-83.62329290000001,32.849496200000004],[-83.6231903,32.8495847]]},"id":"8b44c0a36309fff-17d75e8759d5578f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36356d63-17d7feae66b1676b","8f44c0a3630bb2d-17df7ef212d71763"]},"geometry":{"type":"LineString","coordinates":[[-83.6231903,32.8495847],[-83.6232986,32.849775900000004]]},"id":"8844c0a363fffff-179f3ed04b069203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456737,32.8557453]},"id":"8f44c0a35499201-13def80df8f32f5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499365-13bee7dad788fb40","8f44c0a35499201-13def80df8f32f5a"]},"geometry":{"type":"LineString","coordinates":[[-83.6457555,32.8557038],[-83.6456737,32.8557453]]},"id":"8c44c0a354993ff-13dfe7f4662337b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645556,32.8559034]},"id":"8f44c0a30b2680a-13bfe8578e9f9c96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499201-13def80df8f32f5a","8f44c0a30b2680a-13bfe8578e9f9c96"]},"geometry":{"type":"LineString","coordinates":[[-83.6456737,32.8557453],[-83.6455021,32.8558323],[-83.645556,32.8559034]]},"id":"8a44c0a30b27fff-1397e84f3c2d9133"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456048,32.8559676]},"id":"8f44c0a30b26ba0-13f7e8390fef5d1e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b2680a-13bfe8578e9f9c96","8f44c0a30b26ba0-13f7e8390fef5d1e"]},"geometry":{"type":"LineString","coordinates":[[-83.645556,32.8559034],[-83.6456048,32.8559676]]},"id":"8b44c0a30b26fff-13dff84842e0ed0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456618,32.856042800000004]},"id":"8f44c0a30b26a2a-1796e8156e790cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b26a2a-1796e8156e790cbd","8f44c0a30b26ba0-13f7e8390fef5d1e"]},"geometry":{"type":"LineString","coordinates":[[-83.6456048,32.8559676],[-83.6456618,32.856042800000004]]},"id":"8c44c0a30b26bff-13ffe827394eb549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b26a72-179fe80b863ed1cd","8f44c0a30b26a2a-1796e8156e790cbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6456618,32.856042800000004],[-83.6456776,32.8560638]]},"id":"8c44c0a30b26bff-179ff8107e7186d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64582100000001,32.8562527]},"id":"8f44c0a30b20134-1797f7b1e9965b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b26a72-179fe80b863ed1cd","8f44c0a30b20134-1797f7b1e9965b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6456776,32.8560638],[-83.64582100000001,32.8562527]]},"id":"8a44c0a30b27fff-17def7deb346542f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b20134-1797f7b1e9965b6b","8f44c0a30b22a59-17dee851ecdb853d"]},"geometry":{"type":"LineString","coordinates":[[-83.64582100000001,32.8562527],[-83.6456837,32.856475800000005],[-83.645565,32.856538]]},"id":"8a44c0a30b27fff-17fff7f7e2865697"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6459222,32.856070200000005]},"id":"8f44c0a30b24749-17b7e772a327c0ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b24749-17b7e772a327c0ef","8f44c0a30b20134-1797f7b1e9965b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.64582100000001,32.8562527],[-83.6459222,32.856070200000005]]},"id":"8a44c0a30b27fff-17def7924c18c7ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6458326,32.8559531]},"id":"8f44c0a30b24469-13def7aaa1ef7b81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b24749-17b7e772a327c0ef","8f44c0a30b24469-13def7aaa1ef7b81"]},"geometry":{"type":"LineString","coordinates":[[-83.6459222,32.856070200000005],[-83.6458326,32.8559531]]},"id":"8b44c0a30b24fff-13fff78eaca68a34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645779,32.855883]},"id":"8f44c0a30b24552-13bee7cc2c8ecd38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b24469-13def7aaa1ef7b81","8f44c0a30b24552-13bee7cc2c8ecd38"]},"geometry":{"type":"LineString","coordinates":[[-83.6458326,32.8559531],[-83.645779,32.855883]]},"id":"8c44c0a30b245ff-13d6f7bb6c652935"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64572770000001,32.8558159]},"id":"8f44c0a35499249-1396f7ec39c301fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499249-1396f7ec39c301fd","8f44c0a30b24552-13bee7cc2c8ecd38"]},"geometry":{"type":"LineString","coordinates":[[-83.645779,32.855883],[-83.64572770000001,32.8558159]]},"id":"8c44c0a30b245ff-139ff7dc2c8430b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499201-13def80df8f32f5a","8f44c0a35499249-1396f7ec39c301fd"]},"geometry":{"type":"LineString","coordinates":[[-83.64572770000001,32.8558159],[-83.6456737,32.8557453]]},"id":"8a44c0a30b27fff-13fee7fd1b4a05aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6448141,32.8551385]},"id":"8f44c0a3549e64e-13dffa273620cace"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549e64e-13dffa273620cace","8f44c0a3549e61b-13defa53bff446b7"]},"geometry":{"type":"LineString","coordinates":[[-83.64474290000001,32.8551043],[-83.6448141,32.8551385]]},"id":"8c44c0a3549e7ff-13d6ea3d7a976aab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549e64e-13dffa273620cace","8f44c0a3549b849-1397f90bb91e0f28"]},"geometry":{"type":"LineString","coordinates":[[-83.6448141,32.8551385],[-83.64491360000001,32.8551865],[-83.6452677,32.8556317]]},"id":"8a44c0a3549ffff-13ffe991693199a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549e64e-13dffa273620cace","8f44c0a3549c6f4-1396f9322523d7ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6448141,32.8551385],[-83.6452062,32.8549965]]},"id":"8a44c0a3549ffff-13b7f9acb6c45c2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.645511,32.854891]},"id":"8f44c0a3549cae2-13d6e873a3bf4fe5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549cae2-13d6e873a3bf4fe5","8f44c0a3549c6f4-1396f9322523d7ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6452062,32.8549965],[-83.645511,32.854891]]},"id":"8b44c0a3549cfff-13f7e8d2e58e9a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6451583,32.854707000000005]},"id":"8f44c0a3549cc9a-13dfe95014b503cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549cae2-13d6e873a3bf4fe5","8f44c0a3549cc9a-13dfe95014b503cd"]},"geometry":{"type":"LineString","coordinates":[[-83.6451583,32.854707000000005],[-83.645511,32.854891]]},"id":"8b44c0a3549cfff-139fe8e1e051f68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64556180000001,32.8549257]},"id":"8f44c0a3549ddb5-13def853efc90893"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549cae2-13d6e873a3bf4fe5","8f44c0a3549ddb5-13def853efc90893"]},"geometry":{"type":"LineString","coordinates":[[-83.645511,32.854891],[-83.64556180000001,32.8549257]]},"id":"8c44c0a3549cbff-13dfe863cadd6716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61339050000001,32.863557300000004]},"id":"8f44c0a32156a01-17ff76defe1e335c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32156148-17dfb724930d1d4e","8f44c0a32156a01-17ff76defe1e335c"]},"geometry":{"type":"LineString","coordinates":[[-83.6132791,32.863538600000005],[-83.61339050000001,32.863557300000004]]},"id":"8b44c0a32156fff-17f7b701c1de5f23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32156a01-17ff76defe1e335c","8f44c0a32154605-17ff36645aa70f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.61339050000001,32.863557300000004],[-83.61358010000001,32.8635891],[-83.6135867,32.863561600000004]]},"id":"8a44c0a32157fff-17f7769bd1d8e006"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61367870000001,32.8631423]},"id":"8f44c0a3217261c-17f7f62ad0625424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61351060000001,32.863114700000004]},"id":"8f44c0a32109a00-17d7b693ec113700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32109a00-17d7b693ec113700","8f44c0a3217261c-17f7f62ad0625424"]},"geometry":{"type":"LineString","coordinates":[[-83.61367870000001,32.8631423],[-83.61351060000001,32.863114700000004]]},"id":"8944c0a3217ffff-17df765f538b2c4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32109a00-17d7b693ec113700","8f44c0a3210916b-17df36d424d84e8f"]},"geometry":{"type":"LineString","coordinates":[[-83.61351060000001,32.863114700000004],[-83.6134078,32.8630979]]},"id":"8b44c0a32109fff-17d776b4046a85c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61359660000001,32.8635157]},"id":"8f44c0a3215470e-17d7765e2d54e524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3215470e-17d7765e2d54e524","8f44c0a32154605-17ff36645aa70f6e"]},"geometry":{"type":"LineString","coordinates":[[-83.6135867,32.863561600000004],[-83.61359660000001,32.8635157]]},"id":"8c44c0a321547ff-17dfb66140dcae9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6136127,32.8634408]},"id":"8f44c0a32154080-17b7b654140881e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154080-17b7b654140881e5","8f44c0a3215470e-17d7765e2d54e524"]},"geometry":{"type":"LineString","coordinates":[[-83.61359660000001,32.8635157],[-83.6136127,32.8634408]]},"id":"8b44c0a32154fff-17bff6591ab837e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61362650000001,32.863376200000005]},"id":"8f44c0a32154180-17ff364b7692490f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154080-17b7b654140881e5","8f44c0a32154180-17ff364b7692490f"]},"geometry":{"type":"LineString","coordinates":[[-83.6136127,32.8634408],[-83.61362650000001,32.863376200000005]]},"id":"8c44c0a321541ff-179f764fce69671c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6136426,32.8633013]},"id":"8f44c0a32154c71-17df764160758397"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154180-17ff364b7692490f","8f44c0a32154c71-17df764160758397"]},"geometry":{"type":"LineString","coordinates":[[-83.61362650000001,32.863376200000005],[-83.6136426,32.8633013]]},"id":"8b44c0a32154fff-17f7f64677332cf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6136575,32.8632319]},"id":"8f44c0a32154d75-179ff6381f912ac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154d75-179ff6381f912ac1","8f44c0a32154c71-17df764160758397"]},"geometry":{"type":"LineString","coordinates":[[-83.6136426,32.8633013],[-83.6136575,32.8632319]]},"id":"8c44c0a32154dff-17b7b63cc213df10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154d75-179ff6381f912ac1","8f44c0a321726c6-1797f63205104fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6136575,32.8632319],[-83.61366720000001,32.8631868]]},"id":"8944c0a3217ffff-1797f63518e66194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3217261c-17f7f62ad0625424","8f44c0a321726c6-1797f63205104fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.61366720000001,32.8631868],[-83.61367870000001,32.8631423]]},"id":"8c44c0a321727ff-17f7f62e6d521950"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3217209a-179ff6183f7d7ccd","8f44c0a3217261c-17f7f62ad0625424"]},"geometry":{"type":"LineString","coordinates":[[-83.61367870000001,32.8631423],[-83.6137085,32.8630269]]},"id":"8b44c0a32172fff-17d7f6218f97027f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134104,32.863483800000004]},"id":"8f44c0a32156b05-17bf76d28e8f0267"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32156a01-17ff76defe1e335c","8f44c0a32156b05-17bf76d28e8f0267"]},"geometry":{"type":"LineString","coordinates":[[-83.61339050000001,32.863557300000004],[-83.6134104,32.863483800000004]]},"id":"8c44c0a32156bff-17d776d8c4156dbf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61343070000001,32.8634089]},"id":"8f44c0a321544a3-179fb6c5d196833c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321544a3-179fb6c5d196833c","8f44c0a32156b05-17bf76d28e8f0267"]},"geometry":{"type":"LineString","coordinates":[[-83.6134104,32.863483800000004],[-83.61343070000001,32.8634089]]},"id":"8a44c0a32157fff-17b736cc32c920f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61344820000001,32.8633447]},"id":"8f44c0a321545a0-17f776bae1a6df2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321544a3-179fb6c5d196833c","8f44c0a321545a0-17f776bae1a6df2c"]},"geometry":{"type":"LineString","coordinates":[[-83.61343070000001,32.8634089],[-83.61344820000001,32.8633447]]},"id":"8c44c0a321545ff-17ffb6c051affdae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6134681,32.8632713]},"id":"8f44c0a32109264-17bfb6ae7a0adca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a321545a0-17f776bae1a6df2c","8f44c0a32109264-17bfb6ae7a0adca9"]},"geometry":{"type":"LineString","coordinates":[[-83.61344820000001,32.8633447],[-83.6134681,32.8632713]]},"id":"8a44c0a32157fff-17dfb6b4aea8d420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61348720000001,32.863201000000004]},"id":"8f44c0a32109aca-179fb6a2852374ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32109264-17bfb6ae7a0adca9","8f44c0a32109aca-179fb6a2852374ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6134681,32.8632713],[-83.61348720000001,32.863201000000004]]},"id":"8b44c0a32109fff-17b7b6a8796e66aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32109a00-17d7b693ec113700","8f44c0a32109aca-179fb6a2852374ce"]},"geometry":{"type":"LineString","coordinates":[[-83.61348720000001,32.863201000000004],[-83.61351060000001,32.863114700000004]]},"id":"8c44c0a32109bff-17f7b69b30d02b5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6278197,32.831771700000004]},"id":"8f44c0ba92e5c1c-13d753a4b7502742"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e5c1c-13d753a4b7502742","8f44c0ba92e5424-139fd3d5597925e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6277419,32.8318685],[-83.6278197,32.831771700000004]]},"id":"8b44c0ba92e5fff-13ff93bd079934bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6279646,32.8315921]},"id":"8f44c0ba920b756-13f7134a2b639d11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e5c1c-13d753a4b7502742","8f44c0ba920b756-13f7134a2b639d11"]},"geometry":{"type":"LineString","coordinates":[[-83.6278197,32.831771700000004],[-83.62794140000001,32.8316205],[-83.6279646,32.8315921]]},"id":"8844c0ba93fffff-139f337772445055"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62817270000001,32.831336900000004]},"id":"8f44c0ba920b82c-17d792c815819ef5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920b82c-17d792c815819ef5","8f44c0ba920b756-13f7134a2b639d11"]},"geometry":{"type":"LineString","coordinates":[[-83.6279646,32.8315921],[-83.62817270000001,32.831336900000004]]},"id":"8b44c0ba920bfff-139753092960d603"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920b82c-17d792c815819ef5","8f44c0ba92e428d-13d73434e68ddaf6"]},"geometry":{"type":"LineString","coordinates":[[-83.627589,32.8317762],[-83.6276196,32.8317027],[-83.6280035,32.8312362],[-83.62817270000001,32.831336900000004]]},"id":"8844c0ba93fffff-139f338eefcc99ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba920b82c-17d792c815819ef5","8f44c0ba9209001-17dfd1eba90d6baa"]},"geometry":{"type":"LineString","coordinates":[[-83.62817270000001,32.831336900000004],[-83.6284358,32.8314935],[-83.6285254,32.8313837]]},"id":"8a44c0ba920ffff-17f732530fa0766f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4c686-17bfbe32ce7b548d","8f44c0a32c4ea1b-17bf3e81aa8f28e0"]},"geometry":{"type":"LineString","coordinates":[[-83.610263,32.8602016],[-83.6103892,32.860205900000004]]},"id":"8a44c0a32c4ffff-17bf7e5a3ed33d93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61067220000001,32.8598518]},"id":"8f44c0a32c4c915-17df7d81ef319366"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4c686-17bfbe32ce7b548d","8f44c0a32c4c915-17df7d81ef319366"]},"geometry":{"type":"LineString","coordinates":[[-83.6103892,32.860205900000004],[-83.6104304,32.8602073],[-83.6105086,32.8602081],[-83.61057790000001,32.8602016],[-83.6106127,32.8601864],[-83.6106371,32.8601709],[-83.61065210000001,32.8601509],[-83.6106627,32.8601327],[-83.6106704,32.8600836],[-83.6106664,32.860006],[-83.61067220000001,32.8598518]]},"id":"8b44c0a32c4cfff-17ff7daed3e5711c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c41ac5-17d73e2e52068372","8f44c0a32c4c915-17df7d81ef319366"]},"geometry":{"type":"LineString","coordinates":[[-83.6103963,32.8598099],[-83.6104674,32.85981],[-83.6105678,32.8598121],[-83.6106036,32.8598222],[-83.6106292,32.8598311],[-83.6106553,32.859847800000004],[-83.61067220000001,32.8598518]]},"id":"8944c0a32c7ffff-17dfbdd665dbcba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c6b5a4-17f7fd21fd4d4447","8f44c0a32c4c915-17df7d81ef319366"]},"geometry":{"type":"LineString","coordinates":[[-83.61067220000001,32.8598518],[-83.6108257,32.8598572]]},"id":"8a44c0a32c6ffff-17f73d51e24715d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a62d94d-13bf5edcedde91fc","8f44c0b0a75e3a0-13f6de0e344f2d0b"]},"geometry":{"type":"LineString","coordinates":[[-83.708421,32.8294549],[-83.70875170000001,32.829568900000005]]},"id":"8944c0b0a77ffff-13defe759a90a0c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70913940000001,32.8306685]},"id":"8f44c0b0a66679c-179fdd1be711dd87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a75e3a0-13f6de0e344f2d0b","8f44c0b0a66679c-179fdd1be711dd87"]},"geometry":{"type":"LineString","coordinates":[[-83.70875170000001,32.829568900000005],[-83.7088148,32.829590700000004],[-83.7090792,32.829728200000005],[-83.70913870000001,32.829792000000005],[-83.7091508,32.8298669],[-83.70913940000001,32.8306685]]},"id":"8844c0b0a7fffff-17965d40f4c31f42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0a8af5-179e6bf817ac3439","8f44c0b0a0a80e3-179e4c647088af55"]},"geometry":{"type":"LineString","coordinates":[[-83.7096063,32.8236962],[-83.70943290000001,32.8236932]]},"id":"8b44c0b0a0a8fff-179f7c2e45c0e308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7091767,32.823688700000005]},"id":"8f44c0b0a0aab23-17977d0494098b3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0aab23-17977d0494098b3b","8f44c0b0a0a80e3-179e4c647088af55"]},"geometry":{"type":"LineString","coordinates":[[-83.70943290000001,32.8236932],[-83.7091767,32.823688700000005]]},"id":"8a44c0b0a0affff-1796ecb48856c6f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0a864b-17fedc788bf626e5","8f44c0b0a0a80e3-179e4c647088af55"]},"geometry":{"type":"LineString","coordinates":[[-83.70943290000001,32.8236932],[-83.7094072,32.8237757],[-83.70940080000001,32.823854100000005]]},"id":"8b44c0b0a0a8fff-17de4c714e2495ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7094041,32.8241035]},"id":"8f44c0b0a0aba92-179efc767d345d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0aba92-179efc767d345d2a","8f44c0b0a0a864b-17fedc788bf626e5"]},"geometry":{"type":"LineString","coordinates":[[-83.70940080000001,32.823854100000005],[-83.7094041,32.8241035]]},"id":"8a44c0b0a0affff-17decc778f6fd2d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876756,32.900965400000004]},"id":"8f44c0a05896564-13bfe182c41d9205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876637,32.9010441]},"id":"8f44c0a05896461-13f6918a3c23e966"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05896461-13f6918a3c23e966","8f44c0a05896564-13bfe182c41d9205"]},"geometry":{"type":"LineString","coordinates":[[-83.6876756,32.900965400000004],[-83.6876637,32.9010441]]},"id":"8c44c0a058965ff-13de818686b9f243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876488,32.9011425]},"id":"8f44c0a05896789-13be919383b3f5c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05896789-13be919383b3f5c1","8f44c0a05896461-13f6918a3c23e966"]},"geometry":{"type":"LineString","coordinates":[[-83.6876637,32.9010441],[-83.6876488,32.9011425]]},"id":"8b44c0a05896fff-139fd18eed5dc2e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876349,32.9012347]},"id":"8f44c0a058966d3-13f7b19c3996c618"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05896789-13be919383b3f5c1","8f44c0a058966d3-13f7b19c3996c618"]},"geometry":{"type":"LineString","coordinates":[[-83.6876488,32.9011425],[-83.6876349,32.9012347]]},"id":"8c44c0a058967ff-13dee197e619699f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b0e0-13b6821f76183ca7","8f44c0a05896db5-13d691968e85c289"]},"geometry":{"type":"LineString","coordinates":[[-83.68742490000001,32.9007424],[-83.68755970000001,32.9007067],[-83.687644,32.9007969]]},"id":"8b44c0a05d4bfff-13b6d1d536c22fa0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68759630000001,32.9012807]},"id":"8f44c0a05892c25-1396f1b453091bf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a058966d3-13f7b19c3996c618","8f44c0a05892c25-1396f1b453091bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.6876349,32.9012347],[-83.68759630000001,32.9012807]]},"id":"8b44c0a05892fff-13f691a8419da9e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05892caa-139ff1df2f23cfe6","8f44c0a05892c25-1396f1b453091bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.68759630000001,32.9012807],[-83.68752780000001,32.901317500000005]]},"id":"8c44c0a05892dff-139ff1c9b4450d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.687393,32.9010969]},"id":"8f44c0a05c65165-13979233648e141b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68739910000001,32.9010288]},"id":"8f44c0a05c658e6-13f7822f919604a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c658e6-13f7822f919604a5","8f44c0a05c65165-13979233648e141b"]},"geometry":{"type":"LineString","coordinates":[[-83.687393,32.9010969],[-83.68739910000001,32.9010288]]},"id":"8b44c0a05c65fff-13fed23184b717e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6874085,32.900924]},"id":"8f44c0a05c65915-13b78229b47a2a86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c658e6-13f7822f919604a5","8f44c0a05c65915-13b78229b47a2a86"]},"geometry":{"type":"LineString","coordinates":[[-83.68739910000001,32.9010288],[-83.6874085,32.900924]]},"id":"8c44c0a05c659ff-13d6c22ca42503b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68741770000001,32.900822600000005]},"id":"8f44c0a05d4b768-13f6a223f3072120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b768-13f6a223f3072120","8f44c0a05c65915-13b78229b47a2a86"]},"geometry":{"type":"LineString","coordinates":[[-83.6874085,32.900924],[-83.68741770000001,32.900822600000005]]},"id":"8b44c0a05d4bfff-1397d226d5570277"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b768-13f6a223f3072120","8f44c0a05d4b0e0-13b6821f76183ca7"]},"geometry":{"type":"LineString","coordinates":[[-83.68741770000001,32.900822600000005],[-83.68742490000001,32.9007424]]},"id":"8b44c0a05d4bfff-13df9221ba7e3e4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6472279,32.841011800000004]},"id":"8f44c0a34a884e0-17f6e442959607eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a884e0-17f6e442959607eb","8f44c0a34a883b2-179ee3c2df4d39ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6474323,32.8410758],[-83.6472279,32.841011800000004]]},"id":"8b44c0a34a88fff-17f6e402b0af7145"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a884e0-17f6e442959607eb","8f44c0a34a88496-17def483bfaad412"]},"geometry":{"type":"LineString","coordinates":[[-83.6472279,32.841011800000004],[-83.64712370000001,32.840976500000004]]},"id":"8a44c0a34a8ffff-17d7e463286c89ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8aa6a-17d7f457bb989315","8f44c0a34a8bd12-17dfe45a8e3f5623"]},"geometry":{"type":"LineString","coordinates":[[-83.6471896,32.8412062],[-83.64719410000001,32.8411671]]},"id":"8a44c0a34a8ffff-17dff4591ef84a3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8aa6a-17d7f457bb989315","8f44c0a34a884ca-1797f44a10c43ae4"]},"geometry":{"type":"LineString","coordinates":[[-83.64719410000001,32.8411671],[-83.64724790000001,32.841146300000005],[-83.64725580000001,32.841100700000005],[-83.6472159,32.8410643]]},"id":"8a44c0a34a8ffff-17b7e43e12e6e7a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a884e0-17f6e442959607eb","8f44c0a34a884ca-1797f44a10c43ae4"]},"geometry":{"type":"LineString","coordinates":[[-83.6472159,32.8410643],[-83.6472279,32.841011800000004]]},"id":"8d44c0a34a884ff-17f6f446592717b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6471729,32.8409092]},"id":"8f44c0a34a885b1-17b6e464fad04e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a88496-17def483bfaad412","8f44c0a34a885b1-17b6e464fad04e49"]},"geometry":{"type":"LineString","coordinates":[[-83.64712370000001,32.840976500000004],[-83.6471729,32.8409092]]},"id":"8a44c0a34a8ffff-17b7f474572db6e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64743490000001,32.840470700000004]},"id":"8f44c0a34a8ccc3-179ef3c13b02d86a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.647507,32.840461600000005]},"id":"8f44c0a34a8cc4e-179ee394233f1fbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8ccc3-179ef3c13b02d86a","8f44c0a34a8cc4e-179ee394233f1fbe"]},"geometry":{"type":"LineString","coordinates":[[-83.64743490000001,32.840470700000004],[-83.647507,32.840461600000005]]},"id":"8c44c0a34a8cdff-179fe3aaabb8eca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6471564,32.8408536]},"id":"8f44c0a34a8e20b-17ffe46f4bdf9061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a885b1-17b6e464fad04e49","8f44c0a34a8e20b-17ffe46f4bdf9061"]},"geometry":{"type":"LineString","coordinates":[[-83.6471729,32.8409092],[-83.6471564,32.8408536]]},"id":"8a44c0a34a8ffff-179ee46a11bea9a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8e200-17f7e47805ee7d90","8f44c0a34a8e20b-17ffe46f4bdf9061"]},"geometry":{"type":"LineString","coordinates":[[-83.6471564,32.8408536],[-83.6471424,32.8408156]]},"id":"8d44c0a34a8e23f-17f7e473a6b2cf20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68266840000001,32.8235961]},"id":"8f44c0b19cc2aed-17df9dbc437ed25a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cc2aed-17df9dbc437ed25a","8f44c0b19cc28a1-17d79e170f33db3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6825232,32.823380900000004],[-83.68266840000001,32.8235961]]},"id":"8b44c0b19cc2fff-179edde9a6a18064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cc3c56-17befd85a18e8067","8f44c0b19cc2aed-17df9dbc437ed25a"]},"geometry":{"type":"LineString","coordinates":[[-83.68266840000001,32.8235961],[-83.68275580000001,32.8237255]]},"id":"8a44c0b19cc7fff-17968da0f769d2e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6822597,32.824184800000005]},"id":"8f44c0b19cd89b3-17df8ebbb72d5356"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cc3c56-17befd85a18e8067","8f44c0b19cd89b3-17df8ebbb72d5356"]},"geometry":{"type":"LineString","coordinates":[[-83.68275580000001,32.8237255],[-83.6828579,32.8238768],[-83.6828605,32.823914900000005],[-83.6828237,32.8239585],[-83.6823906,32.8241736],[-83.6822597,32.824184800000005]]},"id":"8944c0b19cfffff-17f6add2d03728d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cde76e-17d7afbf87fcb8e8","8f44c0b19cd89b3-17df8ebbb72d5356"]},"geometry":{"type":"LineString","coordinates":[[-83.6822597,32.824184800000005],[-83.68222150000001,32.8241881],[-83.68197710000001,32.8241621],[-83.681844,32.8241778]]},"id":"8a44c0b19cdffff-17d79f3da749c048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6824799,32.824303400000005]},"id":"8f44c0b19cdd4f0-1797ae321ac1d94c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cdd4f0-1797ae321ac1d94c","8f44c0b19cd88d8-17b68ea9b56b6ca3"]},"geometry":{"type":"LineString","coordinates":[[-83.6824799,32.824303400000005],[-83.6822885,32.8243296]]},"id":"8a44c0b19cdffff-179fde6def7ca243"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cd88d8-17b68ea9b56b6ca3","8f44c0b19cd89b3-17df8ebbb72d5356"]},"geometry":{"type":"LineString","coordinates":[[-83.6822885,32.8243296],[-83.6822597,32.824184800000005]]},"id":"8b44c0b19cd8fff-17feceb2b784ad46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cc2aed-17df9dbc437ed25a","8f44c0b19cd89b3-17df8ebbb72d5356"]},"geometry":{"type":"LineString","coordinates":[[-83.6822597,32.824184800000005],[-83.6821085,32.823958000000005],[-83.6821125,32.8239192],[-83.6821311,32.8238738],[-83.68266840000001,32.8235961]]},"id":"8944c0b19cfffff-17fe8e9a5cea086a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88283166-1797ddccfd818e28","8f44c0b88283c05-13d7de2d0740766a"]},"geometry":{"type":"LineString","coordinates":[[-83.5712305,32.8626045],[-83.5710768,32.8624925]]},"id":"8b44c0b88283fff-13f7ddfd03b65818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829c2a2-17d7df1a3f4b4d08","8f44c0b88283c05-13d7de2d0740766a"]},"geometry":{"type":"LineString","coordinates":[[-83.5710768,32.8624925],[-83.5706973,32.862909200000004]]},"id":"8944c0b882bffff-17d79ea39fcf3cb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829d58c-17b79ed2dd0913ba","8f44c0b8829c2a2-17d7df1a3f4b4d08"]},"geometry":{"type":"LineString","coordinates":[[-83.5706973,32.862909200000004],[-83.5708115,32.8630281]]},"id":"8a44c0b8829ffff-17fffef686ffc0b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8866d34a-17dfe11f3253cab3","8f44c0b8829a712-17f7f0ed957841eb"]},"geometry":{"type":"LineString","coordinates":[[-83.5699495,32.8633693],[-83.5698701,32.8631268]]},"id":"8944c0b882bffff-17bfb1066dc43421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8866d34a-17dfe11f3253cab3","8f44c0b8829e4b5-17b7a0f62599044c"]},"geometry":{"type":"LineString","coordinates":[[-83.5698701,32.8631268],[-83.56992430000001,32.8630055],[-83.56993580000001,32.8628328]]},"id":"8944c0b882bffff-1797e102a4c9e8d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829e4b5-17b7a0f62599044c","8f44c0b88293395-17bfb1271763d90b"]},"geometry":{"type":"LineString","coordinates":[[-83.56993580000001,32.8628328],[-83.5699405,32.862763],[-83.56985750000001,32.862638700000005]]},"id":"8944c0b882bffff-17f7e1055363898c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88668253-17bfb26aadf6aa83","8f44c0b88293395-17bfb1271763d90b"]},"geometry":{"type":"LineString","coordinates":[[-83.56985750000001,32.862638700000005],[-83.56919450000001,32.8631996],[-83.56933980000001,32.863277100000005]]},"id":"8844c0b887fffff-17ffe21013e45773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88668253-17bfb26aadf6aa83","8f44c0b88669134-17dfb1c4afdf638c"]},"geometry":{"type":"LineString","coordinates":[[-83.56933980000001,32.863277100000005],[-83.56936490000001,32.8632889],[-83.5696054,32.863303300000005]]},"id":"8a44c0b8866ffff-17d7b21869976056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8829a712-17f7f0ed957841eb","8f44c0b88669134-17dfb1c4afdf638c"]},"geometry":{"type":"LineString","coordinates":[[-83.5696054,32.863303300000005],[-83.5696446,32.863305600000004],[-83.569798,32.8633192],[-83.5699495,32.8633693]]},"id":"8744c0b88ffffff-17dfb157dcf123e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a142ab0d2-13bff5318a19c25d","8f44c0a1090a8c1-13df698885f3bed2"]},"geometry":{"type":"LineString","coordinates":[[-83.60752400000001,32.894817100000004],[-83.607082,32.8956892],[-83.6068776,32.896081200000005],[-83.60637530000001,32.897084400000004],[-83.6059529,32.897905800000004],[-83.6058314,32.8981573],[-83.6057464,32.8983542]]},"id":"8644c0a17ffffff-179fe7619ff89196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a1034c693-13dff4d261917d68","8f44c0a1026b85d-13dfc4dc1ed94891"]},"geometry":{"type":"LineString","coordinates":[[-83.6076762,32.9147067],[-83.6076901,32.9152229],[-83.60768,32.915725],[-83.607659,32.9168402],[-83.60766070000001,32.917396000000004]]},"id":"8844c0a103fffff-179754d46d5721e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a11532733-179f64e605d04b58","8f44c0a1026b85d-13dfc4dc1ed94891"]},"geometry":{"type":"LineString","coordinates":[[-83.60766070000001,32.917396000000004],[-83.6076726,32.9180027],[-83.6076448,32.918289800000004]]},"id":"8744c0a11ffffff-13f754d9f4207983"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.55119950000001,32.8046121]},"id":"8f44c0b80ae8b32-1797deb45fc201ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80aec4b0-179fef7f4ffb07cb","8f44c0b80ae8b32-1797deb45fc201ff"]},"geometry":{"type":"LineString","coordinates":[[-83.55119950000001,32.8046121],[-83.5513876,32.804482],[-83.5510296,32.804153],[-83.5508748,32.8042218]]},"id":"8a44c0b80aeffff-17dffebf999ba3a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b80aec4b0-179fef7f4ffb07cb","8f44c0b80ae8b32-1797deb45fc201ff"]},"geometry":{"type":"LineString","coordinates":[[-83.5508748,32.8042218],[-83.55119950000001,32.8046121]]},"id":"8a44c0b80aeffff-179fef19c29ef435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5450699,32.8099277]},"id":"8f44c0b802e68ae-13ffddab5d8d838b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8021b522-13d7ff1503843e6a","8f44c0b802e68ae-13ffddab5d8d838b"]},"geometry":{"type":"LineString","coordinates":[[-83.54449120000001,32.809632300000004],[-83.54481220000001,32.8100113],[-83.54495510000001,32.8100006],[-83.5450699,32.8099277]]},"id":"8844c0b803fffff-13dfde6e6a3c7873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.54498410000001,32.8097769]},"id":"8f44c0b802196aa-139fdde0f610d8c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b802196aa-139fdde0f610d8c0","8f44c0b802e68ae-13ffddab5d8d838b"]},"geometry":{"type":"LineString","coordinates":[[-83.5450699,32.8099277],[-83.54498410000001,32.8097769]]},"id":"8844c0b803fffff-13dffdc621493a7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b802186e9-13f7fe943524e8c4","8f44c0b802196aa-139fdde0f610d8c0"]},"geometry":{"type":"LineString","coordinates":[[-83.54498410000001,32.8097769],[-83.54469730000001,32.809502300000005]]},"id":"8a44c0b8021ffff-13dfde3a99219070"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5534914,32.8300404]},"id":"8f44c0b8ed6b849-1797c91be87e49b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed6b849-1797c91be87e49b9","8f44c0b8e8b6376-17d7c854240e0fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.55381100000001,32.830544],[-83.55344310000001,32.8304047],[-83.5534281,32.8302641],[-83.5534914,32.8300404]]},"id":"8844c0b8e9fffff-17dfe8fcd2fb4a73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed68a12-13bfe8dd0a98dbdb","8f44c0b8ed6b849-1797c91be87e49b9"]},"geometry":{"type":"LineString","coordinates":[[-83.5534914,32.8300404],[-83.5535826,32.829717800000005],[-83.55359200000001,32.829692200000004]]},"id":"8a44c0b8ed6ffff-17bfc8fd0c21e316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed68a12-13bfe8dd0a98dbdb","8f44c0b8ed6d5b0-13bfe8adc34456a8"]},"geometry":{"type":"LineString","coordinates":[[-83.55359200000001,32.829692200000004],[-83.55366760000001,32.829485000000005]]},"id":"8a44c0b8ed6ffff-13ffe8c56522fdb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed6d5b0-13bfe8adc34456a8","8f44c0b8ed6ca00-13b7c87b35e2799b"]},"geometry":{"type":"LineString","coordinates":[[-83.55366760000001,32.829485000000005],[-83.55374850000001,32.829263600000004]]},"id":"8a44c0b8ed6ffff-13f7f894794abcee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5538315,32.829036200000004]},"id":"8f44c0b8e992248-13b7e84751735791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e992248-13b7e84751735791","8f44c0b8ed6ca00-13b7c87b35e2799b"]},"geometry":{"type":"LineString","coordinates":[[-83.55374850000001,32.829263600000004],[-83.5538315,32.829036200000004]]},"id":"8844c0b8e9fffff-13fff8614d38f4ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e919849-13d7bc87ad5fb2d6","8f44c0b8e992248-13b7e84751735791"]},"geometry":{"type":"LineString","coordinates":[[-83.5538315,32.829036200000004],[-83.5549345,32.8293283],[-83.55573910000001,32.8293355],[-83.55694720000001,32.8290218],[-83.557563,32.8290669],[-83.5586438,32.8293161]]},"id":"8844c0b8e9fffff-1397e268fa42a6c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed6b849-1797c91be87e49b9","8f44c0b8ed6e6d4-13dfda77ecdcf497"]},"geometry":{"type":"LineString","coordinates":[[-83.5534914,32.8300404],[-83.5528144,32.82988],[-83.5529346,32.8295393]]},"id":"8a44c0b8ed6ffff-17bfea2af00400ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed6e6d4-13dfda77ecdcf497","8f44c0b8ed6e56e-13dfda5d1707274f"]},"geometry":{"type":"LineString","coordinates":[[-83.5529346,32.8295393],[-83.55297750000001,32.8293085]]},"id":"8b44c0b8ed6efff-1397fa6a829a2903"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ed616f3-13dffa28cc729c97","8f44c0b8ed6e56e-13dfda5d1707274f"]},"geometry":{"type":"LineString","coordinates":[[-83.55297750000001,32.8293085],[-83.5530612,32.8291011]]},"id":"8944c0b8ed7ffff-139fca42f9c93726"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e992248-13b7e84751735791","8f44c0b8ed616f3-13dffa28cc729c97"]},"geometry":{"type":"LineString","coordinates":[[-83.5530612,32.8291011],[-83.5531878,32.8286882],[-83.5534667,32.8287171],[-83.55375210000001,32.828830700000005],[-83.5538315,32.829036200000004]]},"id":"8744c0b8effffff-13b7e94f523ca282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e8128c4-17f7c2528e149e13","8f44c0b8e812042-17dff26c3e77e6b2"]},"geometry":{"type":"LineString","coordinates":[[-83.55623010000001,32.8311435],[-83.55627120000001,32.8310112]]},"id":"8b44c0b8e812fff-179fd25f51c16c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e8a561d-17bfc3addb5b9b03","8f44c0b8e8a1c08-179fe3e308e5e85e"]},"geometry":{"type":"LineString","coordinates":[[-83.5557155,32.8309228],[-83.5556304,32.831068200000004]]},"id":"8a44c0b8e8a7fff-17fff3c87a69f0d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83a9290a-1797eb0fe2d32eaa","8f44c0b83ab2426-13ffea0c6e02adfe"]},"geometry":{"type":"LineString","coordinates":[[-83.5399994,32.8224174],[-83.5401138,32.8226657],[-83.53979100000001,32.823361500000004],[-83.53958420000001,32.823252600000004]]},"id":"8944c0b83abffff-13d7fa3a2bd5aaca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83a9290a-1797eb0fe2d32eaa","8f44c0b83a966cc-13fffb55c0e9c712"]},"geometry":{"type":"LineString","coordinates":[[-83.53958420000001,32.823252600000004],[-83.53947240000001,32.8232103]]},"id":"8b44c0b83a92fff-13f7fb32d80f628b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83ab649a-1397e9ff42c46885","8f44c0b8316962e-13d7e93845403915"]},"geometry":{"type":"LineString","coordinates":[[-83.5403388,32.8217346],[-83.5401444,32.821792200000004],[-83.5400204,32.822051]]},"id":"8944c0b8317ffff-139ff9af52c38d37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83ab649a-1397e9ff42c46885","8f44c0b83a966cc-13fffb55c0e9c712"]},"geometry":{"type":"LineString","coordinates":[[-83.5400204,32.822051],[-83.53947240000001,32.8232103]]},"id":"8744c0b83ffffff-1397faaa89904312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83169102-17d7f8fc741a5cca","8f44c0b831458cd-17fffbaa583cdb67"]},"geometry":{"type":"LineString","coordinates":[[-83.5404345,32.8215421],[-83.5402852,32.821483400000005],[-83.54015220000001,32.821288700000004],[-83.53933710000001,32.8209905]]},"id":"8944c0b8317ffff-1797fa439cb173aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5379893,32.8209046]},"id":"8f44c0b83155162-17dfeef4bec89873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b83155162-17dfeef4bec89873","8f44c0b831458cd-17fffbaa583cdb67"]},"geometry":{"type":"LineString","coordinates":[[-83.53933710000001,32.8209905],[-83.53864370000001,32.8207369],[-83.53847420000001,32.8210615],[-83.5379893,32.8209046]]},"id":"8944c0b8317ffff-17dfed55e3ad0d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18ce6406-13b6f78f60f320a5","8f44c0b18c8e296-139efd8dc44275c0"]},"geometry":{"type":"LineString","coordinates":[[-83.663082,32.806058],[-83.665102,32.806109],[-83.665537,32.806103]]},"id":"8844c0b18dfffff-139eba8e9f5ec080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18ce6406-13b6f78f60f320a5","8f44c0b18c56d9b-1396f4412f89f060"]},"geometry":{"type":"LineString","coordinates":[[-83.665537,32.806103],[-83.666891,32.806071]]},"id":"8844c0b18dfffff-139ef5e849436c7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18c56d9b-1396f4412f89f060","8f44c0b18c73aa3-1397f1352096a285"]},"geometry":{"type":"LineString","coordinates":[[-83.666891,32.806071],[-83.66813900000001,32.80605]]},"id":"8944c0b18c7ffff-139ff2bb273729c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18892302-13f7abc046602ad3","8f44c0b18c73aa3-1397f1352096a285"]},"geometry":{"type":"LineString","coordinates":[[-83.66813900000001,32.80605],[-83.66911900000001,32.806044],[-83.67037400000001,32.806024]]},"id":"8844c0b18dfffff-13fefe7ab2a956b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18892302-13f7abc046602ad3","8f44c0b18891864-13f6e9814e6d34f9"]},"geometry":{"type":"LineString","coordinates":[[-83.67037400000001,32.806024],[-83.671294,32.806027]]},"id":"8a44c0b18897fff-13f7faa0cbe6b188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18891864-13f6e9814e6d34f9","8f44c0b18882b0b-13fee839cf2296e3"]},"geometry":{"type":"LineString","coordinates":[[-83.671294,32.806027],[-83.671818,32.80603]]},"id":"8944c0b188bffff-13f7f8dd8b5ca5a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b188a80b5-13ffa48aab1cfb80","8f44c0b18882b0b-13fee839cf2296e3"]},"geometry":{"type":"LineString","coordinates":[[-83.671818,32.80603],[-83.673327,32.806041]]},"id":"8944c0b188bffff-13feb662376f4ee5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b188a80b5-13ffa48aab1cfb80","8f44c0b1881e644-13ffe2226824f3f5"]},"geometry":{"type":"LineString","coordinates":[[-83.673327,32.806041],[-83.673945,32.806019],[-83.67431300000001,32.806015]]},"id":"8844c0b189fffff-13f7b3569ce38864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341a979a-17bef60c67ac2312","8f44c0a341a9290-17dff5a5cb319e51"]},"geometry":{"type":"LineString","coordinates":[[-83.6399418,32.8366307],[-83.640106,32.8366838]]},"id":"8c44c0a341a97ff-17bef5d91b2c077d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a8a2d5a-13bfd45c350cc909","8f44c0b8a9a1413-13bff0aba6ef3636"]},"geometry":{"type":"LineString","coordinates":[[-83.5503942,32.8493258],[-83.55035330000001,32.849633100000005],[-83.5501792,32.8502182],[-83.55007900000001,32.8503866],[-83.549926,32.8504797],[-83.54957250000001,32.8506614],[-83.5493879,32.8508165],[-83.549256,32.850993800000005],[-83.5487336,32.851835900000005],[-83.5487981,32.8519025],[-83.5488193,32.8519243],[-83.54888290000001,32.85199]]},"id":"8844c0b8a9fffff-1797f297f3a27b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a884192-13ffd4c7f4ab99ae","8f44c0b8a8a2d5a-13bfd45c350cc909"]},"geometry":{"type":"LineString","coordinates":[[-83.54888290000001,32.85199],[-83.54891830000001,32.8520265],[-83.5487495,32.8524387],[-83.5487105,32.8525233]]},"id":"8944c0b8a8bffff-13d7d48185ba696b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a884192-13ffd4c7f4ab99ae","8f44c0b8a88ed2b-17fff464a5a0f23e"]},"geometry":{"type":"LineString","coordinates":[[-83.5487105,32.8525233],[-83.5484698,32.853045900000005],[-83.5484593,32.8532454],[-83.54852790000001,32.8534226],[-83.5487231,32.853498],[-83.5488694,32.8535539]]},"id":"8a44c0b8a887fff-17fff514fd638a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8a88eb20-17d7d3bbb1b6d275","8f44c0b8a88ed2b-17fff464a5a0f23e"]},"geometry":{"type":"LineString","coordinates":[[-83.5488694,32.8535539],[-83.54913970000001,32.8536933]]},"id":"8b44c0b8a88efff-17bfd4102d63127e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30cb36b1-139fb6a2211d4edd","8f44c0a30c82d24-139715bec07e182e"]},"geometry":{"type":"LineString","coordinates":[[-83.62659500000001,32.852169],[-83.62695880000001,32.8525377]]},"id":"8944c0a30cbffff-1397d63074ea50e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30c8eb9e-17bf33980f0770c9","8f44c0a30c82d24-139715bec07e182e"]},"geometry":{"type":"LineString","coordinates":[[-83.62695880000001,32.8525377],[-83.62784,32.8534195]]},"id":"8944c0a30cbffff-1797b4ab615dc485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30c8eb9e-17bf33980f0770c9","8f44c0a30cc2c95-13df4fe7a46d2a37"]},"geometry":{"type":"LineString","coordinates":[[-83.62784,32.8534195],[-83.62800610000001,32.853585700000004],[-83.628583,32.854163],[-83.629351,32.85493]]},"id":"8844c0a30dfffff-179751bff7d562bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30cc2cdc-13ffefc867ff410d","8f44c0a30cc2c95-13df4fe7a46d2a37"]},"geometry":{"type":"LineString","coordinates":[[-83.629351,32.85493],[-83.629401,32.854987]]},"id":"8c44c0a30cc2dff-13ff1fd80528af24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c81190-13d77b175058a798","8f44c0a21c802a3-13964bb8aa4a2bdb"]},"geometry":{"type":"LineString","coordinates":[[-83.7097078,32.8744548],[-83.70995900000001,32.8745716],[-83.7099659,32.874574700000004]]},"id":"8a44c0a21c87fff-13bfcb680de21320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c80c45-13df5bda6987d52c","8f44c0a21c80b81-1397cb6da935137c"]},"geometry":{"type":"LineString","coordinates":[[-83.7098278,32.8742748],[-83.7096538,32.8741809]]},"id":"8b44c0a21c80fff-13fe7ba40c9c2fcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c80c45-13df5bda6987d52c","8f44c0a21c86360-13b7fc40f78bb258"]},"geometry":{"type":"LineString","coordinates":[[-83.7096538,32.8741809],[-83.7094897,32.8740923]]},"id":"8a44c0a21c87fff-13bf6c0da10d2e21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c86360-13b7fc40f78bb258","8f44c0a21c860e4-17fe4ca7ab92fa0a"]},"geometry":{"type":"LineString","coordinates":[[-83.7094897,32.8740923],[-83.70932540000001,32.8740036]]},"id":"8b44c0a21c86fff-139e4c744a36e1b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c860e4-17fe4ca7ab92fa0a","8f44c0a21c86508-17b74d0dabe1ae80"]},"geometry":{"type":"LineString","coordinates":[[-83.70932540000001,32.8740036],[-83.70916220000001,32.873915600000004]]},"id":"8b44c0a21c86fff-17d6ccdaaf59550a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c86508-17b74d0dabe1ae80","8f44c0a21cb328c-17fffd741e0ab268"]},"geometry":{"type":"LineString","coordinates":[[-83.70916220000001,32.873915600000004],[-83.7089983,32.8738271]]},"id":"8944c0a21cbffff-179fed40e89a3f09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb37a8-17d6edda3092498b","8f44c0a21cb328c-17fffd741e0ab268"]},"geometry":{"type":"LineString","coordinates":[[-83.7089983,32.8738271],[-83.7088349,32.873739]]},"id":"8b44c0a21cb3fff-17f66da72c5823f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb37a8-17d6edda3092498b","8f44c0a21c9486d-17965e3bfb00d82b"]},"geometry":{"type":"LineString","coordinates":[[-83.7088349,32.873739],[-83.7086785,32.8736545]]},"id":"8a44c0a21cb7fff-17bece0b101cbdc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c9486d-17965e3bfb00d82b","8f44c0a21c94996-17d7eeab939c6d39"]},"geometry":{"type":"LineString","coordinates":[[-83.7086785,32.8736545],[-83.7084999,32.873558200000005]]},"id":"8b44c0a21c94fff-17f64e73c576ff23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb2396-17fe4e6c5301fd07","8f44c0a21c94996-17d7eeab939c6d39"]},"geometry":{"type":"LineString","coordinates":[[-83.7084999,32.873558200000005],[-83.70860110000001,32.8734148]]},"id":"8944c0a21cbffff-17bf5e8bfbb64934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb2396-17fe4e6c5301fd07","8f44c0a21cb046d-1796cd7b4c9c97d0"]},"geometry":{"type":"LineString","coordinates":[[-83.70860110000001,32.8734148],[-83.70879430000001,32.8731409],[-83.7089868,32.8732428]]},"id":"8a44c0a21cb7fff-1797ce00793d005a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb03aa-17d7ed1b435d6de9","8f44c0a21cb046d-1796cd7b4c9c97d0"]},"geometry":{"type":"LineString","coordinates":[[-83.7089868,32.8732428],[-83.70914040000001,32.8733242]]},"id":"8b44c0a21cb0fff-17be7d4b4729ef62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb1c8c-17fedcb362b6f200","8f44c0a21cb03aa-17d7ed1b435d6de9"]},"geometry":{"type":"LineString","coordinates":[[-83.70914040000001,32.8733242],[-83.7093066,32.8734121]]},"id":"8a44c0a21cb7fff-17df6ce756edd9ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb1c8c-17fedcb362b6f200","8f44c0a21cb1108-17bfec4edf0cdb79"]},"geometry":{"type":"LineString","coordinates":[[-83.7093066,32.8734121],[-83.7094675,32.873497400000005]]},"id":"8b44c0a21cb1fff-17974c812fdab769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21cb1a56-17fe4be08df725ad","8f44c0a21cb1108-17bfec4edf0cdb79"]},"geometry":{"type":"LineString","coordinates":[[-83.7094675,32.873497400000005],[-83.70964400000001,32.8735908]]},"id":"8b44c0a21cb1fff-17df5c17a7718ea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c84d60-179edb7d4e45bbcc","8f44c0a21cb1a56-17fe4be08df725ad"]},"geometry":{"type":"LineString","coordinates":[[-83.70964400000001,32.8735908],[-83.7098028,32.873674900000005]]},"id":"8944c0a21cbffff-1796dbaee2d8da59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c84863-17d6fb1718992b43","8f44c0a21c84d60-179edb7d4e45bbcc"]},"geometry":{"type":"LineString","coordinates":[[-83.7098028,32.873674900000005],[-83.7099663,32.8737615]]},"id":"8b44c0a21c84fff-17bfeb4a306bc1ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c84863-17d6fb1718992b43","8f44c0a21ca3636-17964a9ff6d595bf"]},"geometry":{"type":"LineString","coordinates":[[-83.7099663,32.8737615],[-83.7101569,32.8738624]]},"id":"8a44c0a21ca7fff-17f6cadb8e2714b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6893459,32.8216538]},"id":"8f44c0b19886042-139ffd6ed3d74ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19886a2d-139efd010f9664ec","8f44c0b19886042-139ffd6ed3d74ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.6895216,32.82162],[-83.6893459,32.8216538]]},"id":"8b44c0b19886fff-13977d37ecb55fa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688736,32.8214179]},"id":"8f44c0b198b3696-179e7eec0fd0e67e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3696-179e7eec0fd0e67e","8f44c0b19886042-139ffd6ed3d74ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.6893459,32.8216538],[-83.68891090000001,32.8217373],[-83.6888052,32.8216775],[-83.688736,32.8214179]]},"id":"8944c0b198bffff-139f7e578557df61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68872830000001,32.8211214]},"id":"8f44c0b198b2266-17d6fef0df225c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3696-179e7eec0fd0e67e","8f44c0b198b2266-17d6fef0df225c69"]},"geometry":{"type":"LineString","coordinates":[[-83.688736,32.8214179],[-83.6886759,32.8211924],[-83.68872830000001,32.8211214]]},"id":"8944c0b198bffff-17be7eff780b8d66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b2266-17d6fef0df225c69","8f44c0b198b2160-17d77f1830d12382"]},"geometry":{"type":"LineString","coordinates":[[-83.68872830000001,32.8211214],[-83.68866530000001,32.8209175]]},"id":"8b44c0b198b2fff-17977f04811bf499"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b16b3-17d7fdb18b37d7ba","8f44c0b19886042-139ffd6ed3d74ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.6893459,32.8216538],[-83.6892392,32.8213115]]},"id":"8944c0b198bffff-17b6fd9036229998"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6890553,32.8210544]},"id":"8f44c0b198b3930-17b77e2475ae22b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b16b3-17d7fdb18b37d7ba","8f44c0b198b3930-17b77e2475ae22b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6892392,32.8213115],[-83.6891535,32.8210361],[-83.6890553,32.8210544]]},"id":"8a44c0b198b7fff-17defddb1bdb1d13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889642,32.821074100000004]},"id":"8f44c0b198b06c9-17b77e5d63fa981a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b06c9-17b77e5d63fa981a","8f44c0b198b3930-17b77e2475ae22b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6890553,32.8210544],[-83.6889642,32.821074100000004]]},"id":"8a44c0b198b7fff-17bf7e40f5de17e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68886810000001,32.8210934]},"id":"8f44c0b198b3c26-17bf7e9976ec25e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b06c9-17b77e5d63fa981a","8f44c0b198b3c26-17bf7e9976ec25e0"]},"geometry":{"type":"LineString","coordinates":[[-83.6889642,32.821074100000004],[-83.68886810000001,32.8210934]]},"id":"8b44c0b198b3fff-17bf7e7b6e502e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6887605,32.821115]},"id":"8f44c0b198b234d-17defedcb3266578"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3c26-17bf7e9976ec25e0","8f44c0b198b234d-17defedcb3266578"]},"geometry":{"type":"LineString","coordinates":[[-83.68886810000001,32.8210934],[-83.6887605,32.821115]]},"id":"8a44c0b198b7fff-17d67ebb1883489e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b234d-17defedcb3266578","8f44c0b198b2266-17d6fef0df225c69"]},"geometry":{"type":"LineString","coordinates":[[-83.6887605,32.821115],[-83.68872830000001,32.8211214]]},"id":"8c44c0b198b23ff-17defee6cfd3e8c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891348,32.821334]},"id":"8f44c0b198b3ae5-17d7fdf2c93a3ee9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b16b3-17d7fdb18b37d7ba","8f44c0b198b3ae5-17d7fdf2c93a3ee9"]},"geometry":{"type":"LineString","coordinates":[[-83.6892392,32.8213115],[-83.6891348,32.821334]]},"id":"8a44c0b198b7fff-17defdd229ad93ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68904570000001,32.821353200000004]},"id":"8f44c0b198b3322-17f7fe2a7b09388b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3ae5-17d7fdf2c93a3ee9","8f44c0b198b3322-17f7fe2a7b09388b"]},"geometry":{"type":"LineString","coordinates":[[-83.6891348,32.821334],[-83.68904570000001,32.821353200000004]]},"id":"8b44c0b198b3fff-17dffe0e92745e6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889541,32.8213729]},"id":"8f44c0b198b3394-17fe7e63bc624e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3394-17fe7e63bc624e4c","8f44c0b198b3322-17f7fe2a7b09388b"]},"geometry":{"type":"LineString","coordinates":[[-83.68904570000001,32.821353200000004],[-83.6890041,32.8213621],[-83.6889541,32.8213729]]},"id":"8c44c0b198b33ff-17f7fe47110af317"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68884770000001,32.8213953]},"id":"8f44c0b198b3622-17fe7ea63aae5c9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3394-17fe7e63bc624e4c","8f44c0b198b3622-17fe7ea63aae5c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6889541,32.8213729],[-83.68889010000001,32.821386700000005],[-83.68884770000001,32.8213953]]},"id":"8b44c0b198b3fff-17f77e84f0db4201"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3696-179e7eec0fd0e67e","8f44c0b198b3622-17fe7ea63aae5c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.68884770000001,32.8213953],[-83.688736,32.8214179]]},"id":"8b44c0b198b3fff-17977ec920ec89d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6557045,32.827153800000005]},"id":"8f44c0b1bc9e6d4-179fef90b0d1ab68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a26d36e-17bfeff7fb7b7e83","8f44c0b1bc9e6d4-179fef90b0d1ab68"]},"geometry":{"type":"LineString","coordinates":[[-83.6555393,32.8272058],[-83.6557045,32.827153800000005]]},"id":"8944c0b1bcbffff-179fefc45b7a80a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc9e6d4-179fef90b0d1ab68","8f44c0b1bc9c492-17d7cec5a05f2f0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6557045,32.827153800000005],[-83.6559012,32.827091800000005],[-83.6559428,32.827055900000005],[-83.65602940000001,32.8268568]]},"id":"8b44c0b1bc9efff-17d7cf16bb45b284"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6555577,32.826779900000005]},"id":"8f44c0b1bc93233-17b7ffec7988016a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc9c492-17d7cec5a05f2f0b","8f44c0b1bc93233-17b7ffec7988016a"]},"geometry":{"type":"LineString","coordinates":[[-83.65602940000001,32.8268568],[-83.6560656,32.826692],[-83.6560615,32.826665600000005],[-83.6560408,32.8266557],[-83.65601240000001,32.8266591],[-83.6555577,32.826779900000005]]},"id":"8944c0b1bcbffff-1796df25f8d7c438"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc930c9-1797d017bb5dd6bb","8f44c0b1bc93233-17b7ffec7988016a"]},"geometry":{"type":"LineString","coordinates":[[-83.6555577,32.826779900000005],[-83.6554885,32.826731200000005]]},"id":"8b44c0b1bc93fff-1796d00212cadd7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc9e413-1796ffbf3c4185e6","8f44c0b1bc9e6d4-179fef90b0d1ab68"]},"geometry":{"type":"LineString","coordinates":[[-83.6557045,32.827153800000005],[-83.65563010000001,32.826957900000004]]},"id":"8b44c0b1bc9efff-17dfffa7fcbfc4ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc9e413-1796ffbf3c4185e6","8f44c0b1bc93233-17b7ffec7988016a"]},"geometry":{"type":"LineString","coordinates":[[-83.65563010000001,32.826957900000004],[-83.6555577,32.826779900000005]]},"id":"8944c0b1bcbffff-17dfdfd5db217b99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa9c51a-17bfe9ec8eed4f7e","8f44c0a2aa8e2cd-17ff672ea07ce4a8"]},"geometry":{"type":"LineString","coordinates":[[-83.711567,32.9260498],[-83.71123580000001,32.925291],[-83.71044400000001,32.9255386]]},"id":"8944c0a2aabffff-17d65845ce2ca735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa9c51a-17bfe9ec8eed4f7e","8f44c0a2aa99483-17be4980b55a26d7"]},"geometry":{"type":"LineString","coordinates":[[-83.71044400000001,32.9255386],[-83.71026350000001,32.925595],[-83.7106165,32.9263588]]},"id":"8a44c0a2aa9ffff-17b6c9f8e515d6d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa9b176-17f6e9ea73d0dae4","8f44c0a2a336830-139efc282c12c468"]},"geometry":{"type":"LineString","coordinates":[[-83.7104473,32.9264138],[-83.7103623,32.926228800000004],[-83.70952940000001,32.9265035]]},"id":"8744c0a2affffff-17bfdaedd8532c3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a336830-139efc282c12c468","8f44c0a2a04dac4-13fe7d21fc7b5e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.70952940000001,32.9265035],[-83.70910380000001,32.9266438],[-83.7090742,32.926678200000005],[-83.7090763,32.926728700000005],[-83.7091297,32.926842300000004]]},"id":"8944c0a2a07ffff-13f77cdb38e6948e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa903ae-179e5b111f8fc12a","8f44c0a2aa90803-13f6daf4e0f541f8"]},"geometry":{"type":"LineString","coordinates":[[-83.71002100000001,32.924810900000004],[-83.7099759,32.9250437]]},"id":"8b44c0a2aa90fff-17bfdb0301f80b09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa903ae-179e5b111f8fc12a","8f44c0a2aa9382d-17fe5b27def3422b"]},"geometry":{"type":"LineString","coordinates":[[-83.7099759,32.9250437],[-83.7099395,32.9252321]]},"id":"8a44c0a2aa97fff-17d77b1c735914f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa926eb-179f4c9974c6888d","8f44c0a2aa9382d-17fe5b27def3422b"]},"geometry":{"type":"LineString","coordinates":[[-83.7099395,32.9252321],[-83.7094113,32.9254048],[-83.7093481,32.9252528]]},"id":"8744c0a2affffff-17b7cbf72eca8e81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2aa926eb-179f4c9974c6888d","8f44c0a2aa92456-17966cc9fc8b50b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7093481,32.9252528],[-83.7092705,32.9250662]]},"id":"8a44c0a2aa97fff-17d6fcb1bc4a7a18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3628b930-179fb98b8b56bb89","8f44c0a36289431-17d7b918c9361e09"]},"geometry":{"type":"LineString","coordinates":[[-83.61903240000001,32.8532553],[-83.61884880000001,32.8531707]]},"id":"8a44c0a3628ffff-17bf295229789e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3628b0ab-17bf39ec664766c8","8f44c0a3628b329-17df297a516bdbf0"]},"geometry":{"type":"LineString","coordinates":[[-83.6186938,32.8534227],[-83.61887630000001,32.853494600000005]]},"id":"8b44c0a3628bfff-17d7b9b353a1abe3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3628d584-179ff8e9660c6270","8f44c0a3628d0ae-17d768798baea559"]},"geometry":{"type":"LineString","coordinates":[[-83.6192872,32.8528644],[-83.6191082,32.8527823]]},"id":"8b44c0a3628dfff-17b7a8b175ad066f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36288a86-179f293d4e399484","8f44c0a3628d584-179ff8e9660c6270"]},"geometry":{"type":"LineString","coordinates":[[-83.6191082,32.8527823],[-83.6190425,32.8527508],[-83.6188568,32.8527177],[-83.6188082,32.8527524],[-83.6186816,32.852928500000004],[-83.6189279,32.8530436],[-83.61897400000001,32.852980800000005]]},"id":"8a44c0a3628ffff-17d76985e2546919"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36288a86-179f293d4e399484","8f44c0a3628d584-179ff8e9660c6270"]},"geometry":{"type":"LineString","coordinates":[[-83.61897400000001,32.852980800000005],[-83.6191082,32.8527823]]},"id":"8a44c0a3628ffff-17df29135b370818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19525214-13f6922f0768450b","8f44c0b1952ea43-17f7f256f0d8159d"]},"geometry":{"type":"LineString","coordinates":[[-83.68084640000001,32.82322],[-83.68057970000001,32.8235691],[-83.68086720000001,32.8239729],[-83.6807825,32.8240159]]},"id":"8944c0b1953ffff-17f7f278cb9fa60c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68051340000001,32.8241528]},"id":"8f44c0b1952e64d-17b792ff2a8552cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952e64d-17b792ff2a8552cf","8f44c0b1952ea43-17f7f256f0d8159d"]},"geometry":{"type":"LineString","coordinates":[[-83.6807825,32.8240159],[-83.68051340000001,32.8241528]]},"id":"8b44c0b1952efff-179ed2ab08398d3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a39a2dd-17dfe3ccd91ec2c6","8f44c0b1a768b96-17bee5c2e1be9902"]},"geometry":{"type":"LineString","coordinates":[[-83.646613,32.823313],[-83.6474163,32.8238044]]},"id":"8844c0b1a3fffff-17d6f4c7e2987cf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a39a2dd-17dfe3ccd91ec2c6","8f44c0b1a2a6ac1-179ef1c9d7a4dccd"]},"geometry":{"type":"LineString","coordinates":[[-83.6474163,32.8238044],[-83.64824030000001,32.824308300000006]]},"id":"8844c0b1a3fffff-17ffe2cb5ab7fb12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a28458d-13f6e358435c0996","8f44c0b1a285cc3-1396f230a498edc3"]},"geometry":{"type":"LineString","coordinates":[[-83.6476028,32.8250436],[-83.6480758,32.8253289]]},"id":"8a44c0b1a287fff-13bff2c4743918a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6487153,32.8249306]},"id":"8f44c0b1a2a1720-139fe0a0f2a0d1a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a2a1720-139fe0a0f2a0d1a5","8f44c0b1a285cc3-1396f230a498edc3"]},"geometry":{"type":"LineString","coordinates":[[-83.6480758,32.8253289],[-83.6482445,32.825430600000004],[-83.6487153,32.8249306]]},"id":"8944c0b1a2bffff-13d7e160ae53572d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68961970000001,32.8212148]},"id":"8f44c0b198b1a0b-179f7cc3b9ce9f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b1765-17b67d42d26f4456","8f44c0b198b1a0b-179f7cc3b9ce9f6d"]},"geometry":{"type":"LineString","coordinates":[[-83.6894163,32.821273600000005],[-83.6895113,32.8212342],[-83.68961970000001,32.8212148]]},"id":"8b44c0b198b1fff-179e7d0444b89a7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68954670000001,32.8209536]},"id":"8f44c0b198b1922-17fe7cf155d5b9b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b1922-17fe7cf155d5b9b1","8f44c0b198b1a0b-179f7cc3b9ce9f6d"]},"geometry":{"type":"LineString","coordinates":[[-83.68961970000001,32.8212148],[-83.68954670000001,32.8209536]]},"id":"8a44c0b198b7fff-17bffcda8eeb13e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6897644,32.821198100000004]},"id":"8f44c0b198a2616-1796fc69403409b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a2616-1796fc69403409b3","8f44c0b198b1a0b-179f7cc3b9ce9f6d"]},"geometry":{"type":"LineString","coordinates":[[-83.68961970000001,32.8212148],[-83.6897644,32.821198100000004]]},"id":"8944c0b198bffff-17967c9681622ed5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a2d85-17bf7c610e1f4f78","8f44c0b198b5211-17d67cc9f9b3188d"]},"geometry":{"type":"LineString","coordinates":[[-83.6897776,32.8208592],[-83.6896097,32.820893500000004]]},"id":"8944c0b198bffff-17b7fc957b11ccb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b5211-17d67cc9f9b3188d","8f44c0b198b1922-17fe7cf155d5b9b1"]},"geometry":{"type":"LineString","coordinates":[[-83.6896097,32.820893500000004],[-83.68954670000001,32.8209536]]},"id":"8b44c0b198b5fff-17d77cdda7d2cbe3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75177830000001,32.7784355]},"id":"8f44c0b2a335880-179ff5029c9f4823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75358270000001,32.7751376]},"id":"8f44c0b2aaa4991-179de09ad70fea7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b2aaa4991-179de09ad70fea7d","8f44c0b2a335880-179ff5029c9f4823"]},"geometry":{"type":"LineString","coordinates":[[-83.75177830000001,32.7784355],[-83.7516607,32.778531900000004],[-83.75146000000001,32.778610900000004],[-83.75120220000001,32.778662000000004],[-83.7509879,32.778672300000004],[-83.75070600000001,32.7786665],[-83.7504626,32.7786338],[-83.75034670000001,32.778595100000004],[-83.75010610000001,32.7784679],[-83.7500165,32.7783859],[-83.7498843,32.7782274],[-83.7497986,32.7779921],[-83.7497666,32.7778593],[-83.7497874,32.7776902],[-83.7498582,32.777337100000004],[-83.74993040000001,32.777069000000004],[-83.7500533,32.776538800000004],[-83.75014850000001,32.7761918],[-83.75022170000001,32.7760453],[-83.7503398,32.7759093],[-83.7504753,32.775800000000004],[-83.75063440000001,32.7757245],[-83.7508044,32.775666300000005],[-83.7510077,32.7756388],[-83.7511743,32.7756343],[-83.751365,32.775668100000004],[-83.7515118,32.7757108],[-83.7516928,32.7755923],[-83.7518331,32.775478400000004],[-83.75190330000001,32.7753566],[-83.7519728,32.7751096],[-83.7520092,32.774991],[-83.7520442,32.7749532],[-83.7520932,32.774928700000004],[-83.7522953,32.7749329],[-83.7527139,32.774957],[-83.75318220000001,32.7750518],[-83.75358270000001,32.7751376]]},"id":"8744c0b2affffff-13bdf6bdd74ea942"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75258600000001,32.777541500000005]},"id":"8f44c0b2aa9dbb3-17fff309c4ef56cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2aa9d2a2-17f7f34604f98a1d","8f44c0b2aa9dbb3-17fff309c4ef56cf"]},"geometry":{"type":"LineString","coordinates":[[-83.75258600000001,32.777541500000005],[-83.7524896,32.7777395]]},"id":"8b44c0b2aa9dfff-17bdf327e54954cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2aa9d2a2-17f7f34604f98a1d","8f44c0b2a3261b4-17f7e40f69b18132"]},"geometry":{"type":"LineString","coordinates":[[-83.7524896,32.7777395],[-83.7523286,32.777683100000004],[-83.752003,32.7783107],[-83.7521674,32.7783776]]},"id":"8844c0b2abfffff-179ff4004bebd759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7520908,32.7785281]},"id":"8f44c0b2a3267a1-17d5f43f4fd188ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a3267a1-17d5f43f4fd188ee","8f44c0b2a3261b4-17f7e40f69b18132"]},"geometry":{"type":"LineString","coordinates":[[-83.7521674,32.7783776],[-83.7520908,32.7785281]]},"id":"8b44c0b2a326fff-17b5f42754006926"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a3267a1-17d5f43f4fd188ee","8f44c0b2a335880-179ff5029c9f4823"]},"geometry":{"type":"LineString","coordinates":[[-83.75177830000001,32.7784355],[-83.75197920000001,32.7784872],[-83.7520908,32.7785281]]},"id":"8944c0b2a33ffff-17b5e4a03ce5ded2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a3267a1-17d5f43f4fd188ee","8f44c0b2a32676d-17f7f3e94858a874"]},"geometry":{"type":"LineString","coordinates":[[-83.7520908,32.7785281],[-83.7522284,32.7785771]]},"id":"8b44c0b2a326fff-17f7e41449de159a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a324859-17bfe26465c54583","8f44c0b2a32676d-17f7f3e94858a874"]},"geometry":{"type":"LineString","coordinates":[[-83.7522284,32.7785771],[-83.7523704,32.7785914],[-83.7525335,32.778572100000005],[-83.75265540000001,32.778510000000004],[-83.75275380000001,32.778432800000004],[-83.7528506,32.7782824]]},"id":"8a44c0b2a327fff-17d5f310a5d19e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2a324859-17bfe26465c54583","8f44c0b2aa9dbb3-17fff309c4ef56cf"]},"geometry":{"type":"LineString","coordinates":[[-83.7528506,32.7782824],[-83.75289550000001,32.7781656],[-83.75292280000001,32.7780581],[-83.7529379,32.7779557],[-83.7529104,32.777835200000005],[-83.7528412,32.777734800000005],[-83.7526699,32.777579800000005],[-83.75258600000001,32.777541500000005]]},"id":"8944c0b2aabffff-17bde26d3f2c919e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b2aa9dbb3-17fff309c4ef56cf","8f44c0b2a335880-179ff5029c9f4823"]},"geometry":{"type":"LineString","coordinates":[[-83.75258600000001,32.777541500000005],[-83.7524573,32.7775065],[-83.7523578,32.777511100000005],[-83.75225,32.7775545],[-83.7521643,32.777647200000004],[-83.7520942,32.7778265],[-83.75203400000001,32.777959],[-83.75177830000001,32.7784355]]},"id":"8744c0b2affffff-17bdf4307c2e0831"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6834121,32.8225927]},"id":"8f44c0b19ce2a70-13fefbeb703449aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce2a9e-13feac3973e704e5","8f44c0b19ce2a70-13fefbeb703449aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6832873,32.822593000000005],[-83.6834121,32.8225927]]},"id":"8c44c0b19ce2bff-13fe9c12705435bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce464e-13fedb1e4901dd49","8f44c0b19ce2a70-13fefbeb703449aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6834121,32.8225927],[-83.6836952,32.8225915],[-83.68373240000001,32.822548000000005],[-83.6837404,32.8222157]]},"id":"8a44c0b19ce7fff-13b7fb520f61d27d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce464e-13fedb1e4901dd49","8f44c0b19ce04a6-13f79bea89066c83"]},"geometry":{"type":"LineString","coordinates":[[-83.6837404,32.8222157],[-83.68370230000001,32.8221591],[-83.6834256,32.822160700000005],[-83.68341360000001,32.8224113]]},"id":"8a44c0b19ce7fff-13ff9ba743367a13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce04a6-13f79bea89066c83","8f44c0b19ce2a70-13fefbeb703449aa"]},"geometry":{"type":"LineString","coordinates":[[-83.68341360000001,32.8224113],[-83.6834121,32.8225927]]},"id":"8a44c0b19ce7fff-13bfcbeb03fc5ce7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631572,32.831740700000005]},"id":"8f44c0b1b18d829-13bffd5ecf13c3ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d829-13bffd5ecf13c3ea","8f44c0b1b03661c-13bebccbffda267d"]},"geometry":{"type":"LineString","coordinates":[[-83.66339210000001,32.8319139],[-83.66332340000001,32.8317878],[-83.66328940000001,32.8317558],[-83.66321520000001,32.831742500000004],[-83.6631572,32.831740700000005]]},"id":"8844c0b1b1fffff-13f6bd08aaa51a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66295930000001,32.831731600000005]},"id":"8f44c0b1b18dc0d-13befdda77c8695f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d829-13bffd5ecf13c3ea","8f44c0b1b18dc0d-13befdda77c8695f"]},"geometry":{"type":"LineString","coordinates":[[-83.6631572,32.831740700000005],[-83.66295930000001,32.831731600000005]]},"id":"8b44c0b1b18dfff-13bfbd9ca43db3bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629554,32.8317981]},"id":"8f44c0b1b18d1b6-13f7fddce6bf4e78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d1b6-13f7fddce6bf4e78","8f44c0b1b18dc0d-13befdda77c8695f"]},"geometry":{"type":"LineString","coordinates":[[-83.6629554,32.8317981],[-83.66295930000001,32.831731600000005]]},"id":"8c44c0b1b18ddff-13dfbddbb15c3f97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18dc0d-13befdda77c8695f","8f44c0b1b18dd0e-1396fdd7934893a1"]},"geometry":{"type":"LineString","coordinates":[[-83.66295930000001,32.831731600000005],[-83.66296390000001,32.831668400000005]]},"id":"8c44c0b1b18ddff-13b6bdd9070ef774"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66297270000001,32.831506700000006]},"id":"8f44c0b1b1ab7b2-13bfbdd21a74a0fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1ab7b2-13bfbdd21a74a0fa","8f44c0b1b18dd0e-1396fdd7934893a1"]},"geometry":{"type":"LineString","coordinates":[[-83.66296390000001,32.831668400000005],[-83.66297270000001,32.831506700000006]]},"id":"8944c0b1b1bffff-13defdd4d50d9bd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1ab7b2-13bfbdd21a74a0fa","8f44c0b1b1ab456-139efdd05afaa7f8"]},"geometry":{"type":"LineString","coordinates":[[-83.66297270000001,32.831506700000006],[-83.6629755,32.8314575]]},"id":"8c44c0b1b1ab5ff-139efdd13fd2bf86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629829,32.831329000000004]},"id":"8f44c0b1b1ab526-17bebdcbbc4a4727"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1ab526-17bebdcbbc4a4727","8f44c0b1b1ab456-139efdd05afaa7f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6629755,32.8314575],[-83.6629829,32.831329000000004]]},"id":"8b44c0b1b1abfff-17f6fdce09e155e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d92a-1396fd5b5f6cddaf","8f44c0b1b1ab7b2-13bfbdd21a74a0fa"]},"geometry":{"type":"LineString","coordinates":[[-83.66297270000001,32.831506700000006],[-83.6631766,32.831516400000005],[-83.6631627,32.8316772]]},"id":"8944c0b1b1bffff-13d6fd7822987a70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18d829-13bffd5ecf13c3ea","8f44c0b1b18d92a-1396fd5b5f6cddaf"]},"geometry":{"type":"LineString","coordinates":[[-83.6631627,32.8316772],[-83.6631572,32.831740700000005]]},"id":"8c44c0b1b18d9ff-13bebd5d1739d461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66332200000001,32.8321093]},"id":"8f44c0b1b032c5a-13b6fcf7c7dd20c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b032c5a-13b6fcf7c7dd20c7","8f44c0b1b189948-13d7fd8bc8e198b6"]},"geometry":{"type":"LineString","coordinates":[[-83.66332200000001,32.8321093],[-83.66308520000001,32.8321655]]},"id":"8944c0b1b03ffff-13b7fd41c05568f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628464,32.832330400000004]},"id":"8f44c0b1b18908c-13bebe210a7e7912"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18908c-13bebe210a7e7912","8f44c0b1b189948-13d7fd8bc8e198b6"]},"geometry":{"type":"LineString","coordinates":[[-83.66308520000001,32.8321655],[-83.6628507,32.8322389],[-83.6628464,32.832330400000004]]},"id":"8b44c0b1b189fff-13fefde95fd8ef1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66284160000001,32.8324361]},"id":"8f44c0b1b18975e-13f6be240a330cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18908c-13bebe210a7e7912","8f44c0b1b18975e-13f6be240a330cb3"]},"geometry":{"type":"LineString","coordinates":[[-83.6628464,32.832330400000004],[-83.66284160000001,32.8324361]]},"id":"8b44c0b1b189fff-13dfbe228b3d6e03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18975e-13f6be240a330cb3","8f44c0b1b016176-139efe2b5e9d5d2c"]},"geometry":{"type":"LineString","coordinates":[[-83.66284160000001,32.8324361],[-83.6628299,32.8326884]]},"id":"8944c0b1b03ffff-13bffe27be48e7d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6628269,32.8327544]},"id":"8f44c0b1b016075-13b7be2d321d8c63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b016176-139efe2b5e9d5d2c","8f44c0b1b016075-13b7be2d321d8c63"]},"geometry":{"type":"LineString","coordinates":[[-83.6628299,32.8326884],[-83.6628269,32.8327544]]},"id":"8c44c0b1b0161ff-13b6fe2c41c70601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.662996,32.8330739]},"id":"8f44c0b1b010471-13ffbdc38c4dddae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b010471-13ffbdc38c4dddae","8f44c0b1b016075-13b7be2d321d8c63"]},"geometry":{"type":"LineString","coordinates":[[-83.6628269,32.8327544],[-83.6628124,32.833068700000005],[-83.662996,32.8330739]]},"id":"8a44c0b1b017fff-13bebe1e439f6e6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630739,32.8324419]},"id":"8f44c0b1b18936a-13f6bd92da2554e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18936a-13f6bd92da2554e1","8f44c0b1b016075-13b7be2d321d8c63"]},"geometry":{"type":"LineString","coordinates":[[-83.6628269,32.8327544],[-83.6630609,32.8327614],[-83.6630739,32.8324419]]},"id":"8a44c0b1b017fff-1397fdb78e661d3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6630782,32.832338]},"id":"8f44c0b1b189a18-13b7fd90200d41ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b189a18-13b7fd90200d41ad","8f44c0b1b18936a-13f6bd92da2554e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6630739,32.8324419],[-83.6630782,32.832338]]},"id":"8b44c0b1b189fff-13d7fd9180aef361"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b189a18-13b7fd90200d41ad","8f44c0b1b189948-13d7fd8bc8e198b6"]},"geometry":{"type":"LineString","coordinates":[[-83.6630782,32.832338],[-83.66308520000001,32.8321655]]},"id":"8b44c0b1b189fff-13fffd8df531447d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18975e-13f6be240a330cb3","8f44c0b1b18936a-13f6bd92da2554e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6630739,32.8324419],[-83.66284160000001,32.8324361]]},"id":"8b44c0b1b189fff-13f6fddb79c3a45c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b18975e-13f6be240a330cb3","8f44c0b1b18ba01-13fffeae3e295d3f"]},"geometry":{"type":"LineString","coordinates":[[-83.66284160000001,32.8324361],[-83.6626205,32.8324316]]},"id":"8a44c0b1b18ffff-13ffbe692b6a49ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0a510d-13d7bf5af13e89f8","8f44c0b1b016796-13dffebd720bbbe1"]},"geometry":{"type":"LineString","coordinates":[[-83.6623441,32.8327994],[-83.6625961,32.8328156]]},"id":"8844c0b1b1fffff-13debf0c34611636"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b1992e1-13d7f0ff361af174","8f44c0b1b0a6b2a-13dff0f692c47139"]},"geometry":{"type":"LineString","coordinates":[[-83.6616717,32.8323903],[-83.66167730000001,32.8325564],[-83.6616855,32.8325787]]},"id":"8a44c0b1b0a7fff-139ff0fce5459063"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7215601,32.8135099]},"id":"8f44c0b0e2c9c8d-17bfbec8fd903bf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c9c8d-17bfbec8fd903bf6","8f44c0b0e2c9449-17be6ebe1412fa5f"]},"geometry":{"type":"LineString","coordinates":[[-83.72157750000001,32.813687],[-83.7215601,32.8135099]]},"id":"8b44c0b0e2c9fff-17f73ec38973622f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c8959-13f6fef1b316d561","8f44c0b0e2c9c8d-17bfbec8fd903bf6"]},"geometry":{"type":"LineString","coordinates":[[-83.7215601,32.8135099],[-83.7218704,32.8134984],[-83.72193200000001,32.8134275],[-83.7218845,32.8126306],[-83.721823,32.812575200000005],[-83.7215146,32.8125918],[-83.7214589,32.8126389],[-83.72149490000001,32.813169300000006]]},"id":"8844c0b0e3fffff-13fe3e60d79e95ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c9c8d-17bfbec8fd903bf6","8f44c0b0e2c8aeb-13f63ede9cf594a4"]},"geometry":{"type":"LineString","coordinates":[[-83.7215255,32.8133889],[-83.7215601,32.8135099]]},"id":"8a44c0b0e2cffff-1797eed3c12d7767"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b085a4971-13df7832bce001ed","8f44c0b085a4013-13bfe8aad8b3995d"]},"geometry":{"type":"LineString","coordinates":[[-83.7242581,32.8129271],[-83.7240659,32.8131038]]},"id":"8b44c0b085a4fff-1396b86ec3f498a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7232963,32.8126979]},"id":"8f44c0b0e25b99c-13d63a8bd84a3db5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25b99c-13d63a8bd84a3db5","8f44c0b085a4013-13bfe8aad8b3995d"]},"geometry":{"type":"LineString","coordinates":[[-83.7240659,32.8131038],[-83.72402050000001,32.813145500000005],[-83.72371550000001,32.8133046],[-83.7235114,32.813036100000005],[-83.72330290000001,32.8131444],[-83.72308220000001,32.81284],[-83.7232963,32.8126979]]},"id":"8744c0b08ffffff-13b66a13de9bfb28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72356280000001,32.8125541]},"id":"8f44c0b0e259d96-13f679e54ca05cfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25b99c-13d63a8bd84a3db5","8f44c0b0e259d96-13f679e54ca05cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.7232963,32.8126979],[-83.7233791,32.812643],[-83.7235036,32.8125792],[-83.72356280000001,32.8125541]]},"id":"8a44c0b0e25ffff-13963a3a36878088"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e259d96-13f679e54ca05cfd","8f44c0b0e258a48-13d679bb08ce9ac2"]},"geometry":{"type":"LineString","coordinates":[[-83.72356280000001,32.8125541],[-83.7236304,32.8125255]]},"id":"8c44c0b0e258bff-13df69d023e1e384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25d760-139fa93e29f75704","8f44c0b0e258a48-13d679bb08ce9ac2"]},"geometry":{"type":"LineString","coordinates":[[-83.7236304,32.8125255],[-83.72383020000001,32.812441]]},"id":"8a44c0b0e25ffff-13be397c9af46c9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72341130000001,32.8122483]},"id":"8f44c0b0e2589b3-13b73a43f23c37f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25c221-13feb9cd6da8f22e","8f44c0b0e2589b3-13b73a43f23c37f1"]},"geometry":{"type":"LineString","coordinates":[[-83.723601,32.8121481],[-83.72341130000001,32.8122483]]},"id":"8a44c0b0e25ffff-1397ea08ba9c76bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7228281,32.8125565]},"id":"8f44c0b0e25a084-13f7fbb072cfa5c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2589b3-13b73a43f23c37f1","8f44c0b0e25a084-13f7fbb072cfa5c3"]},"geometry":{"type":"LineString","coordinates":[[-83.72341130000001,32.8122483],[-83.7228281,32.8125565]]},"id":"8a44c0b0e25ffff-1397aafa371797df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2589b3-13b73a43f23c37f1","8f44c0b0e25a084-13f7fbb072cfa5c3"]},"geometry":{"type":"LineString","coordinates":[[-83.7228281,32.8125565],[-83.7227616,32.812591600000005],[-83.72287680000001,32.8127257],[-83.7235107,32.81239],[-83.72341130000001,32.8122483]]},"id":"8a44c0b0e25ffff-13de7ae74f6d66fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25a084-13f7fbb072cfa5c3","8f44c0b0e2edda9-139e3ca842972498"]},"geometry":{"type":"LineString","coordinates":[[-83.7228281,32.8125565],[-83.72243160000001,32.8120289]]},"id":"8844c0b0e3fffff-13d6fc2c6e4b1948"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722209,32.812137]},"id":"8f44c0b0e2e8929-13f7ad33645d886b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2e8929-13f7ad33645d886b","8f44c0b0e2edda9-139e3ca842972498"]},"geometry":{"type":"LineString","coordinates":[[-83.72243160000001,32.8120289],[-83.722209,32.812137]]},"id":"8a44c0b0e2effff-13bfeceddb0d3917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72464810000001,32.8129891]},"id":"8f44c0b0e24b14e-13f6373ef4ed4657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e24b14e-13f6373ef4ed4657","8f44c0b0e24b750-13d7f7976256fb55"]},"geometry":{"type":"LineString","coordinates":[[-83.72450660000001,32.813110300000005],[-83.72464810000001,32.8129891]]},"id":"8b44c0b0e24bfff-139e376b3627acd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7245183,32.8128857]},"id":"8f44c0b0e24bc51-13b7b79014b4aac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e24b14e-13f6373ef4ed4657","8f44c0b0e24bc51-13b7b79014b4aac1"]},"geometry":{"type":"LineString","coordinates":[[-83.72464810000001,32.8129891],[-83.72485180000001,32.8130304],[-83.7255054,32.8126893],[-83.725621,32.8126781],[-83.7258262,32.812566000000004],[-83.7255581,32.8122282],[-83.72533940000001,32.8123396],[-83.7246861,32.812708300000004],[-83.72454060000001,32.8128243],[-83.7245183,32.8128857]]},"id":"8844c0b085fffff-139fa5dea489a5dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e24b14e-13f6373ef4ed4657","8f44c0b0e24bc51-13b7b79014b4aac1"]},"geometry":{"type":"LineString","coordinates":[[-83.7245183,32.8128857],[-83.72464810000001,32.8129891]]},"id":"8b44c0b0e24bfff-13d7e7678fbb82c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7252613,32.813092000000005]},"id":"8f44c0b08514c8a-13b6a5bfbf740d47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08514c8a-13b6a5bfbf740d47","8f44c0b08516335-13ff6650ffe6b51f"]},"geometry":{"type":"LineString","coordinates":[[-83.72502890000001,32.8133846],[-83.7251873,32.8131308],[-83.7252613,32.813092000000005]]},"id":"8a44c0b08517fff-139e260f9245dfc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72549640000001,32.813363]},"id":"8f44c0b08514200-13dfe52cc58a90df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08514200-13dfe52cc58a90df","8f44c0b08514c8a-13b6a5bfbf740d47"]},"geometry":{"type":"LineString","coordinates":[[-83.7252613,32.813092000000005],[-83.72605730000001,32.8126744],[-83.72613240000001,32.8126978],[-83.72631200000001,32.8129621],[-83.72549640000001,32.813363]]},"id":"8944c0b0853ffff-13f6b44b3036942c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b08514200-13dfe52cc58a90df","8f44c0b08514c8a-13b6a5bfbf740d47"]},"geometry":{"type":"LineString","coordinates":[[-83.72549640000001,32.813363],[-83.7252613,32.813092000000005]]},"id":"8b44c0b08514fff-139f3576446ce424"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72397000000001,32.812173]},"id":"8f44c0b0e25d826-13fe28e6c92aabd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25d090-13f7b96a6220a9d9","8f44c0b0e25d826-13fe28e6c92aabd0"]},"geometry":{"type":"LineString","coordinates":[[-83.7237594,32.812351500000005],[-83.72397000000001,32.812173]]},"id":"8b44c0b0e25dfff-13bff92891a68752"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72379670000001,32.811957400000004]},"id":"8f44c0b0e2434eb-13f7695317ad3f48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2434eb-13f7695317ad3f48","8f44c0b0e243412-13d67971959ffada"]},"geometry":{"type":"LineString","coordinates":[[-83.72379670000001,32.811957400000004],[-83.7237479,32.811888700000004]]},"id":"8c44c0b0e2435ff-13dff9625275ef9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e242733-17be3a004c5823e3","8f44c0b0e24279c-17d62a2afc22a931"]},"geometry":{"type":"LineString","coordinates":[[-83.7235196,32.8116385],[-83.72345130000001,32.8116768]]},"id":"8c44c0b0e2427ff-17b63a15a13260f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e251ac2-17f72a8961dfc1a1","8f44c0b0e24279c-17d62a2afc22a931"]},"geometry":{"type":"LineString","coordinates":[[-83.72345130000001,32.8116768],[-83.72330020000001,32.811761600000004]]},"id":"8944c0b0e27ffff-17deaa5a3818c2e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7239581,32.8112756]},"id":"8f44c0b0e240d83-17d768ee3a00405f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e251891-17ffeae514e03854","8f44c0b0e240d83-17d768ee3a00405f"]},"geometry":{"type":"LineString","coordinates":[[-83.72315350000001,32.8115644],[-83.7239581,32.8112756]]},"id":"8944c0b0e27ffff-17b7a9e9a8c08825"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7246745,32.810949300000004]},"id":"8f44c0b0e26301e-17ff772e7c2fcdac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e240d83-17d768ee3a00405f","8f44c0b0e26301e-17ff772e7c2fcdac"]},"geometry":{"type":"LineString","coordinates":[[-83.7239581,32.8112756],[-83.7244934,32.8120671],[-83.7252923,32.8116865],[-83.7248083,32.811028900000004],[-83.7246745,32.810949300000004]]},"id":"8944c0b0e27ffff-1796a71c5c71e1db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e240d83-17d768ee3a00405f","8f44c0b0e26301e-17ff772e7c2fcdac"]},"geometry":{"type":"LineString","coordinates":[[-83.7246745,32.810949300000004],[-83.7239581,32.8112756]]},"id":"8944c0b0e27ffff-17f7780e5788d3ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101121,32.8252575]},"id":"8f44c0b0a0f3acd-13fffabbff9310cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f3acd-13fffabbff9310cf","8f44c0b0a0f3aec-13dedabcd72e4d6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7101121,32.8252575],[-83.7101107,32.8252301]]},"id":"8d44c0b0a0f3aff-13f76abc688ba89c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f30d3-13d67b5575940b6f","8f44c0b0a0f3aec-13dedabcd72e4d6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7101107,32.8252301],[-83.7098665,32.825222700000005]]},"id":"8b44c0b0a0f3fff-13d6cb09236976b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f3425-1396eb9c46e0b52a","8f44c0b0a0f30d3-13d67b5575940b6f"]},"geometry":{"type":"LineString","coordinates":[[-83.7098665,32.825222700000005],[-83.70986090000001,32.8251304],[-83.70975320000001,32.8251246]]},"id":"8b44c0b0a0f3fff-13b6db6a47f9abf5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c6561-13df5a950bd46970","8f44c0b0a0c6716-13b6caa36d6c4d6f"]},"geometry":{"type":"LineString","coordinates":[[-83.7101514,32.825556],[-83.7101744,32.8254353]]},"id":"8b44c0b0a0c6fff-13feda9c37843011"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c6528-13d6eab04d50de5e","8f44c0b0a0c6561-13df5a950bd46970"]},"geometry":{"type":"LineString","coordinates":[[-83.7101744,32.8254353],[-83.7101308,32.8254062]]},"id":"8c44c0b0a0c65ff-13d64aa2a7dab9b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7101222,32.8253846]},"id":"8f44c0b0a0c6520-13bf6ab5ab6fb16d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c6520-13bf6ab5ab6fb16d","8f44c0b0a0c6528-13d6eab04d50de5e"]},"geometry":{"type":"LineString","coordinates":[[-83.7101308,32.8254062],[-83.7101222,32.8253846]]},"id":"8d44c0b0a0c653f-13d66ab2fa85d3a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c42b3a2-17fef0c159f7271d","8f44c0b1c428634-13f7f0d1bf62be4d"]},"geometry":{"type":"LineString","coordinates":[[-83.66832430000001,32.7906469],[-83.6682981,32.7902301]]},"id":"8a44c0b1c42ffff-13feb0c987fc809b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c428634-13f7f0d1bf62be4d","8f44c0b1c428ac1-13dfb01b068c7585"]},"geometry":{"type":"LineString","coordinates":[[-83.6682981,32.7902301],[-83.6685904,32.790209700000005]]},"id":"8b44c0b1c428fff-13dff07663e18a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c42c288-139ef02b494c1b66","8f44c0b1c42e31b-13b6f1361bdf1d87"]},"geometry":{"type":"LineString","coordinates":[[-83.66856440000001,32.7898828],[-83.6681375,32.7899204]]},"id":"8a44c0b1c42ffff-139eb0b0bcfe09f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6682246,32.7896718]},"id":"8f44c0b1c42e864-139ef0ffaf76ba7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c42e864-139ef0ffaf76ba7b","8f44c0b1c42e31b-13b6f1361bdf1d87"]},"geometry":{"type":"LineString","coordinates":[[-83.6681375,32.7899204],[-83.6682246,32.7896718]]},"id":"8b44c0b1c42efff-13d6b11ae0c73469"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32905214-13df7bb7e4c3bac3","8f44c0a329054cb-13b73c556fa658b2"]},"geometry":{"type":"LineString","coordinates":[[-83.61795860000001,32.8549367],[-83.6177066,32.8548707]]},"id":"8b44c0a32905fff-13dffc06ae5e6c1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a329054cb-13b73c556fa658b2","8f44c0a329054a9-139f7c67c112557b"]},"geometry":{"type":"LineString","coordinates":[[-83.6177066,32.8548707],[-83.6176772,32.854805500000005]]},"id":"8c44c0a329055ff-13b7fc5e98ffb137"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a329054a9-139f7c67c112557b","8f44c0a32900350-13b77cba700f23c7"]},"geometry":{"type":"LineString","coordinates":[[-83.6176772,32.854805500000005],[-83.61765050000001,32.8547761],[-83.6175599,32.8547522],[-83.6173718,32.8547305],[-83.617283,32.8547494],[-83.61724000000001,32.8548028],[-83.61723,32.8549073],[-83.6172305,32.8549729],[-83.6172463,32.8550082],[-83.61729030000001,32.855033500000005],[-83.6173662,32.8550406],[-83.6175449,32.8550423]]},"id":"8a44c0a32907fff-13b7bd1bdcad3052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32900350-13b77cba700f23c7","8f44c0a32901d8a-13b73c7e50678635"]},"geometry":{"type":"LineString","coordinates":[[-83.6175449,32.8550423],[-83.6176411,32.8550467]]},"id":"8a44c0a32907fff-13b7fc9c6bdb38ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32901d8a-13b73c7e50678635","8f44c0a32901813-13d7ebf9598c5821"]},"geometry":{"type":"LineString","coordinates":[[-83.6176411,32.8550467],[-83.61770010000001,32.8550618],[-83.6178539,32.855097400000005]]},"id":"8b44c0a32901fff-13b77c3be6283da7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.677957,32.8247365]},"id":"8f44c0b195adc21-17b6d93cef122c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b195adc21-17b6d93cef122c71","8f44c0b19513285-17f7b8b74a0c2e12"]},"geometry":{"type":"LineString","coordinates":[[-83.6781708,32.8246395],[-83.677957,32.8247365]]},"id":"8844c0b195fffff-179698fa1bc51ad3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6774096,32.8254861]},"id":"8f44c0b195ab0e2-13feda930a71428b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b195ab0e2-13feda930a71428b","8f44c0b195adc21-17b6d93cef122c71"]},"geometry":{"type":"LineString","coordinates":[[-83.677957,32.8247365],[-83.6778651,32.8246167],[-83.6771897,32.8249443],[-83.67714240000001,32.8250234],[-83.6771513,32.8250915],[-83.6774096,32.8254861]]},"id":"8a44c0b195affff-13be9a797bd8a13a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6782005,32.825077300000004]},"id":"8f44c0b195ad349-13ffd8a4b666be0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b195ab0e2-13feda930a71428b","8f44c0b195ad349-13ffd8a4b666be0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6774096,32.8254861],[-83.67749810000001,32.8256212],[-83.6782333,32.825259],[-83.6782689,32.8252004],[-83.6782562,32.8251554],[-83.6782005,32.825077300000004]]},"id":"8844c0b195fffff-13d7f96f05854bc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b195adc21-17b6d93cef122c71","8f44c0b195ad349-13ffd8a4b666be0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6782005,32.825077300000004],[-83.677957,32.8247365]]},"id":"8a44c0b195affff-139ed8f0dff49642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1951e6e4-13bed8252ec6ebad","8f44c0b195ad349-13ffd8a4b666be0c"]},"geometry":{"type":"LineString","coordinates":[[-83.67840460000001,32.8249741],[-83.6782005,32.825077300000004]]},"id":"8944c0b1953ffff-13df9864e47634b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b195ab0e2-13feda930a71428b","8f44c0b195ad349-13ffd8a4b666be0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6782005,32.825077300000004],[-83.6774096,32.8254861]]},"id":"8a44c0b195affff-13ff999be2f43d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05ce14a5-17f7fb7c74a1becc","8f44c0a05ce1632-17dedb3b5c700fb5"]},"geometry":{"type":"LineString","coordinates":[[-83.68369390000001,32.9024197],[-83.6835897,32.9022783]]},"id":"8b44c0a05ce1fff-17b6ab5bef5dd8bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05ce14a5-17f7fb7c74a1becc","8f44c0a05ce37a4-17ff9c6ce84ea76e"]},"geometry":{"type":"LineString","coordinates":[[-83.6835897,32.9022783],[-83.6831648,32.901701800000005],[-83.68312200000001,32.9016734],[-83.6830678,32.9016691],[-83.6827863,32.9018113],[-83.68276230000001,32.9018567],[-83.68277210000001,32.901903100000006],[-83.683205,32.9024761]]},"id":"8944c0a05cfffff-17d7bca3db585358"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05cc5932-17dfec278aa07785","8f44c0a05ce37a4-17ff9c6ce84ea76e"]},"geometry":{"type":"LineString","coordinates":[[-83.683205,32.9024761],[-83.683316,32.902623000000006]]},"id":"8b44c0a05ce3fff-179f8c4a36d6a7bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66306300000001,32.8365126]},"id":"8f44c0b1b0c2658-17f6fd99a67061a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c2658-17f6fd99a67061a8","8f44c0b1b0d13a0-17dfbe7d86e0e29d"]},"geometry":{"type":"LineString","coordinates":[[-83.66269840000001,32.8365017],[-83.66306300000001,32.8365126]]},"id":"8944c0b1b0fffff-17f7be0b9d018170"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c2ce8-13bfbd9fb79dd08f","8f44c0b1b0c2658-17f6fd99a67061a8"]},"geometry":{"type":"LineString","coordinates":[[-83.66306300000001,32.8365126],[-83.6630533,32.8362192]]},"id":"8b44c0b1b0c2fff-179ebd9ca8dd87da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6634088,32.8362087]},"id":"8f44c0b1b0c0418-13b6fcc184adad13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c0418-13b6fcc184adad13","8f44c0b1b0c0536-13f6bcb96aeacf7f"]},"geometry":{"type":"LineString","coordinates":[[-83.66342180000001,32.8360961],[-83.6634088,32.8362087]]},"id":"8c44c0b1b0c05ff-1397fcbd76a3256d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c0418-13b6fcc184adad13","8f44c0b1b0c3411-17bebd0dfa73993e"]},"geometry":{"type":"LineString","coordinates":[[-83.6634088,32.8362087],[-83.6633281,32.836299700000005],[-83.6633032,32.8363424],[-83.6632865,32.8366208]]},"id":"8a44c0b1b0c7fff-179fbcfae66dfdae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.663284,32.836662700000005]},"id":"8f44c0b1b0c34f1-17d6bd0f8ddd030b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c34f1-17d6bd0f8ddd030b","8f44c0b1b0c3411-17bebd0dfa73993e"]},"geometry":{"type":"LineString","coordinates":[[-83.6632865,32.8366208],[-83.663284,32.836662700000005]]},"id":"8c44c0b1b0c35ff-17b7bd0ecf11ab79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0dc8a8-17b7fd95da8705e3","8f44c0b1b0c2658-17f6fd99a67061a8"]},"geometry":{"type":"LineString","coordinates":[[-83.66306300000001,32.8365126],[-83.6630691,32.836616500000005]]},"id":"8944c0b1b0fffff-1796fd97cb7c9012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0dc8a8-17b7fd95da8705e3","8f44c0b1b0d13a0-17dfbe7d86e0e29d"]},"geometry":{"type":"LineString","coordinates":[[-83.6630691,32.836616500000005],[-83.66303620000001,32.836629900000005],[-83.662693,32.836623100000004],[-83.66269840000001,32.8365017]]},"id":"8944c0b1b0fffff-17b7be26f7d4e2a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6982799,32.8222919]},"id":"8f44c0b0a4b32ed-13be779f1b0efe97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b3a08-13bf7766465219bf","8f44c0b0a4b32ed-13be779f1b0efe97"]},"geometry":{"type":"LineString","coordinates":[[-83.6983708,32.822113900000005],[-83.6982799,32.8222919]]},"id":"8b44c0b0a4b3fff-13f6f782b6e97a80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6982732,32.822490200000004]},"id":"8f44c0b0a495b09-13be67a3485233b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a495b09-13be67a3485233b0","8f44c0b0a4b32ed-13be779f1b0efe97"]},"geometry":{"type":"LineString","coordinates":[[-83.6982799,32.8222919],[-83.6982129,32.822316],[-83.6981447,32.822440900000004],[-83.6982732,32.822490200000004]]},"id":"8944c0b0a4bffff-13fe77ce540334da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6983869,32.8225337]},"id":"8f44c0b0a4866a5-13d7f75c3c993717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a495b09-13be67a3485233b0","8f44c0b0a4866a5-13d7f75c3c993717"]},"geometry":{"type":"LineString","coordinates":[[-83.6982732,32.822490200000004],[-83.6983869,32.8225337]]},"id":"8a44c0b0a487fff-13b6677fb9e24d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.698558,32.8223973]},"id":"8f44c0b0a48602c-13fe76f14970e060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a48602c-13fe76f14970e060","8f44c0b0a4866a5-13d7f75c3c993717"]},"geometry":{"type":"LineString","coordinates":[[-83.6983869,32.8225337],[-83.69849450000001,32.8225749],[-83.69857660000001,32.8224463],[-83.698558,32.8223973]]},"id":"8b44c0b0a486fff-13b7e71163e7cc63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a48602c-13fe76f14970e060","8f44c0b0a48691d-139766ba0ee4605f"]},"geometry":{"type":"LineString","coordinates":[[-83.698558,32.8223973],[-83.6986464,32.8222228]]},"id":"8b44c0b0a486fff-13b7f6d5a068e2a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6984798,32.8223677]},"id":"8f44c0b0a486183-13dff722237e2043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a48602c-13fe76f14970e060","8f44c0b0a486183-13dff722237e2043"]},"geometry":{"type":"LineString","coordinates":[[-83.698558,32.8223973],[-83.6984798,32.8223677]]},"id":"8c44c0b0a4861ff-13f77709bf36cad2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6983646,32.822324]},"id":"8f44c0b0a486500-13d6e76a24d5a5de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a486500-13d6e76a24d5a5de","8f44c0b0a486183-13dff722237e2043"]},"geometry":{"type":"LineString","coordinates":[[-83.6984798,32.8223677],[-83.6983646,32.822324]]},"id":"8b44c0b0a486fff-13de774620e36fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a486500-13d6e76a24d5a5de","8f44c0b0a4b32ed-13be779f1b0efe97"]},"geometry":{"type":"LineString","coordinates":[[-83.6983646,32.822324],[-83.6982799,32.8222919]]},"id":"8944c0b0a4bffff-13b6e784af38b6c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b34e8-13d668518c988973","8f44c0b0a495094-13b768681c4789aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6979944,32.822125],[-83.6978514,32.8223794],[-83.697801,32.8224649],[-83.69779550000001,32.8224907],[-83.69780850000001,32.822514500000004],[-83.6978378,32.8225422],[-83.697878,32.8225525],[-83.69791160000001,32.822547400000005],[-83.6979336,32.8225351],[-83.6979491,32.8225193],[-83.69795830000001,32.822507800000004]]},"id":"8944c0b0a4bffff-13f6789542d05466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b3756-13fff80d9433b09d","8f44c0b0a495094-13b768681c4789aa"]},"geometry":{"type":"LineString","coordinates":[[-83.69795830000001,32.822507800000004],[-83.6980152,32.822454],[-83.6981318,32.8222311],[-83.69811890000001,32.8222116],[-83.69810310000001,32.822188100000005]]},"id":"8944c0b0a4bffff-13d6f82775912261"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4b3776-13df7806e398a4a6","8f44c0b0a4b3756-13fff80d9433b09d"]},"geometry":{"type":"LineString","coordinates":[[-83.69810310000001,32.822188100000005],[-83.6981138,32.8221683]]},"id":"8c44c0b0a4b37ff-13f7680a345d6538"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699087,32.822552900000005]},"id":"8f44c0b0a480965-13dff5a6ad0213cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a484355-1396e57e05d9f0ea","8f44c0b0a480965-13dff5a6ad0213cb"]},"geometry":{"type":"LineString","coordinates":[[-83.69915200000001,32.8224298],[-83.699087,32.822552900000005]]},"id":"8a44c0b0a487fff-13bf659254bd76e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6990591,32.8226092]},"id":"8f44c0b0a480864-13f6e5b813c9f474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a480864-13f6e5b813c9f474","8f44c0b0a480965-13dff5a6ad0213cb"]},"geometry":{"type":"LineString","coordinates":[[-83.699087,32.822552900000005],[-83.6990591,32.8226092]]},"id":"8c44c0b0a4809ff-13f775af5e71369c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69903140000001,32.8226576]},"id":"8f44c0b0a480858-139765c96971b780"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a480858-139765c96971b780","8f44c0b0a480864-13f6e5b813c9f474"]},"geometry":{"type":"LineString","coordinates":[[-83.6990591,32.8226092],[-83.69903140000001,32.8226576]]},"id":"8d44c0b0a48087f-1397e5c0b7f70eb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a480858-139765c96971b780","8f44c0b0a483865-1396e5fe34224259"]},"geometry":{"type":"LineString","coordinates":[[-83.69903140000001,32.8226576],[-83.6989439,32.822622100000004],[-83.69870870000001,32.8230463],[-83.6989078,32.8231246],[-83.69894690000001,32.823047800000005]]},"id":"8a44c0b0a487fff-13b7f63b58886a7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a480858-139765c96971b780","8f44c0b0a483865-1396e5fe34224259"]},"geometry":{"type":"LineString","coordinates":[[-83.69894690000001,32.823047800000005],[-83.69912520000001,32.8226977],[-83.69903140000001,32.8226576]]},"id":"8a44c0b0a487fff-13fe75c108692107"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69891480000001,32.8224845]},"id":"8f44c0b0a4846e1-13b6f61244529323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4846e1-13b6f61244529323","8f44c0b0a480965-13dff5a6ad0213cb"]},"geometry":{"type":"LineString","coordinates":[[-83.699087,32.822552900000005],[-83.69891480000001,32.8224845]]},"id":"8a44c0b0a487fff-13be75dc7edb0f8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4846e1-13b6f61244529323","8f44c0b0a484444-13bf66284befeba6"]},"geometry":{"type":"LineString","coordinates":[[-83.69891480000001,32.8224845],[-83.6988097,32.8224401],[-83.69887960000001,32.8223186]]},"id":"8b44c0b0a484fff-13fe663931961c32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b404e4-17d75eb336da7880","8f44c0a36b40772-17f7fe61bb66b3a6"]},"geometry":{"type":"LineString","coordinates":[[-83.62997490000001,32.8437071],[-83.6298445,32.8436277]]},"id":"8b44c0a36b40fff-17df2e8a79666662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299518,32.843497500000005]},"id":"8f44c0a36b40ce1-17f7fe702dd60443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40ce1-17f7fe702dd60443","8f44c0a36b404e4-17d75eb336da7880"]},"geometry":{"type":"LineString","coordinates":[[-83.6298445,32.8436277],[-83.6299518,32.843497500000005]]},"id":"8b44c0a36b40fff-179fae91b950a12a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40ce1-17f7fe702dd60443","8f44c0a36b40c2d-17df6e5b79a1f21b"]},"geometry":{"type":"LineString","coordinates":[[-83.6299518,32.843497500000005],[-83.62998490000001,32.8434566]]},"id":"8c44c0a36b40dff-17f73e65cfaec362"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b408c1-179f6e037a33d8e5","8f44c0a36b40c2d-17df6e5b79a1f21b"]},"geometry":{"type":"LineString","coordinates":[[-83.62998490000001,32.8434566],[-83.63012570000001,32.843535]]},"id":"8b44c0a36b40fff-17f7ee2f7c1f5224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b4479e-17f76e5fd7a0ccaa","8f44c0a36b440b0-17b7ee24f8dfe4e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6300721,32.843171000000005],[-83.6299779,32.8432758]]},"id":"8b44c0a36b44fff-17d7ae4269a1e6b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6298874,32.843226300000005]},"id":"8f44c0a36b46b04-17df7e9869b42848"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b4479e-17f76e5fd7a0ccaa","8f44c0a36b46b04-17df7e9869b42848"]},"geometry":{"type":"LineString","coordinates":[[-83.6299779,32.8432758],[-83.6298874,32.843226300000005]]},"id":"8a44c0a36b47fff-17d7fe7c241e8a95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b46b04-17df7e9869b42848","8f44c0a36b445a6-17ff0e832ac2716c"]},"geometry":{"type":"LineString","coordinates":[[-83.6298874,32.843226300000005],[-83.62983150000001,32.8431942],[-83.6299214,32.843081600000005]]},"id":"8a44c0a36b47fff-179f3ea284e505c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6297861,32.8434048]},"id":"8f44c0a36b4630b-17bf0ed7bccbe918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b46313-17bf3eec4da941f5","8f44c0a36b4630b-17bf0ed7bccbe918"]},"geometry":{"type":"LineString","coordinates":[[-83.6297861,32.8434048],[-83.62975320000001,32.8433827]]},"id":"8d44c0a36b4633f-17b72ee1f17ff546"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b46313-17bf3eec4da941f5","8f44c0a36b46b04-17df7e9869b42848"]},"geometry":{"type":"LineString","coordinates":[[-83.62975320000001,32.8433827],[-83.6298874,32.843226300000005]]},"id":"8b44c0a36b46fff-17ff5ec25581149e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6299304,32.8434854]},"id":"8f44c0a36b40cf5-17ff6e7d846e4a2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40cf5-17ff6e7d846e4a2b","8f44c0a36b40ce1-17f7fe702dd60443"]},"geometry":{"type":"LineString","coordinates":[[-83.6299518,32.843497500000005],[-83.6299304,32.8434854]]},"id":"8d44c0a36b40cff-17ff2e76d14d1710"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6822228,32.8167629]},"id":"8f44c0b19da4a9b-17beded2ce6d526d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19da4a9b-17beded2ce6d526d","8f44c0b19da44c8-17bfef89b38059f8"]},"geometry":{"type":"LineString","coordinates":[[-83.6819301,32.816763800000004],[-83.6822228,32.8167629]]},"id":"8b44c0b19da4fff-17bfaf2e34d67a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19da4a9b-17beded2ce6d526d","8f44c0b18a4b6f6-17bfee3b29610623"]},"geometry":{"type":"LineString","coordinates":[[-83.6822228,32.8167629],[-83.6824654,32.8167646]]},"id":"8a44c0b19da7fff-17bfee86f4477d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68273740000001,32.8167664]},"id":"8f44c0b18a4b35b-17bf8d912dba21bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4b35b-17bf8d912dba21bb","8f44c0b18a4b6f6-17bfee3b29610623"]},"geometry":{"type":"LineString","coordinates":[[-83.6824654,32.8167646],[-83.68273740000001,32.8167664]]},"id":"8b44c0b18a4bfff-17befde62da753a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4b35b-17bf8d912dba21bb","8f44c0b19d168b6-17b68cf9d6d88737"]},"geometry":{"type":"LineString","coordinates":[[-83.68273740000001,32.8167664],[-83.6829795,32.816768]]},"id":"8844c0b19dfffff-17bf8d4582fe6caa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d14b12-17b6ab7122b30cd9","8f44c0b19d168b6-17b68cf9d6d88737"]},"geometry":{"type":"LineString","coordinates":[[-83.6829795,32.816768],[-83.6836078,32.8167722]]},"id":"8a44c0b19d17fff-17b7dc358e6b4188"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d3485b-13d689be5421e85a","8f44c0b19d14b12-17b6ab7122b30cd9"]},"geometry":{"type":"LineString","coordinates":[[-83.6836078,32.8167722],[-83.68429950000001,32.8167768],[-83.6843035,32.815780000000004]]},"id":"8944c0b19d3ffff-13ff8a18a0d675cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19d3485b-13d689be5421e85a","8f44c0b19d36c23-13d6eb6fc352ce4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6843035,32.815780000000004],[-83.68361,32.8157798]]},"id":"8644c0b1fffffff-13d6fa971f3427d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4caf6-13d6bcececc77088","8f44c0b19d36c23-13d6eb6fc352ce4c"]},"geometry":{"type":"LineString","coordinates":[[-83.68361,32.8157798],[-83.68300020000001,32.815779500000005]]},"id":"8944c0b18a7ffff-13d6dc2e588c69c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4caf6-13d6bcececc77088","8f44c0b18a4c875-13deacefad7d8fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.68300020000001,32.815779500000005],[-83.6829958,32.815609800000004]]},"id":"8b44c0b18a4cfff-1397bcee4b897ed1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6827263,32.815610500000005]},"id":"8f44c0b18a4ccf0-13de9d98139a08e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4ccf0-13de9d98139a08e3","8f44c0b18a4c875-13deacefad7d8fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6829958,32.815609800000004],[-83.6827263,32.815610500000005]]},"id":"8b44c0b18a4cfff-13deed43e65a1217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4ccf0-13de9d98139a08e3","8f44c0b18a4e930-13defe3a5c1da3d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6827263,32.815610500000005],[-83.6824667,32.815611100000005]]},"id":"8a44c0b18a4ffff-13decde936d5aa65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68221460000001,32.815611700000005]},"id":"8f44c0b18a4edb0-13dfded7e6ee86b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4edb0-13dfded7e6ee86b2","8f44c0b18a4e930-13defe3a5c1da3d9"]},"geometry":{"type":"LineString","coordinates":[[-83.6824667,32.815611100000005],[-83.68221460000001,32.815611700000005]]},"id":"8944c0b18a7ffff-13dfae891e846353"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18a4edb0-13dfded7e6ee86b2","8f44c0b19da44c8-17bfef89b38059f8"]},"geometry":{"type":"LineString","coordinates":[[-83.68221460000001,32.815611700000005],[-83.6819409,32.8156124],[-83.6819301,32.816763800000004]]},"id":"8744c0b18ffffff-1396ff754b668931"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6891418,32.8619275]},"id":"8f44c0a205ac69d-13f6fdee600b43f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20585756-13deb00137f7a3fd","8f44c0a205ac69d-13f6fdee600b43f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6882925,32.8620771],[-83.6886472,32.862312100000004],[-83.6887184,32.862332],[-83.6887761,32.8623266],[-83.6891418,32.8619275]]},"id":"8944c0a205bffff-139efee9a16a9ed2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205ac71c-13be7dbadaa8799d","8f44c0a205ac69d-13f6fdee600b43f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6891418,32.8619275],[-83.6892243,32.8618375]]},"id":"8c44c0a205ac7ff-13d6fdd4a54405bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6889318,32.8617957]},"id":"8f44c0a205ae8ce-139e7e71a2de4045"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205ac69d-13f6fdee600b43f9","8f44c0a205ae8ce-139e7e71a2de4045"]},"geometry":{"type":"LineString","coordinates":[[-83.6891418,32.8619275],[-83.6889318,32.8617957]]},"id":"8a44c0a205affff-13d7fe3001adb25f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205aec32-13d77eed58a6e05d","8f44c0a205ae8ce-139e7e71a2de4045"]},"geometry":{"type":"LineString","coordinates":[[-83.6889318,32.8617957],[-83.68889920000001,32.8617335],[-83.6888211,32.8616826],[-83.6887339,32.8616821]]},"id":"8b44c0a205aefff-13fffea6b1e37c54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18429c81-17d6fe8146124f8d","8f44c0b18428645-17dfff1f7e0313a3"]},"geometry":{"type":"LineString","coordinates":[[-83.66269240000001,32.811501400000004],[-83.6624393,32.81149]]},"id":"8a44c0b1842ffff-17d6fed05a14bb5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624314,32.8115502]},"id":"8f44c0b1842b9ae-17f6ff24647b5e7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1842b9ae-17f6ff24647b5e7f","8f44c0b18428645-17dfff1f7e0313a3"]},"geometry":{"type":"LineString","coordinates":[[-83.6624393,32.81149],[-83.6624314,32.8115502]]},"id":"8a44c0b1842ffff-17f6bf21e3ae1916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675847,32.7861157]},"id":"8f44c0b1c531cf3-13def28f9cc48218"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6675331,32.786038500000004]},"id":"8f44c0b1c53036d-13beb2afdc0b391c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c531cf3-13def28f9cc48218","8f44c0b1c53036d-13beb2afdc0b391c"]},"geometry":{"type":"LineString","coordinates":[[-83.6675847,32.7861157],[-83.66768520000001,32.786244],[-83.66803080000001,32.7862498],[-83.6680642,32.786193000000004],[-83.66797580000001,32.7860573],[-83.6675331,32.786038500000004]]},"id":"8944c0b1c53ffff-13fef1fbdb5b317e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c531cf3-13def28f9cc48218","8f44c0b1c53036d-13beb2afdc0b391c"]},"geometry":{"type":"LineString","coordinates":[[-83.6675331,32.786038500000004],[-83.6675847,32.7861157]]},"id":"8c44c0b1c531dff-13d6b29fb2e1ab6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c5308e2-139eb2ec7c19c317","8f44c0b1c53036d-13beb2afdc0b391c"]},"geometry":{"type":"LineString","coordinates":[[-83.6675331,32.786038500000004],[-83.667477,32.7859543],[-83.6674361,32.785805700000004]]},"id":"8b44c0b1c530fff-13f7f2d3a7ae3898"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6680463,32.7858375]},"id":"8f44c0b1c535a73-13bef16f156394c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c535a73-13bef16f156394c6","8f44c0b1c5308e2-139eb2ec7c19c317"]},"geometry":{"type":"LineString","coordinates":[[-83.6674361,32.785805700000004],[-83.66752980000001,32.785817300000005],[-83.6680463,32.7858375]]},"id":"8944c0b1c53ffff-13b6b22dfab638cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11269299-17f7f3b3eafee784","8f44c0b1c536c22-179fb43a42ba5a12"]},"geometry":{"type":"LineString","coordinates":[[-83.66690200000001,32.785400200000005],[-83.667117,32.7853334]]},"id":"8944c0b1127ffff-1796f3f71d2d6368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66779070000001,32.7851242]},"id":"8f44c0b1cc9bdb6-17feb20ed06d7e6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11269299-17f7f3b3eafee784","8f44c0b1cc9bdb6-17feb20ed06d7e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.667117,32.7853334],[-83.66779070000001,32.7851242]]},"id":"8744c0b1cffffff-17b6b2e158a09524"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc9d8b0-17d6b0288589c356","8f44c0b1cc9bdb6-17feb20ed06d7e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.66779070000001,32.7851242],[-83.6680046,32.7852358],[-83.66827550000001,32.785285200000004],[-83.66854810000001,32.7852851],[-83.6685688,32.7846696]]},"id":"8a44c0b1cc9ffff-17f6b0baf72bca37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc9d8b0-17d6b0288589c356","8f44c0b1cc9ead0-17d7b1ead0ebf143"]},"geometry":{"type":"LineString","coordinates":[[-83.6685688,32.7846696],[-83.66857560000001,32.784466300000005],[-83.6685745,32.7843177],[-83.6684608,32.7842367],[-83.6677873,32.7842494],[-83.6678466,32.784655400000005],[-83.6678483,32.784673600000005]]},"id":"8944c0b1ccbffff-1797b11e572e5523"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1cc9ead0-17d7b1ead0ebf143","8f44c0b1cc9bdb6-17feb20ed06d7e6b"]},"geometry":{"type":"LineString","coordinates":[[-83.6678483,32.784673600000005],[-83.6678668,32.7848729],[-83.66779070000001,32.7851242]]},"id":"8a44c0b1cc9ffff-17f7b1ef475262b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671664,32.7848789]},"id":"8f44c0b1126d646-17d7f3950e3d9c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669177,32.784992200000005]},"id":"8f44c0b11269c96-179eb43073fb34a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1126d646-17d7f3950e3d9c93","8f44c0b11269c96-179eb43073fb34a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6671664,32.7848789],[-83.6669177,32.784992200000005]]},"id":"8a44c0b1126ffff-17fef3e2c94ad795"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11269c96-179eb43073fb34a7","8f44c0b1126832b-17ffb44ed35699f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6669177,32.784992200000005],[-83.6668691,32.7849136]]},"id":"8c44c0b112683ff-1797b43fa7e77963"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11268655-179ef4c57ddfda96","8f44c0b1126832b-17ffb44ed35699f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6668691,32.7849136],[-83.6666793,32.784995900000006]]},"id":"8b44c0b11268fff-1796f48a28860bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11269090-17feb3f64b1383f6","8f44c0b11269c96-179eb43073fb34a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6669177,32.784992200000005],[-83.6670108,32.785149100000005]]},"id":"8b44c0b11269fff-17dfb413521093d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11269090-17feb3f64b1383f6","8f44c0b1126ba35-17b6f4729bcb362b"]},"geometry":{"type":"LineString","coordinates":[[-83.6670108,32.785149100000005],[-83.6668119,32.785233500000004]]},"id":"8a44c0b1126ffff-179eb43476355d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186aab0d-13ffbda652d480ef","8f44c0b186f6903-179ebc28a6008cce"]},"geometry":{"type":"LineString","coordinates":[[-83.6636534,32.8202121],[-83.66365350000001,32.820086700000004],[-83.66364080000001,32.820053300000005],[-83.6636127,32.8200401],[-83.66311040000001,32.8200304],[-83.66306,32.8200184],[-83.66303900000001,32.8199788],[-83.6630427,32.819726700000004]]},"id":"8944c0b186bffff-1796bcff7757c6ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186aa198-13f6fe5ce24fb6e2","8f44c0b186aab0d-13ffbda652d480ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6630427,32.819726700000004],[-83.66275060000001,32.8197228]]},"id":"8b44c0b186aafff-13febe0194586e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71741180000001,32.827876700000004]},"id":"8f44c0b0a30c949-17def8e9a4d162b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30c949-17def8e9a4d162b5","8f44c0b0a32ea72-179e383ceaeddd7c"]},"geometry":{"type":"LineString","coordinates":[[-83.71768820000001,32.827184100000004],[-83.71741180000001,32.827876700000004]]},"id":"8a44c0b0a32ffff-17f6b89349a594ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30c949-17def8e9a4d162b5","8f44c0b0a30c3b4-17dff94dc4554e3e"]},"geometry":{"type":"LineString","coordinates":[[-83.71741180000001,32.827876700000004],[-83.71739000000001,32.8279312],[-83.71725160000001,32.8280799]]},"id":"8b44c0b0a30cfff-179779174c9c92c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30b2c5-13d679c43da4acb5","8f44c0b0a30c3b4-17dff94dc4554e3e"]},"geometry":{"type":"LineString","coordinates":[[-83.71725160000001,32.8280799],[-83.7170621,32.8290821]]},"id":"8a44c0b0a30ffff-13973988f5a084b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a225c59-13963a5c2a8ea591","8f44c0b0a30b2c5-13d679c43da4acb5"]},"geometry":{"type":"LineString","coordinates":[[-83.7170621,32.8290821],[-83.7169574,32.8291398],[-83.716819,32.829216]]},"id":"8844c0b0a3fffff-13fe3a10241a182e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71772650000001,32.8279131]},"id":"8f44c0b0a32b02b-17f7b824f83a0da1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a32eb75-17f738287c0a2a6c","8f44c0b0a32b02b-17f7b824f83a0da1"]},"geometry":{"type":"LineString","coordinates":[[-83.7177209,32.8271152],[-83.7178626,32.8271917],[-83.71787730000001,32.827267500000005],[-83.71772940000001,32.827845700000005],[-83.71772650000001,32.8279131]]},"id":"8a44c0b0a32ffff-17d7b7f637cad207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7177176,32.8281171]},"id":"8f44c0b0a30d923-17f7382a8b463144"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30d923-17f7382a8b463144","8f44c0b0a32b02b-17f7b824f83a0da1"]},"geometry":{"type":"LineString","coordinates":[[-83.71772650000001,32.8279131],[-83.71772320000001,32.827988600000005],[-83.7177176,32.8281171]]},"id":"8b44c0b0a32bfff-17b77827cb1037df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a32b471-17f6788be8f5439f","8f44c0b0a32b02b-17f7b824f83a0da1"]},"geometry":{"type":"LineString","coordinates":[[-83.71772650000001,32.8279131],[-83.7175618,32.827911]]},"id":"8b44c0b0a32bfff-17f7385865834427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a30c949-17def8e9a4d162b5","8f44c0b0a32b471-17f6788be8f5439f"]},"geometry":{"type":"LineString","coordinates":[[-83.7175618,32.827911],[-83.71741180000001,32.827876700000004]]},"id":"8a44c0b0a32ffff-17dfb8bac814c39e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6995751,32.815106300000004]},"id":"8f44c0b1d276c2d-13b77475935bf0df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2297ae-17bf645af0930a4b","8f44c0b1d276c2d-13b77475935bf0df"]},"geometry":{"type":"LineString","coordinates":[[-83.6996177,32.8149174],[-83.699585,32.8150114],[-83.6995751,32.815106300000004]]},"id":"8944c0b1d23ffff-17f7e46bbf70ab63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6993745,32.8150939]},"id":"8f44c0b1d22b22a-139ff4f2fe3f7765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d22b22a-139ff4f2fe3f7765","8f44c0b1d276c2d-13b77475935bf0df"]},"geometry":{"type":"LineString","coordinates":[[-83.6995751,32.815106300000004],[-83.6993745,32.8150939]]},"id":"8944c0b1d23ffff-139ff4b4445e769d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d22b6a3-139ff5978edc427b","8f44c0b1d22b22a-139ff4f2fe3f7765"]},"geometry":{"type":"LineString","coordinates":[[-83.6993745,32.8150939],[-83.6991112,32.8150777]]},"id":"8b44c0b1d22bfff-1396e54547f4ccd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d22b6a3-139ff5978edc427b","8f44c0b1d20c84b-17d675f97808ac50"]},"geometry":{"type":"LineString","coordinates":[[-83.6991112,32.8150777],[-83.6989545,32.814982900000004]]},"id":"8a44c0b1d20ffff-17f7f5c8705f45fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2766dd-139ff4a50aa63f6c","8f44c0b1d272db6-1396e503522478e6"]},"geometry":{"type":"LineString","coordinates":[[-83.69934830000001,32.8154668],[-83.6994992,32.8154777]]},"id":"8a44c0b1d277fff-139674d42d648c8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2766dd-139ff4a50aa63f6c","8f44c0b1d2729b4-139f7487edb215d3"]},"geometry":{"type":"LineString","coordinates":[[-83.6994992,32.8154777],[-83.69954580000001,32.8154807]]},"id":"8c44c0b1d2767ff-139ee4967f0673a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2761b0-13df7479faa46366","8f44c0b1d2729b4-139f7487edb215d3"]},"geometry":{"type":"LineString","coordinates":[[-83.69954580000001,32.8154807],[-83.69956810000001,32.815195700000004]]},"id":"8a44c0b1d277fff-13b66480e81e0021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2761b0-13df7479faa46366","8f44c0b1d276c2d-13b77475935bf0df"]},"geometry":{"type":"LineString","coordinates":[[-83.69956810000001,32.815195700000004],[-83.6995751,32.815106300000004]]},"id":"8b44c0b1d276fff-13bf6477cd29238a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66310920000001,32.825612500000005]},"id":"8f44c0b1bd5c2dd-13d7fd7cc38d4965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bd58a4c-13f7bd54f041e258","8f44c0b1bd5c2dd-13d7fd7cc38d4965"]},"geometry":{"type":"LineString","coordinates":[[-83.6631729,32.8258841],[-83.6631775,32.825620900000004],[-83.66310920000001,32.825612500000005]]},"id":"8a44c0b1bd5ffff-139ffd57a3fe5fb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6629123,32.8254502]},"id":"8f44c0b1bd5c7a5-13f6fdf7d8dbca77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bd5e80d-13bfbe82dc450295","8f44c0b1bd5c7a5-13f6fdf7d8dbca77"]},"geometry":{"type":"LineString","coordinates":[[-83.6629123,32.8254502],[-83.6629096,32.825386300000005],[-83.6626899,32.825362500000004]]},"id":"8a44c0b1bd5ffff-13bfbe2e9a12a98a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaebba8-17ffef96daae5717","8f44c0b0aaeb958-17beef9e2e17e4d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7212307,32.8271262],[-83.721219,32.8270222]]},"id":"8b44c0b0aaebfff-17df6f9a86721703"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeb958-17beef9e2e17e4d3","8f44c0b0aaeaac4-17ff30742aa9557a"]},"geometry":{"type":"LineString","coordinates":[[-83.721219,32.8270222],[-83.72128550000001,32.826885600000004],[-83.7209426,32.826759100000004],[-83.72087660000001,32.8268976]]},"id":"8a44c0b0aaeffff-17df7fe965f5eb3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeaac4-17ff30742aa9557a","8f44c0b0aaea22d-17b6f092bef55bb3"]},"geometry":{"type":"LineString","coordinates":[[-83.72087660000001,32.8268976],[-83.7208277,32.8269869]]},"id":"8b44c0b0aaeafff-1796f0836111e4e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aacc706-17fef164fb16acaf","8f44c0b0aacc4f0-17df31b1877071d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7203688,32.827285],[-83.7204913,32.8273294]]},"id":"8b44c0b0aaccfff-17ff318b42516aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aacc35d-17b630ccd6e468b0","8f44c0b0aacc706-17fef164fb16acaf"]},"geometry":{"type":"LineString","coordinates":[[-83.7204913,32.8273294],[-83.72073470000001,32.827417700000005]]},"id":"8b44c0b0aaccfff-1796b118e52c62d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66977410000001,32.8807297]},"id":"8f44c0a226dca1e-13debd373d8a9333"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226de271-13feee7b29a59f08","8f44c0a226dca1e-13debd373d8a9333"]},"geometry":{"type":"LineString","coordinates":[[-83.6692558,32.8809926],[-83.6692347,32.8808675],[-83.6694966,32.8807312],[-83.6696891,32.880635600000005],[-83.66977410000001,32.8807297]]},"id":"8a44c0a226dffff-13f6bdf51b8e42e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226de271-13feee7b29a59f08","8f44c0a226dca1e-13debd373d8a9333"]},"geometry":{"type":"LineString","coordinates":[[-83.66977410000001,32.8807297],[-83.6692558,32.8809926]]},"id":"8a44c0a226dffff-13bebdd9225163b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226db166-13d7ee0c9c80824d","8f44c0a226d9588-1396ad9d11887dd5"]},"geometry":{"type":"LineString","coordinates":[[-83.6694327,32.8815222],[-83.66961110000001,32.8814176]]},"id":"8a44c0a226dffff-13b6bdd4d7d6e455"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226dd329-13d6fc6b036bc326","8f44c0a226d9588-1396ad9d11887dd5"]},"geometry":{"type":"LineString","coordinates":[[-83.66961110000001,32.8814176],[-83.6701008,32.8811303]]},"id":"8a44c0a226dffff-13beed04126c932b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66911950000001,32.8807599]},"id":"8f44c0a226de11e-13fefed052366ff2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d2db63-13d7bf4edfff9b62","8f44c0a226de11e-13fefed052366ff2"]},"geometry":{"type":"LineString","coordinates":[[-83.6689171,32.8809011],[-83.66911950000001,32.8807599]]},"id":"8b44c0a226defff-1397bf0f991f2b5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6691701,32.8807246]},"id":"8f44c0a226de125-13d6eeb0bb8077ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226de125-13d6eeb0bb8077ec","8f44c0a226de11e-13fefed052366ff2"]},"geometry":{"type":"LineString","coordinates":[[-83.66911950000001,32.8807599],[-83.6691701,32.8807246]]},"id":"8d44c0a226de13f-13dffec08c6d92a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6690105,32.8805581]},"id":"8f44c0a226d3a4e-17feff147735d5e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226d38e8-179fbf64d5183c26","8f44c0a226d3a4e-17feff147735d5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6690105,32.8805581],[-83.6688819,32.8804049]]},"id":"8b44c0a226d3fff-17beff3ca93469dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855618a-13b7be438c582809","8f44c0b18556b9c-13b7fdd330057564"]},"geometry":{"type":"LineString","coordinates":[[-83.6629709,32.809986800000004],[-83.6627912,32.8099897]]},"id":"8b44c0b18556fff-13b6be0b56b2ea5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6627069,32.809988700000005]},"id":"8f44c0b1855655e-13b6fe7832fc26d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855655e-13b6fe7832fc26d2","8f44c0b1855618a-13b7be438c582809"]},"geometry":{"type":"LineString","coordinates":[[-83.6627912,32.8099897],[-83.6627069,32.809988700000005]]},"id":"8b44c0b18556fff-13b7fe5de1acadfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626974,32.810336]},"id":"8f44c0b18552c41-17febe7e2a1637a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855655e-13b6fe7832fc26d2","8f44c0b18552c41-17febe7e2a1637a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6627069,32.809988700000005],[-83.66245520000001,32.8099951],[-83.66230660000001,32.8100219],[-83.6622514,32.8100505],[-83.66221,32.810093200000004],[-83.662193,32.8101335],[-83.6621873,32.810194200000005],[-83.6622138,32.8102322],[-83.6622605,32.810282900000004],[-83.6623088,32.8103111],[-83.66238890000001,32.810330300000004],[-83.6626974,32.810336]]},"id":"8844c0b185fffff-179fff2f40e552e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855288d-17fffe486f5b4d98","8f44c0b18552c41-17febe7e2a1637a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6626974,32.810336],[-83.66278340000001,32.8103381]]},"id":"8b44c0b18552fff-17febe6348c37d3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855288d-17fffe486f5b4d98","8f44c0b185504aa-17ffbdd82884d5c1"]},"geometry":{"type":"LineString","coordinates":[[-83.66278340000001,32.8103381],[-83.662963,32.8103417]]},"id":"8a44c0b18557fff-17fefe104d4e07d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772d19-13f7b3e74439140c","8f44c0a367764e3-13ff33e5058ad077"]},"geometry":{"type":"LineString","coordinates":[[-83.61460960000001,32.848217600000005],[-83.61460600000001,32.8484217]]},"id":"8a44c0a36777fff-13b7f3e6222834a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772d19-13f7b3e74439140c","8f44c0a3670d2cc-13b734618d9c5f63"]},"geometry":{"type":"LineString","coordinates":[[-83.61460600000001,32.8484217],[-83.6144618,32.8484722],[-83.61441040000001,32.848513700000005]]},"id":"8844c0a367fffff-13973426ca6dfb1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3670d2cc-13b734618d9c5f63","8f44c0a36709828-13df3493407d139e"]},"geometry":{"type":"LineString","coordinates":[[-83.61441040000001,32.848513700000005],[-83.6143308,32.8485778]]},"id":"8a44c0a3670ffff-13d7347a619440ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6146473,32.8486356]},"id":"8f44c0a367720a9-13ff73cd79d3e911"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772444-13fff40b8104c0f1","8f44c0a367720a9-13ff73cd79d3e911"]},"geometry":{"type":"LineString","coordinates":[[-83.614548,32.8486366],[-83.6146473,32.8486356]]},"id":"8b44c0a36772fff-13ffb3ec743f7687"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61464670000001,32.8484756]},"id":"8f44c0a36772c75-139f73cdd6b7af7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772c75-139f73cdd6b7af7e","8f44c0a36772c08-139f33e60591b1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.61464670000001,32.8484756],[-83.614608,32.848475300000004]]},"id":"8c44c0a36772dff-139f33d9e74fde14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096983,32.817973800000004]},"id":"8f44c0b0ac430eb-17b7ebbe9b5f83c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac430eb-17b7ebbe9b5f83c3","8f44c0b0ac5dac5-13b66b9f1f16090b"]},"geometry":{"type":"LineString","coordinates":[[-83.7097487,32.818413400000004],[-83.7097337,32.818308800000004],[-83.7096985,32.8182392],[-83.709694,32.818166600000005],[-83.7096983,32.817973800000004]]},"id":"8944c0b0ac7ffff-17be7bb7290d7b8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac430eb-17b7ebbe9b5f83c3","8f44c0b0ac406e2-17df7bbc05f7fe1a"]},"geometry":{"type":"LineString","coordinates":[[-83.7096983,32.817973800000004],[-83.70970240000001,32.8176567]]},"id":"8a44c0b0ac47fff-17bedbbd57575ab5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70965170000001,32.8176647]},"id":"8f44c0b0ac43d25-17f67bdbb62a75b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac43d25-17f67bdbb62a75b1","8f44c0b0ac406e2-17df7bbc05f7fe1a"]},"geometry":{"type":"LineString","coordinates":[[-83.70970240000001,32.8176567],[-83.70965170000001,32.8176647]]},"id":"8c44c0b0ac407ff-17dffbcbd9ede61e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70958970000001,32.8176779]},"id":"8f44c0b0ac43d16-17fefc0276132367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac43d16-17fefc0276132367","8f44c0b0ac43d25-17f67bdbb62a75b1"]},"geometry":{"type":"LineString","coordinates":[[-83.70965170000001,32.8176647],[-83.70958970000001,32.8176779]]},"id":"8d44c0b0ac43d3f-17f6dbef1c12d882"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70951330000001,32.817694100000004]},"id":"8f44c0b0ac42365-17f6dc3231ff6291"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac43d16-17fefc0276132367","8f44c0b0ac42365-17f6dc3231ff6291"]},"geometry":{"type":"LineString","coordinates":[[-83.70958970000001,32.8176779],[-83.70951330000001,32.817694100000004]]},"id":"8a44c0b0ac47fff-17ffcc1a591139a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.709592,32.817971]},"id":"8f44c0b0ac43733-179fec0106d64abd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7096509,32.817973300000006]},"id":"8f44c0b0ac430d3-17b75bdc36a1c9e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac430d3-17b75bdc36a1c9e3","8f44c0b0ac43733-179fec0106d64abd"]},"geometry":{"type":"LineString","coordinates":[[-83.709592,32.817971],[-83.7096509,32.817973300000006]]},"id":"8b44c0b0ac43fff-17b6ebeea854122f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac430eb-17b7ebbe9b5f83c3","8f44c0b0ac430d3-17b75bdc36a1c9e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7096509,32.817973300000006],[-83.7096983,32.817973800000004]]},"id":"8d44c0b0ac430ff-17b7cbcd615f5712"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7071945,32.8071313]},"id":"8f44c0b1db6a44b-17bf51db71d59867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db6a44b-17bf51db71d59867","8f44c0b1db6a335-17bf514b9d861ccd"]},"geometry":{"type":"LineString","coordinates":[[-83.7074247,32.807138],[-83.7071945,32.8071313]]},"id":"8b44c0b1db6afff-17bf71938bdf8a26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db418ee-1796d274ecd527da","8f44c0b1db6a44b-17bf51db71d59867"]},"geometry":{"type":"LineString","coordinates":[[-83.7071945,32.8071313],[-83.7071825,32.8070487],[-83.7071794,32.8070347],[-83.7071693,32.807015],[-83.70715770000001,32.8070042],[-83.70714170000001,32.8069995],[-83.7071191,32.806997700000004],[-83.7070911,32.8069993],[-83.70706100000001,32.807008700000004],[-83.7069944,32.8070548],[-83.70694900000001,32.807095600000004]]},"id":"8944c0b1db7ffff-17f7f21924500bbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db418ee-1796d274ecd527da","8f44c0b1db41173-17b6729a35864e67"]},"geometry":{"type":"LineString","coordinates":[[-83.70694900000001,32.807095600000004],[-83.7068893,32.8071494]]},"id":"8b44c0b1db41fff-17b7d287955606f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db43b4e-17967343894decd0","8f44c0b1db41173-17b6729a35864e67"]},"geometry":{"type":"LineString","coordinates":[[-83.7068893,32.8071494],[-83.70687500000001,32.8071623],[-83.7067533,32.807328600000005],[-83.70661840000001,32.8073027]]},"id":"8a44c0b1db47fff-17fe52e54f7f4202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db6a44b-17bf51db71d59867","8f44c0b1db6a7ac-17b7f1db677d69ea"]},"geometry":{"type":"LineString","coordinates":[[-83.7071945,32.8071313],[-83.70719460000001,32.807154600000004]]},"id":"8c44c0b1db6a7ff-17b671db71a04caa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70719550000001,32.8073205]},"id":"8f44c0b1db4cd63-179f51dadc0186de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db6a7ac-17b7f1db677d69ea","8f44c0b1db4cd63-179f51dadc0186de"]},"geometry":{"type":"LineString","coordinates":[[-83.70719460000001,32.807154600000004],[-83.70719550000001,32.8073205]]},"id":"8944c0b1db7ffff-17ffd1db1e403d37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6857468,32.8414671]},"id":"8f44c0a26989b0e-13fef63842a0ac2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2698db72-17f7e5dba682f0cb","8f44c0a26989b0e-13fef63842a0ac2a"]},"geometry":{"type":"LineString","coordinates":[[-83.685895,32.8410494],[-83.6858251,32.8412464],[-83.6857468,32.8414671]]},"id":"8844c0a269fffff-17fee609fc8b1b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26814495-13df86858cf4bdc8","8f44c0a26989b0e-13fef63842a0ac2a"]},"geometry":{"type":"LineString","coordinates":[[-83.6857468,32.8414671],[-83.68562320000001,32.8418192]]},"id":"8944c0a2683ffff-13ff865ee4e051e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6857837,32.8418559]},"id":"8f44c0a26814468-13fff621398db281"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26814495-13df86858cf4bdc8","8f44c0a26814468-13fff621398db281"]},"geometry":{"type":"LineString","coordinates":[[-83.68562320000001,32.8418192],[-83.6857837,32.8418559]]},"id":"8c44c0a268145ff-13f686536c8c4b1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68610910000001,32.8415601]},"id":"8f44c0a2683220c-13b79555d1cff847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2683220c-13b79555d1cff847","8f44c0a26989b0e-13fef63842a0ac2a"]},"geometry":{"type":"LineString","coordinates":[[-83.6857468,32.8414671],[-83.6859716,32.8415248],[-83.68610910000001,32.8415601]]},"id":"8944c0a2683ffff-139e85c70b672f67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68634820000001,32.841780400000005]},"id":"8f44c0a268330c2-13d6c4c066fa59db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2683220c-13b79555d1cff847","8f44c0a268330c2-13d6c4c066fa59db"]},"geometry":{"type":"LineString","coordinates":[[-83.68610910000001,32.8415601],[-83.6860539,32.841715],[-83.68634820000001,32.841780400000005]]},"id":"8a44c0a26837fff-13968536bd595103"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68629,32.8419785]},"id":"8f44c0a2681599c-13be94e4c0b9aee6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a268330c2-13d6c4c066fa59db","8f44c0a2681599c-13be94e4c0b9aee6"]},"geometry":{"type":"LineString","coordinates":[[-83.68634820000001,32.841780400000005],[-83.68629,32.8419785]]},"id":"8944c0a2683ffff-13feb4d2957638f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2681599c-13be94e4c0b9aee6","8f44c0a26813964-1396f5fea19f0f34"]},"geometry":{"type":"LineString","coordinates":[[-83.68629,32.8419785],[-83.6862522,32.8421074],[-83.6859072,32.8423603],[-83.685839,32.8425071]]},"id":"8a44c0a26817fff-13f7f56ee99bebce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26815842-13f7c4a4badad676","8f44c0a2681599c-13be94e4c0b9aee6"]},"geometry":{"type":"LineString","coordinates":[[-83.68629,32.8419785],[-83.68639250000001,32.8420636]]},"id":"8c44c0a268159ff-13d7b4c4c55a948e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26815842-13f7c4a4badad676","8f44c0a26806681-13de843a6ea6aafe"]},"geometry":{"type":"LineString","coordinates":[[-83.68639250000001,32.8420636],[-83.6865626,32.842204800000005]]},"id":"8944c0a2683ffff-139fe46f8f6df4a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26830744-13d6c479d46c75fa","8f44c0a2683220c-13b79555d1cff847"]},"geometry":{"type":"LineString","coordinates":[[-83.68610910000001,32.8415601],[-83.6862057,32.841317000000004],[-83.6864611,32.841402800000004]]},"id":"8a44c0a26837fff-13d6a4ffdec5a1cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26830759-13fea480d42bcee4","8f44c0a26830744-13d6c479d46c75fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6864611,32.841402800000004],[-83.6864499,32.8414402]]},"id":"8d44c0a2683077f-13f6f47d5c6579ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26830759-13fea480d42bcee4","8f44c0a268330c2-13d6c4c066fa59db"]},"geometry":{"type":"LineString","coordinates":[[-83.6864499,32.8414402],[-83.68634820000001,32.841780400000005]]},"id":"8a44c0a26837fff-13d6f4a0af5fc827"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e4c20db-1796f2cb0aef6f6c","8f44c0b0e4d4b42-13d7f3d966104a0c"]},"geometry":{"type":"LineString","coordinates":[[-83.70637860000001,32.8032799],[-83.7063724,32.803417200000005],[-83.7063531,32.803485300000006],[-83.706332,32.803595800000004],[-83.7063279,32.803954600000004],[-83.7063383,32.803978900000004],[-83.70637740000001,32.8040013],[-83.7064371,32.804020900000005],[-83.7068112,32.8040206]]},"id":"8944c0b0e4fffff-17fed3b56c9134f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e4c20db-1796f2cb0aef6f6c","8f44c0b0e4c0252-1796d148ede274f6"]},"geometry":{"type":"LineString","coordinates":[[-83.7068112,32.8040206],[-83.707429,32.80402]]},"id":"8a44c0b0e4c7fff-1796f209ff464e42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6163473,32.8474707]},"id":"8f44c0a360dd0f5-17b73fa6f6dc745c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360dd0f5-17b73fa6f6dc745c","8f44c0a360ddb49-17b7beef67b654e6"]},"geometry":{"type":"LineString","coordinates":[[-83.616641,32.8474649],[-83.6163473,32.8474707]]},"id":"8944c0a360fffff-17b76f4b3fca21f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360dd0f5-17b73fa6f6dc745c","8f44c0a360d8193-17b7b0fa30a5b3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6163473,32.8474707],[-83.61607570000001,32.8474762],[-83.6160215,32.8474863],[-83.61595840000001,32.847492800000005],[-83.61580450000001,32.8474953]]},"id":"8a44c0a360dffff-17bf3050a08cf377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36729c36-17dfb3629580d5d9","8f44c0a360d8193-17b7b0fa30a5b3c8"]},"geometry":{"type":"LineString","coordinates":[[-83.61580450000001,32.8474953],[-83.61504430000001,32.8475076],[-83.6148702,32.8475659],[-83.61481830000001,32.8475624]]},"id":"8844c0a367fffff-17bfb23088ce6cd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36729c36-17dfb3629580d5d9","8f44c0a3672806c-179ff3ce7c5f6975"]},"geometry":{"type":"LineString","coordinates":[[-83.61481830000001,32.8475624],[-83.6147296,32.8475132],[-83.61464570000001,32.8474607]]},"id":"8a44c0a3672ffff-17bf7398ff6494ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6145645,32.84741]},"id":"8f44c0a36728004-17ff7401394ccea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36728004-17ff7401394ccea6","8f44c0a3672806c-179ff3ce7c5f6975"]},"geometry":{"type":"LineString","coordinates":[[-83.61464570000001,32.8474607],[-83.6145645,32.84741]]},"id":"8c44c0a367281ff-179f33e7d6c8d129"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36728c99-17d7b4657ef459b5","8f44c0a36728004-17ff7401394ccea6"]},"geometry":{"type":"LineString","coordinates":[[-83.6145645,32.84741],[-83.6144041,32.847309700000004]]},"id":"8b44c0a36728fff-17dff4335f9209b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36728004-17ff7401394ccea6","8f44c0a3672baf2-13bf73ed99bc7703"]},"geometry":{"type":"LineString","coordinates":[[-83.6145645,32.84741],[-83.6144855,32.847478100000004],[-83.61444300000001,32.8475284],[-83.61440610000001,32.847591300000005],[-83.6143981,32.847657500000004],[-83.6143983,32.8477523],[-83.6144072,32.847804000000004],[-83.6144385,32.847853400000005],[-83.6144845,32.8478851],[-83.61457080000001,32.847915300000004],[-83.61459590000001,32.8479156]]},"id":"8a44c0a3672ffff-17bff44371ad7b15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3672961b-13bfb36a0e5c1a79","8f44c0a3672baf2-13bf73ed99bc7703"]},"geometry":{"type":"LineString","coordinates":[[-83.61459590000001,32.8479156],[-83.6148064,32.8479179]]},"id":"8a44c0a3672ffff-13bf33abd9a29ae8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61574230000001,32.8479285]},"id":"8f44c0a360db1a9-13d7712116fef472"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360db1a9-13d7712116fef472","8f44c0a3672961b-13bfb36a0e5c1a79"]},"geometry":{"type":"LineString","coordinates":[[-83.6148064,32.8479179],[-83.61574230000001,32.8479285]]},"id":"8844c0a367fffff-13d732458c3437b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360dd0f5-17b73fa6f6dc745c","8f44c0a360d9835-17b76fa8cfaceb36"]},"geometry":{"type":"LineString","coordinates":[[-83.6163473,32.8474707],[-83.6163444,32.847698]]},"id":"8a44c0a360dffff-17ff6fa7e5902435"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72011160000001,32.814377300000004]},"id":"8f44c0b0a962011-17dff25249630a88"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a962a22-17df71cdcd152ed1","8f44c0b0a962011-17dff25249630a88"]},"geometry":{"type":"LineString","coordinates":[[-83.7203236,32.8143797],[-83.72011160000001,32.814377300000004]]},"id":"8b44c0b0a962fff-17deb2100828f7eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72009440000001,32.8150342]},"id":"8f44c0b0a9442ea-17f6725d0cc815f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a9442ea-17f6725d0cc815f9","8f44c0b0a962011-17dff25249630a88"]},"geometry":{"type":"LineString","coordinates":[[-83.72011160000001,32.814377300000004],[-83.71940880000001,32.814369400000004],[-83.719392,32.815028600000005],[-83.72009440000001,32.8150342]]},"id":"8944c0b0a97ffff-17b6737950a3d85b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a9442ea-17f6725d0cc815f9","8f44c0b0a962011-17dff25249630a88"]},"geometry":{"type":"LineString","coordinates":[[-83.72009440000001,32.8150342],[-83.72011160000001,32.814377300000004]]},"id":"8944c0b0a97ffff-17b73257a6c0e694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63065370000001,32.8437955]},"id":"8f44c0a36b6a589-17bf3cb9718e82e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6ad05-17b70c533273b076","8f44c0a36b6a589-17bf3cb9718e82e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6308173,32.8436064],[-83.63065370000001,32.8437955]]},"id":"8b44c0a36b6afff-17f72c865f263225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6a589-17bf3cb9718e82e9","8f44c0a36b45601-17dfad49ccd6f965"]},"geometry":{"type":"LineString","coordinates":[[-83.63065370000001,32.8437955],[-83.6304228,32.843645800000004]]},"id":"8a44c0a36b47fff-17ff7d01a3c82278"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63059700000001,32.843907200000004]},"id":"8f44c0a36b41b1d-17f70cdcefcfe93c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6a589-17bf3cb9718e82e9","8f44c0a36b41b1d-17f70cdcefcfe93c"]},"geometry":{"type":"LineString","coordinates":[[-83.63065370000001,32.8437955],[-83.6306457,32.843853200000005],[-83.63059700000001,32.843907200000004]]},"id":"8a44c0a36b47fff-17d7acc5ced8a6bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6302174,32.8437576]},"id":"8f44c0a36b40369-17978dca2ee52459"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b41d8d-17973da0f0e87931","8f44c0a36b40369-17978dca2ee52459"]},"geometry":{"type":"LineString","coordinates":[[-83.6302833,32.843752300000006],[-83.6302174,32.8437576]]},"id":"8c44c0a36b41dff-1797edb583a10ee2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40369-17978dca2ee52459","8f44c0a36b4000a-17d7fe3a4c6e5895"]},"geometry":{"type":"LineString","coordinates":[[-83.6302174,32.8437576],[-83.630038,32.8436351]]},"id":"8b44c0a36b40fff-17ff4e02323b2dcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66330470000001,32.82143]},"id":"8f44c0b186d4286-1797fd0299020a72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186d4286-1797fd0299020a72","8f44c0b186d04e0-13debdcab589974e"]},"geometry":{"type":"LineString","coordinates":[[-83.66330470000001,32.82143],[-83.6630633,32.8214258],[-83.6630128,32.8214472],[-83.66298850000001,32.8214902],[-83.66298450000001,32.8217258]]},"id":"8a44c0b186d7fff-17d6fd9260331f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186d4286-1797fd0299020a72","8f44c0b186d04e0-13debdcab589974e"]},"geometry":{"type":"LineString","coordinates":[[-83.66298450000001,32.8217258],[-83.6629834,32.8217912],[-83.66300220000001,32.8218276],[-83.66305,32.8218444],[-83.6632981,32.8218484],[-83.66334450000001,32.8218304],[-83.6633674,32.8217911],[-83.6633747,32.8214984],[-83.6633542,32.8214532],[-83.66330470000001,32.82143]]},"id":"8a44c0b186d7fff-13dffd27c1d5355c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68134930000001,32.8237535]},"id":"8f44c0b19cd3455-17bff0f4b8a11642"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681228,32.823906400000006]},"id":"8f44c0b1952caec-179f9140838a0b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952caec-179f9140838a0b93","8f44c0b19cd3455-17bff0f4b8a11642"]},"geometry":{"type":"LineString","coordinates":[[-83.68134930000001,32.8237535],[-83.68137580000001,32.8237694],[-83.681374,32.8238258],[-83.681228,32.823906400000006]]},"id":"8744c0b19ffffff-17f6f103fa8853aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952caec-179f9140838a0b93","8f44c0b1952dc18-17fff11b51209f22"]},"geometry":{"type":"LineString","coordinates":[[-83.681228,32.823906400000006],[-83.68128750000001,32.8240287]]},"id":"8a44c0b1952ffff-17d7d12deb217875"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68120920000001,32.8236623]},"id":"8f44c0b1952c960-1796f14c47d54815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6812343,32.8237705]},"id":"8f44c0b1952cb22-17de913c969c2502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952c960-1796f14c47d54815","8f44c0b1952cb22-17de913c969c2502"]},"geometry":{"type":"LineString","coordinates":[[-83.68120920000001,32.8236623],[-83.68120660000001,32.8237218],[-83.6812355,32.8237486],[-83.6812343,32.8237705]]},"id":"8b44c0b1952cfff-17be91475928dd9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952c960-1796f14c47d54815","8f44c0b19cd2068-1797b14361ed4ae5"]},"geometry":{"type":"LineString","coordinates":[[-83.68122340000001,32.8234555],[-83.6812136,32.8236003],[-83.68120920000001,32.8236623]]},"id":"8a44c0b19cd7fff-17d6d147c2f10af1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68124590000001,32.8236847]},"id":"8f44c0b19cd359e-1796f1355d012f08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952c960-1796f14c47d54815","8f44c0b19cd359e-1796f1355d012f08"]},"geometry":{"type":"LineString","coordinates":[[-83.68120920000001,32.8236623],[-83.68124590000001,32.8236847]]},"id":"8a44c0b19cd7fff-179ff140ce557a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6812285,32.823869]},"id":"8f44c0b1952ca0c-1796b1403462a649"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952ca0c-1796b1403462a649","8f44c0b1952caec-179f9140838a0b93"]},"geometry":{"type":"LineString","coordinates":[[-83.6812285,32.823869],[-83.681228,32.823906400000006]]},"id":"8c44c0b1952cbff-1797d1406aeaeb0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328ab024-13bf7454b38e50fd","8f44c0a328ad315-13bf72b53855a8de"]},"geometry":{"type":"LineString","coordinates":[[-83.61509570000001,32.8587654],[-83.61479200000001,32.859281100000004],[-83.6147432,32.859301200000004],[-83.6146949,32.8592998],[-83.6144309,32.8591828]]},"id":"8a44c0a328affff-1397f36674de8709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328ab024-13bf7454b38e50fd","8f44c0a328ab541-13bff4ab904148e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6144309,32.8591828],[-83.6143943,32.8591818],[-83.61429190000001,32.8591871]]},"id":"8b44c0a328abfff-13bff4802396b6a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61310250000001,32.859396100000005]},"id":"8f44c0a3289d829-17d7b792fb364ef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3289d326-17bfb7a02ef86b4d","8f44c0a3289d829-17d7b792fb364ef9"]},"geometry":{"type":"LineString","coordinates":[[-83.6130814,32.859596],[-83.61310250000001,32.859396100000005]]},"id":"8b44c0a3289dfff-1797379989c5afdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6131548,32.8593995]},"id":"8f44c0a3289d948-17d7b7724c818916"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3289d829-17d7b792fb364ef9","8f44c0a3289d948-17d7b7724c818916"]},"geometry":{"type":"LineString","coordinates":[[-83.61310250000001,32.859396100000005],[-83.6129442,32.8593841],[-83.612983,32.859023900000004],[-83.61319440000001,32.8590381],[-83.6131548,32.8593995]]},"id":"8944c0a328bffff-13dfb7a989fedce8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3289d829-17d7b792fb364ef9","8f44c0a3289d948-17d7b7724c818916"]},"geometry":{"type":"LineString","coordinates":[[-83.6131548,32.8593995],[-83.61310250000001,32.859396100000005]]},"id":"8c44c0a3289d9ff-17d7b7829f58cade"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878657,32.785715]},"id":"8f44c0b034aa5a9-13dfe10bf9d5918b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03485af3-17f68106f240aae6","8f44c0b034aa5a9-13dfe10bf9d5918b"]},"geometry":{"type":"LineString","coordinates":[[-83.68787370000001,32.7855104],[-83.6878657,32.785715]]},"id":"8a44c0b03487fff-139ff109742ae315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034aa5a9-13dfe10bf9d5918b","8f44c0b034aa4c6-139ed10f1e3e6e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6878657,32.785715],[-83.6878607,32.7858085]]},"id":"8c44c0b034aa5ff-13ffa10d8d59db39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68818250000001,32.7858217]},"id":"8f44c0b034aaa98-13b69045f38fefb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034aaa98-13b69045f38fefb5","8f44c0b034aa4c6-139ed10f1e3e6e3a"]},"geometry":{"type":"LineString","coordinates":[[-83.6878607,32.7858085],[-83.68818250000001,32.7858217]]},"id":"8b44c0b034aafff-139ef0aa881af019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68821600000001,32.7857803]},"id":"8f44c0b034aaaa5-139eb0310f7b8ed7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034aaa98-13b69045f38fefb5","8f44c0b034aaaa5-139eb0310f7b8ed7"]},"geometry":{"type":"LineString","coordinates":[[-83.68818250000001,32.7858217],[-83.68821600000001,32.7857803]]},"id":"8d44c0b034aaabf-1397a03b75d5bf30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034a878a-13977fbf8b51e8da","8f44c0b034aaaa5-139eb0310f7b8ed7"]},"geometry":{"type":"LineString","coordinates":[[-83.68821600000001,32.7857803],[-83.6883976,32.7857779]]},"id":"8a44c0b034affff-1397fff84ca855fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034ab599-13b7a044f402faf4","8f44c0b034aaa98-13b69045f38fefb5"]},"geometry":{"type":"LineString","coordinates":[[-83.68818250000001,32.7858217],[-83.6881841,32.786057]]},"id":"8a44c0b034affff-13fea04576b940d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034aa164-13f7f053008ae296","8f44c0b034aaaa5-139eb0310f7b8ed7"]},"geometry":{"type":"LineString","coordinates":[[-83.6881616,32.7857247],[-83.68821600000001,32.7857803]]},"id":"8b44c0b034aafff-13f7d0420daf8177"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26305b65-17b6d128c1f45525","8f44c0a26305156-17b6c1c2b138383a"]},"geometry":{"type":"LineString","coordinates":[[-83.68781960000001,32.853610100000004],[-83.68757330000001,32.8536068]]},"id":"8944c0a2633ffff-17b7d175c658e735"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630551b-179fe249e980a59c","8f44c0a26305156-17b6c1c2b138383a"]},"geometry":{"type":"LineString","coordinates":[[-83.68757330000001,32.8536068],[-83.687357,32.8535806]]},"id":"8b44c0a26305fff-179e92064e7d1b14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630551b-179fe249e980a59c","8f44c0a26300931-17feb2b79910ca4d"]},"geometry":{"type":"LineString","coordinates":[[-83.687357,32.8535806],[-83.68718150000001,32.8535211]]},"id":"8a44c0a26307fff-17ffd280b80ad608"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26300931-17feb2b79910ca4d","8f44c0a26322423-17d7c2da1ff15f76"]},"geometry":{"type":"LineString","coordinates":[[-83.68718150000001,32.8535211],[-83.68712520000001,32.8532795],[-83.6871261,32.852926700000005],[-83.6871263,32.8528412]]},"id":"8944c0a2633ffff-179782d43b53808c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6876505,32.8540176]},"id":"8f44c0a26301b28-17b781927b722fee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26301b28-17b781927b722fee","8f44c0a2632a731-17b6f12d58e52fa5"]},"geometry":{"type":"LineString","coordinates":[[-83.6878123,32.854019900000004],[-83.6876505,32.8540176]]},"id":"8944c0a2633ffff-17b7c15fe6fd9ba6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26301b28-17b781927b722fee","8f44c0a26301ba2-17b6d1c82d607cdf"]},"geometry":{"type":"LineString","coordinates":[[-83.6876505,32.8540176],[-83.6875646,32.8540165]]},"id":"8c44c0a26301bff-17b6a1ad51ef72e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26301ba2-17b6d1c82d607cdf","8f44c0a26301195-179ed24cf6b76cd1"]},"geometry":{"type":"LineString","coordinates":[[-83.6875646,32.8540165],[-83.6873521,32.854013300000005]]},"id":"8b44c0a26301fff-179fd20a9b295ce1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26301195-179ed24cf6b76cd1","8f44c0a263015a9-179f92a0d99472b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6873521,32.854013300000005],[-83.68721790000001,32.8540113]]},"id":"8b44c0a26301fff-179fb276ef4f56f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a263015a9-179f92a0d99472b0","8f44c0a26303b4d-179fa2a27fd0a2f5"]},"geometry":{"type":"LineString","coordinates":[[-83.68721790000001,32.8540113],[-83.6872153,32.8541874]]},"id":"8b44c0a26301fff-17d6a2a1a87beef4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630ccf6-17bee1907179e18d","8f44c0a2630cd83-1796b1960956a5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6876537,32.854263],[-83.6876448,32.8541955]]},"id":"8c44c0a2630cdff-17b7d19345e24ae1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26301b28-17b781927b722fee","8f44c0a2630cd83-1796b1960956a5b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6876448,32.8541955],[-83.6876505,32.8540176]]},"id":"8944c0a2633ffff-17de919443badca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1102c072-179fc48ad8813821","8f44c0b1115354b-17bee3b9b8f8f39f"]},"geometry":{"type":"LineString","coordinates":[[-83.6605541,32.774395000000005],[-83.6603216,32.7744846],[-83.66021950000001,32.774524]]},"id":"8844c0b111fffff-17f7f422411d1abc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11021a0d-17d7e4f9cb769dac","8f44c0b1102c072-179fc48ad8813821"]},"geometry":{"type":"LineString","coordinates":[[-83.66021950000001,32.774524],[-83.6594539,32.774819300000004],[-83.6592945,32.7745041],[-83.660042,32.7742066]]},"id":"8944c0b1103ffff-179ec5d88e2d68fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11021a0d-17d7e4f9cb769dac","8f44c0b11152305-17b7f40f70cddbbf"]},"geometry":{"type":"LineString","coordinates":[[-83.660042,32.7742066],[-83.6602012,32.7742479],[-83.6604169,32.7741555]]},"id":"8844c0b111fffff-17dee48328fd99bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7185125,32.826634500000004]},"id":"8f44c0b0aad074e-17d6b639b8d013fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad065d-17ff7646d0a738ba","8f44c0b0aad074e-17d6b639b8d013fe"]},"geometry":{"type":"LineString","coordinates":[[-83.7184915,32.826693500000005],[-83.7185125,32.826634500000004]]},"id":"8c44c0b0aad07ff-17df36404150114b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad074e-17d6b639b8d013fe","8f44c0b0aad6314-13df36d3d1d17d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.7185125,32.826634500000004],[-83.71845780000001,32.8266134],[-83.71842570000001,32.8265831],[-83.7182659,32.8262544]]},"id":"8a44c0b0aad7fff-13de769155022ddb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7182726,32.825415500000005]},"id":"8f44c0b0aa8d79d-13deb6cfa416d456"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad6314-13df36d3d1d17d2a","8f44c0b0aa8d79d-13deb6cfa416d456"]},"geometry":{"type":"LineString","coordinates":[[-83.7182659,32.8262544],[-83.718244,32.8262094],[-83.71822010000001,32.8261161],[-83.7182245,32.8255411],[-83.7182726,32.825415500000005]]},"id":"8844c0b0abfffff-13d6b6eaa20abcb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7180574,32.8248814]},"id":"8f44c0b0aa8cc6b-17fef7562033377c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa8cc6b-17fef7562033377c","8f44c0b0aa8d79d-13deb6cfa416d456"]},"geometry":{"type":"LineString","coordinates":[[-83.7182726,32.825415500000005],[-83.7182812,32.8253384],[-83.7182677,32.8252246],[-83.7182523,32.825180700000004],[-83.71810470000001,32.824943000000005],[-83.7180574,32.8248814]]},"id":"8a44c0b0aa8ffff-139e76fae2fb0582"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7177944,32.8248441]},"id":"8f44c0b0aa812e0-17f7b7fa84316531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa8cc6b-17fef7562033377c","8f44c0b0aa812e0-17f7b7fa84316531"]},"geometry":{"type":"LineString","coordinates":[[-83.7180574,32.8248814],[-83.7180103,32.8248576],[-83.717956,32.8248388],[-83.71789480000001,32.8248304],[-83.71784550000001,32.8248327],[-83.7177944,32.8248441]]},"id":"8a44c0b0aa8ffff-17f7f7a6d59e4334"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7175074,32.8246034]},"id":"8f44c0b0aa81436-17d738ade4938f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa81436-17d738ade4938f38","8f44c0b0aa812e0-17f7b7fa84316531"]},"geometry":{"type":"LineString","coordinates":[[-83.7177944,32.8248441],[-83.7175002,32.8250673],[-83.71721600000001,32.824832400000005],[-83.7175074,32.8246034]]},"id":"8944c0b0aabffff-17fe78ce4811263a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa81436-17d738ade4938f38","8f44c0b0aa812e0-17f7b7fa84316531"]},"geometry":{"type":"LineString","coordinates":[[-83.7175074,32.8246034],[-83.7177944,32.8248441]]},"id":"8b44c0b0aa81fff-179e785437764e7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad034b-17df35c1219cc4ee","8f44c0b0aad074e-17d6b639b8d013fe"]},"geometry":{"type":"LineString","coordinates":[[-83.7185125,32.826634500000004],[-83.7186344,32.8266563],[-83.7187054,32.8266641]]},"id":"8b44c0b0aad0fff-17d6f5fd9525c89f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aad034b-17df35c1219cc4ee","8f44c0b0aaf100b-13f7b37d492790d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7187054,32.8266641],[-83.7188,32.8267049],[-83.71888100000001,32.8267247],[-83.71898540000001,32.8267376],[-83.71908420000001,32.8267341],[-83.7191904,32.8267171],[-83.7192971,32.8266847],[-83.71940000000001,32.826637600000005],[-83.71948300000001,32.8265667],[-83.71954260000001,32.8264872],[-83.71959030000001,32.826401700000005],[-83.71962070000001,32.8263067],[-83.7196364,32.826215600000005],[-83.719639,32.8261155],[-83.71964100000001,32.826014],[-83.7196438,32.825934600000004],[-83.7196332,32.825884300000006]]},"id":"8944c0b0aafffff-13f73435e3faf754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaf0836-13be3429ef0e92d6","8f44c0b0aaf100b-13f7b37d492790d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7196332,32.825884300000006],[-83.719357,32.825357100000005]]},"id":"8a44c0b0aaf7fff-13def3d392cf2379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71924010000001,32.825257900000004]},"id":"8f44c0b0aaf46ab-13fe3472f25e268f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaf0836-13be3429ef0e92d6","8f44c0b0aaf46ab-13fe3472f25e268f"]},"geometry":{"type":"LineString","coordinates":[[-83.719357,32.825357100000005],[-83.7192971,32.8253118],[-83.71924010000001,32.825257900000004]]},"id":"8a44c0b0aaf7fff-139e344f429f7ef9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaf46ab-13fe3472f25e268f","8f44c0b0aa8d79d-13deb6cfa416d456"]},"geometry":{"type":"LineString","coordinates":[[-83.71924010000001,32.825257900000004],[-83.7191701,32.825220900000005],[-83.71909720000001,32.825206800000004],[-83.7189991,32.8252],[-83.7189292,32.825204400000004],[-83.7188538,32.8252238],[-83.7183803,32.8254001],[-83.7182726,32.825415500000005]]},"id":"8844c0b0abfffff-13fe75a13d057247"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71931090000001,32.8246519]},"id":"8f44c0b0aa1a41c-17ff7446b1cd8488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa1a41c-17ff7446b1cd8488","8f44c0b0aaf46ab-13fe3472f25e268f"]},"geometry":{"type":"LineString","coordinates":[[-83.71924010000001,32.825257900000004],[-83.71928050000001,32.825192200000004],[-83.7192981,32.8251648],[-83.719302,32.8251368],[-83.71931090000001,32.8246519]]},"id":"8844c0b0abfffff-13b7344dd7ca322c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa8cc6b-17fef7562033377c","8f44c0b0aa1a41c-17ff7446b1cd8488"]},"geometry":{"type":"LineString","coordinates":[[-83.71931090000001,32.8246519],[-83.71922310000001,32.824658500000005],[-83.71910240000001,32.824651200000005],[-83.7189876,32.8246355],[-83.71874890000001,32.824592],[-83.7186973,32.8245902],[-83.7186372,32.824596500000006],[-83.7185723,32.8246075],[-83.7185044,32.8246253],[-83.71836230000001,32.8246855],[-83.718321,32.8247085],[-83.7180574,32.8248814]]},"id":"8844c0b0abfffff-17ffb5dc6587d590"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719762,32.824397600000005]},"id":"8f44c0b0aa1e274-17d6b32cc2bc0e57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa1a41c-17ff7446b1cd8488","8f44c0b0aa1e274-17d6b32cc2bc0e57"]},"geometry":{"type":"LineString","coordinates":[[-83.71931090000001,32.8246519],[-83.7193802,32.8245755],[-83.7195837,32.824453500000004],[-83.719762,32.824397600000005]]},"id":"8944c0b0aa3ffff-179633c236e379fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72029760000001,32.8242135]},"id":"8f44c0b0aa1cacc-17df71de0e468365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa1cacc-17df71de0e468365","8f44c0b0aa1e274-17d6b32cc2bc0e57"]},"geometry":{"type":"LineString","coordinates":[[-83.719762,32.824397600000005],[-83.719837,32.8245355],[-83.72004790000001,32.8247019],[-83.72045220000001,32.8245634],[-83.72029760000001,32.8242135]]},"id":"8a44c0b0aa1ffff-17b7323129e55386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa1cacc-17df71de0e468365","8f44c0b0aa1e274-17d6b32cc2bc0e57"]},"geometry":{"type":"LineString","coordinates":[[-83.72029760000001,32.8242135],[-83.719762,32.824397600000005]]},"id":"8a44c0b0aa1ffff-1797328565e493be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc1ca65-13df777693bb86dd","8f44c0b0bc3120e-17fee705684dc834"]},"geometry":{"type":"LineString","coordinates":[[-83.7247402,32.8305902],[-83.724356,32.831108300000004],[-83.72435150000001,32.8312837],[-83.7245359,32.8315087],[-83.7245774,32.831585600000004],[-83.72455910000001,32.8317591]]},"id":"8944c0b0bc3ffff-17d62798ded4530f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc1ca65-13df777693bb86dd","8f44c0b0bc032ad-13d636ce766649dc"]},"geometry":{"type":"LineString","coordinates":[[-83.72455910000001,32.8317591],[-83.72482810000001,32.8317795]]},"id":"8944c0b0bc3ffff-13dff72284e9b5d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476811,32.8143486]},"id":"8f44c0b1a100643-17d7e3275f789061"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100643-17d7e3275f789061","8f44c0b1a10028d-17def2ecac87aa3d"]},"geometry":{"type":"LineString","coordinates":[[-83.6476811,32.8143486],[-83.64777500000001,32.8143493]]},"id":"8b44c0b1a100fff-17dee309f8e949bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a10028d-17def2ecac87aa3d","8f44c0b1a1002e5-17def2cca3ab90e0"]},"geometry":{"type":"LineString","coordinates":[[-83.64777500000001,32.8143493],[-83.64782620000001,32.8143497]]},"id":"8c44c0b1a1003ff-17def2dca6f18a34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6479159,32.8143503]},"id":"8f44c0b1a101c91-17def29494fb9e7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1002e5-17def2cca3ab90e0","8f44c0b1a101c91-17def29494fb9e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.64782620000001,32.8143497],[-83.6479159,32.8143503]]},"id":"8a44c0b1a107fff-17dee2b096e4bb3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64801270000001,32.814351]},"id":"8f44c0b1a101c0a-17dfe2581a74896b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a101c0a-17dfe2581a74896b","8f44c0b1a101c91-17def29494fb9e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6479159,32.8143503],[-83.64801270000001,32.814351]]},"id":"8c44c0b1a101dff-17dff27658a9e03d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a101c0a-17dfe2581a74896b","8f44c0b1a1018a3-17dff207cd9d9c71"]},"geometry":{"type":"LineString","coordinates":[[-83.64801270000001,32.814351],[-83.64814120000001,32.8143517]]},"id":"8b44c0b1a101fff-17dfe22fea6632dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a12ad4c-17ffe0f7de08f26d","8f44c0b1a1018a3-17dff207cd9d9c71"]},"geometry":{"type":"LineString","coordinates":[[-83.64814120000001,32.8143517],[-83.6485725,32.814355],[-83.6485763,32.814222400000006]]},"id":"8944c0b1a13ffff-17d7f161064adf6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6480164,32.814177900000004]},"id":"8f44c0b1a100b4d-17dff255c854eea8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100b4d-17dff255c854eea8","8f44c0b1a105752-17dff2051f3add41"]},"geometry":{"type":"LineString","coordinates":[[-83.6481455,32.8141787],[-83.6480164,32.814177900000004]]},"id":"8b44c0b1a105fff-17dff22d67100ae0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64792080000001,32.8141764]},"id":"8f44c0b1a100a00-17dee2918cbf67ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100b4d-17dff255c854eea8","8f44c0b1a100a00-17dee2918cbf67ed"]},"geometry":{"type":"LineString","coordinates":[[-83.6480164,32.814177900000004],[-83.64792080000001,32.8141764]]},"id":"8c44c0b1a100bff-17dee273a3146307"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100a94-17dff2cc1b603264","8f44c0b1a100a00-17dee2918cbf67ed"]},"geometry":{"type":"LineString","coordinates":[[-83.64792080000001,32.8141764],[-83.6478271,32.8141751]]},"id":"8b44c0b1a100fff-17dfe2aedc2694ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6476811,32.814173000000004]},"id":"8f44c0b1a100085-17dee327585856bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100a94-17dff2cc1b603264","8f44c0b1a100085-17dee327585856bb"]},"geometry":{"type":"LineString","coordinates":[[-83.6478271,32.8141751],[-83.6476811,32.814173000000004]]},"id":"8c44c0b1a1001ff-17def2f9b5ee641f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.723084,32.829765200000004]},"id":"8f44c0b0bd88933-13ff6b1087088b41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd88933-13ff6b1087088b41","8f44c0b0bd8c6ae-13d67b6874a6ff14"]},"geometry":{"type":"LineString","coordinates":[[-83.72294330000001,32.8296967],[-83.723084,32.829765200000004]]},"id":"8b44c0b0bd8cfff-13d7eb3c77665240"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd8d09c-17be2a5c133ed379","8f44c0b0bd88933-13ff6b1087088b41"]},"geometry":{"type":"LineString","coordinates":[[-83.723084,32.829765200000004],[-83.72314300000001,32.8297939],[-83.7232515,32.8298371],[-83.7233444,32.8298744],[-83.7233727,32.8298946]]},"id":"8a44c0b0bd8ffff-1796bab5a603ff08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd8d230-179729f8702d4b33","8f44c0b0bd8d09c-17be2a5c133ed379"]},"geometry":{"type":"LineString","coordinates":[[-83.7233727,32.8298946],[-83.7235321,32.830008]]},"id":"8b44c0b0bd8dfff-17dfba2a4e393c81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd8d230-179729f8702d4b33","8f44c0b0bc32315-17b7390fd4c6e9e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7235321,32.830008],[-83.72371360000001,32.830137300000004],[-83.7238574,32.830233],[-83.7239043,32.8302867]]},"id":"8844c0b0bdfffff-17d779818e63816b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7240258,32.8304721]},"id":"8f44c0b0bc33509-17b738c3e3626ddd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc33509-17b738c3e3626ddd","8f44c0b0bc32315-17b7390fd4c6e9e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7239043,32.8302867],[-83.7239495,32.8303383],[-83.7240258,32.8304721]]},"id":"8a44c0b0bc37fff-17ff68e77f5fb7e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7238622,32.830713100000004]},"id":"8f44c0b0bc14ac3-17bfb92a28adbfde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc33509-17b738c3e3626ddd","8f44c0b0bc14ac3-17bfb92a28adbfde"]},"geometry":{"type":"LineString","coordinates":[[-83.7240258,32.8304721],[-83.7238622,32.830713100000004]]},"id":"8944c0b0bc3ffff-17f668f7006fcf86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc33509-17b738c3e3626ddd","8f44c0b0bc14ac3-17bfb92a28adbfde"]},"geometry":{"type":"LineString","coordinates":[[-83.7238622,32.830713100000004],[-83.72368200000001,32.8309786],[-83.7236484,32.831059],[-83.72364780000001,32.8311173],[-83.72371240000001,32.831161],[-83.72382010000001,32.8311851],[-83.7238899,32.8311835],[-83.72397260000001,32.8311347],[-83.7240598,32.8310357],[-83.72430440000001,32.830681000000006],[-83.7242997,32.8306406],[-83.72426390000001,32.8306022],[-83.7240258,32.8304721]]},"id":"8944c0b0bc3ffff-17bfe8e38693af69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7231526,32.8303445]},"id":"8f44c0b0bd894ee-17d77ae5a7f4ef66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd894ee-17d77ae5a7f4ef66","8f44c0b0bd8d6c8-17beaa6e9c872529"]},"geometry":{"type":"LineString","coordinates":[[-83.7231526,32.8303445],[-83.72334310000001,32.8300938]]},"id":"8b44c0b0bd89fff-17972aaa16a4d3da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd89830-17d63a3941ce83eb","8f44c0b0bd8d6c8-17beaa6e9c872529"]},"geometry":{"type":"LineString","coordinates":[[-83.72334310000001,32.8300938],[-83.7234284,32.8301411]]},"id":"8b44c0b0bd89fff-17d77a53ff88c32b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd89830-17d63a3941ce83eb","8f44c0b0bc3275d-17d6b96232bd4585"]},"geometry":{"type":"LineString","coordinates":[[-83.7234284,32.8301411],[-83.72377250000001,32.8303371]]},"id":"8844c0b0bdfffff-179779cdb73e8263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd88933-13ff6b1087088b41","8f44c0b0bd894ee-17d77ae5a7f4ef66"]},"geometry":{"type":"LineString","coordinates":[[-83.723084,32.829765200000004],[-83.7228123,32.8301457],[-83.7228151,32.830158000000004],[-83.72309100000001,32.8303086],[-83.7231526,32.8303445]]},"id":"8a44c0b0bd8ffff-17b63b5c93cbaf37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc1418b-17ff69ad2da86b94","8f44c0b0bd894ee-17d77ae5a7f4ef66"]},"geometry":{"type":"LineString","coordinates":[[-83.7231526,32.8303445],[-83.7233279,32.8304466],[-83.723523,32.8305518],[-83.72365260000001,32.830613400000004]]},"id":"8844c0b0bdfffff-17be3a4aded1ff74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bc1418b-17ff69ad2da86b94","8f44c0b0bc14ac3-17bfb92a28adbfde"]},"geometry":{"type":"LineString","coordinates":[[-83.72365260000001,32.830613400000004],[-83.7238622,32.830713100000004]]},"id":"8b44c0b0bc14fff-179ea96ba4327717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c41810-17bf3e717c9dfdf7","8f44c0a32c45662-17ff7e719da2263f"]},"geometry":{"type":"LineString","coordinates":[[-83.6102889,32.8595874],[-83.6102887,32.859462900000004]]},"id":"8a44c0a32c47fff-17977e718a453f99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6102879,32.8593679]},"id":"8f44c0a32c450d3-17b7fe7218b4c922"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c450d3-17b7fe7218b4c922","8f44c0a32c45662-17ff7e719da2263f"]},"geometry":{"type":"LineString","coordinates":[[-83.6102887,32.859462900000004],[-83.6102879,32.8593679]]},"id":"8b44c0a32c45fff-17dfbe71d1aca579"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6105828,32.859242800000004]},"id":"8f44c0a32c6e4d3-13f7fdb9c9882e5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c450d3-17b7fe7218b4c922","8f44c0a32c6e4d3-13f7fdb9c9882e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6102879,32.8593679],[-83.61028710000001,32.859283500000004],[-83.61029740000001,32.8592522],[-83.6103308,32.8592419],[-83.6105828,32.859242800000004]]},"id":"8944c0a32c7ffff-13fffe2ebd957e94"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6ed74-13d7bd381243f5f0","8f44c0a32c6e4d3-13f7fdb9c9882e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6105828,32.859242800000004],[-83.61064350000001,32.859146800000005],[-83.6106439,32.8590862],[-83.61067270000001,32.859042200000005],[-83.6107171,32.8590183],[-83.6107903,32.8589946]]},"id":"8b44c0a32c6efff-139f3d84f1dffbb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6ac10-17ffbdbb3a588a53","8f44c0a32c6a545-17bf7dbc05c6367b"]},"geometry":{"type":"LineString","coordinates":[[-83.6105792,32.8595893],[-83.61058050000001,32.8594651]]},"id":"8b44c0a32c6afff-1797bdbb9c02283f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6ac10-17ffbdbb3a588a53","8f44c0a32c6ada1-17dffdbad39c610f"]},"geometry":{"type":"LineString","coordinates":[[-83.61058050000001,32.8594651],[-83.6105811,32.8594093]]},"id":"8c44c0a32c6adff-17df7dbb046dee13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.61058150000001,32.8593701]},"id":"8f44c0a32c45a41-17b77dba9726ca93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c6ada1-17dffdbad39c610f","8f44c0a32c45a41-17b77dba9726ca93"]},"geometry":{"type":"LineString","coordinates":[[-83.6105811,32.8594093],[-83.61058150000001,32.8593701]]},"id":"8a44c0a32c6ffff-17bfbdbab311c8d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c45a41-17b77dba9726ca93","8f44c0a32c6e4d3-13f7fdb9c9882e5e"]},"geometry":{"type":"LineString","coordinates":[[-83.61058150000001,32.8593701],[-83.6105828,32.859242800000004]]},"id":"8a44c0a32c6ffff-179fbdba3fc79645"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a184a94-179eeaaf153f683b","8f44c0b1a1a32ea-17def988aab4252b"]},"geometry":{"type":"LineString","coordinates":[[-83.64459670000001,32.814483800000005],[-83.64483170000001,32.8145745],[-83.6449092,32.814579800000004],[-83.6450678,32.814579300000005]]},"id":"8944c0b1a1bffff-17d7ea1e65751c7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64540190000001,32.8145782]},"id":"8f44c0b1a1ae8f6-17d7e8b7d9d1da7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1a32ea-17def988aab4252b","8f44c0b1a1ae8f6-17d7e8b7d9d1da7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6450678,32.814579300000005],[-83.64540190000001,32.8145782]]},"id":"8944c0b1a1bffff-17d7e9203e172930"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b4db55-13977b081e4bf4e7","8f44c0a36b6938e-17978a0d29853eff"]},"geometry":{"type":"LineString","coordinates":[[-83.63174860000001,32.844172],[-83.63151,32.8444106],[-83.6313471,32.844581500000004]]},"id":"8944c0a36b7ffff-1797ca8b5e2beb52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b4db55-13977b081e4bf4e7","8f44c0a346b2488-13f75b53cedf4ea9"]},"geometry":{"type":"LineString","coordinates":[[-83.6313471,32.844581500000004],[-83.6312048,32.8447295],[-83.6311651,32.844794],[-83.63116670000001,32.8448531],[-83.6311896,32.8448864],[-83.63122600000001,32.844931700000004]]},"id":"8744c0a34ffffff-1397ab52ec359d41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346b30b2-13bfda1746ff821a","8f44c0a346b2488-13f75b53cedf4ea9"]},"geometry":{"type":"LineString","coordinates":[[-83.63122600000001,32.844931700000004],[-83.63124350000001,32.8449535],[-83.6317324,32.8452317]]},"id":"8944c0a346bffff-13d77ab78fd29a6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6526173,32.844653300000004]},"id":"8f44c0a35daa182-13d6d71a3fea1bb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35daa182-13d6d71a3fea1bb1","8f44c0a35daa023-13dfd6eb78a7a551"]},"geometry":{"type":"LineString","coordinates":[[-83.65269210000001,32.8446869],[-83.6530261,32.844208200000004],[-83.6530302,32.8441707],[-83.6530175,32.8441443],[-83.6529926,32.8441291],[-83.65296070000001,32.8441193],[-83.6529192,32.844122500000005],[-83.65287640000001,32.8441376],[-83.652628,32.8445035],[-83.6525872,32.8445945],[-83.6526173,32.844653300000004]]},"id":"8a44c0a35daffff-1797f69fdb9c4725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35daa182-13d6d71a3fea1bb1","8f44c0a35daa023-13dfd6eb78a7a551"]},"geometry":{"type":"LineString","coordinates":[[-83.6526173,32.844653300000004],[-83.65269210000001,32.8446869]]},"id":"8c44c0a35daa1ff-13ded702d53dfb84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5003a1-13fffc314c2263e4","8f44c0a2e5006e1-17bedc934fd869b6"]},"geometry":{"type":"LineString","coordinates":[[-83.7029612,32.8986011],[-83.7028044,32.8986856]]},"id":"8b44c0a2e500fff-17965c624b7bceda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e50346e-17de7ce748f39e03","8f44c0a2e5036ce-17d77ce524a80064"]},"geometry":{"type":"LineString","coordinates":[[-83.70267000000001,32.898957],[-83.70267340000001,32.899151100000005]]},"id":"8944c0a2e53ffff-1796dce63eba4caf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b113331a9-17bfbdaebb96b7f5","8f44c0b11314b91-1797fe858595cc63"]},"geometry":{"type":"LineString","coordinates":[[-83.6630293,32.778693000000004],[-83.6628575,32.778754400000004],[-83.6626856,32.778815900000005]]},"id":"8944c0b1133ffff-17f7be1a210e3c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6624197,32.779082100000004]},"id":"8f44c0b11310d70-13beff2bbfc97196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11310d70-13beff2bbfc97196","8f44c0b11314b91-1797fe858595cc63"]},"geometry":{"type":"LineString","coordinates":[[-83.6626856,32.778815900000005],[-83.6627144,32.7789682],[-83.6624197,32.779082100000004]]},"id":"8a44c0b11317fff-17fffeb44ea736b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c0210-13b7d9505b1836cd","8f44c0b0a0c0ab6-13d7e938f3943667"]},"geometry":{"type":"LineString","coordinates":[[-83.7107313,32.825811],[-83.71069390000001,32.8259673]]},"id":"8b44c0b0a0c0fff-13f6c944a2e74521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c0210-13b7d9505b1836cd","8f44c0b0a0dc726-13b7db1c27c1bbd9"]},"geometry":{"type":"LineString","coordinates":[[-83.71069390000001,32.8259673],[-83.7099742,32.8259613],[-83.7099582,32.8263997]]},"id":"8944c0b0a0fffff-13d6ea8857806996"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0dc726-13b7db1c27c1bbd9","8f44c0b0a0deb31-13b75b9c42fb475b"]},"geometry":{"type":"LineString","coordinates":[[-83.7099582,32.8263997],[-83.70975320000001,32.8263957]]},"id":"8a44c0b0a0dffff-13b6db5c3c4135ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0c0210-13b7d9505b1836cd","8f44c0b0a0c32f4-13d6e99df1709f81"]},"geometry":{"type":"LineString","coordinates":[[-83.71069390000001,32.8259673],[-83.7106486,32.8260455],[-83.71064790000001,32.8264289],[-83.71056970000001,32.8264298]]},"id":"8a44c0b0a0c7fff-13d7e96e036dce42"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0dc726-13b7db1c27c1bbd9","8f44c0b0a0c32f4-13d6e99df1709f81"]},"geometry":{"type":"LineString","coordinates":[[-83.71056970000001,32.8264298],[-83.7100314,32.8264361],[-83.7099582,32.8263997]]},"id":"8944c0b0a0fffff-13d76a5f6a416efa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d9a85-1797da0512c2c912","8f44c0b0a0db843-17ff6b25982f5551"]},"geometry":{"type":"LineString","coordinates":[[-83.7099431,32.8271314],[-83.71040470000001,32.8271389]]},"id":"8a44c0b0a0dffff-17ffca9550bdf789"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70917150000001,32.8268568]},"id":"8f44c0b0a0da59b-17d7cd07d4041eb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0da59b-17d7cd07d4041eb2","8f44c0b0a729a25-17b65d0a2382b798"]},"geometry":{"type":"LineString","coordinates":[[-83.7091678,32.8269857],[-83.70917150000001,32.8268568]]},"id":"8a44c0b0a72ffff-17ffdd08fb635cc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7089856,32.826842400000004]},"id":"8f44c0b0a7298b5-17decd7c0a63686c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0da59b-17d7cd07d4041eb2","8f44c0b0a7298b5-17decd7c0a63686c"]},"geometry":{"type":"LineString","coordinates":[[-83.70917150000001,32.8268568],[-83.7089856,32.826842400000004]]},"id":"8a44c0b0a72ffff-17df4d41e56ba5bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0da59b-17d7cd07d4041eb2","8f44c0b0a0de695-17b64c9013b7ff9f"]},"geometry":{"type":"LineString","coordinates":[[-83.70917150000001,32.8268568],[-83.70926080000001,32.826856400000004],[-83.70933310000001,32.8268385],[-83.7093584,32.826807800000005],[-83.7093631,32.826604800000005]]},"id":"8944c0b0a0fffff-179f6cadaa56ba1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0de530-139efc8c90a21c1e","8f44c0b0a0de695-17b64c9013b7ff9f"]},"geometry":{"type":"LineString","coordinates":[[-83.7093631,32.826604800000005],[-83.7093687,32.8263599]]},"id":"8b44c0b0a0defff-13f7cc8e5b21c4ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0de530-139efc8c90a21c1e","8f44c0b0a0d3ac5-13b76c8a4ed48cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.7093687,32.8263599],[-83.7093724,32.8262006]]},"id":"8944c0b0a0fffff-13ff7c8b7f432fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d2c55-13f7edf947c0f3b2","8f44c0b0a0d3ac5-13b76c8a4ed48cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.7093724,32.8262006],[-83.7093804,32.825855000000004],[-83.70932450000001,32.8257777],[-83.70878520000001,32.8256862]]},"id":"8a44c0b0a0d7fff-13de4cf87faddfe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d2c55-13f7edf947c0f3b2","8f44c0b0a720b4c-13d75f3b7a67f070"]},"geometry":{"type":"LineString","coordinates":[[-83.70878520000001,32.8256862],[-83.7082697,32.8256017]]},"id":"8944c0b0a73ffff-13dfce9a6d3fab0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7079956,32.8255568]},"id":"8f44c0b0a720035-13b74fe6c8b320ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a720035-13b74fe6c8b320ca","8f44c0b0a720b4c-13d75f3b7a67f070"]},"geometry":{"type":"LineString","coordinates":[[-83.7082697,32.8256017],[-83.7079956,32.8255568]]},"id":"8a44c0b0a727fff-13b75f911da7b8fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d3ac5-13b76c8a4ed48cbe","8f44c0b0a0d3408-139fed65915bab0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7093724,32.8262006],[-83.7090215,32.826134200000006]]},"id":"8b44c0b0a0d3fff-13b6ecf7ea58f7fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70874810000001,32.826082400000004]},"id":"8f44c0b0a72c99b-13ffce107c9d19db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a72c99b-13ffce107c9d19db","8f44c0b0a0d3408-139fed65915bab0e"]},"geometry":{"type":"LineString","coordinates":[[-83.7090215,32.826134200000006],[-83.70874810000001,32.826082400000004]]},"id":"8744c0b0affffff-13fffdbb0876fb82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70869450000001,32.8260726]},"id":"8f44c0b0a72cd43-13f76e31fbd80d1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a72c99b-13ffce107c9d19db","8f44c0b0a72cd43-13f76e31fbd80d1f"]},"geometry":{"type":"LineString","coordinates":[[-83.70874810000001,32.826082400000004],[-83.70869450000001,32.8260726]]},"id":"8b44c0b0a72cfff-13fe7e213ae50c50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7079949,32.8259782]},"id":"8f44c0b0a723b95-13be6fe7358e881c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a723b95-13be6fe7358e881c","8f44c0b0a72cd43-13f76e31fbd80d1f"]},"geometry":{"type":"LineString","coordinates":[[-83.70869450000001,32.8260726],[-83.7086137,32.826122600000005],[-83.70825760000001,32.8260784],[-83.7082601,32.8260041],[-83.7079949,32.8259782]]},"id":"8944c0b0a73ffff-13de7f0e5782c749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70877680000001,32.825715200000005]},"id":"8f44c0b0a0d2c5a-139e4dfe83403022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d2c5a-139e4dfe83403022","8f44c0b0a72cd43-13f76e31fbd80d1f"]},"geometry":{"type":"LineString","coordinates":[[-83.70869450000001,32.8260726],[-83.70877680000001,32.825715200000005]]},"id":"8944c0b0a73ffff-13f7fe183b7674e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d2c55-13f7edf947c0f3b2","8f44c0b0a0d2c5a-139e4dfe83403022"]},"geometry":{"type":"LineString","coordinates":[[-83.70877680000001,32.825715200000005],[-83.70878520000001,32.8256862]]},"id":"8d44c0b0a0d2c7f-13fefdfbe164fe5b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7044967,32.9179781]},"id":"8f44c0a2ac6e428-13de58719bedecc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6e211-13b6d7e09c145a94","8f44c0a2ac6e428-13de58719bedecc8"]},"geometry":{"type":"LineString","coordinates":[[-83.7044967,32.9179781],[-83.7047287,32.918145200000005]]},"id":"8b44c0a2ac6efff-13fed829115f471e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6165c-13be57e9cf169086","8f44c0a2ac6e428-13de58719bedecc8"]},"geometry":{"type":"LineString","coordinates":[[-83.7044967,32.9179781],[-83.70471400000001,32.9177477]]},"id":"8944c0a2ac7ffff-1396582da6067171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac6165c-13be57e9cf169086","8f44c0a2ac6c4e5-139fd74f7d25d800"]},"geometry":{"type":"LineString","coordinates":[[-83.70471400000001,32.9177477],[-83.7049609,32.917906800000004]]},"id":"8944c0a2ac7ffff-13fe579c971903d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65260640000001,32.844768800000004]},"id":"8f44c0a35daa705-139ed721068e118c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d8cd2a-13ffd75e15c5359b","8f44c0a35daa705-139ed721068e118c"]},"geometry":{"type":"LineString","coordinates":[[-83.65260640000001,32.844768800000004],[-83.6525087,32.8449173]]},"id":"8944c0a35dbffff-13bef73f8efb362e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6519892,32.844874700000005]},"id":"8f44c0a35d814d9-13def8a2c1c7f58a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d8cd2a-13ffd75e15c5359b","8f44c0a35d814d9-13def8a2c1c7f58a"]},"geometry":{"type":"LineString","coordinates":[[-83.6525087,32.8449173],[-83.652404,32.8450721],[-83.6519892,32.844874700000005]]},"id":"8944c0a35dbffff-1396d7f234e7cd18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7120191,32.8257764]},"id":"8f44c0b0a0e8816-13be46141f271a67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7120324,32.8258796]},"id":"8f44c0b0a0e8164-13fec60bc8e05d0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0e8164-13fec60bc8e05d0c","8f44c0b0a0e8816-13be46141f271a67"]},"geometry":{"type":"LineString","coordinates":[[-83.7120191,32.8257764],[-83.7120324,32.8258796]]},"id":"8b44c0b0a0e8fff-13dec60fe023c03c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71216360000001,32.8260755]},"id":"8f44c0b0a0e9d99-13ff75b9ca7fd463"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0e8164-13fec60bc8e05d0c","8f44c0b0a0e9d99-13ff75b9ca7fd463"]},"geometry":{"type":"LineString","coordinates":[[-83.7120324,32.8258796],[-83.71205450000001,32.8260516],[-83.71216360000001,32.8260755]]},"id":"8a44c0b0a0effff-13bec5f4d7b24ccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122679,32.826098300000005]},"id":"8f44c0b0a0e9d5a-13f7757899a9d92d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0e9d5a-13f7757899a9d92d","8f44c0b0a0e9d99-13ff75b9ca7fd463"]},"geometry":{"type":"LineString","coordinates":[[-83.71216360000001,32.8260755],[-83.7122679,32.826098300000005]]},"id":"8c44c0b0a0e9dff-13f655992c880248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0e98a3-139755423a51ff59","8f44c0b0a0e9d5a-13f7757899a9d92d"]},"geometry":{"type":"LineString","coordinates":[[-83.7122679,32.826098300000005],[-83.71235490000001,32.8261173]]},"id":"8b44c0b0a0e9fff-13ff655d6ca5688f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7128076,32.826216]},"id":"8f44c0b0a05a0e9-13d74427456d2159"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a05a0e9-13d74427456d2159","8f44c0b0a0e98a3-139755423a51ff59"]},"geometry":{"type":"LineString","coordinates":[[-83.71235490000001,32.8261173],[-83.7128076,32.826216]]},"id":"8844c0b0a1fffff-13b674b4c5192214"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a05a0e9-13d74427456d2159","8f44c0b0a05a305-13dec3e82c34f86b"]},"geometry":{"type":"LineString","coordinates":[[-83.7128076,32.826216],[-83.7129086,32.826238000000004]]},"id":"8b44c0b0a05afff-13d7e407b2f95553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a05a0e9-13d74427456d2159","8f44c0b0a0ed744-1397752675982ea4"]},"geometry":{"type":"LineString","coordinates":[[-83.7128076,32.826216],[-83.7128732,32.826],[-83.7125003,32.8259166],[-83.7123993,32.8259379]]},"id":"8844c0b0a1fffff-13bed469d1803e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7123129,32.825924400000005]},"id":"8f44c0b0a0ed7a9-139ec55c78e78553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0ed744-1397752675982ea4","8f44c0b0a0ed7a9-139ec55c78e78553"]},"geometry":{"type":"LineString","coordinates":[[-83.7123993,32.8259379],[-83.7123129,32.825924400000005]]},"id":"8c44c0b0a0ed7ff-139f454175a86015"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7122119,32.8259082]},"id":"8f44c0b0a0e8b62-1396e59b9b30d327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0ed7a9-139ec55c78e78553","8f44c0b0a0e8b62-1396e59b9b30d327"]},"geometry":{"type":"LineString","coordinates":[[-83.7123129,32.825924400000005],[-83.7122119,32.8259082]]},"id":"8b44c0b0a0edfff-1397f57c09a88ec0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0e8164-13fec60bc8e05d0c","8f44c0b0a0e8b62-1396e59b9b30d327"]},"geometry":{"type":"LineString","coordinates":[[-83.7122119,32.8259082],[-83.7120324,32.8258796]]},"id":"8a44c0b0a0effff-13f7f5d3b1d7a17a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19953d13-17ff70048cebafcd","8f44c0b1995204c-17def07b70b84219"]},"geometry":{"type":"LineString","coordinates":[[-83.69465050000001,32.8204973],[-83.69484080000001,32.820552500000005]]},"id":"8a44c0b19957fff-17de703ff36fd73e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19953d13-17ff70048cebafcd","8f44c0b19953823-17967f7e0c684431"]},"geometry":{"type":"LineString","coordinates":[[-83.69484080000001,32.820552500000005],[-83.69505600000001,32.8206149]]},"id":"8b44c0b19953fff-1796ffc14ef299e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6952045,32.820610900000005]},"id":"8f44c0b1995158d-1797ff213b8edd89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19953823-17967f7e0c684431","8f44c0b1995158d-1797ff213b8edd89"]},"geometry":{"type":"LineString","coordinates":[[-83.69505600000001,32.8206149],[-83.69510980000001,32.8206305],[-83.6952045,32.820610900000005]]},"id":"8a44c0b19957fff-179e6f4fd99820dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994688d-179f7cff485db690","8f44c0b19973a8c-13bf6db15f6d5d3b"]},"geometry":{"type":"LineString","coordinates":[[-83.6957931,32.8198358],[-83.696078,32.8200151]]},"id":"8944c0b1997ffff-13f77d5852386bf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1994688d-179f7cff485db690","8f44c0b199466c6-17d77d74be7dee16"]},"geometry":{"type":"LineString","coordinates":[[-83.696078,32.8200151],[-83.6958901,32.8203089]]},"id":"8b44c0b19946fff-17ff6d3a08320516"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199466c6-17d77d74be7dee16","8f44c0b19942cdb-17d7fdbb20764acf"]},"geometry":{"type":"LineString","coordinates":[[-83.6958901,32.8203089],[-83.69577740000001,32.8204859]]},"id":"8a44c0b19947fff-179e6d97fd8e36e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19951b46-17be7dfdc921a0af","8f44c0b19942cdb-17d7fdbb20764acf"]},"geometry":{"type":"LineString","coordinates":[[-83.69577740000001,32.8204859],[-83.6956708,32.820653300000004]]},"id":"8944c0b1997ffff-17fe6ddc7aab7c9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995106a-17de6e6f05554623","8f44c0b19951b46-17be7dfdc921a0af"]},"geometry":{"type":"LineString","coordinates":[[-83.6956708,32.820653300000004],[-83.6956471,32.820690400000004],[-83.69555480000001,32.820725700000004],[-83.6954896,32.820704400000004]]},"id":"8b44c0b19951fff-17df6e31d57d5fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995155d-17b6fee7fb671ecf","8f44c0b1995106a-17de6e6f05554623"]},"geometry":{"type":"LineString","coordinates":[[-83.6954896,32.820704400000004],[-83.69529610000001,32.8206409]]},"id":"8b44c0b19951fff-17be7eab89338b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1995155d-17b6fee7fb671ecf","8f44c0b1995158d-1797ff213b8edd89"]},"geometry":{"type":"LineString","coordinates":[[-83.69529610000001,32.8206409],[-83.6952045,32.820610900000005]]},"id":"8c44c0b199515ff-179f7f049f494a02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14370359-13fff340f262180d","8f44c0b1437189d-13b7f2a72c398c8e"]},"geometry":{"type":"LineString","coordinates":[[-83.65419370000001,32.7435734],[-83.65439160000001,32.743630700000004],[-83.6544398,32.7436311]]},"id":"8a44c0b14377fff-1396f2f485bf5324"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14362bb2-1396d146f39f534b","8f44c0b1437189d-13b7f2a72c398c8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6544398,32.7436311],[-83.654908,32.7436347],[-83.6550033,32.7435812]]},"id":"8944c0b1437ffff-139ff1f3891054bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14362bb2-1396d146f39f534b","8f44c0b143625b5-13ffd22780ab6967"]},"geometry":{"type":"LineString","coordinates":[[-83.6550033,32.7435812],[-83.6549135,32.743539500000004],[-83.654644,32.7435421]]},"id":"8b44c0b14362fff-13fed1b5257503a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b14370359-13fff340f262180d","8f44c0b143625b5-13ffd22780ab6967"]},"geometry":{"type":"LineString","coordinates":[[-83.654644,32.7435421],[-83.6543731,32.743543],[-83.65419370000001,32.7435734]]},"id":"8a44c0b14377fff-13fed2b4b35c61ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ad9814-17b6f0c5f0cd6036","8f44c0b14362b02-1396d11530d80bce"]},"geometry":{"type":"LineString","coordinates":[[-83.65508290000001,32.743585200000005],[-83.65510090000001,32.7434202],[-83.6551247,32.743231900000005],[-83.6552097,32.7426155]]},"id":"8744c0b14ffffff-13d7d0ef1d84fe66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ad9814-17b6f0c5f0cd6036","8f44c0b14add8b0-179fd09ed05d4caa"]},"geometry":{"type":"LineString","coordinates":[[-83.6552097,32.7426155],[-83.65523660000001,32.7424209],[-83.65527230000001,32.7421845]]},"id":"8a44c0b14adffff-179ff0b2d077fb23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14add8b0-179fd09ed05d4caa","8f44c0b14ac3756-17bff08e16634165"]},"geometry":{"type":"LineString","coordinates":[[-83.65527230000001,32.7421845],[-83.65529910000001,32.7420155]]},"id":"8944c0b14afffff-17f6d09679bb0a11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e8415-1797e77d967b7107","8f44c0b1d2c5acb-17d668945160b8d7"]},"geometry":{"type":"LineString","coordinates":[[-83.69788750000001,32.817418],[-83.6983335,32.817513000000005]]},"id":"8a44c0b1d2effff-17f7f808f7388786"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e801a-179ee70807006222","8f44c0b1d2e8415-1797e77d967b7107"]},"geometry":{"type":"LineString","coordinates":[[-83.6983335,32.817513000000005],[-83.6985216,32.817553000000004]]},"id":"8b44c0b1d2e8fff-179e6742d72f5e20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e801a-179ee70807006222","8f44c0b1d2e8651-1796672882687e17"]},"geometry":{"type":"LineString","coordinates":[[-83.6985216,32.817553000000004],[-83.69846960000001,32.8177216]]},"id":"8b44c0b1d2e8fff-17df77184ac4d0fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca8228-13df784a965f016c","8f44c0a21caa941-13dfd94ac30cf05a"]},"geometry":{"type":"LineString","coordinates":[[-83.7111127,32.8745683],[-83.7107028,32.8743673]]},"id":"8a44c0a21caffff-139e68cab11d7c28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21caa941-13dfd94ac30cf05a","8f44c0a21cae693-139749eec59cbc80"]},"geometry":{"type":"LineString","coordinates":[[-83.7107028,32.8743673],[-83.71044040000001,32.874241600000005]]},"id":"8a44c0a21caffff-13be599cc1a5acf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21ca82db-1396f87374fe14a0","8f44c0a21c81d61-13ffdae50824cc28"]},"geometry":{"type":"LineString","coordinates":[[-83.7110473,32.8746543],[-83.7108513,32.8745464],[-83.71073580000001,32.8747047],[-83.7106449,32.8747254],[-83.7105891,32.8747058],[-83.71004640000001,32.8744409]]},"id":"8944c0a21cbffff-13f6c9a2e3537dde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.710167,32.8742547]},"id":"8f44c0a21c850e8-139f7a99a515fec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a21c850e8-139f7a99a515fec5","8f44c0a21c81d61-13ffdae50824cc28"]},"geometry":{"type":"LineString","coordinates":[[-83.71004640000001,32.8744409],[-83.710167,32.8742547]]},"id":"8a44c0a21c87fff-13d76abf5e3c6022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6620438,32.777731100000004]},"id":"8f44c0b1104c144-17f7f016a287f519"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1106b013-17b6bf267e73a507","8f44c0b1104c144-17f7f016a287f519"]},"geometry":{"type":"LineString","coordinates":[[-83.6624281,32.7776553],[-83.6622384,32.7777224],[-83.662169,32.777738400000004],[-83.66209520000001,32.777740800000004],[-83.6620438,32.777731100000004]]},"id":"8944c0b1107ffff-17d7ff9d21f0e200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6616989,32.7776646]},"id":"8f44c0b110412c8-17bee0ee35543891"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110412c8-17bee0ee35543891","8f44c0b1104c144-17f7f016a287f519"]},"geometry":{"type":"LineString","coordinates":[[-83.6620438,32.777731100000004],[-83.66188100000001,32.777678200000004],[-83.6616989,32.7776646]]},"id":"8a44c0b1104ffff-17d6f08122743221"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6613849,32.777750600000005]},"id":"8f44c0b1104ecf1-17fee1b275f5f443"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1104ecf1-17fee1b275f5f443","8f44c0b110412c8-17bee0ee35543891"]},"geometry":{"type":"LineString","coordinates":[[-83.6616989,32.7776646],[-83.6615033,32.7777009],[-83.6613849,32.777750600000005]]},"id":"8a44c0b1104ffff-17dec151d72682c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6612137,32.7778226]},"id":"8f44c0b1105d96b-179fe21d717884a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1104ecf1-17fee1b275f5f443","8f44c0b1105d96b-179fe21d717884a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6613849,32.777750600000005],[-83.6612137,32.7778226]]},"id":"8944c0b1107ffff-1796e1e7f96f921a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66066620000001,32.7780527]},"id":"8f44c0b11058b9c-17bef373a42b18df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11058b9c-17bef373a42b18df","8f44c0b1105d96b-179fe21d717884a4"]},"geometry":{"type":"LineString","coordinates":[[-83.6612137,32.7778226],[-83.66066620000001,32.7780527]]},"id":"8a44c0b1105ffff-17f7d2c893ca601f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66112770000001,32.7780714]},"id":"8f44c0b1105d301-17b6e253336bc988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105d301-17b6e253336bc988","8f44c0b11058b9c-17bef373a42b18df"]},"geometry":{"type":"LineString","coordinates":[[-83.66112770000001,32.7780714],[-83.66066620000001,32.7780527]]},"id":"8a44c0b1105ffff-17b6d2e361f073f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6603661,32.778049]},"id":"8f44c0b1105842e-17bee42f3af8514e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105842e-17bee42f3af8514e","8f44c0b11058b9c-17bef373a42b18df"]},"geometry":{"type":"LineString","coordinates":[[-83.66066620000001,32.7780527],[-83.6603661,32.778049]]},"id":"8b44c0b11058fff-17bfd3d1691eb408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105842e-17bee42f3af8514e","8f44c0b1105a801-17b7d4ad4450c8fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6603661,32.778049],[-83.6601644,32.7780465]]},"id":"8a44c0b1105ffff-17b7d46e3a6efa82"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105ac0e-17b7e5221f39abbe","8f44c0b1105a801-17b7d4ad4450c8fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6601644,32.7780465],[-83.65997750000001,32.778044200000004]]},"id":"8b44c0b1105afff-17b6e4e7bbd854dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110ed273-17b6f581736d6639","8f44c0b1105ac0e-17b7e5221f39abbe"]},"geometry":{"type":"LineString","coordinates":[[-83.65997750000001,32.778044200000004],[-83.6598249,32.7780423]]},"id":"8944c0b1107ffff-17b7d551c39c8c65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110ed273-17b6f581736d6639","8f44c0b110ed642-17b7f5f43278db4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6598249,32.7780423],[-83.6596413,32.7780415]]},"id":"8b44c0b110edfff-17b6f5bad814e482"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594673,32.778038]},"id":"8f44c0b110e8a4e-17b7c660fcfa17d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110ed642-17b7f5f43278db4c","8f44c0b110e8a4e-17b7c660fcfa17d8"]},"geometry":{"type":"LineString","coordinates":[[-83.6596413,32.7780415],[-83.6594673,32.778038]]},"id":"8a44c0b110effff-17b6e62a9cff1a10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6594656,32.7772887]},"id":"8f44c0b11052299-13dff66202db7e19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110e8a4e-17b7c660fcfa17d8","8f44c0b11052299-13dff66202db7e19"]},"geometry":{"type":"LineString","coordinates":[[-83.6594673,32.778038],[-83.65931400000001,32.7780361],[-83.6592973,32.777298300000005],[-83.6594656,32.7772887]]},"id":"8944c0b110fffff-17b6d6b6cd3c0323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65946720000001,32.7771804]},"id":"8f44c0b110520cd-139fc66108466f17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110e1171-1396c7681777fffa","8f44c0b110520cd-139fc66108466f17"]},"geometry":{"type":"LineString","coordinates":[[-83.6590463,32.777172400000005],[-83.659216,32.7771757],[-83.65946720000001,32.7771804]]},"id":"8944c0b110fffff-1397c6e4999e1118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110520cd-139fc66108466f17","8f44c0b11052aeb-139ed5ec13b9ac32"]},"geometry":{"type":"LineString","coordinates":[[-83.65946720000001,32.7771804],[-83.6596543,32.7771841]]},"id":"8b44c0b11052fff-139ef62695eab179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110506c5-139fd57ea9f9d25e","8f44c0b11052aeb-139ed5ec13b9ac32"]},"geometry":{"type":"LineString","coordinates":[[-83.6596543,32.7771841],[-83.6598294,32.777186900000004]]},"id":"8a44c0b11057fff-139ef5b56f713059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110506c5-139fd57ea9f9d25e","8f44c0b110502d4-139ff51b616ebc0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6598294,32.777186900000004],[-83.6599882,32.7771903]]},"id":"8b44c0b11050fff-139ee54d000d79ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110502d4-139ff51b616ebc0b","8f44c0b11051cf5-1396e49bccfcadc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6599882,32.7771903],[-83.6601924,32.777194200000004]]},"id":"8a44c0b11057fff-1397e4db9bffa97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66038920000001,32.777197900000004]},"id":"8f44c0b11051818-1396f420c5a7a08c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11051818-1396f420c5a7a08c","8f44c0b11051cf5-1396e49bccfcadc4"]},"geometry":{"type":"LineString","coordinates":[[-83.6601924,32.777194200000004],[-83.66038920000001,32.777197900000004]]},"id":"8b44c0b11051fff-1397c45e42396d38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11051818-1396f420c5a7a08c","8f44c0b11042309-13fef2e2af84efd8"]},"geometry":{"type":"LineString","coordinates":[[-83.66038920000001,32.777197900000004],[-83.6607633,32.777205],[-83.6608039,32.7772097],[-83.6608219,32.7772304],[-83.6608982,32.777332300000005]]},"id":"8944c0b1107ffff-13b6e373dfbe47f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1104ecf1-17fee1b275f5f443","8f44c0b11042309-13fef2e2af84efd8"]},"geometry":{"type":"LineString","coordinates":[[-83.6613849,32.777750600000005],[-83.6611117,32.777322500000004],[-83.6610761,32.777290900000004],[-83.6610287,32.777288500000004],[-83.6608982,32.777332300000005]]},"id":"8944c0b1107ffff-17bef236f3914593"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609981,32.7774876]},"id":"8f44c0b11043573-17dfc2a43c9ab4c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11043573-17dfc2a43c9ab4c1","8f44c0b11042309-13fef2e2af84efd8"]},"geometry":{"type":"LineString","coordinates":[[-83.6608982,32.777332300000005],[-83.6609981,32.7774876]]},"id":"8a44c0b11047fff-179fc2c37ff1263a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66112360000001,32.7776826]},"id":"8f44c0b11043749-17d7e255c47011d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11043749-17d7e255c47011d6","8f44c0b11043573-17dfc2a43c9ab4c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6609981,32.7774876],[-83.66112360000001,32.7776826]]},"id":"8b44c0b11043fff-1796f27cf7ac3ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11043749-17d7e255c47011d6","8f44c0b1105d96b-179fe21d717884a4"]},"geometry":{"type":"LineString","coordinates":[[-83.66112360000001,32.7776826],[-83.6612137,32.7778226]]},"id":"8944c0b1107ffff-17ffe239945d3e53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105842e-17bee42f3af8514e","8f44c0b1105c596-17fed4271ad957de"]},"geometry":{"type":"LineString","coordinates":[[-83.6603661,32.778049],[-83.6603791,32.7775685]]},"id":"8a44c0b1105ffff-1796c42b27e7ca99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1105c596-17fed4271ad957de","8f44c0b11051818-1396f420c5a7a08c"]},"geometry":{"type":"LineString","coordinates":[[-83.6603791,32.7775685],[-83.66038920000001,32.777197900000004]]},"id":"8944c0b1107ffff-179ec423f6270b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110520cd-139fc66108466f17","8f44c0b11052299-13dff66202db7e19"]},"geometry":{"type":"LineString","coordinates":[[-83.65946720000001,32.7771804],[-83.6594656,32.7772887]]},"id":"8b44c0b11052fff-13bfe6618f634cf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110e8a4e-17b7c660fcfa17d8","8f44c0b11052299-13dff66202db7e19"]},"geometry":{"type":"LineString","coordinates":[[-83.6594656,32.7772887],[-83.6594673,32.778038]]},"id":"8944c0b110fffff-17b7e66180a32b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6623187,32.7781273]},"id":"8f44c0b1104d0e2-17dfbf6add723ed9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1104d0e2-17dfbf6add723ed9","8f44c0b1104c144-17f7f016a287f519"]},"geometry":{"type":"LineString","coordinates":[[-83.6623187,32.7781273],[-83.6620438,32.777731100000004]]},"id":"8a44c0b1104ffff-17dfffc0c7178e0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6617252,32.7772373]},"id":"8f44c0b1104191c-13bfd0ddce79e089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1104191c-13bfd0ddce79e089","8f44c0b1104c144-17f7f016a287f519"]},"geometry":{"type":"LineString","coordinates":[[-83.6620438,32.777731100000004],[-83.6617252,32.7772373]]},"id":"8944c0b1107ffff-17d7e07a31a31352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6619988,32.7781662]},"id":"8f44c0b11048b81-17f7e032c65cee5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110412c8-17bee0ee35543891","8f44c0b11048b81-17f7e032c65cee5f"]},"geometry":{"type":"LineString","coordinates":[[-83.6619988,32.7781662],[-83.6616989,32.7776646]]},"id":"8a44c0b1104ffff-17d7e090717a5679"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6614289,32.777234]},"id":"8f44c0b1104036e-13bfc196ffd9a9de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110412c8-17bee0ee35543891","8f44c0b1104036e-13bfc196ffd9a9de"]},"geometry":{"type":"LineString","coordinates":[[-83.6616989,32.7776646],[-83.6614289,32.777234]]},"id":"8944c0b1107ffff-17b7d142952fc672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402681,32.8361016]},"id":"8f44c0a341ad02b-13f7f5407fdaa196"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ad02b-13f7f5407fdaa196","8f44c0a341ad392-139ef5537c87656e"]},"geometry":{"type":"LineString","coordinates":[[-83.6402377,32.8361895],[-83.6402681,32.8361016]]},"id":"8b44c0a341adfff-13fff549f86a145c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6402875,32.8360457]},"id":"8f44c0a341ad176-13d6f5345c6ec1b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ad02b-13f7f5407fdaa196","8f44c0a341ad176-13d6f5345c6ec1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6402681,32.8361016],[-83.6402875,32.8360457]]},"id":"8c44c0a341ad1ff-13d6f53a6f79417b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ad176-13d6f5345c6ec1b7","8f44c0a341ad8f2-139ff5279afb71ab"]},"geometry":{"type":"LineString","coordinates":[[-83.6402875,32.8360457],[-83.64030790000001,32.8359869]]},"id":"8b44c0a341adfff-13bef52df141ad3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6400225,32.835981000000004]},"id":"8f44c0a341ac24a-139ef5d9f5015e87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ac24a-139ef5d9f5015e87","8f44c0a341ad8f2-139ff5279afb71ab"]},"geometry":{"type":"LineString","coordinates":[[-83.64030790000001,32.8359869],[-83.6403202,32.8359514],[-83.64005490000001,32.83589],[-83.6400225,32.835981000000004]]},"id":"8a44c0a341affff-13f7f5819434f7a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64000390000001,32.836033400000005]},"id":"8f44c0a341ad583-13bef5e5913f49bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ac24a-139ef5d9f5015e87","8f44c0a341ad583-13bef5e5913f49bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6400225,32.835981000000004],[-83.64000390000001,32.836033400000005]]},"id":"8b44c0a341adfff-13bef5dfc9cb7bdb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ad583-13bef5e5913f49bf","8f44c0a341a8b26-13fff5f91bf42f7a"]},"geometry":{"type":"LineString","coordinates":[[-83.64000390000001,32.836033400000005],[-83.6399727,32.8361208]]},"id":"8a44c0a341affff-13d6f5ef5aa59936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3084d0c3-17befd055135816d","8f44c0a3084d2e8-1796ecbe3c34384b"]},"geometry":{"type":"LineString","coordinates":[[-83.6437533,32.8562254],[-83.6436395,32.8560839]]},"id":"8b44c0a3084dfff-17defce1c37ee813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b344c1-1397eb1ea56b461a","8f44c0a30b363b0-13f6fbc10d15ae3d"]},"geometry":{"type":"LineString","coordinates":[[-83.64415840000001,32.855994100000004],[-83.6444182,32.855845800000004]]},"id":"8a44c0a30b37fff-13d7fb6fd5e13cd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6445389,32.855997800000004]},"id":"8f44c0a30b3465e-13f6ead33f3ad744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b344c1-1397eb1ea56b461a","8f44c0a30b3465e-13f6ead33f3ad744"]},"geometry":{"type":"LineString","coordinates":[[-83.6444182,32.855845800000004],[-83.6445389,32.855997800000004]]},"id":"8b44c0a30b34fff-13d7eaf8f6688e6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30869294-1396eb87b4c1ae6f","8f44c0a3086d3a2-13dffb1eb14fa70a"]},"geometry":{"type":"LineString","coordinates":[[-83.64441810000001,32.8551327],[-83.64403510000001,32.855367300000005],[-83.64425010000001,32.855632400000005]]},"id":"8a44c0a3086ffff-13f6fbad16f09d7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30869294-1396eb87b4c1ae6f","8f44c0a3549a735-139eea8e96795131"]},"geometry":{"type":"LineString","coordinates":[[-83.64425010000001,32.855632400000005],[-83.6446487,32.8554146]]},"id":"8744c0a30ffffff-13defb0b299c5547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6961496,32.8390197]},"id":"8f44c0a245328a5-13977cd283370200"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a245328a5-13977cd283370200","8f44c0a24536789-139f7cff04bcb887"]},"geometry":{"type":"LineString","coordinates":[[-83.6960784,32.8388593],[-83.695355,32.8390859],[-83.6954262,32.8392464],[-83.6961496,32.8390197]]},"id":"8844c0a245fffff-139f6de2462ffd38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a245328a5-13977cd283370200","8f44c0a24536789-139f7cff04bcb887"]},"geometry":{"type":"LineString","coordinates":[[-83.6961496,32.8390197],[-83.6960784,32.8388593]]},"id":"8a44c0a24537fff-13d77ce8cb00b21d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8666a2-179ea97e26475ddb","8f44c0b0b86270d-1796f988ecd48440"]},"geometry":{"type":"LineString","coordinates":[[-83.736835,32.8330986],[-83.73681780000001,32.8334927]]},"id":"8a44c0b0b867fff-179fd98380bc6ed8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b86270d-1796f988ecd48440","8f44c0b0b8448d3-17b6c989a365a298"]},"geometry":{"type":"LineString","coordinates":[[-83.73681780000001,32.8334927],[-83.73683120000001,32.8335839],[-83.73681660000001,32.8337516]]},"id":"8944c0b0b87ffff-17d7b984f99f0e7d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8602ce-17973805efc6f5d6","8f44c0b0b8606c8-179f0876b07fdf3e"]},"geometry":{"type":"LineString","coordinates":[[-83.737437,32.833515500000004],[-83.7372565,32.833508800000004]]},"id":"8a44c0b0b867fff-1797283e5c480f3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b863da1-179ff8ca36a3fb6f","8f44c0b0b8606c8-179f0876b07fdf3e"]},"geometry":{"type":"LineString","coordinates":[[-83.7372565,32.833508800000004],[-83.7371229,32.833503900000004]]},"id":"8b44c0b0b863fff-179f88a078a98265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b863da1-179ff8ca36a3fb6f","8f44c0b0b866355-179ea8c09155785f"]},"geometry":{"type":"LineString","coordinates":[[-83.7371229,32.833503900000004],[-83.73713830000001,32.8330986]]},"id":"8a44c0b0b867fff-179f58c56b2e33c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7371402,32.8330482]},"id":"8f44c0b0b86632c-13ff28bf634f30c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b86632c-13ff28bf634f30c9","8f44c0b0b866355-179ea8c09155785f"]},"geometry":{"type":"LineString","coordinates":[[-83.73713830000001,32.8330986],[-83.7371402,32.8330482]]},"id":"8c44c0b0b8663ff-13fee8bff3ee2acd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b860d32-13f6586bdcd0c39f","8f44c0b0b86464a-13f6280863abbcd5"]},"geometry":{"type":"LineString","coordinates":[[-83.73743300000001,32.8330594],[-83.7372739,32.8330533]]},"id":"8a44c0b0b867fff-13f6483a2115d439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b860d32-13f6586bdcd0c39f","8f44c0b0b86632c-13ff28bf634f30c9"]},"geometry":{"type":"LineString","coordinates":[[-83.7372739,32.8330533],[-83.7371402,32.8330482]]},"id":"8a44c0b0b867fff-13f6b895a59733e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b86632c-13ff28bf634f30c9","8f44c0b0b8666a2-179ea97e26475ddb"]},"geometry":{"type":"LineString","coordinates":[[-83.7371402,32.8330482],[-83.73683770000001,32.8330366],[-83.736835,32.8330986]]},"id":"8b44c0b0b866fff-13fe392e25a19a97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66597800000001,32.798433800000005]},"id":"8f44c0b1c6927aa-17ffb67bc766b179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6927aa-17ffb67bc766b179","8f44c0b1ea6cd1a-17d6f6abe3fa3497"]},"geometry":{"type":"LineString","coordinates":[[-83.665901,32.798574],[-83.66597800000001,32.798433800000005]]},"id":"8944c0b1ea7ffff-179ef693d3182bfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6660573,32.7984675]},"id":"8f44c0b1c692751-1796b64a3a9f3704"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6927aa-17ffb67bc766b179","8f44c0b1c692751-1796b64a3a9f3704"]},"geometry":{"type":"LineString","coordinates":[[-83.66597800000001,32.798433800000005],[-83.6660573,32.7984675]]},"id":"8c44c0b1c6927ff-17f7b662f2213b4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6662541,32.7985641]},"id":"8f44c0b1c69224a-17beb5cf35282e77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c69224a-17beb5cf35282e77","8f44c0b1c692751-1796b64a3a9f3704"]},"geometry":{"type":"LineString","coordinates":[[-83.6660573,32.7984675],[-83.6662541,32.7985641]]},"id":"8a44c0b1c697fff-17b6f60cbabca7cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.665965,32.7983252]},"id":"8f44c0b1c69255a-17bff683eaebb420"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c69255a-17bff683eaebb420","8f44c0b1c6927aa-17ffb67bc766b179"]},"geometry":{"type":"LineString","coordinates":[[-83.66597800000001,32.798433800000005],[-83.6659235,32.7984079],[-83.665965,32.7983252]]},"id":"8b44c0b1c692fff-17d6b68f4a72a433"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6660035,32.798249000000006]},"id":"8f44c0b1c692cc3-17ffb66bdb322d0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c69255a-17bff683eaebb420","8f44c0b1c692cc3-17ffb66bdb322d0e"]},"geometry":{"type":"LineString","coordinates":[[-83.665965,32.7983252],[-83.6660035,32.798249000000006]]},"id":"8b44c0b1c692fff-1797f677d7a61507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66601820000001,32.7982194]},"id":"8f44c0b1c692ce6-17f7b662a8e1d847"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c692cc3-17ffb66bdb322d0e","8f44c0b1c692ce6-17f7b662a8e1d847"]},"geometry":{"type":"LineString","coordinates":[[-83.6660035,32.798249000000006],[-83.66601820000001,32.7982194]]},"id":"8d44c0b1c692cff-17f6f6673a058403"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c692ce6-17f7b662a8e1d847","8f44c0b1ea653a5-179eb6e5271a56f0"]},"geometry":{"type":"LineString","coordinates":[[-83.66601820000001,32.7982194],[-83.6658094,32.798100000000005]]},"id":"8944c0b1ea7ffff-17d7f6a3e0ff12e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.666036,32.798191100000004]},"id":"8f44c0b1c692c01-17d7f6578d0df3f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c692c01-17d7f6578d0df3f4","8f44c0b1c692ce6-17f7b662a8e1d847"]},"geometry":{"type":"LineString","coordinates":[[-83.666036,32.798191100000004],[-83.66601820000001,32.7982194]]},"id":"8c44c0b1c692dff-17def65d1a47baa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66610100000001,32.7983877]},"id":"8f44c0b1c6920c4-17d6f62ee0b06d2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6920c4-17d6f62ee0b06d2a","8f44c0b1c692751-1796b64a3a9f3704"]},"geometry":{"type":"LineString","coordinates":[[-83.6660573,32.7984675],[-83.66610100000001,32.7983877]]},"id":"8b44c0b1c692fff-17fff63c9eb6b6f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66613720000001,32.7983216]},"id":"8f44c0b1c692021-17b7b6184cfec369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c692021-17b7b6184cfec369","8f44c0b1c6920c4-17d6f62ee0b06d2a"]},"geometry":{"type":"LineString","coordinates":[[-83.66610100000001,32.7983877],[-83.66613720000001,32.7983216]]},"id":"8c44c0b1c6921ff-17bfb62398843c5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69995250000001,32.8695741]},"id":"8f44c0a200c9b08-179ff389bb0d2813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9b08-179ff389bb0d2813","8f44c0a200c9b40-17b7737313e7aabf"]},"geometry":{"type":"LineString","coordinates":[[-83.6999887,32.869592700000005],[-83.69995250000001,32.8695741]]},"id":"8c44c0a200c9bff-17b7e37e6c216fc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69975310000001,32.8694714]},"id":"8f44c0a200c9891-17dfe406520fdb32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9b08-179ff389bb0d2813","8f44c0a200c9891-17dfe406520fdb32"]},"geometry":{"type":"LineString","coordinates":[[-83.69995250000001,32.8695741],[-83.69975310000001,32.8694714]]},"id":"8b44c0a200c9fff-17fff3c805fd3a23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9c23-17d6643bf50acae8","8f44c0a200c9891-17dfe406520fdb32"]},"geometry":{"type":"LineString","coordinates":[[-83.69975310000001,32.8694714],[-83.6996673,32.869427200000004]]},"id":"8b44c0a200c9fff-17dff42121e34700"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994743,32.8695277]},"id":"8f44c0a200c9595-17fef4b497d8d54b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9c23-17d6643bf50acae8","8f44c0a200c9595-17fef4b497d8d54b"]},"geometry":{"type":"LineString","coordinates":[[-83.6996673,32.869427200000004],[-83.69958150000001,32.869383],[-83.6994743,32.8695277]]},"id":"8a44c0a200cffff-17d6e47e06a3790b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6995321,32.8696173]},"id":"8f44c0a200c94f5-17b6f4907f762c2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c94f5-17b6f4907f762c2c","8f44c0a200c9595-17fef4b497d8d54b"]},"geometry":{"type":"LineString","coordinates":[[-83.6994743,32.8695277],[-83.6994418,32.8695716],[-83.6995321,32.8696173]]},"id":"8a44c0a200cffff-179ef4b300dae532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996175,32.8696606]},"id":"8f44c0a200c9716-17d7e45b106010b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9716-17d7e45b106010b9","8f44c0a200c94f5-17b6f4907f762c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6995321,32.8696173],[-83.6996175,32.8696606]]},"id":"8b44c0a200c9fff-17d66475c7dbb738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6998214,32.869764]},"id":"8f44c0a200c920e-1796e3dbaa9b1350"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9716-17d7e45b106010b9","8f44c0a200c920e-1796e3dbaa9b1350"]},"geometry":{"type":"LineString","coordinates":[[-83.6996175,32.8696606],[-83.6998214,32.869764]]},"id":"8b44c0a200c9fff-17f6741b6a23d45d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70028860000001,32.8697646]},"id":"8f44c0a2039496e-1796e2b7ae9e6afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2039496e-1796e2b7ae9e6afd","8f44c0a203b3db2-17b6f266452c4c68"]},"geometry":{"type":"LineString","coordinates":[[-83.70041880000001,32.8695919],[-83.70028860000001,32.8697646]]},"id":"8a44c0a203b7fff-17def28ef6c6802a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2039496e-1796e2b7ae9e6afd","8f44c0a2039405c-1796e31b3ec83037"]},"geometry":{"type":"LineString","coordinates":[[-83.70028860000001,32.8697646],[-83.7001293,32.8699758]]},"id":"8b44c0a20394fff-17d6e2e9787aabc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002076,32.870017000000004]},"id":"8f44c0a20394301-17b6e2ea461a5c49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20394301-17b6e2ea461a5c49","8f44c0a2039405c-1796e31b3ec83037"]},"geometry":{"type":"LineString","coordinates":[[-83.7001293,32.8699758],[-83.7002076,32.870017000000004]]},"id":"8b44c0a20394fff-17b7e302b3c533bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003804,32.8701078]},"id":"8f44c0a20395c0c-17ff627e4351d68d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20394301-17b6e2ea461a5c49","8f44c0a20395c0c-17ff627e4351d68d"]},"geometry":{"type":"LineString","coordinates":[[-83.7002076,32.870017000000004],[-83.7003804,32.8701078]]},"id":"8a44c0a20397fff-17df62b442f09da2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70061220000001,32.869939200000005]},"id":"8f44c0a203b338e-179661ed66ab349a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b338e-179661ed66ab349a","8f44c0a20395c0c-17ff627e4351d68d"]},"geometry":{"type":"LineString","coordinates":[[-83.7003804,32.8701078],[-83.70045560000001,32.8701473],[-83.70061220000001,32.869939200000005]]},"id":"8944c0a203bffff-17de62302a5f510b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70053940000001,32.8698999]},"id":"8f44c0a203b30d8-17f7721aed1cf3c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b338e-179661ed66ab349a","8f44c0a203b30d8-17f7721aed1cf3c3"]},"geometry":{"type":"LineString","coordinates":[[-83.70061220000001,32.869939200000005],[-83.70053940000001,32.8698999]]},"id":"8b44c0a203b3fff-17f7e2042f57091b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b372d-17f67224a075d9b4","8f44c0a203b30d8-17f7721aed1cf3c3"]},"geometry":{"type":"LineString","coordinates":[[-83.70053940000001,32.8698999],[-83.7005238,32.8698915]]},"id":"8c44c0a203b37ff-17f6f21fc07c6135"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003662,32.8698064]},"id":"8f44c0a203b3411-17bf628720cdecc6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b3411-17bf628720cdecc6","8f44c0a203b372d-17f67224a075d9b4"]},"geometry":{"type":"LineString","coordinates":[[-83.7005238,32.8698915],[-83.7003662,32.8698064]]},"id":"8b44c0a203b3fff-17d7e255e940d8c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b3411-17bf628720cdecc6","8f44c0a2039496e-1796e2b7ae9e6afd"]},"geometry":{"type":"LineString","coordinates":[[-83.7003662,32.8698064],[-83.70028860000001,32.8697646]]},"id":"8a44c0a203b7fff-179ff29f6a9512ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7002484,32.8697432]},"id":"8f44c0a20394976-1797e2d0cfb63c75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2039496e-1796e2b7ae9e6afd","8f44c0a20394976-1797e2d0cfb63c75"]},"geometry":{"type":"LineString","coordinates":[[-83.70028860000001,32.8697646],[-83.7002484,32.8697432]]},"id":"8d44c0a2039497f-179e72c438ab9b16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7001173,32.8696736]},"id":"8f44c0a203b26e1-17de6322b0cca549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b26e1-17de6322b0cca549","8f44c0a20394976-1797e2d0cfb63c75"]},"geometry":{"type":"LineString","coordinates":[[-83.7002484,32.8697432],[-83.7001173,32.8696736]]},"id":"8a44c0a203b7fff-17ffe2f9cd59a3e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20394976-1797e2d0cfb63c75","8f44c0a20394774-17bfe34e9945dadf"]},"geometry":{"type":"LineString","coordinates":[[-83.7002484,32.8697432],[-83.7000471,32.8700154]]},"id":"8b44c0a20394fff-17def30fa41f78ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69995080000001,32.8699637]},"id":"8f44c0a2039445d-179f738acba4728e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20394774-17bfe34e9945dadf","8f44c0a2039445d-179f738acba4728e"]},"geometry":{"type":"LineString","coordinates":[[-83.7000471,32.8700154],[-83.69995080000001,32.8699637]]},"id":"8b44c0a20394fff-179fe36cb62834dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7007767,32.8700259]},"id":"8f44c0a20386c99-17b6718698cddc27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b16ac-17def131ecc445ad","8f44c0a20386c99-17b6718698cddc27"]},"geometry":{"type":"LineString","coordinates":[[-83.7009122,32.8698575],[-83.7007767,32.8700259]]},"id":"8944c0a203bffff-1797f15c47d91870"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203808a0-17f6602365928d2a","8f44c0a20386c99-17b6718698cddc27"]},"geometry":{"type":"LineString","coordinates":[[-83.7007767,32.8700259],[-83.7006058,32.870238400000005],[-83.700601,32.870271100000004],[-83.70062,32.8703001],[-83.70118480000001,32.870600200000005],[-83.7012313,32.8706039],[-83.70127020000001,32.870583100000005],[-83.70135930000001,32.8704733],[-83.70136570000001,32.8704236],[-83.701345,32.870323400000004]]},"id":"8944c0a203bffff-179fe1138df86664"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203808a0-17f6602365928d2a","8f44c0a20386c99-17b6718698cddc27"]},"geometry":{"type":"LineString","coordinates":[[-83.701345,32.870323400000004],[-83.7007767,32.8700259]]},"id":"8a44c0a20387fff-179770d50c799cac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b338e-179661ed66ab349a","8f44c0a20386c99-17b6718698cddc27"]},"geometry":{"type":"LineString","coordinates":[[-83.7007767,32.8700259],[-83.70061220000001,32.869939200000005]]},"id":"8944c0a203bffff-179f61b9f42fa812"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6993645,32.869466]},"id":"8f44c0a200cb934-17de64f93c1408e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cb934-17de64f93c1408e7","8f44c0a200c9595-17fef4b497d8d54b"]},"geometry":{"type":"LineString","coordinates":[[-83.6994743,32.8695277],[-83.6993645,32.869466]]},"id":"8a44c0a200cffff-17fff4d6e746e592"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69933,32.8694465]},"id":"8f44c0a200c8644-17de750ec3a826e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cb934-17de64f93c1408e7","8f44c0a200c8644-17de750ec3a826e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6993645,32.869466],[-83.69933,32.8694465]]},"id":"8b44c0a200c8fff-17d66504006238af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6992939,32.8694263]},"id":"8f44c0a200c860d-17bf752553bf9254"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c8644-17de750ec3a826e1","8f44c0a200c860d-17bf752553bf9254"]},"geometry":{"type":"LineString","coordinates":[[-83.69933,32.8694465],[-83.6992939,32.8694263]]},"id":"8c44c0a200c87ff-17d7e51a030e3087"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c8021-17d774e4afdf53b6","8f44c0a200c860d-17bf752553bf9254"]},"geometry":{"type":"LineString","coordinates":[[-83.6992939,32.8694263],[-83.699258,32.8694061],[-83.69922860000001,32.869363],[-83.6992324,32.8693156],[-83.6993297,32.8692171],[-83.69939740000001,32.8692529]]},"id":"8b44c0a200c8fff-17f7652a58d4aec5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69941610000001,32.8692627]},"id":"8f44c0a200c8153-17df74d8fb0bf2f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c8153-17df74d8fb0bf2f9","8f44c0a200c8021-17d774e4afdf53b6"]},"geometry":{"type":"LineString","coordinates":[[-83.69939740000001,32.8692529],[-83.69941610000001,32.8692627]]},"id":"8c44c0a200c81ff-17d664dec451f1bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994533,32.8692824]},"id":"8f44c0a200c814b-17f7e4c1b79797a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c814b-17f7e4c1b79797a8","8f44c0a200c8153-17df74d8fb0bf2f9"]},"geometry":{"type":"LineString","coordinates":[[-83.69941610000001,32.8692627],[-83.6994533,32.8692824]]},"id":"8d44c0a200c817f-17df64cd5e573fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69948860000001,32.869301]},"id":"8f44c0a200c8a82-17f764aba2d5cf0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c8a82-17f764aba2d5cf0f","8f44c0a200c814b-17f7e4c1b79797a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6994533,32.8692824],[-83.69948860000001,32.869301]]},"id":"8b44c0a200c8fff-17ff74b6bb94cb4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6995469,32.869331800000005]},"id":"8f44c0a200c8af1-17966487364cefbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c8a82-17f764aba2d5cf0f","8f44c0a200c8af1-17966487364cefbd"]},"geometry":{"type":"LineString","coordinates":[[-83.69948860000001,32.869301],[-83.6995469,32.869331800000005]]},"id":"8c44c0a200c8bff-17fee499604432ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1a4c-17b6f03958435767","8f44c0a203b1033-17ffe0e423b66db6"]},"geometry":{"type":"LineString","coordinates":[[-83.7013099,32.8697869],[-83.7011859,32.869717800000004],[-83.70103660000001,32.8696986]]},"id":"8b44c0a203b1fff-17ff608c06f30823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1cea-17b7e10dbcb81548","8f44c0a203b1033-17ffe0e423b66db6"]},"geometry":{"type":"LineString","coordinates":[[-83.70103660000001,32.8696986],[-83.7009701,32.8696186]]},"id":"8b44c0a203b1fff-17d6e0f8e8f7e471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1cea-17b7e10dbcb81548","8f44c0a203b00cb-17de71bcdf34d708"]},"geometry":{"type":"LineString","coordinates":[[-83.7009701,32.8696186],[-83.7006899,32.869472300000005]]},"id":"8a44c0a203b7fff-179ff16541456b4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7003638,32.869302000000005]},"id":"8f44c0a203b292b-17f7e288a71a97f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b292b-17f7e288a71a97f8","8f44c0a203b00cb-17de71bcdf34d708"]},"geometry":{"type":"LineString","coordinates":[[-83.7006899,32.869472300000005],[-83.7003638,32.869302000000005]]},"id":"8a44c0a203b7fff-17b76222c8fa427d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6997913,32.8690032]},"id":"8f44c0a200cdc2e-13b763ee71d867fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b292b-17f7e288a71a97f8","8f44c0a200cdc2e-13b763ee71d867fa"]},"geometry":{"type":"LineString","coordinates":[[-83.7003638,32.869302000000005],[-83.6997913,32.8690032]]},"id":"8844c0a201fffff-1796633b9c84c014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cdc2e-13b763ee71d867fa","8f44c0a200cca8b-13f7e4547317ae8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6997913,32.8690032],[-83.6996281,32.8689018]]},"id":"8a44c0a200cffff-139774217a97e0b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6994033,32.868754800000005]},"id":"8f44c0a200cccce-139fe4e0f3881d4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cccce-139fe4e0f3881d4c","8f44c0a200cca8b-13f7e4547317ae8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6996281,32.8689018],[-83.6994308,32.8687792],[-83.6994033,32.868754800000005]]},"id":"8b44c0a200ccfff-13df749bb5cb1a4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6992898,32.8685228]},"id":"8f44c0a200c1a12-139ee527ed8357a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cccce-139fe4e0f3881d4c","8f44c0a200c1a12-139ee527ed8357a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6994033,32.868754800000005],[-83.6992041,32.8685781],[-83.6992898,32.8685228]]},"id":"8944c0a200fffff-13d675290da6128d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200cd4f5-17b77446a05d40b6","8f44c0a200cdc2e-13b763ee71d867fa"]},"geometry":{"type":"LineString","coordinates":[[-83.69965020000001,32.8691793],[-83.6997913,32.8690032]]},"id":"8b44c0a200cdfff-13fe741a8805bd35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200eb411-139673fe17885f3e","8f44c0a200cdc2e-13b763ee71d867fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6997913,32.8690032],[-83.6999619,32.8687728],[-83.6999668,32.868744400000004],[-83.699944,32.868725000000005],[-83.69976630000001,32.8687175]]},"id":"8944c0a200fffff-13d7e3b7d6ced077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200eb411-139673fe17885f3e","8f44c0a200cccce-139fe4e0f3881d4c"]},"geometry":{"type":"LineString","coordinates":[[-83.69976630000001,32.8687175],[-83.6994945,32.868704900000004],[-83.6994033,32.868754800000005]]},"id":"8944c0a200fffff-1397e472640d746e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b292b-17f7e288a71a97f8","8f44c0a203b2005-17f6f2e04440f689"]},"geometry":{"type":"LineString","coordinates":[[-83.7002236,32.869485700000006],[-83.7003638,32.869302000000005]]},"id":"8b44c0a203b2fff-17bf72b4767e4c45"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b292b-17f7e288a71a97f8","8f44c0a203b454e-139ee1b67c7a08cb"]},"geometry":{"type":"LineString","coordinates":[[-83.7003638,32.869302000000005],[-83.700456,32.8692664],[-83.7007001,32.868929200000004]]},"id":"8a44c0a203b7fff-179ee216e52180cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203ac4aa-17967d5361e7ab6d","8f44c0a20384b20-17967f6dbf1f53e3"]},"geometry":{"type":"LineString","coordinates":[[-83.70249700000001,32.870151],[-83.70246010000001,32.8700818],[-83.70241180000001,32.8700416],[-83.7022565,32.8699564],[-83.70208050000001,32.8701515],[-83.7020136,32.8701621],[-83.70197730000001,32.8701505],[-83.701941,32.870139],[-83.70163570000001,32.8699687]]},"id":"8944c0a203bffff-17dfde524374e182"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20384869-1796df831fc46dbf","8f44c0a20384b20-17967f6dbf1f53e3"]},"geometry":{"type":"LineString","coordinates":[[-83.70163570000001,32.8699687],[-83.70160150000001,32.869949600000005]]},"id":"8b44c0a20384fff-179edf786e5b9a84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671362,32.7968494]},"id":"8f44c0b1c6b686b-139ef3a7e3454532"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b686b-139ef3a7e3454532","8f44c0b1c6b475e-13d6f3114c520a97"]},"geometry":{"type":"LineString","coordinates":[[-83.6673772,32.7969614],[-83.6671362,32.7968494]]},"id":"8a44c0b1c6b7fff-13b7f35c990cd79d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6670699,32.7968186]},"id":"8f44c0b1c6b6808-13ffb3d15e652c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b686b-139ef3a7e3454532","8f44c0b1c6b6808-13ffb3d15e652c91"]},"geometry":{"type":"LineString","coordinates":[[-83.6671362,32.7968494],[-83.6670699,32.7968186]]},"id":"8c44c0b1c6b69ff-1397f3bc942dc75e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66692970000001,32.7967535]},"id":"8f44c0b1c6b6d46-13d6f428f9f7d376"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6d46-13d6f428f9f7d376","8f44c0b1c6b6808-13ffb3d15e652c91"]},"geometry":{"type":"LineString","coordinates":[[-83.6670699,32.7968186],[-83.66692970000001,32.7967535]]},"id":"8b44c0b1c6b6fff-13f7f3fd26b9458a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6d46-13d6f428f9f7d376","8f44c0b1eb6b064-1396f4d0f1d6337f"]},"geometry":{"type":"LineString","coordinates":[[-83.66692970000001,32.7967535],[-83.66666090000001,32.796628600000005]]},"id":"8944c0b1eb7ffff-13bff47cf32c8601"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6669871,32.7969546]},"id":"8f44c0b1c6b6076-13d6b40517f49fd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6076-13d6b40517f49fd2","8f44c0b1c6b6808-13ffb3d15e652c91"]},"geometry":{"type":"LineString","coordinates":[[-83.6670699,32.7968186],[-83.6669871,32.7969546]]},"id":"8b44c0b1c6b6fff-13b6b3eb39be111d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66694190000001,32.797026800000005]},"id":"8f44c0b1c6b60cb-13fff4215f8fa351"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6076-13d6b40517f49fd2","8f44c0b1c6b60cb-13fff4215f8fa351"]},"geometry":{"type":"LineString","coordinates":[[-83.6669871,32.7969546],[-83.66694190000001,32.797026800000005]]},"id":"8c44c0b1c6b61ff-13f7b4133232456e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66689910000001,32.797098000000005]},"id":"8f44c0b1c6b6675-17bef43c15f76367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6675-17bef43c15f76367","8f44c0b1c6b60cb-13fff4215f8fa351"]},"geometry":{"type":"LineString","coordinates":[[-83.66694190000001,32.797026800000005],[-83.66689910000001,32.797098000000005]]},"id":"8b44c0b1c6b6fff-1796b42eb3f2ea01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4da5d-17bef4b1b9a73b59","8f44c0b1c6b6675-17bef43c15f76367"]},"geometry":{"type":"LineString","coordinates":[[-83.66689910000001,32.797098000000005],[-83.66684980000001,32.7971801],[-83.6667109,32.7971237]]},"id":"8a44c0b1c6b7fff-17def46f685bfa79"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6667613,32.797038300000004]},"id":"8f44c0b1eb4db6c-1796f4923b3f10bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4da5d-17bef4b1b9a73b59","8f44c0b1eb4db6c-1796f4923b3f10bc"]},"geometry":{"type":"LineString","coordinates":[[-83.6667109,32.7971237],[-83.6667613,32.797038300000004]]},"id":"8a44c0b1c6b7fff-179fb4a1fb57738d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6668023,32.7969689]},"id":"8f44c0b1c6b6451-13dfb47894616856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4db6c-1796f4923b3f10bc","8f44c0b1c6b6451-13dfb47894616856"]},"geometry":{"type":"LineString","coordinates":[[-83.6667613,32.797038300000004],[-83.6668023,32.7969689]]},"id":"8b44c0b1c6b6fff-13fff48569cceb25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66684570000001,32.7968956]},"id":"8f44c0b1c6b6545-13bff45d74ea85a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6451-13dfb47894616856","8f44c0b1c6b6545-13bff45d74ea85a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6668023,32.7969689],[-83.66684570000001,32.7968956]]},"id":"8c44c0b1c6b65ff-13d6b46b09836672"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6d46-13d6f428f9f7d376","8f44c0b1c6b6545-13bff45d74ea85a5"]},"geometry":{"type":"LineString","coordinates":[[-83.66684570000001,32.7968956],[-83.66692970000001,32.7967535]]},"id":"8b44c0b1c6b6fff-13fff44330211f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672314,32.796683800000004]},"id":"8f44c0b1eb69260-13b7f36c64727f68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b686b-139ef3a7e3454532","8f44c0b1eb69260-13b7f36c64727f68"]},"geometry":{"type":"LineString","coordinates":[[-83.6671362,32.7968494],[-83.6672314,32.796683800000004]]},"id":"8a44c0b1c6b7fff-13dfb38a2998b74e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672533,32.7966458]},"id":"8f44c0b1eb69368-139fb35eb0694729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb69368-139fb35eb0694729","8f44c0b1eb69260-13b7f36c64727f68"]},"geometry":{"type":"LineString","coordinates":[[-83.6672314,32.796683800000004],[-83.6672533,32.7966458]]},"id":"8c44c0b1eb693ff-139fb36588681929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667044,32.7965596]},"id":"8f44c0b1eb690d5-13dff3e186a16e00"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb690d5-13dff3e186a16e00","8f44c0b1eb69368-139fb35eb0694729"]},"geometry":{"type":"LineString","coordinates":[[-83.6672533,32.7966458],[-83.6672839,32.796592700000005],[-83.6670771,32.796503300000005],[-83.667044,32.7965596]]},"id":"8b44c0b1eb69fff-13def3908469fb9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66702190000001,32.7965954]},"id":"8f44c0b1eb69776-13f6b3ef5810e127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb690d5-13dff3e186a16e00","8f44c0b1eb69776-13f6b3ef5810e127"]},"geometry":{"type":"LineString","coordinates":[[-83.667044,32.7965596],[-83.66702190000001,32.7965954]]},"id":"8b44c0b1eb69fff-13f6f3e860c7e5a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6d46-13d6f428f9f7d376","8f44c0b1eb69776-13f6b3ef5810e127"]},"geometry":{"type":"LineString","coordinates":[[-83.66702190000001,32.7965954],[-83.66692970000001,32.7967535]]},"id":"8944c0b1eb7ffff-13b7b40c23bb9d70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7074235,32.786771800000004]},"id":"8f44c0b03a134ea-13f6714c5b7d5d08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03a134ea-13f6714c5b7d5d08","8f44c0b03aac24c-139f71a9eef1ab29"]},"geometry":{"type":"LineString","coordinates":[[-83.70727380000001,32.7870422],[-83.7074235,32.786771800000004]]},"id":"8844c0b03bfffff-13def17b224f30da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03a13aa5-13de7080410931bb","8f44c0b03a134ea-13f6714c5b7d5d08"]},"geometry":{"type":"LineString","coordinates":[[-83.7074235,32.786771800000004],[-83.70755790000001,32.786769],[-83.7076047,32.7867264],[-83.70775,32.7867302]]},"id":"8b44c0b03a13fff-13f7d0e675d00de9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7068663,32.786811300000004]},"id":"8f44c0b03aac4b1-139f52a89bacba24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac4b1-139f52a89bacba24","8f44c0b03aaea21-13df52af348790c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7068557,32.7869392],[-83.7068663,32.786811300000004]]},"id":"8b44c0b03aaefff-13b752abec0838e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7072327,32.7867361]},"id":"8f44c0b03aac8e1-13de51c3951fded7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac4b1-139f52a89bacba24","8f44c0b03aac8e1-13de51c3951fded7"]},"geometry":{"type":"LineString","coordinates":[[-83.7068663,32.786811300000004],[-83.7068787,32.7867078],[-83.7072327,32.7867361]]},"id":"8a44c0b03aaffff-13ded24c31cb95e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70719940000001,32.7868371]},"id":"8f44c0b03aac14a-139f71d86db39906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac14a-139f71d86db39906","8f44c0b03aac8e1-13de51c3951fded7"]},"geometry":{"type":"LineString","coordinates":[[-83.7072327,32.7867361],[-83.70719940000001,32.7868371]]},"id":"8b44c0b03aacfff-13fff1ce0876a548"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac14a-139f71d86db39906","8f44c0b03aac2a3-13fff1f475a28749"]},"geometry":{"type":"LineString","coordinates":[[-83.70719940000001,32.7868371],[-83.7071545,32.7869854]]},"id":"8b44c0b03aacfff-13dfd1e67a595796"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac84e-13f6d1a12589f211","8f44c0b03a134ea-13f6714c5b7d5d08"]},"geometry":{"type":"LineString","coordinates":[[-83.7074235,32.786771800000004],[-83.7072878,32.786746400000006]]},"id":"8844c0b03bfffff-13fe7176b4877179"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac8e1-13de51c3951fded7","8f44c0b03aac84e-13f6d1a12589f211"]},"geometry":{"type":"LineString","coordinates":[[-83.7072878,32.786746400000006],[-83.7072327,32.7867361]]},"id":"8c44c0b03aac9ff-13f751b266acf3fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6ca1a-17bfba515f12bc82","8f44c0a04d6c6ec-179efaf3f25c92d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6707009,32.8830637],[-83.6709611,32.8829113]]},"id":"8b44c0a04d6cfff-17dfbaa2aa32a1ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6ca1a-17bfba515f12bc82","8f44c0a049938d5-179fe95ee3516f7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6709611,32.8829113],[-83.671349,32.8826838]]},"id":"8844c0a049fffff-17f6a9d816563060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a049938d5-179fe95ee3516f7e","8f44c0a04991591-17fee9043b309279"]},"geometry":{"type":"LineString","coordinates":[[-83.671349,32.8826838],[-83.6714941,32.882598800000004]]},"id":"8a44c0a04997fff-1796f9319e7a80a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a049915a0-17dfb8eeb054d470","8f44c0a04991591-17fee9043b309279"]},"geometry":{"type":"LineString","coordinates":[[-83.6714941,32.882598800000004],[-83.67152850000001,32.8825787]]},"id":"8d44c0a049915bf-17f6a8f9774f3b02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04993774-179ee9a8888c6ab8","8f44c0a04d6ca6b-17bfba123f272269"]},"geometry":{"type":"LineString","coordinates":[[-83.67123120000001,32.8828558],[-83.6711027,32.8829373],[-83.6710621,32.8829403]]},"id":"8844c0a049fffff-17b7f9dbdc647580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6ca1a-17bfba515f12bc82","8f44c0a04d6ca6b-17bfba123f272269"]},"geometry":{"type":"LineString","coordinates":[[-83.6710621,32.8829403],[-83.671029,32.8829428],[-83.6709611,32.8829113]]},"id":"8c44c0a04d6cbff-17beba326120c7c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499e651-1797f8d50d5c9945","8f44c0a0499ac94-17dfe968496ad0ef"]},"geometry":{"type":"LineString","coordinates":[[-83.671334,32.8833694],[-83.67146670000001,32.8832924],[-83.67152920000001,32.8833074],[-83.67156960000001,32.8832821]]},"id":"8944c0a049bffff-17bfb91f41ef2f18"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499a01a-17bfe90835b22629","8f44c0a04d69ae6-179fa9b2dffc5ec8"]},"geometry":{"type":"LineString","coordinates":[[-83.67121470000001,32.8836816],[-83.6714877,32.8835484]]},"id":"8844c0a049fffff-17f7e95d8a791725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499a01a-17bfe90835b22629","8f44c0a0499a84d-17fef88aaf0a8cda"]},"geometry":{"type":"LineString","coordinates":[[-83.6714877,32.8835484],[-83.6715259,32.883529800000005],[-83.67168860000001,32.8834541]]},"id":"8b44c0a0499afff-179ea8c98d81175c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0499a84d-17fef88aaf0a8cda","8f44c0a04998573-17dfb81ca69006a9"]},"geometry":{"type":"LineString","coordinates":[[-83.67168860000001,32.8834541],[-83.6718646,32.883372300000005]]},"id":"8a44c0a0499ffff-17f7e853a6cf87bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d600d5-179eac8dd61c4a0a","8f44c0a04d60b36-13dfac0180e4fb53"]},"geometry":{"type":"LineString","coordinates":[[-83.67004510000001,32.8822722],[-83.67026960000001,32.882143400000004]]},"id":"8b44c0a04d60fff-13f7ec47ad6fa540"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226cb736-13d7ab43e013f038","8f44c0a04d60b36-13dfac0180e4fb53"]},"geometry":{"type":"LineString","coordinates":[[-83.67026960000001,32.882143400000004],[-83.67068300000001,32.8819062],[-83.6706923,32.8818696],[-83.670573,32.8817272]]},"id":"8744c0a04ffffff-13d7fb5f4ab40363"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226cb736-13d7ab43e013f038","8f44c0a226cb445-13bfeb4e2df9fc54"]},"geometry":{"type":"LineString","coordinates":[[-83.670573,32.8817272],[-83.67055660000001,32.8817076]]},"id":"8d44c0a226cb47f-13d7eb490ea997cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6472d-139fac4d307743b2","8f44c0a04d64630-13b6ec74b71c8472"]},"geometry":{"type":"LineString","coordinates":[[-83.67014850000001,32.8818616],[-83.67008530000001,32.8818988]]},"id":"8c44c0a04d647ff-13b7ac60ff175ea0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d66351-139fbd0770c5157b","8f44c0a04d64630-13b6ec74b71c8472"]},"geometry":{"type":"LineString","coordinates":[[-83.67008530000001,32.8818988],[-83.66985050000001,32.882037100000005]]},"id":"8a44c0a04d67fff-13deacbe1afb6e48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66727990000001,32.7964069]},"id":"8f44c0b1c79a49e-13fef34e1a0d5b5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79a49e-13fef34e1a0d5b5a","8f44c0b1c79a081-13ffb2c6fc7c3e1b"]},"geometry":{"type":"LineString","coordinates":[[-83.66727990000001,32.7964069],[-83.66733520000001,32.796425],[-83.66749610000001,32.7964144]]},"id":"8844c0b1c7fffff-1397b30b238b2005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66711640000001,32.796347600000004]},"id":"8f44c0b1eb698a6-13d7f3b4453fc0b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66714590000001,32.7962928]},"id":"8f44c0b1eb699a0-13b7b3a1d68dcc29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb699a0-13b7b3a1d68dcc29","8f44c0b1eb698a6-13d7f3b4453fc0b4"]},"geometry":{"type":"LineString","coordinates":[[-83.66711640000001,32.796347600000004],[-83.66714590000001,32.7962928]]},"id":"8c44c0b1eb699ff-13d6b3ab0be23db9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6671858,32.7962184]},"id":"8f44c0b1eb6d2b2-1396b388ea0f8eb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d2b2-1396b388ea0f8eb5","8f44c0b1eb699a0-13b7b3a1d68dcc29"]},"geometry":{"type":"LineString","coordinates":[[-83.66714590000001,32.7962928],[-83.6671858,32.7962184]]},"id":"8a44c0b1eb6ffff-139ff39563c9293b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672233,32.7961484]},"id":"8f44c0b1eb6d3b4-13def3717d2b4507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d2b2-1396b388ea0f8eb5","8f44c0b1eb6d3b4-13def3717d2b4507"]},"geometry":{"type":"LineString","coordinates":[[-83.6671858,32.7962184],[-83.6672233,32.7961484]]},"id":"8b44c0b1eb6dfff-13feb37d2188b72c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6672573,32.7960848]},"id":"8f44c0b1eb6d159-13b7b35c3bbe37f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d3b4-13def3717d2b4507","8f44c0b1eb6d159-13b7b35c3bbe37f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6672233,32.7961484],[-83.6672573,32.7960848]]},"id":"8c44c0b1eb6d1ff-13d6f366da8e0a66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.667286,32.7960313]},"id":"8f44c0b1eb6d165-139fb34a4af5ca46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d165-139fb34a4af5ca46","8f44c0b1eb6d159-13b7b35c3bbe37f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6672573,32.7960848],[-83.667286,32.7960313]]},"id":"8d44c0b1eb6d17f-13b6f3534a783969"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673062,32.796359200000005]},"id":"8f44c0b1c79a599-13deb33da4721997"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79a599-13deb33da4721997","8f44c0b1c79a49e-13fef34e1a0d5b5a"]},"geometry":{"type":"LineString","coordinates":[[-83.66727990000001,32.7964069],[-83.6673062,32.796359200000005]]},"id":"8c44c0b1c79a5ff-13fff345de5ae50c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6673432,32.796292]},"id":"8f44c0b1eb6d248-13b6b32681736967"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79a599-13deb33da4721997","8f44c0b1eb6d248-13b6b32681736967"]},"geometry":{"type":"LineString","coordinates":[[-83.6673062,32.796359200000005],[-83.6673432,32.796292]]},"id":"8b44c0b1c79afff-13d7b3321183e451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66738880000001,32.7962094]},"id":"8f44c0b1eb6d36d-13fef30a0c91f077"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d248-13b6b32681736967","8f44c0b1eb6d36d-13fef30a0c91f077"]},"geometry":{"type":"LineString","coordinates":[[-83.6673432,32.796292],[-83.66738880000001,32.7962094]]},"id":"8944c0b1c7bffff-139eb31846984059"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6674254,32.7961431]},"id":"8f44c0b1eb6da5c-13d7f2f32344fabe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d36d-13fef30a0c91f077","8f44c0b1eb6da5c-13d7f2f32344fabe"]},"geometry":{"type":"LineString","coordinates":[[-83.66738880000001,32.7962094],[-83.6674254,32.7961431]]},"id":"8b44c0b1eb6dfff-13feb2fe9ad03d33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6db4a-13bef2e31ed7e963","8f44c0b1eb6da5c-13d7f2f32344fabe"]},"geometry":{"type":"LineString","coordinates":[[-83.6674254,32.7961431],[-83.66745110000001,32.796096500000004]]},"id":"8c44c0b1eb6dbff-13d6f2eb2286e906"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d165-139fb34a4af5ca46","8f44c0b1eb6d81d-13dfb3469897c51e"]},"geometry":{"type":"LineString","coordinates":[[-83.667286,32.7960313],[-83.66729190000001,32.795948]]},"id":"8b44c0b1eb6dfff-13f7b348729542e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d81d-13dfb3469897c51e","8f44c0b1eb6dd85-13beb3cefaa0850a"]},"geometry":{"type":"LineString","coordinates":[[-83.66729190000001,32.795948],[-83.6670737,32.7958656]]},"id":"8b44c0b1eb6dfff-13d7f38acf139eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6db4a-13bef2e31ed7e963","8f44c0b1c79e4e6-13f6f2d25f46d0bc"]},"geometry":{"type":"LineString","coordinates":[[-83.66745110000001,32.796096500000004],[-83.66747790000001,32.7959815]]},"id":"8a44c0b1c79ffff-1396f2dab03fe1e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79e522-13b7f2c1a883c065","8f44c0b1c79e4e6-13f6f2d25f46d0bc"]},"geometry":{"type":"LineString","coordinates":[[-83.66747790000001,32.7959815],[-83.6675046,32.795865400000004]]},"id":"8c44c0b1c79e5ff-13deb2c9f38244d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66759160000001,32.7955649]},"id":"8f44c0b1c7914c4-13feb28b4715e670"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79e522-13b7f2c1a883c065","8f44c0b1c7914c4-13feb28b4715e670"]},"geometry":{"type":"LineString","coordinates":[[-83.6675046,32.795865400000004],[-83.6675932,32.795630700000004],[-83.66759160000001,32.7955649]]},"id":"8944c0b1c7bffff-13dfb2a0564df57b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79144e-13f6b25f4a7664b2","8f44c0b1c7914c4-13feb28b4715e670"]},"geometry":{"type":"LineString","coordinates":[[-83.66759160000001,32.7955649],[-83.667662,32.7955747]]},"id":"8c44c0b1c7915ff-13ffb27543315ba1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79148a-13f6b2aa776ed530","8f44c0b1c7914c4-13feb28b4715e670"]},"geometry":{"type":"LineString","coordinates":[[-83.66759160000001,32.7955649],[-83.6675417,32.795556000000005]]},"id":"8c44c0b1c7915ff-13fff29aeb650e67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66748750000001,32.7955464]},"id":"8f44c0b1c79386a-13f6b2cc584b26f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79148a-13f6b2aa776ed530","8f44c0b1c79386a-13f6b2cc584b26f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6675417,32.795556000000005],[-83.66748750000001,32.7955464]]},"id":"8b44c0b1c793fff-13f7b2bb6dca8f36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c793c72-13d7f35710e35ac5","8f44c0b1c79386a-13f6b2cc584b26f4"]},"geometry":{"type":"LineString","coordinates":[[-83.66748750000001,32.7955464],[-83.6672655,32.795506800000005]]},"id":"8b44c0b1c793fff-13d6b311b8d753d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66733690000001,32.795828300000004]},"id":"8f44c0b1c79328a-1396b32a72bf045a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79386a-13f6b2cc584b26f4","8f44c0b1c79328a-1396b32a72bf045a"]},"geometry":{"type":"LineString","coordinates":[[-83.66748750000001,32.7955464],[-83.66733690000001,32.795828300000004]]},"id":"8b44c0b1c793fff-13beb2fb6f4ba00c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79e522-13b7f2c1a883c065","8f44c0b1c79328a-1396b32a72bf045a"]},"geometry":{"type":"LineString","coordinates":[[-83.66733690000001,32.795828300000004],[-83.6675046,32.795865400000004]]},"id":"8944c0b1c7bffff-139ef2f61f75925b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79379a-13def3a7de816a84","8f44c0b1c79328a-1396b32a72bf045a"]},"geometry":{"type":"LineString","coordinates":[[-83.66713630000001,32.7957486],[-83.66733690000001,32.795828300000004]]},"id":"8b44c0b1c793fff-13f7f3692c9a1bb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d81d-13dfb3469897c51e","8f44c0b1c79328a-1396b32a72bf045a"]},"geometry":{"type":"LineString","coordinates":[[-83.66733690000001,32.795828300000004],[-83.66729190000001,32.795948]]},"id":"8944c0b1c7bffff-13b6b338870b0dfe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6832d-13b7f45580e536a1","8f44c0b1eb698a6-13d7f3b4453fc0b4"]},"geometry":{"type":"LineString","coordinates":[[-83.66685840000001,32.7962684],[-83.66711640000001,32.796347600000004]]},"id":"8a44c0b1eb6ffff-13beb404e7166b77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74608740000001,32.8344486]},"id":"8f44c0b094449a9-17dff2e768bf1794"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094449a9-17dff2e768bf1794","8f44c0b09444984-17dff2fd6674e38a"]},"geometry":{"type":"LineString","coordinates":[[-83.74608740000001,32.8344486],[-83.74605220000001,32.8344311]]},"id":"8d44c0b094449bf-17d5f2f2607bd217"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7460082,32.8344092]},"id":"8f44c0b094626c8-17d5f318eadb948d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094626c8-17d5f318eadb948d","8f44c0b09444984-17dff2fd6674e38a"]},"geometry":{"type":"LineString","coordinates":[[-83.74605220000001,32.8344311],[-83.7460082,32.8344092]]},"id":"8b44c0b09444fff-17ddf30b264ebbf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745925,32.8343678]},"id":"8f44c0b0946269a-17b7f34ce8d521e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094626c8-17d5f318eadb948d","8f44c0b0946269a-17b7f34ce8d521e7"]},"geometry":{"type":"LineString","coordinates":[[-83.7460082,32.8344092],[-83.745925,32.8343678]]},"id":"8c44c0b094627ff-17b5f332e113130c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.745852,32.8343314]},"id":"8f44c0b09471a0d-1795f37a806f0d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471a0d-1795f37a806f0d31","8f44c0b0946269a-17b7f34ce8d521e7"]},"geometry":{"type":"LineString","coordinates":[[-83.745925,32.8343678],[-83.745852,32.8343314]]},"id":"8944c0b0947ffff-179df363bba6fb4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7457656,32.834288400000005]},"id":"8f44c0b09471b99-17f7f3b08bbf3ddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471b99-17f7f3b08bbf3ddf","8f44c0b09471a0d-1795f37a806f0d31"]},"geometry":{"type":"LineString","coordinates":[[-83.745852,32.8343314],[-83.7457656,32.834288400000005]]},"id":"8c44c0b09471bff-1797f3958a51100a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7456851,32.834248200000005]},"id":"8f44c0b09471176-17ddf3e2de9d6905"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471b99-17f7f3b08bbf3ddf","8f44c0b09471176-17ddf3e2de9d6905"]},"geometry":{"type":"LineString","coordinates":[[-83.7457656,32.834288400000005],[-83.7456851,32.834248200000005]]},"id":"8b44c0b09471fff-17fdf3c9bf2dd10e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471176-17ddf3e2de9d6905","8f44c0b09471c4a-17d5f413ac8137ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7456851,32.834248200000005],[-83.745607,32.8342094]]},"id":"8b44c0b09471fff-17d5f3fb433e107a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471523-17d5f4645b3a264e","8f44c0b09471c4a-17d5f413ac8137ed"]},"geometry":{"type":"LineString","coordinates":[[-83.745607,32.8342094],[-83.7455111,32.8341616],[-83.74547790000001,32.834209300000005]]},"id":"8b44c0b09471fff-17b5f43fcbdc65fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7455941,32.8343973]},"id":"8f44c0b09471770-17bff41bb40b5e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471523-17d5f4645b3a264e","8f44c0b09471770-17bff41bb40b5e8e"]},"geometry":{"type":"LineString","coordinates":[[-83.74547790000001,32.834209300000005],[-83.7454088,32.8343087],[-83.7455941,32.8343973]]},"id":"8b44c0b09471fff-179df46314514507"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7456726,32.834434900000005]},"id":"8f44c0b094712a4-17d5f3eaae43ffbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471770-17bff41bb40b5e8e","8f44c0b094712a4-17d5f3eaae43ffbb"]},"geometry":{"type":"LineString","coordinates":[[-83.7455941,32.8343973],[-83.7456726,32.834434900000005]]},"id":"8b44c0b09471fff-17d7f4033db600c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094712a4-17d5f3eaae43ffbb","8f44c0b09471272-17fff3b4f9a3781f"]},"geometry":{"type":"LineString","coordinates":[[-83.7456726,32.834434900000005],[-83.74575850000001,32.834476]]},"id":"8c44c0b094713ff-17dff3cfcc732e37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7458319,32.8345111]},"id":"8f44c0b09444c9b-1795f387127525c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444c9b-1795f387127525c2","8f44c0b09471272-17fff3b4f9a3781f"]},"geometry":{"type":"LineString","coordinates":[[-83.74575850000001,32.834476],[-83.7458319,32.8345111]]},"id":"8a44c0b09447fff-17f7f39e07400b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74591170000001,32.834549200000005]},"id":"8f44c0b09444cc8-179df3553a6cef4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444cc8-179df3553a6cef4b","8f44c0b09444c9b-1795f387127525c2"]},"geometry":{"type":"LineString","coordinates":[[-83.7458319,32.8345111],[-83.74591170000001,32.834549200000005]]},"id":"8c44c0b09444dff-179df36e23cbab04"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7459915,32.834587400000004]},"id":"8f44c0b09444034-17b5f3235130cc97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444cc8-179df3553a6cef4b","8f44c0b09444034-17b5f3235130cc97"]},"geometry":{"type":"LineString","coordinates":[[-83.74591170000001,32.834549200000005],[-83.7459915,32.834587400000004]]},"id":"8b44c0b09444fff-17b5f33c445bbc4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6651782,32.8760776]},"id":"8f44c0a31b43a9d-17feb86fa078b8a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b436e0-17def8f9f3962c74","8f44c0a31b43a9d-17feb86fa078b8a6"]},"geometry":{"type":"LineString","coordinates":[[-83.6649569,32.8762093],[-83.6651782,32.8760776]]},"id":"8b44c0a31b43fff-17b7b8b4de2bbe5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6652462,32.8760299]},"id":"8f44c0a31b43a31-17deb845224aedfd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b43a9d-17feb86fa078b8a6","8f44c0a31b43a31-17deb845224aedfd"]},"geometry":{"type":"LineString","coordinates":[[-83.6651782,32.8760776],[-83.6652462,32.8760299]]},"id":"8c44c0a31b43bff-17ffb85a6d68397c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66530490000001,32.8759898]},"id":"8f44c0a31b43b29-17d7b820716c12e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b43b29-17d7b820716c12e4","8f44c0a31b43a31-17deb845224aedfd"]},"geometry":{"type":"LineString","coordinates":[[-83.6652462,32.8760299],[-83.66530490000001,32.8759898]]},"id":"8c44c0a31b43bff-17d6b832dbb1db48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b43b29-17d7b820716c12e4","8f44c0a31b43a31-17deb845224aedfd"]},"geometry":{"type":"LineString","coordinates":[[-83.66530490000001,32.8759898],[-83.6654839,32.875869300000005],[-83.6655882,32.876029700000004],[-83.6653168,32.876143400000004],[-83.6652462,32.8760299]]},"id":"8a44c0a31b47fff-17d7b7d2bd52b73f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b43a9d-17feb86fa078b8a6","8f44c0a31b43d0a-17f6f8e53bfc6c42"]},"geometry":{"type":"LineString","coordinates":[[-83.6651782,32.8760776],[-83.66499010000001,32.8758311]]},"id":"8b44c0a31b43fff-17bfb8aa60a640a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66506310000001,32.8757838]},"id":"8f44c0a31b406c4-17d6f8b799f756ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b406c4-17d6f8b799f756ba","8f44c0a31b43d0a-17f6f8e53bfc6c42"]},"geometry":{"type":"LineString","coordinates":[[-83.66499010000001,32.8758311],[-83.66506310000001,32.8757838]]},"id":"8a44c0a31b47fff-17d7b8ce6fcf491b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66510980000001,32.8757579]},"id":"8f44c0a31b40672-17b6b89a6fe5072e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b40672-17b6b89a6fe5072e","8f44c0a31b406c4-17d6f8b799f756ba"]},"geometry":{"type":"LineString","coordinates":[[-83.66506310000001,32.8757838],[-83.66510980000001,32.8757579]]},"id":"8c44c0a31b407ff-17bef8a8f9a9fddc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66526160000001,32.875666]},"id":"8f44c0a31b40332-13fff83b82104ee0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b40332-13fff83b82104ee0","8f44c0a31b40672-17b6b89a6fe5072e"]},"geometry":{"type":"LineString","coordinates":[[-83.66510980000001,32.8757579],[-83.66526160000001,32.875666]]},"id":"8b44c0a31b40fff-179eb86af0dfaab5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d71c94-13dffbaed6493026","8f44c0a35d420c6-13ffdbe584b91df9"]},"geometry":{"type":"LineString","coordinates":[[-83.6572072,32.846181300000005],[-83.6572376,32.845992800000005],[-83.65731860000001,32.845280100000004],[-83.65730590000001,32.845130000000005],[-83.65729470000001,32.845106300000005]]},"id":"8944c0a35d7ffff-13bfdbbc0f81b16a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d71c94-13dffbaed6493026","8f44c0a35d746c3-13feec22cb653038"]},"geometry":{"type":"LineString","coordinates":[[-83.65729470000001,32.845106300000005],[-83.65710920000001,32.8447106]]},"id":"8a44c0a35d77fff-13f7dbe8dcc38f5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65710630000001,32.844570600000004]},"id":"8f44c0a35d747a5-1396ec2490174622"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d746c3-13feec22cb653038","8f44c0a35d747a5-1396ec2490174622"]},"geometry":{"type":"LineString","coordinates":[[-83.65710920000001,32.8447106],[-83.65710630000001,32.844570600000004]]},"id":"8c44c0a35d747ff-13beec23ab18807b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6564666,32.8439185]},"id":"8f44c0a35d280d3-17ffddb469085337"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d2eaec-17bfedf7d2ba9057","8f44c0a35d280d3-17ffddb469085337"]},"geometry":{"type":"LineString","coordinates":[[-83.6563587,32.8435902],[-83.6564005,32.843767400000004],[-83.6564051,32.843784500000005],[-83.6564666,32.8439185]]},"id":"8a44c0a35d2ffff-1796fddb1fc0d139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29794-17dffd21a26750b0","8f44c0a35d280d3-17ffddb469085337"]},"geometry":{"type":"LineString","coordinates":[[-83.6564666,32.8439185],[-83.65641880000001,32.8439329],[-83.6563912,32.843983],[-83.65639900000001,32.8440364],[-83.65650910000001,32.844269100000005],[-83.656532,32.8442902],[-83.65656820000001,32.8442991],[-83.6567014,32.8442555]]},"id":"8a44c0a35d2ffff-179ecda3e8917b8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6568908,32.8441935]},"id":"8f44c0a35d29008-17b6fcab47015832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29008-17b6fcab47015832","8f44c0a35d29794-17dffd21a26750b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6567014,32.8442555],[-83.6568908,32.8441935]]},"id":"8b44c0a35d29fff-17bedce674af45e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65697370000001,32.844291000000005]},"id":"8f44c0a35d29319-17f7ec7775c28ce7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29319-17f7ec7775c28ce7","8f44c0a35d29008-17b6fcab47015832"]},"geometry":{"type":"LineString","coordinates":[[-83.6568908,32.8441935],[-83.65697370000001,32.844291000000005]]},"id":"8b44c0a35d29fff-17d7fc91531d70a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29319-17f7ec7775c28ce7","8f44c0a35d747a5-1396ec2490174622"]},"geometry":{"type":"LineString","coordinates":[[-83.65697370000001,32.844291000000005],[-83.6571055,32.8443382],[-83.65714460000001,32.8443762],[-83.6571677,32.844438700000005],[-83.65715540000001,32.844500000000004],[-83.65710630000001,32.844570600000004]]},"id":"8844c0a35dfffff-17bfdc23bff512d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29008-17b6fcab47015832","8f44c0a35d28053-17f6fd8877c26520"]},"geometry":{"type":"LineString","coordinates":[[-83.6568908,32.8441935],[-83.6568962,32.8441495],[-83.6567665,32.8438949],[-83.6567254,32.8438808],[-83.656656,32.8438813],[-83.6565369,32.8439047]]},"id":"8a44c0a35d2ffff-179eccfbe0655f0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d28053-17f6fd8877c26520","8f44c0a35d280d3-17ffddb469085337"]},"geometry":{"type":"LineString","coordinates":[[-83.6565369,32.8439047],[-83.6564666,32.8439185]]},"id":"8b44c0a35d28fff-17f6cd9e79c4801a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3516c935-17defcad7ac235c4","8f44c0a35168a43-179efcae76dcc2dc"]},"geometry":{"type":"LineString","coordinates":[[-83.66343930000001,32.853802200000004],[-83.66344090000001,32.8530663]]},"id":"8944c0a3517ffff-17b6fcadf1eedbfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3516c935-17defcad7ac235c4","8f44c0a35163a32-17d6fe9906fdf553"]},"geometry":{"type":"LineString","coordinates":[[-83.66344090000001,32.8530663],[-83.6634413,32.8529263],[-83.66271490000001,32.8529385],[-83.66268290000001,32.8529551],[-83.6626703,32.8529866],[-83.66265440000001,32.853073200000004]]},"id":"8944c0a3517ffff-1796bd983d59541c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35163a82-17febebfe720b6ae","8f44c0a35163a32-17d6fe9906fdf553"]},"geometry":{"type":"LineString","coordinates":[[-83.66265440000001,32.853073200000004],[-83.6625922,32.8531114]]},"id":"8c44c0a35163bff-17debeac765af744"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35163088-17ffbf23def6a966","8f44c0a35163a82-17febebfe720b6ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6625922,32.8531114],[-83.6624323,32.853112]]},"id":"8b44c0a35163fff-17fefef1dafe8fda"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7231651,32.8058479]},"id":"8f44c0b0e32324a-1396faddd429c79e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e32324a-1396faddd429c79e","8f44c0b0e32a259-13f72a4f0c864a23"]},"geometry":{"type":"LineString","coordinates":[[-83.72339360000001,32.806609800000004],[-83.7234253,32.8065353],[-83.72343000000001,32.806497900000004],[-83.72342210000001,32.806452],[-83.7231651,32.8058479]]},"id":"8944c0b0e33ffff-13f7ea7dd887fabb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72300100000001,32.8055097]},"id":"8f44c0b0e323c45-13b7bb4463809f12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e32324a-1396faddd429c79e","8f44c0b0e323c45-13b7bb4463809f12"]},"geometry":{"type":"LineString","coordinates":[[-83.7231651,32.8058479],[-83.72310510000001,32.805706900000004],[-83.72300100000001,32.8055097]]},"id":"8a44c0b0e327fff-139e6b0eff9a92f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e3038eb-13b6bcb09076ddaa","8f44c0b0e323c45-13b7bb4463809f12"]},"geometry":{"type":"LineString","coordinates":[[-83.72300100000001,32.8055097],[-83.7229732,32.805446],[-83.7229193,32.8054092],[-83.722814,32.8053915],[-83.721874,32.805391],[-83.72183580000001,32.8054031],[-83.72181520000001,32.805444],[-83.7218155,32.8057032],[-83.72182500000001,32.8057299],[-83.7218646,32.8057521],[-83.72234420000001,32.8057503],[-83.7224183,32.8065289]]},"id":"8944c0b0e33ffff-13b76d02cccf825b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938686,32.897934400000004]},"id":"8f44c0a05901523-13df726426dba119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05901523-13df726426dba119","8f44c0a05900b5a-13d7724e0efd3528"]},"geometry":{"type":"LineString","coordinates":[[-83.693904,32.897727],[-83.6938686,32.897934400000004]]},"id":"8a44c0a05907fff-139e7259181893a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6938291,32.897928300000004]},"id":"8f44c0a05900249-13d7727cdb30e101"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05900249-13d7727cdb30e101","8f44c0a05901523-13df726426dba119"]},"geometry":{"type":"LineString","coordinates":[[-83.6938686,32.897934400000004],[-83.6938291,32.897928300000004]]},"id":"8d44c0a0590153f-13d772708abf6f8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6937259,32.8979123]},"id":"8f44c0a059002c6-13df72bd542c7daa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05900249-13d7727cdb30e101","8f44c0a059002c6-13df72bd542c7daa"]},"geometry":{"type":"LineString","coordinates":[[-83.6938291,32.897928300000004],[-83.6937259,32.8979123]]},"id":"8a44c0a05907fff-13d6729d12d663b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69351250000001,32.8978793]},"id":"8f44c0a05900689-13b6f342b80f2ca3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059002c6-13df72bd542c7daa","8f44c0a05900689-13b6f342b80f2ca3"]},"geometry":{"type":"LineString","coordinates":[[-83.6937259,32.8979123],[-83.69351250000001,32.8978793]]},"id":"8b44c0a05900fff-13d6f30005ac1be8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05900689-13b6f342b80f2ca3","8f44c0a05902a6d-13b6735fe72b3f61"]},"geometry":{"type":"LineString","coordinates":[[-83.69351250000001,32.8978793],[-83.6934658,32.897872]]},"id":"8a44c0a05907fff-13b67351525e0313"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0590050b-13bf7344e41cf285","8f44c0a05902a6d-13b6735fe72b3f61"]},"geometry":{"type":"LineString","coordinates":[[-83.6934658,32.897872],[-83.693509,32.897653000000005]]},"id":"8a44c0a05907fff-13fff352674c740d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6933358,32.8982449]},"id":"8f44c0a0591cb41-139f73b126901c6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591c15d-139e742f52bad039","8f44c0a0591cb41-139f73b126901c6a"]},"geometry":{"type":"LineString","coordinates":[[-83.6931339,32.8982401],[-83.6933358,32.8982449]]},"id":"8a44c0a0591ffff-139ff3f03ab847ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0591cb41-139f73b126901c6a","8f44c0a05902ae3-13b6739c587485cf"]},"geometry":{"type":"LineString","coordinates":[[-83.6933358,32.8982449],[-83.6933691,32.897872400000004]]},"id":"8944c0a0593ffff-13b6f3a6cda21acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05902ae3-13b6739c587485cf","8f44c0a059020d0-13be74287126c597"]},"geometry":{"type":"LineString","coordinates":[[-83.6933691,32.897872400000004],[-83.69314490000001,32.897862700000005]]},"id":"8b44c0a05902fff-13bf73e264b3bf0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6934598,32.898249400000005]},"id":"8f44c0a05903620-139ff363a9674af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05903620-139ff363a9674af8","8f44c0a0591cb41-139f73b126901c6a"]},"geometry":{"type":"LineString","coordinates":[[-83.6933358,32.8982449],[-83.6934598,32.898249400000005]]},"id":"8b44c0a05903fff-139ef38a6d3d502f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69367270000001,32.898259800000005]},"id":"8f44c0a05903354-13b672de9fe5bc48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05903354-13b672de9fe5bc48","8f44c0a05903620-139ff363a9674af8"]},"geometry":{"type":"LineString","coordinates":[[-83.6934598,32.898249400000005],[-83.69367270000001,32.898259800000005]]},"id":"8b44c0a05903fff-13b7732123e514c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05903354-13b672de9fe5bc48","8f44c0a0590edaa-13b7f296c46225c1"]},"geometry":{"type":"LineString","coordinates":[[-83.69367270000001,32.898259800000005],[-83.69378760000001,32.8982654]]},"id":"8a44c0a05907fff-13b672baa4675a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05900249-13d7727cdb30e101","8f44c0a0590edaa-13b7f296c46225c1"]},"geometry":{"type":"LineString","coordinates":[[-83.69378760000001,32.8982654],[-83.6938291,32.897928300000004]]},"id":"8a44c0a05907fff-13bef289cffaba8f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a059011a6-13f7721c78821553","8f44c0a05901523-13df726426dba119"]},"geometry":{"type":"LineString","coordinates":[[-83.6938686,32.897934400000004],[-83.6939833,32.8979543]]},"id":"8b44c0a05901fff-13df7240557686a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0592ac53-1396f0ff220fd1d7","8f44c0a059011a6-13f7721c78821553"]},"geometry":{"type":"LineString","coordinates":[[-83.6939833,32.8979543],[-83.69439290000001,32.8980253],[-83.69443980000001,32.897818400000006]]},"id":"8944c0a0593ffff-13ff716c45396df0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72038450000001,32.8268144]},"id":"8f44c0b0aac1866-17b731a7b65cfdf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac1866-17b731a7b65cfdf7","8f44c0b0aaea44d-17f7b1272a61960f"]},"geometry":{"type":"LineString","coordinates":[[-83.7205902,32.8268825],[-83.72038450000001,32.8268144]]},"id":"8944c0b0aafffff-17de71676d443355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201228,32.8267278]},"id":"8f44c0b0aac1dac-1796f24b4826c588"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac1866-17b731a7b65cfdf7","8f44c0b0aac1dac-1796f24b4826c588"]},"geometry":{"type":"LineString","coordinates":[[-83.72038450000001,32.8268144],[-83.7201228,32.8267278]]},"id":"8b44c0b0aac1fff-179ff1f98fe1a861"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201756,32.827218]},"id":"8f44c0b0aace816-17b7722a4973a4b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aace816-17b7722a4973a4b7","8f44c0b0aac1866-17b731a7b65cfdf7"]},"geometry":{"type":"LineString","coordinates":[[-83.72038450000001,32.8268144],[-83.7201756,32.827218]]},"id":"8944c0b0aafffff-17b731e8f6670965"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201393,32.827288100000004]},"id":"8f44c0b0aace120-17df3240fa064e73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aace120-17df3240fa064e73","8f44c0b0aace816-17b7722a4973a4b7"]},"geometry":{"type":"LineString","coordinates":[[-83.7201756,32.827218],[-83.7201393,32.827288100000004]]},"id":"8c44c0b0aace9ff-17df3235aecebe48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aace816-17b7722a4973a4b7","8f44c0b0aacc4f0-17df31b1877071d7"]},"geometry":{"type":"LineString","coordinates":[[-83.7203688,32.827285],[-83.7201756,32.827218]]},"id":"8a44c0b0aacffff-17de31ede272cf39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.719915,32.827127600000004]},"id":"8f44c0b0aac3ac3-17fef2cd28f1977d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aace816-17b7722a4973a4b7","8f44c0b0aac3ac3-17fef2cd28f1977d"]},"geometry":{"type":"LineString","coordinates":[[-83.7201756,32.827218],[-83.719915,32.827127600000004]]},"id":"8944c0b0aafffff-1797327bbfdf78de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac355d-17beb3862cb0762b","8f44c0b0aac3ac3-17fef2cd28f1977d"]},"geometry":{"type":"LineString","coordinates":[[-83.719915,32.827127600000004],[-83.71961900000001,32.827024900000005]]},"id":"8b44c0b0aac3fff-17deb329a601f900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71956820000001,32.827007300000005]},"id":"8f44c0b0aac3420-17bfb3a5ed0ea95a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac3420-17bfb3a5ed0ea95a","8f44c0b0aac355d-17beb3862cb0762b"]},"geometry":{"type":"LineString","coordinates":[[-83.71961900000001,32.827024900000005],[-83.71956820000001,32.827007300000005]]},"id":"8c44c0b0aac35ff-17b733960150dd0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac1dac-1796f24b4826c588","8f44c0b0aac3ac3-17fef2cd28f1977d"]},"geometry":{"type":"LineString","coordinates":[[-83.719915,32.827127600000004],[-83.7201228,32.8267278]]},"id":"8a44c0b0aac7fff-17fff28c335db51a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7200815,32.8265533]},"id":"8f44c0b0aac0b23-1797f2651a3b3ba2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac1dac-1796f24b4826c588","8f44c0b0aac0b23-1797f2651a3b3ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.7201228,32.8267278],[-83.7200815,32.8265533]]},"id":"8a44c0b0aac7fff-17de7258308f8677"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac0b23-1797f2651a3b3ba2","8f44c0b0aaea1a6-179630fa5cb11055"]},"geometry":{"type":"LineString","coordinates":[[-83.72066190000001,32.8267522],[-83.7200815,32.8265533]]},"id":"8944c0b0aafffff-17d631afba26daa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7198827,32.8264852]},"id":"8f44c0b0aac0895-13ff72e151c0f6ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac0895-13ff72e151c0f6ae","8f44c0b0aac0b23-1797f2651a3b3ba2"]},"geometry":{"type":"LineString","coordinates":[[-83.7200815,32.8265533],[-83.7198827,32.8264852]]},"id":"8b44c0b0aac0fff-13feb2a33cfaf93b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaead6b-17de70ddea8931c3","8f44c0b0aac5add-17beb1580f1504f3"]},"geometry":{"type":"LineString","coordinates":[[-83.72070740000001,32.8266695],[-83.720512,32.826596200000004]]},"id":"8944c0b0aafffff-17d7b11afcea6751"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7199466,32.8263841]},"id":"8f44c0b0aac4648-13be32b969cc57e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aac4648-13be32b969cc57e7","8f44c0b0aac5add-17beb1580f1504f3"]},"geometry":{"type":"LineString","coordinates":[[-83.720512,32.826596200000004],[-83.7199466,32.8263841]]},"id":"8a44c0b0aac7fff-13fe7208b02bd837"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da2972-17def80b40e7834d","8f44c0a35da3d08-179ef7ace6b1b40d"]},"geometry":{"type":"LineString","coordinates":[[-83.65223160000001,32.8434383],[-83.6522065,32.843547],[-83.6522125,32.8435956],[-83.6522297,32.843628200000005],[-83.6522723,32.8436746],[-83.65238260000001,32.8437415]]},"id":"8a44c0a35da7fff-17bed7fa1567630b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35da3d08-179ef7ace6b1b40d","8f44c0a35da0708-17b7f768acd11b1c"]},"geometry":{"type":"LineString","coordinates":[[-83.65238260000001,32.8437415],[-83.6524918,32.8436055]]},"id":"8a44c0a35da7fff-17dff78ac7bc3cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26755c4c-13dfb58135fba55f","8f44c0a2677328a-13f6f51f6426caa2"]},"geometry":{"type":"LineString","coordinates":[[-83.6794861,32.854901000000005],[-83.67964260000001,32.854762300000004]]},"id":"8944c0a2677ffff-139fd55047fff923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2677328a-13f6f51f6426caa2","8f44c0a267714c8-13def478ca9c9814"]},"geometry":{"type":"LineString","coordinates":[[-83.67964260000001,32.854762300000004],[-83.67990920000001,32.8545263]]},"id":"8a44c0a26777fff-13beb4cc15f2407c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267714c8-13def478ca9c9814","8f44c0a267734ac-13f6f5b8599d2ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.67990920000001,32.8545263],[-83.6796417,32.854310000000005],[-83.67938840000001,32.8545223],[-83.67939790000001,32.8545582]]},"id":"8a44c0a26777fff-139ed5246dd170b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2675414d-13bff61ab48a6830","8f44c0a267734ac-13f6f5b8599d2ee5"]},"geometry":{"type":"LineString","coordinates":[[-83.67939790000001,32.8545582],[-83.6792405,32.854674200000005]]},"id":"8944c0a2677ffff-1397b5e98147480f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26771568-13b794385b7090d4","8f44c0a267710e6-13de9400bffbab92"]},"geometry":{"type":"LineString","coordinates":[[-83.6801013,32.854496000000005],[-83.6800123,32.854430400000005]]},"id":"8b44c0a26771fff-13b7941c8ba2690d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26771568-13b794385b7090d4","8f44c0a26770429-17f6b53c3336ce0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6800123,32.854430400000005],[-83.67973140000001,32.854232],[-83.6795965,32.8541283]]},"id":"8a44c0a26777fff-17d7d4bb2f55dd7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26776295-1797f5bbe6ffa553","8f44c0a26770429-17f6b53c3336ce0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6795965,32.8541283],[-83.67939220000001,32.8539711]]},"id":"8a44c0a26777fff-17b7957c1d8094ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6800675,32.8552442]},"id":"8f44c0a2674049b-139fb415de48b4e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2674049b-139fb415de48b4e5","8f44c0a26742149-13ded45db658fc6e"]},"geometry":{"type":"LineString","coordinates":[[-83.6799525,32.855335700000005],[-83.6800675,32.8552442]]},"id":"8b44c0a26742fff-13beb439c844f1da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2674049b-139fb415de48b4e5","8f44c0a26742c0c-13feb4c17b68df19"]},"geometry":{"type":"LineString","coordinates":[[-83.67979290000001,32.855185],[-83.67989680000001,32.8550994],[-83.6800675,32.8552442]]},"id":"8a44c0a26747fff-13fff46b6cc8c79f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68012630000001,32.8552917]},"id":"8f44c0a267404d9-13bfd3f11d3a818a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267404d9-13bfd3f11d3a818a","8f44c0a2674049b-139fb415de48b4e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6800675,32.8552442],[-83.68012630000001,32.8552917]]},"id":"8a44c0a26747fff-13bef403730b13ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26740793-13de93df258cceeb","8f44c0a267404d9-13bfd3f11d3a818a"]},"geometry":{"type":"LineString","coordinates":[[-83.68012630000001,32.8552917],[-83.680155,32.855316]]},"id":"8b44c0a26740fff-13d6f3e82a3c394c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26740793-13de93df258cceeb","8f44c0a26741496-13d6d33e2dc19ba8"]},"geometry":{"type":"LineString","coordinates":[[-83.680155,32.855316],[-83.68041260000001,32.855534]]},"id":"8a44c0a26747fff-1396b38ea9c522a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26741c8b-1397d2e522ca5f7b","8f44c0a26741496-13d6d33e2dc19ba8"]},"geometry":{"type":"LineString","coordinates":[[-83.68041260000001,32.855534],[-83.680555,32.8554333]]},"id":"8a44c0a26747fff-13b7d311a386bdd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26740186-13ffd38dcfd37a15","8f44c0a26741c8b-1397d2e522ca5f7b"]},"geometry":{"type":"LineString","coordinates":[[-83.680555,32.8554333],[-83.68055240000001,32.8553829],[-83.6802852,32.8551604]]},"id":"8a44c0a26747fff-13bf932f918adda4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267404d9-13bfd3f11d3a818a","8f44c0a26740186-13ffd38dcfd37a15"]},"geometry":{"type":"LineString","coordinates":[[-83.6802852,32.8551604],[-83.68012630000001,32.8552917]]},"id":"8b44c0a26740fff-1396d3bf7eacfe8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26772482-17bff6b305149bee","8f44c0a267724ce-17d6968ab98e7c82"]},"geometry":{"type":"LineString","coordinates":[[-83.6790613,32.854298400000005],[-83.67899680000001,32.8542423]]},"id":"8c44c0a267725ff-17bf969ee7856117"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26754132-13979656de37e763","8f44c0a267548a1-13f7963250101dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6791443,32.854587200000005],[-83.6792027,32.854536800000005]]},"id":"8b44c0a26754fff-13f7d644945caa10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6792583,32.854491200000005]},"id":"8f44c0a2675491d-13df960f96cb48f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2675491d-13df960f96cb48f5","8f44c0a267548a1-13f7963250101dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6792027,32.854536800000005],[-83.6792583,32.854491200000005]]},"id":"8c44c0a267549ff-13d7d620fe0388d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f54c8-139efaf1d43f13a6","8f44c0b1d2f5316-1397fa5182892007"]},"geometry":{"type":"LineString","coordinates":[[-83.6971752,32.8163101],[-83.69691870000001,32.8162953]]},"id":"8b44c0b1d2f5fff-139f7aa1a7fd367a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f54c8-139efaf1d43f13a6","8f44c0b1d2f012b-13ffeb8ba5312acb"]},"geometry":{"type":"LineString","coordinates":[[-83.69691870000001,32.8162953],[-83.6966726,32.816281000000004]]},"id":"8a44c0b1d2f7fff-13966b3ebe4fcbca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f012b-13ffeb8ba5312acb","8f44c0b1d2f050c-13f7ec0af901e2ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6966726,32.816281000000004],[-83.6964689,32.816265200000004]]},"id":"8b44c0b1d2f0fff-13fefbcb4cf2132e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f29a3-13ff7cab24e1e68c","8f44c0b1d2f050c-13f7ec0af901e2ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6964689,32.816265200000004],[-83.69621260000001,32.8162453]]},"id":"8a44c0b1d2f7fff-13ffec5b13ffb6f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f5316-1397fa5182892007","8f44c0b1d2e2d09-13b6f9b86bc53c18"]},"geometry":{"type":"LineString","coordinates":[[-83.6971752,32.8163101],[-83.69737160000001,32.816343100000005],[-83.69742020000001,32.8163661]]},"id":"8944c0b1d2fffff-139fea03eabd6a43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6977552,32.8166606]},"id":"8f44c0b1d2e3d00-13fee8e7038367aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e3d00-13fee8e7038367aa","8f44c0b1d2e2d09-13b6f9b86bc53c18"]},"geometry":{"type":"LineString","coordinates":[[-83.69742020000001,32.8163661],[-83.6975577,32.816431200000004],[-83.6977348,32.816583900000005],[-83.6977552,32.8166606]]},"id":"8a44c0b1d2e7fff-13977940b2c8955a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e3d00-13fee8e7038367aa","8f44c0b1d2e3712-17b7e90574db72e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6977552,32.8166606],[-83.69770650000001,32.8169534]]},"id":"8b44c0b1d2e3fff-17de68f64cd2ed20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e3712-17b7e90574db72e5","8f44c0b1d2c0c6d-17977a3066120887"]},"geometry":{"type":"LineString","coordinates":[[-83.69770650000001,32.8169534],[-83.6976423,32.817339600000004],[-83.6972667,32.8173794],[-83.69722820000001,32.817314100000004]]},"id":"8944c0b1d2fffff-17f7796ee2a91748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2c6a68-17b76a6a0d98d836","8f44c0b1d2c0c6d-17977a3066120887"]},"geometry":{"type":"LineString","coordinates":[[-83.69722820000001,32.817314100000004],[-83.697136,32.8171574]]},"id":"8a44c0b1d2c7fff-17d66a4d304cf320"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2e3d00-13fee8e7038367aa","8f44c0b1d2c6a68-17b76a6a0d98d836"]},"geometry":{"type":"LineString","coordinates":[[-83.697136,32.8171574],[-83.6977552,32.8166606]]},"id":"8944c0b1d2fffff-179e69a88790c9d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f16e6-17d77b0eb38f7452","8f44c0b1d2c6a68-17b76a6a0d98d836"]},"geometry":{"type":"LineString","coordinates":[[-83.697136,32.8171574],[-83.6970431,32.8170146],[-83.69687250000001,32.8168305]]},"id":"8944c0b1d2fffff-17bfeab81f0f93e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2f16e6-17d77b0eb38f7452","8f44c0b1d2c6c12-17977b6065319f43"]},"geometry":{"type":"LineString","coordinates":[[-83.69687250000001,32.8168305],[-83.69674180000001,32.8169333]]},"id":"8a44c0b1d2f7fff-17f77b378da54864"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7429913,32.834025100000005]},"id":"8f44c0b0941911a-17d5fa767935a157"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74293750000001,32.8343562]},"id":"8f44c0b094e68a5-17b5fa98113292fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e68a5-17b5fa98113292fc","8f44c0b0941911a-17d5fa767935a157"]},"geometry":{"type":"LineString","coordinates":[[-83.7429913,32.834025100000005],[-83.74293750000001,32.8343562]]},"id":"8844c0b095fffff-17bdfa87432d0b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74289350000001,32.8354851]},"id":"8f44c0b094c5dac-13f7fab39c8e6773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e68a5-17b5fa98113292fc","8f44c0b094c5dac-13f7fab39c8e6773"]},"geometry":{"type":"LineString","coordinates":[[-83.74293750000001,32.8343562],[-83.74291190000001,32.835056800000004],[-83.74289350000001,32.8354851]]},"id":"8944c0b094fffff-1395faa54f99a9bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7445694,32.8362641]},"id":"8f44c0b0945a606-13ddf69c21bfc18e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945a606-13ddf69c21bfc18e","8f44c0b094c5dac-13f7fab39c8e6773"]},"geometry":{"type":"LineString","coordinates":[[-83.74289350000001,32.8354851],[-83.7428855,32.835799900000005],[-83.7430039,32.8360298],[-83.74325060000001,32.8361968],[-83.7435279,32.836245600000005],[-83.7445694,32.8362641]]},"id":"8844c0b095fffff-13f5f91de398cffc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945b9a8-13dff5454e187785","8f44c0b0945a606-13ddf69c21bfc18e"]},"geometry":{"type":"LineString","coordinates":[[-83.7445694,32.8362641],[-83.745118,32.8362739]]},"id":"8a44c0b0945ffff-13ddf5f0b689bac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7439409,32.834130200000004]},"id":"8f44c0b0940b831-1797f824f8dc5b19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74403430000001,32.8343963]},"id":"8f44c0b0940bac9-17bdf7ea9a1895a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0940bac9-17bdf7ea9a1895a4","8f44c0b0940b831-1797f824f8dc5b19"]},"geometry":{"type":"LineString","coordinates":[[-83.7439409,32.834130200000004],[-83.74400870000001,32.834211700000004],[-83.74403840000001,32.8343038],[-83.74403430000001,32.8343963]]},"id":"8b44c0b0940bfff-17f5f7f9b9bbc25e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7443001,32.8342091]},"id":"8f44c0b0940901b-17d5f74479985bb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0940bac9-17bdf7ea9a1895a4","8f44c0b0940901b-17d5f74479985bb5"]},"geometry":{"type":"LineString","coordinates":[[-83.74403430000001,32.8343963],[-83.7440861,32.834313800000004],[-83.74419610000001,32.8342435],[-83.7443001,32.8342091]]},"id":"8a44c0b0940ffff-17f7f7a0b7ab2902"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7440055,32.834562000000005]},"id":"8f44c0b0945651a-17b5f7fc926a281a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0940bac9-17bdf7ea9a1895a4","8f44c0b0945651a-17b5f7fc926a281a"]},"geometry":{"type":"LineString","coordinates":[[-83.74403430000001,32.8343963],[-83.74401320000001,32.8344656],[-83.7440055,32.834562000000005]]},"id":"8844c0b095fffff-17fdf7f6508ae758"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7439856,32.835500700000004]},"id":"8f44c0b094ec076-13fff8090e68ba2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945651a-17b5f7fc926a281a","8f44c0b094ec076-13fff8090e68ba2a"]},"geometry":{"type":"LineString","coordinates":[[-83.7440055,32.834562000000005],[-83.7439856,32.835500700000004]]},"id":"8844c0b095fffff-13d7f802d1238c83"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ec076-13fff8090e68ba2a","8f44c0b094ec4e6-13fdf893c52aaa2e"]},"geometry":{"type":"LineString","coordinates":[[-83.7439856,32.835500700000004],[-83.74376360000001,32.8354975]]},"id":"8b44c0b094ecfff-13fff84e6c18c528"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ee8f1-13fdf91143205e01","8f44c0b094ec4e6-13fdf893c52aaa2e"]},"geometry":{"type":"LineString","coordinates":[[-83.74376360000001,32.8354975],[-83.7435628,32.835494600000004]]},"id":"8a44c0b094effff-13fdf8d2826823d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7433534,32.835491600000005]},"id":"8f44c0b094eecd5-13f7f994206d3bc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ee8f1-13fdf91143205e01","8f44c0b094eecd5-13f7f994206d3bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.7435628,32.835494600000004],[-83.7433534,32.835491600000005]]},"id":"8b44c0b094eefff-13f7f952b5528724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094eecd5-13f7f994206d3bc7","8f44c0b094c5906-13f5fa2e0270ad8b"]},"geometry":{"type":"LineString","coordinates":[[-83.7433534,32.835491600000005],[-83.74310720000001,32.8354882]]},"id":"8944c0b094fffff-13f5f9e11c55b775"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094c5dac-13f7fab39c8e6773","8f44c0b094c5906-13f5fa2e0270ad8b"]},"geometry":{"type":"LineString","coordinates":[[-83.74310720000001,32.8354882],[-83.74289350000001,32.8354851]]},"id":"8a44c0b094c7fff-13f7fa70cb8f548f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ecb5b-13fff786195c8e20","8f44c0b094ec076-13fff8090e68ba2a"]},"geometry":{"type":"LineString","coordinates":[[-83.7439856,32.835500700000004],[-83.7441951,32.8355051]]},"id":"8b44c0b094ecfff-13fdf7c79d675bd1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ecb5b-13fff786195c8e20","8f44c0b094ecb4a-13fff7787b4f07a3"]},"geometry":{"type":"LineString","coordinates":[[-83.7441951,32.8355051],[-83.74421690000001,32.835505600000005]]},"id":"8d44c0b094ecb7f-13fff77f477ed49e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094ecb4a-13fff7787b4f07a3","8f44c0b0945374e-13f5f7029b1c65fa"]},"geometry":{"type":"LineString","coordinates":[[-83.74421690000001,32.835505600000005],[-83.7444055,32.8355096]]},"id":"8844c0b095fffff-13f5f73d80c0527a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945336a-13f5f682d4294e5c","8f44c0b0945374e-13f5f7029b1c65fa"]},"geometry":{"type":"LineString","coordinates":[[-83.7444055,32.8355096],[-83.7446099,32.8355139]]},"id":"8b44c0b09453fff-13f7f6c2baa9a208"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74473040000001,32.8355164]},"id":"8f44c0b0945ec24-13f5f6378ee7bd4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945ec24-13f5f6378ee7bd4f","8f44c0b0945336a-13f5f682d4294e5c"]},"geometry":{"type":"LineString","coordinates":[[-83.7446099,32.8355139],[-83.74473040000001,32.8355164]]},"id":"8a44c0b09457fff-13f5f65d35548399"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945171b-139ff6059814b803","8f44c0b0945ec24-13f5f6378ee7bd4f"]},"geometry":{"type":"LineString","coordinates":[[-83.74473040000001,32.8355164],[-83.74479430000001,32.835438],[-83.74481030000001,32.8353711]]},"id":"8a44c0b09457fff-13dff61975dcfae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945171b-139ff6059814b803","8f44c0b094502c6-1395f67c5257bd52"]},"geometry":{"type":"LineString","coordinates":[[-83.74481030000001,32.8353711],[-83.7448148,32.835156600000005],[-83.74462030000001,32.8351508]]},"id":"8a44c0b09457fff-13b7f6206c1a50a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094502c6-1395f67c5257bd52","8f44c0b094506d1-139df6fcf27c6efb"]},"geometry":{"type":"LineString","coordinates":[[-83.74462030000001,32.8351508],[-83.7444145,32.8351446]]},"id":"8a44c0b09457fff-139ff6bca4667cfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094506d1-139df6fcf27c6efb","8f44c0b09452328-139df77d2627016e"]},"geometry":{"type":"LineString","coordinates":[[-83.7444145,32.8351446],[-83.7442094,32.8351385]]},"id":"8a44c0b09457fff-139ff73d1ef633c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945651a-17b5f7fc926a281a","8f44c0b09452328-139df77d2627016e"]},"geometry":{"type":"LineString","coordinates":[[-83.7442094,32.8351385],[-83.7442257,32.8346146],[-83.7440055,32.834562000000005]]},"id":"8a44c0b09457fff-13bff78b4d222aa6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945651a-17b5f7fc926a281a","8f44c0b0940b659-17fff886a4cdbfa8"]},"geometry":{"type":"LineString","coordinates":[[-83.7440055,32.834562000000005],[-83.74378460000001,32.834501200000005]]},"id":"8844c0b095fffff-179ff84198dae37f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e4b55-17bdf8fc19b3096a","8f44c0b0940b659-17fff886a4cdbfa8"]},"geometry":{"type":"LineString","coordinates":[[-83.74378460000001,32.834501200000005],[-83.74359670000001,32.8343944]]},"id":"8a44c0b094e7fff-17ddf8c158fd8711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74339160000001,32.834366100000004]},"id":"8f44c0b094e4156-17b7f97c460ce4ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e4156-17b7f97c460ce4ea","8f44c0b094e4b55-17bdf8fc19b3096a"]},"geometry":{"type":"LineString","coordinates":[[-83.74359670000001,32.8343944],[-83.74355050000001,32.8343696],[-83.74339160000001,32.834366100000004]]},"id":"8b44c0b094e4fff-17bff93abcadb398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e68a5-17b5fa98113292fc","8f44c0b094e4156-17b7f97c460ce4ea"]},"geometry":{"type":"LineString","coordinates":[[-83.74339160000001,32.834366100000004],[-83.74293750000001,32.8343562]]},"id":"8a44c0b094e7fff-17b7fa0a22105d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e0243-13dff98a8887fd94","8f44c0b094eecd5-13f7f994206d3bc7"]},"geometry":{"type":"LineString","coordinates":[[-83.7433534,32.835491600000005],[-83.7433688,32.8350375]]},"id":"8944c0b094fffff-13ddf98f51e7f934"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094e4156-17b7f97c460ce4ea","8f44c0b094e0243-13dff98a8887fd94"]},"geometry":{"type":"LineString","coordinates":[[-83.7433688,32.8350375],[-83.74339160000001,32.834366100000004]]},"id":"8a44c0b094e7fff-17fdf983629633af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945a606-13ddf69c21bfc18e","8f44c0b0945acd9-13ddf69c726c3699"]},"geometry":{"type":"LineString","coordinates":[[-83.7445694,32.8362641],[-83.7445689,32.8360657]]},"id":"8b44c0b0945afff-139ff69c432ad389"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945e65b-13fdf63916f5f6c4","8f44c0b0945acd9-13ddf69c726c3699"]},"geometry":{"type":"LineString","coordinates":[[-83.7445689,32.8360657],[-83.7447279,32.8359116]]},"id":"8a44c0b0945ffff-139df66acc86db15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0945e65b-13fdf63916f5f6c4","8f44c0b0945ec24-13f5f6378ee7bd4f"]},"geometry":{"type":"LineString","coordinates":[[-83.7447279,32.8359116],[-83.744798,32.835843600000004],[-83.7448025,32.835616900000005],[-83.74473040000001,32.8355164]]},"id":"8b44c0b0945efff-13f7f616c7521985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20444c41-17b6747ff8e10760","8f44c0a20462471-13df747ec467c447"]},"geometry":{"type":"LineString","coordinates":[[-83.6930049,32.8661088],[-83.6931874,32.8659052],[-83.6930068,32.8657874]]},"id":"8944c0a2047ffff-17be7446ae86c1d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a204752de-139774e99df41f4c","8f44c0a20462471-13df747ec467c447"]},"geometry":{"type":"LineString","coordinates":[[-83.6930068,32.8657874],[-83.6928359,32.8656759]]},"id":"8944c0a2047ffff-13be74b42b0687d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20470263-13d6f5d622c2407f","8f44c0a204752de-139774e99df41f4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6928359,32.8656759],[-83.69264100000001,32.8655488],[-83.69245740000001,32.865748]]},"id":"8a44c0a20477fff-13fff5662e95c471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935624,32.866400500000005]},"id":"8f44c0a2044594e-17de732383d097e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2044594e-17de732383d097e5","8f44c0a2046e511-17d772db63e8f46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6935624,32.866400500000005],[-83.6936778,32.8663569]]},"id":"8944c0a2047ffff-17def2ff7c2b36c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6936034,32.8664269]},"id":"8f44c0a2046e482-17fef309eb125c52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2046e482-17fef309eb125c52","8f44c0a2046e511-17d772db63e8f46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6936034,32.8664269],[-83.6936778,32.8663569]]},"id":"8c44c0a2046e5ff-17d6f2f2a5de676f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2046ec8b-17be72c194a6e97d","8f44c0a2046e511-17d772db63e8f46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6936778,32.8663569],[-83.69371910000001,32.866320200000004]]},"id":"8b44c0a2046efff-17b7f2ce879f5fd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6935787,32.8665125]},"id":"8f44c0a20445b18-17b673195b38fd7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2044504d-17d7f3658ef7bed1","8f44c0a20445b18-17b673195b38fd7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6934568,32.8665983],[-83.6935787,32.8665125]]},"id":"8b44c0a20445fff-17bf733f6b0526eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2044504d-17d7f3658ef7bed1","8f44c0a2044538c-17fff374c699cdcd"]},"geometry":{"type":"LineString","coordinates":[[-83.6934568,32.8665983],[-83.6934324,32.8666584]]},"id":"8b44c0a20445fff-17fef36d2688569b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6597356,32.771599200000004]},"id":"8f44c0b1110092a-17ffc5b94ab0cfcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1110092a-17ffc5b94ab0cfcc","8f44c0b11100c19-1797d64bbfaad0f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6595013,32.7716669],[-83.6597356,32.771599200000004]]},"id":"8b44c0b11100fff-17fef60277fa834a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65994090000001,32.7714549]},"id":"8f44c0b11104a5b-179fd538fb65e1c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11104a5b-179fd538fb65e1c7","8f44c0b1110092a-17ffc5b94ab0cfcc"]},"geometry":{"type":"LineString","coordinates":[[-83.6597356,32.771599200000004],[-83.65991530000001,32.7716165],[-83.65994090000001,32.7714549]]},"id":"8a44c0b11107fff-17dff56294a85555"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6599559,32.771360300000005]},"id":"8f44c0b11104b51-17d6f52f932e487e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11104a5b-179fd538fb65e1c7","8f44c0b11104b51-17d6f52f932e487e"]},"geometry":{"type":"LineString","coordinates":[[-83.65994090000001,32.7714549],[-83.6599559,32.771360300000005]]},"id":"8c44c0b11104bff-17f7c53446f3705e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11104b51-17d6f52f932e487e","8f44c0b11104840-179fe562de139636"]},"geometry":{"type":"LineString","coordinates":[[-83.6599559,32.771360300000005],[-83.65996910000001,32.7712768],[-83.65987390000001,32.7712662]]},"id":"8944c0b1113ffff-17bec5391c4f790b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65978630000001,32.7712565]},"id":"8f44c0b111048f6-1797d59998782fe3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b111048f6-1797d59998782fe3","8f44c0b11104840-179fe562de139636"]},"geometry":{"type":"LineString","coordinates":[[-83.65987390000001,32.7712662],[-83.65978630000001,32.7712565]]},"id":"8c44c0b111049ff-1796e57e336c6aac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11104c8e-1796f6218322d4e3","8f44c0b111048f6-1797d59998782fe3"]},"geometry":{"type":"LineString","coordinates":[[-83.65978630000001,32.7712565],[-83.6595688,32.7712323]]},"id":"8b44c0b11104fff-179fc5dd99b14476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6597478,32.7715167]},"id":"8f44c0b111042a3-17b7f5b1a7dc7ec3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b111042a3-17b7f5b1a7dc7ec3","8f44c0b1110092a-17ffc5b94ab0cfcc"]},"geometry":{"type":"LineString","coordinates":[[-83.6597356,32.771599200000004],[-83.6597478,32.7715167]]},"id":"8a44c0b11107fff-17dff5b57e7aa93d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6597619,32.771421700000005]},"id":"8f44c0b1110405d-17fed5a8d552e64c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1110405d-17fed5a8d552e64c","8f44c0b111042a3-17b7f5b1a7dc7ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.6597478,32.7715167],[-83.6597619,32.771421700000005]]},"id":"8b44c0b11104fff-179ec5ad3bb35cce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b111048f6-1797d59998782fe3","8f44c0b1110405d-17fed5a8d552e64c"]},"geometry":{"type":"LineString","coordinates":[[-83.6597619,32.771421700000005],[-83.65978630000001,32.7712565]]},"id":"8b44c0b11104fff-17d6f5a132b4b1f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e39654a-1397393d4c1ab0a5","8f44c0b0e3b6594-13ff37d7dfd3d80d"]},"geometry":{"type":"LineString","coordinates":[[-83.71727800000001,32.8064592],[-83.7172838,32.805496000000005],[-83.71732200000001,32.8054356],[-83.71737110000001,32.8054091],[-83.71744170000001,32.8053927],[-83.7175347,32.805387100000004],[-83.7176414,32.805394],[-83.7177389,32.805405400000005],[-83.7178499,32.805422400000005]]},"id":"8744c0b0effffff-13de38fa344087a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e395905-13963699dc9ba0b0","8f44c0b0e3b6594-13ff37d7dfd3d80d"]},"geometry":{"type":"LineString","coordinates":[[-83.7178499,32.805422400000005],[-83.7179777,32.8054383],[-83.71806500000001,32.8054447],[-83.718129,32.8054482],[-83.71821840000001,32.805443100000005],[-83.71829050000001,32.8054277],[-83.718359,32.8054112],[-83.71835870000001,32.8064801]]},"id":"8744c0b0effffff-13deb6cd3d466f73"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70570690000001,32.7953544]},"id":"8f44c0b032553a2-17fed57d3b5d1652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b032553a6-17f7f57d6a808bb3","8f44c0b032553a2-17fed57d3b5d1652"]},"geometry":{"type":"LineString","coordinates":[[-83.70570690000001,32.7953544],[-83.7057066,32.7953434]]},"id":"8d44c0b032553bf-17f7557d5a4c0be6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b032553a6-17f7f57d6a808bb3","8f44c0b032553a2-17fed57d3b5d1652"]},"geometry":{"type":"LineString","coordinates":[[-83.7057066,32.7953434],[-83.705706,32.795323100000005],[-83.7056929,32.7953059],[-83.70567270000001,32.795296],[-83.7056357,32.7952862],[-83.70548760000001,32.7952844],[-83.70548570000001,32.795394900000005],[-83.7054863,32.795409500000005],[-83.70556260000001,32.7954126],[-83.70560780000001,32.7954115],[-83.70564920000001,32.7954053],[-83.7056786,32.7953996],[-83.70570400000001,32.795376600000004],[-83.70570690000001,32.7953544]]},"id":"8b44c0b03255fff-17f675c97cbf9822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70063010000001,32.823266100000005]},"id":"8f44c0b0a4a93ac-179f71e230b22901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4a9861-139ff19b34b37659","8f44c0b0a4a93ac-179f71e230b22901"]},"geometry":{"type":"LineString","coordinates":[[-83.7007437,32.8230591],[-83.70063010000001,32.823266100000005]]},"id":"8b44c0b0a4a9fff-13dee1beb218daa4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70113040000001,32.823464900000005]},"id":"8f44c0b0a4f4b1d-179ff0a981cf9a87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4a93ac-179f71e230b22901","8f44c0b0a4f4b1d-179ff0a981cf9a87"]},"geometry":{"type":"LineString","coordinates":[[-83.70063010000001,32.823266100000005],[-83.7004295,32.8236313],[-83.70092770000001,32.8238365],[-83.70113040000001,32.823464900000005]]},"id":"8844c0b0a5fffff-17ffe19cce06ad13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a41bc9c-179e6062e4b847a9","8f44c0b0a4f4b1d-179ff0a981cf9a87"]},"geometry":{"type":"LineString","coordinates":[[-83.70113040000001,32.823464900000005],[-83.70124340000001,32.8232578]]},"id":"8844c0b0a5fffff-17dee0863db27430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a485746-13d6f5124b07d9d7","8f44c0b0a48521c-13f664c593444b47"]},"geometry":{"type":"LineString","coordinates":[[-83.69932440000001,32.8227375],[-83.6994471,32.8227872]]},"id":"8b44c0b0a485fff-13d6e4ebf0ee7c33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a48521c-13f664c593444b47","8f44c0b0a4aa11d-13bef40cc45f69d1"]},"geometry":{"type":"LineString","coordinates":[[-83.6994471,32.8227872],[-83.69974280000001,32.8229069]]},"id":"8944c0b0a4bffff-1397746935262968"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4ab945-13b672c2c345af7c","8f44c0b0a4aa11d-13bef40cc45f69d1"]},"geometry":{"type":"LineString","coordinates":[[-83.69974280000001,32.8229069],[-83.7002708,32.823120700000004]]},"id":"8a44c0b0a4affff-13ffe367cea94553"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4ab945-13b672c2c345af7c","8f44c0b0a4a93ac-179f71e230b22901"]},"geometry":{"type":"LineString","coordinates":[[-83.7002708,32.823120700000004],[-83.70063010000001,32.823266100000005]]},"id":"8a44c0b0a4affff-13dfe25284e6f58c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4a93ac-179f71e230b22901","8f44c0b0a4f4b1d-179ff0a981cf9a87"]},"geometry":{"type":"LineString","coordinates":[[-83.70063010000001,32.823266100000005],[-83.70113040000001,32.823464900000005]]},"id":"8844c0b0a5fffff-17df7145df762c17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6995064,32.823366]},"id":"8f44c0b0a48c54d-17dfe4a086cd04f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a48da31-17b773101d3cf1fa","8f44c0b0a48c54d-17dfe4a086cd04f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6995064,32.823366],[-83.6996769,32.823435100000005],[-83.70014710000001,32.8237109]]},"id":"8a44c0b0a48ffff-17b7f3d585d1a4a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7004632,32.8240495]},"id":"8f44c0b0a4f2aa1-17f6f24a8d375067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a48da31-17b773101d3cf1fa","8f44c0b0a4f2aa1-17f6f24a8d375067"]},"geometry":{"type":"LineString","coordinates":[[-83.70014710000001,32.8237109],[-83.70054610000001,32.823886200000004],[-83.7004632,32.8240495]]},"id":"8844c0b0a5fffff-17ff62762ab1658d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6996146,32.8231738]},"id":"8f44c0b0a4aa6ca-13d7e45ceba6aeae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a4aa6ca-13d7e45ceba6aeae","8f44c0b0a48c54d-17dfe4a086cd04f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6996146,32.8231738],[-83.6995064,32.823366]]},"id":"8b44c0b0a48cfff-179ff47ebef01e31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69939450000001,32.823589600000005]},"id":"8f44c0b0a488d14-17d7e4e67f15c5f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b0a48c54d-17dfe4a086cd04f2","8f44c0b0a488d14-17d7e4e67f15c5f6"]},"geometry":{"type":"LineString","coordinates":[[-83.6995064,32.823366],[-83.69939450000001,32.823589600000005]]},"id":"8a44c0b0a48ffff-1797e4c38ab7b51c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b1362-1797bd78b4424684","8f44c0a262868a0-17fefe085239f2f2"]},"geometry":{"type":"LineString","coordinates":[[-83.6827765,32.8568627],[-83.6825467,32.8570343]]},"id":"8944c0a262bffff-17deddc08a25d9f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262868a0-17fefe085239f2f2","8f44c0a262b3a6c-17b69e61c87714e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6825467,32.8570343],[-83.6824036,32.8569089]]},"id":"8944c0a262bffff-17d7ce3519e982a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b38e0-17df8ec7974b3f35","8f44c0a262b3a6c-17b69e61c87714e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6824036,32.8569089],[-83.68224070000001,32.8567504]]},"id":"8b44c0a262b3fff-17fe9e94bdbf2ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b38e0-17df8ec7974b3f35","8f44c0a262b3d72-1796af2081560ab8"]},"geometry":{"type":"LineString","coordinates":[[-83.68224070000001,32.8567504],[-83.6822099,32.8567204],[-83.6820984,32.856659400000005]]},"id":"8b44c0a262b3fff-17beeef27162e9db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b1b49-17dfdd2d730a18ce","8f44c0a262b1362-1797bd78b4424684"]},"geometry":{"type":"LineString","coordinates":[[-83.6827765,32.8568627],[-83.6828969,32.8567709]]},"id":"8a44c0a262b7fff-17f68d53162012fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b198c-17dfbdb390f1c506","8f44c0a262b1b49-17dfdd2d730a18ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6828969,32.8567709],[-83.68268230000001,32.8565683]]},"id":"8a44c0a262b7fff-179e8d708e27dcd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262b0b05-17df8e3583265d06","8f44c0a262b198c-17dfbdb390f1c506"]},"geometry":{"type":"LineString","coordinates":[[-83.68268230000001,32.8565683],[-83.6824744,32.8563704]]},"id":"8a44c0a262b7fff-179fedf49df0ac59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68075490000001,32.8557605]},"id":"8f44c0a267412d5-13f6d2683f8ce48e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267412d5-13f6d2683f8ce48e","8f44c0a2674e112-13d6f2e0d14eb4d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6805619,32.855911],[-83.68075490000001,32.8557605]]},"id":"8a44c0a2674ffff-1397d2a489c2dda5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267412d5-13f6d2683f8ce48e","8f44c0a2674c70e-13f6b1dda67a9f08"]},"geometry":{"type":"LineString","coordinates":[[-83.68075490000001,32.8557605],[-83.68116590000001,32.8554399],[-83.68119850000001,32.855429900000004],[-83.6812338,32.8554307],[-83.6817008,32.8557288],[-83.68170830000001,32.8557544],[-83.6816912,32.8557769],[-83.6811924,32.856124300000005],[-83.68116420000001,32.8561251],[-83.68114320000001,32.856121800000004],[-83.68097660000001,32.8559651]]},"id":"8944c0a2677ffff-13dfd120d0ec7ee7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2674c70e-13f6b1dda67a9f08","8f44c0a267412d5-13f6d2683f8ce48e"]},"geometry":{"type":"LineString","coordinates":[[-83.68097660000001,32.8559651],[-83.68075490000001,32.8557605]]},"id":"8a44c0a2674ffff-13b6d222e884b1e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7026683,32.7869678]},"id":"8f44c0b030628c8-13fefce85f844074"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b030607b0-13ffdc62290d91be","8f44c0b030628c8-13fefce85f844074"]},"geometry":{"type":"LineString","coordinates":[[-83.702883,32.7869885],[-83.7026683,32.7869678]]},"id":"8a44c0b03067fff-13f75ca5349022a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b030628c8-13fefce85f844074","8f44c0b03062cca-13f6dd65b1a98d61"]},"geometry":{"type":"LineString","coordinates":[[-83.7026683,32.7869678],[-83.7024677,32.786954900000005]]},"id":"8b44c0b03062fff-13fefd2708180265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7020995,32.786946400000005]},"id":"8f44c0b03071d61-13f7de4bde60ebbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03071d61-13f7de4bde60ebbc","8f44c0b03062cca-13f6dd65b1a98d61"]},"geometry":{"type":"LineString","coordinates":[[-83.7024677,32.786954900000005],[-83.7023494,32.786962],[-83.7020995,32.786946400000005]]},"id":"8944c0b0307ffff-13f75dd8c4df1fc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7026912,32.786725100000005]},"id":"8f44c0b03066769-13d77cda0a21c880"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03066769-13d77cda0a21c880","8f44c0b030628c8-13fefce85f844074"]},"geometry":{"type":"LineString","coordinates":[[-83.7026683,32.7869678],[-83.7026912,32.786725100000005]]},"id":"8a44c0b03067fff-13b75ce13be904f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03066005-1396fcd0f7b9facd","8f44c0b03066769-13d77cda0a21c880"]},"geometry":{"type":"LineString","coordinates":[[-83.7026912,32.786725100000005],[-83.70270570000001,32.7865867]]},"id":"8b44c0b03066fff-13bffcd57aba5652"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70252400000001,32.7868471]},"id":"8f44c0b03062d56-13b77d4282770f76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03062c1b-13d7dd6367e40aa3","8f44c0b03062d56-13b77d4282770f76"]},"geometry":{"type":"LineString","coordinates":[[-83.70252400000001,32.7868471],[-83.70247140000001,32.786902000000005]]},"id":"8c44c0b03062dff-13b6fd52f669c64f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03066769-13d77cda0a21c880","8f44c0b03075b6b-13df5d572dccef2f"]},"geometry":{"type":"LineString","coordinates":[[-83.7026912,32.786725100000005],[-83.70249100000001,32.786709300000005]]},"id":"8b44c0b03066fff-13d65d1895b45dd3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0307514e-13d75dda4000ef8f","8f44c0b03075b6b-13df5d572dccef2f"]},"geometry":{"type":"LineString","coordinates":[[-83.70249100000001,32.786709300000005],[-83.7022812,32.786696400000004]]},"id":"8944c0b0307ffff-13df5d98b0a7663e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0307514e-13d75dda4000ef8f","8f44c0b03075810-13fe5dd3f64e0587"]},"geometry":{"type":"LineString","coordinates":[[-83.7022812,32.786696400000004],[-83.7022913,32.786557300000005]]},"id":"8b44c0b03075fff-139fddd7201e76b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7024435,32.7867632]},"id":"8f44c0b03075a42-13ff5d74d9b6a252"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03066696-13de5d585d230251","8f44c0b03075a42-13ff5d74d9b6a252"]},"geometry":{"type":"LineString","coordinates":[[-83.70248910000001,32.7867332],[-83.7024435,32.7867632]]},"id":"8c44c0b03075bff-13f7fd669eaa44de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b030750b6-13be7e3b1b88f2cf","8f44c0b03075c05-13f7fe33136857e0"]},"geometry":{"type":"LineString","coordinates":[[-83.70213910000001,32.7865434],[-83.7021263,32.7866851]]},"id":"8b44c0b03075fff-1397fe371cc667bd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b030750b6-13be7e3b1b88f2cf","8f44c0b03071d61-13f7de4bde60ebbc"]},"geometry":{"type":"LineString","coordinates":[[-83.7021263,32.7866851],[-83.7020995,32.786946400000005]]},"id":"8a44c0b03077fff-139ffe43758b285f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b884a08-13b7d78634ba0721","8f44c0b0b88551d-13b77790f5598194"]},"geometry":{"type":"LineString","coordinates":[[-83.7310705,32.8325462],[-83.7310877,32.8323197]]},"id":"8a44c0b0b887fff-13feb78b984baf72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b884a08-13b7d78634ba0721","8f44c0b0b88456a-139618443dd9aec1"]},"geometry":{"type":"LineString","coordinates":[[-83.7310877,32.8323197],[-83.7307837,32.832262400000005]]},"id":"8b44c0b0b884fff-1397f7e53aa418f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b886b5b-13fe589823f69146","8f44c0b0b88456a-139618443dd9aec1"]},"geometry":{"type":"LineString","coordinates":[[-83.7307837,32.832262400000005],[-83.7306494,32.832422900000005]]},"id":"8a44c0b0b887fff-13b6386e39fdd093"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73141310000001,32.8324105]},"id":"8f44c0b0b8a32de-13f696badfee776c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8a32de-13f696badfee776c","8f44c0b0b885158-13dfb700a2e53ad6"]},"geometry":{"type":"LineString","coordinates":[[-83.7313014,32.832613900000005],[-83.73141310000001,32.8324105]]},"id":"8a44c0b0b887fff-13b636ddc801abd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.731285,32.832337100000004]},"id":"8f44c0b0b8a360d-13b6b70aec4bbde2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8a32de-13f696badfee776c","8f44c0b0b8a360d-13b6b70aec4bbde2"]},"geometry":{"type":"LineString","coordinates":[[-83.73141310000001,32.8324105],[-83.7316263,32.8324122],[-83.7317498,32.8322827],[-83.7317543,32.8317708],[-83.73170900000001,32.8317051],[-83.73175020000001,32.8316068],[-83.7317519,32.8313453],[-83.7317196,32.8313032],[-83.7316547,32.8312788],[-83.73158430000001,32.831271],[-83.7315217,32.8312879],[-83.7314564,32.831319],[-83.7314066,32.8313691],[-83.7313542,32.8314565],[-83.73132580000001,32.8315408],[-83.7313172,32.8316129],[-83.7313192,32.831700000000005],[-83.7313161,32.831779700000006],[-83.73128870000001,32.8319153],[-83.731285,32.832337100000004]]},"id":"8844c0b0b9fffff-13f6366928006982"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b8a32de-13f696badfee776c","8f44c0b0b8a360d-13b6b70aec4bbde2"]},"geometry":{"type":"LineString","coordinates":[[-83.731285,32.832337100000004],[-83.73141310000001,32.8324105]]},"id":"8b44c0b0b8a3fff-13dfb6e2eae59439"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65951670000001,32.773124100000004]},"id":"8f44c0b1110a694-13b6d64215705a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1110a041-13fec5a09a694a4a","8f44c0b1110a694-13b6d64215705a35"]},"geometry":{"type":"LineString","coordinates":[[-83.6597751,32.7730344],[-83.65951670000001,32.773124100000004]]},"id":"8b44c0b1110afff-1396d5f15ead0eb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65931810000001,32.7731587]},"id":"8f44c0b11119330-13bef6be383d6d0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11119330-13bef6be383d6d0a","8f44c0b1110a694-13b6d64215705a35"]},"geometry":{"type":"LineString","coordinates":[[-83.65951670000001,32.773124100000004],[-83.6594505,32.7731471],[-83.65931810000001,32.7731587]]},"id":"8944c0b1113ffff-13b6d67f6b0da84c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11119330-13bef6be383d6d0a","8f44c0b11119701-13d7e724a2f36c77"]},"geometry":{"type":"LineString","coordinates":[[-83.65931810000001,32.7731587],[-83.6591542,32.773173]]},"id":"8b44c0b11119fff-13bef6f173982be3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1110b702-13d7e522c6c26bea","8f44c0b11024a9b-13fed5d0a8325a52"]},"geometry":{"type":"LineString","coordinates":[[-83.6599764,32.7733846],[-83.65974150000001,32.773471900000004],[-83.65969820000001,32.7734729]]},"id":"8844c0b111fffff-13f6c578fae0f155"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6595587,32.7734759]},"id":"8f44c0b110240d5-13fef627dd8719e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110240d5-13fef627dd8719e7","8f44c0b11024a9b-13fed5d0a8325a52"]},"geometry":{"type":"LineString","coordinates":[[-83.65969820000001,32.7734729],[-83.6596394,32.7734742],[-83.6595587,32.7734759]]},"id":"8b44c0b11024fff-13ffc5fc313dbd4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65936470000001,32.7734802]},"id":"8f44c0b110244da-1397e6a11f1f9f87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110240d5-13fef627dd8719e7","8f44c0b110244da-1397e6a11f1f9f87"]},"geometry":{"type":"LineString","coordinates":[[-83.6595587,32.7734759],[-83.65936470000001,32.7734802]]},"id":"8b44c0b11024fff-13ffd66478b6ee99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110244da-1397e6a11f1f9f87","8f44c0b11026bac-1396c6d7ac7a02fc"]},"geometry":{"type":"LineString","coordinates":[[-83.65936470000001,32.7734802],[-83.65927740000001,32.7734824]]},"id":"8c44c0b11026bff-1397d6bc59c07344"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1102618c-1397c753743b90f7","8f44c0b11026bac-1396c6d7ac7a02fc"]},"geometry":{"type":"LineString","coordinates":[[-83.65927740000001,32.7734824],[-83.6590793,32.7734868]]},"id":"8b44c0b11026fff-1397e7159da391c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11024d0b-13f7d63609979098","8f44c0b1110a694-13b6d64215705a35"]},"geometry":{"type":"LineString","coordinates":[[-83.659536,32.7732285],[-83.65951670000001,32.773124100000004]]},"id":"8944c0b1113ffff-13d7f63c0e95703b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11119220-13f6c6b6dee87d2d","8f44c0b11119330-13bef6be383d6d0a"]},"geometry":{"type":"LineString","coordinates":[[-83.65931810000001,32.7731587],[-83.6593299,32.7732256]]},"id":"8c44c0b111193ff-13dfe6ba87742e25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11025b31-1396c4b843556efa","8f44c0b11020d48-139ee6630a6a792c"]},"geometry":{"type":"LineString","coordinates":[[-83.6601468,32.7736832],[-83.659968,32.7737618],[-83.6598683,32.7735945],[-83.659464,32.7736974]]},"id":"8944c0b1103ffff-13ffe58386002bcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6591382,32.773780200000004]},"id":"8f44c0b11022972-13bee72eabed4373"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11022972-13bee72eabed4373","8f44c0b11020d48-139ee6630a6a792c"]},"geometry":{"type":"LineString","coordinates":[[-83.659464,32.7736974],[-83.6591382,32.773780200000004]]},"id":"8a44c0b11027fff-13b6c6c8d2469b93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11022996-13b6d77cef3f72e9","8f44c0b11022972-13bee72eabed4373"]},"geometry":{"type":"LineString","coordinates":[[-83.6591382,32.773780200000004],[-83.659013,32.773760100000004]]},"id":"8c44c0b110229ff-13b6e755c04608be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1102231e-13ffd75a863c06bd","8f44c0b11022972-13bee72eabed4373"]},"geometry":{"type":"LineString","coordinates":[[-83.6591382,32.773780200000004],[-83.659068,32.7740633]]},"id":"8b44c0b11022fff-1397e74493c479e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1102231e-13ffd75a863c06bd","8f44c0b11022776-13f7f7ad52f298e4"]},"geometry":{"type":"LineString","coordinates":[[-83.659068,32.7740633],[-83.6589355,32.7740479]]},"id":"8b44c0b11022fff-13fec783fda82215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670344a-17bffa2ac0350b07","8f44c0a2670ed8c-17f6d9436da722ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6779466,32.8535052],[-83.67780060000001,32.853612600000005],[-83.6775764,32.8534175]]},"id":"8a44c0a26707fff-17f7d9b8e5cc73e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670344a-17bffa2ac0350b07","8f44c0a26703115-17dfd9d4357b8b21"]},"geometry":{"type":"LineString","coordinates":[[-83.6775764,32.8534175],[-83.67771490000001,32.853298800000005]]},"id":"8b44c0a26703fff-1796f9ff715707a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6778273,32.8542239]},"id":"8f44c0a2670a7a9-17b7f98dfe6f8a67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670e14d-17d7f8bff50e64d0","8f44c0a2670a7a9-17b7f98dfe6f8a67"]},"geometry":{"type":"LineString","coordinates":[[-83.6781569,32.853695800000004],[-83.6776586,32.854091600000004],[-83.6778273,32.8542239]]},"id":"8944c0a2673ffff-17ffb975a8f4465e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670a7a9-17b7f98dfe6f8a67","8f44c0a2670ab96-17dfb903b82deec5"]},"geometry":{"type":"LineString","coordinates":[[-83.6778273,32.8542239],[-83.6778891,32.854271700000005],[-83.67802950000001,32.8541706],[-83.6780485,32.8540827]]},"id":"8b44c0a2670afff-1796f93cc98e3f67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67769340000001,32.8529949]},"id":"8f44c0a267007a4-17b7d9e1a13d1f9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26702ac3-17f69a4d1e4df1a2","8f44c0a267007a4-17b7d9e1a13d1f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.67752150000001,32.8531265],[-83.67769340000001,32.8529949]]},"id":"8a44c0a26707fff-17defa176c5e0cc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67804600000001,32.853316400000004]},"id":"8f44c0a26701459-17fed905481f0c37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26701459-17fed905481f0c37","8f44c0a267007a4-17b7d9e1a13d1f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.67769340000001,32.8529949],[-83.67804600000001,32.853316400000004]]},"id":"8a44c0a26707fff-1796d9737d0ff6f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67842800000001,32.853163800000004]},"id":"8f44c0a2672a48c-179ff81687f67511"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267009aa-179ff95daa7ef082","8f44c0a2672a48c-179ff81687f67511"]},"geometry":{"type":"LineString","coordinates":[[-83.6779046,32.8527519],[-83.67842800000001,32.853163800000004]]},"id":"8a44c0a26707fff-179eb8ba131622c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267004e5-179ed9fd6bd74738","8f44c0a267007a4-17b7d9e1a13d1f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.67769340000001,32.8529949],[-83.677649,32.8529549]]},"id":"8b44c0a26700fff-1797d9ef88477522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db648c9-13fed1498e54ccfb","8f44c0b1db64562-13ffd1d44196eefd"]},"geometry":{"type":"LineString","coordinates":[[-83.70742800000001,32.8053964],[-83.707206,32.805398100000005]]},"id":"8b44c0b1db64fff-13ff518ee3892675"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70699950000001,32.8053996]},"id":"8f44c0b1db66951-13fed25555c14a06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db66951-13fed25555c14a06","8f44c0b1db64562-13ffd1d44196eefd"]},"geometry":{"type":"LineString","coordinates":[[-83.707206,32.805398100000005],[-83.70699950000001,32.8053996]]},"id":"8a44c0b1db67fff-13fe5214d8984c91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db62b49-13ff72547298732c","8f44c0b1db66951-13fed25555c14a06"]},"geometry":{"type":"LineString","coordinates":[[-83.70699950000001,32.8053996],[-83.7065749,32.8053933],[-83.7065668,32.806000600000004],[-83.70700090000001,32.8060147]]},"id":"8944c0b1db7ffff-13bfd312a6e9fa93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db62b49-13ff72547298732c","8f44c0b1db66951-13fed25555c14a06"]},"geometry":{"type":"LineString","coordinates":[[-83.70700090000001,32.8060147],[-83.70699950000001,32.8053996]]},"id":"8a44c0b1db67fff-13bf5254eef6c007"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db65c4d-139e50b2e34afc75","8f44c0b1db655b6-139e514b80cc154f"]},"geometry":{"type":"LineString","coordinates":[[-83.7074248,32.8056773],[-83.70766900000001,32.8056804]]},"id":"8a44c0b1db67fff-139f50ff3fd136f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db65c4d-139e50b2e34afc75","8f44c0b0e79648c-13b650153e5f680a"]},"geometry":{"type":"LineString","coordinates":[[-83.70766900000001,32.8056804],[-83.70792130000001,32.8056837]]},"id":"8744c0b0effffff-139f50640b1ffc58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e793b2c-13df6e5887081c0b","8f44c0b0e79648c-13b650153e5f680a"]},"geometry":{"type":"LineString","coordinates":[[-83.70792130000001,32.8056837],[-83.708082,32.805685700000005],[-83.70824160000001,32.806089400000005],[-83.7086218,32.8060836],[-83.7086328,32.806373]]},"id":"8a44c0b0e797fff-13f7cf1644c7a35f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.70769250000001,32.8059643]},"id":"8f44c0b1db6529d-13dff0a432c5be6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db60a51-13d7f14d72fccbac","8f44c0b1db6529d-13dff0a432c5be6c"]},"geometry":{"type":"LineString","coordinates":[[-83.70742170000001,32.805942300000005],[-83.7076928,32.805945300000005],[-83.70769250000001,32.8059643]]},"id":"8a44c0b1db67fff-13d750f331edb5e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72328250000001,32.807691000000005]},"id":"8f44c0b0e309622-1796ea947832c5fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e309622-1796ea947832c5fe","8f44c0b0e3726da-1797a980bef5c975"]},"geometry":{"type":"LineString","coordinates":[[-83.72372370000001,32.807689],[-83.72328250000001,32.807691000000005]]},"id":"8944c0b0e37ffff-17966a0a9f66c3dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72329330000001,32.807990600000004]},"id":"8f44c0b0e356152-17d62a8db431f4b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e309622-1796ea947832c5fe","8f44c0b0e356152-17d62a8db431f4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.72328250000001,32.807691000000005],[-83.7223017,32.8076954],[-83.7223032,32.8081941],[-83.7227076,32.808195600000005],[-83.7226997,32.8079936],[-83.72329330000001,32.807990600000004]]},"id":"8844c0b0e3fffff-17972c02d319dd1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7232965,32.808167000000005]},"id":"8f44c0b0e3562ae-17b66a8bb29605b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e3562ae-17b66a8bb29605b1","8f44c0b0e356152-17d62a8db431f4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.72329330000001,32.807990600000004],[-83.7232965,32.808167000000005]]},"id":"8b44c0b0e356fff-17ff6a8cba34667b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e3562ae-17b66a8bb29605b1","8f44c0b0e35090a-17be796fb72dd00b"]},"geometry":{"type":"LineString","coordinates":[[-83.7232965,32.808167000000005],[-83.7237509,32.808154300000005]]},"id":"8a44c0b0e357fff-17be79fdb92084cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.722926,32.8086447]},"id":"8f44c0b0e22cd10-13defb734228a156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7227368,32.808567100000005]},"id":"8f44c0b0e221065-13be7be9857b469e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e22cd10-13defb734228a156","8f44c0b0e221065-13be7be9857b469e"]},"geometry":{"type":"LineString","coordinates":[[-83.722926,32.8086447],[-83.7227368,32.808567100000005]]},"id":"8944c0b0e23ffff-13d6bbae6fb2d11b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7230758,32.8085842]},"id":"8f44c0b0e352629-13b72b15a6bde824"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e352629-13b72b15a6bde824","8f44c0b0e3562ae-17b66a8bb29605b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7232965,32.808167000000005],[-83.72330690000001,32.8084107],[-83.7232736,32.808482000000005],[-83.72320210000001,32.8085449],[-83.7230966,32.8085758],[-83.7230758,32.8085842]]},"id":"8a44c0b0e357fff-17de6aa8e63acb28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e22cd10-13defb734228a156","8f44c0b0e352629-13b72b15a6bde824"]},"geometry":{"type":"LineString","coordinates":[[-83.7230758,32.8085842],[-83.722926,32.8086447]]},"id":"8944c0b0e23ffff-13de3b4479bdbda6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09490ac4-17fef48d9e2ad2f6","8f44c0b094900ea-17f644fa2edc9f74"]},"geometry":{"type":"LineString","coordinates":[[-83.7388583,32.833473500000004],[-83.7386846,32.8334692]]},"id":"8b44c0b09490fff-17f7a4c3ec90bc14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094921a3-17fe0642b73a9c94","8f44c0b094900ea-17f644fa2edc9f74"]},"geometry":{"type":"LineString","coordinates":[[-83.7386846,32.8334692],[-83.7381589,32.8334496]]},"id":"8a44c0b09497fff-17f6259e72231325"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7381581,32.8335433]},"id":"8f44c0b0949208d-17b6964336cdc1f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0949208d-17b6964336cdc1f0","8f44c0b094921a3-17fe0642b73a9c94"]},"geometry":{"type":"LineString","coordinates":[[-83.7381589,32.8334496],[-83.7381581,32.8335433]]},"id":"8c44c0b094921ff-17974642f15640b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0949208d-17b6964336cdc1f0","8f44c0b09492773-17d6a644428e88a2"]},"geometry":{"type":"LineString","coordinates":[[-83.7381581,32.8335433],[-83.73815640000001,32.8336202]]},"id":"8b44c0b09492fff-17bea643c1c8db9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73814780000001,32.8338695]},"id":"8f44c0b0b86c8d1-17f67649a5442036"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492773-17d6a644428e88a2","8f44c0b0b86c8d1-17f67649a5442036"]},"geometry":{"type":"LineString","coordinates":[[-83.73815640000001,32.8336202],[-83.73814780000001,32.8338695]]},"id":"8944c0b0b87ffff-17b69646feb11988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0949208d-17b6964336cdc1f0","8f44c0b09492450-17b7a68f9a7d53ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7381581,32.8335433],[-83.7380359,32.833538600000004]]},"id":"8b44c0b09492fff-17b716696e90b6f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7379411,32.833534900000004]},"id":"8f44c0b09492499-179f56cad6989a32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492499-179f56cad6989a32","8f44c0b09492450-17b7a68f9a7d53ac"]},"geometry":{"type":"LineString","coordinates":[[-83.7380359,32.833538600000004],[-83.7379411,32.833534900000004]]},"id":"8c44c0b094925ff-17b686ad389330e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73785050000001,32.833531300000004]},"id":"8f44c0b0b861853-179f17037b4c9b9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492499-179f56cad6989a32","8f44c0b0b861853-179f17037b4c9b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.7379411,32.833534900000004],[-83.73785050000001,32.833531300000004]]},"id":"8b44c0b0b861fff-179e36e721a92453"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73775,32.8335274]},"id":"8f44c0b0b861126-179ea7424d048e12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861126-179ea7424d048e12","8f44c0b0b861853-179f17037b4c9b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.73785050000001,32.833531300000004],[-83.73775,32.8335274]]},"id":"8c44c0b0b8619ff-179fe722ddb2dc4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.737665,32.8335242]},"id":"8f44c0b0b861c5a-179ea7776e3b89c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861126-179ea7424d048e12","8f44c0b0b861c5a-179ea7776e3b89c8"]},"geometry":{"type":"LineString","coordinates":[[-83.73775,32.8335274],[-83.737665,32.8335242]]},"id":"8b44c0b0b861fff-179fa75cd3aa0dd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861523-179637b675616997","8f44c0b0b861c5a-179ea7776e3b89c8"]},"geometry":{"type":"LineString","coordinates":[[-83.737665,32.8335242],[-83.7375641,32.8335203]]},"id":"8b44c0b0b861fff-17976796f0f6dab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861523-179637b675616997","8f44c0b0b8602ce-17973805efc6f5d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7375641,32.8335203],[-83.737437,32.833515500000004]]},"id":"8a44c0b0b867fff-1796b7de32b458b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7378546,32.8333924]},"id":"8f44c0b0b861920-17d64700e54bdd11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7379425,32.833393900000004]},"id":"8f44c0b0b8652ec-17d736c9f04665a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861920-17d64700e54bdd11","8f44c0b0b8652ec-17d736c9f04665a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7378546,32.8333924],[-83.7379425,32.833393900000004]]},"id":"8b44c0b0b865fff-17d6c6e5609b378f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492c99-17de268eb6f746cc","8f44c0b0b8652ec-17d736c9f04665a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7379425,32.833393900000004],[-83.7380373,32.8333954]]},"id":"8944c0b0b87ffff-17d7b6ac5449fd2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492cf1-17dec66b5e94dca6","8f44c0b09492c99-17de268eb6f746cc"]},"geometry":{"type":"LineString","coordinates":[[-83.7380373,32.8333954],[-83.73809390000001,32.833396400000005]]},"id":"8c44c0b09492dff-17de767d0451d302"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7376698,32.833388500000005]},"id":"8f44c0b0b861d23-17d7d77461c52fe9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861d23-17d7d77461c52fe9","8f44c0b0b861da5-17d707998d7366a8"]},"geometry":{"type":"LineString","coordinates":[[-83.73761040000001,32.833387200000004],[-83.7376698,32.833388500000005]]},"id":"8c44c0b0b861dff-17d77786f28c91db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7377536,32.8333904]},"id":"8f44c0b0b8656e9-17d70740076db853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861d23-17d7d77461c52fe9","8f44c0b0b8656e9-17d70740076db853"]},"geometry":{"type":"LineString","coordinates":[[-83.7376698,32.833388500000005],[-83.7377536,32.8333904]]},"id":"8b44c0b0b861fff-17d6775a39c92629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861db6-17d687b4544ff5d1","8f44c0b0b861da5-17d707998d7366a8"]},"geometry":{"type":"LineString","coordinates":[[-83.73761040000001,32.833387200000004],[-83.73756750000001,32.8333864]]},"id":"8d44c0b0b861dbf-17d6c7a6f02d23fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861db6-17d687b4544ff5d1","8f44c0b0b860313-17d6f80439c9c68e"]},"geometry":{"type":"LineString","coordinates":[[-83.73756750000001,32.8333864],[-83.73743970000001,32.8333839]]},"id":"8b44c0b0b860fff-17d7c7dc4aa90d2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c453c49-1397f12f676dfa74","8f44c0b1c453622-1396f1618a75ecb7"]},"geometry":{"type":"LineString","coordinates":[[-83.668068,32.7927343],[-83.6681037,32.7927198],[-83.66812060000001,32.7926932],[-83.66813180000001,32.7926623],[-83.6681482,32.7925269]]},"id":"8b44c0b1c453fff-13dff13d7e155207"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7099311,32.805699600000004]},"id":"8f44c0b0e7840a9-13be4b2d180c7b6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e781cc9-13dedab7d092a1ea","8f44c0b0e7840a9-13be4b2d180c7b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.71011870000001,32.806366100000005],[-83.71014890000001,32.805731300000005],[-83.7101346,32.8057116],[-83.7101148,32.805701400000004],[-83.7099311,32.805699600000004]]},"id":"8a44c0b0e787fff-13df4abd1bf5fcc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7095383,32.8057005]},"id":"8f44c0b0e7868d0-13bedc229a3551d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e7868d0-13bedc229a3551d0","8f44c0b0e7840a9-13be4b2d180c7b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7099311,32.805699600000004],[-83.7095383,32.8057005]]},"id":"8a44c0b0e787fff-13becba7d5b8fc2e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e7868d0-13bedc229a3551d0","8f44c0b0e78275b-13de5cb06e59231d"]},"geometry":{"type":"LineString","coordinates":[[-83.7095383,32.8057005],[-83.70933210000001,32.8057018],[-83.7093158,32.8057157],[-83.7093114,32.806368500000005]]},"id":"8a44c0b0e787fff-13df5c9d1b20103f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e7a245c-13b7fb2a6923393d","8f44c0b0e7840a9-13be4b2d180c7b6a"]},"geometry":{"type":"LineString","coordinates":[[-83.7099311,32.805699600000004],[-83.7099354,32.8052863]]},"id":"8944c0b0e7bffff-13bf6b2bc3dc26ae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e7a245c-13b7fb2a6923393d","8f44c0b0e7b11b0-13b7dc205133b025"]},"geometry":{"type":"LineString","coordinates":[[-83.7099354,32.8052863],[-83.70993390000001,32.8051058],[-83.7099275,32.8050912],[-83.7099113,32.8050858],[-83.70956650000001,32.8050797],[-83.7095489,32.8050875],[-83.7095444,32.805103],[-83.7095419,32.8052793]]},"id":"8944c0b0e7bffff-17df5ba4e1261039"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e7868d0-13bedc229a3551d0","8f44c0b0e7b11b0-13b7dc205133b025"]},"geometry":{"type":"LineString","coordinates":[[-83.7095419,32.8052793],[-83.7095383,32.8057005]]},"id":"8944c0b0e7bffff-13b77c2179b78031"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66101590000001,32.82453]},"id":"8f44c0b1bc20131-17b7c29917a0dd33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc20131-17b7c29917a0dd33","8f44c0b1bd55d84-17d7be90d352ca08"]},"geometry":{"type":"LineString","coordinates":[[-83.66266750000001,32.8244088],[-83.66233240000001,32.8244045],[-83.6617239,32.8244022],[-83.6616645,32.8244424],[-83.6615374,32.8244589],[-83.6612286,32.8244728],[-83.6610959,32.8245304],[-83.66101590000001,32.82453]]},"id":"8844c0b1bdfffff-17f7d098d12f416d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc20131-17b7c29917a0dd33","8f44c0b1bc22da9-17b7e40b05fb86e7"]},"geometry":{"type":"LineString","coordinates":[[-83.66101590000001,32.82453],[-83.6605809,32.8245275],[-83.660424,32.8245266]]},"id":"8a44c0b1bc27fff-17b6f35207576641"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68434710000001,32.8226996]},"id":"8f44c0b19c52451-13bfc9a312106488"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce16a9-13bf8ac1b552e537","8f44c0b19c52451-13bfc9a312106488"]},"geometry":{"type":"LineString","coordinates":[[-83.68434710000001,32.8226996],[-83.68388850000001,32.822930400000004]]},"id":"8944c0b19cfffff-13f7ea326d7acdbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.683492,32.823129900000005]},"id":"8f44c0b19cc59aa-13bebbb98c72884b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19ce16a9-13bf8ac1b552e537","8f44c0b19cc59aa-13bebbb98c72884b"]},"geometry":{"type":"LineString","coordinates":[[-83.68388850000001,32.822930400000004],[-83.683492,32.823129900000005]]},"id":"8944c0b19cfffff-13ffeb3d9d194e4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6918157,32.8962141]},"id":"8f44c0a2364c75a-17b7f7673b67b109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364c75a-17b7f7673b67b109","8f44c0a2364c6c8-17d6f784f5e79dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6917681,32.8962893],[-83.6918157,32.8962141]]},"id":"8c44c0a2364c7ff-17bf77761f41959f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364c0ce-17fef74be0db98d8","8f44c0a2364c75a-17b7f7673b67b109"]},"geometry":{"type":"LineString","coordinates":[[-83.6918157,32.8962141],[-83.6918594,32.8961449]]},"id":"8b44c0a2364cfff-179677599465293a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364c0ce-17fef74be0db98d8","8f44c0a2364c8c4-1796770a3dc02c8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6918594,32.8961449],[-83.69196450000001,32.8959782]]},"id":"8b44c0a2364cfff-17d6f72b13d9e96d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364bcb3-17967845003122e6","8f44c0a059a4ba3-139e78aa924a61c0"]},"geometry":{"type":"LineString","coordinates":[[-83.6912983,32.8969924],[-83.6914608,32.8967748]]},"id":"8944c0a2367ffff-17de7877dc955172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364bcb3-17967845003122e6","8f44c0a2364c6c8-17d6f784f5e79dd2"]},"geometry":{"type":"LineString","coordinates":[[-83.6914608,32.8967748],[-83.6917681,32.8962893]]},"id":"8a44c0a2364ffff-17fef7e5047bf917"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633844,32.8078123]},"id":"8f44c0b1852c19c-17d6bcd0cb9c2cd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1852e816-17debda87a33fa84","8f44c0b1852c19c-17d6bcd0cb9c2cd7"]},"geometry":{"type":"LineString","coordinates":[[-83.66303930000001,32.8078057],[-83.6633844,32.8078123]]},"id":"8a44c0b1852ffff-17d6bd3c9161ee56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6633888,32.807645900000004]},"id":"8f44c0b1852cd0e-17febcce0e3da5d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1852cd0e-17febcce0e3da5d7","8f44c0b1852c19c-17d6bcd0cb9c2cd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6633844,32.8078123],[-83.6633888,32.807645900000004]]},"id":"8b44c0b1852cfff-179ebccf6ab1ccf7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1852cd0e-17febcce0e3da5d7","8f44c0b18cd27b6-1797bccadd5d9103"]},"geometry":{"type":"LineString","coordinates":[[-83.6633888,32.807645900000004],[-83.6633939,32.8074768]]},"id":"8944c0b1853ffff-17b7fccc69dec9c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd27b6-1797bccadd5d9103","8f44c0b18cd251d-17b6bcc93443a6fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6633939,32.8074768],[-83.6633965,32.8073544]]},"id":"8c44c0b18cd25ff-17defcca0deaf76b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66340050000001,32.8072043]},"id":"8f44c0b18cd2d96-17d6bcc6b31fdfc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd2d96-17d6bcc6b31fdfc7","8f44c0b18cd251d-17b6bcc93443a6fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6633965,32.8073544],[-83.66340050000001,32.8072043]]},"id":"8a44c0b18cd7fff-1797bcc7f08a50bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd2d96-17d6bcc6b31fdfc7","8f44c0b1852579d-17d6bd9f3458daf1"]},"geometry":{"type":"LineString","coordinates":[[-83.66340050000001,32.8072043],[-83.66305410000001,32.8072001]]},"id":"8b44c0b18525fff-17d7fd32faa3fbc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640115,32.8076585]},"id":"8f44c0b18cd38c6-17f6bb48d88e7352"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd38c6-17f6bb48d88e7352","8f44c0b1852c19c-17d6bcd0cb9c2cd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6633844,32.8078123],[-83.66400560000001,32.807821100000005],[-83.6640115,32.8076585]]},"id":"8744c0b18ffffff-17dffbe5f6f3e12f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6640179,32.8074815]},"id":"8f44c0b18cd0661-1797fb44d149da1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd0661-1797fb44d149da1a","8f44c0b18cd38c6-17f6bb48d88e7352"]},"geometry":{"type":"LineString","coordinates":[[-83.6640115,32.8076585],[-83.6640179,32.8074815]]},"id":"8a44c0b18cd7fff-17bffb46d42f6805"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636242,32.8072036]},"id":"8f44c0b18cd29b5-17d6fc3ae179b766"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd0661-1797fb44d149da1a","8f44c0b18cd29b5-17d6fc3ae179b766"]},"geometry":{"type":"LineString","coordinates":[[-83.6640179,32.8074815],[-83.6640198,32.8070539],[-83.6636842,32.807051],[-83.6636242,32.8072036]]},"id":"8a44c0b18cd7fff-17bebb92474c14ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd29b5-17d6fc3ae179b766","8f44c0b18cd2d96-17d6bcc6b31fdfc7"]},"geometry":{"type":"LineString","coordinates":[[-83.6636242,32.8072036],[-83.66340050000001,32.8072043]]},"id":"8a44c0b18cd7fff-17d6bc80d1f6da2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd204e-1796bc3bd632b9ea","8f44c0b18cd212d-17b6bc3b036fee47"]},"geometry":{"type":"LineString","coordinates":[[-83.663624,32.8073576],[-83.6636227,32.807479400000005]]},"id":"8c44c0b18cd21ff-17debc3b74e5bf69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66362120000001,32.80765]},"id":"8f44c0b18cd22d8-17fffc3cc444b6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd22d8-17fffc3cc444b6ab","8f44c0b18cd204e-1796bc3bd632b9ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6636227,32.807479400000005],[-83.66362120000001,32.80765]]},"id":"8b44c0b18cd2fff-17b7fc3c44704367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd22d8-17fffc3cc444b6ab","8f44c0b18cd38c6-17f6bb48d88e7352"]},"geometry":{"type":"LineString","coordinates":[[-83.6640115,32.8076585],[-83.66362120000001,32.80765]]},"id":"8a44c0b18cd7fff-17fffbc2d1b4adc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1852cd0e-17febcce0e3da5d7","8f44c0b18cd22d8-17fffc3cc444b6ab"]},"geometry":{"type":"LineString","coordinates":[[-83.66362120000001,32.80765],[-83.6633888,32.807645900000004]]},"id":"8944c0b1853ffff-17febc85606e8d99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2634ed9c-17f6fca77aa0857c","8f44c0a2634e985-17fe7c269f699794"]},"geometry":{"type":"LineString","coordinates":[[-83.6898711,32.8565891],[-83.68966490000001,32.8565836]]},"id":"8944c0a2637ffff-17f67c670d2ebc57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2635e272-179e7f3a20db4c5c","8f44c0a2634ed9c-17f6fca77aa0857c"]},"geometry":{"type":"LineString","coordinates":[[-83.68966490000001,32.8565836],[-83.68906030000001,32.8565674],[-83.68885010000001,32.856851],[-83.68861100000001,32.8568449]]},"id":"8944c0a2637ffff-179e7dfe68b20c67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7206348,32.811421700000004]},"id":"8f44c0b0e2f1b80-17b6b10b46896c02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f1545-17b6f1a34f7da803","8f44c0b0e2f1b80-17b6b10b46896c02"]},"geometry":{"type":"LineString","coordinates":[[-83.7203916,32.8114222],[-83.7206348,32.811421700000004]]},"id":"8b44c0b0e2f1fff-17b6f15744357e8e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c4416-17f6310ab8947dae","8f44c0b0e2f1b80-17b6b10b46896c02"]},"geometry":{"type":"LineString","coordinates":[[-83.7206348,32.811421700000004],[-83.7206357,32.81176]]},"id":"8944c0b0e2fffff-179e710b00904a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72063130000001,32.8119804]},"id":"8f44c0b0e2c6a4b-13fff10d7fe7c716"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c4416-17f6310ab8947dae","8f44c0b0e2c6a4b-13fff10d7fe7c716"]},"geometry":{"type":"LineString","coordinates":[[-83.7206357,32.81176],[-83.72063130000001,32.8119804]]},"id":"8a44c0b0e2c7fff-13bef10c1f8e179f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f1ba6-1797b1061711d362","8f44c0b0e2f1b80-17b6b10b46896c02"]},"geometry":{"type":"LineString","coordinates":[[-83.7206431,32.8114009],[-83.7206348,32.811421700000004]]},"id":"8d44c0b0e2f1bbf-179e3108b0b0dde3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201653,32.8114495]},"id":"8f44c0b0e2f3870-17b7f230b2298b57"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f3870-17b7f230b2298b57","8f44c0b0e2f154c-17bf71a3581f9f9a"]},"geometry":{"type":"LineString","coordinates":[[-83.7203915,32.8114359],[-83.7202769,32.811428500000005],[-83.7201653,32.8114495]]},"id":"8a44c0b0e2f7fff-17bf71ea43914b0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7201584,32.811929]},"id":"8f44c0b0e2c64d5-13dfb23503fa5118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f3870-17b7f230b2298b57","8f44c0b0e2c64d5-13dfb23503fa5118"]},"geometry":{"type":"LineString","coordinates":[[-83.7201653,32.8114495],[-83.7201584,32.811929]]},"id":"8944c0b0e2fffff-17dff232d53f5a89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c2db4-13d672515facfbb5","8f44c0b0e2c64d5-13dfb23503fa5118"]},"geometry":{"type":"LineString","coordinates":[[-83.7201584,32.811929],[-83.7201567,32.8120421],[-83.72015130000001,32.8120743],[-83.7201131,32.8120868]]},"id":"8a44c0b0e2c7fff-1397f239633b30e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7200773,32.812087600000005]},"id":"8f44c0b0e2d5ace-13d6f267b92be5d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d5ace-13d6f267b92be5d8","8f44c0b0e2c2db4-13d672515facfbb5"]},"geometry":{"type":"LineString","coordinates":[[-83.7201131,32.8120868],[-83.7200773,32.812087600000005]]},"id":"8c44c0b0e2d5bff-13d6b25c8c8299eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f3c9b-17b6b2f7c621849d","8f44c0b0e2d5ace-13d6f267b92be5d8"]},"geometry":{"type":"LineString","coordinates":[[-83.7200773,32.812087600000005],[-83.7197726,32.8120897],[-83.71973390000001,32.8120534],[-83.7197368,32.811474700000005],[-83.71978320000001,32.8114506],[-83.7198468,32.811450400000005]]},"id":"8944c0b0e2fffff-13b7f316c5f70431"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f3c9b-17b6b2f7c621849d","8f44c0b0e2f3870-17b7f230b2298b57"]},"geometry":{"type":"LineString","coordinates":[[-83.7198468,32.811450400000005],[-83.7201653,32.8114495]]},"id":"8b44c0b0e2f3fff-17b672944557e1e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7195306,32.8124483]},"id":"8f44c0b0e2d1488-13b633bd636e32e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d16a9-13feb37a0c9cbdd2","8f44c0b0e2d1488-13b633bd636e32e1"]},"geometry":{"type":"LineString","coordinates":[[-83.71963840000001,32.812586700000004],[-83.7195306,32.8124483]]},"id":"8b44c0b0e2d1fff-13df739bb2a6bfec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d1488-13b633bd636e32e1","8f44c0b0e2d0352-139ff3b9cc1456fc"]},"geometry":{"type":"LineString","coordinates":[[-83.7195306,32.8124483],[-83.71924800000001,32.8124368],[-83.7192141,32.8124206],[-83.7191466,32.8122199],[-83.7191536,32.8117834],[-83.7192146,32.8117449],[-83.7195475,32.811744000000004],[-83.71953640000001,32.8122366]]},"id":"8a44c0b0e2d7fff-13beb4362f6db7b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7195348,32.8123079]},"id":"8f44c0b0e2d0251-13de73bacdf1b3d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d0251-13de73bacdf1b3d4","8f44c0b0e2d0352-139ff3b9cc1456fc"]},"geometry":{"type":"LineString","coordinates":[[-83.71953640000001,32.8122366],[-83.7195348,32.8123079]]},"id":"8c44c0b0e2d03ff-13b633ba47f8b1ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d1488-13b633bd636e32e1","8f44c0b0e2d1485-1397b3bd265f6a2f"]},"geometry":{"type":"LineString","coordinates":[[-83.7195306,32.8124483],[-83.719531,32.8124249]]},"id":"8d44c0b0e2d14bf-139ef3bd47018b34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72053120000001,32.8120348]},"id":"8f44c0b0e2c6343-13b7f14c060fcd22"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c6343-13b7f14c060fcd22","8f44c0b0e2c6a4b-13fff10d7fe7c716"]},"geometry":{"type":"LineString","coordinates":[[-83.72053120000001,32.8120348],[-83.72063130000001,32.8119804]]},"id":"8b44c0b0e2c6fff-1396f12cbc760856"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2040605a-17bf7bb0da292160","8f44c0a20404d1e-17d6facf83180e4f"]},"geometry":{"type":"LineString","coordinates":[[-83.69042,32.8637193],[-83.6900595,32.8640983]]},"id":"8a44c0a20407fff-17d77b403cf7a9b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6898489,32.8639597]},"id":"8f44c0a2040651c-17f6fc347854051c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2040651c-17f6fc347854051c","8f44c0a2040605a-17bf7bb0da292160"]},"geometry":{"type":"LineString","coordinates":[[-83.6900595,32.8640983],[-83.6898489,32.8639597]]},"id":"8b44c0a20406fff-17967bf2ad9ed612"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341593ae-1397fc23d4bba7dd","8f44c0a340668e2-1397fc55dc0c8a5d"]},"geometry":{"type":"LineString","coordinates":[[-83.6439203,32.8392543],[-83.64397930000001,32.8390906],[-83.6440003,32.8390231]]},"id":"8844c0a341fffff-13dffc3c29a154cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341593ae-1397fc23d4bba7dd","8f44c0a3414eca0-1396fb22e9a886a8"]},"geometry":{"type":"LineString","coordinates":[[-83.6440003,32.8390231],[-83.6440278,32.838964700000005],[-83.64410930000001,32.8387574],[-83.64422470000001,32.838467200000004],[-83.64441140000001,32.838224100000005]]},"id":"8944c0a3417ffff-1397ebb1ac36bd67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3414ac42-13bffb3216417c5c","8f44c0a3414e162-13f7ea9f61533795"]},"geometry":{"type":"LineString","coordinates":[[-83.64462180000001,32.838350600000005],[-83.6445935,32.838397900000004],[-83.64443610000001,32.838686700000004],[-83.6443871,32.8387059]]},"id":"8a44c0a3414ffff-13d7eae2b340c099"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3414ec50-13bfeaf51fa493fa","8f44c0a3414ac42-13bffb3216417c5c"]},"geometry":{"type":"LineString","coordinates":[[-83.6443871,32.8387059],[-83.6443605,32.838658800000005],[-83.64435320000001,32.8385763],[-83.64445830000001,32.838323],[-83.6444847,32.8382682]]},"id":"8a44c0a3414ffff-13b7fb28c0721e0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b660441-13b7bef1af8c2964","8f44c0b1b6604d6-13b6ff3b5c6118cb"]},"geometry":{"type":"LineString","coordinates":[[-83.66239470000001,32.841318900000005],[-83.6625126,32.8413209]]},"id":"8c44c0b1b6605ff-13b6ff168f0329a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626042,32.841322500000004]},"id":"8f44c0b1b6600f0-13b6beb8660f134b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b660441-13b7bef1af8c2964","8f44c0b1b6600f0-13b6beb8660f134b"]},"geometry":{"type":"LineString","coordinates":[[-83.6625126,32.8413209],[-83.6626042,32.841322500000004]]},"id":"8b44c0b1b660fff-13b6bed50adc0f37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626767,32.841323800000005]},"id":"8f44c0b1b660055-13b7fe8b1f7181ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6600f0-13b6beb8660f134b","8f44c0b1b660055-13b7fe8b1f7181ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6626042,32.841322500000004],[-83.6626767,32.841323800000005]]},"id":"8c44c0b1b6601ff-13b7bea1c38740e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6626841,32.840979000000004]},"id":"8f44c0b1b66462c-17dffe867d08c60d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b66462c-17dffe867d08c60d","8f44c0b1b660055-13b7fe8b1f7181ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6626767,32.841323800000005],[-83.6628798,32.8413273],[-83.6628872,32.840979700000005],[-83.6626841,32.840979000000004]]},"id":"8a44c0b1b667fff-17bebe2c0127e3af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66261750000001,32.8409788]},"id":"8f44c0b1b664616-17dffeb01387c485"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b66462c-17dffe867d08c60d","8f44c0b1b664616-17dffeb01387c485"]},"geometry":{"type":"LineString","coordinates":[[-83.6626841,32.840979000000004],[-83.66261750000001,32.8409788]]},"id":"8d44c0b1b66463f-17dffe9b44f8a3d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b666b5b-17d6feead840ad17","8f44c0b1b664616-17dffeb01387c485"]},"geometry":{"type":"LineString","coordinates":[[-83.66261750000001,32.8409788],[-83.6625235,32.840987000000005]]},"id":"8a44c0b1b667fff-17defecd70bc3529"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b666b5b-17d6feead840ad17","8f44c0b1b666a83-17d7bf37706883a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6625235,32.840987000000005],[-83.66240090000001,32.8409977]]},"id":"8c44c0b1b666bff-17d6ff112e9b7822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b664551-17febead640b5297","8f44c0b1b666828-17feff3552fa9ec1"]},"geometry":{"type":"LineString","coordinates":[[-83.6624043,32.8408196],[-83.66262180000001,32.840823400000005]]},"id":"8a44c0b1b667fff-17fffef15b4155dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b74a00c-17f7be058a637b04","8f44c0b1b664551-17febead640b5297"]},"geometry":{"type":"LineString","coordinates":[[-83.66262180000001,32.840823400000005],[-83.6626341,32.8404308],[-83.66289040000001,32.840431200000005]]},"id":"8844c0b1b7fffff-17bfbe886a47a4f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b74a00c-17f7be058a637b04","8f44c0b1b74a891-17b7fe0514a25edf"]},"geometry":{"type":"LineString","coordinates":[[-83.66289040000001,32.840431200000005],[-83.66289110000001,32.8402966]]},"id":"8b44c0b1b74afff-17dffe0553ee1496"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11192d-17d6e4f9dd81d5f0","8f44c0b1a11390a-17bfe63c0d6760f1"]},"geometry":{"type":"LineString","coordinates":[[-83.6469347,32.8141674],[-83.6464485,32.814155400000004],[-83.6464205,32.8141754],[-83.64641920000001,32.814299600000005]]},"id":"8a44c0b1a117fff-17def5bb0fa366e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6464179,32.814603600000005]},"id":"8f44c0b1a113356-17f7e63cd37b14cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1112ca-17ffe52f37341ecb","8f44c0b1a113356-17f7e63cd37b14cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6464179,32.814603600000005],[-83.6468493,32.81461]]},"id":"8944c0b1a13ffff-17ffe5b6001e52bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1112ca-17ffe52f37341ecb","8f44c0b1a11c5a5-17fff50132ffaafc"]},"geometry":{"type":"LineString","coordinates":[[-83.6468493,32.81461],[-83.6469229,32.8146111]]},"id":"8a44c0b1a11ffff-17ffe51834e0c2df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a113258-17b6e63c9ffae7ee","8f44c0b1a113356-17f7e63cd37b14cc"]},"geometry":{"type":"LineString","coordinates":[[-83.6464179,32.814603600000005],[-83.64641830000001,32.8147016]]},"id":"8c44c0b1a1133ff-1797e63cb008c3c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ec2c2-17b7d0a5e967e492","8f44c0b184e8b72-17b7f0859a1bfb34"]},"geometry":{"type":"LineString","coordinates":[[-83.6618663,32.814312300000005],[-83.6618318,32.8142453],[-83.6618091,32.814180400000005],[-83.6618146,32.8141181]]},"id":"8a44c0b184effff-17f6d09d532afca4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ec2c2-17b7d0a5e967e492","8f44c0b184ec6c3-17b6d116e0d25f9f"]},"geometry":{"type":"LineString","coordinates":[[-83.6618146,32.8141181],[-83.6616338,32.8141133]]},"id":"8a44c0b184effff-17b6d0de60d9d8a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184eeac8-17b7f18393eda4dd","8f44c0b184ec6c3-17b6d116e0d25f9f"]},"geometry":{"type":"LineString","coordinates":[[-83.6616338,32.8141133],[-83.66145990000001,32.814108700000006]]},"id":"8a44c0b184effff-17b7e14d3826bdc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184ee396-17bef1f525bbfcf5","8f44c0b184eeac8-17b7f18393eda4dd"]},"geometry":{"type":"LineString","coordinates":[[-83.66145990000001,32.814108700000006],[-83.6612782,32.8141039]]},"id":"8b44c0b184eefff-17b6f1bc6a1cca1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6544575,32.844472700000004]},"id":"8f44c0a35d1c6d1-17d7f29c19203466"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65433680000001,32.8446257]},"id":"8f44c0a35d18528-13b7d2e78eefd1a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d18528-13b7d2e78eefd1a1","8f44c0a35d1c6d1-17d7f29c19203466"]},"geometry":{"type":"LineString","coordinates":[[-83.6544575,32.844472700000004],[-83.65447230000001,32.844483100000005],[-83.6544741,32.844516],[-83.6544155,32.8445905],[-83.6543779,32.8446185],[-83.65433680000001,32.8446257]]},"id":"8b44c0a35d18fff-139fd2b043587dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d02298-17bef1f599c2b5cf","8f44c0a35d1c6d1-17d7f29c19203466"]},"geometry":{"type":"LineString","coordinates":[[-83.6544575,32.844472700000004],[-83.6547254,32.8441544],[-83.6547085,32.8440516],[-83.65472390000001,32.844029500000005]]},"id":"8944c0a35d3ffff-17ded2359c626717"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65496750000001,32.8436813]},"id":"8f44c0a35d00581-17f6d15d504bf50f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d00581-17f6d15d504bf50f","8f44c0a35d02298-17bef1f599c2b5cf"]},"geometry":{"type":"LineString","coordinates":[[-83.65472390000001,32.844029500000005],[-83.6548131,32.8439319],[-83.6548801,32.8438565],[-83.65496750000001,32.8436813]]},"id":"8a44c0a35d07fff-17d6d1a1e882089d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d18528-13b7d2e78eefd1a1","8f44c0a35d18419-13fef30a1e6b5773"]},"geometry":{"type":"LineString","coordinates":[[-83.65428150000001,32.844717],[-83.65433680000001,32.8446257]]},"id":"8c44c0a35d185ff-13dff2f8caab4f5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b9a9449-17f692704cb05532","8f44c0b0b91a00c-179630ef7397d795"]},"geometry":{"type":"LineString","coordinates":[[-83.73378650000001,32.8300355],[-83.73363730000001,32.8301346],[-83.73348250000001,32.8301813],[-83.7333591,32.8301955],[-83.73317080000001,32.8301928]]},"id":"8844c0b0b9fffff-17de71a8b84df3b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7329162,32.8300093]},"id":"8f44c0b0b9ab936-1797d30f65d57acf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b9ab936-1797d30f65d57acf","8f44c0b0b9a9449-17f692704cb05532"]},"geometry":{"type":"LineString","coordinates":[[-83.73317080000001,32.8301928],[-83.73317920000001,32.8300162],[-83.7329162,32.8300093]]},"id":"8a44c0b0b9affff-179f129d35b74acc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d85450-13ff9ed83c1c7299","8f44c0a26d842ec-13b79f147ae5bb8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6756605,32.839208],[-83.6755641,32.8390672]]},"id":"8a44c0a26d87fff-13df9ef6537f7381"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d8444d-13bfff9655c3f2ae","8f44c0a26d842ec-13b79f147ae5bb8f"]},"geometry":{"type":"LineString","coordinates":[[-83.6755641,32.8390672],[-83.6753563,32.8389047]]},"id":"8b44c0a26d84fff-13fedf5567887cab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6753231,32.8388787]},"id":"8f44c0a26d84446-13bfbfab1d470f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d8444d-13bfff9655c3f2ae","8f44c0a26d84446-13bfbfab1d470f63"]},"geometry":{"type":"LineString","coordinates":[[-83.6753563,32.8389047],[-83.6753231,32.8388787]]},"id":"8d44c0a26d8447f-13b7dfa0be0c668c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d84446-13bfbfab1d470f63","8f44c0a26db170a-139fa0637921553d"]},"geometry":{"type":"LineString","coordinates":[[-83.6753231,32.8388787],[-83.67531170000001,32.838869800000005],[-83.6750281,32.8386258]]},"id":"8944c0a26dbffff-13def007607a3f98"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26db170a-139fa0637921553d","8f44c0a26db1403-13dfb0a647484048"]},"geometry":{"type":"LineString","coordinates":[[-83.6750281,32.8386258],[-83.6750109,32.838611],[-83.6749212,32.8385235]]},"id":"8b44c0a26db1fff-13fff0852a216769"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d805b4-13f7e038574a4d7b","8f44c0a26d86301-139fa035d4636902"]},"geometry":{"type":"LineString","coordinates":[[-83.6750971,32.8391958],[-83.6751011,32.8390578]]},"id":"8c44c0a26d863ff-13d6e0371dc03b6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d86301-139fa035d4636902","8f44c0a26d86b90-13dea0330ae2bc54"]},"geometry":{"type":"LineString","coordinates":[[-83.6751011,32.8390578],[-83.67510560000001,32.838925800000005]]},"id":"8b44c0a26d86fff-13f7e03472e8d408"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d84446-13bfbfab1d470f63","8f44c0a26d84c69-13debf517eca03fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6753231,32.8388787],[-83.6754665,32.838755400000004]]},"id":"8b44c0a26d84fff-1396bf7e4eddac8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d84c69-13debf517eca03fb","8f44c0a26da2289-139ffeef24dc77b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6754665,32.838755400000004],[-83.67562380000001,32.838619900000005]]},"id":"8944c0a26dbffff-13b7df205fca322e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da2ac0-13d6de990d0ba5ce","8f44c0a26da2289-139ffeef24dc77b8"]},"geometry":{"type":"LineString","coordinates":[[-83.67562380000001,32.838619900000005],[-83.6757616,32.8385029]]},"id":"8b44c0a26da2fff-13f6fec41ec9cbcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67586460000001,32.8383108]},"id":"8f44c0a26da041e-13dede58abc150ad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da041e-13dede58abc150ad","8f44c0a26da2ac0-13d6de990d0ba5ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6757616,32.8385029],[-83.675832,32.838442400000005],[-83.67586460000001,32.8383108]]},"id":"8a44c0a26da7fff-139fde6fe3e18c97"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.675723,32.8381897]},"id":"8f44c0a26da6299-13fe9eb12524a4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da041e-13dede58abc150ad","8f44c0a26da6299-13fe9eb12524a4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.67586460000001,32.8383108],[-83.675723,32.8381897]]},"id":"8a44c0a26da7fff-13b6fe84e3503478"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67561780000001,32.8381135]},"id":"8f44c0a26da6622-13defef2e5c3dd23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da6622-13defef2e5c3dd23","8f44c0a26da6299-13fe9eb12524a4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.675723,32.8381897],[-83.67561780000001,32.8381135]]},"id":"8b44c0a26da6fff-13f6ded202763022"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da6622-13defef2e5c3dd23","8f44c0a26da64f1-13969f3977c4d9a4"]},"geometry":{"type":"LineString","coordinates":[[-83.67561780000001,32.8381135],[-83.6755049,32.8380233]]},"id":"8b44c0a26da6fff-13b6df162685853b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26db1173-13d6f00b24abbed8","8f44c0a26db170a-139fa0637921553d"]},"geometry":{"type":"LineString","coordinates":[[-83.6750281,32.8386258],[-83.6751694,32.838503100000004]]},"id":"8b44c0a26db1fff-13f6f037557ce9e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da2591-13feffa5c5d9da64","8f44c0a26db1173-13d6f00b24abbed8"]},"geometry":{"type":"LineString","coordinates":[[-83.6751694,32.838503100000004],[-83.6753316,32.8383622]]},"id":"8a44c0a26db7fff-1396ffd87b48a90a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da2591-13feffa5c5d9da64","8f44c0a26da2d88-139ebf4eaa1ac8b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6753316,32.8383622],[-83.675471,32.838241000000004]]},"id":"8b44c0a26da2fff-13d69f7a304a2216"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da6622-13defef2e5c3dd23","8f44c0a26da2d88-139ebf4eaa1ac8b3"]},"geometry":{"type":"LineString","coordinates":[[-83.675471,32.838241000000004],[-83.67561780000001,32.8381135]]},"id":"8a44c0a26da7fff-13f6df20c6d12199"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da041e-13dede58abc150ad","8f44c0a26da4555-17b6bde46711718a"]},"geometry":{"type":"LineString","coordinates":[[-83.67586460000001,32.8383108],[-83.67605060000001,32.8378467]]},"id":"8a44c0a26da7fff-13b7de1e8d58e91d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da4d18-17d7bdbcb1139013","8f44c0a26da4555-17b6bde46711718a"]},"geometry":{"type":"LineString","coordinates":[[-83.67605060000001,32.8378467],[-83.6761141,32.8376882]]},"id":"8b44c0a26da4fff-17f6bdd09ee59bc5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da6876-17b7fe6434adb0f7","8f44c0a26da6299-13fe9eb12524a4b3"]},"geometry":{"type":"LineString","coordinates":[[-83.675723,32.8381897],[-83.6758461,32.8378719]]},"id":"8b44c0a26da6fff-139fde8ab5a84bf4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da6980-179e9e97cabaa1d6","8f44c0a26da6876-17b7fe6434adb0f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6758461,32.8378719],[-83.67576360000001,32.8378017]]},"id":"8c44c0a26da69ff-17b69e7e05d317d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da4185-17b69da782b50663","8f44c0a26da4d6b-17dfdd86c66118fd"]},"geometry":{"type":"LineString","coordinates":[[-83.6762004,32.8377244],[-83.67614800000001,32.8378369]]},"id":"8b44c0a26da4fff-17fefd9729a00526"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da4185-17b69da782b50663","8f44c0b1ba4b4cd-17b6bcd0cb978485"]},"geometry":{"type":"LineString","coordinates":[[-83.67614800000001,32.8378369],[-83.67644220000001,32.8379311],[-83.6764916,32.8378443]]},"id":"8944c0b1ba7ffff-17be9d31581fb194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.676381,32.838458700000004]},"id":"8f44c0a26da1d09-13b6bd15e5b73f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67658560000001,32.837997]},"id":"8f44c0a26da59b6-1396bc96080192ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da1d09-13b6bd15e5b73f03","8f44c0a26da59b6-1396bc96080192ab"]},"geometry":{"type":"LineString","coordinates":[[-83.676381,32.838458700000004],[-83.67658560000001,32.837997]]},"id":"8a44c0a26da7fff-1396fcd5f76660a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1ba4b771-17bf9c7794356594","8f44c0a26da59b6-1396bc96080192ab"]},"geometry":{"type":"LineString","coordinates":[[-83.67658560000001,32.837997],[-83.6766343,32.837887300000006]]},"id":"8c44c0b1ba4b7ff-17f7fc86d2ccf964"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da1d09-13b6bd15e5b73f03","8f44c0a26da1874-13dedc9b30bc2639"]},"geometry":{"type":"LineString","coordinates":[[-83.676381,32.838458700000004],[-83.6765773,32.8385156]]},"id":"8b44c0a26da1fff-13b69cd883a6958d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67675340000001,32.8385666]},"id":"8f44c0a26d12451-13febc2d2fdaaa8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da1874-13dedc9b30bc2639","8f44c0a26d12451-13febc2d2fdaaa8d"]},"geometry":{"type":"LineString","coordinates":[[-83.6765773,32.8385156],[-83.67675340000001,32.8385666]]},"id":"8944c0a26dbffff-13debc6428760114"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67693580000001,32.8386228]},"id":"8f44c0a26d123b0-139fdbbb265ac566"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d123b0-139fdbbb265ac566","8f44c0a26d12451-13febc2d2fdaaa8d"]},"geometry":{"type":"LineString","coordinates":[[-83.67675340000001,32.8385666],[-83.67693580000001,32.8386228]]},"id":"8b44c0a26d12fff-13ffbbf42bd7d72f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6769373,32.838108600000005]},"id":"8f44c0a26d16094-13dffbba3dea7e23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d123b0-139fdbbb265ac566","8f44c0a26d16094-13dffbba3dea7e23"]},"geometry":{"type":"LineString","coordinates":[[-83.67693580000001,32.8386228],[-83.6771253,32.8381641],[-83.6769373,32.838108600000005]]},"id":"8a44c0a26d17fff-13defb7fc5c2075f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d16094-13dffbba3dea7e23","8f44c0a26d12451-13febc2d2fdaaa8d"]},"geometry":{"type":"LineString","coordinates":[[-83.67675340000001,32.8385666],[-83.6769373,32.838108600000005]]},"id":"8a44c0a26d17fff-13df9bf3a6fe1572"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d16094-13dffbba3dea7e23","8f44c0a26d16c73-17febb9b38aed58d"]},"geometry":{"type":"LineString","coordinates":[[-83.6769373,32.838108600000005],[-83.6769869,32.837985100000004]]},"id":"8b44c0a26d16fff-13b7dbaab8dda056"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d16094-13dffbba3dea7e23","8f44c0a26da596d-13bebc2a1b709740"]},"geometry":{"type":"LineString","coordinates":[[-83.6769373,32.838108600000005],[-83.6767583,32.8380547]]},"id":"8a44c0a26d17fff-13bf9bf22cfd14fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da59b6-1396bc96080192ab","8f44c0a26da596d-13bebc2a1b709740"]},"geometry":{"type":"LineString","coordinates":[[-83.6767583,32.8380547],[-83.67658560000001,32.837997]]},"id":"8b44c0a26da5fff-1396bc6002daafe4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6766736,32.8391661]},"id":"8f44c0a26dac6c5-13dedc5f0b47443b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d85a1d-13fefdf98a58d4fd","8f44c0a26dac6c5-13dedc5f0b47443b"]},"geometry":{"type":"LineString","coordinates":[[-83.6760168,32.839217500000004],[-83.67606260000001,32.839064900000004],[-83.6761214,32.839068600000004],[-83.6766736,32.8391661]]},"id":"8a44c0a26daffff-13d79d47c9a24ca7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26dac6c5-13dedc5f0b47443b","8f44c0a26da8c66-139fdc73bb47b013"]},"geometry":{"type":"LineString","coordinates":[[-83.6766736,32.8391661],[-83.6766405,32.839269200000004]]},"id":"8a44c0a26daffff-13ff9c6963478026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26dac6c5-13dedc5f0b47443b","8f44c0a26dac628-13bebc45e3cf09a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6766736,32.8391661],[-83.6767138,32.8391146]]},"id":"8c44c0a26dac7ff-13dedc527bf437f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26dac020-13debc1051011d24","8f44c0a26dac628-13bebc45e3cf09a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6767138,32.8391146],[-83.67675240000001,32.839065000000005],[-83.6767995,32.8389514]]},"id":"8b44c0a26dacfff-139ffc281b8a1109"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6768658,32.8387916]},"id":"8f44c0a26dac9ab-13f6dbe6e954ba95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26dac020-13debc1051011d24","8f44c0a26dac9ab-13f6dbe6e954ba95"]},"geometry":{"type":"LineString","coordinates":[[-83.6767995,32.8389514],[-83.6768658,32.8387916]]},"id":"8b44c0a26dacfff-13b6bbfba9641a62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d123b0-139fdbbb265ac566","8f44c0a26dac9ab-13f6dbe6e954ba95"]},"geometry":{"type":"LineString","coordinates":[[-83.6768658,32.8387916],[-83.67693580000001,32.8386228]]},"id":"8a44c0a26d17fff-13d69bd10235fb50"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d1e5aa-13dfda937a3dd495","8f44c0a26dada26-13bffabc42f34d39"]},"geometry":{"type":"LineString","coordinates":[[-83.6773436,32.8392854],[-83.6774089,32.8391317]]},"id":"8a44c0a26d1ffff-13fffaa7dde837dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7280676,32.9210627]},"id":"8f44c0a280c4603-13d63ee5c8c848e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72827260000001,32.921050900000004]},"id":"8f44c0a280c4222-13dede65ac803522"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c4603-13d63ee5c8c848e8","8f44c0a280c4222-13dede65ac803522"]},"geometry":{"type":"LineString","coordinates":[[-83.7280676,32.9210627],[-83.72827260000001,32.921050900000004]]},"id":"8b44c0a280c4fff-13de9ea5b0bcd6c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c5d91-13d63e21204b46eb","8f44c0a280c4222-13dede65ac803522"]},"geometry":{"type":"LineString","coordinates":[[-83.72827260000001,32.921050900000004],[-83.7283822,32.9210434]]},"id":"8b44c0a280c4fff-13d69e43661463de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c5d91-13d63e21204b46eb","8f44c0a2800a4d2-17b61d276ef5011f"]},"geometry":{"type":"LineString","coordinates":[[-83.7283822,32.9210434],[-83.7284951,32.921035700000004],[-83.7286435,32.9210054],[-83.72876980000001,32.9209533],[-83.728874,32.9208893],[-83.72896220000001,32.9208069],[-83.7290244,32.920716],[-83.7290605,32.920616700000004],[-83.7290765,32.9205023],[-83.72906850000001,32.9203946],[-83.72903840000001,32.9202785],[-83.72878180000001,32.9195616]]},"id":"8844c0a281fffff-13de1cec53a3fbf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2800ac9b-17d73cfc03ec462c","8f44c0a2801d2d3-17dfdd5be5ef4f87"]},"geometry":{"type":"LineString","coordinates":[[-83.7286978,32.919414100000004],[-83.728756,32.919425700000005],[-83.7288054,32.919422600000004],[-83.72885120000001,32.9194066]]},"id":"8944c0a2803ffff-17df5d2b9424d947"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72892560000001,32.919291]},"id":"8f44c0a2800ad10-17fefccd83a67859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2800ac9b-17d73cfc03ec462c","8f44c0a2800ad10-17fefccd83a67859"]},"geometry":{"type":"LineString","coordinates":[[-83.72885120000001,32.9194066],[-83.7288918,32.9193763],[-83.7289176,32.9193361],[-83.72892560000001,32.919291]]},"id":"8c44c0a2800adff-17b6fcde8af452d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2800ad10-17fefccd83a67859","8f44c0a2801da35-17b6fd00991928a4"]},"geometry":{"type":"LineString","coordinates":[[-83.72892560000001,32.919291],[-83.7289147,32.919246300000005],[-83.72888640000001,32.9192075],[-83.7288439,32.919179]]},"id":"8944c0a2803ffff-17d7bce1134a4ed4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801da35-17b6fd00991928a4","8f44c0a2801d02c-17b79d5fce3828a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7288439,32.919179],[-83.7287924,32.9191645],[-83.7287381,32.9191656],[-83.7286916,32.919180100000005]]},"id":"8b44c0a2801dfff-17b73d3041d86d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72861300000001,32.9192813]},"id":"8f44c0a2801d774-17f6dd90e2b90d62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801d774-17f6dd90e2b90d62","8f44c0a2801d02c-17b79d5fce3828a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7286916,32.919180100000005],[-83.7286528,32.919206200000005],[-83.72862570000001,32.919241],[-83.72861300000001,32.9192813]]},"id":"8b44c0a2801dfff-17d79d7d3b2ea1cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.727601,32.9197981]},"id":"8f44c0a280f410a-17bff0096dfea63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2801d774-17f6dd90e2b90d62","8f44c0a280f410a-17bff0096dfea63f"]},"geometry":{"type":"LineString","coordinates":[[-83.72861300000001,32.9192813],[-83.7283668,32.9192772],[-83.7282766,32.9192839],[-83.72756290000001,32.919607],[-83.72753490000001,32.919659200000005],[-83.7275429,32.9197097],[-83.727601,32.9197981]]},"id":"8844c0a281fffff-17df7f1410749486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72781950000001,32.9197063]},"id":"8f44c0a2801b4a0-17967f80d69d0014"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2801b4a0-17967f80d69d0014","8f44c0a280f410a-17bff0096dfea63f"]},"geometry":{"type":"LineString","coordinates":[[-83.727601,32.9197981],[-83.72794180000001,32.9203172],[-83.728002,32.9203289],[-83.7281684,32.9202583],[-83.72818240000001,32.9201994],[-83.72787170000001,32.9197198],[-83.72781950000001,32.9197063]]},"id":"8944c0a280fffff-13dfff3ca5c0de60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2801b4a0-17967f80d69d0014","8f44c0a280f410a-17bff0096dfea63f"]},"geometry":{"type":"LineString","coordinates":[[-83.72781950000001,32.9197063],[-83.727601,32.9197981]]},"id":"8944c0a280fffff-179f3fc529a01aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72924280000001,32.9192991]},"id":"8f44c0a2800e2ed-1797fc074cdac988"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2800e2ed-1797fc074cdac988","8f44c0a2800ad10-17fefccd83a67859"]},"geometry":{"type":"LineString","coordinates":[[-83.72892560000001,32.919291],[-83.72924280000001,32.9192991]]},"id":"8a44c0a2800ffff-17ff7c6a624b7a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7292529,32.9190954]},"id":"8f44c0a2800eab1-1796bc00f7d7cd9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2800e2ed-1797fc074cdac988","8f44c0a2800eab1-1796bc00f7d7cd9a"]},"geometry":{"type":"LineString","coordinates":[[-83.72924280000001,32.9192991],[-83.72997260000001,32.9193176],[-83.73001880000001,32.919288900000005],[-83.7300228,32.9191207],[-83.7299807,32.919087000000005],[-83.729301,32.9190668],[-83.7292529,32.9190954]]},"id":"8a44c0a2800ffff-17d67af9a0a1e5c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2800e2ed-1797fc074cdac988","8f44c0a2800eab1-1796bc00f7d7cd9a"]},"geometry":{"type":"LineString","coordinates":[[-83.7292529,32.9190954],[-83.72924280000001,32.9192991]]},"id":"8b44c0a2800efff-17d65c041ad7a814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280046e6-13febcd830117637","8f44c0a28004398-13dfbc81053fd5cb"]},"geometry":{"type":"LineString","coordinates":[[-83.7289085,32.918065],[-83.7289616,32.918061800000004],[-83.7290074,32.9180458],[-83.729048,32.9180155]]},"id":"8b44c0a28004fff-13f6fcaa8d93d4ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7290425,32.917846700000005]},"id":"8f44c0a2800411d-13f63c847db794db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2800411d-13f63c847db794db","8f44c0a28004398-13dfbc81053fd5cb"]},"geometry":{"type":"LineString","coordinates":[[-83.729048,32.9180155],[-83.72907380000001,32.9179754],[-83.7290818,32.9179303],[-83.72907090000001,32.917885600000005],[-83.7290425,32.917846700000005]]},"id":"8b44c0a28004fff-13be9c74bb915ce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7287692,32.9179205]},"id":"8f44c0a28006b24-13b65d2f46a50d39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2800411d-13f63c847db794db","8f44c0a28006b24-13b65d2f46a50d39"]},"geometry":{"type":"LineString","coordinates":[[-83.7290425,32.917846700000005],[-83.72900010000001,32.9178183],[-83.72894860000001,32.9178037],[-83.72889430000001,32.9178048],[-83.72884780000001,32.9178194],[-83.728809,32.917845400000004],[-83.7287819,32.9178803],[-83.7287692,32.9179205]]},"id":"8a44c0a28007fff-13fe5ce38fbfdeeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72928870000001,32.9177188]},"id":"8f44c0a280235ae-13b65bea912d9394"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2800411d-13f63c847db794db","8f44c0a280235ae-13b65bea912d9394"]},"geometry":{"type":"LineString","coordinates":[[-83.7290425,32.917846700000005],[-83.72909580000001,32.917788],[-83.7291462,32.9177632],[-83.72928870000001,32.9177188]]},"id":"8944c0a2803ffff-13d7bc3cdc6ffe74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7292089,32.9175309]},"id":"8f44c0a28022048-13b6dc1c75ae96b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28022048-13b6dc1c75ae96b9","8f44c0a280235ae-13b65bea912d9394"]},"geometry":{"type":"LineString","coordinates":[[-83.72928870000001,32.9177188],[-83.72998510000001,32.9175016],[-83.7300043,32.917459300000004],[-83.7299381,32.9173015],[-83.72989290000001,32.9172825],[-83.72923850000001,32.917481200000005],[-83.7292089,32.9175309]]},"id":"8a44c0a28027fff-13963b0b9ebd3451"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28022048-13b6dc1c75ae96b9","8f44c0a280235ae-13b65bea912d9394"]},"geometry":{"type":"LineString","coordinates":[[-83.7292089,32.9175309],[-83.72928870000001,32.9177188]]},"id":"8a44c0a28027fff-13ff9c0388c48390"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7285145,32.917918400000005]},"id":"8f44c0a280061a4-13b71dce7370ebca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28006b24-13b65d2f46a50d39","8f44c0a280061a4-13b71dce7370ebca"]},"geometry":{"type":"LineString","coordinates":[[-83.7287692,32.9179205],[-83.7285145,32.917918400000005]]},"id":"8b44c0a28006fff-13b7bd7ee7796884"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72775390000001,32.9179122]},"id":"8f44c0a28014389-139f3fa9d5ba407a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28014389-139f3fa9d5ba407a","8f44c0a280061a4-13b71dce7370ebca"]},"geometry":{"type":"LineString","coordinates":[[-83.7285145,32.917918400000005],[-83.72775390000001,32.9179122]]},"id":"8944c0a2803ffff-13b71ebc2cb799d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7275573,32.9182365]},"id":"8f44c0a280100f4-13fff024b1478e11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28014389-139f3fa9d5ba407a","8f44c0a280100f4-13fff024b1478e11"]},"geometry":{"type":"LineString","coordinates":[[-83.7275573,32.9182365],[-83.72775390000001,32.9179122]]},"id":"8a44c0a28017fff-13967fe74c236743"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72811940000001,32.9173293]},"id":"8f44c0a28030792-13b6dec564291f31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28014389-139f3fa9d5ba407a","8f44c0a28030792-13b6dec564291f31"]},"geometry":{"type":"LineString","coordinates":[[-83.72775390000001,32.9179122],[-83.72811940000001,32.9173293]]},"id":"8944c0a2803ffff-13ff1f37a59967a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28030792-13b6dec564291f31","8f44c0a280061a4-13b71dce7370ebca"]},"geometry":{"type":"LineString","coordinates":[[-83.7285145,32.917918400000005],[-83.7285197,32.9178274],[-83.7286311,32.917615600000005],[-83.72861540000001,32.9175528],[-83.72811940000001,32.9173293]]},"id":"8944c0a2803ffff-13d7bdf529028355"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7277765,32.9171744]},"id":"8f44c0a28032d52-13d61f9bbae0da3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28032d52-13d61f9bbae0da3f","8f44c0a28030792-13b6dec564291f31"]},"geometry":{"type":"LineString","coordinates":[[-83.72811940000001,32.9173293],[-83.7277765,32.9171744]]},"id":"8a44c0a28037fff-13967f3089441c1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c26b1-179ff087b993288a","8f44c0a280c28e0-139f9fdbf77e20a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72739890000001,32.9215965],[-83.7274805,32.9215048],[-83.72767370000001,32.9213593]]},"id":"8b44c0a280c2fff-13d62035482d2a81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c4603-13d63ee5c8c848e8","8f44c0a280c28e0-139f9fdbf77e20a5"]},"geometry":{"type":"LineString","coordinates":[[-83.72767370000001,32.9213593],[-83.7280676,32.9210627]]},"id":"8a44c0a280c7fff-13beff60e85e9711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c26b1-179ff087b993288a","8f44c0a280c0c72-13b7ff12c0801cff"]},"geometry":{"type":"LineString","coordinates":[[-83.72739890000001,32.9215965],[-83.7275273,32.9215739],[-83.7279956,32.921219]]},"id":"8a44c0a280c7fff-13b63fc6fb933471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c4222-13dede65ac803522","8f44c0a280c0c72-13b7ff12c0801cff"]},"geometry":{"type":"LineString","coordinates":[[-83.7279956,32.921219],[-83.7281864,32.921072800000005],[-83.72827260000001,32.921050900000004]]},"id":"8a44c0a280c7fff-13f61ebfcc57e3bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c2d2a-13d62036d78224b1","8f44c0a280c4603-13d63ee5c8c848e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7280676,32.9210627],[-83.7278848,32.92108],[-83.72770600000001,32.921132],[-83.7275809,32.9212012],[-83.7275283,32.9212416]]},"id":"8a44c0a280c7fff-13f61f94c656f24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280c2d2a-13d62036d78224b1","8f44c0a280dcd94-17deb0ca6c30f44c"]},"geometry":{"type":"LineString","coordinates":[[-83.7275283,32.9212416],[-83.7274654,32.9212901],[-83.72737880000001,32.921385900000004],[-83.72731,32.921497800000004],[-83.7272853,32.921610900000005],[-83.72729220000001,32.9216745]]},"id":"8944c0a280fffff-13bf7099f5de4169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72701400000001,32.9215001]},"id":"8f44c0a280d1cc9-13f7b1784d8b5f1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a280dcd94-17deb0ca6c30f44c","8f44c0a280d1cc9-13f7b1784d8b5f1a"]},"geometry":{"type":"LineString","coordinates":[[-83.72729220000001,32.9216745],[-83.72717250000001,32.921576300000005],[-83.72701400000001,32.9215001]]},"id":"8b44c0a280d1fff-1796e11e092766d8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7270611,32.9214332]},"id":"8f44c0a280d1c71-13b7e15ad78ff9b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a280d1cc9-13f7b1784d8b5f1a","8f44c0a280d1c71-13b7e15ad78ff9b9"]},"geometry":{"type":"LineString","coordinates":[[-83.72701400000001,32.9215001],[-83.72690850000001,32.9214494],[-83.7268604,32.9214055],[-83.7268425,32.921357],[-83.72684530000001,32.921305100000005],[-83.72687280000001,32.9212508],[-83.72693740000001,32.9212104],[-83.7272179,32.921089200000004],[-83.7272729,32.9210962],[-83.7273196,32.9211285],[-83.72734030000001,32.9211735],[-83.72733480000001,32.921227800000004],[-83.7272949,32.9212739],[-83.7270611,32.9214332]]},"id":"8a44c0a280d7fff-13d6e1495e7b36d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a280d1cc9-13f7b1784d8b5f1a","8f44c0a280d1c71-13b7e15ad78ff9b9"]},"geometry":{"type":"LineString","coordinates":[[-83.7270611,32.9214332],[-83.72701400000001,32.9215001]]},"id":"8b44c0a280d1fff-13deb16993141ac5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990e858-1797757b19b03f49","8f44c0b8990c405-17f7e5147c0fa046"]},"geometry":{"type":"LineString","coordinates":[[-83.5942991,32.8607603],[-83.5944633,32.8607068]]},"id":"8a44c0b8990ffff-1797e547c51b8fb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990c405-17f7e5147c0fa046","8f44c0b8990c114-17d7e4ae8ce5d9ae"]},"geometry":{"type":"LineString","coordinates":[[-83.5944633,32.8607068],[-83.59462640000001,32.8606536]]},"id":"8b44c0b8990cfff-17f764e189639b0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990c95b-17b77448026af33b","8f44c0b8990c114-17d7e4ae8ce5d9ae"]},"geometry":{"type":"LineString","coordinates":[[-83.59462640000001,32.8606536],[-83.59479040000001,32.8606001]]},"id":"8b44c0b8990cfff-17d7f47b4438513a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59497350000001,32.860540400000005]},"id":"8f44c0b8992b528-179fe3d599bb5fa9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990c95b-17b77448026af33b","8f44c0b8992b528-179fe3d599bb5fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.59479040000001,32.8606001],[-83.59497350000001,32.860540400000005]]},"id":"8a44c0b8992ffff-17b7740ec0f89562"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992b8a2-17ff6364d207b999","8f44c0b8992b528-179fe3d599bb5fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.59497350000001,32.860540400000005],[-83.5951539,32.8604816]]},"id":"8b44c0b8992bfff-17ff639d386ee08b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992b8a2-17ff6364d207b999","8f44c0b899282c8-17d762fd64b5d4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.5951539,32.8604816],[-83.59531940000001,32.8604276]]},"id":"8a44c0b8992ffff-17df633127b17ea6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89929cad-17b7e299bc55ab62","8f44c0b899282c8-17d762fd64b5d4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.59531940000001,32.8604276],[-83.5954789,32.860375600000005]]},"id":"8a44c0b8992ffff-17b762cb9f236133"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89929cad-17b7e299bc55ab62","8f44c0b8992e803-1797f3d316b05eb5"]},"geometry":{"type":"LineString","coordinates":[[-83.5954789,32.860375600000005],[-83.5951627,32.8596657],[-83.5949775,32.8597307]]},"id":"8a44c0b8992ffff-17b7631c2ad0cfd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992eccd-17bf64417bf96698","8f44c0b8992e803-1797f3d316b05eb5"]},"geometry":{"type":"LineString","coordinates":[[-83.5949775,32.8597307],[-83.59480090000001,32.8597926]]},"id":"8b44c0b8992efff-17b7740a4d74857e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5946304,32.8598524]},"id":"8f44c0b8992e484-17dfe4ac06bc6255"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992e484-17dfe4ac06bc6255","8f44c0b8992eccd-17bf64417bf96698"]},"geometry":{"type":"LineString","coordinates":[[-83.59480090000001,32.8597926],[-83.5946304,32.8598524]]},"id":"8b44c0b8992efff-17df7476bf7e5341"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992e484-17dfe4ac06bc6255","8f44c0b89905129-1797e51a7a4c4d3b"]},"geometry":{"type":"LineString","coordinates":[[-83.5946304,32.8598524],[-83.5944537,32.8599144]]},"id":"8944c0b8993ffff-17f764e34f62124d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89905096-17bf657dd9edd566","8f44c0b89905129-1797e51a7a4c4d3b"]},"geometry":{"type":"LineString","coordinates":[[-83.5944537,32.8599144],[-83.5942947,32.8599702]]},"id":"8b44c0b89905fff-1797f54c259f5ffe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89905096-17bf657dd9edd566","8f44c0b89900b00-17df65e9367d10a5"]},"geometry":{"type":"LineString","coordinates":[[-83.5942947,32.8599702],[-83.5941229,32.8600304]]},"id":"8a44c0b89907fff-17bf75b38386b7cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992b528-179fe3d599bb5fa9","8f44c0b8992b296-17b7e389a07d4c69"]},"geometry":{"type":"LineString","coordinates":[[-83.595095,32.860785],[-83.59497350000001,32.860540400000005]]},"id":"8b44c0b8992bfff-17df73afa30eda47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8992e484-17dfe4ac06bc6255","8f44c0b8992b528-179fe3d599bb5fa9"]},"geometry":{"type":"LineString","coordinates":[[-83.59497350000001,32.860540400000005],[-83.5946304,32.8598524]]},"id":"8a44c0b8992ffff-17b7e440def26b14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59380820000001,32.860294100000004]},"id":"8f44c0b899006c8-17f7f6adefc3c798"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899006c8-17f7f6adefc3c798","8f44c0b89900205-17d7f62b6991cd3b"]},"geometry":{"type":"LineString","coordinates":[[-83.59401700000001,32.860222300000004],[-83.59380820000001,32.860294100000004]]},"id":"8a44c0b89907fff-17df666caaab4561"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899006c8-17f7f6adefc3c798","8f44c0b89902251-17bff74a5eb4836c"]},"geometry":{"type":"LineString","coordinates":[[-83.59380820000001,32.860294100000004],[-83.59355790000001,32.8603803]]},"id":"8a44c0b89907fff-179fe6fc19ab3c2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89902251-17bff74a5eb4836c","8f44c0b8991c8b6-17dfe7d52c5b7b54"]},"geometry":{"type":"LineString","coordinates":[[-83.59355790000001,32.8603803],[-83.5933358,32.8604568]]},"id":"8944c0b8993ffff-17d7e78fbb07b9ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991c8b6-17dfe7d52c5b7b54","8f44c0b8991c515-1797f855e41bd272"]},"geometry":{"type":"LineString","coordinates":[[-83.5933358,32.8604568],[-83.5931298,32.8605277]]},"id":"8b44c0b8991cfff-17fff8158f7726da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991c515-1797f855e41bd272","8f44c0b8991e88d-17bfe8e9335e86db"]},"geometry":{"type":"LineString","coordinates":[[-83.5931298,32.8605277],[-83.59289410000001,32.8606088]]},"id":"8a44c0b8991ffff-179f789f90eb1723"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991ecc9-17d7f93eb5788163","8f44c0b8991e88d-17bfe8e9335e86db"]},"geometry":{"type":"LineString","coordinates":[[-83.59289410000001,32.8606088],[-83.5927573,32.860655900000005]]},"id":"8b44c0b8991efff-17d76913faf9ad8d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5940719,32.8608457]},"id":"8f44c0b8990e095-17dff609150a65ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990e095-17dff609150a65ff","8f44c0b8990a92b-13dfe5c411a4191c"]},"geometry":{"type":"LineString","coordinates":[[-83.5941823,32.861076600000004],[-83.5940719,32.8608457]]},"id":"8a44c0b8990ffff-1397e5e69a3af3c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899006c8-17f7f6adefc3c798","8f44c0b8990e095-17dff609150a65ff"]},"geometry":{"type":"LineString","coordinates":[[-83.5940719,32.8608457],[-83.59380820000001,32.860294100000004]]},"id":"8944c0b8993ffff-17b7765b78c2f171"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8990e095-17dff609150a65ff","8f44c0b8990e858-1797757b19b03f49"]},"geometry":{"type":"LineString","coordinates":[[-83.5942991,32.8607603],[-83.5940719,32.8608457]]},"id":"8b44c0b8990efff-17b7e5c215a0fd03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991db8b-1397e6a4e7097689","8f44c0b8990e095-17dff609150a65ff"]},"geometry":{"type":"LineString","coordinates":[[-83.5940719,32.8608457],[-83.59382260000001,32.8609406]]},"id":"8944c0b8993ffff-17ff7656faf07900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991db8b-1397e6a4e7097689","8f44c0b8991d70e-13bf773112522811"]},"geometry":{"type":"LineString","coordinates":[[-83.59382260000001,32.8609406],[-83.59359830000001,32.861026100000004]]},"id":"8b44c0b8991dfff-13b7e6eb0a338c93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991d70e-13bf773112522811","8f44c0b89918ae1-13ff77b4c4fb92cc"]},"geometry":{"type":"LineString","coordinates":[[-83.59359830000001,32.861026100000004],[-83.5933876,32.8611063]]},"id":"8a44c0b8991ffff-13d76772f2d426d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89918ae1-13ff77b4c4fb92cc","8f44c0b8991875b-13bf784c7dfff8ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5933876,32.8611063],[-83.5931449,32.8611987]]},"id":"8b44c0b89918fff-139f7800a53d1d7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991bd23-13d77898a28c39bd","8f44c0b8991875b-13bf784c7dfff8ac"]},"geometry":{"type":"LineString","coordinates":[[-83.5931449,32.8611987],[-83.593023,32.861245100000005]]},"id":"8a44c0b8991ffff-13b7f872967fb379"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8991bd23-13d77898a28c39bd","8f44c0b8991a271-13ffe902aa674e19"]},"geometry":{"type":"LineString","coordinates":[[-83.593023,32.861245100000005],[-83.59285340000001,32.861330800000005]]},"id":"8a44c0b8991ffff-13f768cda3744b61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8983498b-13bff97d24529ca4","8f44c0b8991a271-13ffe902aa674e19"]},"geometry":{"type":"LineString","coordinates":[[-83.59285340000001,32.861330800000005],[-83.59265740000001,32.8614297]]},"id":"8844c0b899fffff-139ff93feaa5fcc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b89834cdb-13f769ede1f981d3","8f44c0b8983498b-13bff97d24529ca4"]},"geometry":{"type":"LineString","coordinates":[[-83.59265740000001,32.8614297],[-83.592477,32.861517]]},"id":"8b44c0b89834fff-13d7f9b58b3b6438"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5922919,32.8616143]},"id":"8f44c0b8983684d-13bffa61931bde9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8983684d-13bffa61931bde9c","8f44c0b89834cdb-13f769ede1f981d3"]},"geometry":{"type":"LineString","coordinates":[[-83.592477,32.861517],[-83.5922919,32.8616143]]},"id":"8a44c0b89837fff-139ffa27c472d788"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899a960a-13b7eac01ce45094","8f44c0b8983684d-13bffa61931bde9c"]},"geometry":{"type":"LineString","coordinates":[[-83.5922919,32.8616143],[-83.5921407,32.8614206]]},"id":"8844c0b899fffff-13f77a90d1970af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b899a960a-13b7eac01ce45094","8f44c0b899a82d9-139f7b39881a0ec9"]},"geometry":{"type":"LineString","coordinates":[[-83.5921407,32.8614206],[-83.59194640000001,32.8611717]]},"id":"8a44c0b899affff-13f77afcdca9adfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26049175-17b7d6a602e50877","8f44c0a2604d758-139ee69f030287fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6855712,32.8528181],[-83.6855824,32.852573400000004]]},"id":"8a44c0a2604ffff-13f6e6a28092c69e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2604e65b-13bef8baa01017ba","8f44c0a2604d758-139ee69f030287fb"]},"geometry":{"type":"LineString","coordinates":[[-83.6855824,32.852573400000004],[-83.68516050000001,32.8525524],[-83.68490770000001,32.852493100000004],[-83.6848064,32.852478000000005],[-83.684719,32.8524231]]},"id":"8a44c0a2604ffff-13fec7b1e78f5119"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7647618,32.8810304]},"id":"8f44c0b5392625c-1395c54fe22a3064"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5392625c-1395c54fe22a3064","8f44c0b53926a8d-13b5e54a25c88f94"]},"geometry":{"type":"LineString","coordinates":[[-83.76477100000001,32.8808706],[-83.7647618,32.8810304]]},"id":"8a44c0b53927fff-13f7d54d0e8d0e0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7643415,32.8813261]},"id":"8f44c0b539227b3-13ddd65698cca1aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5392625c-1395c54fe22a3064","8f44c0b539227b3-13ddd65698cca1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7647618,32.8810304],[-83.76437390000001,32.881028400000005],[-83.76434760000001,32.881050200000004],[-83.7643415,32.8813261]]},"id":"8a44c0b53927fff-13bfe606a027f63f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539227b3-13ddd65698cca1aa","8f44c0b53931171-13ddf6f2ea5fd9c7"]},"geometry":{"type":"LineString","coordinates":[[-83.7643415,32.8813261],[-83.76409140000001,32.8813259]]},"id":"8944c0b5393ffff-13ddc6a4b8e540ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53920653-13d5c4f45fd544ca","8f44c0b539227b3-13ddd65698cca1aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7643415,32.8813261],[-83.7649083,32.881338]]},"id":"8a44c0b53927fff-13d5d5a579d4f248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53920653-13d5c4f45fd544ca","8f44c0b539202e2-13d7f48f5645411e"]},"geometry":{"type":"LineString","coordinates":[[-83.7649083,32.881338],[-83.7650699,32.881341500000005]]},"id":"8b44c0b53920fff-13d5e4c1ded4071a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b539202e2-13d7f48f5645411e","8f44c0b539208f4-1397c48d55f8b954"]},"geometry":{"type":"LineString","coordinates":[[-83.7650699,32.881341500000005],[-83.76520670000001,32.8813443],[-83.7652434,32.881332300000004],[-83.76527560000001,32.881306900000006],[-83.76528110000001,32.881058700000004],[-83.76526360000001,32.881038000000004],[-83.76507310000001,32.881035600000004]]},"id":"8a44c0b53927fff-13f5e4348527980c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53920ce0-1395d4f39a77e028","8f44c0b539208f4-1397c48d55f8b954"]},"geometry":{"type":"LineString","coordinates":[[-83.76507310000001,32.881035600000004],[-83.7649095,32.8810329]]},"id":"8b44c0b53920fff-1397f4c077f3a755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53920ce0-1395d4f39a77e028","8f44c0b5392625c-1395c54fe22a3064"]},"geometry":{"type":"LineString","coordinates":[[-83.7649095,32.8810329],[-83.7647618,32.8810304]]},"id":"8b44c0b53920fff-1395d521bbe8034a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878e593-17d7fe3e5a6e1055","8f44c0b1878ebad-17d6fd2be9cb1ad8"]},"geometry":{"type":"LineString","coordinates":[[-83.6627995,32.817205200000004],[-83.66315820000001,32.817214],[-83.6632386,32.8172358]]},"id":"8b44c0b1878efff-17d7fdb46a16568d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6636105,32.8171205]},"id":"8f44c0b1878c175-179efc437b2ac39e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878ebad-17d6fd2be9cb1ad8","8f44c0b1878c175-179efc437b2ac39e"]},"geometry":{"type":"LineString","coordinates":[[-83.6632386,32.8172358],[-83.66354840000001,32.8172433],[-83.6635976,32.8171844],[-83.6636105,32.8171205]]},"id":"8a44c0b1878ffff-17debca50f8b3683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878e923-17f6fd4448411f1f","8f44c0b1878c175-179efc437b2ac39e"]},"geometry":{"type":"LineString","coordinates":[[-83.6636105,32.8171205],[-83.6635643,32.8170639],[-83.66323410000001,32.8170498],[-83.6631996,32.817053300000005]]},"id":"8a44c0b1878ffff-17f7fcbcf1c16a6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18783223-17f6be3ddf680857","8f44c0b1878e923-17f6fd4448411f1f"]},"geometry":{"type":"LineString","coordinates":[[-83.6631996,32.817053300000005],[-83.6630748,32.817066000000004],[-83.66301700000001,32.8170832],[-83.6628003,32.817082500000005]]},"id":"8944c0b187bffff-17ffbdc0b06168c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18781709-1796fd77b414ed7b","8f44c0b1878316b-1796be3d469787c9"]},"geometry":{"type":"LineString","coordinates":[[-83.6628012,32.8169283],[-83.66311730000001,32.816931700000005]]},"id":"8a44c0b18787fff-1797fdda8c116e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18781709-1796fd77b414ed7b","8f44c0b1878cda5-179efcb564d8c2d6"]},"geometry":{"type":"LineString","coordinates":[[-83.66311730000001,32.816931700000005],[-83.6634282,32.816935]]},"id":"8944c0b187bffff-1797fd169286b227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187aa6dc-179fbc7654f97978","8f44c0b1878cda5-179efcb564d8c2d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6634282,32.816935],[-83.6635291,32.8169361]]},"id":"8b44c0b1878cfff-179ebc95efd75ec9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66353050000001,32.8167689]},"id":"8f44c0b187aa44e-17b6bc757d2dbc60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b187aa6dc-179fbc7654f97978","8f44c0b187aa44e-17b6bc757d2dbc60"]},"geometry":{"type":"LineString","coordinates":[[-83.6635291,32.8169361],[-83.66353050000001,32.8167689]]},"id":"8a44c0b187affff-17f6fc75e7f9aaf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878c906-17b6fc25ff2f1627","8f44c0b187aac69-13d7bc22e064e1bf"]},"geometry":{"type":"LineString","coordinates":[[-83.66366260000001,32.816619200000005],[-83.6636577,32.8169484]]},"id":"8b44c0b187aafff-17bffc247f32561c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d8108e-13debb4f00400a14","8f44c0b18d811b0-139fbb4f8e9833d5"]},"geometry":{"type":"LineString","coordinates":[[-83.6640016,32.8024736],[-83.66400080000001,32.8023699]]},"id":"8b44c0b18d81fff-13bfbb4f4caa0de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d85410-139fbb63ceffa905","8f44c0b18d811b0-139fbb4f8e9833d5"]},"geometry":{"type":"LineString","coordinates":[[-83.66400080000001,32.8023699],[-83.6639684,32.8019929]]},"id":"8a44c0b18d87fff-1397fb59a13113ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6878516,32.8432884]},"id":"8f44c0a26808971-17ffc114c13bb30a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26808971-17ffc114c13bb30a","8f44c0a26808884-1796b16651ff67f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6877211,32.8433227],[-83.6878161,32.843293],[-83.6878516,32.8432884]]},"id":"8c44c0a268089ff-17fe913dd5ca365b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.688068,32.8431536]},"id":"8f44c0a2680ddad-179f808d846a3807"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26808971-17ffc114c13bb30a","8f44c0a2680ddad-179f808d846a3807"]},"geometry":{"type":"LineString","coordinates":[[-83.6878516,32.8432884],[-83.68808700000001,32.8432533],[-83.688068,32.8431536]]},"id":"8a44c0a2680ffff-17d7b0b70d9a37dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6877954,32.843076100000005]},"id":"8f44c0a2680c0c4-17fe9137e5948b2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2680c0c4-17fe9137e5948b2c","8f44c0a2680ddad-179f808d846a3807"]},"geometry":{"type":"LineString","coordinates":[[-83.688068,32.8431536],[-83.6880462,32.8430395],[-83.6877954,32.843076100000005]]},"id":"8a44c0a2680ffff-17f6c0cecb5b52b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2680cd4d-13ff812b883a1d57","8f44c0a2680c0c4-17fe9137e5948b2c"]},"geometry":{"type":"LineString","coordinates":[[-83.6877954,32.843076100000005],[-83.68779520000001,32.8430059],[-83.6878152,32.8428752]]},"id":"8b44c0a2680cfff-17bfa133ea20ae26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68782730000001,32.8431912]},"id":"8f44c0a2680c280-17b68123f0048d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26808971-17ffc114c13bb30a","8f44c0a2680c280-17b68123f0048d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.6878516,32.8432884],[-83.68782730000001,32.8431912]]},"id":"8a44c0a2680ffff-17d6e11c50f0b080"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2680c0c4-17fe9137e5948b2c","8f44c0a2680c280-17b68123f0048d2f"]},"geometry":{"type":"LineString","coordinates":[[-83.68782730000001,32.8431912],[-83.6877954,32.843076100000005]]},"id":"8b44c0a2680cfff-179e912dfa14c7db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d6b2e-13f5ff2884b81006","8f44c0b094d6103-13f5ffb0f01315c9"]},"geometry":{"type":"LineString","coordinates":[[-83.7408497,32.8353034],[-83.741068,32.8353109]]},"id":"8b44c0b094d6fff-13f7ff6cc6cd9f3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.74195950000001,32.8353416]},"id":"8f44c0b094f326c-139dfcfb500ec323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d6b2e-13f5ff2884b81006","8f44c0b094f326c-139dfcfb500ec323"]},"geometry":{"type":"LineString","coordinates":[[-83.741068,32.8353109],[-83.74195950000001,32.8353416]]},"id":"8944c0b094fffff-13fffe11f95a3348"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7418945,32.835130500000005]},"id":"8f44c0b094f3168-1395fd23fc89e0fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094f326c-139dfcfb500ec323","8f44c0b094f3168-1395fd23fc89e0fe"]},"geometry":{"type":"LineString","coordinates":[[-83.74195950000001,32.8353416],[-83.7420113,32.8352543],[-83.7420184,32.8351367],[-83.7418945,32.835130500000005]]},"id":"8a44c0b094f7fff-13b7fceb650ca17f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d6b2e-13f5ff2884b81006","8f44c0b094d0c8d-1397ff29a802ddce"]},"geometry":{"type":"LineString","coordinates":[[-83.741068,32.8353109],[-83.7410739,32.835394900000004],[-83.7410662,32.8355692]]},"id":"8a44c0b094d7fff-13d7ff27103137a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7410476,32.8359943]},"id":"8f44c0b094d3c62-13b5ff354a58eda5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d3c62-13b5ff354a58eda5","8f44c0b094d0c8d-1397ff29a802ddce"]},"geometry":{"type":"LineString","coordinates":[[-83.7410662,32.8355692],[-83.7410476,32.8359943]]},"id":"8a44c0b094d7fff-139fff2f7ce1e7cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d3c62-13b5ff354a58eda5","8f44c0b094d2256-139fffc5962b8738"]},"geometry":{"type":"LineString","coordinates":[[-83.7410476,32.8359943],[-83.74081670000001,32.835986500000004]]},"id":"8a44c0b094d7fff-139fff7d6071e960"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d5b4e-13b7fd07fb026524","8f44c0b094d3c62-13b5ff354a58eda5"]},"geometry":{"type":"LineString","coordinates":[[-83.7410476,32.8359943],[-83.7418682,32.836029],[-83.7419081,32.835989500000004],[-83.7419393,32.8355959]]},"id":"8944c0b094fffff-1395fdcea7da20b4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d5b4e-13b7fd07fb026524","8f44c0b094f326c-139dfcfb500ec323"]},"geometry":{"type":"LineString","coordinates":[[-83.7419393,32.8355959],[-83.74195950000001,32.8353416]]},"id":"8944c0b094fffff-13ddfd01a7f1829b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b094d3c62-13b5ff354a58eda5","8f44c0b0bb2d8d8-17d5ff437d850b96"]},"geometry":{"type":"LineString","coordinates":[[-83.7410476,32.8359943],[-83.7410249,32.836489300000004]]},"id":"8944c0b094fffff-13bfff3c5a786efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7410191,32.836616]},"id":"8f44c0b0bb2d048-17b5ff4715ae74d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bb2d8d8-17d5ff437d850b96","8f44c0b0bb2d048-17b5ff4715ae74d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7410249,32.836489300000004],[-83.7410191,32.836616]]},"id":"8b44c0b0bb2dfff-17fdff454a4bc730"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6631794,32.818544800000005]},"id":"8f44c0b186a50c9-1396bd50e04d57d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186a50c9-1396bd50e04d57d4","8f44c0b186a5299-13d7bd4988eecf16"]},"geometry":{"type":"LineString","coordinates":[[-83.6631912,32.8186449],[-83.6631794,32.818544800000005]]},"id":"8b44c0b186a5fff-13b7fd4d39f475d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.66300960000001,32.8184411]},"id":"8f44c0b186a542a-13d7bdbb04a95c3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186a50c9-1396bd50e04d57d4","8f44c0b186a542a-13d7bdbb04a95c3e"]},"geometry":{"type":"LineString","coordinates":[[-83.6631794,32.818544800000005],[-83.66307540000001,32.8185243],[-83.663009,32.8184873],[-83.66300960000001,32.8184411]]},"id":"8b44c0b186a5fff-13f7bd921441e127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6632673,32.8184437]},"id":"8f44c0b186a516a-13d7fd19fb87233c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186a542a-13d7bdbb04a95c3e","8f44c0b186a516a-13d7fd19fb87233c"]},"geometry":{"type":"LineString","coordinates":[[-83.66300960000001,32.8184411],[-83.6630107,32.8183512],[-83.6632656,32.818355100000005],[-83.6632673,32.8184437]]},"id":"8b44c0b186a5fff-139ebd6aec994815"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186a50c9-1396bd50e04d57d4","8f44c0b186a516a-13d7fd19fb87233c"]},"geometry":{"type":"LineString","coordinates":[[-83.6632673,32.8184437],[-83.6632702,32.818545400000005],[-83.6631794,32.818544800000005]]},"id":"8b44c0b186a5fff-13f6bd260135b749"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89d73092-17f778c9a6bb8fdf","8f44c0b89d51154-13f7f906483ab9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.586391,32.860912],[-83.58629400000001,32.861732]]},"id":"8944c0b89d7ffff-13f778e7f5d7f1bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89d5aa03-17b77949211eafbe","8f44c0b89d51154-13f7f906483ab9d5"]},"geometry":{"type":"LineString","coordinates":[[-83.58629400000001,32.861732],[-83.58618700000001,32.862648]]},"id":"8944c0b89d7ffff-1397f927b626063b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89c756a9-17f7797da4e2075d","8f44c0b89d5aa03-17b77949211eafbe"]},"geometry":{"type":"LineString","coordinates":[[-83.58618700000001,32.862648],[-83.58610300000001,32.863543]]},"id":"8844c0b89dfffff-17dff9636fb45f19"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b89c43064-13fff8fecf96994a","8f44c0b89c756a9-17f7797da4e2075d"]},"geometry":{"type":"LineString","coordinates":[[-83.58610300000001,32.863543],[-83.58613100000001,32.864006],[-83.586202,32.864587],[-83.58630600000001,32.865022]]},"id":"8944c0b89c7ffff-13b7794f3f115052"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a35d42315-1797eba183c40e3b","8f44c0a35c45724-13d7cbb94342409b"]},"geometry":{"type":"LineString","coordinates":[[-83.65731600000001,32.846213],[-83.657301,32.846823],[-83.657278,32.848984]]},"id":"8844c0a35dfffff-17f7cbaf70890fd8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a351a5271-13b6cb8e28158789","8f44c0a35c45724-13d7cbb94342409b"]},"geometry":{"type":"LineString","coordinates":[[-83.657278,32.848984],[-83.65728100000001,32.849759],[-83.65728700000001,32.850211],[-83.657312,32.850681],[-83.657347,32.851182]]},"id":"8744c0a35ffffff-1796cbadfe45ec3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a351a8319-13f6fb5d1d9f2ba2","8f44c0a351a5271-13b6cb8e28158789"]},"geometry":{"type":"LineString","coordinates":[[-83.657347,32.851182],[-83.657404,32.852086],[-83.6574255,32.8523043]]},"id":"8944c0a351bffff-1397eb7781c4594a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a351a8319-13f6fb5d1d9f2ba2","8f44c0a351a9488-1397eb4f02d9304f"]},"geometry":{"type":"LineString","coordinates":[[-83.6574255,32.8523043],[-83.657448,32.852533]]},"id":"8a44c0a351affff-13bffb56113f3065"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a350366e4-17ffeb42829cb542","8f44c0a351a9488-1397eb4f02d9304f"]},"geometry":{"type":"LineString","coordinates":[[-83.657448,32.852533],[-83.65746800000001,32.853113]]},"id":"8844c0a351fffff-17b6eb48cee22e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a350366e4-17ffeb42829cb542","8f44c0a3501484d-17ffcb2ca70fec7b"]},"geometry":{"type":"LineString","coordinates":[[-83.65746800000001,32.853113],[-83.657503,32.853734]]},"id":"8944c0a3503ffff-17bffb3790a2d956"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63544040000001,32.847512]},"id":"8f44c0a346e2245-17bf0109cb2df7c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346e2245-17bf0109cb2df7c8","8f44c0a346e2a56-17f760e57e5d91ad"]},"geometry":{"type":"LineString","coordinates":[[-83.63544040000001,32.847512],[-83.63549850000001,32.847367000000006]]},"id":"8a44c0a346e7fff-1797b0f79d45215a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346e0d81-1797a08bc3fc181a","8f44c0a346e2a56-17f760e57e5d91ad"]},"geometry":{"type":"LineString","coordinates":[[-83.63549850000001,32.847367000000006],[-83.635642,32.847009]]},"id":"8a44c0a346e7fff-17f780b8abcfc4c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a346e0d81-1797a08bc3fc181a","8f44c0a346e4d0a-17ff2016eb981045"]},"geometry":{"type":"LineString","coordinates":[[-83.635642,32.847009],[-83.635829,32.846581]]},"id":"8a44c0a346e7fff-17ffe051524173c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6871591,32.855454200000004]},"id":"8f44c0a26224300-13b6e2c592599ef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262248e3-13b692c455dfc8e8","8f44c0a26224300-13b6e2c592599ef2"]},"geometry":{"type":"LineString","coordinates":[[-83.68716110000001,32.855271300000005],[-83.6871591,32.855454200000004]]},"id":"8b44c0a26224fff-13ffc2c4fbf370d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225da6-13b78277a7cafa77","8f44c0a26224300-13b6e2c592599ef2"]},"geometry":{"type":"LineString","coordinates":[[-83.6871591,32.855454200000004],[-83.6872838,32.8554544]]},"id":"8b44c0a26224fff-13b6f29e954ad52c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728250000001,32.855575200000004]},"id":"8f44c0a26225c89-13fe82787af212d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225c89-13fe82787af212d0","8f44c0a26225da6-13b78277a7cafa77"]},"geometry":{"type":"LineString","coordinates":[[-83.6872838,32.8554544],[-83.68728250000001,32.855575200000004]]},"id":"8c44c0a26225dff-13dec2781b3afebf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728200000001,32.8556267]},"id":"8f44c0a26225576-139eb278c873c9c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225c89-13fe82787af212d0","8f44c0a26225576-139eb278c873c9c1"]},"geometry":{"type":"LineString","coordinates":[[-83.68728250000001,32.855575200000004],[-83.68728200000001,32.8556267]]},"id":"8b44c0a26225fff-13fea2789c6f0f87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728150000001,32.855669400000004]},"id":"8f44c0a26225558-13bfe279133c5cd9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225576-139eb278c873c9c1","8f44c0a26225558-13bfe279133c5cd9"]},"geometry":{"type":"LineString","coordinates":[[-83.68728200000001,32.8556267],[-83.68728150000001,32.855669400000004]]},"id":"8d44c0a2622557f-139e9278eeac682e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6872821,32.855698600000004]},"id":"8f44c0a26225462-13bfa278be6d3b6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225462-13bfa278be6d3b6c","8f44c0a26225558-13bfe279133c5cd9"]},"geometry":{"type":"LineString","coordinates":[[-83.68728150000001,32.855669400000004],[-83.6872821,32.855698600000004]]},"id":"8c44c0a262255ff-13b68278e0e2217a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68728300000001,32.8557416]},"id":"8f44c0a2622544a-13d6827821574406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225462-13bfa278be6d3b6c","8f44c0a2622544a-13d6827821574406"]},"geometry":{"type":"LineString","coordinates":[[-83.6872821,32.855698600000004],[-83.68728300000001,32.8557416]]},"id":"8d44c0a2622547f-13df92786bc4c543"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6875959,32.855666500000005]},"id":"8f44c0a26225a34-13b791b494e9e41b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225a1c-13d781b3cd616e84","8f44c0a26225a34-13b791b494e9e41b"]},"geometry":{"type":"LineString","coordinates":[[-83.6875972,32.8557136],[-83.6875959,32.855666500000005]]},"id":"8d44c0a26225a3f-13b6d1b432c1b430"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630b2d8-13bfc1b45fe748e6","8f44c0a26225a34-13b791b494e9e41b"]},"geometry":{"type":"LineString","coordinates":[[-83.6875959,32.855666500000005],[-83.68759630000001,32.85549]]},"id":"8844c0a263fffff-13f6f1b47115e264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630b2d8-13bfc1b45fe748e6","8f44c0a2630b2f1-13b791b451171450"]},"geometry":{"type":"LineString","coordinates":[[-83.68759630000001,32.85549],[-83.68759630000001,32.8554545]]},"id":"8d44c0a2630b2ff-13beb1b4521039da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6870944,32.8555748]},"id":"8f44c0a262242d2-13fec2ee034d45b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262242d2-13fec2ee034d45b0","8f44c0a26224300-13b6e2c592599ef2"]},"geometry":{"type":"LineString","coordinates":[[-83.6871591,32.855454200000004],[-83.68709480000001,32.855547200000004],[-83.6870944,32.8555748]]},"id":"8c44c0a262243ff-13d7d2ddac6cb189"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6870944,32.855625700000004]},"id":"8f44c0a26220973-139e92ee09b9517b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a262242d2-13fec2ee034d45b0","8f44c0a26220973-139e92ee09b9517b"]},"geometry":{"type":"LineString","coordinates":[[-83.6870944,32.8555748],[-83.6870944,32.855625700000004]]},"id":"8a44c0a26227fff-13feb2ee0982e872"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.68709410000001,32.855697500000005]},"id":"8f44c0a26220840-13bef2ee36067083"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26220840-13bef2ee36067083","8f44c0a26220973-139e92ee09b9517b"]},"geometry":{"type":"LineString","coordinates":[[-83.6870944,32.855625700000004],[-83.68709410000001,32.855697500000005]]},"id":"8c44c0a262209ff-13b682ee24003b1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7226182,32.8274388]},"id":"8f44c0b0bda6c12-17bf6c33ad7e353b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bda6c12-17bf6c33ad7e353b","8f44c0b0bdb1451-1396fdbd2c173105"]},"geometry":{"type":"LineString","coordinates":[[-83.7226182,32.8274388],[-83.7221221,32.8280143],[-83.7219886,32.8281711]]},"id":"8944c0b0bdbffff-17b7ecf8a60de809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bdb3229-139e6e3e23b52290","8f44c0b0bdb1451-1396fdbd2c173105"]},"geometry":{"type":"LineString","coordinates":[[-83.7219886,32.8281711],[-83.7218783,32.8283006],[-83.7217822,32.8284068]]},"id":"8a44c0b0bdb7fff-13d73dfd19781dc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7227158,32.828691400000004]},"id":"8f44c0b0bd85cd2-13de2bf6a5ba28a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85cd2-13de2bf6a5ba28a6","8f44c0b0bd80a1a-13df6c6458d69803"]},"geometry":{"type":"LineString","coordinates":[[-83.7225403,32.828927],[-83.7227158,32.828691400000004]]},"id":"8a44c0b0bd87fff-1397ec2d80aee127"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85c02-13b7bbd9eb9a6d04","8f44c0b0bd85cd2-13de2bf6a5ba28a6"]},"geometry":{"type":"LineString","coordinates":[[-83.7227158,32.828691400000004],[-83.7227618,32.8286297]]},"id":"8c44c0b0bd85dff-13beebe84c3d6830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72309410000001,32.828121]},"id":"8f44c0b0bda3934-17f7ab0a3fc74754"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85c02-13b7bbd9eb9a6d04","8f44c0b0bda3934-17f7ab0a3fc74754"]},"geometry":{"type":"LineString","coordinates":[[-83.7227618,32.8286297],[-83.7229344,32.828416100000005],[-83.72309410000001,32.828121]]},"id":"8944c0b0bdbffff-139f6b6adcb2f31d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85182-13ffabc0b41ef472","8f44c0b0bd85cd2-13de2bf6a5ba28a6"]},"geometry":{"type":"LineString","coordinates":[[-83.7227158,32.828691400000004],[-83.72280210000001,32.8287418]]},"id":"8b44c0b0bd85fff-13dfebdbbf57e5e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85182-13ffabc0b41ef472","8f44c0b0bd85a92-139fbb6b11afae4e"]},"geometry":{"type":"LineString","coordinates":[[-83.72280210000001,32.8287418],[-83.7229391,32.8288217]]},"id":"8c44c0b0bd851ff-1396ab95e36666e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.72332490000001,32.8290469]},"id":"8f44c0b0bdaa8eb-13be7a79fb17b18f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd85a92-139fbb6b11afae4e","8f44c0b0bdaa8eb-13be7a79fb17b18f"]},"geometry":{"type":"LineString","coordinates":[[-83.7229391,32.8288217],[-83.72332490000001,32.8290469]]},"id":"8944c0b0bdbffff-13f7faf2826f1213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6483784,32.859403300000004]},"id":"8f44c0a30b6e4e4-17d7f17387ead277"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b450c5-17b7e2308cace741","8f44c0a30b6e4e4-17d7f17387ead277"]},"geometry":{"type":"LineString","coordinates":[[-83.648076,32.859554],[-83.6483784,32.859403300000004]]},"id":"8944c0a30b7ffff-17f6f1d20ff8bbae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64872290000001,32.859805300000005]},"id":"8f44c0a30b6ab61-17d6f09c37e0acfa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b6e4e4-17d7f17387ead277","8f44c0a30b6ab61-17d6f09c37e0acfa"]},"geometry":{"type":"LineString","coordinates":[[-83.6483784,32.859403300000004],[-83.64872290000001,32.859805300000005]]},"id":"8a44c0a30b6ffff-17d6f107ead7ce81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b6e55a-17b7f15a024410f8","8f44c0a30b6e4e4-17d7f17387ead277"]},"geometry":{"type":"LineString","coordinates":[[-83.6483784,32.859403300000004],[-83.6484192,32.8593789]]},"id":"8c44c0a30b6e5ff-17bff166c42fd629"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64890000000001,32.8593533]},"id":"8f44c0a30b6c7a0-17b7f02d8e2c65f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b6e55a-17b7f15a024410f8","8f44c0a30b6c7a0-17b7f02d8e2c65f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6484192,32.8593789],[-83.648712,32.8592067],[-83.64875,32.859211800000004],[-83.6487843,32.8592291],[-83.64890000000001,32.8593533]]},"id":"8a44c0a30b6ffff-13fff0bd70a6c7ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6553799,32.7494213]},"id":"8f44c0b15515c04-17d6d05b92c8b021"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15515c04-17d6d05b92c8b021","8f44c0b15523d84-17f6dcf857a9c957"]},"geometry":{"type":"LineString","coordinates":[[-83.6567675,32.7490593],[-83.6566136,32.749117600000005],[-83.65564810000001,32.749386200000004],[-83.6554479,32.7494369],[-83.6553799,32.7494213]]},"id":"8944c0b1553ffff-17f6fea829426e77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15515c04-17d6d05b92c8b021","8f44c0b15514a0b-17ffd08a2db85662"]},"geometry":{"type":"LineString","coordinates":[[-83.6553799,32.7494213],[-83.6553054,32.749307300000005]]},"id":"8a44c0b15517fff-17b6f072edc39288"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.65556600000001,32.749069500000004]},"id":"8f44c0b15533c48-17feffe742fd45ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15514a0b-17ffd08a2db85662","8f44c0b15533c48-17feffe742fd45ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6553054,32.749307300000005],[-83.6553379,32.7492502],[-83.6553956,32.7491701],[-83.65551260000001,32.749089600000005],[-83.65556600000001,32.749069500000004]]},"id":"8944c0b1553ffff-17b7f042a087f5c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b155315a0-17b6ff3797b0a7b1","8f44c0b15533c48-17feffe742fd45ec"]},"geometry":{"type":"LineString","coordinates":[[-83.65556600000001,32.749069500000004],[-83.6558471,32.7489635]]},"id":"8a44c0b15537fff-17d7df8f7b38af48"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b155315a0-17b6ff3797b0a7b1","8f44c0b1553199c-17fede928532fcec"]},"geometry":{"type":"LineString","coordinates":[[-83.6558471,32.7489635],[-83.655917,32.7489371],[-83.65611120000001,32.7488709]]},"id":"8b44c0b15531fff-179ecee54b61dddf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b155266ed-1797ed69eea12799","8f44c0b1553199c-17fede928532fcec"]},"geometry":{"type":"LineString","coordinates":[[-83.65611120000001,32.7488709],[-83.6565858,32.748709000000005]]},"id":"8944c0b1553ffff-17bfcdfe34459d0b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6554308,32.7489942]},"id":"8f44c0b15533cb1-17bff03bc172b9cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15526403-1796ddac6ee3d5a7","8f44c0b15533cb1-17bff03bc172b9cc"]},"geometry":{"type":"LineString","coordinates":[[-83.65647940000001,32.7485037],[-83.6555316,32.7488474],[-83.6554816,32.7489013],[-83.6554419,32.7489694],[-83.6554308,32.7489942]]},"id":"8944c0b1553ffff-179fdf069b1b3f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15533cb1-17bff03bc172b9cc","8f44c0b15533c48-17feffe742fd45ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6554308,32.7489942],[-83.65556600000001,32.749069500000004]]},"id":"8b44c0b15533fff-17d6f0118decd41f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15533cb1-17bff03bc172b9cc","8f44c0b15514804-1796d0c450dbfda4"]},"geometry":{"type":"LineString","coordinates":[[-83.6554308,32.7489942],[-83.6553325,32.7490341],[-83.6552123,32.7491104]]},"id":"8a44c0b15537fff-17def081a61c80b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15510c86-1397d1b2fed68b78","8f44c0b15514804-1796d0c450dbfda4"]},"geometry":{"type":"LineString","coordinates":[[-83.6552123,32.7491104],[-83.655049,32.749138900000005],[-83.6548973,32.749172200000004],[-83.654813,32.7492468],[-83.6547946,32.749335300000006],[-83.6547819,32.7494474],[-83.6547992,32.7495002],[-83.6548305,32.749544400000005]]},"id":"8944c0b1553ffff-17dfd17d03ed3890"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15515c04-17d6d05b92c8b021","8f44c0b15510c86-1397d1b2fed68b78"]},"geometry":{"type":"LineString","coordinates":[[-83.6548305,32.749544400000005],[-83.6548942,32.7495617],[-83.65499530000001,32.7495592],[-83.6550971,32.7495345],[-83.6551999,32.7494867],[-83.6552638,32.749450700000004],[-83.6553799,32.7494213]]},"id":"8a44c0b15517fff-17ffd1056951e6b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23da55aa-13b6e0c2ff154d49","8f44c0a23da4790-13bea18716766e34"]},"geometry":{"type":"LineString","coordinates":[[-83.6879825,32.8753262],[-83.68791510000001,32.875281300000005],[-83.68777060000001,32.875201100000005],[-83.6876687,32.875149]]},"id":"8a44c0a23da7fff-13fff123de097720"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23da4790-13bea18716766e34","8f44c0a23da296c-13fed21323f47879"]},"geometry":{"type":"LineString","coordinates":[[-83.6876687,32.875149],[-83.6875358,32.8751708],[-83.68745460000001,32.8752298],[-83.6874252,32.875328],[-83.6874446,32.8754317]]},"id":"8a44c0a23da7fff-13f6a1f02989ea34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a23da0bab-13ffe0fdc78cf40f","8f44c0a23da296c-13fed21323f47879"]},"geometry":{"type":"LineString","coordinates":[[-83.6874446,32.8754317],[-83.6876099,32.8754487],[-83.6877884,32.8754559],[-83.6878884,32.8754654]]},"id":"8a44c0a23da7fff-13f6918884d16ae2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62180910000001,32.836670600000005]},"id":"8f44c0a36815355-17d722515b07fdd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815ad4-179f224af8a541cd","8f44c0a36815355-17d722515b07fdd5"]},"geometry":{"type":"LineString","coordinates":[[-83.62180910000001,32.836670600000005],[-83.6218193,32.8366002]]},"id":"8b44c0a36815fff-17b7224e2d0bc0e5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62183130000001,32.8365172]},"id":"8f44c0a36815bab-17f76243725a2a2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815ad4-179f224af8a541cd","8f44c0a36815bab-17f76243725a2a2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6218193,32.8366002],[-83.62183130000001,32.8365172]]},"id":"8c44c0a36815bff-179732473e9e0f27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62167120000001,32.836585]},"id":"8f44c0a368150e1-1797a2a781a5ecd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368150e1-1797a2a781a5ecd7","8f44c0a36815355-17d722515b07fdd5"]},"geometry":{"type":"LineString","coordinates":[[-83.62180910000001,32.836670600000005],[-83.6216608,32.8366567],[-83.62167120000001,32.836585]]},"id":"8b44c0a36815fff-17bf228dcaf20e70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6216831,32.8365013]},"id":"8f44c0a36815024-17df72a0199a21d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.62169370000001,32.836427300000004]},"id":"8f44c0a36815898-17bf3299751d272a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815898-17bf3299751d272a","8f44c0a36815024-17df72a0199a21d6"]},"geometry":{"type":"LineString","coordinates":[[-83.6216831,32.8365013],[-83.62169370000001,32.836427300000004]]},"id":"8b44c0a36815fff-17d7329cc72ccfc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6217738,32.8364363]},"id":"8f44c0a368158e0-17b7b2676fd111ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815898-17bf3299751d272a","8f44c0a368158e0-17b7b2676fd111ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6217738,32.8364363],[-83.62169370000001,32.836427300000004]]},"id":"8c44c0a368159ff-17b7e280727a3f7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6461956,32.858014000000004]},"id":"8f44c0a30b2b60e-13f6e6c7c4b0a1e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b29453-13dee5cb03d35ed8","8f44c0a30b2b60e-13f6e6c7c4b0a1e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6466,32.857793],[-83.6461956,32.858014000000004]]},"id":"8944c0a30b3ffff-139ff64962e07161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0dd98-139fe7365ba25c5b","8f44c0a30b2b60e-13f6e6c7c4b0a1e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6461956,32.858014000000004],[-83.6460187,32.8581106]]},"id":"8a44c0a30b0ffff-1396f6ff142ed4b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6458648,32.8581947]},"id":"8f44c0a30b0c2dc-13d7f7968ebd5959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0dd98-139fe7365ba25c5b","8f44c0a30b0c2dc-13d7f7968ebd5959"]},"geometry":{"type":"LineString","coordinates":[[-83.6460187,32.8581106],[-83.6458648,32.8581947]]},"id":"8a44c0a30b0ffff-13bff766732459f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0892b-13dfe7a8fad1c8ea","8f44c0a30b0c2dc-13d7f7968ebd5959"]},"geometry":{"type":"LineString","coordinates":[[-83.6458648,32.8581947],[-83.6458353,32.8582108]]},"id":"8a44c0a30b0ffff-13dee79fba4db489"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6456641,32.858322300000005]},"id":"8f44c0a30b08c4b-13b7f813f0d54c7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0892b-13dfe7a8fad1c8ea","8f44c0a30b08c4b-13b7f813f0d54c7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6458353,32.8582108],[-83.6456641,32.858322300000005]]},"id":"8b44c0a30b08fff-1396e7de728df4a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b084e5-13f7f87681312bef","8f44c0a30b08c4b-13b7f813f0d54c7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6456641,32.858322300000005],[-83.6455064,32.8584241]]},"id":"8b44c0a30b08fff-13d7e8453404ad78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b084e5-13f7f87681312bef","8f44c0a30b0aa12-139ff8d3e51f7d9b"]},"geometry":{"type":"LineString","coordinates":[[-83.6455064,32.8584241],[-83.645357,32.858520500000004]]},"id":"8a44c0a30b0ffff-1397f8a53971a857"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b0aa12-139ff8d3e51f7d9b","8f44c0a30b0a743-13ffe9499a3f92e4"]},"geometry":{"type":"LineString","coordinates":[[-83.645357,32.858520500000004],[-83.6451687,32.858642]]},"id":"8b44c0a30b0afff-13d7e90ec69a8b6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1926b-13dee9f4e894ec61","8f44c0a30b0a743-13ffe9499a3f92e4"]},"geometry":{"type":"LineString","coordinates":[[-83.6451687,32.858642],[-83.6448946,32.8588234]]},"id":"8944c0a30b3ffff-13b7f99f48386719"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b19781-1397eab90884b804","8f44c0a30b1926b-13dee9f4e894ec61"]},"geometry":{"type":"LineString","coordinates":[[-83.6448946,32.8588234],[-83.6447492,32.8587799],[-83.6445808,32.8587094]]},"id":"8944c0a30b3ffff-13bffa57e8bfeb49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b19781-1397eab90884b804","8f44c0a30b1b8a8-13deeb628cfbde71"]},"geometry":{"type":"LineString","coordinates":[[-83.6445808,32.8587094],[-83.6443096,32.858596]]},"id":"8a44c0a30b1ffff-13f7fb0dc585abf8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6457563,32.8574888]},"id":"8f44c0a30b2a424-179ee7da510d8a0e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b2b60e-13f6e6c7c4b0a1e7","8f44c0a30b2a424-179ee7da510d8a0e"]},"geometry":{"type":"LineString","coordinates":[[-83.6461956,32.858014000000004],[-83.6457563,32.8574888]]},"id":"8944c0a30b3ffff-13bee751019e9326"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b2e235-17ffe6ef8919fc71","8f44c0a30b2a424-179ee7da510d8a0e"]},"geometry":{"type":"LineString","coordinates":[[-83.6457563,32.8574888],[-83.64613200000001,32.857234000000005]]},"id":"8a44c0a30b2ffff-17dee764f848a34e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6454197,32.8576974]},"id":"8f44c0a30b010d5-139ee8acbf98512f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b010d5-139ee8acbf98512f","8f44c0a30b2a424-179ee7da510d8a0e"]},"geometry":{"type":"LineString","coordinates":[[-83.6457563,32.8574888],[-83.6454197,32.8576974]]},"id":"8944c0a30b3ffff-17dff843868b2747"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6447127,32.8581062]},"id":"8f44c0a30b1d529-139eea6691a85770"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1d529-139eea6691a85770","8f44c0a30b010d5-139ee8acbf98512f"]},"geometry":{"type":"LineString","coordinates":[[-83.6454197,32.8576974],[-83.64528130000001,32.857748],[-83.6447127,32.8581062]]},"id":"8944c0a30b3ffff-1397f98d2c440f2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443893,32.8583098]},"id":"8f44c0a30b18009-139feb30b9a358fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1d529-139eea6691a85770","8f44c0a30b18009-139feb30b9a358fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6447127,32.8581062],[-83.6443893,32.8583098]]},"id":"8a44c0a30b1ffff-13deeacba5cd8147"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6443766,32.858355700000004]},"id":"8f44c0a30b180eb-13befb38af8c814a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b180eb-13befb38af8c814a","8f44c0a30b18009-139feb30b9a358fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6443893,32.8583098],[-83.6443766,32.858355700000004]]},"id":"8c44c0a30b181ff-13beeb34a212b696"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1b916-1396fb52fb2fca72","8f44c0a30b180eb-13befb38af8c814a"]},"geometry":{"type":"LineString","coordinates":[[-83.6443766,32.858355700000004],[-83.6443345,32.858506500000004]]},"id":"8b44c0a30b18fff-13f7fb45d0744020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1b916-1396fb52fb2fca72","8f44c0a30b1b8a8-13deeb628cfbde71"]},"geometry":{"type":"LineString","coordinates":[[-83.6443345,32.858506500000004],[-83.6443096,32.858596]]},"id":"8c44c0a30b1b9ff-13b6fb5acab1bbee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b19189-13deea7025d0cfa2","8f44c0a30b18009-139feb30b9a358fe"]},"geometry":{"type":"LineString","coordinates":[[-83.6443893,32.8583098],[-83.6446974,32.8585964]]},"id":"8a44c0a30b1ffff-13f7fad0639e5f13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1d529-139eea6691a85770","8f44c0a30b19189-13deea7025d0cfa2"]},"geometry":{"type":"LineString","coordinates":[[-83.6446974,32.8585964],[-83.64499160000001,32.8584261],[-83.6449602,32.858377000000004],[-83.6447127,32.8581062]]},"id":"8a44c0a30b1ffff-13d7ea1067ba8b14"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1e6ec-13b7fc56d418cc49","8f44c0a30b180eb-13befb38af8c814a"]},"geometry":{"type":"LineString","coordinates":[[-83.6443766,32.858355700000004],[-83.6440523,32.858049],[-83.6439187,32.8581499]]},"id":"8a44c0a30b1ffff-13d6fbc501995b3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1e6ec-13b7fc56d418cc49","8f44c0a30b1a5a8-13bffced3fa47a9d"]},"geometry":{"type":"LineString","coordinates":[[-83.6439187,32.8581499],[-83.6436781,32.8583317]]},"id":"8944c0a30b3ffff-13f6eca206a08680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b56764-13f6e77b2ba36015","8f44c0a30a25834-1397f862f4b2ea31"]},"geometry":{"type":"LineString","coordinates":[[-83.6455377,32.8590935],[-83.6459086,32.8592494]]},"id":"8844c0a30bfffff-13b6f7ef0671f1aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b50164-17dfe65b0280f7fd","8f44c0a30b56764-13f6e77b2ba36015"]},"geometry":{"type":"LineString","coordinates":[[-83.6459086,32.8592494],[-83.6463696,32.859443]]},"id":"8a44c0a30b57fff-17b7e6eb1254c1b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203a881b-17df5cd3277dc874","8f44c0a203a8a40-17be7c7747ffcd7a"]},"geometry":{"type":"LineString","coordinates":[[-83.7027022,32.8704721],[-83.7026532,32.870540000000005],[-83.7028492,32.8706434]]},"id":"8b44c0a203a8fff-179f7cc12e39364a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203ad08a-17f75c09893fa45b","8f44c0a203a8a40-17be7c7747ffcd7a"]},"geometry":{"type":"LineString","coordinates":[[-83.7028492,32.8706434],[-83.70293380000001,32.8706377],[-83.70302480000001,32.8705104]]},"id":"8a44c0a203affff-179f7c394b78197e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06e753-13be3f1173b092d7","8f44c0b0a06e50c-17d63f4dbc8b79d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7147941,32.8247907],[-83.71489050000001,32.8249827]]},"id":"8b44c0b0a06efff-13963f2f983ac16d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06e753-13be3f1173b092d7","8f44c0b0a06a95a-13bf3edae3621649"]},"geometry":{"type":"LineString","coordinates":[[-83.71489050000001,32.8249827],[-83.7149778,32.8251568]]},"id":"8a44c0b0a06ffff-13f6bef63716415d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06aa2d-139f3eabb1c2a914","8f44c0b0a06a95a-13bf3edae3621649"]},"geometry":{"type":"LineString","coordinates":[[-83.7149778,32.8251568],[-83.71505330000001,32.825307200000005]]},"id":"8b44c0b0a06afff-13de3ec3516fc406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06bc76-13f67e77e1b01682","8f44c0b0a06aa2d-139f3eabb1c2a914"]},"geometry":{"type":"LineString","coordinates":[[-83.71505330000001,32.825307200000005],[-83.7151362,32.8254724]]},"id":"8a44c0b0a06ffff-13bebe91dbb039f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06bc76-13f67e77e1b01682","8f44c0b0a06b02b-13d63e46dd3d2c3b"]},"geometry":{"type":"LineString","coordinates":[[-83.7151362,32.8254724],[-83.7152147,32.825628800000004]]},"id":"8b44c0b0a06bfff-13b73e5f605123f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06b20d-13b7be13e728e160","8f44c0b0a06b02b-13d63e46dd3d2c3b"]},"geometry":{"type":"LineString","coordinates":[[-83.7152147,32.825628800000004],[-83.71529620000001,32.8257914]]},"id":"8b44c0b0a06bfff-1396fe2d699729a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154158,32.8260297]},"id":"8f44c0b0a3367ae-13debdc92a618eee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a3367ae-13debdc92a618eee","8f44c0b0a06b20d-13b7be13e728e160"]},"geometry":{"type":"LineString","coordinates":[[-83.71529620000001,32.8257914],[-83.7154158,32.8260297]]},"id":"8944c0b0a07ffff-13963dee8737f4e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7154409,32.8260796]},"id":"8f44c0b0a336602-13fffdb970b4ca4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a3367ae-13debdc92a618eee","8f44c0b0a336602-13fffdb970b4ca4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7154158,32.8260297],[-83.7154409,32.8260796]]},"id":"8c44c0b0a3367ff-13de3dc15c6fc1a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a336602-13fffdb970b4ca4a","8f44c0b0a332c70-13d77ddc33528773"]},"geometry":{"type":"LineString","coordinates":[[-83.7154409,32.8260796],[-83.71538530000001,32.826242300000004]]},"id":"8a44c0b0a337fff-139ebdcadfe759d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a3367ae-13debdc92a618eee","8f44c0b0a04dc88-139f3ef945399bbb"]},"geometry":{"type":"LineString","coordinates":[[-83.7154158,32.8260297],[-83.7149292,32.825928000000005]]},"id":"8944c0b0a07ffff-13befe6133028ee6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a04dc88-139f3ef945399bbb","8f44c0b0a04c681-13f6ffe951dc0857"]},"geometry":{"type":"LineString","coordinates":[[-83.7149292,32.825928000000005],[-83.7148346,32.825954100000004],[-83.71454510000001,32.8258831]]},"id":"8a44c0b0a04ffff-139ebf712b17a019"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a04e840-1397404fa2833fe9","8f44c0b0a04c681-13f6ffe951dc0857"]},"geometry":{"type":"LineString","coordinates":[[-83.71454510000001,32.8258831],[-83.7144469,32.825859],[-83.71438140000001,32.825736]]},"id":"8a44c0b0a04ffff-13dec025a3070a93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a04e840-1397404fa2833fe9","8f44c0b0a041646-13b6f08538c9be92"]},"geometry":{"type":"LineString","coordinates":[[-83.71438140000001,32.825736],[-83.71429570000001,32.825575900000004]]},"id":"8944c0b0a07ffff-13f7406a6319186a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7141574,32.8256225]},"id":"8f44c0b0a04ed03-13de50dba1aa1521"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a04e745-139ed0c0b9563596","8f44c0b0a04ed03-13de50dba1aa1521"]},"geometry":{"type":"LineString","coordinates":[[-83.7142005,32.8259465],[-83.714214,32.825810100000005],[-83.71418800000001,32.8256755],[-83.7141574,32.8256225]]},"id":"8b44c0b0a04efff-13b770c20b965611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a043b1c-13fe61143308a3df","8f44c0b0a04ed03-13de50dba1aa1521"]},"geometry":{"type":"LineString","coordinates":[[-83.7141574,32.8256225],[-83.7140669,32.8254662]]},"id":"8a44c0b0a047fff-139f40f7fb43a0db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a041646-13b6f08538c9be92","8f44c0b0a04ed03-13de50dba1aa1521"]},"geometry":{"type":"LineString","coordinates":[[-83.71429570000001,32.825575900000004],[-83.7141574,32.8256225]]},"id":"8a44c0b0a047fff-13bfc0b06e1a17a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a04ed03-13de50dba1aa1521","8f44c0b0a05d8d0-13dfe1b768e92a2d"]},"geometry":{"type":"LineString","coordinates":[[-83.7141574,32.8256225],[-83.7140742,32.825648900000004],[-83.7140043,32.8257477],[-83.7138058,32.8258554]]},"id":"8944c0b0a07ffff-1397614780f51de4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa93455-17fe7cf24b3fe0cb","8f44c0b0aa92270-179efd2298f832f3"]},"geometry":{"type":"LineString","coordinates":[[-83.71568230000001,32.8244972],[-83.7157596,32.8246692]]},"id":"8a44c0b0aa97fff-17d6bd0a7efcb959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5395ea41-139df266ac3a01d7","8f44c0b53958630-13f7c267c83d6c88"]},"geometry":{"type":"LineString","coordinates":[[-83.76595420000001,32.8851139],[-83.7659524,32.8854844]]},"id":"8a44c0b5395ffff-1395c267342a4335"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53958630-13f7c267c83d6c88","8f44c0b53875825-17f5f269a387e365"]},"geometry":{"type":"LineString","coordinates":[[-83.7659524,32.8854844],[-83.76594940000001,32.886074300000004]]},"id":"8844c0b539fffff-17bde268bad13213"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76594610000001,32.886754100000005]},"id":"8f44c0b53871a4a-179dd26bb8978836"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53871a4a-179dd26bb8978836","8f44c0b53875825-17f5f269a387e365"]},"geometry":{"type":"LineString","coordinates":[[-83.76594940000001,32.886074300000004],[-83.76594610000001,32.886754100000005]]},"id":"8a44c0b53877fff-17bde26aa7df4aad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.76594180000001,32.887616200000004]},"id":"8f44c0b53840298-13bde26e6b98e4c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53871a4a-179dd26bb8978836","8f44c0b53840298-13bde26e6b98e4c2"]},"geometry":{"type":"LineString","coordinates":[[-83.76594610000001,32.886754100000005],[-83.76594180000001,32.887616200000004]]},"id":"8944c0b5387ffff-139fc26d09e19929"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53871a4a-179dd26bb8978836","8f44c0b538644de-17fde0eb92a5eb76"]},"geometry":{"type":"LineString","coordinates":[[-83.76594610000001,32.886754100000005],[-83.76655020000001,32.8867573],[-83.7665607,32.886082200000004]]},"id":"8944c0b5387ffff-179fc149979b72a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5395992e-13fde0e5d3312c3c","8f44c0b538644de-17fde0eb92a5eb76"]},"geometry":{"type":"LineString","coordinates":[[-83.7665607,32.886082200000004],[-83.76656990000001,32.8854938]]},"id":"8844c0b539fffff-17b5c0e8bae4232e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5395992e-13fde0e5d3312c3c","8f44c0b5395d8b5-1395f0e24095e548"]},"geometry":{"type":"LineString","coordinates":[[-83.76656990000001,32.8854938],[-83.76657560000001,32.8851207]]},"id":"8b44c0b5395dfff-1395c0e40bfa5a53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ad75cc6-17b7e79f2f40f58f","8f44c0b1e6e911e-13fee0ed69a506e9"]},"geometry":{"type":"LineString","coordinates":[[-83.64585100000001,32.807554],[-83.645854,32.807237],[-83.64587,32.806815],[-83.645865,32.806741],[-83.64585100000001,32.8067],[-83.645759,32.806568],[-83.64572600000001,32.806514],[-83.64570300000001,32.806359],[-83.645696,32.806243],[-83.64569,32.806151],[-83.645695,32.806105],[-83.64570300000001,32.806086],[-83.645722,32.806068],[-83.645773,32.806036],[-83.64585100000001,32.806024],[-83.647075,32.806025000000005],[-83.647132,32.806029],[-83.647191,32.806041],[-83.647276,32.806078],[-83.64741000000001,32.806151],[-83.647559,32.806206],[-83.64768500000001,32.806221],[-83.64829,32.806223],[-83.648363,32.806207],[-83.648593,32.806212]]},"id":"8644c0b1fffffff-13bef59383b46c1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.726836,32.911471]},"id":"8f44c0a28c74163-13f761e786ed7369"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a28d71c61-179e1f7b8b39716e","8f44c0a28c74163-13f761e786ed7369"]},"geometry":{"type":"LineString","coordinates":[[-83.727828,32.909104],[-83.727753,32.90909],[-83.727193,32.909066],[-83.72702100000001,32.909049],[-83.72691900000001,32.909025],[-83.72684000000001,32.908993],[-83.726836,32.911471]]},"id":"8844c0a28dfffff-179fa18dc35a4017"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b81a8baeb-13dfec090f501d54","8f44c0b81314712-179ff2f4ea003e03"]},"geometry":{"type":"LineString","coordinates":[[-83.56540000000001,32.819882],[-83.564301,32.819938],[-83.56370100000001,32.820037],[-83.562565,32.82083]]},"id":"8744c0b81ffffff-17f7efa9779e1322"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c16aa6d-17d68375223bca3f","8f44c0a2ca95811-13de61e20f4b3dcb"]},"geometry":{"type":"LineString","coordinates":[[-83.739952,32.898327],[-83.739272,32.898308],[-83.739176,32.8983],[-83.73913900000001,32.898282],[-83.739124,32.898269],[-83.73909900000001,32.898218],[-83.739196,32.896796],[-83.73921100000001,32.896735],[-83.739243,32.896696],[-83.73930700000001,32.896676]]},"id":"8744c0a2cffffff-13dfe38471b91ca8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2ccccd44-17f618f4e06dea01","8f44c0a2ccc9070-13d7183e6a30c150"]},"geometry":{"type":"LineString","coordinates":[[-83.730793,32.894008],[-83.730428,32.894084],[-83.730162,32.894117],[-83.729922,32.894135],[-83.729308,32.89414],[-83.729065,32.894156],[-83.72798300000001,32.894322],[-83.7277286,32.89437],[-83.72774700000001,32.89291],[-83.729156,32.892921],[-83.729392,32.892926],[-83.72958200000001,32.892958],[-83.72981,32.893031],[-83.72995800000001,32.893071],[-83.730073,32.893089],[-83.730175,32.893092],[-83.730371,32.893068],[-83.730501,32.89304]]},"id":"8744c0a2cffffff-17de5cd8aee5fb80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.549761,32.836987]},"id":"8f44c0b8e19ba34-179ff23763395dbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e19ba34-179ff23763395dbe","8f44c0b8e086272-13b7f344c2258df9"]},"geometry":{"type":"LineString","coordinates":[[-83.54933000000001,32.838481],[-83.549439,32.838348],[-83.54962400000001,32.838206],[-83.550075,32.837823],[-83.550205,32.837682],[-83.550272,32.837587],[-83.55028700000001,32.837515],[-83.550285,32.837497],[-83.55027700000001,32.837412],[-83.55023,32.837320000000005],[-83.55015800000001,32.837246],[-83.54998400000001,32.837127],[-83.549761,32.836987]]},"id":"8844c0b8e1fffff-17dfd1d3c6699ced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.664288,32.752809]},"id":"8f44c0b1503150d-139fba9c014acb6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b150196aa-179ffaea2405b7cd","8f44c0b1503150d-139fba9c014acb6d"]},"geometry":{"type":"LineString","coordinates":[[-83.664163,32.755087],[-83.664136,32.754949],[-83.664116,32.754755],[-83.66408700000001,32.754596],[-83.664066,32.754519],[-83.664018,32.754421],[-83.66396800000001,32.754246],[-83.663949,32.754105],[-83.663942,32.754005],[-83.663926,32.753881],[-83.663916,32.753749],[-83.663908,32.753453],[-83.663966,32.753273],[-83.664015,32.753197],[-83.66408100000001,32.753147000000006],[-83.66417200000001,32.753103],[-83.664268,32.753069],[-83.664366,32.75305],[-83.664288,32.752809]]},"id":"8944c0b1503ffff-139fbb2a3976250f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34204921-13dee8c26e302eac","8f44c0a34352d09-13b7e5b20deab23f"]},"geometry":{"type":"LineString","coordinates":[[-83.645385,32.845309],[-83.645517,32.845052],[-83.64567380000001,32.8447315],[-83.64664,32.845016]]},"id":"8844c0a343fffff-13f6f778ddc1aab0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20cc1cb3-17967026c09bdabe","8f44c0a20c9956e-17bef7dfe615f691"]},"geometry":{"type":"LineString","coordinates":[[-83.6916226,32.859566],[-83.693054,32.860301],[-83.693104,32.860326],[-83.694118,32.860867],[-83.69445800000001,32.861052],[-83.694502,32.861071],[-83.69452700000001,32.861071],[-83.694545,32.861061],[-83.69478600000001,32.860759]]},"id":"8844c0a20dfffff-17bef3e61c60143c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2695bd5d-13fe7cd786380a91","8f44c0a244b24a8-1797f7c92f19fe82"]},"geometry":{"type":"LineString","coordinates":[[-83.691659,32.842934],[-83.691675,32.842549000000005],[-83.69167800000001,32.84181],[-83.691675,32.841746],[-83.691632,32.84172],[-83.691006,32.841724],[-83.689824,32.841743],[-83.68975800000001,32.84188],[-83.68962900000001,32.842261],[-83.6896,32.842439],[-83.689588,32.842877]]},"id":"8844c0a269fffff-13ff7a1bd1a59683"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b154c122a-13bff11d407034b5","8f44c0b154ddd0b-13b6d2f52d9e6644"]},"geometry":{"type":"LineString","coordinates":[[-83.65507000000001,32.756341],[-83.65501900000001,32.75631],[-83.654977,32.756268],[-83.65491700000001,32.756138],[-83.654869,32.756093],[-83.65481000000001,32.756084],[-83.654714,32.756076],[-83.65468200000001,32.756078],[-83.65460900000001,32.756098],[-83.654483,32.756166],[-83.65442200000001,32.756214],[-83.65436100000001,32.756299],[-83.654336,32.756348],[-83.654319,32.756417],[-83.65431500000001,32.756475],[-83.65431500000001,32.756538]]},"id":"8944c0b154fffff-13ded229c85f35f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.699004,32.833039]},"id":"8f44c0a24da2da9-13ff65da83188406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24c356da-13b660b1e1ec9780","8f44c0a24da2da9-13ff65da83188406"]},"geometry":{"type":"LineString","coordinates":[[-83.699004,32.833039],[-83.69930400000001,32.833239],[-83.699537,32.833526],[-83.699696,32.833723],[-83.700066,32.83418],[-83.70052000000001,32.834741],[-83.70111700000001,32.835405]]},"id":"8844c0a24dfffff-17bf6339c80c0de8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa4b88d5e-17bff5c8a5b07123","8f44c0aa48598e6-17fff5bacb31e7e7"]},"geometry":{"type":"LineString","coordinates":[[-83.548322,32.8768963],[-83.547949,32.877143100000005],[-83.5475799,32.8773209],[-83.5468743,32.8776354],[-83.5463912,32.8779637],[-83.54633050000001,32.878045900000004],[-83.5463491,32.878123],[-83.5463912,32.878177900000004],[-83.5479056,32.8794132],[-83.54829980000001,32.8796607]]},"id":"8744c0aa4ffffff-13bfd83ec6d22220"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5387711,32.8925183]},"id":"8f44c0aa09a879a-179ffd0c11af466f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,299.22],"value":"paved"},{"applyAt":[299.22,557.0],"value":"unpaved"}],"flags":[{"applyAt":[299.22,557.0],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0aa09a879a-179ffd0c11af466f","8f44c0aa46560c0-17d7f1e2d91f46be"]},"geometry":{"type":"LineString","coordinates":[[-83.53678910000001,32.888888900000005],[-83.5370613,32.8890708],[-83.5376683,32.889425100000004],[-83.5380693,32.8895987],[-83.53855510000001,32.889799100000005],[-83.53877990000001,32.8899124],[-83.539083,32.8900884],[-83.5393791,32.890259900000004],[-83.539474,32.8903374],[-83.53947860000001,32.8903995],[-83.53927940000001,32.8907266],[-83.5389323,32.8912685],[-83.53881510000001,32.8915719],[-83.5387041,32.8920143],[-83.5387711,32.8925183]]},"id":"8644c0aa7ffffff-17ffedb384e533c4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.620756,32.900091]},"id":"8f44c0a15183a41-179fe4e381351e40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a15183a41-179fe4e381351e40","8f44c0a150b4076-139fe8558efc52bf"]},"geometry":{"type":"LineString","coordinates":[[-83.61934480000001,32.901113200000005],[-83.620518,32.900001],[-83.620756,32.900091]]},"id":"8844c0a151fffff-1397e6aaea458bcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,256.94],"value":"paved"}],"flags":[{"applyAt":[256.94,334.38],"values":["isBridge"]},"isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0421095e-13973f9803513d46","8f44c0b0080e0c2-17d7c88fbf6daa08"]},"geometry":{"type":"LineString","coordinates":[[-83.7110021,32.758431200000004],[-83.711004,32.7579189],[-83.71101560000001,32.7576379],[-83.7110547,32.757240100000004],[-83.7111247,32.756810800000004],[-83.71121260000001,32.7563805],[-83.71127960000001,32.7561327],[-83.7114986,32.7554594],[-83.7116278,32.7551359],[-83.7118573,32.7546473],[-83.7121415,32.754126400000004],[-83.712444,32.7536647],[-83.71277860000001,32.7532097],[-83.71397300000001,32.7515756],[-83.7146752,32.7505523]]},"id":"8644c0b07ffffff-13b6d53699cd6a5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71046770000001,32.7626008]},"id":"8f44c0b00165a15-17f7c9ddbf2d39b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":[{"applyAt":[333.81,491.69],"values":["isBridge"]},"isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b00165a15-17f7c9ddbf2d39b2","8f44c0b00914248-1396598fad1be4f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7105926,32.754256500000004],[-83.7103379,32.7546388],[-83.7101466,32.754925],[-83.70963230000001,32.755817300000004],[-83.70951570000001,32.7561279],[-83.70943790000001,32.7563976],[-83.7093796,32.7566483],[-83.7093115,32.757035200000004],[-83.70929070000001,32.7573503],[-83.709281,32.757546500000004],[-83.7092875,32.7578271],[-83.7093167,32.7581323],[-83.7093717,32.758453800000005],[-83.70943390000001,32.7587181],[-83.70948960000001,32.7589087],[-83.70957320000001,32.7591588],[-83.7096788,32.7594231],[-83.7098907,32.7599565],[-83.7100578,32.7603657],[-83.7101533,32.7606452],[-83.71024460000001,32.7609189],[-83.71031090000001,32.7611474],[-83.7103793,32.7614298],[-83.710425,32.7616931],[-83.7104685,32.761979100000005],[-83.71048300000001,32.7622092],[-83.71046770000001,32.7626008]]},"id":"8644c0b07ffffff-179e4b61657bbd0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":[{"applyAt":[676.64,788.84],"values":["isBridge"]},{"applyAt":[845.86,953.06],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0b00165a15-17f7c9ddbf2d39b2","8f44c0b042807ae-17b66546989b819c"]},"geometry":{"type":"LineString","coordinates":[[-83.71234790000001,32.751645],[-83.7117151,32.7523277],[-83.7113709,32.752709200000005],[-83.7111441,32.7529203],[-83.7109133,32.7531076],[-83.7105853,32.7533461],[-83.7102859,32.753555],[-83.7098271,32.7538755],[-83.70946950000001,32.754128300000005],[-83.7092258,32.754328900000004],[-83.7089926,32.7545664],[-83.70883710000001,32.7547517],[-83.70867120000001,32.7549784],[-83.7085701,32.7551593],[-83.7084198,32.7554579],[-83.7083394,32.755667200000005],[-83.7082824,32.7558743],[-83.7082383,32.756066100000005],[-83.70821240000001,32.7562317],[-83.7081995,32.7564301],[-83.7081873,32.7566195],[-83.7082003,32.7568265],[-83.708223,32.7570336],[-83.7082651,32.757208],[-83.70832340000001,32.7574314],[-83.7084068,32.757655500000006],[-83.7084676,32.7577986],[-83.70852020000001,32.7579178],[-83.7086192,32.7580927],[-83.7088056,32.758400300000005],[-83.7090386,32.7587794],[-83.7093383,32.759263000000004],[-83.7095165,32.759562700000004],[-83.70967440000001,32.759835200000005],[-83.709789,32.760058400000005],[-83.7099238,32.760374],[-83.710042,32.760680900000004],[-83.710127,32.760933800000004],[-83.71019960000001,32.7611726],[-83.71026590000001,32.7614377],[-83.71030950000001,32.761697500000004],[-83.7103572,32.761973000000005],[-83.71040070000001,32.7622554],[-83.71046770000001,32.7626008]]},"id":"8644c0b07ffffff-1396dbc5067f69ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","flags":[{"applyAt":[198.14,271.84],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30d84d61-13ffb2134d561218","8f44c0a36aee40c-17f7d693a8994be0"]},"geometry":{"type":"LineString","coordinates":[[-83.628462,32.849041],[-83.627716,32.848405],[-83.627436,32.848123],[-83.6270444,32.8477168],[-83.62661820000001,32.8471581]]},"id":"8744c0a36ffffff-13df346ea6d51a6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6356408,32.8549784]},"id":"8f44c0a30134b71-13ff808c851fde07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30b8a4c0-1797f1e6252b3e5b","8f44c0a30134b71-13ff808c851fde07"]},"geometry":{"type":"LineString","coordinates":[[-83.6356408,32.8549784],[-83.63621640000001,32.855272400000004],[-83.63650820000001,32.8553921],[-83.6367233,32.8554673],[-83.6368855,32.8555237],[-83.6377851,32.8559058],[-83.6382009,32.856194],[-83.63852650000001,32.8564371],[-83.63883700000001,32.856662],[-83.63900550000001,32.8568124],[-83.6392464,32.8570593],[-83.639498,32.8573407],[-83.6411616,32.8589028],[-83.64132000000001,32.859046],[-83.64164140000001,32.8592913]]},"id":"8744c0a30ffffff-17bff8dc52ef64b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1111da23-1397c62b0a19d6fc","8f44c0b11103d59-1797d66d0fd3de25"]},"geometry":{"type":"LineString","coordinates":[[-83.65955360000001,32.772660800000004],[-83.65952870000001,32.7725236],[-83.65944780000001,32.7723293],[-83.65944800000001,32.772076500000004]]},"id":"8944c0b1113ffff-17dfe656c20f2fd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[40.39,103.66],"value":"paved"}],"flags":[{"applyAt":[40.39,103.66],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1b510155-1397f1c0b38b4569","8f44c0b1b503692-17d7ef730f5952bb"]},"geometry":{"type":"LineString","coordinates":[[-83.655752,32.829929],[-83.65565600000001,32.829875],[-83.65542620000001,32.8296919],[-83.65492540000001,32.8293089],[-83.6548085,32.829212600000005]]},"id":"8944c0b1b53ffff-13f7d09c90344e5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,203.0],"value":"paved"}],"flags":[{"applyAt":[74.65,203.0],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36125a0e-139f777b27b3eec1","8f44c0a368ad268-17dfe406e92a9b8c"]},"geometry":{"type":"LineString","coordinates":[[-83.621109,32.837702],[-83.620936,32.837871],[-83.620732,32.838082],[-83.6206166,32.8382303],[-83.61988910000001,32.8392112],[-83.6197875,32.8393466],[-83.61969420000001,32.8394709]]},"id":"8844c0a369fffff-13ff75cf2f84e724"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a0e67a8-13bfe693fdbb1fad","8f44c0b1a0c04d3-17bfe7baa2d41446"]},"geometry":{"type":"LineString","coordinates":[[-83.64627850000001,32.8190102],[-83.6461792,32.8192299],[-83.64610420000001,32.8193445],[-83.64600220000001,32.8195004],[-83.6457077,32.8198365],[-83.64556800000001,32.8198971],[-83.645531,32.820043000000005],[-83.645807,32.820264]]},"id":"8944c0b1a0fffff-13dff7949977199d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a348d0260-17f7ec2a94779933","8f44c0a348d8a99-13beeacecca21de7"]},"geometry":{"type":"LineString","coordinates":[[-83.644546,32.835627],[-83.643765,32.835334],[-83.643725,32.835316],[-83.643696,32.835298],[-83.643676,32.8352774],[-83.64366150000001,32.835258],[-83.643652,32.835234],[-83.6436504,32.8352104],[-83.6436553,32.8351938],[-83.64366290000001,32.835174900000005],[-83.643679,32.835154],[-83.6439758,32.8348026],[-83.6439939,32.834777200000005],[-83.6440039,32.8347519],[-83.644008,32.834720100000006],[-83.6440034,32.8346936],[-83.6439895,32.8346654]]},"id":"8944c0a348fffff-13deec2dfc8fd6e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7238494,32.8061661]},"id":"8f44c0b0e3288e4-13dff9322573c11d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e264c4c-139e3692edc36f4d","8f44c0b0e3288e4-13dff9322573c11d"]},"geometry":{"type":"LineString","coordinates":[[-83.7238494,32.8061661],[-83.72393310000001,32.806533300000005],[-83.7239909,32.806792200000004],[-83.72401520000001,32.8069216],[-83.72403270000001,32.8070522],[-83.7240604,32.8074456],[-83.724108,32.808266],[-83.72411600000001,32.808369500000005],[-83.72412800000001,32.808473],[-83.7241534,32.808594500000005],[-83.72418540000001,32.8087182],[-83.7242252,32.808829200000005],[-83.72427180000001,32.808937900000004],[-83.7243194,32.809031700000006],[-83.7243711,32.8091244],[-83.72454610000001,32.8094047],[-83.7247363,32.8097021],[-83.7248605,32.8098955],[-83.72492340000001,32.809974700000005]]},"id":"8844c0b0e3fffff-179fa84c82482f28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b13c6e42a-17ff939c2a04dc63","8f44c0ba939eb44-13dffc6638edfa89"]},"geometry":{"type":"LineString","coordinates":[[-83.6242333,32.8283135],[-83.6240525,32.8281926],[-83.6240083,32.828088900000004],[-83.6240432,32.827827],[-83.62401170000001,32.827631000000004],[-83.6239158,32.8272946],[-83.6240585,32.825324200000004],[-83.62406800000001,32.8251925],[-83.62413400000001,32.8245372],[-83.6241291,32.8244628],[-83.6240829,32.824410300000004],[-83.6240484,32.824359300000005],[-83.6240659,32.824263200000004],[-83.6243024,32.8235479],[-83.6244253,32.823099400000004],[-83.6244764,32.822831],[-83.62449620000001,32.8223391],[-83.62448380000001,32.8219907],[-83.6244592,32.8215102],[-83.6244314,32.8210154],[-83.62438060000001,32.8208496],[-83.62430350000001,32.820651500000004],[-83.6242465,32.820474000000004],[-83.6241715,32.8187651],[-83.62412520000001,32.817992000000004],[-83.62405240000001,32.817764000000004],[-83.6238538,32.8175304],[-83.6236487,32.8172579],[-83.6233443,32.8169965],[-83.62326490000001,32.8167962],[-83.6227884,32.8145048],[-83.6226163,32.8135648],[-83.6225567,32.812864000000005],[-83.62255010000001,32.8122022],[-83.6227222,32.810706],[-83.622934,32.808737],[-83.6230266,32.8078081],[-83.6231875,32.8062865],[-83.6232183,32.805955600000004],[-83.62326660000001,32.8056506],[-83.6233471,32.8053369],[-83.62465970000001,32.8006262],[-83.62564640000001,32.796945900000004],[-83.6267577,32.7928226],[-83.6278307,32.789101800000005],[-83.62891660000001,32.7862601],[-83.63022910000001,32.7811536],[-83.63060270000001,32.7800099],[-83.63140750000001,32.778938600000004],[-83.63227930000001,32.778028400000004],[-83.6333427,32.776965100000005],[-83.6341762,32.7760952],[-83.6343774,32.7757166],[-83.634387,32.7744761]]},"id":"8444c0bffffffff-17d737843519ce28"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b498534-17b7fb210d723190","8f44c0a3484c4b4-17ffe0062afa71e8"]},"geometry":{"type":"LineString","coordinates":[[-83.64896300000001,32.834476],[-83.650039,32.835099],[-83.650968,32.833973]]},"id":"8744c0a34ffffff-17dfdd638290e661"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.681303,32.8967037]},"id":"8f44c0a05da2116-17d7d111a145420b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6688654,32.881627]},"id":"8f44c0a04d741ad-139eef6f2b3145d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[136.88,183.91],"value":"paved"}],"flags":[{"applyAt":[136.88,183.91],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d741ad-139eef6f2b3145d9","8f44c0a05da2116-17d7d111a145420b"]},"geometry":{"type":"LineString","coordinates":[[-83.681303,32.8967037],[-83.6804731,32.8956873],[-83.6801834,32.895340700000006],[-83.6792731,32.894244],[-83.67873440000001,32.893597],[-83.6776861,32.8923136],[-83.67665570000001,32.891021],[-83.6759504,32.8901333],[-83.675324,32.889362000000006],[-83.6745186,32.8883524],[-83.67368350000001,32.887381000000005],[-83.6731274,32.8867119],[-83.67255700000001,32.885987],[-83.6716646,32.8849845],[-83.67118310000001,32.8844001],[-83.67079000000001,32.883926],[-83.6688654,32.881627]]},"id":"8744c0a04ffffff-17f7b032fd95fac0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b532e6199-13f5fc05f7da5f6d","8f44c0b53310125-17f7fbbf4f019903"]},"geometry":{"type":"LineString","coordinates":[[-83.76212600000001,32.8963131],[-83.76195630000001,32.8965438],[-83.76185930000001,32.8967389],[-83.7618109,32.8968695],[-83.76176840000001,32.8970137],[-83.7617422,32.897227400000006],[-83.7617422,32.8974496],[-83.7617482,32.897598900000006],[-83.76177650000001,32.8977464],[-83.76182700000001,32.8979212],[-83.7618836,32.8980721],[-83.76223110000001,32.8986514],[-83.7625644,32.899168700000004],[-83.76271390000001,32.8994291],[-83.7627765,32.8997157],[-83.76279670000001,32.8999702],[-83.7627805,32.900163500000005],[-83.76273210000001,32.9003399],[-83.7626513,32.900519700000004],[-83.76249370000001,32.9007877],[-83.7621644,32.9011269],[-83.7620129,32.9012491]]},"id":"8844c0b533fffff-1797cb7487d2aa4e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,545.55],"maxSpeed":[35,"mph"]},{"applyAt":[545.55,628.13],"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a662a0c-13d7ea38024b888a","8f44c0b1a20ad89-13bffaea03b84187"]},"geometry":{"type":"LineString","coordinates":[[-83.65105600000001,32.825797],[-83.65083700000001,32.82586],[-83.65063,32.825927],[-83.65042700000001,32.826],[-83.650205,32.826085],[-83.649758,32.826248],[-83.649528,32.826323],[-83.649438,32.826352],[-83.64922200000001,32.826408],[-83.64902000000001,32.826444],[-83.648812,32.826481],[-83.648466,32.826514],[-83.648246,32.826523],[-83.64792700000001,32.826507],[-83.6478,32.826496],[-83.64772400000001,32.826489],[-83.647305,32.82641],[-83.647159,32.826371],[-83.647107,32.826357],[-83.64689,32.826286],[-83.646544,32.826143],[-83.646445,32.826096],[-83.64623,32.825996],[-83.6455995,32.8256889],[-83.6450714,32.825458000000005],[-83.64478720000001,32.8254232]]},"id":"8744c0b1affffff-139fe29ea60e0d78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5065c068-1795fded77a46e66","8f44c0b5065e22c-139dff04009285e1"]},"geometry":{"type":"LineString","coordinates":[[-83.76123290000001,32.8804163],[-83.76123290000001,32.8803009],[-83.76123290000001,32.8801849],[-83.7607909,32.880183],[-83.76078720000001,32.8806287]]},"id":"8944c0b5067ffff-17ddce9281b33262"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a0599a51a-1797fe80f773fe3d","8f44c0a0599aacc-17f6fd90416086d0"]},"geometry":{"type":"LineString","coordinates":[[-83.68890730000001,32.8994586],[-83.6887682,32.899746400000005],[-83.6889675,32.8998641],[-83.6891267,32.8998726],[-83.6892924,32.8996106]]},"id":"8844c0a059fffff-17befe4d2d4a3f35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[458.0,640.52],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a04d741ad-139eef6f2b3145d9","8f44c0a31b4aaac-17d6b7c702a7c85b"]},"geometry":{"type":"LineString","coordinates":[[-83.6688654,32.881627],[-83.6687203,32.8814062],[-83.66793990000001,32.8802186],[-83.66769000000001,32.8798078],[-83.6662045,32.878176100000005],[-83.665357,32.8772286],[-83.6653016,32.877133],[-83.6653082,32.877040900000004],[-83.6653374,32.8769785],[-83.66544800000001,32.8768097]]},"id":"8544c0a3fffffff-1797b3dd85f500e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6611654,32.8728004]},"id":"8f44c0a31b16849-17fec23ba65e3fcc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[156.01,610.47],"value":"paved"}],"flags":[{"applyAt":[156.01,202.87],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a31b16849-17fec23ba65e3fcc","8f44c0a31b18a76-13beffc7c39d07c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6611654,32.8728004],[-83.6613059,32.8730479],[-83.6615362,32.873365],[-83.6620271,32.874002600000004],[-83.6622856,32.8743645],[-83.66256940000001,32.8747392],[-83.66279150000001,32.875021600000004],[-83.6629114,32.8752177],[-83.66296410000001,32.875337],[-83.66296820000001,32.875472],[-83.662947,32.875568],[-83.66290400000001,32.875646],[-83.662839,32.875721],[-83.66275800000001,32.875781],[-83.662684,32.875814000000005],[-83.662631,32.87583],[-83.662529,32.875847],[-83.662452,32.87585],[-83.662373,32.875842],[-83.662265,32.875813],[-83.66219000000001,32.875777],[-83.66210000000001,32.875707000000006],[-83.66202600000001,32.875608],[-83.662014,32.875566],[-83.661986,32.875469],[-83.661983,32.875355],[-83.66199800000001,32.875062],[-83.66202700000001,32.87483],[-83.662079,32.874589],[-83.66212300000001,32.874445],[-83.662143,32.874381],[-83.66217,32.874314000000005]]},"id":"8844c0a31bfffff-1396ffc1db0289b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6609741,32.872221100000004]},"id":"8f44c0a31849db1-1396f2b3374ec24f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,677.86],"value":"paved"}],"flags":[{"applyAt":[444.65,488.14],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a31b4aaac-17d6b7c702a7c85b","8f44c0a31849db1-1396f2b3374ec24f"]},"geometry":{"type":"LineString","coordinates":[[-83.66544800000001,32.8768097],[-83.66524190000001,32.8768612],[-83.66514640000001,32.8768721],[-83.66506190000001,32.8768508],[-83.6646271,32.8763592],[-83.6634779,32.8749825],[-83.6631242,32.874574100000004],[-83.6628896,32.8743268],[-83.6625018,32.8738819],[-83.66222090000001,32.8735695],[-83.66137760000001,32.8726299],[-83.6609741,32.872221100000004]]},"id":"8844c0a31bfffff-1396bd54440680c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6650487,32.877431200000004]},"id":"8f44c0a31a646dd-13deb8c097fd46ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,541.91],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a31a646dd-13deb8c097fd46ce","8f44c0a31b188c9-13ffd013c7a360da"]},"geometry":{"type":"LineString","coordinates":[[-83.6620484,32.8742333],[-83.661967,32.87446],[-83.6619,32.874726],[-83.66186400000001,32.874933],[-83.66184200000001,32.875152],[-83.661837,32.875355],[-83.661843,32.875486],[-83.66186400000001,32.875582],[-83.661928,32.875711],[-83.66197000000001,32.87576],[-83.661983,32.875776],[-83.66207700000001,32.87585],[-83.66212800000001,32.875881],[-83.662276,32.875946],[-83.662385,32.875968],[-83.6624688,32.875984],[-83.6625861,32.875982400000005],[-83.66296340000001,32.875936800000005],[-83.6631239,32.875936100000004],[-83.663274,32.8759554],[-83.66345840000001,32.875995800000005],[-83.66360680000001,32.8760508],[-83.6637604,32.8761436],[-83.66405400000001,32.8764187],[-83.66452290000001,32.8769391],[-83.6650487,32.877431200000004]]},"id":"8844c0a31bfffff-17b6bd81c2ba548c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6836519,32.8998766]},"id":"8f44c0a05c008db-1796eb559bd1fc3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,509.3],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4b4c0-139e94b22f2174d0","8f44c0a05c008db-1796eb559bd1fc3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6836519,32.8998766],[-83.68379200000001,32.9001198],[-83.6839114,32.900306],[-83.6840231,32.9004642],[-83.684291,32.90083],[-83.68448260000001,32.9011036],[-83.6848056,32.901558200000004],[-83.6848891,32.901678600000004],[-83.6849669,32.901802],[-83.6850847,32.9020048],[-83.68547860000001,32.902751],[-83.685736,32.9032582],[-83.68579000000001,32.903366000000005],[-83.6858251,32.903424300000005],[-83.6858667,32.9034807],[-83.68590850000001,32.903526500000005],[-83.6859725,32.9035803],[-83.6860498,32.9036367],[-83.68614000000001,32.903690000000005],[-83.6862648,32.903744700000004],[-83.68637100000001,32.9037729]]},"id":"8744c0a05ffffff-1796982292169224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[199.3,377.28],"value":"paved"},{"applyAt":[0.0,199.3],"value":"unpaved"}]},"subType":"road","connectors":["8f44c0b5395419a-17fde3792db4a7e3","8f44c0b53969cb3-1395bcaa410cb9b9"]},"geometry":{"type":"LineString","coordinates":[[-83.76551500000001,32.8838286],[-83.7654936,32.8845353],[-83.76555780000001,32.8848228],[-83.7664992,32.884894700000004],[-83.7677544,32.884894700000004],[-83.768054,32.884888700000005],[-83.76830360000001,32.8846851]]},"id":"8944c0b5397ffff-139fd0de74272079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77058000000001,32.8799543]},"id":"8f44c0b50271794-17f7f71b840a9a08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,729.4],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b50271794-17f7f71b840a9a08","8f44c0b50390160-1795e5632027751d"]},"geometry":{"type":"LineString","coordinates":[[-83.77058000000001,32.8799543],[-83.77042700000001,32.879562],[-83.7703697,32.879446],[-83.770307,32.87933],[-83.770227,32.879212],[-83.77013570000001,32.8790889],[-83.7700403,32.8789748],[-83.7699377,32.8788658],[-83.76978980000001,32.8787293],[-83.769712,32.878653],[-83.7695922,32.8785614],[-83.769467,32.878472],[-83.769271,32.878348],[-83.7691343,32.8782772],[-83.76899230000001,32.878214400000005],[-83.7688711,32.8781626],[-83.7678166,32.8777594],[-83.76731790000001,32.8775703],[-83.76681930000001,32.8773678],[-83.76655670000001,32.8772463],[-83.7663548,32.8771336],[-83.7661583,32.877014100000004],[-83.76595490000001,32.8768679],[-83.76473100000001,32.8759134]]},"id":"8844c0b503fffff-13bfbdd82701c258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","flags":[{"applyAt":[95.07,214.76],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b50271794-17f7f71b840a9a08","8f44c0b502f4ae5-17dffefd755e1ef3"]},"geometry":{"type":"LineString","coordinates":[[-83.77058000000001,32.8799543],[-83.76956410000001,32.8799508],[-83.76828540000001,32.879924800000005],[-83.7676205,32.879917500000005],[-83.7673513,32.8799148]]},"id":"8844c0b503fffff-17fdfb0c87870128"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,289.2],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b5021a620-17f5bf64ce7803cf","8f44c0b5038a4b4-17d5e2bd548e4927"]},"geometry":{"type":"LineString","coordinates":[[-83.7658155,32.8772182],[-83.7661525,32.8776183],[-83.76622330000001,32.8777101],[-83.7662887,32.8778042],[-83.7664123,32.8779938],[-83.76671900000001,32.878511],[-83.7668546,32.878764100000005],[-83.766907,32.8788818],[-83.7670746,32.8792787],[-83.76718600000001,32.879541]]},"id":"8844c0b503fffff-1395d0e4d2d9abde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.77064100000001,32.8801095]},"id":"8f44c0b50246d65-17d5f6f56b7ec886"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","flags":[{"applyAt":[106.15,221.42],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b502f5cf5-17b7fed95996e69f","8f44c0b50246d65-17d5f6f56b7ec886"]},"geometry":{"type":"LineString","coordinates":[[-83.76740910000001,32.880062800000005],[-83.7685433,32.8800759],[-83.7690745,32.880082900000005],[-83.76977480000001,32.880097],[-83.7704176,32.880106600000005],[-83.77064100000001,32.8801095]]},"id":"8844c0b503fffff-17d5fae751a1470f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.75485160000001,32.8675313]},"id":"8f44c0b5051e10d-139fdd81cac8a13c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,349.82],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b5051e10d-139fdd81cac8a13c","8f44c0b5055c5a4-17ddd6d432317b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.75485160000001,32.8675313],[-83.75493820000001,32.8675486],[-83.75501410000001,32.867572700000004],[-83.75511180000001,32.867625000000004],[-83.75519870000001,32.8676796],[-83.7554853,32.867883400000004],[-83.75561,32.867984],[-83.75603600000001,32.868360700000004],[-83.75670600000001,32.868945000000004],[-83.7575869,32.8696521]]},"id":"8844c0b505fffff-139dda1b46a12f53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8e5b10-17f73ecc0e00c1c9","8f44c0b0bbb3cea-17f6fdfd74b15644"]},"geometry":{"type":"LineString","coordinates":[[-83.73499290000001,32.836542300000005],[-83.73487370000001,32.8360331],[-83.73482530000001,32.8357424],[-83.7347877,32.8354494],[-83.734769,32.8352801],[-83.7347495,32.835061700000004],[-83.7347259,32.8347137],[-83.7346624,32.8338739]]},"id":"8744c0b0bffffff-13bede7eaac9805f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0b8ac75e-13b7d4ed66071dff","8f44c0b0b98125d-1797d50cce4b91e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7321012,32.830236400000004],[-83.73211810000001,32.83071],[-83.7321388,32.8315524],[-83.7321464,32.8320383],[-83.7321505,32.832432600000004],[-83.7321514,32.8325404]]},"id":"8844c0b0b9fffff-17f7b4f981c22659"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7275312,32.8133106]},"id":"8f44c0b085216d2-13bf203506f984a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,434.77],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b085216d2-13bf203506f984a7","8f44c0b08cb0c06-13f77213a2e651ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7275312,32.8133106],[-83.7274519,32.8129463],[-83.7273935,32.8125775],[-83.7273747,32.812446200000004],[-83.7273607,32.812243],[-83.7273533,32.8119541],[-83.727339,32.8113388],[-83.7273342,32.8111267],[-83.7273213,32.810914700000005],[-83.72730130000001,32.8107777],[-83.72727330000001,32.8106407],[-83.7272511,32.8105538],[-83.727225,32.8104658],[-83.727153,32.8102754],[-83.72706760000001,32.8100862],[-83.72682040000001,32.809586800000005],[-83.7267654,32.809483900000004]]},"id":"8744c0b08ffffff-17ffa0d9cb9e0153"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,23.06],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b08cb69b2-13fee2a6319d272c","8f44c0b0e3694d3-139632fe5c1e746e"]},"geometry":{"type":"LineString","coordinates":[[-83.7265309,32.8091084],[-83.7264315,32.808985400000005],[-83.7263899,32.808937900000004]]},"id":"8a44c0b0e36ffff-13d722d1dfcddb46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7235953,32.805176800000005]},"id":"8f44c0b0e3250db-17f7a9d0f08efc5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,494.68],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e3250db-17f7a9d0f08efc5d","8f44c0b0e3694d3-139632fe5c1e746e"]},"geometry":{"type":"LineString","coordinates":[[-83.7263899,32.808937900000004],[-83.7262673,32.808798],[-83.7249013,32.8072578],[-83.7248107,32.8071493],[-83.7247201,32.8070384],[-83.72462820000001,32.8069135],[-83.72451860000001,32.8067379],[-83.7244185,32.806560000000005],[-83.724202,32.8061426],[-83.7240002,32.8057479],[-83.72381850000001,32.8054572],[-83.72371030000001,32.805314800000005],[-83.7235953,32.805176800000005]]},"id":"8744c0b0effffff-179ea69987c613a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[266.14,370.99],"value":"paved"},{"applyAt":[858.03,5088.73],"value":"paved"}],"flags":[{"applyAt":[266.14,370.99],"values":["isBridge"]},{"applyAt":[858.03,953.02],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b00165a15-17f7c9ddbf2d39b2","8f44c0b0e3288e4-13dff9322573c11d"]},"geometry":{"type":"LineString","coordinates":[[-83.71046770000001,32.7626008],[-83.710445,32.762979200000004],[-83.71044,32.7650001],[-83.7104382,32.7659455],[-83.7104274,32.7703372],[-83.7104276,32.771193700000005],[-83.71044,32.771536000000005],[-83.710464,32.7718414],[-83.7105063,32.7721168],[-83.7105846,32.772481],[-83.71068860000001,32.7728302],[-83.7107756,32.7730775],[-83.7108692,32.773305300000004],[-83.71099860000001,32.7735876],[-83.71111470000001,32.773810000000005],[-83.7113119,32.7741398],[-83.71189340000001,32.775062000000005],[-83.7122669,32.775652900000004],[-83.71263760000001,32.7762401],[-83.7129396,32.7767252],[-83.7133074,32.777303100000005],[-83.7138039,32.7780927],[-83.71473060000001,32.779560700000005],[-83.7154546,32.7807124],[-83.71577930000001,32.7812191],[-83.71591550000001,32.7814557],[-83.71605790000001,32.781677300000005],[-83.7163859,32.782192800000004],[-83.7170658,32.7832722],[-83.71738570000001,32.7837839],[-83.71765230000001,32.7842049],[-83.7180124,32.7847747],[-83.7183409,32.785301600000004],[-83.7186898,32.7858652],[-83.71886470000001,32.786178400000004],[-83.7190355,32.786527400000004],[-83.71917570000001,32.7868672],[-83.7193223,32.7872876],[-83.7194207,32.7876312],[-83.7194932,32.7879535],[-83.7195523,32.7882757],[-83.71958930000001,32.7885299],[-83.7196153,32.7888153],[-83.71982530000001,32.790811600000005],[-83.7199755,32.7922412],[-83.7200505,32.793001000000004],[-83.720124,32.7936701],[-83.7202475,32.7948755],[-83.72029110000001,32.795308500000004],[-83.72035000000001,32.7958518],[-83.72046060000001,32.796934400000005],[-83.72049200000001,32.7972374],[-83.720555,32.797759500000005],[-83.7206476,32.798379600000004],[-83.720732,32.7988039],[-83.7208148,32.799162200000005],[-83.7209476,32.7996803],[-83.7210999,32.8001841],[-83.721371,32.800944300000005],[-83.7217346,32.8017826],[-83.722544,32.8034672],[-83.7232659,32.8049637],[-83.7235684,32.805582900000005],[-83.7238494,32.8061661]]},"id":"8544c0b3fffffff-17befb26dde99d29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7278715,32.8146275]},"id":"8f44c0b08576492-17f63f605ff088e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,533.05],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b08576492-17f63f605ff088e6","8f44c0b0e265092-17be35eabb4f3ad2"]},"geometry":{"type":"LineString","coordinates":[[-83.7251925,32.8104099],[-83.7252931,32.8106117],[-83.7254441,32.8109322],[-83.7256057,32.8112494],[-83.7257027,32.8114161],[-83.72580470000001,32.8115691],[-83.7258853,32.8116779],[-83.7259686,32.8117788],[-83.72671170000001,32.8126637],[-83.72682,32.812794700000005],[-83.7269491,32.8129696],[-83.7270134,32.813067600000004],[-83.72707580000001,32.8131689],[-83.72712840000001,32.8132679],[-83.7271784,32.813367],[-83.7275262,32.814073400000005],[-83.7276901,32.81436],[-83.7277775,32.8144949],[-83.7278715,32.8146275]]},"id":"8644c0b0fffffff-13df22a59da2bf78"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,347.6],"value":"paved"},{"applyAt":[457.16,510.48],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a34388a73-13b7fd82fed742cb","8f44c0a34a99861-1797e5b34e8d59b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6434385,32.844805900000004],[-83.6436956,32.844354],[-83.64396190000001,32.8439901],[-83.64416890000001,32.843744300000004],[-83.6443816,32.8434972],[-83.6446408,32.843203200000005],[-83.644908,32.842913],[-83.6450702,32.8427431],[-83.6453144,32.8424831],[-83.6455483,32.8422387],[-83.64586290000001,32.8418945],[-83.6462826,32.841469700000005],[-83.64663800000001,32.841094000000005]]},"id":"8744c0a34ffffff-13ffe9c68d4ebc6f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[449.75,608.93],"values":["isBridge"]},"isLink"],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30a29656-1396f7aa2c4b0a81","8f44c0a30876d0d-17bff2099d8e47e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6458334,32.860961100000004],[-83.6447847,32.8604001],[-83.6444548,32.860242400000004],[-83.64408730000001,32.8600441],[-83.64383790000001,32.8598999],[-83.6434838,32.859667800000004],[-83.6431003,32.8593682],[-83.6424813,32.8587632],[-83.64232580000001,32.8586033],[-83.6421801,32.858398900000005],[-83.6420556,32.858219500000004],[-83.64193800000001,32.8580368],[-83.64182740000001,32.857851000000004],[-83.6417239,32.8576624],[-83.6416277,32.857471100000005],[-83.6415429,32.8572866],[-83.64146480000001,32.8570999],[-83.6413773,32.856857000000005],[-83.6412995,32.8566117],[-83.6412622,32.856414400000006],[-83.6412334,32.856234400000005],[-83.6411916,32.8560193],[-83.6411664,32.855847700000005],[-83.64112030000001,32.8555778],[-83.6410893,32.855327800000005],[-83.6410913,32.8550963],[-83.64113420000001,32.8548507],[-83.64118520000001,32.854623100000005],[-83.6412294,32.854463200000005],[-83.64131420000001,32.8541698],[-83.64143460000001,32.853839],[-83.64158470000001,32.8534266]]},"id":"8744c0a30ffffff-13b7ffa810009fe6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b042d2742-13d7e350e5b6d18b","8f44c0b04aadaee-179ef3c6137fc8f1"]},"geometry":{"type":"LineString","coordinates":[[-83.7131506,32.753955000000005],[-83.7134576,32.7534471],[-83.71399020000001,32.7525696],[-83.71517610000001,32.7506223],[-83.715632,32.749884900000005],[-83.71591140000001,32.7494545],[-83.7162728,32.7489312],[-83.71672360000001,32.748333200000005],[-83.7169732,32.7480167],[-83.7171986,32.7477408],[-83.71746320000001,32.7474331],[-83.7177722,32.7470857],[-83.718107,32.7467247],[-83.7185717,32.7462214],[-83.71879630000001,32.745983100000004],[-83.7189659,32.7457933],[-83.71908330000001,32.7456446],[-83.71919940000001,32.745479],[-83.7192488,32.745398],[-83.71930640000001,32.745293700000005],[-83.7193586,32.7451918],[-83.7195167,32.74483]]},"id":"8744c0b04ffffff-17febbd21b074639"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,1367.2],"value":"paved"}],"flags":[{"applyAt":[709.81,768.14],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2875a71a-17d72434caf6295d","8f44c0a2a85a124-13b756b2fcf5b1f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7258932,32.9255506],[-83.72379000000001,32.924718],[-83.722762,32.924312],[-83.7197884,32.923142500000004],[-83.71901820000001,32.9228405],[-83.71845280000001,32.9226187],[-83.717436,32.92222],[-83.715272,32.921365],[-83.7126484,32.9203357],[-83.7117649,32.919989300000005]]},"id":"8644c0a2fffffff-17ff757317281c6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7058796,32.9177915]},"id":"8f44c0a2a893b4e-13d7f5114e96e2a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a2a893b4e-13d7f5114e96e2a1","8f44c0a2a8c2755-13b66d57f7e0bd50"]},"geometry":{"type":"LineString","coordinates":[[-83.7058796,32.9177915],[-83.706308,32.918241],[-83.70676900000001,32.918765],[-83.707098,32.919119],[-83.70729,32.919282],[-83.707496,32.919430500000004],[-83.70771330000001,32.9195616],[-83.70782460000001,32.9196252],[-83.7079348,32.91968],[-83.7081146,32.919752700000004],[-83.7082451,32.9197991],[-83.7083686,32.9198401],[-83.7085193,32.919879],[-83.7086616,32.9199094],[-83.7088526,32.919944900000004],[-83.7090433,32.9199718]]},"id":"8844c0a2a9fffff-179f5188893060ec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6900109,32.9053684]},"id":"8f44c0a05176476-17ff7bcf3f893da2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[383.0,1267.75],"value":"paved"}],"flags":[{"applyAt":[383.0,498.07],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a05176476-17ff7bcf3f893da2","8f44c0a05da2116-17d7d111a145420b"]},"geometry":{"type":"LineString","coordinates":[[-83.6900109,32.9053684],[-83.6894166,32.9049665],[-83.68878930000001,32.904541300000005],[-83.688491,32.904339],[-83.6881843,32.9041231],[-83.68789000000001,32.903895],[-83.687391,32.903498],[-83.6869147,32.903113000000005],[-83.68680330000001,32.903006000000005],[-83.686608,32.902804],[-83.68609020000001,32.902343800000004],[-83.6859242,32.9021917],[-83.68573590000001,32.9019998],[-83.68528500000001,32.9015141],[-83.6849799,32.901153],[-83.6846337,32.900737400000004],[-83.68342990000001,32.899281200000004],[-83.68181820000001,32.8973463],[-83.681303,32.8967037]]},"id":"8644c0a07ffffff-1396b70ec4f719d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,697.74],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a05c4691c-139795fa2fa17a86","8f44c0a05da2116-17d7d111a145420b"]},"geometry":{"type":"LineString","coordinates":[[-83.6858462,32.901692100000005],[-83.68568110000001,32.901507800000005],[-83.6852308,32.901003],[-83.68477390000001,32.9005001],[-83.6842558,32.8999305],[-83.68339710000001,32.898982000000004],[-83.68294180000001,32.8984723],[-83.68189550000001,32.8973111],[-83.68159650000001,32.8969911],[-83.681303,32.8967037]]},"id":"8844c0a05dfffff-17fecb7f169a456c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6915491,32.9067087]},"id":"8f44c0a05145088-17d6f80dd5011f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,489.6],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a051146dc-1397a2782083cc27","8f44c0a05145088-17d6f80dd5011f0f"]},"geometry":{"type":"LineString","coordinates":[[-83.68728300000001,32.9041522],[-83.6877491,32.9044346],[-83.6881319,32.9046636],[-83.6887928,32.905054],[-83.6891404,32.9052592],[-83.6894891,32.905470900000005],[-83.6897921,32.905660000000005],[-83.6901737,32.9058982],[-83.69086440000001,32.906317],[-83.6915491,32.9067087]]},"id":"8844c0a051fffff-17be7d443111c695"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a05176476-17ff7bcf3f893da2","8f44c0a05c6ad8b-17f7b39e60f2e4fa"]},"geometry":{"type":"LineString","coordinates":[[-83.6900109,32.9053684],[-83.68948300000001,32.9049197],[-83.68884560000001,32.904412900000004],[-83.6886635,32.9042702],[-83.68844870000001,32.9040906],[-83.6882963,32.9039342],[-83.68808440000001,32.9036952],[-83.6877724,32.9032983],[-83.6874466,32.902884],[-83.6871593,32.9025102],[-83.68711730000001,32.902464],[-83.6870731,32.902423],[-83.68701940000001,32.902379],[-83.686964,32.9023401],[-83.68689,32.9022962],[-83.6868122,32.902258700000004]]},"id":"8744c0a05ffffff-13deffd5cdb371cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","flags":[{"applyAt":[369.04,437.56],"values":["isBridge"]},{"applyAt":[660.48,734.7],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c50866c-179fb04a2daffb6f","8f44c0b1c4db894-17d6f7dcfb6a0a88"]},"geometry":{"type":"LineString","coordinates":[[-83.6654129,32.7943012],[-83.66564290000001,32.7939127],[-83.6657989,32.7936204],[-83.6659339,32.793343300000004],[-83.6660592,32.793051000000006],[-83.66630140000001,32.7924659],[-83.6668302,32.791200100000005],[-83.6670814,32.7906198],[-83.6672321,32.790250900000004],[-83.6673166,32.7900683],[-83.66741800000001,32.789885600000005],[-83.6676063,32.789524],[-83.66788050000001,32.7890657],[-83.6680697,32.788796000000005],[-83.668515,32.7882424]]},"id":"8744c0b1cffffff-17dff44ba090fc29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":[{"applyAt":[454.24,514.76],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0b1c506050-13d6b2833fa71981","8f44c0b1c4e640e-1797f563be78fde2"]},"geometry":{"type":"LineString","coordinates":[[-83.66760450000001,32.786694600000004],[-83.6675975,32.786946],[-83.667603,32.787103],[-83.66760400000001,32.787596],[-83.66757100000001,32.7879504],[-83.6675474,32.7881566],[-83.66750970000001,32.7883811],[-83.66745710000001,32.788612300000004],[-83.6673952,32.7888232],[-83.667294,32.7891531],[-83.66717530000001,32.7895307],[-83.66710060000001,32.789751800000005],[-83.6670375,32.7899474],[-83.6667426,32.7906951],[-83.6665414,32.7912137],[-83.66647710000001,32.791473],[-83.66642610000001,32.7917367]]},"id":"8844c0b1c5fffff-13fff392b9a68de1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1b511848-13d6f095b4debb31","8f44c0b1bcaca5b-13f7c8850fca18ae"]},"geometry":{"type":"LineString","coordinates":[[-83.65528690000001,32.8294927],[-83.65551620000001,32.829269100000005],[-83.655662,32.829127],[-83.65617300000001,32.828651],[-83.656232,32.828595],[-83.656434,32.828417],[-83.656626,32.828262],[-83.65672,32.828195],[-83.65742940000001,32.8277303],[-83.65786100000001,32.827449],[-83.658212,32.827224],[-83.65834500000001,32.827121000000005],[-83.658429,32.827047],[-83.658465,32.827000000000005],[-83.658495,32.82696],[-83.65854200000001,32.826878],[-83.658573,32.826783],[-83.65858700000001,32.826704],[-83.6586,32.826576],[-83.6585986,32.8264498],[-83.65859040000001,32.826091600000005]]},"id":"8744c0b1bffffff-17d6ec01cb4b3026"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1a349a1e-13f7dff967695692","8f44c0b1aac5a04-17dfeefe5dc50d31"]},"geometry":{"type":"LineString","coordinates":[[-83.65593870000001,32.820911],[-83.6559637,32.821277900000005],[-83.65601960000001,32.821641400000004],[-83.65610240000001,32.8220266],[-83.65612490000001,32.8221553],[-83.656142,32.822284],[-83.65614500000001,32.822449500000005],[-83.65614000000001,32.822615],[-83.656108,32.822871],[-83.65607800000001,32.823022],[-83.65596400000001,32.823372],[-83.65575100000001,32.824002],[-83.65565740000001,32.8242694],[-83.655608,32.8244039],[-83.65558100000001,32.824492],[-83.65554200000001,32.824669],[-83.655524,32.824854],[-83.655519,32.825026],[-83.65553700000001,32.8254749]]},"id":"8644c0b1fffffff-13f7df274f45aefe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[561.22,633.69],"value":"paved"}],"flags":[{"applyAt":[510.68,561.22],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,118.76],"maxSpeed":[70,"mph"]},{"applyAt":[118.76,633.69],"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ab114e3-13f6ff513e200241","8f44c0b1aac5a04-17dfeefe5dc50d31"]},"geometry":{"type":"LineString","coordinates":[[-83.6558061,32.8152071],[-83.6557928,32.8162779],[-83.6557858,32.8169716],[-83.6557689,32.8190876],[-83.6557641,32.8195457],[-83.65577130000001,32.8198117],[-83.655817,32.8202658],[-83.65585800000001,32.8205241],[-83.6559077,32.820775600000005],[-83.65593870000001,32.820911]]},"id":"8844c0b1abfffff-17deff58c4941e3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6559459,32.8175687]},"id":"8f44c0b1aa0686d-17b6fef9db04ed10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0b1ab06c66-17b7cd6fc220d926","8f44c0b1aa0686d-17b6fef9db04ed10"]},"geometry":{"type":"LineString","coordinates":[[-83.6559459,32.8175687],[-83.6561356,32.816497600000005],[-83.656197,32.816091],[-83.6562382,32.8158827],[-83.6563107,32.815595300000005],[-83.6564994,32.814833],[-83.6565764,32.8144952]]},"id":"8844c0b1abfffff-13f6ee43c5c34501"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6410609,32.8538131]},"id":"8f44c0a3080d703-17b7f350fb768853"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"applyAt":[499.92,1096.6],"maxSpeed":[60,"mph"]},{"applyAt":[499.92,1096.6],"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a3080d703-17b7f350fb768853","8f44c0a3438c86c-17b7ed4fa92b32b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6410609,32.8538131],[-83.64114740000001,32.8536072],[-83.64119170000001,32.8534947],[-83.6412294,32.853372400000005],[-83.64139780000001,32.852864100000005],[-83.6415353,32.852485],[-83.64184780000001,32.8516161],[-83.64198730000001,32.8511985],[-83.6420562,32.850971200000004],[-83.6421602,32.8506517],[-83.64222020000001,32.850337200000006],[-83.6422692,32.849986900000005],[-83.64232080000001,32.8494477],[-83.6423458,32.8490249],[-83.6423948,32.8481303],[-83.6424322,32.8474771],[-83.64247350000001,32.8470699],[-83.6425485,32.8466146],[-83.6426069,32.8463597],[-83.64268820000001,32.8460673],[-83.6427882,32.8457413],[-83.642864,32.8455304],[-83.6429222,32.845383000000005],[-83.6430368,32.8451207],[-83.6431793,32.8448268],[-83.6435206,32.8442226]]},"id":"8644c0a37ffffff-13f6f05c87b173e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34aaa493-17bef3e428f1dd6f","8f44c0a34a99861-1797e5b34e8d59b8"]},"geometry":{"type":"LineString","coordinates":[[-83.64663800000001,32.841094000000005],[-83.64681370000001,32.8408742],[-83.647137,32.840473],[-83.647379,32.8401325]]},"id":"8944c0a34abffff-17fee4c7c8f44684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64933330000001,32.8368999]},"id":"8f44c0a34bad462-17d6ff1eb1a8a823"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34bad462-17d6ff1eb1a8a823","8f44c0a34aaa493-17bef3e428f1dd6f"]},"geometry":{"type":"LineString","coordinates":[[-83.647379,32.8401325],[-83.6474299,32.8400574],[-83.647677,32.839551400000005],[-83.647913,32.8390781],[-83.64809430000001,32.8387369],[-83.648138,32.838664],[-83.6482036,32.8385569],[-83.6483018,32.8384001],[-83.6484113,32.8382456],[-83.6486411,32.837944400000005],[-83.64883760000001,32.837690900000005],[-83.64901540000001,32.8374295],[-83.64918580000001,32.837163000000004],[-83.64933330000001,32.8368999]]},"id":"8844c0a34bfffff-13bff19b90f18b8b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64848950000001,32.837692600000004]},"id":"8f44c0a34b8c22a-17d7e12e107e7f5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a34aa212a-13fee49106cb2e0b","8f44c0a34b8c22a-17d7e12e107e7f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.64848950000001,32.837692600000004],[-83.64810580000001,32.8380312],[-83.64773290000001,32.838382200000005],[-83.64756480000001,32.838546400000006],[-83.6472392,32.8388523],[-83.64710240000001,32.8389832]]},"id":"8844c0a34bfffff-13d7f2e283e36711"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":[{"applyAt":[87.5,171.24],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0a34a86163-13d6f5ed746645ff","8f44c0a34a9ac11-17fff87334bef54a"]},"geometry":{"type":"LineString","coordinates":[[-83.64654490000001,32.8395567],[-83.6460235,32.8402115],[-83.6458023,32.840486],[-83.6455117,32.840830700000005]]},"id":"8944c0a34abffff-17f7e72e04b4d48e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8284565-17ff4746a959bf3f","8f44c0ba80708d8-179fe479cc978437"]},"geometry":{"type":"LineString","coordinates":[[-83.60781800000001,32.807515],[-83.607588,32.8075648],[-83.6069657,32.810306100000005],[-83.60715880000001,32.810738900000004],[-83.60754510000001,32.8109373],[-83.60782400000001,32.8112439],[-83.60748070000001,32.8121456],[-83.60715880000001,32.813065300000005],[-83.607309,32.8135342],[-83.6073949,32.813858800000006],[-83.607073,32.8141113],[-83.606671,32.814224]]},"id":"8744c0ba8ffffff-179745aae1669cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,266.13],"value":"paved"}],"flags":[{"applyAt":[116.68,235.45],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a1e59b-179f73b046d088bc","8f44c0b04ab3011-13dffa69b44cf205"]},"geometry":{"type":"LineString","coordinates":[[-83.71679730000001,32.7441054],[-83.7170632,32.7441911],[-83.7172991,32.7442669],[-83.7174937,32.7443228],[-83.71770570000001,32.744383],[-83.71797520000001,32.7444435],[-83.7181551,32.7444852],[-83.7183332,32.7445192],[-83.7184536,32.7445383],[-83.7186406,32.744563400000004],[-83.71883940000001,32.7445822],[-83.7190321,32.744596900000005],[-83.71909570000001,32.7446004],[-83.7192244,32.7446076],[-83.7193465,32.744610800000004],[-83.7195516,32.7446166]]},"id":"8844c0b04bfffff-139f3715dbc9c416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a2d223-13fe3bc9bc3ebde1","8f44c0b04b58c42-13d77a17b13adf5c"]},"geometry":{"type":"LineString","coordinates":[[-83.72278770000001,32.7441539],[-83.7233131,32.744131200000005],[-83.7234821,32.744123900000005]]},"id":"8944c0b04b7ffff-13defaf0b3681587"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2c6280-13b671a2d5e6d95f","8f44c0b0e2f154c-17bf71a3581f9f9a"]},"geometry":{"type":"LineString","coordinates":[[-83.7203923,32.8120615],[-83.7203911,32.811925],[-83.72038950000001,32.811745800000004],[-83.7203915,32.8114359]]},"id":"8944c0b0e2fffff-17fef1a3d37c77b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e2c2354-13b631a85e34cf50","8f44c0b0e2c282d-13fef1a22b5a4a23"]},"geometry":{"type":"LineString","coordinates":[[-83.72038350000001,32.8124482],[-83.72038450000001,32.8123783],[-83.72039410000001,32.8122599],[-83.7203934,32.812180600000005]]},"id":"8b44c0b0e2c2fff-13d6b1a4cb945dad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":[{"applyAt":[102.06,194.18],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b0e2c359c-139671b2dea417a4","8f44c0b0e2e1a25-17feeda3681a0a87"]},"geometry":{"type":"LineString","coordinates":[[-83.7220298,32.8115596],[-83.7218325,32.8117176],[-83.72118880000001,32.8121437],[-83.7206014,32.8124559],[-83.7203667,32.8125991]]},"id":"8944c0b0e2fffff-13dfafa21c3c84e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08cb69b2-13fee2a6319d272c","8f44c0b0e348743-13d7e5282f1efdc0"]},"geometry":{"type":"LineString","coordinates":[[-83.7265309,32.8091084],[-83.7260564,32.809361100000004],[-83.7259257,32.8094319],[-83.7255038,32.8096604]]},"id":"8944c0b0e37ffff-13beb3e77ddd9900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b544e1c45-17d7ee0ad4408e1b","8f44c0b5441a6f1-17f5f1cf20389e1f"]},"geometry":{"type":"LineString","coordinates":[[-83.7611859,32.851027],[-83.76113000000001,32.850994],[-83.76079990000001,32.850819800000004],[-83.76051600000001,32.850645],[-83.76029600000001,32.850502],[-83.76015220000001,32.8504013],[-83.75964300000001,32.850023]]},"id":"8844c0b545fffff-17bdcff6a580b7f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2505bb0b-179fb64e9a5409a7","8f44c0a253b3554-13fef8ede15848d9"]},"geometry":{"type":"LineString","coordinates":[[-83.7239586,32.864580700000005],[-83.724249,32.864283],[-83.7243861,32.864139900000005],[-83.72468190000001,32.863862600000004],[-83.7248058,32.8637631],[-83.7250327,32.8636345]]},"id":"8744c0a25ffffff-17b767ac7fabdc36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a28348425-17ffe95cf91ed08d","8f44c0a29d932a8-17bec59e4bdf58d2"]},"geometry":{"type":"LineString","coordinates":[[-83.7368881,32.9262238],[-83.737024,32.926161],[-83.73716900000001,32.92609],[-83.7373932,32.9259612],[-83.73755600000001,32.925837],[-83.73779400000001,32.925626],[-83.7380334,32.9253689],[-83.738422,32.924926]]},"id":"8744c0a28ffffff-17ffd75cf1a5e38d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2820a98e-13bfd2359ef697a8","8f44c0a2821ba00-13b6343a09ba46ae"]},"geometry":{"type":"LineString","coordinates":[[-83.7324384,32.927337900000005],[-83.73280770000001,32.927133600000005],[-83.73314810000001,32.9269825],[-83.7332647,32.9269437]]},"id":"8944c0a2823ffff-139e733bbcc1f632"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,169.25],"value":"paved"}],"flags":[{"applyAt":[88.19,169.24],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a282d215b-179f58f750b3212d","8f44c0a2821ba00-13b6343a09ba46ae"]},"geometry":{"type":"LineString","coordinates":[[-83.73049710000001,32.928946100000005],[-83.73078220000001,32.928700400000004],[-83.73116440000001,32.928384300000005],[-83.73177000000001,32.9278616],[-83.7321287,32.927558600000005],[-83.7322223,32.9274855],[-83.7324384,32.927337900000005]]},"id":"8844c0a283fffff-1797f69dff4ba2bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71448000000001,32.931176]},"id":"8f44c0a2bcb6102-139740120142ab3b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2bcb6102-139740120142ab3b","8f44c0a2aad10e3-13d6e431318ea2af"]},"geometry":{"type":"LineString","coordinates":[[-83.71279170000001,32.9276014],[-83.7131006,32.9282436],[-83.71321130000001,32.9284854],[-83.71333270000001,32.9287506],[-83.71348300000001,32.929073],[-83.713943,32.930073],[-83.714208,32.930653],[-83.71431700000001,32.930872],[-83.71448000000001,32.931176]]},"id":"8744c0a2affffff-17b7f2258cf37c1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa8c2f5-179f760dde2d32cc","8f44c0a2aa89140-17f6e576554e6a22"]},"geometry":{"type":"LineString","coordinates":[[-83.71202910000001,32.9258995],[-83.7121752,32.9262366],[-83.7122715,32.9264462]]},"id":"8a44c0a2aa8ffff-17de75c2fccaa0c0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aad10e3-13d6e431318ea2af","8f44c0a2aad4462-13d7c51463651c2c"]},"geometry":{"type":"LineString","coordinates":[[-83.7124282,32.9268024],[-83.7124847,32.926920200000005],[-83.7126458,32.9272648],[-83.7127201,32.927429700000005],[-83.71279170000001,32.9276014]]},"id":"8a44c0a2aad7fff-13de64a070a9190d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.714139,32.930013]},"id":"8f44c0a2a36c432-13be60e726723120"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a36c432-13be60e726723120","8f44c0a2aad1a28-13b663a66acf216c"]},"geometry":{"type":"LineString","coordinates":[[-83.714139,32.930013],[-83.7140385,32.9297957],[-83.7137972,32.9292688],[-83.71352830000001,32.9286842],[-83.7133536,32.9283045],[-83.7130527,32.9276501],[-83.7130138,32.9275654]]},"id":"8744c0a2affffff-17bf4246ca7da759"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab9aa99-17ffe8940b9d0d41","8f44c0a2aaa2ce1-13bfc79204f9ff44"]},"geometry":{"type":"LineString","coordinates":[[-83.711408,32.9240824],[-83.7112293,32.9236653],[-83.7109952,32.923161]]},"id":"8844c0a2abfffff-139ee810e7d4e59d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,102.12],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,102.12],"maxSpeed":[45,"mph"]},{"applyAt":[102.12,210.06],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa8c2f5-179f760dde2d32cc","8f44c0a2aaa2582-13dfc7fcee3c7e46"]},"geometry":{"type":"LineString","coordinates":[[-83.71123700000001,32.9241272],[-83.71162410000001,32.9249882],[-83.71180240000001,32.9253945],[-83.71202910000001,32.9258995]]},"id":"8944c0a2aabffff-17f777051b9b9c0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[70.46,128.52],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a2ce0-17b771cce557817f","8f44c0a2a8ae2b1-13f66fd0038cdb3f"]},"geometry":{"type":"LineString","coordinates":[[-83.70721780000001,32.9164819],[-83.70727360000001,32.9166164],[-83.7073919,32.916719900000004],[-83.7076509,32.9169922],[-83.70776400000001,32.917101],[-83.708032,32.917405]]},"id":"8944c0a2a8bffff-13d7d0d6bc90d3e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8a8318-1397febe2658ece5","8f44c0a2a8a2ae5-139ef11db1e381bb"]},"geometry":{"type":"LineString","coordinates":[[-83.70847020000001,32.9176859],[-83.7081301,32.917264],[-83.7078085,32.916928500000004],[-83.70749810000001,32.9166511]]},"id":"8944c0a2a8bffff-13d74fe232103855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0503098c-17be9293d804aa1c","8f44c0a051ad336-17deb2d5a6f3966c"]},"geometry":{"type":"LineString","coordinates":[[-83.68723870000001,32.9062593],[-83.6872974,32.9061874],[-83.6872615,32.9059899],[-83.6871608,32.9054258],[-83.68713340000001,32.9053059]]},"id":"8844c0a051fffff-1797d29e00c64b2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c45760-17d7a43efbc23cd5","8f44c0a05c4bb26-13dee3ae07553981"]},"geometry":{"type":"LineString","coordinates":[[-83.68678720000001,32.9036518],[-83.6866827,32.903080700000004],[-83.68664030000001,32.9028817],[-83.6866086,32.9026964],[-83.6865645,32.9024749],[-83.6865554,32.902254],[-83.68655530000001,32.902203400000005]]},"id":"8944c0a05c7ffff-179ed4007d3d3241"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c6464e-13d7b36dae1f0b77","8f44c0a05c63586-13def47d7ca74976"]},"geometry":{"type":"LineString","coordinates":[[-83.68689020000001,32.9010035],[-83.6867113,32.901169200000005],[-83.6865925,32.9013192],[-83.68655650000001,32.9013866],[-83.6864553,32.901601500000005]]},"id":"8a44c0a05c67fff-1397f4062ff98141"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20460719-13d6f334d91f480b","8f44c0a20475d00-1397752f819de6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.692724,32.8652338],[-83.69312120000001,32.8654993],[-83.6935347,32.8657739]]},"id":"8944c0a2047ffff-13be7432576a416f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20460719-13d6f334d91f480b","8f44c0a2046ccd6-17ff7190caed411b"]},"geometry":{"type":"LineString","coordinates":[[-83.6935347,32.8657739],[-83.69389770000001,32.866015600000004],[-83.6942068,32.8662164]]},"id":"8944c0a2047ffff-17dff2633c5d2699"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5029e233-17d5e6e8c87c64cd","8f44c0b50642b64-17d7fd2957a159c9"]},"geometry":{"type":"LineString","coordinates":[[-83.7641076,32.8798794],[-83.76277400000001,32.879859700000004],[-83.76244050000001,32.879856600000004],[-83.76212240000001,32.8798535],[-83.76176190000001,32.8798497],[-83.76154670000001,32.8799075]]},"id":"8744c0b50ffffff-17bfda0b33a46e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b502d6603-13b5d2a63ac30779","8f44c0b502d3d65-13bdd1cf8cd4d891"]},"geometry":{"type":"LineString","coordinates":[[-83.76585250000001,32.8810817],[-83.7658136,32.8810809],[-83.7658036,32.8814914],[-83.76619600000001,32.8814981]]},"id":"8a44c0b502d7fff-13fff2894c4d1af1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[0.0,42.36],"value":"paved"}]},"subType":"road","connectors":["8f44c0b50288621-17dde32ea9962b8c","8f44c0b53925832-13b7f35f3f59184e"]},"geometry":{"type":"LineString","coordinates":[[-83.76563420000001,32.8803014],[-83.7656276,32.8804174],[-83.7655855,32.8806808],[-83.7655565,32.8808815]]},"id":"8844c0b503fffff-1395e3449a95d4cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53928742-17dfd3639cc74e17","8f44c0b5392c425-13ddc362da67f735"]},"geometry":{"type":"LineString","coordinates":[[-83.7655507,32.881755600000005],[-83.7655502,32.881994500000005],[-83.7655495,32.8823549]]},"id":"8a44c0b5392ffff-1395c3633de2f224"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53928742-17dfd3639cc74e17","8f44c0b5390d949-17d5d369b4909c83"]},"geometry":{"type":"LineString","coordinates":[[-83.7655495,32.8823549],[-83.76554750000001,32.882581800000004],[-83.7655397,32.882970900000004]]},"id":"8944c0b5393ffff-1795d36623bc1ef2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5395419a-17fde3792db4a7e3","8f44c0b5390d949-17d5d369b4909c83"]},"geometry":{"type":"LineString","coordinates":[[-83.7655397,32.882970900000004],[-83.76552740000001,32.8834162],[-83.76551500000001,32.8838286]]},"id":"8844c0b539fffff-17dde37140844e6c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b53824695-139fc6fcb6533fc8","8f44c0b53956896-17f7e47836a56ad9"]},"geometry":{"type":"LineString","coordinates":[[-83.7651069,32.883825],[-83.7647232,32.8838251],[-83.76455580000001,32.8838541],[-83.7644231,32.8838871],[-83.7640757,32.883888400000004]]},"id":"8844c0b539fffff-17fdc5baa6d8e843"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b53900792-13f5c6fcfb2cbb59","8f44c0b5391d213-17bde6f8f4bf17f5"]},"geometry":{"type":"LineString","coordinates":[[-83.7640753,32.8822108],[-83.7640769,32.882708300000004],[-83.7640817,32.883139]]},"id":"8944c0b5393ffff-1797d6fb866abdab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b5029b79e-1395c6f1c9fe1a6f","8f44c0b53935186-13bfd6f0402c98d6"]},"geometry":{"type":"LineString","coordinates":[[-83.7640932,32.880597200000004],[-83.76409380000001,32.8806646],[-83.7640956,32.8808689]]},"id":"8a44c0b53937fff-13dfe6f1038d486e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b50642b64-17d7fd2957a159c9","8f44c0b50668040-179dc950dd29968e"]},"geometry":{"type":"LineString","coordinates":[[-83.76154670000001,32.8799075],[-83.7617395,32.8799573],[-83.76211860000001,32.879961300000005],[-83.7626819,32.879982500000004],[-83.7631219,32.87999]]},"id":"8944c0b5067ffff-17fffb3ece3b0c5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","flags":[{"applyAt":[466.43,506.75],"values":["isBridge"]},{"applyAt":[838.25,871.51],"values":["isBridge"]},{"applyAt":[1080.4,1121.87],"values":["isBridge"]},{"applyAt":[1194.82,1234.29],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[1234.29,1495.03],"maxSpeed":[50,"mph"]},{"applyAt":[0.0,1234.29],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1572b753-17fed129689a0459","8f44c0b111068ec-17f7c6a9a7de2e81"]},"geometry":{"type":"LineString","coordinates":[[-83.6616042,32.7580801],[-83.6615953,32.7585707],[-83.661569,32.75907],[-83.661551,32.759345],[-83.66154200000001,32.759620000000005],[-83.66153580000001,32.759832],[-83.66153,32.760095],[-83.661479,32.761072],[-83.661461,32.761563],[-83.661432,32.762022],[-83.661406,32.762282],[-83.661387,32.762549],[-83.661382,32.762645],[-83.661349,32.762889],[-83.661264,32.763343],[-83.66114300000001,32.763848],[-83.660865,32.764922],[-83.66070900000001,32.76549],[-83.6606861,32.765574],[-83.6606112,32.7658672],[-83.66025900000001,32.767235],[-83.66012810000001,32.767706000000004],[-83.66011400000001,32.767753],[-83.66003260000001,32.7680711],[-83.659868,32.768714],[-83.65980900000001,32.768945],[-83.65977910000001,32.769061900000004],[-83.659547,32.769969],[-83.659498,32.77024],[-83.65944800000001,32.770558],[-83.6594254,32.770753],[-83.65938,32.771105],[-83.659351,32.771382]]},"id":"8644c0b17ffffff-17bee34ee24f0d7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,782.2],"value":"paved"},{"applyAt":[830.03,955.13],"value":"paved"}],"flags":[{"applyAt":[202.61,720.31],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a52b589-179ff725759de853","8f44c0ba987022a-179f4d35a17751e2"]},"geometry":{"type":"LineString","coordinates":[[-83.63045500000001,32.816938],[-83.63102400000001,32.816556],[-83.631174,32.816446],[-83.631904,32.815916],[-83.63211430000001,32.815766],[-83.63268400000001,32.815348],[-83.633143,32.815022],[-83.63332100000001,32.8149],[-83.6334621,32.814813900000004],[-83.633694,32.8146774],[-83.6338826,32.8145733],[-83.6340285,32.8145071],[-83.6341768,32.814436300000004],[-83.6343269,32.8143732],[-83.6345076,32.8142994],[-83.6347365,32.8142137],[-83.6349074,32.8141568],[-83.63508990000001,32.814104400000005],[-83.6352803,32.8140506],[-83.635525,32.8139911],[-83.63576730000001,32.8139423],[-83.63603590000001,32.8139029],[-83.6362782,32.8138726],[-83.63653090000001,32.813851],[-83.63698520000001,32.813830200000005],[-83.6373698,32.813831],[-83.6376458,32.813842300000005],[-83.63815650000001,32.8138504],[-83.6394921,32.8138716]]},"id":"8444c0bffffffff-17b732b5cea0f0ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,972.95],"value":"paved"}],"flags":[{"applyAt":[244.34,760.77],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0ba987011e-17976d76a2d87cd0","8f44c0b1a52bc33-17def6dd2cfcd6cf"]},"geometry":{"type":"LineString","coordinates":[[-83.63960780000001,32.8137356],[-83.639172,32.81372],[-83.63786950000001,32.8136564],[-83.63700150000001,32.8136413],[-83.63648950000001,32.8136658],[-83.6360571,32.8137108],[-83.6356643,32.813771700000004],[-83.6351875,32.8138783],[-83.634911,32.8139563],[-83.63463820000001,32.814046600000005],[-83.6344246,32.8141235],[-83.63416640000001,32.8142323],[-83.6339509,32.8143292],[-83.6337159,32.8144462],[-83.63349260000001,32.8145688],[-83.6332606,32.8147068],[-83.6330391,32.8148545],[-83.63262950000001,32.8151479],[-83.6321049,32.815515600000005],[-83.63092300000001,32.816332],[-83.630351,32.816727]]},"id":"8444c0bffffffff-17b782afc4feb7b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a529b01-17d6f4ed692de424","8f44c0b1a1a62ea-1797fa1e72143eb2"]},"geometry":{"type":"LineString","coordinates":[[-83.64482810000001,32.8138269],[-83.64266,32.813789],[-83.64206300000001,32.81378],[-83.6418156,32.813776100000005],[-83.641371,32.813769],[-83.64114040000001,32.813764],[-83.64040100000001,32.813758]]},"id":"8744c0b1affffff-17feef85e21e2258"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a1a286a-17defa3798f7cc55","8f44c0b1a11051c-17dee6b0698ac3da"]},"geometry":{"type":"LineString","coordinates":[[-83.64478790000001,32.813945700000005],[-83.64578180000001,32.813963],[-83.6460722,32.8139707],[-83.64623300000001,32.813975]]},"id":"8844c0b1a1fffff-17d6f873fe7691f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1acda6ee-17bef485ad5150b4","8f44c0b1a1a286a-17defa3798f7cc55"]},"geometry":{"type":"LineString","coordinates":[[-83.640567,32.813889],[-83.642505,32.813919],[-83.64439580000001,32.813938900000004],[-83.64463110000001,32.813943],[-83.64478790000001,32.813945700000005]]},"id":"8744c0b1affffff-17bfff5ea8cb8368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a116361-179ff6af23ce8ee5","8f44c0b1a1a62ea-1797fa1e72143eb2"]},"geometry":{"type":"LineString","coordinates":[[-83.646235,32.8138455],[-83.6454102,32.81384],[-83.6450114,32.813831],[-83.64482810000001,32.8138269]]},"id":"8844c0b1a1fffff-179ff866dc405b71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[135.64,543.15],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a8ccb56-1797d887f4b1f581","8f44c0b1a11051c-17dee6b0698ac3da"]},"geometry":{"type":"LineString","coordinates":[[-83.64623300000001,32.813975],[-83.6472049,32.8139891],[-83.6476811,32.813999800000005],[-83.64827100000001,32.81401],[-83.649388,32.814024],[-83.6518336,32.8140547],[-83.6520321,32.8140572]]},"id":"8744c0b1affffff-17ffdf9c37d4b54a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a859446-17ffd3dcb0e72857","8f44c0b1a8eb153-17d6d7ce7d706804"]},"geometry":{"type":"LineString","coordinates":[[-83.65394450000001,32.8139953],[-83.65347530000001,32.8139825],[-83.6531923,32.813974800000004],[-83.6525635,32.8139576],[-83.6523289,32.8139553]]},"id":"8844c0b1a9fffff-17dfd5d59b1c805d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","flags":[{"applyAt":[95.18,185.52],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aba4d1b-17b7d2da2506beb8","8f44c0b1ab31461-17f7dd5cd8bdcdad"]},"geometry":{"type":"LineString","coordinates":[[-83.6543582,32.8141084],[-83.65474400000001,32.814115],[-83.6553734,32.8141453],[-83.6558387,32.814172400000004],[-83.65633580000001,32.8142014],[-83.6564211,32.8142073],[-83.65660670000001,32.8142201]]},"id":"8844c0b1abfffff-17dfd01b46fc0285"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184d3d42-17d7e7e4a0d60a7c","8f44c0b1ab31a44-179ecc7b191114a5"]},"geometry":{"type":"LineString","coordinates":[[-83.65696790000001,32.8142572],[-83.6571483,32.8142645],[-83.6574906,32.8142914],[-83.6580254,32.8143394],[-83.6584333,32.814352500000005],[-83.65884700000001,32.814371]]},"id":"8644c0b1fffffff-17b6ea3019511365"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1ab224c0-17d6ec668dd3ce80","8f44c0b184d0612-1797e7ddc9abaf4e"]},"geometry":{"type":"LineString","coordinates":[[-83.65885800000001,32.814245],[-83.658308,32.814211],[-83.657706,32.814166],[-83.6570008,32.814141400000004]]},"id":"8644c0b1fffffff-17f6ea21f4905e13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184d3d42-17d7e7e4a0d60a7c","8f44c0b184ea491-1797d2ecff946795"]},"geometry":{"type":"LineString","coordinates":[[-83.65884700000001,32.814371],[-83.65944400000001,32.814396],[-83.65975350000001,32.8144146],[-83.6604497,32.8144311],[-83.6608817,32.8144413]]},"id":"8944c0b184fffff-17fff568e3277cc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b187360d1-17f6b864f2870869","8f44c0b18458ce3-17d6fe14c9b9b99e"]},"geometry":{"type":"LineString","coordinates":[[-83.66519530000001,32.814416],[-83.66460000000001,32.814394],[-83.6640254,32.8143849],[-83.6634082,32.8143638],[-83.66308020000001,32.8143498],[-83.66286600000001,32.8143407]]},"id":"8744c0b18ffffff-17debb3ced8675d0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180ecd53-17d6aa617ccbf869","8f44c0b18041475-17ffb50ade26e37d"]},"geometry":{"type":"LineString","coordinates":[[-83.6731219,32.814609700000005],[-83.671329,32.814550600000004],[-83.67093530000001,32.8145408]]},"id":"8844c0b181fffff-17d6b7b62aedc707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18041616-17bee50aefd8466c","8f44c0b180ec18a-1797ea641c700af6"]},"geometry":{"type":"LineString","coordinates":[[-83.6709311,32.8146774],[-83.67235810000001,32.8147189],[-83.6731218,32.8147332]]},"id":"8844c0b181fffff-17bef7b786635634"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a9aa66-1796ffb8ee0f3cda","8f44c0b18041475-17ffb50ade26e37d"]},"geometry":{"type":"LineString","coordinates":[[-83.675301,32.8146438],[-83.674633,32.814624],[-83.6734888,32.8146153],[-83.67315710000001,32.814610200000004],[-83.6731219,32.814609700000005]]},"id":"8744c0b18ffffff-17f7e261d473bb80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a9bc12-17d7dfbb4e2fa90f","8f44c0b18041616-17bee50aefd8466c"]},"geometry":{"type":"LineString","coordinates":[[-83.6731218,32.8147332],[-83.67315400000001,32.814734],[-83.67437000000001,32.8147655],[-83.6750536,32.8147783],[-83.6752972,32.8147828]]},"id":"8744c0b18ffffff-17def263180cd55a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a9aa66-1796ffb8ee0f3cda","8f44c0b18ae0173-17fe955bc7fb72a8"]},"geometry":{"type":"LineString","coordinates":[[-83.679546,32.814816],[-83.67887800000001,32.814776],[-83.677238,32.814698],[-83.676242,32.8146689],[-83.6754944,32.8146535],[-83.675301,32.8146438]]},"id":"8844c0b18bfffff-17bfda8a072ccf86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18a9bc12-17d7dfbb4e2fa90f","8f44c0b18ae02ad-17ff955c6f8c0c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.6752972,32.8147828],[-83.67548500000001,32.814794],[-83.67561570000001,32.814796900000005],[-83.6759298,32.8148037],[-83.67696930000001,32.8148606],[-83.67750600000001,32.814892],[-83.6783908,32.814962300000005],[-83.6787547,32.8149782],[-83.67942400000001,32.815011000000005],[-83.679545,32.815016]]},"id":"8844c0b18bfffff-179fba8bb56a33df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d69d130-13b7876f6a17745e","8f44c0b18ae0173-17fe955bc7fb72a8"]},"geometry":{"type":"LineString","coordinates":[[-83.685249,32.815112],[-83.68029170000001,32.814854700000005],[-83.67970980000001,32.8148262],[-83.679546,32.814816]]},"id":"8644c0b1fffffff-17de9e6597ad915e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d69d392-13b6c774d2a830e1","8f44c0b18ae02ad-17ff955c6f8c0c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.679545,32.815016],[-83.680766,32.81507],[-83.68349,32.81521],[-83.6841515,32.8152439],[-83.6852403,32.8153092]]},"id":"8644c0b1fffffff-13d6ae686b1691be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345b1d90-179771315c12c9a5","8f44c0a345ae3a0-13970dc2eb4ef8c3"]},"geometry":{"type":"LineString","coordinates":[[-83.630229,32.835152],[-83.630131,32.835082],[-83.629552,32.834733],[-83.6295008,32.8347058],[-83.62917800000001,32.834514],[-83.6288767,32.8343402],[-83.62882350000001,32.8343095]]},"id":"8944c0a345bffff-1397bf7794702c9d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[79.6,594.5],"maxSpeed":[35,"mph"]},{"applyAt":[0.0,79.6],"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a662a0c-13d7ea38024b888a","8f44c0b1a2191ab-13d6fbda99aee9df"]},"geometry":{"type":"LineString","coordinates":[[-83.64478720000001,32.8254232],[-83.64492700000001,32.825507],[-83.645161,32.825605],[-83.64552590000001,32.8257761],[-83.64566,32.825843],[-83.645836,32.825935],[-83.64638000000001,32.826197],[-83.646495,32.826254],[-83.64677800000001,32.826366],[-83.647017,32.826445],[-83.647112,32.826473],[-83.647261,32.826517],[-83.64764500000001,32.826588],[-83.64771300000001,32.826597],[-83.64782100000001,32.826611],[-83.648043,32.826628],[-83.64850200000001,32.826633],[-83.648649,32.826625],[-83.648801,32.826607],[-83.649169,32.826546],[-83.649409,32.826492],[-83.64964900000001,32.826417],[-83.649742,32.826388],[-83.65022160000001,32.8262091],[-83.65058300000001,32.826071],[-83.65067110000001,32.826039800000004]]},"id":"8744c0b1affffff-13f6e321a3f59680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a20a573-139fdaf409ea85b6","8f44c0b1a275b24-13bfd48310258f63"]},"geometry":{"type":"LineString","coordinates":[[-83.65104000000001,32.825922000000006],[-83.65134400000001,32.825854],[-83.651624,32.825811],[-83.651763,32.825798],[-83.651898,32.825786],[-83.652175,32.825772],[-83.65293050000001,32.8257892],[-83.6535168,32.8257952],[-83.65367830000001,32.825798]]},"id":"8844c0b1a3fffff-13bfd7be7081086a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0b19432532-13feba6c073e3bbb","8f44c0b1958928b-13f6fb1240f536da"]},"geometry":{"type":"LineString","coordinates":[[-83.67747200000001,32.826109],[-83.67742600000001,32.826186],[-83.6773876,32.8262422],[-83.677355,32.82629],[-83.677237,32.826438],[-83.677206,32.826507]]},"id":"8944c0b1943ffff-13fedac00c6b4f84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1943634b-1397b9464e2704b9","8f44c0b195186d0-1396b763c6911222"]},"geometry":{"type":"LineString","coordinates":[[-83.677942,32.825941],[-83.6783206,32.825688500000005],[-83.6786495,32.82546],[-83.678714,32.825325]]},"id":"8844c0b195fffff-13f79844ad6f0729"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[214.47,458.7],"value":"paved"}],"flags":[{"applyAt":[214.47,329.18],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d650932-13bf7b843039354e","8f44c0b1d69d392-13b6c774d2a830e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6852403,32.8153092],[-83.685917,32.815344],[-83.68665700000001,32.815376],[-83.687391,32.815407],[-83.687527,32.815415200000004],[-83.68762310000001,32.815420100000004],[-83.6887497,32.8154771],[-83.689571,32.8155157],[-83.6901309,32.8155379]]},"id":"8844c0b1d7fffff-13feb17c98f66020"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,295.13],"value":"paved"}],"flags":[{"applyAt":[180.47,295.13],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d69d130-13b7876f6a17745e","8f44c0b1d673281-13de7a371beb1c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6906639,32.8154022],[-83.6901327,32.8153732],[-83.6887408,32.815297],[-83.6883123,32.8152735],[-83.68751900000001,32.81523],[-83.68665100000001,32.815181],[-83.68641050000001,32.815171],[-83.685249,32.815112]]},"id":"8844c0b1d7fffff-13feb0d321a43da3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac724ed-139efe80d28b1760","8f44c0b1d20b30c-13de76b1d23f0473"]},"geometry":{"type":"LineString","coordinates":[[-83.6986595,32.8160161],[-83.6992017,32.816046],[-83.701395,32.816167],[-83.704373,32.816319],[-83.7070499,32.816457400000004],[-83.7074783,32.8164795],[-83.70830480000001,32.8165223],[-83.70856830000001,32.816535900000005]]},"id":"8544c0b3fffffff-13feda9979f844d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e2c2354-13b631a85e34cf50","8f44c0b0ac0d2e4-13bedec467108271"]},"geometry":{"type":"LineString","coordinates":[[-83.72038350000001,32.8124482],[-83.72004510000001,32.8126302],[-83.719723,32.812807],[-83.71888200000001,32.81326],[-83.71879600000001,32.813307],[-83.71833000000001,32.813561],[-83.71749200000001,32.814019],[-83.7168,32.814397],[-83.71617900000001,32.814736],[-83.715477,32.815088],[-83.714493,32.815499],[-83.713981,32.815674],[-83.71339800000001,32.815852],[-83.712663,32.816029],[-83.711957,32.816172],[-83.711049,32.816300000000005],[-83.71009400000001,32.816367],[-83.709772,32.8163718],[-83.7094074,32.8163837],[-83.7090325,32.8163739],[-83.7088332,32.8163689],[-83.7084602,32.816352900000005]]},"id":"8644c0b0fffffff-17f67fc6b41fc225"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0941911a-17d5fa767935a157","8f44c0b094aa2c5-17b5ff882f99f7da"]},"geometry":{"type":"LineString","coordinates":[[-83.7429913,32.834025100000005],[-83.74278000000001,32.834012],[-83.742109,32.833987],[-83.74164610000001,32.833971000000005],[-83.740915,32.833948]]},"id":"8844c0b095fffff-17b7fcff33c34a89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8864f2-13f779bd32a7c311","8f44c0b0b8a8744-13bf552c6363ac46"]},"geometry":{"type":"LineString","coordinates":[[-83.7301805,32.8324183],[-83.731122,32.8326816],[-83.7312715,32.832725700000005],[-83.73156850000001,32.8328165],[-83.73175040000001,32.8328707],[-83.73205060000001,32.8329461]]},"id":"8944c0b0b8bffff-139f3774fc998cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b89695b-13be1c07377983c4","8f44c0b0b8864f2-13f779bd32a7c311"]},"geometry":{"type":"LineString","coordinates":[[-83.7292429,32.832150500000004],[-83.729618,32.8322566],[-83.72980890000001,32.8323115],[-83.7301805,32.8324183]]},"id":"8944c0b0b8bffff-13977ae22bd58955"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aace2d9-17beb22f1f0ea5a6","8f44c0b0bd94846-13b67f5d0d01f53c"]},"geometry":{"type":"LineString","coordinates":[[-83.7201679,32.8276138],[-83.72057500000001,32.827808000000005],[-83.72076820000001,32.8279013],[-83.7209414,32.8279895],[-83.72112650000001,32.8281094],[-83.7213232,32.8282471]]},"id":"8744c0b0affffff-17f7f0becd5712b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a1aa0b6-17dfcbb06b08b780","8f44c0b0a11a155-179ef821b7fe5e4d"]},"geometry":{"type":"LineString","coordinates":[[-83.709721,32.8207036],[-83.70992910000001,32.8207928],[-83.7108372,32.8208014],[-83.71117810000001,32.8208111]]},"id":"8844c0b0a1fffff-1796d9edd34e8c16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a82e8e8-1396f8732a6c22de","8f44c0b0a800755-1396bb32de2354d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7164755,32.8161067],[-83.71679300000001,32.815994],[-83.71704100000001,32.815901000000004],[-83.71745200000001,32.815759],[-83.717528,32.815731],[-83.7176014,32.8157007]]},"id":"8944c0b0a83ffff-139679d2bba4b832"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a821669-13bef8764e257b48","8f44c0b0a954ca1-17d7b6191857d7e6"]},"geometry":{"type":"LineString","coordinates":[[-83.7185647,32.8145465],[-83.718432,32.814746],[-83.71838100000001,32.814824],[-83.718299,32.814926],[-83.718113,32.815116],[-83.71792,32.815298],[-83.71782800000001,32.815379],[-83.717736,32.815451],[-83.717636,32.815516],[-83.7175964,32.815537400000004]]},"id":"8844c0b0a9fffff-13967730265f075e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a82e8e8-1396f8732a6c22de","8f44c0b0a954c69-17f6b5c6c80afdbc"]},"geometry":{"type":"LineString","coordinates":[[-83.7176014,32.8157007],[-83.717663,32.815666],[-83.71778900000001,32.815593],[-83.717905,32.815508],[-83.718117,32.815305],[-83.71822200000001,32.815196],[-83.718332,32.815092],[-83.71843000000001,32.814985],[-83.71845,32.814957],[-83.718518,32.814867],[-83.7186964,32.8145994]]},"id":"8844c0b0a9fffff-13df37015d360b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a954ca1-17d7b6191857d7e6","8f44c0b0e2db99e-1797b2c8c8819105"]},"geometry":{"type":"LineString","coordinates":[[-83.71992200000001,32.8134457],[-83.71975,32.813557],[-83.719122,32.813986],[-83.7189692,32.8141173],[-83.718838,32.814219],[-83.71875200000001,32.814306],[-83.718722,32.81434],[-83.718671,32.8144],[-83.71859500000001,32.814501],[-83.7185647,32.8145465]]},"id":"8844c0b0a9fffff-17d6f48723d7bdcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08cb6b89-13ff32554f830a32","8f44c0b0e264329-17966631ef79840d"]},"geometry":{"type":"LineString","coordinates":[[-83.7250786,32.8101732],[-83.72531400000001,32.810043],[-83.725492,32.809947],[-83.725745,32.809807],[-83.726027,32.809651],[-83.72657790000001,32.809355700000005],[-83.7266604,32.809313700000004]]},"id":"8644c0b0fffffff-1397f4448d684e91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d814f4-17df1df8f7169bfd","8f44c0b0e369ac5-139fe20027cb1bc2"]},"geometry":{"type":"LineString","coordinates":[[-83.7284465,32.8080368],[-83.72737740000001,32.8086349],[-83.72699270000001,32.8088501],[-83.7267966,32.808959800000004]]},"id":"8844c0b08dfffff-17ff7ffc82449d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d06913-13f756c9ee6de0eb","8f44c0b08d814f4-17df1df8f7169bfd"]},"geometry":{"type":"LineString","coordinates":[[-83.73138900000001,32.806434],[-83.730317,32.807026],[-83.729853,32.807267],[-83.7292034,32.807634],[-83.7285669,32.8079729],[-83.7284465,32.8080368]]},"id":"8844c0b08dfffff-17fffa60797a5aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,71.54],"value":"paved"},{"applyAt":[389.46,706.88],"value":"paved"}],"flags":[{"applyAt":[389.46,462.99],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b628335-17bdcef9d4aa07a8","8f44c0b0ca6e488-13f5e11bc1b5bf35"]},"geometry":{"type":"LineString","coordinates":[[-83.76080350000001,32.7981524],[-83.7600496,32.798256],[-83.759489,32.798326],[-83.758391,32.798487],[-83.7567047,32.7987417],[-83.7563978,32.7987869],[-83.7559313,32.7988556],[-83.75473720000001,32.799033900000005],[-83.7538557,32.7991626],[-83.75353750000001,32.7992134],[-83.75337640000001,32.7992664]]},"id":"8544c0b3fffffff-139ff80dadf961b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,380.81],"value":"paved"},{"applyAt":[476.9,762.87],"value":"paved"}],"flags":[{"applyAt":[307.8,380.81],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b2b628335-17bdcef9d4aa07a8","8f44c0b0ca41d92-13bde26515de5089"]},"geometry":{"type":"LineString","coordinates":[[-83.75284950000001,32.799586600000005],[-83.75312310000001,32.7994885],[-83.75325860000001,32.7994524],[-83.75341230000001,32.799419400000005],[-83.75389630000001,32.7993455],[-83.754193,32.799303],[-83.75605870000001,32.79902],[-83.756461,32.7989592],[-83.756826,32.798904],[-83.7572172,32.798849100000005],[-83.757838,32.798762],[-83.758477,32.798656],[-83.75922800000001,32.798507],[-83.75954200000001,32.798434],[-83.76080350000001,32.7981524]]},"id":"8544c0b3fffffff-139df8aea7ed1e5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c60e4ed-17ffcbb0aa5f6871","8f44c0b0ca510a1-13f7f54e318e3be9"]},"geometry":{"type":"LineString","coordinates":[[-83.73593500000001,32.80399],[-83.73630800000001,32.803752],[-83.73661100000001,32.803567],[-83.737367,32.803126],[-83.73765200000001,32.802971],[-83.738206,32.802681],[-83.73899800000001,32.802312],[-83.73956100000001,32.80207],[-83.73985,32.801954],[-83.740019,32.80189],[-83.74017900000001,32.80183],[-83.740577,32.801685],[-83.74118100000001,32.801482],[-83.74149,32.801391],[-83.742373,32.801149],[-83.74331500000001,32.800932],[-83.743779,32.800846],[-83.74498600000001,32.800657],[-83.747872,32.800234],[-83.748192,32.800184],[-83.748665,32.800117],[-83.748834,32.800094],[-83.749795,32.799945],[-83.75107960000001,32.799765],[-83.7511305,32.799757],[-83.7513392,32.7997244],[-83.7516573,32.799671100000005]]},"id":"8744c0b0cffffff-17d5f8f82011c7c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d06913-13f756c9ee6de0eb","8f44c0b0c603a50-17be2ba2ea2d153c"]},"geometry":{"type":"LineString","coordinates":[[-83.735957,32.803677],[-83.73564,32.803858000000005],[-83.73376800000001,32.805023000000006],[-83.732804,32.805616],[-83.73249530000001,32.8058004],[-83.7323669,32.8058731],[-83.731831,32.806178],[-83.731533,32.806351],[-83.73138900000001,32.806434]]},"id":"8644c0b0fffffff-179eb1323c61ffea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d06a74-13975670c31f7504","8f44c0b0c60e4ed-17ffcbb0aa5f6871"]},"geometry":{"type":"LineString","coordinates":[[-83.73153160000001,32.8066581],[-83.73177000000001,32.806528],[-83.732079,32.806353],[-83.7322213,32.806272],[-83.73256400000001,32.806077],[-83.733134,32.805725],[-83.734953,32.804617],[-83.73513910000001,32.8045003],[-83.73547570000001,32.8042845],[-83.73572850000001,32.804122400000004],[-83.73593500000001,32.80399]]},"id":"8644c0b0fffffff-13def108aa449ab5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b0d0a2c9c-13d5dc93e4a36458","8f44c0b0d0b2241-13f7ff0b485dc64b"]},"geometry":{"type":"LineString","coordinates":[[-83.754222,32.812343000000006],[-83.7544653,32.8123081],[-83.7546677,32.8122709],[-83.75523220000001,32.8121181]]},"id":"8944c0b0d0bffff-13b5ddcdc57d7e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08126d5e-13be9b1ff01bef6c","8f44c0b081a1383-17dff167a4a8070b"]},"geometry":{"type":"LineString","coordinates":[[-83.7335942,32.814764700000005],[-83.734267,32.814096],[-83.734367,32.814019],[-83.734503,32.813927],[-83.734826,32.813753000000005],[-83.735287,32.813519],[-83.73565830000001,32.8133482],[-83.73616650000001,32.8130953]]},"id":"8744c0b08ffffff-17975e6d3625053a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,708.45],"value":"paved"}],"flags":[{"applyAt":[151.09,247.68],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b081ae42b-139ed22a4754e87f","8f44c0b0845540c-13bf60db1ec48974"]},"geometry":{"type":"LineString","coordinates":[[-83.7272655,32.8188404],[-83.727798,32.818573],[-83.7286636,32.8181606],[-83.72956230000001,32.8177332],[-83.72984600000001,32.817601],[-83.73058,32.817254000000005],[-83.731004,32.817017],[-83.73128600000001,32.816844],[-83.731599,32.81662],[-83.732009,32.816300000000005],[-83.732382,32.815956],[-83.732645,32.815697],[-83.73282400000001,32.8155251],[-83.73328280000001,32.8150765]]},"id":"8744c0b08ffffff-17b7792b180b2d5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ab56010-13feeccf1338a9be","8f44c0b08450688-13f6f1fc1c5d67e5"]},"geometry":{"type":"LineString","coordinates":[[-83.7223695,32.822398],[-83.7226478,32.8222006],[-83.723116,32.82188],[-83.724924,32.820543],[-83.72587100000001,32.819836],[-83.7264146,32.8193964],[-83.72680310000001,32.8191277]]},"id":"8644c0b0fffffff-17feb75f9bc7b5a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a04542b-13b6407e87a37828","8f44c0b0a05cc26-13d652e945b7971d"]},"geometry":{"type":"LineString","coordinates":[[-83.71331640000001,32.825420900000005],[-83.7137017,32.8251627],[-83.71388610000001,32.8250872],[-83.71413220000001,32.8250027],[-83.7143064,32.824960000000004]]},"id":"8944c0b0a07ffff-13bed1beb3668500"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,179.1],"value":"paved"}],"flags":[{"applyAt":[26.05,144.27],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a84128-13be38367123b1a7","8f44c0b04a13358-13b7739b45598e88"]},"geometry":{"type":"LineString","coordinates":[[-83.71958520000001,32.7444855],[-83.7193075,32.7444764],[-83.71913690000001,32.7444666],[-83.7189597,32.7444502],[-83.71879990000001,32.7444336],[-83.71869450000001,32.744422400000005],[-83.7185455,32.744404200000005],[-83.71840970000001,32.74439],[-83.7182777,32.7443693],[-83.71805900000001,32.7443313],[-83.7178628,32.7442964],[-83.71769850000001,32.7442561]]},"id":"8844c0b04bfffff-1397b5eb5d7a54dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0414a988-13dfbe4e03b53b95","8f44c0b04149aa2-13d63c204f2e48eb"]},"geometry":{"type":"LineString","coordinates":[[-83.7152032,32.743497000000005],[-83.7153796,32.7436345],[-83.71589270000001,32.7438233],[-83.7160956,32.7438913]]},"id":"8a44c0b0414ffff-13defd3fce406574"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a212d5a5d-13f7b2b4b56b28ba","8f44c0a2e9221b2-13d6f906e414b83c"]},"geometry":{"type":"LineString","coordinates":[[-83.717365,32.891582],[-83.71786180000001,32.8915969],[-83.71922500000001,32.891615200000004],[-83.71995410000001,32.8916282]]},"id":"8744c0a21ffffff-13f6b5ddd15805fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a21a3072a-13f664742a23e7cf","8f44c0a21a6650e-1797fc331dde2630"]},"geometry":{"type":"LineString","coordinates":[[-83.72579180000001,32.8809478],[-83.7272708,32.8817935],[-83.72761360000001,32.8819867],[-83.72809500000001,32.882258],[-83.7291727,32.8828735]]},"id":"8844c0a21bfffff-13be7053c455a45f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","surface":"paved","flags":["isLink","isPrivate"]},"subType":"road","connectors":["8f44c0a36addb0a-13f718935277d2ab","8f44c0a36a50581-17bfd418923e07d1"]},"geometry":{"type":"LineString","coordinates":[[-83.62763430000001,32.846457300000004],[-83.6272969,32.8466826],[-83.6269774,32.8470168],[-83.6265755,32.8475313],[-83.6262978,32.8478735],[-83.6261479,32.848045],[-83.6260501,32.8481381],[-83.6259459,32.8481764],[-83.6257995,32.848214500000005]]},"id":"8844c0a36bfffff-17df3653918396af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36aec559-179f554bec1378f3","8f44c0a36ace391-139757e39f45c81c"]},"geometry":{"type":"LineString","coordinates":[[-83.6271426,32.8470485],[-83.6269281,32.847228900000005],[-83.62669050000001,32.8475186],[-83.626631,32.847608],[-83.626373,32.847909],[-83.6262062,32.8481004],[-83.6260807,32.848238900000005]]},"id":"8944c0a36afffff-179f369d79b489ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary_link","flags":["isLink"]},"subType":"road","connectors":["8f44c0a363a1ce2-13bfb680f448164f","8f44c0a36316826-17bfe48481612116"]},"geometry":{"type":"LineString","coordinates":[[-83.62009450000001,32.8480969],[-83.62029670000001,32.848007700000004],[-83.62042100000001,32.84794],[-83.6205051,32.8478835],[-83.62070200000001,32.847727],[-83.6208185,32.8476026],[-83.620908,32.847507]]},"id":"8844c0a363fffff-139f6572f1cd3316"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a362ad1ad-13df369cd76e0679","8f44c0a3621194a-13dfe4b269f4f4f4"]},"geometry":{"type":"LineString","coordinates":[[-83.62004990000001,32.851837100000004],[-83.6203577,32.851583000000005],[-83.620728,32.851294],[-83.62083460000001,32.851220600000005]]},"id":"8944c0a3623ffff-139f65aa23f62e27"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36313db4-13ffa4919a3a42b1","8f44c0a36316826-17bfe48481612116"]},"geometry":{"type":"LineString","coordinates":[[-83.620908,32.847507],[-83.62090450000001,32.8475801],[-83.62089130000001,32.848083200000005],[-83.6208871,32.8481976]]},"id":"8a44c0a36317fff-1397b48b3d25030a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36313db4-13ffa4919a3a42b1","8f44c0a363a38c0-1397b7358684c997"]},"geometry":{"type":"LineString","coordinates":[[-83.6198056,32.8482361],[-83.6200422,32.8482302],[-83.6204972,32.8482398],[-83.62073790000001,32.8482428],[-83.6208871,32.8481976]]},"id":"8844c0a363fffff-139735e1c76e4428"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a363945a1-13ffac5845f8e6be","8f44c0a363a38c0-1397b7358684c997"]},"geometry":{"type":"LineString","coordinates":[[-83.61770200000001,32.848228],[-83.618633,32.848228],[-83.61945340000001,32.8482349],[-83.6198056,32.8482361]]},"id":"8944c0a363bffff-139729c6ee752ac1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3676486c-13bf6e942e7b1cac","8f44c0a363b14d3-13dfba0b097b6e19"]},"geometry":{"type":"LineString","coordinates":[[-83.6186448,32.8481419],[-83.6183001,32.848140400000005],[-83.6180252,32.8481216],[-83.6170189,32.848097],[-83.616787,32.848095]]},"id":"8744c0a36ffffff-13bf2c4f81c64415"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764c69-13bf6f090a7dcad3","8f44c0a3672b6cb-13b73490c23f44ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6166,32.84809],[-83.6150642,32.8480761],[-83.6146901,32.8480809],[-83.61433480000001,32.8480803]]},"id":"8844c0a367fffff-13b731cceb1fdc32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a367aab03-13ff3cdd5e0dd152","8f44c0a36718bb4-13f778ab48795713"]},"geometry":{"type":"LineString","coordinates":[[-83.61093550000001,32.8482259],[-83.6120434,32.8482207],[-83.612481,32.8482178],[-83.612654,32.8482166]]},"id":"8844c0a367fffff-13ffbac44ee5a454"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a367aa96d-13b7fcde95a9d887","8f44c0a36718901-13b7b8aa1486f18e"]},"geometry":{"type":"LineString","coordinates":[[-83.61265590000001,32.848082600000005],[-83.6122651,32.8480809],[-83.61183700000001,32.8480926],[-83.6116571,32.8480938],[-83.6110884,32.8481079],[-83.6109335,32.848111700000004]]},"id":"8844c0a367fffff-13bf3ac45c9ad338"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a367aa96d-13b7fcde95a9d887","8f44c0a36782430-13b77111dbfa0b4c"]},"geometry":{"type":"LineString","coordinates":[[-83.6109335,32.848111700000004],[-83.6098905,32.848113000000005],[-83.6092131,32.8481139]]},"id":"8944c0a367bffff-13b7bef8366f21cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36782430-13b77111dbfa0b4c","8f44c0b8db6110a-13b754ebb3cefaf6"]},"geometry":{"type":"LineString","coordinates":[[-83.6092131,32.8481139],[-83.60817580000001,32.8481088],[-83.6076357,32.8481077]]},"id":"8744c0a36ffffff-13b7f2feccc99beb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8da25591-13f7ed824b23ca1e","8f44c0b8db73301-1397d913261a5677"]},"geometry":{"type":"LineString","coordinates":[[-83.604118,32.848393],[-83.6046728,32.8482641],[-83.60482610000001,32.8482427],[-83.604957,32.848236],[-83.60523500000001,32.84823],[-83.60593420000001,32.8482329]]},"id":"8844c0b8dbfffff-13977b4e0eefdce9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8da20c68-1397ce0f8a88d4ef","8f44c0b8da3224b-13d7f21445b59f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.60224600000001,32.848779],[-83.602687,32.848711],[-83.602754,32.848701000000005],[-83.6035367,32.8485274],[-83.603892,32.848444]]},"id":"8944c0b8da3ffff-13f7701045c00863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8da24385-13ff7da4d7335662","8f44c0b8da32321-13ff52209a5f35de"]},"geometry":{"type":"LineString","coordinates":[[-83.6040627,32.8482259],[-83.60390600000001,32.848258],[-83.60363430000001,32.848321600000006],[-83.6033869,32.8483755],[-83.602919,32.848474],[-83.6024149,32.8485807],[-83.6022263,32.848627300000004]]},"id":"8944c0b8da3ffff-13ffffe2d2358374"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":[{"applyAt":[0.0,161.03],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,161.03],"maxSpeed":[35,"mph"]},{"applyAt":[161.03,335.82],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8db6110a-13b754ebb3cefaf6","8f44c0b8da24385-13ff7da4d7335662"]},"geometry":{"type":"LineString","coordinates":[[-83.6076357,32.8481077],[-83.60591550000001,32.8481095],[-83.60548920000001,32.8481078],[-83.604715,32.848121],[-83.604607,32.848125],[-83.604495,32.848134],[-83.604403,32.848153],[-83.6040627,32.8482259]]},"id":"8844c0b8dbfffff-13bfd94b0a664b36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"applyAt":[244.84,335.8],"maxSpeed":[50,"mph"]},{"applyAt":[0.0,244.84],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d16cb8b-179ffa3f8e9c4502","8f44c0b8da32321-13ff52209a5f35de"]},"geometry":{"type":"LineString","coordinates":[[-83.6022263,32.848627300000004],[-83.601972,32.848653],[-83.601658,32.848653],[-83.601489,32.848633],[-83.60124900000001,32.848595],[-83.601059,32.848557],[-83.60090600000001,32.848515],[-83.6007376,32.8484588],[-83.60060940000001,32.848411],[-83.6005075,32.848371],[-83.5997542,32.8480559],[-83.5995077,32.8479486],[-83.5989,32.847665]]},"id":"8844c0b8dbfffff-13bf76457c6a1156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","flags":[{"applyAt":[293.94,397.36],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d16cb8b-179ffa3f8e9c4502","8f44c0b8d102d6d-13b7655a8ba639bb"]},"geometry":{"type":"LineString","coordinates":[[-83.5989,32.847665],[-83.598797,32.847617],[-83.598714,32.847577],[-83.59790500000001,32.847209],[-83.596129,32.8464187],[-83.59532200000001,32.846052],[-83.59515830000001,32.8459736],[-83.59471500000001,32.8457894],[-83.5943512,32.845625600000005]]},"id":"8744c0b8dffffff-179f5fcb989d4ac2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":[{"applyAt":[105.69,324.85],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,105.69],"maxSpeed":[50,"mph"]},{"applyAt":[105.69,324.85],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8dc5e2e2-17d76cd414b37dd1","8f44c0b8d102d6d-13b7655a8ba639bb"]},"geometry":{"type":"LineString","coordinates":[[-83.5943512,32.845625600000005],[-83.593974,32.84545],[-83.593873,32.845404],[-83.59352200000001,32.845245000000006],[-83.593359,32.845171],[-83.5928141,32.844914100000004],[-83.59251830000001,32.8448],[-83.5920176,32.844571900000005],[-83.5912895,32.8442486]]},"id":"8744c0b8dffffff-13f76915d9f307be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":[{"applyAt":[0.0,217.82],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[217.82,322.99],"maxSpeed":[50,"mph"]},{"applyAt":[0.0,217.82],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8dc5a809-17976cfee3072820","8f44c0b8d102c5b-13df658663260520"]},"geometry":{"type":"LineString","coordinates":[[-83.591221,32.844375],[-83.59249100000001,32.84494],[-83.5927405,32.8450483],[-83.5932835,32.8452841],[-83.593387,32.845329],[-83.5938589,32.845545800000004],[-83.59428100000001,32.84572]]},"id":"8744c0b8dffffff-13bf7943ae3509e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8dc82b1b-13bf796366d237e6","8f44c0b8dc5e2e2-17d76cd414b37dd1"]},"geometry":{"type":"LineString","coordinates":[[-83.5912895,32.8442486],[-83.59097,32.844111600000005],[-83.59037260000001,32.8438389],[-83.589843,32.843597],[-83.587129,32.842379],[-83.5866941,32.842193300000005],[-83.586145,32.841952]]},"id":"8844c0b8ddfffff-17f7f31a7c5a7c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c264912-17dffe9c70d33e7f","8f44c0b8dc82b1b-13bf796366d237e6"]},"geometry":{"type":"LineString","coordinates":[[-83.586145,32.841952],[-83.585998,32.841875],[-83.58573600000001,32.841752],[-83.585192,32.841512],[-83.58483000000001,32.841352],[-83.58470240000001,32.841298200000004],[-83.5843605,32.841154100000004],[-83.58422630000001,32.841097500000004],[-83.5840057,32.841001500000004]]},"id":"8644c0b8fffffff-13fffbfd175bebdd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c264912-17dffe9c70d33e7f","8f44c0b8c205d55-179785e5e45bbddf"]},"geometry":{"type":"LineString","coordinates":[[-83.5840057,32.841001500000004],[-83.58382950000001,32.840929800000005],[-83.5833295,32.840746800000005],[-83.5828425,32.8405768],[-83.58227550000001,32.8403968],[-83.5818825,32.840282800000004],[-83.5816509,32.8402157],[-83.581021,32.84004]]},"id":"8844c0b8c3fffff-179f823b4a73ded9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c2055a1-17bfd657b3331e32","8f44c0b8c661683-139fd529149d8a9d"]},"geometry":{"type":"LineString","coordinates":[[-83.5747695,32.8413125],[-83.575,32.8412705],[-83.57523400000001,32.84116],[-83.575495,32.841047],[-83.576141,32.840747],[-83.57670200000001,32.840491],[-83.57674200000001,32.840477],[-83.577031,32.84037],[-83.57731000000001,32.840277],[-83.577628,32.840193],[-83.5778823,32.840142400000005],[-83.57843600000001,32.840041],[-83.578919,32.839993],[-83.5795003,32.8399998],[-83.579859,32.840013],[-83.580262,32.840055],[-83.5808389,32.840130900000005]]},"id":"8744c0b8cffffff-17dfade34fd38684"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c233ada-17d798633b147452","8f44c0b8c76ea84-13f7d2aaae8b0ec0"]},"geometry":{"type":"LineString","coordinates":[[-83.5800013,32.8397609],[-83.57790700000001,32.839166],[-83.57711280000001,32.8389444],[-83.57579100000001,32.838582]]},"id":"8744c0b8cffffff-13dfed86275eb755"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c23360a-17ffe8fb6552ac5a","8f44c0b8c7458e2-13ff93e968a27fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.575281,32.838572],[-83.5793008,32.8396822],[-83.57975780000001,32.8398254]]},"id":"8744c0b8cffffff-13ffde7115cc7e49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c233ada-17d798633b147452","8f44c0b8c205d55-179785e5e45bbddf"]},"geometry":{"type":"LineString","coordinates":[[-83.581021,32.84004],[-83.58060800000001,32.839924],[-83.580374,32.839863300000005],[-83.5800013,32.8397609]]},"id":"8944c0b8c23ffff-17bfd724680b8f05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c23360a-17ffe8fb6552ac5a","8f44c0b8c661683-139fd529149d8a9d"]},"geometry":{"type":"LineString","coordinates":[[-83.57975780000001,32.8398254],[-83.579384,32.83983],[-83.578575,32.839889],[-83.578271,32.839928],[-83.577973,32.839982],[-83.577556,32.840069],[-83.57736700000001,32.84012],[-83.57705,32.840215],[-83.576846,32.840286],[-83.576617,32.840376],[-83.57657900000001,32.840392],[-83.576248,32.840541],[-83.5761616,32.840582500000004],[-83.5759312,32.840693200000004],[-83.57552600000001,32.840888],[-83.575339,32.840988],[-83.57510900000001,32.841105],[-83.5749414,32.8411799],[-83.5747695,32.8413125]]},"id":"8744c0b8cffffff-17b7ef3f8d68b7d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85a993a8-179fdfe80aaa73fb","8f44c0b85a80c16-13d79f71eaeac8e9"]},"geometry":{"type":"LineString","coordinates":[[-83.570368,32.79851],[-83.57041500000001,32.798406],[-83.570481,32.798181],[-83.57049880000001,32.798097600000006],[-83.570537,32.797919],[-83.570572,32.797637],[-83.570597,32.797373],[-83.570605,32.797213],[-83.57055700000001,32.79694]]},"id":"8944c0b85abffff-17b7df8055038199"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5716881,32.8027865]},"id":"8f44c0b8535cd53-139f9caef15c4a49"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b8535cd53-139f9caef15c4a49","8f44c0b85322711-13bfb0e7799c6f05"]},"geometry":{"type":"LineString","coordinates":[[-83.5716881,32.8027865],[-83.571551,32.802404],[-83.571465,32.802142],[-83.571347,32.801578],[-83.571239,32.801008],[-83.571173,32.800781],[-83.57114100000001,32.800685],[-83.5710208,32.8004601],[-83.570969,32.800367],[-83.570828,32.800154],[-83.57069100000001,32.799985],[-83.570543,32.799824],[-83.570334,32.799636],[-83.57007680000001,32.799424],[-83.56995930000001,32.7993475]]},"id":"8844c0b853fffff-1797de443918a5ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8531e29d-179fb3d75096299d","8f44c0b85331b9b-13b7b182ffd5f47e"]},"geometry":{"type":"LineString","coordinates":[[-83.5697105,32.7993681],[-83.56951600000001,32.799691],[-83.569354,32.799967],[-83.569214,32.800179],[-83.56908510000001,32.800385500000004],[-83.569007,32.800514],[-83.568881,32.800727],[-83.56882590000001,32.800831],[-83.5687563,32.800962500000004]]},"id":"8944c0b8533ffff-13b7e2b09d8235d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa596d5c-17f7e3691c55eabd","8f44c0b852e3295-13ffe3e8ee88d7fe"]},"geometry":{"type":"LineString","coordinates":[[-83.56872820000001,32.8058076],[-83.56878850000001,32.8064069],[-83.56881840000001,32.806685200000004],[-83.56887400000001,32.807305],[-83.5689327,32.8078668]]},"id":"8644c0b87ffffff-13f7e3a900089aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,277.64],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0baa592482-17f7a44d00fef455","8f44c0b8181d242-179fafed0cf2a959"]},"geometry":{"type":"LineString","coordinates":[[-83.568568,32.808453],[-83.56805700000001,32.808674],[-83.56748540000001,32.8089341],[-83.56595270000001,32.8096316],[-83.56524870000001,32.8099493],[-83.565099,32.81002],[-83.564957,32.810094],[-83.56475900000001,32.810198],[-83.564559,32.810329],[-83.564357,32.810476],[-83.56427500000001,32.810549800000004],[-83.563963,32.810819],[-83.5638064,32.811005800000004]]},"id":"8844c0b819fffff-13b7aa506d2f74bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c9c8ac-13d7ec25b8b9b27a","8f44c0a1040b48b-13f76e6ba1b1983f"]},"geometry":{"type":"LineString","coordinates":[[-83.5906374,32.907776000000005],[-83.5906265,32.905375400000004],[-83.59065120000001,32.903892500000005],[-83.59077090000001,32.9029453],[-83.5908721,32.902441200000005],[-83.5910535,32.9018511],[-83.59108950000001,32.9017495],[-83.5911918,32.901471300000004],[-83.5915082,32.9007165],[-83.59156850000001,32.90059]]},"id":"8744c0a10ffffff-13fffe003158f434"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a140b3533-17f7545b97bcc371","8f44c0a14198363-1397d16e0e387c60"]},"geometry":{"type":"LineString","coordinates":[[-83.602512,32.884692],[-83.60210810000001,32.8850922],[-83.6016199,32.8855698],[-83.60131270000001,32.8858693]]},"id":"8844c0a141fffff-13f752e4259fcdbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a14198363-1397d16e0e387c60","8f44c0a1413294c-13df7a0c88e6fc43"]},"geometry":{"type":"LineString","coordinates":[[-83.6055352,32.8817303],[-83.603943,32.883294],[-83.60315460000001,32.8840773],[-83.60270600000001,32.884503],[-83.602512,32.884692]]},"id":"8844c0a141fffff-17ffcdbbdf3d2002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a14880325-17d7e57dfac170c2","8f44c0a1413294c-13df7a0c88e6fc43"]},"geometry":{"type":"LineString","coordinates":[[-83.60740170000001,32.8799034],[-83.6063544,32.8809454],[-83.6056901,32.8815819],[-83.6055352,32.8817303]]},"id":"8744c0a14ffffff-139747c29edb0959"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a14881c10-179f6535e8fbfbf8","8f44c0a141304ec-13fff9c38c303699"]},"geometry":{"type":"LineString","coordinates":[[-83.605652,32.8818075],[-83.60688640000001,32.880604600000005],[-83.6071292,32.8803712],[-83.607517,32.879997]]},"id":"8744c0a14ffffff-13d7777d66fdf4b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a148a1562-17f7e374652e3252","8f44c0a14881c10-179f6535e8fbfbf8"]},"geometry":{"type":"LineString","coordinates":[[-83.607517,32.879997],[-83.60779240000001,32.8796849],[-83.6080002,32.8794339],[-83.60823620000001,32.8791354]]},"id":"8944c0a148bffff-1797f451d1fe74da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":[{"applyAt":[0.0,985.52],"value":"paved"}],"flags":[{"applyAt":[201.31,282.5],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a148a1562-17f7e374652e3252","8f44c0a32399808-139737fd627dcb34"]},"geometry":{"type":"LineString","coordinates":[[-83.60823620000001,32.8791354],[-83.608349,32.878991],[-83.608626,32.878611],[-83.608969,32.87809],[-83.6093008,32.8775592],[-83.60946,32.877301],[-83.60957900000001,32.877107],[-83.6097005,32.8769094],[-83.610847,32.875045],[-83.611444,32.874086000000005],[-83.612316,32.872647],[-83.612525,32.872244],[-83.6126,32.872076400000005],[-83.61278460000001,32.8716254],[-83.6129322,32.871200300000005]]},"id":"8544c0a3fffffff-13ff7d6c98ba198d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":[{"applyAt":[0.0,1107.66],"value":"paved"}],"flags":[{"applyAt":[707.96,785.8],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a14880325-17d7e57dfac170c2","8f44c0a3239d6f5-13bf38480018ce4a"]},"geometry":{"type":"LineString","coordinates":[[-83.6128128,32.8710608],[-83.6127664,32.8712255],[-83.6126754,32.8714911],[-83.612578,32.87176],[-83.612368,32.872259],[-83.612105,32.872746],[-83.6095937,32.8768197],[-83.609493,32.876983],[-83.60936600000001,32.877189],[-83.60931400000001,32.877273],[-83.60920850000001,32.8774418],[-83.6086629,32.878323900000005],[-83.6084345,32.878653400000005],[-83.60835900000001,32.878757],[-83.6081135,32.8790725],[-83.60802600000001,32.879185],[-83.6078057,32.879464],[-83.60773160000001,32.8795535],[-83.6076433,32.879654900000006],[-83.6074997,32.879809900000005],[-83.60740170000001,32.8799034]]},"id":"8544c0a3fffffff-13d7fe68aac60bbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3601d735-17dfbdc3b9f008dd","8f44c0a36004580-17dffd3d1b196ee4"]},"geometry":{"type":"LineString","coordinates":[[-83.6173359,32.8430509],[-83.61723040000001,32.8437592],[-83.6171205,32.8444601]]},"id":"8944c0a3603ffff-17977d7f8b8fafa5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3601d735-17dfbdc3b9f008dd","8f44c0a360c4954-13ff2e5be3aeacbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6171205,32.8444601],[-83.6170575,32.8448475],[-83.616944,32.84552],[-83.6168921,32.8458714],[-83.616877,32.845968]]},"id":"8844c0a361fffff-13b7be110f1985f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,180.51],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a360c5093-17bf6e14a5d4e63b","8f44c0a3676486c-13bf6e942e7b1cac"]},"geometry":{"type":"LineString","coordinates":[[-83.616787,32.848095],[-83.6167937,32.847856],[-83.61679600000001,32.847751],[-83.61681700000001,32.847451],[-83.616873,32.847127],[-83.6169313,32.8467819],[-83.616991,32.846479]]},"id":"8944c0a360fffff-17b77e65f52f1d6a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,293.53],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b0431e5b0-179efdee0597feec","8f44c0b042807ae-17b66546989b819c"]},"geometry":{"type":"LineString","coordinates":[[-83.71535680000001,32.7483373],[-83.71511530000001,32.748595200000004],[-83.7146886,32.749067100000005],[-83.7134535,32.750439300000004],[-83.71234790000001,32.751645]]},"id":"8844c0b043fffff-13bef199c2a77527"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28260970-13f60a550a028787","8f44c0a2834b244-1397f8edd5dd81b3"]},"geometry":{"type":"LineString","coordinates":[[-83.7370659,32.926883100000005],[-83.73691190000001,32.9269356],[-83.7364912,32.927056]]},"id":"8844c0a283fffff-13bfc9a0e2ab659a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,245.97],"value":"paved"}],"flags":[{"applyAt":[9.67,226.88],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36a50581-17bfd418923e07d1","8f44c0a36b587ae-13dfb053196c03f2"]},"geometry":{"type":"LineString","coordinates":[[-83.62763430000001,32.846457300000004],[-83.62769820000001,32.8463888],[-83.62819,32.845827],[-83.628479,32.845494],[-83.629058,32.8448019],[-83.6291791,32.8446634]]},"id":"8844c0a36bfffff-13ffb232fcae9900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7348303,32.7173846]},"id":"8f44c0b20462b0c-139f6e6319e52819"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b20462b0c-139f6e6319e52819","8f44c0b04b5365b-139f2be9540d4081"]},"geometry":{"type":"LineString","coordinates":[[-83.7348303,32.7173846],[-83.7347675,32.7180847],[-83.7347561,32.718212300000005],[-83.734662,32.7188107],[-83.73446320000001,32.7193916],[-83.73426450000001,32.7197788],[-83.7339716,32.7201836],[-83.7336787,32.720535600000005],[-83.73339630000001,32.7207908],[-83.7328942,32.721178],[-83.7323921,32.7214684],[-83.7317854,32.7218116],[-83.7313984,32.722022800000005],[-83.7302384,32.7226731],[-83.7297613,32.7229382],[-83.7293003,32.7232124],[-83.72894910000001,32.7234725],[-83.7286488,32.723732500000004],[-83.7284298,32.7239717],[-83.728243,32.724211000000004],[-83.72800380000001,32.724579600000006],[-83.72782070000001,32.7249637],[-83.7276853,32.725326800000005],[-83.7271906,32.7267527],[-83.7267097,32.7281229],[-83.72536310000001,32.7319599],[-83.7240589,32.7356756],[-83.72395350000001,32.7359791],[-83.7238624,32.736241400000004],[-83.72376410000001,32.7365221],[-83.72368730000001,32.7368073],[-83.7236082,32.7372369],[-83.723529,32.737819900000005],[-83.7234365,32.7384752],[-83.7233789,32.7387469],[-83.7233022,32.7389954],[-83.72320930000001,32.7392303],[-83.72290240000001,32.739920000000005],[-83.722662,32.7404656],[-83.72257730000001,32.740704400000006],[-83.722505,32.741010100000004],[-83.72247800000001,32.7412086],[-83.72247,32.7414149],[-83.7224798,32.7415905],[-83.7225162,32.7419299],[-83.72257450000001,32.7424167],[-83.7226833,32.7433181],[-83.7227371,32.743796800000005]]},"id":"8544c0b3fffffff-17b7f0e7a2929d63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.64562140000001,32.8268308]},"id":"8f44c0b1a66b065-17d7e82eaa672ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6467832,32.827746000000005]},"id":"8f44c0a34931bac-17ffe558878a3d5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[0.0,148.36],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0b1a66b065-17d7e82eaa672ca5","8f44c0a34931bac-17ffe558878a3d5e"]},"geometry":{"type":"LineString","coordinates":[[-83.64562140000001,32.8268308],[-83.64557310000001,32.8269435],[-83.64559460000001,32.827006600000004],[-83.64613100000001,32.8272951],[-83.64668830000001,32.8276915],[-83.6467832,32.827746000000005]]},"id":"8744c0b1affffff-17fee6f38a52d97b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a348267b2-17d7f6c9db045bd4","8f44c0a348244a0-17d7f5c79405a7b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6466055,32.830142900000006],[-83.6463713,32.8304209],[-83.6463398,32.8304252],[-83.64619230000001,32.8303419]]},"id":"8a44c0a34827fff-17d6f63f231e7b37"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36822a06-13f75f96aa3d944c","8f44c0a36800da2-17f7f0eed5e07e2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6223763,32.8365373],[-83.62251400000001,32.836385],[-83.62254870000001,32.8363408],[-83.6226235,32.8362453],[-83.6227647,32.836073400000004],[-83.622927,32.835898]]},"id":"8944c0a3683ffff-13bf6043a3c96f6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a368e5562-139fe00807ac807c","8f44c0a3681a18e-1797e3a7eee9a7df"]},"geometry":{"type":"LineString","coordinates":[[-83.621261,32.837795],[-83.6213774,32.837875000000004],[-83.6215219,32.8379606],[-83.6223365,32.8384432],[-83.62252070000001,32.8385358],[-83.6227456,32.838654000000005]]},"id":"8844c0a369fffff-139fe1dc52f6425c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,203.56],"value":"paved"}],"flags":[{"applyAt":[0.0,129.02],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368d6c49-139f36ced74c7c8e","8f44c0a3681a18e-1797e3a7eee9a7df"]},"geometry":{"type":"LineString","coordinates":[[-83.6199699,32.8392609],[-83.6207134,32.8382814],[-83.620793,32.838191],[-83.6209556,32.8380529],[-83.620993,32.83802],[-83.621093,32.837939],[-83.62114720000001,32.8378941],[-83.621261,32.837795]]},"id":"8844c0a369fffff-13bfa550e64466a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[18.65,31.67],"values":["isTunnel"]},"isPrivate"]},"subType":"road","connectors":["8f44c0a048a8358-1796e4879c1b2ba5","8f44c0a048adac2-17b6f351463b4597"]},"geometry":{"type":"LineString","coordinates":[[-83.6738284,32.885559900000004],[-83.6736461,32.8856279],[-83.67351880000001,32.885675400000004],[-83.67333190000001,32.8857452]]},"id":"8a44c0a048affff-17def3ec726d91f1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0e21a050-17fe719a4814b9af","8f44c0b0e2f425d-17fe31a1b83edaf7"]},"geometry":{"type":"LineString","coordinates":[[-83.72039410000001,32.8109186],[-83.7203908,32.8106784],[-83.72040600000001,32.810307800000004]]},"id":"8844c0b0e3fffff-17bf31a07348c330"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a328d41a6-179f343363d310bb","8f44c0a32888989-17bff5ada00a3f9b"]},"geometry":{"type":"LineString","coordinates":[[-83.6144842,32.8603297],[-83.6142069,32.8601724],[-83.6140785,32.8600129],[-83.6140144,32.859937800000004],[-83.6138864,32.859773700000005],[-83.61387900000001,32.8595933]]},"id":"8844c0a329fffff-17d7f51c8c096f30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b52843430-139fee3b1fcc4cd2","8f44c0b5284e1aa-13fdeceee86fe992"]},"geometry":{"type":"LineString","coordinates":[[-83.7480015,32.8718334],[-83.748597,32.8719771],[-83.74853300000001,32.8721556]]},"id":"8944c0b5287ffff-13f5fd59b9cb49b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b187246cc-17d6f430ae6e76fa","8f44c0b1872425a-17d7f3a8162ae222"]},"geometry":{"type":"LineString","coordinates":[[-83.6669174,32.8145733],[-83.66700800000001,32.814576],[-83.6671359,32.8145783]]},"id":"8a44c0b18727fff-17d6b3ec67bb2afd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6389408,32.8542587]},"id":"8f44c0a308f4a04-17b7f87e05528fc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,746.31],"value":"paved"}],"flags":["isLink"],"restrictions":{"speedLimits":[{"applyAt":[0.0,746.31],"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a34284965-13d7f0d07ddf6558","8f44c0a308f4a04-17b7f87e05528fc0"]},"geometry":{"type":"LineString","coordinates":[[-83.64208570000001,32.8460927],[-83.64205940000001,32.846472600000006],[-83.6420248,32.8469063],[-83.6420045,32.847418600000005],[-83.6419711,32.848379200000004],[-83.6419137,32.8499049],[-83.6418582,32.850301200000004],[-83.6417809,32.850675200000005],[-83.6415819,32.8513703],[-83.6413967,32.8520038],[-83.64123000000001,32.8524051],[-83.64107050000001,32.8527201],[-83.6408399,32.853008100000004],[-83.640635,32.853224600000004],[-83.6405079,32.853362100000005],[-83.6403926,32.8534657],[-83.6402238,32.853599100000004],[-83.64010280000001,32.8536942],[-83.6399732,32.8537857],[-83.63981390000001,32.8538818],[-83.63965320000001,32.8539668],[-83.6395322,32.8540277],[-83.6394107,32.8540823],[-83.6392902,32.8541319],[-83.6391725,32.8541783],[-83.6389408,32.8542587]]},"id":"8644c0a37ffffff-17dff2b013072c6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[40.66,50.2],"values":["isTunnel"]},"isPrivate"]},"subType":"road","connectors":["8f44c0b04a03056-13b630aab32884a5","8f44c0b04a01453-13f66ff38d3bbb58"]},"geometry":{"type":"LineString","coordinates":[[-83.7210824,32.7443716],[-83.721118,32.7444909],[-83.721118,32.744593300000005],[-83.7211149,32.744615200000005],[-83.7211046,32.7446288],[-83.7209866,32.744654700000005],[-83.7208868,32.744671600000004],[-83.72086,32.744666800000005],[-83.7208437,32.744657100000005],[-83.72083310000001,32.7446466],[-83.7207893,32.7444769]]},"id":"8944c0b04a3ffff-13ffb032cce1a033"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,63.25],"value":"paved"},{"applyAt":[90.8,183.54],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a28348425-17ffe95cf91ed08d","8f44c0a28274528-13de1e03b5ad7c36"]},"geometry":{"type":"LineString","coordinates":[[-83.7349829,32.9266049],[-83.7354614,32.926532800000004],[-83.7356472,32.926498800000005],[-83.7358406,32.926468400000005],[-83.7359369,32.926453800000004],[-83.73641900000001,32.926363],[-83.73666,32.926299],[-83.7368881,32.9262238]]},"id":"8844c0a283fffff-17f79bac92b8ab51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b08d898a9-13b75bd4cff771b2","8f44c0b08d8c4d5-17bebd1d14210ba7"]},"geometry":{"type":"LineString","coordinates":[[-83.7293236,32.8089973],[-83.7292721,32.808965],[-83.7292185,32.8089202],[-83.7291187,32.8088423],[-83.72904100000001,32.808731],[-83.72879830000001,32.808391400000005]]},"id":"8a44c0b08d8ffff-1397dc84ec93c855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e921ad5-17bfb7882ffd0b31","8f44c0b012c2af3-17bfa3232775b0fe"]},"geometry":{"type":"LineString","coordinates":[[-83.726331,32.791193],[-83.726128,32.791182],[-83.725852,32.791182],[-83.725296,32.791196],[-83.7251695,32.791219600000005],[-83.724531,32.7911899]]},"id":"8744c0b01ffffff-17d6b555dbe725c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b088b4c68-13fefb0b3b9a5f57","8f44c0b08898aec-13ffbb21d4bd146e"]},"geometry":{"type":"LineString","coordinates":[[-83.7361635,32.812569100000005],[-83.73616910000001,32.8120453],[-83.7361923,32.8104573],[-83.7361949,32.8103234],[-83.73619740000001,32.810042],[-83.736199,32.809939],[-83.7361997,32.8098991]]},"id":"8944c0b088bffff-17bf5b16d984a6cc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1aa62316-13d6f7ad0cc5066c","8f44c0b1aa09043-13d6dc1fffa7e8ae"]},"geometry":{"type":"LineString","coordinates":[[-83.65893600000001,32.8194863],[-83.6588072,32.8194773],[-83.6587063,32.8194773],[-83.6573279,32.8194502],[-83.6572354,32.8194457],[-83.65711370000001,32.819456100000004]]},"id":"8944c0b1aa7ffff-13d7d9e69508449b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.63632770000001,32.8558195]},"id":"8f44c0a30123ca3-1397fedf31e49323"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[729.61,1054.41],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a30d86b04-139792bed49b39dd","8f44c0a30123ca3-1397fedf31e49323"]},"geometry":{"type":"LineString","coordinates":[[-83.62818750000001,32.8492808],[-83.63279250000001,32.853390600000004],[-83.6335918,32.8540192],[-83.63392710000001,32.8542468],[-83.63454940000001,32.8546727],[-83.63533790000001,32.8551932],[-83.6357108,32.855443300000005],[-83.63632770000001,32.8558195]]},"id":"8644c0a37ffffff-13f74912d78a66cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[141.97,209.5],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a3089e915-17f7404ebac78fb4","8f44c0a308f4a04-17b7f87e05528fc0"]},"geometry":{"type":"LineString","coordinates":[[-83.6389408,32.8542587],[-83.6384788,32.8543347],[-83.63807650000001,32.854370700000004],[-83.63775190000001,32.854382],[-83.6374354,32.854377500000005],[-83.6370948,32.854346],[-83.63672460000001,32.854278400000005],[-83.63655030000001,32.8542288],[-83.63627670000001,32.8541477],[-83.6360185,32.8540318],[-83.6357397,32.853922000000004]]},"id":"8844c0a309fffff-17befc736d21534d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,379.03],"value":"paved"}],"flags":[{"applyAt":[0.0,298.68],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a36a5a59c-179f13d9d82a7994","8f44c0a30c34cd3-17b7cdba9765d8aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6302423,32.8503356],[-83.6297971,32.849753],[-83.6291853,32.849127100000004],[-83.628568,32.8485122],[-83.62827030000001,32.8482238],[-83.6277347,32.8476577]]},"id":"8644c0a37ffffff-13d710ba2da83194"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[86.44,296.19],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a342a3159-13f6fff97c6413a7","8f44c0a343164cb-13beebe442deeea9"]},"geometry":{"type":"LineString","coordinates":[[-83.644102,32.8425646],[-83.6436688,32.8432529],[-83.6434285,32.8437162],[-83.64319130000001,32.8441459],[-83.6427476,32.8449769],[-83.6426392,32.8452846],[-83.6425243,32.845649300000005],[-83.64242970000001,32.8461665]]},"id":"8844c0a343fffff-17f6fe3829cac4e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a363462e9-179fbb326edf509d","8f44c0a30cb36b1-139fb6a2211d4edd"]},"geometry":{"type":"LineString","coordinates":[[-83.62472580000001,32.8503003],[-83.6250364,32.850618700000005],[-83.62659500000001,32.852169]]},"id":"8644c0a37ffffff-13d7f8eb86f2e915"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b9ac796-13d7e4e58967feba","8f44c0b8b91000b-13d7a2f10da03112"]},"geometry":{"type":"LineString","coordinates":[[-83.56912480000001,32.8651554],[-83.56890700000001,32.8652968],[-83.568494,32.865609],[-83.568324,32.865746]]},"id":"8844c0b8b9fffff-1397e3eec2ceec13"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":[{"applyAt":[163.1,205.84],"value":"paved"}],"flags":[{"applyAt":[70.96,163.09],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1e411b30-17f7eeff48e53343","8f44c0b1e5ab69b-13bef0cb4ba4e731"]},"geometry":{"type":"LineString","coordinates":[[-83.64283,32.79535],[-83.64269,32.795282],[-83.64263600000001,32.795235000000005],[-83.642514,32.795008],[-83.642447,32.794828],[-83.642359,32.794514],[-83.642353,32.794496],[-83.642325,32.794403],[-83.64220830000001,32.7940221],[-83.642094,32.793649]]},"id":"8844c0b1e5fffff-17f6f012c0882eac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a063145-17964e8706b4ad32","8f44c0a2a0450f5-17b64f0f3e2a8c08"]},"geometry":{"type":"LineString","coordinates":[[-83.7085584,32.925238400000005],[-83.70867170000001,32.9255323],[-83.7086902,32.9255773],[-83.7086914,32.925600100000004],[-83.70867170000001,32.925615900000004],[-83.7083405,32.925724800000005]]},"id":"8944c0a2a07ffff-17bece7d65e008e0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a2b905ce9-17f6dbe5cb41e35b","8f44c0a2b90418e-17be7cbae1d53c04"]},"geometry":{"type":"LineString","coordinates":[[-83.72929640000001,32.929495700000004],[-83.7294596,32.929338200000004],[-83.7296965,32.929236700000004],[-83.7298981,32.929061100000006],[-83.7299258,32.928993500000004],[-83.7299132,32.9289342],[-83.72963100000001,32.928693100000004],[-83.72957550000001,32.928691],[-83.7292958,32.9289131],[-83.72908410000001,32.9291204],[-83.7289554,32.9292263]]},"id":"8944c0a2b93ffff-17dffb5b092b5a47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[0.0,91.86],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a30b8a4c0-1797f1e6252b3e5b","8f44c0a30123ca3-1397fedf31e49323"]},"geometry":{"type":"LineString","coordinates":[[-83.63632770000001,32.8558195],[-83.63709750000001,32.8563333],[-83.63758560000001,32.8566464],[-83.6390233,32.857525200000005],[-83.6402279,32.858340600000005],[-83.6411396,32.858949100000004],[-83.64164140000001,32.8592913]]},"id":"8744c0a30ffffff-17bff85d48c4e118"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,253.66],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,253.66],"maxSpeed":[50,"mph"]},{"applyAt":[253.66,342.75],"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30a29656-1396f7aa2c4b0a81","8f44c0a35691669-13d6df99b1f8dd67"]},"geometry":{"type":"LineString","coordinates":[[-83.64913650000001,32.862295200000005],[-83.64669,32.861311300000004],[-83.6458334,32.860961100000004]]},"id":"8644c0a37ffffff-13b6e3a2658bf888"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c49da2-17dffb6d35878f90","8f44c0a218db984-139eb10641e19a86"]},"geometry":{"type":"LineString","coordinates":[[-83.7163821,32.877030000000005],[-83.71665750000001,32.8771221],[-83.7174997,32.8774413],[-83.71889560000001,32.8779667],[-83.7201467,32.8784189],[-83.72064280000001,32.878586600000006]]},"id":"8844c0a211fffff-13beb63b6f0be6b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":[{"applyAt":[41.65,50.61],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a360e8432-17b73c522e20f9a6","8f44c0a360eaa4e-17bfbc606f4124f3"]},"geometry":{"type":"LineString","coordinates":[[-83.617689,32.8468681],[-83.61796340000001,32.8469029],[-83.61797150000001,32.8468414],[-83.61795520000001,32.846795300000004],[-83.61793030000001,32.846772],[-83.6178728,32.8467074],[-83.61782310000001,32.8466655],[-83.61777640000001,32.846651800000004],[-83.61771180000001,32.8466467]]},"id":"8a44c0a360effff-17977bf7ce38e95d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":[{"applyAt":[27.89,59.82],"values":["isTunnel"]},{"applyAt":[74.07,97.11],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a36058372-17dff844395f29bd","8f44c0a360ed236-17d7aa7bda091e3e"]},"geometry":{"type":"LineString","coordinates":[[-83.6184643,32.8467032],[-83.618437,32.8467919],[-83.6184248,32.8468534],[-83.6184451,32.8468961],[-83.6184915,32.8469295],[-83.61883,32.8469647],[-83.6189815,32.8469773],[-83.61922510000001,32.847007000000005],[-83.61927650000001,32.847008800000005],[-83.619307,32.8469951],[-83.61937250000001,32.8469197]]},"id":"8844c0a361fffff-17df2992568b7709"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a3604ab4b-179fb5e6a5da15e3","8f44c0a3604a882-17d7667ae7094ab7"]},"geometry":{"type":"LineString","coordinates":[[-83.6201042,32.8468996],[-83.6200977,32.8469661],[-83.62009900000001,32.8470053],[-83.6201705,32.8470737],[-83.62022780000001,32.847087300000005],[-83.62028880000001,32.8470754],[-83.6203414,32.847050700000004]]},"id":"8b44c0a3604afff-1797364a177427af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a363a6128-17b777e58f33e109","8f44c0a363a4048-17d7b6af376ccee1"]},"geometry":{"type":"LineString","coordinates":[[-83.62002050000001,32.8475211],[-83.6198832,32.8474953],[-83.61976960000001,32.8474817],[-83.61968710000001,32.8475126],[-83.619524,32.8474981]]},"id":"8a44c0a363a7fff-17bf374a377bc986"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36058c64-17bff8a02f217ac8","8f44c0a3605c094-17f7f88419959b1d"]},"geometry":{"type":"LineString","coordinates":[[-83.6192254,32.8466589],[-83.6193209,32.8466741],[-83.61937,32.8466706],[-83.6194071,32.846656],[-83.61945800000001,32.846588700000005],[-83.6194818,32.846527200000004],[-83.6194595,32.8464691],[-83.6193416,32.846392300000005],[-83.61927030000001,32.8463693]]},"id":"8a44c0a3605ffff-17f7783dd97818a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,93.34],"value":"paved"}],"flags":[{"applyAt":[0.0,34.98],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b0e218c00-13bf30b08bc8e38a","8f44c0b0e20384a-1396eea4c1566f38"]},"geometry":{"type":"LineString","coordinates":[[-83.72078,32.810005100000005],[-83.7210908,32.8098302],[-83.72128430000001,32.8097346],[-83.721618,32.80955]]},"id":"8944c0b0e23ffff-139eafaada2c50d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b69c2a2-13d6d022a06310d6","8f44c0b1b680774-17deced621d19f58"]},"geometry":{"type":"LineString","coordinates":[[-83.655471,32.841402],[-83.65583840000001,32.8409841],[-83.65587950000001,32.8409381],[-83.656003,32.8408]]},"id":"8944c0b1b6bffff-1797df7cb232e2fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":[{"applyAt":[31.78,43.89],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0ba96dc54e-139f3e992e8bd33d","8f44c0ba96de099-13ffffaeb16124be"]},"geometry":{"type":"LineString","coordinates":[[-83.61677900000001,32.832705700000005],[-83.6167362,32.8326556],[-83.61669020000001,32.8326371],[-83.6166443,32.832628400000004],[-83.6166144,32.832634500000005],[-83.61651590000001,32.8327155],[-83.61642660000001,32.8327945],[-83.6163349,32.8328671]]},"id":"8a44c0ba96dffff-13b73f259bb8023a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8c2a4d-139fdc95e019e272","8f44c0a2a8f6c20-13be6e8efebb2536"]},"geometry":{"type":"LineString","coordinates":[[-83.7085457,32.918157400000005],[-83.708607,32.918279000000005],[-83.70881100000001,32.9187596],[-83.7089002,32.9189734],[-83.7090022,32.9192012],[-83.7093538,32.919932100000004]]},"id":"8844c0a2a9fffff-17f6dd968171f310"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,421.6],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a362ad1ad-13df369cd76e0679","8f44c0a36313db4-13ffa4919a3a42b1"]},"geometry":{"type":"LineString","coordinates":[[-83.6208871,32.8481976],[-83.62087310000001,32.8487272],[-83.62084990000001,32.8492465],[-83.62083100000001,32.849705],[-83.620824,32.849953],[-83.620806,32.850479],[-83.62077000000001,32.850673],[-83.620715,32.850854000000005],[-83.620615,32.851072],[-83.62055500000001,32.851163],[-83.620485,32.851273],[-83.62004990000001,32.851837100000004]]},"id":"8844c0a363fffff-179f650519707c05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[224.93,404.07],"value":"paved"}],"flags":[{"applyAt":[193.52,224.93],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1509d591-17d6d3153a6d32f7","8f44c0b15770593-179fbfe5ea049b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.66212180000001,32.7585427],[-83.6621738,32.7580599],[-83.662163,32.757740000000005],[-83.662121,32.75744],[-83.662093,32.757317],[-83.662017,32.757053],[-83.6619383,32.756821200000005],[-83.661806,32.756561000000005],[-83.661575,32.756239],[-83.66110900000001,32.755577],[-83.6608173,32.7551785]]},"id":"8744c0b15ffffff-13bed0db01bf18cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":[{"applyAt":[129.15,211.5],"values":["isBridge"]},{"applyAt":[268.06,487.17],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a308f4a04-17b7f87e05528fc0","8f44c0a30c639b1-17d7d48a31e41a74"]},"geometry":{"type":"LineString","coordinates":[[-83.6389408,32.8542587],[-83.63870150000001,32.8543279],[-83.63848680000001,32.8543803],[-83.6382803,32.8544209],[-83.6381104,32.8544463],[-83.6378291,32.8544769],[-83.6375945,32.8544894],[-83.63745080000001,32.854493600000005],[-83.6373138,32.8544891],[-83.6371391,32.8544828],[-83.6369257,32.854463100000004],[-83.63671860000001,32.8544372],[-83.6365073,32.8544016],[-83.6362898,32.8543518],[-83.6361349,32.8543079],[-83.63584080000001,32.854217000000006],[-83.63559880000001,32.854124],[-83.63510720000001,32.8539212],[-83.63453120000001,32.8536841],[-83.6342657,32.853582700000004],[-83.63400610000001,32.8534893]]},"id":"8744c0a30ffffff-179ffe98cdda11c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]},{"applyAt":[417.12,652.15],"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30c75345-179786021f8c3820","8f44c0a30d84d61-13ffb2134d561218"]},"geometry":{"type":"LineString","coordinates":[[-83.6334047,32.853172],[-83.63317880000001,32.8530308],[-83.63302970000001,32.8529289],[-83.6327073,32.8527149],[-83.6323516,32.8524686],[-83.631372,32.851585],[-83.6302247,32.8505501],[-83.628462,32.849041]]},"id":"8844c0a30dfffff-13b77c1f66bb1e07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.685179,32.822001]},"id":"8f44c0b19c548ad-13f6a79b2639c404"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19c548ad-13f6a79b2639c404","8f44c0b19c70342-13dec5f745523611"]},"geometry":{"type":"LineString","coordinates":[[-83.685179,32.822001],[-83.68553150000001,32.8218589],[-83.68585080000001,32.821728400000005]]},"id":"8944c0b19c7ffff-13b7b6c913eec22a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e4da6-13de78751111e46e","8f44c0b1d283722-13f7f0d35952f774"]},"geometry":{"type":"LineString","coordinates":[[-83.69793750000001,32.8157893],[-83.69683900000001,32.8157283],[-83.69596920000001,32.8156994],[-83.6950509,32.8156507],[-83.6945099,32.815622000000005]]},"id":"8844c0b1d3fffff-139e6ca4369621f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac08442-139650822481e46d","8f44c0b1d2090d2-13fff5f1a725f4cd"]},"geometry":{"type":"LineString","coordinates":[[-83.70774700000001,32.8163077],[-83.70628280000001,32.816233100000005],[-83.705359,32.816176],[-83.70326700000001,32.816066],[-83.701307,32.815956],[-83.6998466,32.815896200000005],[-83.6995224,32.815887000000004],[-83.6992924,32.8158781],[-83.69896700000001,32.815862100000004]]},"id":"8544c0b3fffffff-13fe5b399436d537"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5649446,32.808036]},"id":"8f44c0b8190a8d3-17dfad25af96efa3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b852dc321-13dfe688bb931cd5","8f44c0b8190a8d3-17dfad25af96efa3"]},"geometry":{"type":"LineString","coordinates":[[-83.5676533,32.8067982],[-83.5664811,32.807337000000004],[-83.5649446,32.808036]]},"id":"8644c0b87ffffff-17dfa9d6d3832d81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5713822,32.8558673]},"id":"8f44c0b88056231-13b79d6e2e57df7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8815c898-179798e163ba258a","8f44c0b88056231-13b79d6e2e57df7b"]},"geometry":{"type":"LineString","coordinates":[[-83.57324580000001,32.8535824],[-83.573209,32.8535935],[-83.5731849,32.853602800000004],[-83.5731585,32.853614300000004],[-83.5731286,32.853625900000004],[-83.573091,32.853644],[-83.57305410000001,32.8536595],[-83.5730147,32.8536705],[-83.57297910000001,32.8536804],[-83.5729282,32.8536901],[-83.5728552,32.8537012],[-83.5728122,32.8537072],[-83.5727722,32.853713500000005],[-83.57271700000001,32.853722600000005],[-83.57267610000001,32.8537351],[-83.57263800000001,32.853748200000005],[-83.5725908,32.8537643],[-83.5725628,32.853782],[-83.57254730000001,32.8537984],[-83.57252390000001,32.8538389],[-83.5725144,32.853868],[-83.5725061,32.8538955],[-83.5724981,32.8539207],[-83.57249230000001,32.8539428],[-83.5724824,32.853973],[-83.5724758,32.853993700000004],[-83.5724644,32.8540214],[-83.57245400000001,32.8540413],[-83.57244250000001,32.8540648],[-83.57243290000001,32.854081],[-83.57242090000001,32.8540981],[-83.5724089,32.854109300000005],[-83.5723914,32.854120900000005],[-83.5723633,32.854135],[-83.57233400000001,32.8541461],[-83.5722925,32.8541607],[-83.57222680000001,32.8541812],[-83.57218610000001,32.8541909],[-83.5721504,32.854199300000005],[-83.5720924,32.8542106],[-83.5720773,32.8542146],[-83.57206930000001,32.8542203],[-83.57206040000001,32.854232800000005],[-83.5720553,32.854251000000005],[-83.5720488,32.854286300000005],[-83.572046,32.8543411],[-83.5720489,32.8543757],[-83.5720557,32.8544135],[-83.5720697,32.8545322],[-83.5720666,32.8545541],[-83.5720586,32.8545729],[-83.57204080000001,32.854595700000004],[-83.57201740000001,32.854614600000005],[-83.5719784,32.8546427],[-83.57196040000001,32.8546567],[-83.5719528,32.8546695],[-83.5719505,32.8546974],[-83.5719598,32.854722100000004],[-83.5719754,32.854750200000005],[-83.5719924,32.8547837],[-83.5720113,32.8548287],[-83.5720161,32.8548434],[-83.5720216,32.854866],[-83.5720237,32.8548901],[-83.5720239,32.8549183],[-83.57202290000001,32.854937500000005],[-83.57201740000001,32.854955700000005],[-83.57201140000001,32.854968400000004],[-83.5719909,32.855011000000005],[-83.57197570000001,32.855040200000005],[-83.57195660000001,32.855077800000004],[-83.57193290000001,32.8551185],[-83.57190580000001,32.8551601],[-83.5713822,32.8558673]]},"id":"8844c0b881fffff-13f7db7a482d3685"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,1830.35],"value":"paved"}],"flags":[{"applyAt":[591.65,696.84],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,809.91],"maxSpeed":[50,"mph"]},{"applyAt":[809.91,2098.83],"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31b16849-17fec23ba65e3fcc","8f44c0a30a0119e-17d7fada8b97a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.6445272,32.8606323],[-83.64554890000001,32.8610393],[-83.64674000000001,32.861525],[-83.648066,32.862066],[-83.64933,32.862571],[-83.650233,32.8629282],[-83.65045470000001,32.8630203],[-83.6506731,32.8631124],[-83.65090590000001,32.863222],[-83.6512149,32.8633876],[-83.6514293,32.8635176],[-83.6516374,32.8636543],[-83.6518932,32.8638433],[-83.6521393,32.8640418],[-83.65632500000001,32.867891],[-83.65661200000001,32.868161],[-83.657139,32.868637],[-83.657972,32.869404],[-83.658426,32.869816],[-83.65889200000001,32.870246],[-83.659345,32.870688],[-83.6594803,32.8708431],[-83.659976,32.871364],[-83.660525,32.871994],[-83.66086100000001,32.872405],[-83.6611654,32.8728004]]},"id":"8644c0a37ffffff-179ed5277d58426b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7218371,32.738617000000005]},"id":"8f44c0b2349c616-17f7ae1bd9bf4799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b00914248-1396598fad1be4f1","8f44c0b2349c616-17f7ae1bd9bf4799"]},"geometry":{"type":"LineString","coordinates":[[-83.7218371,32.738617000000005],[-83.7214656,32.7396259],[-83.7213363,32.7399276],[-83.7211936,32.7402293],[-83.7209399,32.7407631],[-83.7205359,32.7414939],[-83.72009770000001,32.7421947],[-83.71950620000001,32.743071],[-83.71826200000001,32.7448306],[-83.7170066,32.7466734],[-83.716229,32.7477497],[-83.7156511,32.748578300000005],[-83.71483190000001,32.7495254],[-83.7141232,32.7503179],[-83.71333750000001,32.7511625],[-83.71207460000001,32.7525647],[-83.71189580000001,32.752763300000005],[-83.7105926,32.754256500000004]]},"id":"8744c0b04ffffff-13b6fabd1b167bbe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0b04ab4c29-13df79e8e9847696","8f44c0b2349c616-17f7ae1bd9bf4799"]},"geometry":{"type":"LineString","coordinates":[[-83.7218371,32.738617000000005],[-83.7216308,32.738947100000004],[-83.721438,32.7392817],[-83.7209509,32.740186900000005],[-83.72084980000001,32.740358400000005],[-83.72074330000001,32.74053],[-83.7206469,32.740667300000005],[-83.7205426,32.7408025],[-83.72044050000001,32.740920700000004],[-83.7203331,32.7410389],[-83.72023390000001,32.7411343],[-83.72012260000001,32.741230200000004],[-83.72000200000001,32.741331100000004],[-83.7198623,32.7414341],[-83.71969920000001,32.7415406],[-83.7195641,32.741620000000005],[-83.7193932,32.7417121],[-83.7192175,32.7417991],[-83.71863040000001,32.742055],[-83.71781820000001,32.7424166],[-83.717657,32.742493800000005],[-83.7175484,32.7425531],[-83.7174123,32.742642700000005],[-83.71729140000001,32.7427445],[-83.71718530000001,32.7428528],[-83.71708140000001,32.7429763],[-83.71700340000001,32.743090200000005]]},"id":"8744c0b04ffffff-1397b35eed1241a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b8a6dc-17df7c990d48576a","8f44c0a36b96480-13df214816c67e7d"]},"geometry":{"type":"LineString","coordinates":[[-83.62415200000001,32.8434663],[-83.62389200000001,32.843178],[-83.623287,32.842545],[-83.62282400000001,32.842110000000005],[-83.6223707,32.8417298],[-83.62223350000001,32.841616200000004]]},"id":"8844c0a36bfffff-139fdedfec38b3ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8e0c18d4-17b7cb896adae0d6","8f44c0b8e0eaa6b-17dfc9de8b3d85f5"]},"geometry":{"type":"LineString","coordinates":[[-83.552497,32.84115],[-83.552836,32.841171],[-83.5530045,32.8411891],[-83.55318000000001,32.841212]]},"id":"8944c0b8e0fffff-17d7dab3a68ea153"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8536c5-1396e3a6a441480c","8f44c0b1d8ed800-13d7e368c3bf716a"]},"geometry":{"type":"LineString","coordinates":[[-83.6999062,32.8028008],[-83.69995800000001,32.8027863],[-83.69996970000001,32.8027979],[-83.70001690000001,32.8028445],[-83.7000271,32.8028546],[-83.7000052,32.802895400000004]]},"id":"8a44c0b1d8effff-13b673778d24d81f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a346b5ba9-13d7d7faa3f613f1","8f44c0a346a6c22-17b7e76ab4ced88f"]},"geometry":{"type":"LineString","coordinates":[[-83.63259740000001,32.8446829],[-83.63271420000001,32.844550500000004],[-83.63276060000001,32.8444926],[-83.6328277,32.844419]]},"id":"8944c0a346bffff-139747b2c28ff172"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[8.16,31.85],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a346114dc-13b742c75b2a51fe","8f44c0a34612a6d-13b7139fab66ab98"]},"geometry":{"type":"LineString","coordinates":[[-83.63472750000001,32.845421200000004],[-83.63465690000001,32.845378100000005],[-83.6344519,32.845252800000004],[-83.63438140000001,32.845209700000005]]},"id":"8a44c0a34617fff-13f7333387fd9e32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","flags":[{"applyAt":[68.47,167.85],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a30c75345-179786021f8c3820","8f44c0a30c28144-13d7f8dbb70f1add"]},"geometry":{"type":"LineString","coordinates":[[-83.6334047,32.853172],[-83.6332512,32.853007600000005],[-83.6329884,32.8526651],[-83.63276300000001,32.8524668],[-83.6322373,32.8520319]]},"id":"8844c0a30dfffff-139fd75f71dedcb6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b1a69b451-139efc10da0b32ba","8f44c0a34d14b34-17f6fe24caf7a370"]},"geometry":{"type":"LineString","coordinates":[[-83.6374771,32.8261576],[-83.63720620000001,32.826417500000005],[-83.6370421,32.8265927],[-83.63700750000001,32.8266367],[-83.636626,32.827121000000005]]},"id":"8944c0a34d3ffff-17d6fd247b19660e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1510b6ce-17f6b6b445f40503","8f44c0b150258c8-17d7b67df63539dd"]},"geometry":{"type":"LineString","coordinates":[[-83.6658876,32.7523368],[-83.66661520000001,32.7520654],[-83.6666998,32.7522259],[-83.6659745,32.752498700000004]]},"id":"8844c0b151fffff-17b7b59e5ec499ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[352.39,424.39],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8535cd53-139f9caef15c4a49","8f44c0b8515acd0-13ffe884939d053d"]},"geometry":{"type":"LineString","coordinates":[[-83.5716881,32.8027865],[-83.56975680000001,32.800059600000004],[-83.5693571,32.799505],[-83.56795000000001,32.797441],[-83.5668407,32.7957982]]},"id":"8744c0b85ffffff-139ff2a5707b6f66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a282d215b-179f58f750b3212d","8f44c0a2b92ad0e-17febb0544ed3feb"]},"geometry":{"type":"LineString","coordinates":[[-83.7296556,32.9297035],[-83.72985600000001,32.929533],[-83.730091,32.9293112],[-83.73049710000001,32.928946100000005]]},"id":"8744c0a28ffffff-17fef9fd993b62cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca40d92-13f7f345a801ed77","8f44c0b0c603a50-17be2ba2ea2d153c"]},"geometry":{"type":"LineString","coordinates":[[-83.75249020000001,32.799261900000005],[-83.7524003,32.7993013],[-83.7523118,32.7993419],[-83.7522125,32.7993757],[-83.7520525,32.799416300000004],[-83.7517644,32.7994683],[-83.751125,32.799565],[-83.750803,32.799608],[-83.74939400000001,32.799816],[-83.74713100000001,32.800153],[-83.74522900000001,32.80043],[-83.743947,32.800621],[-83.743308,32.800727],[-83.74278500000001,32.800835],[-83.74247100000001,32.800908],[-83.741842,32.801069000000005],[-83.741286,32.801219],[-83.74037700000001,32.801519],[-83.74006700000001,32.801627],[-83.739739,32.801741],[-83.738899,32.802086],[-83.73861000000001,32.802211],[-83.737987,32.802512],[-83.73742800000001,32.802797000000005],[-83.737153,32.802945],[-83.73689990000001,32.803099100000004],[-83.7367498,32.8031857],[-83.7364975,32.8033383],[-83.735957,32.803677]]},"id":"8744c0b0cffffff-1795f7e2a0c84c69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20764955-17de660bd7d8a92b","8f44c0a200d8844-13def7c6c07fd481"]},"geometry":{"type":"LineString","coordinates":[[-83.6982164,32.8690573],[-83.6981018,32.869444900000005],[-83.6980264,32.8697577],[-83.6980006,32.8699464],[-83.6984805,32.869983000000005],[-83.6985459,32.8699706],[-83.6985861,32.8699442],[-83.69892510000001,32.8696482]]},"id":"8744c0a20ffffff-17f6678d79e1b9d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a33125c-17befb681160f400","8f44c0b0a331671-1796fbd986fe59a5"]},"geometry":{"type":"LineString","coordinates":[[-83.7163903,32.8268014],[-83.7163405,32.826809600000004],[-83.71625230000001,32.826788400000005],[-83.7162088,32.826759800000005]]},"id":"8b44c0b0a331fff-17be7ba298bf512c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845e72d-17fefedd6bebbe8f","8f44c0b1845ed5a-17dffedb2ddd658b"]},"geometry":{"type":"LineString","coordinates":[[-83.66254500000001,32.814202300000005],[-83.66254640000001,32.814145],[-83.6625465,32.8140243],[-83.66254860000001,32.813974200000004]]},"id":"8b44c0b1845efff-17b7bedc7ba992aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184edb75-17febf4c4ae40dae","8f44c0b18453275-17deff4b967763ca"]},"geometry":{"type":"LineString","coordinates":[[-83.66236760000001,32.8142027],[-83.6623663,32.814142000000004],[-83.6623687,32.8140213],[-83.6623687,32.8139756]]},"id":"8944c0b1847ffff-17b7ff4c43dea9b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1845e7a1-17febf144f35d888","8f44c0b1845ecae-17deff10fb1500ba"]},"geometry":{"type":"LineString","coordinates":[[-83.6624572,32.8142025],[-83.66245930000001,32.8141436],[-83.66246220000001,32.814022900000005],[-83.6624625,32.813974900000005]]},"id":"8b44c0b1845efff-17b7ff12452301f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292306e-13977b64aab381a6","8f44c0a32923010-17f77ba3b7c53718"]},"geometry":{"type":"LineString","coordinates":[[-83.61799090000001,32.8543559],[-83.6180114,32.854365],[-83.61807970000001,32.8543996],[-83.6180918,32.8544055]]},"id":"8c44c0a329231ff-1397eb841260efc7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923843-17d72b315094a724","8f44c0a329238ae-17b7eb705754be71"]},"geometry":{"type":"LineString","coordinates":[[-83.6180731,32.8542302],[-83.6180934,32.8542389],[-83.6181622,32.854272800000004],[-83.6181739,32.8542768]]},"id":"8c44c0a329239ff-17b7bb50e0d940b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32923122-17d7ab8519da3f52","8f44c0a32923b91-17f73b47c4a088c6"]},"geometry":{"type":"LineString","coordinates":[[-83.6180399,32.854281],[-83.6180588,32.8542922],[-83.61812780000001,32.8543256],[-83.618138,32.854333100000005]]},"id":"8b44c0a32923fff-17d7eb665d91b707"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0c74-17967b02983551ed","8f44c0b198a00ee-1797fae5ab1f900a"]},"geometry":{"type":"LineString","coordinates":[[-83.69033830000001,32.8208167],[-83.6903542,32.8208782],[-83.6903722,32.820962900000005],[-83.6903846,32.8210205]]},"id":"8b44c0b198a0fff-17d67af39404b23b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a0a1d-1797fa7561dd4a1b","8f44c0b198a0909-17977a901956c128"]},"geometry":{"type":"LineString","coordinates":[[-83.69056420000001,32.8209949],[-83.6905524,32.820933600000004],[-83.6905351,32.8208505],[-83.6905215,32.8207891]]},"id":"8b44c0b198a0fff-17d77a826860234e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1981296a-1797f863d988f48c","8f44c0b19812888-17b7f8c0280ae1e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6914115,32.8210268],[-83.6913825,32.821062600000005],[-83.6913382,32.82108],[-83.6912638,32.8210749]]},"id":"8c44c0b198129ff-17bef88df432f978"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1981296a-1797f863d988f48c","8f44c0b19812888-17b7f8c0280ae1e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6914115,32.8210268],[-83.69136470000001,32.8210281],[-83.6913167,32.8210454],[-83.6912638,32.8210749]]},"id":"8c44c0b198129ff-179ff89360916bae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71a0c-13d684f198bf0baf","8f44c0b19c71809-13fed524d6d88c82"]},"geometry":{"type":"LineString","coordinates":[[-83.68626950000001,32.8219464],[-83.6862519,32.8219155],[-83.68620920000001,32.821840800000004],[-83.6861875,32.8218029]]},"id":"8b44c0b19c71fff-13b7a50b3769c89d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71324-13ffd52650806b96","8f44c0b19c71121-139fd55b26730d41"]},"geometry":{"type":"LineString","coordinates":[[-83.6861851,32.8219797],[-83.6861674,32.821949700000005],[-83.68612250000001,32.821873700000005],[-83.6861006,32.8218365]]},"id":"8b44c0b19c71fff-13be9540c28509b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c71384-13ffd558dbdd34a0","8f44c0b19c71181-13b7a58d95c53d1b"]},"geometry":{"type":"LineString","coordinates":[[-83.68610430000001,32.822011700000004],[-83.6860863,32.8219811],[-83.6860412,32.8219044],[-83.6860199,32.821868200000004]]},"id":"8b44c0b19c71fff-13d6f57337dea846"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c7175c-1396958d51588633","8f44c0b19c7155d-13beb5c247da9329"]},"geometry":{"type":"LineString","coordinates":[[-83.68602030000001,32.8220449],[-83.68600280000001,32.8220152],[-83.68595690000001,32.8219372],[-83.68593560000001,32.821901100000005]]},"id":"8b44c0b19c71fff-13f7a5a7c951833c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c714f5-13dea5f550b4031e","8f44c0b19c7161a-13b6a5c03564b25b"]},"geometry":{"type":"LineString","coordinates":[[-83.68593890000001,32.822077],[-83.68592120000001,32.822047000000005],[-83.6858763,32.821971000000005],[-83.68585390000001,32.821933]]},"id":"8b44c0b19c71fff-13ffa5dac27a8c70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[23.97,36.96],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b19c71b68-13d7d4c229f57082","8f44c0b19c44012-139ee4a8f22caf7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6863857,32.822235],[-83.6864728,32.8222009],[-83.6864865,32.822188100000005],[-83.68648730000001,32.822172200000004],[-83.6864379,32.822079200000005],[-83.68638,32.821972800000005],[-83.68634540000001,32.8219165]]},"id":"8944c0b19c7ffff-13b6e48ff31a873e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b595b5-13bfefb49ec6c261","8f44c0a36b5d791-139f6f3ff3034ca2"]},"geometry":{"type":"LineString","coordinates":[[-83.62943270000001,32.844819],[-83.62949710000001,32.8447188],[-83.62958640000001,32.844614],[-83.6296193,32.844567000000005]]},"id":"8a44c0a36b5ffff-13df2f7ba46b1aaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a1a1aac-179ff836a841a589","8f44c0b1a112235-179ee73484a7e7a0"]},"geometry":{"type":"LineString","coordinates":[[-83.6456086,32.8142815],[-83.6458303,32.8142799],[-83.64591370000001,32.8142769],[-83.64602160000001,32.814278800000004]]},"id":"8844c0b1a1fffff-179ef7b5906e0784"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c112c42-17b6bfaaf91c4458","8f44c0b1c1a5348-17fef00b523bc261"]},"geometry":{"type":"LineString","coordinates":[[-83.6753233,32.7876683],[-83.67528730000001,32.787654],[-83.67521520000001,32.7876254],[-83.6751691,32.7876071]]},"id":"8944c0b1c1bffff-17979fdb20b02f03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1a5ae9-17dfbff08bfd3a7a","8f44c0b1c112d63-17f7ff908b6b3905"]},"geometry":{"type":"LineString","coordinates":[[-83.6753656,32.7875926],[-83.67532870000001,32.787578100000005],[-83.67525660000001,32.7875497],[-83.675212,32.7875322]]},"id":"8a44c0b1c117fff-17f69fc083b2f08f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1a5b5c-179fffd4de896cad","8f44c0b1c116654-17d7df75dbd658d0"]},"geometry":{"type":"LineString","coordinates":[[-83.6754083,32.7875164],[-83.6753702,32.7875011],[-83.6752982,32.787472],[-83.6752563,32.7874551]]},"id":"8a44c0b1c117fff-17b6bfa55741c68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c1164e1-17ff9fb7152fff58","8f44c0b1c1160db-17979f58a0c4600e"]},"geometry":{"type":"LineString","coordinates":[[-83.675455,32.7874329],[-83.6754136,32.787416300000004],[-83.6753434,32.787388],[-83.6753039,32.787372000000005]]},"id":"8b44c0b1c116fff-17fe9f87ea9bc7a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b24469-13def7aaa1ef7b81","8f44c0a30b26a2a-1796e8156e790cbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6458326,32.8559531],[-83.645781,32.855980200000005],[-83.6457122,32.8560163],[-83.6456618,32.856042800000004]]},"id":"8a44c0a30b27fff-13f6f7e00c2801c7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b24552-13bee7cc2c8ecd38","8f44c0a30b26ba0-13f7e8390fef5d1e"]},"geometry":{"type":"LineString","coordinates":[[-83.645779,32.855883],[-83.64572100000001,32.8559112],[-83.6456533,32.855944],[-83.6456048,32.8559676]]},"id":"8a44c0a30b27fff-13dff8029f7c94fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499249-1396f7ec39c301fd","8f44c0a30b2680a-13bfe8578e9f9c96"]},"geometry":{"type":"LineString","coordinates":[[-83.64572770000001,32.8558159],[-83.64566830000001,32.8558462],[-83.64560060000001,32.8558806],[-83.645556,32.8559034]]},"id":"8a44c0a30b27fff-13b6e821ee97eaca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3215470e-17d7765e2d54e524","8f44c0a32156b05-17bf76d28e8f0267"]},"geometry":{"type":"LineString","coordinates":[[-83.61359660000001,32.8635157],[-83.61353150000001,32.8635046],[-83.6134741,32.863494800000005],[-83.6134104,32.863483800000004]]},"id":"8a44c0a32157fff-17d7769852bfb738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154080-17b7b654140881e5","8f44c0a321544a3-179fb6c5d196833c"]},"geometry":{"type":"LineString","coordinates":[[-83.6136127,32.8634408],[-83.6135503,32.8634299],[-83.61349050000001,32.863419400000005],[-83.61343070000001,32.8634089]]},"id":"8b44c0a32154fff-179fb68cfe15a312"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154180-17ff364b7692490f","8f44c0a321545a0-17f776bae1a6df2c"]},"geometry":{"type":"LineString","coordinates":[[-83.61362650000001,32.863376200000005],[-83.61356760000001,32.8633663],[-83.6135079,32.863355500000004],[-83.61344820000001,32.8633447]]},"id":"8b44c0a32154fff-17f776833e080df4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32109264-17bfb6ae7a0adca9","8f44c0a32154c71-17df764160758397"]},"geometry":{"type":"LineString","coordinates":[[-83.6136426,32.8633013],[-83.61358220000001,32.8632909],[-83.6135251,32.8632811],[-83.6134681,32.8632713]]},"id":"8a44c0a32157fff-17d7f677e9f94645"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32154d75-179ff6381f912ac1","8f44c0a32109aca-179fb6a2852374ce"]},"geometry":{"type":"LineString","coordinates":[[-83.6136575,32.8632319],[-83.61360210000001,32.863221800000005],[-83.61354200000001,32.8632105],[-83.61348720000001,32.863201000000004]]},"id":"8944c0a3217ffff-1797366d4a2d8230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0ba92e5c1c-13d753a4b7502742","8f44c0ba920b756-13f7134a2b639d11"]},"geometry":{"type":"LineString","coordinates":[[-83.6278197,32.831771700000004],[-83.62788730000001,32.831765600000004],[-83.6279143,32.8317555],[-83.6279729,32.831685300000004],[-83.62797780000001,32.8316638],[-83.62797760000001,32.8316414],[-83.6279748,32.831617800000004],[-83.6279646,32.8315921]]},"id":"8844c0ba93fffff-13bfb360f3d8e525"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b0e0-13b6821f76183ca7","8f44c0a05896564-13bfe182c41d9205"]},"geometry":{"type":"LineString","coordinates":[[-83.6876756,32.900965400000004],[-83.6876295,32.9009234],[-83.6875069,32.9008139],[-83.68742490000001,32.9007424]]},"id":"8844c0a05dfffff-13ffe1d0dfecd060"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4b768-13f6a223f3072120","8f44c0a05896461-13f6918a3c23e966"]},"geometry":{"type":"LineString","coordinates":[[-83.6876637,32.9010441],[-83.68761880000001,32.9010024],[-83.6874975,32.9008938],[-83.68741770000001,32.900822600000005]]},"id":"8844c0a05dfffff-13bfa1d6e78dbbf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05896789-13be919383b3f5c1","8f44c0a05c65915-13b78229b47a2a86"]},"geometry":{"type":"LineString","coordinates":[[-83.6876488,32.9011425],[-83.687606,32.9011033],[-83.6874868,32.9009932],[-83.6874085,32.900924]]},"id":"8844c0a05dfffff-13fff1de5000eaa2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c65165-13979233648e141b","8f44c0a05892c25-1396f1b453091bf8"]},"geometry":{"type":"LineString","coordinates":[[-83.68759630000001,32.9012807],[-83.687585,32.9012686],[-83.68746250000001,32.901164300000005],[-83.687393,32.9010969]]},"id":"8944c0a05c7ffff-13df91f458d1c0a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05c658e6-13f7822f919604a5","8f44c0a058966d3-13f7b19c3996c618"]},"geometry":{"type":"LineString","coordinates":[[-83.6876349,32.9012347],[-83.68759390000001,32.901198300000004],[-83.68747280000001,32.901092000000006],[-83.68739910000001,32.9010288]]},"id":"8844c0a05dfffff-13b7a1e5bf4382e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5617009,32.8618965]},"id":"8f44c0b8869cb2d-13dff510fe82cd9a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8ab4a872-17bfb9b5acf05942","8f44c0b8869cb2d-13dff510fe82cd9a"]},"geometry":{"type":"LineString","coordinates":[[-83.5617009,32.8618965],[-83.5616833,32.8618705],[-83.5616505,32.861826900000004],[-83.561622,32.8617878],[-83.5615958,32.8617556],[-83.56157950000001,32.8617367],[-83.561559,32.861713900000005],[-83.5615325,32.861689500000004],[-83.5615107,32.861671],[-83.5614915,32.8616566],[-83.5614695,32.8616413],[-83.5614438,32.861628700000004],[-83.5614185,32.8616168],[-83.56139280000001,32.861608000000004],[-83.56136740000001,32.8616011],[-83.56133720000001,32.8615972],[-83.5613039,32.861594600000004],[-83.561259,32.861592300000005],[-83.56122160000001,32.8615906],[-83.56118880000001,32.861589],[-83.56116,32.8615866],[-83.5611382,32.8615827],[-83.5611107,32.8615748],[-83.5610796,32.8615656],[-83.56105210000001,32.8615544],[-83.560995,32.861524100000004],[-83.5609455,32.8614946],[-83.56089730000001,32.8614565],[-83.56086040000001,32.8614271],[-83.56081640000001,32.861390300000004],[-83.56077780000001,32.8613553],[-83.5607536,32.8613311],[-83.5603713,32.860925],[-83.56029310000001,32.8608427],[-83.5600503,32.8605869],[-83.55981480000001,32.860257600000004],[-83.5598004,32.860237000000005],[-83.5597973,32.860221],[-83.559799,32.860201700000005]]},"id":"8644c0b8fffffff-1397b78d072f629b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b802196aa-139fdde0f610d8c0","8f44c0b802e68ae-13ffddab5d8d838b"]},"geometry":{"type":"LineString","coordinates":[[-83.5450699,32.8099277],[-83.54561340000001,32.8095974],[-83.5455318,32.8094837],[-83.54498410000001,32.8097769]]},"id":"8844c0b803fffff-13f7fd0a4e07decf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1e308002-17dfe8ef50ad5772","8f44c0b1e2257a3-139ec9d541ff5283"]},"geometry":{"type":"LineString","coordinates":[[-83.6580524,32.802598800000005],[-83.65770450000001,32.802467400000005],[-83.6575985,32.802421800000005],[-83.6569889,32.8022337],[-83.65699430000001,32.802120900000006],[-83.65670460000001,32.8018233],[-83.6568172,32.801652000000004],[-83.65680110000001,32.8014536],[-83.6579062,32.8014761],[-83.6584203,32.801656200000004]]},"id":"8844c0b1e3fffff-17dfeb705597d7f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3c26-17bf7e9976ec25e0","8f44c0b198b3394-17fe7e63bc624e4c"]},"geometry":{"type":"LineString","coordinates":[[-83.68886810000001,32.8210934],[-83.68889180000001,32.821172100000005],[-83.6889541,32.8213729]]},"id":"8b44c0b198b3fff-1796fe7ebf8632fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b234d-17defedcb3266578","8f44c0b198b3622-17fe7ea63aae5c9e"]},"geometry":{"type":"LineString","coordinates":[[-83.6887605,32.821115],[-83.68878380000001,32.821194600000005],[-83.6888222,32.8213117],[-83.68884770000001,32.8213953]]},"id":"8a44c0b198b7fff-17b6fec1af205e62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b06c9-17b77e5d63fa981a","8f44c0b198b3322-17f7fe2a7b09388b"]},"geometry":{"type":"LineString","coordinates":[[-83.68904570000001,32.821353200000004],[-83.6890202,32.8212672],[-83.6889878,32.8211522],[-83.6889642,32.821074100000004]]},"id":"8b44c0b198b3fff-179efe43d36b3502"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198b3ae5-17d7fdf2c93a3ee9","8f44c0b198b3930-17b77e2475ae22b4"]},"geometry":{"type":"LineString","coordinates":[[-83.6891348,32.821334],[-83.6891078,32.821249],[-83.6890767,32.821136100000004],[-83.6890553,32.8210544]]},"id":"8a44c0b198b7fff-17fefe0c99ba72d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a2d85-17bf7c610e1f4f78","8f44c0b198a2616-1796fc69403409b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6897644,32.821198100000004],[-83.6897797,32.8211104],[-83.6897453,32.8209675],[-83.6897374,32.820934300000005],[-83.6897294,32.8209012],[-83.6897395,32.8208782],[-83.6897776,32.8208592]]},"id":"8a44c0b198a7fff-17967c6d632b0249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[14.2,20.27],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0b2ab8a0dd-179ff073257750ee","8f44c0b2aaa4991-179de09ad70fea7d"]},"geometry":{"type":"LineString","coordinates":[[-83.7536462,32.774962900000006],[-83.7536017,32.7750853],[-83.75358270000001,32.7751376]]},"id":"8944c0b2abbffff-17d7e08705c0e5bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b189a18-13b7fd90200d41ad","8f44c0b1b18908c-13bebe210a7e7912"]},"geometry":{"type":"LineString","coordinates":[[-83.6630782,32.832338],[-83.6630277,32.8323363],[-83.66295140000001,32.8323338],[-83.6628464,32.832330400000004]]},"id":"8b44c0b1b189fff-13b6fdd8911ea3ac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0266166d-179f9261c347555b","8f44c0b0264469b-17b6b525fff444d2"]},"geometry":{"type":"LineString","coordinates":[[-83.6796321,32.778449],[-83.68075970000001,32.7784518],[-83.68076520000001,32.7782384]]},"id":"8944c0b0267ffff-179f938d3a350692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0266166d-179f9261c347555b","8f44c0b02671235-17b7955c6aaeac2d"]},"geometry":{"type":"LineString","coordinates":[[-83.68076520000001,32.7782384],[-83.6807625,32.7781666],[-83.6807551,32.7781157],[-83.68071970000001,32.7780806],[-83.6806749,32.7780511],[-83.680593,32.7780459],[-83.68035710000001,32.7780446],[-83.68019430000001,32.7780438],[-83.6796212,32.7780548],[-83.679545,32.7780697]]},"id":"8944c0b0267ffff-17b7b3b9cf17e8af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e25b99c-13d63a8bd84a3db5","8f44c0b0e259d96-13f679e54ca05cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.7232963,32.8126979],[-83.723427,32.812708400000005],[-83.7235199,32.812654],[-83.72356280000001,32.8125541]]},"id":"8a44c0b0e25ffff-13bffa2a378315dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2434eb-13f7695317ad3f48","8f44c0b0e25d826-13fe28e6c92aabd0"]},"geometry":{"type":"LineString","coordinates":[[-83.72397000000001,32.812173],[-83.72381700000001,32.8120939],[-83.7237743,32.8120387],[-83.72379670000001,32.811957400000004]]},"id":"8944c0b0e27ffff-13d6b9351e38557b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2434eb-13f7695317ad3f48","8f44c0b0e25d826-13fe28e6c92aabd0"]},"geometry":{"type":"LineString","coordinates":[[-83.72397000000001,32.812173],[-83.7238885,32.8120558],[-83.72384840000001,32.8120009],[-83.72379670000001,32.811957400000004]]},"id":"8944c0b0e27ffff-13b7f919b2c59b5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[0.0,290.18],"values":["isBridge"]},{"applyAt":[359.16,421.55],"values":["isBridge"]},{"applyAt":[447.77,508.59],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a30123ca3-1397fedf31e49323","8f44c0a30876d0d-17bff2099d8e47e6"]},"geometry":{"type":"LineString","coordinates":[[-83.63632770000001,32.8558195],[-83.6366335,32.8559074],[-83.63700630000001,32.856008800000005],[-83.6372638,32.856040300000004],[-83.63748910000001,32.856062900000005],[-83.63776800000001,32.8560674],[-83.6380872,32.8560358],[-83.6383742,32.855975],[-83.63857270000001,32.8559142],[-83.6388168,32.855815],[-83.6391172,32.855664100000006],[-83.63925400000001,32.8555784],[-83.6396402,32.8553306],[-83.6398387,32.8551999],[-83.6399969,32.855082700000004],[-83.64033660000001,32.8548259],[-83.64054560000001,32.8546685],[-83.64066700000001,32.8545772],[-83.6409517,32.8543475],[-83.6410106,32.8542864],[-83.64116510000001,32.854126300000004],[-83.64131210000001,32.8539316],[-83.64145640000001,32.8536747],[-83.64158470000001,32.8534266]]},"id":"8744c0a30ffffff-13b6f7d6bbb2706e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[1183.07,1358.82],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a342a3159-13f6fff97c6413a7","8f44c0a30a0119e-17d7fada8b97a8f5"]},"geometry":{"type":"LineString","coordinates":[[-83.64242970000001,32.8461665],[-83.64237390000001,32.846414200000005],[-83.6423596,32.8465164],[-83.64231450000001,32.8467526],[-83.6422819,32.8469556],[-83.64225880000001,32.8471184],[-83.6422235,32.847521300000004],[-83.64215820000001,32.8487001],[-83.6421141,32.8494709],[-83.6420951,32.8497184],[-83.6420662,32.849960200000005],[-83.6420212,32.8502851],[-83.64196050000001,32.8506085],[-83.6419013,32.8508889],[-83.6418335,32.851160400000005],[-83.6417638,32.8514123],[-83.64168930000001,32.8516543],[-83.6416172,32.8518727],[-83.6415738,32.8519925],[-83.64126830000001,32.852825],[-83.6411568,32.8531076],[-83.64105040000001,32.8533915],[-83.6409491,32.8536768],[-83.6408815,32.853876400000004],[-83.6408164,32.8540766],[-83.6407539,32.8542774],[-83.6407131,32.8544451],[-83.64067700000001,32.854635800000004],[-83.6406516,32.8548277],[-83.64063680000001,32.8550204],[-83.6406326,32.855213400000004],[-83.6406199,32.8554201],[-83.6406164,32.8556271],[-83.64062220000001,32.855834],[-83.6406372,32.8560406],[-83.6406614,32.856246500000005],[-83.64069470000001,32.8564516],[-83.6407372,32.8566555],[-83.64077950000001,32.856826000000005],[-83.64082850000001,32.8569952],[-83.6408842,32.857163],[-83.6409465,32.8573291],[-83.64103510000001,32.857538000000005],[-83.64113420000001,32.8577436],[-83.64124360000001,32.8579455],[-83.641363,32.8581433],[-83.6414922,32.8583367],[-83.641631,32.858525400000005],[-83.6417792,32.8587089],[-83.6419364,32.858887100000004],[-83.64210250000001,32.8590595],[-83.64262280000001,32.8595327],[-83.64302520000001,32.859836800000004],[-83.6445272,32.8606323]]},"id":"8644c0a37ffffff-17bef178f6cb58dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a34b8c22a-17d7e12e107e7f5e","8f44c0a34310532-139ffb0279f954a4"]},"geometry":{"type":"LineString","coordinates":[[-83.64848950000001,32.837692600000004],[-83.64743150000001,32.839013],[-83.6464875,32.8401907],[-83.6444633,32.8427159]]},"id":"8744c0a34ffffff-17f7f6183a971ee0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f1454-17bfb228178ce5b9","8f44c0a328f3824-179f32a13a231a7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6151277,32.8601283],[-83.6151852,32.8601036],[-83.6152193,32.860115],[-83.6152988,32.8601481],[-83.61532150000001,32.8602057]]},"id":"8a44c0a328f7fff-1797f25c82a3c03f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f1454-17bfb228178ce5b9","8f44c0a328f3824-179f32a13a231a7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6151277,32.8601283],[-83.6151957,32.8601499],[-83.6152744,32.860184100000005],[-83.61532150000001,32.8602057]]},"id":"8a44c0a328f7fff-17b7f2640bdb4e71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328f1454-17bfb228178ce5b9","8f44c0a328f3824-179f32a13a231a7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6151277,32.8601283],[-83.61513910000001,32.86016],[-83.6151763,32.8601785],[-83.61525440000001,32.8602137],[-83.61532150000001,32.8602057]]},"id":"8a44c0a328f7fff-17b7726b115d135d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2058c38b-17beff29fb131381","8f44c0a2058d19e-179e7e9213d02bf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6888799,32.8630148],[-83.68883980000001,32.862934100000004],[-83.6887035,32.862849000000004],[-83.6886369,32.8628623]]},"id":"8a44c0a2058ffff-17d77ed3ae082adb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2058c38b-17beff29fb131381","8f44c0a2058d19e-179e7e9213d02bf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6888799,32.8630148],[-83.68880730000001,32.862968200000005],[-83.68867370000001,32.8628852],[-83.6886369,32.8628623]]},"id":"8a44c0a2058ffff-17fe7edde9e7fb9b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2058c38b-17beff29fb131381","8f44c0a2058d19e-179e7e9213d02bf4"]},"geometry":{"type":"LineString","coordinates":[[-83.6888799,32.8630148],[-83.68875600000001,32.8630173],[-83.6886308,32.8629356],[-83.6886369,32.8628623]]},"id":"8a44c0a2058ffff-17fefef2b4fe0263"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4866a5-13d7f75c3c993717","8f44c0b0a486183-13dff722237e2043"]},"geometry":{"type":"LineString","coordinates":[[-83.6983869,32.8225337],[-83.69841190000001,32.822489000000004],[-83.6984551,32.822411800000005],[-83.6984798,32.8223677]]},"id":"8b44c0b0a486fff-139ff73f316e12f7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a486500-13d6e76a24d5a5de","8f44c0b0a495b09-13be67a3485233b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6982732,32.822490200000004],[-83.69830040000001,32.8224407],[-83.69834060000001,32.8223676],[-83.6983646,32.822324]]},"id":"8a44c0b0a487fff-13f67786b813f8fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a4846e1-13b6f61244529323","8f44c0b0a480864-13f6e5b813c9f474"]},"geometry":{"type":"LineString","coordinates":[[-83.6990591,32.8226092],[-83.6990093,32.822590000000005],[-83.69889640000001,32.8225464],[-83.6988929,32.8225317],[-83.69891480000001,32.8224845]]},"id":"8a44c0b0a487fff-13d665f822acf16d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[19.52,109.85],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b19da4a9b-17beded2ce6d526d","8f44c0b18a4edb0-13dfded7e6ee86b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6822228,32.8167629],[-83.6822228,32.816586900000004],[-83.68221750000001,32.8157724],[-83.68221460000001,32.815611700000005]]},"id":"8744c0b18ffffff-13d79ed481cc459d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[19.71,109.91],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b18a4b35b-17bf8d912dba21bb","8f44c0b18a4ccf0-13de9d98139a08e3"]},"geometry":{"type":"LineString","coordinates":[[-83.68273740000001,32.8167664],[-83.68273450000001,32.816588700000004],[-83.68272730000001,32.8157754],[-83.6827263,32.815610500000005]]},"id":"8a44c0b18a4ffff-13d7dd951e4cbb71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205aec32-13d77eed58a6e05d","8f44c0a205ae8ce-139e7e71a2de4045"]},"geometry":{"type":"LineString","coordinates":[[-83.6889318,32.8617957],[-83.68883290000001,32.8617849],[-83.68876610000001,32.8617395],[-83.6887339,32.8616821]]},"id":"8b44c0a205aefff-1397feb7aea237dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a205aec32-13d77eed58a6e05d","8f44c0a205ae8ce-139e7e71a2de4045"]},"geometry":{"type":"LineString","coordinates":[[-83.6889318,32.8617957],[-83.6888516,32.861763700000004],[-83.68878480000001,32.8617183],[-83.6887339,32.8616821]]},"id":"8b44c0a205aefff-13fe7eb16369f5a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1842946e-17b7be70604fec27","8f44c0b1842b9ae-17f6ff24647b5e7f"]},"geometry":{"type":"LineString","coordinates":[[-83.6624314,32.8115502],[-83.6624702,32.8116214],[-83.66251840000001,32.811656400000004],[-83.6626154,32.8116579],[-83.66265750000001,32.8116585],[-83.6627194,32.8116594]]},"id":"8a44c0b1842ffff-17bffed5b2e39046"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18429728-17d6fe4b31d11eb5","8f44c0b1842b9ae-17f6ff24647b5e7f"]},"geometry":{"type":"LineString","coordinates":[[-83.6624314,32.8115502],[-83.6624158,32.8116695],[-83.66243510000001,32.8117162],[-83.6625027,32.8117481],[-83.6625942,32.8117474],[-83.6626148,32.811746500000005],[-83.6626538,32.811744700000006],[-83.6627789,32.8117092]]},"id":"8a44c0b1842ffff-17d6bedc33e7d9ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d272db6-1396e503522478e6","8f44c0b1d22b22a-139ff4f2fe3f7765"]},"geometry":{"type":"LineString","coordinates":[[-83.69934830000001,32.8154668],[-83.699357,32.815337],[-83.6993623,32.815255400000005],[-83.6993745,32.8150939]]},"id":"8944c0b1d23ffff-139e74fb6bef9eaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bd5c7a5-13f6fdf7d8dbca77","8f44c0b1bd5c2dd-13d7fd7cc38d4965"]},"geometry":{"type":"LineString","coordinates":[[-83.66310920000001,32.825612500000005],[-83.663031,32.8256608],[-83.6629894,32.8256333],[-83.66294780000001,32.825605700000004],[-83.66291170000001,32.8255781],[-83.6629123,32.8254502]]},"id":"8a44c0b1bd5ffff-13bebdd08dc1b818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bd5c7a5-13f6fdf7d8dbca77","8f44c0b1bd5c2dd-13d7fd7cc38d4965"]},"geometry":{"type":"LineString","coordinates":[[-83.66310920000001,32.825612500000005],[-83.6630318,32.8256093],[-83.6629552,32.8255525],[-83.6629123,32.8254502]]},"id":"8a44c0b1bd5ffff-13b7fdc6805b7fc2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bd5c7a5-13f6fdf7d8dbca77","8f44c0b1bd5c2dd-13d7fd7cc38d4965"]},"geometry":{"type":"LineString","coordinates":[[-83.66310920000001,32.825612500000005],[-83.6630884,32.8254864],[-83.66304120000001,32.8254522],[-83.6629606,32.8253958],[-83.6629123,32.8254502]]},"id":"8b44c0b1bd5cfff-13f6bdac4b1288a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeb8cb-17ff7fc072fdf699","8f44c0b0aaea264-17be307e1266e076"]},"geometry":{"type":"LineString","coordinates":[[-83.72116410000001,32.8271095],[-83.7211319,32.8270646],[-83.72106330000001,32.827040600000004],[-83.7209728,32.8270089],[-83.72091540000001,32.8269887],[-83.7208607,32.826998700000004]]},"id":"8a44c0b0aaeffff-17be7019789d7c95"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeb8cb-17ff7fc072fdf699","8f44c0b0aaea264-17be307e1266e076"]},"geometry":{"type":"LineString","coordinates":[[-83.72116410000001,32.8271095],[-83.7211219,32.8270892],[-83.7210493,32.8270649],[-83.7209565,32.8270319],[-83.7208607,32.826998700000004]]},"id":"8a44c0b0aaeffff-17dfb01ec3b952b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aaeb8cb-17ff7fc072fdf699","8f44c0b0aaea264-17be307e1266e076"]},"geometry":{"type":"LineString","coordinates":[[-83.72116410000001,32.8271095],[-83.72110310000001,32.8271127],[-83.721039,32.8270898],[-83.7209486,32.8270587],[-83.7208906,32.827038300000005],[-83.7208607,32.826998700000004]]},"id":"8a44c0b0aaeffff-17def024af0069a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226de125-13d6eeb0bb8077ec","8f44c0a226d3a4e-17feff147735d5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6691701,32.8807246],[-83.66911800000001,32.8806761],[-83.66905390000001,32.880602200000006],[-83.6690105,32.8805581]]},"id":"8944c0a226fffff-13b7eee31ffdcced"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226d3a4e-17feff147735d5e3","8f44c0a226de11e-13fefed052366ff2"]},"geometry":{"type":"LineString","coordinates":[[-83.66911950000001,32.8807599],[-83.66906200000001,32.8807096],[-83.6689992,32.8806293],[-83.6690105,32.8805581]]},"id":"8944c0a226fffff-13b7ef01136e58b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1855655e-13b6fe7832fc26d2","8f44c0b18552c41-17febe7e2a1637a2"]},"geometry":{"type":"LineString","coordinates":[[-83.6626974,32.810336],[-83.6627012,32.8101736],[-83.6627012,32.8101062],[-83.6627069,32.809988700000005]]},"id":"8a44c0b18557fff-179ffe7bb0c917f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a367720a9-13ff73cd79d3e911","8f44c0a36772c75-139f73cdd6b7af7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6146473,32.8486356],[-83.61474360000001,32.8486385],[-83.61474340000001,32.8485911],[-83.6147425,32.8485272],[-83.6147437,32.848477100000004],[-83.61464670000001,32.8484756]]},"id":"8b44c0a36772fff-13df33a1d61bacdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac43d16-17fefc0276132367","8f44c0b0ac43733-179fec0106d64abd"]},"geometry":{"type":"LineString","coordinates":[[-83.709592,32.817971],[-83.7095919,32.817892400000005],[-83.7095924,32.817823600000004],[-83.70958970000001,32.8176779]]},"id":"8b44c0b0ac43fff-17d64c015e6637ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac43d25-17f67bdbb62a75b1","8f44c0b0ac430d3-17b75bdc36a1c9e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7096509,32.817973300000006],[-83.7096509,32.817892400000005],[-83.7096511,32.8178251],[-83.70965170000001,32.8176647]]},"id":"8b44c0b0ac43fff-17d6ebdc0c5c6cdf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":[{"applyAt":[211.33,429.76],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a308d09b5-139ffae53ec08376","8f44c0a30c639b1-17d7d48a31e41a74"]},"geometry":{"type":"LineString","coordinates":[[-83.6379565,32.855448800000005],[-83.6376499,32.8552543],[-83.6372776,32.855023700000004],[-83.6367469,32.854733200000005],[-83.63644860000001,32.8545879],[-83.6360635,32.854416400000005],[-83.6352695,32.8540688],[-83.63472300000001,32.8538306],[-83.63437300000001,32.8536796],[-83.6341819,32.8535872],[-83.63400610000001,32.8534893]]},"id":"8744c0a30ffffff-139effa895df6dff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cd359e-1796f1355d012f08","8f44c0b19cd3455-17bff0f4b8a11642"]},"geometry":{"type":"LineString","coordinates":[[-83.68124590000001,32.8236847],[-83.68127360000001,32.8236829],[-83.6813405,32.823723900000005],[-83.68134930000001,32.8237535]]},"id":"8c44c0b19cd35ff-17b7b10fcdcf4f38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952ca0c-1796b1403462a649","8f44c0b1952cb22-17de913c969c2502"]},"geometry":{"type":"LineString","coordinates":[[-83.6812343,32.8237705],[-83.6812537,32.8237867],[-83.6812519,32.8238507],[-83.6812285,32.823869]]},"id":"8c44c0b1952cbff-17f7d1342048a648"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a328a839a-1397740fe8e3fe8f","8f44c0a328ad4c0-139f336a5ef67b7d"]},"geometry":{"type":"LineString","coordinates":[[-83.61480590000001,32.8587184],[-83.6147431,32.8587293],[-83.6146987,32.8587439],[-83.61467180000001,32.858768600000005],[-83.6146415,32.8588064],[-83.6146166,32.858841600000005],[-83.614541,32.8589062]]},"id":"8a44c0a328affff-13df33c2c2e99dc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100a00-17dee2918cbf67ed","8f44c0b1a101c91-17def29494fb9e7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6479159,32.8143503],[-83.647917,32.8142963],[-83.647919,32.8142318],[-83.64792080000001,32.8141764]]},"id":"8a44c0b1a107fff-1796f29330cca822"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a100b4d-17dff255c854eea8","8f44c0b1a101c0a-17dfe2581a74896b"]},"geometry":{"type":"LineString","coordinates":[[-83.64801270000001,32.814351],[-83.6480136,32.8142972],[-83.64801560000001,32.8142323],[-83.6480164,32.814177900000004]]},"id":"8a44c0b1a107fff-1797f256ef3e67c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a32c450d3-17b7fe7218b4c922","8f44c0a32c45a41-17b77dba9726ca93"]},"geometry":{"type":"LineString","coordinates":[[-83.61058150000001,32.8593701],[-83.61050320000001,32.8593695],[-83.6103642,32.8593685],[-83.6102879,32.8593679]]},"id":"8b44c0a32c45fff-17b7be1658af1cad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b6926d-17df19b8a602de30","8f44c0a346b4033-179fa94c84b8d2ae"]},"geometry":{"type":"LineString","coordinates":[[-83.63188380000001,32.844254500000005],[-83.6318318,32.844332300000005],[-83.6316425,32.8445625],[-83.6316396,32.8446087],[-83.63165930000001,32.8446374],[-83.63177060000001,32.8446985],[-83.6320568,32.844361]]},"id":"8a44c0a346b7fff-17ff29e4e9c0788c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5006e1-17bedc934fd869b6","8f44c0a2e50346e-17de7ce748f39e03"]},"geometry":{"type":"LineString","coordinates":[[-83.7028044,32.8986856],[-83.7027398,32.898768600000004],[-83.7026754,32.8988905],[-83.70267000000001,32.898957]]},"id":"8a44c0a2e507fff-17ff7cc6c0f7236b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a72c99b-13ffce107c9d19db","8f44c0b0a0d2c5a-139e4dfe83403022"]},"geometry":{"type":"LineString","coordinates":[[-83.70877680000001,32.825715200000005],[-83.7088114,32.8258078],[-83.70880530000001,32.8258454],[-83.7087932,32.8258985],[-83.70874810000001,32.826082400000004]]},"id":"8944c0b0a73ffff-13fe5df9a6db1184"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0ed7a9-139ec55c78e78553","8f44c0b0a0e9d5a-13f7757899a9d92d"]},"geometry":{"type":"LineString","coordinates":[[-83.7123129,32.825924400000005],[-83.7122969,32.825986400000005],[-83.71228020000001,32.8260507],[-83.7122679,32.826098300000005]]},"id":"8a44c0b0a0effff-13d7656a81084859"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0e8b62-1396e59b9b30d327","8f44c0b0a0e9d99-13ff75b9ca7fd463"]},"geometry":{"type":"LineString","coordinates":[[-83.7122119,32.8259082],[-83.71219470000001,32.8259679],[-83.71217750000001,32.8260275],[-83.71216360000001,32.8260755]]},"id":"8a44c0b0a0effff-13b6f5aaaa0815c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2ee076-17dee7c775cf35be","8f44c0b1d2ee58a-17b7e86f9d4dee4b"]},"geometry":{"type":"LineString","coordinates":[[-83.6982153,32.817220400000004],[-83.6981617,32.8172087],[-83.6979463,32.817164000000005]]},"id":"8b44c0b1d2eefff-17bf681b856f4246"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11043749-17d7e255c47011d6","8f44c0b11043573-17dfc2a43c9ab4c1"]},"geometry":{"type":"LineString","coordinates":[[-83.6609981,32.7774876],[-83.66096420000001,32.777533000000005],[-83.6609624,32.7775583],[-83.66097160000001,32.7775851],[-83.6610148,32.7776511],[-83.6610447,32.777672],[-83.6610842,32.777683200000006],[-83.66112360000001,32.7776826]]},"id":"8b44c0b11043fff-1797e29a23ab7c8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ad02b-13f7f5407fdaa196","8f44c0a341ad583-13bef5e5913f49bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6402681,32.8361016],[-83.6401702,32.8360746],[-83.64008170000001,32.836054000000004],[-83.64000390000001,32.836033400000005]]},"id":"8b44c0a341adfff-13dff592faa09cdc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341ac24a-139ef5d9f5015e87","8f44c0a341ad176-13d6f5345c6ec1b7"]},"geometry":{"type":"LineString","coordinates":[[-83.6402875,32.8360457],[-83.6401895,32.8360204],[-83.6401012,32.835999300000005],[-83.6400225,32.835981000000004]]},"id":"8b44c0a341adfff-13bff587056488f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b2e019-17b7f72650a1bda3","8f44c0a30b15a21-17b6eb0167461851"]},"geometry":{"type":"LineString","coordinates":[[-83.6460443,32.857126300000004],[-83.6452857,32.8575834],[-83.64519510000001,32.8575627],[-83.6449975,32.8573552],[-83.64469030000001,32.8572402],[-83.6445597,32.8572012],[-83.6444912,32.8571307],[-83.64446500000001,32.8570986]]},"id":"8944c0a30b3ffff-17d7e9167df46c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6920c4-17d6f62ee0b06d2a","8f44c0b1c69255a-17bff683eaebb420"]},"geometry":{"type":"LineString","coordinates":[[-83.665965,32.7983252],[-83.6660068,32.7983416],[-83.6660616,32.798367400000004],[-83.66610100000001,32.7983877]]},"id":"8b44c0b1c692fff-17bff658f1575fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c692021-17b7b6184cfec369","8f44c0b1c692cc3-17ffb66bdb322d0e"]},"geometry":{"type":"LineString","coordinates":[[-83.6660035,32.798249000000006],[-83.6660403,32.7982686],[-83.6660987,32.7983013],[-83.66613720000001,32.7983216]]},"id":"8b44c0b1c692fff-1796f64210ce50ed"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6661796,32.7982449]},"id":"8f44c0b1c6928f3-17f7b5fdca746c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6928f3-17f7b5fdca746c25","8f44c0b1c692c01-17d7f6578d0df3f4"]},"geometry":{"type":"LineString","coordinates":[[-83.666036,32.798191100000004],[-83.66607540000001,32.7982073],[-83.6661796,32.7982449]]},"id":"8b44c0b1c692fff-17f6b62ac4d6f139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9b08-179ff389bb0d2813","8f44c0a200c920e-1796e3dbaa9b1350"]},"geometry":{"type":"LineString","coordinates":[[-83.6998214,32.869764],[-83.69986060000001,32.8697073],[-83.699933,32.869602300000004],[-83.69995250000001,32.8695741]]},"id":"8b44c0a200c9fff-17d773b2a35e55fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c9716-17d7e45b106010b9","8f44c0a200c9891-17dfe406520fdb32"]},"geometry":{"type":"LineString","coordinates":[[-83.6996175,32.8696606],[-83.69966020000001,32.869601],[-83.6997336,32.8694986],[-83.69975310000001,32.8694714]]},"id":"8b44c0a200c9fff-1796e430bd9f4c17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c94f5-17b6f4907f762c2c","8f44c0a200c9c23-17d6643bf50acae8"]},"geometry":{"type":"LineString","coordinates":[[-83.6995321,32.8696173],[-83.69957450000001,32.8695577],[-83.69964870000001,32.869453400000005],[-83.6996673,32.869427200000004]]},"id":"8b44c0a200c9fff-17ff746632f69e60"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20395c0c-17ff627e4351d68d","8f44c0a203b30d8-17f7721aed1cf3c3"]},"geometry":{"type":"LineString","coordinates":[[-83.70053940000001,32.8698999],[-83.7005104,32.8699377],[-83.70043890000001,32.8700312],[-83.7003804,32.8701078]]},"id":"8944c0a203bffff-17be624c9175011d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20394301-17b6e2ea461a5c49","8f44c0a203b3411-17bf628720cdecc6"]},"geometry":{"type":"LineString","coordinates":[[-83.7003662,32.8698064],[-83.70033640000001,32.869846],[-83.7002662,32.869939200000005],[-83.7002076,32.870017000000004]]},"id":"8944c0a203bffff-17fef2b8bae74c99"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[6.09,13.88],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a200c8a82-17f764aba2d5cf0f","8f44c0a200cb934-17de64f93c1408e7"]},"geometry":{"type":"LineString","coordinates":[[-83.69948860000001,32.869301],[-83.6994537,32.8693474],[-83.69940910000001,32.8694067],[-83.6993645,32.869466]]},"id":"8b44c0a200c8fff-17b6f4d275d21adf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[5.98,13.76],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a200c814b-17f7e4c1b79797a8","8f44c0a200c8644-17de750ec3a826e1"]},"geometry":{"type":"LineString","coordinates":[[-83.6994533,32.8692824],[-83.6994191,32.8693279],[-83.6993746,32.869387200000006],[-83.69933,32.8694465]]},"id":"8b44c0a200c8fff-179ef4e83f51350c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[5.92,13.68],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a200c8153-17df74d8fb0bf2f9","8f44c0a200c860d-17bf752553bf9254"]},"geometry":{"type":"LineString","coordinates":[[-83.69941610000001,32.8692627],[-83.6993824,32.8693079],[-83.6993382,32.869367100000005],[-83.6992939,32.8694263]]},"id":"8b44c0a200c8fff-179e74ff2c014e0c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b454e-139ee1b67c7a08cb","8f44c0a203b4513-13fff1ea1056878a"]},"geometry":{"type":"LineString","coordinates":[[-83.7007001,32.868929200000004],[-83.7007997,32.8689468],[-83.7008452,32.8689328],[-83.70103490000001,32.8687008],[-83.70084150000001,32.868595],[-83.7006175,32.868883100000005]]},"id":"8844c0a201fffff-13b7f15e3ff56aa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203b1a4c-17b6f03958435767","8f44c0a20384869-1796df831fc46dbf"]},"geometry":{"type":"LineString","coordinates":[[-83.70160150000001,32.869949600000005],[-83.7017251,32.869791400000004],[-83.7017292,32.8697658],[-83.701711,32.869740400000005],[-83.7014809,32.8696186],[-83.70144810000001,32.8696203],[-83.70142320000001,32.8696354],[-83.7013099,32.8697869]]},"id":"8944c0a203bffff-1796dfa036f04f54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[7.12,17.14],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b1eb69776-13f6b3ef5810e127","8f44c0b1eb69260-13b7f36c64727f68"]},"geometry":{"type":"LineString","coordinates":[[-83.6672314,32.796683800000004],[-83.66716310000001,32.7966556],[-83.6670682,32.796613900000004],[-83.66702190000001,32.7965954]]},"id":"8b44c0b1eb69fff-139fb3add5bcc0a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[7.08,17.1],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b1eb690d5-13dff3e186a16e00","8f44c0b1eb69368-139fb35eb0694729"]},"geometry":{"type":"LineString","coordinates":[[-83.6672533,32.7966458],[-83.667185,32.7966184],[-83.6670891,32.7965784],[-83.667044,32.7965596]]},"id":"8b44c0b1eb69fff-13f6f3a032c5bb31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6076-13d6b40517f49fd2","8f44c0b1c6b6545-13bff45d74ea85a5"]},"geometry":{"type":"LineString","coordinates":[[-83.6669871,32.7969546],[-83.66694580000001,32.796936800000005],[-83.6668775,32.7969074],[-83.66684570000001,32.7968956]]},"id":"8b44c0b1c6b6fff-13bff43117270edd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6b6451-13dfb47894616856","8f44c0b1c6b60cb-13fff4215f8fa351"]},"geometry":{"type":"LineString","coordinates":[[-83.66694190000001,32.797026800000005],[-83.6668988,32.7970094],[-83.666837,32.7969835],[-83.6668023,32.7969689]]},"id":"8b44c0b1c6b6fff-13fff44d0d4de840"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb4db6c-1796f4923b3f10bc","8f44c0b1c6b6675-17bef43c15f76367"]},"geometry":{"type":"LineString","coordinates":[[-83.66689910000001,32.797098000000005],[-83.66685960000001,32.797080900000005],[-83.6667953,32.797053000000005],[-83.6667613,32.797038300000004]]},"id":"8c44c0b1c6b67ff-1797b4672396c511"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03aac4b1-139f52a89bacba24","8f44c0b03aac14a-139f71d86db39906"]},"geometry":{"type":"LineString","coordinates":[[-83.70719940000001,32.7868371],[-83.70711130000001,32.7868301],[-83.7069788,32.78682],[-83.7068663,32.786811300000004]]},"id":"8a44c0b03aaffff-13975240770f694b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79a599-13deb33da4721997","8f44c0b1eb699a0-13b7b3a1d68dcc29"]},"geometry":{"type":"LineString","coordinates":[[-83.66714590000001,32.7962928],[-83.6671652,32.796301],[-83.66726630000001,32.796344500000004],[-83.6673062,32.796359200000005]]},"id":"8a44c0b1eb6ffff-13def36ffdb4526d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d2b2-1396b388ea0f8eb5","8f44c0b1eb6d248-13b6b32681736967"]},"geometry":{"type":"LineString","coordinates":[[-83.6671858,32.7962184],[-83.66720550000001,32.796229000000004],[-83.667304,32.7962751],[-83.6673432,32.796292]]},"id":"8a44c0b1eb6ffff-139eb357f0b447c9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d3b4-13def3717d2b4507","8f44c0b1eb6d36d-13fef30a0c91f077"]},"geometry":{"type":"LineString","coordinates":[[-83.6672233,32.7961484],[-83.66724470000001,32.7961589],[-83.66734770000001,32.7961947],[-83.66738880000001,32.7962094]]},"id":"8b44c0b1eb6dfff-13fef33e07ee9a09"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d159-13b7b35c3bbe37f1","8f44c0b1eb6da5c-13d7f2f32344fabe"]},"geometry":{"type":"LineString","coordinates":[[-83.6672573,32.7960848],[-83.667282,32.7960924],[-83.6673846,32.7961267],[-83.6674254,32.7961431]]},"id":"8b44c0b1eb6dfff-13d6b32760906647"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444034-17b5f3235130cc97","8f44c0b094449a9-17dff2e768bf1794"]},"geometry":{"type":"LineString","coordinates":[[-83.74608740000001,32.8344486],[-83.7460585,32.8344904],[-83.7460162,32.8345517],[-83.7459915,32.834587400000004]]},"id":"8b44c0b09444fff-1795f3055604bd4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471770-17bff41bb40b5e8e","8f44c0b09471176-17ddf3e2de9d6905"]},"geometry":{"type":"LineString","coordinates":[[-83.7456851,32.834248200000005],[-83.7456587,32.834291],[-83.74562130000001,32.834352800000005],[-83.7455941,32.8343973]]},"id":"8b44c0b09471fff-179ff3ff546722a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471b99-17f7f3b08bbf3ddf","8f44c0b094712a4-17d5f3eaae43ffbb"]},"geometry":{"type":"LineString","coordinates":[[-83.7457656,32.834288400000005],[-83.7457389,32.8343304],[-83.7456988,32.8343937],[-83.7456726,32.834434900000005]]},"id":"8b44c0b09471fff-17b5f3cd93881af5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09471a0d-1795f37a806f0d31","8f44c0b09471272-17fff3b4f9a3781f"]},"geometry":{"type":"LineString","coordinates":[[-83.745852,32.8343314],[-83.7458256,32.834372300000005],[-83.7457851,32.834434800000004],[-83.74575850000001,32.834476]]},"id":"8b44c0b09471fff-17bff397b71ed0bb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444c9b-1795f387127525c2","8f44c0b0946269a-17b7f34ce8d521e7"]},"geometry":{"type":"LineString","coordinates":[[-83.745925,32.8343678],[-83.7459,32.834406200000004],[-83.74585780000001,32.834471300000004],[-83.7458319,32.8345111]]},"id":"8944c0b0947ffff-17d5f36a0354ee86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444cc8-179df3553a6cef4b","8f44c0b094626c8-17d5f318eadb948d"]},"geometry":{"type":"LineString","coordinates":[[-83.7460082,32.8344092],[-83.7459808,32.834448900000005],[-83.7459381,32.834510900000005],[-83.74591170000001,32.834549200000005]]},"id":"8b44c0b09444fff-17fdf33717cbd25f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b406c4-17d6f8b799f756ba","8f44c0a31b43a31-17deb845224aedfd"]},"geometry":{"type":"LineString","coordinates":[[-83.66506310000001,32.8757838],[-83.6650899,32.875818200000005],[-83.6651746,32.875926400000004],[-83.6652462,32.8760299]]},"id":"8a44c0a31b47fff-1797b87d4c14fad5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a31b40672-17b6b89a6fe5072e","8f44c0a31b43b29-17d7b820716c12e4"]},"geometry":{"type":"LineString","coordinates":[[-83.66510980000001,32.8757579],[-83.6651324,32.8757843],[-83.66522660000001,32.8758925],[-83.66530490000001,32.8759898]]},"id":"8a44c0a31b47fff-17feb85cdef786cf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d29319-17f7ec7775c28ce7","8f44c0a35d747a5-1396ec2490174622"]},"geometry":{"type":"LineString","coordinates":[[-83.65710630000001,32.844570600000004],[-83.65700360000001,32.8445115],[-83.6569824,32.8444973],[-83.65695360000001,32.8444325],[-83.6569532,32.8443771],[-83.65697370000001,32.844291000000005]]},"id":"8844c0a35dfffff-17d6dc6a1b168976"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e32324a-1396faddd429c79e","8f44c0b0e323c45-13b7bb4463809f12"]},"geometry":{"type":"LineString","coordinates":[[-83.7231651,32.8058479],[-83.7230481,32.8058159],[-83.72299220000001,32.8057527],[-83.72299650000001,32.8056554],[-83.72300100000001,32.8055097]]},"id":"8a44c0b0e327fff-13b76b31a1cf8f64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05903354-13b672de9fe5bc48","8f44c0a059002c6-13df72bd542c7daa"]},"geometry":{"type":"LineString","coordinates":[[-83.69367270000001,32.898259800000005],[-83.69369400000001,32.8981204],[-83.69371000000001,32.8980164],[-83.6937259,32.8979123]]},"id":"8a44c0a05907fff-13b7f2cdf68112e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05903620-139ff363a9674af8","8f44c0a05900689-13b6f342b80f2ca3"]},"geometry":{"type":"LineString","coordinates":[[-83.6934598,32.898249400000005],[-83.6934832,32.898085],[-83.69349790000001,32.8979821],[-83.69351250000001,32.8978793]]},"id":"8a44c0a05907fff-13be73532f39d282"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2675491d-13df960f96cb48f5","8f44c0a267724ce-17d6968ab98e7c82"]},"geometry":{"type":"LineString","coordinates":[[-83.6792583,32.854491200000005],[-83.67920620000001,32.8544415],[-83.67910520000001,32.854346500000005],[-83.6790613,32.854298400000005]]},"id":"8944c0a2677ffff-139f964de8cc1d34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b11104a5b-179fd538fb65e1c7","8f44c0b111042a3-17b7f5b1a7dc7ec3"]},"geometry":{"type":"LineString","coordinates":[[-83.65994090000001,32.7714549],[-83.65988850000001,32.7714706],[-83.6597813,32.7715057],[-83.6597478,32.7715167]]},"id":"8b44c0b11104fff-17b6d5756163369a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1110405d-17fed5a8d552e64c","8f44c0b11104b51-17d6f52f932e487e"]},"geometry":{"type":"LineString","coordinates":[[-83.6599559,32.771360300000005],[-83.6599035,32.771377],[-83.6597965,32.771411],[-83.6597619,32.771421700000005]]},"id":"8b44c0b11104fff-17f7f56c3479ae5c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b53d3150d-17ddde0560f8fe2d","8f44c0b53d32205-17d5df7aefee8781"]},"geometry":{"type":"LineString","coordinates":[[-83.754641,32.8805001],[-83.75464310000001,32.880135700000004],[-83.754096,32.880123000000005],[-83.7540682,32.880133900000004],[-83.7540474,32.8801501],[-83.7540419,32.8801806],[-83.7540434,32.880488400000004]]},"id":"8a44c0b53d37fff-17b5debc89d33d1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05804c5a-17f674cd0a16da43","8f44c0a05806190-13bf7602940fef32"]},"geometry":{"type":"LineString","coordinates":[[-83.69238630000001,32.9003509],[-83.69265150000001,32.9003601],[-83.69274180000001,32.9003633],[-83.6927984,32.9003652],[-83.6928213,32.9003632],[-83.6928415,32.9003584],[-83.6928625,32.9003445],[-83.6928721,32.9003286],[-83.69288010000001,32.9003018],[-83.6928816,32.900208400000004]]},"id":"8a44c0a05807fff-13bef548fc2f2406"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03062c1b-13d7dd6367e40aa3","8f44c0b03066696-13de5d585d230251"]},"geometry":{"type":"LineString","coordinates":[[-83.70247140000001,32.786902000000005],[-83.7023719,32.7868385],[-83.7023796,32.786763400000005],[-83.70248910000001,32.7867332]]},"id":"8944c0b0307ffff-139f5d8692a159e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2670a7a9-17b7f98dfe6f8a67","8f44c0a2670ab96-17dfb903b82deec5"]},"geometry":{"type":"LineString","coordinates":[[-83.6778273,32.8542239],[-83.67787600000001,32.8542184],[-83.6779017,32.854199],[-83.67793180000001,32.8541724],[-83.6779728,32.854140300000005],[-83.6780485,32.8540827]]},"id":"8b44c0a2670afff-17fff94673e6dde3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e309622-1796ea947832c5fe","8f44c0b0e356152-17d62a8db431f4b5"]},"geometry":{"type":"LineString","coordinates":[[-83.72329330000001,32.807990600000004],[-83.72328780000001,32.807871],[-83.723285,32.807788],[-83.72328250000001,32.807691000000005]]},"id":"8944c0b0e37ffff-17f6aa9180a1a7e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e352629-13b72b15a6bde824","8f44c0b0e221065-13be7be9857b469e"]},"geometry":{"type":"LineString","coordinates":[[-83.7227368,32.808567100000005],[-83.7227948,32.8085119],[-83.72288440000001,32.8085114],[-83.7230758,32.8085842]]},"id":"8944c0b0e23ffff-1397eb831b54e936"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861920-17d64700e54bdd11","8f44c0b0b861853-179f17037b4c9b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.73785050000001,32.833531300000004],[-83.737851,32.833507700000006],[-83.7378534,32.8334357],[-83.7378546,32.8333924]]},"id":"8c44c0b0b8619ff-17f7a7023d24cf43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09492499-179f56cad6989a32","8f44c0b0b8652ec-17d736c9f04665a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7379411,32.833534900000004],[-83.7379422,32.8335105],[-83.73794240000001,32.8334342],[-83.7379425,32.833393900000004]]},"id":"8a44c0b0b867fff-17f746ca2e4ae660"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861d23-17d7d77461c52fe9","8f44c0b0b861c5a-179ea7776e3b89c8"]},"geometry":{"type":"LineString","coordinates":[[-83.737665,32.8335242],[-83.73766540000001,32.833502700000004],[-83.73766880000001,32.8334227],[-83.7376698,32.833388500000005]]},"id":"8c44c0b0b861dff-17fe3775eaeb0665"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861126-179ea7424d048e12","8f44c0b0b8656e9-17d70740076db853"]},"geometry":{"type":"LineString","coordinates":[[-83.73775,32.8335274],[-83.73775,32.833504500000004],[-83.73775280000001,32.833427400000005],[-83.7377536,32.8333904]]},"id":"8b44c0b0b861fff-17ffd741325d24c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6606254,32.8247098]},"id":"8f44c0b1bc22169-1797e38d2b577d26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bc20131-17b7c29917a0dd33","8f44c0b1bc22169-1797e38d2b577d26"]},"geometry":{"type":"LineString","coordinates":[[-83.6606254,32.8247098],[-83.6610105,32.824714900000004],[-83.66101590000001,32.82453]]},"id":"8a44c0b1bc27fff-1797c2ed3c0e1d81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18c8bb6a-1396fc44ebaa0b51","8f44c0b18c8b08b-139efd1526280e0c"]},"geometry":{"type":"LineString","coordinates":[[-83.6636082,32.8066606],[-83.66356040000001,32.8066735],[-83.66351590000001,32.8066794],[-83.66343590000001,32.8066823],[-83.6633954,32.8066848],[-83.663275,32.8067046]]},"id":"8a44c0b18c8ffff-1397fcacd02fa461"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd0661-1797fb44d149da1a","8f44c0b18cd204e-1796bc3bd632b9ea"]},"geometry":{"type":"LineString","coordinates":[[-83.6636227,32.807479400000005],[-83.66372820000001,32.8074797],[-83.66396040000001,32.807481800000005],[-83.6640179,32.8074815]]},"id":"8a44c0b18cd7fff-1797fbc059f9705c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d5ace-13d6f267b92be5d8","8f44c0b0e2c64d5-13dfb23503fa5118"]},"geometry":{"type":"LineString","coordinates":[[-83.7201584,32.811929],[-83.7200856,32.8119802],[-83.7200765,32.8120534],[-83.7200773,32.812087600000005]]},"id":"8944c0b0e2fffff-139ef25a43fdbceb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","flags":[{"applyAt":[211.99,305.02],"values":["isBridge"]},{"applyAt":[425.2,494.75],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a3080d703-17b7f350fb768853","8f44c0a30134b71-13ff808c851fde07"]},"geometry":{"type":"LineString","coordinates":[[-83.6356408,32.8549784],[-83.6365268,32.855361],[-83.6367867,32.855423200000004],[-83.63703980000001,32.8554704],[-83.63728800000001,32.8555012],[-83.63753600000001,32.8555142],[-83.63777680000001,32.8555124],[-83.6380037,32.8554955],[-83.6381989,32.8554704],[-83.63835590000001,32.8554388],[-83.638547,32.8553902],[-83.63874200000001,32.85533],[-83.6389953,32.8552355],[-83.6393166,32.855088800000004],[-83.6395693,32.854956300000005],[-83.63985310000001,32.8547919],[-83.64007760000001,32.8546502],[-83.6402496,32.8545399],[-83.6404354,32.854402900000004],[-83.640691,32.854204],[-83.640853,32.854048],[-83.64095780000001,32.853934800000005],[-83.6410609,32.8538131]]},"id":"8744c0a30ffffff-13b7f9a34648e010"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","flags":[{"applyAt":[0.0,175.6],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a30b804d9-13b7f232ee82d7ea","8f44c0a3080d703-17b7f350fb768853"]},"geometry":{"type":"LineString","coordinates":[[-83.64151860000001,32.858124000000004],[-83.64094940000001,32.856885500000004],[-83.6408885,32.8566358],[-83.64086300000001,32.856531700000005],[-83.64081200000001,32.856322500000005],[-83.6407489,32.855771700000005],[-83.6408255,32.8546971],[-83.6408868,32.854309],[-83.6410609,32.8538131]]},"id":"8744c0a30ffffff-13f7f38eeb861198"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b6600f0-13b6beb8660f134b","8f44c0b1b664616-17dffeb01387c485"]},"geometry":{"type":"LineString","coordinates":[[-83.6626042,32.841322500000004],[-83.6626097,32.8411799],[-83.6626123,32.8411135],[-83.66261750000001,32.8409788]]},"id":"8a44c0b1b667fff-17b7beb442dc5f7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b66462c-17dffe867d08c60d","8f44c0b1b660055-13b7fe8b1f7181ff"]},"geometry":{"type":"LineString","coordinates":[[-83.6626767,32.841323800000005],[-83.66267950000001,32.841183],[-83.6626804,32.8411192],[-83.6626841,32.840979000000004]]},"id":"8a44c0b1b667fff-17b7be88f9b1e382"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8983684d-13bffa61931bde9c","8f44c0b8998d8d9-13ff7bc60f317964"]},"geometry":{"type":"LineString","coordinates":[[-83.5917216,32.8617397],[-83.5918091,32.8617305],[-83.5919957,32.8618103],[-83.5921253,32.8617585],[-83.5922006,32.861722300000004],[-83.592273,32.8616873],[-83.5922919,32.8616143]]},"id":"8844c0b899fffff-13ffeb038155e25a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2680c280-17b68123f0048d2f","8f44c0a2680ddad-179f808d846a3807"]},"geometry":{"type":"LineString","coordinates":[[-83.688068,32.8431536],[-83.68801140000001,32.843162500000005],[-83.6878836,32.8431824],[-83.68782730000001,32.8431912]]},"id":"8a44c0a2680ffff-17b6c0d8b936f764"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b186a542a-13d7bdbb04a95c3e","8f44c0b186a516a-13d7fd19fb87233c"]},"geometry":{"type":"LineString","coordinates":[[-83.6632673,32.8184437],[-83.6631857,32.8184431],[-83.66311440000001,32.8184412],[-83.66300960000001,32.8184411]]},"id":"8b44c0b186a5fff-13d6fd6a7c9a6faa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225a34-13b791b494e9e41b","8f44c0a26225558-13bfe279133c5cd9"]},"geometry":{"type":"LineString","coordinates":[[-83.6875959,32.855666500000005],[-83.68754200000001,32.8556672],[-83.6874159,32.8556674],[-83.68728150000001,32.855669400000004]]},"id":"8b44c0a26225fff-13bed216d5280a91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225c89-13fe82787af212d0","8f44c0a262242d2-13fec2ee034d45b0"]},"geometry":{"type":"LineString","coordinates":[[-83.6870944,32.8555748],[-83.6871287,32.855575],[-83.68720180000001,32.855575300000005],[-83.68728250000001,32.855575200000004]]},"id":"8a44c0a26227fff-13fef2b344a827bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225576-139eb278c873c9c1","8f44c0a26220973-139e92ee09b9517b"]},"geometry":{"type":"LineString","coordinates":[[-83.6870944,32.855625700000004],[-83.6871359,32.855626400000006],[-83.6872032,32.8556255],[-83.68728200000001,32.8556267]]},"id":"8a44c0a26227fff-139ec2b36dd28520"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225462-13bfa278be6d3b6c","8f44c0a26220840-13bef2ee36067083"]},"geometry":{"type":"LineString","coordinates":[[-83.6872821,32.855698600000004],[-83.6872017,32.855698600000004],[-83.687134,32.8556973],[-83.68709410000001,32.855697500000005]]},"id":"8a44c0a26227fff-13bfd2b3722512b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5043b4-13f75bf8fc8e26d3","8f44c0a2e50575a-13d75b4b1056f975"]},"geometry":{"type":"LineString","coordinates":[[-83.70332950000001,32.898542400000004],[-83.7033267,32.8984893],[-83.70320410000001,32.898140500000004],[-83.70314040000001,32.8981343],[-83.7030513,32.8981524]]},"id":"8a44c0a2e507fff-13b77b86a97c3b1b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36833351-13bff20b0c26dbaf","8f44c0a368158e0-17b7b2676fd111ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6217738,32.8364363],[-83.6218147,32.8363651],[-83.62192160000001,32.8362415]]},"id":"8944c0a3683ffff-13f7f23be92a0cc8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815024-17df72a0199a21d6","8f44c0a36815bab-17f76243725a2a2b"]},"geometry":{"type":"LineString","coordinates":[[-83.62183130000001,32.8365172],[-83.6217941,32.8365133],[-83.62169970000001,32.836503],[-83.6216831,32.8365013]]},"id":"8b44c0a36815fff-17f77271cffc2f3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815ad4-179f224af8a541cd","8f44c0a368150e1-1797a2a781a5ecd7"]},"geometry":{"type":"LineString","coordinates":[[-83.6218193,32.8366002],[-83.6217831,32.8365962],[-83.6216866,32.836586600000004],[-83.62167120000001,32.836585]]},"id":"8b44c0a36815fff-179772793713c37a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[19.08,51.28],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a30b0c2dc-13d7f7968ebd5959","8f44c0a30b010d5-139ee8acbf98512f"]},"geometry":{"type":"LineString","coordinates":[[-83.6458648,32.8581947],[-83.6457561,32.8580492],[-83.64556040000001,32.857810400000005],[-83.6454197,32.8576974]]},"id":"8944c0a30b3ffff-13b7f81a267182eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b73586-13fff5b07b6d0a14","8f44c0a30b2b60e-13f6e6c7c4b0a1e7"]},"geometry":{"type":"LineString","coordinates":[[-83.6461956,32.858014000000004],[-83.6468011,32.8587937],[-83.6466425,32.858879300000005]]},"id":"8844c0a30bfffff-1396e5f501bc4e36"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b50164-17dfe65b0280f7fd","8f44c0a30b08c4b-13b7f813f0d54c7a"]},"geometry":{"type":"LineString","coordinates":[[-83.6463696,32.859443],[-83.6465256,32.859340800000005],[-83.6456641,32.858322300000005]]},"id":"8844c0a30bfffff-139ef6ebbca05437"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3410a368-17d7f0c5e470c992","8f44c0a34109359-17dffecf9ee32142"]},"geometry":{"type":"LineString","coordinates":[[-83.6429063,32.8369147],[-83.6425117,32.8367828],[-83.64240960000001,32.8367577],[-83.6421026,32.8366674]]},"id":"8844c0a341fffff-179fffc9f8ccc219"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.618598,32.821131]},"id":"8f44c0ba956aa59-17d7ea284bfec76a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba956aa59-17d7ea284bfec76a","8f44c0ba9545466-17d76becc2483326"]},"geometry":{"type":"LineString","coordinates":[[-83.617874,32.820722],[-83.618448,32.821191],[-83.618598,32.821131]]},"id":"8944c0ba957ffff-1797bb10e60fb79e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1995c72c-17b6eddedd32dd37","8f44c0b1995bd49-13d66e4eead3670e"]},"geometry":{"type":"LineString","coordinates":[[-83.6957203,32.8210542],[-83.69559890000001,32.821448700000005],[-83.695541,32.821709000000006]]},"id":"8a44c0b1995ffff-17f67e1accbf577f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,707.95],"value":"paved"}],"flags":[{"applyAt":[399.16,445.84],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ca6345e-13bde1c6aeb0a44e","8f44c0b2b44b548-1795f59cefca0566"]},"geometry":{"type":"LineString","coordinates":[[-83.75808500000001,32.794165],[-83.75785400000001,32.794359],[-83.757632,32.794561],[-83.7557196,32.7964219],[-83.7552648,32.7968623],[-83.7549266,32.7971714],[-83.754767,32.797331],[-83.75347500000001,32.798586],[-83.75310300000001,32.798964000000005]]},"id":"8544c0b3fffffff-13d5dbb9cc729ad1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18412b01-17f6c61c626e4e59","8f44c0b184a8c62-13dfe74723eb1575"]},"geometry":{"type":"LineString","coordinates":[[-83.65909900000001,32.811925],[-83.659171,32.811904000000006],[-83.659332,32.811895],[-83.65937600000001,32.811881],[-83.659467,32.811816],[-83.659497,32.811769000000005],[-83.65950000000001,32.81175],[-83.65951100000001,32.811681],[-83.659577,32.811146]]},"id":"8844c0b185fffff-17b7e66f4b0b7b03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d6c4522-139f90d6cffeb9cc","8f44c0b1d689b1e-139fa41123b9ce8e"]},"geometry":{"type":"LineString","coordinates":[[-83.6866286,32.8157146],[-83.686667,32.815664000000005],[-83.6868,32.815607],[-83.68684900000001,32.815603],[-83.687002,32.815621],[-83.68712500000001,32.815689],[-83.68756300000001,32.816073],[-83.68795080000001,32.816091300000004]]},"id":"8944c0b1d6fffff-13fe827bcae12d93"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2277299e-13f7a47382a5b60a","8f44c0a22621a5a-17b6a6efc5734344"]},"geometry":{"type":"LineString","coordinates":[[-83.673364,32.875244],[-83.67346400000001,32.875548],[-83.6738461,32.876461],[-83.67278900000001,32.87651],[-83.67256,32.876531],[-83.672346,32.876576]]},"id":"8844c0a227fffff-17dfa48a550d4d53"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b0e806688-17bf6ddb850f8782","8f44c0b0e95d78d-179ea5500c0a3db3"]},"geometry":{"type":"LineString","coordinates":[[-83.72194,32.794642],[-83.7247,32.794656],[-83.725301,32.794666],[-83.72543900000001,32.794666],[-83.72544,32.795028]]},"id":"8844c0b0e9fffff-17bee92f80345f3c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a25392554-13ffab932621ca76","8f44c0a253b3554-13fef8ede15848d9"]},"geometry":{"type":"LineString","coordinates":[[-83.722875,32.865225],[-83.723139,32.865101],[-83.723347,32.864997],[-83.72365040000001,32.8648167],[-83.7239586,32.864580700000005]]},"id":"8844c0a253fffff-13d62a36ea2ed73f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.707656,32.84279]},"id":"8f44c0a24154772-13b7d0bb0cb6f5e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a24ccb51e-17ff616fe90dbaf1","8f44c0a24154772-13b7d0bb0cb6f5e6"]},"geometry":{"type":"LineString","coordinates":[[-83.70081300000001,32.840853],[-83.70108,32.840898],[-83.70129800000001,32.840953],[-83.70141000000001,32.840987000000005],[-83.70156,32.841045],[-83.70242300000001,32.841493],[-83.702594,32.841574],[-83.70269800000001,32.841614],[-83.70277,32.841631],[-83.70285600000001,32.841634],[-83.70299100000001,32.841624],[-83.703158,32.841597],[-83.703332,32.841565],[-83.704375,32.841341],[-83.704694,32.841276],[-83.704842,32.841273],[-83.704907,32.841284],[-83.70496700000001,32.841301],[-83.705009,32.841327],[-83.705044,32.841361],[-83.70506800000001,32.841406],[-83.70518600000001,32.841794],[-83.70524800000001,32.842035],[-83.70532800000001,32.842283],[-83.705397,32.842526],[-83.70557500000001,32.84322],[-83.706348,32.843041],[-83.70720800000001,32.842869],[-83.707656,32.84279]]},"id":"8744c0a24ffffff-13b658b82c51b7fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3654156a-13977aa264f0ff6e","8f44c0a3642c690-13bf406f6a811dcd"]},"geometry":{"type":"LineString","coordinates":[[-83.611849,32.842298],[-83.610183,32.842287],[-83.60981000000001,32.842435],[-83.60947300000001,32.842568]]},"id":"8844c0a365fffff-139f7d945db579c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c983c1d-17dff78dc5e9a93f","8f44c0b1c870348-17978bd3ccb1be11"]},"geometry":{"type":"LineString","coordinates":[[-83.68345000000001,32.785368000000005],[-83.683464,32.785093],[-83.68346700000001,32.784934],[-83.683484,32.784135],[-83.683492,32.781768],[-83.683501,32.781152],[-83.68349400000001,32.781089],[-83.683439,32.781053],[-83.68329800000001,32.78105],[-83.682434,32.781028],[-83.68030800000001,32.780994],[-83.68007300000001,32.780994],[-83.679902,32.781028],[-83.679787,32.781072],[-83.67965500000001,32.781143],[-83.679489,32.78125],[-83.679131,32.78148],[-83.67892400000001,32.781641],[-83.678871,32.781699],[-83.67875500000001,32.781849],[-83.67874300000001,32.781868],[-83.67864680000001,32.7820215]]},"id":"8844c0b1c9fffff-1797ff2d0769a166"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[58.75,80.08],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a230f2189-13ff7794e1e6fa66","8f44c0a230aa2de-13f7f8d7c977cb66"]},"geometry":{"type":"LineString","coordinates":[[-83.691226,32.887532],[-83.69152190000001,32.8879992],[-83.6916286,32.8881692],[-83.69174260000001,32.8883634]]},"id":"8844c0a231fffff-13f67834bf1eabe8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04454872-13b679f1c0926a7d","8f44c0b04444d00-13bf573666ab4226"]},"geometry":{"type":"LineString","coordinates":[[-83.70388200000001,32.744045],[-83.7045068,32.744067300000005],[-83.70500100000001,32.744056]]},"id":"8944c0b0447ffff-13bef8942c9c061a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.649344,32.839321000000005]},"id":"8f44c0a34a11bb0-13bfff1806bffba0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34a11bb0-13bfff1806bffba0","8f44c0a34aada70-17dff050c9978f62"]},"geometry":{"type":"LineString","coordinates":[[-83.6488436,32.8399519],[-83.648891,32.839891],[-83.64896,32.839802],[-83.649344,32.839321000000005]]},"id":"8944c0a34a3ffff-1796ffb4e8cd9b0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a14181141-139fdf078ff28094","8f44c0a141304ec-13fff9c38c303699"]},"geometry":{"type":"LineString","coordinates":[[-83.60349520000001,32.8839101],[-83.6048037,32.8826326],[-83.605652,32.8818075]]},"id":"8844c0a141fffff-179f7c65d053e52f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34c06ba5-17f7fe3d2e4e5b1d","8f44c0a34c20222-17d7fbc5e8cc079e"]},"geometry":{"type":"LineString","coordinates":[[-83.636587,32.83039],[-83.63670110000001,32.8303184],[-83.6368769,32.8302214],[-83.637127,32.830092],[-83.637597,32.829935]]},"id":"8944c0a34c3ffff-17d7fd08beff3a5f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2e11e522-179e48d0ce568848","8f44c0a2e181a0a-13fe4ca56353a9cb"]},"geometry":{"type":"LineString","coordinates":[[-83.710898,32.899856],[-83.710616,32.899946],[-83.70984270000001,32.9002276],[-83.70948320000001,32.9003597],[-83.70932900000001,32.900416]]},"id":"8844c0a2e1fffff-17b7eabc2e106fbb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ecc945b-1796d22c60708630","8f44c0a2ecea76c-13d6d216856d2823"]},"geometry":{"type":"LineString","coordinates":[[-83.70710000000001,32.8981],[-83.7070846,32.8986948],[-83.707065,32.89923]]},"id":"8944c0a2ecfffff-17b7f22083d23d56"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[43.52,79.37],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1ab848de-13def43e88494b09","8f44c0b1abb2668-17b7d75fd6a7f789"]},"geometry":{"type":"LineString","coordinates":[[-83.65250590000001,32.8149104],[-83.652569,32.814914],[-83.652679,32.814937],[-83.65282,32.814981],[-83.6529493,32.815021200000004],[-83.65330850000001,32.815133],[-83.65339200000001,32.815159],[-83.653475,32.815179],[-83.653553,32.81519],[-83.653788,32.815201]]},"id":"8944c0b1abbffff-139ed5d1148d5776"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3621194a-13dfe4b269f4f4f4","8f44c0a362185a3-13dfa5197a57e15b"]},"geometry":{"type":"LineString","coordinates":[[-83.62083460000001,32.851220600000005],[-83.62083530000001,32.8513305],[-83.62083700000001,32.851392700000005],[-83.62084700000001,32.851442],[-83.620846,32.851515],[-83.620816,32.851636],[-83.62074270000001,32.8518573],[-83.62066970000001,32.852033]]},"id":"8944c0a3623ffff-13dff4cd58a9f2a6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a369929a8-17ff7af1893ab619","8f44c0a36991b0a-17dff893ba2328bd"]},"geometry":{"type":"LineString","coordinates":[[-83.61827600000001,32.8342775],[-83.618341,32.834318],[-83.61852800000001,32.834421],[-83.61874,32.834504],[-83.61889500000001,32.83456],[-83.6190957,32.834637],[-83.6192453,32.8346621]]},"id":"8a44c0a36997fff-17ffe9c9375a7cb5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1d22c66a-1797e4b4c373dbb9","8f44c0b1d223276-17fee66270ecbac8"]},"geometry":{"type":"LineString","coordinates":[[-83.69947400000001,32.814262],[-83.69905800000001,32.814129],[-83.69898830000001,32.8141027],[-83.69878650000001,32.8140264]]},"id":"8944c0b1d23ffff-17def58c8af536d6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67318,32.883229]},"id":"8f44c0a0498ea29-17f6a4e687d8d6c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a0498ea29-17f6a4e687d8d6c3","8f44c0a04826640-17f7ff2605effe86"]},"geometry":{"type":"LineString","coordinates":[[-83.67553600000001,32.883619],[-83.675286,32.883719],[-83.675071,32.883795],[-83.674875,32.883829],[-83.674655,32.88383],[-83.67453400000001,32.883809],[-83.67436400000001,32.883761],[-83.67414600000001,32.883680000000005],[-83.67410600000001,32.883665],[-83.673832,32.88354],[-83.67318,32.883229]]},"id":"8844c0a049fffff-17fea20fe98737fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08b019a0-1395f4525ce956b0","8f44c0b08a28cc0-13b7f476ccb04765"]},"geometry":{"type":"LineString","coordinates":[[-83.7454484,32.8183908],[-83.7454594,32.817925800000005],[-83.7454714,32.8174281],[-83.745474,32.817304],[-83.74548060000001,32.8169447],[-83.745486,32.816647],[-83.7454869,32.8165962],[-83.7455001,32.815843300000004],[-83.7455067,32.815468800000005]]},"id":"8844c0b08bfffff-1795f463497f4e29"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","flags":[{"applyAt":[357.98,473.49],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5662d42d-1397f9c52ff709a6","8f44c0b560ea40c-13ddf1e4ed899ecd"]},"geometry":{"type":"LineString","coordinates":[[-83.74327500000001,32.861552],[-83.744456,32.861069],[-83.744535,32.861037],[-83.74487900000001,32.860895],[-83.74531800000001,32.860684],[-83.745676,32.860438],[-83.745917,32.860211],[-83.7461104,32.8599358],[-83.74619940000001,32.8598013],[-83.7462641,32.8596852],[-83.74630180000001,32.8595987],[-83.74636600000001,32.859442800000004],[-83.7464059,32.8593233],[-83.7464406,32.859164400000004],[-83.74645620000001,32.8590668],[-83.7464683,32.8589167],[-83.7464872,32.8586675],[-83.74649430000001,32.858435300000004],[-83.74650100000001,32.8580042]]},"id":"8744c0b56ffffff-17b5f49957c46245"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ab44db1-13d7c66da0a68a8e","8f44c0b184ca445-13f6c45428d8f836"]},"geometry":{"type":"LineString","coordinates":[[-83.659447,32.816598],[-83.659486,32.815483],[-83.65948800000001,32.815421],[-83.660307,32.815438]]},"id":"8744c0b18ffffff-13d7c5f2926e5e64"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36215840-17d7e4708cc6a234","8f44c0a363106d1-13ff644339171c80"]},"geometry":{"type":"LineString","coordinates":[[-83.62094,32.850822],[-83.62096700000001,32.849935],[-83.62097100000001,32.849764],[-83.6209932,32.848678],[-83.62100380000001,32.8483474],[-83.6210125,32.848202]]},"id":"8844c0a363fffff-17b7f45a91f7ed4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a223a8589-17bed701adc40aa7","8f44c0a22304d50-13bef14c67f2d277"]},"geometry":{"type":"LineString","coordinates":[[-83.68120900000001,32.874315],[-83.68084900000001,32.874386],[-83.680513,32.874419],[-83.68016800000001,32.874464],[-83.679902,32.874529],[-83.679625,32.87464],[-83.67943000000001,32.874747],[-83.679412,32.874757],[-83.67929500000001,32.874845],[-83.679146,32.875019],[-83.679029,32.875228],[-83.67895800000001,32.875403],[-83.678871,32.875738000000005]]},"id":"8844c0a223fffff-13d6d4a99a971497"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2869d09b-13bef237287f446d","8f44c0a2869c79d-1397f346696365a1"]},"geometry":{"type":"LineString","coordinates":[[-83.720155,32.926766],[-83.720268,32.926816],[-83.720341,32.926855],[-83.72041700000001,32.926862],[-83.720482,32.926859],[-83.72054100000001,32.926839],[-83.72061400000001,32.926791],[-83.720681,32.926741],[-83.720707,32.92671],[-83.72091,32.926478],[-83.720955,32.926433],[-83.720962,32.926399],[-83.72093500000001,32.926353],[-83.720315,32.925962000000006],[-83.72026100000001,32.925939],[-83.720211,32.925945],[-83.719721,32.926502]]},"id":"8944c0a286bffff-17df318f72e4b9f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5803412,32.869076500000006]},"id":"8f44c0b8942d484-13f7d78ec5923943"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8954eb9e-13f7e243e1a69509","8f44c0b8942d484-13f7d78ec5923943"]},"geometry":{"type":"LineString","coordinates":[[-83.582509,32.869075],[-83.5822175,32.8690747],[-83.5803412,32.869076500000006]]},"id":"8844c0b895fffff-13f7b4e95eb8d227"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1c4022f1-139ef4c645fa31d7","8f44c0b1c4b3b6a-1397bd0b27a07942"]},"geometry":{"type":"LineString","coordinates":[[-83.663291,32.790104],[-83.664561,32.79018],[-83.66586000000001,32.790248000000005],[-83.666184,32.79027],[-83.66625300000001,32.790273],[-83.666381,32.790279000000005],[-83.666678,32.790311]]},"id":"8844c0b1c5fffff-13d6f8e867db323f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8e914824-179fbeb14810b3a9","8f44c0b812d2751-17dfb86749c24940"]},"geometry":{"type":"LineString","coordinates":[[-83.56033400000001,32.827457],[-83.558841,32.828406],[-83.558801,32.82842],[-83.55873000000001,32.828424000000005],[-83.55867400000001,32.828403],[-83.558519,32.828229],[-83.558221,32.827879],[-83.557758,32.827364]]},"id":"8944c0b8e93ffff-17f7bbb93fe55123"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.57924200000001,32.867297]},"id":"8f44c0b89519185-179faa3dc5798edb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b89546493-13dfa4b5893829a3","8f44c0b89519185-179faa3dc5798edb"]},"geometry":{"type":"LineString","coordinates":[[-83.581508,32.868009],[-83.5812605,32.868009],[-83.579887,32.867919],[-83.579561,32.867803],[-83.57933600000001,32.86755],[-83.57924200000001,32.867297]]},"id":"8844c0b895fffff-13ffa7c47d6d4efd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a051a594e-13b7e40d7a419caa","8f44c0a051ad72d-17dec32aa235ad79"]},"geometry":{"type":"LineString","coordinates":[[-83.68663450000001,32.904015],[-83.6867002,32.9042571],[-83.6868591,32.904786200000004],[-83.6869485,32.905105500000005],[-83.68699740000001,32.905316400000004]]},"id":"8944c0a051bffff-13d7e3996bc91f69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[365.15,374.69],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a304b68cd-13df62db88f03a96","8f44c0a32b0cad6-179720c480493902"]},"geometry":{"type":"LineString","coordinates":[[-83.621588,32.858002],[-83.621637,32.858584],[-83.6216686,32.8588068],[-83.621768,32.859509],[-83.621772,32.859675],[-83.621764,32.859791],[-83.62173,32.859955],[-83.62170300000001,32.860042],[-83.621606,32.860255],[-83.62145500000001,32.860608],[-83.621435,32.86072],[-83.62143800000001,32.860819],[-83.62145600000001,32.860898],[-83.62147200000001,32.860934],[-83.621516,32.861009],[-83.621577,32.861075],[-83.6216962,32.8611677],[-83.62177120000001,32.8612259],[-83.621812,32.861258],[-83.62200100000001,32.861398],[-83.62211400000001,32.86149],[-83.622156,32.861552],[-83.62218700000001,32.861637],[-83.622203,32.861734000000006],[-83.622206,32.862219],[-83.622225,32.862504],[-83.622248,32.862662],[-83.62232900000001,32.862961],[-83.622444,32.863213]]},"id":"8744c0a32ffffff-17d7f236475e097d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b52b052-17d7cbb26175b61a","8f44c0b1bcc2555-13d7e7f80fb5e662"]},"geometry":{"type":"LineString","coordinates":[[-83.657289,32.829938],[-83.657497,32.829938],[-83.658484,32.829962],[-83.6586034,32.8296739],[-83.6587885,32.829448500000005],[-83.65880800000001,32.829382],[-83.658816,32.828677]]},"id":"8744c0b1bffffff-1397f923f7e29e08"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b138b1888-1396fdd06ac3779b","8f44c0b1312e180-13fefd324ff74c95"]},"geometry":{"type":"LineString","coordinates":[[-83.63701400000001,32.776727],[-83.63685000000001,32.776429],[-83.63683800000001,32.776407],[-83.636683,32.776051],[-83.63646700000001,32.77532],[-83.63643,32.77498],[-83.636442,32.774659],[-83.636458,32.774565],[-83.636494,32.774361],[-83.63657400000001,32.773952],[-83.63668200000001,32.773407],[-83.63669700000001,32.773328],[-83.63671330000001,32.7732696],[-83.636761,32.773099]]},"id":"8744c0b13ffffff-1797fe2dc0800f15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.69804900000001,32.780169]},"id":"8f44c0b03c40c1b-13d7e82f66f83242"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b03c64c9d-17fe66442c2707d3","8f44c0b03c40c1b-13d7e82f66f83242"]},"geometry":{"type":"LineString","coordinates":[[-83.69804900000001,32.780169],[-83.69807,32.779373],[-83.69806870000001,32.778797000000004],[-83.69866490000001,32.7788026],[-83.698835,32.778768]]},"id":"8844c0b03dfffff-139ef7cec7d22b75"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36375344-13b7fa794396f92a","8f44c0a36371ca9-179f9b7209493f94"]},"geometry":{"type":"LineString","coordinates":[[-83.62462400000001,32.849508],[-83.62476170000001,32.8494595],[-83.625022,32.849339]]},"id":"8a44c0a36377fff-13ff7af499479ccc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.614557,32.880502]},"id":"8f44c0a33492c8c-17dff405e45b512b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a33492c8c-17dff405e45b512b","8f44c0a1492e92a-13ff78dac6bc48be"]},"geometry":{"type":"LineString","coordinates":[[-83.612578,32.875666],[-83.61201200000001,32.877263],[-83.61174700000001,32.877994],[-83.61154,32.878593],[-83.61147100000001,32.878756],[-83.61133600000001,32.878982],[-83.61111100000001,32.87925],[-83.61113800000001,32.879344],[-83.611159,32.879606],[-83.61117700000001,32.879686],[-83.611238,32.879806],[-83.611311,32.879897],[-83.611394,32.879969],[-83.611534,32.88006],[-83.611675,32.880139],[-83.611742,32.88017],[-83.611846,32.880208],[-83.611968,32.880234],[-83.612688,32.880305],[-83.61428500000001,32.880477],[-83.614557,32.880502]]},"id":"8844c0a149fffff-13df799ea26e2fa8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3416621a-17dfea5696465023","8f44c0a34b96872-13f7e6f165d8f627"]},"geometry":{"type":"LineString","coordinates":[[-83.6447383,32.8364982],[-83.64567600000001,32.836896],[-83.646129,32.836329400000004]]},"id":"8744c0a34ffffff-17d7e87cc2534f70"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e0e8383-13f6f56304692cf6","8f44c0b1e06a25a-13bfee2a4b3a763e"]},"geometry":{"type":"LineString","coordinates":[[-83.65332000000001,32.799259],[-83.653327,32.798651],[-83.65342600000001,32.798667],[-83.65384900000001,32.798665],[-83.65410100000001,32.798685],[-83.65433300000001,32.798688],[-83.654368,32.798689],[-83.65479900000001,32.798721],[-83.655381,32.798727],[-83.65612700000001,32.798718],[-83.656245,32.798721],[-83.656278,32.798735]]},"id":"8844c0b1e1fffff-13b6d261d42134fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a4032d9-17f7fbc0e86bdcfa","8f44c0b1a405b04-13def9ecb33af707"]},"geometry":{"type":"LineString","coordinates":[[-83.63760500000001,32.817059],[-83.6380487,32.8164516],[-83.6382962,32.816186200000004],[-83.6383541,32.816218]]},"id":"8944c0b1a43ffff-13d6fae27d87d0b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.67846750000001,32.7562246]},"id":"8f44c0b06693ba6-13f6f7fddc83ee32"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b15b66c71-17b6fa292ab43f21","8f44c0b06693ba6-13f6f7fddc83ee32"]},"geometry":{"type":"LineString","coordinates":[[-83.67757900000001,32.752263],[-83.677535,32.752786],[-83.67753730000001,32.7534877],[-83.6777955,32.7540506],[-83.6779065,32.7543096],[-83.6779525,32.7543926],[-83.6781265,32.7549226],[-83.6781945,32.7551556],[-83.6782245,32.7554126],[-83.6782355,32.7555646],[-83.6782845,32.7558096],[-83.6783625,32.7560256],[-83.67846750000001,32.7562246]]},"id":"8744c0b06ffffff-1397996309e8a3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1bc7538c-17befe6ba65096b3","8f44c0b1bc0975c-17f7e22ce4f08349"]},"geometry":{"type":"LineString","coordinates":[[-83.66118900000001,32.827123],[-83.6612037,32.8268591],[-83.6612631,32.8268158],[-83.66136,32.826804],[-83.66188500000001,32.82679],[-83.662727,32.826794]]},"id":"8844c0b1bdfffff-17bff091e1d985fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a300e2243-13f7a33a095d8968","8f44c0a3076d95e-139f2174ea5511de"]},"geometry":{"type":"LineString","coordinates":[[-83.634544,32.861905],[-83.634583,32.862063],[-83.634725,32.86242],[-83.635023,32.863202],[-83.635413,32.864452],[-83.635542,32.864849],[-83.635614,32.865069000000005],[-83.63563900000001,32.865201],[-83.63563900000001,32.865249],[-83.635609,32.865307],[-83.635579,32.865342000000005],[-83.63526900000001,32.865453]]},"id":"8744c0a30ffffff-17ffa1b972ec5818"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a22c903b6-17beb358a5d383b9","8f44c0a35264621-17f6f67bc5fe9e4e"]},"geometry":{"type":"LineString","coordinates":[[-83.66597800000001,32.862954],[-83.667017,32.862992000000006],[-83.667124,32.863025],[-83.667192,32.863066],[-83.667212,32.863078],[-83.667271,32.863165],[-83.667287,32.863211],[-83.66730000000001,32.863297],[-83.667263,32.863456]]},"id":"8544c0a3fffffff-17beb48ed4c850b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36569b6a-13dff68542e9bdbc","8f44c0a3619190b-1397751a234950ea"]},"geometry":{"type":"LineString","coordinates":[[-83.614115,32.841298],[-83.61338,32.842084],[-83.61334400000001,32.842126],[-83.613318,32.842191],[-83.61332,32.84223],[-83.613321,32.842253],[-83.613331,32.842289],[-83.613363,32.842332],[-83.61339600000001,32.842362],[-83.613534,32.842443]]},"id":"8844c0a361fffff-13fff64658ce5a17"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.73341900000001,32.917872]},"id":"8f44c0a2816868a-139611d523ef6367"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2816868a-139611d523ef6367","8f44c0a28155cf5-13fe56f50d5d5384"]},"geometry":{"type":"LineString","coordinates":[[-83.73132000000001,32.917242],[-83.73130900000001,32.917153],[-83.731319,32.916938],[-83.731353,32.916775],[-83.73141000000001,32.916672000000005],[-83.731486,32.916572],[-83.73155200000001,32.916508],[-83.73164100000001,32.91644],[-83.73175,32.916393],[-83.73192900000001,32.916351],[-83.73210800000001,32.91633],[-83.73235600000001,32.916333],[-83.732624,32.916345],[-83.73285100000001,32.91635],[-83.733011,32.916362],[-83.73316700000001,32.916387],[-83.733355,32.916432],[-83.733553,32.916496],[-83.73382140000001,32.9165888],[-83.73339700000001,32.917617],[-83.73337400000001,32.917692],[-83.733383,32.917776],[-83.73341900000001,32.917872]]},"id":"8744c0a28ffffff-13bed38b7adeb851"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19cd3a53-17dfb0102a26560b","8f44c0b19cc2564-1797ee7b254a5ddc"]},"geometry":{"type":"LineString","coordinates":[[-83.68171500000001,32.823797],[-83.682152,32.823571900000005],[-83.68236300000001,32.823459]]},"id":"8944c0b19cfffff-17f6bf454167ff92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19ce5ac8-1397e9ad28e0f6d3","8f44c0b19c548ad-13f6a79b2639c404"]},"geometry":{"type":"LineString","coordinates":[[-83.684331,32.822435],[-83.6845827,32.822307800000004],[-83.685179,32.822001]]},"id":"8a44c0b19c57fff-13fea8a3f9554dba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8dc82331-13ff799a6818710c","8f44c0b8d5514ee-1797776a6f789f7e"]},"geometry":{"type":"LineString","coordinates":[[-83.58695300000001,32.847423],[-83.58656,32.847222],[-83.58609600000001,32.846984],[-83.58529700000001,32.846563],[-83.58408,32.845961],[-83.58376600000001,32.845785],[-83.583793,32.845647],[-83.585802,32.84243],[-83.585896,32.842281],[-83.58605700000001,32.84205]]},"id":"8744c0b8dffffff-13f7fbf29df3d54b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa028b6-17b6f1ff8cc53a00","8f44c0b0aa234c5-139fefddfb74ac52"]},"geometry":{"type":"LineString","coordinates":[[-83.72024400000001,32.823534],[-83.7204657,32.823407700000004],[-83.72081010000001,32.8232376],[-83.7211169,32.8230814]]},"id":"8944c0b0aa3ffff-17b730f00776b6b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8b801298-13bfe0f6aa05c835","8f44c0b8b80b865-17d7e03daadab9a1"]},"geometry":{"type":"LineString","coordinates":[[-83.569935,32.868775],[-83.56966,32.869003],[-83.569612,32.869048],[-83.569603,32.869065],[-83.569596,32.869093],[-83.56959900000001,32.86912],[-83.56961000000001,32.869144],[-83.569646,32.869183],[-83.570231,32.86967]]},"id":"8944c0b8b83ffff-17d7f12cf91a1c74"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a266493ac-17b692ff65ca84b5","8f44c0a229aa414-13d6d60528b40ce5"]},"geometry":{"type":"LineString","coordinates":[[-83.680513,32.85976],[-83.67935800000001,32.860687],[-83.67931200000001,32.860748],[-83.679291,32.860795],[-83.67928500000001,32.86084],[-83.679275,32.861466]]},"id":"8844c0a229fffff-1796b4f665b2c1df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e55d694-17f7d9dc444eff78","8f44c0b8e418d80-17b7e31303cacf30"]},"geometry":{"type":"LineString","coordinates":[[-83.54663000000001,32.837352],[-83.546558,32.837507],[-83.54649900000001,32.83762],[-83.54642100000001,32.837749],[-83.54634200000001,32.837864],[-83.546227,32.838003],[-83.54607100000001,32.838161],[-83.545975,32.838239],[-83.54588700000001,32.838289],[-83.545809,32.838307],[-83.54571,32.838317],[-83.54564,32.838315],[-83.545569,32.838299],[-83.54531200000001,32.838217],[-83.545145,32.838182],[-83.544942,32.838147],[-83.544719,32.838122000000006],[-83.54449600000001,32.838126],[-83.544335,32.838124],[-83.544168,32.838116],[-83.543844,32.838077000000006],[-83.54334100000001,32.837956000000005],[-83.543158,32.837916],[-83.542918,32.837873],[-83.542856,32.837843]]},"id":"8844c0b8e5fffff-139ffe0b4d83e52b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,251.64],"value":"paved"}]},"subType":"road","connectors":["8f44c0a35b54a1b-17f6ec712201234a","8f44c0a26793c4e-17d6e5552e64f8c2"]},"geometry":{"type":"LineString","coordinates":[[-83.670091,32.853915],[-83.67025100000001,32.853901],[-83.67042400000001,32.853898],[-83.67067200000001,32.853926],[-83.67094,32.853969],[-83.67252400000001,32.854203000000005],[-83.672612,32.854213],[-83.672707,32.854214],[-83.672745,32.854205],[-83.67276600000001,32.8542],[-83.67283400000001,32.854172000000005],[-83.67291900000001,32.854098],[-83.672948,32.854056],[-83.67298500000001,32.853963],[-83.67300300000001,32.853898]]},"id":"8644c0a27ffffff-17b6a8b3919577a4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2505bb0b-179fb64e9a5409a7","8f44c0a2500e732-17b7aa960c4d18e3"]},"geometry":{"type":"LineString","coordinates":[[-83.72328,32.860780000000005],[-83.723364,32.860877],[-83.72357600000001,32.861203],[-83.723803,32.861603],[-83.723938,32.861846],[-83.72453900000001,32.862932],[-83.724654,32.8631356],[-83.7247909,32.8633406],[-83.724901,32.8634706],[-83.7250327,32.8636345]]},"id":"8844c0a251fffff-13b63878f12657fd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b01403a9c-139e410a24cd526c","8f44c0b014b5661-13d66990a684009a"]},"geometry":{"type":"LineString","coordinates":[[-83.714083,32.780074],[-83.713886,32.779746],[-83.713718,32.779483],[-83.71371,32.779449],[-83.7136693,32.7793644],[-83.71357900000001,32.779373],[-83.71349400000001,32.779379],[-83.71320200000001,32.779373],[-83.71095000000001,32.779334],[-83.71059100000001,32.779325]]},"id":"8844c0b015fffff-139ef4e917420980"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a83056d-17ff7ba5371ba366","8f44c0a2a8206e6-17d7487d81072a86"]},"geometry":{"type":"LineString","coordinates":[[-83.71103120000001,32.9159248],[-83.71101300000001,32.915909],[-83.71088400000001,32.915806],[-83.71061200000001,32.915613],[-83.71038200000001,32.915419],[-83.71026,32.915352],[-83.710221,32.915353],[-83.71019700000001,32.915353],[-83.710125,32.915383],[-83.709911,32.915514],[-83.70975800000001,32.915596],[-83.7097389,32.9156051]]},"id":"8944c0a2a83ffff-17f6ea070767eeba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a367aa96d-13b7fcde95a9d887","8f44c0a367ae833-17bffcd9b5454106"]},"geometry":{"type":"LineString","coordinates":[[-83.61094130000001,32.847686100000004],[-83.6109404,32.8477509],[-83.6109354,32.8480058],[-83.6109335,32.848111700000004]]},"id":"8a44c0a367affff-13b7fcdc10e84151"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b529b0283-17dffb24695d710a","8f44c0b5662b1a9-13d7fae823cd451b"]},"geometry":{"type":"LineString","coordinates":[[-83.74271300000001,32.865968],[-83.742895,32.864711],[-83.74292100000001,32.86434],[-83.742923,32.864241],[-83.74291600000001,32.863975],[-83.742912,32.863802],[-83.742822,32.862353],[-83.7428094,32.862064600000004]]},"id":"8644c0b57ffffff-179dfacc79fbaf20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1d146aa8-13df6aa52864ad9a","8f44c0b1d026d92-13bf71e00b2488c8"]},"geometry":{"type":"LineString","coordinates":[[-83.6970414,32.8057588],[-83.697016,32.805795],[-83.69689500000001,32.806066],[-83.6967087,32.806687000000004],[-83.69668680000001,32.806772200000005],[-83.6966814,32.8068128],[-83.69664250000001,32.806834900000005],[-83.6963834,32.806859200000005],[-83.69597850000001,32.806872000000006],[-83.6958185,32.806866],[-83.6957586,32.8068352],[-83.695699,32.806745],[-83.695649,32.806717],[-83.69554500000001,32.806722],[-83.69546100000001,32.806708],[-83.69525200000001,32.806539],[-83.695037,32.806424],[-83.694856,32.806314],[-83.694736,32.806218],[-83.694653,32.806128],[-83.69450300000001,32.805799],[-83.694439,32.805715],[-83.69419280000001,32.8054269],[-83.69408,32.805295]]},"id":"8844c0b1d1fffff-13be6e0e2afc6cf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b131b2b-13fef8260974c0f3","8f44c0b1b13128c-13f6f8a03df4d1a3"]},"geometry":{"type":"LineString","coordinates":[[-83.66510050000001,32.8295788],[-83.665101,32.829513],[-83.665101,32.82947],[-83.66511100000001,32.829444],[-83.66514000000001,32.829406],[-83.665181,32.829375],[-83.66521200000001,32.829364000000005],[-83.66529600000001,32.829358]]},"id":"8b44c0b1b131fff-139ff87bd98f18b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a33cf5270-13bf9ccce5ed5f59","8f44c0a33c12112-17979f2d0514e485"]},"geometry":{"type":"LineString","coordinates":[[-83.623096,32.873044],[-83.62299300000001,32.873146000000006],[-83.62289,32.873268],[-83.62282,32.873388],[-83.62276700000001,32.873513],[-83.622735,32.873655],[-83.62272700000001,32.873835],[-83.622752,32.874601000000006],[-83.622771,32.874848],[-83.62281700000001,32.875042],[-83.622859,32.875134],[-83.62293600000001,32.875258],[-83.623056,32.875435],[-83.62317800000001,32.875366],[-83.623315,32.875298],[-83.623433,32.875256],[-83.623648,32.8752],[-83.624069,32.875124]]},"id":"8844c0a33dfffff-13b77f546f98688e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a26804ce4-13d7c2d866f6518a","8f44c0a26974c24-17bffc0e42c40fe7"]},"geometry":{"type":"LineString","coordinates":[[-83.687129,32.841814],[-83.68737300000001,32.841648],[-83.68762790000001,32.841463700000006],[-83.689497,32.840212],[-83.68991000000001,32.839926000000006]]},"id":"8844c0a269fffff-1796ff73f8487cd7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,669.9],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,669.9],"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3000a6a6-17d7a2306583e69e","8f44c0a30286673-1397411e0c85c53d"]},"geometry":{"type":"LineString","coordinates":[[-83.634969,32.860857],[-83.63517800000001,32.861049],[-83.635406,32.861283],[-83.636229,32.862149],[-83.63642800000001,32.862389],[-83.637158,32.863456],[-83.637541,32.864038],[-83.63804,32.86477],[-83.63815100000001,32.864902],[-83.638283,32.865043],[-83.638401,32.865139],[-83.63860000000001,32.865279],[-83.63876,32.865364],[-83.639262,32.865575],[-83.63923600000001,32.865814],[-83.63921400000001,32.865926],[-83.63918100000001,32.866021],[-83.639122,32.866103],[-83.639031,32.8662],[-83.638356,32.866697],[-83.638019,32.866962],[-83.63719800000001,32.867668],[-83.637057,32.86777],[-83.63692400000001,32.867838],[-83.636778,32.867891],[-83.636695,32.867911],[-83.636555,32.867945],[-83.63632600000001,32.867964],[-83.636109,32.867939],[-83.635992,32.867919],[-83.635851,32.86788],[-83.635537,32.867742],[-83.635408,32.867714]]},"id":"8744c0a30ffffff-13dffc8f1efa44a1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890c2329-17d777ba664ee867","8f44c0b8962c28c-179f7d93a037f28c"]},"geometry":{"type":"LineString","coordinates":[[-83.586825,32.873117],[-83.58687300000001,32.873255],[-83.587005,32.87381],[-83.58726940000001,32.8747011],[-83.5873117,32.8748543],[-83.587393,32.8750567],[-83.58732520000001,32.875301],[-83.58708510000001,32.8755674],[-83.5862896,32.8759985],[-83.5854259,32.8764495],[-83.5849914,32.876535100000005],[-83.5844294,32.876533200000004]]},"id":"8744c0b89ffffff-13b778ae1950156d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a328a1812-139734806807ca6e","8f44c0a32810cb5-17ff72b78174ca5a"]},"geometry":{"type":"LineString","coordinates":[[-83.615092,32.857647],[-83.614467,32.857656],[-83.614413,32.857666],[-83.61437600000001,32.857694],[-83.614365,32.85774],[-83.614361,32.857885]]},"id":"8844c0a329fffff-139773c9f8813f23"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36622020-13ffb8a897da64be","8f44c0a36718bb4-13f778ab48795713"]},"geometry":{"type":"LineString","coordinates":[[-83.6126583,32.849450700000006],[-83.6126643,32.848841900000004],[-83.61265440000001,32.848338500000004],[-83.612654,32.8482166]]},"id":"8844c0a367fffff-13ff38a7aed8e3fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a3452531b-17bf04e087df49e5","8f44c0a3452682e-179f66d72c6ce4b9"]},"geometry":{"type":"LineString","coordinates":[[-83.6330638,32.8330902],[-83.6334731,32.8333543],[-83.633868,32.833576]]},"id":"8a44c0a34527fff-17b715de269111ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[89.87,221.72],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b1368ac18-17ff15f4670c38ee","8f44c0badb93698-13bfb38a869db53a"]},"geometry":{"type":"LineString","coordinates":[[-83.626873,32.7886],[-83.6271901,32.7886486],[-83.6278114,32.7887679],[-83.62806300000001,32.78884],[-83.629181,32.789036],[-83.629427,32.7890953],[-83.6296878,32.789207000000005],[-83.6298829,32.7893187],[-83.630065,32.7894965],[-83.63021090000001,32.789681300000005],[-83.6302995,32.789918400000005],[-83.6310916,32.7919113],[-83.63203100000001,32.7943367],[-83.6334156,32.7978109],[-83.6344152,32.8002011]]},"id":"8644c0bafffffff-13ff2ae3a475405b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a68c815-13d6f7a6e4fcb017","8f44c0b1a61e861-179ef3a4ade6cdaf"]},"geometry":{"type":"LineString","coordinates":[[-83.639285,32.825223],[-83.6396419,32.8254285],[-83.6397707,32.825487100000004],[-83.6399713,32.8254615],[-83.64015420000001,32.825397],[-83.6403202,32.825257900000004],[-83.640927,32.824513]]},"id":"8844c0b1a7fffff-13bef57a1b377d4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a231500e6-179eeddbfe55b77f","8f44c0a2302410a-1396f0b4a0156578"]},"geometry":{"type":"LineString","coordinates":[[-83.694559,32.884897],[-83.69469670000001,32.8850306],[-83.69489440000001,32.885188500000005],[-83.6950047,32.8852665],[-83.6951707,32.8853665],[-83.695447,32.885473600000005],[-83.6957249,32.8855208]]},"id":"8844c0a231fffff-13f7ef5e9e729ca5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1e2e9cce-17d6eaa50fac9d9a","8f44c0b1e24168e-13d6e5d3ea3b1971"]},"geometry":{"type":"LineString","coordinates":[[-83.65772000000001,32.806989],[-83.65777700000001,32.80679],[-83.657842,32.806616000000005],[-83.657909,32.806483],[-83.657949,32.806447],[-83.657977,32.806421],[-83.65802000000001,32.806399],[-83.658102,32.806373],[-83.658336,32.806368],[-83.65891500000001,32.806376],[-83.659693,32.806381]]},"id":"8844c0b1e3fffff-1396f897d083fc72"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b50109804-13bfe1cf8f629ccf","8f44c0b50054342-179fe2e5acb0479f"]},"geometry":{"type":"LineString","coordinates":[[-83.76575100000001,32.872625],[-83.766198,32.872459],[-83.766457,32.872346],[-83.766637,32.872264],[-83.76682000000001,32.872166],[-83.767334,32.871862],[-83.767995,32.871463],[-83.768321,32.871276],[-83.768427,32.871192],[-83.768488,32.87111],[-83.768516,32.871052],[-83.76853200000001,32.870952],[-83.76852000000001,32.870852],[-83.768489,32.870768000000005],[-83.76842900000001,32.870674],[-83.76807600000001,32.870251],[-83.767989,32.870136],[-83.76792,32.870018],[-83.767874,32.869869],[-83.767865,32.869793],[-83.76786200000001,32.869709],[-83.76789500000001,32.869486],[-83.767995,32.869135],[-83.76800700000001,32.869],[-83.767982,32.868904],[-83.76791200000001,32.868792],[-83.767841,32.868729],[-83.76770400000001,32.868665],[-83.76757,32.868647],[-83.76741700000001,32.868654],[-83.767211,32.868701],[-83.76619600000001,32.868983]]},"id":"8844c0b501fffff-17f5feb8695aa07b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a20428276-1397f75e4eeea24f","8f44c0a20475d00-1397752f819de6d5"]},"geometry":{"type":"LineString","coordinates":[[-83.69183000000001,32.8646431],[-83.69222470000001,32.8649093],[-83.69236140000001,32.8649981],[-83.692724,32.8652338]]},"id":"8844c0a205fffff-13dff647af107814"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.59251,32.855882]},"id":"8f44c0b8d74a85a-13bf69d94d254b1a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d770793-179f6c5c614388f9","8f44c0b8d74a85a-13bf69d94d254b1a"]},"geometry":{"type":"LineString","coordinates":[[-83.591481,32.853778000000005],[-83.59148400000001,32.854021],[-83.59149500000001,32.854213],[-83.59158500000001,32.854931],[-83.59162,32.855038],[-83.591682,32.85511],[-83.591705,32.855122],[-83.591935,32.85524],[-83.592211,32.855367],[-83.59237300000001,32.855475000000006],[-83.59245700000001,32.855575],[-83.59250800000001,32.855657],[-83.59251,32.855882]]},"id":"8944c0b8d77ffff-13d76b76ece55321"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a26b00206-17bef67d4bd0295a","8f44c0a268630ec-1796fb4faa3467f3"]},"geometry":{"type":"LineString","coordinates":[[-83.69021500000001,32.844171],[-83.691274,32.844178],[-83.69232600000001,32.844178],[-83.692329,32.84422],[-83.692322,32.84449],[-83.69228100000001,32.844822],[-83.692237,32.84518],[-83.69219000000001,32.847092100000005]]},"id":"8744c0a26ffffff-13bef75bd73e53b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3583652a-13bfbf0a56d39d46","8f44c0b1b64846e-179fff3c6660d8ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6624731,32.8460752],[-83.66244470000001,32.8455649],[-83.66243200000001,32.845356],[-83.662389,32.843763],[-83.66239300000001,32.843362]]},"id":"8644c0a37ffffff-13ffff2c3c751867"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a755b09-13f7eabac57acf14","8f44c0b1a7528f0-13b6ed6f44e4c90b"]},"geometry":{"type":"LineString","coordinates":[[-83.64347000000001,32.823124],[-83.643928,32.822597],[-83.643983,32.8226],[-83.644025,32.822614],[-83.644199,32.822721],[-83.64457800000001,32.823]]},"id":"8944c0b1a77ffff-13f6fc26e118fd21"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36008110-139f2b862d6d7013","8f44c0a36070581-13df78d66b3b2c78"]},"geometry":{"type":"LineString","coordinates":[[-83.6180382,32.844565],[-83.6188628,32.8446494],[-83.6191386,32.8446887]]},"id":"8844c0a361fffff-13b76a2df1d67b68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b893cb5-17d6f9f5c99cc81d","8f44c0b1b8b329b-17def7ce840c7332"]},"geometry":{"type":"LineString","coordinates":[[-83.66455400000001,32.827275],[-83.664574,32.827326],[-83.66461100000001,32.82736],[-83.664646,32.827374],[-83.664702,32.827384],[-83.66522900000001,32.82739],[-83.66528500000001,32.827377000000006],[-83.66530200000001,32.827357],[-83.665318,32.827314],[-83.665338,32.826776],[-83.66536500000001,32.826703],[-83.66538800000001,32.826686],[-83.665436,32.82667]]},"id":"8944c0b1b8bffff-17b7f897adf00b6d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2c16aa6d-17d68375223bca3f","8f44c0a2ca95811-13de61e20f4b3dcb"]},"geometry":{"type":"LineString","coordinates":[[-83.739952,32.898327],[-83.74042100000001,32.898341],[-83.740502,32.896963],[-83.740498,32.896898],[-83.740487,32.896856],[-83.740447,32.896794],[-83.74042,32.896769],[-83.740319,32.896707],[-83.74025400000001,32.896684],[-83.74014100000001,32.89668],[-83.739862,32.896684],[-83.739411,32.896673],[-83.73930700000001,32.896676]]},"id":"8744c0a2cffffff-13ff513e76f795b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b194dc22c-17beba940b0d71de","8f44c0b194c03a2-17beb9504c337d74"]},"geometry":{"type":"LineString","coordinates":[[-83.677408,32.830897],[-83.677627,32.8309],[-83.677726,32.830895000000005],[-83.677789,32.83088],[-83.67784300000001,32.830849],[-83.677898,32.830803],[-83.67792,32.830742],[-83.67793,32.830716],[-83.677926,32.830301]]},"id":"8944c0b194fffff-17d699a361135f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a3442d8cc-17d7e577e20663ac","8f44c0a34559c68-139fc2cfcbb0581e"]},"geometry":{"type":"LineString","coordinates":[[-83.6336258,32.837505400000005],[-83.63382700000001,32.837681],[-83.633971,32.83777],[-83.634078,32.837837],[-83.63424300000001,32.837913],[-83.63436800000001,32.837955],[-83.634714,32.838006]]},"id":"8944c0a3457ffff-1797c43683869fc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92cd46b-17d7740008a7ac5d","8f44c0a345b3d95-17d7925b8c65e0fa"]},"geometry":{"type":"LineString","coordinates":[[-83.62767360000001,32.834008600000004],[-83.6280461,32.834237800000004],[-83.6282896,32.834378],[-83.62834640000001,32.834412]]},"id":"8644c0a37ffffff-17d7b32e88c0fa5a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a8eb6ca-17f7f82fe3250b59","8f44c0b1a129314-1797febf400cba8b"]},"geometry":{"type":"LineString","coordinates":[[-83.64948600000001,32.814681],[-83.649488,32.8144],[-83.649489,32.814203],[-83.64950400000001,32.814165],[-83.649541,32.814145],[-83.65130400000001,32.814183],[-83.652173,32.814191]]},"id":"8744c0b1affffff-17f6dbfc6364e7a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[176.85,301.35],"value":"paved"}]},"subType":"road","connectors":["8f44c0a2291426c-17be91db8e410f54","8f44c0a22834725-13d6f2bc8e0114b1"]},"geometry":{"type":"LineString","coordinates":[[-83.68098,32.86018],[-83.68062300000001,32.860467],[-83.679793,32.86115],[-83.679727,32.86121],[-83.679688,32.861266],[-83.679681,32.861319],[-83.679719,32.861427],[-83.67979100000001,32.86149],[-83.68016700000001,32.86177],[-83.68062,32.862091]]},"id":"8844c0a229fffff-1397f3b0909789d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b31b86c-1396ef8cca80dc1e","8f44c0b1b23234a-17dff23ecc10a245"]},"geometry":{"type":"LineString","coordinates":[[-83.667714,32.839951],[-83.668681,32.839975],[-83.66873100000001,32.839962],[-83.668763,32.839944],[-83.66878100000001,32.83992],[-83.668791,32.83986],[-83.668812,32.839309],[-83.668818,32.839047]]},"id":"8844c0b1b3fffff-17dfb0531c14ff03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b546c0d6e-13dfc6668d65e086","8f44c0b5469d530-1397ed972aed32f2"]},"geometry":{"type":"LineString","coordinates":[[-83.76137100000001,32.857867],[-83.761273,32.858174000000005],[-83.761235,32.858272],[-83.761161,32.858435],[-83.761081,32.858581],[-83.76101,32.85868],[-83.760997,32.858734000000005],[-83.7609209,32.858807500000005],[-83.76104500000001,32.858856],[-83.76111200000001,32.858904],[-83.76141000000001,32.859054],[-83.761594,32.859155],[-83.761835,32.85931],[-83.762011,32.859403],[-83.762133,32.85945],[-83.762252,32.85949],[-83.76238500000001,32.85951],[-83.762569,32.859524],[-83.762979,32.859508000000005],[-83.76334200000001,32.859484],[-83.763598,32.859473],[-83.763801,32.859453],[-83.763934,32.859423],[-83.76402900000001,32.859392],[-83.764122,32.859347],[-83.764241,32.859271],[-83.76431600000001,32.859212]]},"id":"8644c0b57ffffff-1395eb61c00df8af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,42.88],"value":"paved"}],"flags":[{"applyAt":[42.88,119.55],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a04d0cc61-139ef2a409ca91a5","8f44c0a226de6aa-13ffbf2cbb4d4976"]},"geometry":{"type":"LineString","coordinates":[[-83.667552,32.881431],[-83.667663,32.881431],[-83.66772800000001,32.881421],[-83.6679943,32.8813448],[-83.66827350000001,32.881256300000004],[-83.6685655,32.8811441],[-83.66874650000001,32.8810718],[-83.6689717,32.880965100000004]]},"id":"8844c0a04dfffff-1397f0e17e17bcd6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b8e1516c0-17f7c4ece628365b","8f44c0b8eaa1850-13bff93a849d97a4"]},"geometry":{"type":"LineString","coordinates":[[-83.559996,32.838703],[-83.5597,32.83869],[-83.558991,32.838693],[-83.55868500000001,32.8387],[-83.558391,32.838689],[-83.558074,32.83869],[-83.557716,32.838698],[-83.557089,32.838693],[-83.556437,32.838673],[-83.556157,32.838658],[-83.555829,32.838652],[-83.555513,32.838656],[-83.55548200000001,32.838654000000005],[-83.555408,32.838633],[-83.55537500000001,32.838614],[-83.55529100000001,32.838537],[-83.555138,32.838365],[-83.55502200000001,32.83822],[-83.554984,32.838138],[-83.55496600000001,32.838036],[-83.55497000000001,32.83795],[-83.554995,32.837815],[-83.555121,32.83764],[-83.555205,32.837566]]},"id":"8744c0b8effffff-13f7d03d9827591f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a35d8c82b-139ed6ed35779d9b","8f44c0a35ca524a-17b6f7cd2f15547c"]},"geometry":{"type":"LineString","coordinates":[[-83.6526893,32.845002900000004],[-83.652004,32.846029],[-83.651767,32.846384],[-83.652331,32.846653]]},"id":"8844c0a35dfffff-13dff82c0546f384"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[109.35,157.86],"value":"paved"}]},"subType":"road","connectors":["8f44c0b08d06913-13f756c9ee6de0eb","8f44c0b0c69aab6-17ffb6c1dd000942"]},"geometry":{"type":"LineString","coordinates":[[-83.73140190000001,32.805010700000004],[-83.731397,32.805495],[-83.7313867,32.8059966],[-83.73138800000001,32.806064],[-83.73138900000001,32.806434]]},"id":"8644c0b0fffffff-13be76c725e028cb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a19dc46-13f6ebe804922b6a","8f44c0b1a5616d3-13dff124092c0939"]},"geometry":{"type":"LineString","coordinates":[[-83.641952,32.815206],[-83.642238,32.814918],[-83.64228800000001,32.814878],[-83.64234300000001,32.814878],[-83.64307500000001,32.815218],[-83.64358100000001,32.815438],[-83.64363900000001,32.815464],[-83.644096,32.815652]]},"id":"8744c0b1affffff-13feee9ee9a7f27b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b19c548ad-13f6a79b2639c404","8f44c0b19d52698-139e87a5c90edbd6"]},"geometry":{"type":"LineString","coordinates":[[-83.685179,32.822001],[-83.6851128,32.8218848],[-83.685117,32.821576],[-83.6851231,32.8213829],[-83.685162,32.819812]]},"id":"8844c0b19dfffff-17dfb7b5757717dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a20c2661c-17feeded6aabeea9","8f44c0a20c71a91-139e68bd4ee3e068"]},"geometry":{"type":"LineString","coordinates":[[-83.69569700000001,32.856417],[-83.69624,32.856425],[-83.696599,32.856431],[-83.697309,32.856437],[-83.697619,32.856445],[-83.69773,32.856454],[-83.697799,32.856471],[-83.697833,32.85649],[-83.697866,32.856524],[-83.69788600000001,32.856546],[-83.697916,32.856606],[-83.69791500000001,32.856805],[-83.697896,32.857368],[-83.69786900000001,32.857833],[-83.69784700000001,32.858738],[-83.697822,32.859127]]},"id":"8844c0a20dfffff-17dee9d08861f9c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b18586552-139fc99d405b2a09","8f44c0b184b4d84-17beebebef41bc58"]},"geometry":{"type":"LineString","coordinates":[[-83.65719700000001,32.810205],[-83.657798,32.810214],[-83.65811000000001,32.810218],[-83.65814200000001,32.808546]]},"id":"8844c0b185fffff-13deea0f91621577"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7273011,32.871543800000005]},"id":"8f44c0a252cd4b1-13fee0c4d419929c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a25204160-179ea02f8a3cc8e2","8f44c0a252cd4b1-13fee0c4d419929c"]},"geometry":{"type":"LineString","coordinates":[[-83.72754,32.867089],[-83.727512,32.867246],[-83.72749900000001,32.867323],[-83.727469,32.867556],[-83.72746500000001,32.867911],[-83.72745,32.868181],[-83.727423,32.868259],[-83.727331,32.868318],[-83.726219,32.868823],[-83.725955,32.868944],[-83.725935,32.868955],[-83.725885,32.868986],[-83.72584,32.869042],[-83.72581000000001,32.869116000000005],[-83.725809,32.869157],[-83.725813,32.869175000000006],[-83.725845,32.86925],[-83.72627100000001,32.869943],[-83.726584,32.870438],[-83.726832,32.870844000000005],[-83.727207,32.87144],[-83.7273011,32.871543800000005]]},"id":"8844c0a253fffff-17f7f226236dab58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2316d4eb-17f666a787e4f177","8f44c0a231500e6-179eeddbfe55b77f"]},"geometry":{"type":"LineString","coordinates":[[-83.698676,32.885661],[-83.6981339,32.8856455],[-83.697484,32.885624],[-83.69713800000001,32.88561],[-83.69643500000001,32.885588000000006],[-83.69608720000001,32.8855583],[-83.6957249,32.8855208]]},"id":"8944c0a2317ffff-17d77a4274f61694"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8d373173-13d75590c5db38e5","8f44c0b8d3506a5-13f7578241fbf5e5"]},"geometry":{"type":"LineString","coordinates":[[-83.600818,32.854888],[-83.600786,32.85548],[-83.600763,32.855516],[-83.60069700000001,32.855537000000005],[-83.60002200000001,32.855586]]},"id":"8944c0b8d37ffff-13ff7625049f7c7b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a268630ec-1796fb4faa3467f3","8f44c0a2686855b-139ef9ec0498bf10"]},"geometry":{"type":"LineString","coordinates":[[-83.69021500000001,32.844171],[-83.690222,32.844594],[-83.69023,32.844698],[-83.690239,32.844731],[-83.690314,32.844745],[-83.69078400000001,32.844766]]},"id":"8944c0a2687ffff-13b77af28131846d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2686855b-139ef9ec0498bf10","8f44c0a26b02453-17b778412697cac4"]},"geometry":{"type":"LineString","coordinates":[[-83.69078400000001,32.844766],[-83.69145,32.844777],[-83.69148,32.844783],[-83.691502,32.844811],[-83.69151600000001,32.844856],[-83.69151500000001,32.845053],[-83.691467,32.847083500000004]]},"id":"8744c0a26ffffff-13bff864e4aa503a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a10d8e6-179f5277ae96463c","8f44c0b0a800755-1396bb32de2354d3"]},"geometry":{"type":"LineString","coordinates":[[-83.7134982,32.8206325],[-83.713559,32.820582],[-83.71362900000001,32.82051],[-83.71368600000001,32.820433],[-83.71373200000001,32.820348],[-83.71376500000001,32.820256],[-83.713784,32.820164000000005],[-83.7137905,32.8199972],[-83.713797,32.819619],[-83.7138073,32.8190888],[-83.71381550000001,32.8187116],[-83.7138194,32.8180925],[-83.71382460000001,32.8177159],[-83.71382600000001,32.817597],[-83.713836,32.817479],[-83.713859,32.817363],[-83.713902,32.817252],[-83.713965,32.817149],[-83.714045,32.817057000000005],[-83.71414,32.816975],[-83.71424900000001,32.816907],[-83.71436800000001,32.816856],[-83.7145131,32.816799],[-83.7146338,32.816755],[-83.715288,32.816528000000005],[-83.7159657,32.8162855],[-83.7164755,32.8161067]]},"id":"8744c0b0affffff-17f77045fc5c6c2b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary"},"subType":"road","connectors":["8f44c0b817008a8-17fff612ded89ad0","8f44c0b81015b95-13f7fdb9f2c6e4c9"]},"geometry":{"type":"LineString","coordinates":[[-83.5581537,32.8164709],[-83.557426,32.81676],[-83.55714,32.816893],[-83.55690100000001,32.817024],[-83.556824,32.817075],[-83.556658,32.817186],[-83.556505,32.817301],[-83.556284,32.817496000000006],[-83.55619300000001,32.817588],[-83.556004,32.817799],[-83.555895,32.817937],[-83.55569,32.818267],[-83.55522,32.819189],[-83.554916,32.819848],[-83.554823,32.820096],[-83.55473470000001,32.8203703]]},"id":"8744c0b81ffffff-17f7c2b52e5b05f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ead2821-13f7e63b068091bb","8f44c0b1e32a8e6-17fed8171094e634"]},"geometry":{"type":"LineString","coordinates":[[-83.65876630000001,32.8006881],[-83.65902100000001,32.800706000000005],[-83.659152,32.800706000000005],[-83.659187,32.800694],[-83.659205,32.800685],[-83.659233,32.80066],[-83.659261,32.800621],[-83.65928000000001,32.80057],[-83.65941000000001,32.800112],[-83.65952800000001,32.799669]]},"id":"8744c0b1effffff-1796d6dcd9f4185b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d22c66a-1797e4b4c373dbb9","8f44c0b1d3521a3-17f7646aacc2e8d6"]},"geometry":{"type":"LineString","coordinates":[[-83.69947400000001,32.814262],[-83.69956640000001,32.813755900000004],[-83.6995926,32.813579600000004]]},"id":"8944c0b1d23ffff-17bee48e52652c34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba8a8a90c-139ffa620d741638","8f44c0ba9095a55-13d76828630d5e50"]},"geometry":{"type":"LineString","coordinates":[[-83.619417,32.822946],[-83.619594,32.822761],[-83.620182,32.822087],[-83.62076300000001,32.821451],[-83.62084200000001,32.821334],[-83.620894,32.821180000000005],[-83.620928,32.820884],[-83.62093700000001,32.820011],[-83.620925,32.819176],[-83.62093,32.818922],[-83.620913,32.81857],[-83.62088100000001,32.818294],[-83.62084700000001,32.81814],[-83.620813,32.817988],[-83.620742,32.817796],[-83.620608,32.81758],[-83.620451,32.817408],[-83.62016100000001,32.81711],[-83.61991400000001,32.81682],[-83.619539,32.816223],[-83.619304,32.815838],[-83.619207,32.8157],[-83.61846100000001,32.814863],[-83.61788700000001,32.814256],[-83.617541,32.813826],[-83.617434,32.813692],[-83.61696500000001,32.813136],[-83.616668,32.812866],[-83.616106,32.812448],[-83.615007,32.811445],[-83.614203,32.810651],[-83.613331,32.809858000000006],[-83.613051,32.809624],[-83.61274900000001,32.809351],[-83.612384,32.809123],[-83.61215100000001,32.809004],[-83.611952,32.808923]]},"id":"8644c0bafffffff-13ff3bfa53f88e34"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1b82329e-13dfac65e558a596","8f44c0b1b803496-17bfeede69fb579a"]},"geometry":{"type":"LineString","coordinates":[[-83.66909700000001,32.826799],[-83.669572,32.826836],[-83.669824,32.826856],[-83.669897,32.826856],[-83.670005,32.826849],[-83.670095,32.826836],[-83.67013800000001,32.826816],[-83.670159,32.826766],[-83.67010900000001,32.826028]]},"id":"8944c0b1b83ffff-17d6bd0cf1befe61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1a31d698-13f7d9e4c018cadf","8f44c0b1a3a9860-13f6dc886e1c83e2"]},"geometry":{"type":"LineString","coordinates":[[-83.65039300000001,32.82282],[-83.650408,32.822799],[-83.65045,32.822770000000006],[-83.650484,32.822761],[-83.65147400000001,32.822792]]},"id":"8844c0b1a3fffff-13dfdb3cbaa97a5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b1ba94236-17ffae9fe3b28132","8f44c0b1ba82a20-13d7ec87a783cfa7"]},"geometry":{"type":"LineString","coordinates":[[-83.670055,32.834818],[-83.66932600000001,32.834843],[-83.66926500000001,32.834829],[-83.66923700000001,32.834811],[-83.66920800000001,32.834791],[-83.66919,32.834691],[-83.669201,32.834435],[-83.66919700000001,32.834297]]},"id":"8944c0b1babffff-1397edf5e4c9a547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a140b3533-17f7545b97bcc371","8f44c0a16b4cad8-139f627d631383f4"]},"geometry":{"type":"LineString","coordinates":[[-83.60131270000001,32.8858693],[-83.600193,32.886921],[-83.599698,32.88741],[-83.5991647,32.887956],[-83.5978613,32.8892076],[-83.59728750000001,32.8897844],[-83.59675770000001,32.890312200000004],[-83.5962769,32.890845500000005],[-83.5959132,32.8913072],[-83.5955242,32.8918662]]},"id":"8744c0a14ffffff-17975ba17aeba531"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a16b4cad8-139f627d631383f4","8f44c0a10c9cd81-13bf6c9d8fe69c56"]},"geometry":{"type":"LineString","coordinates":[[-83.5955242,32.8918662],[-83.59522340000001,32.8923853],[-83.5947038,32.8934068],[-83.59415080000001,32.8945851],[-83.5938146,32.8952971],[-83.5932236,32.896552],[-83.5919873,32.899215000000005],[-83.59185400000001,32.8994908],[-83.5914388,32.9003892],[-83.5913768,32.9005236]]},"id":"8644c0a17ffffff-179ff7a522fbf878"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b8a692c9c-17fff24f799e82b8","8f44c0b8a6a075e-13bfebe639973dc2"]},"geometry":{"type":"LineString","coordinates":[[-83.5392413,32.865731000000004],[-83.53905280000001,32.865357100000004],[-83.53880260000001,32.8651432],[-83.538543,32.864986200000004],[-83.5381797,32.8648467],[-83.5374321,32.8646723],[-83.5372868,32.8646723],[-83.5371466,32.864681000000004],[-83.53703700000001,32.8646923],[-83.53695450000001,32.8647377],[-83.53690780000001,32.8649034],[-83.536871,32.8652352],[-83.53661530000001,32.8664292]]},"id":"8544c0bbfffffff-13ffefc2b691b26b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b566b4b-139ffaf50224c4fc","8f44c0b8b0a4710-1397f4981be1765e"]},"geometry":{"type":"LineString","coordinates":[[-83.55928800000001,32.872231],[-83.5599183,32.872777400000004],[-83.560258,32.8730581],[-83.56048750000001,32.8732538],[-83.56071630000001,32.8734489],[-83.5618943,32.8744534]]},"id":"8744c0b8bffffff-17dff7c7168ee37d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b890f2586-13bf7a1f8fb1a004","8f44c0b8909e699-13bfc017ae685fe6"]},"geometry":{"type":"LineString","coordinates":[[-83.58584400000001,32.871856],[-83.585239,32.871570000000006],[-83.585138,32.871535],[-83.584946,32.871491],[-83.584826,32.871479],[-83.584511,32.871479],[-83.5842051,32.8714697],[-83.583399,32.871438000000005]]},"id":"8844c0b891fffff-13f7fd0bb5075265"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0aa414818d-17d7fdf5d0051e7e","8f44c0aa41718d1-13bfffc18ba711ba"]},"geometry":{"type":"LineString","coordinates":[[-83.5449507,32.8805215],[-83.545416,32.8801256],[-83.545488,32.880005100000005],[-83.54543770000001,32.8799113],[-83.5444282,32.8790452],[-83.5442273,32.878821900000005],[-83.54421520000001,32.8786367]]},"id":"8944c0aa417ffff-179fde085ab29698"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","flags":[{"applyAt":[351.0,460.72],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa405dae5-17f7e185d8e4900e","8f44c0aa46728c0-139ff02b24a9e163"]},"geometry":{"type":"LineString","coordinates":[[-83.5434915,32.883405800000006],[-83.5430118,32.8838212],[-83.54285820000001,32.8839564],[-83.54271080000001,32.8840969],[-83.54188690000001,32.884876000000006],[-83.5416546,32.8850807],[-83.54141,32.8852957],[-83.5411959,32.8854817],[-83.54092030000001,32.885709],[-83.54004760000001,32.886369800000004],[-83.53749260000001,32.888213300000004]]},"id":"8744c0aa4ffffff-17f7f8aff12cec61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[116.97,286.06],"value":"paved"}]},"subType":"road","connectors":["8f44c0b890f2586-13bf7a1f8fb1a004","8f44c0b89700210-17ff7ef4d6f5d173"]},"geometry":{"type":"LineString","coordinates":[[-83.58584400000001,32.871856],[-83.58545000000001,32.872422],[-83.58527500000001,32.872642],[-83.5851767,32.872746400000004],[-83.5838643,32.8737943]]},"id":"8744c0b89ffffff-17b7fc61538aec1f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[629.59,936.95],"value":"paved"}]},"subType":"road","connectors":["8f44c0aa5c73c8d-17d7e2cecc08de37","8f44c0aa5830933-13f7f18a95986647"]},"geometry":{"type":"LineString","coordinates":[[-83.56314470000001,32.888125200000005],[-83.5625892,32.8886473],[-83.5617416,32.889314],[-83.55835660000001,32.8921113],[-83.55823500000001,32.8920339],[-83.5575476,32.8914403],[-83.55611160000001,32.890182],[-83.5560724,32.8901246]]},"id":"8744c0aa5ffffff-1397fa35078502b3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a165b6603-17dfe28d2a61634a","8f44c0b8b2eb590-1797b3d0edfc8d33"]},"geometry":{"type":"LineString","coordinates":[[-83.5692846,32.8866804],[-83.5695125,32.8869192],[-83.5695488,32.887009500000005],[-83.56953440000001,32.887132900000005],[-83.5694924,32.8871859],[-83.5691984,32.8873009],[-83.56910020000001,32.887312800000004],[-83.5683681,32.8873302],[-83.5678298,32.887331100000004],[-83.5676361,32.8873124],[-83.56748040000001,32.8872804],[-83.5673756,32.8872244],[-83.56737310000001,32.887143900000005],[-83.5675542,32.886950500000005],[-83.567921,32.8866494],[-83.5683719,32.886365600000005],[-83.5687666,32.8861465]]},"id":"8444c0bffffffff-179ff4b203022d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,437.83],"value":"paved"}],"flags":[{"applyAt":[62.94,192.01],"values":["isBridge"]},"isPrivate"]},"subType":"road","connectors":["8f44c0a05312465-17f7f9b27e6d37c1","8f44c0a052ac06e-17fefb97a004de6f"]},"geometry":{"type":"LineString","coordinates":[[-83.69087610000001,32.9120858],[-83.6904801,32.912544600000004],[-83.68967140000001,32.9134875],[-83.6895777,32.913607400000004],[-83.6895001,32.913850100000005],[-83.68947990000001,32.9139975],[-83.6895001,32.914152],[-83.68952780000001,32.914293400000005],[-83.689617,32.9145613],[-83.68973120000001,32.914841100000004],[-83.6898986,32.9151621],[-83.6900998,32.9155784]]},"id":"8844c0a053fffff-13f77bf1942be9e9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[451.6,529.96],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30db0641-13dff3f178b2df38","8f44c0a36aa472a-179fdcba6ea67979"]},"geometry":{"type":"LineString","coordinates":[[-83.62409860000001,32.8437661],[-83.6245835,32.8443549],[-83.62487700000001,32.844758],[-83.6252192,32.845286900000005],[-83.625718,32.846058],[-83.6264513,32.8473144],[-83.6266267,32.847551800000005],[-83.6269152,32.8479023],[-83.62725300000001,32.848275],[-83.6276969,32.8487598]]},"id":"8744c0a36ffffff-17d7b86aff4e68cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","flags":[{"applyAt":[0.0,337.14],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b9dcaa-13bfbd78ef2351ee","8f44c0a3684d754-17bff802a633b412"]},"geometry":{"type":"LineString","coordinates":[[-83.6237938,32.842791500000004],[-83.62587900000001,32.840313],[-83.62603100000001,32.840131]]},"id":"8844c0a36bfffff-13ff7abd9df66991"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[304.76,349.94],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b96480-13df214816c67e7d","8f44c0a36c69574-1397ed380e1ee9b9"]},"geometry":{"type":"LineString","coordinates":[[-83.62223350000001,32.841616200000004],[-83.621307,32.840876],[-83.621026,32.840668],[-83.620727,32.84046],[-83.62036,32.84022],[-83.61974830000001,32.8398476],[-83.6193449,32.839624],[-83.6187314,32.839298400000004],[-83.61811820000001,32.8389954],[-83.617918,32.838881],[-83.617344,32.838611]]},"id":"8744c0a36ffffff-17ffb7140bd9ce1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[1437.22,1614.67],"values":["isBridge"]},{"applyAt":[2261.89,2417.71],"values":["isBridge"]},{"applyAt":[3417.32,3535.03],"values":["isBridge"]},{"applyAt":[4160.54,4233.13],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[651.7,5920.6],"maxSpeed":[70,"mph"]},{"applyAt":[0.0,651.7],"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8535cd53-139f9caef15c4a49","8f44c0a36c69574-1397ed380e1ee9b9"]},"geometry":{"type":"LineString","coordinates":[[-83.617344,32.838611],[-83.615926,32.838005],[-83.61533200000001,32.837708],[-83.614731,32.837372],[-83.614092,32.836951],[-83.613842,32.836778],[-83.613545,32.836548],[-83.613206,32.836273000000006],[-83.6118108,32.835119],[-83.60953040000001,32.8332573],[-83.605818,32.8301621],[-83.6044962,32.8290154],[-83.6025221,32.8273565],[-83.60214450000001,32.8270825],[-83.6015007,32.826642500000005],[-83.60103720000001,32.8263035],[-83.60052610000001,32.825941900000004],[-83.5992906,32.8251934],[-83.59791270000001,32.8244056],[-83.59596470000001,32.823313500000005],[-83.5890675,32.819359500000004],[-83.5880253,32.818766100000005],[-83.5824978,32.815599500000005],[-83.5818751,32.815209700000004],[-83.58151500000001,32.8149752],[-83.5811741,32.8147484],[-83.58079980000001,32.8144628],[-83.580522,32.814223000000005],[-83.57986700000001,32.81369],[-83.57923100000001,32.813105],[-83.578642,32.812519],[-83.57806500000001,32.811874],[-83.577771,32.811512],[-83.577183,32.810715],[-83.57356300000001,32.805507],[-83.57271300000001,32.804284],[-83.57225740000001,32.8036143],[-83.571917,32.803114],[-83.5716881,32.8027865]]},"id":"8544c0bbfffffff-13ff778bddf4a9fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.571607,32.8032604]},"id":"8f44c0b85358892-13b7dce1a9fb1680"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[465.16,544.06],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b85074d9b-13dfa8e33fcaa2ad","8f44c0b85358892-13b7dce1a9fb1680"]},"geometry":{"type":"LineString","coordinates":[[-83.56668930000001,32.7961584],[-83.567127,32.796765],[-83.56834,32.798505],[-83.56920450000001,32.7997749],[-83.5696358,32.800386],[-83.571607,32.8032604]]},"id":"8744c0b85ffffff-1397b2dc53490b43"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","flags":[{"applyAt":[405.1,532.68],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0ba34eed43-13bfb5390b4c8ce9","8f44c0ba277496e-13dfce942391911d"]},"geometry":{"type":"LineString","coordinates":[[-83.5616368,32.7762394],[-83.56143700000001,32.776062200000005],[-83.5610619,32.7757359],[-83.56060280000001,32.775347100000005],[-83.56036830000001,32.7751504],[-83.56006590000001,32.774931200000005],[-83.55983640000001,32.7747936],[-83.55947970000001,32.774594400000005],[-83.55903400000001,32.774355],[-83.5583055,32.7739385],[-83.5571664,32.7733082],[-83.556921,32.773169],[-83.55682200000001,32.773106],[-83.55668200000001,32.773001],[-83.556556,32.772892],[-83.556306,32.772644],[-83.556151,32.772453],[-83.556037,32.772292],[-83.555895,32.772052],[-83.5557519,32.7717489],[-83.555485,32.770892],[-83.55521900000001,32.769987],[-83.555054,32.769486],[-83.554845,32.768967],[-83.554705,32.768634],[-83.554275,32.767547],[-83.554056,32.767030000000005],[-83.55384500000001,32.766509],[-83.553695,32.766177],[-83.55358700000001,32.765903],[-83.55345530000001,32.7655587],[-83.553352,32.765335],[-83.55323170000001,32.765064],[-83.5531383,32.764890900000005],[-83.552997,32.764654],[-83.552875,32.764491],[-83.5526703,32.7642394],[-83.55199400000001,32.763500900000004],[-83.5516377,32.763120900000004],[-83.55133740000001,32.762851000000005],[-83.5512788,32.7627984],[-83.55125100000001,32.762776800000005]]},"id":"8644c0ba7ffffff-1397c344c97ebf2d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0bb50d9191-1397f7a4fc4365e3","8f44c0ba277496e-13dfce942391911d"]},"geometry":{"type":"LineString","coordinates":[[-83.55125100000001,32.762776800000005],[-83.5510113,32.762590800000005],[-83.55062790000001,32.7623198],[-83.5500722,32.761987000000005],[-83.5497917,32.7618402],[-83.54930080000001,32.761598500000005],[-83.5489007,32.761349200000005],[-83.5483762,32.7610187],[-83.5474695,32.7603883],[-83.54716970000001,32.760167100000004],[-83.54657200000001,32.7598083],[-83.5461516,32.7595844],[-83.54549200000001,32.7592913],[-83.54489140000001,32.75898],[-83.5437857,32.7583836],[-83.5432177,32.7580618],[-83.54273,32.75771],[-83.54234720000001,32.7573825],[-83.5420555,32.7570842],[-83.541144,32.756041],[-83.54062300000001,32.755390000000006],[-83.54036,32.754959],[-83.5402306,32.7547504],[-83.54012800000001,32.754456000000005],[-83.5400601,32.753904],[-83.53999200000001,32.753304],[-83.539962,32.752970000000005],[-83.539889,32.752647200000006],[-83.53974260000001,32.752087700000004],[-83.5395903,32.7516541],[-83.5394378,32.751459000000004],[-83.53929600000001,32.751318000000005],[-83.53871740000001,32.7507314],[-83.538179,32.750243000000005],[-83.5379183,32.749991],[-83.53769600000001,32.749704],[-83.537414,32.749246],[-83.5371633,32.7487778],[-83.5368835,32.748510800000005],[-83.53655,32.748237],[-83.53572460000001,32.747635200000005],[-83.5344305,32.7466817]]},"id":"8544c0bbfffffff-17bfe49855fb452d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","flags":[{"applyAt":[192.57,232.21],"values":["isBridge"]},{"applyAt":[306.6,347.84],"values":["isBridge"]},{"applyAt":[558.04,590.97],"values":["isBridge"]},{"applyAt":[924.08,963.51],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,347.84],"maxSpeed":[50,"mph"]},{"applyAt":[347.84,1383.4],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b1113526a-13ffe5fab0befaf4","8f44c0b15770593-179fbfe5ea049b9c"]},"geometry":{"type":"LineString","coordinates":[[-83.65963090000001,32.770809400000005],[-83.659676,32.770542],[-83.65978600000001,32.770024],[-83.65992100000001,32.76948],[-83.6600068,32.769102700000005],[-83.6600397,32.7689705],[-83.6600471,32.7689405],[-83.66008000000001,32.7688082],[-83.6600938,32.7687529],[-83.6602692,32.7680987],[-83.6603664,32.767736],[-83.6608398,32.7658833],[-83.6609146,32.765593200000005],[-83.66094000000001,32.765495],[-83.66099200000001,32.765293],[-83.661123,32.764755],[-83.661201,32.764488],[-83.661528,32.763241],[-83.66156000000001,32.76307],[-83.66161740000001,32.762651000000005],[-83.661626,32.762542],[-83.661641,32.762296],[-83.661665,32.761744],[-83.66173900000001,32.760342],[-83.661772,32.760032],[-83.66181200000001,32.759774],[-83.661871,32.759498],[-83.66201500000001,32.758961],[-83.66212180000001,32.7585427]]},"id":"8644c0b17ffffff-179ec29eecc2e809"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36800da2-17f7f0eed5e07e2b","8f44c0a3681cc73-17ffa2340de2388f"]},"geometry":{"type":"LineString","coordinates":[[-83.62185600000001,32.837169],[-83.62210400000001,32.836844],[-83.62226600000001,32.8366616],[-83.6223763,32.8365373]]},"id":"8944c0a3683ffff-17b7319512584368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3583652a-13bfbf0a56d39d46","8f44c0a3599db5b-13fec27c67b1d06b"]},"geometry":{"type":"LineString","coordinates":[[-83.6624731,32.8460752],[-83.6617442,32.8461294],[-83.6610618,32.8461696]]},"id":"8944c0a359bffff-13def0c34480875e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3670c768-13b7f57bfab0fc2c","8f44c0a3672b6cb-13b73490c23f44ff"]},"geometry":{"type":"LineString","coordinates":[[-83.61433480000001,32.8480803],[-83.6142495,32.8480822],[-83.61395850000001,32.8480828]]},"id":"8a44c0a3670ffff-13b775065c7c859b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[3967.72,4319.62],"value":"paved"}],"flags":[{"applyAt":[63.56,136.66],"values":["isBridge"]},{"applyAt":[2738.87,2808.19],"values":["isBridge"]},{"applyAt":[3898.89,3967.72],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1cce3861-1397b79c986be4b0","8f44c0b00122a09-13ff523b8785f1db"]},"geometry":{"type":"LineString","coordinates":[[-83.6720695,32.785595300000004],[-83.67262260000001,32.785263400000005],[-83.67323160000001,32.7848513],[-83.6767011,32.782564],[-83.67757250000001,32.782051100000004],[-83.678365,32.781547],[-83.67915400000001,32.781039],[-83.6869216,32.7760042],[-83.6882156,32.7751692],[-83.6953201,32.7706272],[-83.6959101,32.770250000000004],[-83.70016670000001,32.7674688],[-83.70051000000001,32.767243400000005],[-83.70075130000001,32.7670873],[-83.70100020000001,32.7669072],[-83.70138340000001,32.766621],[-83.70193540000001,32.7662033],[-83.70246680000001,32.765753000000004],[-83.702911,32.765391],[-83.703137,32.765192],[-83.703551,32.764802],[-83.704053,32.76429],[-83.7045451,32.7637173],[-83.7047718,32.763452],[-83.70497950000001,32.7632168],[-83.70528300000001,32.7628513],[-83.7057049,32.762318],[-83.70614590000001,32.7617333],[-83.7070408,32.760564800000004]]},"id":"8544c0b3fffffff-13befb810900c2ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","flags":[{"applyAt":[407.51,480.84],"values":["isBridge"]},{"applyAt":[736.3,800.4],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c4e640e-1797f563be78fde2","8f44c0b1cce2255-1397a89b07e1be1a"]},"geometry":{"type":"LineString","coordinates":[[-83.6716624,32.7855706],[-83.6706005,32.7862613],[-83.67020860000001,32.7865296],[-83.669742,32.786872],[-83.6693626,32.7871736],[-83.66903110000001,32.7874646],[-83.6687005,32.7877924],[-83.6684587,32.788038400000005],[-83.6680145,32.7885829],[-83.66775340000001,32.7889418],[-83.66746400000001,32.7894104],[-83.6672242,32.7898737],[-83.6669411,32.7905168],[-83.66687040000001,32.790667400000004],[-83.666644,32.791212800000004],[-83.66642610000001,32.7917367]]},"id":"8744c0b1cffffff-17bebffd0a61af5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","flags":[{"applyAt":[1011.7,1073.48],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a96a315-139fee4f4be3cb34","8f44c0b1eb72a5c-17feb9f652d3901a"]},"geometry":{"type":"LineString","coordinates":[[-83.6645531,32.7951554],[-83.66439030000001,32.7953309],[-83.6642374,32.795498300000006],[-83.6640658,32.795668],[-83.6638865,32.7958335],[-83.6636538,32.7960374],[-83.66332750000001,32.796301],[-83.66299310000001,32.7965667],[-83.6626445,32.796846900000006],[-83.66240850000001,32.797038],[-83.66201450000001,32.7973809],[-83.6616046,32.7977714],[-83.6613245,32.798065],[-83.66113320000001,32.798276800000004],[-83.6610325,32.798397200000004],[-83.66080790000001,32.7986658],[-83.6604434,32.799150000000004],[-83.66014940000001,32.799593800000004],[-83.6598577,32.8000798],[-83.6597023,32.800367],[-83.6594934,32.8008083],[-83.65923380000001,32.801432600000005],[-83.6590615,32.8019015],[-83.6587803,32.8026817],[-83.6585821,32.803213],[-83.6583999,32.803727200000004],[-83.65786150000001,32.8052051],[-83.6575201,32.8061354],[-83.6572381,32.8069186],[-83.6567179,32.808351800000004],[-83.65647820000001,32.8090453],[-83.6563655,32.8094099],[-83.6562188,32.8099574]]},"id":"8644c0b1fffffff-13bef61d9f63b674"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,121.63],"value":"paved"}],"flags":[{"applyAt":[24.75,107.12],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[107.12,121.63],"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b4ac424-13b7f5d1023568c0","8f44c0b1b4847a6-13b7f8fceed91a07"]},"geometry":{"type":"LineString","coordinates":[[-83.65184500000001,32.832751],[-83.6521093,32.8327467],[-83.652989,32.8327553],[-83.65314400000001,32.832755]]},"id":"8944c0b1b4bffff-13b7f766f5c47b4b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,18.51],"value":"paved"}],"flags":[{"applyAt":[18.51,80.7],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a9ac11-17fff87334bef54a","8f44c0a34a99861-1797e5b34e8d59b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6455117,32.840830700000005],[-83.64570230000001,32.8408752],[-83.6463425,32.8410249],[-83.64663800000001,32.841094000000005]]},"id":"8a44c0a34a9ffff-17d7f71335e36e01"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a344cb8d5-13d7cad94beeece1","8f44c0a344de98a-17970ea8e9e1bff6"]},"geometry":{"type":"LineString","coordinates":[[-83.629861,32.841064],[-83.630599,32.841498],[-83.63098570000001,32.8417468],[-83.631422,32.842022]]},"id":"8944c0a344fffff-13bf6cbea22aae58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","flags":[{"applyAt":[200.63,275.44],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b852e3295-13ffe3e8ee88d7fe","8f44c0b8531a0ec-17d7b424f8303347"]},"geometry":{"type":"LineString","coordinates":[[-83.5686321,32.8012619],[-83.56846200000001,32.801929],[-83.56842800000001,32.802256],[-83.568421,32.8025],[-83.56846870000001,32.803052900000004],[-83.568517,32.8035231],[-83.5685354,32.8037251],[-83.56857070000001,32.8041689],[-83.568669,32.805169],[-83.5687065,32.8055729],[-83.56872820000001,32.8058076]]},"id":"8844c0b853fffff-13dfa456faa2d34f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1126e230-17b6b54d428a8540","8f44c0b1135e568-1396b89c2f01a01e"]},"geometry":{"type":"LineString","coordinates":[[-83.66646200000001,32.784617600000004],[-83.66628850000001,32.784314900000005],[-83.6660856,32.7839608],[-83.66554400000001,32.783025],[-83.665107,32.782288]]},"id":"8844c0b113fffff-13deb6f26016fdc3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a287ad-139efd7ed3d90223","8f44c0b04a2a725-13bf6e870ed21d7c"]},"geometry":{"type":"LineString","coordinates":[[-83.72166560000001,32.744283800000005],[-83.72194040000001,32.7442417],[-83.72208830000001,32.744215700000005]]},"id":"8a44c0b04a2ffff-13b6ee02d6468114"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36811304-17b762b103b55705","8f44c0a368ad268-17dfe406e92a9b8c"]},"geometry":{"type":"LineString","coordinates":[[-83.621656,32.837047000000005],[-83.621504,32.837224],[-83.6213359,32.837426400000005],[-83.6212,32.8375926],[-83.621109,32.837702]]},"id":"8944c0a3683ffff-17ff635cc50ed624"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36973961-13bf39b023a50de1","8f44c0a369664c8-13bf97fea2c47e4a"]},"geometry":{"type":"LineString","coordinates":[[-83.62534380000001,32.8351938],[-83.62541080000001,32.8351656],[-83.62546130000001,32.835146200000004],[-83.6255378,32.8351138],[-83.6256623,32.8350494],[-83.62581150000001,32.8349654],[-83.6258856,32.8349051],[-83.6259239,32.834875600000004],[-83.6260374,32.8347848]]},"id":"8944c0a3697ffff-13bfd8cf50d5de26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,383.07],"value":"paved"},{"applyAt":[481.12,1011.25],"value":"paved"}],"flags":[{"applyAt":[383.07,481.12],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b08576492-17f63f605ff088e6","8f44c0b0e3288e4-13dff9322573c11d"]},"geometry":{"type":"LineString","coordinates":[[-83.7238494,32.8061661],[-83.7241604,32.806811100000004],[-83.7243292,32.8071575],[-83.72481060000001,32.8081534],[-83.7251428,32.8088339],[-83.7253977,32.8093632],[-83.7257962,32.810180800000005],[-83.72605680000001,32.8107199],[-83.72707790000001,32.812842700000004],[-83.72728740000001,32.8132777],[-83.7278715,32.8146275]]},"id":"8644c0b0fffffff-179ee439761fdef6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b08576492-17f63f605ff088e6","8f44c0b0b98125d-1797d50cce4b91e8"]},"geometry":{"type":"LineString","coordinates":[[-83.7278715,32.8146275],[-83.72822880000001,32.8155598],[-83.7285226,32.816392],[-83.7287261,32.817038000000004],[-83.729264,32.8190511],[-83.72956,32.820249000000004],[-83.730525,32.824130700000005],[-83.7307419,32.825007500000005],[-83.7313008,32.8272538],[-83.7315803,32.828377],[-83.7317227,32.828934100000005],[-83.73187580000001,32.829493400000004],[-83.7321012,32.830236400000004]]},"id":"8644c0b0fffffff-13f73a007a2e9873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,387.1],"value":"paved"},{"applyAt":[483.4,974.46],"value":"paved"}],"flags":[{"applyAt":[387.1,483.4],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3250db-17f7a9d0f08efc5d","8f44c0b085216d2-13bf203506f984a7"]},"geometry":{"type":"LineString","coordinates":[[-83.7275312,32.8133106],[-83.727192,32.8125999],[-83.72696900000001,32.8121395],[-83.72669230000001,32.8115696],[-83.726482,32.811134700000004],[-83.7259665,32.810079900000005],[-83.72558240000001,32.8092744],[-83.7242933,32.8066136],[-83.7235953,32.805176800000005]]},"id":"8644c0b0fffffff-13d6b501a04f3476"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,4009.38],"value":"paved"},{"applyAt":[5060.33,5426.02],"value":"paved"}],"flags":[{"applyAt":[4009.38,4105.14],"values":["isBridge"]},{"applyAt":[4592.69,4695.81],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e3250db-17f7a9d0f08efc5d","8f44c0b0080e0c2-17d7c88fbf6daa08"]},"geometry":{"type":"LineString","coordinates":[[-83.7235953,32.805176800000005],[-83.72336340000001,32.8046971],[-83.722785,32.8034977],[-83.7222687,32.8024282],[-83.7220724,32.8019909],[-83.7219463,32.8017113],[-83.72183100000001,32.801429500000005],[-83.72172330000001,32.8011483],[-83.7215264,32.8005772],[-83.7214179,32.8002188],[-83.7213201,32.7998604],[-83.7212087,32.799398100000005],[-83.7210931,32.798843600000005],[-83.7210307,32.798454500000005],[-83.7209661,32.7979815],[-83.72092020000001,32.797544],[-83.7208634,32.796992800000005],[-83.7206314,32.7947914],[-83.7205325,32.7938154],[-83.7204734,32.7932611],[-83.7203987,32.792540100000004],[-83.7201953,32.7905849],[-83.7200514,32.7892059],[-83.7200114,32.7888255],[-83.71996610000001,32.788445100000004],[-83.71990240000001,32.788019000000006],[-83.71983370000001,32.7876938],[-83.7197299,32.787299000000004],[-83.71958810000001,32.786860600000004],[-83.7194441,32.7865094],[-83.719299,32.7861976],[-83.7191439,32.785899300000004],[-83.7189036,32.785482800000004],[-83.7186365,32.785062700000005],[-83.7181779,32.7843356],[-83.7177941,32.7837246],[-83.7168755,32.7822681],[-83.7166186,32.7818568],[-83.7161791,32.7811595],[-83.7154866,32.7800493],[-83.7137702,32.7773301],[-83.7127248,32.7756733],[-83.7123657,32.775103200000004],[-83.711742,32.774109700000004],[-83.7115802,32.773830100000005],[-83.71145870000001,32.7735842],[-83.7113001,32.7732405],[-83.711183,32.7729099],[-83.71107,32.7725205],[-83.71099480000001,32.7721688],[-83.7109537,32.7719213],[-83.71092370000001,32.7716103],[-83.71090670000001,32.7712049],[-83.7109186,32.7703415],[-83.71094910000001,32.7659453],[-83.7109537,32.765015500000004],[-83.71096320000001,32.761728500000004],[-83.71099530000001,32.759282500000005],[-83.7110021,32.758431200000004]]},"id":"8544c0b3fffffff-17bebbbe9ec10623"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,297.29],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b5625905c-17dfe1e0e420ac23","8f44c0b5620bccd-1797f64834dfe7b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7512573,32.8637985],[-83.75143750000001,32.8640205],[-83.7516257,32.8642425],[-83.75189420000001,32.8645506],[-83.75217620000001,32.864851900000005],[-83.7524559,32.865149100000004],[-83.752509,32.865204],[-83.752622,32.865322],[-83.752734,32.865451],[-83.7527817,32.8655105],[-83.752824,32.865570000000005],[-83.7528613,32.865631],[-83.752896,32.865692],[-83.75297400000001,32.865844],[-83.753061,32.865994]]},"id":"8844c0b563fffff-13b7f401475783b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b50513768-17b7fe7e22600506","8f44c0b505a098a-17b5f142b5f29f41"]},"geometry":{"type":"LineString","coordinates":[[-83.75331410000001,32.8665375],[-83.75333590000001,32.8665752],[-83.7534325,32.866683800000004],[-83.75353820000001,32.8667832],[-83.753652,32.8668849],[-83.75381900000001,32.867015800000004],[-83.7539701,32.8671184],[-83.75413420000001,32.867213500000005],[-83.75438220000001,32.8673336],[-83.75444780000001,32.867365400000004]]},"id":"8844c0b505fffff-17d5fff6a1b33bd4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","flags":[{"applyAt":[83.14,179.34],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b8d16c352-17f7da52b071b24e","8f44c0b8d102c5b-13df658663260520"]},"geometry":{"type":"LineString","coordinates":[[-83.59428100000001,32.84572],[-83.5950572,32.8460843],[-83.59541800000001,32.846247000000005],[-83.5959636,32.8464931],[-83.59849100000001,32.84762],[-83.598555,32.84765],[-83.5988693,32.8478045]]},"id":"8744c0b8dffffff-17ff7fecd1469c25"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","restrictions":{"speedLimits":[{"applyAt":[0.0,87.5],"maxSpeed":[50,"mph"]},{"applyAt":[87.5,291.67],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b8db89225-13d7d35624fad1fc","8f44c0b8d16c352-17f7da52b071b24e"]},"geometry":{"type":"LineString","coordinates":[[-83.5988693,32.8478045],[-83.5996916,32.8481797],[-83.600599,32.848554],[-83.60066900000001,32.848584],[-83.60098500000001,32.848675],[-83.6012558,32.848735000000005],[-83.6015663,32.8487736],[-83.601731,32.848780000000005]]},"id":"8844c0b8dbfffff-13dff6e4550f3cec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[1035.4,1080.03],"value":"paved"}],"flags":[{"applyAt":[1035.4,1080.03],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a04d741ad-139eef6f2b3145d9","8f44c0a31849db1-1396f2b3374ec24f"]},"geometry":{"type":"LineString","coordinates":[[-83.6688654,32.881627],[-83.663505,32.87527],[-83.6624438,32.8740243],[-83.66216390000001,32.8736985],[-83.6613942,32.8727692],[-83.6609741,32.872221100000004]]},"id":"8544c0a3fffffff-1797f91908aa01aa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[93.56,1505.17],"value":"paved"}],"flags":[{"applyAt":[1364.39,1505.18],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,93.56],"maxSpeed":[70,"mph"]},{"applyAt":[1232.27,1505.17],"maxSpeed":[50,"mph"]},{"applyAt":[93.56,1232.27],"maxSpeed":[60,"mph"]},{"applyAt":[1505.17,1577.27],"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a35691669-13d6df99b1f8dd67","8f44c0a31849db1-1396f2b3374ec24f"]},"geometry":{"type":"LineString","coordinates":[[-83.6609741,32.872221100000004],[-83.6607644,32.871972500000005],[-83.6603674,32.8715509],[-83.6598072,32.8709002],[-83.65935470000001,32.870436000000005],[-83.6590005,32.870079700000005],[-83.65711300000001,32.868325],[-83.653768,32.86526],[-83.65227900000001,32.863888],[-83.6520849,32.8637551],[-83.6518166,32.8635552],[-83.6516326,32.863427800000004],[-83.65140770000001,32.8632901],[-83.6511686,32.863154900000005],[-83.6507402,32.8629422],[-83.6503713,32.862790000000004],[-83.64983210000001,32.8625746],[-83.64913650000001,32.862295200000005]]},"id":"8644c0a37ffffff-17ffd0707ae9afbc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,1065.73],"value":"paved"}],"flags":[{"applyAt":[398.75,507.21],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a05145088-17d6f80dd5011f0f","8f44c0a05c008db-1796eb559bd1fc3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6836519,32.8998766],[-83.6839363,32.900203000000005],[-83.684893,32.901404],[-83.68519500000001,32.90175],[-83.685567,32.902158],[-83.68582400000001,32.902422],[-83.686189,32.902760300000004],[-83.686672,32.903222],[-83.68684,32.903373],[-83.6869743,32.903479000000004],[-83.68710700000001,32.903602],[-83.687489,32.903911],[-83.68773,32.904097],[-83.68800900000001,32.904306000000005],[-83.68857200000001,32.904705],[-83.688918,32.904939],[-83.6915491,32.9067087]]},"id":"8744c0a05ffffff-139fb23ee1e79395"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a893b4e-13d7f5114e96e2a1","8f44c0a05145088-17d6f80dd5011f0f"]},"geometry":{"type":"LineString","coordinates":[[-83.6915491,32.9067087],[-83.69242600000001,32.907302],[-83.693988,32.908346],[-83.698093,32.911107],[-83.698768,32.911581000000005],[-83.69919800000001,32.911904],[-83.699751,32.912354],[-83.70019500000001,32.912747],[-83.704949,32.917059],[-83.70521570000001,32.917291],[-83.70552020000001,32.9175327],[-83.7058796,32.9177915]]},"id":"8544c0a3fffffff-17bef621aae02edb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[251.2,329.4],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad5d19a-17fe7919838e172d","8f44c0a2a85a124-13b756b2fcf5b1f7"]},"geometry":{"type":"LineString","coordinates":[[-83.7117649,32.919989300000005],[-83.7111333,32.9197416],[-83.70933090000001,32.9190321],[-83.7085739,32.9187328],[-83.70798900000001,32.918483],[-83.707407,32.91825],[-83.707052,32.918087],[-83.70679000000001,32.917957],[-83.706432,32.917761],[-83.706086,32.917551],[-83.705752,32.917327],[-83.70550700000001,32.917146],[-83.705211,32.91691],[-83.704919,32.916656],[-83.704228,32.916013]]},"id":"8744c0a2affffff-13fed048e3f039a9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,1588.44],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a05176476-17ff7bcf3f893da2","8f44c0a2ad5d19a-17fe7919838e172d"]},"geometry":{"type":"LineString","coordinates":[[-83.704228,32.916013],[-83.702307,32.914299],[-83.700322,32.912512],[-83.699916,32.912157],[-83.699455,32.911779],[-83.699003,32.911436],[-83.69859100000001,32.911136],[-83.696959,32.910037],[-83.69489700000001,32.908655],[-83.69163130000001,32.906455900000005],[-83.6900109,32.9053684]]},"id":"8544c0a3fffffff-13f77a07b4c4faea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[306.32,389.07],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab1070e-13dff11ce7830fba","8f44c0a2a893b4e-13d7f5114e96e2a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7058796,32.9177915],[-83.7063511,32.9180925],[-83.7065987,32.918234600000005],[-83.70688940000001,32.918391],[-83.7071198,32.918507500000004],[-83.70749070000001,32.9186791],[-83.70795170000001,32.9188649],[-83.70871100000001,32.919161],[-83.7095128,32.9194763],[-83.70963400000001,32.919522],[-83.712186,32.920526],[-83.712441,32.920633],[-83.714053,32.9212635]]},"id":"8744c0a2affffff-17deeb3232e5c979"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[459.84,512.56],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab1070e-13dff11ce7830fba","8f44c0a28660025-17deb13a0265f887"]},"geometry":{"type":"LineString","coordinates":[[-83.714053,32.9212635],[-83.716527,32.922234],[-83.7185094,32.923014300000006],[-83.7190202,32.9232153],[-83.71965200000001,32.923464],[-83.72029400000001,32.923715],[-83.725457,32.92575],[-83.7262293,32.926057],[-83.72711360000001,32.9264043]]},"id":"8644c0a2fffffff-1396b12ae90d9a96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,149.05],"value":"paved"}],"flags":[{"applyAt":[72.81,149.05],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bc94aab-13d6ff2581d59783","8f44c0b1bca3725-13d7fb42f5fba823"]},"geometry":{"type":"LineString","coordinates":[[-83.655876,32.8258151],[-83.65611700000001,32.825814],[-83.6566536,32.8258135],[-83.65746730000001,32.825838700000006]]},"id":"8944c0b1bcbffff-13dfed34386b62a7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","flags":[{"applyAt":[623.53,865.73],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a30d8529d-17b7d12c0d6e7859","8f44c0a30134b71-13ff808c851fde07"]},"geometry":{"type":"LineString","coordinates":[[-83.628832,32.849742],[-83.63058000000001,32.851247],[-83.632368,32.852784],[-83.632962,32.853296],[-83.63302300000001,32.853349],[-83.6333159,32.8535862],[-83.6335152,32.8537394],[-83.6338944,32.8540075],[-83.63427300000001,32.854242],[-83.63444100000001,32.854348],[-83.634685,32.854483],[-83.634843,32.854567],[-83.6356408,32.8549784]]},"id":"8744c0a30ffffff-13ffe91aeab64b31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","flags":[{"applyAt":[395.0,470.1],"values":["isBridge"]},{"applyAt":[1531.85,1611.49],"values":["isBridge"]},{"applyAt":[4208.7,4281.5],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0089a2ab-13b7541c757ad73e","8f44c0b1cce2255-1397a89b07e1be1a"]},"geometry":{"type":"LineString","coordinates":[[-83.70627130000001,32.7596116],[-83.7048702,32.761494500000005],[-83.7040319,32.7626292],[-83.7036058,32.7632028],[-83.7032238,32.763702900000006],[-83.70294360000001,32.764063],[-83.7025663,32.7645196],[-83.7021843,32.76496],[-83.7018603,32.765306],[-83.70145550000001,32.7657284],[-83.70122900000001,32.7659619],[-83.70081590000001,32.766347],[-83.70034860000001,32.7667774],[-83.69987730000001,32.7671828],[-83.69937080000001,32.767606],[-83.6989305,32.767949300000005],[-83.69845450000001,32.7682978],[-83.6977868,32.768757],[-83.69578890000001,32.7700374],[-83.69511580000001,32.7704759],[-83.69109440000001,32.773049],[-83.685811,32.776429],[-83.67891300000001,32.780862],[-83.678145,32.78136],[-83.6773945,32.7818491],[-83.67306590000001,32.7846701],[-83.67245120000001,32.7850717],[-83.6716624,32.7855706]]},"id":"8544c0b3fffffff-139f7c5f71cb2268"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36004580-17dffd3d1b196ee4","8f44c0a36026d84-13dfec64c233480e"]},"geometry":{"type":"LineString","coordinates":[[-83.617682,32.8420348],[-83.617553,32.84221],[-83.617491,32.842322],[-83.61744300000001,32.842453],[-83.61741500000001,32.842579],[-83.61740250000001,32.8426704],[-83.6173564,32.8429519],[-83.6173359,32.8430509]]},"id":"8944c0a3603ffff-1397fcef88cdd686"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a321082e0-17ffb7b7a3564acb","8f44c0a323b1210-17bf37d2b8201341"]},"geometry":{"type":"LineString","coordinates":[[-83.6130438,32.8629704],[-83.612829,32.863374],[-83.612745,32.8637],[-83.612665,32.864064],[-83.61264200000001,32.864193],[-83.612592,32.864592],[-83.61257330000001,32.8650208],[-83.61257900000001,32.865324],[-83.61258500000001,32.865482],[-83.61258790000001,32.8655921],[-83.6126,32.865842],[-83.61273130000001,32.867166600000004],[-83.6128671,32.8681002],[-83.61291560000001,32.868593000000004],[-83.61296870000001,32.869067900000005],[-83.6130005,32.869416300000005]]},"id":"8744c0a32ffffff-17dff870bd5b2f7f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b81b26595-13dfe321bca83890","8f44c0b81b00031-17b7e36b6638156c"]},"geometry":{"type":"LineString","coordinates":[[-83.56892900000001,32.814498],[-83.568976,32.814337],[-83.56901900000001,32.813646],[-83.5690393,32.8132589],[-83.5690469,32.8131502]]},"id":"8944c0b81b3ffff-1797f33c25ad4aec"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b85a80c16-13d79f71eaeac8e9","8f44c0b85a9d685-17bff02478dfcfe1"]},"geometry":{"type":"LineString","coordinates":[[-83.57055700000001,32.79694],[-83.5705203,32.7971281],[-83.570493,32.797204],[-83.57040900000001,32.797583],[-83.57033,32.797894],[-83.5702713,32.7981191]]},"id":"8944c0b85abffff-17bfffc8ac8c95a3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[273.02,374.22],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[273.02,374.22],"maxSpeed":[45,"mph"]},{"applyAt":[0.0,273.02],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aaa2ce1-13bfc79204f9ff44","8f44c0a2aad5754-13def406f9256938"]},"geometry":{"type":"LineString","coordinates":[[-83.7128593,32.9272267],[-83.7125829,32.9266103],[-83.7123614,32.9261427],[-83.7120802,32.9255306],[-83.7118049,32.9249312],[-83.71148000000001,32.9242237],[-83.711408,32.9240824]]},"id":"8844c0a2abfffff-179745ca23083327"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[74.65,91.46],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3685c406-13dfdc6f2652d075","8f44c0a3685d24c-17b7bab7251475fe"]},"geometry":{"type":"LineString","coordinates":[[-83.62421900000001,32.83955],[-83.62437,32.839670000000005],[-83.624785,32.840024],[-83.62492300000001,32.840121]]},"id":"8a44c0a3685ffff-17971b94907e3cb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8b4f6514-17b7d98ffacb1c6c","8f44c0b8b400a20-13ffd42ddfa1676c"]},"geometry":{"type":"LineString","coordinates":[[-83.5555107,32.874230100000005],[-83.5551197,32.8744859],[-83.5544905,32.8748866],[-83.55330570000001,32.875754900000004]]},"id":"8844c0b8b5fffff-13dfe6e5cfb03fba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0aa4b02d19-13f7d04b7182e8eb","8f44c0aa4b20185-17bfcd482007910f"]},"geometry":{"type":"LineString","coordinates":[[-83.5517822,32.8769756],[-83.55094600000001,32.8776075],[-83.5505481,32.8779101]]},"id":"8944c0aa4b3ffff-13d7ceca0f9b45da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34032616-17d7f68a8b4cfecf","8f44c0a341a9290-17dff5a5cb319e51"]},"geometry":{"type":"LineString","coordinates":[[-83.640106,32.8366838],[-83.64009680000001,32.8367045],[-83.63974,32.837507]]},"id":"8844c0a341fffff-17d6f6182420c74e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a344eb21b-139fa91606da843b","8f44c0a344e98dc-17d7a7e3c9b9f2b6"]},"geometry":{"type":"LineString","coordinates":[[-83.63214400000001,32.841313],[-83.63234530000001,32.8411686],[-83.63263400000001,32.840961]]},"id":"8a44c0a344effff-17bfb87ce0053820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,285.47],"value":"paved"}],"flags":[{"applyAt":[16.53,97.21],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a048c1aa0-13d7e0c28b1ef842","8f44c0a0417131e-17dfe46d9e0c3441"]},"geometry":{"type":"LineString","coordinates":[[-83.67487600000001,32.888098],[-83.67474680000001,32.8881997],[-83.67456100000001,32.8883267],[-83.6743953,32.888439600000005],[-83.67424770000001,32.8885233],[-83.6740518,32.888628700000005],[-83.6739228,32.888705],[-83.6737923,32.888803100000004],[-83.6736717,32.8889263],[-83.67357870000001,32.8890477],[-83.67351880000001,32.889144],[-83.6734766,32.8892244],[-83.67341900000001,32.889367],[-83.6733712,32.8895417],[-83.6733597,32.889662300000005],[-83.6733552,32.8898373],[-83.67337350000001,32.890127]]},"id":"8744c0a04ffffff-17f6e3310878d471"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2d5542e4-13dff47348b83823","8f44c0a2dc8b84c-13bdf43b09b96b42"]},"geometry":{"type":"LineString","coordinates":[[-83.74545400000001,32.911229],[-83.7455376,32.9082104],[-83.74554400000001,32.907714]]},"id":"8744c0a2dffffff-1797f455202beaf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b08184d54-179713ee7b1d9fa2","8f44c0b081a2674-17deb3ad0c435af3"]},"geometry":{"type":"LineString","coordinates":[[-83.7325593,32.814680100000004],[-83.7325976,32.8146673],[-83.73262960000001,32.814645500000005],[-83.7326524,32.8146167],[-83.732664,32.814583400000004]]},"id":"8944c0b081bffff-17ff13c7b082aae4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[111.12,344.99],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21b76ce9-17debd1ca29f819b","8f44c0a21bab102-17ff6600c8ff6ad1"]},"geometry":{"type":"LineString","coordinates":[[-83.7251572,32.8801494],[-83.72552250000001,32.880075600000005],[-83.7257486,32.8800356],[-83.72631600000001,32.879931],[-83.7265552,32.8798994],[-83.72736,32.879793],[-83.727692,32.879765],[-83.72879900000001,32.879713]]},"id":"8844c0a21bfffff-17d73192f7b3b6cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b523b4c13-1797fd4b0e08bb55","8f44c0b523220ae-17d5f328a3a15887"]},"geometry":{"type":"LineString","coordinates":[[-83.741832,32.8795939],[-83.7451206,32.8796537],[-83.74598300000001,32.879669400000004]]},"id":"8744c0b52ffffff-17bdf839db03485c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,121.9],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b498534-17b7fb210d723190","8f44c0a3486cd2d-1797ddac4ca8b60a"]},"geometry":{"type":"LineString","coordinates":[[-83.64992600000001,32.833318000000006],[-83.6499649,32.8333407],[-83.650664,32.833748],[-83.650817,32.833849],[-83.650901,32.833911],[-83.650968,32.833973]]},"id":"8744c0a34ffffff-17dedc60dca5cc92"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,97.46],"value":"paved"}],"flags":[{"applyAt":[18.68,79.05],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b498534-17b7fb210d723190","8f44c0b1b49924a-17d6d978a628ad7c"]},"geometry":{"type":"LineString","coordinates":[[-83.650968,32.833973],[-83.6511067,32.8340941],[-83.651171,32.834156300000004],[-83.6515305,32.8345043],[-83.65164700000001,32.834638000000005]]},"id":"8944c0b1b4bffff-17feda4879136286"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[38.68,136.55],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1c996565-17fe9b5cadeb8e7f","8f44c0b1c998944-139f98636357df33"]},"geometry":{"type":"LineString","coordinates":[[-83.677087,32.781232],[-83.67728100000001,32.781399],[-83.6773651,32.7814892],[-83.6780016,32.782189],[-83.67830500000001,32.782536]]},"id":"8944c0b1c9bffff-17fff9d8679cb28c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[10.94,100.09],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0ba92d40e2-1397b94b69373285","8f44c0ba928a8c9-13ff5bef0d2c058c"]},"geometry":{"type":"LineString","coordinates":[[-83.624424,32.831842],[-83.6245195,32.8318989],[-83.62457,32.831929],[-83.6252961,32.832364000000005],[-83.625505,32.832489]]},"id":"8844c0ba93fffff-13d77a9d2241df26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":[{"applyAt":[68.13,93.6],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0a36062c23-139ff66b2646e77c","8f44c0a36070581-13df78d66b3b2c78"]},"geometry":{"type":"LineString","coordinates":[[-83.6191386,32.8446887],[-83.6193329,32.8447164],[-83.6198586,32.8447778],[-83.62003800000001,32.8447953],[-83.62012940000001,32.8447933]]},"id":"8944c0a3607ffff-1397a7a129dca161"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,34.07],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[34.07,88.2],"maxSpeed":[35,"mph"]},{"applyAt":[0.0,34.07],"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b88004012-17d7df75063f3cc0","8f44c0b88021753-179f9d2d4fa43c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.57148600000001,32.853372],[-83.57133,32.8534],[-83.571128,32.853427],[-83.570946,32.853451],[-83.570552,32.853458]]},"id":"8944c0b8803ffff-17b7fe504f5cd826"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36822134-13b7a0036269db1e","8f44c0a36806153-17bfe1620a5a2fba"]},"geometry":{"type":"LineString","coordinates":[[-83.622753,32.835796],[-83.622625,32.835921],[-83.6225208,32.8360427],[-83.6223279,32.8362634],[-83.62229450000001,32.8363016],[-83.622192,32.836419]]},"id":"8944c0a3683ffff-13f7f0b51796c81f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":[{"applyAt":[85.67,122.39],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a3102c229-13d7f35afbf7cc3c","8f44c0a311746f0-179ff07264452974"]},"geometry":{"type":"LineString","coordinates":[[-83.6541521,32.8753791],[-83.65420900000001,32.8753102],[-83.6545452,32.8746829],[-83.6547125,32.8743834],[-83.6550744,32.8737288],[-83.65518970000001,32.8735714],[-83.6553434,32.873446300000005]]},"id":"8844c0a311fffff-13dfd1f96110e725"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,23.92],"value":"paved"},{"applyAt":[84.73,100.89],"value":"paved"}],"flags":[{"applyAt":[23.92,84.73],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a34a86163-13d6f5ed746645ff","8f44c0a34aaa493-17bef3e428f1dd6f"]},"geometry":{"type":"LineString","coordinates":[[-83.647379,32.8401325],[-83.6471834,32.8399938],[-83.6466817,32.8396455],[-83.64654490000001,32.8395567]]},"id":"8a44c0a34a87fff-1797f4e7b45fc264"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[16.63,78.72],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a34433cf6-179f7c2604900c2c","8f44c0a3458e8dd-1397af72921f2ece"]},"geometry":{"type":"LineString","coordinates":[[-83.62953830000001,32.835973800000005],[-83.6296885,32.8360539],[-83.6302319,32.8363749],[-83.6308896,32.8367847]]},"id":"8844c0a345fffff-179fcdc9c97dc935"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0402528a-17f6f3fa5f5a288c","8f44c0b040262d9-1797c5e9a253b32f"]},"geometry":{"type":"LineString","coordinates":[[-83.71208700000001,32.742156],[-83.712215,32.74217],[-83.712494,32.742216],[-83.71276,32.742288],[-83.7128795,32.742330700000004]]},"id":"8a44c0b04027fff-17b7c4ef9cb61f10"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b05d8a4f2-13fe3ca15935090e","8f44c0b05d99276-139eecf4ecff00b4"]},"geometry":{"type":"LineString","coordinates":[[-83.72230900000001,32.7507852],[-83.72235830000001,32.7507965],[-83.72240930000001,32.750794400000004],[-83.7224571,32.7507791],[-83.72249690000001,32.7507521],[-83.7225248,32.7507162],[-83.7225382,32.750674700000005],[-83.72253570000001,32.7506318],[-83.72251750000001,32.7505917],[-83.7224855,32.7505582],[-83.7224427,32.7505347]]},"id":"8944c0b05dbffff-13f66c92951c27ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a8f3408-13fefd03b782590c","8f44c0b1a8c692d-13b6fb5100e7da2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6508912,32.8128879],[-83.65096100000001,32.812644500000005],[-83.6511219,32.8123785],[-83.65119700000001,32.812297300000004],[-83.6512989,32.8121711],[-83.6512077,32.812112500000005],[-83.650328,32.8119457],[-83.6502368,32.8119637],[-83.6502636,32.8121215],[-83.65022610000001,32.8126941],[-83.65019570000001,32.8127683]]},"id":"8944c0b1a8fffff-13bedbc5a76d0089"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a016619-13b7ebc4d13e28bd","8f44c0b0a0f3425-1396eb9c46e0b52a"]},"geometry":{"type":"LineString","coordinates":[[-83.70975320000001,32.8251246],[-83.7097514,32.8246744],[-83.70975320000001,32.8232396],[-83.7097639,32.8226795],[-83.70968830000001,32.8225118]]},"id":"8844c0b0a1fffff-17f7eb9d2e0860ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","flags":[{"applyAt":[0.0,90.36],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c198b8d-1396f4be97b64e00","8f44c0b1c1a0b25-17b6f10bc963d68a"]},"geometry":{"type":"LineString","coordinates":[[-83.6732439,32.7894823],[-83.67348100000001,32.789174],[-83.673528,32.789111000000005],[-83.673574,32.789049],[-83.67376,32.788794],[-83.674172,32.788255],[-83.674394,32.787965],[-83.674693,32.787567],[-83.6747588,32.7874885]]},"id":"8944c0b1c1bffff-17b6f2e66271a22b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184c250d-1797c5d8e9b1a705","8f44c0b184d0612-1797e7ddc9abaf4e"]},"geometry":{"type":"LineString","coordinates":[[-83.65968500000001,32.814262],[-83.6593342,32.8142662],[-83.65885800000001,32.814245]]},"id":"8944c0b184fffff-1796c6db6fdb38a0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0c0ab6-13d7e938f3943667","8f44c0b0a0ead9a-13ded7ce8f2b3fd7"]},"geometry":{"type":"LineString","coordinates":[[-83.7107313,32.825811],[-83.71099690000001,32.825839200000004],[-83.7111205,32.8258424],[-83.71131120000001,32.8258473]]},"id":"8944c0b0a0fffff-13d6d883fc480855"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,178.17],"value":"paved"}],"flags":[{"applyAt":[27.72,144.99],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8e494d-17f7cfa43abcb731","8f44c0b0b8a98a2-13de7419b45be619"]},"geometry":{"type":"LineString","coordinates":[[-83.7324901,32.833018200000005],[-83.73252330000001,32.8330283],[-83.73276870000001,32.8331029],[-83.7334596,32.833282600000004],[-83.7339714,32.8333973],[-83.7343165,32.8334652]]},"id":"8844c0b0b9fffff-17f631e174545002"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8448d3-17b6c989a365a298","8f44c0b0b80ba23-179e1e72d859c8ae"]},"geometry":{"type":"LineString","coordinates":[[-83.73681660000001,32.8337516],[-83.7366389,32.8337415],[-83.7359895,32.833672],[-83.73512430000001,32.833545],[-83.7348051,32.833500900000004]]},"id":"8844c0b0b9fffff-17f63bff1dd0b547"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b86ed92-17f6680a214fea9c","8f44c0b0b856d68-17f78e0c0675570c"]},"geometry":{"type":"LineString","coordinates":[[-83.7349696,32.8336472],[-83.73519780000001,32.8336798],[-83.73596880000001,32.833792100000004],[-83.7366957,32.833865200000005],[-83.73724990000001,32.8338977],[-83.7374302,32.833847]]},"id":"8944c0b0b87ffff-17d69b0ab270d994"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a367661b0-13ffb05d0d587b75","8f44c0a367764e3-13ff33e5058ad077"]},"geometry":{"type":"LineString","coordinates":[[-83.61460960000001,32.848217600000005],[-83.6151645,32.848222],[-83.616056,32.848225]]},"id":"8844c0a367fffff-13fff22107bfdf65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8dc82331-13ff799a6818710c","8f44c0b8dc5a809-17976cfee3072820"]},"geometry":{"type":"LineString","coordinates":[[-83.58605700000001,32.84205],[-83.587315,32.842622],[-83.59031,32.843964],[-83.59063490000001,32.8441032],[-83.591221,32.844375]]},"id":"8844c0b8ddfffff-17d7f34cf820c331"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d594021-1395f41c603546bc","8f44c0b0d59ec84-13b7f43e57885a45"]},"geometry":{"type":"LineString","coordinates":[[-83.745593,32.808731],[-83.74556700000001,32.808872],[-83.745548,32.809033],[-83.74553130000001,32.809154400000004],[-83.7455248,32.809244500000005],[-83.74553870000001,32.8097834]]},"id":"8a44c0b0d597fff-13ddf43bc9ed517e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b8a8588-13df95a4a8f9720b","8f44c0b0b885158-13dfb700a2e53ad6"]},"geometry":{"type":"LineString","coordinates":[[-83.7318582,32.8327864],[-83.7317124,32.8327431],[-83.7315872,32.8327058],[-83.7313014,32.832613900000005]]},"id":"8944c0b0b8bffff-13969652fb2406b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,4.24],"value":"paved"}],"flags":[{"applyAt":[4.24,22.23],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,4.24],"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3488cac4-13f6ed438ea12cbd","8f44c0a3488d8aa-17befcad7fa57308"]},"geometry":{"type":"LineString","coordinates":[[-83.64354,32.833035],[-83.64357740000001,32.833056500000005],[-83.6437348,32.833149500000005],[-83.6437801,32.8331749]]},"id":"8a44c0a3488ffff-1796ecf89644ffc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,334.64],"value":"paved"}],"flags":[{"applyAt":[242.8,315.98],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab9aa99-17ffe8940b9d0d41","8f44c0a2a8cec15-139f6bb57574d619"]},"geometry":{"type":"LineString","coordinates":[[-83.7109952,32.923161],[-83.71084710000001,32.922836100000005],[-83.7106644,32.9224449],[-83.7105021,32.9220909],[-83.71034180000001,32.921742200000004],[-83.71018210000001,32.9213976],[-83.710053,32.921121],[-83.70999,32.920979],[-83.7097777,32.9205033],[-83.7097129,32.9203442]]},"id":"8744c0a2affffff-1796ea2837271862"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a8c0552-1796cc6d2aeaba8b","8f44c0a2a8a9620-13f6fe4fce7fdad4"]},"geometry":{"type":"LineString","coordinates":[[-83.70941900000001,32.9197164],[-83.70932470000001,32.919507100000004],[-83.7090125,32.918759300000005],[-83.7088653,32.918427900000005],[-83.7087487,32.9181954],[-83.7086903,32.918093500000005],[-83.70864680000001,32.918017500000005]]},"id":"8844c0a2a9fffff-17ffdd55ba44dbf9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c23ac1-1797e9948c37aae2","8f44c0a05d5a189-17f7864d6539eb04"]},"geometry":{"type":"LineString","coordinates":[[-83.6843704,32.899467800000004],[-83.68447300000001,32.899544],[-83.68459100000001,32.899642],[-83.684818,32.899799],[-83.6848856,32.899835100000004],[-83.685097,32.899948],[-83.685713,32.900236]]},"id":"8844c0a05dfffff-179f87fd1af3d3bc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,44.16],"maxSpeed":[35,"mph"]},{"applyAt":[44.16,69.17],"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a34655471-179efc2e4f46a3c6","8f44c0a34642385-1797fada4c3dada4"]},"geometry":{"type":"LineString","coordinates":[[-83.63743000000001,32.847229],[-83.63778,32.847496],[-83.637974,32.847651]]},"id":"8944c0a3467ffff-1797fb8399388738"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,277.37],"value":"paved"}],"flags":[{"applyAt":[71.03,200.52],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a30958541-179eef91372b1065","8f44c0a3090a541-17fef3a4648bfa48"]},"geometry":{"type":"LineString","coordinates":[[-83.64092740000001,32.8508875],[-83.640939,32.850901],[-83.6413682,32.8514088],[-83.64214480000001,32.852375],[-83.64259650000001,32.8529536]]},"id":"8844c0a309fffff-13fef195eedf7873"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b04153a42-17bf71b4ef087a8d","8f44c0b041558a0-17fff0ae83570580"]},"geometry":{"type":"LineString","coordinates":[[-83.71422960000001,32.7421087],[-83.7141905,32.742178700000004],[-83.71390070000001,32.742694400000005],[-83.7138098,32.7428503]]},"id":"8a44c0b04157fff-17d6513109a696a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b14723242-13f6fd035aa72c53","8f44c0b143b5993-17b7f0b411f48941"]},"geometry":{"type":"LineString","coordinates":[[-83.6486847,32.7415857],[-83.64846340000001,32.7414551],[-83.64819,32.7413125],[-83.6477864,32.7411905],[-83.6475187,32.7411455],[-83.64711390000001,32.7411022],[-83.6436427,32.7410757]]},"id":"8744c0b14ffffff-1397f6c31c2034da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a555783-13b6f5d89de6f63f","8f44c0b1a5760ea-17b7f5bc1603a2bb"]},"geometry":{"type":"LineString","coordinates":[[-83.64002470000001,32.8155214],[-83.6400397,32.8152191],[-83.6400703,32.814293500000005]]},"id":"8944c0b1a57ffff-17b7f5c92a2f0cf2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","flags":[{"applyAt":[194.78,267.65],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14363792-13bef127ef3948de","8f44c0b15526403-1796ddac6ee3d5a7"]},"geometry":{"type":"LineString","coordinates":[[-83.65647940000001,32.7485037],[-83.6561437,32.7478558],[-83.6558294,32.747237000000005],[-83.65566430000001,32.7468882],[-83.6555342,32.746563200000004],[-83.65541710000001,32.7462652],[-83.65528900000001,32.7458112],[-83.65523180000001,32.7455829],[-83.6551723,32.7453226],[-83.6551223,32.7450422],[-83.65509370000001,32.7447639],[-83.6550818,32.7445796],[-83.6550509,32.744103],[-83.65505300000001,32.7440522]]},"id":"8644c0b17ffffff-13bfcfe4d3c44447"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.613994,32.83719]},"id":"8f44c0a36c08228-179ff565cd9cd0db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[1652.74,1730.56],"values":["isBridge"]},{"applyAt":[2351.41,2474.15],"values":["isBridge"]},{"applyAt":[3460.19,3616.34],"values":["isBridge"]},{"applyAt":[4207.03,4406.19],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,5235.58],"maxSpeed":[70,"mph"]},{"applyAt":[5235.58,5542.12],"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b85358892-13b7dce1a9fb1680","8f44c0a36c08228-179ff565cd9cd0db"]},"geometry":{"type":"LineString","coordinates":[[-83.571607,32.8032604],[-83.573283,32.805635],[-83.573656,32.806159],[-83.576634,32.810448],[-83.57710800000001,32.81111],[-83.57732100000001,32.811397],[-83.577459,32.811582],[-83.578051,32.8123],[-83.57863,32.81291],[-83.57908900000001,32.813364],[-83.57968600000001,32.813905000000005],[-83.5802886,32.814408400000005],[-83.580927,32.814882600000004],[-83.5816666,32.815378100000004],[-83.58201150000001,32.8155925],[-83.5823422,32.8157866],[-83.58475340000001,32.817174],[-83.587821,32.818939],[-83.58888350000001,32.819587],[-83.597633,32.8245342],[-83.5990111,32.825327],[-83.60022550000001,32.8260422],[-83.600796,32.826427],[-83.60105,32.826599],[-83.601307,32.826766],[-83.601602,32.826985],[-83.60215500000001,32.827412],[-83.60379400000001,32.828781],[-83.605303,32.830046700000004],[-83.60702300000001,32.831476],[-83.60966300000001,32.833694],[-83.6115929,32.8353127],[-83.612333,32.835924],[-83.613577,32.836903],[-83.613994,32.83719]]},"id":"8544c0bbfffffff-17976b4158ac1b2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","flags":[{"applyAt":[567.62,612.8],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a36165066-13bfb1abf37ad9e0","8f44c0a36c08228-179ff565cd9cd0db"]},"geometry":{"type":"LineString","coordinates":[[-83.613994,32.83719],[-83.614889,32.837733],[-83.615255,32.837927],[-83.615471,32.838036],[-83.61580500000001,32.838177],[-83.61757800000001,32.838959],[-83.617896,32.839106],[-83.618311,32.8393],[-83.61921620000001,32.8397754],[-83.61961960000001,32.839999],[-83.6201454,32.8403153],[-83.6206241,32.840625],[-83.6211342,32.8409969],[-83.62169200000001,32.841415600000005],[-83.62196630000001,32.8416549],[-83.6220737,32.8417467]]},"id":"8744c0a36ffffff-13d7eb54760e4d65"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":[{"applyAt":[0.0,161.45],"value":"paved"}],"flags":[{"applyAt":[161.45,272.46],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b13105baa-13bffddf63413342","8f44c0b13c6e8a2-17b7231b6d789d21"]},"geometry":{"type":"LineString","coordinates":[[-83.63673700000001,32.776857],[-83.63661300000001,32.77666],[-83.63652400000001,32.776539],[-83.636436,32.776421],[-83.63620300000001,32.776128],[-83.635991,32.775889],[-83.635766,32.775658],[-83.635548,32.775405],[-83.63543200000001,32.775272],[-83.635265,32.775087],[-83.635057,32.774856],[-83.63476200000001,32.774546],[-83.63459300000001,32.774349]]},"id":"8744c0b13ffffff-17b7c06ba7703270"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea64c72-13f6a93bc19013ed","8f44c0a2ea1d82b-13d6719052c645a1"]},"geometry":{"type":"LineString","coordinates":[[-83.7204219,32.903866],[-83.7204426,32.9038662],[-83.7211142,32.903868200000005],[-83.72227620000001,32.9038902],[-83.72303690000001,32.9038945],[-83.72383400000001,32.903889]]},"id":"8844c0a2ebfffff-13dead66113c6163"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,451.4],"maxSpeed":[45,"mph"]},{"applyAt":[451.4,499.03],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b81a2482a-13d7e31fc815738a","8f44c0b81a430ca-17ff9fb06283c09e"]},"geometry":{"type":"LineString","coordinates":[[-83.56905,32.816003],[-83.569179,32.816588],[-83.569235,32.816802],[-83.569343,32.817133000000005],[-83.569615,32.817936],[-83.56975700000001,32.818334],[-83.56988600000001,32.8187],[-83.56994900000001,32.818877],[-83.5703139,32.8199279],[-83.570457,32.82034]]},"id":"8844c0b81bfffff-17b7b17fda691a24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,684.23],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0ba3429cb2-13f7f1cca32904e1","8f44c0ba62a949e-17f7b5e24c76ad26"]},"geometry":{"type":"LineString","coordinates":[[-83.561366,32.7460152],[-83.56130200000001,32.746532],[-83.561197,32.74734],[-83.56110500000001,32.748193],[-83.56107490000001,32.748892500000004],[-83.56104880000001,32.7497297],[-83.56103780000001,32.7506204],[-83.56103900000001,32.752173],[-83.561059,32.753003],[-83.56110100000001,32.755296],[-83.56110960000001,32.756197],[-83.56112800000001,32.758122],[-83.561137,32.759033],[-83.561155,32.759898],[-83.561176,32.760159],[-83.561211,32.760447],[-83.561301,32.760966],[-83.561346,32.761164],[-83.56146000000001,32.761578],[-83.56169700000001,32.762178],[-83.561828,32.762467],[-83.561958,32.762718],[-83.56209700000001,32.762968],[-83.562244,32.763213],[-83.562455,32.763551],[-83.56304700000001,32.76444],[-83.563699,32.765442],[-83.563837,32.765686],[-83.56401000000001,32.766053],[-83.564092,32.766253],[-83.5641557,32.766471700000004],[-83.56417300000001,32.766531],[-83.564227,32.766802000000006],[-83.564268,32.767167],[-83.564272,32.767356],[-83.56425800000001,32.767631],[-83.564237,32.767826],[-83.564178,32.768112],[-83.564086,32.768448],[-83.563901,32.768876],[-83.56383100000001,32.769011],[-83.563691,32.769258],[-83.563224,32.770038],[-83.563135,32.770193],[-83.562922,32.770587],[-83.562773,32.770971],[-83.562657,32.771402],[-83.56261400000001,32.771735],[-83.56260400000001,32.771996],[-83.562612,32.772225],[-83.562627,32.772464],[-83.56265300000001,32.772644],[-83.56267600000001,32.77275],[-83.562764,32.773069],[-83.563039,32.773867]]},"id":"8644c0ba7ffffff-139fb435787bc276"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0ba37126d9-17f7ade9a09d22eb","8f44c0ba3601528-17fffac5a7c344c0"]},"geometry":{"type":"LineString","coordinates":[[-83.564631,32.778377],[-83.5647543,32.7787238],[-83.56507020000001,32.7795861],[-83.56529300000001,32.78015],[-83.565487,32.780577],[-83.5659174,32.781430300000004]]},"id":"8844c0ba37fffff-13bfac71e700c043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[4.53,52.41],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a205315a1-17f7f9e8540d93fc","8f44c0a2053512b-17f7790095d7bc68"]},"geometry":{"type":"LineString","coordinates":[[-83.6907899,32.8604955],[-83.6908209,32.8604641],[-83.69113150000001,32.8601211],[-83.69116070000001,32.8600881]]},"id":"8a44c0a20537fff-17f6f973f7044386"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[22.41,67.67],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a368ac675-17f775709f581d1a","8f44c0a368ad268-17dfe406e92a9b8c"]},"geometry":{"type":"LineString","coordinates":[[-83.6205303,32.8373367],[-83.6207249,32.8374544],[-83.620964,32.837603],[-83.6210319,32.8376493],[-83.621109,32.837702]]},"id":"8a44c0a368affff-17d7a4ba7f8b2f2a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b56000551-13dff1ceac327c83","8f44c0b560ea40c-13ddf1e4ed899ecd"]},"geometry":{"type":"LineString","coordinates":[[-83.74650100000001,32.8580042],[-83.7465021,32.857598700000004],[-83.746525,32.855288],[-83.7465366,32.8547317]]},"id":"8844c0b561fffff-17ddf1dc292d1a41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b09455a8b-13f5f527ab05b8b1","8f44c0b09451b2c-13bdf52d427de58a"]},"geometry":{"type":"LineString","coordinates":[[-83.7451564,32.835213700000004],[-83.74516030000001,32.835106200000006],[-83.7451654,32.8348949]]},"id":"8a44c0b09457fff-13d5f52a30a1291c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":[{"applyAt":[0.0,47.41],"value":"paved"}],"flags":["isLink"]},"subType":"road","connectors":["8f44c0b8531826d-17ffe2928e81cd81","8f44c0b85358892-13b7dce1a9fb1680"]},"geometry":{"type":"LineString","coordinates":[[-83.569276,32.801302],[-83.5693598,32.8013621],[-83.5696618,32.8015788],[-83.570221,32.801931],[-83.57040400000001,32.802056],[-83.57057,32.80218],[-83.57079,32.802371],[-83.570874,32.80245],[-83.5712403,32.802846800000005],[-83.571607,32.8032604]]},"id":"8844c0b853fffff-13b7bf95bcd22938"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[63.03,134.49],"values":["isTunnel"]},{"applyAt":[158.12,205.19],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0ba9aebd9d-17976770c82bd306","8f44c0ba9a8882e-17fffe64084217be"]},"geometry":{"type":"LineString","coordinates":[[-83.6299712,32.8248575],[-83.6305186,32.8251883],[-83.6311433,32.825558400000006],[-83.6313518,32.8256784],[-83.6317678,32.8259167],[-83.632818,32.826559]]},"id":"8844c0ba9bfffff-13971ae97fd6c4c2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0941911a-17d5fa767935a157","8f44c0b0940b831-1797f824f8dc5b19"]},"geometry":{"type":"LineString","coordinates":[[-83.7439409,32.834130200000004],[-83.743701,32.83409],[-83.7435492,32.8340612],[-83.74331400000001,32.834045],[-83.7429913,32.834025100000005]]},"id":"8944c0b0943ffff-17fff94ccff90c0a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[69.1,213.84],"maxSpeed":[45,"mph"]},{"applyAt":[0.0,69.1],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b09706349-1795edb8b8565991","8f44c0b0946b4d6-13d7f114b97d8bda"]},"geometry":{"type":"LineString","coordinates":[[-83.74821010000001,32.8371796],[-83.74777010000001,32.8366793],[-83.7470495,32.835870400000005],[-83.7468341,32.8356407]]},"id":"8744c0b09ffffff-17b7ff6475cbe918"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[380.25,459.38],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d8ab609-17fdedb66c32f33c","8f44c0b0d0b5119-13d7dd07af5c01b1"]},"geometry":{"type":"LineString","coordinates":[[-83.755047,32.811884],[-83.755268,32.811717],[-83.75646900000001,32.810789],[-83.757692,32.809837],[-83.75792,32.809666],[-83.75804310000001,32.8095701],[-83.75845790000001,32.809246900000005],[-83.7586641,32.809086300000004],[-83.75938000000001,32.808528],[-83.75955900000001,32.808397],[-83.76132100000001,32.807029]]},"id":"8744c0b0dffffff-13d7d55e4770d7f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","flags":[{"applyAt":[64.63,90.15],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b66344a-13b7bf40c9fc2b70","8f44c0b1b641324-13deff3a8f0b6253"]},"geometry":{"type":"LineString","coordinates":[[-83.662396,32.842647],[-83.662385,32.842149],[-83.66238530000001,32.842064300000004],[-83.66238600000001,32.8418342],[-83.66238600000001,32.841765]]},"id":"8944c0b1b67ffff-13deff3f4e7ada46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[91.78,344.03],"value":"paved"}],"flags":[{"applyAt":[0.0,91.78],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0a328dc4f3-13f7b33185bed824","8f44c0a328e404c-17d7bef4b6c684c2"]},"geometry":{"type":"LineString","coordinates":[[-83.61489680000001,32.861521],[-83.61495190000001,32.8614833],[-83.61502420000001,32.861431],[-83.6151126,32.8614407],[-83.61576690000001,32.861704700000004],[-83.6158547,32.8616162],[-83.61651690000001,32.860524000000005],[-83.6165893,32.860348300000005],[-83.6166295,32.8601906],[-83.6166376,32.8600283],[-83.61663250000001,32.859605900000005]]},"id":"8944c0a328fffff-139fb063b06ea36c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b502f6bb0-17d7c054e42ec878","8f44c0b5029d8cc-17dfe4c75476155a"]},"geometry":{"type":"LineString","coordinates":[[-83.76680180000001,32.8799088],[-83.7662044,32.8799012],[-83.765997,32.879900400000004],[-83.76522270000001,32.8798917],[-83.7649803,32.879889]]},"id":"8844c0b503fffff-17d5c28e1f7c0248"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[195.97,240.55],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,195.97],"maxSpeed":[35,"mph"]},{"applyAt":[195.97,397.52],"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b724d8daa-17dfe43cc14a135c","8f44c0b727a4999-17b7b9e22d264583"]},"geometry":{"type":"LineString","coordinates":[[-83.76944300000001,32.831313],[-83.7681249,32.831304800000005],[-83.76735000000001,32.8313],[-83.766874,32.831291],[-83.766422,32.831287],[-83.765934,32.831293],[-83.765574,32.831318],[-83.765398,32.831335],[-83.765202,32.831359]]},"id":"8744c0b72ffffff-17bdbf1055091140"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0909ecd9-13fdee1cc8cd7e66","8f44c0b0946b884-13d7f063b88b9d38"]},"geometry":{"type":"LineString","coordinates":[[-83.74805,32.834887],[-83.7474988,32.8352288],[-83.7471173,32.8354682]]},"id":"8744c0b09ffffff-13b5ef407fc40377"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":[{"applyAt":[0.0,132.91],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,132.91],"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a344cd8a6-13df497047455ca2","8f44c0a344e30da-17b75acfa9bcf1b5"]},"geometry":{"type":"LineString","coordinates":[[-83.63143740000001,32.840125300000004],[-83.63170500000001,32.840285],[-83.632395,32.840708],[-83.6324251,32.8407593],[-83.6324027,32.8409027],[-83.6323321,32.840998400000004],[-83.6319996,32.84141]]},"id":"8944c0a344fffff-179f1949230038d3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"applyAt":[0.0,681.93],"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8a5325a2-17fff09e0d05e11a","8f44c0b8ad1a2dc-17bfe3e3ceaeb260"]},"geometry":{"type":"LineString","coordinates":[[-83.542522,32.849733],[-83.541939,32.849986],[-83.540805,32.850468],[-83.54041000000001,32.850642],[-83.540091,32.850808],[-83.53994780000001,32.8508976],[-83.539912,32.85092],[-83.53960500000001,32.85116],[-83.53952460000001,32.8512411],[-83.539353,32.851414000000005],[-83.53841600000001,32.852567],[-83.538111,32.852956],[-83.53798900000001,32.853143],[-83.537895,32.853321],[-83.537816,32.853499],[-83.537693,32.853864],[-83.53765700000001,32.853945],[-83.537642,32.853972],[-83.5375997,32.8540306],[-83.5375724,32.854065500000004],[-83.5375102,32.8541259],[-83.53741330000001,32.854154900000005],[-83.5373088,32.854158500000004]]},"id":"8744c0b8affffff-13dfeafeee57e8c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a32c6ab80-17bf7d1fe148ff7f","8f44c0a32c6d68d-17bf7b7946dafacf"]},"geometry":{"type":"LineString","coordinates":[[-83.61150520000001,32.859589500000006],[-83.6114058,32.8595887],[-83.61082900000001,32.859591]]},"id":"8a44c0a32c6ffff-17bfbc4c96a5283a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db453b1-13f7d25a0263dc8e","8f44c0b1db41d43-17f772c3c5dcd08c"]},"geometry":{"type":"LineString","coordinates":[[-83.70682280000001,32.8070194],[-83.7068442,32.8069897],[-83.7069264,32.8069009],[-83.706992,32.806838]]},"id":"8a44c0b1db47fff-17bef2909880329a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","flags":[{"applyAt":[25.22,121.32],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a849190-1796f07defa4c7f2","8f44c0b1ab31cc3-17b7ed569bd1acb0"]},"geometry":{"type":"LineString","coordinates":[[-83.6566167,32.8141174],[-83.6563484,32.8140973],[-83.655896,32.814069],[-83.655325,32.814033]]},"id":"8844c0b1abfffff-179eceea3552c1d1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b187360d1-17f6b864f2870869","8f44c0b18724acd-179eb3734144bea1"]},"geometry":{"type":"LineString","coordinates":[[-83.6672204,32.814452100000004],[-83.66714130000001,32.8144511],[-83.6669237,32.8144482],[-83.66690600000001,32.814448],[-83.66568720000001,32.8144253],[-83.66519530000001,32.814416]]},"id":"8944c0b1873ffff-17fff5ec2d088cf0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[9.51,69.38],"value":"unpaved"}]},"subType":"road","connectors":["8f44c0b0e2d16a9-13feb37a0c9cbdd2","8f44c0b0a92d50a-13d77505e2fdcbf5"]},"geometry":{"type":"LineString","coordinates":[[-83.71963840000001,32.812586700000004],[-83.71955270000001,32.8126327],[-83.719335,32.812747],[-83.71900500000001,32.812911]]},"id":"8744c0b0effffff-13f7743f4ff96baa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71761810000001,32.812596]},"id":"8f44c0b0a904320-1396b868baf0d87f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"unpaved"},"subType":"road","connectors":["8f44c0b0a904320-1396b868baf0d87f","8f44c0b0a92d50a-13d77505e2fdcbf5"]},"geometry":{"type":"LineString","coordinates":[[-83.71900500000001,32.812911],[-83.718607,32.81315],[-83.718011,32.813481],[-83.7179,32.813533],[-83.71783400000001,32.813544],[-83.717781,32.813546],[-83.717719,32.813524],[-83.717695,32.813515],[-83.71764800000001,32.813471],[-83.717623,32.813421000000005],[-83.717619,32.813328],[-83.71761810000001,32.812596]]},"id":"8944c0b0a93ffff-13f7f74b9a361eb4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995225b-17b6f05faf9f7e0a","8f44c0b19823c10-17def3441e6505a7"]},"geometry":{"type":"LineString","coordinates":[[-83.6935103,32.820494000000004],[-83.693628,32.820498],[-83.69373970000001,32.8205061],[-83.693944,32.820521],[-83.694283,32.820574],[-83.69469500000001,32.82067]]},"id":"8844c0b199fffff-17f771cfc29b4048"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6437b4-13b7793d077dd00d","8f44c0b1d642450-13d7fa1b2b2aa0de"]},"geometry":{"type":"LineString","coordinates":[[-83.69106400000001,32.8163671],[-83.69101140000001,32.8163368],[-83.69082320000001,32.8161812],[-83.69070860000001,32.8160058]]},"id":"8a44c0b1d647fff-13def9b660b8a8fa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b199a29ac-17d6f9cc4db19de8","8f44c0b1d658a23-17f679ce34bc1e8d"]},"geometry":{"type":"LineString","coordinates":[[-83.6908348,32.8178476],[-83.6908071,32.817791],[-83.69073080000001,32.8173856],[-83.6907702,32.8170236],[-83.6908317,32.8168519]]},"id":"8644c0b1fffffff-179ff9f3f14d2792"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b1d65c2eb-13f679c510eb69e2","8f44c0b1d65ca92-13fe79c99cdd3b85"]},"geometry":{"type":"LineString","coordinates":[[-83.6908391,32.8164486],[-83.6908157,32.816495100000004],[-83.690809,32.8165453],[-83.6908195,32.8165951],[-83.6908463,32.8166403]]},"id":"8b44c0b1d65cfff-13b6f9d45ddfc9f9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,511.06],"value":"paved"},{"applyAt":[560.23,1037.1],"value":"paved"}],"flags":[{"applyAt":[511.06,560.23],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,511.06],"maxSpeed":[35,"mph"]},{"applyAt":[560.23,1037.1],"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aca2453-179f688b4ca36aea","8f44c0a2a091361-13fe6070814c59aa"]},"geometry":{"type":"LineString","coordinates":[[-83.697902,32.915829],[-83.698149,32.916176],[-83.699439,32.918174],[-83.69954600000001,32.918349],[-83.699656,32.918567],[-83.69973300000001,32.91875],[-83.69978,32.918875],[-83.699878,32.919212],[-83.699892,32.919285],[-83.69992500000001,32.919533],[-83.69997450000001,32.920030000000004],[-83.70001880000001,32.9204718],[-83.70016600000001,32.922001],[-83.70023400000001,32.922579],[-83.700317,32.922919],[-83.7004,32.923129],[-83.70048600000001,32.923309],[-83.70065000000001,32.923588],[-83.700991,32.924185],[-83.70122160000001,32.9245888]]},"id":"8744c0a2affffff-139e640471efe6af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05cc38b5-17df8dc9f086af37","8f44c0a05cc5cd2-179ebcb9f9483d62"]},"geometry":{"type":"LineString","coordinates":[[-83.6826465,32.9032336],[-83.6826425,32.9031752],[-83.68263560000001,32.9030608],[-83.68261430000001,32.9029086],[-83.6827612,32.902884900000004],[-83.682922,32.902835],[-83.6830817,32.9027491]]},"id":"8a44c0a05cc7fff-179e8d7ee72c5560"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,143.9],"maxSpeed":[50,"mph"]},{"applyAt":[143.9,171.91],"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04bb34a0-17fffe2e5d2a4db1","8f44c0a048c1aa0-13d7e0c28b1ef842"]},"geometry":{"type":"LineString","coordinates":[[-83.67487600000001,32.888098],[-83.675763,32.889158],[-83.6759323,32.8893663]]},"id":"8744c0a04ffffff-13f6ff77a6f9815e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c96021-13d69855c53e52ae","8f44c0a29cb312a-13b725f6f6768c6d"]},"geometry":{"type":"LineString","coordinates":[[-83.7373092,32.9270025],[-83.7374443,32.9269728],[-83.7381122,32.926794900000004],[-83.73828010000001,32.926750600000005]]},"id":"8944c0a29cbffff-139757260bd8edba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a29c96d51-13f7c876c7ede1c9","8f44c0a29cb312a-13b725f6f6768c6d"]},"geometry":{"type":"LineString","coordinates":[[-83.73828010000001,32.926750600000005],[-83.7384394,32.9267003],[-83.7384911,32.926689200000006],[-83.73851780000001,32.9266128],[-83.7385026,32.9265506],[-83.7384536,32.926523],[-83.73839120000001,32.926535],[-83.73807190000001,32.926617],[-83.7373719,32.9268062],[-83.7372564,32.926850800000004]]},"id":"8944c0a29cbffff-1396e6a56bc52fd5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28260072-13f61aa6940a47e6","8f44c0a29c964e0-13fef8d91dbffdab"]},"geometry":{"type":"LineString","coordinates":[[-83.7363607,32.9272609],[-83.73648940000001,32.927232100000005],[-83.736537,32.9272165],[-83.73657150000001,32.9272122],[-83.7369575,32.927109],[-83.7370554,32.927081900000005],[-83.73709910000001,32.927047900000005]]},"id":"8844c0a283fffff-13b709bc92a09f40"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[887.1,1467.97],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0a01cf475c-17f79d557cc4acf7","8f44c0a0005d459-17b7f589f85ab5d5"]},"geometry":{"type":"LineString","coordinates":[[-83.6663649,32.9159039],[-83.6663625,32.916593400000004],[-83.6663834,32.9171083],[-83.6665158,32.917506100000004],[-83.6666761,32.9177343],[-83.6672058,32.9182433],[-83.667394,32.9184949],[-83.66759610000001,32.9189512],[-83.6678191,32.919565500000004],[-83.6680212,32.9198171],[-83.6684046,32.920121300000005],[-83.66905270000001,32.9205659],[-83.6699239,32.9211626],[-83.6703142,32.921531200000004],[-83.6707602,32.9221045],[-83.67107030000001,32.9224491],[-83.6713015,32.9226143],[-83.67155290000001,32.922746700000005],[-83.672127,32.9228935],[-83.67306090000001,32.9230735],[-83.6732186,32.9231252],[-83.67342310000001,32.9232348],[-83.67353890000001,32.9233196],[-83.6736966,32.9234706],[-83.67381490000001,32.9236257],[-83.67398490000001,32.9237168],[-83.6742042,32.9237478],[-83.6744506,32.9237168],[-83.6753377,32.9235616],[-83.6755521,32.9235285],[-83.6758083,32.9234065],[-83.6760153,32.9232472],[-83.6761287,32.9230673],[-83.6762793,32.9227385]]},"id":"8644c0a07ffffff-13b7ab5a5d79a051"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,1393.05],"value":"paved"}],"flags":[{"applyAt":[1185.54,1239.66],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a15469540-13973bac38064d1e","8f44c0a142ab0d2-13bff5318a19c25d"]},"geometry":{"type":"LineString","coordinates":[[-83.6179773,32.9037601],[-83.6168774,32.9028669],[-83.6161721,32.902214900000004],[-83.61508500000001,32.901307800000005],[-83.6138901,32.900265000000005],[-83.6132851,32.8997477],[-83.61184130000001,32.8985027],[-83.6104035,32.8972764],[-83.6090691,32.8961595],[-83.6086633,32.8958117],[-83.60752400000001,32.894817100000004]]},"id":"8644c0a17ffffff-17bfb87130100dcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b7258e22c-13bff566e5ea97f4","8f44c0b7258bd13-17bde557c60b9b63"]},"geometry":{"type":"LineString","coordinates":[[-83.764725,32.826181500000004],[-83.76458620000001,32.826225300000004],[-83.764511,32.826311600000004],[-83.7645037,32.8264377],[-83.7646088,32.8265562],[-83.76474920000001,32.8265866]]},"id":"8a44c0b7258ffff-13bdc5b9ad9c0899"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1029b359-17fff2b623684d60","8f44c0b1393411b-17b6f43e2dc724f9"]},"geometry":{"type":"LineString","coordinates":[[-83.6413086,32.7687351],[-83.6413569,32.768660700000005],[-83.6413167,32.7685424],[-83.64080600000001,32.768545800000005],[-83.6406814,32.7686404]]},"id":"8744c0b10ffffff-179ef34a7d0df6ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"applyAt":[0.0,116.03],"maxSpeed":[45,"mph"]},{"applyAt":[116.03,236.09],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b110e1171-1396c7681777fffa","8f44c0b110c9a75-13b7d74cfcc609cb"]},"geometry":{"type":"LineString","coordinates":[[-83.6590463,32.777172400000005],[-83.659104,32.777703],[-83.659126,32.778098],[-83.65912800000001,32.778216],[-83.659108,32.778813],[-83.659097,32.779012],[-83.65908970000001,32.779298100000005]]},"id":"8844c0b111fffff-179ee7450682aa67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":[{"applyAt":[0.0,385.74],"value":"paved"}],"flags":[{"applyAt":[36.27,70.66],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a13c5e221-13b77d68bb950f55","8f44c0a13d530e4-13d77c79572a45c5"]},"geometry":{"type":"LineString","coordinates":[[-83.59143470000001,32.9202181],[-83.5914161,32.9205448],[-83.59139850000001,32.920854500000004],[-83.59127430000001,32.9223236],[-83.591184,32.923090300000005],[-83.59105170000001,32.923677500000004]]},"id":"8844c0a13dfffff-17ff7cd40a540971"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[733.69,857.41],"maxSpeed":[50,"mph"]},{"applyAt":[0.0,733.69],"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a16b4dd5a-13bfe216619adbed","8f44c0a140b3569-179ff419218a4217"]},"geometry":{"type":"LineString","coordinates":[[-83.59568900000001,32.89195],[-83.5960553,32.891387900000005],[-83.5965415,32.890764100000005],[-83.5968849,32.890377400000006],[-83.59740570000001,32.8898372],[-83.5979899,32.8892656],[-83.5992463,32.888049200000005],[-83.59981730000001,32.887494100000005],[-83.60055240000001,32.886781500000005],[-83.601419,32.885939]]},"id":"8744c0a14ffffff-17b7db534011adcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","flags":[{"applyAt":[129.93,170.36],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[65,"mph"]}]}},"subType":"road","connectors":["8f44c0a13d2c726-13bf7bc2ebe1dc6c","8f44c0a13c702ce-17b77c4b5d176c4a"]},"geometry":{"type":"LineString","coordinates":[[-83.5915083,32.9220355],[-83.5916071,32.9208669],[-83.59162900000001,32.9205028],[-83.59164460000001,32.9202272],[-83.59175760000001,32.918500900000005],[-83.5917472,32.917903800000005],[-83.5917266,32.9173139]]},"id":"8844c0a13dfffff-17ffebe89fe899c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.71776,32.9250847]},"id":"8f44c0a2ab5924c-17b7f8100bef806c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,638.73],"value":"paved"}],"flags":[{"applyAt":[488.52,523.46],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a284e2024-17deb4dacee6f015","8f44c0a2ab5924c-17b7f8100bef806c"]},"geometry":{"type":"LineString","coordinates":[[-83.719074,32.919649],[-83.718894,32.920001],[-83.718783,32.920181],[-83.718636,32.920479],[-83.71853,32.920752],[-83.71849300000001,32.920892],[-83.71847100000001,32.921017],[-83.718467,32.921093],[-83.718463,32.921193],[-83.718469,32.921377],[-83.718491,32.921529],[-83.71871900000001,32.922569],[-83.718788,32.922949],[-83.718793,32.923006],[-83.718783,32.923236],[-83.71874700000001,32.923411],[-83.71863400000001,32.92369],[-83.7185266,32.923894600000004],[-83.71834600000001,32.9241704],[-83.7180165,32.924669900000005],[-83.71776,32.9250847]]},"id":"8644c0a2fffffff-179ef62741d224f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0a3082345a-13d7f4a8b5fe9f8b","8f44c0a30823a28-13d6f3bd191dafea"]},"geometry":{"type":"LineString","coordinates":[[-83.64088790000001,32.852227400000004],[-83.64083500000001,32.852272500000005],[-83.64075050000001,32.8523131],[-83.6407116,32.8523176],[-83.64064590000001,32.852318700000005],[-83.6405172,32.852264600000005],[-83.64051090000001,32.852261]]},"id":"8b44c0a30823fff-13fff42fbaedcca9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a308446d4-1396ffa61ab4c325","8f44c0a308455b1-13b6ef0564bb606a"]},"geometry":{"type":"LineString","coordinates":[[-83.6428202,32.854846],[-83.6427845,32.8548059],[-83.642735,32.8547779],[-83.6426773,32.854765],[-83.6426179,32.8547688],[-83.6425631,32.8547887]]},"id":"8a44c0a30847fff-1397ef511c3a6dde"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[89.6,120.8],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a348d3cac-13b7fd1e91918ed4","8f44c0a341058ed-1396f00816f64d36"]},"geometry":{"type":"LineString","coordinates":[[-83.6424063,32.8351567],[-83.6430076,32.8349021],[-83.64310180000001,32.834864100000004],[-83.6431944,32.8348315],[-83.64327,32.834810600000004],[-83.6433531,32.8347939],[-83.64341730000001,32.8347847],[-83.6434866,32.834777],[-83.6435529,32.8347718],[-83.6435991,32.834770500000005]]},"id":"8744c0a34ffffff-1397ee99799279d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34b1e199-17fefdc4a4bb391a","8f44c0a34ba672a-13d6e2772609265b"]},"geometry":{"type":"LineString","coordinates":[[-83.647963,32.835665],[-83.6494148,32.8365005],[-83.649887,32.836759]]},"id":"8844c0a34bfffff-13bee01f3525075f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a26d36e-17bfeff7fb7b7e83","8f44c0b1b530692-13b6f09dee1db00e"]},"geometry":{"type":"LineString","coordinates":[[-83.6552738,32.8284199],[-83.6554799,32.8281014],[-83.65553200000001,32.8280119],[-83.65558460000001,32.8279056],[-83.655619,32.8278003],[-83.6556333,32.8277298],[-83.655642,32.8276546],[-83.655642,32.8275596],[-83.65563250000001,32.8274649],[-83.65561290000001,32.8273809],[-83.655579,32.827280800000004],[-83.6555393,32.8272058]]},"id":"8744c0b1bffffff-17b6cffbdae6bc3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,210.38],"value":"paved"}],"flags":[{"applyAt":[107.64,156.53],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2a155b16-17d7ffbe08dbf26f","8f44c0a2a12aaab-139e71db2bda4f6f"]},"geometry":{"type":"LineString","coordinates":[[-83.707195,32.920749],[-83.707278,32.920879],[-83.707508,32.921326],[-83.7076522,32.921638800000004],[-83.707841,32.922049900000005],[-83.7080608,32.922498700000006]]},"id":"8844c0a2a1fffff-17bf70c6279cea1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[148.19,190.86],"value":"paved"}],"flags":[{"applyAt":[148.19,190.86],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[190.86,629.27],"maxSpeed":[70,"mph"]},{"applyAt":[0.0,190.86],"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31a646dd-13deb8c097fd46ce","8f44c0a31b16849-17fec23ba65e3fcc"]},"geometry":{"type":"LineString","coordinates":[[-83.6611654,32.8728004],[-83.6615196,32.8731771],[-83.6620869,32.873885900000005],[-83.6623577,32.874195400000005],[-83.66277360000001,32.8746969],[-83.663212,32.8752305],[-83.66414900000001,32.876348],[-83.6650487,32.877431200000004]]},"id":"8844c0a31bfffff-139fbd7968e0c03f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[2439.27,2486.07],"value":"paved"}],"flags":[{"applyAt":[2439.27,2486.07],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a31a646dd-13deb8c097fd46ce","8f44c0a05c008db-1796eb559bd1fc3c"]},"geometry":{"type":"LineString","coordinates":[[-83.6650487,32.877431200000004],[-83.66692400000001,32.879609],[-83.667742,32.880564],[-83.668062,32.88093],[-83.668299,32.881224],[-83.670663,32.884058],[-83.672014,32.885751],[-83.6728842,32.886769300000005],[-83.67371750000001,32.887775600000005],[-83.674604,32.888852],[-83.67546940000001,32.8898966],[-83.6759562,32.890503],[-83.6770163,32.8918417],[-83.6779051,32.892958],[-83.67997650000001,32.8954602],[-83.6802662,32.8958042],[-83.6811819,32.8969072],[-83.6819301,32.897811600000004],[-83.68280370000001,32.8988622],[-83.6833574,32.899531200000006],[-83.6836519,32.8998766]]},"id":"8544c0a3fffffff-13b7b1f8874666b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"applyAt":[141.11,954.16],"maxSpeed":[70,"mph"]},{"applyAt":[0.0,141.11],"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a961b6b-13d6ed3aad35fa20","8f44c0b1aa0686d-17b6fef9db04ed10"]},"geometry":{"type":"LineString","coordinates":[[-83.6559459,32.8175687],[-83.6559519,32.817021600000004],[-83.6559606,32.8162964],[-83.65597860000001,32.814792700000005],[-83.6559876,32.8137269],[-83.6559982,32.8132729],[-83.6560168,32.812502900000005],[-83.6560362,32.8121815],[-83.6560797,32.811718400000004],[-83.6561471,32.811193],[-83.65623740000001,32.8106676],[-83.65629270000001,32.8104026],[-83.656356,32.810109600000004],[-83.6564489,32.809741800000005],[-83.65654980000001,32.8093795],[-83.6566614,32.809015]]},"id":"8744c0b1affffff-13b7fe9cc9505d76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","flags":[{"applyAt":[672.79,734.75],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c4db894-17d6f7dcfb6a0a88","8f44c0b1a961b6b-13d6ed3aad35fa20"]},"geometry":{"type":"LineString","coordinates":[[-83.6566614,32.809015],[-83.6568055,32.808588900000004],[-83.656963,32.808161600000005],[-83.65764080000001,32.806296200000006],[-83.65876560000001,32.803214600000004],[-83.658957,32.8026798],[-83.65935950000001,32.8015774],[-83.6595994,32.800965500000004],[-83.65975110000001,32.800637],[-83.66005080000001,32.8000737],[-83.6603461,32.7995788],[-83.660522,32.7993167],[-83.66070420000001,32.799070900000004],[-83.66114280000001,32.7985121],[-83.66143890000001,32.7981732],[-83.6616439,32.7979532],[-83.6619692,32.7976338],[-83.66231540000001,32.797322300000005],[-83.6625739,32.7971023],[-83.66356780000001,32.796306900000005],[-83.66385290000001,32.7960717],[-83.6643124,32.7956467],[-83.66448820000001,32.7954722],[-83.6646795,32.7952626],[-83.6648529,32.7950584],[-83.66515170000001,32.794682200000004],[-83.6654129,32.7943012]]},"id":"8644c0b1fffffff-179ec467107dac8a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b034a8c81-17ffffba4dab3b74","8f44c0b03581315-1397ff71a4a211b1"]},"geometry":{"type":"LineString","coordinates":[[-83.688406,32.785532],[-83.6884351,32.785219500000004],[-83.6884837,32.7848586],[-83.6884948,32.7839151],[-83.68852220000001,32.782937100000005]]},"id":"8844c0b035fffff-17d7ff898efd37e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d309616-13d7e40e8c4d4cf7","8f44c0b1d30dd06-13dee39f44aafa61"]},"geometry":{"type":"LineString","coordinates":[[-83.69974,32.812905],[-83.69978880000001,32.8126808],[-83.69991800000001,32.812123]]},"id":"8a44c0b1d30ffff-13df63d7987bda81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e35090a-17be796fb72dd00b","8f44c0b0e266065-17b7e787e56143ed"]},"geometry":{"type":"LineString","coordinates":[[-83.7237509,32.808154300000005],[-83.72380000000001,32.808585],[-83.723844,32.808784],[-83.723903,32.808965],[-83.723966,32.809115000000006],[-83.72411070000001,32.8094315],[-83.72417490000001,32.809548400000004],[-83.72432660000001,32.8098248],[-83.7244055,32.8099687],[-83.72447580000001,32.8100967],[-83.7245314,32.810198]]},"id":"8844c0b0e3fffff-13bef8b08ba21427"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0baa580732-139fff83f7eb0ce9","8f44c0baa582505-17fff0d397e4c86d"]},"geometry":{"type":"LineString","coordinates":[[-83.5705281,32.808516600000004],[-83.5704534,32.8085068],[-83.5704278,32.8085073],[-83.57036240000001,32.808508800000006],[-83.5702864,32.8085102],[-83.5701779,32.8085107],[-83.5700985,32.808508800000006],[-83.56999110000001,32.808491100000005]]},"id":"8a44c0baa587fff-1397e02bf3aa23c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0baa582505-17fff0d397e4c86d","8f44c0baa595691-17d7e1c771b1764f"]},"geometry":{"type":"LineString","coordinates":[[-83.56999110000001,32.808491100000005],[-83.56982760000001,32.8084578],[-83.5697737,32.8084459],[-83.5697202,32.8084322],[-83.56960090000001,32.8084012]]},"id":"8944c0baa5bffff-17f7f14de8d2c78e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[35.69,75.4],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0ba92c1a19-17b7950ae83eabd4","8f44c0ba92cd926-179ff36a637c650f"]},"geometry":{"type":"LineString","coordinates":[[-83.627913,32.833739],[-83.627885,32.83372],[-83.6275971,32.8335591],[-83.62734400000001,32.833408],[-83.6272466,32.8333577]]},"id":"8944c0ba92fffff-17b7f43a2dca35be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04ab24f5-1396fbc38fe5a25a","8f44c0b0414a988-13dfbe4e03b53b95"]},"geometry":{"type":"LineString","coordinates":[[-83.716244,32.7437934],[-83.7158874,32.7436699],[-83.7158562,32.7436597],[-83.7154313,32.7435084],[-83.7152032,32.743497000000005]]},"id":"8a44c0b0414ffff-139efd05d76cdafe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9a90d0b-17ffb37f0e5be49e","8f44c0ba9109495-17ff3aba44fcb54e"]},"geometry":{"type":"LineString","coordinates":[[-83.62788,32.823617],[-83.627617,32.823445],[-83.625476,32.822159],[-83.625422,32.822114],[-83.625369,32.822049],[-83.625348,32.821982000000006],[-83.62533900000001,32.821935],[-83.62533900000001,32.821894],[-83.62534600000001,32.821857],[-83.625383,32.821779],[-83.62544100000001,32.8217],[-83.625622,32.821483],[-83.625786,32.821295],[-83.62568200000001,32.821219],[-83.625089,32.820863],[-83.62491800000001,32.820749]]},"id":"8844c0ba91fffff-139f37bb10eb65d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[161.01,282.04],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6cd35b-17b79af580cdacb8","8f44c0b088b4c68-13fefb0b3b9a5f57"]},"geometry":{"type":"LineString","coordinates":[[-83.7361997,32.8098991],[-83.73622180000001,32.808535],[-83.7362212,32.8084474],[-83.736226,32.808264],[-83.7362344,32.8073561]]},"id":"8744c0b08ffffff-13d64aff2f478fb8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,48.36],"maxSpeed":[45,"mph"]},{"applyAt":[48.36,88.72],"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b83468615-17fec2bde92990be","8f44c0b837344ed-17d9c11d0a4dfa16"]},"geometry":{"type":"LineString","coordinates":[[-83.530552,32.824182],[-83.5301824,32.8238774],[-83.52988500000001,32.823614]]},"id":"8744c0b83ffffff-179a11ef06577a35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[154.53,227.86],"value":"paved"}],"restrictions":{"speedLimits":[{"applyAt":[0.0,154.53],"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a2a09e-17ff961b17157e80","8f44c0ba9b5100d-139762090a3fc3ae"]},"geometry":{"type":"LineString","coordinates":[[-83.6333647,32.8234233],[-83.634117,32.822522],[-83.63423800000001,32.822394],[-83.63429400000001,32.82235],[-83.634366,32.822336],[-83.63444100000001,32.822336],[-83.63455400000001,32.822381],[-83.634659,32.822443],[-83.63469470000001,32.822464100000005],[-83.63503200000001,32.822663]]},"id":"8844c0ba9bfffff-13bf543a45043ab6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345aac6a-13b79e3742256c69","8f44c0a34434308-1397cafa25047b72"]},"geometry":{"type":"LineString","coordinates":[[-83.6300428,32.8353897],[-83.63065590000001,32.835797],[-83.6311283,32.8360803],[-83.6313348,32.836147000000004],[-83.63136940000001,32.8361548]]},"id":"8844c0a345fffff-13bffca22ab350fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a116960-17d6f6aa7d83e0a0","8f44c0b1ac4dc8c-13d7e6db8c9acef1"]},"geometry":{"type":"LineString","coordinates":[[-83.6462425,32.8135439],[-83.646254,32.813297],[-83.64625500000001,32.813049],[-83.646248,32.812958],[-83.64622800000001,32.812877],[-83.646164,32.812725]]},"id":"8744c0b1affffff-13dff6ac957f19f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[33.77,66.92],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b02a1e-13f7d521c18feec3","8f44c0a36b150a0-1797768b663fd222"]},"geometry":{"type":"LineString","coordinates":[[-83.62663140000001,32.8410998],[-83.626923,32.841279],[-83.62721,32.841454]]},"id":"8944c0a36b3ffff-139755d6b8c86d4d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac55051-17ffcd6e580d919d","8f44c0b0ac54a50-17bf5ddce3876b01"]},"geometry":{"type":"LineString","coordinates":[[-83.7090075,32.817302000000005],[-83.7089332,32.817180900000004],[-83.7088306,32.8169905]]},"id":"8a44c0b0ac57fff-179f6da6e00d2799"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a318db79c-179ecf5ada4b9f15","8f44c0a3117490b-17becfcd4c620da2"]},"geometry":{"type":"LineString","coordinates":[[-83.65579070000001,32.8732652],[-83.6557786,32.8732042],[-83.65573950000001,32.8731517],[-83.65567940000001,32.8731158],[-83.65560760000001,32.873102]]},"id":"8a44c0a318dffff-17dfdf8676d1e23b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5388ea70-17f5cfa6faf3eea9","8f44c0b5388ca9a-17b7eece60e2be83"]},"geometry":{"type":"LineString","coordinates":[[-83.760873,32.886589400000005],[-83.7608601,32.8865764],[-83.76081140000001,32.886533],[-83.7607466,32.8865086],[-83.76067570000001,32.8865068],[-83.7606093,32.886528000000006],[-83.7605577,32.8865688],[-83.7605286,32.8866232],[-83.76052650000001,32.8866828]]},"id":"8a44c0b5388ffff-1795cf4c080dbdcf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b502dd051-17b7bed1a74d9317","8f44c0b502dd61e-17f7ff328f66f383"]},"geometry":{"type":"LineString","coordinates":[[-83.7674214,32.882288],[-83.767384,32.882287600000005],[-83.7673305,32.8823056],[-83.76728920000001,32.882339300000005],[-83.7672665,32.8823838],[-83.76726640000001,32.882391000000005]]},"id":"8b44c0b502ddfff-17bfbf0a6e27869a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060ea9a-139df1fcdccfbc50","8f44c0b5060b782-1797d2073c711cbf"]},"geometry":{"type":"LineString","coordinates":[[-83.75955330000001,32.8791601],[-83.7595622,32.879041],[-83.7595699,32.8783571]]},"id":"8a44c0b5060ffff-139df20009de4f4f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5060c682-139ff17bec6a7dec","8f44c0b506e5ac6-1797f1889fef4999"]},"geometry":{"type":"LineString","coordinates":[[-83.7597559,32.879570300000005],[-83.7597678,32.879043700000004],[-83.7597762,32.878359800000005]]},"id":"8844c0b507fffff-179df1814f962722"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5064dd4d-13bffa04ac49b19c","8f44c0b5064c660-13b7fafd6f96e388"]},"geometry":{"type":"LineString","coordinates":[[-83.7628342,32.8806571],[-83.76284050000001,32.8803603],[-83.76281850000001,32.880284],[-83.7627782,32.8802606],[-83.76259010000001,32.8802564],[-83.76247740000001,32.8802992],[-83.76246,32.8803132],[-83.7624468,32.880330400000005],[-83.7624394,32.880352800000004],[-83.76243620000001,32.8806515]]},"id":"8944c0b5067ffff-179dea7bf899a06f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5061b2cb-179dd4ab4517a15b","8f44c0b506f56c4-179dd57297833a2a"]},"geometry":{"type":"LineString","coordinates":[[-83.75815270000001,32.879578],[-83.7581789,32.879596400000004],[-83.7584159,32.8795979],[-83.75845860000001,32.8795877],[-83.7584805,32.8795565],[-83.75847990000001,32.879194600000005],[-83.75847160000001,32.8791944]]},"id":"8944c0b506fffff-17dfd4d639da5416"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5380b8ee-17b5d7287d30d72c","8f44c0b53850da3-17f7e5f7875f112e"]},"geometry":{"type":"LineString","coordinates":[[-83.76449360000001,32.8871022],[-83.76448090000001,32.8865773],[-83.7640057,32.8865797]]},"id":"8844c0b539fffff-17f5c643edba9de8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[868.22,881.01],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0bab24ccf4-17ffd60c9a6cb461","8f44c0b8d959cac-139ff2f949784090"]},"geometry":{"type":"LineString","coordinates":[[-83.6071735,32.837957700000004],[-83.607112,32.837953],[-83.6069873,32.8379458],[-83.60695700000001,32.837944],[-83.60688900000001,32.837938],[-83.606493,32.837905],[-83.60570200000001,32.837877],[-83.60491,32.837909],[-83.604636,32.837932],[-83.604252,32.837998],[-83.60396800000001,32.838065],[-83.6036905,32.8381418],[-83.603632,32.838158],[-83.60340400000001,32.838225],[-83.60321900000001,32.838285],[-83.602715,32.838481],[-83.602034,32.838847],[-83.60148600000001,32.839185],[-83.601196,32.839412],[-83.600808,32.839748],[-83.60008300000001,32.840595],[-83.599745,32.841028],[-83.599738,32.84105],[-83.59968400000001,32.841229000000006],[-83.59970600000001,32.841298],[-83.59974340000001,32.8413534],[-83.599772,32.841392],[-83.5997926,32.8414183],[-83.5998199,32.8414489],[-83.599953,32.841572],[-83.599984,32.841597],[-83.60016800000001,32.841749],[-83.600409,32.841907],[-83.60052400000001,32.841977],[-83.600784,32.842091],[-83.601184,32.842216],[-83.6018796,32.842340300000004]]},"id":"8544c0bbfffffff-13d7d1655418ea67"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac29224-13b7cd41dbfbd562","8f44c0b0ad4a346-13d778c337033d8a"]},"geometry":{"type":"LineString","coordinates":[[-83.7109197,32.815771500000004],[-83.71091940000001,32.815862700000004],[-83.71091080000001,32.8159021],[-83.71087130000001,32.815918700000005],[-83.70908010000001,32.8159136],[-83.7090787,32.815756]]},"id":"8844c0b0adfffff-1396fb0ac336aebb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d6004c6-179e7f2c70836b97","8f44c0b1d61dd60-1796ff436cff2982"]},"geometry":{"type":"LineString","coordinates":[[-83.6885962,32.8142696],[-83.6884777,32.8141296],[-83.6883701,32.8139253],[-83.6883907,32.8136211],[-83.6886329,32.813632500000004]]},"id":"8944c0b1d63ffff-17b67f9c6509fc5e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0acac591-13bfd6ed19443b0e","8f44c0b0aca181d-13ded6ec4bf3c00b"]},"geometry":{"type":"LineString","coordinates":[[-83.70511830000001,32.8155548],[-83.7049293,32.815554500000005],[-83.7049301,32.815169000000004],[-83.7051196,32.8151693]]},"id":"8944c0b0acbffff-13d75745a91182a8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[0.0,19.44],"value":"paved"}]},"subType":"road","connectors":["8f44c0b1d749442-17b6f47edcac6183","8f44c0b1d292b42-13bef4211ecbf3e5"]},"geometry":{"type":"LineString","coordinates":[[-83.6931567,32.815127700000005],[-83.6929496,32.8151163],[-83.69300670000001,32.814295900000005]]},"id":"8844c0b1d7fffff-17dff4873b55e474"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a11c71a-179fe71373933dd1","8f44c0b0a11e313-17df67cc6f9b63da"]},"geometry":{"type":"LineString","coordinates":[[-83.7116105,32.820396200000005],[-83.71159200000001,32.820506],[-83.71131460000001,32.820501]]},"id":"8a44c0b0a11ffff-17d7575b39a66d9f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d2cc62c-17bf78a13b439488","8f44c0b1d2e8651-1796672882687e17"]},"geometry":{"type":"LineString","coordinates":[[-83.69786690000001,32.818200700000006],[-83.69799090000001,32.8182269],[-83.6983292,32.8182441],[-83.69846960000001,32.8177216]]},"id":"8944c0b1d2fffff-17fee7abc82acd16"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19805a50-17de72c70f0e4b01","8f44c0b19823330-17d7f2c70f2adfb6"]},"geometry":{"type":"LineString","coordinates":[[-83.6937104,32.8211395],[-83.6937784,32.8211725],[-83.6939856,32.8211761],[-83.69406210000001,32.8211324],[-83.6940611,32.8207297],[-83.6937104,32.8207225]]},"id":"8944c0b1983ffff-17f67231a5769f5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[81.44,103.58],"value":"paved"}]},"subType":"road","connectors":["8f44c0b1804e01e-17ffe50c2434f11c","8f44c0b183364a2-13b6e26995fdb09f"]},"geometry":{"type":"LineString","coordinates":[[-83.67419910000001,32.81513],[-83.67332970000001,32.8151117],[-83.6732123,32.8151116],[-83.67311980000001,32.8150484]]},"id":"8944c0b1807ffff-13b7f3c05967205d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ecdd561-13fff4f4cdad5092","8f44c0a2ecdc2a6-139ed58826a5b6e4"]},"geometry":{"type":"LineString","coordinates":[[-83.70568940000001,32.8984456],[-83.70592830000001,32.898449500000005],[-83.70592520000001,32.898585000000004]]},"id":"8a44c0a2ecdffff-13bfd522d5c8c830"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e57582a-1797562d1ba4df76","8f44c0a2e546922-17fed6c17b98999a"]},"geometry":{"type":"LineString","coordinates":[[-83.7054255,32.8994641],[-83.7053925,32.900211],[-83.7053722,32.900244],[-83.70532010000001,32.900246200000005],[-83.7051881,32.9002445]]},"id":"8944c0a2e57ffff-17bed647519a6ab3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[181.34,238.15],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b8d05e180-13b7e2f44ee08c3a","8f44c0b8d72dc95-139f6c9cc8376b3b"]},"geometry":{"type":"LineString","coordinates":[[-83.59533400000001,32.851596],[-83.59417400000001,32.852029],[-83.593959,32.852105],[-83.5938857,32.8521373],[-83.5937655,32.8521701],[-83.5936432,32.852195900000005],[-83.5935451,32.8522151],[-83.592945,32.852291300000005],[-83.592538,32.8523396],[-83.5923494,32.8523561],[-83.5921457,32.852365],[-83.59189950000001,32.852363600000004],[-83.591378,32.852344]]},"id":"8744c0b8dffffff-139fe7b5c4995580"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b1a6e3459-1797f262c67c79a0","8f44c0b1a6d2caa-17d7f8360a568f91"]},"geometry":{"type":"LineString","coordinates":[[-83.63905600000001,32.826856],[-83.639137,32.826687],[-83.63918500000001,32.826608],[-83.639263,32.826526],[-83.639347,32.826451],[-83.63937100000001,32.826433],[-83.63946100000001,32.826366],[-83.63963600000001,32.826275],[-83.639774,32.826227],[-83.640005,32.826175],[-83.640241,32.82613],[-83.64045700000001,32.826075],[-83.640658,32.826054],[-83.64144200000001,32.826524]]},"id":"8844c0b1a7fffff-13fef57366cc8985"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,135.14],"value":"paved"}],"flags":[{"applyAt":[59.7,135.14],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[59.7,135.14],"maxSpeed":[35,"mph"]},{"applyAt":[0.0,59.7],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bca1322-13b7c9ac806cf344","8f44c0b1bcb1296-139ffd32424b3a0f"]},"geometry":{"type":"LineString","coordinates":[[-83.65811760000001,32.8257556],[-83.65782560000001,32.8257494],[-83.65748020000001,32.8257417],[-83.6566748,32.825724300000005]]},"id":"8944c0b1bcbffff-1397cb6f6f53186b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d5605c-139ef98e85631ea8","8f44c0a34d704e0-13f6f77a8d781b5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6385048,32.8296397],[-83.638687,32.829549],[-83.638834,32.829462],[-83.638997,32.829335],[-83.63919,32.829148],[-83.639356,32.828964]]},"id":"8944c0a34d7ffff-13def8744996e300"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a6dc214-17d7f4ceca244074","8f44c0a34d70c52-13b6f7302f290710"]},"geometry":{"type":"LineString","coordinates":[[-83.639475,32.828833],[-83.6398376,32.828409300000004],[-83.640046,32.828166],[-83.64014,32.828055],[-83.64045,32.827682]]},"id":"8744c0a34ffffff-13bff5fe46d839f8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,2208.03],"value":"paved"},{"applyAt":[5204.33,5261.1],"value":"paved"}],"flags":[{"applyAt":[2120.75,2208.03],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b50390160-1795e5632027751d","8f44c0b0bbb3cea-17f6fdfd74b15644"]},"geometry":{"type":"LineString","coordinates":[[-83.76473100000001,32.8759134],[-83.76250870000001,32.873887],[-83.7616244,32.873074800000005],[-83.7596967,32.871298800000005],[-83.7583824,32.8700941],[-83.75799690000001,32.8697375],[-83.75752010000001,32.869299600000005],[-83.7561472,32.8680368],[-83.7550575,32.8670318],[-83.75138410000001,32.8636509],[-83.749407,32.8618266],[-83.7487727,32.8612497],[-83.7472845,32.8598757],[-83.7467292,32.859352300000005],[-83.7464097,32.859049],[-83.7459625,32.858577600000004],[-83.7455678,32.858131400000005],[-83.7452308,32.8577202],[-83.74495280000001,32.857359200000005],[-83.7447041,32.8570245],[-83.7443786,32.8565496],[-83.74395410000001,32.8558655],[-83.7436806,32.8553635],[-83.74342850000001,32.854857],[-83.742872,32.8536595],[-83.7424282,32.8526967],[-83.7421741,32.8521372],[-83.74085740000001,32.8492813],[-83.73946910000001,32.8462625],[-83.73898870000001,32.8452186],[-83.7386098,32.8444013],[-83.7383824,32.843903000000005],[-83.738089,32.843268800000004],[-83.73784810000001,32.8427479],[-83.73746560000001,32.841913600000005],[-83.73724820000001,32.841447800000005],[-83.73707180000001,32.8410469],[-83.73663180000001,32.8401052],[-83.73617610000001,32.8391163],[-83.7358368,32.8383677],[-83.73521330000001,32.8370192],[-83.73499290000001,32.836542300000005]]},"id":"8444c0bffffffff-139ffe80af26b202"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b5038a4b4-17d5e2bd548e4927","8f44c0b5055c5a4-17ddd6d432317b8a"]},"geometry":{"type":"LineString","coordinates":[[-83.7575869,32.8696521],[-83.7584375,32.8704058],[-83.7592066,32.8711138],[-83.75992380000001,32.8717723],[-83.76051000000001,32.8723134],[-83.7618283,32.873522900000005],[-83.7644619,32.8759528],[-83.76491990000001,32.876378],[-83.7658155,32.8772182]]},"id":"8744c0b50ffffff-1795fcc1adcc9d7a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b9a28b3-13dfd59b720b564e","8f44c0b085216d2-13bf203506f984a7"]},"geometry":{"type":"LineString","coordinates":[[-83.7318729,32.828690800000004],[-83.7317805,32.828340000000004],[-83.7313774,32.8267024],[-83.73116040000001,32.825832000000005],[-83.73098350000001,32.825127200000004],[-83.73079,32.8243433],[-83.73012410000001,32.8216655],[-83.7297983,32.8203501],[-83.7295665,32.819382600000004],[-83.7291309,32.8176867],[-83.72890600000001,32.8169151],[-83.7287347,32.816377200000005],[-83.7285207,32.81575],[-83.72811010000001,32.8146578],[-83.7279556,32.8142816],[-83.7278198,32.8139564],[-83.7275312,32.8133106]]},"id":"8644c0b0fffffff-17f65a7496fc4e26"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,3355.7],"value":"paved"}],"flags":[{"applyAt":[2970.19,3056.56],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[70,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bb95225-17960dcee0f4984c","8f44c0b5620bccd-1797f64834dfe7b0"]},"geometry":{"type":"LineString","coordinates":[[-83.7350674,32.8371968],[-83.73580600000001,32.8387984],[-83.73633960000001,32.8399531],[-83.7366738,32.8406818],[-83.73692790000001,32.841239],[-83.738079,32.8437289],[-83.7382996,32.8442145],[-83.73870760000001,32.845100200000005],[-83.73920000000001,32.846164800000004],[-83.7405997,32.849207400000004],[-83.7419967,32.8522466],[-83.7428584,32.8541114],[-83.7431809,32.854819500000005],[-83.7435086,32.8554745],[-83.74372290000001,32.8558587],[-83.7439655,32.856270900000005],[-83.7442269,32.8566808],[-83.74443760000001,32.8569942],[-83.7449375,32.857673500000004],[-83.7452562,32.8580671],[-83.7456353,32.8585091],[-83.7459529,32.8588554],[-83.746131,32.859041000000005],[-83.74635470000001,32.859267],[-83.7466905,32.859588800000004],[-83.7484728,32.861237100000004],[-83.74909650000001,32.861811100000004],[-83.750281,32.8628943],[-83.7512573,32.8637985]]},"id":"8444c0bffffffff-13d5fc8ff26a5b06"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a34bad462-17d6ff1eb1a8a823","8f44c0a3438c86c-17b7ed4fa92b32b2"]},"geometry":{"type":"LineString","coordinates":[[-83.6435206,32.8442226],[-83.64369450000001,32.8439725],[-83.6439186,32.8436456],[-83.6441964,32.8432909],[-83.6444615,32.8429663],[-83.6449365,32.842371400000005],[-83.64552210000001,32.8416422],[-83.6458796,32.8411987],[-83.64652140000001,32.8404021],[-83.64716510000001,32.8396015],[-83.6484542,32.8379951],[-83.64933330000001,32.8368999]]},"id":"8744c0a34ffffff-17bff6438acf4e47"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[63.36,992.78],"value":"paved"}],"flags":[{"applyAt":[20.59,63.36],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a34bad462-17d6ff1eb1a8a823","8f44c0b1b511848-13d6f095b4debb31"]},"geometry":{"type":"LineString","coordinates":[[-83.64933330000001,32.8368999],[-83.64945940000001,32.836747800000005],[-83.6497197,32.8364309],[-83.65052200000001,32.835462],[-83.651447,32.834319],[-83.65312800000001,32.832215000000005],[-83.6543176,32.830702200000005],[-83.6548418,32.8300488],[-83.6550546,32.8297876],[-83.65528690000001,32.8294927]]},"id":"8444c0bffffffff-17d6f7d1de6368fb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,842.6],"value":"paved"}],"flags":[{"applyAt":[842.6,885.57],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1b5adb96-17b7f2335e293f7a","8f44c0a34b8c22a-17d7e12e107e7f5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6546251,32.830057000000004],[-83.6540961,32.830724700000005],[-83.65306100000001,32.831958],[-83.6495859,32.836351400000005],[-83.6493303,32.8366732],[-83.64848950000001,32.837692600000004]]},"id":"8444c0bffffffff-17f6d9b28535c0bf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway","surface":[{"applyAt":[0.0,103.52],"value":"paved"}],"flags":[{"applyAt":[103.52,148.66],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[60,"mph"]},{"minSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aaea8c2-17fffe6754fff3c5","8f44c0b1aa0686d-17b6fef9db04ed10"]},"geometry":{"type":"LineString","coordinates":[[-83.6561803,32.8211615],[-83.65612200000001,32.820961100000005],[-83.6560858,32.8207991],[-83.65603,32.8205277],[-83.6559816,32.8202439],[-83.6559424,32.8198382],[-83.65592980000001,32.819605],[-83.65592310000001,32.819387],[-83.6559265,32.8187974],[-83.6559335,32.8183712],[-83.6559459,32.8175687]]},"id":"8844c0b1abfffff-139eeee9b0769d3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a28ac66e1-17b6997b7d6aa29c","8f44c0a28aec44c-17df1522b77dd68a"]},"geometry":{"type":"LineString","coordinates":[[-83.7368393,32.9220105],[-83.7368447,32.9219473],[-83.7379901,32.921210300000006],[-83.73827770000001,32.9215873],[-83.7384593,32.9216254],[-83.7385653,32.9217779],[-83.7386197,32.9218737]]},"id":"8944c0a28afffff-1797873ce8ff8611"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04b58c42-13d77a17b13adf5c","8f44c0b04b4c629-13bf76a430e2ef0b"]},"geometry":{"type":"LineString","coordinates":[[-83.7234821,32.744123900000005],[-83.7239607,32.744103],[-83.7248957,32.7440629]]},"id":"8944c0b04b7ffff-13d6785dfaf96308"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b236b6863-139f2406686d935b","8f44c0b236a656e-139f61748f3dc62b"]},"geometry":{"type":"LineString","coordinates":[[-83.72702000000001,32.74421],[-83.72677900000001,32.744141],[-83.726605,32.7441],[-83.7264349,32.7440681],[-83.7262987,32.7440511],[-83.7259674,32.7440336]]},"id":"8944c0b236bffff-13d7b2bac5edcaf6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e254651-17f6ebaf3e153260","8f44c0b0e20384a-1396eea4c1566f38"]},"geometry":{"type":"LineString","coordinates":[[-83.72283010000001,32.8111182],[-83.72273320000001,32.811],[-83.72230610000001,32.8104472],[-83.722221,32.810336],[-83.721767,32.809744],[-83.72165000000001,32.809592],[-83.721618,32.80955]]},"id":"8844c0b0e3fffff-17fffd2b69d1965a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e260ce6-17973710348b357b","8f44c0b0e25594e-17dfea3666248543"]},"geometry":{"type":"LineString","coordinates":[[-83.723433,32.81111],[-83.72436330000001,32.8105855],[-83.7245934,32.8104558],[-83.7247229,32.8103795]]},"id":"8944c0b0e27ffff-17fe38a2eb359b91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e254651-17f6ebaf3e153260","8f44c0b0e266695-17f6682a8f821268"]},"geometry":{"type":"LineString","coordinates":[[-83.7242712,32.810323600000004],[-83.72416290000001,32.8103811],[-83.7233422,32.8108409],[-83.72302020000001,32.8110166],[-83.72283010000001,32.8111182]]},"id":"8944c0b0e27ffff-17ff79ec6470500a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5662a0dd-13d7fbcf6b22e916","8f44c0a25a6d51e-17978a4d040b6bf5"]},"geometry":{"type":"LineString","coordinates":[[-83.73650400000001,32.862988],[-83.737088,32.86303],[-83.73745600000001,32.863045],[-83.73769300000001,32.863045],[-83.738,32.86302],[-83.738709,32.86293],[-83.73941900000001,32.862828],[-83.739722,32.862748],[-83.7419946,32.8620079],[-83.742091,32.861978],[-83.74243940000001,32.8618593]]},"id":"8644c0b57ffffff-17b622f83bfc2a3d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b523220ae-17d5f328a3a15887","8f44c0b522e92f1-13bdf383e0f20997"]},"geometry":{"type":"LineString","coordinates":[[-83.74583700000001,32.887213700000004],[-83.74585300000001,32.886243],[-83.745867,32.885679],[-83.74587310000001,32.8853584],[-83.745883,32.8848342],[-83.74589300000001,32.8842763],[-83.745918,32.8828857],[-83.74593,32.882145200000004],[-83.74594180000001,32.8816828],[-83.74597530000001,32.880377200000005],[-83.74598300000001,32.879669400000004]]},"id":"8844c0b523fffff-17f7f356a9f1a203"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dce56a5-13fffd150389f862","8f44c0a2dc8b84c-13bdf43b09b96b42"]},"geometry":{"type":"LineString","coordinates":[[-83.748472,32.9076147],[-83.7462409,32.907704100000004],[-83.74554400000001,32.907714]]},"id":"8844c0a2ddfffff-139ff0a7ec2fa68b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":[{"applyAt":[0.0,95.76],"value":"paved"}],"flags":[{"applyAt":[95.76,134.33],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b5348e259-17fff2cccabb4429","8f44c0a2ca5d621-13dff279a871ac71"]},"geometry":{"type":"LineString","coordinates":[[-83.746263,32.9012146],[-83.7462453,32.900351300000004],[-83.74624200000001,32.900211],[-83.74623700000001,32.900003600000005],[-83.74614700000001,32.896281],[-83.7461308,32.8954864],[-83.7460989,32.8939273],[-83.746098,32.893883],[-83.746097,32.893422],[-83.74613000000001,32.892876]]},"id":"8444c0bffffffff-13bdf2b3bb3aebc1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a28231c1c-17f7737301c0c3b2","8f44c0a28233cd6-17d7b4bc0bb7e53f"]},"geometry":{"type":"LineString","coordinates":[[-83.7327568,32.9250166],[-83.7323461,32.9249979],[-83.7322968,32.925029900000006],[-83.7322304,32.9251643]]},"id":"8a44c0a28237fff-17ff942c83e0f51a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2820a98e-13bfd2359ef697a8","8f44c0a2820d98c-13b7bfda32ab10d4"]},"geometry":{"type":"LineString","coordinates":[[-83.7332647,32.9269437],[-83.73340320000001,32.9269023],[-83.7335953,32.9268467],[-83.7337986,32.926796700000004],[-83.73400570000001,32.9267611],[-83.7342301,32.9267259]]},"id":"8a44c0a2820ffff-13de9109fba81cbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a32e655-13de47db2d63f750","8f44c0a2aad3773-13bf6577918400a0"]},"geometry":{"type":"LineString","coordinates":[[-83.711291,32.9280448],[-83.7118672,32.9278975],[-83.7122695,32.9277686]]},"id":"8744c0a2affffff-139e66a815702bcd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[265.51,289.01],"value":"paved"}]},"subType":"road","connectors":["8f44c0a2bdb5af3-17f7fb97d4891386","8f44c0a2aa73093-17debb9e30126aba"]},"geometry":{"type":"LineString","coordinates":[[-83.7163139,32.9284959],[-83.71636720000001,32.9284107],[-83.7164041,32.9281753],[-83.7164288,32.9278624],[-83.7164565,32.9275443],[-83.7165705,32.9272599],[-83.7166198,32.9270038],[-83.71661060000001,32.9267504],[-83.7165459,32.9265099],[-83.7164036,32.9261621],[-83.71635110000001,32.9260358],[-83.71630370000001,32.9259688]]},"id":"8744c0a2affffff-13de3b2f850964f5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa436f4-13de7a3bab855be3","8f44c0a2bda345d-17967a8e7847700c"]},"geometry":{"type":"LineString","coordinates":[[-83.71687100000001,32.9272036],[-83.71681500000001,32.927567],[-83.71677000000001,32.928049],[-83.71673770000001,32.928477],[-83.7167385,32.9291332]]},"id":"8744c0a2affffff-17b7fa7790672706"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab5924c-17b7f8100bef806c","8f44c0a2aa62815-17deb8d49e4453b2"]},"geometry":{"type":"LineString","coordinates":[[-83.71776,32.9250847],[-83.7174909,32.9255106],[-83.71744550000001,32.9255912]]},"id":"8a44c0a2aa67fff-17bfb8735e07db33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aa436f4-13de7a3bab855be3","8f44c0a2aa6212a-179678f1ce5e5f70"]},"geometry":{"type":"LineString","coordinates":[[-83.71739880000001,32.9256772],[-83.717332,32.925798],[-83.7171835,32.9261244],[-83.71717000000001,32.926156],[-83.717045,32.926502],[-83.716969,32.926774],[-83.71687100000001,32.9272036]]},"id":"8944c0a2aa7ffff-17feb9af302c2a58"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab5924c-17b7f8100bef806c","8f44c0a2aa32a51-139651d9b25f053f"]},"geometry":{"type":"LineString","coordinates":[[-83.71776,32.9250847],[-83.7171316,32.924817600000004],[-83.716936,32.924727700000005],[-83.71661950000001,32.9245627],[-83.71640500000001,32.9243777],[-83.7160774,32.9240477],[-83.71578550000001,32.9237077],[-83.7155889,32.9235277],[-83.71526130000001,32.923357700000004],[-83.715035,32.9232777],[-83.7147669,32.9232377],[-83.7145703,32.9232177],[-83.71429040000001,32.9232527],[-83.71401080000001,32.9233282],[-83.71375090000001,32.9234017]]},"id":"8844c0a2abfffff-13f7fcd50c3f40da"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a2aaa5916-13ffd4d23468c3f4","8f44c0a2aaa09aa-13bf760ab36dbd05"]},"geometry":{"type":"LineString","coordinates":[[-83.7125341,32.9237661],[-83.7122863,32.923830800000005],[-83.71203410000001,32.923903100000004]]},"id":"8a44c0a2aaa7fff-1397f56ebecf0674"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,349.56],"value":"paved"}],"flags":[{"applyAt":[23.35,97.36],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ab9a29a-13d648dd491efba0","8f44c0a2a8c320c-139fdc17f2d602aa"]},"geometry":{"type":"LineString","coordinates":[[-83.7095553,32.9203449],[-83.70964400000001,32.9205417],[-83.70984100000001,32.920976],[-83.7099261,32.921165200000004],[-83.7101662,32.921698],[-83.7104345,32.922288300000005],[-83.710654,32.9227849],[-83.71087800000001,32.9232928]]},"id":"8744c0a2affffff-17be4a78e8d3dd2c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ad45129-179f57079d22eb41","8f44c0a2ad44028-13f677f4dbf86a37"]},"geometry":{"type":"LineString","coordinates":[[-83.70469630000001,32.9147459],[-83.7048259,32.914840600000005],[-83.7049502,32.9149254],[-83.70507590000001,32.9150196]]},"id":"8a44c0a2ad47fff-13bf777dfe03d63c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a05d5a189-17f7864d6539eb04","8f44c0a05d5bb62-13d6d4b4a285f45a"]},"geometry":{"type":"LineString","coordinates":[[-83.685713,32.900236],[-83.686034,32.900388],[-83.68621920000001,32.900487600000005],[-83.68632600000001,32.900539],[-83.686367,32.9005677]]},"id":"8a44c0a05d5ffff-13dea57f531da271"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a0503168a-13d7f247d585a2ac","8f44c0a05006102-13df9226be610469"]},"geometry":{"type":"LineString","coordinates":[[-83.68736030000001,32.9069335],[-83.6873692,32.9069829],[-83.6874133,32.9071257]]},"id":"8944c0a0503ffff-139fd238ac0d15d4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c454d5-179fb4bc155748dc","8f44c0a05c4b11a-13f6c439fae88916"]},"geometry":{"type":"LineString","coordinates":[[-83.6863551,32.9021403],[-83.68635730000001,32.902344400000004],[-83.68638530000001,32.902772500000005],[-83.68647250000001,32.903200500000004],[-83.6865633,32.9036836]]},"id":"8944c0a05c7ffff-1797e48c4deea2e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a05c45d66-179fe438051e7e6e","8f44c0a05c606e0-13deb3d9b8a57729"]},"geometry":{"type":"LineString","coordinates":[[-83.6865664,32.901903000000004],[-83.6865894,32.9017758],[-83.6866128,32.9016916],[-83.68671730000001,32.901414700000004]]},"id":"8944c0a05c7ffff-13ff940eee5767af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2365c291-17f7fa8048d55de9","8f44c0a23658c50-17defaf0c2c18202"]},"geometry":{"type":"LineString","coordinates":[[-83.6905468,32.896130400000004],[-83.69048070000001,32.8961956],[-83.6903668,32.896273400000005]]},"id":"8a44c0a2365ffff-17b6fab68e13fcd0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ea8282e-13d67a5d69e90e3a","8f44c0a2ebb2c1a-17bf7a5637e2d1ee"]},"geometry":{"type":"LineString","coordinates":[[-83.7168285,32.8997333],[-83.7167843,32.9001959],[-83.71674900000001,32.901774],[-83.71674300000001,32.9022],[-83.716744,32.902403],[-83.716746,32.902634],[-83.71678490000001,32.9032368],[-83.716818,32.903737],[-83.716817,32.903834]]},"id":"8744c0a2effffff-13beba799c71fff1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2ecc945b-1796d22c60708630","8f44c0a2e181a0a-13fe4ca56353a9cb"]},"geometry":{"type":"LineString","coordinates":[[-83.707065,32.89923],[-83.707414,32.899247],[-83.70760840000001,32.8992631],[-83.707885,32.899324],[-83.708156,32.89941],[-83.708391,32.899518],[-83.7086,32.899634],[-83.708819,32.899794],[-83.709002,32.899963],[-83.70916100000001,32.900154],[-83.70932900000001,32.900416]]},"id":"8744c0a2effffff-17f74f2164f53868"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e506b25-13d7dca43746a44a","8f44c0a2e531185-13d75d00ad07e8bc"]},"geometry":{"type":"LineString","coordinates":[[-83.7026294,32.8976981],[-83.70263800000001,32.897722],[-83.70269950000001,32.897895500000004],[-83.702742,32.898013],[-83.70277730000001,32.898108]]},"id":"8944c0a2e53ffff-13d7dcd2cfe67863"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e500114-13975c58a59121f1","8f44c0a2e5003a1-13fffc314c2263e4"]},"geometry":{"type":"LineString","coordinates":[[-83.7028982,32.898433700000005],[-83.7029263,32.8985094],[-83.7029612,32.8986011]]},"id":"8b44c0a2e500fff-13d77c4517a2cb96"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[290.07,406.85],"maxSpeed":[35,"mph"]},{"applyAt":[0.0,290.07],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a206d080d-13be75aaa6784599","8f44c0a206b04d6-13befae9213d4d8b"]},"geometry":{"type":"LineString","coordinates":[[-83.69037900000001,32.871643],[-83.6904523,32.8717859],[-83.6905359,32.8719247],[-83.6906295,32.872059],[-83.6907326,32.872188300000005],[-83.69084500000001,32.872312],[-83.690917,32.8723836],[-83.69099200000001,32.872453],[-83.691411,32.872813],[-83.69177400000001,32.873131],[-83.691916,32.873282],[-83.692026,32.873413],[-83.69211,32.873547],[-83.69221200000001,32.873725],[-83.692299,32.873941],[-83.69239400000001,32.874251],[-83.692527,32.874743]]},"id":"8844c0a207fffff-17d677f6051cc887"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[87.8,129.13],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"applyAt":[0.0,87.8],"maxSpeed":[35,"mph"]},{"applyAt":[129.13,143.92],"maxSpeed":[35,"mph"]},{"applyAt":[87.8,129.13],"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a231586e6-17976ca4a1114c8f","8f44c0a231500e6-179eeddbfe55b77f"]},"geometry":{"type":"LineString","coordinates":[[-83.6957249,32.8855208],[-83.69578800000001,32.885844],[-83.69586500000001,32.8860867],[-83.6959535,32.8862861],[-83.6960682,32.8864911],[-83.6961464,32.8866213],[-83.696223,32.886738]]},"id":"8944c0a2317ffff-17976d5edd7fa90b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b53931171-13ddf6f2ea5fd9c7","8f44c0b53900792-13f5c6fcfb2cbb59"]},"geometry":{"type":"LineString","coordinates":[[-83.76409140000001,32.8813259],[-83.76408400000001,32.8816141],[-83.76408190000001,32.881756200000005],[-83.7640753,32.8822108]]},"id":"8944c0b5393ffff-13f5f6f891670fad"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved","flags":[{"applyAt":[74.63,135.94],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1179a980-13fedd63b8cf3aef","8f44c0b116346ed-13b7f5d1b670792c"]},"geometry":{"type":"LineString","coordinates":[[-83.65004210000001,32.780225200000004],[-83.65083820000001,32.7802499],[-83.6512301,32.7802604],[-83.6514923,32.7802674],[-83.65247600000001,32.7802862],[-83.6531429,32.780300700000005]]},"id":"8844c0b117fffff-1396d99ac87df409"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0b1162614d-13b7f358a406f9fa","8f44c0b11635871-13bff45ec53b5c97"]},"geometry":{"type":"LineString","coordinates":[[-83.6537364,32.780313500000005],[-83.65385020000001,32.780316],[-83.65415580000001,32.7803223]]},"id":"8944c0b1163ffff-13b6d3dbbdd50f07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c5339a9-13f7f33c7ce28a25","8f44c0b1c506050-13d6b2833fa71981"]},"geometry":{"type":"LineString","coordinates":[[-83.66760450000001,32.786694600000004],[-83.66734050000001,32.7862169],[-83.6673081,32.7861564]]},"id":"8944c0b1c53ffff-139eb2e015bd89e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1c454b9c-179ef042b0291799","8f44c0b1c453b2d-139ef08d2334a2e6"]},"geometry":{"type":"LineString","coordinates":[[-83.66840780000001,32.7925637],[-83.66843700000001,32.792423],[-83.66849300000001,32.792082],[-83.66851530000001,32.791822100000005],[-83.6685269,32.7917292]]},"id":"8a44c0b1c457fff-1396f0627ffd5b84"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e850283-17b6f7530b7939e0","8f44c0b1e8e1b00-179fc934eaa82641"]},"geometry":{"type":"LineString","coordinates":[[-83.65908,32.7915591],[-83.65867940000001,32.7915514],[-83.658309,32.7915416]]},"id":"8844c0b1e9fffff-179fe843f7382c71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e8f229b-17f6cef7e015d200","8f44c0b1e8e1b00-179fc934eaa82641"]},"geometry":{"type":"LineString","coordinates":[[-83.658309,32.7915416],[-83.6573331,32.7915195],[-83.65682910000001,32.791508],[-83.65611600000001,32.791483],[-83.655949,32.791454]]},"id":"8944c0b1e8fffff-1796fc17264df692"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e8f4c26-17b6edb2e8634593","8f44c0b1e8f229b-17f6cef7e015d200"]},"geometry":{"type":"LineString","coordinates":[[-83.656469,32.790535000000006],[-83.65611840000001,32.7911382],[-83.6560439,32.791277],[-83.655949,32.791454]]},"id":"8a44c0b1e8f7fff-17d6de579dccb8c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,270.24],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a116361-179ff6af23ce8ee5","8f44c0b1a8ded59-17bedd879658ad8b"]},"geometry":{"type":"LineString","coordinates":[[-83.6499847,32.813918],[-83.64931370000001,32.813907],[-83.64740180000001,32.813875800000005],[-83.6470996,32.813870900000005],[-83.64687980000001,32.813865],[-83.6466606,32.8138592],[-83.64640390000001,32.813851],[-83.646235,32.8138455]]},"id":"8744c0b1affffff-17b6e21b738995e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,157.16],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1aba4d1b-17b7d2da2506beb8","8f44c0b1a8eb7ad-1796f82f4d20fae1"]},"geometry":{"type":"LineString","coordinates":[[-83.652174,32.814059],[-83.6531082,32.814073900000004],[-83.6533701,32.8140781],[-83.6538519,32.8140858],[-83.6543582,32.8141084]]},"id":"8744c0b1affffff-179ed5849c7f3a0d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b184ea813-17bec216c0139df5","8f44c0b184e8b72-17b7f0859a1bfb34"]},"geometry":{"type":"LineString","coordinates":[[-83.6618663,32.814312300000005],[-83.66166000000001,32.81431],[-83.6613664,32.8143085],[-83.66122440000001,32.8143048]]},"id":"8a44c0b184effff-17bfd14e3e16639d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1873664c-17d6f863d4b76e08","8f44c0b18448435-17b6fb21ae699966"]},"geometry":{"type":"LineString","coordinates":[[-83.6640742,32.8145198],[-83.66442830000001,32.8145321],[-83.6651971,32.8145485]]},"id":"8744c0b18ffffff-17bef9c2c5caf602"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b18458735-17b7be164d4f4a8e","8f44c0b184e8220-1796f0d70735e308"]},"geometry":{"type":"LineString","coordinates":[[-83.661736,32.8144675],[-83.6619826,32.8144742],[-83.6626502,32.8144933],[-83.66286360000001,32.8144952]]},"id":"8844c0b185fffff-179fff76af06ff52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180f338a-17b6ff713386bf47","8f44c0b180ecd53-17d6aa617ccbf869"]},"geometry":{"type":"LineString","coordinates":[[-83.67093530000001,32.8145408],[-83.67052100000001,32.814528],[-83.66961260000001,32.8145152],[-83.6688621,32.8144999]]},"id":"8944c0b180fffff-17b6fce95257ffe7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180f338a-17b6ff713386bf47","8f44c0b180d686c-1797b16c201114b8"]},"geometry":{"type":"LineString","coordinates":[[-83.6688621,32.8144999],[-83.66859290000001,32.814495400000006],[-83.66822210000001,32.8144823],[-83.668051,32.8144763]]},"id":"8944c0b180fffff-17b6b06eb0aefcaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":[{"applyAt":[0.0,37.33],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d6b12ab-17d6a75602f3a484","8f44c0b1d415240-13d7da94b6f1a688"]},"geometry":{"type":"LineString","coordinates":[[-83.6852896,32.8137546],[-83.6852997,32.8134181],[-83.68526530000001,32.8132271],[-83.68523350000001,32.8130503],[-83.6852178,32.8129632],[-83.68519110000001,32.812814700000004],[-83.68504940000001,32.8126182],[-83.68479280000001,32.812355600000004],[-83.684504,32.812033500000005],[-83.6842639,32.8117122],[-83.6841017,32.8113984],[-83.6839939,32.8110127],[-83.68397130000001,32.8103548],[-83.68395310000001,32.808475900000005],[-83.68396050000001,32.8059773]]},"id":"8744c0b1dffffff-139e99d8dd73df52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9276b1a-17ff3009696d64a1","8f44c0ba9254c00-13d7f14562e08b6b"]},"geometry":{"type":"LineString","coordinates":[[-83.62879140000001,32.831545500000004],[-83.62900350000001,32.8312752],[-83.62925800000001,32.830965500000005],[-83.62929700000001,32.830813]]},"id":"8944c0ba927ffff-17f71098d65a7d59"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345aac6a-13b79e3742256c69","8f44c0a34584713-1397d033a06d3e3f"]},"geometry":{"type":"LineString","coordinates":[[-83.6292294,32.834924400000006],[-83.6296521,32.8351662],[-83.6300428,32.8353897]]},"id":"8944c0a345bffff-13972f357bf16866"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":[{"applyAt":[0.0,38.69],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a345ae3a0-13970dc2eb4ef8c3","8f44c0a345a9885-13b73c0654eb2e9a"]},"geometry":{"type":"LineString","coordinates":[[-83.6309403,32.8355875],[-83.6306052,32.835383300000004],[-83.6304676,32.8352979],[-83.6303973,32.8352543],[-83.630229,32.835152]]},"id":"8a44c0a345affff-139f3ce4a3c1f378"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1a276080-13ffd7458d9a97b7","8f44c0b1a20ad89-13bffaea03b84187"]},"geometry":{"type":"LineString","coordinates":[[-83.65254800000001,32.825666000000005],[-83.652259,32.825659],[-83.651853,32.825662],[-83.651578,32.825696],[-83.65149500000001,32.825705],[-83.65127480000001,32.825742000000005],[-83.65120800000001,32.825761],[-83.65105600000001,32.825797]]},"id":"8944c0b1a23ffff-13ffd91a35998112"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b195752f1-13f6cf44655894ef","8f44c0b19cde76e-17d7afbf87fcb8e8"]},"geometry":{"type":"LineString","coordinates":[[-83.682041,32.825454],[-83.6818939,32.8244908],[-83.681855,32.824236],[-83.681844,32.8241778]]},"id":"8844c0b195fffff-17d7df8153553bc0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19c75b6d-17b6e46cc583d7a7","8f44c0b19c6415a-17b6c2b1020138d9"]},"geometry":{"type":"LineString","coordinates":[[-83.68648200000001,32.821483],[-83.6867112,32.821425000000005],[-83.68719200000001,32.821278]]},"id":"8a44c0b19c67fff-17f7b38e3a44422e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","flags":[{"applyAt":[71.92,130.59],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b199892f0-17d6f81db4766487","8f44c0b19822276-17de73959d81ef0b"]},"geometry":{"type":"LineString","coordinates":[[-83.6915237,32.8205097],[-83.6915453,32.820509900000005],[-83.691703,32.820507],[-83.6922917,32.8205046],[-83.692918,32.82049],[-83.6932795,32.8204948],[-83.69337990000001,32.8204961]]},"id":"8944c0b1983ffff-17def5d9a01ea49d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b199892f0-17d6f81db4766487","8f44c0b198a4ab0-17f6fa585a0efe13"]},"geometry":{"type":"LineString","coordinates":[[-83.69061070000001,32.8205387],[-83.690696,32.820532],[-83.69081820000001,32.820528],[-83.69121200000001,32.820507],[-83.6915237,32.8205097]]},"id":"8844c0b199fffff-17d7f93b29f74d05"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,15.52],"maxSpeed":[35,"mph"]},{"applyAt":[15.52,39.67],"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b198b1765-17b67d42d26f4456","8f44c0b19886a2d-139efd010f9664ec"]},"geometry":{"type":"LineString","coordinates":[[-83.6895216,32.82162],[-83.68947940000001,32.8214847],[-83.6894163,32.821273600000005]]},"id":"8944c0b198bffff-179e7d22388fad9e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2e4509-13be7881a5d98411","8f44c0b1d646ae0-13de78f3adf13720"]},"geometry":{"type":"LineString","coordinates":[[-83.6911814,32.8156102],[-83.694975,32.815818],[-83.696825,32.815925],[-83.6973423,32.8159286],[-83.69791740000001,32.8159653]]},"id":"8744c0b1dffffff-13def0bab14b450b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0ac0576d-13f6706e232f8cae","8f44c0b0ac0cb91-13df5f8ebf69a549"]},"geometry":{"type":"LineString","coordinates":[[-83.70813650000001,32.8158133],[-83.70798470000001,32.8155687],[-83.707779,32.815207]]},"id":"8944c0b0ac3ffff-139ef00035ee74f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1d2912d9-13def28559c6a3a8","8f44c0b1d673281-13de7a371beb1c74"]},"geometry":{"type":"LineString","coordinates":[[-83.6938155,32.8155851],[-83.69300170000001,32.815542],[-83.6920477,32.8154914],[-83.691816,32.815478],[-83.69161310000001,32.8154659],[-83.6911055,32.8154283],[-83.6909359,32.8154157],[-83.6906639,32.8154022]]},"id":"8744c0b1dffffff-1396765e6454592e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19948046-17ffeab5232e5133","8f44c0b0a4b27b2-1396e9323435a75a"]},"geometry":{"type":"LineString","coordinates":[[-83.6970158,32.821571],[-83.69737500000001,32.821708],[-83.6974634,32.8217456],[-83.69763490000001,32.821818400000005]]},"id":"8744c0b19ffffff-13b779f2f3da68d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a484444-13bf66284befeba6","8f44c0b0a484355-1396e57e05d9f0ea"]},"geometry":{"type":"LineString","coordinates":[[-83.69887960000001,32.8223186],[-83.699027,32.8223799],[-83.69915200000001,32.8224298]]},"id":"8b44c0b0a484fff-13f675d348218315"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0940b831-1797f824f8dc5b19","8f44c0b0940901b-17d5f74479985bb5"]},"geometry":{"type":"LineString","coordinates":[[-83.7443001,32.8342091],[-83.74407360000001,32.8341542],[-83.74404700000001,32.834148],[-83.7439409,32.834130200000004]]},"id":"8a44c0b0940ffff-17bff7b45038ccaf"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09454d2a-17fdf6778b09707e","8f44c0b0940901b-17d5f74479985bb5"]},"geometry":{"type":"LineString","coordinates":[[-83.744628,32.834293800000005],[-83.7445648,32.8342733],[-83.7443001,32.8342091]]},"id":"8944c0b0947ffff-17ddf6ddaa5ee03d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09491693-17fe0495175a706d","8f44c0b094aa2c5-17b5ff882f99f7da"]},"geometry":{"type":"LineString","coordinates":[[-83.740915,32.833948],[-83.74033850000001,32.833927800000005],[-83.739569,32.833896],[-83.7388463,32.833888]]},"id":"8944c0b094bffff-179f220e89a97fe2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09491693-17fe0495175a706d","8f44c0b0b86c8d1-17f67649a5442036"]},"geometry":{"type":"LineString","coordinates":[[-83.7388463,32.833888],[-83.7387719,32.833886],[-83.73814780000001,32.8338695]]},"id":"8744c0b0bffffff-17f6356f5d3b54b9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b86c8d1-17f67649a5442036","8f44c0b0b86ed92-17f6680a214fea9c"]},"geometry":{"type":"LineString","coordinates":[[-83.73814780000001,32.8338695],[-83.73805490000001,32.833867000000005],[-83.73777000000001,32.833862],[-83.7374302,32.833847]]},"id":"8944c0b0b87ffff-17fea729fffae746"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0b886b5b-13fe589823f69146","8f44c0b0bd492aa-13fe5c06a5f15052"]},"geometry":{"type":"LineString","coordinates":[[-83.7306494,32.832422900000005],[-83.7303729,32.8323419],[-83.72985340000001,32.8321956],[-83.7292889,32.832035600000005],[-83.7292438,32.832022800000004]]},"id":"8944c0b0b8bffff-13feda4f4b16e87f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd5a8f5-17f7712c9ec5494f","8f44c0b0bd58359-13d63fdc473bb86a"]},"geometry":{"type":"LineString","coordinates":[[-83.7276732,32.8315715],[-83.72764140000001,32.8315622],[-83.727174,32.8314254],[-83.7271351,32.831413500000004]]},"id":"8a44c0b0bd5ffff-13b6f08476ff11f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bc6498d-139e1e44e1c16575","8f44c0b0bd4b32d-13fe3cf3113f669d"]},"geometry":{"type":"LineString","coordinates":[[-83.728325,32.8318913],[-83.72868190000001,32.8319889],[-83.72886550000001,32.8320418]]},"id":"8a44c0b0bd4ffff-13de9d9bd977d090"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.7279568,32.835025300000005]},"id":"8f44c0b0bc4b068-13d6df2b0b8b21b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bc63131-13f69f00dc1ccbfa","8f44c0b0bc4b068-13d6df2b0b8b21b1"]},"geometry":{"type":"LineString","coordinates":[[-83.7280243,32.8328457],[-83.7280147,32.8329881],[-83.727976,32.833385],[-83.72797800000001,32.833544],[-83.728015,32.833818],[-83.728048,32.834027],[-83.72805600000001,32.834328],[-83.72803300000001,32.834500000000006],[-83.7279568,32.835025300000005]]},"id":"8944c0b0bc7ffff-179e9f094aacd097"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd5a2f1-13bff136da77663a","8f44c0b0bc74364-13ff6140efd2210f"]},"geometry":{"type":"LineString","coordinates":[[-83.7271187,32.8317119],[-83.727103,32.832019],[-83.72710260000001,32.832050200000005]]},"id":"8844c0b0bdfffff-1397a13c320a74c6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b0bd50c44-17ffa1bed497284b","8f44c0b0bd5edb0-1797617011ec28e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7270271,32.830856600000004],[-83.7269598,32.8307214],[-83.72692470000001,32.830612],[-83.72690800000001,32.8304891],[-83.7269011,32.8302008]]},"id":"8a44c0b0bd57fff-17def1aafc0358df"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd8c95a-1397aaaddff5f648","8f44c0b0bc28d6a-17bee36c8729fd09"]},"geometry":{"type":"LineString","coordinates":[[-83.72621360000001,32.8311214],[-83.72598690000001,32.8310448],[-83.7256093,32.830889400000004],[-83.72528080000001,32.8307355],[-83.72487190000001,32.8305213],[-83.7248201,32.8304891],[-83.7245434,32.8303286],[-83.72420190000001,32.830101500000005],[-83.7237013,32.8297651],[-83.72364470000001,32.8297231],[-83.7233805,32.8295223],[-83.7232419,32.829417]]},"id":"8844c0b0bdfffff-17de372a007237e6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd8c025-13d7faf7030b7667","8f44c0b0bc3120e-17fee705684dc834"]},"geometry":{"type":"LineString","coordinates":[[-83.72312480000001,32.8295229],[-83.7235562,32.8298189],[-83.7238686,32.8300198],[-83.72407960000001,32.830169500000004],[-83.7244603,32.8304278],[-83.7247402,32.8305902]]},"id":"8844c0b0bdfffff-17b63901345aedc9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd5a065-13d671328e6d9899","8f44c0b0bc28168-179ee333f951b20f"]},"geometry":{"type":"LineString","coordinates":[[-83.72630410000001,32.8312814],[-83.7266146,32.8313793],[-83.7268768,32.831463500000005],[-83.72712560000001,32.8315397]]},"id":"8844c0b0bdfffff-17f622336a4f4b52"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0bd864f4-13967e2f891c002a","8f44c0b0bd81072-13be7bd51712e93c"]},"geometry":{"type":"LineString","coordinates":[[-83.72180560000001,32.8285767],[-83.72227190000001,32.8288953],[-83.72254310000001,32.829090900000004],[-83.7227695,32.8292485]]},"id":"8a44c0b0bd87fff-13d76d019dd000ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aace65c-179eb27e863b2131","8f44c0b0aadc798-17deb4cd78615de3"]},"geometry":{"type":"LineString","coordinates":[[-83.7190953,32.8272587],[-83.71941980000001,32.8273407],[-83.719706,32.8274337],[-83.7199051,32.8275086],[-83.7200408,32.8275658]]},"id":"8944c0b0aafffff-17b7b3a31188ab85"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aac8c19-179ef1af4379d9d3","8f44c0b0bdb35b5-17ffef23c8f89ce8"]},"geometry":{"type":"LineString","coordinates":[[-83.7214148,32.828153400000005],[-83.72121680000001,32.828014700000004],[-83.72102240000001,32.827888800000004],[-83.72064730000001,32.827703],[-83.7203724,32.8275695]]},"id":"8744c0b0affffff-17be3062fe1707e7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a32c52c-179fb7f732ebb39f","8f44c0b0aade133-179eb58c96f0f3bd"]},"geometry":{"type":"LineString","coordinates":[[-83.7177997,32.8269496],[-83.7182404,32.8270566],[-83.7187895,32.8271816]]},"id":"8744c0b0affffff-17d736c22ac7b549"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aad34ad-17fff6fa90967db4","8f44c0b0a322370-17b73a2f04892238"]},"geometry":{"type":"LineString","coordinates":[[-83.7182039,32.8269212],[-83.71789790000001,32.826848500000004],[-83.7171864,32.826677700000005],[-83.7168912,32.826606600000005]]},"id":"8744c0b0affffff-1797b894d8a17ee3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aaddd16-17d673c0b1fd6dd1","8f44c0b0aad3ac1-17b6f5ff69cd5215"]},"geometry":{"type":"LineString","coordinates":[[-83.7195253,32.8272485],[-83.7190662,32.8271247],[-83.7188907,32.8270819],[-83.7186058,32.827015800000005]]},"id":"8944c0b0aafffff-17ff34df75622ce6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aad34ad-17fff6fa90967db4","8f44c0b0aad3ac1-17b6f5ff69cd5215"]},"geometry":{"type":"LineString","coordinates":[[-83.7186058,32.827015800000005],[-83.71845850000001,32.8269816],[-83.7182039,32.8269212]]},"id":"8b44c0b0aad3fff-1797767d0028262a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a725b5c-13ffde2174ff9917","8f44c0b0a72550e-13de7f247f5234b3"]},"geometry":{"type":"LineString","coordinates":[[-83.7083065,32.8254147],[-83.7084806,32.825449],[-83.7087209,32.825487700000004]]},"id":"8b44c0b0a725fff-13f66ea32aea6a20"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a725b5c-13ffde2174ff9917","8f44c0b0a0d621c-139edd5f3903993d"]},"geometry":{"type":"LineString","coordinates":[[-83.7087209,32.825487700000004],[-83.7088885,32.8255147],[-83.70903170000001,32.8255373]]},"id":"8a44c0b0a0d7fff-139f6dc054018d2f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0c5a26-13ff67cf122eefe6","8f44c0b0a0c6716-13b6caa36d6c4d6f"]},"geometry":{"type":"LineString","coordinates":[[-83.71131030000001,32.825695],[-83.71102970000001,32.825688500000005],[-83.71073770000001,32.8256567],[-83.7101514,32.825556]]},"id":"8944c0b0a0fffff-13df793a63ccd773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a7268e2-13b67090b3d8ee6f","8f44c0b0a0d4246-13fe4c1029257f01"]},"geometry":{"type":"LineString","coordinates":[[-83.7095678,32.825459200000005],[-83.70881100000001,32.8253427],[-83.7077237,32.825165000000005]]},"id":"8844c0b0a1fffff-139f6e50ae024a9c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0ead9a-13ded7ce8f2b3fd7","8f44c0b0a0e8816-13be46141f271a67"]},"geometry":{"type":"LineString","coordinates":[[-83.71131120000001,32.8258473],[-83.71155420000001,32.8258181],[-83.711922,32.825787000000005],[-83.7120191,32.8257764]]},"id":"8a44c0b0a0effff-13d756f1618efc07"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a05e356-13d7d399034c1cfb","8f44c0b0a0e8816-13be46141f271a67"]},"geometry":{"type":"LineString","coordinates":[[-83.7120191,32.8257764],[-83.7120826,32.8257695],[-83.7123255,32.8257598],[-83.7124988,32.8257576],[-83.71276900000001,32.8257825],[-83.71303520000001,32.8258425]]},"id":"8844c0b0a1fffff-13bf74d511cb1f8c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a10dd66-17f662b9646c0c5f","8f44c0b0a80054a-13d73b5c03a34092"]},"geometry":{"type":"LineString","coordinates":[[-83.7164096,32.815979500000005],[-83.71566650000001,32.8162588],[-83.71524140000001,32.8164059],[-83.714506,32.816659],[-83.71445130000001,32.8166768],[-83.714386,32.816698],[-83.714172,32.816784000000006],[-83.714082,32.816831],[-83.71406,32.816847],[-83.714003,32.816889],[-83.71393300000001,32.816958],[-83.71386600000001,32.817034],[-83.71380500000001,32.817119000000005],[-83.71375300000001,32.817208],[-83.713713,32.817306],[-83.71368700000001,32.817408],[-83.71367500000001,32.817514],[-83.71366950000001,32.8177125],[-83.71366900000001,32.817732],[-83.7136744,32.818346600000005],[-83.7136565,32.8187066],[-83.71364720000001,32.8193124],[-83.7136438,32.8196134],[-83.71363500000001,32.820062],[-83.713622,32.820169],[-83.7136012,32.8202595],[-83.713544,32.820372],[-83.71347700000001,32.820456],[-83.71339300000001,32.820535]]},"id":"8744c0b0affffff-17bed08c47cd9fca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0e250b0a-17fe3b4e748c3c87","8f44c0b0e2c5215-13bfef74ed751846"]},"geometry":{"type":"LineString","coordinates":[[-83.72128500000001,32.8122556],[-83.72159,32.812092],[-83.72169600000001,32.812033],[-83.72225200000001,32.8117358],[-83.7228985,32.811385900000005],[-83.7229849,32.8113377]]},"id":"8844c0b0e3fffff-139fad6166d8518e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08d06301-13bf76bccc058aed","8f44c0b08d81aeb-17963cfa7bff0946"]},"geometry":{"type":"LineString","coordinates":[[-83.7288537,32.8081187],[-83.7304143,32.8072753],[-83.73141000000001,32.8067255]]},"id":"8844c0b08dfffff-17f699daaf96f569"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0aa21530-13973ead17a60d1a","8f44c0b0ab56010-13feeccf1338a9be"]},"geometry":{"type":"LineString","coordinates":[[-83.7216047,32.8228369],[-83.7218849,32.822695700000004],[-83.7223695,32.822398]]},"id":"8844c0b0abfffff-13febdbb8eacc3b5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a332c70-13d77ddc33528773","8f44c0b0a331856-13fffb6b99fc8ea6"]},"geometry":{"type":"LineString","coordinates":[[-83.7163847,32.8264894],[-83.7161136,32.8264214],[-83.7155034,32.8262718],[-83.71538530000001,32.826242300000004]]},"id":"8a44c0b0a337fff-139e7ca3d432ed86"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a04e745-139ed0c0b9563596","8f44c0b0a05d8d0-13dfe1b768e92a2d"]},"geometry":{"type":"LineString","coordinates":[[-83.7142005,32.8259465],[-83.7141103,32.825924],[-83.7138058,32.8258554]]},"id":"8944c0b0a07ffff-13ffe13bf21677d2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b04a1cce1-139ef2170d1c6022","8f44c0b04a03566-13f770ffa58f0dd5"]},"geometry":{"type":"LineString","coordinates":[[-83.7206534,32.7443765],[-83.7205275,32.7443936],[-83.72020640000001,32.744436400000005]]},"id":"8944c0b04a3ffff-1396318b58fa73eb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b040959a2-13f6510a6f10df08","8f44c0b04444d00-13bf573666ab4226"]},"geometry":{"type":"LineString","coordinates":[[-83.70500100000001,32.744056],[-83.705364,32.744036],[-83.70576700000001,32.743991],[-83.70653200000001,32.743831],[-83.70657,32.74382],[-83.70752900000001,32.743536]]},"id":"8744c0b04ffffff-13bf74198307974f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0403069d-17dfe8d84ecd426e","8f44c0b040262d9-1797c5e9a253b32f"]},"geometry":{"type":"LineString","coordinates":[[-83.710886,32.742297],[-83.71103500000001,32.742252],[-83.71114200000001,32.742227],[-83.711331,32.742192],[-83.711442,32.742176],[-83.71161400000001,32.742157],[-83.711765,32.742148],[-83.71194100000001,32.742146000000005],[-83.71208700000001,32.742156]]},"id":"8944c0b0403ffff-179e5763a3b91d62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a058b6d96-1796ffe99cad255e","8f44c0a05d4b928-139fa1c17cb01367"]},"geometry":{"type":"LineString","coordinates":[[-83.6875753,32.900501000000006],[-83.68787590000001,32.900278300000004],[-83.688162,32.900032],[-83.6883303,32.8998474]]},"id":"8944c0a05d7ffff-17dea0cd404d9af8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a05ba3302-179fef32628fc3e1","8f44c0a05b9d016-13b7f18ea329df27"]},"geometry":{"type":"LineString","coordinates":[[-83.6942102,32.9068859],[-83.6942566,32.9068295],[-83.694868,32.906021],[-83.69509500000001,32.905715],[-83.695177,32.905593]]},"id":"8944c0a05bbffff-17b7f05d6ec5a09d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a051aa968-17d684e245be90cf","8f44c0a05185d88-13ffd68d3c84c986"]},"geometry":{"type":"LineString","coordinates":[[-83.686294,32.905300000000004],[-83.686232,32.905291000000005],[-83.6861049,32.9052586],[-83.686035,32.905231],[-83.685969,32.9052],[-83.685884,32.905149],[-83.685806,32.905088],[-83.6856109,32.904949300000006]]},"id":"8944c0a051bffff-13fef5c0eb2a969d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a32399808-139737fd627dcb34","8f44c0a32025261-1797f81efaf4c4e6"]},"geometry":{"type":"LineString","coordinates":[[-83.6129322,32.871200300000005],[-83.61298140000001,32.871054],[-83.6130311,32.8707908],[-83.61308000000001,32.870451],[-83.61311400000001,32.870171],[-83.61314300000001,32.869859000000005],[-83.61314200000001,32.869463],[-83.613128,32.869025],[-83.61300770000001,32.868027000000005],[-83.6129027,32.867184],[-83.6128139,32.8663304],[-83.6127529,32.865754200000005],[-83.6127479,32.8655908],[-83.6127307,32.865281],[-83.6127268,32.8651128],[-83.612756,32.864761],[-83.612778,32.864491],[-83.612831,32.864113],[-83.61287850000001,32.8638287]]},"id":"8744c0a32ffffff-139777f996363421"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[29.27,105.77],"maxSpeed":[50,"mph"]},{"applyAt":[0.0,29.27],"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3212c0c0-13bf35e5da115e13","8f44c0a328d0d36-17bf749d822d58ed"]},"geometry":{"type":"LineString","coordinates":[[-83.61431440000001,32.8605895],[-83.6141633,32.860820600000004],[-83.6137891,32.8614339]]},"id":"8744c0a32ffffff-13b7754353610043"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a328e6562-17d7f090c324f9ad","8f44c0a328f58b6-17d7b16e9ab905bf"]},"geometry":{"type":"LineString","coordinates":[[-83.6159732,32.859604700000006],[-83.61582130000001,32.8596044],[-83.61561830000001,32.8596041]]},"id":"8944c0a328fffff-17d7f0ffac17b9a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a3281126c-13b731098a8724f4","8f44c0a32806008-17ffeff22874ecd1"]},"geometry":{"type":"LineString","coordinates":[[-83.61622700000001,32.857622],[-83.6160442,32.857905800000005],[-83.61578,32.858328]]},"id":"8944c0a3283ffff-13dff07e8d6c3bfb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a36375990-13ffdacbcc1877d1","8f44c0a36ada22e-13f7fb30a8ec1e86"]},"geometry":{"type":"LineString","coordinates":[[-83.62472860000001,32.8486015],[-83.62485960000001,32.8489383],[-83.62489000000001,32.849014100000005]]},"id":"8844c0a363fffff-13fffafe692c6fb0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36aca1b0-13b7185e85d5f3cf","8f44c0a36ad9a76-13b778db7086352f"]},"geometry":{"type":"LineString","coordinates":[[-83.625884,32.848496000000004],[-83.62584430000001,32.848545200000004],[-83.625763,32.848627],[-83.6256841,32.8487014]]},"id":"8944c0a36afffff-13f7d89b5f7453a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a36ab34b0-17bf71077dd6a74a","8f44c0a3606b089-1797a405747eab4b"]},"geometry":{"type":"LineString","coordinates":[[-83.62233690000001,32.8444087],[-83.6220555,32.8447377],[-83.6218747,32.8449617],[-83.6217067,32.8451916],[-83.6215188,32.8454935],[-83.6213802,32.845750100000004],[-83.6212275,32.8460924],[-83.62111130000001,32.84642]]},"id":"8744c0a36ffffff-139762b518d51c62"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a36702096-1797b8a3cea1aff8","8f44c0a36718901-13b7b8aa1486f18e"]},"geometry":{"type":"LineString","coordinates":[[-83.612666,32.847417],[-83.6126538,32.847714100000005],[-83.6126581,32.8479735],[-83.61265590000001,32.848082600000005]]},"id":"8944c0a3673ffff-17d7b8a8d3eaf8fe"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36781c91-1397fef7569b63b4","8f44c0a367aab03-13ff3cdd5e0dd152"]},"geometry":{"type":"LineString","coordinates":[[-83.6100747,32.8482332],[-83.6103489,32.8482298],[-83.6107602,32.8482274],[-83.61093550000001,32.8482259]]},"id":"8944c0a367bffff-13ff3dea589e4668"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b8db44876-13ffd6fc46b2afe5","8f44c0b8db613b0-13ff54e9cceb62c7"]},"geometry":{"type":"LineString","coordinates":[[-83.60679,32.848229700000005],[-83.6068822,32.8482277],[-83.6076388,32.8482289]]},"id":"8a44c0b8db67fff-13fff5f30373453e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b8c264131-17b7feca8ab3140f","8f44c0b8c20556d-17d7e605c48902c2"]},"geometry":{"type":"LineString","coordinates":[[-83.58097000000001,32.840175],[-83.58174600000001,32.840393],[-83.582555,32.840629],[-83.58295070000001,32.840751700000006],[-83.58320900000001,32.840836],[-83.5834121,32.8409186],[-83.583932,32.841121]]},"id":"8844c0b8c3fffff-17ffa261d7be994e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b852c9048-17f7a2e5f08aa4be","8f44c0b852eb4b3-13b7e31f5a37264a"]},"geometry":{"type":"LineString","coordinates":[[-83.5691425,32.8076632],[-83.569101,32.807223],[-83.5690687,32.8068897],[-83.5690507,32.806710200000005]]},"id":"8844c0b853fffff-17dfa3024cfdccb2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","flags":[{"applyAt":[319.88,385.42],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8531bc94-179fe3bc1b69c324","8f44c0b852eb4b3-13b7e31f5a37264a"]},"geometry":{"type":"LineString","coordinates":[[-83.5690507,32.806710200000005],[-83.569022,32.806465800000005],[-83.56896660000001,32.805957],[-83.56895,32.805790300000005],[-83.568893,32.805149],[-83.5688399,32.8044875],[-83.5687915,32.8038344],[-83.56873320000001,32.8032455],[-83.56870210000001,32.8028702],[-83.5686671,32.8025523],[-83.56865400000001,32.802345],[-83.568662,32.802118],[-83.568673,32.801972],[-83.5687784,32.8014469],[-83.5687999,32.8013812]]},"id":"8844c0b853fffff-179ff3afbade6486"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa4b36e1-17b7a3530a5772a9","8f44c0baa5935a9-139fa3429e7cc083"]},"geometry":{"type":"LineString","coordinates":[[-83.5689943,32.8087274],[-83.5690163,32.8091297],[-83.569022,32.809429200000004],[-83.5690313,32.809834200000005],[-83.569013,32.8101955],[-83.568979,32.810826],[-83.568968,32.81102]]},"id":"8844c0baa5fffff-13dfb339dace31e3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0baa593893-13ffb2c0e90d80dc","8f44c0baa4b3250-17bff2ceab83eab2"]},"geometry":{"type":"LineString","coordinates":[[-83.5691798,32.8110311],[-83.56918900000001,32.810868],[-83.56921,32.810319],[-83.569231,32.809870100000005],[-83.5692392,32.8093311],[-83.56923400000001,32.809047],[-83.569208,32.808773],[-83.5692018,32.8086659]]},"id":"8844c0baa5fffff-13dfa2b6f4b6b2f0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a10c91d4d-17fffd2af6b39332","8f44c0a1636b4a4-139f6e9fa1f41148"]},"geometry":{"type":"LineString","coordinates":[[-83.5905542,32.8984192],[-83.59077230000001,32.8993324],[-83.59087650000001,32.899704400000005],[-83.5910015,32.900011400000004],[-83.59115050000001,32.900247900000004]]},"id":"8644c0a17ffffff-17dfee04ac559900"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a32380434-179737e33c0b0c16","8f44c0a323b1210-17bf37d2b8201341"]},"geometry":{"type":"LineString","coordinates":[[-83.6130005,32.869416300000005],[-83.61298710000001,32.8698173],[-83.6129741,32.8699729]]},"id":"8944c0a323bffff-17f777d939805db3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[50,"mph"]}]}},"subType":"road","connectors":["8f44c0a3239d6f5-13bf38480018ce4a","8f44c0a32380434-179737e33c0b0c16"]},"geometry":{"type":"LineString","coordinates":[[-83.6129741,32.8699729],[-83.61295220000001,32.8702363],[-83.6129361,32.870403],[-83.61289590000001,32.8706644],[-83.61285840000001,32.870860300000004],[-83.6128128,32.8710608]]},"id":"8944c0a323bffff-17ffb80b9efcd236"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved"},"subType":"road","connectors":["8f44c0a32332048-13bfb1ad234bf735","8f44c0a32aa3c44-13ffebbcf3484693"]},"geometry":{"type":"LineString","coordinates":[[-83.6179505,32.8656012],[-83.61779560000001,32.865652100000005],[-83.617652,32.8657356],[-83.6175405,32.8658161],[-83.6174596,32.8659052],[-83.61730800000001,32.866099000000006],[-83.617258,32.866161000000005],[-83.617008,32.8664772],[-83.6164411,32.8671846],[-83.6157221,32.8681051],[-83.61551820000001,32.8683737]]},"id":"8744c0a32ffffff-179fbeda4bfb64a5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":["isLink"]},"subType":"road","connectors":["8f44c0a3612ec01-17df38ba18201188","8f44c0a36c08228-179ff565cd9cd0db"]},"geometry":{"type":"LineString","coordinates":[[-83.613994,32.83719],[-83.61466200000001,32.837648],[-83.61507,32.837907],[-83.61570400000001,32.838278],[-83.61577000000001,32.838316],[-83.617406,32.839201],[-83.617806,32.839413],[-83.61837220000001,32.8397132],[-83.61864990000001,32.8398612],[-83.61918390000001,32.8401537]]},"id":"8744c0a36ffffff-13d7af21a18fd5b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a3600419c-17ff6ccfd4a5f2f3","8f44c0a360038a5-17d77d16e60e55a8"]},"geometry":{"type":"LineString","coordinates":[[-83.61739700000001,32.8438279],[-83.61741400000001,32.843722],[-83.617452,32.843468800000004],[-83.61749590000001,32.8431829],[-83.61751070000001,32.843074]]},"id":"8a44c0a36007fff-17d7fcf2cf926a76"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,69.46],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36764c69-13bf6f090a7dcad3","8f44c0a360ddb49-17b7beef67b654e6"]},"geometry":{"type":"LineString","coordinates":[[-83.616641,32.8474649],[-83.61663300000001,32.847521],[-83.6166132,32.847754900000005],[-83.6166115,32.8478724],[-83.61660780000001,32.8479559],[-83.6166,32.84809]]},"id":"8944c0a360fffff-17f7befece4d84a2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2820a309-13def2101e4045a0","8f44c0a282e4ac8-13df723136554306"]},"geometry":{"type":"LineString","coordinates":[[-83.73332470000001,32.927230200000004],[-83.73308300000001,32.9274253],[-83.7332717,32.927640700000005]]},"id":"8844c0a283fffff-13df726391a2408a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a2827225e-13f7fed85d4baaf8","8f44c0a28273b8a-13b71dea1a3838bb"]},"geometry":{"type":"LineString","coordinates":[[-83.73464270000001,32.9274399],[-83.73477820000001,32.9276144],[-83.7350239,32.927540900000004]]},"id":"8a44c0a28277fff-13bf7e6e06ab5156"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2827425c-139f5d5ca5434ef0","8f44c0a282604b3-13de3b62983ff74f"]},"geometry":{"type":"LineString","coordinates":[[-83.7360599,32.9272195],[-83.7358913,32.9267814],[-83.7358698,32.9267251],[-83.73574640000001,32.9267544],[-83.73525020000001,32.9268949]]},"id":"8944c0a2827ffff-13976c28e1bbeef3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a36b43423-17b74ef62c2bdf63","8f44c0a36b40772-17f7fe61bb66b3a6"]},"geometry":{"type":"LineString","coordinates":[[-83.62973740000001,32.8440132],[-83.6299551,32.843729700000004],[-83.62997490000001,32.8437071]]},"id":"8a44c0a36b47fff-17d74eac5554a28e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0dbd88-17d7ebd1ef20ac05","8f44c0b0a0deb31-13b75b9c42fb475b"]},"geometry":{"type":"LineString","coordinates":[[-83.7096674,32.827039400000004],[-83.7097478,32.826897800000005],[-83.70975010000001,32.826687],[-83.7097514,32.8266064],[-83.70975320000001,32.8263957]]},"id":"8a44c0b0a0dffff-17ffcba47316cc38"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b0a0d4246-13fe4c1029257f01","8f44c0b0a0a8af5-179e6bf817ac3439"]},"geometry":{"type":"LineString","coordinates":[[-83.7096063,32.8236962],[-83.7095895,32.8243385],[-83.7095895,32.824696800000005],[-83.7095678,32.825459200000005]]},"id":"8844c0b0a1fffff-17d75c0392add57a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0b5075b688-139ded0c7d81245d","8f44c0b506740c2-139fdde09416800c"]},"geometry":{"type":"LineString","coordinates":[[-83.76159290000001,32.878383400000004],[-83.7615651,32.878383],[-83.7614686,32.878381700000006],[-83.76125350000001,32.8783789]]},"id":"8a44c0b50677fff-139dfd76823f30e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a343b4973-13d6f04eb875312e","8f44c0a3406abb1-17f6eb12ab3e0dbd"]},"geometry":{"type":"LineString","coordinates":[[-83.6422933,32.8419851],[-83.643021,32.842194],[-83.6439746,32.8424488],[-83.6440326,32.8424124],[-83.644287,32.841441],[-83.6444374,32.840817200000004]]},"id":"8744c0a34ffffff-13b6ecee4f35b468"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":"paved"},"subType":"road","connectors":["8f44c0a34cf6c6c-139f622ac912ef65","8f44c0a34c81928-13ff54b7f551c814"]},"geometry":{"type":"LineString","coordinates":[[-83.6339329,32.8316357],[-83.6340605,32.8317144],[-83.6341613,32.831774100000004],[-83.634978,32.832271]]},"id":"8944c0a34cbffff-13d7d3715e524575"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34926a24-17bef3c66fbe1a92","8f44c0a34931bac-17ffe558878a3d5e"]},"geometry":{"type":"LineString","coordinates":[[-83.6474266,32.8272331],[-83.6472645,32.8271419],[-83.6467832,32.827746000000005]]},"id":"8944c0a3493ffff-17b7e49b16c2e9ca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34931bac-17ffe558878a3d5e","8f44c0a34904d24-17d6f500f9c7e41a"]},"geometry":{"type":"LineString","coordinates":[[-83.6467832,32.827746000000005],[-83.6467617,32.827773],[-83.64692330000001,32.827863900000004]]},"id":"8944c0a3493ffff-17b6e53a5b27a19a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9342663-13d78d580418ded6","8f44c0ba935e2d8-17bf6e9669a89d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.63040000000001,32.8295],[-83.63013600000001,32.8298056],[-83.62989060000001,32.830103]]},"id":"8944c0ba937ffff-17971df843afd005"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9276b1a-17ff3009696d64a1","8f44c0ba935e2d8-17bf6e9669a89d9c"]},"geometry":{"type":"LineString","coordinates":[[-83.62989060000001,32.830103],[-83.6297581,32.8302637],[-83.6296456,32.8304001],[-83.62929700000001,32.830813]]},"id":"8844c0ba93fffff-179fcf4f450cba4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9252112-13dff2975ce905d8","8f44c0ba92ee159-13df33d99bde3259"]},"geometry":{"type":"LineString","coordinates":[[-83.62773510000001,32.832785900000005],[-83.62788950000001,32.8325909],[-83.62816360000001,32.8322748],[-83.62825070000001,32.832174300000005]]},"id":"8944c0ba92fffff-139f933a4ad3efb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9209ad8-1397f18e783bf2f5","8f44c0ba9252c80-139f12e6f0eeeb59"]},"geometry":{"type":"LineString","coordinates":[[-83.6286745,32.8314734],[-83.62847690000001,32.831712],[-83.6282214,32.831991800000004],[-83.6281233,32.8320992]]},"id":"8844c0ba93fffff-13df72387b77bdcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,30.59],"value":"paved"}],"restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a3690b718-13979da1639b5130","8f44c0a3697276b-139f3b122652b9c5"]},"geometry":{"type":"LineString","coordinates":[[-83.6247774,32.835165],[-83.62453500000001,32.835203],[-83.62445620000001,32.835215600000005],[-83.6239896,32.835290300000004],[-83.62372900000001,32.83534]]},"id":"8844c0a369fffff-13dfdc5a2ed80ba9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2364c75a-17b7f7673b67b109","8f44c0a2364dcb2-17b776d3a048fa24"]},"geometry":{"type":"LineString","coordinates":[[-83.6918157,32.8962141],[-83.6918943,32.8962491],[-83.69197290000001,32.896284],[-83.6920085,32.8962998],[-83.6920518,32.8962323]]},"id":"8a44c0a2364ffff-17d67716a90ce6b8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a048aec71-139ee5d9bbd547e2","8f44c0a04813cd6-13b7e3c12b177f75"]},"geometry":{"type":"LineString","coordinates":[[-83.67279090000001,32.8851406],[-83.6728922,32.8851078],[-83.6731365,32.8849879],[-83.6735778,32.8848082],[-83.6736494,32.8849492]]},"id":"8844c0a049fffff-13bfe4ba3b3b2185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0402c508-17b643d0392b7c79","8f44c0b0402d19a-139752bea6460987"]},"geometry":{"type":"LineString","coordinates":[[-83.7129469,32.7428356],[-83.71296170000001,32.743043],[-83.7130484,32.7431489],[-83.7131882,32.7432029],[-83.71338460000001,32.7431989]]},"id":"8a44c0b0402ffff-13d74374145c1fb1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b52843430-139fee3b1fcc4cd2","8f44c0b5284364c-13b7fdd216ba9727"]},"geometry":{"type":"LineString","coordinates":[[-83.7480015,32.8718334],[-83.74794150000001,32.8720148],[-83.7481695,32.872069100000004]]},"id":"8944c0b5287ffff-1395ee30ec70154f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b5284e623-13d5ed134131e46e","8f44c0b5285d105-139ffdf571f7d759"]},"geometry":{"type":"LineString","coordinates":[[-83.74811290000001,32.8722361],[-83.74805740000001,32.8724001],[-83.74842000000001,32.872480100000004],[-83.74847480000001,32.8723216]]},"id":"8944c0b5287ffff-1797ed9f7e445eeb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[27.18,32.42],"value":"paved"},{"applyAt":[63.51,72.94],"value":"paved"}]},"subType":"road","connectors":["8f44c0a36058372-17dff844395f29bd","8f44c0a363a6128-17b777e58f33e109"]},"geometry":{"type":"LineString","coordinates":[[-83.619524,32.8474981],[-83.6195618,32.847255100000005],[-83.61956400000001,32.8472079],[-83.61957000000001,32.8470918],[-83.6195496,32.8470341],[-83.6194979,32.846991],[-83.6194559,32.846967400000004],[-83.6194126,32.8469435],[-83.61937250000001,32.8469197]]},"id":"8744c0a36ffffff-17ff67e4c7911ea7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[52.67,60.99],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b1872586e-17deb29fb7086159","8f44c0b187213a8-13fef332bd771cdc"]},"geometry":{"type":"LineString","coordinates":[[-83.66732370000001,32.8152301],[-83.6674953,32.8152321],[-83.6675477,32.8151786],[-83.66755090000001,32.814918],[-83.66755570000001,32.814843100000004],[-83.6675589,32.8146774],[-83.6675589,32.8145858]]},"id":"8944c0b1873ffff-17d7f2b745b20639"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b180c4af2-1797bd2052439833","8f44c0b180ec18a-1797ea641c700af6"]},"geometry":{"type":"LineString","coordinates":[[-83.6698107,32.8146489],[-83.6705834,32.8146697],[-83.6709311,32.8146774]]},"id":"8944c0b180fffff-179efbc2330c2b81"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[85.59,93.99],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b5359369e-17f5f59e2c05b281","8f44c0a2c96b886-1795f6d6bf4dc947"]},"geometry":{"type":"LineString","coordinates":[[-83.7449758,32.8893471],[-83.7450833,32.8896023],[-83.7450926,32.889659900000005],[-83.74509850000001,32.889727400000005],[-83.7450697,32.890021000000004],[-83.7450249,32.8900501],[-83.7449876,32.890059400000005],[-83.74489790000001,32.8900573],[-83.74447570000001,32.8900127]]},"id":"8a44c0a2c96ffff-179df5ba82067066"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2dc8a634-13f7f5d03710a948","8f44c0a2c201269-17d642de8525712d"]},"geometry":{"type":"LineString","coordinates":[[-83.7448957,32.9075748],[-83.7444995,32.9074333],[-83.7442642,32.9073493],[-83.744101,32.907291],[-83.743217,32.906975],[-83.74162000000001,32.906413],[-83.741342,32.906311],[-83.740949,32.906146],[-83.740486,32.905911],[-83.740339,32.905825],[-83.74016800000001,32.905721],[-83.73988100000001,32.905524],[-83.739548,32.905274]]},"id":"8644c0a2fffffff-17f5fc7e9fb97849"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0b09723776-17d5fbee6af6e88b","8f44c0b09723b6d-179deb1a0e892587"]},"geometry":{"type":"LineString","coordinates":[[-83.74928320000001,32.8368026],[-83.74923890000001,32.836767800000004],[-83.74918380000001,32.8367464],[-83.7491236,32.8367406],[-83.7490642,32.836750900000006],[-83.7490116,32.836776300000004],[-83.7489712,32.8368142],[-83.7489469,32.836860900000005],[-83.7489434,32.8368917]]},"id":"8a44c0b09727fff-179dfb9156ded5ab"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[0.0,15.45],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0baa4a3849-17d7df7292781809","8f44c0baa4a538a-17fffe51f4a5e315"]},"geometry":{"type":"LineString","coordinates":[[-83.5710177,32.8105447],[-83.5708642,32.8105958],[-83.5707629,32.8106628],[-83.5706311,32.8107917],[-83.5705559,32.8108877]]},"id":"8a44c0baa4a7fff-17d79eeefffb6222"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0a2a836726-17f66c813cb7a3eb","8f44c0a2a836574-179fcca2b30e1042"]},"geometry":{"type":"LineString","coordinates":[[-83.70933330000001,32.915241200000004],[-83.709327,32.915255800000004],[-83.7093261,32.9152861],[-83.7093366,32.915315],[-83.7093576,32.915339700000004],[-83.7093869,32.915357400000005]]},"id":"8b44c0a2a836fff-17d64c9c5b5826fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b08b019a0-1395f4525ce956b0","8f44c0b08b2236d-17f7f45220fb7f02"]},"geometry":{"type":"LineString","coordinates":[[-83.7455067,32.815468800000005],[-83.74550690000001,32.8148246],[-83.745507,32.8146215]]},"id":"8944c0b08b3ffff-17fff452432b2380"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b0d59ec84-13b7f43e57885a45","8f44c0b08b268c6-17dff44aaa11e5a6"]},"geometry":{"type":"LineString","coordinates":[[-83.745519,32.8139703],[-83.74552700000001,32.813623],[-83.745541,32.811058],[-83.745553,32.8103637],[-83.74553870000001,32.8097834]]},"id":"8844c0b0d5fffff-13bff43f73d1098f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05d4ccd5-17bf91d6d53e1e27","8f44c0a05d48189-139681e562e8f1f7"]},"geometry":{"type":"LineString","coordinates":[[-83.6875411,32.8997369],[-83.68728850000001,32.9000731],[-83.68728850000001,32.900091100000004],[-83.68751780000001,32.9002496]]},"id":"8a44c0a05d4ffff-17ffe22a92cea185"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a2e51c3a9-17d75d9f13b0eab7","8f44c0a2e5036ce-17d77ce524a80064"]},"geometry":{"type":"LineString","coordinates":[[-83.7023759,32.899154100000004],[-83.70251660000001,32.8991525],[-83.70267340000001,32.899151100000005]]},"id":"8a44c0a2e51ffff-17d65d422632d28f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b532186-13f7d1696072f1ac","8f44c0b1b532d25-17fef16386dabc2b"]},"geometry":{"type":"LineString","coordinates":[[-83.6549482,32.8283153],[-83.6549876,32.828203900000005],[-83.6549576,32.8281319]]},"id":"8b44c0b1b532fff-13b7f15be75d5f63"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a3252244a-17ffffa05bfbed12","8f44c0a32522c8d-17ffff9d197e8615"]},"geometry":{"type":"LineString","coordinates":[[-83.6032507,32.8600751],[-83.6032838,32.8600744],[-83.6036626,32.860082600000005],[-83.6037395,32.860064200000004],[-83.6037699,32.860027200000005],[-83.60377340000001,32.859961500000004],[-83.60374990000001,32.8599186],[-83.6036874,32.8598994],[-83.60328870000001,32.8598943],[-83.60325590000001,32.8598939]]},"id":"8a44c0a32527fff-17b7deed3bc44901"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a36b62ab4-139f4d5f9544b8f8","8f44c0a36b712aa-17df5ebed7704969"]},"geometry":{"type":"LineString","coordinates":[[-83.6303879,32.8427428],[-83.63037200000001,32.842731400000005],[-83.63026590000001,32.8426495],[-83.6302241,32.8426349],[-83.63016490000001,32.842623200000006],[-83.63011970000001,32.842632],[-83.63005360000001,32.8426904],[-83.6299666,32.8428483],[-83.6299405,32.8428965],[-83.6298259,32.8430229]]},"id":"8944c0a36b7ffff-13bf5e1e14d65657"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b572049-13f7ad3d9475adce","8f44c0b0b509b52-1797ee09925834a0"]},"geometry":{"type":"LineString","coordinates":[[-83.7218663,32.8363582],[-83.72187840000001,32.836401],[-83.72191000000001,32.8364202],[-83.7221021,32.836382300000004],[-83.72215580000001,32.8363401],[-83.72219270000001,32.836328800000004]]},"id":"8944c0b0b57ffff-17972daa6cb694db"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","level":-1,"road":{"class":"service"},"subType":"road","connectors":["8f44c0a3602379e-17ff7bea43257090","8f44c0a36023663-17bfab9401240e9d"]},"geometry":{"type":"LineString","coordinates":[[-83.61801600000001,32.8431768],[-83.61804160000001,32.8431614],[-83.61806,32.8431398],[-83.618069,32.843114400000005],[-83.61806770000001,32.8430879],[-83.6180563,32.8430632],[-83.61803590000001,32.8430429],[-83.6180087,32.843029300000005],[-83.6179778,32.8430239],[-83.6179465,32.8430271],[-83.61791810000001,32.8430388],[-83.6178958,32.8430575],[-83.6178819,32.8430814],[-83.617878,32.843107700000004]]},"id":"8b44c0a36023fff-17ffbba2ea25917e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a135528-17de54e7a9be1e01","8f44c0a2a122cab-17fe73fb3ceff43d"]},"geometry":{"type":"LineString","coordinates":[[-83.7059462,32.9192164],[-83.70590940000001,32.9191894],[-83.7062614,32.918821900000005],[-83.70701670000001,32.9195154],[-83.70669050000001,32.919764],[-83.70632450000001,32.9194947]]},"id":"8744c0a2affffff-1796d37fb62cac15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.6551831,32.824513800000005]},"id":"8f44c0b1a34c983-179ff0d69a9bc079"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34e95d-17f7d1b8e3f9c5cc","8f44c0b1a34c983-179ff0d69a9bc079"]},"geometry":{"type":"LineString","coordinates":[[-83.654821,32.824658],[-83.6548226,32.8245084],[-83.6551831,32.824513800000005]]},"id":"8944c0b1a37ffff-17b6f16863f3ed51"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a34e95d-17f7d1b8e3f9c5cc","8f44c0b1a34c983-179ff0d69a9bc079"]},"geometry":{"type":"LineString","coordinates":[[-83.654821,32.824658],[-83.6551809,32.8246617],[-83.6551831,32.824513800000005]]},"id":"8944c0b1a37ffff-17f7d12770743197"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified"},"subType":"road","connectors":["8f44c0b1d0d2cb3-13d77931a919dbc4","8f44c0b1d08c71d-17ff79018f2e400c"]},"geometry":{"type":"LineString","coordinates":[[-83.6911592,32.8082833],[-83.6911989,32.8083958],[-83.69121890000001,32.808481],[-83.69123490000001,32.8085855],[-83.6912379,32.8086837],[-83.69123040000001,32.808769500000004],[-83.6912169,32.8088566],[-83.69114760000001,32.809124600000004],[-83.69105710000001,32.8094704],[-83.69108220000001,32.8096594]]},"id":"8844c0b1d1fffff-13b6f900693f0aa7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a34142485-17dfed27604af5fb","8f44c0a34175d41-13dfebafcb986fd9"]},"geometry":{"type":"LineString","coordinates":[[-83.643585,32.837727],[-83.64383000000001,32.837027],[-83.6438696,32.836908],[-83.64392600000001,32.836768],[-83.643961,32.8367],[-83.644186,32.836264]]},"id":"8944c0a3417ffff-179fec7a87874398"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a2698db72-17f7e5dba682f0cb","8f44c0a2683016a-1397e432b902c28d"]},"geometry":{"type":"LineString","coordinates":[[-83.68657490000001,32.841275800000005],[-83.6864098,32.841208],[-83.6862138,32.8411382],[-83.685996,32.841074],[-83.685895,32.8410494]]},"id":"8a44c0a26837fff-17be95052bc56ec1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a26801209-13f6a1d0aeee7a96","8f44c0a26804ce4-13d7c2d866f6518a"]},"geometry":{"type":"LineString","coordinates":[[-83.687551,32.842881000000006],[-83.68741700000001,32.842498],[-83.68735670000001,32.8423181],[-83.687258,32.842073],[-83.687189,32.841909],[-83.687129,32.841814]]},"id":"8944c0a2683ffff-139ee24af612381e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b560e9566-13d5efb3a7767b38","8f44c0b50560606-13bff35264266f6b"]},"geometry":{"type":"LineString","coordinates":[[-83.747399,32.85817],[-83.74782300000001,32.858314],[-83.74825700000001,32.858544],[-83.748457,32.858674],[-83.74910200000001,32.859242],[-83.75046400000001,32.860495],[-83.75373900000001,32.863507000000006],[-83.755936,32.865536],[-83.756674,32.866213],[-83.7590234,32.8683695]]},"id":"8644c0b57ffffff-17dfe148714e0890"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"unclassified","surface":[{"applyAt":[232.32,316.91],"value":"paved"}],"flags":[{"applyAt":[139.72,232.33],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b50561651-139fd256ce0ff8d3","8f44c0b50474549-17f5f848ece07d3b"]},"geometry":{"type":"LineString","coordinates":[[-83.759426,32.868754],[-83.75832510000001,32.8696049],[-83.75759090000001,32.870164700000004],[-83.757176,32.870488],[-83.757051,32.870592],[-83.75700900000001,32.870635],[-83.75699060000001,32.8707158]]},"id":"8844c0b505fffff-17f5d560d2317820"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a34d10191-1796ff14ff22f092","8f44c0a34dac166-17f70031213432ff"]},"geometry":{"type":"LineString","coordinates":[[-83.63578700000001,32.828120000000006],[-83.636127,32.827718100000006],[-83.6362417,32.8275809]]},"id":"8844c0a34dfffff-17beffa2e5b1efac"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9344789-13d7bc1cb9ea592a","8f44c0ba9342663-13d78d580418ded6"]},"geometry":{"type":"LineString","coordinates":[[-83.6309045,32.8289083],[-83.6306555,32.8291984],[-83.63040000000001,32.8295]]},"id":"8a44c0ba9347fff-139f5cbaad93018d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b09470d34-1795f5120754aa8b","8f44c0b0950d133-1795f4d92e1ce2ab"]},"geometry":{"type":"LineString","coordinates":[[-83.74520000000001,32.8337221],[-83.745204,32.8336119],[-83.7452329,32.8327467],[-83.745244,32.832414],[-83.745258,32.831887300000005],[-83.74529100000001,32.830644]]},"id":"8844c0b095fffff-13d7f4f3efd99626"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a32b9c2ed-17ffac476ff147c7","8f44c0a32aa3c44-13ffebbcf3484693"]},"geometry":{"type":"LineString","coordinates":[[-83.61772900000001,32.863988],[-83.6177181,32.8646405],[-83.61772810000001,32.8648351],[-83.6177421,32.864985600000004],[-83.6177723,32.86511],[-83.617816,32.865255000000005],[-83.6178672,32.8653915],[-83.6179505,32.8656012]]},"id":"8844c0a32bfffff-13ff2c2e27601f1c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,299.57],"value":"paved"}],"flags":[{"applyAt":[25.09,118.59],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a342e6042-17deea77ed674d83","8f44c0a34283182-17b6f20b46c55ad7"]},"geometry":{"type":"LineString","coordinates":[[-83.641582,32.847082],[-83.6417083,32.8471222],[-83.6418352,32.847156000000005],[-83.64280450000001,32.8473592],[-83.643406,32.847482],[-83.64468500000001,32.847738]]},"id":"8844c0a343fffff-1797ee43714303f6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba9252112-13dff2975ce905d8","8f44c0ba9253b62-13bf710723af77ea"]},"geometry":{"type":"LineString","coordinates":[[-83.62825070000001,32.832174300000005],[-83.6283267,32.8322183],[-83.6285278,32.8323363],[-83.62869900000001,32.832434],[-83.62889100000001,32.832551]]},"id":"8a44c0ba9257fff-13d7f1cec3368e6e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","flags":[{"applyAt":[57.99,141.72],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1ab56916-13d6ca41ab9fd319","8f44c0b1aa364b4-13b6d18d26423374"]},"geometry":{"type":"LineString","coordinates":[[-83.654891,32.816544],[-83.6555101,32.8165567],[-83.65640400000001,32.816575],[-83.656881,32.816584],[-83.65787900000001,32.816592]]},"id":"8844c0b1abfffff-13b7ede7722ac68a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b0c6cd35b-17b79af580cdacb8","8f44c0b0c60e4ed-17ffcbb0aa5f6871"]},"geometry":{"type":"LineString","coordinates":[[-83.7362344,32.8073561],[-83.736238,32.806967],[-83.73621100000001,32.806472],[-83.736143,32.80594],[-83.7361219,32.8057679],[-83.73607200000001,32.805360900000004],[-83.736007,32.805002],[-83.735978,32.804747],[-83.73596930000001,32.8046263],[-83.73593600000001,32.804287],[-83.735928,32.804181],[-83.73593500000001,32.80399]]},"id":"8844c0b0c7fffff-139eeb4a6c8f94c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","flags":[{"applyAt":[298.24,367.99],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b899292b4-17d7e24d2e300b8d","8f44c0b8d259914-17f756a969886eb9"]},"geometry":{"type":"LineString","coordinates":[[-83.600369,32.859682],[-83.59987000000001,32.859758],[-83.599103,32.859904],[-83.598454,32.860039],[-83.59761900000001,32.860221],[-83.5972675,32.860294700000004],[-83.596889,32.860374],[-83.59675700000001,32.860402],[-83.5965443,32.8604465],[-83.59595800000001,32.860569000000005],[-83.5956014,32.8606506]]},"id":"8644c0b8fffffff-1797dc7da3b336ff"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"trunk","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b9dac48cb-179feede66473d08","8f44c0b9d39d21d-13d8602b1d517c7f"]},"geometry":{"type":"LineString","coordinates":[[-83.538025,32.846404],[-83.537625,32.84657],[-83.53280000000001,32.848609],[-83.532302,32.84881],[-83.531929,32.848968],[-83.53093910000001,32.8493958]]},"id":"8744c0b9dffffff-13bff7857235043d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[66.38,167.92],"value":"paved"}],"flags":[{"applyAt":[66.38,167.92],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1a959092-1797f1b5c8dd4836","8f44c0b18412bb3-17f7e6536db8091e"]},"geometry":{"type":"LineString","coordinates":[[-83.654826,32.810965],[-83.65513100000001,32.81098],[-83.65553340000001,32.8110031],[-83.6566164,32.811046600000005],[-83.657447,32.811073],[-83.657825,32.811089],[-83.65948900000001,32.811141]]},"id":"8644c0b1fffffff-17d7fc04cab1d37e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0b1e8f4c26-17b6edb2e8634593","8f44c0b1e802503-1396cbe1488e41df"]},"geometry":{"type":"LineString","coordinates":[[-83.65721400000001,32.789248],[-83.656925,32.789758],[-83.6567634,32.7900322],[-83.6566671,32.7901898],[-83.656469,32.790535000000006]]},"id":"8844c0b1e9fffff-1396ccc9135f2d35"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[12.25,19.2],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a2a060a48-17b7fdcd8107417f","8f44c0a2a063145-17964e8706b4ad32"]},"geometry":{"type":"LineString","coordinates":[[-83.7085584,32.925238400000005],[-83.7085984,32.9252337],[-83.7086838,32.9252083],[-83.708753,32.925185400000004],[-83.7089213,32.9251316],[-83.70893980000001,32.9251165],[-83.7089449,32.9250903],[-83.7088552,32.924908300000006]]},"id":"8a44c0a2a067fff-17bf4deb58e743cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b116245b2-13bfd30995657c4e","8f44c0b1170b123-13fff12b9b171229"]},"geometry":{"type":"LineString","coordinates":[[-83.6542823,32.7801296],[-83.6542675,32.7801679],[-83.6549765,32.780173500000004],[-83.6550471,32.7800287]]},"id":"8844c0b117fffff-13def213f9c5ace3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1170adb6-13d7d27ea1843ed3","8f44c0b1162691c-13bed34f9a810b18"]},"geometry":{"type":"LineString","coordinates":[[-83.65450460000001,32.7795512],[-83.6542675,32.7794861],[-83.65404380000001,32.780083600000005],[-83.6541047,32.7801278],[-83.6541703,32.780128500000004]]},"id":"8844c0b117fffff-13ded33aaa71a7e8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b506e6031-17d5f3fde1343896","8f44c0b506e222c-17bdd3ff232e7b8b"]},"geometry":{"type":"LineString","coordinates":[[-83.75874900000001,32.8792606],[-83.75875,32.8794582],[-83.758747,32.879862]]},"id":"8a44c0b506e7fff-17fdd3fe0212f42b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved"},"subType":"road","connectors":["8f44c0b53d5ccd9-1395f8a9dd233c23","8f44c0b53d5b80b-1397f8b5b98df82a"]},"geometry":{"type":"LineString","coordinates":[[-83.75683550000001,32.8840787],[-83.75655060000001,32.8840543],[-83.7563676,32.8840549],[-83.7562365,32.884126900000005],[-83.75611040000001,32.884254],[-83.7560844,32.884449100000005],[-83.7560953,32.8845885],[-83.7561256,32.884741000000005],[-83.7562012,32.8848469],[-83.75632730000001,32.884893500000004],[-83.7568165,32.8849023]]},"id":"8944c0b53d7ffff-1395f9d087aef7e4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0ba96206a2-13ff6970aead30f4","8f44c0ba971baa1-1797aa6bc30c5752"]},"geometry":{"type":"LineString","coordinates":[[-83.6188918,32.8283286],[-83.618476,32.828062],[-83.618437,32.828001],[-83.618425,32.827948],[-83.61843,32.827875],[-83.618442,32.827852],[-83.618498,32.827742],[-83.618514,32.827666],[-83.61851800000001,32.827602],[-83.61849000000001,32.827553]]},"id":"8844c0ba97fffff-17973a3883d8807a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0baa496db4-17b7f5c99f01e7ff","8f44c0baa494334-179fa407cb7727ec"]},"geometry":{"type":"LineString","coordinates":[[-83.5686788,32.8110026],[-83.5685548,32.8109556],[-83.568143,32.8108548],[-83.56795910000001,32.8108111]]},"id":"8744c0b81ffffff-17dfa4e76ce92d31"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b2c488649-13b7d698383ec1c2","8f44c0b2eb09b25-13b5c724893e80ef"]},"geometry":{"type":"LineString","coordinates":[[-83.76423650000001,32.7500073],[-83.7643232,32.750490400000004],[-83.764368,32.750745],[-83.76437700000001,32.75077],[-83.76446800000001,32.751337],[-83.76449000000001,32.751537],[-83.764491,32.751795],[-83.764477,32.751955],[-83.76445500000001,32.75208],[-83.76439400000001,32.752324],[-83.76429800000001,32.752595],[-83.764228,32.752732],[-83.76401200000001,32.753082]]},"id":"8644c0b2fffffff-1797e64e672edb15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":[{"applyAt":[0.0,37.26],"value":"paved"}]},"subType":"road","connectors":["8f44c0b8a46055b-17b7e7f477946f8b","8f44c0b8a0ae865-17ffde6ccc89c0a9"]},"geometry":{"type":"LineString","coordinates":[[-83.5447604,32.8594601],[-83.5446769,32.859540100000004],[-83.54448160000001,32.8596996],[-83.5438913,32.8602547],[-83.543677,32.860455],[-83.5435436,32.8605365],[-83.54321610000001,32.860635],[-83.5426097,32.860821800000004],[-83.542359,32.860944100000005],[-83.5421003,32.8611275],[-83.5419124,32.861206200000005],[-83.5418065,32.8611884],[-83.5417165,32.8611322],[-83.5416764,32.8610665],[-83.5416582,32.8609059],[-83.54169110000001,32.8607103],[-83.54177490000001,32.8604709],[-83.54180000000001,32.860294100000004],[-83.5417815,32.860206600000005],[-83.5417319,32.860085500000004],[-83.5416527,32.8599881],[-83.5415523,32.859916000000005],[-83.5412125,32.859756100000006],[-83.54101680000001,32.8596584],[-83.54085690000001,32.8595482]]},"id":"8744c0b8affffff-17bff395f7deee87"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0b8a46055b-17b7e7f477946f8b","8f44c0b8a5325a2-17fff09e0d05e11a"]},"geometry":{"type":"LineString","coordinates":[[-83.54085690000001,32.8595482],[-83.5407965,32.8595066],[-83.5405762,32.859288500000005],[-83.5404049,32.8590502],[-83.5401947,32.858807],[-83.5400712,32.858703500000004],[-83.5399318,32.8586496],[-83.5397951,32.8586256],[-83.5395338,32.858623900000005],[-83.539399,32.8585987],[-83.53897880000001,32.8584052],[-83.5386247,32.8582911],[-83.5380495,32.8582106],[-83.53789900000001,32.8581371],[-83.5378187,32.858009700000004],[-83.53762520000001,32.8568933],[-83.537515,32.8556806],[-83.5373934,32.855223],[-83.53720340000001,32.854935600000005],[-83.5371879,32.854675400000005],[-83.5373088,32.854158500000004]]},"id":"8844c0b8a5fffff-179fedeb73bb998a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21cab754-13bf4900fc2d94fa","8f44c0a21ce2b05-13ffe489ee9f2535"]},"geometry":{"type":"LineString","coordinates":[[-83.7108209,32.874952400000005],[-83.71191230000001,32.875404],[-83.7120244,32.8754444],[-83.71264980000001,32.875669800000004]]},"id":"8844c0a21dfffff-13b7d6c7ef593748"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21c49da2-17dffb6d35878f90","8f44c0a21c5c4d6-17df3f7eef53f193"]},"geometry":{"type":"LineString","coordinates":[[-83.7147154,32.8764144],[-83.7157935,32.876803],[-83.7159357,32.8768553],[-83.71604810000001,32.876898700000005],[-83.7163821,32.877030000000005]]},"id":"8944c0a21c7ffff-179e7d74f4179d77"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a36153a9b-17bf7805d88f1f05","8f44c0a3615ec34-17dfe79f83044c5e"]},"geometry":{"type":"LineString","coordinates":[[-83.619636,32.8432636],[-83.619614,32.8432465],[-83.6194723,32.843183100000005]]},"id":"8a44c0a36157fff-17d737d1ca383662"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved"},"subType":"road","connectors":["8f44c0a360cd659-17df2c8ce6f7cfc4","8f44c0a363b2cdd-17f7abc7cd6c26e7"]},"geometry":{"type":"LineString","coordinates":[[-83.61793320000001,32.847801000000004],[-83.61784680000001,32.8477899],[-83.6177674,32.847783],[-83.6176178,32.8477602]]},"id":"8844c0a361fffff-17f7bc2a764d8ec4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":"paved","flags":[{"applyAt":[7.96,22.85],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a360cdc09-17976c8f4a659729","8f44c0a360eb470-17df7c75894d253f"]},"geometry":{"type":"LineString","coordinates":[[-83.617614,32.847415000000005],[-83.6176346,32.8473454],[-83.61765240000001,32.847212],[-83.6176552,32.8471205]]},"id":"8944c0a360fffff-17b73c7dc7d11289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a328509ad-17977bfd5c6ea996","8f44c0a3285ac25-13ffac0ecf60a98a"]},"geometry":{"type":"LineString","coordinates":[[-83.61784750000001,32.859911100000005],[-83.6178422,32.8602575],[-83.6178407,32.860348900000005],[-83.6178242,32.860815800000005],[-83.6178196,32.8611048]]},"id":"8944c0a3287ffff-17ffac05aa8097d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b8894abae-17d7ca756eca11e8","8f44c0b8894014b-17ff8aeea3ce4fc7"]},"geometry":{"type":"LineString","coordinates":[[-83.579153,32.847518],[-83.579133,32.847341],[-83.5790959,32.8471393],[-83.57898940000001,32.8465634],[-83.57895900000001,32.84638]]},"id":"8944c0b8897ffff-17dfdaaf9b88eeae"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0ba9a7548c-179782b198e7533b","8f44c0ba9b436c8-139f604c0f9074c6"]},"geometry":{"type":"LineString","coordinates":[[-83.635744,32.823087],[-83.6356159,32.8232427],[-83.6350601,32.8239183],[-83.6348581,32.824159800000004],[-83.6347623,32.8242744]]},"id":"8844c0ba9bfffff-1797f17e2a1369b0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a04570a28-17d6bb83e4bb0baa","8f44c0a04cde442-13bfbb834a83ff86"]},"geometry":{"type":"LineString","coordinates":[[-83.66391700000001,32.888913],[-83.66338280000001,32.8888959],[-83.6621168,32.8887833],[-83.66194510000001,32.8887517],[-83.6618217,32.888679700000004],[-83.6617198,32.8885671],[-83.66162320000001,32.888404900000005],[-83.661575,32.8882652],[-83.66158200000001,32.887622],[-83.66391800000001,32.887628]]},"id":"8844c0a045fffff-1396bed2095fd1be"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","flags":[{"applyAt":[174.57,293.23],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a36a1e086-139fb94152737ed4","8f44c0a36b9dcaa-13bfbd78ef2351ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6255211,32.8449947],[-83.62513200000001,32.8444159],[-83.62451750000001,32.8436699],[-83.6237938,32.842791500000004]]},"id":"8844c0a36bfffff-17dfbb50502d70b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"construction","surface":"paved","flags":[{"applyAt":[0.0,129.99],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0a368dd2b4-17dfe343f0be9f5a","8f44c0a36b9dcaa-13bfbd78ef2351ee"]},"geometry":{"type":"LineString","coordinates":[[-83.6237938,32.842791500000004],[-83.6228372,32.8419419],[-83.6214209,32.8407804]]},"id":"8744c0a36ffffff-13bf3058622f218c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[0.0,91.51],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a30db42c4-13df535d51a03654","8f44c0a30c34cd3-17b7cdba9765d8aa"]},"geometry":{"type":"LineString","coordinates":[[-83.6302423,32.8503356],[-83.62956100000001,32.8497439],[-83.6284876,32.8488029],[-83.6279339,32.848347600000004]]},"id":"8644c0a37ffffff-13b710891425e26c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"motorway_link","surface":"paved","flags":[{"applyAt":[126.85,190.01],"values":["isBridge"]},"isLink"]},"subType":"road","connectors":["8f44c0a36ae6c20-13dfd7c9e8b91304","8f44c0a30db42c4-13df535d51a03654"]},"geometry":{"type":"LineString","coordinates":[[-83.6279339,32.848347600000004],[-83.6271617,32.847407700000005],[-83.6267888,32.8469331],[-83.6261218,32.8458972]]},"id":"8844c0a36bfffff-17df35a902b3933f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","flags":[{"applyAt":[66.14,124.98],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04b5a6d0-17f6d0c97299ab85","8f44c0a23683051-139ea79120b82716"]},"geometry":{"type":"LineString","coordinates":[[-83.6814185,32.8928613],[-83.6814427,32.8928791],[-83.68175330000001,32.893038700000005],[-83.68203410000001,32.8931516],[-83.682597,32.893388200000004],[-83.683958,32.893922],[-83.684543,32.894126],[-83.68519500000001,32.894353]]},"id":"8644c0a07ffffff-17f6ec376b3e4a5d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":[{"applyAt":[0.0,227.06],"value":"paved"}],"flags":[{"applyAt":[51.21,115.19],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a04a52b1e-13b7d3823fbaf46e","8f44c0a05da44a9-17bfd01bdfe4ee29"]},"geometry":{"type":"LineString","coordinates":[[-83.68030370000001,32.894568500000005],[-83.6806184,32.8949463],[-83.68101490000001,32.8954163],[-83.68149530000001,32.8960068],[-83.6816963,32.8962452]]},"id":"8744c0a04ffffff-17bed1ce630614c1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2a99445b-13ffd36b53d3a19f","8f44c0a2a996a6e-13b6d3982db88bc5"]},"geometry":{"type":"LineString","coordinates":[[-83.70655470000001,32.9139417],[-83.7065714,32.9139586],[-83.7065803,32.9139793],[-83.7065804,32.9140013],[-83.7065716,32.914022100000004],[-83.70655500000001,32.914039100000004],[-83.70653250000001,32.9140504],[-83.7065068,32.9140547],[-83.706483,32.914052000000005]]},"id":"8a44c0a2a997fff-139ed36da7bef178"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1995225b-17b6f05faf9f7e0a","8f44c0b1995e981-17df7ec4f361b9b7"]},"geometry":{"type":"LineString","coordinates":[[-83.69469500000001,32.82067],[-83.694896,32.820731],[-83.6952771,32.820882000000005],[-83.69535210000001,32.820911100000004]]},"id":"8944c0b1997ffff-17feff911baec791"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b034ab181-13b6ffc57b18b600","8f44c0b034ab641-13d67fc69b7a2cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6883863,32.7862882],[-83.68838720000001,32.7860844],[-83.68838810000001,32.7860585]]},"id":"8b44c0b034abfff-13fe7fc63f03d9b2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db6c818-13ffffde09ab9c19","8f44c0b1db6c575-1396d064cb03df0e"]},"geometry":{"type":"LineString","coordinates":[[-83.707794,32.8064781],[-83.7078752,32.806448200000005],[-83.70800960000001,32.806415900000005]]},"id":"8b44c0b1db6cfff-13ffd021fdf81f11"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db6c818-13ffffde09ab9c19","8f44c0b0e793b2c-13df6e5887081c0b"]},"geometry":{"type":"LineString","coordinates":[[-83.70800960000001,32.806415900000005],[-83.708179,32.806375200000005],[-83.70840960000001,32.8063741],[-83.7086328,32.806373]]},"id":"8844c0b0e7fffff-13d7df1c5c21d9e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b1db60a51-13d7f14d72fccbac","8f44c0b1db6155e-13dff14d4111baf1"]},"geometry":{"type":"LineString","coordinates":[[-83.70742200000001,32.8061887],[-83.7074204,32.8060537],[-83.70742170000001,32.805942300000005]]},"id":"8a44c0b1db67fff-139ef14ddf0b71f4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35832763-17d6ff06aec4b440","8f44c0a3583652a-13bfbf0a56d39d46"]},"geometry":{"type":"LineString","coordinates":[[-83.6624731,32.8460752],[-83.6624805,32.8465926],[-83.662479,32.846699]]},"id":"8a44c0a35837fff-17ffff07b535a768"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a35832763-17d6ff06aec4b440","8f44c0a35814222-17debf0c4db453dc"]},"geometry":{"type":"LineString","coordinates":[[-83.662479,32.846699],[-83.662479,32.846933],[-83.66247,32.847153]]},"id":"8944c0a3583ffff-17d6ff080542bd3e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[85.52,135.2],"maxSpeed":[35,"mph"]},{"applyAt":[0.0,85.52],"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0b190ca4b1-13d7c3376d5973a6","8f44c0b197638e2-17dfa340c130241f"]},"geometry":{"type":"LineString","coordinates":[[-83.68696200000001,32.833401],[-83.6869715,32.8326299],[-83.686977,32.832182]]},"id":"8744c0b19ffffff-13deb33c12879690"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a20c904c0-13fefa7301d96254","8f44c0a20c8e588-13df76b3a7a46fdb"]},"geometry":{"type":"LineString","coordinates":[[-83.692103,32.859023],[-83.6914596,32.8586942],[-83.690568,32.858235]]},"id":"8944c0a20cbffff-13f7f89383a83249"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[59.85,114.46],"maxSpeed":[35,"mph"]},{"applyAt":[0.0,59.85],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a26b9b003-139ff0f0d23d2fa7","8f44c0a26a84ca3-179ee0fd66fc549d"]},"geometry":{"type":"LineString","coordinates":[[-83.687889,32.850123],[-83.687893,32.849777],[-83.6878956,32.8495834],[-83.6879007,32.849395900000005],[-83.687905,32.849241],[-83.6879091,32.8490911]]},"id":"8944c0a26abffff-17dee0f868520afa"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[29.12,288.05],"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0a200c0476-13b6f6c790f93b34","8f44c0a20013210-13fee7b3ab058481"]},"geometry":{"type":"LineString","coordinates":[[-83.69862470000001,32.8681807],[-83.698599,32.868141],[-83.698504,32.867939],[-83.69847200000001,32.867872000000006],[-83.698417,32.867725],[-83.69837700000001,32.867598],[-83.698321,32.867327],[-83.6983,32.867151],[-83.69830900000001,32.866233],[-83.698311,32.866025],[-83.698288,32.865831],[-83.69824700000001,32.86563]]},"id":"8844c0a201fffff-17b6677239f27490"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","surface":"paved","restrictions":{"speedLimits":[{"applyAt":[0.0,93.65],"maxSpeed":[40,"mph"]},{"applyAt":[93.65,361.42],"maxSpeed":[25,"mph"]}]}},"subType":"road","connectors":["8f44c0a20191894-17f66ccb60b9af88","8f44c0a20013210-13fee7b3ab058481"]},"geometry":{"type":"LineString","coordinates":[[-83.69824700000001,32.86563],[-83.69815600000001,32.865329],[-83.698042,32.865052],[-83.697973,32.864919],[-83.69792220000001,32.8648338],[-83.697839,32.864694],[-83.697744,32.864555],[-83.69763400000001,32.864415],[-83.697525,32.864294],[-83.69741300000001,32.864181],[-83.69719500000001,32.863992],[-83.696934,32.863774],[-83.69671600000001,32.863605],[-83.696602,32.863497],[-83.696363,32.863231],[-83.696263,32.863109],[-83.696161,32.862951]]},"id":"8844c0a201fffff-139ee9fabf2bd793"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b19528101-17f6f1f9ee6fe4b0","8f44c0b1952dc18-17fff11b51209f22"]},"geometry":{"type":"LineString","coordinates":[[-83.6809314,32.824218300000005],[-83.6810786,32.8241419],[-83.68128750000001,32.8240287]]},"id":"8a44c0b1952ffff-17b7b18a59669dfc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5650469,32.8081965]},"id":"8f44c0b8190aadc-17d7fce5be6e6ad0"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b852dc321-13dfe688bb931cd5","8f44c0b8190aadc-17d7fce5be6e6ad0"]},"geometry":{"type":"LineString","coordinates":[[-83.5676533,32.8067982],[-83.56775420000001,32.806951600000005],[-83.5665833,32.8074996],[-83.5650469,32.8081965]]},"id":"8644c0b87ffffff-17b7e96750fc97f3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"connector"},"geometry":{"type":"Point","coordinates":[-83.5702117,32.861557000000005]},"id":"8f44c0b88294872-139fa049ba127401"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b88294872-139fa049ba127401","8f44c0b88290493-13f7f19bc3a9e472"]},"geometry":{"type":"LineString","coordinates":[[-83.56967080000001,32.8621101],[-83.56964810000001,32.8620074],[-83.56965910000001,32.8619867],[-83.56967250000001,32.8619599],[-83.56970530000001,32.8619332],[-83.5697516,32.8618995],[-83.5702117,32.861557000000005]]},"id":"8a44c0b88297fff-13b7b1140dc28a66"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[30,"mph"]}]}},"subType":"road","connectors":["8f44c0a36975862-17ffd84fb0466859","8f44c0ba92d99ad-17ff37044b2f2f83"]},"geometry":{"type":"LineString","coordinates":[[-83.62643800000001,32.8340978],[-83.62628790000001,32.8342692],[-83.6260262,32.8345967],[-83.6259077,32.834708400000004]]},"id":"8644c0a37ffffff-17d757a79e21af39"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[40,"mph"]}]}},"subType":"road","connectors":["8f44c0b18688268-1797fe6106001f22","8f44c0b186d6732-1797be7969c01212"]},"geometry":{"type":"LineString","coordinates":[[-83.662705,32.821432],[-83.6627309,32.8210871],[-83.662744,32.820819]]},"id":"8844c0b187fffff-17d7be6bf72a89cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0b1bd5e80d-13bfbe82dc450295","8f44c0b1bd55cd3-17b7fe8ea89f4cfd"]},"geometry":{"type":"LineString","coordinates":[[-83.6626899,32.825362500000004],[-83.6626864,32.825279200000004],[-83.6626786,32.824897400000005],[-83.6626719,32.8245737],[-83.662671,32.824531]]},"id":"8944c0b1bd7ffff-13b7fe893f3ef012"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","surface":[{"applyAt":[0.0,91.98],"value":"paved"}]},"subType":"road","connectors":["8f44c0a140b3533-17f7545b97bcc371","8f44c0a1455d788-13975934445b9f16"]},"geometry":{"type":"LineString","coordinates":[[-83.60131270000001,32.8858693],[-83.60107,32.8856801],[-83.60098690000001,32.8856261],[-83.6009064,32.88559],[-83.6008233,32.885572],[-83.60064890000001,32.8855675],[-83.60045310000001,32.8855562],[-83.6004037,32.885539200000004],[-83.6003603,32.885502800000005],[-83.6003213,32.8854409],[-83.6002866,32.8852368],[-83.60020850000001,32.8851567],[-83.600139,32.8851129],[-83.6000436,32.885080200000004],[-83.59951860000001,32.885076500000004],[-83.59945350000001,32.885102],[-83.5993885,32.8852004],[-83.59934510000001,32.885266],[-83.59932760000001,32.8853073]]},"id":"8744c0a14ffffff-13bf76d33d547e68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[18.1,27.13],"values":["isBridge"]}]},"subType":"road","connectors":["8f44c0b1c55dd74-13beec36497830a1","8f44c0b1c54e382-13beeaed2865e804"]},"geometry":{"type":"LineString","coordinates":[[-83.6701852,32.789927],[-83.6703579,32.7900001],[-83.67044410000001,32.7900366],[-83.67067060000001,32.7901325],[-83.6707118,32.7901382]]},"id":"8944c0b1c57ffff-13fffb928a190fbd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d8536c5-1396e3a6a441480c","8f44c0b1d8ed800-13d7e368c3bf716a"]},"geometry":{"type":"LineString","coordinates":[[-83.6999062,32.8028008],[-83.69988070000001,32.802842000000005],[-83.69989240000001,32.802853400000004],[-83.6999411,32.8029006],[-83.6999505,32.8029097],[-83.7000052,32.802895400000004]]},"id":"8a44c0b1d8effff-13d7f3993e11e96f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd58d64-17f670361873884f","8f44c0b0bd510ca-17df60d3a26d0dc7"]},"geometry":{"type":"LineString","coordinates":[[-83.7272774,32.830735000000004],[-83.7273431,32.8312206],[-83.7275295,32.8312071]]},"id":"8944c0b0bd7ffff-179fe0a9538ef289"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0bd51a5a-17d6704380340bf0","8f44c0b0bd5c2ce-17fe5fbad1c65759"]},"geometry":{"type":"LineString","coordinates":[[-83.727508,32.830727100000004],[-83.7277025,32.8307304],[-83.7277267,32.8312004]]},"id":"8944c0b0bd7ffff-17be3fd6675e5eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a33125c-17befb681160f400","8f44c0b0a331671-1796fbd986fe59a5"]},"geometry":{"type":"LineString","coordinates":[[-83.7162088,32.826759800000005],[-83.7162625,32.826750000000004],[-83.716358,32.8267727],[-83.7163903,32.8268014]]},"id":"8b44c0b0a331fff-179e7b9e4db8a027"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19896c89-17f6b113b2126fd7","8f44c0b19c651a3-17d6f20527505926"]},"geometry":{"type":"LineString","coordinates":[[-83.6878533,32.8213795],[-83.6878756,32.821502200000005],[-83.68746700000001,32.8215343]]},"id":"8844c0b19dfffff-17bfa169430fbd30"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3292306e-13977b64aab381a6","8f44c0a32923724-139f2bbbb5f9c4df"]},"geometry":{"type":"LineString","coordinates":[[-83.6179525,32.854414600000005],[-83.6179736,32.854423100000005],[-83.6180422,32.8544573],[-83.6180554,32.854462600000005],[-83.6180918,32.8544055]]},"id":"8b44c0a32923fff-13b72b8b430a274c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19810ab4-17b6f769883babf4","8f44c0b19814631-17f777a7954e4a8f"]},"geometry":{"type":"LineString","coordinates":[[-83.69171270000001,32.8207667],[-83.6917792,32.8208496],[-83.6917961,32.820883900000005],[-83.6918029,32.8209285],[-83.6918078,32.8209948],[-83.69180890000001,32.8210222],[-83.691812,32.821069800000004]]},"id":"8a44c0b19817fff-17def77acc9e64d9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[57.06,93.8],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0b19812c4a-17d7f8eccf4ae234","8f44c0b19816a01-17f6f8161aca3897"]},"geometry":{"type":"LineString","coordinates":[[-83.6911924,32.8210968],[-83.69099440000001,32.821157500000005],[-83.690889,32.8211918],[-83.6908514,32.8211882],[-83.6908289,32.8211736],[-83.69080240000001,32.8211492],[-83.69080140000001,32.821119800000005],[-83.69081340000001,32.8210841],[-83.6909055,32.8210481],[-83.69126990000001,32.820925200000005],[-83.6913536,32.8208883],[-83.69136660000001,32.8208684],[-83.69137020000001,32.8208363],[-83.6913605,32.8208129],[-83.6913327,32.8207941],[-83.6912849,32.820793],[-83.69122730000001,32.8208134],[-83.691107,32.8208445],[-83.6908875,32.8209212],[-83.6908434,32.8209256],[-83.6908102,32.8209119],[-83.69079830000001,32.8208609],[-83.6908021,32.8208197],[-83.69082470000001,32.8208028],[-83.6909253,32.8207925],[-83.6910127,32.8207807],[-83.69108750000001,32.8207654],[-83.6912478,32.8207394],[-83.6914105,32.820743400000005],[-83.6915359,32.8207691]]},"id":"8844c0b199fffff-17dff92fdb3914b1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19c46d16-13bff6004fe3a588","8f44c0b19c44012-139ee4a8f22caf7b"]},"geometry":{"type":"LineString","coordinates":[[-83.6858364,32.822117500000004],[-83.6858502,32.822183700000004],[-83.68594490000001,32.8223521],[-83.6859663,32.822370400000004],[-83.6860029,32.8223782],[-83.6860377,32.8223694],[-83.6861264,32.8223338],[-83.6863857,32.822235]]},"id":"8944c0b19c7ffff-13bec571b7f72169"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3630ca21-13df9e729e75af35","8f44c0a3632a714-13f77eec3344167c"]},"geometry":{"type":"LineString","coordinates":[[-83.6231997,32.8483959],[-83.6231973,32.848709],[-83.6232121,32.8487735],[-83.6232379,32.8488028],[-83.6232703,32.848809700000004],[-83.6233943,32.848767200000005]]},"id":"8944c0a3633ffff-139fded6a3f07a15"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35499365-13bee7dad788fb40","8f44c0a30b24749-17b7e772a327c0ef"]},"geometry":{"type":"LineString","coordinates":[[-83.6459222,32.856070200000005],[-83.6460342,32.855871900000004],[-83.6461422,32.8558132],[-83.6461508,32.855741800000004],[-83.64606040000001,32.855599600000005],[-83.64598500000001,32.8555876],[-83.6457555,32.8557038]]},"id":"8844c0a355fffff-13f7f740419f0d61"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549dc40-13b6f81259ebed64","8f44c0a3549ddb5-13def853efc90893"]},"geometry":{"type":"LineString","coordinates":[[-83.64556180000001,32.8549257],[-83.64553210000001,32.8549378],[-83.6455092,32.8549578],[-83.64549570000001,32.854983100000005],[-83.6454934,32.8550108],[-83.64550240000001,32.8550374],[-83.64552180000001,32.8550599],[-83.64554910000001,32.855075500000005],[-83.64558120000001,32.855082200000005],[-83.64561400000001,32.8550794],[-83.64564370000001,32.8550672],[-83.6456667,32.8550473]]},"id":"8a44c0a3549ffff-1397e859bc8403d5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3549dc40-13b6f81259ebed64","8f44c0a3549ddb5-13def853efc90893"]},"geometry":{"type":"LineString","coordinates":[[-83.6456667,32.8550473],[-83.6456802,32.855022000000005],[-83.6456826,32.8549943],[-83.6456735,32.8549677],[-83.6456598,32.854950200000005],[-83.64564130000001,32.8549364],[-83.64561900000001,32.854927],[-83.6455947,32.854922800000004],[-83.64556180000001,32.8549257]]},"id":"8a44c0a3549ffff-13f6e8205073a745"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":["isPrivate"]},"subType":"road","connectors":["8f44c0a32c4ea1b-17bf3e81aa8f28e0","8f44c0a32c41ac5-17d73e2e52068372"]},"geometry":{"type":"LineString","coordinates":[[-83.610263,32.8602016],[-83.6102627,32.8598062],[-83.6103963,32.8598099]]},"id":"8944c0a32c7ffff-179fbe773a349b33"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05896db5-13d691968e85c289","8f44c0a05896564-13bfe182c41d9205"]},"geometry":{"type":"LineString","coordinates":[[-83.687644,32.9007969],[-83.6876931,32.9008495],[-83.6876756,32.900965400000004]]},"id":"8844c0a05dfffff-1397a1811db1e6e2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a05892caa-139ff1df2f23cfe6","8f44c0a05c65165-13979233648e141b"]},"geometry":{"type":"LineString","coordinates":[[-83.68752780000001,32.901317500000005],[-83.6873856,32.9011742],[-83.687393,32.9010969]]},"id":"8944c0a05c7ffff-13df821741a413ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8cc4e-179ee394233f1fbe","8f44c0a34a885b1-17b6e464fad04e49"]},"geometry":{"type":"LineString","coordinates":[[-83.6471729,32.8409092],[-83.64728960000001,32.8407499],[-83.6473483,32.8406705],[-83.6474197,32.840575900000005],[-83.6474608,32.8405223],[-83.647507,32.840461600000005]]},"id":"8a44c0a34a8ffff-1797e3fd35f5b6dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[14.18,66.78],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a34a884e0-17f6e442959607eb","8f44c0a34a8cc4e-179ee394233f1fbe"]},"geometry":{"type":"LineString","coordinates":[[-83.647507,32.840461600000005],[-83.6475668,32.8404601],[-83.6475984,32.840474900000004],[-83.64760460000001,32.840493200000004],[-83.64758880000001,32.840517600000005],[-83.6472849,32.8409165],[-83.6472279,32.841011800000004]]},"id":"8a44c0a34a8ffff-17b6f3c0f4b96c6b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8ccc3-179ef3c13b02d86a","8f44c0a34a8e20b-17ffe46f4bdf9061"]},"geometry":{"type":"LineString","coordinates":[[-83.6471564,32.8408536],[-83.64724740000001,32.840727],[-83.64730540000001,32.8406474],[-83.64737530000001,32.8405519],[-83.64741430000001,32.8404973],[-83.64743490000001,32.840470700000004]]},"id":"8a44c0a34a8ffff-1797e4188b2f9368"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a34a8ccc3-179ef3c13b02d86a","8f44c0a34a8e200-17f7e47805ee7d90"]},"geometry":{"type":"LineString","coordinates":[[-83.6471424,32.8408156],[-83.64721700000001,32.8407105],[-83.6472753,32.8406311],[-83.64734440000001,32.840535200000005],[-83.64738530000001,32.840481600000004],[-83.64743490000001,32.840470700000004]]},"id":"8a44c0a34a8ffff-17f7e4229f38497e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","flags":[{"applyAt":[610.94,636.2],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a1034c693-13dff4d261917d68","8f44c0a1090a8c1-13df698885f3bed2"]},"geometry":{"type":"LineString","coordinates":[[-83.6057464,32.8983542],[-83.60567,32.898614900000005],[-83.60561600000001,32.898903000000004],[-83.60560100000001,32.8991203],[-83.6056104,32.899308500000004],[-83.60563850000001,32.899558400000004],[-83.6056971,32.8997912],[-83.6058266,32.900181700000005],[-83.6061059,32.9010002],[-83.60636020000001,32.901730400000005],[-83.6065667,32.9024073],[-83.6066261,32.9026987],[-83.606649,32.903034500000004],[-83.6066581,32.903700900000004],[-83.60665730000001,32.903738700000005],[-83.6066565,32.9039665],[-83.6066507,32.904504800000005],[-83.6066574,32.9052881],[-83.60668100000001,32.9058791],[-83.60672890000001,32.906515],[-83.6068295,32.9073403],[-83.6069289,32.9080515],[-83.60706300000001,32.9092548],[-83.60722960000001,32.9104888],[-83.60733470000001,32.9113842],[-83.6074165,32.911911100000005],[-83.6074897,32.9125084],[-83.60756690000001,32.9131382],[-83.60763700000001,32.9138575],[-83.6076766,32.9143431],[-83.6076762,32.9147067]]},"id":"8744c0a10ffffff-17bf7707edc587cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"secondary","surface":"paved","flags":[{"applyAt":[104.74,140.71],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a11532733-179f64e605d04b58","8f44c0a11434824-139f44f8ed7ca76a"]},"geometry":{"type":"LineString","coordinates":[[-83.6076448,32.918289800000004],[-83.60763510000001,32.9188984],[-83.60763700000001,32.919234200000005],[-83.6076357,32.9195585],[-83.6076146,32.920544]]},"id":"8844c0a115fffff-17dfd4edc9351f0f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b8e8a561d-17bfc3addb5b9b03","8f44c0b8e8128c4-17f7c2528e149e13"]},"geometry":{"type":"LineString","coordinates":[[-83.55627120000001,32.8310112],[-83.5563249,32.8308381],[-83.55577550000001,32.830706400000004],[-83.5557155,32.8309228]]},"id":"8844c0b8e9fffff-17ffd2ebcabed21f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"tertiary","flags":[{"applyAt":[281.13,300.87],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0b1881e644-13ffe2226824f3f5","8f44c0b1d415240-13d7da94b6f1a688"]},"geometry":{"type":"LineString","coordinates":[[-83.67431300000001,32.806015],[-83.6748,32.80601],[-83.67555,32.805994000000005],[-83.67627300000001,32.805961],[-83.67731330000001,32.805953],[-83.677524,32.805948],[-83.67880600000001,32.805934],[-83.68011700000001,32.805937],[-83.68294200000001,32.805963000000006],[-83.68361,32.805974],[-83.68396050000001,32.8059773]]},"id":"8644c0b1fffffff-13def65bbdc4ea03"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a341a979a-17bef60c67ac2312","8f44c0a341a80ce-13def682dbfcde39"]},"geometry":{"type":"LineString","coordinates":[[-83.63975230000001,32.836266800000004],[-83.6396308,32.8365303],[-83.6397769,32.8365675],[-83.63985050000001,32.836589700000005],[-83.6399418,32.8366307]]},"id":"8a44c0a341affff-17d7f688b4b19631"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential","surface":"paved","flags":[{"applyAt":[232.54,241.93],"values":["isBridge"]}],"restrictions":{"speedLimits":[{"maxSpeed":[35,"mph"]}]}},"subType":"road","connectors":["8f44c0a30cc2cdc-13ffefc867ff410d","8f44c0a30195466-17ff4a8d01d9bcc8"]},"geometry":{"type":"LineString","coordinates":[[-83.629401,32.854987],[-83.63095700000001,32.856536000000006],[-83.63101060000001,32.8565841],[-83.6310797,32.8566455],[-83.631145,32.856704],[-83.631544,32.857034]]},"id":"8744c0a30ffffff-179f7d34ab5aa51f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[45,"mph"]}]}},"subType":"road","connectors":["8f44c0a21cab754-13bf4900fc2d94fa","8f44c0a21c81190-13d77b175058a798"]},"geometry":{"type":"LineString","coordinates":[[-83.7099659,32.874574700000004],[-83.7102909,32.8747222],[-83.7108209,32.874952400000005]]},"id":"8944c0a21cbffff-13de4a0c995d0c41"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3628b930-179fb98b8b56bb89","8f44c0a3628b0ab-17bf39ec664766c8"]},"geometry":{"type":"LineString","coordinates":[[-83.61884880000001,32.8531707],[-83.6185324,32.853025],[-83.61849050000001,32.8530223],[-83.6183874,32.8530509],[-83.6183015,32.8530991],[-83.6182711,32.853149300000005],[-83.61828150000001,32.8531855],[-83.61832670000001,32.853232500000004],[-83.6183761,32.8532803],[-83.6184664,32.853331600000004],[-83.61857710000001,32.853376700000005],[-83.6186938,32.8534227]]},"id":"8a44c0a3628ffff-1797aa5ee467da69"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b198a2d85-17bf7c610e1f4f78","8f44c0b198a2616-1796fc69403409b3"]},"geometry":{"type":"LineString","coordinates":[[-83.6897644,32.821198100000004],[-83.68985400000001,32.821147700000004],[-83.6898766,32.8210962],[-83.68984110000001,32.8209508],[-83.68983300000001,32.820917900000005],[-83.689825,32.8208849],[-83.68980710000001,32.820863200000005],[-83.6897776,32.8208592]]},"id":"8b44c0b198a2fff-179e7c3c2e72bf90"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[0.0,470.33],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0b2aa9dbb3-17fff309c4ef56cf","8f44c0b2aaa4991-179de09ad70fea7d"]},"geometry":{"type":"LineString","coordinates":[[-83.75358270000001,32.7751376],[-83.75324140000001,32.776296200000004],[-83.75325330000001,32.7763246],[-83.75328300000001,32.7763511],[-83.75375790000001,32.7765196],[-83.7539842,32.7766424],[-83.7540829,32.7767505],[-83.7541753,32.776895100000004],[-83.7542468,32.7770561],[-83.75424140000001,32.7772187],[-83.7542054,32.7773546],[-83.75413710000001,32.7774829],[-83.754028,32.7776001],[-83.7539074,32.777675900000006],[-83.75379670000001,32.7777138],[-83.7536314,32.7777313],[-83.7534495,32.7777083],[-83.75322560000001,32.7776285],[-83.752786,32.7774696],[-83.75264940000001,32.7774353],[-83.75258600000001,32.777541500000005]]},"id":"8844c0b2abfffff-13b7f09da54a79ef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0a510d-13d7bf5af13e89f8","8f44c0b1b0a6b2a-13dff0f692c47139"]},"geometry":{"type":"LineString","coordinates":[[-83.6616855,32.8325787],[-83.66173570000001,32.8327155],[-83.6617507,32.8327566],[-83.6618133,32.8329274],[-83.6623441,32.8327994]]},"id":"8a44c0b1b0a7fff-13dff054245f22ea"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2c8959-13f6fef1b316d561","8f44c0b0e2c8aeb-13f63ede9cf594a4"]},"geometry":{"type":"LineString","coordinates":[[-83.72149490000001,32.813169300000006],[-83.7215381,32.8132353],[-83.7215469,32.813333300000004],[-83.7215255,32.8133889]]},"id":"8b44c0b0e2c8fff-13bfbeda52ff0bd2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2434eb-13f7695317ad3f48","8f44c0b0e25d826-13fe28e6c92aabd0"]},"geometry":{"type":"LineString","coordinates":[[-83.72397000000001,32.812173],[-83.72394800000001,32.8120241],[-83.72390580000001,32.81197],[-83.72379670000001,32.811957400000004]]},"id":"8944c0b0e27ffff-13b669085cbcfa24"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e243412-13d67971959ffada","8f44c0b0e242733-17be3a004c5823e3"]},"geometry":{"type":"LineString","coordinates":[[-83.7237479,32.811888700000004],[-83.7236709,32.8118112],[-83.7236015,32.8117238],[-83.7235196,32.8116385]]},"id":"8a44c0b0e247fff-17fea9b9285a99b6"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f3acd-13fffabbff9310cf","8f44c0b0a0c6520-13bf6ab5ab6fb16d"]},"geometry":{"type":"LineString","coordinates":[[-83.7101222,32.8253846],[-83.7102157,32.8253596],[-83.7102211,32.8252927],[-83.7101121,32.8252575]]},"id":"8944c0b0a0fffff-1397fa91932fb607"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f3acd-13fffabbff9310cf","8f44c0b0a0c6520-13bf6ab5ab6fb16d"]},"geometry":{"type":"LineString","coordinates":[[-83.7101121,32.8252575],[-83.7101605,32.825290100000004],[-83.71015560000001,32.825354100000006],[-83.7101222,32.8253846]]},"id":"8944c0b0a0fffff-139fcaa73074ff46"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f3acd-13fffabbff9310cf","8f44c0b0a0c6520-13bf6ab5ab6fb16d"]},"geometry":{"type":"LineString","coordinates":[[-83.7101222,32.8253846],[-83.710068,32.8253531],[-83.71006770000001,32.8252849],[-83.7101121,32.8252575]]},"id":"8944c0b0a0fffff-1396cacdd987389c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0f3acd-13fffabbff9310cf","8f44c0b0a0c6520-13bf6ab5ab6fb16d"]},"geometry":{"type":"LineString","coordinates":[[-83.7101121,32.8252575],[-83.7100011,32.825282],[-83.7099994,32.8253452],[-83.7101222,32.8253846]]},"id":"8944c0b0a0fffff-13965ae4df86dce4"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1b0c34f1-17d6bd0f8ddd030b","8f44c0b1b0c0418-13b6fcc184adad13"]},"geometry":{"type":"LineString","coordinates":[[-83.6634088,32.8362087],[-83.6634286,32.8362702],[-83.66340380000001,32.836638400000005],[-83.663284,32.836662700000005]]},"id":"8a44c0b1b0c7fff-17dffcc6aabcc54f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40cf5-17ff6e7d846e4a2b","8f44c0a36b4630b-17bf0ed7bccbe918"]},"geometry":{"type":"LineString","coordinates":[[-83.6297861,32.8434048],[-83.6297811,32.843478600000005],[-83.6298582,32.8435225],[-83.6299304,32.8434854]]},"id":"8a44c0a36b47fff-17ff6eba005e4df2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40cf5-17ff6e7d846e4a2b","8f44c0a36b4630b-17bf0ed7bccbe918"]},"geometry":{"type":"LineString","coordinates":[[-83.6299304,32.8434854],[-83.62990380000001,32.843471900000004],[-83.6298292,32.8434258],[-83.6297861,32.8434048]]},"id":"8a44c0a36b47fff-17d7deaa648e2402"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40cf5-17ff6e7d846e4a2b","8f44c0a36b4630b-17bf0ed7bccbe918"]},"geometry":{"type":"LineString","coordinates":[[-83.6297861,32.8434048],[-83.62974080000001,32.843522],[-83.6298209,32.8435693],[-83.6299304,32.8434854]]},"id":"8a44c0a36b47fff-17ff8ec7edc47c4a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40cf5-17ff6e7d846e4a2b","8f44c0a36b4630b-17bf0ed7bccbe918"]},"geometry":{"type":"LineString","coordinates":[[-83.6299304,32.8434854],[-83.62995070000001,32.843413600000005],[-83.62987670000001,32.843366700000004],[-83.6297861,32.8434048]]},"id":"8a44c0a36b47fff-17bf7e969907cbcb"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40cf5-17ff6e7d846e4a2b","8f44c0a36b4630b-17bf0ed7bccbe918"]},"geometry":{"type":"LineString","coordinates":[[-83.6299304,32.8434854],[-83.62999380000001,32.8433689],[-83.6299147,32.843319300000005],[-83.6297861,32.8434048]]},"id":"8a44c0a36b47fff-17bfbe8743a7dcb3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1bd5c7a5-13f6fdf7d8dbca77","8f44c0b1bd5c2dd-13d7fd7cc38d4965"]},"geometry":{"type":"LineString","coordinates":[[-83.66310920000001,32.825612500000005],[-83.6630714,32.8255533],[-83.66303350000001,32.825511500000005],[-83.6629575,32.8254527],[-83.6629123,32.8254502]]},"id":"8b44c0b1bd5cfff-139ebdb33a56a68f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aacc35d-17b630ccd6e468b0","8f44c0b0aaebba8-17ffef96daae5717"]},"geometry":{"type":"LineString","coordinates":[[-83.72073470000001,32.827417700000005],[-83.7209182,32.8274843],[-83.7209952,32.8275122],[-83.72108270000001,32.8275141],[-83.7212586,32.8272168],[-83.7212307,32.8271262]]},"id":"8944c0b0aafffff-17b6b001aa32353a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226dd329-13d6fc6b036bc326","8f44c0a226dbd32-13dfee72c316d0e9"]},"geometry":{"type":"LineString","coordinates":[[-83.6701008,32.8811303],[-83.67008440000001,32.881082],[-83.6699715,32.880940100000004],[-83.66990080000001,32.8809278],[-83.6697261,32.881019200000004],[-83.6696532,32.8810608],[-83.6692692,32.8813246]]},"id":"8a44c0a226dffff-13b6ed618b2dd5dd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a226de125-13d6eeb0bb8077ec","8f44c0a226d3a4e-17feff147735d5e3"]},"geometry":{"type":"LineString","coordinates":[[-83.6691701,32.8807246],[-83.6691677,32.880646],[-83.6691079,32.880565000000004],[-83.6690105,32.8805581]]},"id":"8944c0a226fffff-139efed0b6b8da1d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a367720a9-13ff73cd79d3e911","8f44c0a36772c75-139f73cdd6b7af7e"]},"geometry":{"type":"LineString","coordinates":[[-83.6146473,32.8486356],[-83.6146461,32.848592100000005],[-83.6146458,32.8485253],[-83.61464670000001,32.8484756]]},"id":"8b44c0a36772fff-13df73ce253dda71"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36772444-13fff40b8104c0f1","8f44c0a36772c08-139f33e60591b1b8"]},"geometry":{"type":"LineString","coordinates":[[-83.614608,32.848475300000004],[-83.6145456,32.8484751],[-83.6145477,32.848533],[-83.6145477,32.8485943],[-83.614548,32.8486366]]},"id":"8b44c0a36772fff-13bf7406c1464b54"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac42365-17f6dc3231ff6291","8f44c0b0ac4265c-17b65ccc894f5997"]},"geometry":{"type":"LineString","coordinates":[[-83.70951330000001,32.817694100000004],[-83.70944800000001,32.817708],[-83.70935920000001,32.8177374],[-83.7092664,32.8177765]]},"id":"8b44c0b0ac42fff-179fcc8052a2c5d7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0ac42365-17f6dc3231ff6291","8f44c0b0ac43733-179fec0106d64abd"]},"geometry":{"type":"LineString","coordinates":[[-83.70951330000001,32.817694100000004],[-83.7095209,32.8178222],[-83.70952270000001,32.817893500000004],[-83.7095444,32.8179691],[-83.709592,32.817971]]},"id":"8a44c0b0ac47fff-17d7fc2807756372"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a360d9c55-17d7b0099166377f","8f44c0a360d9835-17b76fa8cfaceb36"]},"geometry":{"type":"LineString","coordinates":[[-83.6163444,32.847698],[-83.6163487,32.847915],[-83.61634070000001,32.847947000000005],[-83.61632130000001,32.8479777],[-83.6162929,32.8479903],[-83.61624830000001,32.847993200000005],[-83.61621380000001,32.847975600000005],[-83.6161965,32.847940900000005],[-83.616196,32.8478682],[-83.6161895,32.847748100000004]]},"id":"8b44c0a360d9fff-13b73fd38f817879"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b41d8d-17973da0f0e87931","8f44c0a36b41b1d-17f70cdcefcfe93c"]},"geometry":{"type":"LineString","coordinates":[[-83.63059700000001,32.843907200000004],[-83.6305047,32.8438737],[-83.6303527,32.8437852],[-83.6303209,32.8437663],[-83.6302833,32.843752300000006]]},"id":"8b44c0a36b41fff-17d78d3fdac2f34d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36b40369-17978dca2ee52459","8f44c0a36b41b1d-17f70cdcefcfe93c"]},"geometry":{"type":"LineString","coordinates":[[-83.63059700000001,32.843907200000004],[-83.6305504,32.843951100000005],[-83.6304741,32.8439542],[-83.6304078,32.8439311],[-83.6302955,32.8438527],[-83.63026620000001,32.843833000000004],[-83.6302277,32.8437976],[-83.6302174,32.8437576]]},"id":"8a44c0a36b47fff-17ffad5cba1a44c5"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19cd359e-1796f1355d012f08","8f44c0b19cd3455-17bff0f4b8a11642"]},"geometry":{"type":"LineString","coordinates":[[-83.68124590000001,32.8236847],[-83.6812507,32.8237107],[-83.68131790000001,32.823751300000005],[-83.68134930000001,32.8237535]]},"id":"8c44c0b19cd35ff-17bef11a9f310923"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1952ca0c-1796b1403462a649","8f44c0b1952cb22-17de913c969c2502"]},"geometry":{"type":"LineString","coordinates":[[-83.6812343,32.8237705],[-83.6812129,32.8237875],[-83.6812103,32.823850300000004],[-83.6812285,32.823869]]},"id":"8c44c0b1952cbff-17f6b147ecd65c89"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034ab599-13b7a044f402faf4","8f44c0b034ab641-13d67fc69b7a2cbe"]},"geometry":{"type":"LineString","coordinates":[[-83.6881841,32.786057],[-83.68818560000001,32.7862893],[-83.6883863,32.7862882]]},"id":"8944c0b034bffff-139fb0273407a66b"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b034aa5a9-13dfe10bf9d5918b","8f44c0b034aa164-13f7f053008ae296"]},"geometry":{"type":"LineString","coordinates":[[-83.6878657,32.785715],[-83.6879054,32.7857161],[-83.68806690000001,32.7857235],[-83.6881616,32.7857247]]},"id":"8b44c0b034aafff-13f7e0af86ca116e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a105752-17dff2051f3add41","8f44c0b1a12ad4c-17ffe0f7de08f26d"]},"geometry":{"type":"LineString","coordinates":[[-83.6485763,32.814222400000006],[-83.64857740000001,32.814185900000005],[-83.6481455,32.8141787]]},"id":"8944c0b1a13ffff-17f7e173a6d5172d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2e5006e1-17bedc934fd869b6","8f44c0a2e50346e-17de7ce748f39e03"]},"geometry":{"type":"LineString","coordinates":[[-83.7028044,32.8986856],[-83.70273180000001,32.8986722],[-83.7026381,32.8987264],[-83.70260180000001,32.898766200000004],[-83.7025548,32.8988438],[-83.7025517,32.8989545],[-83.70267000000001,32.898957]]},"id":"8a44c0a2e507fff-17fe5d001fa0fba3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a0d9a85-1797da0512c2c912","8f44c0b0a0dd12c-17be59f08b6eda56"]},"geometry":{"type":"LineString","coordinates":[[-83.71040470000001,32.8271389],[-83.7104597,32.827139800000005],[-83.7105052,32.8268754],[-83.7104947,32.8268183],[-83.7104376,32.8266117]]},"id":"8a44c0b0a0dffff-17ffc9d9f74fc00e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2ac637b4-13bed95212047d40","8f44c0a2ac6e428-13de58719bedecc8"]},"geometry":{"type":"LineString","coordinates":[[-83.7041375,32.917726],[-83.7042845,32.917825400000005],[-83.7043553,32.9178763],[-83.7044967,32.9179781]]},"id":"8944c0a2ac7ffff-13fed8e14432df68"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b19825264-17d7f1273422d008","8f44c0b1995204c-17def07b70b84219"]},"geometry":{"type":"LineString","coordinates":[[-83.69437570000001,32.8202814],[-83.6944309,32.8204228],[-83.69465050000001,32.8204973]]},"id":"8844c0b199fffff-179ef0e21e4a54de"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"primary","surface":"paved","restrictions":{"speedLimits":[{"maxSpeed":[55,"mph"]}]}},"subType":"road","connectors":["8f44c0b14ac0cc1-17b7d051012d13ad","8f44c0b14ac3756-17bff08e16634165"]},"geometry":{"type":"LineString","coordinates":[[-83.65529910000001,32.7420155],[-83.65535530000001,32.741662000000005],[-83.6553968,32.7413788]]},"id":"8a44c0b14ac7fff-17fed06ef235519a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a30b1492e-17defc0e4061e6b8","8f44c0a3084d2e8-1796ecbe3c34384b"]},"geometry":{"type":"LineString","coordinates":[[-83.6440348,32.8565677],[-83.6438693,32.8563695],[-83.6437533,32.8562254]]},"id":"8844c0a30bfffff-17f6ec66b296930f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a3084d0c3-17befd055135816d","8f44c0a3084d2e8-1796ecbe3c34384b"]},"geometry":{"type":"LineString","coordinates":[[-83.6436395,32.8560839],[-83.6432044,32.8563508],[-83.64332180000001,32.856484300000005],[-83.6437533,32.8562254]]},"id":"8a44c0a3084ffff-17b6fd7d97179990"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6928f3-17f7b5fdca746c25","8f44c0b1c692021-17b7b6184cfec369"]},"geometry":{"type":"LineString","coordinates":[[-83.66613720000001,32.7983216],[-83.666166,32.798269000000005],[-83.6661796,32.7982449]]},"id":"8b44c0b1c692fff-179fb60b18c92422"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c6928f3-17f7b5fdca746c25","8f44c0b1c692c01-17d7f6578d0df3f4"]},"geometry":{"type":"LineString","coordinates":[[-83.6661796,32.7982449],[-83.6661926,32.798221500000004],[-83.66621140000001,32.7981868],[-83.66607230000001,32.7981331],[-83.666036,32.798191100000004]]},"id":"8b44c0b1c692fff-17def61ac2c1bf55"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a200c920e-1796e3dbaa9b1350","8f44c0a200c9b40-17b7737313e7aabf"]},"geometry":{"type":"LineString","coordinates":[[-83.6998214,32.869764],[-83.69991830000001,32.8698131],[-83.7000503,32.8696245],[-83.6999887,32.869592700000005]]},"id":"8944c0a203bffff-17f663852209e773"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[22.88,60.3],"values":["isTunnel"]}]},"subType":"road","connectors":["8f44c0a04993774-179ee9a8888c6ab8","8f44c0a0499e651-1797f8d50d5c9945"]},"geometry":{"type":"LineString","coordinates":[[-83.67156960000001,32.8832821],[-83.6716775,32.883214800000005],[-83.6716214,32.883134600000005],[-83.6713831,32.8828636],[-83.67133360000001,32.882809],[-83.67126830000001,32.8828322],[-83.67123120000001,32.8828558]]},"id":"8944c0a049bffff-17f6e903d83614fc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a04d6472d-139fac4d307743b2","8f44c0a226cb445-13bfeb4e2df9fc54"]},"geometry":{"type":"LineString","coordinates":[[-83.67055660000001,32.8817076],[-83.6705194,32.881663200000006],[-83.6703227,32.8817589],[-83.67014850000001,32.8818616]]},"id":"8744c0a04ffffff-13d7abcaf818adb9"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1eb6d165-139fb34a4af5ca46","8f44c0b1eb6db4a-13bef2e31ed7e963"]},"geometry":{"type":"LineString","coordinates":[[-83.667286,32.7960313],[-83.6673098,32.7960428],[-83.66740890000001,32.796081900000004],[-83.66745110000001,32.796096500000004]]},"id":"8b44c0b1eb6dfff-13b6f31709ebd4c3"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c79a49e-13fef34e1a0d5b5a","8f44c0b1eb698a6-13d7f3b4453fc0b4"]},"geometry":{"type":"LineString","coordinates":[[-83.66711640000001,32.796347600000004],[-83.667136,32.796353],[-83.66724040000001,32.7963922],[-83.66727990000001,32.7964069]]},"id":"8b44c0b1eb69fff-13f7f381039e5f02"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b09444034-17b5f3235130cc97","8f44c0b094449a9-17dff2e768bf1794"]},"geometry":{"type":"LineString","coordinates":[[-83.7459915,32.834587400000004],[-83.74610030000001,32.8346394],[-83.7461973,32.8345034],[-83.74608740000001,32.8344486]]},"id":"8b44c0b09444fff-179df2d52dc5f778"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2674049b-139fb415de48b4e5","8f44c0a267710e6-13de9400bffbab92"]},"geometry":{"type":"LineString","coordinates":[[-83.6800675,32.8552442],[-83.68014740000001,32.8551804],[-83.6803459,32.855023700000004],[-83.6803958,32.8549637],[-83.6804209,32.854906],[-83.68037720000001,32.854780000000005],[-83.6802863,32.85464],[-83.68022210000001,32.8545767],[-83.6801013,32.854496000000005]]},"id":"8944c0a2677ffff-13bed3949d8b8205"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2675491d-13df960f96cb48f5","8f44c0a267724ce-17d6968ab98e7c82"]},"geometry":{"type":"LineString","coordinates":[[-83.6792583,32.854491200000005],[-83.67931440000001,32.8544478],[-83.67925840000001,32.854401100000004],[-83.6791561,32.854307],[-83.6790613,32.854298400000005]]},"id":"8944c0a2677ffff-1397d62c3251d3af"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1d28981c-13d6fdc6328a986b","8f44c0b1d2f29a3-13ff7cab24e1e68c"]},"geometry":{"type":"LineString","coordinates":[[-83.69621260000001,32.8162453],[-83.69598520000001,32.8162277],[-83.69575970000001,32.8164169]]},"id":"8844c0b1d3fffff-13966d41f6ac6b3f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2044594e-17de732383d097e5","8f44c0a2044504d-17d7f3658ef7bed1"]},"geometry":{"type":"LineString","coordinates":[[-83.6935624,32.866400500000005],[-83.69350560000001,32.866465500000004],[-83.6934568,32.8665983]]},"id":"8b44c0a20445fff-17977349cb62c765"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a20445b18-17b673195b38fd7e","8f44c0a2046e511-17d772db63e8f46f"]},"geometry":{"type":"LineString","coordinates":[[-83.6936778,32.8663569],[-83.69363650000001,32.8664482],[-83.6935787,32.8665125]]},"id":"8a44c0a2046ffff-17f672f6a6dc3eca"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2046e482-17fef309eb125c52","8f44c0a2044504d-17d7f3658ef7bed1"]},"geometry":{"type":"LineString","coordinates":[[-83.6936034,32.8664269],[-83.69354460000001,32.8664906],[-83.6934568,32.8665983]]},"id":"8b44c0a20445fff-17b7f33874f7f5b7"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service","flags":[{"applyAt":[33.78,45.04],"values":["isPrivate"]}]},"subType":"road","connectors":["8f44c0b0a4816b1-13dfe5af87a55418","8f44c0b0a48c54d-17dfe4a086cd04f2"]},"geometry":{"type":"LineString","coordinates":[[-83.69907280000001,32.8231902],[-83.699398,32.823322000000005],[-83.6995064,32.823366]]},"id":"8944c0b0a4bffff-1796f52807da76e1"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03062d56-13b77d4282770f76","8f44c0b03066696-13de5d585d230251"]},"geometry":{"type":"LineString","coordinates":[[-83.70252400000001,32.7868471],[-83.70252950000001,32.7867714],[-83.70248910000001,32.7867332]]},"id":"8a44c0b03067fff-13fedd456355ed4c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b03062c1b-13d7dd6367e40aa3","8f44c0b03075a42-13ff5d74d9b6a252"]},"geometry":{"type":"LineString","coordinates":[[-83.70247140000001,32.786902000000005],[-83.70243520000001,32.7868433],[-83.7024435,32.7867632]]},"id":"8a44c0b03067fff-139e5d736cd818dc"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110240d5-13fef627dd8719e7","8f44c0b11024d0b-13f7d63609979098"]},"geometry":{"type":"LineString","coordinates":[[-83.6595587,32.7734759],[-83.65955070000001,32.773413500000004],[-83.6595394,32.773281100000005],[-83.659536,32.7732285]]},"id":"8b44c0b11024fff-13b7f62fd0b0a9ce"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b110244da-1397e6a11f1f9f87","8f44c0b11119220-13f6c6b6dee87d2d"]},"geometry":{"type":"LineString","coordinates":[[-83.6593299,32.7732256],[-83.659338,32.7732994],[-83.65935590000001,32.7734289],[-83.65936470000001,32.7734802]]},"id":"8844c0b111fffff-13b7f6acdd9fde7e"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a267004e5-179ed9fd6bd74738","8f44c0a267009aa-179ff95daa7ef082"]},"geometry":{"type":"LineString","coordinates":[[-83.677649,32.8529549],[-83.6775264,32.8528533],[-83.6777824,32.852643300000004],[-83.6779046,32.8527519]]},"id":"8a44c0a26707fff-179799e6a309e215"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db61b9d-13f650a4a273eb35","8f44c0b1db6529d-13dff0a432c5be6c"]},"geometry":{"type":"LineString","coordinates":[[-83.70769250000001,32.8059643],[-83.7077191,32.80597],[-83.7077189,32.8059814],[-83.7077158,32.806171400000004],[-83.7077156,32.8061847],[-83.7076918,32.8061956]]},"id":"8a44c0b1db67fff-139650964fda1842"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1db61b9d-13f650a4a273eb35","8f44c0b1db6529d-13dff0a432c5be6c"]},"geometry":{"type":"LineString","coordinates":[[-83.7076918,32.8061956],[-83.70766760000001,32.8061858],[-83.707668,32.8061722],[-83.7076729,32.8059815],[-83.7076734,32.805970300000006],[-83.70769250000001,32.8059643]]},"id":"8a44c0b1db67fff-139ed0b0ddfdd361"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e22cd10-13defb734228a156","8f44c0b0e221065-13be7be9857b469e"]},"geometry":{"type":"LineString","coordinates":[[-83.7227368,32.808567100000005],[-83.7222935,32.8085575],[-83.72233170000001,32.8087591],[-83.72265540000001,32.808761000000004],[-83.722926,32.8086447]]},"id":"8944c0b0e23ffff-13f73c63f5d22058"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0b861920-17d64700e54bdd11","8f44c0b0b8656e9-17d70740076db853"]},"geometry":{"type":"LineString","coordinates":[[-83.7377536,32.8333904],[-83.73775660000001,32.8333904],[-83.7378467,32.8333923],[-83.7378546,32.8333924]]},"id":"8a44c0b0b867fff-17d7a72070c8abef"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1c453c49-1397f12f676dfa74","8f44c0b1c453622-1396f1618a75ecb7"]},"geometry":{"type":"LineString","coordinates":[[-83.6681482,32.7925269],[-83.66799780000001,32.7925606],[-83.6677221,32.7925179],[-83.66768210000001,32.7925276],[-83.66765810000001,32.7926377],[-83.66768490000001,32.7926644],[-83.668068,32.7927343]]},"id":"8844c0b1c5fffff-13b7b1e0f220a962"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18cd29b5-17d6fc3ae179b766","8f44c0b18cd212d-17b6bc3b036fee47"]},"geometry":{"type":"LineString","coordinates":[[-83.6636242,32.8072036],[-83.66362480000001,32.8072152],[-83.6636244,32.807312200000005],[-83.663624,32.8073576]]},"id":"8b44c0b18cd2fff-1796fc3ab4945c7c"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2d0251-13de73bacdf1b3d4","8f44c0b0e2d1485-1397b3bd265f6a2f"]},"geometry":{"type":"LineString","coordinates":[[-83.719531,32.8124249],[-83.71953040000001,32.8123887],[-83.7195348,32.8123079]]},"id":"8a44c0b0e2d7fff-13f733bc812467f2"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0e2f1ba6-1797b1061711d362","8f44c0b0e2c6a4b-13fff10d7fe7c716"]},"geometry":{"type":"LineString","coordinates":[[-83.72063130000001,32.8119804],[-83.72098290000001,32.811790900000005],[-83.7210074,32.8117358],[-83.7210082,32.8113882],[-83.7209711,32.811348],[-83.7206725,32.8113438],[-83.7206431,32.8114009]]},"id":"8944c0b0e2fffff-1797f073ce4612c8"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1a11390a-17bfe63c0d6760f1","8f44c0b1a113356-17f7e63cd37b14cc"]},"geometry":{"type":"LineString","coordinates":[[-83.64641920000001,32.814299600000005],[-83.64641850000001,32.814394300000004],[-83.6464175,32.8144599],[-83.6464179,32.814603600000005]]},"id":"8b44c0b1a113fff-179ee63cb1ca9d12"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b184e0222-13ffe252828c932d","8f44c0b184ee396-17bef1f525bbfcf5"]},"geometry":{"type":"LineString","coordinates":[[-83.6612782,32.8141039],[-83.66113890000001,32.8141002],[-83.6610909,32.814027200000005],[-83.6611288,32.8133822]]},"id":"8944c0b184fffff-17f7d254396e4b3a"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a35d18528-13b7d2e78eefd1a1","8f44c0a35d1c6d1-17d7f29c19203466"]},"geometry":{"type":"LineString","coordinates":[[-83.65433680000001,32.8446257],[-83.65431960000001,32.844582],[-83.6543245,32.8445332],[-83.6543668,32.8444809],[-83.6543939,32.8444562],[-83.6544406,32.8444607],[-83.6544575,32.844472700000004]]},"id":"8a44c0a35d1ffff-17fed2d6c4fc9813"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26da1d09-13b6bd15e5b73f03","8f44c0a26da041e-13dede58abc150ad"]},"geometry":{"type":"LineString","coordinates":[[-83.67586460000001,32.8383108],[-83.6759289,32.8383279],[-83.6759775,32.8383399],[-83.676381,32.838458700000004]]},"id":"8a44c0a26da7fff-13f79db70d8e6c80"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26d1e5aa-13dfda937a3dd495","8f44c0a26dac9ab-13f6dbe6e954ba95"]},"geometry":{"type":"LineString","coordinates":[[-83.6774089,32.8391317],[-83.6774694,32.8389892],[-83.6773864,32.8389344],[-83.6768658,32.8387916]]},"id":"8844c0a26dfffff-13d7bb067ae81067"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a2801d774-17f6dd90e2b90d62","8f44c0a2801d2d3-17dfdd5be5ef4f87"]},"geometry":{"type":"LineString","coordinates":[[-83.72861300000001,32.9192813],[-83.7286158,32.919322900000004],[-83.728634,32.9193616],[-83.72866570000001,32.9193937],[-83.7286978,32.919414100000004]]},"id":"8b44c0a2801dfff-17b77d7ed4fa5139"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"residential"},"subType":"road","connectors":["8f44c0a280046e6-13febcd830117637","8f44c0a28006b24-13b65d2f46a50d39"]},"geometry":{"type":"LineString","coordinates":[[-83.7287692,32.9179205],[-83.728772,32.917962100000004],[-83.7287902,32.9180009],[-83.7288219,32.9180329],[-83.7288539,32.918053300000004],[-83.7289085,32.918065]]},"id":"8a44c0a28007fff-13defd104527a93d"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b1878c906-17b6fc25ff2f1627","8f44c0b1878c175-179efc437b2ac39e"]},"geometry":{"type":"LineString","coordinates":[[-83.6636577,32.8169484],[-83.6636555,32.8170962],[-83.6636105,32.8171205]]},"id":"8944c0b187bffff-17defc2a79f218cd"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b18d815b4-13ffbbc3d282d5bd","8f44c0b18d8108e-13debb4f00400a14"]},"geometry":{"type":"LineString","coordinates":[[-83.6638147,32.802350600000004],[-83.6637884,32.8024691],[-83.6640016,32.8024736]]},"id":"8a44c0b18d87fff-13bebba6d4e2e370"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26225a1c-13d781b3cd616e84","8f44c0a2622544a-13d6827821574406"]},"geometry":{"type":"LineString","coordinates":[[-83.68728300000001,32.8557416],[-83.68755150000001,32.855742],[-83.6875972,32.8557136]]},"id":"8b44c0a26225fff-13d7b213d9b94615"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a2630b2f1-13b791b451171450","8f44c0a26225da6-13b78277a7cafa77"]},"geometry":{"type":"LineString","coordinates":[[-83.68759630000001,32.8554545],[-83.68754360000001,32.855454800000004],[-83.6874157,32.8554544],[-83.6872838,32.8554544]]},"id":"8844c0a263fffff-13b79215fae2a192"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a26220840-13bef2ee36067083","8f44c0a2622544a-13d6827821574406"]},"geometry":{"type":"LineString","coordinates":[[-83.68709410000001,32.855697500000005],[-83.68709390000001,32.855743700000005],[-83.687132,32.855752],[-83.6871993,32.8557524],[-83.68728300000001,32.8557416]]},"id":"8a44c0a26227fff-13d7b2bedadf3230"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a36815024-17df72a0199a21d6","8f44c0a368150e1-1797a2a781a5ecd7"]},"geometry":{"type":"LineString","coordinates":[[-83.62167120000001,32.836585],[-83.6216728,32.8365749],[-83.6216818,32.836508800000004],[-83.6216831,32.8365013]]},"id":"8c44c0a368151ff-17f772a3d1b030ba"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a368158e0-17b7b2676fd111ee","8f44c0a36815bab-17f76243725a2a2b"]},"geometry":{"type":"LineString","coordinates":[[-83.62183130000001,32.8365172],[-83.62183850000001,32.8364436],[-83.6217738,32.8364363]]},"id":"8b44c0a36815fff-17d77249abc3b6ee"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0a203ad08a-17f75c09893fa45b","8f44c0a203a881b-17df5cd3277dc874"]},"geometry":{"type":"LineString","coordinates":[[-83.70302480000001,32.8705104],[-83.70312030000001,32.8703738],[-83.7028671,32.8702434],[-83.7027022,32.8704721]]},"id":"8a44c0a203affff-1797fc43f8db704f"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0a06e753-13be3f1173b092d7","8f44c0b0a043b1c-13fe61143308a3df"]},"geometry":{"type":"LineString","coordinates":[[-83.7140669,32.8254662],[-83.7139789,32.8253142],[-83.71489050000001,32.8249827]]},"id":"8944c0b0a07ffff-13bef055cd2bfc91"}, +{"type":"Feature","properties":{"theme":"transportation","type":"segment","road":{"class":"service"},"subType":"road","connectors":["8f44c0b0aa93455-17fe7cf24b3fe0cb","8f44c0b0a336602-13fffdb970b4ca4a"]},"geometry":{"type":"LineString","coordinates":[[-83.7157596,32.8246692],[-83.71601150000001,32.8252104],[-83.7160005,32.825284],[-83.7158351,32.8255868],[-83.715725,32.8259465],[-83.7154409,32.8260796]]},"id":"8744c0b0affffff-13d7bccd83f13079"} +]} \ No newline at end of file diff --git a/gers/examples/python/match_classes.py b/gers/examples/python/match_classes.py new file mode 100644 index 00000000..5c440668 --- /dev/null +++ b/gers/examples/python/match_classes.py @@ -0,0 +1,216 @@ +import json +from typing import Dict, Iterable +from shapely.geometry import Point +from shapely.geometry.base import BaseGeometry +import constants + +class MatchableFeature: + """ + Convenience class to hold an id, a shapely geometry, and optionally a dictionary of properties for use in matching. + It can be trivially populated from geojson and overture as an extension of geojson. + """ + def __init__(self, id: str, geometry:BaseGeometry, properties: dict=None) -> None: + self.id = str(id) + self.geometry = geometry + self.properties = properties + + def __str__(self) -> str: + return json.dumps({ + "id": self.id, + "geometry": self.geometry.wkt, + "properties": self.properties + }) + + def get_connectors(self) -> Iterable[str]: + return self.properties["connectors"] if self.properties is not None and "connectors" in self.properties else [] + +class MatchableFeaturesSet: + """Collection of matchable features, indexed by id, and by cells (H3 in current implementation)""" + def __init__(self, features: Dict[str, Iterable[MatchableFeature]], cells_by_id: Dict[str, Iterable[str]], features_by_cell: Dict[str, Iterable[MatchableFeature]]) -> None: + self.features_by_id = features + self.cells_by_id = cells_by_id + self.features_by_cell = features_by_cell + +class MatchedFeature: + """One matched feature with match-relevant information""" + def __init__(self, id: str, matched_feature: MatchableFeature, overlapping_geometry: BaseGeometry, score: float, source_lr: Iterable[float]=None, candidate_lr: Iterable[float]=None) -> None: + """ + Attributes: + id: the gers id of the matched feature + matched_feature: the matched feature itself + overlapping_geometry: the sub-part of the matched features' geometry that overlaps with the source feature + score: the score of the match + source_lr: the Location Reference in the source geometry of the part that matched as array of from-to points projection factors + candidate_lr: the Location Reference in the matched geometry of the part that matched the source geometry + """ + self.id = id # the gers id of the matched feature + self.matched_feature = matched_feature + self.overlapping_geometry = overlapping_geometry + self.score = score + self.source_lr = source_lr + self.candidate_lr = candidate_lr + + def to_json(self): + j = { + "id": str(self.id), + "candidate_wkt": self.matched_feature.geometry.wkt, + "overlapping_wkt": self.overlapping_geometry.wkt if self.overlapping_geometry is not None else None, + "score": self.score, + } + if self.source_lr is not None: + j["source_lr"] = self.source_lr + if self.candidate_lr is not None: + j["candidate_lr"] = self.candidate_lr + return j + + def __str__(self) -> str: + return json.dumps(self.to_json()) + +class TraceSnapOptions: + """"Parameters for matching a trace to road segments""" + def __init__(self, \ + sigma=constants.DEFAULT_SIGMA,\ + beta=constants.DEFAULT_BETA,\ + max_point_to_road_distance=constants.DEFAULT_MAX_POINT_TO_ROAD_DISTANCE,\ + max_route_to_trace_distance_difference=constants.DEFAULT_MAX_ROUTE_TO_TRACE_DISTANCE_DIFFERENCE,\ + allow_loops=constants.DEFAULT_ALLOW_LOOPS, + revisit_segment_penalty_weight=constants.DEFAULT_SEGMENT_REVISIT_PENALTY, + revisit_via_point_penalty_weight=constants.DEFAULT_VIA_POINT_PENALTY_WEIGHT, + broken_time_gap_reset_sequence=constants.DEFAULT_BROKEN_TIME_GAP_RESET_SEQUENCE, + broken_distance_gap_reset_sequence=constants.DEFAULT_BROKEN_DISTANCE_GAP_RESET_SEQUENCE) -> None: + self.sigma = sigma + self.beta = beta + self.allow_loops = allow_loops + self.max_point_to_road_distance = max_point_to_road_distance + self.max_route_to_trace_distance_difference = max_route_to_trace_distance_difference + self.revisit_segment_penalty_weight = revisit_segment_penalty_weight + self.revisit_via_point_penalty_weight = revisit_via_point_penalty_weight + self.broken_time_gap_reset_sequence = broken_time_gap_reset_sequence + self.broken_distance_gap_reset_sequence = broken_distance_gap_reset_sequence + +class RouteStep: + """One step in a route, corresponding to one road segment feature""" + def __init__(self, feature: MatchableFeature, via_point: Point) -> None: + """ + Attributes: + feature: the matched feature + via_point: the point on the feature where the route enters the feature as a shapely Point + """ + self.feature = feature + self.via_point = via_point + +class Route: + """A route, consisting of a sequence of steps""" + def __init__(self, distance: float, steps: Iterable[RouteStep]) -> None: + self.distance = distance + self.steps = steps + +class SnappedPointPrediction: + """A road segment feature as a snap prediction for point in a trace, with relevant match signals""" + def __init__(self, id: str, snapped_point: Point, referenced_feature: MatchableFeature, distance_to_snapped_road: float, route_distance_to_prev_point: float, emission_prob: float, best_transition_prob: float, best_log_prob: float, best_prev_prediction: float, best_sequence: Iterable[str], best_route_via_points: Iterable[str], best_revisited_via_points_count:int, best_revisited_segments_count:int) -> None: + self.id = str(id) + self.snapped_point = snapped_point + self.referenced_feature = referenced_feature + self.distance_to_snapped_road = distance_to_snapped_road + self.route_distance_to_prev_point = route_distance_to_prev_point + self.emission_prob = emission_prob + self.best_transition_prob = best_transition_prob + self.best_log_prob = best_log_prob + self.best_prev_prediction = best_prev_prediction + self.best_sequence = best_sequence + self.best_route_via_points = best_route_via_points + self.best_revisited_via_points_count = best_revisited_via_points_count + self.best_revisited_segments_count = best_revisited_segments_count + + def to_json(self, diagnostic_mode=False): + best_prev_prediction_id = "" + if self.best_prev_prediction is not None: + best_prev_prediction_id = self.best_prev_prediction.id + + j = { + "id": self.id, + "snapped_point": self.snapped_point.wkt, + "distance_to_snapped_road": self.distance_to_snapped_road, + "route_distance_to_prev_point": self.route_distance_to_prev_point, + } + + if diagnostic_mode: + j["referenced_feature"] = self.referenced_feature.geometry.wkt + j["emission_prob"] = self.emission_prob + j["best_transition_prob"] = self.best_transition_prob + j["best_log_prob"] = self.best_log_prob + j["best_prev_prediction"] = best_prev_prediction_id + j["best_route_via_points"] = self.best_route_via_points + j["best_revisited_via_points_count"] = self.best_revisited_via_points_count + j["best_revisited_segments_count"] = self.best_revisited_segments_count + + return j + +class PointSnapInfo: + """Snap-to-road match information corresponding to one point in a trace""" + def __init__(self, index: int, original_point: Point, time: str, seconds_since_prev_point: float=None, predictions:Iterable[SnappedPointPrediction]=[]) -> None: + self.index = index + self.original_point = original_point + self.time = time + self.seconds_since_prev_point = seconds_since_prev_point + self.predictions = predictions + self.best_prediction = None + self.ignore = False + + def to_json(self, diagnostic_mode: bool=False, include_all_predictions: bool=False,): + best_prediction_json = None if self.best_prediction is None else self.best_prediction.to_json(diagnostic_mode) + + j = { + "original_point": self.original_point.wkt, + "time": self.time, + "seconds_since_prev_point": self.seconds_since_prev_point, + "snap_prediction": best_prediction_json, + } + + if self.ignore: + j["ignore"] = True + + if diagnostic_mode: + j["point_index"] = self.index + + if include_all_predictions: + j["predictions"] = list(map(lambda x: x.to_json(diagnostic_mode), self.predictions)) + return j + +class TraceMatchResult: + """Result of a matching trace to road segments""" + def __init__(self, id: str, source_wkt: str, points: Iterable[PointSnapInfo], source_length: float, target_candidates_count: int, matched_target_ids: Iterable[str]=None, elapsed: float=None, sequence_breaks: int=0, points_with_matches: int=0, route_length: float=0, avg_dist_to_road: float=None, revisited_via_points: int=0, revisited_segments: int=0) -> None: + self.id = id + self.source_wkt = source_wkt + self.points = points + self.source_length = source_length + self.target_candidates_count = target_candidates_count + self.matched_target_ids = matched_target_ids + self.elapsed = elapsed + self.sequence_breaks = sequence_breaks + self.points_with_matches = points_with_matches + self.route_length = route_length + self.avg_dist_to_road = avg_dist_to_road + self.revisited_via_points = revisited_via_points + self.revisited_segments = revisited_segments + + def to_json(self, diagnostic_mode=False, include_all_predictions=False): + points_json = list(map(lambda x: x.to_json(diagnostic_mode, include_all_predictions), self.points)) + return { + "id": str(self.id), + "elapsed": self.elapsed, + "source_length": self.source_length, + "route_length": self.route_length, + "points": len(self.points), + "points_with_matches": self.points_with_matches, + "avg_dist_to_road": self.avg_dist_to_road, + "sequence_breaks": self.sequence_breaks, + "revisited_via_points": self.revisited_via_points, + "revisited_segments": self.revisited_segments, + "target_candidates_count": self.target_candidates_count, + "target_ids": self.matched_target_ids, + "points": points_json + } + + def __str__(self) -> str: + return json.dumps(self.to_json()) \ No newline at end of file diff --git a/gers/examples/python/match_traces.ipynb b/gers/examples/python/match_traces.ipynb new file mode 100644 index 00000000..413f761f --- /dev/null +++ b/gers/examples/python/match_traces.ipynb @@ -0,0 +1,1072 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import geopandas as gpd\n", + "from geopandas.tools import sjoin\n", + "from match_classes import MatchableFeature, TraceSnapOptions\n", + "from match_traces import get_trace_matches\n", + "\n", + "input_to_match_file = \"data/macon-osm-traces-combined.geojson\"\n", + "input_overture_file = \"data/overture-transportation-macon.geojson\"\n", + "output_file = \"data/.output-macon-osm-traces-combined-match-results.txt\"" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idfilenametrack.numbertrack.linktrack.nametrack.segment.numbertrack.segment.split.numbertrack.descriptiontimesgeometryid_to_matchpropertiesfeature_to_match
0trace#0osm-traces-page-0.gpx0/user/sunnypilot/traces/78245042023_06_05T12_07_14.093431Z.gpx00Routes from sunnypilot 2022.11.13 (HYUNDAI SON...[2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1...LINESTRING (-83.63079 32.85085, -83.63041 32.8...trace#0{'filename': 'osm-traces-page-0.gpx', 'id_to_m...{\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83...
1trace#1osm-traces-page-1.gpx1/user/sunnypilot/traces/78055452023_06_04T21_01_48.584136Z.gpx00Routes from sunnypilot 2022.11.13 (HYUNDAI ELA...[2023-06-04 21:01:50+00:00, 2023-06-04 21:01:5...LINESTRING (-83.58567 32.81775, -83.58611 32.8...trace#1{'filename': 'osm-traces-page-1.gpx', 'id_to_m...{\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83...
2trace#2osm-traces-page-10.gpx1/user/sunnypilot/traces/75794562023_05_20T01_24_29.316387Z.gpx00Routes from sunnypilot 2023.03.29 (KIA EV6 2022).[2023-05-20 01:25:05+00:00, 2023-05-20 01:25:5...LINESTRING (-83.64841 32.86189, -83.64795 32.8...trace#2{'filename': 'osm-traces-page-10.gpx', 'id_to_...{\"id\": \"trace#2\", \"geometry\": \"LINESTRING (-83...
\n", + "
" + ], + "text/plain": [ + " id filename track.number \n", + "0 trace#0 osm-traces-page-0.gpx 0 \\\n", + "1 trace#1 osm-traces-page-1.gpx 1 \n", + "2 trace#2 osm-traces-page-10.gpx 1 \n", + "\n", + " track.link track.name \n", + "0 /user/sunnypilot/traces/7824504 2023_06_05T12_07_14.093431Z.gpx \\\n", + "1 /user/sunnypilot/traces/7805545 2023_06_04T21_01_48.584136Z.gpx \n", + "2 /user/sunnypilot/traces/7579456 2023_05_20T01_24_29.316387Z.gpx \n", + "\n", + " track.segment.number track.segment.split.number \n", + "0 0 0 \\\n", + "1 0 0 \n", + "2 0 0 \n", + "\n", + " track.description \n", + "0 Routes from sunnypilot 2022.11.13 (HYUNDAI SON... \\\n", + "1 Routes from sunnypilot 2022.11.13 (HYUNDAI ELA... \n", + "2 Routes from sunnypilot 2023.03.29 (KIA EV6 2022). \n", + "\n", + " times \n", + "0 [2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1... \\\n", + "1 [2023-06-04 21:01:50+00:00, 2023-06-04 21:01:5... \n", + "2 [2023-05-20 01:25:05+00:00, 2023-05-20 01:25:5... \n", + "\n", + " geometry id_to_match \n", + "0 LINESTRING (-83.63079 32.85085, -83.63041 32.8... trace#0 \\\n", + "1 LINESTRING (-83.58567 32.81775, -83.58611 32.8... trace#1 \n", + "2 LINESTRING (-83.64841 32.86189, -83.64795 32.8... trace#2 \n", + "\n", + " properties \n", + "0 {'filename': 'osm-traces-page-0.gpx', 'id_to_m... \\\n", + "1 {'filename': 'osm-traces-page-1.gpx', 'id_to_m... \n", + "2 {'filename': 'osm-traces-page-10.gpx', 'id_to_... \n", + "\n", + " feature_to_match \n", + "0 {\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83... \n", + "1 {\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83... \n", + "2 {\"id\": \"trace#2\", \"geometry\": \"LINESTRING (-83... " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "to_match_gdf = gpd.read_file(input_to_match_file)\n", + "to_match_gdf.crs = \"epsg:4326\"\n", + "\n", + "# add column \"id_to_match\"; this will be used to group all match candidates for a feature, so it must be unique within your data set.\n", + "# if your data doesn't have an id column, you can use to_match_gdf.index for example\n", + "to_match_gdf[\"id_to_match\"] = to_match_gdf[\"id\"] \n", + "property_columns = to_match_gdf.columns.difference([\"geometry\", \"id\", \"type\"])\n", + "to_match_gdf[\"properties\"] = to_match_gdf[property_columns].apply(lambda x: x.to_dict(), axis=1)\n", + "\n", + "# construct a MatchableFeature object for each feature\n", + "to_match_gdf[\"feature_to_match\"] = to_match_gdf.apply(lambda row: MatchableFeature(row.id, row.geometry, row.properties), axis=1)\n", + "\n", + "to_match_gdf.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idthemetypelevelroadsubTypeconnectorsgeometrypropertiescandidate_feature
08f44c0a3295d494-13ff6831c22569b6transportationconnectorNaNNaNNaNNaNPOINT (-83.61940 32.85803){'connectors': nan, 'level': nan, 'road': nan,...{\"id\": \"8f44c0a3295d494-13ff6831c22569b6\", \"ge...
18f44c0a328622e0-179f6831ca420442transportationconnectorNaNNaNNaNNaNPOINT (-83.61940 32.85954){'connectors': nan, 'level': nan, 'road': nan,...{\"id\": \"8f44c0a328622e0-179f6831ca420442\", \"ge...
28844c0a329fffff-13d76831cd6aa403transportationsegmentNaN{'class': 'residential'}road[8f44c0a328622e0-179f6831ca420442, 8f44c0a3295...LINESTRING (-83.61940 32.85803, -83.61940 32.8...{'connectors': ['8f44c0a328622e0-179f6831ca420...{\"id\": \"8844c0a329fffff-13d76831cd6aa403\", \"ge...
\n", + "
" + ], + "text/plain": [ + " id theme type level \n", + "0 8f44c0a3295d494-13ff6831c22569b6 transportation connector NaN \\\n", + "1 8f44c0a328622e0-179f6831ca420442 transportation connector NaN \n", + "2 8844c0a329fffff-13d76831cd6aa403 transportation segment NaN \n", + "\n", + " road subType \n", + "0 NaN NaN \\\n", + "1 NaN NaN \n", + "2 {'class': 'residential'} road \n", + "\n", + " connectors \n", + "0 NaN \\\n", + "1 NaN \n", + "2 [8f44c0a328622e0-179f6831ca420442, 8f44c0a3295... \n", + "\n", + " geometry \n", + "0 POINT (-83.61940 32.85803) \\\n", + "1 POINT (-83.61940 32.85954) \n", + "2 LINESTRING (-83.61940 32.85803, -83.61940 32.8... \n", + "\n", + " properties \n", + "0 {'connectors': nan, 'level': nan, 'road': nan,... \\\n", + "1 {'connectors': nan, 'level': nan, 'road': nan,... \n", + "2 {'connectors': ['8f44c0a328622e0-179f6831ca420... \n", + "\n", + " candidate_feature \n", + "0 {\"id\": \"8f44c0a3295d494-13ff6831c22569b6\", \"ge... \n", + "1 {\"id\": \"8f44c0a328622e0-179f6831ca420442\", \"ge... \n", + "2 {\"id\": \"8844c0a329fffff-13d76831cd6aa403\", \"ge... " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "overture_gdf = gpd.read_file(input_overture_file)\n", + "overture_gdf.crs = \"epsg:4326\"\n", + "\n", + "# combine properties into a single column \n", + "property_columns = overture_gdf.columns.difference([\"geometry\", \"id\", \"type\"])\n", + "overture_gdf[\"properties\"] = overture_gdf[property_columns].apply(lambda x: x.to_dict(), axis=1)\n", + "\n", + "# construct a MatchableFeature object for each feature\n", + "overture_gdf[\"candidate_feature\"] = overture_gdf.apply(lambda row: MatchableFeature(row.id, row.geometry, row.properties), axis=1)\n", + "\n", + "overture_gdf.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_leftfilenametrack.numbertrack.linktrack.nametrack.segment.numbertrack.segment.split.numbertrack.descriptiontimesgeometry...index_rightid_rightthemetypelevelroadsubTypeconnectorsproperties_rightcandidate_feature
0trace#0osm-traces-page-0.gpx0/user/sunnypilot/traces/78245042023_06_05T12_07_14.093431Z.gpx00Routes from sunnypilot 2022.11.13 (HYUNDAI SON...[2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1...POLYGON ((253843.595 3637795.083, 253843.700 3......380658544c0bbfffffff-17976b4158ac1b2ftransportationsegmentNaN{'class': 'motorway', 'surface': 'paved', 'fla...road[8f44c0b85358892-13b7dce1a9fb1680, 8f44c0a36c0...{'connectors': ['8f44c0b85358892-13b7dce1a9fb1...{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"ge...
0trace#0osm-traces-page-0.gpx0/user/sunnypilot/traces/78245042023_06_05T12_07_14.093431Z.gpx00Routes from sunnypilot 2022.11.13 (HYUNDAI SON...[2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1...POLYGON ((253843.595 3637795.083, 253843.700 3......379768544c0bbfffffff-13ff778bddf4a9fatransportationsegmentNaN{'class': 'motorway', 'surface': 'paved', 'fla...road[8f44c0b8535cd53-139f9caef15c4a49, 8f44c0a36c6...{'connectors': ['8f44c0b8535cd53-139f9caef15c4...{\"id\": \"8544c0bbfffffff-13ff778bddf4a9fa\", \"ge...
0trace#0osm-traces-page-0.gpx0/user/sunnypilot/traces/78245042023_06_05T12_07_14.093431Z.gpx00Routes from sunnypilot 2022.11.13 (HYUNDAI SON...[2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1...POLYGON ((253843.595 3637795.083, 253843.700 3......382938744c0a36ffffff-13d7af21a18fd5b7transportationsegmentNaN{'class': 'motorway_link', 'surface': 'paved',...road[8f44c0a3612ec01-17df38ba18201188, 8f44c0a36c0...{'connectors': ['8f44c0a3612ec01-17df38ba18201...{\"id\": \"8744c0a36ffffff-13d7af21a18fd5b7\", \"ge...
\n", + "

3 rows × 24 columns

\n", + "
" + ], + "text/plain": [ + " id_left filename track.number \n", + "0 trace#0 osm-traces-page-0.gpx 0 \\\n", + "0 trace#0 osm-traces-page-0.gpx 0 \n", + "0 trace#0 osm-traces-page-0.gpx 0 \n", + "\n", + " track.link track.name \n", + "0 /user/sunnypilot/traces/7824504 2023_06_05T12_07_14.093431Z.gpx \\\n", + "0 /user/sunnypilot/traces/7824504 2023_06_05T12_07_14.093431Z.gpx \n", + "0 /user/sunnypilot/traces/7824504 2023_06_05T12_07_14.093431Z.gpx \n", + "\n", + " track.segment.number track.segment.split.number \n", + "0 0 0 \\\n", + "0 0 0 \n", + "0 0 0 \n", + "\n", + " track.description \n", + "0 Routes from sunnypilot 2022.11.13 (HYUNDAI SON... \\\n", + "0 Routes from sunnypilot 2022.11.13 (HYUNDAI SON... \n", + "0 Routes from sunnypilot 2022.11.13 (HYUNDAI SON... \n", + "\n", + " times \n", + "0 [2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1... \\\n", + "0 [2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1... \n", + "0 [2023-06-05 12:07:14+00:00, 2023-06-05 12:07:1... \n", + "\n", + " geometry ... index_right \n", + "0 POLYGON ((253843.595 3637795.083, 253843.700 3... ... 38065 \\\n", + "0 POLYGON ((253843.595 3637795.083, 253843.700 3... ... 37976 \n", + "0 POLYGON ((253843.595 3637795.083, 253843.700 3... ... 38293 \n", + "\n", + " id_right theme type level \n", + "0 8544c0bbfffffff-17976b4158ac1b2f transportation segment NaN \\\n", + "0 8544c0bbfffffff-13ff778bddf4a9fa transportation segment NaN \n", + "0 8744c0a36ffffff-13d7af21a18fd5b7 transportation segment NaN \n", + "\n", + " road subType \n", + "0 {'class': 'motorway', 'surface': 'paved', 'fla... road \\\n", + "0 {'class': 'motorway', 'surface': 'paved', 'fla... road \n", + "0 {'class': 'motorway_link', 'surface': 'paved',... road \n", + "\n", + " connectors \n", + "0 [8f44c0b85358892-13b7dce1a9fb1680, 8f44c0a36c0... \\\n", + "0 [8f44c0b8535cd53-139f9caef15c4a49, 8f44c0a36c6... \n", + "0 [8f44c0a3612ec01-17df38ba18201188, 8f44c0a36c0... \n", + "\n", + " properties_right \n", + "0 {'connectors': ['8f44c0b85358892-13b7dce1a9fb1... \\\n", + "0 {'connectors': ['8f44c0b8535cd53-139f9caef15c4... \n", + "0 {'connectors': ['8f44c0a3612ec01-17df38ba18201... \n", + "\n", + " candidate_feature \n", + "0 {\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"ge... \n", + "0 {\"id\": \"8544c0bbfffffff-13ff778bddf4a9fa\", \"ge... \n", + "0 {\"id\": \"8744c0a36ffffff-13d7af21a18fd5b7\", \"ge... \n", + "\n", + "[3 rows x 24 columns]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# filter the overture features that we want to match against - in this case road segments\n", + "candidates_gdf = overture_gdf[overture_gdf[\"type\"] == \"segment\"]\n", + "\n", + "# project to UTM 17N to get distances in meters for the spatial join\n", + "candidates_utm_gdf = candidates_gdf.copy().to_crs(epsg=32617)\n", + "to_match_utm_gdf = to_match_gdf.copy().to_crs(epsg=32617)\n", + "\n", + "# backup original geometry, we might need it later\n", + "to_match_utm_gdf[\"original_geometry\"] = to_match_utm_gdf[\"geometry\"].copy(deep=True)\n", + "\n", + "# add 20 meters buffer to the features to match, to account for the fact that the overture features are not perfectly aligned with the features to be matched\n", + "to_match_utm_gdf[\"geometry\"] = to_match_utm_gdf[\"original_geometry\"].buffer(20, cap_style=2)\n", + "\n", + "# spatial join between points and segments - get nearest overture feature, where distance < 100 meters\n", + "joined_gdf = sjoin(to_match_utm_gdf, candidates_utm_gdf, how=\"left\", predicate=\"intersects\")\n", + "joined_gdf.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_to_matchfeature_to_matchcandidate_feature
0trace#0{\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83...[{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g...
1trace#1{\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83...[{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g...
2trace#10{\"id\": \"trace#10\", \"geometry\": \"LINESTRING (-8...[{\"id\": \"8544c0b3fffffff-17befb26dde99d29\", \"g...
\n", + "
" + ], + "text/plain": [ + " id_to_match feature_to_match \n", + "0 trace#0 {\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83... \\\n", + "1 trace#1 {\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83... \n", + "2 trace#10 {\"id\": \"trace#10\", \"geometry\": \"LINESTRING (-8... \n", + "\n", + " candidate_feature \n", + "0 [{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g... \n", + "1 [{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g... \n", + "2 [{\"id\": \"8544c0b3fffffff-17befb26dde99d29\", \"g... " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# group join results by id_to_match, and aggregate the candidate features into a list\n", + "grouped_df = joined_gdf.groupby([\"id_to_match\"]).agg({\"feature_to_match\": \"first\", \"candidate_feature\": lambda x: list(x)})\n", + "grouped_df = grouped_df.reset_index()\n", + "grouped_df.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_to_matchfeature_to_matchcandidate_featurematch_result
0trace#0{\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83...[{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g...{\"id\": \"trace#0\", \"elapsed\": 1.066741599992383...
1trace#1{\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83...[{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g...{\"id\": \"trace#1\", \"elapsed\": 0.321062799979699...
2trace#10{\"id\": \"trace#10\", \"geometry\": \"LINESTRING (-8...[{\"id\": \"8544c0b3fffffff-17befb26dde99d29\", \"g...{\"id\": \"trace#10\", \"elapsed\": 0.02354870000272...
\n", + "
" + ], + "text/plain": [ + " id_to_match feature_to_match \n", + "0 trace#0 {\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83... \\\n", + "1 trace#1 {\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83... \n", + "2 trace#10 {\"id\": \"trace#10\", \"geometry\": \"LINESTRING (-8... \n", + "\n", + " candidate_feature \n", + "0 [{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g... \\\n", + "1 [{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g... \n", + "2 [{\"id\": \"8544c0b3fffffff-17befb26dde99d29\", \"g... \n", + "\n", + " match_result \n", + "0 {\"id\": \"trace#0\", \"elapsed\": 1.066741599992383... \n", + "1 {\"id\": \"trace#1\", \"elapsed\": 0.321062799979699... \n", + "2 {\"id\": \"trace#10\", \"elapsed\": 0.02354870000272... " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# run the trace matching algorithm for each trace feature to match\n", + "options = TraceSnapOptions(max_point_to_road_distance=10) \n", + "grouped_df[\"match_result\"] = grouped_df.apply(lambda row: get_trace_matches(row.feature_to_match, row.candidate_feature, options), axis=1)\n", + "grouped_df.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# save the results to a file, result as one json line per feature to match\n", + "import numpy as np\n", + "results_df = grouped_df.apply(lambda x: x.match_result.to_json(), axis=1)\n", + "np.savetxt(output_file, results_df.values, fmt='%s')" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_to_matchfeature_to_matchcandidate_featurematch_resultsource_lengthroute_lengthpointspoints_with_matchesavg_dist_to_roadsequence_breaksrevisited_via_pointsrevisited_segmentscandidates_countmatched_segmentselapsed
0trace#0{\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83...[{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g...{\"id\": \"trace#0\", \"elapsed\": 1.066741599992383...5165.32896.77101582.213003161.066742
1trace#1{\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83...[{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g...{\"id\": \"trace#1\", \"elapsed\": 0.321062799979699...5165.45167.131011013.120001840.321063
2trace#10{\"id\": \"trace#10\", \"geometry\": \"LINESTRING (-8...[{\"id\": \"8544c0b3fffffff-17befb26dde99d29\", \"g...{\"id\": \"trace#10\", \"elapsed\": 0.02354870000272...3383.83210.8637354.06000110.023549
\n", + "
" + ], + "text/plain": [ + " id_to_match feature_to_match \n", + "0 trace#0 {\"id\": \"trace#0\", \"geometry\": \"LINESTRING (-83... \\\n", + "1 trace#1 {\"id\": \"trace#1\", \"geometry\": \"LINESTRING (-83... \n", + "2 trace#10 {\"id\": \"trace#10\", \"geometry\": \"LINESTRING (-8... \n", + "\n", + " candidate_feature \n", + "0 [{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g... \\\n", + "1 [{\"id\": \"8544c0bbfffffff-17976b4158ac1b2f\", \"g... \n", + "2 [{\"id\": \"8544c0b3fffffff-17befb26dde99d29\", \"g... \n", + "\n", + " match_result source_length \n", + "0 {\"id\": \"trace#0\", \"elapsed\": 1.066741599992383... 5165.3 \\\n", + "1 {\"id\": \"trace#1\", \"elapsed\": 0.321062799979699... 5165.4 \n", + "2 {\"id\": \"trace#10\", \"elapsed\": 0.02354870000272... 3383.8 \n", + "\n", + " route_length points points_with_matches avg_dist_to_road \n", + "0 2896.77 101 58 2.21 \\\n", + "1 5167.13 101 101 3.12 \n", + "2 3210.86 37 35 4.06 \n", + "\n", + " sequence_breaks revisited_via_points revisited_segments \n", + "0 3 0 0 \\\n", + "1 0 0 0 \n", + "2 0 0 0 \n", + "\n", + " candidates_count matched_segments elapsed \n", + "0 31 6 1.066742 \n", + "1 18 4 0.321063 \n", + "2 1 1 0.023549 " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# add some of the metrics from the result object as columns for analysis\n", + "grouped_df[\"source_length\"] = grouped_df.apply(lambda x: x.match_result.source_length, axis=1)\n", + "grouped_df[\"route_length\"] = grouped_df.apply(lambda x: x.match_result.route_length, axis=1)\n", + "grouped_df[\"points\"] = grouped_df.apply(lambda x: len(x.match_result.points), axis=1)\n", + "grouped_df[\"points_with_matches\"] = grouped_df.apply(lambda x: x.match_result.points_with_matches, axis=1)\n", + "grouped_df[\"avg_dist_to_road\"] = grouped_df.apply(lambda x: x.match_result.avg_dist_to_road, axis=1)\n", + "grouped_df[\"sequence_breaks\"] = grouped_df.apply(lambda x: x.match_result.sequence_breaks, axis=1)\n", + "grouped_df[\"revisited_via_points\"] = grouped_df.apply(lambda x: x.match_result.revisited_via_points, axis=1)\n", + "grouped_df[\"revisited_segments\"] = grouped_df.apply(lambda x: x.match_result.revisited_segments, axis=1)\n", + "grouped_df[\"candidates_count\"] = grouped_df.apply(lambda x: x.match_result.target_candidates_count, axis=1)\n", + "grouped_df[\"matched_segments\"] = grouped_df.apply(lambda x: len(x.match_result.matched_target_ids), axis=1)\n", + "grouped_df[\"elapsed\"] = grouped_df.apply(lambda x: x.match_result.elapsed, axis=1)\n", + "grouped_df.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
source_lengthroute_lengthpointspoints_with_matchesavg_dist_to_roadsequence_breaksrevisited_via_pointsrevisited_segmentscandidates_countmatched_segmentselapsed
count157.000000157.000000157.000000157.000000150.00000157.000000157.000000157.0157.000000157.000000157.000000
mean3964.7677713631.04885465.24203859.6687902.914200.3057320.0445860.036.3184718.2929940.461320
std1884.5538421983.31033129.28034330.6176561.253050.7308440.2070530.061.67626813.6599080.832454
min518.0500000.00000011.0000000.0000000.230000.0000000.0000000.01.0000000.0000000.005760
25%2807.6800002098.50000038.00000036.0000002.050000.0000000.0000000.02.0000001.0000000.033741
50%3429.5400003399.45000067.00000066.0000002.810000.0000000.0000000.09.0000002.0000000.068895
75%5165.4700005165.920000101.00000089.0000003.690000.0000000.0000000.041.0000007.0000000.482268
max9143.7800008810.840000101.000000101.0000007.580004.0000001.0000000.0329.00000064.0000004.586015
\n", + "
" + ], + "text/plain": [ + " source_length route_length points points_with_matches \n", + "count 157.000000 157.000000 157.000000 157.000000 \\\n", + "mean 3964.767771 3631.048854 65.242038 59.668790 \n", + "std 1884.553842 1983.310331 29.280343 30.617656 \n", + "min 518.050000 0.000000 11.000000 0.000000 \n", + "25% 2807.680000 2098.500000 38.000000 36.000000 \n", + "50% 3429.540000 3399.450000 67.000000 66.000000 \n", + "75% 5165.470000 5165.920000 101.000000 89.000000 \n", + "max 9143.780000 8810.840000 101.000000 101.000000 \n", + "\n", + " avg_dist_to_road sequence_breaks revisited_via_points \n", + "count 150.00000 157.000000 157.000000 \\\n", + "mean 2.91420 0.305732 0.044586 \n", + "std 1.25305 0.730844 0.207053 \n", + "min 0.23000 0.000000 0.000000 \n", + "25% 2.05000 0.000000 0.000000 \n", + "50% 2.81000 0.000000 0.000000 \n", + "75% 3.69000 0.000000 0.000000 \n", + "max 7.58000 4.000000 1.000000 \n", + "\n", + " revisited_segments candidates_count matched_segments elapsed \n", + "count 157.0 157.000000 157.000000 157.000000 \n", + "mean 0.0 36.318471 8.292994 0.461320 \n", + "std 0.0 61.676268 13.659908 0.832454 \n", + "min 0.0 1.000000 0.000000 0.005760 \n", + "25% 0.0 2.000000 1.000000 0.033741 \n", + "50% 0.0 9.000000 2.000000 0.068895 \n", + "75% 0.0 41.000000 7.000000 0.482268 \n", + "max 0.0 329.000000 64.000000 4.586015 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grouped_df.describe()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/gers/examples/python/match_traces.py b/gers/examples/python/match_traces.py new file mode 100644 index 00000000..effcd8c4 --- /dev/null +++ b/gers/examples/python/match_traces.py @@ -0,0 +1,509 @@ +import argparse +import csv +import json +import os +import math + +import constants +from route_utils import get_shortest_route +from match_classes import TraceSnapOptions, MatchableFeature, TraceMatchResult, SnappedPointPrediction, PointSnapInfo, RouteStep +from utils import get_features_with_cells, get_seconds_elapsed, get_distance, get_linestring_length, load_matchable_set + +from shapely import Point +from shapely.ops import nearest_points +from timeit import default_timer as timer +from typing import Dict, Iterable + +def get_feature_id_to_connected_features(features_overture: Iterable[MatchableFeature]) -> Dict[str, Iterable[MatchableFeature]]: + """returns a connected roads "graph" as a dictionary of feature id to features that are connected to it, as modeled in overture schema via connectors property""" + connector_id_to_features = {} + for feature in features_overture: + for connector_id in feature.get_connectors(): + if not connector_id in connector_id_to_features: + connector_id_to_features[connector_id] = [] + connector_id_to_features[connector_id].append(feature) + + feature_id_to_connected_features = {} + for feature in features_overture: + feature_id_to_connected_features[feature.id] = [] + for connector_id in feature.get_connectors(): + for other_feature in connector_id_to_features[connector_id]: + if other_feature.id != feature.id: + feature_id_to_connected_features[feature.id].append(other_feature) + return feature_id_to_connected_features + +def read_predictions(predictions_file: str): + """reads snap predictions from tab separated file with columns: trace_id, point_index, gers_id, score""" + p = {} + with open(predictions_file, 'r') as file: + reader = csv.reader(file, delimiter=constants.COLUMN_SEPARATOR) + for row in reader: + try: + trace_id = row[0] + point_index = int(row[1]) + gers_id = row[3] + if not(trace_id in p): + p[trace_id] = {} + p[trace_id][point_index] = gers_id + except ValueError: + continue # header or invalid line + return p + +def calculate_error_rate(labeled_file: str, target_features_by_id: Dict[str, Iterable[MatchableFeature]], match_results: Iterable[TraceMatchResult]): + """returns total error rate from a labeled file and a list of trace match results""" + if not(os.path.exists(labeled_file)): + print(f'no metrics to compute (file {labeled_file} does not exist)') + return + + labels = read_predictions(labeled_file) + total_correct_distance = 0 + total_incorrect_distance = 0 + with open(labeled_file + ".actual.txt",'w') as f: + f.write(constants.COLUMN_SEPARATOR.join(["trace_id", "point_index", "label_gers_id", "prediction_gers_id", "label_snapped_wkt", "prediction_snapped_wkt", "distance_to_prev_point", "is_correct"]) + "\n") + for trace_match_result in match_results: + if not(trace_match_result.id in labels): + continue + + correct_distance = 0 + incorrect_distance = 0 + prev_point = None + + for point in trace_match_result.points: + if not(point.index in labels[trace_match_result.id]): + print(f'no label for trace_id={trace_match_result.id} point_index={point.index}') + break + + label_gers_id = labels[trace_match_result.id][point.index] + dist_to_prev_point = 0 + is_correct = not(point.best_prediction is None) and (str(point.best_prediction.id) == label_gers_id) + if prev_point is not None: + dist_to_prev_point = get_distance(prev_point, point.original_point) + correct_distance += dist_to_prev_point + if not is_correct: + # in the original paper error metric is defined as: (added incorrect route distance + removed correct route distance) / total correct route distance + # but since it's difficult to label the correct route distance (would need to have a reliable routing engine to correctly calculate it) + # we'll just use the distance between the original route's points + # side effect is that start/end points and stopped points that usually have more gps noise will be penalized more than the route distance approach would - + # but that may be preferable to overweigh the more problematic/difficult points + incorrect_distance += dist_to_prev_point + + label_snapped_point = None + if not(label_gers_id in target_features_by_id): + print(f'no target feature for label_gers_id={label_gers_id}') + else: + label_shape = target_features_by_id[label_gers_id].geometry + x, label_snapped_point = nearest_points(point.original_point, label_shape) + + columns = [\ + str(trace_match_result.id), \ + str(point.index), \ + str(label_gers_id), \ + str(point.best_prediction.id) if point.best_prediction is not None else "", \ + label_snapped_point.wkt if label_snapped_point is not None else "", \ + point.best_prediction.snapped_point.wkt if point.best_prediction is not None else "", \ + str(dist_to_prev_point), \ + str(is_correct), \ + ] + f.write(constants.COLUMN_SEPARATOR.join(columns) + "\n") + + prev_point = point.original_point + + trace_error_rate = incorrect_distance / correct_distance + print(rf"trace_id={trace_match_result.id} trace_error_rate={trace_error_rate:.2f} correct_distance={correct_distance:.2f} incorrect_distance={incorrect_distance:.2f}") + total_correct_distance += correct_distance + total_incorrect_distance += incorrect_distance + + if total_correct_distance == 0: + print('no correct distance') + return -1 + + total_error_rate = total_incorrect_distance / total_correct_distance + print(rf"total_error_rate={total_error_rate:.2f} total_correct_distance={total_correct_distance:.2f} total_incorrect_distance={total_incorrect_distance:.2f}") + return total_error_rate + +def output_trace_snap_results(match_results: Iterable[TraceMatchResult], output_file_name: str, output_for_judgment: bool = False): + results_json = list(map(lambda x: x.to_json(diagnostic_mode=False, include_all_predictions=False), match_results)) + with open(output_file_name, 'w') as f: + json.dump(results_json, f, indent=4) + + results_json = list(map(lambda x: x.to_json(diagnostic_mode=True, include_all_predictions=False), match_results)) + with open(output_file_name + ".with_diagnostics.json", 'w') as f: + json.dump(results_json, f, indent=4) + + results_json = list(map(lambda x: x.to_json(diagnostic_mode=True, include_all_predictions=True), match_results)) + with open(output_file_name + ".with_diagnostics-all-predictions.json", 'w') as f: + json.dump(results_json, f, indent=4) + + if output_for_judgment: + with open(output_file_name + ".for_judgment.txt",'w') as f: + f.write(constants.COLUMN_SEPARATOR.join(["trace_id", "point_index", "trace_point_wkt", "gers_id"]) + "\n") + for r in match_results: + for idx, p in enumerate(r.points): + columns = [ + str(r.id), + str(idx), + p.original_point.wkt, + str(p.best_prediction.id) if p.best_prediction is not None else "" + ] + f.write(constants.COLUMN_SEPARATOR.join(columns) + "\n") + + with open(output_file_name + ".snapped_points.txt",'w') as f: + f.write(constants.COLUMN_SEPARATOR.join(["trace_id", "point_index", "gers_id", "snapped_point_wkt"]) + "\n") + for r in match_results: + for idx, p in enumerate(r.points): + columns = [ + str(r.id), + str(idx), + str(p.best_prediction.id) if p.best_prediction is not None else "", + p.best_prediction.snapped_point.wkt if p.best_prediction is not None else "" + ] + f.write(constants.COLUMN_SEPARATOR.join(columns) + "\n") + + with open(output_file_name + ".auto_metrics.txt",'w') as f: + header = [ + "id", + "source_length", + "route_length", + "points", + "points_with_match", + "percent_points_with_match", + "target_candidates_count", + "matched_target_ids_count", + "avg_dist_to_road", + "sequence_breaks", + "revisited_via_points", + "revisited_segments", + "elapsed", + "source_wkt" + ] + f.write(constants.COLUMN_SEPARATOR.join(header) + "\n") + for r in match_results: + columns = [ + str(r.id), + str(r.source_length), + str(r.route_length), + str(len(r.points)), + str(r.points_with_matches), + rf"{(100*r.points_with_matches/len(r.points)):.2f}", + str(r.target_candidates_count), + str(len(r.matched_target_ids)), + str(r.avg_dist_to_road), + str(r.sequence_breaks), + str(r.revisited_via_points), + str(r.revisited_segments), + str(r.elapsed), + str(r.source_wkt), + ] + f.write(constants.COLUMN_SEPARATOR.join(columns) + "\n") + +def set_best_path_predictions(points: Iterable[PointSnapInfo]): + """Sets the best prediction for each point in the sequence, starting from the end and going backwards following the best_prev_prediction chain""" + + last_point = points[-1] + if last_point.predictions is None or len(last_point.predictions) == 0 or last_point.predictions[0].best_log_prob == 0: + return # no path found + + last_point.best_prediction = last_point.predictions[0] # this is sorted descending by probability, so the first one is the best + for idx in range(len(points)-2, -1, -1): + if points[idx + 1].best_prediction is not None: + points[idx].best_prediction = points[idx + 1].best_prediction.best_prev_prediction + else: + if not(points[idx].ignore) and len(points[idx].predictions) > 0: + points[idx].best_prediction = points[idx].predictions[0] + +def extend_sequence(steps: Iterable[RouteStep], prev_prediction: SnappedPointPrediction): + """Extends the sequence of the traveled segments up to the previous point with the new steps; also returns the number of revisited segments and via points""" + revisited_via_points_count = 0 + revisited_segments_count = 0 + extended_sequence = prev_prediction.best_sequence.copy() if prev_prediction.best_sequence is not None else [] + revisited_segments_count = 0 + added_via_points = [] + for step in steps: + if len(extended_sequence) == 0 or step.feature.id != extended_sequence[-1]: # either first step or new feature + if len(extended_sequence) > 0 and step.feature.id in extended_sequence: # different than prev segment but present in the sequence, so we are revisiting it + revisited_segments_count += 1 + extended_sequence.append(step.feature.id) + if step.via_point is not None: + added_via_points.append(step.via_point.wkt) + + if len(added_via_points) > 0: + all_prev_via_points = set() + p = prev_prediction + while p is not None: + if p.best_route_via_points is not None: + for vp in p.best_route_via_points: + all_prev_via_points.add(vp) + if len(all_prev_via_points) > 100: + break # optimization for very long traces, don't need to check all of them, just the recent ones + p = p.best_prev_prediction + + for added_via_point in added_via_points: + if added_via_point in all_prev_via_points: + revisited_via_points_count += 1 + return (extended_sequence, revisited_segments_count, revisited_via_points_count) + +def get_trace_matches(source_feature: MatchableFeature, target_candidates: Iterable[MatchableFeature], options: TraceSnapOptions) -> TraceMatchResult: + """Matches a `source_feature` trace to most likely traveled `targe_candidates` road segments""" + start = timer() + + feature_id_to_connected_features = get_feature_id_to_connected_features(target_candidates) + + filter_feature_ids = set(map(lambda x: x.id, target_candidates)) + + times = source_feature.properties.get('times') + points = [] + prev_point = None + sequence_breaks = 0 + for idx, coord in enumerate(source_feature.geometry.coords): + + original_point = Point(coord[0], coord[1]) + predictions = [] + + for target_feature in target_candidates: + op, snapped_point = nearest_points(original_point, target_feature.geometry) + distance_to_road = get_distance(original_point, snapped_point) + if distance_to_road > options.max_point_to_road_distance: + continue + + emission_prob = (1 / (math.sqrt(2*math.pi) * options.sigma)) * math.exp(-0.5 * ((distance_to_road/options.sigma)**2)) # measurement probability - if was on this road how likely is it to have measured the point at this distance + best_log_prob = None + best_transition_prob = None + best_prev_prediction = None + best_route_dist_from_prev_point = None + best_sequence = None + best_route_via_points = None + best_revisited_via_points_count = 0 + best_revisited_segments_count = 0 + trace_dist_from_prev_point = 0 + # calculate transition probability from all prev point matches to current match candidate target_feature + if prev_point is None: + best_log_prob = math.log(emission_prob) + best_transition_prob = 1 + best_sequence = [target_feature.id] + else: + trace_dist_from_prev_point = get_distance(original_point, prev_point.original_point) + for prev_prediction in prev_point.predictions: + if not(options.allow_loops) and not(prev_prediction.best_sequence is None) and target_feature.id in prev_prediction.best_sequence and prev_prediction.referenced_feature.id != target_feature.id: + # already part of best sequence, but then moved to a different segment, so this is not a good candidate, it means this would walk back on itself + continue + + route = get_shortest_route(target_candidates, feature_id_to_connected_features, prev_prediction.referenced_feature, target_feature, prev_prediction.snapped_point, snapped_point, filter_feature_ids, [] if options.allow_loops else prev_prediction.best_sequence) + # check distance is not float('inf') + if route is None or route.distance == float('inf') : + # couldn't find path, skip this prev_match as impossible to transition from it to this match + continue + + dist_diff = abs(trace_dist_from_prev_point - route.distance) + + transition_prob = (1 / options.beta) * math.exp(-dist_diff / options.beta) + + extended_sequence, revisited_segments_count, revisited_via_points_count = extend_sequence(route.steps, prev_prediction) + transition_prob *= math.exp(-revisited_via_points_count * options.revisit_via_point_penalty_weight) # todo: what's the right way to penalize revisiting via points? + transition_prob *= math.exp(-revisited_segments_count * options.revisit_segment_penalty_weight) # todo: what's the right way to penalize revisiting segments? + + if dist_diff > options.max_route_to_trace_distance_difference or transition_prob <= 0: + continue + #match_prob = prev_prediction.best_prob * emission_prob * transition_prob + # probabilities multiplied over many points go to zero (floating point underflow), so use log of product is sum of logs + match_log_prob = prev_prediction.best_log_prob + math.log(emission_prob) + math.log(transition_prob) + #print(f'point#{idx} prev_prediction={prev_prediction.id} transition_prob={transition_prob} emission_prob={emission_prob} match_prob={match_prob} route_dist_from_prev_point={route_dist_from_prev_point} trace_dist_from_prev_point={trace_dist_from_prev_point} dist_diff={dist_diff}') + if best_log_prob is None or match_log_prob > best_log_prob: + best_log_prob = match_log_prob + best_transition_prob = transition_prob + best_prev_prediction = prev_prediction + best_route_dist_from_prev_point = route.distance + best_sequence = extended_sequence + best_route_via_points = [] + best_revisited_via_points_count = revisited_via_points_count + best_revisited_segments_count = revisited_segments_count + for step in route.steps: + if step.via_point is not None: + best_route_via_points.append(step.via_point.wkt) + # todo: also include the intermediate features in route.path + + if best_log_prob is None: + continue # couldn't find a path to this point, skip it + #print(f'point#{idx} candidate feature={target_feature.id} best_log_prob={best_log_prob} best_prev_point={best_prev_prediction.id if best_prev_prediction is not None else None} best_transition_prob={best_transition_prob} emission_prob={emission_prob} distance_to_road={distance_to_road}') + prediction = SnappedPointPrediction(target_feature.id, snapped_point, target_feature, distance_to_road, best_route_dist_from_prev_point, emission_prob, best_transition_prob, best_log_prob, best_prev_prediction, best_sequence, best_route_via_points, best_revisited_via_points_count, best_revisited_segments_count) + + predictions.append(prediction) + + predictions.sort(key=lambda x: x.best_log_prob, reverse=True) + time_since_prev_point = None if times is None or prev_point is None else get_seconds_elapsed(times[prev_point.index], times[idx]) + time = None if times is None else times[idx] + point = PointSnapInfo(idx, original_point, time, time_since_prev_point, predictions) + points.append(point) + + if len(predictions) > 0: + prev_point = point # don't update prev_point unless it has at least one prediction + else: + # no predictions for this point, so ignore current point and previous point to attempt to recover sequence; + # if gap between current point and prev_point is too big, abandon the prev_point and reset; + # this will happen when there is no road in the target map to match the trace + point.ignore = True + if prev_point is not None: + prev_point.ignore = True + if prev_point.index > 0: + prev_point = points[prev_point.index - 1] + # gap with no candidates too big if 60seconds or 200m since last point + if (time_since_prev_point is not None and time_since_prev_point > options.broken_time_gap_reset_sequence) or \ + trace_dist_from_prev_point > options.broken_distance_gap_reset_sequence: + #print(rf"#{str(idx)}: sequence break; time_since_prev_point={time_since_prev_point} trace_dist_from_prev_point={trace_dist_from_prev_point}") + # we have a sequence break, reset prev point, new sequence will start from next point + sequence_breaks += 1 + prev_point = None + else: + prev_point = None + + set_best_path_predictions(points) + + end = timer() + elapsed = end - start + source_feature_length = get_linestring_length(source_feature.geometry) + t = TraceMatchResult(source_feature.id, source_feature.geometry.wkt, points, source_feature_length, len(target_candidates), elapsed=elapsed, sequence_breaks=sequence_breaks) + set_trace_match_metrics(t) + return t + +def set_trace_match_metrics(t: TraceMatchResult) -> None: + matched_target_ids = set() + route_length = 0 + dist_to_road = 0 + revisited_via_points = 0 + revisited_segments = 0 + points_with_matches = 0 + for point in t.points: + if point.best_prediction is not None and point.best_prediction.referenced_feature is not None: + points_with_matches += 1 + route_length += point.best_prediction.route_distance_to_prev_point if point.best_prediction.route_distance_to_prev_point is not None else 0 + dist_to_road += point.best_prediction.distance_to_snapped_road + revisited_via_points += point.best_prediction.best_revisited_via_points_count + revisited_segments += point.best_prediction.best_revisited_segments_count + matched_target_ids.add(point.best_prediction.referenced_feature.id) + t.matched_target_ids = list(matched_target_ids) + t.points_with_matches = points_with_matches + t.route_length = round(route_length, 2) + t.avg_dist_to_road = round(dist_to_road / points_with_matches, 2) if points_with_matches > 0 else None + t.revisited_via_points = revisited_via_points + t.revisited_segments = revisited_segments + +def print_stats(source_features: Iterable[MatchableFeature], target_features: Iterable[MatchableFeature], match_results: Iterable[TraceMatchResult], total_elapsed: float, avg_runtime_per_feature: float): + num_traces = len(source_features) + total_route_length = sum([r.route_length for r in match_results]) / 1000 # in km + total_traces_length = sum([r.source_length for r in match_results]) / 1000 # in km + total_candidates = sum([r.target_candidates_count for r in match_results]) + total_matches = sum([len(r.matched_target_ids) for r in match_results]) + total_sequence_breaks = sum([r.sequence_breaks for r in match_results]) + total_revisited_via_points = sum([r.revisited_via_points for r in match_results]) + total_revisited_segments = sum([r.revisited_segments for r in match_results]) + total_traces_with_matches = sum([1 for r in match_results if r.points_with_matches > 0]) + total_avg_dist_to_road = sum([r.avg_dist_to_road for r in match_results if r.points_with_matches > 0]) + avg_runtime_per_km = total_elapsed / total_traces_length if total_traces_length > 0 else None + avg_dist_to_road = round(total_avg_dist_to_road / total_traces_with_matches, 2) if total_traces_with_matches > 0 else None + + print("==================================================================") + print("Totals:") + print("==================================================================") + print(rf"Traces.............................{num_traces}") + print(rf"Target features....................{len(target_features)}") + print(rf"Elapsed:...........................{round(total_elapsed//60)}min {total_elapsed%60:.3f}s") + print(rf"Avg runtime/trace..................{avg_runtime_per_feature:.3f}s") + print(rf"Avg runtime/km.....................{avg_runtime_per_km:.3f}s") + print(rf"Avg distance to snapped road.......{avg_dist_to_road}m") + print(rf"Snapped route length...............{total_route_length:.2f}km") + print(rf"GPS traces length..................{total_traces_length:.2f}km") + print(rf"Snapped route len/gps len..........{(total_route_length/total_traces_length):.2f}") + print(rf"Avg number of candidate segments...{(total_candidates/num_traces):.2f}/trace, {(total_candidates/total_traces_length):.2f}/km") + print(rf"Avg number of matched segments.....{(total_matches/num_traces):.2f}/trace, {(total_matches/total_traces_length):.2f}/km") + print(rf"Avg number of sequence breaks......{(total_sequence_breaks/num_traces):.2f}/trace, {(total_sequence_breaks/total_traces_length):.2f}/km") + print(rf"Avg number of revisited via points.{(total_revisited_via_points/num_traces):.2f}/trace, {(total_revisited_via_points/total_traces_length):.2f}/km") + print(rf"Avg number of revisited segments...{(total_revisited_segments/num_traces):.2f}/trace, {(total_revisited_segments/total_traces_length):.2f}/km") + print("==================================================================") + +def snap_traces(features_to_match_file: str, overture_file: str, output_file: str, res: int, snap_options: TraceSnapOptions=None, output_for_judgment: bool=False) -> None: + if snap_options is None: + snap_options = TraceSnapOptions() # loads default options + + # save the options we used next to the output file for debugging or comparison with other runs + with open(output_file + ".options.json", "w") as f: + json.dump(snap_options.__dict__, f, indent=4) + + start = timer() + print("Loading features...") + to_match_prop_filter = {} + #to_match_prop_filter["id"] = "manual_trace#4" + to_match = load_matchable_set(features_to_match_file, is_multiline=False, res=res) + features_to_match = to_match.features_by_id.values() + if len(features_to_match) == 0: + print("no features to match") + exit() + + overture = load_matchable_set(overture_file, is_multiline=True, properties_filter = {"type": "segment"}, res=res) + features_overture =overture.features_by_id.values() + print("Features to match: " + str(len(features_to_match))) + print("Features Overture: " + str(len(features_overture))) + end = timer() + print(f"Loading time: {(end-start):.2f}s") + + i = 0 + match_results = [] + total_elapsed = 0 + for source_feature in features_to_match: + i += 1 + + target_candidates = get_features_with_cells(overture.features_by_cell, to_match.cells_by_id[source_feature.id]) + match_res = get_trace_matches(source_feature, target_candidates, snap_options) + match_results.append(match_res) + + total_elapsed += match_res.elapsed + avg_runtime_per_feature = total_elapsed / i + + if i%1 == 0: + print(rf"trace#{str(i)} length={match_res.source_length} route_length={round(match_res.route_length)} " + \ + rf"points={len(source_feature.geometry.coords)} points_w_matches={match_res.points_with_matches} " + \ + rf"candidates={match_res.target_candidates_count} matched target_ids: {str(len(match_res.matched_target_ids))} " + \ + rf"elapsed: {match_res.elapsed:.2f}s; avg runtime/feature: {avg_runtime_per_feature:.3f}s") + + print_stats(features_to_match, features_overture, match_results, total_elapsed, avg_runtime_per_feature) + + print("Writing results...") + start = timer() + output_trace_snap_results(match_results, output_file, output_for_judgment) + end = timer() + print(f"Writing time: {(end-start):.2f}s") + calculate_error_rate(features_to_match_file.replace('.geojson', '.labeled.txt'), overture.features_by_id, match_results) + +def get_args(): + parser = argparse.ArgumentParser(description="", add_help=True, formatter_class=argparse.ArgumentDefaultsHelpFormatter) + parser.add_argument("--input-to-match", help="Input file containing features to match in geojson format", required=True) + parser.add_argument("--input-overture", help="Input file containing overture features", required=True) + parser.add_argument("--output", help="Output file containing match results", required=True) + parser.add_argument("--resolution", help="H3 cell resolution used to pre-filter candidates", type=int, default=constants.DEFAULT_H3_RESOLUTION, choices=range(0,15)) + parser.add_argument("--sigma", type=float, help=f"Sigma param - controlling tolerance to GPS noise", required=False, default=constants.DEFAULT_SIGMA) + parser.add_argument("--beta", type=float, help=f"Beta param - controlling confidence in route", required=False, default=constants.DEFAULT_BETA) + parser.add_argument("--allow_loops", type=bool, help=f"Allow same sequence to revisit same segment with other segment(s) in between", required=False, default=constants.DEFAULT_ALLOW_LOOPS) + parser.add_argument("--max_point_to_road_distance", type=float, help=f"Maximum distance in meters between a trace point and a match candidate road", required=False, default=constants.DEFAULT_MAX_POINT_TO_ROAD_DISTANCE) + parser.add_argument("--max_route_to_trace_distance_difference", type=float, help=f"Maximum difference between route and trace lengths in meters", required=False, default=constants.DEFAULT_MAX_ROUTE_TO_TRACE_DISTANCE_DIFFERENCE) + parser.add_argument("--revisit_segment_penalty_weight", type=float, help="How much to penalize a route with one segment revisit", required=False, default=constants.DEFAULT_SEGMENT_REVISIT_PENALTY) + parser.add_argument("--revisit_via_point_penalty_weight", type=float, help="How much to penalize a route with one via-point revisit", required=False, default=constants.DEFAULT_VIA_POINT_PENALTY_WEIGHT) + parser.add_argument("--broken_time_gap_reset_sequence", type=float, help="How big the time gap in seconds between points without valid route options before we consider it a broken sequence", required=False, default=constants.DEFAULT_BROKEN_TIME_GAP_RESET_SEQUENCE) + parser.add_argument("--broken_distance_gap_reset_sequence", type=float, help="How big the distance gap in meters between points without valid route options before we consider it a broken sequence", required=False, default=constants.DEFAULT_BROKEN_DISTANCE_GAP_RESET_SEQUENCE) + parser.add_argument("--j", action="store_true", help="Also output the matches as a 'pre-labeled' file for judgment", default=False, required=False) + return parser.parse_args() + +def get_trace_snap_options_from_args(args): + return TraceSnapOptions( + sigma=args.sigma, + beta=args.beta, + allow_loops=args.allow_loops, + max_point_to_road_distance=args.max_point_to_road_distance, + max_route_to_trace_distance_difference=args.max_route_to_trace_distance_difference, + revisit_segment_penalty_weight=args.revisit_segment_penalty_weight, + revisit_via_point_penalty_weight=args.revisit_via_point_penalty_weight, + broken_time_gap_reset_sequence=args.broken_time_gap_reset_sequence, + broken_distance_gap_reset_sequence=args.broken_distance_gap_reset_sequence) + +if __name__ == "__main__": + args = get_args() + trace_snap_options = get_trace_snap_options_from_args(args) + snap_traces(args.input_to_match, args.input_overture, args.output, args.resolution, trace_snap_options, output_for_judgment=args.j) + \ No newline at end of file diff --git a/gers/examples/python/requirements.txt b/gers/examples/python/requirements.txt new file mode 100644 index 00000000..4fdc02eb Binary files /dev/null and b/gers/examples/python/requirements.txt differ diff --git a/gers/examples/python/route_utils.py b/gers/examples/python/route_utils.py new file mode 100644 index 00000000..51cbe71b --- /dev/null +++ b/gers/examples/python/route_utils.py @@ -0,0 +1,91 @@ +from utils import get_distance +from shapely.ops import nearest_points +from match_classes import RouteStep, Route, MatchableFeature +from shapely.geometry import Point +from typing import Dict, Tuple, Iterable + +def get_route_step_dist(feat_before_from: MatchableFeature, feat_from: MatchableFeature, feat_to: MatchableFeature, start_feature: MatchableFeature, end_feature: MatchableFeature, start_point: Point, end_point: Point) -> Tuple[Point, float]: + """get distance traveled on one feature `feat_from` having entering from `feat_before_from` and exiting to `feat_to`, given that the whole route starts at `start_feature` and ends at `end_feature`""" + # todo: this a distance approximation for now as length of straight line from entry point to exit point on the feat_from feature, but works reasonably well for the data seen so far + feat_from_exit_point, p2 = nearest_points(feat_from.geometry, feat_to.geometry) + d = 0 + + if feat_from.id == start_feature.id: + d += get_distance(start_point, feat_from_exit_point) + else: + p0_before, feat_from_entry_point = nearest_points(feat_before_from.geometry, feat_from.geometry) + d += get_distance(feat_from_entry_point, feat_from_exit_point) + + if feat_to.id == end_feature.id: + d += get_distance(end_point, p2) + # else there is no distance to add + + # todo: add basic penalties like allowed travel direction disagreement, road class change cost, etc. + return feat_from_exit_point, d + +def get_shortest_route(features: Iterable[MatchableFeature], feature_id_to_connected_features: Dict[str, Iterable[MatchableFeature]], start_feature: MatchableFeature, end_feature: MatchableFeature, start_point: Point, end_point: Point, allowed_ids: Iterable[str], blocked_ids: Iterable[str]) -> Route: + """ + Dijsktra's algorithm to find shortest route between start and end features. Remember for each traveled feature the entry via_point. + """ + + # start and end are same feature, no route calculation needed, just distance + if start_feature.id == end_feature.id: + dist = get_distance(start_point, end_point) + return Route(dist, [RouteStep(start_feature, None)]) + x = set() + + dist = {} + prev = {} + prev_via_point = {} + feats_to_visit = [] + ids_to_visit = set() + for f in features: + if f.id in blocked_ids and f.id != start_feature.id: + continue + dist[f.id] = float('inf') + prev[f.id] = None + prev_via_point[f.id] = None + feats_to_visit.append(f) + ids_to_visit.add(f.id) + dist[start_feature.id] = 0 + + while len(feats_to_visit) > 0: + current_feature = feats_to_visit[0] + min_dist = float('inf') + for f in feats_to_visit: + if dist[f.id] < min_dist: + min_dist = dist[f.id] + current_feature = f + + if min_dist == float('inf'): + break # no more allowed connected features to visit + + if current_feature.id == end_feature.id: + break # done, visited end_feature, don't need to calculate shortest path to all features + + feats_to_visit.remove(current_feature) + ids_to_visit.remove(current_feature.id) + connected_features = feature_id_to_connected_features[current_feature.id] + for v in connected_features: + if not(v.id in allowed_ids) or (v.id in blocked_ids) or not(v.id in ids_to_visit): + continue + + if not(v.id in ids_to_visit): + continue # have already visited this feature + + via_point, d = get_route_step_dist(prev[current_feature.id], current_feature, v, start_feature, end_feature, start_point, end_point) + alternate_dist = dist[current_feature.id] + d + if alternate_dist < dist[v.id]: + dist[v.id] = alternate_dist + prev[v.id] = current_feature + prev_via_point[v.id] = via_point + + steps = [] + current_feature = end_feature + if prev[current_feature.id] is not None or current_feature.id == start_feature.id: + while current_feature is not None: + steps.insert(0, RouteStep(current_feature, prev_via_point[current_feature.id])) + current_feature = prev[current_feature.id] + + r = Route(round(dist[end_feature.id], 2), steps) + return r \ No newline at end of file diff --git a/gers/examples/python/tests/__init__.py b/gers/examples/python/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/gers/examples/python/tests/match_traces_test.py b/gers/examples/python/tests/match_traces_test.py new file mode 100644 index 00000000..07cd77a8 --- /dev/null +++ b/gers/examples/python/tests/match_traces_test.py @@ -0,0 +1,52 @@ +import test_setup +import os +import json +import unittest +import constants +from match_classes import TraceSnapOptions +from match_traces import get_trace_matches +from utils import load_matchable_set, get_features_with_cells + +class TestTraces(unittest.TestCase): + + def test_match_traces(self): + features_to_match_file = os.path.join(constants.DATA_DIR, "macon-manual-traces.geojson") + overture_file = os.path.join(constants.DATA_DIR, "overture-transportation-macon.geojson") + res = 12 + + to_match = load_matchable_set(features_to_match_file, is_multiline=False, res=res) + self.assertIsNotNone(to_match) + self.assertEqual(len(to_match.features_by_id), 4) + + id_to_match = "manual_trace#1" + self.assertIn(id_to_match, to_match.features_by_id) + source_feature = to_match.features_by_id[id_to_match] + + overture = load_matchable_set(overture_file, is_multiline=True, properties_filter = {"type": "segment"}, res=res) + self.assertIsNotNone(overture.features_by_id) + self.assertGreater(len(overture.features_by_id), 20000) + + options = TraceSnapOptions(max_point_to_road_distance=30) + target_candidates = get_features_with_cells(overture.features_by_cell, to_match.cells_by_id[source_feature.id]) + match_res = get_trace_matches(source_feature, target_candidates, options) + self.assertIsNotNone(match_res) + self.assertIsNotNone(match_res.points) + self.assertEqual(len(match_res.points), len(source_feature.geometry.coords)) + + self.assertGreater(match_res.source_length, 5000) + self.assertGreater(match_res.route_length, 5000) + + json_res = match_res.to_json() + self.assertIsNotNone(json_res) + j = json.dumps(json_res, indent=4) + + for idx, p in enumerate(match_res.points): + bp = p.best_prediction + self.assertIsNotNone(bp, f"best prediction for point {idx} is None") + self.assertIsNotNone(bp.id, f"best prediction for point {idx} has no id") + self.assertGreater(bp.distance_to_snapped_road, 0.0) + if idx > 0: + self.assertGreater(bp.route_distance_to_prev_point, 0.0) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/gers/examples/python/tests/test_setup.py b/gers/examples/python/tests/test_setup.py new file mode 100644 index 00000000..45736832 --- /dev/null +++ b/gers/examples/python/tests/test_setup.py @@ -0,0 +1,5 @@ +import sys +import os + +parent_dir = os.path.dirname(os.path.abspath(__file__)) +sys.path.insert(0, os.path.dirname(parent_dir)) \ No newline at end of file diff --git a/gers/examples/python/tests/utils_test.py b/gers/examples/python/tests/utils_test.py new file mode 100644 index 00000000..22e82586 --- /dev/null +++ b/gers/examples/python/tests/utils_test.py @@ -0,0 +1,52 @@ +import test_setup +import os +import unittest +import constants +from utils import get_distance, get_linestring_length, get_intersecting_h3_cells_for_geo_json, load_matchable_set +from shapely import Point, LineString + +class TestUtils(unittest.TestCase): + + def test_load_matchable_set_geojson(self): + features_to_match_file = os.path.join(constants.DATA_DIR, "macon-manual-traces.geojson") + s = load_matchable_set(features_to_match_file, res=12, is_multiline=False) + self.assertIsNotNone(s) + self.assertEqual(len(s.features_by_id), 4) + self.assertEqual(len(s.cells_by_id), 4) + self.assertGreater(len(s.features_by_cell), 0) + + def test_get_distance(self): + p1 = Point(-83.6878343, 32.8413587) + p2 = Point(-83.6877941, 32.8413903) + + d = get_distance(p1, p2) + self.assertAlmostEqual(d, 5.1, delta=0.1) + + def test_get_linestring_length(self): + l = LineString([(-83.6878343, 32.8413587), (-83.6877941, 32.8413903)]) + + d = get_linestring_length(l) + self.assertAlmostEqual(d, 5.1, delta=0.1) + + def test_get_intersecting_h3_cells_for_geo_json(self): + point = { "type": "Point", "coordinates": [-83.6197063, 32.8589311] } + actual_cells = get_intersecting_h3_cells_for_geo_json(point, 10) + expected_cells = ["8a44c0a32867fff"] + self.assertCountEqual(actual_cells, expected_cells) + + line = { "type": "LineString", "coordinates": [[-83.61940200000001, 32.858034], [-83.61940200000001, 32.859538]] } + actual_cells = get_intersecting_h3_cells_for_geo_json(line, 10) + expected_cells = ["8a44c0a3295ffff", "8a44c0a32867fff"] + self.assertCountEqual(actual_cells, expected_cells) + + polygon = { "type": "Polygon", "coordinates": [[[-83.6195695, 32.8591587], [-83.6192584, 32.8583723], [-83.619135, 32.8590437], [-83.6195695, 32.8591587]]] } + actual_cells = get_intersecting_h3_cells_for_geo_json(polygon, 10) + expected_cells = ["8a44c0a32877fff", "8a44c0a32867fff", "8a44c0a3295ffff"] + self.assertCountEqual(actual_cells, expected_cells) + + ml = { "type": "MultiLineString", "coordinates": [[[-83.61940200000001, 32.858034], [-83.61940200000001, 32.859538]], [[-83.6215878, 32.8580366], [-83.6202145, 32.8580546]]] } + actual_cells = get_intersecting_h3_cells_for_geo_json(ml, 10) + expected_cells = ["8a44c0a3294ffff", "8a44c0a32867fff", "8a44c0a304b7fff", "8a44c0a3295ffff"] + self.assertCountEqual(actual_cells, expected_cells) + + diff --git a/gers/examples/python/utils.py b/gers/examples/python/utils.py new file mode 100644 index 00000000..c66599f2 --- /dev/null +++ b/gers/examples/python/utils.py @@ -0,0 +1,212 @@ +import csv +import json +from haversine import haversine, Unit +#from shapely.ops import transform +from shapely import wkt +from shapely.geometry import shape, mapping +from shapely.geometry.base import BaseGeometry +from dateutil import parser +from typing import Any, Dict, Iterable +from h3 import h3 + +from match_classes import MatchableFeature, MatchableFeaturesSet +#from pyproj import Geod + +def get_seconds_elapsed(t1_str, t2_str): + t1 = parser.parse(t1_str) + t2 = parser.parse(t2_str) + return (t2 - t1).total_seconds() + +def get_linestring_length(ls): + length = 0 + for i in range(len(ls.coords) - 1): + lon1, lat1 = ls.coords[i] + lon2, lat2 = ls.coords[i+1] + #_, _, d = geod.inv(lon1, lat1, lon2, lat2) + d = haversine((lat1, lon1), (lat2, lon2), unit=Unit.METERS) + length += d + return round(length, 2) + +def get_distance(point1, point2): + #_, _, d = geod.inv(point1.x, point1.y, point2.x, point2.y) + d = haversine((point1.y, point1.x), (point2.y, point2.x), unit=Unit.METERS) + return round(d, 2) + +def get_intersecting_h3_cells_for_line(coords, res): + """for coordinates of a linestring, gets all h3 cells of given resolution that intersect the line""" + cells = set() + prevCell = None + for coord in coords: + cell = h3.geo_to_h3(coord[1], coord[0], res) + cells.add(cell) + if (prevCell is None): + prevCell = cell + else: + if (prevCell != cell): + # two consecutive coordinates in the linestring may be more than one cell apart + # need to find intermediate cells between previous cell and the current one + if (not h3.h3_indexes_are_neighbors(prevCell, cell)): + intermediateCells = h3.h3_line(prevCell, cell) + for intermediateCell in intermediateCells: + cells.add(intermediateCell) + prevCell = cell + return cells + +def get_intersecting_h3_cells_for_geo_json(geometry: Any, res:int) -> Iterable[str]: + """gets all h3 cells of given resolution that intersect the geometry.""" + # h3 api wants two floats for point, geojson dict for polygon and custom code is needed for line and multi* geometries + geojson = mapping(geometry) if isinstance(geometry, BaseGeometry) else geometry + geom_type = geojson["type"] + coords = geojson["coordinates"] + if (geom_type.startswith("Multi")): + sub_geom_type = geom_type.replace("Multi", "") + sub_geoms = [{"type": sub_geom_type, "coordinates": sub_geom_coords } for sub_geom_coords in coords] + sub_cells = [sub_cell for sub_geom in sub_geoms for sub_cell in get_intersecting_h3_cells_for_geo_json(sub_geom, res)] + return set(sub_cells) + if (geom_type == "Point"): + return set([h3.geo_to_h3(coords[1], coords[0], res)]) + if (geom_type == "LineString"): + return get_intersecting_h3_cells_for_line(coords, res) + if (geom_type == "Polygon"): + innerCells = h3.polyfill(geojson, res, True) # this only covers the tiles whose centers are inside the polygon + boundaryCells = get_intersecting_h3_cells_for_line(coords[0], res) + return innerCells | boundaryCells + +def matches_properties_filter(feature: Dict[str, Any], properties_filter: Dict[str, Any]) -> bool: + if properties_filter is None: + return True + feat_props = feature.get("properties") + for prop in properties_filter: + if prop == "id": + return feature.get("id") == properties_filter[prop] + + if not prop in feat_props or (properties_filter[prop] != "*" and feat_props[prop] != properties_filter[prop]): + return False + return True + +def get_matchable_feature(feature_dict: Dict[str, Any]) -> MatchableFeature: + """creates a MatchableFeature from a dict with expected keys [id, geometry, properties], which could be either a geojson or parsed from a csv file with wkt geometry""" + id = feature_dict.get("id") + geom = feature_dict.get("geometry") + if type(geom) is dict and "type" in geom and "coordinates" in geom: + # if it"s a geojson feature + s = shape(geom) + elif isinstance(geom, str): + # if it"s a wkt string + s = wkt.loads(geom) + props = feature_dict.get("properties") + return MatchableFeature(id, s, props) + +def get_feature_cells(geom: Any, res: int, k_rings_to_add:int=1): + """gets all h3 cells of given resolution that intersect the geometry, and also the cells that are k rings around the intersecting cells""" + h3_cells = get_intersecting_h3_cells_for_geo_json(geom, res) + if k_rings_to_add == 0: + return list(h3_cells) + + rings = [h3.k_ring(h, k_rings_to_add) for h in h3_cells] + return list(set(cell for r in rings for cell in r)) + +def parse_geojson(filename: str, is_multiline: bool) -> Iterable[Dict[str, Any]]: + with open(filename, mode="r", errors="ignore") as file: + if is_multiline: + # text file with one geojson per line + i=0 + features = [] + for line in file: + i += 1 + try: + geojson = json.loads(line.strip().rstrip(",")) + features.append(geojson) + except Exception as x: + print(fr"Line {i}: " + str(x)) + return features + else: + full_gj = json.loads(file.read()) + if full_gj.get("type") == "FeatureCollection": + return full_gj.get("features") + else: + return [full_gj] + +def get_matchable_set(features: Iterable[Dict[str, Any]], properties_filter: dict=None, res: int=12, limit_feature_count=-1) -> MatchableFeaturesSet: + features_by_id = {} + cells_by_id = {} + features_by_cell = {} + for feature_dict in features: + try: + if not matches_properties_filter(feature_dict, properties_filter): + continue + + feature = get_matchable_feature(feature_dict) + features_by_id[feature.id] = feature + cells_by_id[feature.id] = get_feature_cells(feature.geometry, res) + for cell in cells_by_id[feature.id]: + if not cell in features_by_cell: + features_by_cell[cell] = [] + features_by_cell[cell].append(feature) + except Exception as x: + print(str(x)) + + if limit_feature_count > 0 and len(features_by_id) >= limit_feature_count: + break + return MatchableFeaturesSet(features_by_id, cells_by_id, features_by_cell) + +def parse_csv(filename: str, delimiter: str=",") -> MatchableFeaturesSet: + features = [] + i=0 + with open(filename, mode="r", errors="ignore") as file: + reader = csv.DictReader(file, delimiter=delimiter) + for row in reader: + feat_dict = {} + feat_dict["properties"] = {} + for k, v in row.items(): + default_id = str(i) + i += 1 + key = k.lower() + if not "id" in feat_dict and "id" in key: + feat_dict["id"] = v + elif not "geometry" in feat_dict and ("geometry" in key or "wkt" in key): + feat_dict["geometry"] = v + else: + feat_dict["properties"][k] = v + + if not "id" in feat_dict: + feat_dict["id"] = default_id + + if not "geometry" in feat_dict: + if "lat" in feat_dict["properties"] and "lon" in feat_dict["properties"]: + feat_dict["geometry"] = f'POINT({feat_dict["properties"]["lon"]} {feat_dict["properties"]["lat"]})' + else: + continue + + features.append(feat_dict) + return features + +def load_matchable_set(filename: str, properties_filter: dict=None, res: int=12, limit_feature_count=-1, is_multiline: bool=False, delimiter: str=",") -> MatchableFeaturesSet: + """loads a MatchableFeaturesSet from a geojson or csv file""" + extension = filename.split(".")[-1] + match extension: + case "geojson" | "json": + features = parse_geojson(filename, is_multiline=is_multiline) + case "csv": + features = parse_csv(filename, delimiter=delimiter) + case _: + raise Exception(f"Unsupported file type: {extension}") + + s = get_matchable_set(features, properties_filter, res, limit_feature_count) + return s + +def get_features_with_cells(features_by_cell: Dict[str, Iterable[MatchableFeature]], cells_filter: Iterable[str]) -> Iterable[MatchableFeature]: + """gets all features in `features_by_cell` that intersect any of the cells in `cells_filter`""" + with_cells = [] + candidate_ids = set() + for cell in cells_filter: + if cell in features_by_cell: + for candidate in features_by_cell[cell]: + if not candidate.id in candidate_ids: + candidate_ids.add(candidate.id) + with_cells.append(candidate) + return with_cells + +def write_json(results_json: Any, output_file_name: str): + with open(output_file_name, "w") as f: + json.dump(results_json, f, indent=4) \ No newline at end of file